From fb1a259b1e998138654e5d18884d7af880ce07d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Fran=C3=A7ois=20GUILLAUME?= Date: Thu, 4 Nov 2021 22:02:40 +0100 Subject: [PATCH 001/383] formating --- glicid/packages/nginx.scm | 17 +++--- glicid/packages/openldap.scm | 43 ++++++++++----- glicid/services/openldap.scm | 102 +++++++++++++++++------------------ 3 files changed, 88 insertions(+), 74 deletions(-) diff --git a/glicid/packages/nginx.scm b/glicid/packages/nginx.scm index d5e1de1..db2f844 100644 --- a/glicid/packages/nginx.scm +++ b/glicid/packages/nginx.scm @@ -26,9 +26,9 @@ (origin (method git-fetch) (uri (git-reference - (url "https://github.com/kvspb/nginx-auth-ldap") - (commit version) - ) + (url "https://github.com/kvspb/nginx-auth-ldap") + (commit version) + ) ) (file-name (git-file-name "nginx-ldap-auth-module" version)) (sha256 (base32 "023zmdir7w92dnb508ggskkc7kmd7k71hc597sb7i4xfgpwxzq1s" )) @@ -86,9 +86,8 @@ (origin (method url-fetch) (uri (list - (string-append "https://github.com/SpiderLabs/ModSecurity/releases/download/v" version "/modsecurity-v" version ".tar.gz") - ) - ) + (string-append "https://github.com/SpiderLabs/ModSecurity/releases/download/v" version "/modsecurity-v" version ".tar.gz") + )) (sha256 (base32 "1sarp7bjvkkdlpky5j9axfi0qmb177vw2vn2s10c8fcdg9dgj6vm" )) ) ) @@ -128,9 +127,8 @@ (origin (method url-fetch) (uri (list - (string-append "https://github.com/SpiderLabs/ModSecurity-nginx/releases/download/v" version "/modsecurity-nginx-v" version ".tar.gz") - ) - ) + (string-append "https://github.com/SpiderLabs/ModSecurity-nginx/releases/download/v" version "/modsecurity-nginx-v" version ".tar.gz") + )) (sha256 (base32 "0clcny8276d3j73ws661lh983vqq9m29rw7qb7gn132ha066d9j1" )) ) ) @@ -177,4 +175,3 @@ ) ) ) -nginx-modsecurity-module diff --git a/glicid/packages/openldap.scm b/glicid/packages/openldap.scm index 926cbaa..bc89f38 100644 --- a/glicid/packages/openldap.scm +++ b/glicid/packages/openldap.scm @@ -35,24 +35,41 @@ ) (build-system gnu-build-system) (inputs `( - ("libltdl", libltdl) - ("pkg-config", pkg-config) - ("libevent", libevent) - ("openssl", openssl) - ("argon2", argon2) - ("wiredtiger", wiredtiger) - ("snappy", snappy) - ("lz4", lz4) - ,@(package-inputs gnu:openldap) + ("libltdl", libltdl) + ("pkg-config", pkg-config) + ("libevent", libevent) + ("openssl", openssl) + ("argon2", argon2) + ("wiredtiger", wiredtiger) + ("snappy", snappy) + ("lz4", lz4) + ,@(package-inputs gnu:openldap) )) (arguments '( ; this is needed because the make check does not work inside guix #:tests? #f #:configure-flags '( - "--enable-debug" "--enable-dynamic" "--enable-syslog" "--enable-ipv6" "--enable-local" "--enable-slapd" "--enable-dynacl" - "--enable-aci" "--enable-cleartext" "--enable-crypt" "--enable-spasswd" "--enable-modules" "--enable-rlookups" "--enable-slapi" - "--enable-backends=mod" "--enable-overlays=mod" "--enable-argon2" "--enable-balancer" "--disable-static" - "--enable-shared" "--with-tls=openssl" + "--enable-debug" + "--enable-dynamic" + "--enable-syslog" + "--enable-ipv6" + "--enable-local" + "--enable-slapd" + "--enable-dynacl" + "--enable-aci" + "--enable-cleartext" + "--enable-crypt" + "--enable-spasswd" + "--enable-modules" + "--enable-rlookups" + "--enable-slapi" + "--enable-backends=mod" + "--enable-overlays=mod" + "--enable-argon2" + "--enable-balancer" + "--disable-static" + "--enable-shared" + "--with-tls=openssl" ) #:make-flags '("STRIP=") #:phases (modify-phases %standard-phases diff --git a/glicid/services/openldap.scm b/glicid/services/openldap.scm index b0d50a7..63dc463 100644 --- a/glicid/services/openldap.scm +++ b/glicid/services/openldap.scm @@ -13,68 +13,68 @@ ) (define-record-type* - openldap-configuration make-openldap-configuration - openldap-configuration? - (openldap openldap-configuration-openldap ; - (default openldap-glicid) - ) - (arguments openldap-configuration-arguments ;list of strings - (default '()) - ) - (logflags openldap-configuration-logflags ;number - (default "0") - ) - (log-file openldap-configuration-log-file ; string - (default "/var/log/slapd.log") - ) - (pid-file openldap-configuration-pid-file ; string - (default "/var/run/openldap/slapd.pid") - ) - (config-file openldap-configuration-config-file ; string - (default %default-slapd.conf) - ) - (schema-dir openldap-configuration-schema-dir ; string - (default '()) - ) + openldap-configuration make-openldap-configuration + openldap-configuration? + (openldap openldap-configuration-openldap ; + (default openldap-glicid) + ) + (arguments openldap-configuration-arguments ;list of strings + (default '()) + ) + (logflags openldap-configuration-logflags ;number + (default "0") + ) + (log-file openldap-configuration-log-file ; string + (default "/var/log/slapd.log") + ) + (pid-file openldap-configuration-pid-file ; string + (default "/var/run/openldap/slapd.pid") + ) + (config-file openldap-configuration-config-file ; string + (default %default-slapd.conf) + ) + (schema-dir openldap-configuration-schema-dir ; string + (default '()) + ) ) (define %default-slapd.conf (plain-file "slapd.conf" " - # Empty file for test + # Empty file for test ")) (define schema_dir (local-file "ldap_schema" #:recursive? #t)) (define openldap-shepherd-service - (match-lambda - (($ openldap arguments logflags log-file pid-file config-file schema-dir) + (match-lambda + (($ openldap arguments logflags log-file pid-file config-file schema-dir) + (list + (shepherd-service + (provision '(slapd) ) + (documentation "Run openldap.") + (requirement '(user-processes)) + (respawn? #f) + (start #~(make-forkexec-constructor (list - (shepherd-service - (provision '(slapd) ) - (documentation "Run openldap.") - (requirement '(user-processes)) - (respawn? #f) - (start #~(make-forkexec-constructor - (list - #$(file-append openldap-glicid "/libexec/slapd") - "-h 'ldap:/// ldaps:///'" - "-d" #$logflags - "-f" #$config-file - ) - #:pid-file #$pid-file - )) - (stop #~(make-kill-destructor)) - ) + #$(file-append openldap-glicid "/libexec/slapd") + "-h 'ldap:/// ldaps:///'" + "-d" #$logflags + "-f" #$config-file ) + #:pid-file #$pid-file + )) + (stop #~(make-kill-destructor)) ) + ) ) + ) ) (define openldap-service-type - (service-type (name 'slapd) - (extensions - (list ( - service-extension - shepherd-root-service-type - openldap-shepherd-service - )) - ) - (description "Run @uref{https://www.openldap.org, Openldap} community developped LDAP software.") + (service-type (name 'slapd) + (extensions + (list ( + service-extension + shepherd-root-service-type + openldap-shepherd-service + )) ) + (description "Run @uref{https://www.openldap.org, Openldap} community developped LDAP software.") + ) ) From de7c8e00d94f32e7228b52795bad09ab9335d11a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Fran=C3=A7ois=20GUILLAUME?= Date: Fri, 5 Nov 2021 16:30:43 +0100 Subject: [PATCH 002/383] exporting service --- glicid/services/openldap.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/glicid/services/openldap.scm b/glicid/services/openldap.scm index 63dc463..e62a59e 100644 --- a/glicid/services/openldap.scm +++ b/glicid/services/openldap.scm @@ -9,6 +9,8 @@ openldap-configuration openldap-configuration? %default-slapd.conf + openldap-shepherd-service + openldap-service-type ) ) @@ -41,7 +43,6 @@ (plain-file "slapd.conf" " # Empty file for test ")) -(define schema_dir (local-file "ldap_schema" #:recursive? #t)) (define openldap-shepherd-service (match-lambda (($ openldap arguments logflags log-file pid-file config-file schema-dir) From f6009f145c53992dfac09fe6ef4d0563e80cb423 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Fran=C3=A7ois=20GUILLAUME?= Date: Fri, 5 Nov 2021 16:39:03 +0100 Subject: [PATCH 003/383] correcting typo --- glicid/services/openldap.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/glicid/services/openldap.scm b/glicid/services/openldap.scm index e62a59e..1b9859f 100644 --- a/glicid/services/openldap.scm +++ b/glicid/services/openldap.scm @@ -18,7 +18,7 @@ openldap-configuration make-openldap-configuration openldap-configuration? (openldap openldap-configuration-openldap ; - (default openldap-glicid) + (default openldap) ) (arguments openldap-configuration-arguments ;list of strings (default '()) @@ -54,7 +54,7 @@ (respawn? #f) (start #~(make-forkexec-constructor (list - #$(file-append openldap-glicid "/libexec/slapd") + #$(file-append openldap "/libexec/slapd") "-h 'ldap:/// ldaps:///'" "-d" #$logflags "-f" #$config-file From 9aadc45b21b5beff2256169e2be3dd163e88669c Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Fri, 5 Nov 2021 23:55:49 +0100 Subject: [PATCH 004/383] add python-glances, alterative to top/nmon --- glicid/packages/glicid.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/glicid/packages/glicid.scm b/glicid/packages/glicid.scm index 4b2cd1c..a4e7159 100644 --- a/glicid/packages/glicid.scm +++ b/glicid/packages/glicid.scm @@ -537,6 +537,34 @@ ) ) +(use-modules (guix packages)) +(use-modules (guix download)) +(use-modules (gnu packages python)) +(use-modules (gnu packages python-xyz)) +(use-modules (guix build-system python)) +(use-modules (gnu packages xml)) + + +(define-public python-glances + (package + (name "python-glances") + (version "3.2.3.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "Glances" version)) + (sha256 + (base32 "0qgwsrg19n4wk9i97xj1i57hwbxacqn6iziliyvjfx063zip2rqm")))) + (build-system python-build-system) + (propagated-inputs + `(("python-defusedxml" ,python-defusedxml) + ("python-future" ,python-future) + ("python-psutil" ,python-psutil))) + (home-page "https://github.com/nicolargo/glances") + (synopsis "A cross-platform curses-based monitoring tool") + (description "A cross-platform curses-based monitoring tool") + (license #f)) +) ;;; glicid.scm ends here From f167077a77efef88c5173d53a8b352f163741caf Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Mon, 8 Nov 2021 22:18:16 +0100 Subject: [PATCH 005/383] glances is now upstream also defines qemu-minimal-with-rbd --- glicid/packages/glicid.scm | 30 +----------------------------- glicid/packages/virtualization.scm | 20 ++++++++++++++++++++ 2 files changed, 21 insertions(+), 29 deletions(-) diff --git a/glicid/packages/glicid.scm b/glicid/packages/glicid.scm index a4e7159..95d7abd 100644 --- a/glicid/packages/glicid.scm +++ b/glicid/packages/glicid.scm @@ -537,34 +537,6 @@ ) ) -(use-modules (guix packages)) -(use-modules (guix download)) -(use-modules (gnu packages python)) -(use-modules (gnu packages python-xyz)) -(use-modules (guix build-system python)) -(use-modules (gnu packages xml)) - - -(define-public python-glances - (package - (name "python-glances") - (version "3.2.3.1") - (source - (origin - (method url-fetch) - (uri (pypi-uri "Glances" version)) - (sha256 - (base32 "0qgwsrg19n4wk9i97xj1i57hwbxacqn6iziliyvjfx063zip2rqm")))) - (build-system python-build-system) - (propagated-inputs - `(("python-defusedxml" ,python-defusedxml) - ("python-future" ,python-future) - ("python-psutil" ,python-psutil))) - (home-page "https://github.com/nicolargo/glances") - (synopsis "A cross-platform curses-based monitoring tool") - (description "A cross-platform curses-based monitoring tool") - (license #f)) -) - +;; python-glances is now upstreamed as glances in python-xyz ;;; glicid.scm ends here diff --git a/glicid/packages/virtualization.scm b/glicid/packages/virtualization.scm index 0bfe6d7..2a809a5 100644 --- a/glicid/packages/virtualization.scm +++ b/glicid/packages/virtualization.scm @@ -26,5 +26,25 @@ ) ) +(define-public qemu-minimal-with-rbd + + (package + (inherit qemu-minimal) + (name "qemu-minimal-with-rbd") + (arguments + + (substitute-keyword-arguments + `(#:tests? #f + ,@(package-arguments qemu-minimal))) + ) + + (inputs `(("ceph:lib", ceph "lib" ) ;; will take the more up to date ceph + ,@(package-inputs qemu-minimal))) + + ) +) + + + ;;; glicid/virtualizationvirtualization.scm ends here From 1853b10e7e4fedb740926fbbbd0181ee9f5eebaa Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Wed, 17 Nov 2021 21:59:36 +0100 Subject: [PATCH 006/383] add osu-benchmarks (taken from gricad) --- glicid/packages/benchmark.scm | 50 +++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) diff --git a/glicid/packages/benchmark.scm b/glicid/packages/benchmark.scm index ac601e9..751d37c 100644 --- a/glicid/packages/benchmark.scm +++ b/glicid/packages/benchmark.scm @@ -93,6 +93,29 @@ #:use-module (glicid packages storage) #:use-module (glicid packages mpi) #:use-module (glicid packages gcc) + #:use-module ((guix licenses) #:prefix license:) + #:use-module (guix packages) + #:use-module (guix download) + #:use-module (guix utils) + #:use-module (guix build utils) + #:use-module (guix build-system cmake) + #:use-module (guix build-system gnu) + #:use-module (gnu packages) + #:use-module (gnu packages algebra) + #:use-module (gnu packages image-processing) + #:use-module (gnu packages image) + #:use-module (gnu packages graphics) + #:use-module (gnu packages maths) + #:use-module (gnu packages mpi) + #:use-module (gnu packages python) + #:use-module (gnu packages python-xyz) + #:use-module (gnu packages compression) + #:use-module (gnu packages commencement) + #:use-module (gnu packages gcc) + #:use-module (gnu packages pkg-config) + #:use-module (gnu packages video) + #:use-module (gnu packages llvm) + #:use-module (gnu packages multiprecision) ) @@ -117,6 +140,33 @@ ) ) +;;defined by gricad / PA Boutier + +(define-public osu-benchmarks + (package + (name "osu-benchmarks") + (version "5.8") + (source (origin + (method url-fetch) + (uri (string-append "https://mvapich.cse.ohio-state.edu/download/mvapich/osu-micro-benchmarks-" version ".tgz")) + (sha256 + (base32 + "19a4wg0msipibkxsi8i0c34d07512yfaj2k37dxg5541ysdw690f")))) + (build-system gnu-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + (add-after 'unpack 'setenv + (lambda _ + (setenv "CC" (which "mpicc")) + (setenv "CXX" (which "mpic++")) + #t))))) + (propagated-inputs + `(("openmpi" ,openmpi))) + (synopsis "OSU micro benchmarks") + (description "OSU micro benchmark for mpi") + (home-page "https://mvapich.cse.ohio-state.edu/benchmarks/") + (license license:gpl2+))) ;;; glicid/benchmark.scm ends here From 1eb3bdeb014d41a77597ed977be9f8acf176969b Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Wed, 17 Nov 2021 22:29:54 +0100 Subject: [PATCH 007/383] new intel mpi benchmarks --- glicid/packages/benchmark.scm | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/glicid/packages/benchmark.scm b/glicid/packages/benchmark.scm index 751d37c..1ac1002 100644 --- a/glicid/packages/benchmark.scm +++ b/glicid/packages/benchmark.scm @@ -39,7 +39,7 @@ #:use-module (gnu packages mpi) #:use-module (gnu packages sssd) #:use-module (gnu packages fabric-management) - #:use-module (gnu packages benchmark) + #:use-module ((gnu packages benchmark) #:prefix gnu:) #:use-module (gnu packages messaging) #:use-module (gnu packages web) #:use-module (gnu packages gnome) @@ -123,6 +123,13 @@ ;;;;;;;; +(define-public intel-mpi-benchmarks/openmpi + (package + (inherit gnu:intel-mpi-benchmarks/openmpi) + (version "2021.3") + ) +) + (define-public glicid-intel-mpi-benchmarks (package (inherit intel-mpi-benchmarks/openmpi) From e2ad8b11edbf527200c0ab04da60cf3c9de59b22 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Wed, 17 Nov 2021 22:43:40 +0100 Subject: [PATCH 008/383] upgrade version (but checksum will be bad) --- glicid/packages/benchmark.scm | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/glicid/packages/benchmark.scm b/glicid/packages/benchmark.scm index 1ac1002..4b860bd 100644 --- a/glicid/packages/benchmark.scm +++ b/glicid/packages/benchmark.scm @@ -127,6 +127,25 @@ (package (inherit gnu:intel-mpi-benchmarks/openmpi) (version "2021.3") +(source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/intel/mpi-benchmarks") + (commit (string-append "IMB-v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "02hxbk9g9nl59bk5qcfl3djj7b58vsqys340m1xdbyqwcrbnahh9")) + (modules '((guix build utils))) + (snippet + '(begin + ;; Some source configuration files in the original tarball + ;; have inappropriate execute permissions, which interferes + ;; with the install phase below. + (for-each (lambda (file) (chmod file #o444)) + (find-files "WINDOWS" ".")) + #t)))) + ) ) From 3e2f5c2f73a19a54be265e199151fa3fb67445f0 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Wed, 17 Nov 2021 22:51:27 +0100 Subject: [PATCH 009/383] won't work --- glicid/packages/benchmark.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/glicid/packages/benchmark.scm b/glicid/packages/benchmark.scm index 4b860bd..ec91f9b 100644 --- a/glicid/packages/benchmark.scm +++ b/glicid/packages/benchmark.scm @@ -126,8 +126,9 @@ (define-public intel-mpi-benchmarks/openmpi (package (inherit gnu:intel-mpi-benchmarks/openmpi) + (name "intel-mpi-benchmarks") (version "2021.3") -(source (origin + (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/intel/mpi-benchmarks") From 48c4b7eeeed83282c64cd35a8b4c864a38d70dd1 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Wed, 17 Nov 2021 23:01:01 +0100 Subject: [PATCH 010/383] new hash --- glicid/packages/benchmark.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glicid/packages/benchmark.scm b/glicid/packages/benchmark.scm index ec91f9b..6d40346 100644 --- a/glicid/packages/benchmark.scm +++ b/glicid/packages/benchmark.scm @@ -136,7 +136,7 @@ (file-name (git-file-name name version)) (sha256 (base32 - "02hxbk9g9nl59bk5qcfl3djj7b58vsqys340m1xdbyqwcrbnahh9")) + "04kczch2hlfzbgk929vcxx480kc6raba8rbz246j7d26k1z1zh8h")) (modules '((guix build utils))) (snippet '(begin From 441cc1301fe4bc839bfa3be1f9ca03119b4c6899 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Sun, 21 Nov 2021 21:42:27 +0100 Subject: [PATCH 011/383] change name to pmix -> openpmix --- glicid/packages/parallel.scm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/glicid/packages/parallel.scm b/glicid/packages/parallel.scm index 7721c07..bbca741 100644 --- a/glicid/packages/parallel.scm +++ b/glicid/packages/parallel.scm @@ -94,9 +94,9 @@ ) -(define-public glicid-pmix +(define-public openpmix (package - (name "glicid-pmix-3.1.5") + (name "openpmix-3.1.5") (version "3.1.5") (source (origin @@ -147,7 +147,7 @@ (string-append "--with-hwloc=" (assoc-ref %build-inputs "hwloc")) (string-append "--with-json=" (assoc-ref %build-inputs "json-c")) (string-append "--with-munge=" (assoc-ref %build-inputs "munge")) - (string-append "--with-pmix=" (assoc-ref %build-inputs "glicid-pmix")) + (string-append "--with-pmix=" (assoc-ref %build-inputs "openpmix")) ;; 32-bit support is marked as deprecated and needs to be ;; explicitly enabled. @@ -159,7 +159,7 @@ (inputs `(("gtk+-2" ,gtk+-2) ("gcc", gcc-11) - ("glicid-pmix", glicid-pmix) + ("openpmix", openpmix) ; ("glicid-specific-openmpi", glicid-specific-openmpi) ,@(package-inputs slurm) From bf90fc20c54f4950b92eec1708c5ac694ca8720a Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Sun, 21 Nov 2021 21:53:48 +0100 Subject: [PATCH 012/383] newer openpmix version --- glicid/packages/parallel.scm | 21 +++++++++++++++++++-- 1 file changed, 19 insertions(+), 2 deletions(-) diff --git a/glicid/packages/parallel.scm b/glicid/packages/parallel.scm index bbca741..a77a045 100644 --- a/glicid/packages/parallel.scm +++ b/glicid/packages/parallel.scm @@ -94,9 +94,9 @@ ) -(define-public openpmix +(define-public openpmix-3.1.5 (package - (name "openpmix-3.1.5") + (name "openpmix") (version "3.1.5") (source (origin @@ -127,6 +127,23 @@ ) ) +(define-public openpmix-4.1.0 + (package + (inherit openpmix-3.1.5) + (name "openpmix-4.1.0") + (version "4.1.0") + (source + (origin + (method url-fetch) + (uri (string-append "https://github.com/openpmix/openpmix/releases/download/v" version "/pmix-" version ".tar.bz2")) + (sha256 (base32 "1xswdkfcrw123ghcr9gmrb852nzjbl4i6qwrid3xyma42yal34w8")) + ) + ) + ) +) + +(define-public openpmix openpmix-4.1.0) + (define-public glicid-custom-slurm-19.05 (package From 81f79f37c441ee45e549f1ddeba727796454c2e6 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Sun, 21 Nov 2021 21:59:24 +0100 Subject: [PATCH 013/383] checksum for new pmix version --- glicid/packages/parallel.scm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/glicid/packages/parallel.scm b/glicid/packages/parallel.scm index a77a045..98c1ce5 100644 --- a/glicid/packages/parallel.scm +++ b/glicid/packages/parallel.scm @@ -130,13 +130,12 @@ (define-public openpmix-4.1.0 (package (inherit openpmix-3.1.5) - (name "openpmix-4.1.0") (version "4.1.0") (source (origin (method url-fetch) (uri (string-append "https://github.com/openpmix/openpmix/releases/download/v" version "/pmix-" version ".tar.bz2")) - (sha256 (base32 "1xswdkfcrw123ghcr9gmrb852nzjbl4i6qwrid3xyma42yal34w8")) + (sha256 (base32 "0bl4gkh87csm3yh418wvrih35mg6swavcxj78gyb7gr1qsk0apql")) ) ) ) From e57ded1edf2e47c31086bdb4433ac70c923a472b Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Sun, 21 Nov 2021 22:11:59 +0100 Subject: [PATCH 014/383] pmix 4.1 needs python --- glicid/packages/parallel.scm | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/glicid/packages/parallel.scm b/glicid/packages/parallel.scm index 98c1ce5..478f9ab 100644 --- a/glicid/packages/parallel.scm +++ b/glicid/packages/parallel.scm @@ -137,7 +137,12 @@ (uri (string-append "https://github.com/openpmix/openpmix/releases/download/v" version "/pmix-" version ".tar.bz2")) (sha256 (base32 "0bl4gkh87csm3yh418wvrih35mg6swavcxj78gyb7gr1qsk0apql")) ) - ) + ) + (inputs `( + ("python", python) + ,@(package-inputs openpmix-3.1.5) + ) + ) ) ) From 9b69b9fd1541f50ed8043e47a4c37d76c686d717 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Sun, 21 Nov 2021 22:17:24 +0100 Subject: [PATCH 015/383] need pandoc for pmix doc --- glicid/packages/parallel.scm | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/glicid/packages/parallel.scm b/glicid/packages/parallel.scm index 478f9ab..f422cde 100644 --- a/glicid/packages/parallel.scm +++ b/glicid/packages/parallel.scm @@ -67,7 +67,7 @@ #:use-module (gnu packages authentication) #:use-module (gnu packages bdw-gc) #:use-module (gnu packages boost) - #:use-module (gnu packages compression) + #:use-module (gnu packages compression) ;; for zlib #:use-module (gnu packages crypto) #:use-module (gnu packages cryptsetup) #:use-module (gnu packages curl) @@ -90,6 +90,8 @@ ;; #:use-module (gnu packages glicid) #:use-module (gnu packages pretty-print) #:use-module (gnu packages virtualization) + #:use-module (gnu packages haskell-xyz) ;; for pandoc + ) @@ -140,6 +142,8 @@ ) (inputs `( ("python", python) + ("zlib", zlib) + ("pandoc", pandoc) ; not mandatory ,@(package-inputs openpmix-3.1.5) ) ) From 9039a1e777efa50b1e0da9551444f0a36de2997a Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Sun, 21 Nov 2021 22:42:20 +0100 Subject: [PATCH 016/383] new rdma-core versions --- glicid/packages/linux.scm | 37 ++++++++++++++++++++++++++++++------- 1 file changed, 30 insertions(+), 7 deletions(-) diff --git a/glicid/packages/linux.scm b/glicid/packages/linux.scm index f3a9ceb..f6fd928 100644 --- a/glicid/packages/linux.scm +++ b/glicid/packages/linux.scm @@ -16,7 +16,7 @@ #:use-module (gnu packages autotools) #:use-module (gnu packages base) #:use-module (gnu packages freeipmi) - #:use-module (gnu packages linux) + #:use-module ((gnu packages linux) #:prefix gnu:) #:use-module (gnu packages mpi) #:use-module (gnu packages perl) #:use-module (gnu packages pkg-config) @@ -75,7 +75,7 @@ #:use-module (gnu packages disk) #:use-module (gnu packages gperf) #:use-module (gnu packages jemalloc) - #:use-module (gnu packages linux) +; #:use-module (gnu packages linux) #:use-module (gnu packages lua) #:use-module (gnu packages ncurses) #:use-module (gnu packages networking) @@ -95,10 +95,12 @@ ) -(define-public glicid-rdma-core + + +(define-public rdma-core-37.1 (package - (inherit rdma-core) - (name "glicid-rdma-core") + (inherit gnu:rdma-core) + (name "rdma-core") (version "37.1") (source (origin (method url-fetch) @@ -111,10 +113,31 @@ ) ) +(define-public rdma-core-38.0 +(package + (inherit gnu:rdma-core) + (name "rdma-core") + (version "38.0") + (source (origin + (method url-fetch) + (uri (string-append "https://github.com/linux-rdma/rdma-core" + "/releases/download/v" version "/rdma-core-" + version ".tar.gz")) + (sha256 + (base32 + "1hjwagf5x48vgshy5s01qjlzjr8kmxpflfcvh8pgj3zbj82zzxiz")))) + ) +) + + +(define-public rdma-core rdma-core-38.0) + + + (define-public glicid-rdma-core-gcc-11 (package - (inherit glicid-rdma-core) + (inherit rdma-core) (name "glicid-rdma-core-gcc-11") (inputs `(("gcc-11", gcc-11) ,@(package-inputs rdma-core))) @@ -124,7 +147,7 @@ (define-public glicid-libfabric (package - (inherit libfabric) + (inherit gnu:libfabric) (name "glicid-libfabric") (version "1.13.1") ) From 8c720e9c468667334691a93c784263833e55b779 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Sun, 21 Nov 2021 22:47:02 +0100 Subject: [PATCH 017/383] rdma core checksum --- glicid/packages/linux.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glicid/packages/linux.scm b/glicid/packages/linux.scm index f6fd928..cc30dd8 100644 --- a/glicid/packages/linux.scm +++ b/glicid/packages/linux.scm @@ -125,7 +125,7 @@ version ".tar.gz")) (sha256 (base32 - "1hjwagf5x48vgshy5s01qjlzjr8kmxpflfcvh8pgj3zbj82zzxiz")))) + "043vybwx9kz4mbbmnj0jzkzsw02vzhkkjc5j3yjdiiqkmsgwr3cs")))) ) ) From cbceb972ce4dd86af0dedf6dc3c58343baee2568 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Sun, 21 Nov 2021 22:54:16 +0100 Subject: [PATCH 018/383] some new versions --- glicid/packages/linux.scm | 33 ++++++++++++++++++++++++++++----- 1 file changed, 28 insertions(+), 5 deletions(-) diff --git a/glicid/packages/linux.scm b/glicid/packages/linux.scm index cc30dd8..d6bea1f 100644 --- a/glicid/packages/linux.scm +++ b/glicid/packages/linux.scm @@ -100,7 +100,6 @@ (define-public rdma-core-37.1 (package (inherit gnu:rdma-core) - (name "rdma-core") (version "37.1") (source (origin (method url-fetch) @@ -116,7 +115,6 @@ (define-public rdma-core-38.0 (package (inherit gnu:rdma-core) - (name "rdma-core") (version "38.0") (source (origin (method url-fetch) @@ -145,18 +143,43 @@ ) -(define-public glicid-libfabric +(define-public libfabric-1.13.1 (package (inherit gnu:libfabric) - (name "glicid-libfabric") (version "1.13.1") + (source + (origin + (method url-fetch) + (uri + (string-append "https://github.com/ofiwg/libfabric/releases/download/v" + version "/libfabric-" version ".tar.bz2")) + (sha256 + (base32 "03nkhqjjyw3hwhxrn7rg30qc1gzc1r7p7lymyz5s96m3qhwfsvlf")))) + ) ) +(define-public libfabric-1.14.0 +(package + (inherit gnu:libfabric) + (version "1.14.0") + (source + (origin + (method url-fetch) + (uri + (string-append "https://github.com/ofiwg/libfabric/releases/download/v" + version "/libfabric-" version ".tar.bz2")) + (sha256 + (base32 "16klkzkg04wb699mqpi8mn2r8sqzj35zalynbdazyg4ghj4169pw")))) + + ) +) + +(define-public libfabric libfabric-1.14.0) (define-public glicid-libfabric-gcc-11 (package - (inherit glicid-libfabric) + (inherit libfabric) (name "glicid-libfabric-gcc-11") (inputs `(("gcc-11", gcc-11) From 36a55d6a11a7f72269895e6cd11a283bc0a10ee9 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Mon, 22 Nov 2021 09:06:22 +0100 Subject: [PATCH 019/383] package renamed --- glicid/packages/linux.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glicid/packages/linux.scm b/glicid/packages/linux.scm index d6bea1f..dc02938 100644 --- a/glicid/packages/linux.scm +++ b/glicid/packages/linux.scm @@ -184,7 +184,7 @@ (inputs `(("gcc-11", gcc-11) ("rdma-core", glicid-rdma-core-gcc-11) - ,@(package-inputs glicid-libfabric))) + ,@(package-inputs libfabric))) ) ) From 53f2898d49efde32e1c0e69282e20e00ce11d9f4 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Mon, 22 Nov 2021 10:47:25 +0100 Subject: [PATCH 020/383] new ucx versions --- glicid/packages/fabric-management.scm | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/glicid/packages/fabric-management.scm b/glicid/packages/fabric-management.scm index 6a157c9..13f353e 100644 --- a/glicid/packages/fabric-management.scm +++ b/glicid/packages/fabric-management.scm @@ -38,7 +38,7 @@ #:use-module (srfi srfi-1) #:use-module (gnu packages mpi) #:use-module (gnu packages sssd) - #:use-module (gnu packages fabric-management) + #:use-module ((gnu packages fabric-management) #:prefix gnu:) #:use-module (gnu packages benchmark) #:use-module (gnu packages messaging) #:use-module (gnu packages web) @@ -95,10 +95,9 @@ ) -(define-public glicid-ucx +(define-public ucx-1.11.2 (package - (inherit ucx) - (name "glicid-ucx") + (inherit gnu:ucx) (version "1.11.2") (source (origin @@ -111,32 +110,34 @@ ) ) +(define-public ucx ucx-1.11.2) + (define-public glicid-ucx-gcc-11 (package - (inherit glicid-ucx) + (inherit ucx) (name "glicid-ucx-gcc-11") (inputs `(("gcc-11", gcc-11) ("gfortran-11", gfortran-11) - ,@(package-inputs glicid-ucx))) + ,@(package-inputs ucx))) ) ) (define-public glicid-ucx-gcc-10 (package - (inherit glicid-ucx) + (inherit ucx) (name "glicid-ucx-gcc-10") (inputs `(("gcc-10", gcc-10) ("gfortran-10", gfortran-10) - ,@(package-inputs glicid-ucx))) + ,@(package-inputs ucx))) ) ) (define-public glicid-specific-ucx-gcc-11 (package - (inherit glicid-ucx) + (inherit ucx) (name "glicid-specific-ucx-gcc-11") (version "1.10.0") @@ -145,7 +146,7 @@ ("libfabric", glicid-libfabric-gcc-11) ("rdma-core",glicid-rdma-core-gcc-11) - ,@(package-inputs glicid-ucx))) + ,@(package-inputs ucx))) ) ) @@ -158,7 +159,7 @@ ("libfabric", glicid-libfabric-gcc-11) ("rdma-core",glicid-rdma-core-gcc-11) - ,@(package-inputs glicid-ucx))) + ,@(package-inputs ucx))) ) ) From 137e30f9628b32ba3de0fceca1f7916ac6742e38 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Mon, 22 Nov 2021 10:51:09 +0100 Subject: [PATCH 021/383] missing name --- glicid/packages/fabric-management.scm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/glicid/packages/fabric-management.scm b/glicid/packages/fabric-management.scm index 13f353e..c3d526b 100644 --- a/glicid/packages/fabric-management.scm +++ b/glicid/packages/fabric-management.scm @@ -153,6 +153,8 @@ (define-public glicid-ucx-gcc-10 (package (inherit ucx) + (name "glicid-specific-ucx-gcc-10") + (inputs `(("gcc", gcc-10) ("gfortran", gfortran-10) From 73faf72a8b199fae4f7d1b3f820ac455d4014eb4 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Mon, 22 Nov 2021 14:04:49 +0100 Subject: [PATCH 022/383] typo --- glicid/packages/fabric-management.scm | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/glicid/packages/fabric-management.scm b/glicid/packages/fabric-management.scm index c3d526b..5213f73 100644 --- a/glicid/packages/fabric-management.scm +++ b/glicid/packages/fabric-management.scm @@ -112,6 +112,20 @@ (define-public ucx ucx-1.11.2) +(define-public glicid-ucx + (package + (inherit ucx) + (name "glicid-ucx") + ) + +(inputs ` + ("libfabric", libfabric) ;; latest of glicid or gnu version + ("rdma-core",rdma-core-gcc) ;; latest of glicid or gnu version + + ,@(package-inputs ucx))) + +) + (define-public glicid-ucx-gcc-11 (package (inherit ucx) @@ -150,7 +164,7 @@ ) ) -(define-public glicid-ucx-gcc-10 +(define-public glicid-specific-ucx-gcc-10 (package (inherit ucx) (name "glicid-specific-ucx-gcc-10") From 8aee789f553d250d24d2b7084c7270e45fa3d125 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Mon, 22 Nov 2021 14:11:19 +0100 Subject: [PATCH 023/383] typo --- glicid/packages/fabric-management.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glicid/packages/fabric-management.scm b/glicid/packages/fabric-management.scm index 5213f73..d6928b8 100644 --- a/glicid/packages/fabric-management.scm +++ b/glicid/packages/fabric-management.scm @@ -120,7 +120,7 @@ (inputs ` ("libfabric", libfabric) ;; latest of glicid or gnu version - ("rdma-core",rdma-core-gcc) ;; latest of glicid or gnu version + ("rdma-core",rdma-core) ;; latest of glicid or gnu version ,@(package-inputs ucx))) From c3f1f27c69406e85a8623913a90f0531cf63ac74 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Mon, 22 Nov 2021 15:26:45 +0100 Subject: [PATCH 024/383] rdma-core alias --- glicid/packages/linux.scm | 2 -- 1 file changed, 2 deletions(-) diff --git a/glicid/packages/linux.scm b/glicid/packages/linux.scm index dc02938..0cddefa 100644 --- a/glicid/packages/linux.scm +++ b/glicid/packages/linux.scm @@ -131,8 +131,6 @@ (define-public rdma-core rdma-core-38.0) - - (define-public glicid-rdma-core-gcc-11 (package (inherit rdma-core) From 470fe7028841ff8ec1713e823144869f4be8da77 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Mon, 22 Nov 2021 15:57:06 +0100 Subject: [PATCH 025/383] =?UTF-8?q?update=20=E2=80=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- glicid/packages/linux.scm | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/glicid/packages/linux.scm b/glicid/packages/linux.scm index 0cddefa..8187b35 100644 --- a/glicid/packages/linux.scm +++ b/glicid/packages/linux.scm @@ -95,8 +95,6 @@ ) - - (define-public rdma-core-37.1 (package (inherit gnu:rdma-core) @@ -113,7 +111,7 @@ ) (define-public rdma-core-38.0 -(package + (package (inherit gnu:rdma-core) (version "38.0") (source (origin @@ -130,9 +128,8 @@ (define-public rdma-core rdma-core-38.0) - (define-public glicid-rdma-core-gcc-11 -(package + (package (inherit rdma-core) (name "glicid-rdma-core-gcc-11") (inputs `(("gcc-11", gcc-11) @@ -142,7 +139,7 @@ (define-public libfabric-1.13.1 -(package + (package (inherit gnu:libfabric) (version "1.13.1") (source @@ -158,7 +155,7 @@ ) (define-public libfabric-1.14.0 -(package + (package (inherit gnu:libfabric) (version "1.14.0") (source @@ -176,7 +173,7 @@ (define-public libfabric libfabric-1.14.0) (define-public glicid-libfabric-gcc-11 -(package + (package (inherit libfabric) (name "glicid-libfabric-gcc-11") From a54b62df62341a653b6c1c7b3545476408a8248f Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Mon, 22 Nov 2021 16:12:44 +0100 Subject: [PATCH 026/383] typo --- glicid/packages/fabric-management.scm | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/glicid/packages/fabric-management.scm b/glicid/packages/fabric-management.scm index d6928b8..344fc25 100644 --- a/glicid/packages/fabric-management.scm +++ b/glicid/packages/fabric-management.scm @@ -116,15 +116,14 @@ (package (inherit ucx) (name "glicid-ucx") - ) - -(inputs ` + (inputs `( ("libfabric", libfabric) ;; latest of glicid or gnu version ("rdma-core",rdma-core) ;; latest of glicid or gnu version ,@(package-inputs ucx))) -) + ) + ) (define-public glicid-ucx-gcc-11 (package From b6439ce2187dbf4ffd6dcb59fdfddf16eef926e2 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Mon, 22 Nov 2021 18:07:00 +0100 Subject: [PATCH 027/383] test --- glicid/packages/mpi.scm | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/glicid/packages/mpi.scm b/glicid/packages/mpi.scm index 11a9acc..98db13c 100644 --- a/glicid/packages/mpi.scm +++ b/glicid/packages/mpi.scm @@ -17,7 +17,7 @@ #:use-module (gnu packages base) #:use-module (gnu packages freeipmi) #:use-module (gnu packages linux) - #:use-module (gnu packages mpi) + #:use-module ((gnu packages mpi) #:prefix gnu:) #:use-module (gnu packages perl) #:use-module (gnu packages pkg-config) #:use-module (gnu packages parallel) @@ -99,13 +99,15 @@ ) -(define-public glicid-openmpi - (package - (inherit openmpi) - (name "glicid-openpmi") - ) +(define-public openmpi + (package + (inherit gnu:openmpi) + (version (string-append "-glicid" (package-version gnu:openmpi))) + ) + ) +(define glicid-openmpi openmpi) (define-public glicid-openmpi-gcc-11 (package From d4348886a8024ad54b91e49411807e17409fe263 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Mon, 22 Nov 2021 18:13:00 +0100 Subject: [PATCH 028/383] new openmpi versions --- glicid/packages/mpi.scm | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/glicid/packages/mpi.scm b/glicid/packages/mpi.scm index 98db13c..0efb483 100644 --- a/glicid/packages/mpi.scm +++ b/glicid/packages/mpi.scm @@ -102,9 +102,14 @@ (define-public openmpi (package (inherit gnu:openmpi) - (version (string-append "-glicid" (package-version gnu:openmpi))) + (version (string-append (package-version gnu:openmpi) "-glicid" )) + + (inputs `( + ("ucx",ucx) + ("rdma-core",rdma-core) + ("libfabric",libfabric) + ,@(package-inputs openmpi))) ) - ) (define glicid-openmpi openmpi) From d32a58d439c990fc7c7e0723da8910edfaed0e25 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Mon, 22 Nov 2021 18:20:00 +0100 Subject: [PATCH 029/383] avois recurse ? --- glicid/packages/mpi.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/glicid/packages/mpi.scm b/glicid/packages/mpi.scm index 0efb483..78f62d9 100644 --- a/glicid/packages/mpi.scm +++ b/glicid/packages/mpi.scm @@ -108,9 +108,9 @@ ("ucx",ucx) ("rdma-core",rdma-core) ("libfabric",libfabric) - ,@(package-inputs openmpi))) + ,@(package-inputs gnu:openmpi))) ) -) +) (define glicid-openmpi openmpi) @@ -126,7 +126,7 @@ ("libfabric",glicid-libfabric-gcc-11) ,@(package-inputs openmpi))) ) -) +) (define-public glicid-specific-openmpi From 50859665e23a381d6cd4420b05b842083ff82f5d Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Mon, 22 Nov 2021 18:57:04 +0100 Subject: [PATCH 030/383] renames --- glicid/packages/parallel.scm | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/glicid/packages/parallel.scm b/glicid/packages/parallel.scm index f422cde..446e565 100644 --- a/glicid/packages/parallel.scm +++ b/glicid/packages/parallel.scm @@ -150,13 +150,13 @@ ) ) -(define-public openpmix openpmix-4.1.0) +;;(define-public openpmix openpmix-4.1.0) -(define-public glicid-custom-slurm-19.05 +(define-public slurm-19.05-glicid (package (inherit slurm) - (name "glicid-custom-slurm-19.05") + (name "slurm-glicid") (version "19.05.6") (source (origin @@ -198,10 +198,10 @@ )) -(define-public glicid-custom-slurm-20.02 +(define-public slurm-20.02-glicid (package - (inherit glicid-custom-slurm-19.05) - (name "glicid-custom-slurm-20.02") + (inherit slurm-19.05-glicid) + (name "slurm-glicid") (version "20.02.7") (source (origin @@ -212,10 +212,10 @@ )) -(define-public glicid-custom-slurm-20.11 +(define-public slurm-20.11-glicid (package - (inherit glicid-custom-slurm-20.02) - (name "glicid-custom-slurm-20.11") + (inherit slurm-20.02-glicid) + (name "slurm-glicid") (version "20.11.7") (source (origin @@ -225,7 +225,7 @@ )) )) -(define-public glicid-specific-slurm glicid-custom-slurm-20.02) +;(define-public glicid-specific-slurm glicid-custom-slurm-20.02) From cdff52efe2292cf2fa813bed1bef2e3c915a5528 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Mon, 22 Nov 2021 19:00:12 +0100 Subject: [PATCH 031/383] reverse patch --- glicid/packages/parallel.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glicid/packages/parallel.scm b/glicid/packages/parallel.scm index 446e565..14c2e97 100644 --- a/glicid/packages/parallel.scm +++ b/glicid/packages/parallel.scm @@ -150,7 +150,7 @@ ) ) -;;(define-public openpmix openpmix-4.1.0) +(define-public openpmix openpmix-4.1.0) (define-public slurm-19.05-glicid From 4c1a9598367298da1d48fa44069c2d18566f7e53 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Mon, 22 Nov 2021 19:14:19 +0100 Subject: [PATCH 032/383] new versions --- glicid/packages/mpi.scm | 45 ++++++++++++++++++++--------------------- 1 file changed, 22 insertions(+), 23 deletions(-) diff --git a/glicid/packages/mpi.scm b/glicid/packages/mpi.scm index 78f62d9..e0558ae 100644 --- a/glicid/packages/mpi.scm +++ b/glicid/packages/mpi.scm @@ -99,7 +99,7 @@ ) -(define-public openmpi +(define-public openmpi-glicid (package (inherit gnu:openmpi) (version (string-append (package-version gnu:openmpi) "-glicid" )) @@ -112,34 +112,33 @@ ) ) -(define glicid-openmpi openmpi) - -(define-public glicid-openmpi-gcc-11 +(define-public openmpi-glicid-gcc-11 (package - (inherit glicid-openmpi) - (name "glicid-openpmi-gcc-11") + (inherit openmpi-glicid) + (version (string-append (package-version openmpi-glicid) "-gcc-11" )) +; (name "glicid-openpmi-gcc-11") (inputs `(("gcc-11", gcc-11) ("gfortran-11", gfortran-11) - ("glicid-ucx-gcc-11",glicid-ucx-gcc-11) - ("glicid-rdma-core-gcc-11",glicid-rdma-core-gcc-11) - ("libfabric",glicid-libfabric-gcc-11) - ,@(package-inputs openmpi))) +; ("glicid-ucx-gcc-11",glicid-ucx-gcc-11) +; ("glicid-rdma-core-gcc-11",glicid-rdma-core-gcc-11) +; ("libfabric",glicid-libfabric-gcc-11) + ,@(package-inputs openmpi-glicid))) ) ) -(define-public glicid-specific-openmpi - (package - (inherit glicid-openmpi-gcc-11) - (name "glicid-specific-openmpi") - (inputs `( - ("gcc",gcc-11) - ("rdma-core",glicid-rdma-core-gcc-11) - ("ucx",glicid-ucx-gcc-10) - ("libfabric",glicid-libfabric-gcc-11) -; ("slurm", glicid-specific-slurm) - ,@(package-inputs glicid-openmpi-gcc-11))) - ) -) +;(define-public glicid-specific-openmpi +; (package +; (inherit glicid-openmpi-gcc-11) +; (name "glicid-specific-openmpi") +; (inputs `( +; ("gcc",gcc-11) +; ("rdma-core",glicid-rdma-core-gcc-11) +; ("ucx",glicid-ucx-gcc-10) +; ("libfabric",glicid-libfabric-gcc-11) +;; ("slurm", glicid-specific-slurm) +; ,@(package-inputs glicid-openmpi-gcc-11))) +; ) +;) From f876de40167733d1e89d82bae3a5664f349e54ab Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Mon, 22 Nov 2021 19:20:25 +0100 Subject: [PATCH 033/383] suppress old packages --- glicid/packages/benchmark.scm | 18 +++++++++--------- glicid/packages/glicid.scm | 34 +++++++++++++++++----------------- 2 files changed, 26 insertions(+), 26 deletions(-) diff --git a/glicid/packages/benchmark.scm b/glicid/packages/benchmark.scm index 6d40346..1b8afe2 100644 --- a/glicid/packages/benchmark.scm +++ b/glicid/packages/benchmark.scm @@ -157,15 +157,15 @@ ) ) -(define-public glicid-intel-mpi-benchmarks-gcc-11 - (package - (inherit glicid-intel-mpi-benchmarks) - (name "glicid-specific-intel-mpi-benchmarks") - (inputs `(("openmpi", glicid-openmpi-gcc-11) - ("gcc",gcc-11) - ,@(package-inputs glicid-intel-mpi-benchmarks))) - ) -) +;(define-public glicid-intel-mpi-benchmarks-gcc-11 +; (package +; (inherit glicid-intel-mpi-benchmarks) +; (name "glicid-specific-intel-mpi-benchmarks") +; (inputs `(("openmpi", glicid-openmpi-gcc-11) +; ("gcc",gcc-11) +; ,@(package-inputs glicid-intel-mpi-benchmarks))) +; ) +;) ;;defined by gricad / PA Boutier diff --git a/glicid/packages/glicid.scm b/glicid/packages/glicid.scm index 95d7abd..6b66f32 100644 --- a/glicid/packages/glicid.scm +++ b/glicid/packages/glicid.scm @@ -241,23 +241,23 @@ ;) -(define-public glicid-gromacs-gcc-11 - (package - (inherit gromacs) - (name "glicid-gromacs-gcc-11") - (version "2020.3") - (source - (origin - (method url-fetch) - (uri (string-append "http://ftp.gromacs.org/pub/gromacs/gromacs-" version ".tar.gz")) - (sha256 (base32 "1acjrhcfzpqy2dncblhj97602jbg9gdha4q1bgji9nrj25lq6cch")) - )) - - (inputs `(("gcc-11", gcc-11) - ("gfortran-11", gfortran-11) - ("glicid-openmpi-gcc-11", glicid-openmpi-gcc-11) - ,@(package-inputs gromacs))) -)) +;(define-public glicid-gromacs-gcc-11 +; (package +; (inherit gromacs) +; (name "glicid-gromacs-gcc-11") +; (version "2020.3") +; (source +; (origin +; (method url-fetch) +; (uri (string-append "http://ftp.gromacs.org/pub/gromacs/gromacs-" version ".tar.gz")) +; (sha256 (base32 "1acjrhcfzpqy2dncblhj97602jbg9gdha4q1bgji9nrj25lq6cch")) +; )) +; +; (inputs `(("gcc-11", gcc-11) +; ("gfortran-11", gfortran-11) +; ("glicid-openmpi-gcc-11", glicid-openmpi-gcc-11) +; ,@(package-inputs gromacs))) +;)) (define-public glicid-python-nbxmpp From 3d00017f1d3aae1e3d1fdb7874a31d400acc7ea2 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Mon, 22 Nov 2021 19:23:24 +0100 Subject: [PATCH 034/383] still olp packages --- glicid/packages/glicid.scm | 84 +++++++++++++++++++------------------- 1 file changed, 42 insertions(+), 42 deletions(-) diff --git a/glicid/packages/glicid.scm b/glicid/packages/glicid.scm index 6b66f32..b3f6bae 100644 --- a/glicid/packages/glicid.scm +++ b/glicid/packages/glicid.scm @@ -290,48 +290,48 @@ ) ) -(define-public glicid-specific-hdf5-parallel-openmpi - (package/inherit glicid-specific-hdf5 ;use the latest - (name "glicid-specific-hdf5-parallel-openmpi") - (inputs - `(("mpi" ,glicid-specific-openmpi) - ,@(package-inputs glicid-specific-hdf5))) - (arguments - -; `( -; #:tests? #f - - ( - substitute-keyword-arguments (package-arguments glicid-specific-hdf5) - ((#:configure-flags flags) - ``("--enable-parallel" "--disable-tests" - ,@(delete "--enable-cxx" - (delete "--enable-threadsafe" ,flags)))) - ((#:phases phases) - `(modify-phases ,phases - (add-after 'build 'mpi-setup - ,%openmpi-setup) - (add-before 'check 'patch-tests - (lambda _ - ;; OpenMPI's mpirun will exit with non-zero status if it - ;; detects an "abnormal termination", i.e. any process not - ;; calling MPI_Finalize(). Since the test is explicitly - ;; avoiding MPI_Finalize so as not to have at_exit and thus - ;; H5C_flush_cache from being called, mpirun will always - ;; complain, so turn this test off. - (substitute* "testpar/Makefile" - (("(^TEST_PROG_PARA.*)t_pflush1(.*)" front back) - (string-append front back "\n"))) - (substitute* "tools/test/h5diff/testph5diff.sh" - (("/bin/sh") (which "sh"))) - #t)))) - -)) - - - - (synopsis "Management suite for data with parallel IO support"))) - +;(define-public glicid-specific-hdf5-parallel-openmpi +; (package/inherit glicid-specific-hdf5 ;use the latest +; (name "glicid-specific-hdf5-parallel-openmpi") +; (inputs +; `(("mpi" ,glicid-specific-openmpi) +; ,@(package-inputs glicid-specific-hdf5))) +; (arguments +; +;; `( +;; #:tests? #f +; +; ( +; substitute-keyword-arguments (package-arguments glicid-specific-hdf5) +; ((#:configure-flags flags) +; ``("--enable-parallel" "--disable-tests" +; ,@(delete "--enable-cxx" +; (delete "--enable-threadsafe" ,flags)))) +; ((#:phases phases) +; `(modify-phases ,phases +; (add-after 'build 'mpi-setup +; ,%openmpi-setup) +; (add-before 'check 'patch-tests +; (lambda _ +; ;; OpenMPI's mpirun will exit with non-zero status if it +; ;; detects an "abnormal termination", i.e. any process not +; ;; calling MPI_Finalize(). Since the test is explicitly +; ;; avoiding MPI_Finalize so as not to have at_exit and thus +; ;; H5C_flush_cache from being called, mpirun will always +; ;; complain, so turn this test off. +; (substitute* "testpar/Makefile" +; (("(^TEST_PROG_PARA.*)t_pflush1(.*)" front back) +; (string-append front back "\n"))) +; (substitute* "tools/test/h5diff/testph5diff.sh" +; (("/bin/sh") (which "sh"))) +; #t)))) +; +;)) +; +; +; +; (synopsis "Management suite for data with parallel IO support"))) +; (define-public glicid-specific-openblas From f04ee73f4cd14dd27dc6a6014250ac253a784ff6 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Mon, 22 Nov 2021 21:40:37 +0100 Subject: [PATCH 035/383] test gcc replacement --- glicid/packages/mpi.scm | 39 +++++++++++++-------------------------- 1 file changed, 13 insertions(+), 26 deletions(-) diff --git a/glicid/packages/mpi.scm b/glicid/packages/mpi.scm index e0558ae..f58f284 100644 --- a/glicid/packages/mpi.scm +++ b/glicid/packages/mpi.scm @@ -112,33 +112,20 @@ ) ) -(define-public openmpi-glicid-gcc-11 - (package - (inherit openmpi-glicid) - (version (string-append (package-version openmpi-glicid) "-gcc-11" )) -; (name "glicid-openpmi-gcc-11") +(use-modules (guix transformations)) - (inputs `(("gcc-11", gcc-11) - ("gfortran-11", gfortran-11) -; ("glicid-ucx-gcc-11",glicid-ucx-gcc-11) -; ("glicid-rdma-core-gcc-11",glicid-rdma-core-gcc-11) -; ("libfabric",glicid-libfabric-gcc-11) - ,@(package-inputs openmpi-glicid))) - ) -) +;(define transform-to-gcc11 +; ;; The package transformation procedure. +; (options->transformation +; '( +; (with-c-toolchain . "gcc-toolchain@11")))) + +(define gcc11-instead-of-gcc + ;; This is a procedure to replace GCC by GCC11, + ;; recursively. + (package-input-rewriting `((,gcc-toolchain . ,gcc-toolchain-11)))) -;(define-public glicid-specific-openmpi -; (package -; (inherit glicid-openmpi-gcc-11) -; (name "glicid-specific-openmpi") -; (inputs `( -; ("gcc",gcc-11) -; ("rdma-core",glicid-rdma-core-gcc-11) -; ("ucx",glicid-ucx-gcc-10) -; ("libfabric",glicid-libfabric-gcc-11) -;; ("slurm", glicid-specific-slurm) -; ,@(package-inputs glicid-openmpi-gcc-11))) -; ) -;) +(define-public openmpi-glicid-gcc-11 + (gcc11-instead-of-gcc openmpi-glicid)) From 04546c7b403bce0321f4e6ca5102a9c2d79d3737 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Mon, 22 Nov 2021 22:02:22 +0100 Subject: [PATCH 036/383] =?UTF-8?q?test=20gcc-11=C2=A0variant?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- glicid/packages/mpi.scm | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/glicid/packages/mpi.scm b/glicid/packages/mpi.scm index f58f284..96ba21b 100644 --- a/glicid/packages/mpi.scm +++ b/glicid/packages/mpi.scm @@ -126,6 +126,12 @@ (package-input-rewriting `((,gcc-toolchain . ,gcc-toolchain-11)))) -(define-public openmpi-glicid-gcc-11 +(define openmpi-glicid-transform-gcc-11 (gcc11-instead-of-gcc openmpi-glicid)) +(define-public openmpi-glicid-gcc-11 + (package + (inherit openmpi-glicid-transform-gcc-11) + (version (string-append (package-version gnu:openmpi) "-gcc-11" )) + ) +) \ No newline at end of file From 020ab39125c1136ce0f4117d782c9e960a7e0c5a Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Mon, 22 Nov 2021 22:12:37 +0100 Subject: [PATCH 037/383] =?UTF-8?q?gcc10=20and=20gcc11=20variants=C2=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- glicid/packages/mpi.scm | 24 +++++++++++++++++------- 1 file changed, 17 insertions(+), 7 deletions(-) diff --git a/glicid/packages/mpi.scm b/glicid/packages/mpi.scm index 96ba21b..4aef1c7 100644 --- a/glicid/packages/mpi.scm +++ b/glicid/packages/mpi.scm @@ -114,17 +114,20 @@ (use-modules (guix transformations)) -;(define transform-to-gcc11 -; ;; The package transformation procedure. -; (options->transformation -; '( -; (with-c-toolchain . "gcc-toolchain@11")))) (define gcc11-instead-of-gcc ;; This is a procedure to replace GCC by GCC11, ;; recursively. (package-input-rewriting `((,gcc-toolchain . ,gcc-toolchain-11)))) +(define gcc10-instead-of-gcc + ;; This is a procedure to replace GCC by GCC10, + ;; recursively. + (package-input-rewriting `((,gcc-toolchain . ,gcc-toolchain-10)))) + + +(define openmpi-glicid-transform-gcc-10 + (gcc10-instead-of-gcc openmpi-glicid)) (define openmpi-glicid-transform-gcc-11 (gcc11-instead-of-gcc openmpi-glicid)) @@ -132,6 +135,13 @@ (define-public openmpi-glicid-gcc-11 (package (inherit openmpi-glicid-transform-gcc-11) - (version (string-append (package-version gnu:openmpi) "-gcc-11" )) + (version (string-append (package-version openmpi-glicid-transform-gcc-11) "-gcc-11" )) ) -) \ No newline at end of file +) + +(define-public openmpi-glicid-gcc-10 + (package + (inherit openmpi-glicid-transform-gcc-10) + (version (string-append (package-version openmpi-glicid-transform-gcc-10) "-gcc-10" )) + ) +) From 2aae3218cefe4489122d735bd5ca630c4155bacc Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Mon, 22 Nov 2021 22:20:40 +0100 Subject: [PATCH 038/383] no deep replacement of gcc --- glicid/packages/mpi.scm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/glicid/packages/mpi.scm b/glicid/packages/mpi.scm index 4aef1c7..cc4f1a8 100644 --- a/glicid/packages/mpi.scm +++ b/glicid/packages/mpi.scm @@ -118,11 +118,13 @@ (define gcc11-instead-of-gcc ;; This is a procedure to replace GCC by GCC11, ;; recursively. +; (package-input-rewriting/spec `((,gcc-toolchain . ,(const gcc-toolchain-11))))) (package-input-rewriting `((,gcc-toolchain . ,gcc-toolchain-11)))) (define gcc10-instead-of-gcc ;; This is a procedure to replace GCC by GCC10, ;; recursively. +; (package-input-rewriting/spec `((,gcc-toolchain . ,(const gcc-toolchain-10))))) (package-input-rewriting `((,gcc-toolchain . ,gcc-toolchain-10)))) From 5b0699950d75afc18189fbc114cb36fdbc698cb7 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Mon, 22 Nov 2021 22:22:22 +0100 Subject: [PATCH 039/383] add fortran-11 to transformation --- glicid/packages/mpi.scm | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/glicid/packages/mpi.scm b/glicid/packages/mpi.scm index cc4f1a8..ae020bb 100644 --- a/glicid/packages/mpi.scm +++ b/glicid/packages/mpi.scm @@ -119,7 +119,12 @@ ;; This is a procedure to replace GCC by GCC11, ;; recursively. ; (package-input-rewriting/spec `((,gcc-toolchain . ,(const gcc-toolchain-11))))) - (package-input-rewriting `((,gcc-toolchain . ,gcc-toolchain-11)))) + (package-input-rewriting `( + (,gcc-toolchain . ,gcc-toolchain-11) + (,gfortran-toolchain . ,gfortran-toolchain-11) + ) + ) +) (define gcc10-instead-of-gcc ;; This is a procedure to replace GCC by GCC10, From 4c33f3fbdcdfd9ecaaa1acfa75d748518b1942d6 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Mon, 22 Nov 2021 22:40:29 +0100 Subject: [PATCH 040/383] nouveau nom keepalived --- glicid/packages/cluster.scm | 12 ++++++------ glicid/packages/fabric-management.scm | 4 +++- 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/glicid/packages/cluster.scm b/glicid/packages/cluster.scm index da9cf56..80fd708 100644 --- a/glicid/packages/cluster.scm +++ b/glicid/packages/cluster.scm @@ -95,7 +95,7 @@ ;;;;;;;; -(define-public keepalived +(define-public keepalived-2.2.4 (package (inherit gnu:keepalived) (version "2.2.4") @@ -115,12 +115,12 @@ ) ) +(define keepalived-latest (latest-version keepalived-2.2.4 gnu:keepalived)) - -(define-public glicid-keepalived +(define-public keepalived-glicid (package - (inherit (latest-version keepalived gnu:keepalived)) - (name "glicid-keepalived") + (inherit keepalived-latest) + (version (string-append (package-version keepalived-latest) "-glicid" )) (arguments `(#:configure-flags (list (string-append "--enable-snmp") @@ -132,7 +132,7 @@ (inputs `(("net-snmp", net-snmp) - ,@(package-inputs keepalived))) + ,@(package-inputs keepalived-latest))) ) ) diff --git a/glicid/packages/fabric-management.scm b/glicid/packages/fabric-management.scm index 344fc25..bda6f76 100644 --- a/glicid/packages/fabric-management.scm +++ b/glicid/packages/fabric-management.scm @@ -92,6 +92,8 @@ #:use-module (gnu packages virtualization) #:use-module (glicid packages gcc) #:use-module (glicid packages linux) + #:use-module (glicid utils) + ) @@ -110,7 +112,7 @@ ) ) -(define-public ucx ucx-1.11.2) +; (define-public ucx ucx-1.11.2) (define-public glicid-ucx (package From b38a292b8f50a68a1dc680058d82e847eb1fc7bb Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Mon, 22 Nov 2021 23:00:51 +0100 Subject: [PATCH 041/383] gcc transformation moved to utils --- glicid/packages/cluster.scm | 5 +- glicid/packages/fabric-management.scm | 73 ++++++++------------------- glicid/packages/mpi.scm | 24 +-------- glicid/utils.scm | 25 +++++++++ 4 files changed, 50 insertions(+), 77 deletions(-) diff --git a/glicid/packages/cluster.scm b/glicid/packages/cluster.scm index 80fd708..a1165ed 100644 --- a/glicid/packages/cluster.scm +++ b/glicid/packages/cluster.scm @@ -92,7 +92,6 @@ #:use-module (glicid utils) ) - ;;;;;;;; (define-public keepalived-2.2.4 @@ -115,7 +114,9 @@ ) ) -(define keepalived-latest (latest-version keepalived-2.2.4 gnu:keepalived)) +(define local:keepalived keepalived-2.2.4) +(define keepalived-latest (latest-version local:keepalived gnu:keepalived)) + (define-public keepalived-glicid (package diff --git a/glicid/packages/fabric-management.scm b/glicid/packages/fabric-management.scm index bda6f76..9cd7245 100644 --- a/glicid/packages/fabric-management.scm +++ b/glicid/packages/fabric-management.scm @@ -112,72 +112,41 @@ ) ) -; (define-public ucx ucx-1.11.2) +(define local:ucx ucx-1.11.2) -(define-public glicid-ucx +(define-public ucx-latest (latest-version local:ucx gnu:ucx)) + +(define-public ucx-glicid (package - (inherit ucx) - (name "glicid-ucx") + (inherit ucx-latest) (inputs `( ("libfabric", libfabric) ;; latest of glicid or gnu version ("rdma-core",rdma-core) ;; latest of glicid or gnu version - ,@(package-inputs ucx))) + ,@(package-inputs ucx-latest))) ) ) -(define-public glicid-ucx-gcc-11 - (package - (inherit ucx) - (name "glicid-ucx-gcc-11") +(define ucx-glicid-transform-gcc-10 + (gcc10-instead-of-gcc ucx-glicid)) - (inputs `(("gcc-11", gcc-11) - ("gfortran-11", gfortran-11) - ,@(package-inputs ucx))) - ) +(define ucx-glicid-transform-gcc-11 + (gcc11-instead-of-gcc ucx-glicid)) + +(define-public ucx-glicid-gcc-10 + (package + (inherit ucx-glicid-transform-gcc-10) + (version (string-append (package-version ucx-glicid-transform-gcc-10) "-gcc-10" )) + ) ) -(define-public glicid-ucx-gcc-10 - (package - (inherit ucx) - (name "glicid-ucx-gcc-10") - - (inputs `(("gcc-10", gcc-10) - ("gfortran-10", gfortran-10) - ,@(package-inputs ucx))) - ) +(define-public ucx-glicid-gcc-11 + (package + (inherit ucx-glicid-transform-gcc-11) + (version (string-append (package-version ucx-glicid-transform-gcc-11) "-gcc-11" )) + ) ) -(define-public glicid-specific-ucx-gcc-11 - (package - (inherit ucx) - (name "glicid-specific-ucx-gcc-11") - (version "1.10.0") - - (inputs `(("gcc", gcc-11) - ("gfortran", gfortran-11) - ("libfabric", glicid-libfabric-gcc-11) - ("rdma-core",glicid-rdma-core-gcc-11) - - ,@(package-inputs ucx))) - ) -) - -(define-public glicid-specific-ucx-gcc-10 - (package - (inherit ucx) - (name "glicid-specific-ucx-gcc-10") - - - (inputs `(("gcc", gcc-10) - ("gfortran", gfortran-10) - ("libfabric", glicid-libfabric-gcc-11) - ("rdma-core",glicid-rdma-core-gcc-11) - - ,@(package-inputs ucx))) - ) -) - ;;; glicid/fabric-management.scm ends here diff --git a/glicid/packages/mpi.scm b/glicid/packages/mpi.scm index ae020bb..08b8f66 100644 --- a/glicid/packages/mpi.scm +++ b/glicid/packages/mpi.scm @@ -93,9 +93,7 @@ #:use-module (glicid packages gcc) #:use-module (glicid packages linux) #:use-module (glicid packages fabric-management) - - - + #:use-module (glicid utils) ) @@ -112,26 +110,6 @@ ) ) -(use-modules (guix transformations)) - - -(define gcc11-instead-of-gcc - ;; This is a procedure to replace GCC by GCC11, - ;; recursively. -; (package-input-rewriting/spec `((,gcc-toolchain . ,(const gcc-toolchain-11))))) - (package-input-rewriting `( - (,gcc-toolchain . ,gcc-toolchain-11) - (,gfortran-toolchain . ,gfortran-toolchain-11) - ) - ) -) - -(define gcc10-instead-of-gcc - ;; This is a procedure to replace GCC by GCC10, - ;; recursively. -; (package-input-rewriting/spec `((,gcc-toolchain . ,(const gcc-toolchain-10))))) - (package-input-rewriting `((,gcc-toolchain . ,gcc-toolchain-10)))) - (define openmpi-glicid-transform-gcc-10 (gcc10-instead-of-gcc openmpi-glicid)) diff --git a/glicid/utils.scm b/glicid/utils.scm index 7c317a6..339620f 100644 --- a/glicid/utils.scm +++ b/glicid/utils.scm @@ -1,8 +1,33 @@ (define-module (glicid utils) #:use-module (guix packages) + #:use-module (guix transformations) + #:use-module (gnu packages gcc) + #:use-module (glicid packages gcc) + #:use-module (gnu packages commencement) #:export (latest-version) + #:export (gcc11-instead-of-gcc) + #:export (gcc10-instead-of-gcc) + ) ;; helper function ;; return latest version of 2 packages (define (latest-version v1 v2) (if (string> (package-version v1) (package-version v2)) v1 v2)) + +(define gcc11-instead-of-gcc + ;; This is a procedure to replace GCC by GCC11, + ;; recursively. +; (package-input-rewriting/spec `((,gcc-toolchain . ,(const gcc-toolchain-11))))) + (package-input-rewriting `( + (,gcc-toolchain . ,gcc-toolchain-11) + (,gfortran-toolchain . ,gfortran-toolchain-11) + ) + ) +) + +(define gcc10-instead-of-gcc + ;; This is a procedure to replace GCC by GCC10, + ;; recursively. +; (package-input-rewriting/spec `((,gcc-toolchain . ,(const gcc-toolchain-10))))) + (package-input-rewriting `((,gcc-toolchain . ,gcc-toolchain-10)))) + From 2e2fed3babd6501fb22b7d580c0cf1d03be54508 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Mon, 22 Nov 2021 23:24:52 +0100 Subject: [PATCH 042/383] new versions and derivations --- glicid/packages/fabric-management.scm | 5 ++- glicid/packages/linux.scm | 54 +++++++++++++++++++-------- glicid/packages/mpi.scm | 6 ++- 3 files changed, 45 insertions(+), 20 deletions(-) diff --git a/glicid/packages/fabric-management.scm b/glicid/packages/fabric-management.scm index 9cd7245..ac1a51e 100644 --- a/glicid/packages/fabric-management.scm +++ b/glicid/packages/fabric-management.scm @@ -112,9 +112,10 @@ ) ) -(define local:ucx ucx-1.11.2) +(define local-ucx ucx-1.11.2) -(define-public ucx-latest (latest-version local:ucx gnu:ucx)) +;; not working right now ;; (define-public ucx-latest (latest-version local-ucx gnu:ucx)) +(define-public ucx-latest local-ucx) ;; for now… (define-public ucx-glicid (package diff --git a/glicid/packages/linux.scm b/glicid/packages/linux.scm index 8187b35..078dfbf 100644 --- a/glicid/packages/linux.scm +++ b/glicid/packages/linux.scm @@ -91,7 +91,7 @@ #:use-module (gnu packages pretty-print) #:use-module (gnu packages virtualization) #:use-module (glicid packages gcc) - + #:use-module (glicid utils) ) @@ -126,14 +126,27 @@ ) -(define-public rdma-core rdma-core-38.0) +(define local-rdma-core rdma-core-38.0) +(define-public rdma-core-latest local-rdma-core) -(define-public glicid-rdma-core-gcc-11 - (package - (inherit rdma-core) - (name "glicid-rdma-core-gcc-11") - (inputs `(("gcc-11", gcc-11) - ,@(package-inputs rdma-core))) + +(define rdma-core-transform-gcc-10 + (gcc10-instead-of-gcc rdma-core-latest)) + +(define rdma-core-transform-gcc-11 + (gcc11-instead-of-gcc rdma-core-latest)) + +(define-public rdma-core-gcc-10 + (package + (inherit rdma-core-transform-gcc-10) + (version (string-append (package-version rdma-core-transform-gcc-10) "-gcc-10" )) + ) +) + +(define-public rdma-core-gcc-11 + (package + (inherit rdma-core-transform-gcc-11) + (version (string-append (package-version rdma-core-transform-gcc-11) "-gcc-11" )) ) ) @@ -170,18 +183,27 @@ ) ) -(define-public libfabric libfabric-1.14.0) +(define local-libfabric libfabric-1.14.0) +(define-public libfabric-latest local-libfabric) -(define-public glicid-libfabric-gcc-11 - (package - (inherit libfabric) - (name "glicid-libfabric-gcc-11") +(define libfabric-transform-gcc-10 + (gcc10-instead-of-gcc libfabric-latest)) - (inputs `(("gcc-11", gcc-11) - ("rdma-core", glicid-rdma-core-gcc-11) - ,@(package-inputs libfabric))) +(define libfabric-transform-gcc-11 + (gcc11-instead-of-gcc libfabric-latest)) + +(define-public libfabric-gcc-10 + (package + (inherit libfabric-transform-gcc-10) + (version (string-append (package-version libfabric-transform-gcc-10) "-gcc-10" )) ) ) +(define-public libfabric-gcc-11 + (package + (inherit libfabric-transform-gcc-11) + (version (string-append (package-version libfabric-transform-gcc-11) "-gcc-11" )) + ) +) ;;; glicid/linux.scm ends here diff --git a/glicid/packages/mpi.scm b/glicid/packages/mpi.scm index 08b8f66..3a28545 100644 --- a/glicid/packages/mpi.scm +++ b/glicid/packages/mpi.scm @@ -97,16 +97,18 @@ ) +(define latest-openmpi gnu:openmpi) + (define-public openmpi-glicid (package (inherit gnu:openmpi) - (version (string-append (package-version gnu:openmpi) "-glicid" )) + (version (string-append (package-version latest-openmpi) "-glicid" )) (inputs `( ("ucx",ucx) ("rdma-core",rdma-core) ("libfabric",libfabric) - ,@(package-inputs gnu:openmpi))) + ,@(package-inputs latest-openmpi))) ) ) From 67f112b4acb42d8b67f6a1d3a4db6af8b834832b Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Mon, 22 Nov 2021 23:30:46 +0100 Subject: [PATCH 043/383] version -glicid --- glicid/packages/fabric-management.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/glicid/packages/fabric-management.scm b/glicid/packages/fabric-management.scm index ac1a51e..f50f571 100644 --- a/glicid/packages/fabric-management.scm +++ b/glicid/packages/fabric-management.scm @@ -118,8 +118,9 @@ (define-public ucx-latest local-ucx) ;; for now… (define-public ucx-glicid - (package + (package (inherit ucx-latest) + (version (string-append (package-version ucx-latest) "-glicid" )) (inputs `( ("libfabric", libfabric) ;; latest of glicid or gnu version ("rdma-core",rdma-core) ;; latest of glicid or gnu version From 8c6f8198058916647b2368707c2bf97ac8413378 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Tue, 23 Nov 2021 10:32:08 +0100 Subject: [PATCH 044/383] test STREAM --- glicid/packages/benchmark.scm | 88 +++++++++++++++++++++++++---------- 1 file changed, 64 insertions(+), 24 deletions(-) diff --git a/glicid/packages/benchmark.scm b/glicid/packages/benchmark.scm index 1b8afe2..e292092 100644 --- a/glicid/packages/benchmark.scm +++ b/glicid/packages/benchmark.scm @@ -54,7 +54,7 @@ #:use-module (gnu packages fontutils) #:use-module (guix build-system gnu) #:use-module (gnu packages image) - #:use-module (gnu packages maths) + #:use-module (gnu packages maths) #:use-module (guix utils) #:use-module (gnu packages cmake) #:use-module (gnu packages pretty-print) @@ -66,7 +66,7 @@ #:use-module (gnu packages assembly) #:use-module (gnu packages authentication) #:use-module (gnu packages bdw-gc) - #:use-module (gnu packages boost) + #:use-module (gnu packages boost) #:use-module (gnu packages compression) #:use-module (gnu packages crypto) #:use-module (gnu packages cryptsetup) @@ -75,9 +75,9 @@ #:use-module (gnu packages disk) #:use-module (gnu packages gperf) #:use-module (gnu packages jemalloc) - #:use-module (gnu packages linux) - #:use-module (gnu packages lua) - #:use-module (gnu packages ncurses) + #:use-module (gnu packages linux) + #:use-module (gnu packages lua) + #:use-module (gnu packages ncurses) #:use-module (gnu packages networking) #:use-module (gnu packages nss) #:use-module (gnu packages openldap) @@ -85,8 +85,8 @@ #:use-module (gnu packages python) #:use-module (gnu packages python-xyz) #:use-module (gnu packages sphinx) - #:use-module (gnu packages tls) - #:use-module (gnu packages web) + #:use-module (gnu packages tls) + #:use-module (gnu packages web) ;; #:use-module (gnu packages glicid) #:use-module (gnu packages pretty-print) #:use-module (gnu packages virtualization) @@ -116,15 +116,17 @@ #:use-module (gnu packages video) #:use-module (gnu packages llvm) #:use-module (gnu packages multiprecision) - + #:use-module (glicid utils) + #:use-module (guix git-download) + ) ;;;;;;;; -(define-public intel-mpi-benchmarks/openmpi - (package +(define-public intel-mpi-benchmarks/openmpi-2021.3 + (package (inherit gnu:intel-mpi-benchmarks/openmpi) (name "intel-mpi-benchmarks") (version "2021.3") @@ -150,22 +152,60 @@ ) ) -(define-public glicid-intel-mpi-benchmarks - (package - (inherit intel-mpi-benchmarks/openmpi) - (name "glicid-intel-mpi-benchmarks") - ) -) +(define intel-mpi-benchmark-transform-gcc-10 + (gcc10-instead-of-gcc intel-mpi-benchmarks/openmpi-2021.3)) + +(define intel-mpi-benchmark-transform-gcc-11 + (gcc11-instead-of-gcc intel-mpi-benchmarks/openmpi-2021.3)) + +(define-public intel-mpi-benchmarks/openmpi-2021.3-gcc-10 + (package + (inherit intel-mpi-benchmark-transform-gcc-10) + (version (string-append (package-version intel-mpi-benchmark-transform-gcc-10) "-gcc-10" )) + ) +) + +(define-public intel-mpi-benchmarks/openmpi-2021.3-gcc-11 + (package + (inherit intel-mpi-benchmark-transform-gcc-11) + (version (string-append (package-version intel-mpi-benchmark-transform-gcc-11) "-gcc-11" )) + ) +) + +(define-public stream-benchmarks + (package + (name "stream-benchmarks") + (version "5.10-jh") +; (source (origin +; (method git-fetch +; (uri +; (git-reference +; (url "https://github.com/jeffhammond/STREAM.git") +; (commit "HEAD") +; (sha256 (base32 "")) +; ) +; ) +; ) +; ) +; ) + + +(source (origin + (method url-fetch) + (uri "https://github.com/jeffhammond/STREAM/archive/refs/heads/master.zip") + (sha256 + (base32 "0a27616mikli251hrr6yc3rifm2ajgr0328qjfzsfdq7yaikbf1g") + ) + ) +) + (build-system gnu-build-system) + (synopsis "STREAM benchmark") + (description "STREAM benchmark") + (home-page "https://") + (license ""))) -;(define-public glicid-intel-mpi-benchmarks-gcc-11 -; (package -; (inherit glicid-intel-mpi-benchmarks) -; (name "glicid-specific-intel-mpi-benchmarks") -; (inputs `(("openmpi", glicid-openmpi-gcc-11) -; ("gcc",gcc-11) -; ,@(package-inputs glicid-intel-mpi-benchmarks))) ; ) -;) +;) ;;defined by gricad / PA Boutier From b23efb101539a2ecf0f85ae8e0c349ccdb9b2431 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Tue, 23 Nov 2021 10:56:29 +0100 Subject: [PATCH 045/383] new latest dependancies --- glicid/packages/mpi.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/glicid/packages/mpi.scm b/glicid/packages/mpi.scm index 3a28545..c34e628 100644 --- a/glicid/packages/mpi.scm +++ b/glicid/packages/mpi.scm @@ -105,9 +105,9 @@ (version (string-append (package-version latest-openmpi) "-glicid" )) (inputs `( - ("ucx",ucx) - ("rdma-core",rdma-core) - ("libfabric",libfabric) + ("ucx",ucx-latest) ;; should be latest beetween guix and glicid + ("rdma-core",rdma-core-latest) ;; should be latest beetween guix and glicid + ("libfabric",libfabric-latest) ,@(package-inputs latest-openmpi))) ) ) From 51a4636347dfdc18a7acd4fe1e457bec55c4e643 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Tue, 23 Nov 2021 15:57:07 +0100 Subject: [PATCH 046/383] ajout de stream --- glicid/packages/benchmark.scm | 70 ++++++++++++++++++++++------------- 1 file changed, 44 insertions(+), 26 deletions(-) diff --git a/glicid/packages/benchmark.scm b/glicid/packages/benchmark.scm index e292092..d053e6f 100644 --- a/glicid/packages/benchmark.scm +++ b/glicid/packages/benchmark.scm @@ -172,40 +172,58 @@ ) ) +(use-modules (guix packages)) +(use-modules (guix download)) +(use-modules (guix build-system gnu)) +(use-modules (gnu packages compression)) +(use-modules (guix git-download)) +(use-modules (gnu packages commencement)) +(use-modules (glicid packages gcc)) + (define-public stream-benchmarks - (package + (package (name "stream-benchmarks") (version "5.10-jh") -; (source (origin -; (method git-fetch -; (uri -; (git-reference -; (url "https://github.com/jeffhammond/STREAM.git") -; (commit "HEAD") -; (sha256 (base32 "")) -; ) -; ) -; ) -; ) -; ) - - -(source (origin - (method url-fetch) - (uri "https://github.com/jeffhammond/STREAM/archive/refs/heads/master.zip") - (sha256 - (base32 "0a27616mikli251hrr6yc3rifm2ajgr0328qjfzsfdq7yaikbf1g") + (source (origin + (method git-fetch) + (uri + (git-reference + (url "https://github.com/jeffhammond/STREAM.git") + (commit "HEAD") ) - ) -) + ) + + (sha256 (base32 "1b5ka2h6rhp2103app6p0vq29y7qixcli9w874hb33y05ggjin8m")) + (file-name (string-append name "-" version "-checkout")) + ) + ) + (build-system gnu-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + (delete 'configure) ; no configure + (delete 'check) ; no check + (replace 'install + (lambda* (#:key outputs #:allow-other-keys) + ;; Le Makefile du paquet ne fournit pas de règle « install » + ;; alors on le fait nous-mêmes. + (let ((bin (string-append (assoc-ref outputs "out") + "/bin"))) + (install-file "stream_c.exe" bin) + (install-file "stream_f.exe" bin) + + #t))) + ) + ) + ) + (inputs `(("gfortran-toolchain@11" ,gfortran-toolchain-11))) + (synopsis "STREAM benchmark") (description "STREAM benchmark") (home-page "https://") - (license ""))) - -; ) -;) + (license "")) +) ;;defined by gricad / PA Boutier From 2fb272b6d6263864113e15aa1fd13ca242b48d71 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Tue, 23 Nov 2021 22:32:00 +0100 Subject: [PATCH 047/383] new libfido2 --- glicid/packages/ssh.scm | 23 ++++++++++++++++++++--- 1 file changed, 20 insertions(+), 3 deletions(-) diff --git a/glicid/packages/ssh.scm b/glicid/packages/ssh.scm index 59f2f46..8b799b0 100644 --- a/glicid/packages/ssh.scm +++ b/glicid/packages/ssh.scm @@ -152,10 +152,10 @@ )) -(define-public glicid-libfido2 +(define-public libfido2-1.8.0 (package - (name "glicid-libfido2") + (name "libfido2") (version "1.8.0") (source (origin @@ -193,6 +193,23 @@ ) +(define-public libfido2-1.9.0 + (package + (inherit libfido2-1.8.0) + (version "1.9.0") + (source + (origin + (method url-fetch) + (uri (string-append "https://developers.yubico.com/libfido2/Releases/libfido2-" version ".tar.gz")) +; (file-name (string-append name "-" version ".tar.gz")) + (sha256 (base32 "07gxyy5yzgfh5hg7q9fr77z5mkj0xjvd5ya7p5f5kar4iwc92hjm")) + ) + ) + ) +) + +(define libfido2-latest libfido2-1.9.0) + (define-public glicid-specific-openssh (package (inherit openssh) @@ -273,7 +290,7 @@ ) ) -(inputs `(("glicid-libfido2", glicid-libfido2) +(inputs `(("libfido2", libfido2-latest) ("glicid-libcbor", glicid-libcbor) ,@(package-inputs openssh))) From d2471f225cdef1f927adca0ca286ddb9d8f63c89 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Tue, 23 Nov 2021 22:43:53 +0100 Subject: [PATCH 048/383] new ssh packages --- glicid/packages/ssh.scm | 29 +++++++++++++++++++++++------ 1 file changed, 23 insertions(+), 6 deletions(-) diff --git a/glicid/packages/ssh.scm b/glicid/packages/ssh.scm index 8b799b0..888efea 100644 --- a/glicid/packages/ssh.scm +++ b/glicid/packages/ssh.scm @@ -121,9 +121,9 @@ (use-modules ((guix licenses) #:prefix license:)) -(define-public glicid-libcbor +(define-public libcbor-0.8.0 (package - (name "glicid-libcbor") + (name "libcbor") (version "0.8.0") (source (origin @@ -152,6 +152,23 @@ )) +(define-public libcbor-0.9.0 + (package + (inherit libcbor-0.8.0) + (version "0.9.0") + (source + (origin + + (method url-fetch) + (uri (string-append "http://github.com/PJK/libcbor/archive/refs/tags/v" version ".tar.gz")) + (sha256 (base32 "12vw46ahhsc3ydnivkv5lvk1cn4sjjmcr639cjcl99d4dqb9g031")) + ) + ) + ) +) + +(define-public libcbor-latest libcbor-0.9.0) + (define-public libfido2-1.8.0 (package @@ -176,7 +193,7 @@ (inputs `( - ("glicid-libcbor",glicid-libcbor) + ("libcbor",libcbor-latest) ("openssl",openssl) ("zlib", zlib) ("pkg-config", pkg-config) ; or cmake won't find zlib ! @@ -210,10 +227,10 @@ (define libfido2-latest libfido2-1.9.0) -(define-public glicid-specific-openssh +(define-public openssh-with-fido2 (package (inherit openssh) - (name "glicid-specific-openssh") + (name "openssh-with-fido2") (arguments `(#:test-target "tests" @@ -291,7 +308,7 @@ ) (inputs `(("libfido2", libfido2-latest) - ("glicid-libcbor", glicid-libcbor) + ("libcbor", libcbor-latest) ,@(package-inputs openssh))) From 51c2809c93dbb1edbcd09c622c877e3303ff703f Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Tue, 23 Nov 2021 22:52:48 +0100 Subject: [PATCH 049/383] checksum change --- glicid/packages/ssh.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glicid/packages/ssh.scm b/glicid/packages/ssh.scm index 888efea..47a048b 100644 --- a/glicid/packages/ssh.scm +++ b/glicid/packages/ssh.scm @@ -219,7 +219,7 @@ (method url-fetch) (uri (string-append "https://developers.yubico.com/libfido2/Releases/libfido2-" version ".tar.gz")) ; (file-name (string-append name "-" version ".tar.gz")) - (sha256 (base32 "07gxyy5yzgfh5hg7q9fr77z5mkj0xjvd5ya7p5f5kar4iwc92hjm")) + (sha256 (base32 "1ln2b0zfvl35r03kn2k1i2aw1k3ypvivc71xmp4dzlin6ypy6fds")) ) ) ) From e5d25505acf2429a090b7302adf025c7eb39e9b6 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Tue, 23 Nov 2021 22:55:52 +0100 Subject: [PATCH 050/383] checksum change --- glicid/packages/ssh.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glicid/packages/ssh.scm b/glicid/packages/ssh.scm index 47a048b..f4b247d 100644 --- a/glicid/packages/ssh.scm +++ b/glicid/packages/ssh.scm @@ -161,7 +161,7 @@ (method url-fetch) (uri (string-append "http://github.com/PJK/libcbor/archive/refs/tags/v" version ".tar.gz")) - (sha256 (base32 "12vw46ahhsc3ydnivkv5lvk1cn4sjjmcr639cjcl99d4dqb9g031")) + (sha256 (base32 "1l8m7h84zwlx088gkz6gvg2fq11g0p3q6lblwba8c01y6gwy90fs")) ) ) ) From 387470810ac1280007af2329d61f6679d16d873c Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Wed, 24 Nov 2021 13:40:32 +0100 Subject: [PATCH 051/383] fftw with openmpi and fortran --- glicid/packages/algebra.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 glicid/packages/algebra.scm diff --git a/glicid/packages/algebra.scm b/glicid/packages/algebra.scm new file mode 100644 index 0000000..c996266 --- /dev/null +++ b/glicid/packages/algebra.scm @@ -0,0 +1,20 @@ +(define-module (glicid packages algebra) + #:use-module (guix packages) + #:use-module (guix utils) + #:use-module (gnu packages algebra) +) + +;;;;;;;; + +(define-public fftw-openmpi-with-fortran + + (package + (inherit fftw-openmpi) + (name "fftw-openmpi-with-fortran") + (inputs `(("gfortran", gfortran ) + ,@(package-inputs fftw-openmpi))) + + ) +) + +;;; glicid/maths.scm ends here From 1495816c77dd433c954bc87056b508da462bc2be Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Wed, 24 Nov 2021 13:53:50 +0100 Subject: [PATCH 052/383] missing gnu packages commencement --- glicid/packages/algebra.scm | 1 + 1 file changed, 1 insertion(+) diff --git a/glicid/packages/algebra.scm b/glicid/packages/algebra.scm index c996266..6625807 100644 --- a/glicid/packages/algebra.scm +++ b/glicid/packages/algebra.scm @@ -2,6 +2,7 @@ #:use-module (guix packages) #:use-module (guix utils) #:use-module (gnu packages algebra) + #:use-module (gnu packages commencement) ) ;;;;;;;; From 1f12d6e2d0d0b86caf63ff96d0f503cc1e6589f9 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Wed, 24 Nov 2021 14:07:58 +0100 Subject: [PATCH 053/383] typo --- glicid/packages/algebra.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glicid/packages/algebra.scm b/glicid/packages/algebra.scm index 6625807..b7a2cb5 100644 --- a/glicid/packages/algebra.scm +++ b/glicid/packages/algebra.scm @@ -12,7 +12,7 @@ (package (inherit fftw-openmpi) (name "fftw-openmpi-with-fortran") - (inputs `(("gfortran", gfortran ) + (inputs `(("gfortran-toolchain", gfortran-toolchain ) ,@(package-inputs fftw-openmpi))) ) From 2bc4f6031a09a29b3433a53d004314e738ee936a Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Wed, 24 Nov 2021 14:27:59 +0100 Subject: [PATCH 054/383] delete checks --- glicid/packages/algebra.scm | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/glicid/packages/algebra.scm b/glicid/packages/algebra.scm index b7a2cb5..68e75f6 100644 --- a/glicid/packages/algebra.scm +++ b/glicid/packages/algebra.scm @@ -12,6 +12,15 @@ (package (inherit fftw-openmpi) (name "fftw-openmpi-with-fortran") + (arguments + `(#:phases + (modify-phases %standard-phases + (delete 'check) ; no check + ) + ) + ) + + (inputs `(("gfortran-toolchain", gfortran-toolchain ) ,@(package-inputs fftw-openmpi))) From cb93a73a667387edfd657e22cf8b1682c5ec0a86 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Wed, 24 Nov 2021 14:42:01 +0100 Subject: [PATCH 055/383] change arguments --- glicid/packages/algebra.scm | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/glicid/packages/algebra.scm b/glicid/packages/algebra.scm index 68e75f6..d817dc6 100644 --- a/glicid/packages/algebra.scm +++ b/glicid/packages/algebra.scm @@ -13,12 +13,21 @@ (inherit fftw-openmpi) (name "fftw-openmpi-with-fortran") (arguments - `(#:phases - (modify-phases %standard-phases - (delete 'check) ; no check - ) - ) - ) + + (substitute-keyword-arguments (package-arguments fftw) + ((#:configure-flags cf) + `(cons "--enable-mpi --enable-threads --enable-openmp" ,cf)) + ((#:phases phases '%standard-phases) + `(modify-phases ,phases + (add-before 'check 'mpi-setup + ,%openmpi-setup))))) + +; `(#:phases +; (modify-phases %standard-phases +; (delete 'check) ; no check +; ) +; ) +; ) (inputs `(("gfortran-toolchain", gfortran-toolchain ) From 4e0db4ebc9cd3f3f627746277acd856b896f9c66 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Wed, 24 Nov 2021 15:46:59 +0100 Subject: [PATCH 056/383] bump fftw version --- glicid/packages/algebra.scm | 30 ++++++++++++------------------ 1 file changed, 12 insertions(+), 18 deletions(-) diff --git a/glicid/packages/algebra.scm b/glicid/packages/algebra.scm index d817dc6..cf2301d 100644 --- a/glicid/packages/algebra.scm +++ b/glicid/packages/algebra.scm @@ -3,6 +3,8 @@ #:use-module (guix utils) #:use-module (gnu packages algebra) #:use-module (gnu packages commencement) + #:use-module (gnu packages mpi) + #:use-module (guix download) ) ;;;;;;;; @@ -12,23 +14,14 @@ (package (inherit fftw-openmpi) (name "fftw-openmpi-with-fortran") - (arguments - - (substitute-keyword-arguments (package-arguments fftw) - ((#:configure-flags cf) - `(cons "--enable-mpi --enable-threads --enable-openmp" ,cf)) - ((#:phases phases '%standard-phases) - `(modify-phases ,phases - (add-before 'check 'mpi-setup - ,%openmpi-setup))))) - -; `(#:phases -; (modify-phases %standard-phases -; (delete 'check) ; no check -; ) -; ) -; ) - + (version "3.3.10") + (source (origin + (method url-fetch) + (uri (string-append "https://www.fftw.org/fftw-" + version".tar.gz")) + (sha256 + (base32 + "0rv4w90b65b2kvjpj8g9bdkl4xqc42q20f5bzpxdrkajk1a35jan")))) (inputs `(("gfortran-toolchain", gfortran-toolchain ) ,@(package-inputs fftw-openmpi))) @@ -36,4 +29,5 @@ ) ) -;;; glicid/maths.scm ends here + +;;; glicid/algebra.scm ends here From 6526690fc09b1cd70dae6a3a4a1debcaf8d7c647 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Fri, 26 Nov 2021 09:53:15 +0100 Subject: [PATCH 057/383] internal name change --- glicid/packages/mpi.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/glicid/packages/mpi.scm b/glicid/packages/mpi.scm index c34e628..132ac5e 100644 --- a/glicid/packages/mpi.scm +++ b/glicid/packages/mpi.scm @@ -97,18 +97,18 @@ ) -(define latest-openmpi gnu:openmpi) +(define openmpi-latest gnu:openmpi) (define-public openmpi-glicid (package (inherit gnu:openmpi) - (version (string-append (package-version latest-openmpi) "-glicid" )) + (version (string-append (package-version openmpi-latest) "-glicid" )) (inputs `( ("ucx",ucx-latest) ;; should be latest beetween guix and glicid ("rdma-core",rdma-core-latest) ;; should be latest beetween guix and glicid ("libfabric",libfabric-latest) - ,@(package-inputs latest-openmpi))) + ,@(package-inputs openmpi-latest))) ) ) From 79801ad18d35c8f42e5b04af4f6b11a868375c67 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Fri, 26 Nov 2021 22:03:59 +0100 Subject: [PATCH 058/383] tests mpi et reecriture packets --- glicid/packages/mpi.scm | 11 +++++++++-- glicid/utils.scm | 17 ++++++++++++----- 2 files changed, 21 insertions(+), 7 deletions(-) diff --git a/glicid/packages/mpi.scm b/glicid/packages/mpi.scm index c34e628..82fda1d 100644 --- a/glicid/packages/mpi.scm +++ b/glicid/packages/mpi.scm @@ -94,6 +94,8 @@ #:use-module (glicid packages linux) #:use-module (glicid packages fabric-management) #:use-module (glicid utils) + #:use-module (gnu packages parallel) + ) @@ -105,9 +107,10 @@ (version (string-append (package-version latest-openmpi) "-glicid" )) (inputs `( - ("ucx",ucx-latest) ;; should be latest beetween guix and glicid +; ("ucx",ucx-latest) ;; should be latest beetween guix and glicid ("rdma-core",rdma-core-latest) ;; should be latest beetween guix and glicid - ("libfabric",libfabric-latest) + ("libfabric",libfabric-latest) + ("slurm",slurm-20.02) ,@(package-inputs latest-openmpi))) ) ) @@ -132,3 +135,7 @@ (version (string-append (package-version openmpi-glicid-transform-gcc-10) "-gcc-10" )) ) ) + + + +openmpi-glicid diff --git a/glicid/utils.scm b/glicid/utils.scm index 339620f..10dccb0 100644 --- a/glicid/utils.scm +++ b/glicid/utils.scm @@ -25,9 +25,16 @@ ) ) -(define gcc10-instead-of-gcc - ;; This is a procedure to replace GCC by GCC10, - ;; recursively. -; (package-input-rewriting/spec `((,gcc-toolchain . ,(const gcc-toolchain-10))))) - (package-input-rewriting `((,gcc-toolchain . ,gcc-toolchain-10)))) +;(define gcc10-instead-of-gcc +; ;; This is a procedure to replace GCC by GCC10, +; ;; recursively. +;; (package-input-rewriting/spec `((,gcc-toolchain . ,(const gcc-toolchain-10))))) +; (package-input-rewriting `((,gcc-toolchain . ,gcc-toolchain-10)))) + + +(define (gcc10-instead-of-gcc packagetorewrite) + (let ((toolchaingcc (specification->package "gcc-toolchain@10")) + (toolchaingfortran (specification->package "gfortran-toolchain@10"))) + (package-with-c-toolchain packagetorewrite `(("toolchaingcc" ,toolchaingcc) + ("toulchaingfortran",toolchaingfortran))))) From 7269eecf381ccbc20c3b7c33fc70ccc6d9d265a9 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Fri, 26 Nov 2021 22:12:52 +0100 Subject: [PATCH 059/383] missing package --- glicid/utils.scm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/glicid/utils.scm b/glicid/utils.scm index 10dccb0..83296bc 100644 --- a/glicid/utils.scm +++ b/glicid/utils.scm @@ -4,10 +4,12 @@ #:use-module (gnu packages gcc) #:use-module (glicid packages gcc) #:use-module (gnu packages commencement) + #:use-module (gnu packages) #:export (latest-version) #:export (gcc11-instead-of-gcc) #:export (gcc10-instead-of-gcc) - + + ) ;; helper function ;; return latest version of 2 packages From 7b2b561e5c244ed3ea481b0bd7355868596b6e28 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Fri, 26 Nov 2021 22:13:21 +0100 Subject: [PATCH 060/383] typo --- glicid/packages/mpi.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glicid/packages/mpi.scm b/glicid/packages/mpi.scm index b181e9e..83f96f2 100644 --- a/glicid/packages/mpi.scm +++ b/glicid/packages/mpi.scm @@ -138,4 +138,4 @@ -openmpi-glicid +;openmpi-glicid From 7bb692746e20d49ac33057cc3feb376b1406b362 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Fri, 26 Nov 2021 22:20:35 +0100 Subject: [PATCH 061/383] try --- glicid/utils.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glicid/utils.scm b/glicid/utils.scm index 83296bc..a475699 100644 --- a/glicid/utils.scm +++ b/glicid/utils.scm @@ -37,6 +37,6 @@ (define (gcc10-instead-of-gcc packagetorewrite) (let ((toolchaingcc (specification->package "gcc-toolchain@10")) - (toolchaingfortran (specification->package "gfortran-toolchain@10"))) + (toolchaingfortran (specification->package "gfortran-toolchain@10.3.0"))) (package-with-c-toolchain packagetorewrite `(("toolchaingcc" ,toolchaingcc) ("toulchaingfortran",toolchaingfortran))))) From ac4bdf4066d00b9bea1605fbef68a4053e9c2d3b Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Fri, 26 Nov 2021 22:31:30 +0100 Subject: [PATCH 062/383] test --- glicid/utils.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/glicid/utils.scm b/glicid/utils.scm index a475699..bb90aa1 100644 --- a/glicid/utils.scm +++ b/glicid/utils.scm @@ -37,6 +37,7 @@ (define (gcc10-instead-of-gcc packagetorewrite) (let ((toolchaingcc (specification->package "gcc-toolchain@10")) - (toolchaingfortran (specification->package "gfortran-toolchain@10.3.0"))) + ; (toolchaingfortran (specification->package "gfortran-toolchain@10.3.0")) + ) (package-with-c-toolchain packagetorewrite `(("toolchaingcc" ,toolchaingcc) ("toulchaingfortran",toolchaingfortran))))) From 23aa00e272bebc2787895f006dcdcef3f3be9fab Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Fri, 26 Nov 2021 22:34:38 +0100 Subject: [PATCH 063/383] test --- glicid/utils.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/glicid/utils.scm b/glicid/utils.scm index bb90aa1..28528b3 100644 --- a/glicid/utils.scm +++ b/glicid/utils.scm @@ -40,4 +40,5 @@ ; (toolchaingfortran (specification->package "gfortran-toolchain@10.3.0")) ) (package-with-c-toolchain packagetorewrite `(("toolchaingcc" ,toolchaingcc) - ("toulchaingfortran",toolchaingfortran))))) + ; ("toulchaingfortran",toolchaingfortran) + )))) From 658bf106ee4b241bdcd97cef6470855e37d263f7 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Sat, 27 Nov 2021 19:06:08 +0100 Subject: [PATCH 064/383] change dependancy --- glicid/packages/mpi.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glicid/packages/mpi.scm b/glicid/packages/mpi.scm index 83f96f2..c1ebe84 100644 --- a/glicid/packages/mpi.scm +++ b/glicid/packages/mpi.scm @@ -110,7 +110,7 @@ ; ("ucx",ucx-latest) ;; should be latest beetween guix and glicid ("rdma-core",rdma-core-latest) ;; should be latest beetween guix and glicid ("libfabric",libfabric-latest) - ("slurm",slurm-20.02) + ("slurm-glicid",slurm-glicid-20.02) ,@(package-inputs openmpi-latest))) ) ) From 686f638b1d98b7fec7c8cb531c3f9dd74789b10f Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Sat, 27 Nov 2021 19:09:32 +0100 Subject: [PATCH 065/383] typo --- glicid/packages/mpi.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glicid/packages/mpi.scm b/glicid/packages/mpi.scm index c1ebe84..1c0dfc1 100644 --- a/glicid/packages/mpi.scm +++ b/glicid/packages/mpi.scm @@ -110,7 +110,7 @@ ; ("ucx",ucx-latest) ;; should be latest beetween guix and glicid ("rdma-core",rdma-core-latest) ;; should be latest beetween guix and glicid ("libfabric",libfabric-latest) - ("slurm-glicid",slurm-glicid-20.02) + ("slurm-glicid",slurm-glicid@20.02) ,@(package-inputs openmpi-latest))) ) ) From 4cdfc209c4ac04559b284332a10b04bdaaad2bd7 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Sat, 27 Nov 2021 19:12:49 +0100 Subject: [PATCH 066/383] missing dependancy --- glicid/packages/mpi.scm | 1 + 1 file changed, 1 insertion(+) diff --git a/glicid/packages/mpi.scm b/glicid/packages/mpi.scm index 1c0dfc1..3b3c899 100644 --- a/glicid/packages/mpi.scm +++ b/glicid/packages/mpi.scm @@ -95,6 +95,7 @@ #:use-module (glicid packages fabric-management) #:use-module (glicid utils) #:use-module (gnu packages parallel) + #:use-module (glicid packages parallel) ) From 1b7d71599f521a8d74f027a744828543ecb449f2 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Sat, 27 Nov 2021 19:16:43 +0100 Subject: [PATCH 067/383] typo & test --- glicid/packages/mpi.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glicid/packages/mpi.scm b/glicid/packages/mpi.scm index 3b3c899..125db57 100644 --- a/glicid/packages/mpi.scm +++ b/glicid/packages/mpi.scm @@ -111,7 +111,7 @@ ; ("ucx",ucx-latest) ;; should be latest beetween guix and glicid ("rdma-core",rdma-core-latest) ;; should be latest beetween guix and glicid ("libfabric",libfabric-latest) - ("slurm-glicid",slurm-glicid@20.02) + ("slurm-glicid@20.02",slurm-glicid) ,@(package-inputs openmpi-latest))) ) ) From de8637bae32e7b9c4d1695fc6cd4d5835ed36655 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Sat, 27 Nov 2021 19:20:59 +0100 Subject: [PATCH 068/383] typo --- glicid/packages/mpi.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glicid/packages/mpi.scm b/glicid/packages/mpi.scm index 125db57..27d2792 100644 --- a/glicid/packages/mpi.scm +++ b/glicid/packages/mpi.scm @@ -111,7 +111,7 @@ ; ("ucx",ucx-latest) ;; should be latest beetween guix and glicid ("rdma-core",rdma-core-latest) ;; should be latest beetween guix and glicid ("libfabric",libfabric-latest) - ("slurm-glicid@20.02",slurm-glicid) + ("slurm-glicid@20.02",slurm-glicid-20.02.7) ,@(package-inputs openmpi-latest))) ) ) From 864bacd7cefc37aa5f24152dc457dbdad766732e Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Sat, 27 Nov 2021 19:24:59 +0100 Subject: [PATCH 069/383] new version --- glicid/packages/mpi.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glicid/packages/mpi.scm b/glicid/packages/mpi.scm index 27d2792..cb6f8ec 100644 --- a/glicid/packages/mpi.scm +++ b/glicid/packages/mpi.scm @@ -111,7 +111,7 @@ ; ("ucx",ucx-latest) ;; should be latest beetween guix and glicid ("rdma-core",rdma-core-latest) ;; should be latest beetween guix and glicid ("libfabric",libfabric-latest) - ("slurm-glicid@20.02",slurm-glicid-20.02.7) + ("slurm-glicid@20.02",slurm-20.02-glicid) ,@(package-inputs openmpi-latest))) ) ) From 460d8afcd8d0ad1d234c4c9b2e0ddfdc60908b58 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Sat, 27 Nov 2021 19:30:09 +0100 Subject: [PATCH 070/383] no sssd for the moment --- glicid/packages/parallel.scm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/glicid/packages/parallel.scm b/glicid/packages/parallel.scm index 14c2e97..419210e 100644 --- a/glicid/packages/parallel.scm +++ b/glicid/packages/parallel.scm @@ -190,10 +190,10 @@ )) - (propagated-inputs - `( - ("sssd" ,sssd) - )) +; (propagated-inputs +; `( +; ("sssd" ,sssd) +; )) )) From 99f470ef8fdf1c4162662cb83555484113b39173 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Mon, 29 Nov 2021 09:06:20 +0100 Subject: [PATCH 071/383] new names to avoid confusion --- glicid/packages/fabric-management.scm | 21 ++++++------ glicid/packages/linux.scm | 49 +++++++++++++++------------ 2 files changed, 38 insertions(+), 32 deletions(-) diff --git a/glicid/packages/fabric-management.scm b/glicid/packages/fabric-management.scm index f50f571..9a8ac46 100644 --- a/glicid/packages/fabric-management.scm +++ b/glicid/packages/fabric-management.scm @@ -97,9 +97,10 @@ ) -(define-public ucx-1.11.2 +(define-public ucx-newer-1.11.2 (package (inherit gnu:ucx) + (name (string-append (package-name gnu:ucx) "-newer" )) (version "1.11.2") (source (origin @@ -112,7 +113,7 @@ ) ) -(define local-ucx ucx-1.11.2) +(define local-ucx ucx-newer-1.11.2) ;; not working right now ;; (define-public ucx-latest (latest-version local-ucx gnu:ucx)) (define-public ucx-latest local-ucx) ;; for now… @@ -130,18 +131,18 @@ ) ) -(define ucx-glicid-transform-gcc-10 - (gcc10-instead-of-gcc ucx-glicid)) +;(define ucx-glicid-transform-gcc-10 +; (gcc10-instead-of-gcc ucx-glicid)) (define ucx-glicid-transform-gcc-11 (gcc11-instead-of-gcc ucx-glicid)) -(define-public ucx-glicid-gcc-10 - (package - (inherit ucx-glicid-transform-gcc-10) - (version (string-append (package-version ucx-glicid-transform-gcc-10) "-gcc-10" )) - ) -) +;(define-public ucx-glicid-gcc-10 +; (package +; (inherit ucx-glicid-transform-gcc-10) +; (version (string-append (package-version ucx-glicid-transform-gcc-10) "-gcc-10" )) +; ) +;) (define-public ucx-glicid-gcc-11 (package diff --git a/glicid/packages/linux.scm b/glicid/packages/linux.scm index 078dfbf..08af2f5 100644 --- a/glicid/packages/linux.scm +++ b/glicid/packages/linux.scm @@ -95,9 +95,10 @@ ) -(define-public rdma-core-37.1 +(define-public rdma-core-newer-37.1 (package (inherit gnu:rdma-core) + (name (string-append (package-name gnu:rdma-core) "-newer" )) (version "37.1") (source (origin (method url-fetch) @@ -110,9 +111,10 @@ ) ) -(define-public rdma-core-38.0 +(define-public rdma-core-newer-38.0 (package (inherit gnu:rdma-core) + (name (string-append (package-name gnu:rdma-core) "-newer" )) (version "38.0") (source (origin (method url-fetch) @@ -126,22 +128,22 @@ ) -(define local-rdma-core rdma-core-38.0) +(define local-rdma-core rdma-core-newer-38.0) (define-public rdma-core-latest local-rdma-core) -(define rdma-core-transform-gcc-10 - (gcc10-instead-of-gcc rdma-core-latest)) +;(define rdma-core-transform-gcc-10 +; (gcc10-instead-of-gcc rdma-core-latest)) (define rdma-core-transform-gcc-11 (gcc11-instead-of-gcc rdma-core-latest)) -(define-public rdma-core-gcc-10 - (package - (inherit rdma-core-transform-gcc-10) - (version (string-append (package-version rdma-core-transform-gcc-10) "-gcc-10" )) - ) -) +;(define-public rdma-core-gcc-10 +; (package +; (inherit rdma-core-transform-gcc-10) +; (version (string-append (package-version rdma-core-transform-gcc-10) "-gcc-10" )) +; ) +;) (define-public rdma-core-gcc-11 (package @@ -151,10 +153,12 @@ ) -(define-public libfabric-1.13.1 +(define-public libfabric-newer-1.13.1 (package (inherit gnu:libfabric) (version "1.13.1") + (name (string-append (package-name gnu:libfabric) "-newer" )) + (source (origin (method url-fetch) @@ -167,10 +171,11 @@ ) ) -(define-public libfabric-1.14.0 +(define-public libfabric-newer-1.14.0 (package (inherit gnu:libfabric) (version "1.14.0") + (name (string-append (package-name gnu:libfabric) "-newer" )) (source (origin (method url-fetch) @@ -183,21 +188,21 @@ ) ) -(define local-libfabric libfabric-1.14.0) +(define local-libfabric libfabric-newer-1.14.0) (define-public libfabric-latest local-libfabric) -(define libfabric-transform-gcc-10 - (gcc10-instead-of-gcc libfabric-latest)) +;(define libfabric-transform-gcc-10 +; (gcc10-instead-of-gcc libfabric-latest)) (define libfabric-transform-gcc-11 (gcc11-instead-of-gcc libfabric-latest)) -(define-public libfabric-gcc-10 - (package - (inherit libfabric-transform-gcc-10) - (version (string-append (package-version libfabric-transform-gcc-10) "-gcc-10" )) - ) -) +;(define-public libfabric-gcc-10 +; (package +; (inherit libfabric-transform-gcc-10) +; (version (string-append (package-version libfabric-transform-gcc-10) "-gcc-10" )) +; ) +;) (define-public libfabric-gcc-11 (package From 4de0345592af31a3a0ad0de0782128055537e455 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Mon, 29 Nov 2021 09:26:26 +0100 Subject: [PATCH 072/383] new versions --- glicid/packages/mpi.scm | 40 +++++++++++++++++++++++++++------------- 1 file changed, 27 insertions(+), 13 deletions(-) diff --git a/glicid/packages/mpi.scm b/glicid/packages/mpi.scm index cb6f8ec..8b923d5 100644 --- a/glicid/packages/mpi.scm +++ b/glicid/packages/mpi.scm @@ -106,19 +106,33 @@ (package (inherit gnu:openmpi) (version (string-append (package-version openmpi-latest) "-glicid" )) - + (inputs `( -; ("ucx",ucx-latest) ;; should be latest beetween guix and glicid - ("rdma-core",rdma-core-latest) ;; should be latest beetween guix and glicid - ("libfabric",libfabric-latest) - ("slurm-glicid@20.02",slurm-20.02-glicid) + (package-input-rewriting `( + (,slurm . ,slurm-20.02.6) ;; we need this for glicid + )) ,@(package-inputs openmpi-latest))) ) ) -(define openmpi-glicid-transform-gcc-10 - (gcc10-instead-of-gcc openmpi-glicid)) +(define-public openmpi-glicid-with-newer-rdma-core + (package + (inherit openmpi-glicid) + (version (string-append (package-version openmpi-glicid) "-with-newer-rdma-core" )) + + (inputs `( + (package-input-rewriting `( + (,rdma-core . ,rdma-core-latest) ;; we need this for glicid + )) + + ,@(package-inputs openmpi-glicid))) + ) +) + + +;(define openmpi-glicid-transform-gcc-10 +; (gcc10-instead-of-gcc openmpi-glicid)) (define openmpi-glicid-transform-gcc-11 (gcc11-instead-of-gcc openmpi-glicid)) @@ -130,12 +144,12 @@ ) ) -(define-public openmpi-glicid-gcc-10 - (package - (inherit openmpi-glicid-transform-gcc-10) - (version (string-append (package-version openmpi-glicid-transform-gcc-10) "-gcc-10" )) - ) -) +;(define-public openmpi-glicid-gcc-10 +; (package +; (inherit openmpi-glicid-transform-gcc-10) +; (version (string-append (package-version openmpi-glicid-transform-gcc-10) "-gcc-10" )) +; ) +;) From 89d47b25e065badf479e2405d3e3b375122ebba0 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Mon, 29 Nov 2021 09:31:42 +0100 Subject: [PATCH 073/383] name instead of version --- glicid/packages/mpi.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glicid/packages/mpi.scm b/glicid/packages/mpi.scm index 8b923d5..7482af8 100644 --- a/glicid/packages/mpi.scm +++ b/glicid/packages/mpi.scm @@ -105,7 +105,7 @@ (define-public openmpi-glicid (package (inherit gnu:openmpi) - (version (string-append (package-version openmpi-latest) "-glicid" )) + (name (string-append (package-name openmpi-latest) "-glicid" )) (inputs `( (package-input-rewriting `( From ea8d2bab8067fd5e13b5995e9a50e64574a0d58b Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Mon, 29 Nov 2021 09:39:38 +0100 Subject: [PATCH 074/383] bunch of new versions --- glicid/packages/mpi.scm | 39 +++++++++++++++++++++++++++------------ 1 file changed, 27 insertions(+), 12 deletions(-) diff --git a/glicid/packages/mpi.scm b/glicid/packages/mpi.scm index 7482af8..0b70b1c 100644 --- a/glicid/packages/mpi.scm +++ b/glicid/packages/mpi.scm @@ -119,7 +119,7 @@ (define-public openmpi-glicid-with-newer-rdma-core (package (inherit openmpi-glicid) - (version (string-append (package-version openmpi-glicid) "-with-newer-rdma-core" )) + (name (string-append (package-name openmpi-glicid) "-with-newer-rdma-core" )) (inputs `( (package-input-rewriting `( @@ -130,9 +130,33 @@ ) ) +(define-public openmpi-glicid-with-newer-libfabric + (package + (inherit openmpi-glicid) + (name (string-append (package-name openmpi-glicid) "-with-newer-libfabric" )) + + (inputs `( + (package-input-rewriting `( + (,libfabric . ,libfabric-latest) ;; we need this for glicid + )) -;(define openmpi-glicid-transform-gcc-10 -; (gcc10-instead-of-gcc openmpi-glicid)) + ,@(package-inputs openmpi-glicid))) + ) +) + +(define-public openmpi-glicid-with-newer-ucx + (package + (inherit openmpi-glicid) + (name (string-append (package-name openmpi-glicid) "-with-newer-ucx" )) + + (inputs `( + (package-input-rewriting `( + (,ucx . ,ucx-latest) ;; we need this for glicid + )) + + ,@(package-inputs openmpi-glicid))) + ) +) (define openmpi-glicid-transform-gcc-11 (gcc11-instead-of-gcc openmpi-glicid)) @@ -144,13 +168,4 @@ ) ) -;(define-public openmpi-glicid-gcc-10 -; (package -; (inherit openmpi-glicid-transform-gcc-10) -; (version (string-append (package-version openmpi-glicid-transform-gcc-10) "-gcc-10" )) -; ) -;) - - - ;openmpi-glicid From 2b598f4044f05d9871a7d2a1adf8238c801142a2 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Mon, 29 Nov 2021 09:46:25 +0100 Subject: [PATCH 075/383] bunch of new versions --- glicid/packages/mpi.scm | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/glicid/packages/mpi.scm b/glicid/packages/mpi.scm index 0b70b1c..3d01eed 100644 --- a/glicid/packages/mpi.scm +++ b/glicid/packages/mpi.scm @@ -158,13 +158,28 @@ ) ) +(define-public openmpi-glicid-with-newer-libfabric-rdma + (package + (inherit openmpi-glicid-with-newer-libfabric) + (name (string-append (package-name openmpi-glicid-with-newer-libfabric) "-rdma" )) + + (inputs `( + (package-input-rewriting `( + (,rdma-core . ,rdma-core-latest) ;; we need this for glicid + )) + + ,@(package-inputs openmpi-glicid-with-newer-libfabric))) + ) +) + + (define openmpi-glicid-transform-gcc-11 (gcc11-instead-of-gcc openmpi-glicid)) (define-public openmpi-glicid-gcc-11 (package (inherit openmpi-glicid-transform-gcc-11) - (version (string-append (package-version openmpi-glicid-transform-gcc-11) "-gcc-11" )) + (name (string-append (package-name openmpi-glicid-transform-gcc-11) "-gcc-11" )) ) ) From 6d757ca19f50f07480c85d06c6082e1a3ca74d5b Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Mon, 29 Nov 2021 10:29:53 +0100 Subject: [PATCH 076/383] tests --- glicid/packages/mpi.scm | 75 +++++++++++++++++++++++++++-------------- 1 file changed, 50 insertions(+), 25 deletions(-) diff --git a/glicid/packages/mpi.scm b/glicid/packages/mpi.scm index 3d01eed..34191ce 100644 --- a/glicid/packages/mpi.scm +++ b/glicid/packages/mpi.scm @@ -100,35 +100,60 @@ ) +(define (transform-package original-package suffix) + (package + (inherit original-package) + (name (string-append (package-name original-package) "-" suffix )) + ) +) + (define openmpi-latest gnu:openmpi) -(define-public openmpi-glicid - (package - (inherit gnu:openmpi) - (name (string-append (package-name openmpi-latest) "-glicid" )) +(define-public openmpi-glicid package-input-rewriting/spec `( + ("slurm" . ,slurm-20.02) ;; we need this for glicid + #:deep? #t + ) + (transform-package openmpi-latest "glicid")) - (inputs `( - (package-input-rewriting `( - (,slurm . ,slurm-20.02.6) ;; we need this for glicid - )) - ,@(package-inputs openmpi-latest))) - ) -) +(define-public openmpi-glicid-with-newer-rdma-core package-input-rewriting/spec `( + ("rdma-core" . ,rdma-core-latest) ;; defined on glicid + #:deep? #t + ) + (transform-package openmpi-latest "-with-newer-rdma")) -(define-public openmpi-glicid-with-newer-rdma-core - (package - (inherit openmpi-glicid) - (name (string-append (package-name openmpi-glicid) "-with-newer-rdma-core" )) - - (inputs `( - (package-input-rewriting `( - (,rdma-core . ,rdma-core-latest) ;; we need this for glicid - )) - ,@(package-inputs openmpi-glicid))) - ) -) + +;(define-public openmpi-glicid (transform-package openmpi "glicid")) + + +;(define-public openmpi-glicid-b +; (package +; (inherit gnu:openmpi) +; (name (string-append (package-name openmpi-latest) "-glicid" )) +; +; (inputs `( +; (package-input-rewriting `( +; (,slurm . ,slurm-20.02) ;; we need this for glicid +; )) +; ,@(package-inputs openmpi-latest))) +; ) +;) + + +;(define-public openmpi-glicid-with-newer-rdma-core +; (package +; (inherit openmpi-glicid) +; (name (string-append (package-name openmpi-glicid) "-with-newer-rdma-core" )) +; +; (inputs `( +; (package-input-rewriting `( +; (,rdma-core . ,rdma-core-latest) ;; we need this for glicid +; )) +; +; ,@(package-inputs openmpi-glicid))) +; ) +;) (define-public openmpi-glicid-with-newer-libfabric (package @@ -136,7 +161,7 @@ (name (string-append (package-name openmpi-glicid) "-with-newer-libfabric" )) (inputs `( - (package-input-rewriting `( + ,@(package-input-rewriting `( (,libfabric . ,libfabric-latest) ;; we need this for glicid )) @@ -183,4 +208,4 @@ ) ) -;openmpi-glicid +openmpi-glicid From 112e7a1d0d874d2fbd3007581500b9de9b4dc1d9 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Mon, 29 Nov 2021 16:04:45 +0100 Subject: [PATCH 077/383] new versions --- glicid/packages/mpi.scm | 124 ++++++++++++---------------------------- 1 file changed, 35 insertions(+), 89 deletions(-) diff --git a/glicid/packages/mpi.scm b/glicid/packages/mpi.scm index 34191ce..1732f36 100644 --- a/glicid/packages/mpi.scm +++ b/glicid/packages/mpi.scm @@ -100,6 +100,9 @@ ) +(define openmpi-latest gnu:openmpi) + + (define (transform-package original-package suffix) (package (inherit original-package) @@ -107,105 +110,48 @@ ) ) -(define openmpi-latest gnu:openmpi) -(define-public openmpi-glicid package-input-rewriting/spec `( - ("slurm" . ,slurm-20.02) ;; we need this for glicid - #:deep? #t +(define (instead-of package-a-spec package-b) + (package-input-rewriting/spec `( + (,package-a-spec . ,(const package-b) + ) + ; #:deep? #t ) - (transform-package openmpi-latest "glicid")) - -(define-public openmpi-glicid-with-newer-rdma-core package-input-rewriting/spec `( - ("rdma-core" . ,rdma-core-latest) ;; defined on glicid - #:deep? #t - ) - (transform-package openmpi-latest "-with-newer-rdma")) - - - - -;(define-public openmpi-glicid (transform-package openmpi "glicid")) - - -;(define-public openmpi-glicid-b -; (package -; (inherit gnu:openmpi) -; (name (string-append (package-name openmpi-latest) "-glicid" )) -; -; (inputs `( -; (package-input-rewriting `( -; (,slurm . ,slurm-20.02) ;; we need this for glicid -; )) -; ,@(package-inputs openmpi-latest))) -; ) -;) - - -;(define-public openmpi-glicid-with-newer-rdma-core -; (package -; (inherit openmpi-glicid) -; (name (string-append (package-name openmpi-glicid) "-with-newer-rdma-core" )) -; -; (inputs `( -; (package-input-rewriting `( -; (,rdma-core . ,rdma-core-latest) ;; we need this for glicid -; )) -; -; ,@(package-inputs openmpi-glicid))) -; ) -;) - -(define-public openmpi-glicid-with-newer-libfabric - (package - (inherit openmpi-glicid) - (name (string-append (package-name openmpi-glicid) "-with-newer-libfabric" )) - - (inputs `( - ,@(package-input-rewriting `( - (,libfabric . ,libfabric-latest) ;; we need this for glicid - )) - - ,@(package-inputs openmpi-glicid))) - ) -) - -(define-public openmpi-glicid-with-newer-ucx - (package - (inherit openmpi-glicid) - (name (string-append (package-name openmpi-glicid) "-with-newer-ucx" )) - - (inputs `( - (package-input-rewriting `( - (,ucx . ,ucx-latest) ;; we need this for glicid - )) - - ,@(package-inputs openmpi-glicid))) - ) -) - -(define-public openmpi-glicid-with-newer-libfabric-rdma - (package - (inherit openmpi-glicid-with-newer-libfabric) - (name (string-append (package-name openmpi-glicid-with-newer-libfabric) "-rdma" )) - - (inputs `( - (package-input-rewriting `( - (,rdma-core . ,rdma-core-latest) ;; we need this for glicid - )) - - ,@(package-inputs openmpi-glicid-with-newer-libfabric))) - ) + ) ) -(define openmpi-glicid-transform-gcc-11 +(define slurm20-instead-of-slurm (instead-of "slurm" slurm-20.02)) + + +(define openmpi-glicid + (transform-package + ((instead-of "slurm" slurm-20.02) openmpi) "glicid")) + +(define openmpi-glicid-libfabric + (transform-package + ((instead-of "libfabric" libfabric-latest) openmpi-glicid) "libfabric")) + +(define openmpi-glicid-rdma + (transform-package + ((instead-of "rdma-core" rdma-core-latest) openmpi-glicid) "rdma-core")) + +(define openmpi-glicid-ucx + (transform-package + ((instead-of "ucx" ucx-latest) openmpi-glicid) "ucx")) + +(define openmpi-glicid-libfabric-rdma + (transform-package + ((instead-of "rdma-core" rdma-core-latest) openmpi-glicid-libfabric) "rdma")) + + +(define openmpi-glicid-transform-gcc-11 (gcc11-instead-of-gcc openmpi-glicid)) (define-public openmpi-glicid-gcc-11 - (package + (package (inherit openmpi-glicid-transform-gcc-11) (name (string-append (package-name openmpi-glicid-transform-gcc-11) "-gcc-11" )) ) ) -openmpi-glicid From c316705fc3bf71a679cc29ce7ed7e243f3bb81b2 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Mon, 29 Nov 2021 16:12:05 +0100 Subject: [PATCH 078/383] new versions --- glicid/packages/mpi.scm | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/glicid/packages/mpi.scm b/glicid/packages/mpi.scm index 1732f36..98d3c99 100644 --- a/glicid/packages/mpi.scm +++ b/glicid/packages/mpi.scm @@ -144,6 +144,15 @@ (transform-package ((instead-of "rdma-core" rdma-core-latest) openmpi-glicid-libfabric) "rdma")) +(define openmpi-glicid-libfabric-ucx + (transform-package + ((instead-of "ucx" ucx-latest) openmpi-glicid-libfabric) "ucx")) + +(define openmpi-glicid-libfabric-rdma-ucx + (transform-package + ((instead-of "ucx" ucx-latest) openmpi-glicid-libfabric-rdma) "ucx")) + + (define openmpi-glicid-transform-gcc-11 (gcc11-instead-of-gcc openmpi-glicid)) From 1c725ab134f5c9ef62131c611d8046bb3a42ec06 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Mon, 29 Nov 2021 16:13:51 +0100 Subject: [PATCH 079/383] new versions --- glicid/packages/mpi.scm | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/glicid/packages/mpi.scm b/glicid/packages/mpi.scm index 98d3c99..4e32159 100644 --- a/glicid/packages/mpi.scm +++ b/glicid/packages/mpi.scm @@ -121,34 +121,34 @@ ) -(define slurm20-instead-of-slurm (instead-of "slurm" slurm-20.02)) +;(define slurm20-instead-of-slurm (instead-of "slurm" slurm-20.02)) -(define openmpi-glicid +(define-public openmpi-glicid (transform-package ((instead-of "slurm" slurm-20.02) openmpi) "glicid")) -(define openmpi-glicid-libfabric +(define-public openmpi-glicid-libfabric (transform-package ((instead-of "libfabric" libfabric-latest) openmpi-glicid) "libfabric")) -(define openmpi-glicid-rdma +(define-public openmpi-glicid-rdma (transform-package ((instead-of "rdma-core" rdma-core-latest) openmpi-glicid) "rdma-core")) -(define openmpi-glicid-ucx +(define-public openmpi-glicid-ucx (transform-package ((instead-of "ucx" ucx-latest) openmpi-glicid) "ucx")) -(define openmpi-glicid-libfabric-rdma +(define-public openmpi-glicid-libfabric-rdma (transform-package ((instead-of "rdma-core" rdma-core-latest) openmpi-glicid-libfabric) "rdma")) -(define openmpi-glicid-libfabric-ucx +(define-public openmpi-glicid-libfabric-ucx (transform-package ((instead-of "ucx" ucx-latest) openmpi-glicid-libfabric) "ucx")) -(define openmpi-glicid-libfabric-rdma-ucx +(define-public openmpi-glicid-libfabric-rdma-ucx (transform-package ((instead-of "ucx" ucx-latest) openmpi-glicid-libfabric-rdma) "ucx")) From 668e2e26f01d95b2cfb61804f2e2611ed0342437 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Mon, 29 Nov 2021 16:23:48 +0100 Subject: [PATCH 080/383] simplification --- glicid/packages/mpi.scm | 3 --- glicid/utils.scm | 27 ++++++++++++++------------- 2 files changed, 14 insertions(+), 16 deletions(-) diff --git a/glicid/packages/mpi.scm b/glicid/packages/mpi.scm index 4e32159..7567d83 100644 --- a/glicid/packages/mpi.scm +++ b/glicid/packages/mpi.scm @@ -121,9 +121,6 @@ ) -;(define slurm20-instead-of-slurm (instead-of "slurm" slurm-20.02)) - - (define-public openmpi-glicid (transform-package ((instead-of "slurm" slurm-20.02) openmpi) "glicid")) diff --git a/glicid/utils.scm b/glicid/utils.scm index 28528b3..7d5cf81 100644 --- a/glicid/utils.scm +++ b/glicid/utils.scm @@ -27,18 +27,19 @@ ) ) -;(define gcc10-instead-of-gcc -; ;; This is a procedure to replace GCC by GCC10, -; ;; recursively. -;; (package-input-rewriting/spec `((,gcc-toolchain . ,(const gcc-toolchain-10))))) -; (package-input-rewriting `((,gcc-toolchain . ,gcc-toolchain-10)))) +(define (transform-package original-package suffix) + (package + (inherit original-package) + (name (string-append (package-name original-package) "-" suffix )) + ) +) - -(define (gcc10-instead-of-gcc packagetorewrite) - (let ((toolchaingcc (specification->package "gcc-toolchain@10")) - ; (toolchaingfortran (specification->package "gfortran-toolchain@10.3.0")) - ) - (package-with-c-toolchain packagetorewrite `(("toolchaingcc" ,toolchaingcc) - ; ("toulchaingfortran",toolchaingfortran) - )))) +(define (instead-of package-a-spec package-b) + (package-input-rewriting/spec `( + (,package-a-spec . ,(const package-b) + ) + ; #:deep? #t + ) + ) +) From 5f13aa7537eb8328fee9576ee88cdf70c2ba8555 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Mon, 29 Nov 2021 16:28:03 +0100 Subject: [PATCH 081/383] undefine all -gcc10 versions --- glicid/packages/benchmark.scm | 10 ---------- glicid/packages/fabric-management.scm | 10 ---------- glicid/packages/linux.scm | 21 --------------------- 3 files changed, 41 deletions(-) diff --git a/glicid/packages/benchmark.scm b/glicid/packages/benchmark.scm index d053e6f..0e78eed 100644 --- a/glicid/packages/benchmark.scm +++ b/glicid/packages/benchmark.scm @@ -152,19 +152,9 @@ ) ) -(define intel-mpi-benchmark-transform-gcc-10 - (gcc10-instead-of-gcc intel-mpi-benchmarks/openmpi-2021.3)) - (define intel-mpi-benchmark-transform-gcc-11 (gcc11-instead-of-gcc intel-mpi-benchmarks/openmpi-2021.3)) -(define-public intel-mpi-benchmarks/openmpi-2021.3-gcc-10 - (package - (inherit intel-mpi-benchmark-transform-gcc-10) - (version (string-append (package-version intel-mpi-benchmark-transform-gcc-10) "-gcc-10" )) - ) -) - (define-public intel-mpi-benchmarks/openmpi-2021.3-gcc-11 (package (inherit intel-mpi-benchmark-transform-gcc-11) diff --git a/glicid/packages/fabric-management.scm b/glicid/packages/fabric-management.scm index 9a8ac46..455940d 100644 --- a/glicid/packages/fabric-management.scm +++ b/glicid/packages/fabric-management.scm @@ -131,19 +131,9 @@ ) ) -;(define ucx-glicid-transform-gcc-10 -; (gcc10-instead-of-gcc ucx-glicid)) - (define ucx-glicid-transform-gcc-11 (gcc11-instead-of-gcc ucx-glicid)) -;(define-public ucx-glicid-gcc-10 -; (package -; (inherit ucx-glicid-transform-gcc-10) -; (version (string-append (package-version ucx-glicid-transform-gcc-10) "-gcc-10" )) -; ) -;) - (define-public ucx-glicid-gcc-11 (package (inherit ucx-glicid-transform-gcc-11) diff --git a/glicid/packages/linux.scm b/glicid/packages/linux.scm index 08af2f5..d912df2 100644 --- a/glicid/packages/linux.scm +++ b/glicid/packages/linux.scm @@ -131,20 +131,9 @@ (define local-rdma-core rdma-core-newer-38.0) (define-public rdma-core-latest local-rdma-core) - -;(define rdma-core-transform-gcc-10 -; (gcc10-instead-of-gcc rdma-core-latest)) - (define rdma-core-transform-gcc-11 (gcc11-instead-of-gcc rdma-core-latest)) -;(define-public rdma-core-gcc-10 -; (package -; (inherit rdma-core-transform-gcc-10) -; (version (string-append (package-version rdma-core-transform-gcc-10) "-gcc-10" )) -; ) -;) - (define-public rdma-core-gcc-11 (package (inherit rdma-core-transform-gcc-11) @@ -191,19 +180,9 @@ (define local-libfabric libfabric-newer-1.14.0) (define-public libfabric-latest local-libfabric) -;(define libfabric-transform-gcc-10 -; (gcc10-instead-of-gcc libfabric-latest)) - (define libfabric-transform-gcc-11 (gcc11-instead-of-gcc libfabric-latest)) -;(define-public libfabric-gcc-10 -; (package -; (inherit libfabric-transform-gcc-10) -; (version (string-append (package-version libfabric-transform-gcc-10) "-gcc-10" )) -; ) -;) - (define-public libfabric-gcc-11 (package (inherit libfabric-transform-gcc-11) From 140fdf8583e728e4b7f40bb177609bdd3bfb507a Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Mon, 29 Nov 2021 16:32:58 +0100 Subject: [PATCH 082/383] =?UTF-8?q?suppress=20all=20gcc-10/gcc-11=C2=A0der?= =?UTF-8?q?ivation?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- glicid/packages/fabric-management.scm | 27 --------------------------- glicid/packages/linux.scm | 19 ------------------- 2 files changed, 46 deletions(-) diff --git a/glicid/packages/fabric-management.scm b/glicid/packages/fabric-management.scm index 455940d..9fa98b8 100644 --- a/glicid/packages/fabric-management.scm +++ b/glicid/packages/fabric-management.scm @@ -96,7 +96,6 @@ ) - (define-public ucx-newer-1.11.2 (package (inherit gnu:ucx) @@ -115,31 +114,5 @@ (define local-ucx ucx-newer-1.11.2) -;; not working right now ;; (define-public ucx-latest (latest-version local-ucx gnu:ucx)) -(define-public ucx-latest local-ucx) ;; for now… - -(define-public ucx-glicid - (package - (inherit ucx-latest) - (version (string-append (package-version ucx-latest) "-glicid" )) - (inputs `( - ("libfabric", libfabric) ;; latest of glicid or gnu version - ("rdma-core",rdma-core) ;; latest of glicid or gnu version - - ,@(package-inputs ucx-latest))) - - ) - ) - -(define ucx-glicid-transform-gcc-11 - (gcc11-instead-of-gcc ucx-glicid)) - -(define-public ucx-glicid-gcc-11 - (package - (inherit ucx-glicid-transform-gcc-11) - (version (string-append (package-version ucx-glicid-transform-gcc-11) "-gcc-11" )) - ) -) - ;;; glicid/fabric-management.scm ends here diff --git a/glicid/packages/linux.scm b/glicid/packages/linux.scm index d912df2..5e7878c 100644 --- a/glicid/packages/linux.scm +++ b/glicid/packages/linux.scm @@ -131,15 +131,6 @@ (define local-rdma-core rdma-core-newer-38.0) (define-public rdma-core-latest local-rdma-core) -(define rdma-core-transform-gcc-11 - (gcc11-instead-of-gcc rdma-core-latest)) - -(define-public rdma-core-gcc-11 - (package - (inherit rdma-core-transform-gcc-11) - (version (string-append (package-version rdma-core-transform-gcc-11) "-gcc-11" )) - ) -) (define-public libfabric-newer-1.13.1 @@ -180,14 +171,4 @@ (define local-libfabric libfabric-newer-1.14.0) (define-public libfabric-latest local-libfabric) -(define libfabric-transform-gcc-11 - (gcc11-instead-of-gcc libfabric-latest)) - -(define-public libfabric-gcc-11 - (package - (inherit libfabric-transform-gcc-11) - (version (string-append (package-version libfabric-transform-gcc-11) "-gcc-11" )) - ) -) - ;;; glicid/linux.scm ends here From 166b6750588595e02961b53cce2638b6b764623b Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Mon, 29 Nov 2021 16:35:25 +0100 Subject: [PATCH 083/383] fabric management --- glicid/packages/fabric-management.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glicid/packages/fabric-management.scm b/glicid/packages/fabric-management.scm index 9fa98b8..600457d 100644 --- a/glicid/packages/fabric-management.scm +++ b/glicid/packages/fabric-management.scm @@ -113,6 +113,6 @@ ) (define local-ucx ucx-newer-1.11.2) - +(define ucx-latest local-ucx) ;; for now ;;; glicid/fabric-management.scm ends here From 6fefe3608dc9814e481325d9410882fa5a699bf2 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Mon, 29 Nov 2021 16:37:10 +0100 Subject: [PATCH 084/383] missing public symbol --- glicid/packages/fabric-management.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glicid/packages/fabric-management.scm b/glicid/packages/fabric-management.scm index 600457d..e455725 100644 --- a/glicid/packages/fabric-management.scm +++ b/glicid/packages/fabric-management.scm @@ -113,6 +113,6 @@ ) (define local-ucx ucx-newer-1.11.2) -(define ucx-latest local-ucx) ;; for now +(define-public ucx-latest local-ucx) ;; for now ;;; glicid/fabric-management.scm ends here From dc390daaf9a0c7af766c7ccd233dd65c403fdc0d Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Mon, 29 Nov 2021 16:48:24 +0100 Subject: [PATCH 085/383] test recursive replacement --- glicid/utils.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/glicid/utils.scm b/glicid/utils.scm index 7d5cf81..2c9029e 100644 --- a/glicid/utils.scm +++ b/glicid/utils.scm @@ -38,8 +38,8 @@ (define (instead-of package-a-spec package-b) (package-input-rewriting/spec `( (,package-a-spec . ,(const package-b) - ) - ; #:deep? #t + ) + #:deep? #t ) ) ) From c5ce4a1354c25035ac0ae97d60612cc840d05782 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Mon, 29 Nov 2021 16:57:50 +0100 Subject: [PATCH 086/383] change slurm (no pmix) --- glicid/packages/parallel.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/glicid/packages/parallel.scm b/glicid/packages/parallel.scm index 419210e..093eff8 100644 --- a/glicid/packages/parallel.scm +++ b/glicid/packages/parallel.scm @@ -183,8 +183,8 @@ ) (inputs `(("gtk+-2" ,gtk+-2) - ("gcc", gcc-11) - ("openpmix", openpmix) +; ("gcc", gcc-11) +; ("openpmix", openpmix) ; ("glicid-specific-openmpi", glicid-specific-openmpi) ,@(package-inputs slurm) From 572560193021595f9fde5dce49dbe408310db377 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Mon, 29 Nov 2021 17:08:37 +0100 Subject: [PATCH 087/383] add slurm-glicid --- glicid/packages/mpi.scm | 2 +- glicid/packages/parallel.scm | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/glicid/packages/mpi.scm b/glicid/packages/mpi.scm index 7567d83..480427a 100644 --- a/glicid/packages/mpi.scm +++ b/glicid/packages/mpi.scm @@ -123,7 +123,7 @@ (define-public openmpi-glicid (transform-package - ((instead-of "slurm" slurm-20.02) openmpi) "glicid")) + ((instead-of "slurm" slurm-glicid) openmpi) "glicid")) (define-public openmpi-glicid-libfabric (transform-package diff --git a/glicid/packages/parallel.scm b/glicid/packages/parallel.scm index 093eff8..efd490e 100644 --- a/glicid/packages/parallel.scm +++ b/glicid/packages/parallel.scm @@ -225,6 +225,8 @@ )) )) +(define-public slurm-glicid slurm-20.02-glicid) + ;(define-public glicid-specific-slurm glicid-custom-slurm-20.02) From d98b5b43ac5a080385671bd11dc1377c83f9f146 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Mon, 29 Nov 2021 17:12:09 +0100 Subject: [PATCH 088/383] put back openpmix --- glicid/packages/parallel.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glicid/packages/parallel.scm b/glicid/packages/parallel.scm index efd490e..7df9c2a 100644 --- a/glicid/packages/parallel.scm +++ b/glicid/packages/parallel.scm @@ -184,7 +184,7 @@ (inputs `(("gtk+-2" ,gtk+-2) ; ("gcc", gcc-11) -; ("openpmix", openpmix) + ("openpmix", openpmix) ; ("glicid-specific-openmpi", glicid-specific-openmpi) ,@(package-inputs slurm) From 27d8d7978e04f1ceeba6dcc43b2b804243b717fa Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Mon, 29 Nov 2021 17:21:01 +0100 Subject: [PATCH 089/383] no pmix for the moment --- glicid/packages/parallel.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/glicid/packages/parallel.scm b/glicid/packages/parallel.scm index 7df9c2a..18130a3 100644 --- a/glicid/packages/parallel.scm +++ b/glicid/packages/parallel.scm @@ -172,7 +172,7 @@ (string-append "--with-hwloc=" (assoc-ref %build-inputs "hwloc")) (string-append "--with-json=" (assoc-ref %build-inputs "json-c")) (string-append "--with-munge=" (assoc-ref %build-inputs "munge")) - (string-append "--with-pmix=" (assoc-ref %build-inputs "openpmix")) +; (string-append "--with-pmix=" (assoc-ref %build-inputs "openpmix")) ;; 32-bit support is marked as deprecated and needs to be ;; explicitly enabled. @@ -184,7 +184,7 @@ (inputs `(("gtk+-2" ,gtk+-2) ; ("gcc", gcc-11) - ("openpmix", openpmix) +K ("openpmix", openpmix) ; ("glicid-specific-openmpi", glicid-specific-openmpi) ,@(package-inputs slurm) From ad9bf3d0501b85c2d4f80bb2da928e5fa0483ec2 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Mon, 29 Nov 2021 17:23:48 +0100 Subject: [PATCH 090/383] typo --- glicid/packages/parallel.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glicid/packages/parallel.scm b/glicid/packages/parallel.scm index 18130a3..190c4b8 100644 --- a/glicid/packages/parallel.scm +++ b/glicid/packages/parallel.scm @@ -184,7 +184,7 @@ (inputs `(("gtk+-2" ,gtk+-2) ; ("gcc", gcc-11) -K ("openpmix", openpmix) +; ("openpmix", openpmix) ; ("glicid-specific-openmpi", glicid-specific-openmpi) ,@(package-inputs slurm) From 9bbb120b9c2dcad19c0cc7abb3b6c23c191af8c1 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Mon, 29 Nov 2021 17:37:28 +0100 Subject: [PATCH 091/383] slurm-glicid hadn't all inherited patches --- glicid/packages/parallel.scm | 96 +++++++++++++++++++----------------- 1 file changed, 51 insertions(+), 45 deletions(-) diff --git a/glicid/packages/parallel.scm b/glicid/packages/parallel.scm index 190c4b8..d7d64c8 100644 --- a/glicid/packages/parallel.scm +++ b/glicid/packages/parallel.scm @@ -153,64 +153,70 @@ (define-public openpmix openpmix-4.1.0) -(define-public slurm-19.05-glicid - (package - (inherit slurm) - (name "slurm-glicid") - (version "19.05.6") - (source - (origin - (method url-fetch) - (uri (string-append "https://download.schedmd.com/slurm/slurm-" version ".tar.bz2")) - (sha256 (base32 "1kj79r8hng5gp98ickgvj3im4gr19nzd3p3p8g6rl75axb8jin7h")) - )) - (arguments - `(#:configure-flags - (list "--enable-pam" "--sysconfdir=/etc/slurm" - "--disable-static" - (string-append "--with-freeipmi=" (assoc-ref %build-inputs "freeipmi")) - (string-append "--with-hwloc=" (assoc-ref %build-inputs "hwloc")) - (string-append "--with-json=" (assoc-ref %build-inputs "json-c")) - (string-append "--with-munge=" (assoc-ref %build-inputs "munge")) -; (string-append "--with-pmix=" (assoc-ref %build-inputs "openpmix")) - - ;; 32-bit support is marked as deprecated and needs to be - ;; explicitly enabled. - ;;;; ,@(if (target-64bit?) '() '("--enable-deprecated")) - - ) - ) - ) - - (inputs `(("gtk+-2" ,gtk+-2) -; ("gcc", gcc-11) -; ("openpmix", openpmix) -; ("glicid-specific-openmpi", glicid-specific-openmpi) - ,@(package-inputs slurm) - - - )) -; (propagated-inputs -; `( -; ("sssd" ,sssd) -; )) - -)) +;(define-public slurm-19.05-glicid +; (package +; (inherit slurm) +; (name "slurm-glicid") +; (version "19.05.6") +; (source +; (origin +; (method url-fetch) +; (uri (string-append "https://download.schedmd.com/slurm/slurm-" version ".tar.bz2")) +; (sha256 (base32 "1kj79r8hng5gp98ickgvj3im4gr19nzd3p3p8g6rl75axb8jin7h")) +; )) +; (arguments +; `(#:configure-flags +; (list "--enable-pam" "--sysconfdir=/etc/slurm" +; "--disable-static" +; (string-append "--with-freeipmi=" (assoc-ref %build-inputs "freeipmi")) +; (string-append "--with-hwloc=" (assoc-ref %build-inputs "hwloc")) +; (string-append "--with-json=" (assoc-ref %build-inputs "json-c")) +; (string-append "--with-munge=" (assoc-ref %build-inputs "munge")) +;; (string-append "--with-pmix=" (assoc-ref %build-inputs "openpmix")) +; +; ;; 32-bit support is marked as deprecated and needs to be +; ;; explicitly enabled. +; ;;;; ,@(if (target-64bit?) '() '("--enable-deprecated")) +; +; ) +; ) +; ) +; +; (inputs `(("gtk+-2" ,gtk+-2) +;; ("gcc", gcc-11) +;; ("openpmix", openpmix) +;; ("glicid-specific-openmpi", glicid-specific-openmpi) +; ,@(package-inputs slurm) +; +; +; )) +;; (propagated-inputs +;; `( +;; ("sssd" ,sssd) +;; )) +; +;)) (define-public slurm-20.02-glicid (package - (inherit slurm-19.05-glicid) + (inherit slurm-20.02) (name "slurm-glicid") (version "20.02.7") (source (origin + (inherit (package-source slurm-20.02)) (method url-fetch) (uri (string-append "https://download.schedmd.com/slurm/slurm-" version ".tar.bz2")) (sha256 (base32 "1khlv69q41chgkcs1i7l651hvyx8sz3j9yhjbgky3gpqrgrmz1h6")) )) -)) + (inputs `(("gtk+-2" ,gtk+-2) ;; for sview + ,@(package-inputs slurm-20.02) + + )) + ) +) (define-public slurm-20.11-glicid (package From b03a466a5730742468695615d762c815ebbf2d7d Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Mon, 29 Nov 2021 18:21:25 +0100 Subject: [PATCH 092/383] new scalapack version --- glicid/packages/maths.scm | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 glicid/packages/maths.scm diff --git a/glicid/packages/maths.scm b/glicid/packages/maths.scm new file mode 100644 index 0000000..372e43c --- /dev/null +++ b/glicid/packages/maths.scm @@ -0,0 +1,33 @@ +(define-module (glicid packages maths) + #:use-module (guix packages) + #:use-module (guix utils) + #:use-module (gnu packages maths) + #:use-module (gnu packages commencement) + #:use-module (gnu packages mpi) + #:use-module (guix download) +) + +;;;;;;;; + +(define-public scalapack-newer + + (package + (inherit scalapack) + (name "scalapack-newer") + (version "2.1.0") + (source (origin + (method url-fetch) + + (uri (string-append "http://www.netlib.org/scalapack/scalapack-" + version ".tgz")) + + (sha256 + (base32 + "0rv4w90b65b2kvjpj8g9bdkl4xqc42q20f5bzpxdrkajk1a35jan")))) + + ) +) + +(define-public scalapack-latest scalapack-newer) + +;;; glicid/maths.scm ends here From b986ac99333569343c1054519d76432bbf33db05 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Mon, 29 Nov 2021 18:34:20 +0100 Subject: [PATCH 093/383] bump scalapack version --- glicid/packages/maths.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glicid/packages/maths.scm b/glicid/packages/maths.scm index 372e43c..7534400 100644 --- a/glicid/packages/maths.scm +++ b/glicid/packages/maths.scm @@ -23,7 +23,7 @@ (sha256 (base32 - "0rv4w90b65b2kvjpj8g9bdkl4xqc42q20f5bzpxdrkajk1a35jan")))) + "19i0h9vdc3zsy58r6fy1vs2kz2l7amifkz0cf926j90xz1n23nb1")))) ) ) From 3940989ffe49a4f345e498df1fd5ec3d12495dd6 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Mon, 29 Nov 2021 19:13:56 +0100 Subject: [PATCH 094/383] new scalapack version from git --- glicid/packages/maths.scm | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/glicid/packages/maths.scm b/glicid/packages/maths.scm index 7534400..af59b5e 100644 --- a/glicid/packages/maths.scm +++ b/glicid/packages/maths.scm @@ -5,6 +5,7 @@ #:use-module (gnu packages commencement) #:use-module (gnu packages mpi) #:use-module (guix download) + #:use-module (guix git-download) ) ;;;;;;;; @@ -14,20 +15,22 @@ (package (inherit scalapack) (name "scalapack-newer") - (version "2.1.0") + (version "2.1.0-upstrean") ;; need this for compilation > gcc 9 (source (origin - (method url-fetch) - - (uri (string-append "http://www.netlib.org/scalapack/scalapack-" - version ".tgz")) - + (method git-fetch) + (uri (git-reference + (url "https://github.com/Reference-ScaLAPACK/scalapack.git") + (commit "3f898b5f1225c9eee271ae6ac6c351ef84f860af") + )) (sha256 (base32 - "19i0h9vdc3zsy58r6fy1vs2kz2l7amifkz0cf926j90xz1n23nb1")))) + "02q791g1sfic4k3ih31z07pnzhld09wyq524bicx6jx1aw8s7k4b")))) + ) ) -) (define-public scalapack-latest scalapack-newer) +;; scalapack-newer + ;;; glicid/maths.scm ends here From d975b4fadcbb5f56a21f7a1fd8b141fb6ea69f36 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Mon, 29 Nov 2021 19:26:15 +0100 Subject: [PATCH 095/383] new upstream --- glicid/packages/maths.scm | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/glicid/packages/maths.scm b/glicid/packages/maths.scm index af59b5e..3674873 100644 --- a/glicid/packages/maths.scm +++ b/glicid/packages/maths.scm @@ -10,17 +10,17 @@ ;;;;;;;; -(define-public scalapack-newer +(define-public scalapack-scivision-newer (package (inherit scalapack) - (name "scalapack-newer") - (version "2.1.0-upstrean") ;; need this for compilation > gcc 9 + (name "scalapack-scivision-newer") + (version "2.1.0.29-upstream") ;; need this for compilation > gcc 9 (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Reference-ScaLAPACK/scalapack.git") - (commit "3f898b5f1225c9eee271ae6ac6c351ef84f860af") + (url "https://github.com/scivision/scalapack.git") + (commit "dac3cb9eaad9593a2cc7478f5f4ed63437b0993d") )) (sha256 (base32 @@ -29,8 +29,8 @@ ) ) -(define-public scalapack-latest scalapack-newer) +(define-public scalapack-latest scalapack-scivision-newer) -;; scalapack-newer +;; scalapack-scivision-newer ;;; glicid/maths.scm ends here From a273f212a32648a0814f8f041c680dee143cb9ef Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Mon, 29 Nov 2021 19:40:40 +0100 Subject: [PATCH 096/383] other upstream --- glicid/packages/maths.scm | 23 +++++++++++++++-------- 1 file changed, 15 insertions(+), 8 deletions(-) diff --git a/glicid/packages/maths.scm b/glicid/packages/maths.scm index 3674873..cf19faf 100644 --- a/glicid/packages/maths.scm +++ b/glicid/packages/maths.scm @@ -10,27 +10,34 @@ ;;;;;;;; -(define-public scalapack-scivision-newer +;(define-public scalapack-scivision-newer + +(define-public scalapack-newer (package (inherit scalapack) - (name "scalapack-scivision-newer") - (version "2.1.0.29-upstream") ;; need this for compilation > gcc 9 + (name "scalapack-newer") +; (version "2.1.0.29-upstream") ;; need this for compilation > gcc 9 + (version "2.1.0-new-upstream") (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/scivision/scalapack.git") - (commit "dac3cb9eaad9593a2cc7478f5f4ed63437b0993d") +; (url "https://github.com/scivision/scalapack.git") + (url "https://github.com/OpenCMISS-Dependencies/newscalapack.git") +; (commit "dac3cb9eaad9593a2cc7478f5f4ed63437b0993d") + (commit "ea5d20668a6b8bbee645b7ffe44623c623969d33") )) (sha256 (base32 - "02q791g1sfic4k3ih31z07pnzhld09wyq524bicx6jx1aw8s7k4b")))) + "02q791g1sfic4k3ih31z07pnzhld09wyq524bicx6jx1aw8s7k4b" + +)))) ) ) -(define-public scalapack-latest scalapack-scivision-newer) +(define-public scalapack-latest scalapack-newer) ;; scalapack-scivision-newer - +;scalapack-newer ;;; glicid/maths.scm ends here From fd6fa9018877ef94c1f38513eee90e2883b3da48 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Mon, 29 Nov 2021 22:11:51 +0100 Subject: [PATCH 097/383] testestesttt --- glicid/packages/maths.scm | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/glicid/packages/maths.scm b/glicid/packages/maths.scm index cf19faf..d3ba291 100644 --- a/glicid/packages/maths.scm +++ b/glicid/packages/maths.scm @@ -23,13 +23,17 @@ (method git-fetch) (uri (git-reference ; (url "https://github.com/scivision/scalapack.git") - (url "https://github.com/OpenCMISS-Dependencies/newscalapack.git") +; (url "https://github.com/OpenCMISS-Dependencies/newscalapack.git") + (url "https://oauth2:9i-PgbC2w_JEx6DUUqzf@https://gitlab.univ-nantes.fr/CCIPL/legacy_code_mirror/scalapack.git") + ; (commit "dac3cb9eaad9593a2cc7478f5f4ed63437b0993d") (commit "ea5d20668a6b8bbee645b7ffe44623c623969d33") )) (sha256 (base32 "02q791g1sfic4k3ih31z07pnzhld09wyq524bicx6jx1aw8s7k4b" + +;FFLAGS )))) From ed4728b0f8f7b61f26f108bef5ec216f94c58a08 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Mon, 29 Nov 2021 22:22:20 +0100 Subject: [PATCH 098/383] new commit --- glicid/packages/maths.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glicid/packages/maths.scm b/glicid/packages/maths.scm index d3ba291..63158d3 100644 --- a/glicid/packages/maths.scm +++ b/glicid/packages/maths.scm @@ -27,7 +27,7 @@ (url "https://oauth2:9i-PgbC2w_JEx6DUUqzf@https://gitlab.univ-nantes.fr/CCIPL/legacy_code_mirror/scalapack.git") ; (commit "dac3cb9eaad9593a2cc7478f5f4ed63437b0993d") - (commit "ea5d20668a6b8bbee645b7ffe44623c623969d33") + (commit "f27386ce4d1b4dc99f7bc5917031ef9dc2c00a72") )) (sha256 (base32 From 2eb4c10a15edba2d5d8488ee905fddfca14ddbb1 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Tue, 30 Nov 2021 11:13:32 +0100 Subject: [PATCH 099/383] new sources --- glicid/packages/maths.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/glicid/packages/maths.scm b/glicid/packages/maths.scm index 63158d3..b606ddf 100644 --- a/glicid/packages/maths.scm +++ b/glicid/packages/maths.scm @@ -27,7 +27,8 @@ (url "https://oauth2:9i-PgbC2w_JEx6DUUqzf@https://gitlab.univ-nantes.fr/CCIPL/legacy_code_mirror/scalapack.git") ; (commit "dac3cb9eaad9593a2cc7478f5f4ed63437b0993d") - (commit "f27386ce4d1b4dc99f7bc5917031ef9dc2c00a72") +; (commit "f27386ce4d1b4dc99f7bc5917031ef9dc2c00a72") + (commit "1ecddf24e3e6c95f1d5dec6f84f21fd91e057727") )) (sha256 (base32 From 73a8098dfe4d395d593e23f2c4de365b31a94c89 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Tue, 30 Nov 2021 12:05:54 +0100 Subject: [PATCH 100/383] gfortran changes --- glicid/packages/maths.scm | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/glicid/packages/maths.scm b/glicid/packages/maths.scm index b606ddf..119488d 100644 --- a/glicid/packages/maths.scm +++ b/glicid/packages/maths.scm @@ -24,15 +24,18 @@ (uri (git-reference ; (url "https://github.com/scivision/scalapack.git") ; (url "https://github.com/OpenCMISS-Dependencies/newscalapack.git") - (url "https://oauth2:9i-PgbC2w_JEx6DUUqzf@https://gitlab.univ-nantes.fr/CCIPL/legacy_code_mirror/scalapack.git") + (url "https://oauth2:9i-PgbC2w_JEx6DUUqzf@gitlab.univ-nantes.fr/CCIPL/legacy_code_mirror/scalapack.git") ; (commit "dac3cb9eaad9593a2cc7478f5f4ed63437b0993d") ; (commit "f27386ce4d1b4dc99f7bc5917031ef9dc2c00a72") - (commit "1ecddf24e3e6c95f1d5dec6f84f21fd91e057727") - )) + (commit "9a4c4d7608ab7ac11e526746082a1ffacc2cd365") + ) +) + (file-name "scalapack-univ-9a4c4d760") + (sha256 (base32 - "02q791g1sfic4k3ih31z07pnzhld09wyq524bicx6jx1aw8s7k4b" + "1fp3av7cqb4asfw3ynq4s9kbqgrb7k0lhizzd5isz6xfmrwl1ps6" ;FFLAGS @@ -44,5 +47,5 @@ (define-public scalapack-latest scalapack-newer) ;; scalapack-scivision-newer -;scalapack-newer +scalapack-newer ;;; glicid/maths.scm ends here From 0c2c76fd3b97cae00f87bb482f8d047f8f0e053e Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Tue, 30 Nov 2021 13:32:33 +0100 Subject: [PATCH 101/383] go back to old version (for patches) --- glicid/packages/maths.scm | 25 ++++++++++++++++++------- 1 file changed, 18 insertions(+), 7 deletions(-) diff --git a/glicid/packages/maths.scm b/glicid/packages/maths.scm index 119488d..a361664 100644 --- a/glicid/packages/maths.scm +++ b/glicid/packages/maths.scm @@ -6,6 +6,7 @@ #:use-module (gnu packages mpi) #:use-module (guix download) #:use-module (guix git-download) + #:use-module (gnu packages) ) ;;;;;;;; @@ -28,19 +29,29 @@ ; (commit "dac3cb9eaad9593a2cc7478f5f4ed63437b0993d") ; (commit "f27386ce4d1b4dc99f7bc5917031ef9dc2c00a72") - (commit "9a4c4d7608ab7ac11e526746082a1ffacc2cd365") +; univ (commit "9a4c4d7608ab7ac11e526746082a1ffacc2cd365") + (commit "myv2.0.2") ) ) - (file-name "scalapack-univ-9a4c4d760") + (file-name "scalapack-univ-myv2") + (patches (search-patches "scalapack-blacs-mpi-deprecations.patch")) (sha256 (base32 - "1fp3av7cqb4asfw3ynq4s9kbqgrb7k0lhizzd5isz6xfmrwl1ps6" - -;FFLAGS - -)))) +; univ "1fp3av7cqb4asfw3ynq4s9kbqgrb7k0lhizzd5isz6xfmrwl1ps6" +; "1cf2mrv9w7zkhwj6q22l1mn2ryfhr8zqgjajfkixr57nqfq2x0k2" ;scivision + "1ccic46psf2hl9wsyflvkn5rxg8k17q578m9mzimvm9brbggf0na" + ) + ) +)) + + (arguments + `(#:configure-flags `("-DBUILD_SHARED_LIBS:BOOL=YES") + #:phases (modify-phases %standard-phases + (add-before 'check 'mpi-setup + ,%openmpi-setup)))) + ) ) From 8aa9ab825bce3d82bba400e3c5846bce93d58607 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Tue, 30 Nov 2021 14:49:42 +0100 Subject: [PATCH 102/383] rename generated gcc/gfortran --- glicid/packages/gcc.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glicid/packages/gcc.scm b/glicid/packages/gcc.scm index 6e2c873..705246d 100644 --- a/glicid/packages/gcc.scm +++ b/glicid/packages/gcc.scm @@ -102,7 +102,7 @@ #:key (separate-lib-output? #t)) "Return a custom version of GCC that supports LANGUAGES. Use SEARCH-PATHS as the 'native-search-paths' field." (package (inherit gcc) - (name name) + (name (string-append name "-upstream" )) (outputs (if separate-lib-output? (package-outputs gcc) (delete "lib" (package-outputs gcc)))) From 8304163d226290170ae887f31ea1bb8f0ee47480 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Tue, 30 Nov 2021 14:56:56 +0100 Subject: [PATCH 103/383] cleaning --- glicid/packages/glicid.scm | 33 --------------------------------- 1 file changed, 33 deletions(-) diff --git a/glicid/packages/glicid.scm b/glicid/packages/glicid.scm index b3f6bae..e0e7f88 100644 --- a/glicid/packages/glicid.scm +++ b/glicid/packages/glicid.scm @@ -227,39 +227,6 @@ ) - -;; pour futures customisations. - -;(define-public glicid-openmpi-gcc-10 -; (package -; (inherit openmpi) -; (name "glicid-openpmi-gcc-10") -; (inputs `(("gcc-10", gcc-10) -; ("gfortran-11", gfortran-11) -; ,@(package-inputs openmpi))) -; ) -;) - - -;(define-public glicid-gromacs-gcc-11 -; (package -; (inherit gromacs) -; (name "glicid-gromacs-gcc-11") -; (version "2020.3") -; (source -; (origin -; (method url-fetch) -; (uri (string-append "http://ftp.gromacs.org/pub/gromacs/gromacs-" version ".tar.gz")) -; (sha256 (base32 "1acjrhcfzpqy2dncblhj97602jbg9gdha4q1bgji9nrj25lq6cch")) -; )) -; -; (inputs `(("gcc-11", gcc-11) -; ("gfortran-11", gfortran-11) -; ("glicid-openmpi-gcc-11", glicid-openmpi-gcc-11) -; ,@(package-inputs gromacs))) -;)) - - (define-public glicid-python-nbxmpp (package (inherit python-nbxmpp) From fcbd2f886a1e54090ed5ad9e3f26a52bc39d68ad Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Tue, 30 Nov 2021 16:19:40 +0100 Subject: [PATCH 104/383] introduce new openblas --- glicid/packages/glicid.scm | 40 -------------------------------------- glicid/packages/maths.scm | 30 +++++++++++++++++++++++++++- 2 files changed, 29 insertions(+), 41 deletions(-) diff --git a/glicid/packages/glicid.scm b/glicid/packages/glicid.scm index e0e7f88..1a1f4b0 100644 --- a/glicid/packages/glicid.scm +++ b/glicid/packages/glicid.scm @@ -301,46 +301,6 @@ ; -(define-public glicid-specific-openblas - (package - (inherit openblas) - (name "glicid-specific-openblas") - (inputs `( - ("fortran-lib",gfortran-11 "lib") - ,@(package-inputs openblas))) - (native-inputs `( - ("gcc", gcc-11) - ("fortran" ,gfortran-11) - ,@(package-native-inputs openblas))) - ) -) - -(define-public glicid-vspecific-openblas - (package - (inherit openblas) - (name "glicid-vspecific-openblas") - (version "0.3.15") - (source - (origin - (method url-fetch) - (uri (string-append "https://github.com/xianyi/OpenBLAS/releases/download/v" version "/OpenBLAS-" version ".tar.gz" )) -; (file-name (string-append name "-" version ".tar.gz")) - (sha256 - (base32 - "1gjbkrsh6n28hdp2ciyjigc8vg764d2r0jbzl63v753mjzn9va9h")))) - - (name "glicid-specific-openblas") - (inputs `( - ("fortran-lib",gfortran-11 "lib") - ,@(package-inputs openblas))) - (native-inputs `( - ("gcc", gcc-11) - ("fortran" ,gfortran-11) - ,@(package-native-inputs openblas))) - ) -) - - (define-public glicid-motif (package (name "glicid-motif") diff --git a/glicid/packages/maths.scm b/glicid/packages/maths.scm index a361664..4d96f6f 100644 --- a/glicid/packages/maths.scm +++ b/glicid/packages/maths.scm @@ -57,6 +57,34 @@ (define-public scalapack-latest scalapack-newer) +(define-public openblas-newer-0.3.15 + (package + (inherit openblas) + (name "openblas-newer") + (version "0.3.15") + (source + (origin + (method url-fetch) + (uri (string-append "https://github.com/xianyi/OpenBLAS/releases/download/v" version "/OpenBLAS-" version ".tar.gz" )) +; (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "1gjbkrsh6n28hdp2ciyjigc8vg764d2r0jbzl63v753mjzn9va9h")))) + + ; (name "glicid-specific-openblas") + ; (inputs `( + ; ("fortran-lib",gfortran-11 "lib") + ; ,@(package-inputs openblas))) + ; (native-inputs `( + ; ("gcc", gcc-11) + ; ("fortran" ,gfortran-11) + ; ,@(package-native-inputs openblas))) + ) +) + + + ;; scalapack-scivision-newer -scalapack-newer +;;scalapack-newer ;;; glicid/maths.scm ends here + From 6ca120f91ce267b8c9ae82d9777ea5dbb3daaf15 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Tue, 30 Nov 2021 16:29:54 +0100 Subject: [PATCH 105/383] rename intel mpi benchmarks --- glicid/packages/benchmark.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glicid/packages/benchmark.scm b/glicid/packages/benchmark.scm index 0e78eed..d9ddbc8 100644 --- a/glicid/packages/benchmark.scm +++ b/glicid/packages/benchmark.scm @@ -128,7 +128,7 @@ (define-public intel-mpi-benchmarks/openmpi-2021.3 (package (inherit gnu:intel-mpi-benchmarks/openmpi) - (name "intel-mpi-benchmarks") + (name "intel-mpi-benchmarks-newer") (version "2021.3") (source (origin (method git-fetch) From 628490d3e65dab4615317ef3ce5ed38c442de8ed Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Tue, 30 Nov 2021 16:59:09 +0100 Subject: [PATCH 106/383] tests --- glicid/packages/benchmark.scm | 26 ++++++++++++++------------ glicid/utils.scm | 2 +- 2 files changed, 15 insertions(+), 13 deletions(-) diff --git a/glicid/packages/benchmark.scm b/glicid/packages/benchmark.scm index d9ddbc8..17f0bb0 100644 --- a/glicid/packages/benchmark.scm +++ b/glicid/packages/benchmark.scm @@ -93,6 +93,7 @@ #:use-module (glicid packages storage) #:use-module (glicid packages mpi) #:use-module (glicid packages gcc) + #:use-module (glicid utils) #:use-module ((guix licenses) #:prefix license:) #:use-module (guix packages) #:use-module (guix download) @@ -130,7 +131,9 @@ (inherit gnu:intel-mpi-benchmarks/openmpi) (name "intel-mpi-benchmarks-newer") (version "2021.3") - (source (origin + (source + (origin + (inherit (package-source gnu:intel-mpi-benchmarks/openmpi)) (method git-fetch) (uri (git-reference (url "https://github.com/intel/mpi-benchmarks") @@ -139,21 +142,20 @@ (sha256 (base32 "04kczch2hlfzbgk929vcxx480kc6raba8rbz246j7d26k1z1zh8h")) - (modules '((guix build utils))) - (snippet - '(begin - ;; Some source configuration files in the original tarball - ;; have inappropriate execute permissions, which interferes - ;; with the install phase below. - (for-each (lambda (file) (chmod file #o444)) - (find-files "WINDOWS" ".")) - #t)))) + ) + ) + ) ) -) + + +(define-public intel-mpi-benchmarks/openmpi-2021.3-libfabric-rdma + (transform-package + ((instead-of "openmpi" openmpi-glicid-libfabric-rdma ) intel-mpi-benchmarks/openmpi-2021.3 ) "fab+rdma")) + (define intel-mpi-benchmark-transform-gcc-11 - (gcc11-instead-of-gcc intel-mpi-benchmarks/openmpi-2021.3)) + (gcc11-instead-of-gcc intel-mpi-benchmarks/openmpi-2021.3-libfabric-rdma)) (define-public intel-mpi-benchmarks/openmpi-2021.3-gcc-11 (package diff --git a/glicid/utils.scm b/glicid/utils.scm index 2c9029e..c5c5359 100644 --- a/glicid/utils.scm +++ b/glicid/utils.scm @@ -8,7 +8,7 @@ #:export (latest-version) #:export (gcc11-instead-of-gcc) #:export (gcc10-instead-of-gcc) - + #:export (transform-package) ) ;; helper function From c61bdb2d0d0b274f24ac8ef3bafc04f098844a99 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Tue, 30 Nov 2021 17:10:41 +0100 Subject: [PATCH 107/383] new exports --- glicid/utils.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/glicid/utils.scm b/glicid/utils.scm index c5c5359..edd8f54 100644 --- a/glicid/utils.scm +++ b/glicid/utils.scm @@ -7,8 +7,9 @@ #:use-module (gnu packages) #:export (latest-version) #:export (gcc11-instead-of-gcc) - #:export (gcc10-instead-of-gcc) +; #:export (gcc10-instead-of-gcc) #:export (transform-package) + #:export (instead-of) ) ;; helper function From 43e222656e0e08f4159547ac2ca9a1a1fb9fd914 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Tue, 30 Nov 2021 17:13:22 +0100 Subject: [PATCH 108/383] syntax error ? --- glicid/utils.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glicid/utils.scm b/glicid/utils.scm index edd8f54..be4598e 100644 --- a/glicid/utils.scm +++ b/glicid/utils.scm @@ -40,7 +40,7 @@ (package-input-rewriting/spec `( (,package-a-spec . ,(const package-b) ) - #:deep? #t +; #:deep? #t ) ) ) From 7f6a901935244d346420174681c7683161a6e8fd Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Tue, 30 Nov 2021 21:57:52 +0100 Subject: [PATCH 109/383] rename keepalived --- glicid/packages/cluster.scm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/glicid/packages/cluster.scm b/glicid/packages/cluster.scm index a1165ed..389ea1a 100644 --- a/glicid/packages/cluster.scm +++ b/glicid/packages/cluster.scm @@ -94,9 +94,10 @@ ;;;;;;;; -(define-public keepalived-2.2.4 +(define-public keepalived-newer-2.2.4 (package (inherit gnu:keepalived) + (name "keepalived-newer") (version "2.2.4") (source (origin (method url-fetch) @@ -114,7 +115,7 @@ ) ) -(define local:keepalived keepalived-2.2.4) +(define local:keepalived keepalived-newer-2.2.4) (define keepalived-latest (latest-version local:keepalived gnu:keepalived)) From bce72c31c2ac622ebe8cb9dc7b623348f9399ab1 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Tue, 30 Nov 2021 22:04:03 +0100 Subject: [PATCH 110/383] simplification --- glicid/packages/cluster.scm | 88 +------------------------------------ 1 file changed, 1 insertion(+), 87 deletions(-) diff --git a/glicid/packages/cluster.scm b/glicid/packages/cluster.scm index 389ea1a..fc7500e 100644 --- a/glicid/packages/cluster.scm +++ b/glicid/packages/cluster.scm @@ -1,94 +1,8 @@ (define-module (glicid packages cluster) #:use-module (guix packages) #:use-module (guix download) - #:use-module (guix git-download) - #:use-module (guix build-system gnu) - #:use-module (guix build-system cmake) -; #:use-module (guix licenses) - #:use-module (gnu packages gawk) - #:use-module (gnu packages gcc) - #:use-module (gnu packages commencement) - #:use-module (guix build-system python) - #:use-module ((guix licenses) #:prefix license:) - #:use-module ((guix utils) #:select (target-64bit?)) - #:use-module (gnu packages) - #:use-module (gnu packages admin) - #:use-module (gnu packages autotools) - #:use-module (gnu packages base) - #:use-module (gnu packages freeipmi) - #:use-module (gnu packages linux) - #:use-module (gnu packages mpi) - #:use-module (gnu packages perl) - #:use-module (gnu packages pkg-config) - #:use-module (gnu packages parallel) - #:use-module (gnu packages storage) - #:use-module (gnu packages networking) - #:use-module (gnu packages gtk) - #:use-module (gnu packages python) - #:use-module (gnu packages python-science) - #:use-module (gnu packages python-web) - #:use-module (gnu packages python-xyz) - #:use-module (gnu packages readline) - #:use-module (gnu packages tcl) - #:use-module (gnu packages tls) - #:use-module (gnu packages commencement) - #:use-module (gnu packages gcc) - #:use-module (gnu packages chemistry) - #:use-module (gnu packages sphinx) - #:use-module (srfi srfi-1) - #:use-module (gnu packages mpi) - #:use-module (gnu packages sssd) - #:use-module (gnu packages fabric-management) - #:use-module (gnu packages benchmark) - #:use-module (gnu packages messaging) - #:use-module (gnu packages web) - #:use-module (gnu packages gnome) + #:use-module (gnu packages networking) ;; net-snmp #:use-module ((gnu packages cluster) #:prefix gnu:) - #:use-module (gnu packages libevent) - #:use-module (gnu packages xorg) - #:use-module (gnu packages fontutils) - #:use-module (gnu packages flex) - #:use-module (gnu packages bison) - #:use-module (gnu packages pkg-config) - #:use-module (gnu packages autotools) - #:use-module (gnu packages fontutils) - #:use-module (guix build-system gnu) - #:use-module (gnu packages image) - #:use-module (gnu packages maths) - #:use-module (guix utils) - #:use-module (gnu packages cmake) - #:use-module (gnu packages pretty-print) - #:use-module (gnu packages boost) - #:use-module (gnu packages curl) - #:use-module (gnu packages cryptsetup) - #:use-module (gnu packages xml) - #:use-module (gnu packages admin) - #:use-module (gnu packages assembly) - #:use-module (gnu packages authentication) - #:use-module (gnu packages bdw-gc) - #:use-module (gnu packages boost) - #:use-module (gnu packages compression) - #:use-module (gnu packages crypto) - #:use-module (gnu packages cryptsetup) - #:use-module (gnu packages curl) - #:use-module (gnu packages databases) - #:use-module (gnu packages disk) - #:use-module (gnu packages gperf) - #:use-module (gnu packages jemalloc) - #:use-module (gnu packages linux) - #:use-module (gnu packages lua) - #:use-module (gnu packages ncurses) - #:use-module (gnu packages networking) - #:use-module (gnu packages nss) - #:use-module (gnu packages openldap) - #:use-module (gnu packages pkg-config) - #:use-module (gnu packages python) - #:use-module (gnu packages python-xyz) - #:use-module (gnu packages sphinx) - #:use-module (gnu packages tls) - #:use-module (gnu packages web) - #:use-module (gnu packages pretty-print) - #:use-module (gnu packages virtualization) #:use-module (glicid utils) ) From f6afff4a26f8666ff928f2ce72ad5d10f8190e39 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Tue, 30 Nov 2021 22:12:36 +0100 Subject: [PATCH 111/383] cleanup --- glicid/packages/mpi.scm | 96 ++--------------------------------------- 1 file changed, 4 insertions(+), 92 deletions(-) diff --git a/glicid/packages/mpi.scm b/glicid/packages/mpi.scm index 480427a..36d3eda 100644 --- a/glicid/packages/mpi.scm +++ b/glicid/packages/mpi.scm @@ -1,103 +1,12 @@ (define-module (glicid packages mpi) #:use-module (guix packages) #:use-module (guix download) - #:use-module (guix git-download) - #:use-module (guix build-system gnu) - #:use-module (guix build-system cmake) -; #:use-module (guix licenses) - #:use-module (gnu packages gawk) - #:use-module (gnu packages gcc) - #:use-module (gnu packages commencement) - #:use-module (guix build-system python) - #:use-module ((guix licenses) #:prefix license:) - #:use-module ((guix utils) #:select (target-64bit?)) - #:use-module (gnu packages) - #:use-module (gnu packages admin) - #:use-module (gnu packages autotools) - #:use-module (gnu packages base) - #:use-module (gnu packages freeipmi) - #:use-module (gnu packages linux) #:use-module ((gnu packages mpi) #:prefix gnu:) - #:use-module (gnu packages perl) - #:use-module (gnu packages pkg-config) - #:use-module (gnu packages parallel) - #:use-module (gnu packages storage) - #:use-module (gnu packages networking) - #:use-module (gnu packages gtk) - #:use-module (gnu packages python) - #:use-module (gnu packages python-science) - #:use-module (gnu packages python-web) - #:use-module (gnu packages python-xyz) - #:use-module (gnu packages readline) - #:use-module (gnu packages tcl) - #:use-module (gnu packages tls) - #:use-module (gnu packages commencement) - #:use-module (gnu packages gcc) - #:use-module (gnu packages chemistry) - #:use-module (gnu packages sphinx) - #:use-module (srfi srfi-1) - #:use-module (gnu packages mpi) - #:use-module (gnu packages sssd) - #:use-module (gnu packages fabric-management) - #:use-module (gnu packages benchmark) - #:use-module (gnu packages messaging) - #:use-module (gnu packages web) - #:use-module (gnu packages gnome) - #:use-module (gnu packages cluster) - #:use-module (gnu packages libevent) - #:use-module (gnu packages xorg) - #:use-module (gnu packages fontutils) - #:use-module (gnu packages flex) - #:use-module (gnu packages bison) - #:use-module (gnu packages pkg-config) - #:use-module (gnu packages autotools) - #:use-module (gnu packages fontutils) - #:use-module (guix build-system gnu) - #:use-module (gnu packages image) - #:use-module (gnu packages maths) - #:use-module (guix utils) - #:use-module (gnu packages cmake) - #:use-module (gnu packages pretty-print) - #:use-module (gnu packages boost) - #:use-module (gnu packages curl) - #:use-module (gnu packages cryptsetup) - #:use-module (gnu packages xml) - #:use-module (gnu packages admin) - #:use-module (gnu packages assembly) - #:use-module (gnu packages authentication) - #:use-module (gnu packages bdw-gc) - #:use-module (gnu packages boost) - #:use-module (gnu packages compression) - #:use-module (gnu packages crypto) - #:use-module (gnu packages cryptsetup) - #:use-module (gnu packages curl) - #:use-module (gnu packages databases) - #:use-module (gnu packages disk) - #:use-module (gnu packages gperf) - #:use-module (gnu packages jemalloc) - #:use-module (gnu packages linux) - #:use-module (gnu packages lua) - #:use-module (gnu packages ncurses) - #:use-module (gnu packages networking) - #:use-module (gnu packages nss) - #:use-module (gnu packages openldap) - #:use-module (gnu packages pkg-config) - #:use-module (gnu packages python) - #:use-module (gnu packages python-xyz) - #:use-module (gnu packages sphinx) - #:use-module (gnu packages tls) - #:use-module (gnu packages web) -;; #:use-module (gnu packages glicid) - #:use-module (gnu packages pretty-print) - #:use-module (gnu packages virtualization) - #:use-module (glicid packages gcc) #:use-module (glicid packages linux) #:use-module (glicid packages fabric-management) #:use-module (glicid utils) - #:use-module (gnu packages parallel) #:use-module (glicid packages parallel) - ) (define openmpi-latest gnu:openmpi) @@ -123,7 +32,7 @@ (define-public openmpi-glicid (transform-package - ((instead-of "slurm" slurm-glicid) openmpi) "glicid")) + ((instead-of "slurm" slurm-glicid) openmpi-latest) "glicid")) (define-public openmpi-glicid-libfabric (transform-package @@ -161,3 +70,6 @@ ) ) + +;;; end + From e7dc55da712600c37b5d4fd666c8ebbbdb8f0528 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Tue, 30 Nov 2021 22:18:26 +0100 Subject: [PATCH 112/383] cleanup --- glicid/packages/parallel.scm | 95 +----------------------------------- 1 file changed, 1 insertion(+), 94 deletions(-) diff --git a/glicid/packages/parallel.scm b/glicid/packages/parallel.scm index d7d64c8..a9eea2e 100644 --- a/glicid/packages/parallel.scm +++ b/glicid/packages/parallel.scm @@ -1,98 +1,10 @@ (define-module (glicid packages parallel) #:use-module (guix packages) #:use-module (guix download) - #:use-module (guix git-download) #:use-module (guix build-system gnu) - #:use-module (guix build-system cmake) -; #:use-module (guix licenses) - #:use-module (gnu packages gawk) - #:use-module (gnu packages gcc) - #:use-module (gnu packages commencement) - #:use-module (guix build-system python) #:use-module ((guix licenses) #:prefix license:) - #:use-module ((guix utils) #:select (target-64bit?)) - #:use-module (gnu packages) - #:use-module (gnu packages admin) - #:use-module (gnu packages autotools) - #:use-module (gnu packages base) - #:use-module (gnu packages freeipmi) - #:use-module (gnu packages linux) - #:use-module (gnu packages mpi) - #:use-module (gnu packages perl) - #:use-module (gnu packages pkg-config) #:use-module (gnu packages parallel) - #:use-module (gnu packages storage) - #:use-module (gnu packages networking) #:use-module (gnu packages gtk) - #:use-module (gnu packages python) - #:use-module (gnu packages python-science) - #:use-module (gnu packages python-web) - #:use-module (gnu packages python-xyz) - #:use-module (gnu packages readline) - #:use-module (gnu packages tcl) - #:use-module (gnu packages tls) - #:use-module (gnu packages commencement) - #:use-module (gnu packages gcc) - #:use-module (gnu packages chemistry) - #:use-module (gnu packages sphinx) - #:use-module (srfi srfi-1) - #:use-module (gnu packages mpi) - #:use-module (gnu packages sssd) - #:use-module (gnu packages fabric-management) - #:use-module (gnu packages benchmark) - #:use-module (gnu packages messaging) - #:use-module (gnu packages web) - #:use-module (gnu packages gnome) - #:use-module (gnu packages cluster) - #:use-module (gnu packages libevent) - #:use-module (gnu packages xorg) - #:use-module (gnu packages fontutils) - #:use-module (gnu packages flex) - #:use-module (gnu packages bison) - #:use-module (gnu packages pkg-config) - #:use-module (gnu packages autotools) - #:use-module (gnu packages fontutils) - #:use-module (guix build-system gnu) - #:use-module (gnu packages image) - #:use-module (gnu packages maths) - #:use-module (guix utils) - #:use-module (gnu packages cmake) - #:use-module (gnu packages pretty-print) - #:use-module (gnu packages boost) - #:use-module (gnu packages curl) - #:use-module (gnu packages cryptsetup) - #:use-module (gnu packages xml) - #:use-module (gnu packages admin) - #:use-module (gnu packages assembly) - #:use-module (gnu packages authentication) - #:use-module (gnu packages bdw-gc) - #:use-module (gnu packages boost) - #:use-module (gnu packages compression) ;; for zlib - #:use-module (gnu packages crypto) - #:use-module (gnu packages cryptsetup) - #:use-module (gnu packages curl) - #:use-module (gnu packages databases) - #:use-module (gnu packages disk) - #:use-module (gnu packages gperf) - #:use-module (gnu packages jemalloc) - #:use-module (gnu packages linux) - #:use-module (gnu packages lua) - #:use-module (gnu packages ncurses) - #:use-module (gnu packages networking) - #:use-module (gnu packages nss) - #:use-module (gnu packages openldap) - #:use-module (gnu packages pkg-config) - #:use-module (gnu packages python) - #:use-module (gnu packages python-xyz) - #:use-module (gnu packages sphinx) - #:use-module (gnu packages tls) - #:use-module (gnu packages web) -;; #:use-module (gnu packages glicid) - #:use-module (gnu packages pretty-print) - #:use-module (gnu packages virtualization) - #:use-module (gnu packages haskell-xyz) ;; for pandoc - - ) @@ -123,7 +35,7 @@ ("libevent", libevent) ("hwloc" ,hwloc-2 "lib") ("perl", perl) - ("gcc", gcc-11) +; ("gcc", gcc-11) ) ) ) @@ -232,8 +144,3 @@ )) (define-public slurm-glicid slurm-20.02-glicid) - -;(define-public glicid-specific-slurm glicid-custom-slurm-20.02) - - - From f819d1a5508f809eaa0341275093bda95e52e19b Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Tue, 30 Nov 2021 22:20:51 +0100 Subject: [PATCH 113/383] cleanup --- glicid/packages/fabric-management.scm | 93 +-------------------------- 1 file changed, 2 insertions(+), 91 deletions(-) diff --git a/glicid/packages/fabric-management.scm b/glicid/packages/fabric-management.scm index e455725..23dd933 100644 --- a/glicid/packages/fabric-management.scm +++ b/glicid/packages/fabric-management.scm @@ -1,98 +1,7 @@ (define-module (glicid packages fabric-management) #:use-module (guix packages) #:use-module (guix download) - #:use-module (guix git-download) - #:use-module (guix build-system gnu) - #:use-module (guix build-system cmake) -; #:use-module (guix licenses) - #:use-module (gnu packages gawk) - #:use-module (gnu packages gcc) - #:use-module (gnu packages commencement) - #:use-module (guix build-system python) - #:use-module ((guix licenses) #:prefix license:) - #:use-module ((guix utils) #:select (target-64bit?)) - #:use-module (gnu packages) - #:use-module (gnu packages admin) - #:use-module (gnu packages autotools) - #:use-module (gnu packages base) - #:use-module (gnu packages freeipmi) - #:use-module (gnu packages linux) - #:use-module (gnu packages mpi) - #:use-module (gnu packages perl) - #:use-module (gnu packages pkg-config) - #:use-module (gnu packages parallel) - #:use-module (gnu packages storage) - #:use-module (gnu packages networking) - #:use-module (gnu packages gtk) - #:use-module (gnu packages python) - #:use-module (gnu packages python-science) - #:use-module (gnu packages python-web) - #:use-module (gnu packages python-xyz) - #:use-module (gnu packages readline) - #:use-module (gnu packages tcl) - #:use-module (gnu packages tls) - #:use-module (gnu packages commencement) - #:use-module (gnu packages gcc) - #:use-module (gnu packages chemistry) - #:use-module (gnu packages sphinx) - #:use-module (srfi srfi-1) - #:use-module (gnu packages mpi) - #:use-module (gnu packages sssd) #:use-module ((gnu packages fabric-management) #:prefix gnu:) - #:use-module (gnu packages benchmark) - #:use-module (gnu packages messaging) - #:use-module (gnu packages web) - #:use-module (gnu packages gnome) - #:use-module (gnu packages cluster) - #:use-module (gnu packages libevent) - #:use-module (gnu packages xorg) - #:use-module (gnu packages fontutils) - #:use-module (gnu packages flex) - #:use-module (gnu packages bison) - #:use-module (gnu packages pkg-config) - #:use-module (gnu packages autotools) - #:use-module (gnu packages fontutils) - #:use-module (guix build-system gnu) - #:use-module (gnu packages image) - #:use-module (gnu packages maths) - #:use-module (guix utils) - #:use-module (gnu packages cmake) - #:use-module (gnu packages pretty-print) - #:use-module (gnu packages boost) - #:use-module (gnu packages curl) - #:use-module (gnu packages cryptsetup) - #:use-module (gnu packages xml) - #:use-module (gnu packages admin) - #:use-module (gnu packages assembly) - #:use-module (gnu packages authentication) - #:use-module (gnu packages bdw-gc) - #:use-module (gnu packages boost) - #:use-module (gnu packages compression) - #:use-module (gnu packages crypto) - #:use-module (gnu packages cryptsetup) - #:use-module (gnu packages curl) - #:use-module (gnu packages databases) - #:use-module (gnu packages disk) - #:use-module (gnu packages gperf) - #:use-module (gnu packages jemalloc) - #:use-module (gnu packages linux) - #:use-module (gnu packages lua) - #:use-module (gnu packages ncurses) - #:use-module (gnu packages networking) - #:use-module (gnu packages nss) - #:use-module (gnu packages openldap) - #:use-module (gnu packages pkg-config) - #:use-module (gnu packages python) - #:use-module (gnu packages python-xyz) - #:use-module (gnu packages sphinx) - #:use-module (gnu packages tls) - #:use-module (gnu packages web) -;; #:use-module (gnu packages glicid) - #:use-module (gnu packages pretty-print) - #:use-module (gnu packages virtualization) - #:use-module (glicid packages gcc) - #:use-module (glicid packages linux) - #:use-module (glicid utils) ) @@ -115,4 +24,6 @@ (define local-ucx ucx-newer-1.11.2) (define-public ucx-latest local-ucx) ;; for now + ;;; glicid/fabric-management.scm ends here + From 112fdaa44c8e8e41806b1050e6eea06f871634ce Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Tue, 30 Nov 2021 22:22:51 +0100 Subject: [PATCH 114/383] cleanup --- glicid/packages/linux.scm | 91 --------------------------------------- 1 file changed, 91 deletions(-) diff --git a/glicid/packages/linux.scm b/glicid/packages/linux.scm index 5e7878c..08f7ca9 100644 --- a/glicid/packages/linux.scm +++ b/glicid/packages/linux.scm @@ -1,100 +1,9 @@ (define-module (glicid packages linux) #:use-module (guix packages) #:use-module (guix download) - #:use-module (guix git-download) - #:use-module (guix build-system gnu) - #:use-module (guix build-system cmake) -; #:use-module (guix licenses) - #:use-module (gnu packages gawk) - #:use-module (gnu packages gcc) - #:use-module (gnu packages commencement) - #:use-module (guix build-system python) - #:use-module ((guix licenses) #:prefix license:) - #:use-module ((guix utils) #:select (target-64bit?)) - #:use-module (gnu packages) - #:use-module (gnu packages admin) - #:use-module (gnu packages autotools) - #:use-module (gnu packages base) - #:use-module (gnu packages freeipmi) #:use-module ((gnu packages linux) #:prefix gnu:) - #:use-module (gnu packages mpi) - #:use-module (gnu packages perl) - #:use-module (gnu packages pkg-config) - #:use-module (gnu packages parallel) - #:use-module (gnu packages storage) - #:use-module (gnu packages networking) - #:use-module (gnu packages gtk) - #:use-module (gnu packages python) - #:use-module (gnu packages python-science) - #:use-module (gnu packages python-web) - #:use-module (gnu packages python-xyz) - #:use-module (gnu packages readline) - #:use-module (gnu packages tcl) - #:use-module (gnu packages tls) - #:use-module (gnu packages commencement) - #:use-module (gnu packages gcc) - #:use-module (gnu packages chemistry) - #:use-module (gnu packages sphinx) - #:use-module (srfi srfi-1) - #:use-module (gnu packages mpi) - #:use-module (gnu packages sssd) - #:use-module (gnu packages fabric-management) - #:use-module (gnu packages benchmark) - #:use-module (gnu packages messaging) - #:use-module (gnu packages web) - #:use-module (gnu packages gnome) - #:use-module (gnu packages cluster) - #:use-module (gnu packages libevent) - #:use-module (gnu packages xorg) - #:use-module (gnu packages fontutils) - #:use-module (gnu packages flex) - #:use-module (gnu packages bison) - #:use-module (gnu packages pkg-config) - #:use-module (gnu packages autotools) - #:use-module (gnu packages fontutils) - #:use-module (guix build-system gnu) - #:use-module (gnu packages image) - #:use-module (gnu packages maths) - #:use-module (guix utils) - #:use-module (gnu packages cmake) - #:use-module (gnu packages pretty-print) - #:use-module (gnu packages boost) - #:use-module (gnu packages curl) - #:use-module (gnu packages cryptsetup) - #:use-module (gnu packages xml) - #:use-module (gnu packages admin) - #:use-module (gnu packages assembly) - #:use-module (gnu packages authentication) - #:use-module (gnu packages bdw-gc) - #:use-module (gnu packages boost) - #:use-module (gnu packages compression) - #:use-module (gnu packages crypto) - #:use-module (gnu packages cryptsetup) - #:use-module (gnu packages curl) - #:use-module (gnu packages databases) - #:use-module (gnu packages disk) - #:use-module (gnu packages gperf) - #:use-module (gnu packages jemalloc) -; #:use-module (gnu packages linux) - #:use-module (gnu packages lua) - #:use-module (gnu packages ncurses) - #:use-module (gnu packages networking) - #:use-module (gnu packages nss) - #:use-module (gnu packages openldap) - #:use-module (gnu packages pkg-config) - #:use-module (gnu packages python) - #:use-module (gnu packages python-xyz) - #:use-module (gnu packages sphinx) - #:use-module (gnu packages tls) - #:use-module (gnu packages web) -;; #:use-module (gnu packages glicid) - #:use-module (gnu packages pretty-print) - #:use-module (gnu packages virtualization) - #:use-module (glicid packages gcc) - #:use-module (glicid utils) ) - (define-public rdma-core-newer-37.1 (package (inherit gnu:rdma-core) From 788ae5e731ea208dfbb73651e1ff316b41673666 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Tue, 30 Nov 2021 22:29:43 +0100 Subject: [PATCH 115/383] cleanup --- glicid/packages/benchmark.scm | 118 ++-------------------------------- 1 file changed, 4 insertions(+), 114 deletions(-) diff --git a/glicid/packages/benchmark.scm b/glicid/packages/benchmark.scm index 17f0bb0..ea8bdfc 100644 --- a/glicid/packages/benchmark.scm +++ b/glicid/packages/benchmark.scm @@ -2,127 +2,16 @@ #:use-module (guix packages) #:use-module (guix download) #:use-module (guix git-download) - #:use-module (guix build-system gnu) - #:use-module (guix build-system cmake) -; #:use-module (guix licenses) - #:use-module (gnu packages gawk) - #:use-module (gnu packages gcc) - #:use-module (gnu packages commencement) - #:use-module (guix build-system python) #:use-module ((guix licenses) #:prefix license:) - #:use-module ((guix utils) #:select (target-64bit?)) - #:use-module (gnu packages) - #:use-module (gnu packages admin) - #:use-module (gnu packages autotools) - #:use-module (gnu packages base) - #:use-module (gnu packages freeipmi) - #:use-module (gnu packages linux) #:use-module (gnu packages mpi) - #:use-module (gnu packages perl) - #:use-module (gnu packages pkg-config) - #:use-module (gnu packages parallel) - #:use-module (gnu packages storage) - #:use-module (gnu packages networking) - #:use-module (gnu packages gtk) - #:use-module (gnu packages python) - #:use-module (gnu packages python-science) - #:use-module (gnu packages python-web) - #:use-module (gnu packages python-xyz) - #:use-module (gnu packages readline) - #:use-module (gnu packages tcl) - #:use-module (gnu packages tls) - #:use-module (gnu packages commencement) - #:use-module (gnu packages gcc) - #:use-module (gnu packages chemistry) - #:use-module (gnu packages sphinx) - #:use-module (srfi srfi-1) - #:use-module (gnu packages mpi) - #:use-module (gnu packages sssd) - #:use-module (gnu packages fabric-management) #:use-module ((gnu packages benchmark) #:prefix gnu:) - #:use-module (gnu packages messaging) - #:use-module (gnu packages web) - #:use-module (gnu packages gnome) - #:use-module (gnu packages cluster) - #:use-module (gnu packages libevent) - #:use-module (gnu packages xorg) - #:use-module (gnu packages fontutils) - #:use-module (gnu packages flex) - #:use-module (gnu packages bison) - #:use-module (gnu packages pkg-config) - #:use-module (gnu packages autotools) - #:use-module (gnu packages fontutils) - #:use-module (guix build-system gnu) - #:use-module (gnu packages image) - #:use-module (gnu packages maths) - #:use-module (guix utils) - #:use-module (gnu packages cmake) - #:use-module (gnu packages pretty-print) - #:use-module (gnu packages boost) - #:use-module (gnu packages curl) - #:use-module (gnu packages cryptsetup) - #:use-module (gnu packages xml) - #:use-module (gnu packages admin) - #:use-module (gnu packages assembly) - #:use-module (gnu packages authentication) - #:use-module (gnu packages bdw-gc) - #:use-module (gnu packages boost) - #:use-module (gnu packages compression) - #:use-module (gnu packages crypto) - #:use-module (gnu packages cryptsetup) - #:use-module (gnu packages curl) - #:use-module (gnu packages databases) - #:use-module (gnu packages disk) - #:use-module (gnu packages gperf) - #:use-module (gnu packages jemalloc) - #:use-module (gnu packages linux) - #:use-module (gnu packages lua) - #:use-module (gnu packages ncurses) - #:use-module (gnu packages networking) - #:use-module (gnu packages nss) - #:use-module (gnu packages openldap) - #:use-module (gnu packages pkg-config) - #:use-module (gnu packages python) - #:use-module (gnu packages python-xyz) - #:use-module (gnu packages sphinx) - #:use-module (gnu packages tls) - #:use-module (gnu packages web) -;; #:use-module (gnu packages glicid) - #:use-module (gnu packages pretty-print) - #:use-module (gnu packages virtualization) - #:use-module (glicid packages storage) #:use-module (glicid packages mpi) - #:use-module (glicid packages gcc) #:use-module (glicid utils) - #:use-module ((guix licenses) #:prefix license:) - #:use-module (guix packages) - #:use-module (guix download) - #:use-module (guix utils) - #:use-module (guix build utils) - #:use-module (guix build-system cmake) - #:use-module (guix build-system gnu) - #:use-module (gnu packages) - #:use-module (gnu packages algebra) - #:use-module (gnu packages image-processing) - #:use-module (gnu packages image) - #:use-module (gnu packages graphics) - #:use-module (gnu packages maths) - #:use-module (gnu packages mpi) - #:use-module (gnu packages python) - #:use-module (gnu packages python-xyz) - #:use-module (gnu packages compression) - #:use-module (gnu packages commencement) - #:use-module (gnu packages gcc) - #:use-module (gnu packages pkg-config) - #:use-module (gnu packages video) - #:use-module (gnu packages llvm) - #:use-module (gnu packages multiprecision) - #:use-module (glicid utils) - #:use-module (guix git-download) + #:use-module (guix build-system gnu) + #use-modules (gnu packages commencement) ) - ;;;;;;;; @@ -209,7 +98,7 @@ ) ) ) - (inputs `(("gfortran-toolchain@11" ,gfortran-toolchain-11))) + (inputs `(("gfortran-toolchain" ,gfortran-toolchain))) (synopsis "STREAM benchmark") (description "STREAM benchmark") @@ -247,3 +136,4 @@ ;;; glicid/benchmark.scm ends here + From e85600fe56c7ad64eb267d6b15ac6391ed095cd2 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Tue, 30 Nov 2021 22:33:41 +0100 Subject: [PATCH 116/383] typo --- glicid/packages/benchmark.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glicid/packages/benchmark.scm b/glicid/packages/benchmark.scm index ea8bdfc..21473d4 100644 --- a/glicid/packages/benchmark.scm +++ b/glicid/packages/benchmark.scm @@ -8,7 +8,7 @@ #:use-module (glicid packages mpi) #:use-module (glicid utils) #:use-module (guix build-system gnu) - #use-modules (gnu packages commencement) + #:use-module (gnu packages commencement) ) From 3ca2c987e8fe71f34eb26f8208746b27053e542f Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Tue, 30 Nov 2021 22:38:06 +0100 Subject: [PATCH 117/383] some missing packages --- glicid/packages/parallel.scm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/glicid/packages/parallel.scm b/glicid/packages/parallel.scm index a9eea2e..a6ce294 100644 --- a/glicid/packages/parallel.scm +++ b/glicid/packages/parallel.scm @@ -5,7 +5,10 @@ #:use-module ((guix licenses) #:prefix license:) #:use-module (gnu packages parallel) #:use-module (gnu packages gtk) - + #:use-module (gnu packages libevent) + #:use-module (gnu packages perl) + #:use-module (gnu packages mpi) + ) (define-public openpmix-3.1.5 @@ -35,7 +38,6 @@ ("libevent", libevent) ("hwloc" ,hwloc-2 "lib") ("perl", perl) -; ("gcc", gcc-11) ) ) ) From e743d47f2aae222410fb04623be611d228ef4346 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Tue, 30 Nov 2021 22:48:35 +0100 Subject: [PATCH 118/383] missing packages --- glicid/packages/parallel.scm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/glicid/packages/parallel.scm b/glicid/packages/parallel.scm index a6ce294..584a636 100644 --- a/glicid/packages/parallel.scm +++ b/glicid/packages/parallel.scm @@ -7,8 +7,10 @@ #:use-module (gnu packages gtk) #:use-module (gnu packages libevent) #:use-module (gnu packages perl) + #:use-module (gnu packages python) + #:use-module (gnu packages compression) #:use-module (gnu packages mpi) - + #:use-module (gnu packages haskell-xyz) ; for pandoc ) (define-public openpmix-3.1.5 From eddb3a38abf5856545d9ff164da1a8efb018fd24 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Tue, 30 Nov 2021 22:55:55 +0100 Subject: [PATCH 119/383] new name --- glicid/packages/cluster.scm | 1 + 1 file changed, 1 insertion(+) diff --git a/glicid/packages/cluster.scm b/glicid/packages/cluster.scm index fc7500e..16595c0 100644 --- a/glicid/packages/cluster.scm +++ b/glicid/packages/cluster.scm @@ -36,6 +36,7 @@ (define-public keepalived-glicid (package (inherit keepalived-latest) + (name "keepalived-glicid") (version (string-append (package-version keepalived-latest) "-glicid" )) (arguments `(#:configure-flags From 9945fdad37b243cc3c54eb08d30e8f6d6209e2b9 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Wed, 1 Dec 2021 14:08:45 +0100 Subject: [PATCH 120/383] adding a rc-local like service --- glicid/services/rc-local.scm | 65 ++++++++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 glicid/services/rc-local.scm diff --git a/glicid/services/rc-local.scm b/glicid/services/rc-local.scm new file mode 100644 index 0000000..e6f9d83 --- /dev/null +++ b/glicid/services/rc-local.scm @@ -0,0 +1,65 @@ +(define-module (glicid services rc-local) + #:use-module (gnu services) + #:use-module (gnu services shepherd) + #:use-module (guix) + #:use-module (guix records) + #:use-module (ice-9 match) + #:use-module (gnu packages bash) + #:export ( + %default-rc-local-conf + rc-local-configuration + rc-local-configuration? + rc-local-service + rc-local-service-type + ) +) + +(define %default-rc-local-conf + (plain-file "rc-local" " + # Empty file as we do nothing by default + ") +) + +(define-record-type* + rc-local-configuration make-rc-local-configuration + rc-local-configuration? + (config-file rc-local-configuration-config-file ; string + (default %default-slapd.conf) + ) +) + +(define rc-local-service + (match-lambda + (($ rc-local arguments logflags log-file pid-file config-file schema-dir) + (list + (shepherd-service + (provision '(rc-local) ) + (documentation "Run rc-local.") + (requirement '(user-processes)) + (respawn? #f) + (start #~(make-forkexec-constructor + (list + #$(file-append bash "/bin/bash") + #$config-file + ) + )) + (stop #~(make-kill-destructor)) + ) + ) + ) + ) +) + +(define rc-local-service-type + (service-type (name 'rc-local) + (extensions + (list ( + service-extension + shepherd-root-service-type + rc-local-service + )) + ) + (description "Run a script in a rc-local like form") + ) +) + From a8cef196af5feb09652a9c3f91416c24d5028af7 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Wed, 1 Dec 2021 14:26:26 +0100 Subject: [PATCH 121/383] adding a rc-local like service --- glicid/services/rc-local.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glicid/services/rc-local.scm b/glicid/services/rc-local.scm index e6f9d83..94db2d7 100644 --- a/glicid/services/rc-local.scm +++ b/glicid/services/rc-local.scm @@ -24,7 +24,7 @@ rc-local-configuration make-rc-local-configuration rc-local-configuration? (config-file rc-local-configuration-config-file ; string - (default %default-slapd.conf) + (default %default-rc-local-conf) ) ) From 5055d2ba2836c7871762bde041a8b271039ce33a Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Wed, 1 Dec 2021 14:35:04 +0100 Subject: [PATCH 122/383] adding a rc-local like service --- glicid/services/rc-local.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/glicid/services/rc-local.scm b/glicid/services/rc-local.scm index 94db2d7..df0f107 100644 --- a/glicid/services/rc-local.scm +++ b/glicid/services/rc-local.scm @@ -23,14 +23,14 @@ (define-record-type* rc-local-configuration make-rc-local-configuration rc-local-configuration? - (config-file rc-local-configuration-config-file ; string + (config-file rc-local-config-file ; string (default %default-rc-local-conf) ) ) (define rc-local-service (match-lambda - (($ rc-local arguments logflags log-file pid-file config-file schema-dir) + (($ config-file) (list (shepherd-service (provision '(rc-local) ) From 3242d7ca22c5e2f5844626aa1dbc606553f7993b Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Wed, 1 Dec 2021 15:00:38 +0100 Subject: [PATCH 123/383] adding a rc-local like service --- glicid/services/rc-local.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/glicid/services/rc-local.scm b/glicid/services/rc-local.scm index df0f107..a2c8021 100644 --- a/glicid/services/rc-local.scm +++ b/glicid/services/rc-local.scm @@ -40,7 +40,8 @@ (start #~(make-forkexec-constructor (list #$(file-append bash "/bin/bash") - #$config-file + "-l" + "-c" #$config-file ) )) (stop #~(make-kill-destructor)) From b9553b913f0cd55ca0d67ff5443a223260555cb0 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Wed, 1 Dec 2021 15:08:13 +0100 Subject: [PATCH 124/383] adding a rc-local like service --- glicid/services/rc-local.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glicid/services/rc-local.scm b/glicid/services/rc-local.scm index a2c8021..0e43c6c 100644 --- a/glicid/services/rc-local.scm +++ b/glicid/services/rc-local.scm @@ -41,7 +41,7 @@ (list #$(file-append bash "/bin/bash") "-l" - "-c" #$config-file + #$config-file ) )) (stop #~(make-kill-destructor)) From deb424e6988d00a4d9997528bceff6aac6a2f151 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Fran=C3=A7ois=20GUILLAUME?= Date: Thu, 2 Dec 2021 21:30:43 +0100 Subject: [PATCH 125/383] cleaning --- glicid/services/openldap.scm | 19 +++++++++++-------- glicid/services/rc-local.scm | 7 ++++++- 2 files changed, 17 insertions(+), 9 deletions(-) diff --git a/glicid/services/openldap.scm b/glicid/services/openldap.scm index 1b9859f..867b356 100644 --- a/glicid/services/openldap.scm +++ b/glicid/services/openldap.scm @@ -20,10 +20,10 @@ (openldap openldap-configuration-openldap ; (default openldap) ) - (arguments openldap-configuration-arguments ;list of strings + (extra-args openldap-configuration-arguments ;list of strings (default '()) ) - (logflags openldap-configuration-logflags ;number + (log-flags openldap-configuration-logflags ;number (default "0") ) (log-file openldap-configuration-log-file ; string @@ -35,17 +35,16 @@ (config-file openldap-configuration-config-file ; string (default %default-slapd.conf) ) - (schema-dir openldap-configuration-schema-dir ; string - (default '()) - ) ) + (define %default-slapd.conf (plain-file "slapd.conf" " # Empty file for test ")) + (define openldap-shepherd-service (match-lambda - (($ openldap arguments logflags log-file pid-file config-file schema-dir) + (($ openldap extra-args log-flags log-file pid-file config-file) (list (shepherd-service (provision '(slapd) ) @@ -54,12 +53,15 @@ (respawn? #f) (start #~(make-forkexec-constructor (list + ; We do not set the uri in the service definition because if we do, we need a way to + ; escape double quotes. You should use slapd.conf to set the uri #$(file-append openldap "/libexec/slapd") - "-h 'ldap:/// ldaps:///'" - "-d" #$logflags + "-d" #$log-flags "-f" #$config-file + #$extra-args ) #:pid-file #$pid-file + #:log-file #$log-file )) (stop #~(make-kill-destructor)) ) @@ -67,6 +69,7 @@ ) ) ) + (define openldap-service-type (service-type (name 'slapd) (extensions diff --git a/glicid/services/rc-local.scm b/glicid/services/rc-local.scm index 0e43c6c..01cd700 100644 --- a/glicid/services/rc-local.scm +++ b/glicid/services/rc-local.scm @@ -23,9 +23,12 @@ (define-record-type* rc-local-configuration make-rc-local-configuration rc-local-configuration? - (config-file rc-local-config-file ; string + (config-file rc-local-config-file (default %default-rc-local-conf) ) + (log-file rc-local-log-file + (default "/var/log/rc-local.log") + ) ) (define rc-local-service @@ -37,12 +40,14 @@ (documentation "Run rc-local.") (requirement '(user-processes)) (respawn? #f) + (one-shot? #t) (start #~(make-forkexec-constructor (list #$(file-append bash "/bin/bash") "-l" #$config-file ) + #:log-file #$log-file )) (stop #~(make-kill-destructor)) ) From e73f7dc8322c3a96242010f4fe5ca64690f21de2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Fran=C3=A7ois=20GUILLAUME?= Date: Thu, 2 Dec 2021 21:35:51 +0100 Subject: [PATCH 126/383] cleaning --- glicid/services/openldap.scm | 1 - 1 file changed, 1 deletion(-) diff --git a/glicid/services/openldap.scm b/glicid/services/openldap.scm index 867b356..01f3637 100644 --- a/glicid/services/openldap.scm +++ b/glicid/services/openldap.scm @@ -61,7 +61,6 @@ #$extra-args ) #:pid-file #$pid-file - #:log-file #$log-file )) (stop #~(make-kill-destructor)) ) From 1947c1533d865fd3c73eb6158e48aa2f752e7157 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Fran=C3=A7ois=20GUILLAUME?= Date: Thu, 2 Dec 2021 21:41:51 +0100 Subject: [PATCH 127/383] cleaning --- glicid/services/openldap.scm | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/glicid/services/openldap.scm b/glicid/services/openldap.scm index 01f3637..1990f07 100644 --- a/glicid/services/openldap.scm +++ b/glicid/services/openldap.scm @@ -20,13 +20,13 @@ (openldap openldap-configuration-openldap ; (default openldap) ) - (extra-args openldap-configuration-arguments ;list of strings + (arguments openldap-configuration-arguments ;list of strings (default '()) ) (log-flags openldap-configuration-logflags ;number (default "0") ) - (log-file openldap-configuration-log-file ; string + (logfile openldap-configuration-log-file ; string (default "/var/log/slapd.log") ) (pid-file openldap-configuration-pid-file ; string @@ -44,7 +44,7 @@ (define openldap-shepherd-service (match-lambda - (($ openldap extra-args log-flags log-file pid-file config-file) + (($ openldap arguments log-flags logfile pid-file config-file) (list (shepherd-service (provision '(slapd) ) @@ -58,9 +58,10 @@ #$(file-append openldap "/libexec/slapd") "-d" #$log-flags "-f" #$config-file - #$extra-args + #$arguments ) #:pid-file #$pid-file + #:log-file #$logfile )) (stop #~(make-kill-destructor)) ) From 46264aae9a5ccf156915e112b91e53efc2e70433 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Fran=C3=A7ois=20GUILLAUME?= Date: Thu, 2 Dec 2021 21:45:53 +0100 Subject: [PATCH 128/383] openldap service --- glicid/services/openldap.scm | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/glicid/services/openldap.scm b/glicid/services/openldap.scm index 1990f07..970b289 100644 --- a/glicid/services/openldap.scm +++ b/glicid/services/openldap.scm @@ -23,10 +23,10 @@ (arguments openldap-configuration-arguments ;list of strings (default '()) ) - (log-flags openldap-configuration-logflags ;number + (logflags openldap-configuration-logflags ;number (default "0") ) - (logfile openldap-configuration-log-file ; string + (log-file openldap-configuration-log-file ; string (default "/var/log/slapd.log") ) (pid-file openldap-configuration-pid-file ; string @@ -37,6 +37,7 @@ ) ) + (define %default-slapd.conf (plain-file "slapd.conf" " # Empty file for test @@ -44,7 +45,7 @@ (define openldap-shepherd-service (match-lambda - (($ openldap arguments log-flags logfile pid-file config-file) + (($ openldap arguments logflags log-file pid-file config-file) (list (shepherd-service (provision '(slapd) ) From 05ff29b025dc29d068a224e643d0e8f00b6d7291 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Fran=C3=A7ois=20GUILLAUME?= Date: Thu, 2 Dec 2021 21:48:22 +0100 Subject: [PATCH 129/383] openldap service --- glicid/services/openldap.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glicid/services/openldap.scm b/glicid/services/openldap.scm index 970b289..0418897 100644 --- a/glicid/services/openldap.scm +++ b/glicid/services/openldap.scm @@ -62,7 +62,7 @@ #$arguments ) #:pid-file #$pid-file - #:log-file #$logfile + #:log-file #$log-file )) (stop #~(make-kill-destructor)) ) From a5cbba8036e38966286a865f45f006d11299d295 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Fran=C3=A7ois=20GUILLAUME?= Date: Thu, 2 Dec 2021 21:50:37 +0100 Subject: [PATCH 130/383] openldap service --- glicid/services/openldap.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glicid/services/openldap.scm b/glicid/services/openldap.scm index 0418897..8056cfd 100644 --- a/glicid/services/openldap.scm +++ b/glicid/services/openldap.scm @@ -57,7 +57,7 @@ ; We do not set the uri in the service definition because if we do, we need a way to ; escape double quotes. You should use slapd.conf to set the uri #$(file-append openldap "/libexec/slapd") - "-d" #$log-flags + "-d" #$logflags "-f" #$config-file #$arguments ) From 3249213c9e9cafdf57137654ffc2bcff2d8009a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Fran=C3=A7ois=20GUILLAUME?= Date: Thu, 2 Dec 2021 21:53:15 +0100 Subject: [PATCH 131/383] openldap service --- glicid/services/openldap.scm | 1 - 1 file changed, 1 deletion(-) diff --git a/glicid/services/openldap.scm b/glicid/services/openldap.scm index 8056cfd..60bb92f 100644 --- a/glicid/services/openldap.scm +++ b/glicid/services/openldap.scm @@ -62,7 +62,6 @@ #$arguments ) #:pid-file #$pid-file - #:log-file #$log-file )) (stop #~(make-kill-destructor)) ) From 2008c7c2d5bdac370977091982617af9d5dafea2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Fran=C3=A7ois=20GUILLAUME?= Date: Thu, 2 Dec 2021 22:09:56 +0100 Subject: [PATCH 132/383] openldap service --- glicid/services/openldap.scm | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/glicid/services/openldap.scm b/glicid/services/openldap.scm index 60bb92f..38b46b8 100644 --- a/glicid/services/openldap.scm +++ b/glicid/services/openldap.scm @@ -35,9 +35,11 @@ (config-file openldap-configuration-config-file ; string (default %default-slapd.conf) ) + (schema-dir openldap-configuration-schema-dir ; string + (default '()) + ) ) - (define %default-slapd.conf (plain-file "slapd.conf" " # Empty file for test @@ -45,7 +47,7 @@ (define openldap-shepherd-service (match-lambda - (($ openldap arguments logflags log-file pid-file config-file) + (($ openldap arguments logflags log-file pid-file config-file schema-dir) (list (shepherd-service (provision '(slapd) ) @@ -54,12 +56,9 @@ (respawn? #f) (start #~(make-forkexec-constructor (list - ; We do not set the uri in the service definition because if we do, we need a way to - ; escape double quotes. You should use slapd.conf to set the uri #$(file-append openldap "/libexec/slapd") "-d" #$logflags "-f" #$config-file - #$arguments ) #:pid-file #$pid-file )) From 8330609d58dcbef2ff9654c46342ba633d09709e Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 3 Dec 2021 08:21:12 +0100 Subject: [PATCH 133/383] openldap service --- glicid/services/openldap.scm | 1 + 1 file changed, 1 insertion(+) diff --git a/glicid/services/openldap.scm b/glicid/services/openldap.scm index 38b46b8..1748e42 100644 --- a/glicid/services/openldap.scm +++ b/glicid/services/openldap.scm @@ -57,6 +57,7 @@ (start #~(make-forkexec-constructor (list #$(file-append openldap "/libexec/slapd") + "-h 'ldap:/// ldaps:///'" "-d" #$logflags "-f" #$config-file ) From 189a7f5a70bc396b500aac3980ec15b71705b9ad Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 3 Dec 2021 08:22:07 +0100 Subject: [PATCH 134/383] openldap service --- glicid/services/openldap.scm | 1 - 1 file changed, 1 deletion(-) diff --git a/glicid/services/openldap.scm b/glicid/services/openldap.scm index 1748e42..38b46b8 100644 --- a/glicid/services/openldap.scm +++ b/glicid/services/openldap.scm @@ -57,7 +57,6 @@ (start #~(make-forkexec-constructor (list #$(file-append openldap "/libexec/slapd") - "-h 'ldap:/// ldaps:///'" "-d" #$logflags "-f" #$config-file ) From 6f750add4b1181ec93cfbfa37f89aff50bc0da7e Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 3 Dec 2021 08:27:15 +0100 Subject: [PATCH 135/383] openldap service --- glicid/services/openldap.scm | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/glicid/services/openldap.scm b/glicid/services/openldap.scm index 38b46b8..25bc067 100644 --- a/glicid/services/openldap.scm +++ b/glicid/services/openldap.scm @@ -20,24 +20,15 @@ (openldap openldap-configuration-openldap ; (default openldap) ) - (arguments openldap-configuration-arguments ;list of strings - (default '()) - ) (logflags openldap-configuration-logflags ;number (default "0") ) - (log-file openldap-configuration-log-file ; string - (default "/var/log/slapd.log") - ) (pid-file openldap-configuration-pid-file ; string (default "/var/run/openldap/slapd.pid") ) (config-file openldap-configuration-config-file ; string (default %default-slapd.conf) ) - (schema-dir openldap-configuration-schema-dir ; string - (default '()) - ) ) (define %default-slapd.conf @@ -47,7 +38,7 @@ (define openldap-shepherd-service (match-lambda - (($ openldap arguments logflags log-file pid-file config-file schema-dir) + (($ openldap logflags pid-file config-file) (list (shepherd-service (provision '(slapd) ) From efc1497e16cc239c7beb07206643c70e930f5491 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 3 Dec 2021 08:36:46 +0100 Subject: [PATCH 136/383] rc-local service --- glicid/services/rc-local.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glicid/services/rc-local.scm b/glicid/services/rc-local.scm index 01cd700..8d67a95 100644 --- a/glicid/services/rc-local.scm +++ b/glicid/services/rc-local.scm @@ -33,7 +33,7 @@ (define rc-local-service (match-lambda - (($ config-file) + (($ config-file log-file) (list (shepherd-service (provision '(rc-local) ) From da0a763962ccd70c256144dbae051fd2c1e9b712 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 3 Dec 2021 09:08:58 +0100 Subject: [PATCH 137/383] openldap service --- glicid/services/openldap.scm | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/glicid/services/openldap.scm b/glicid/services/openldap.scm index 25bc067..347c4ea 100644 --- a/glicid/services/openldap.scm +++ b/glicid/services/openldap.scm @@ -17,18 +17,24 @@ (define-record-type* openldap-configuration make-openldap-configuration openldap-configuration? - (openldap openldap-configuration-openldap ; + (openldap openldap-configuration-openldap (default openldap) ) - (logflags openldap-configuration-logflags ;number + (uri openldap-configuration-uri + (default "ldapi:// ldap://") + ) + (logflags openldap-configuration-logflags (default "0") ) - (pid-file openldap-configuration-pid-file ; string + (pid-file openldap-configuration-pid-file (default "/var/run/openldap/slapd.pid") ) - (config-file openldap-configuration-config-file ; string + (config-file openldap-configuration-config-file (default %default-slapd.conf) ) + (log-file openldap-configuration-log-file + (default "/var/log/slapd.log") + ) ) (define %default-slapd.conf @@ -38,7 +44,7 @@ (define openldap-shepherd-service (match-lambda - (($ openldap logflags pid-file config-file) + (($ openldap uri logflags pid-file config-file log-file) (list (shepherd-service (provision '(slapd) ) @@ -48,10 +54,12 @@ (start #~(make-forkexec-constructor (list #$(file-append openldap "/libexec/slapd") + "-h" #$uri "-d" #$logflags "-f" #$config-file ) #:pid-file #$pid-file + #:log-file #$log-file )) (stop #~(make-kill-destructor)) ) From 66a2647fd29466ef5247d8c27b4d391910b7dba9 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 3 Dec 2021 09:28:58 +0100 Subject: [PATCH 138/383] openldap service --- glicid/services/openldap.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glicid/services/openldap.scm b/glicid/services/openldap.scm index 347c4ea..a68a35b 100644 --- a/glicid/services/openldap.scm +++ b/glicid/services/openldap.scm @@ -51,7 +51,7 @@ (documentation "Run openldap.") (requirement '(user-processes)) (respawn? #f) - (start #~(make-forkexec-constructor + (start #~(fork+exec-command (list #$(file-append openldap "/libexec/slapd") "-h" #$uri From a5b5e6d9d690b54fe848272effcf900f671138d9 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 3 Dec 2021 09:56:33 +0100 Subject: [PATCH 139/383] formatting --- glicid/packages/algebra.scm | 24 ++-- glicid/packages/benchmark.scm | 207 +++++++++++++++++----------------- glicid/utils.scm | 59 ++++------ 3 files changed, 133 insertions(+), 157 deletions(-) diff --git a/glicid/packages/algebra.scm b/glicid/packages/algebra.scm index cf2301d..ba760bc 100644 --- a/glicid/packages/algebra.scm +++ b/glicid/packages/algebra.scm @@ -7,27 +7,19 @@ #:use-module (guix download) ) -;;;;;;;; - (define-public fftw-openmpi-with-fortran - (package (inherit fftw-openmpi) (name "fftw-openmpi-with-fortran") (version "3.3.10") (source (origin - (method url-fetch) - (uri (string-append "https://www.fftw.org/fftw-" - version".tar.gz")) - (sha256 - (base32 - "0rv4w90b65b2kvjpj8g9bdkl4xqc42q20f5bzpxdrkajk1a35jan")))) - - (inputs `(("gfortran-toolchain", gfortran-toolchain ) - ,@(package-inputs fftw-openmpi))) - + (method url-fetch) + (uri (string-append "https://www.fftw.org/fftw-" version ".tar.gz")) + (sha256 (base32 "0rv4w90b65b2kvjpj8g9bdkl4xqc42q20f5bzpxdrkajk1a35jan")) + )) + (inputs `( + ("gfortran-toolchain", gfortran-toolchain) + ,@(package-inputs fftw-openmpi) + )) ) ) - - -;;; glicid/algebra.scm ends here diff --git a/glicid/packages/benchmark.scm b/glicid/packages/benchmark.scm index 21473d4..d71ebc4 100644 --- a/glicid/packages/benchmark.scm +++ b/glicid/packages/benchmark.scm @@ -1,139 +1,136 @@ (define-module (glicid packages benchmark) - #:use-module (guix packages) + #:use-module (guix build-system gnu) #:use-module (guix download) #:use-module (guix git-download) #:use-module ((guix licenses) #:prefix license:) - #:use-module (gnu packages mpi) + #:use-module (guix packages) #:use-module ((gnu packages benchmark) #:prefix gnu:) - #:use-module (glicid packages mpi) - #:use-module (glicid utils) - #:use-module (guix build-system gnu) #:use-module (gnu packages commencement) - + #:use-module (gnu packages compression) + #:use-module (gnu packages mpi) + #:use-module (glicid packages mpi) + #:use-module (glicid packages gcc) + #:use-module (glicid utils) ) -;;;;;;;; - - (define-public intel-mpi-benchmarks/openmpi-2021.3 - (package - (inherit gnu:intel-mpi-benchmarks/openmpi) - (name "intel-mpi-benchmarks-newer") - (version "2021.3") - (source - (origin - (inherit (package-source gnu:intel-mpi-benchmarks/openmpi)) - (method git-fetch) - (uri (git-reference - (url "https://github.com/intel/mpi-benchmarks") - (commit (string-append "IMB-v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "04kczch2hlfzbgk929vcxx480kc6raba8rbz246j7d26k1z1zh8h")) - ) + (package + (inherit gnu:intel-mpi-benchmarks/openmpi) + (name "intel-mpi-benchmarks-newer") + (version "2021.3") + (source + (origin + (inherit (package-source gnu:intel-mpi-benchmarks/openmpi)) + (method git-fetch) + (uri (git-reference + (url "https://github.com/intel/mpi-benchmarks") + (commit (string-append "IMB-v" version)) + )) + (file-name (git-file-name name version)) + (sha256 (base32 "04kczch2hlfzbgk929vcxx480kc6raba8rbz246j7d26k1z1zh8h")) + ) ) ) - - ) +) (define-public intel-mpi-benchmarks/openmpi-2021.3-libfabric-rdma - (transform-package - ((instead-of "openmpi" openmpi-glicid-libfabric-rdma ) intel-mpi-benchmarks/openmpi-2021.3 ) "fab+rdma")) + (transform-package ( + (instead-of "openmpi" openmpi-glicid-libfabric-rdma) + intel-mpi-benchmarks/openmpi-2021.3 + ) "fab+rdma") +) (define intel-mpi-benchmark-transform-gcc-11 - (gcc11-instead-of-gcc intel-mpi-benchmarks/openmpi-2021.3-libfabric-rdma)) - -(define-public intel-mpi-benchmarks/openmpi-2021.3-gcc-11 - (package - (inherit intel-mpi-benchmark-transform-gcc-11) - (version (string-append (package-version intel-mpi-benchmark-transform-gcc-11) "-gcc-11" )) - ) + (gcc11-instead-of-gcc intel-mpi-benchmarks/openmpi-2021.3-libfabric-rdma) +) + +(define-public intel-mpi-benchmarks/openmpi-2021.3-gcc-11 + (package + (inherit intel-mpi-benchmark-transform-gcc-11) + (version (string-append (package-version intel-mpi-benchmark-transform-gcc-11) "-gcc-11" )) + ) ) -(use-modules (guix packages)) -(use-modules (guix download)) -(use-modules (guix build-system gnu)) -(use-modules (gnu packages compression)) -(use-modules (guix git-download)) -(use-modules (gnu packages commencement)) -(use-modules (glicid packages gcc)) (define-public stream-benchmarks - (package - (name "stream-benchmarks") - (version "5.10-jh") - (source (origin - (method git-fetch) - (uri - (git-reference - (url "https://github.com/jeffhammond/STREAM.git") - (commit "HEAD") - ) - ) - - (sha256 (base32 "1b5ka2h6rhp2103app6p0vq29y7qixcli9w874hb33y05ggjin8m")) - (file-name (string-append name "-" version "-checkout")) - ) - ) - + (package + (name "stream-benchmarks") + (version "5.10-jh") + (source (origin + (method git-fetch) + (uri + (git-reference + (url "https://github.com/jeffhammond/STREAM.git") + (commit "HEAD") + ) + ) + (sha256 (base32 "1b5ka2h6rhp2103app6p0vq29y7qixcli9w874hb33y05ggjin8m")) + (file-name (string-append name "-" version "-checkout")) + )) (build-system gnu-build-system) (arguments - `(#:phases - (modify-phases %standard-phases - (delete 'configure) ; no configure - (delete 'check) ; no check - (replace 'install - (lambda* (#:key outputs #:allow-other-keys) - ;; Le Makefile du paquet ne fournit pas de règle « install » - ;; alors on le fait nous-mêmes. - (let ((bin (string-append (assoc-ref outputs "out") - "/bin"))) - (install-file "stream_c.exe" bin) - (install-file "stream_f.exe" bin) - - #t))) + `(#:phases + (modify-phases %standard-phases + (delete 'configure) ; no configure + (delete 'check) ; no check + (replace 'install + (lambda* (#:key outputs #:allow-other-keys) + ;; Le Makefile du paquet ne fournit pas de règle « install » + ;; alors on le fait nous-mêmes. + (let + ((bin (string-append (assoc-ref outputs "out") "/bin"))) + (install-file "stream_c.exe" bin) + (install-file "stream_f.exe" bin) + #t + ) + ) + ) + ) ) - ) - ) - (inputs `(("gfortran-toolchain" ,gfortran-toolchain))) - - (synopsis "STREAM benchmark") - (description "STREAM benchmark") - (home-page "https://") - (license "")) + ) + (inputs `( + ("gfortran-toolchain" ,gfortran-toolchain) + )) + (synopsis "STREAM benchmark") + (description "STREAM benchmark") + (home-page "https://") + (license "") + ) ) ;;defined by gricad / PA Boutier (define-public osu-benchmarks - (package + (package (name "osu-benchmarks") (version "5.8") (source (origin - (method url-fetch) - (uri (string-append "https://mvapich.cse.ohio-state.edu/download/mvapich/osu-micro-benchmarks-" version ".tgz")) - (sha256 - (base32 - "19a4wg0msipibkxsi8i0c34d07512yfaj2k37dxg5541ysdw690f")))) + (method url-fetch) + (uri (string-append "https://mvapich.cse.ohio-state.edu/download/mvapich/osu-micro-benchmarks-" version ".tgz")) + (sha256 (base32 "19a4wg0msipibkxsi8i0c34d07512yfaj2k37dxg5541ysdw690f")) + )) (build-system gnu-build-system) (arguments - `(#:phases - (modify-phases %standard-phases - (add-after 'unpack 'setenv - (lambda _ - (setenv "CC" (which "mpicc")) - (setenv "CXX" (which "mpic++")) - #t))))) - (propagated-inputs - `(("openmpi" ,openmpi))) - (synopsis "OSU micro benchmarks") - (description "OSU micro benchmark for mpi") - (home-page "https://mvapich.cse.ohio-state.edu/benchmarks/") - (license license:gpl2+))) - - -;;; glicid/benchmark.scm ends here - + `(#:phases + (modify-phases %standard-phases + (add-after 'unpack 'setenv + (lambda _ + (setenv "CC" (which "mpicc")) + (setenv "CXX" (which "mpic++")) + #t + ) + ) + ) + ) + ) + (propagated-inputs `( + ("openmpi" ,openmpi) + )) + (synopsis "OSU micro benchmarks") + (description "OSU micro benchmark for mpi") + (home-page "https://mvapich.cse.ohio-state.edu/benchmarks/") + (license license:gpl2+) + ) +) diff --git a/glicid/utils.scm b/glicid/utils.scm index be4598e..ae1b244 100644 --- a/glicid/utils.scm +++ b/glicid/utils.scm @@ -1,46 +1,33 @@ (define-module (glicid utils) - #:use-module (guix packages) - #:use-module (guix transformations) - #:use-module (gnu packages gcc) - #:use-module (glicid packages gcc) - #:use-module (gnu packages commencement) - #:use-module (gnu packages) - #:export (latest-version) - #:export (gcc11-instead-of-gcc) -; #:export (gcc10-instead-of-gcc) - #:export (transform-package) - #:export (instead-of) - - ) -;; helper function -;; return latest version of 2 packages - + #:use-module (guix packages) + #:use-module (guix transformations) + #:use-module (gnu packages gcc) + #:use-module (glicid packages gcc) + #:use-module (gnu packages commencement) + #:use-module (gnu packages) + #:export (latest-version) + #:export (gcc11-instead-of-gcc) + #:export (transform-package) + #:export (instead-of) +) (define (latest-version v1 v2) (if (string> (package-version v1) (package-version v2)) v1 v2)) (define gcc11-instead-of-gcc - ;; This is a procedure to replace GCC by GCC11, - ;; recursively. -; (package-input-rewriting/spec `((,gcc-toolchain . ,(const gcc-toolchain-11))))) (package-input-rewriting `( - (,gcc-toolchain . ,gcc-toolchain-11) - (,gfortran-toolchain . ,gfortran-toolchain-11) - ) - ) + (,gcc-toolchain . ,gcc-toolchain-11) + (,gfortran-toolchain . ,gfortran-toolchain-11) + )) ) (define (transform-package original-package suffix) - (package - (inherit original-package) - (name (string-append (package-name original-package) "-" suffix )) - ) -) - - -(define (instead-of package-a-spec package-b) - (package-input-rewriting/spec `( - (,package-a-spec . ,(const package-b) - ) -; #:deep? #t - ) + (package + (inherit original-package) + (name (string-append (package-name original-package) "-" suffix )) ) ) + +(define (instead-of package-a-spec package-b) + (package-input-rewriting/spec `( + (,package-a-spec . ,(const package-b)) + )) +) From e30fa0129debacbb730e94060764c945a5ad8063 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 3 Dec 2021 10:35:51 +0100 Subject: [PATCH 140/383] formatting --- glicid/packages/algebra.scm | 2 +- glicid/packages/cluster.scm | 48 ++-- glicid/packages/fabric-management.scm | 32 ++- glicid/packages/gcc.scm | 314 +++++++++++++------------- 4 files changed, 193 insertions(+), 203 deletions(-) diff --git a/glicid/packages/algebra.scm b/glicid/packages/algebra.scm index ba760bc..a4b74d1 100644 --- a/glicid/packages/algebra.scm +++ b/glicid/packages/algebra.scm @@ -1,10 +1,10 @@ (define-module (glicid packages algebra) + #:use-module (guix download) #:use-module (guix packages) #:use-module (guix utils) #:use-module (gnu packages algebra) #:use-module (gnu packages commencement) #:use-module (gnu packages mpi) - #:use-module (guix download) ) (define-public fftw-openmpi-with-fortran diff --git a/glicid/packages/cluster.scm b/glicid/packages/cluster.scm index 16595c0..8f50d72 100644 --- a/glicid/packages/cluster.scm +++ b/glicid/packages/cluster.scm @@ -1,56 +1,44 @@ (define-module (glicid packages cluster) #:use-module (guix packages) #:use-module (guix download) - #:use-module (gnu packages networking) ;; net-snmp + #:use-module (gnu packages networking) #:use-module ((gnu packages cluster) #:prefix gnu:) #:use-module (glicid utils) ) -;;;;;;;; - (define-public keepalived-newer-2.2.4 (package (inherit gnu:keepalived) (name "keepalived-newer") (version "2.2.4") (source (origin - (method url-fetch) - (uri (string-append - "http://www.keepalived.org/software/keepalived-" - version ".tar.gz")) - - (sha256 - (base32 - "1py1xdrxzdxn09yi8dx842rmhnc8lv7z09wmb2mfljylhy8dcf01" -)))) - - - - ) + (method url-fetch) + (uri (string-append "http://www.keepalived.org/software/keepalived-" version ".tar.gz")) + (sha256 (base32 "1py1xdrxzdxn09yi8dx842rmhnc8lv7z09wmb2mfljylhy8dcf01" )) + )) + ) ) (define local:keepalived keepalived-newer-2.2.4) (define keepalived-latest (latest-version local:keepalived gnu:keepalived)) - (define-public keepalived-glicid (package (inherit keepalived-latest) (name "keepalived-glicid") (version (string-append (package-version keepalived-latest) "-glicid" )) (arguments - `(#:configure-flags - (list (string-append "--enable-snmp") - (string-append "--enable-snmp-checker") - (string-append "--enable-snmp-rfc") - ) - ) + `(#:configure-flags + (list + (string-append "--enable-snmp") + (string-append "--enable-snmp-checker") + (string-append "--enable-snmp-rfc") + ) + ) ) - - - (inputs `(("net-snmp", net-snmp) - ,@(package-inputs keepalived-latest))) - ) + (inputs `( + ("net-snmp", net-snmp) + ,@(package-inputs keepalived-latest) + )) + ) ) - -;;; glicid/cluster.scm ends here diff --git a/glicid/packages/fabric-management.scm b/glicid/packages/fabric-management.scm index 23dd933..837271e 100644 --- a/glicid/packages/fabric-management.scm +++ b/glicid/packages/fabric-management.scm @@ -1,29 +1,23 @@ (define-module (glicid packages fabric-management) - #:use-module (guix packages) #:use-module (guix download) + #:use-module (guix packages) #:use-module ((gnu packages fabric-management) #:prefix gnu:) - ) (define-public ucx-newer-1.11.2 - (package - (inherit gnu:ucx) - (name (string-append (package-name gnu:ucx) "-newer" )) - (version "1.11.2") - (source - (origin - (method url-fetch) - (uri (string-append "https://github.com/openucx/ucx/releases/download/v" version "/ucx-" version ".tar.gz" )) - (sha256 (base32 "1py62vjr0hgyqsdpr04jhn918i8ccn6ghjalwpcjpz24admgisyy")) - ) - + (package + (inherit gnu:ucx) + (name (string-append (package-name gnu:ucx) "-newer" )) + (version "1.11.2") + (source + (origin + (method url-fetch) + (uri (string-append "https://github.com/openucx/ucx/releases/download/v" version "/ucx-" version ".tar.gz" )) + (sha256 (base32 "1py62vjr0hgyqsdpr04jhn918i8ccn6ghjalwpcjpz24admgisyy")) + ) + ) ) - ) ) (define local-ucx ucx-newer-1.11.2) -(define-public ucx-latest local-ucx) ;; for now - - -;;; glicid/fabric-management.scm ends here - +(define-public ucx-latest local-ucx) diff --git a/glicid/packages/gcc.scm b/glicid/packages/gcc.scm index 705246d..ef1669a 100644 --- a/glicid/packages/gcc.scm +++ b/glicid/packages/gcc.scm @@ -1,176 +1,184 @@ (define-module (glicid packages gcc) - #:use-module (guix packages) - #:use-module (guix download) - #:use-module (guix git-download) - #:use-module (guix build-system gnu) - #:use-module (guix build-system cmake) -; #:use-module (guix licenses) - #:use-module (gnu packages gawk) - #:use-module (gnu packages gcc) - #:use-module (gnu packages commencement) - #:use-module (guix build-system python) - #:use-module ((guix licenses) #:prefix license:) - #:use-module ((guix utils) #:select (target-64bit?)) - #:use-module (gnu packages) - #:use-module (gnu packages admin) - #:use-module (gnu packages autotools) - #:use-module (gnu packages base) - #:use-module (gnu packages freeipmi) - #:use-module (gnu packages linux) - #:use-module (gnu packages mpi) - #:use-module (gnu packages perl) - #:use-module (gnu packages pkg-config) - #:use-module (gnu packages parallel) - #:use-module (gnu packages storage) - #:use-module (gnu packages networking) - #:use-module (gnu packages gtk) - #:use-module (gnu packages python) - #:use-module (gnu packages python-science) - #:use-module (gnu packages python-web) - #:use-module (gnu packages python-xyz) - #:use-module (gnu packages readline) - #:use-module (gnu packages tcl) - #:use-module (gnu packages tls) - #:use-module (gnu packages commencement) - #:use-module (gnu packages gcc) - #:use-module (gnu packages chemistry) - #:use-module (gnu packages sphinx) - #:use-module (srfi srfi-1) - #:use-module (gnu packages mpi) - #:use-module (gnu packages sssd) - #:use-module (gnu packages fabric-management) - #:use-module (gnu packages benchmark) - #:use-module (gnu packages messaging) - #:use-module (gnu packages web) - #:use-module (gnu packages gnome) - #:use-module (gnu packages cluster) - #:use-module (gnu packages libevent) - #:use-module (gnu packages xorg) - #:use-module (gnu packages fontutils) - #:use-module (gnu packages flex) - #:use-module (gnu packages bison) - #:use-module (gnu packages pkg-config) - #:use-module (gnu packages autotools) - #:use-module (gnu packages fontutils) - #:use-module (guix build-system gnu) - #:use-module (gnu packages image) - #:use-module (gnu packages maths) - #:use-module (guix utils) - #:use-module (gnu packages cmake) - #:use-module (gnu packages pretty-print) - #:use-module (gnu packages boost) - #:use-module (gnu packages curl) - #:use-module (gnu packages cryptsetup) - #:use-module (gnu packages xml) - #:use-module (gnu packages admin) - #:use-module (gnu packages assembly) - #:use-module (gnu packages authentication) - #:use-module (gnu packages bdw-gc) - #:use-module (gnu packages boost) - #:use-module (gnu packages compression) - #:use-module (gnu packages crypto) - #:use-module (gnu packages cryptsetup) - #:use-module (gnu packages curl) - #:use-module (gnu packages databases) - #:use-module (gnu packages disk) - #:use-module (gnu packages gperf) - #:use-module (gnu packages jemalloc) - #:use-module (gnu packages linux) - #:use-module (gnu packages lua) - #:use-module (gnu packages ncurses) - #:use-module (gnu packages networking) - #:use-module (gnu packages nss) - #:use-module (gnu packages openldap) - #:use-module (gnu packages pkg-config) - #:use-module (gnu packages python) - #:use-module (gnu packages python-xyz) - #:use-module (gnu packages sphinx) - #:use-module (gnu packages tls) - #:use-module (gnu packages web) -;; #:use-module (gnu packages glicid) - #:use-module (gnu packages pretty-print) - #:use-module (gnu packages virtualization) - - - +#:use-module (guix build-system cmake) +#:use-module (guix build-system gnu) +#:use-module (guix build-system python) +#:use-module (guix download) +#:use-module (guix git-download) +#:use-module ((guix licenses) #:prefix license:) +#:use-module (guix packages) +#:use-module (guix utils) +#:use-module ((guix utils) #:select (target-64bit?)) +#:use-module (gnu packages) +#:use-module (gnu packages admin) +#:use-module (gnu packages assembly) +#:use-module (gnu packages authentication) +#:use-module (gnu packages autotools) +#:use-module (gnu packages base) +#:use-module (gnu packages bdw-gc) +#:use-module (gnu packages benchmark) +#:use-module (gnu packages bison) +#:use-module (gnu packages boost) +#:use-module (gnu packages chemistry) +#:use-module (gnu packages cluster) +#:use-module (gnu packages cmake) +#:use-module (gnu packages commencement) +#:use-module (gnu packages compression) +#:use-module (gnu packages crypto) +#:use-module (gnu packages cryptsetup) +#:use-module (gnu packages curl) +#:use-module (gnu packages databases) +#:use-module (gnu packages disk) +#:use-module (gnu packages fabric-management) +#:use-module (gnu packages flex) +#:use-module (gnu packages fontutils) +#:use-module (gnu packages freeipmi) +#:use-module (gnu packages gawk) +#:use-module (gnu packages gcc) +#:use-module (gnu packages gnome) +#:use-module (gnu packages gperf) +#:use-module (gnu packages gtk) +#:use-module (gnu packages image) +#:use-module (gnu packages jemalloc) +#:use-module (gnu packages libevent) +#:use-module (gnu packages linux) +#:use-module (gnu packages lua) +#:use-module (gnu packages maths) +#:use-module (gnu packages messaging) +#:use-module (gnu packages mpi) +#:use-module (gnu packages ncurses) +#:use-module (gnu packages networking) +#:use-module (gnu packages nss) +#:use-module (gnu packages openldap) +#:use-module (gnu packages parallel) +#:use-module (gnu packages perl) +#:use-module (gnu packages pkg-config) +#:use-module (gnu packages pretty-print) +#:use-module (gnu packages python) +#:use-module (gnu packages python-science) +#:use-module (gnu packages python-web) +#:use-module (gnu packages python-xyz) +#:use-module (gnu packages readline) +#:use-module (gnu packages sphinx) +#:use-module (gnu packages sssd) +#:use-module (gnu packages storage) +#:use-module (gnu packages tcl) +#:use-module (gnu packages tls) +#:use-module (gnu packages virtualization) +#:use-module (gnu packages web) +#:use-module (gnu packages xml) +#:use-module (gnu packages xorg) +#:use-module (srfi srfi-1) ) - -(define* (custom-gcc gcc name languages - #:optional - (search-paths (package-native-search-paths gcc)) - #:key (separate-lib-output? #t)) +(define* + (custom-gcc gcc name languages + #:optional (search-paths (package-native-search-paths gcc)) + #:key (separate-lib-output? #t) + ) "Return a custom version of GCC that supports LANGUAGES. Use SEARCH-PATHS as the 'native-search-paths' field." - (package (inherit gcc) - (name (string-append name "-upstream" )) - (outputs (if separate-lib-output? - (package-outputs gcc) - (delete "lib" (package-outputs gcc)))) + (package + (inherit gcc) + (name (string-append name "-upstream" )) + (outputs + (if separate-lib-output? + (package-outputs gcc) + (delete "lib" (package-outputs gcc)) + ) + ) (native-search-paths search-paths) - (properties (alist-delete 'hidden? (package-properties gcc))) + (properties + (alist-delete 'hidden? (package-properties gcc)) + ) (arguments - (substitute-keyword-arguments (package-arguments gcc) - ((#:modules modules %gnu-build-system-modules) - `(,@modules - (srfi srfi-1) - (srfi srfi-26) - (ice-9 regex))) - ((#:configure-flags flags) - `(cons (string-append "--enable-languages=" - ,(string-join languages ",")) - (remove (cut string-match "--enable-languages.*" <>) - ,flags))) - ((#:phases phases) - `(modify-phases ,phases - (add-after 'install 'remove-broken-or-conflicting-files - (lambda* (#:key outputs #:allow-other-keys) - (for-each delete-file - (find-files (string-append (assoc-ref outputs "out") "/bin") - ".*(c\\+\\+|cpp|g\\+\\+|gcov|gcc|gcc-.*)")) - #t)))))))) + (substitute-keyword-arguments (package-arguments gcc) + ( + (#:modules modules %gnu-build-system-modules) + `(,@modules + (srfi srfi-1) + (srfi srfi-26) + (ice-9 regex) + ) + ) + ( + (#:configure-flags flags) + `(cons + (string-append + "--enable-languages=" + ,(string-join languages ",") + ) + (remove (cut string-match "--enable-languages.*" <>) ,flags) + ) + ) + ((#:phases phases) + `(modify-phases ,phases + (add-after 'install 'remove-broken-or-conflicting-files + (lambda* (#:key outputs #:allow-other-keys) + (for-each delete-file + (find-files (string-append (assoc-ref outputs "out") "/bin") ".*(c\\+\\+|cpp|g\\+\\+|gcov|gcc|gcc-.*)") + ) + #t + ) + ) + ) + ) + ) + ) + ) +) (define %generic-search-paths ;; This is the language-neutral search path for GCC. Entries in $CPATH are ;; not considered "system headers", which means GCC can raise warnings for ;; issues in those headers. 'CPATH' is the only one that works for ;; front-ends not in the C family. - (list (search-path-specification - (variable "CPATH") - (files '("include"))) - (search-path-specification - (variable "LIBRARY_PATH") - (files '("lib" "lib64"))))) + (list + (search-path-specification + (variable "CPATH") + (files '("include")) + ) + (search-path-specification + (variable "LIBRARY_PATH") + (files '("lib" "lib64")) + ) + ) +) - (define-public gfortran-11 +(define-public gfortran-11 (hidden-package - (custom-gcc gcc-11 "gfortran" '("fortran") - %generic-search-paths))) - - - (define-public gfortran-10 - (hidden-package - (custom-gcc gcc-10 "gfortran" '("fortran") - %generic-search-paths))) + (custom-gcc gcc-11 "gfortran" '("fortran") + %generic-search-paths + ) + ) +) +(define-public gfortran-10 + (hidden-package + (custom-gcc gcc-10 "gfortran" '("fortran") + %generic-search-paths + ) + ) +) (define-public gfortran-toolchain-10 - (package (inherit (make-gcc-toolchain gfortran-10)) + (package + (inherit (make-gcc-toolchain gfortran-10)) (synopsis "Complete GCC tool chain for fortean lang development") (description "This package provides a complete GCC tool chain for -fortran lang development to be installed in user profiles. This includes -fortran, as well as libc (headers and binaries, plus debugging symbols -in the @code{debug} output), and binutils."))) + fortran lang development to be installed in user profiles. This includes + fortran, as well as libc (headers and binaries, plus debugging symbols + in the @code{debug} output), and binutils." + ) + ) +) (define-public gfortran-toolchain-11 - (package (inherit (make-gcc-toolchain gfortran-11)) + (package + (inherit (make-gcc-toolchain gfortran-11)) (synopsis "Complete GCC tool chain for fortean lang development") (description "This package provides a complete GCC tool chain for -fortran lang development to be installed in user profiles. This includes -fortran, as well as libc (headers and binaries, plus debugging symbols -in the @code{debug} output), and binutils."))) - - - - - -;;; glicid/gcc.scm ends here + fortran lang development to be installed in user profiles. This includes + fortran, as well as libc (headers and binaries, plus debugging symbols + in the @code{debug} output), and binutils." + ) + ) +) From c40cfefa68d884b9da736356c0db999a639c6832 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 3 Dec 2021 10:45:27 +0100 Subject: [PATCH 141/383] openldap service --- glicid/packages/gnome.scm | 115 +++-------------------------------- glicid/services/openldap.scm | 2 +- 2 files changed, 11 insertions(+), 106 deletions(-) diff --git a/glicid/packages/gnome.scm b/glicid/packages/gnome.scm index 98ff711..13ca336 100644 --- a/glicid/packages/gnome.scm +++ b/glicid/packages/gnome.scm @@ -1,113 +1,18 @@ (define-module (glicid packages gnome) #:use-module (guix packages) - #:use-module (guix download) - #:use-module (guix git-download) - #:use-module (guix build-system gnu) - #:use-module (guix build-system cmake) -; #:use-module (guix licenses) - #:use-module (gnu packages gawk) - #:use-module (gnu packages gcc) - #:use-module (gnu packages commencement) - #:use-module (guix build-system python) - #:use-module ((guix licenses) #:prefix license:) - #:use-module ((guix utils) #:select (target-64bit?)) - #:use-module (gnu packages) - #:use-module (gnu packages admin) - #:use-module (gnu packages autotools) - #:use-module (gnu packages base) - #:use-module (gnu packages freeipmi) - #:use-module (gnu packages linux) - #:use-module (gnu packages mpi) - #:use-module (gnu packages perl) - #:use-module (gnu packages pkg-config) - #:use-module (gnu packages parallel) - #:use-module (gnu packages storage) - #:use-module (gnu packages networking) - #:use-module (gnu packages gtk) - #:use-module (gnu packages python) - #:use-module (gnu packages python-science) - #:use-module (gnu packages python-web) - #:use-module (gnu packages python-xyz) - #:use-module (gnu packages readline) - #:use-module (gnu packages tcl) - #:use-module (gnu packages tls) - #:use-module (gnu packages commencement) - #:use-module (gnu packages gcc) - #:use-module (gnu packages chemistry) - #:use-module (gnu packages sphinx) - #:use-module (srfi srfi-1) - #:use-module (gnu packages mpi) #:use-module (gnu packages sssd) - #:use-module (gnu packages fabric-management) - #:use-module (gnu packages benchmark) - #:use-module (gnu packages messaging) - #:use-module (gnu packages web) #:use-module (gnu packages gnome) - #:use-module (gnu packages cluster) - #:use-module (gnu packages libevent) - #:use-module (gnu packages xorg) - #:use-module (gnu packages fontutils) - #:use-module (gnu packages flex) - #:use-module (gnu packages bison) - #:use-module (gnu packages pkg-config) - #:use-module (gnu packages autotools) - #:use-module (gnu packages fontutils) - #:use-module (guix build-system gnu) - #:use-module (gnu packages image) - #:use-module (gnu packages maths) - #:use-module (guix utils) - #:use-module (gnu packages cmake) - #:use-module (gnu packages pretty-print) - #:use-module (gnu packages boost) - #:use-module (gnu packages curl) - #:use-module (gnu packages cryptsetup) - #:use-module (gnu packages xml) - #:use-module (gnu packages admin) - #:use-module (gnu packages assembly) - #:use-module (gnu packages authentication) - #:use-module (gnu packages bdw-gc) - #:use-module (gnu packages boost) - #:use-module (gnu packages compression) - #:use-module (gnu packages crypto) - #:use-module (gnu packages cryptsetup) - #:use-module (gnu packages curl) - #:use-module (gnu packages databases) - #:use-module (gnu packages disk) - #:use-module (gnu packages gperf) - #:use-module (gnu packages jemalloc) - #:use-module (gnu packages linux) - #:use-module (gnu packages lua) - #:use-module (gnu packages ncurses) - #:use-module (gnu packages networking) - #:use-module (gnu packages nss) - #:use-module (gnu packages openldap) - #:use-module (gnu packages pkg-config) - #:use-module (gnu packages python) - #:use-module (gnu packages python-xyz) - #:use-module (gnu packages sphinx) - #:use-module (gnu packages tls) - #:use-module (gnu packages web) -;; #:use-module (gnu packages glicid) - #:use-module (gnu packages pretty-print) - #:use-module (gnu packages virtualization) - #:use-module (gnu packages gnome) - ) - -;;;;;;;; - - (define-public glicid-terminator - (package - (inherit terminator) - (name "glicid-terminator") - (propagated-inputs - `( - ("sssd" ,sssd) - ,@(package-propagated-inputs terminator) - - )) - - ) + (package + (inherit terminator) + (name "glicid-terminator") + (propagated-inputs + `( + ("sssd" ,sssd) + ,@(package-propagated-inputs terminator) + ) + ) + ) ) diff --git a/glicid/services/openldap.scm b/glicid/services/openldap.scm index a68a35b..347c4ea 100644 --- a/glicid/services/openldap.scm +++ b/glicid/services/openldap.scm @@ -51,7 +51,7 @@ (documentation "Run openldap.") (requirement '(user-processes)) (respawn? #f) - (start #~(fork+exec-command + (start #~(make-forkexec-constructor (list #$(file-append openldap "/libexec/slapd") "-h" #$uri From c63ce36a9970f5cd5b97d9769b571f6182903961 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 3 Dec 2021 11:56:14 +0100 Subject: [PATCH 142/383] formatting --- glicid/packages/algebra.scm | 2 - glicid/packages/gcc.scm | 77 +---- glicid/packages/linux.scm | 82 +++--- glicid/packages/maths.scm | 90 ++---- glicid/packages/mpi.scm | 116 ++++---- glicid/packages/nfs.scm | 245 ++++------------ glicid/packages/parallel.scm | 190 +++++-------- glicid/packages/ssh.scm | 434 ++++++++++------------------- glicid/packages/virtualization.scm | 45 ++- 9 files changed, 423 insertions(+), 858 deletions(-) diff --git a/glicid/packages/algebra.scm b/glicid/packages/algebra.scm index a4b74d1..f57799a 100644 --- a/glicid/packages/algebra.scm +++ b/glicid/packages/algebra.scm @@ -1,10 +1,8 @@ (define-module (glicid packages algebra) #:use-module (guix download) #:use-module (guix packages) - #:use-module (guix utils) #:use-module (gnu packages algebra) #:use-module (gnu packages commencement) - #:use-module (gnu packages mpi) ) (define-public fftw-openmpi-with-fortran diff --git a/glicid/packages/gcc.scm b/glicid/packages/gcc.scm index ef1669a..06fab9d 100644 --- a/glicid/packages/gcc.scm +++ b/glicid/packages/gcc.scm @@ -1,73 +1,12 @@ (define-module (glicid packages gcc) -#:use-module (guix build-system cmake) -#:use-module (guix build-system gnu) -#:use-module (guix build-system python) -#:use-module (guix download) -#:use-module (guix git-download) -#:use-module ((guix licenses) #:prefix license:) -#:use-module (guix packages) -#:use-module (guix utils) -#:use-module ((guix utils) #:select (target-64bit?)) -#:use-module (gnu packages) -#:use-module (gnu packages admin) -#:use-module (gnu packages assembly) -#:use-module (gnu packages authentication) -#:use-module (gnu packages autotools) -#:use-module (gnu packages base) -#:use-module (gnu packages bdw-gc) -#:use-module (gnu packages benchmark) -#:use-module (gnu packages bison) -#:use-module (gnu packages boost) -#:use-module (gnu packages chemistry) -#:use-module (gnu packages cluster) -#:use-module (gnu packages cmake) -#:use-module (gnu packages commencement) -#:use-module (gnu packages compression) -#:use-module (gnu packages crypto) -#:use-module (gnu packages cryptsetup) -#:use-module (gnu packages curl) -#:use-module (gnu packages databases) -#:use-module (gnu packages disk) -#:use-module (gnu packages fabric-management) -#:use-module (gnu packages flex) -#:use-module (gnu packages fontutils) -#:use-module (gnu packages freeipmi) -#:use-module (gnu packages gawk) -#:use-module (gnu packages gcc) -#:use-module (gnu packages gnome) -#:use-module (gnu packages gperf) -#:use-module (gnu packages gtk) -#:use-module (gnu packages image) -#:use-module (gnu packages jemalloc) -#:use-module (gnu packages libevent) -#:use-module (gnu packages linux) -#:use-module (gnu packages lua) -#:use-module (gnu packages maths) -#:use-module (gnu packages messaging) -#:use-module (gnu packages mpi) -#:use-module (gnu packages ncurses) -#:use-module (gnu packages networking) -#:use-module (gnu packages nss) -#:use-module (gnu packages openldap) -#:use-module (gnu packages parallel) -#:use-module (gnu packages perl) -#:use-module (gnu packages pkg-config) -#:use-module (gnu packages pretty-print) -#:use-module (gnu packages python) -#:use-module (gnu packages python-science) -#:use-module (gnu packages python-web) -#:use-module (gnu packages python-xyz) -#:use-module (gnu packages readline) -#:use-module (gnu packages sphinx) -#:use-module (gnu packages sssd) -#:use-module (gnu packages storage) -#:use-module (gnu packages tcl) -#:use-module (gnu packages tls) -#:use-module (gnu packages virtualization) -#:use-module (gnu packages web) -#:use-module (gnu packages xml) -#:use-module (gnu packages xorg) -#:use-module (srfi srfi-1) +; #:use-module (guix build-system cmake) + #:use-module (guix build-system gnu) +; #:use-module (guix build-system python) + #:use-module (guix packages) + #:use-module (guix utils) + #:use-module (gnu packages commencement) + #:use-module (gnu packages gcc) + #:use-module (srfi srfi-1) ) (define* diff --git a/glicid/packages/linux.scm b/glicid/packages/linux.scm index 08f7ca9..f18ce17 100644 --- a/glicid/packages/linux.scm +++ b/glicid/packages/linux.scm @@ -5,79 +5,69 @@ ) (define-public rdma-core-newer-37.1 -(package + (package (inherit gnu:rdma-core) (name (string-append (package-name gnu:rdma-core) "-newer" )) (version "37.1") - (source (origin - (method url-fetch) - (uri (string-append "https://github.com/linux-rdma/rdma-core" - "/releases/download/v" version "/rdma-core-" - version ".tar.gz")) - (sha256 - (base32 - "1hjwagf5x48vgshy5s01qjlzjr8kmxpflfcvh8pgj3zbj82zzxiz")))) - ) + (source + (origin + (method url-fetch) + (uri (string-append "https://github.com/linux-rdma/rdma-core/releases/download/v" version "/rdma-core-" version ".tar.gz")) + (sha256 (base32 "1hjwagf5x48vgshy5s01qjlzjr8kmxpflfcvh8pgj3zbj82zzxiz")) + ) + ) + ) ) (define-public rdma-core-newer-38.0 - (package + (package (inherit gnu:rdma-core) (name (string-append (package-name gnu:rdma-core) "-newer" )) (version "38.0") - (source (origin - (method url-fetch) - (uri (string-append "https://github.com/linux-rdma/rdma-core" - "/releases/download/v" version "/rdma-core-" - version ".tar.gz")) - (sha256 - (base32 - "043vybwx9kz4mbbmnj0jzkzsw02vzhkkjc5j3yjdiiqkmsgwr3cs")))) - ) + (source + (origin + (method url-fetch) + (uri (string-append "https://github.com/linux-rdma/rdma-core/releases/download/v" version "/rdma-core-" version ".tar.gz")) + (sha256 (base32 "043vybwx9kz4mbbmnj0jzkzsw02vzhkkjc5j3yjdiiqkmsgwr3cs")) + ) + ) + ) ) - (define local-rdma-core rdma-core-newer-38.0) + (define-public rdma-core-latest local-rdma-core) - - (define-public libfabric-newer-1.13.1 - (package + (package (inherit gnu:libfabric) (version "1.13.1") (name (string-append (package-name gnu:libfabric) "-newer" )) - (source - (origin - (method url-fetch) - (uri - (string-append "https://github.com/ofiwg/libfabric/releases/download/v" - version "/libfabric-" version ".tar.bz2")) - (sha256 - (base32 "03nkhqjjyw3hwhxrn7rg30qc1gzc1r7p7lymyz5s96m3qhwfsvlf")))) - - ) + (origin + (method url-fetch) + (uri (string-append "https://github.com/ofiwg/libfabric/releases/download/v" version "/libfabric-" version ".tar.bz2")) + (sha256 (base32 "03nkhqjjyw3hwhxrn7rg30qc1gzc1r7p7lymyz5s96m3qhwfsvlf")) + ) + ) + ) ) (define-public libfabric-newer-1.14.0 - (package + (package (inherit gnu:libfabric) (version "1.14.0") (name (string-append (package-name gnu:libfabric) "-newer" )) (source - (origin - (method url-fetch) - (uri - (string-append "https://github.com/ofiwg/libfabric/releases/download/v" - version "/libfabric-" version ".tar.bz2")) - (sha256 - (base32 "16klkzkg04wb699mqpi8mn2r8sqzj35zalynbdazyg4ghj4169pw")))) - - ) + (origin + (method url-fetch) + (uri (string-append "https://github.com/ofiwg/libfabric/releases/download/v" version "/libfabric-" version ".tar.bz2")) + (sha256 (base32 "16klkzkg04wb699mqpi8mn2r8sqzj35zalynbdazyg4ghj4169pw")) + ) + ) + ) ) (define local-libfabric libfabric-newer-1.14.0) -(define-public libfabric-latest local-libfabric) -;;; glicid/linux.scm ends here +(define-public libfabric-latest local-libfabric) diff --git a/glicid/packages/maths.scm b/glicid/packages/maths.scm index 4d96f6f..cb09d93 100644 --- a/glicid/packages/maths.scm +++ b/glicid/packages/maths.scm @@ -9,51 +9,36 @@ #:use-module (gnu packages) ) -;;;;;;;; - -;(define-public scalapack-scivision-newer - (define-public scalapack-newer - (package (inherit scalapack) (name "scalapack-newer") -; (version "2.1.0.29-upstream") ;; need this for compilation > gcc 9 - (version "2.1.0-new-upstream") - (source (origin - (method git-fetch) - (uri (git-reference -; (url "https://github.com/scivision/scalapack.git") -; (url "https://github.com/OpenCMISS-Dependencies/newscalapack.git") - (url "https://oauth2:9i-PgbC2w_JEx6DUUqzf@gitlab.univ-nantes.fr/CCIPL/legacy_code_mirror/scalapack.git") - -; (commit "dac3cb9eaad9593a2cc7478f5f4ed63437b0993d") -; (commit "f27386ce4d1b4dc99f7bc5917031ef9dc2c00a72") -; univ (commit "9a4c4d7608ab7ac11e526746082a1ffacc2cd365") - (commit "myv2.0.2") - ) -) - (file-name "scalapack-univ-myv2") - (patches (search-patches "scalapack-blacs-mpi-deprecations.patch")) - - (sha256 - (base32 -; univ "1fp3av7cqb4asfw3ynq4s9kbqgrb7k0lhizzd5isz6xfmrwl1ps6" -; "1cf2mrv9w7zkhwj6q22l1mn2ryfhr8zqgjajfkixr57nqfq2x0k2" ;scivision - "1ccic46psf2hl9wsyflvkn5rxg8k17q578m9mzimvm9brbggf0na" - ) - ) -)) - - + (version "2.1.0-new-upstream") + (source + (origin + (method git-fetch) + (uri + (git-reference + (url "https://oauth2:9i-PgbC2w_JEx6DUUqzf@gitlab.univ-nantes.fr/CCIPL/legacy_code_mirror/scalapack.git") + (commit "myv2.0.2") + ) + ) + (file-name "scalapack-univ-myv2") + (patches (search-patches "scalapack-blacs-mpi-deprecations.patch")) + (sha256 (base32 "1ccic46psf2hl9wsyflvkn5rxg8k17q578m9mzimvm9brbggf0na" )) + ) + ) (arguments - `(#:configure-flags `("-DBUILD_SHARED_LIBS:BOOL=YES") - #:phases (modify-phases %standard-phases - (add-before 'check 'mpi-setup - ,%openmpi-setup)))) - + `(#:configure-flags `("-DBUILD_SHARED_LIBS:BOOL=YES") + #:phases (modify-phases %standard-phases + (add-before 'check 'mpi-setup + ,%openmpi-setup + ) + ) + ) ) ) +) (define-public scalapack-latest scalapack-newer) @@ -63,28 +48,11 @@ (name "openblas-newer") (version "0.3.15") (source - (origin - (method url-fetch) - (uri (string-append "https://github.com/xianyi/OpenBLAS/releases/download/v" version "/OpenBLAS-" version ".tar.gz" )) -; (file-name (string-append name "-" version ".tar.gz")) - (sha256 - (base32 - "1gjbkrsh6n28hdp2ciyjigc8vg764d2r0jbzl63v753mjzn9va9h")))) - - ; (name "glicid-specific-openblas") - ; (inputs `( - ; ("fortran-lib",gfortran-11 "lib") - ; ,@(package-inputs openblas))) - ; (native-inputs `( - ; ("gcc", gcc-11) - ; ("fortran" ,gfortran-11) - ; ,@(package-native-inputs openblas))) + (origin + (method url-fetch) + (uri (string-append "https://github.com/xianyi/OpenBLAS/releases/download/v" version "/OpenBLAS-" version ".tar.gz" )) + (sha256 (base32 "1gjbkrsh6n28hdp2ciyjigc8vg764d2r0jbzl63v753mjzn9va9h")) + ) + ) ) ) - - - -;; scalapack-scivision-newer -;;scalapack-newer -;;; glicid/maths.scm ends here - diff --git a/glicid/packages/mpi.scm b/glicid/packages/mpi.scm index 36d3eda..29e65ce 100644 --- a/glicid/packages/mpi.scm +++ b/glicid/packages/mpi.scm @@ -6,70 +6,76 @@ #:use-module (glicid packages fabric-management) #:use-module (glicid utils) #:use-module (glicid packages parallel) - ) (define openmpi-latest gnu:openmpi) - -(define (transform-package original-package suffix) - (package - (inherit original-package) - (name (string-append (package-name original-package) "-" suffix )) - ) -) - - -(define (instead-of package-a-spec package-b) - (package-input-rewriting/spec `( - (,package-a-spec . ,(const package-b) - ) - ; #:deep? #t - ) +(define-public openmpi-glicid + (transform-package + ( + (instead-of "slurm" slurm-glicid) openmpi-latest + ) "glicid" ) ) - -(define-public openmpi-glicid - (transform-package - ((instead-of "slurm" slurm-glicid) openmpi-latest) "glicid")) - (define-public openmpi-glicid-libfabric - (transform-package - ((instead-of "libfabric" libfabric-latest) openmpi-glicid) "libfabric")) - -(define-public openmpi-glicid-rdma - (transform-package - ((instead-of "rdma-core" rdma-core-latest) openmpi-glicid) "rdma-core")) - -(define-public openmpi-glicid-ucx - (transform-package - ((instead-of "ucx" ucx-latest) openmpi-glicid) "ucx")) - -(define-public openmpi-glicid-libfabric-rdma - (transform-package - ((instead-of "rdma-core" rdma-core-latest) openmpi-glicid-libfabric) "rdma")) - -(define-public openmpi-glicid-libfabric-ucx - (transform-package - ((instead-of "ucx" ucx-latest) openmpi-glicid-libfabric) "ucx")) - -(define-public openmpi-glicid-libfabric-rdma-ucx - (transform-package - ((instead-of "ucx" ucx-latest) openmpi-glicid-libfabric-rdma) "ucx")) - - - -(define openmpi-glicid-transform-gcc-11 - (gcc11-instead-of-gcc openmpi-glicid)) - -(define-public openmpi-glicid-gcc-11 - (package - (inherit openmpi-glicid-transform-gcc-11) - (name (string-append (package-name openmpi-glicid-transform-gcc-11) "-gcc-11" )) - ) + (transform-package + ( + (instead-of "libfabric" libfabric-latest) + openmpi-glicid + ) "libfabric" + ) ) +(define-public openmpi-glicid-rdma + (transform-package + ( + (instead-of "rdma-core" rdma-core-latest) + openmpi-glicid + ) "rdma-core" + ) +) -;;; end +(define-public openmpi-glicid-ucx + (transform-package + ( + (instead-of "ucx" ucx-latest) openmpi-glicid + ) "ucx" + ) +) +(define-public openmpi-glicid-libfabric-rdma + (transform-package + ( + (instead-of "rdma-core" rdma-core-latest) + openmpi-glicid-libfabric + ) "rdma" + ) +) + +(define-public openmpi-glicid-libfabric-ucx + (transform-package + ( + (instead-of "ucx" ucx-latest) + openmpi-glicid-libfabric + ) "ucx" + ) +) + +(define-public openmpi-glicid-libfabric-rdma-ucx + (transform-package + ( + (instead-of "ucx" ucx-latest) + openmpi-glicid-libfabric-rdma + ) "ucx" + ) +) + +(define openmpi-glicid-transform-gcc-11 (gcc11-instead-of-gcc openmpi-glicid)) + +(define-public openmpi-glicid-gcc-11 + (package + (inherit openmpi-glicid-transform-gcc-11) + (name (string-append (package-name openmpi-glicid-transform-gcc-11) "-gcc-11" )) + ) +) diff --git a/glicid/packages/nfs.scm b/glicid/packages/nfs.scm index 319fa0a..72c4470 100644 --- a/glicid/packages/nfs.scm +++ b/glicid/packages/nfs.scm @@ -4,213 +4,74 @@ #:use-module (guix git-download) #:use-module (guix build-system gnu) #:use-module (guix build-system cmake) -; #:use-module (guix licenses) - #:use-module (gnu packages gawk) - #:use-module (gnu packages gcc) - #:use-module (gnu packages commencement) - #:use-module (guix build-system python) #:use-module ((guix licenses) #:prefix license:) - #:use-module ((guix utils) #:select (target-64bit?)) - #:use-module (gnu packages) - #:use-module (gnu packages admin) - #:use-module (gnu packages autotools) - #:use-module (gnu packages base) - #:use-module (gnu packages freeipmi) - #:use-module (gnu packages linux) - #:use-module (gnu packages mpi) #:use-module (gnu packages perl) - #:use-module (gnu packages pkg-config) - #:use-module (gnu packages parallel) - #:use-module (gnu packages storage) - #:use-module (gnu packages networking) - #:use-module (gnu packages gtk) + #:use-module (gnu packages shells) #:use-module (gnu packages python) - #:use-module (gnu packages python-science) - #:use-module (gnu packages python-web) - #:use-module (gnu packages python-xyz) - #:use-module (gnu packages readline) - #:use-module (gnu packages tcl) - #:use-module (gnu packages tls) - #:use-module (gnu packages commencement) - #:use-module (gnu packages gcc) - #:use-module (gnu packages chemistry) - #:use-module (gnu packages sphinx) - #:use-module (srfi srfi-1) - #:use-module (gnu packages mpi) - #:use-module (gnu packages sssd) - #:use-module (gnu packages fabric-management) - #:use-module (gnu packages benchmark) - #:use-module (gnu packages messaging) - #:use-module (gnu packages web) - #:use-module (gnu packages gnome) - #:use-module (gnu packages cluster) - #:use-module (gnu packages libevent) - #:use-module (gnu packages xorg) - #:use-module (gnu packages fontutils) + #:use-module (gnu packages kerberos) + #:use-module (gnu packages gsasl) + #:use-module (gnu packages pkg-config) + #:use-module (gnu packages onc-rpc) #:use-module (gnu packages flex) #:use-module (gnu packages bison) - #:use-module (gnu packages pkg-config) - #:use-module (gnu packages autotools) - #:use-module (gnu packages fontutils) - #:use-module (guix build-system gnu) - #:use-module (gnu packages image) - #:use-module (gnu packages maths) - #:use-module (guix utils) - #:use-module (gnu packages cmake) - #:use-module (gnu packages pretty-print) - #:use-module (gnu packages boost) - #:use-module (gnu packages curl) - #:use-module (gnu packages cryptsetup) - #:use-module (gnu packages xml) - #:use-module (gnu packages admin) - #:use-module (gnu packages assembly) - #:use-module (gnu packages authentication) - #:use-module (gnu packages bdw-gc) - #:use-module (gnu packages boost) - #:use-module (gnu packages compression) - #:use-module (gnu packages crypto) - #:use-module (gnu packages cryptsetup) - #:use-module (gnu packages curl) - #:use-module (gnu packages databases) - #:use-module (gnu packages disk) - #:use-module (gnu packages gperf) + #:use-module (gnu packages datastructures) + #:use-module (gnu packages file-systems) + #:use-module (gnu packages linux) #:use-module (gnu packages jemalloc) - #:use-module (gnu packages linux) - #:use-module (gnu packages lua) - #:use-module (gnu packages ncurses) - #:use-module (gnu packages networking) - #:use-module (gnu packages nss) - #:use-module (gnu packages openldap) - #:use-module (gnu packages pkg-config) - #:use-module (gnu packages python) - #:use-module (gnu packages python-xyz) - #:use-module (gnu packages sphinx) - #:use-module (gnu packages tls) - #:use-module (gnu packages web) -;; #:use-module (gnu packages glicid) - #:use-module (gnu packages pretty-print) - #:use-module (gnu packages virtualization) + #:use-module (gnu packages storage) #:use-module (glicid packages storage) - #:use-module (glicid packages mpi) - #:use-module (glicid packages gcc) -#:use-module (gnu packages image) -#:use-module (gnu packages perl) -#:use-module (gnu packages shells) -#:use-module (gnu packages python) -#:use-module (gnu packages kerberos) -#:use-module (gnu packages gsasl) -#:use-module (gnu packages jemalloc) -#:use-module (gnu packages storage) -#:use-module (gnu packages file-systems) -#:use-module (gnu packages datastructures) -#:use-module (gnu packages bison) -#:use-module (gnu packages flex) -#:use-module (gnu packages onc-rpc) - ) - -;; https://github.com/nfs-ganesha/nfs-ganesha/archive/refs/tags/V3.5.tar.gz - (define-public nfs-ganesha (package (name "nfs-ganesha") (version "3.5") - (source (origin -; (method url-fetch) -; (uri (string-append -; "https://github.com/nfs-ganesha/nfs-ganesha/archive/refs/tags/V" version ".tar.gz")) -; -; -; (sha256 (base32 "0545c6snmx66vpa427ij21md81vi5xa2v77428i4pq6fk6mgm06r")) -; ) -; ) - (method git-fetch) - (uri - (git-reference - (url "https://github.com/nfs-ganesha/nfs-ganesha.git") - (commit (string-append "V" version)) - (recursive? #t) - ) - ) - (sha256 (base32 "0rdg3mjqrr4a8mywxkfis25gkbn4fylw42hg1d9cvp4dwrjk3hl4")) - (file-name (string-append name "-" version "-checkout")) - - ) -) - (build-system cmake-build-system) - (arguments - `( -;; #:validate-runpath? #f ;; we should know why - #:configure-flags - (list ;; Defaults to "lib64" on 64-bit archs. - (string-append - ; "-DCMAKE_INSTALL_LIBDIR=" - ; (assoc-ref %outputs "out") "/lib" - - "-DLIB_INSTALL_DIR=" - (assoc-ref %outputs "out") "/lib" - - ; "-DCMAKE_INSTALL_RPATH=" - ; (assoc-ref %outputs "out") - ; "/lib:" - ; (assoc-ref %outputs "out") - ; "/lib64" - ) + (source + (origin + (method git-fetch) + (uri + (git-reference + (url "https://github.com/nfs-ganesha/nfs-ganesha.git") + (commit (string-append "V" version)) + (recursive? #t) + ) ) - - #:phases - (modify-phases %standard-phases - (add-after 'unpack 'chdir (lambda _ (chdir "src") #t) - - - ) - ) - ) + (sha256 (base32 "0rdg3mjqrr4a8mywxkfis25gkbn4fylw42hg1d9cvp4dwrjk3hl4")) + (file-name (string-append name "-" version "-checkout")) ) - -; (native-search-paths -; (list -; (search-path-specification -; (variable "LIBRARY_PATH") -; (files '("lib" "lib64")) -; ) -; ) -; ) - - (inputs - `( - ("perl", perl) - ("oksh",oksh) - ("python-3",python-3) - ("mit-krb5",mit-krb5) - ("gss",gss) - ("pkg-config",pkg-config) - ("jemalloc",jemalloc) - ("ceph:lib",ceph "lib") ;; will use latest gnu or glicid ceph - ("libnfsidmap",libnfsidmap) - ("libnfs",libnfs) -; ("xfsprogs",xfsprogs) - ("liburcu",liburcu) - ("bison",bison) - ("flex",flex) - ("libnsl",libnsl) - ("util-linux" ,util-linux "lib") ;; uuid.h - - ) ) - -;; placeholders - -(synopsis "nfs-ganesha") - (description - "NFS-Ganesha. - bla.") + (build-system cmake-build-system) + (arguments `( + #:configure-flags (list + (string-append "-DLIB_INSTALL_DIR=" (assoc-ref %outputs "out") "/lib" ) + ) + #:phases (modify-phases %standard-phases + (add-after 'unpack 'chdir ( + lambda _ (chdir "src") + #t + )) + ) + )) + (inputs `( + ("perl", perl) + ("oksh", oksh) + ("python-3", python-3) + ("mit-krb5", mit-krb5) + ("gss", gss) + ("pkg-config", pkg-config) + ("jemalloc", jemalloc) + ("ceph:lib", ceph "lib") + ("libnfsidmap", libnfsidmap) + ("libnfs", libnfs) + ("liburcu", liburcu) + ("bison", bison) + ("flex", flex) + ("libnsl", libnsl) + ("util-linux", util-linux "lib") + )) + (synopsis "nfs-ganesha") + (description "NFS-Ganesha.") (home-page "https://") - (license license:gpl3+)) -;) - -; ) -;) + (license license:gpl3+) + ) ) -;;; glicid/nfs.scm ends here diff --git a/glicid/packages/parallel.scm b/glicid/packages/parallel.scm index 584a636..1301c9a 100644 --- a/glicid/packages/parallel.scm +++ b/glicid/packages/parallel.scm @@ -10,141 +10,95 @@ #:use-module (gnu packages python) #:use-module (gnu packages compression) #:use-module (gnu packages mpi) - #:use-module (gnu packages haskell-xyz) ; for pandoc + #:use-module (gnu packages haskell-xyz) ) (define-public openpmix-3.1.5 - (package - (name "openpmix") - (version "3.1.5") - (source - (origin - (method url-fetch) - (uri (string-append "https://github.com/openpmix/openpmix/releases/download/v" version "/pmix-" version ".tar.bz2")) - (sha256 (base32 "1xswdkfcrw123ghcr9gmrb852nzjbl4i6qwrid3xyma42yal34w8")) + (package + (name "openpmix") + (version "3.1.5") + (source + (origin + (method url-fetch) + (uri (string-append "https://github.com/openpmix/openpmix/releases/download/v" version "/pmix-" version ".tar.bz2")) + (sha256 (base32 "1xswdkfcrw123ghcr9gmrb852nzjbl4i6qwrid3xyma42yal34w8")) + ) ) - ) - (build-system gnu-build-system) - (arguments - `(#:configure-flags - (list - (string-append "--with-hwloc=" (assoc-ref %build-inputs "hwloc") ) - ) + (build-system gnu-build-system) + (arguments + `(#:configure-flags + (list + (string-append "--with-hwloc=" (assoc-ref %build-inputs "hwloc")) + ) + ) ) + (synopsis "MPIX lib") + (description"MPIX. More to come. FIXIT") + (home-page "https://www.gnu.org/software/hello/") + (license license:gpl3+) + (inputs `( + ("libevent", libevent) + ("hwloc" ,hwloc-2 "lib") + ("perl", perl) + )) ) - (synopsis "MPIX lib") - (description "MPIX. More to come. FIXIT") - (home-page "https://www.gnu.org/software/hello/") - (license license:gpl3+) - (inputs `( - ("libevent", libevent) - ("hwloc" ,hwloc-2 "lib") - ("perl", perl) - ) - ) - ) ) (define-public openpmix-4.1.0 - (package - (inherit openpmix-3.1.5) - (version "4.1.0") - (source - (origin - (method url-fetch) - (uri (string-append "https://github.com/openpmix/openpmix/releases/download/v" version "/pmix-" version ".tar.bz2")) - (sha256 (base32 "0bl4gkh87csm3yh418wvrih35mg6swavcxj78gyb7gr1qsk0apql")) + (package + (inherit openpmix-3.1.5) + (version "4.1.0") + (source + (origin + (method url-fetch) + (uri (string-append "https://github.com/openpmix/openpmix/releases/download/v" version "/pmix-" version ".tar.bz2")) + (sha256 (base32 "0bl4gkh87csm3yh418wvrih35mg6swavcxj78gyb7gr1qsk0apql")) + ) ) - ) - (inputs `( - ("python", python) - ("zlib", zlib) - ("pandoc", pandoc) ; not mandatory - ,@(package-inputs openpmix-3.1.5) - ) - ) - ) -) + (inputs `( + ("python", python) + ("zlib", zlib) + ("pandoc", pandoc) + ,@(package-inputs openpmix-3.1.5) + )) + ) +) (define-public openpmix openpmix-4.1.0) - -;(define-public slurm-19.05-glicid -; (package -; (inherit slurm) -; (name "slurm-glicid") -; (version "19.05.6") -; (source -; (origin -; (method url-fetch) -; (uri (string-append "https://download.schedmd.com/slurm/slurm-" version ".tar.bz2")) -; (sha256 (base32 "1kj79r8hng5gp98ickgvj3im4gr19nzd3p3p8g6rl75axb8jin7h")) -; )) -; (arguments -; `(#:configure-flags -; (list "--enable-pam" "--sysconfdir=/etc/slurm" -; "--disable-static" -; (string-append "--with-freeipmi=" (assoc-ref %build-inputs "freeipmi")) -; (string-append "--with-hwloc=" (assoc-ref %build-inputs "hwloc")) -; (string-append "--with-json=" (assoc-ref %build-inputs "json-c")) -; (string-append "--with-munge=" (assoc-ref %build-inputs "munge")) -;; (string-append "--with-pmix=" (assoc-ref %build-inputs "openpmix")) -; -; ;; 32-bit support is marked as deprecated and needs to be -; ;; explicitly enabled. -; ;;;; ,@(if (target-64bit?) '() '("--enable-deprecated")) -; -; ) -; ) -; ) -; -; (inputs `(("gtk+-2" ,gtk+-2) -;; ("gcc", gcc-11) -;; ("openpmix", openpmix) -;; ("glicid-specific-openmpi", glicid-specific-openmpi) -; ,@(package-inputs slurm) -; -; -; )) -;; (propagated-inputs -;; `( -;; ("sssd" ,sssd) -;; )) -; -;)) - - (define-public slurm-20.02-glicid - (package - (inherit slurm-20.02) - (name "slurm-glicid") - (version "20.02.7") - (source - (origin - (inherit (package-source slurm-20.02)) - (method url-fetch) - (uri (string-append "https://download.schedmd.com/slurm/slurm-" version ".tar.bz2")) - (sha256 (base32 "1khlv69q41chgkcs1i7l651hvyx8sz3j9yhjbgky3gpqrgrmz1h6")) - )) - - (inputs `(("gtk+-2" ,gtk+-2) ;; for sview - ,@(package-inputs slurm-20.02) - - )) + (package + (inherit slurm-20.02) + (name "slurm-glicid") + (version "20.02.7") + (source + (origin + (inherit (package-source slurm-20.02)) + (method url-fetch) + (uri (string-append "https://download.schedmd.com/slurm/slurm-" version ".tar.bz2")) + (sha256 (base32 "1khlv69q41chgkcs1i7l651hvyx8sz3j9yhjbgky3gpqrgrmz1h6")) + ) + ) + (inputs `( + ("gtk+-2", gtk+-2) + ,@(package-inputs slurm-20.02) + )) ) ) (define-public slurm-20.11-glicid - (package - (inherit slurm-20.02-glicid) - (name "slurm-glicid") - (version "20.11.7") - (source - (origin - (method url-fetch) - (uri (string-append "https://download.schedmd.com/slurm/slurm-" version ".tar.bz2")) - (sha256 (base32 "1fdjihg1x7ks5l77yjv14a4mg6r0v8c3zk1dcxkhrhq3n4dc9nbs")) - )) -)) + (package + (inherit slurm-20.02-glicid) + (name "slurm-glicid") + (version "20.11.7") + (source + (origin + (method url-fetch) + (uri (string-append "https://download.schedmd.com/slurm/slurm-" version ".tar.bz2")) + (sha256 (base32 "1fdjihg1x7ks5l77yjv14a4mg6r0v8c3zk1dcxkhrhq3n4dc9nbs")) + ) + ) + ) +) (define-public slurm-glicid slurm-20.02-glicid) diff --git a/glicid/packages/ssh.scm b/glicid/packages/ssh.scm index f4b247d..b810e2c 100644 --- a/glicid/packages/ssh.scm +++ b/glicid/packages/ssh.scm @@ -4,319 +4,177 @@ #:use-module (guix git-download) #:use-module (guix build-system gnu) #:use-module (guix build-system cmake) -; #:use-module (guix licenses) - #:use-module (gnu packages gawk) - #:use-module (gnu packages gcc) - #:use-module (gnu packages commencement) - #:use-module (guix build-system python) #:use-module ((guix licenses) #:prefix license:) - #:use-module ((guix utils) #:select (target-64bit?)) - #:use-module (gnu packages) - #:use-module (gnu packages admin) - #:use-module (gnu packages autotools) - #:use-module (gnu packages base) - #:use-module (gnu packages freeipmi) - #:use-module (gnu packages linux) - #:use-module (gnu packages mpi) - #:use-module (gnu packages perl) - #:use-module (gnu packages pkg-config) - #:use-module (gnu packages parallel) - #:use-module (gnu packages storage) - #:use-module (gnu packages networking) - #:use-module (gnu packages gtk) - #:use-module (gnu packages python) - #:use-module (gnu packages python-science) - #:use-module (gnu packages python-web) - #:use-module (gnu packages python-xyz) - #:use-module (gnu packages readline) - #:use-module (gnu packages tcl) + #:use-module (gnu packages ssh) + #:use-module (gnu packages hurd) #:use-module (gnu packages tls) - #:use-module (gnu packages commencement) - #:use-module (gnu packages gcc) - #:use-module (gnu packages chemistry) - #:use-module (gnu packages sphinx) - #:use-module (srfi srfi-1) - #:use-module (gnu packages mpi) - #:use-module (gnu packages sssd) - #:use-module (gnu packages fabric-management) - #:use-module (gnu packages benchmark) - #:use-module (gnu packages messaging) - #:use-module (gnu packages web) - #:use-module (gnu packages gnome) - #:use-module (gnu packages cluster) - #:use-module (gnu packages libevent) - #:use-module (gnu packages xorg) - #:use-module (gnu packages fontutils) - #:use-module (gnu packages flex) - #:use-module (gnu packages bison) - #:use-module (gnu packages pkg-config) - #:use-module (gnu packages autotools) - #:use-module (gnu packages fontutils) - #:use-module (guix build-system gnu) - #:use-module (gnu packages image) - #:use-module (gnu packages maths) - #:use-module (guix utils) - #:use-module (gnu packages cmake) - #:use-module (gnu packages pretty-print) - #:use-module (gnu packages boost) - #:use-module (gnu packages curl) - #:use-module (gnu packages cryptsetup) - #:use-module (gnu packages xml) - #:use-module (gnu packages admin) - #:use-module (gnu packages assembly) - #:use-module (gnu packages authentication) - #:use-module (gnu packages bdw-gc) - #:use-module (gnu packages boost) #:use-module (gnu packages compression) - #:use-module (gnu packages crypto) - #:use-module (gnu packages cryptsetup) - #:use-module (gnu packages curl) - #:use-module (gnu packages databases) - #:use-module (gnu packages disk) - #:use-module (gnu packages gperf) - #:use-module (gnu packages jemalloc) - #:use-module (gnu packages linux) - #:use-module (gnu packages lua) - #:use-module (gnu packages ncurses) - #:use-module (gnu packages networking) - #:use-module (gnu packages nss) - #:use-module (gnu packages openldap) #:use-module (gnu packages pkg-config) - #:use-module (gnu packages python) - #:use-module (gnu packages python-xyz) - #:use-module (gnu packages sphinx) - #:use-module (gnu packages tls) - #:use-module (gnu packages web) -;; #:use-module (gnu packages glicid) - #:use-module (gnu packages pretty-print) - #:use-module (gnu packages virtualization) - #:use-module (glicid packages storage) - #:use-module (glicid packages mpi) - #:use-module (glicid packages gcc) - + #:use-module (gnu packages linux) +) +(define-public libcbor-0.8.0 + (package + (name "libcbor") + (version "0.8.0") + (source + (origin + (method url-fetch) + (uri (string-append "http://github.com/PJK/libcbor/archive/refs/tags/v" version ".tar.gz")) + (sha256 (base32 "12vw46ahhsc3ydnivkv5lvk1cn4sjjmcr639cjcl99d4dqb9g031")) + ) + ) + (build-system cmake-build-system) + (arguments + `(#:configure-flags (list + "-DCMAKE_CXX_FLAGS=-fPIE" + "-DCMAKE_C_FLAGS=-fPIE" + )) + ) + (synopsis "libfido2") + (description "Todo") + (home-page "toto") + (license license:gpl2+) + ) ) - -;;;;;;;; - - - - -(use-modules (guix packages)) -(use-modules (guix download)) -(use-modules (gnu packages linux)) -(use-modules (gnu packages gcc)) -;;(use-modules (gnu packages glicid)) -(use-modules (gnu packages ssh)) -(use-modules (gnu packages hurd)) -(use-modules (guix build-system gnu)) -(use-modules (guix build-system cmake)) -(use-modules (gnu packages compression)) -(use-modules (gnu packages crypto)) -(use-modules (gnu packages tls)) -;;(use-modules (gnu packages glicid)) -(use-modules (gnu packages pkg-config)) - - -(use-modules ((guix licenses) #:prefix license:)) - - -(define-public libcbor-0.8.0 - (package - (name "libcbor") - (version "0.8.0") -(source - (origin - -(method url-fetch) - (uri (string-append - "http://github.com/PJK/libcbor/archive/refs/tags/v" version ".tar.gz")) - (sha256 - (base32 - "12vw46ahhsc3ydnivkv5lvk1cn4sjjmcr639cjcl99d4dqb9g031")) - -)) -(build-system cmake-build-system) - -(arguments - `(#:configure-flags (list "-DCMAKE_CXX_FLAGS=-fPIE" - "-DCMAKE_C_FLAGS=-fPIE"))) - - -(synopsis "libfido2") -(description "Todo") -(home-page "toto") -(license license:gpl2+) - - -)) - - (define-public libcbor-0.9.0 - (package - (inherit libcbor-0.8.0) - (version "0.9.0") - (source - (origin - - (method url-fetch) - (uri (string-append "http://github.com/PJK/libcbor/archive/refs/tags/v" version ".tar.gz")) - (sha256 (base32 "1l8m7h84zwlx088gkz6gvg2fq11g0p3q6lblwba8c01y6gwy90fs")) - ) + (package + (inherit libcbor-0.8.0) + (version "0.9.0") + (source + (origin + (method url-fetch) + (uri (string-append "http://github.com/PJK/libcbor/archive/refs/tags/v" version ".tar.gz")) + (sha256 (base32 "1l8m7h84zwlx088gkz6gvg2fq11g0p3q6lblwba8c01y6gwy90fs")) + ) + ) ) - ) ) (define-public libcbor-latest libcbor-0.9.0) (define-public libfido2-1.8.0 - (package - - (name "libfido2") - (version "1.8.0") - (source - (origin - -(method url-fetch) - (uri (string-append "https://developers.yubico.com/libfido2/Releases/libfido2-" - version ".tar.gz")) -; (file-name (string-append name "-" version ".tar.gz")) - (sha256 - (base32 - "07gxyy5yzgfh5hg7q9fr77z5mkj0xjvd5ya7p5f5kar4iwc92hjm")) - - - )) - - (build-system cmake-build-system) - (arguments '(#:tests? #f)) - - -(inputs `( - ("libcbor",libcbor-latest) - ("openssl",openssl) - ("zlib", zlib) - ("pkg-config", pkg-config) ; or cmake won't find zlib ! - ("eudev", eudev) - - )) - -(synopsis "libfido2") -(description "Todo") -(home-page "toto") -(license license:gpl2+) + (package + (name "libfido2") + (version "1.8.0") + (source + (origin + (method url-fetch) + (uri (string-append "https://developers.yubico.com/libfido2/Releases/libfido2-" version ".tar.gz")) + (sha256 (base32 "07gxyy5yzgfh5hg7q9fr77z5mkj0xjvd5ya7p5f5kar4iwc92hjm")) + ) + ) + (build-system cmake-build-system) + (arguments '( + #:tests? #f + )) + (inputs `( + ("libcbor",libcbor-latest) + ("openssl",openssl) + ("zlib", zlib) + ("pkg-config", pkg-config) + ("eudev", eudev) + )) + (synopsis "libfido2") + (description "Todo") + (home-page "toto") + (license license:gpl2+) + ) ) -) - - (define-public libfido2-1.9.0 - (package - (inherit libfido2-1.8.0) - (version "1.9.0") - (source - (origin - (method url-fetch) - (uri (string-append "https://developers.yubico.com/libfido2/Releases/libfido2-" version ".tar.gz")) -; (file-name (string-append name "-" version ".tar.gz")) - (sha256 (base32 "1ln2b0zfvl35r03kn2k1i2aw1k3ypvivc71xmp4dzlin6ypy6fds")) - ) + (package + (inherit libfido2-1.8.0) + (version "1.9.0") + (source + (origin + (method url-fetch) + (uri (string-append "https://developers.yubico.com/libfido2/Releases/libfido2-" version ".tar.gz")) + (sha256 (base32 "1ln2b0zfvl35r03kn2k1i2aw1k3ypvivc71xmp4dzlin6ypy6fds")) + ) + ) ) - ) ) -(define libfido2-latest libfido2-1.9.0) +(define libfido2-latest libfido2-1.9.0) (define-public openssh-with-fido2 (package (inherit openssh) (name "openssh-with-fido2") -(arguments - - `(#:test-target "tests" + (arguments `( + #:test-target "tests" ;; Otherwise, the test scripts try to use a nonexistent directory and ;; fail. - #:make-flags '("REGRESSTMP=\"$${BUILDDIR}/regress\"") - - #:configure-flags `("--sysconfdir=/etc/ssh" - - ;; Default value of 'PATH' used by sshd. - "--with-default-path=/run/current-system/profile/bin" - - ;; configure needs to find krb5-config. - ,(string-append "--with-kerberos5=" - (assoc-ref %build-inputs "mit-krb5") - "/bin") - - ;; libedit is needed for sftp completion. - "--with-libedit" - ;; for u2f - "--with-security-key-builtin" -; ,(string-append "--with-fido2=" (assoc-ref %build-inputs "libfido2")) - - ;; Enable PAM support in sshd. - ,,@(if (hurd-target?) - '() - '("--with-pam")) - - ;; "make install" runs "install -s" by default, - ;; which doesn't work for cross-compiled binaries - ;; because it invokes 'strip' instead of - ;; 'TRIPLET-strip'. Work around this. - ,,@(if (%current-target-system) - '("--disable-strip") - '() -)) - - -#:phases - (modify-phases %standard-phases - (add-after 'configure 'reset-/var/empty - (lambda* (#:key outputs #:allow-other-keys) - (let ((out (assoc-ref outputs "out"))) - (substitute* "Makefile" - (("PRIVSEP_PATH=/var/empty") - (string-append "PRIVSEP_PATH=" out "/var/empty"))) - #t))) - (add-before 'check 'patch-tests - (lambda _ - (substitute* "regress/test-exec.sh" - (("/bin/sh") (which "sh"))) - - ;; Remove 't-exec' regress target which requires user 'sshd'. - (substitute* (list "Makefile" - "regress/Makefile") - (("^(tests:.*) t-exec(.*)" all pre post) - (string-append pre post))) - #t)) - (replace 'install - (lambda* (#:key outputs (make-flags '()) #:allow-other-keys) - ;; Install without host keys and system configuration files. - (apply invoke "make" "install-nosysconf" make-flags) - (install-file "contrib/ssh-copy-id" - (string-append (assoc-ref outputs "out") - "/bin/")) - (chmod (string-append (assoc-ref outputs "out") - "/bin/ssh-copy-id") #o555) - (install-file "contrib/ssh-copy-id.1" - (string-append (assoc-ref outputs "out") - "/share/man/man1/")) - #t))) ; )) - - -) - ) - -(inputs `(("libfido2", libfido2-latest) - ("libcbor", libcbor-latest) - ,@(package-inputs openssh))) - - - + #:make-flags '("REGRESSTMP=\"$${BUILDDIR}/regress\"") + #:configure-flags `( + "--sysconfdir=/etc/ssh" + ;; Default value of 'PATH' used by sshd. + "--with-default-path=/run/current-system/profile/bin" + ;; configure needs to find krb5-config. + ,(string-append "--with-kerberos5=" (assoc-ref %build-inputs "mit-krb5") "/bin") + ;; libedit is needed for sftp completion. + "--with-libedit" + ;; for u2f + "--with-security-key-builtin" + ;; Enable PAM support in sshd. + ,,@(if (hurd-target?) + '() + '("--with-pam") + ) + ;; "make install" runs "install -s" by default, + ;; which doesn't work for cross-compiled binaries + ;; because it invokes 'strip' instead of + ;; 'TRIPLET-strip'.Work around this. + ,,@(if (%current-target-system) + '("--disable-strip") + '() + ) + ) + #:phases + (modify-phases %standard-phases + (add-after 'configure 'reset-/var/empty + (lambda* (#:key outputs #:allow-other-keys) + (let ((out (assoc-ref outputs "out"))) + (substitute* + "Makefile" + (("PRIVSEP_PATH=/var/empty") (string-append "PRIVSEP_PATH=" out "/var/empty")) + ) + #t + ) + ) + ) + (add-before 'check 'patch-tests + (lambda _ + (substitute* "regress/test-exec.sh" (("/bin/sh") (which "sh"))) + ;; Remove 't-exec' regress target which requires user 'sshd'. + (substitute* + (list "Makefile" "regress/Makefile") + (("^(tests:.*) t-exec(.*)" all pre post) (string-append pre post)) + ) + #t + ) + ) + (replace 'install + (lambda* + ( + #:key outputs (make-flags '()) + #:allow-other-keys + ) + ;; Install without host keys and system configuration files. + (apply invoke "make" "install-nosysconf" make-flags) + (install-file "contrib/ssh-copy-id" (string-append (assoc-ref outputs "out") "/bin/")) + (chmod (string-append (assoc-ref outputs "out") "/bin/ssh-copy-id") #o555) + (install-file "contrib/ssh-copy-id.1" (string-append (assoc-ref outputs "out") "/share/man/man1/")) + #t + ) + ) + ) + )) + (inputs `( + ("libfido2", libfido2-latest) + ("libcbor", libcbor-latest) + ,@(package-inputs openssh) + )) ) - - ) - - -;;; glicid/ssh.scm ends here diff --git a/glicid/packages/virtualization.scm b/glicid/packages/virtualization.scm index 2a809a5..7e063d4 100644 --- a/glicid/packages/virtualization.scm +++ b/glicid/packages/virtualization.scm @@ -2,49 +2,40 @@ #:use-module (guix packages) #:use-module (guix utils) #:use-module (gnu packages virtualization) - #:use-module (gnu packages storage) ;; «regular» ceph is defined here - #:use-module (glicid packages storage) ;; a «more up to date» version MAY be here + #:use-module (gnu packages storage) + #:use-module (glicid packages storage) ) -;;;;;;;; - (define-public qemu-with-rbd - (package (inherit qemu) (name "qemu-with-rbd") (arguments - - (substitute-keyword-arguments - `(#:tests? #f - ,@(package-arguments qemu))) + (substitute-keyword-arguments `( + #:tests? #f + ,@(package-arguments qemu) + )) ) - - (inputs `(("ceph:lib", ceph "lib" ) ;; will take the more up to date ceph - ,@(package-inputs qemu))) - + (inputs `( + ("ceph:lib", ceph "lib") + ,@(package-inputs qemu) + )) ) ) (define-public qemu-minimal-with-rbd - (package (inherit qemu-minimal) (name "qemu-minimal-with-rbd") (arguments - - (substitute-keyword-arguments - `(#:tests? #f - ,@(package-arguments qemu-minimal))) + (substitute-keyword-arguments `( + #:tests? #f + ,@(package-arguments qemu-minimal) + )) ) - - (inputs `(("ceph:lib", ceph "lib" ) ;; will take the more up to date ceph - ,@(package-inputs qemu-minimal))) - + (inputs `( + ("ceph:lib", ceph "lib" ) + ,@(package-inputs qemu-minimal) + )) ) ) - - - - -;;; glicid/virtualizationvirtualization.scm ends here From 71041fabb660602a705433b46b4fba357231f303 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 3 Dec 2021 11:59:27 +0100 Subject: [PATCH 143/383] formatting --- glicid/packages/benchmark.scm | 3 --- 1 file changed, 3 deletions(-) diff --git a/glicid/packages/benchmark.scm b/glicid/packages/benchmark.scm index d71ebc4..394089d 100644 --- a/glicid/packages/benchmark.scm +++ b/glicid/packages/benchmark.scm @@ -33,7 +33,6 @@ ) ) - (define-public intel-mpi-benchmarks/openmpi-2021.3-libfabric-rdma (transform-package ( (instead-of "openmpi" openmpi-glicid-libfabric-rdma) @@ -41,7 +40,6 @@ ) "fab+rdma") ) - (define intel-mpi-benchmark-transform-gcc-11 (gcc11-instead-of-gcc intel-mpi-benchmarks/openmpi-2021.3-libfabric-rdma) ) @@ -53,7 +51,6 @@ ) ) - (define-public stream-benchmarks (package (name "stream-benchmarks") From 99758426c66368c48b7ed9131a019c82bc51857c Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Fri, 3 Dec 2021 18:16:55 +0100 Subject: [PATCH 144/383] =?UTF-8?q?just=20gfortran-11=20now.=20simplificat?= =?UTF-8?q?ion=E2=80=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- glicid/packages/gcc.scm | 99 ++--------------------------------------- 1 file changed, 4 insertions(+), 95 deletions(-) diff --git a/glicid/packages/gcc.scm b/glicid/packages/gcc.scm index 06fab9d..1555446 100644 --- a/glicid/packages/gcc.scm +++ b/glicid/packages/gcc.scm @@ -1,86 +1,15 @@ (define-module (glicid packages gcc) -; #:use-module (guix build-system cmake) #:use-module (guix build-system gnu) -; #:use-module (guix build-system python) #:use-module (guix packages) - #:use-module (guix utils) #:use-module (gnu packages commencement) #:use-module (gnu packages gcc) - #:use-module (srfi srfi-1) ) -(define* - (custom-gcc gcc name languages - #:optional (search-paths (package-native-search-paths gcc)) - #:key (separate-lib-output? #t) - ) - "Return a custom version of GCC that supports LANGUAGES. Use SEARCH-PATHS as the 'native-search-paths' field." - (package - (inherit gcc) - (name (string-append name "-upstream" )) - (outputs - (if separate-lib-output? - (package-outputs gcc) - (delete "lib" (package-outputs gcc)) - ) - ) - (native-search-paths search-paths) - (properties - (alist-delete 'hidden? (package-properties gcc)) - ) - (arguments - (substitute-keyword-arguments (package-arguments gcc) - ( - (#:modules modules %gnu-build-system-modules) - `(,@modules - (srfi srfi-1) - (srfi srfi-26) - (ice-9 regex) - ) - ) - ( - (#:configure-flags flags) - `(cons - (string-append - "--enable-languages=" - ,(string-join languages ",") - ) - (remove (cut string-match "--enable-languages.*" <>) ,flags) - ) - ) - ((#:phases phases) - `(modify-phases ,phases - (add-after 'install 'remove-broken-or-conflicting-files - (lambda* (#:key outputs #:allow-other-keys) - (for-each delete-file - (find-files (string-append (assoc-ref outputs "out") "/bin") ".*(c\\+\\+|cpp|g\\+\\+|gcov|gcc|gcc-.*)") - ) - #t - ) - ) - ) - ) - ) - ) - ) -) -(define %generic-search-paths - ;; This is the language-neutral search path for GCC. Entries in $CPATH are - ;; not considered "system headers", which means GCC can raise warnings for - ;; issues in those headers. 'CPATH' is the only one that works for - ;; front-ends not in the C family. - (list - (search-path-specification - (variable "CPATH") - (files '("include")) - ) - (search-path-specification - (variable "LIBRARY_PATH") - (files '("lib" "lib64")) - ) - ) -) +;; beware : access to internal functions… this is probably not the good way… + +(define custom-gcc (@@ (gnu packages gcc) custom-gcc) ) +(define %generic-search-paths (@@ (gnu packages gcc) %generic-search-paths )) (define-public gfortran-11 (hidden-package @@ -90,26 +19,6 @@ ) ) -(define-public gfortran-10 - (hidden-package - (custom-gcc gcc-10 "gfortran" '("fortran") - %generic-search-paths - ) - ) -) - -(define-public gfortran-toolchain-10 - (package - (inherit (make-gcc-toolchain gfortran-10)) - (synopsis "Complete GCC tool chain for fortean lang development") - (description "This package provides a complete GCC tool chain for - fortran lang development to be installed in user profiles. This includes - fortran, as well as libc (headers and binaries, plus debugging symbols - in the @code{debug} output), and binutils." - ) - ) -) - (define-public gfortran-toolchain-11 (package (inherit (make-gcc-toolchain gfortran-11)) From 610093e9d0561a5d30e1465a6e84a5a8e65b9f92 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Fri, 3 Dec 2021 18:27:51 +0100 Subject: [PATCH 145/383] cleanup --- glicid/packages/gcc.scm | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/glicid/packages/gcc.scm b/glicid/packages/gcc.scm index 1555446..7eed41a 100644 --- a/glicid/packages/gcc.scm +++ b/glicid/packages/gcc.scm @@ -1,16 +1,16 @@ (define-module (glicid packages gcc) - #:use-module (guix build-system gnu) #:use-module (guix packages) - #:use-module (gnu packages commencement) - #:use-module (gnu packages gcc) + #:use-module (gnu packages commencement) ;; for make-gcc-toolchain + #:use-module (gnu packages gcc) ;; for gcc-11 ) - -;; beware : access to internal functions… this is probably not the good way… +;; beware : access to internal functions… this is probably not the right way to do it … (define custom-gcc (@@ (gnu packages gcc) custom-gcc) ) (define %generic-search-paths (@@ (gnu packages gcc) %generic-search-paths )) +;; + (define-public gfortran-11 (hidden-package (custom-gcc gcc-11 "gfortran" '("fortran") @@ -22,7 +22,7 @@ (define-public gfortran-toolchain-11 (package (inherit (make-gcc-toolchain gfortran-11)) - (synopsis "Complete GCC tool chain for fortean lang development") + (synopsis "Complete GCC tool chain for fortran lang development") (description "This package provides a complete GCC tool chain for fortran lang development to be installed in user profiles. This includes fortran, as well as libc (headers and binaries, plus debugging symbols From 965f424a55ebdef3d9adf97c5bef17e0764a1c17 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Wed, 8 Dec 2021 14:34:17 +0100 Subject: [PATCH 146/383] adding munge, slurmdbd and slurmctld --- glicid/services/file-systems.scm | 70 +++++++++++++ glicid/services/parallel.scm | 169 +++++++++++++++++++++++++++++++ 2 files changed, 239 insertions(+) create mode 100644 glicid/services/file-systems.scm create mode 100644 glicid/services/parallel.scm diff --git a/glicid/services/file-systems.scm b/glicid/services/file-systems.scm new file mode 100644 index 0000000..c123f3d --- /dev/null +++ b/glicid/services/file-systems.scm @@ -0,0 +1,70 @@ +(define-module (glicid services file-systems) + #:use-module (gnu services) + #:use-module (gnu services shepherd) + #:use-module (guix) + #:use-module (guix records) + #:use-module (ice-9 match) + #:use-module (gnu packages file-systems) + #:export ( + %default-autofs-conf + autofs-configuration + autofs-configuration? + autofs-service + autofs-service-type + ) +) + +(define %default-autofs-conf + (plain-file "autofs" " + # Empty file as we do nothing by default + ") +) + +(define-record-type* + autofs-configuration make-autofs-configuration + autofs-configuration? + (config-file autofs-config-file + (default %default-autofs-conf) + ) + (log-file autofs-log-file + (default "/var/log/autofs.log") + ) +) + +(define autofs-service + (match-lambda + (($ config-file log-file) + (list + (shepherd-service + (provision '(autofs) ) + (documentation "Run autofs.") + (requirement '(user-processes)) + (respawn? #f) + (one-shot? #t) + (start #~(make-forkexec-constructor + (list + #$(file-append autofs "/sbin/automount") + "-d" "-f" + ) + #:log-file #$log-file + )) + (stop #~(make-kill-destructor)) + ) + ) + ) + ) +) + +(define autofs-service-type + (service-type (name 'autofs) + (extensions + (list ( + service-extension + shepherd-root-service-type + autofs-service + )) + ) + (description "Run autofs") + ) +) + diff --git a/glicid/services/parallel.scm b/glicid/services/parallel.scm new file mode 100644 index 0000000..7b32347 --- /dev/null +++ b/glicid/services/parallel.scm @@ -0,0 +1,169 @@ +(define-module (glicid services munged) + #:use-module (gnu services) + #:use-module (gnu services shepherd) + #:use-module (guix) + #:use-module (guix records) + #:use-module (ice-9 match) + #:use-module (gnu packages parallel) + #:export ( + munged-configuration + munged-configuration? + munged-service + munged-service-type + ) +) + +; +; Munged +; +(define-record-type* + munged-configuration make-munged-configuration + munged-configuration? + (key-file munged-key-file + (default "/etc/munge/munged.key") + ) + (log-file munged-log-file + (default "/var/log/munged.log") + ) +) + +(define munged-service + (match-lambda + (($ key-file log-file) + (list + (shepherd-service + (provision '(munged) ) + (documentation "Run munged.") + (requirement '(user-processes)) + (respawn? #f) + (one-shot? #t) + (start #~(make-forkexec-constructor + (list + #$(file-append munge "/sbin/munged") + "-F" + "--key-file=" #$key-file + ) + #:log-file #$log-file + )) + (stop #~(make-kill-destructor)) + ) + ) + ) + ) +) + +(define munged-service-type + (service-type (name 'munged) + (extensions + (list ( + service-extension + shepherd-root-service-type + munged-service + )) + ) + (description "Run munged") + ) +) + +; +; slurmdbd +; +(define-record-type* + slurmdbd-configuration make-slurmdbd-configuration + slurmdbd-configuration? + (slurmdbd-conf slurmdbd-slurmdbd-conf + (default "/etc/slurm/slurmdbd.conf") + ) + (log-file slurmdbd-log-file + (default "/var/log/slurmdbd.log") + ) +) + +(define slurmdbd-service + (match-lambda + (($ slurmdbd-conf log-file) + (list + (shepherd-service + (provision '(slurmdbd) ) + (documentation "Run slurmdbd.") + (requirement '(user-processes)) + (respawn? #f) + (one-shot? #t) + (start #~(make-forkexec-constructor + (list + #$(file-append slurm "/sbin/slurmdbd") + "-D" + ) + #:log-file #$log-file + )) + (stop #~(make-kill-destructor)) + ) + ) + ) + ) +) + +(define slurmdbd-service-type + (service-type (name 'slurmdbd) + (extensions + (list ( + service-extension + shepherd-root-service-type + slurmdbd-service + )) + ) + (description "Run slurmdbd") + ) +) + +; +; slurmctld +; +(define-record-type* + slurmctld-configuration make-slurmctld-configuration + slurmctld-configuration? + (slurmctld-conf slurmctld-slurmctld-conf + (default "/etc/slurm/slurmctld.conf") + ) + (log-file slurmctld-log-file + (default "/var/log/slurmctld.log") + ) +) + +(define slurmctld-service + (match-lambda + (($ slurmctld-conf log-file) + (list + (shepherd-service + (provision '(slurmctld) ) + (documentation "Run slurmctld.") + (requirement '(user-processes)) + (respawn? #f) + (one-shot? #t) + (start #~(make-forkexec-constructor + (list + #$(file-append slurm "/sbin/slurmctld") + "-D" "-R" + "-f" #$slurmctld-conf + ) + #:log-file #$log-file + )) + (stop #~(make-kill-destructor)) + ) + ) + ) + ) +) + +(define slurmctld-service-type + (service-type (name 'slurmctld) + (extensions + (list ( + service-extension + shepherd-root-service-type + slurmctld-service + )) + ) + (description "Run slurmctld") + ) +) From 561f888cbfad3824b1ef7349a380ada8502a26a9 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Wed, 8 Dec 2021 14:37:43 +0100 Subject: [PATCH 147/383] forgot to export some services --- glicid/services/parallel.scm | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/glicid/services/parallel.scm b/glicid/services/parallel.scm index 7b32347..6b7fe52 100644 --- a/glicid/services/parallel.scm +++ b/glicid/services/parallel.scm @@ -10,6 +10,14 @@ munged-configuration? munged-service munged-service-type + slurmdbd-configuration + slurmdbd-configuration? + slurmdbd-service + slurmdbd-service-type + slurmctld-configuration + slurmctld-configuration? + slurmctld-service + slurmctld-service-type ) ) From df901279e38a95c378f824bcc93bd0a691e6ec39 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Wed, 8 Dec 2021 14:48:52 +0100 Subject: [PATCH 148/383] bad name --- glicid/services/parallel.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glicid/services/parallel.scm b/glicid/services/parallel.scm index 6b7fe52..85e232a 100644 --- a/glicid/services/parallel.scm +++ b/glicid/services/parallel.scm @@ -1,4 +1,4 @@ -(define-module (glicid services munged) +(define-module (glicid services parallel) #:use-module (gnu services) #:use-module (gnu services shepherd) #:use-module (guix) From b0955cb58e2c520c65821867a2e7e5d253e3feb6 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Wed, 8 Dec 2021 15:06:56 +0100 Subject: [PATCH 149/383] copy/paste typo --- glicid/services/file-systems.scm | 3 +-- glicid/services/parallel.scm | 9 +++------ 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/glicid/services/file-systems.scm b/glicid/services/file-systems.scm index c123f3d..af869d8 100644 --- a/glicid/services/file-systems.scm +++ b/glicid/services/file-systems.scm @@ -39,8 +39,7 @@ (provision '(autofs) ) (documentation "Run autofs.") (requirement '(user-processes)) - (respawn? #f) - (one-shot? #t) + (respawn? #t) (start #~(make-forkexec-constructor (list #$(file-append autofs "/sbin/automount") diff --git a/glicid/services/parallel.scm b/glicid/services/parallel.scm index 85e232a..e4029c4 100644 --- a/glicid/services/parallel.scm +++ b/glicid/services/parallel.scm @@ -43,8 +43,7 @@ (provision '(munged) ) (documentation "Run munged.") (requirement '(user-processes)) - (respawn? #f) - (one-shot? #t) + (respawn? #t) (start #~(make-forkexec-constructor (list #$(file-append munge "/sbin/munged") @@ -95,8 +94,7 @@ (provision '(slurmdbd) ) (documentation "Run slurmdbd.") (requirement '(user-processes)) - (respawn? #f) - (one-shot? #t) + (respawn? #t) (start #~(make-forkexec-constructor (list #$(file-append slurm "/sbin/slurmdbd") @@ -146,8 +144,7 @@ (provision '(slurmctld) ) (documentation "Run slurmctld.") (requirement '(user-processes)) - (respawn? #f) - (one-shot? #t) + (respawn? #t) (start #~(make-forkexec-constructor (list #$(file-append slurm "/sbin/slurmctld") From 4eec933686c20dab514cfff866306529f95ad92d Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Wed, 8 Dec 2021 15:08:54 +0100 Subject: [PATCH 150/383] missing gexp ? --- glicid/services/file-systems.scm | 1 + glicid/services/parallel.scm | 1 + 2 files changed, 2 insertions(+) diff --git a/glicid/services/file-systems.scm b/glicid/services/file-systems.scm index af869d8..852420a 100644 --- a/glicid/services/file-systems.scm +++ b/glicid/services/file-systems.scm @@ -2,6 +2,7 @@ #:use-module (gnu services) #:use-module (gnu services shepherd) #:use-module (guix) + #:use-module (guix gexp) #:use-module (guix records) #:use-module (ice-9 match) #:use-module (gnu packages file-systems) diff --git a/glicid/services/parallel.scm b/glicid/services/parallel.scm index e4029c4..caceca3 100644 --- a/glicid/services/parallel.scm +++ b/glicid/services/parallel.scm @@ -2,6 +2,7 @@ #:use-module (gnu services) #:use-module (gnu services shepherd) #:use-module (guix) + #:use-module (guix gexp) #:use-module (guix records) #:use-module (ice-9 match) #:use-module (gnu packages parallel) From 20b0ff752345ab5d9c90dba61549cc836cddda52 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Wed, 8 Dec 2021 15:14:47 +0100 Subject: [PATCH 151/383] wrong config --- glicid/services/file-systems.scm | 3 +++ glicid/services/parallel.scm | 16 ++++++++++++---- 2 files changed, 15 insertions(+), 4 deletions(-) diff --git a/glicid/services/file-systems.scm b/glicid/services/file-systems.scm index 852420a..f9c1d4d 100644 --- a/glicid/services/file-systems.scm +++ b/glicid/services/file-systems.scm @@ -24,6 +24,9 @@ (define-record-type* autofs-configuration make-autofs-configuration autofs-configuration? + (autofs autofs-configuration-autofs + (default autofs) + ) (config-file autofs-config-file (default %default-autofs-conf) ) diff --git a/glicid/services/parallel.scm b/glicid/services/parallel.scm index caceca3..b683dd8 100644 --- a/glicid/services/parallel.scm +++ b/glicid/services/parallel.scm @@ -2,7 +2,6 @@ #:use-module (gnu services) #:use-module (gnu services shepherd) #:use-module (guix) - #:use-module (guix gexp) #:use-module (guix records) #:use-module (ice-9 match) #:use-module (gnu packages parallel) @@ -28,6 +27,9 @@ (define-record-type* munged-configuration make-munged-configuration munged-configuration? + (munge munge-configuration-munge + (default munge) + ) (key-file munged-key-file (default "/etc/munge/munged.key") ) @@ -38,7 +40,7 @@ (define munged-service (match-lambda - (($ key-file log-file) + (($ munge key-file log-file) (list (shepherd-service (provision '(munged) ) @@ -79,6 +81,9 @@ (define-record-type* slurmdbd-configuration make-slurmdbd-configuration slurmdbd-configuration? + (slurm slurm-configuration-slurm + (default slurm) + ) (slurmdbd-conf slurmdbd-slurmdbd-conf (default "/etc/slurm/slurmdbd.conf") ) @@ -89,7 +94,7 @@ (define slurmdbd-service (match-lambda - (($ slurmdbd-conf log-file) + (($ slurm slurmdbd-conf log-file) (list (shepherd-service (provision '(slurmdbd) ) @@ -129,6 +134,9 @@ (define-record-type* slurmctld-configuration make-slurmctld-configuration slurmctld-configuration? + (slurm slurm-configuration-slurm + (default slurm) + ) (slurmctld-conf slurmctld-slurmctld-conf (default "/etc/slurm/slurmctld.conf") ) @@ -139,7 +147,7 @@ (define slurmctld-service (match-lambda - (($ slurmctld-conf log-file) + (($ slurm slurmctld-conf log-file) (list (shepherd-service (provision '(slurmctld) ) From 8b550bb05d4f105f639e265c8e7ce66c5f1b849e Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Wed, 8 Dec 2021 15:45:07 +0100 Subject: [PATCH 152/383] perms bad fixe --- glicid/services/parallel.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/glicid/services/parallel.scm b/glicid/services/parallel.scm index b683dd8..e8cb809 100644 --- a/glicid/services/parallel.scm +++ b/glicid/services/parallel.scm @@ -51,7 +51,8 @@ (list #$(file-append munge "/sbin/munged") "-F" - "--key-file=" #$key-file + "-f" ; until we fix the permissions + "--key-file" #$key-file ) #:log-file #$log-file )) From 949b92bee7664ffef1203a9ea81807ef7607ceeb Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Wed, 8 Dec 2021 16:18:33 +0100 Subject: [PATCH 153/383] autofs --- glicid/services/file-systems.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glicid/services/file-systems.scm b/glicid/services/file-systems.scm index f9c1d4d..cce4abc 100644 --- a/glicid/services/file-systems.scm +++ b/glicid/services/file-systems.scm @@ -37,7 +37,7 @@ (define autofs-service (match-lambda - (($ config-file log-file) + (($ autofs config-file log-file) (list (shepherd-service (provision '(autofs) ) From 45e187faf2857991ef8cd4a969293ece906a3662 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 10 Dec 2021 16:10:32 +0100 Subject: [PATCH 154/383] cleaning --- glicid/services/openldap.scm | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/glicid/services/openldap.scm b/glicid/services/openldap.scm index 347c4ea..6bb99ae 100644 --- a/glicid/services/openldap.scm +++ b/glicid/services/openldap.scm @@ -1,5 +1,5 @@ (define-module (glicid services openldap) - #:use-module (glicid packages openldap) + #:use-module (gnu packages openldap) #:use-module (gnu services) #:use-module (gnu services shepherd) #:use-module (guix) @@ -8,7 +8,6 @@ #: export ( openldap-configuration openldap-configuration? - %default-slapd.conf openldap-shepherd-service openldap-service-type ) @@ -30,18 +29,13 @@ (default "/var/run/openldap/slapd.pid") ) (config-file openldap-configuration-config-file - (default %default-slapd.conf) + (default (file-append openldap "/etc/openldap/slapd.conf")) ) (log-file openldap-configuration-log-file (default "/var/log/slapd.log") ) ) -(define %default-slapd.conf - (plain-file "slapd.conf" " - # Empty file for test -")) - (define openldap-shepherd-service (match-lambda (($ openldap uri logflags pid-file config-file log-file) @@ -50,7 +44,7 @@ (provision '(slapd) ) (documentation "Run openldap.") (requirement '(user-processes)) - (respawn? #f) + (respawn? #t) (start #~(make-forkexec-constructor (list #$(file-append openldap "/libexec/slapd") From cccf0e696b117702dc068496da0fb54195d4be73 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 10 Dec 2021 16:23:17 +0100 Subject: [PATCH 155/383] cleaning --- glicid/services/parallel.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/glicid/services/parallel.scm b/glicid/services/parallel.scm index e8cb809..7d08f32 100644 --- a/glicid/services/parallel.scm +++ b/glicid/services/parallel.scm @@ -31,7 +31,7 @@ (default munge) ) (key-file munged-key-file - (default "/etc/munge/munged.key") + (default (file-append munge "/etc/munge/munged.key")) ) (log-file munged-log-file (default "/var/log/munged.log") @@ -86,7 +86,7 @@ (default slurm) ) (slurmdbd-conf slurmdbd-slurmdbd-conf - (default "/etc/slurm/slurmdbd.conf") + (default (file-append slurm "/etc/slurm/slurmdbd.conf")) ) (log-file slurmdbd-log-file (default "/var/log/slurmdbd.log") @@ -139,7 +139,7 @@ (default slurm) ) (slurmctld-conf slurmctld-slurmctld-conf - (default "/etc/slurm/slurmctld.conf") + (default (file-append slurm "/etc/slurm/slurmctld.conf")) ) (log-file slurmctld-log-file (default "/var/log/slurmctld.log") From a6c74f3b4031f8f599db214886d2561d5647e1e1 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 10 Dec 2021 21:05:50 +0100 Subject: [PATCH 156/383] first attempt to add apptainer-singularity --- glicid/packages/linux.scm | 61 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) diff --git a/glicid/packages/linux.scm b/glicid/packages/linux.scm index f18ce17..da17993 100644 --- a/glicid/packages/linux.scm +++ b/glicid/packages/linux.scm @@ -1,7 +1,17 @@ (define-module (glicid packages linux) #:use-module (guix packages) #:use-module (guix download) + #:use-module ((guix licenses) #:prefix license:) + #:use-module (guix build-system gnu) + #:use-module (guix build-system go) + #:use-module (gnu packages backup) + #:use-module (gnu packages compression) + #:use-module (gnu packages cryptsetup) + #:use-module (gnu packages golang) #:use-module ((gnu packages linux) #:prefix gnu:) + #:use-module (gnu packages pkg-config) + #:use-module (gnu packages python) + #:use-module (gnu packages tls) ) (define-public rdma-core-newer-37.1 @@ -71,3 +81,54 @@ (define local-libfabric libfabric-newer-1.14.0) (define-public libfabric-latest local-libfabric) + +(define-public apptainer-singularity-3.8.5 + (package + (name "singularity") + (version "3.8.5") + (source + (origin + (method url-fetch) + (uri (string-append "https://github.com/apptainer/singularity/releases/download/v" version "/singularity-" version ".tar.gz")) + (sha256 (base32 "1r1w2n1ndj5psvpm87ij6gwr0hwrbsn6gllv4q44spbvq2spizvz")) + ) + ) + (home-page "https://apptainer.org/") + (synopsis "THE CONTAINER SYSTEM FOR SECURE HIGH PERFORMANCE COMPUTING") + (description "Apptainer/Singularity is the most widely used container system for HPC. + It is designed to execute applications at bare-metal performance while + being secure, portable, and 100% reproducible. Apptainer is an + open-source project with a friendly community of developers and users. + The user base continues to expand, with Apptainer/Singularity now used + across industry and academia in many areas of work." + ) + (license license:bsd-3) + (build-system gnu-build-system) + (inputs `( + ("libarchive", libarchive) + ("python", python-wrapper) + ("zlib", zlib) + ("squashfs-tools", squashfs-tools) + ("openssl", openssl) + ("libseccomp", gnu:libseccomp) + ("cryptsetup", cryptsetup) + ("go", go-1.17) + ("pkg-config", pkg-config) + )) + (arguments + `(#:phases + (modify-phases %standard-phases + (replace 'configure + (lambda* (#:key inputs native-inputs propagated-inputs configure-flags #:allow-other-keys) + (begin + (invoke "./mconfig" "--localstatedir=/var") + ) + ) + ) + ) + ) + ) + ) +) + +apptainer-singularity-3.8.5 From 701c293995dad6cffa32bd51789b134ea50006c9 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 10 Dec 2021 21:06:09 +0100 Subject: [PATCH 157/383] first attempt to add apptainer-singularity --- glicid/packages/linux.scm | 2 -- 1 file changed, 2 deletions(-) diff --git a/glicid/packages/linux.scm b/glicid/packages/linux.scm index da17993..64b1acd 100644 --- a/glicid/packages/linux.scm +++ b/glicid/packages/linux.scm @@ -130,5 +130,3 @@ ) ) ) - -apptainer-singularity-3.8.5 From 566f2d2f6c3cbb3700dbd86f383fb679e1a7ae7d Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Sat, 11 Dec 2021 13:14:24 +0100 Subject: [PATCH 158/383] adding singularity go dependencies --- glicid/packages/golang.scm | 110543 ++++++++++++++++++++++++++++++++++ 1 file changed, 110543 insertions(+) create mode 100644 glicid/packages/golang.scm diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm new file mode 100644 index 0000000..c543ce0 --- /dev/null +++ b/glicid/packages/golang.scm @@ -0,0 +1,110543 @@ +(define-module (glicid packages openldap) + #:use-module (guix build-system go) + #:use-module (guix download) + #:use-module (guix git-download) + #:use-module ((guix licenses) #:prefix license:) + #:use-module (guix packages) +) + +(define-public go-github-com-adamkorcz-go-fuzz-headers-0.0.0-20210319161527-f761c2329661 + (package + (name "go-github-com-adamkorcz-go-fuzz-headers") + (version "0.0.0-20210319161527-f761c2329661") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/AdamKorcz/go-fuzz-headers") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "043a8lialk5kmxy2g5ka1pss8k71d42y4g0ikkv0ls8kgvxw3cc6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/AdamKorcz/go-fuzz-headers")) + (home-page "https://github.com/AdamKorcz/go-fuzz-headers") + (synopsis #f) + (description #f) + (license #f))) + +(define-public go-github-com-netflix-go-expect-0.0.0-20190729225929-0e00d9168667 + (package + (name "go-github-com-netflix-go-expect") + (version "0.0.0-20190729225929-0e00d9168667") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/Netflix/go-expect") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0kzas7m7fllyj3cn2ijasaw7xkv2yvqxli2l1j3jqsi0ln51fa52")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/Netflix/go-expect")) + (home-page "https://github.com/Netflix/go-expect") + (synopsis "go-expect") + (description + "Package expect provides an expect-like interface to automate control of +applications. It is unlike expect in that it does not spawn or manage +process lifecycle. This package only focuses on expecting output and sending +input through it's psuedoterminal. +") + (license license:asl2.0))) + +(define-public go-github-com-docker-distribution-2.7.1+incompatible + (package + (name "go-github-com-docker-distribution") + (version "2.7.1+incompatible") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/distribution/distribution") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1nx8b5a68rn81alp8wkkw6qd5v32mgf0fk23mxm60zdf63qk1nzw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/docker/distribution")) + (home-page "https://github.com/docker/distribution") + (synopsis "Distribution") + (description + "Package distribution will define the interfaces for the components of +docker distribution. The goal is to allow users to reliably package, ship +and store content related to docker images. +") + (license license:asl2.0))) + +(define-public go-github-com-docker-libtrust-0.0.0-20160708172513-aabc10ec26b7 + (package + (name "go-github-com-docker-libtrust") + (version "0.0.0-20160708172513-aabc10ec26b7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/docker/libtrust") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1lwslbggzc2b0c4wxl5pn6i2nfgz5jz8f7s7vnid9mrlsk59h7s1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/docker/libtrust")) + (home-page "https://github.com/docker/libtrust") + (synopsis "libtrust") + (description + "Package libtrust provides an interface for managing authentication and +authorization using public key cryptography. Authentication is handled +using the identity attached to the public key and verified through TLS +x509 certificates, a key challenge, or signature. Authorization and +access control is managed through a trust graph distributed between +both remote trust servers and locally cached and managed data. +") + (license license:asl2.0))) + +(define-public go-github-com-gorilla-mux-1.7.4 + (package + (name "go-github-com-gorilla-mux") + (version "1.7.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gorilla/mux") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1d0sy1paa055ic84sp3766s9pa24q008hf77dc842vrgvn8p3wmh")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/gorilla/mux")) + (home-page "https://github.com/gorilla/mux") + (synopsis "gorilla/mux") + (description "Package mux implements a request router and dispatcher. +") + (license license:bsd-3))) + +(define-public go-github-com-davecgh-go-spew-1.1.1 + (package + (name "go-github-com-davecgh-go-spew") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/davecgh/go-spew") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/davecgh/go-spew")) + (home-page "https://github.com/davecgh/go-spew") + (synopsis "go-spew") + (description + "Go-spew implements a deep pretty printer for Go data structures to aid in +debugging. A comprehensive suite of tests with 100% test coverage is provided +to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage +report. Go-spew is licensed under the liberal ISC license, so it may be used in +open source or commercial projects.") + (license license:isc))) + +(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.1 + (package + (name "go-github-com-konsorten-go-windows-terminal-sequences") + (version "1.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/konsorten/go-windows-terminal-sequences") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1lchgf27n276vma6iyxa0v1xds68n2g8lih5lavqnx5x6q5pw2ip")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) + (home-page "https://github.com/konsorten/go-windows-terminal-sequences") + (synopsis "Windows Terminal Sequences") + (description + "This library allow for enabling Windows terminal color support for Go.") + (license license:expat))) + +(define-public go-github-com-pmezard-go-difflib-1.0.0 + (package + (name "go-github-com-pmezard-go-difflib") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pmezard/go-difflib") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pmezard/go-difflib")) + (home-page "https://github.com/pmezard/go-difflib") + (synopsis "go-difflib") + (description + "Go-difflib is a partial port of python 3 difflib package. Its main goal +was to make unified and context diff available in pure Go, mostly for +testing purposes.") + (license license:bsd-3))) + +(define-public go-github-com-stretchr-objx-0.1.1 + (package + (name "go-github-com-stretchr-objx") + (version "0.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/objx") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0iph0qmpyqg4kwv8jsx6a56a7hhqq8swrazv40ycxk9rzr0s8yls")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/objx")) + (home-page "https://github.com/stretchr/objx") + (synopsis "Objx") + (description + "Objx - Go package for dealing with maps, slices, JSON and other data. +") + (license license:expat))) + +(define-public go-github-com-stretchr-testify-1.2.2 + (package + (name "go-github-com-stretchr-testify") + (version "1.2.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0dlszlshlxbmmfxj5hlwgv3r22x0y1af45gn1vd198nvvs3pnvfs")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190422165155-953cdadca894") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0gkha4whk8xkcv3isigbs250akag99isxnd3v9xmy0kl3g88hxy1")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-sirupsen-logrus-1.4.2 + (package + (name "go-github-com-sirupsen-logrus") + (version "1.4.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sirupsen/logrus") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "087k2lxrr9p9dh68yw71d05h5g9p5v26zbwd6j7lghinjfaw334x")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/sirupsen/logrus")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894" + ,go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894) + ("go-github-com-stretchr-testify-1.2.2" + ,go-github-com-stretchr-testify-1.2.2) + ("go-github-com-stretchr-objx-0.1.1" + ,go-github-com-stretchr-objx-0.1.1) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.1" + ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.1) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/sirupsen/logrus") + (synopsis "Logrus") + (description + "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. +") + (license license:expat))) + +(define-public go-github-com-adigunhammedolalekan-registry-auth-0.0.0-20200730122110-8cde180a3a60 + (package + (name "go-github-com-adigunhammedolalekan-registry-auth") + (version "0.0.0-20200730122110-8cde180a3a60") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/adigunhammedolalekan/registry-auth") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0855a5c0ifi6q2ghb6gax0kwwra5j7pd2lplq4wp8r83dnv4vwj0")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/adigunhammedolalekan/registry-auth")) + (propagated-inputs + `(("go-github-com-sirupsen-logrus-1.4.2" + ,go-github-com-sirupsen-logrus-1.4.2) + ("go-github-com-gorilla-mux-1.7.4" ,go-github-com-gorilla-mux-1.7.4) + ("go-github-com-docker-libtrust-0.0.0-20160708172513-aabc10ec26b7" + ,go-github-com-docker-libtrust-0.0.0-20160708172513-aabc10ec26b7) + ("go-github-com-docker-distribution-2.7.1+incompatible" + ,go-github-com-docker-distribution-2.7.1+incompatible))) + (home-page "https://github.com/adigunhammedolalekan/registry-auth") + (synopsis "registry-auth") + (description + "a package to implements docker registry token authentication server as described here [https://github.com/docker/distribution/blob/1b9ab303a477ded9bdd3fc97e9119fa8f9e58fca/docs/spec/auth/index.md]") + (license license:expat))) + +(define-public go-github-com-alexflint-go-filemutex-0.0.0-20171028004239-d358565f3c3f + (package + (name "go-github-com-alexflint-go-filemutex") + (version "0.0.0-20171028004239-d358565f3c3f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/alexflint/go-filemutex") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19fzbm0x8821awsmqj9ig49dxxkd72p1yfqbijmdwwszvw2r0ggz")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/alexflint/go-filemutex")) + (home-page "https://github.com/alexflint/go-filemutex") + (synopsis "FileMutex") + (description + "FileMutex is similar to @code{sync.RWMutex}, but also synchronizes across processes. +On Linux, OSX, and other POSIX systems it uses the flock system call. On windows +it uses the LockFileEx and UnlockFileEx system calls.") + (license license:expat))) + +(define-public go-github-com-stretchr-testify-1.3.0 + (package + (name "go-github-com-stretchr-testify") + (version "1.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wjchp2c8xbgcbbq32w3kvblk6q6yn533g78nxl6iskq6y95lxsy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (propagated-inputs + `(("go-github-com-stretchr-objx-0.1.0" + ,go-github-com-stretchr-objx-0.1.0) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.0" + ,go-github-com-davecgh-go-spew-1.1.0))) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +") + (license license:expat))) + +(define-public go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0 + (package + (name "go-github-com-tj-assert") + (version "0.0.0-20171129193455-018094318fb0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/tj/assert") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "15ika7izp5hkd10dm30apwfvpm0d1yl2rnxs6896q0svz9zvi2z3")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/tj/assert")) + (home-page "https://github.com/tj/assert") + (synopsis "assert") + (description + "Package assert implements the same assertions as the `assert` package but +stops test execution when a test fails. +") + (license license:expat))) + +(define-public go-github-com-apex-logs-1.0.0 + (package + (name "go-github-com-apex-logs") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/apex/logs") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1kysjp3s8718p02ngpr60gnjjspv0a69biksfjqa1540svrbi850")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/apex/logs")) + (propagated-inputs + `(("go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0" + ,go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0) + ("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0))) + (home-page "https://github.com/apex/logs") + (synopsis "Example") + (description "Go client for @url{https://apex.sh/logs/,Apex Logs}.") + (license license:expat))) + +(define-public go-github-com-aphistic-golf-0.0.0-20180712155816-02c07f170c5a + (package + (name "go-github-com-aphistic-golf") + (version "0.0.0-20180712155816-02c07f170c5a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/aphistic/golf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1qixab9bb29wqbr4nc5j3g25hq1j7am93f181rkj7a4qacncx763")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/aphistic/golf")) + (home-page "https://github.com/aphistic/golf") + (synopsis "golf") + (description + "This package provides logging capabilities using the GELF (@url{https://www.graylog.org/resources/gelf-2/,https://www.graylog.org/resources/gelf-2/}) log format +") + (license license:expat))) + +(define-public go-github-com-mattn-go-isatty-0.0.5 + (package + (name "go-github-com-mattn-go-isatty") + (version "0.0.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mattn/go-isatty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "114d5xm8rfxplzd7nxz97gfngb4bhqy102szl084d1afcxsvm4aa")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mattn/go-isatty")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223" + ,go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223))) + (home-page "https://github.com/mattn/go-isatty") + (synopsis "go-isatty") + (description "Package isatty implements interface to isatty +") + (license license:expat))) + +(define-public go-github-com-mattn-go-colorable-0.1.1 + (package + (name "go-github-com-mattn-go-colorable") + (version "0.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mattn/go-colorable") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0l640974j804c1yyjfgyxqlsivz0yrzmbql4mhcw2azryigkp08p")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mattn/go-colorable")) + (propagated-inputs + `(("go-github-com-mattn-go-isatty-0.0.5" + ,go-github-com-mattn-go-isatty-0.0.5))) + (home-page "https://github.com/mattn/go-colorable") + (synopsis "go-colorable") + (description "Colorable writer for windows.") + (license license:expat))) + +(define-public go-github-com-mgutz-ansi-0.0.0-20170206155736-9520e82c474b + (package + (name "go-github-com-mgutz-ansi") + (version "0.0.0-20170206155736-9520e82c474b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mgutz/ansi") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "00bz22314j26736w1f0q4jy9d9dfaml17vn890n5zqy3cmvmww1j")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mgutz/ansi")) + (home-page "https://github.com/mgutz/ansi") + (synopsis "ansi") + (description + "Package ansi is a small, fast library to create ANSI colored strings and codes. +") + (license license:expat))) + +(define-public go-github-com-fsnotify-fsnotify-1.4.7 + (package + (name "go-github-com-fsnotify-fsnotify") + (version "1.4.7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/fsnotify/fsnotify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/fsnotify/fsnotify")) + (home-page "https://github.com/fsnotify/fsnotify") + (synopsis "File system notifications for Go") + (description + "Package fsnotify provides a platform-independent interface for file system notifications. +") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.2.0 + (package + (name "go-github-com-golang-protobuf") + (version "1.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0kf4b59rcbb1cchfny2dm9jyznp8ri2hsb14n8iak1q8986xa0ab")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-github-com-hpcloud-tail-1.0.0 + (package + (name "go-github-com-hpcloud-tail") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hpcloud/tail") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1njpzc0pi1acg5zx9y6vj9xi6ksbsc5d387rd6904hy6rh2m6kn0")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hpcloud/tail")) + (home-page "https://github.com/hpcloud/tail") + (synopsis "Go package for tail-ing files") + (description + "This package provides a Go package striving to emulate the features of the BSD @code{tail} program.") + (license license:expat))) + +(define-public go-github-com-onsi-ginkgo-1.6.0 + (package + (name "go-github-com-onsi-ginkgo") + (version "1.6.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/onsi/ginkgo") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0x0gc89vgq38xhgmi2h22bhr73cf2gmk42g89nz89k8dgg9hhr25")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/onsi/ginkgo")) + (home-page "https://github.com/onsi/ginkgo") + (synopsis "Ginkgo 2.0 Release Candidate is available!") + (description "Ginkgo is a BDD-style testing framework for Golang +") + (license license:expat))) + +(define-public go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd + (package + (name "go-golang-org-x-net") + (version "0.0.0-20180906233101-161cd47e91fd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0254ld010iijygbzykib2vags1dc0wlmcmhgh4jl8iny159lhbcv")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20180314180146-1d60e4601c6f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "046jlanz2lkxq1r57x9bl6s4cvfqaic6p2xybsj8mq1120jv4rs6")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the +ones provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20180909124046-d0be0721c37e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "081wyvfnlf842dqg03raxfz6lldlxpmyh1prix9lmrrm65arxb12")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-gopkg-in-fsnotify-v1-1.4.7 + (package + (name "go-gopkg-in-fsnotify-v1") + (version "1.4.7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/fsnotify.v1") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) + (build-system go-build-system) + (arguments + '(#:import-path + "gopkg.in/fsnotify.v1" + #:unpack-path + "gopkg.in/fsnotify.v1")) + (home-page "https://gopkg.in/fsnotify.v1") + (synopsis "File system notifications for Go") + (description + "Package fsnotify provides a platform-independent interface for file system notifications. +") + (license license:bsd-3))) + +(define-public go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7 + (package + (name "go-gopkg-in-tomb-v1") + (version "1.0.0-20141024135613-dd632973f1e7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/tomb.v1") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1lqmq1ag7s4b3gc3ddvr792c5xb5k6sfn0cchr3i2s7f1c231zjv")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/tomb.v1" #:unpack-path "gopkg.in/tomb.v1")) + (home-page "https://gopkg.in/tomb.v1") + (synopsis "Installation and usage") + (description + "The tomb package offers a conventional API for clean goroutine termination. +") + (license license:bsd-3))) + +(define-public go-gopkg-in-yaml-v2-2.2.1 + (package + (name "go-gopkg-in-yaml-v2") + (version "2.2.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0dwjrs2lp2gdlscs7bsrmyc5yf6mm4fvgw71bzr9mv2qrd2q73s1")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v2") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language. +") + (license license:asl2.0))) + +(define-public go-github-com-onsi-gomega-1.5.0 + (package + (name "go-github-com-onsi-gomega") + (version "1.5.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/onsi/gomega") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1n7i4hksdgv410m43v2sw14bl5vy59dkp6nlw5l76nibbh37syr9")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/onsi/gomega")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1) + ("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" + ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) + ("go-gopkg-in-fsnotify-v1-1.4.7" ,go-gopkg-in-fsnotify-v1-1.4.7) + ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e" + ,go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e) + ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" + ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) + ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" + ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) + ("go-github-com-onsi-ginkgo-1.6.0" ,go-github-com-onsi-ginkgo-1.6.0) + ("go-github-com-hpcloud-tail-1.0.0" ,go-github-com-hpcloud-tail-1.0.0) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0) + ("go-github-com-fsnotify-fsnotify-1.4.7" + ,go-github-com-fsnotify-fsnotify-1.4.7))) + (home-page "https://github.com/onsi/gomega") + (synopsis ": a BDD Testing Framework for Golang") + (description + "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library. +") + (license license:expat))) + +(define-public go-github-com-sergi-go-diff-1.0.0 + (package + (name "go-github-com-sergi-go-diff") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sergi/go-diff") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0swiazj8wphs2zmk1qgq75xza6m19snif94h2m6fi8dqkwqdl7c7")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/sergi/go-diff")) + (home-page "https://github.com/sergi/go-diff") + (synopsis "go-diff") + (description + "go-diff offers algorithms to perform operations required for synchronizing plain text:") + (license license:expat))) + +(define-public go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190404232315-eb5bcb51f2a3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "17k4g8krxbl84gzcs275b7gsh66dzm15fdxivjnx9xz8q84l4kby")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20190412213103-97732733099d + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190412213103-97732733099d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "118hkp01i4z1f5h6hcjm0ff2ngqhrzj1f7731n0kw8dr6hvbx0sw")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-crypto-0.0.0-20190426145343-a29dc8fdc734 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20190426145343-a29dc8fdc734") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "07f0jj4haqs0ywc1akk1qjwn5msl2j0pry1rxjkkbfcq4r6ihc1p")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" + ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) + ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" + ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-github-com-aphistic-sweet-0.2.0 + (package + (name "go-github-com-aphistic-sweet") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/aphistic/sweet") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1bb4qagfxf6byqn2yx0vq24xfvisz3ah4w6bvqclc8cklvfngw43")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/aphistic/sweet")) + (propagated-inputs + `(("go-golang-org-x-crypto-0.0.0-20190426145343-a29dc8fdc734" + ,go-golang-org-x-crypto-0.0.0-20190426145343-a29dc8fdc734) + ("go-github-com-sergi-go-diff-1.0.0" + ,go-github-com-sergi-go-diff-1.0.0) + ("go-github-com-onsi-gomega-1.5.0" ,go-github-com-onsi-gomega-1.5.0) + ("go-github-com-mgutz-ansi-0.0.0-20170206155736-9520e82c474b" + ,go-github-com-mgutz-ansi-0.0.0-20170206155736-9520e82c474b) + ("go-github-com-mattn-go-colorable-0.1.1" + ,go-github-com-mattn-go-colorable-0.1.1))) + (home-page "https://github.com/aphistic/sweet") + (synopsis "sweet") + (description + "Sweet is a pluggable test runner capable of hooking into standard Go tests. It attempts to provide access to the standard Go test tool as close as possible while adding support for test suites and plugins that can hook into test results to add additional functionality.") + (license license:expat))) + +(define-public go-github-com-jmespath-go-jmespath-0.0.0-20180206201540-c2b33e8439af + (package + (name "go-github-com-jmespath-go-jmespath") + (version "0.0.0-20180206201540-c2b33e8439af") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jmespath/go-jmespath") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1r6w7ydx8ydryxk3sfhzsk8m6f1nsik9jg3i1zhi69v4kfl4d5cz")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/jmespath/go-jmespath")) + (home-page "https://github.com/jmespath/go-jmespath") + (synopsis "go-jmespath - A JMESPath implementation in Go") + (description + "go-jmespath is a GO implementation of JMESPath, +which is a query language for JSON. It will take a JSON +document and transform it into another JSON document +through a JMESPath expression.") + (license license:asl2.0))) + +(define-public go-github-com-aws-aws-sdk-go-1.20.6 + (package + (name "go-github-com-aws-aws-sdk-go") + (version "1.20.6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/aws/aws-sdk-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "016vy5s9finyfgh08j7rvn2pnwymdgj2ydr59w57pysnri87mdwx")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/aws/aws-sdk-go")) + (propagated-inputs + `(("go-github-com-jmespath-go-jmespath-0.0.0-20180206201540-c2b33e8439af" + ,go-github-com-jmespath-go-jmespath-0.0.0-20180206201540-c2b33e8439af))) + (home-page "https://github.com/aws/aws-sdk-go") + (synopsis "AWS SDK for Go") + (description + "Package sdk is the official AWS SDK for the Go programming language. +") + (license license:asl2.0))) + +(define-public go-github-com-aybabtme-rgbterm-0.0.0-20170906152045-cc83f3b3ce59 + (package + (name "go-github-com-aybabtme-rgbterm") + (version "0.0.0-20170906152045-cc83f3b3ce59") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/aybabtme/rgbterm") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wvmxvjn64968ikvnxrflb1x8rlcwzpfl53fzbxff2axbx9lq50q")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/aybabtme/rgbterm")) + (home-page "https://github.com/aybabtme/rgbterm") + (synopsis "RGB terminal") + (description + "Package rgbterm colorizes bytes and strings using RGB colors, for a +full range of pretty terminal strings. +") + (license #f))) + +(define-public go-github-com-fatih-color-1.7.0 + (package + (name "go-github-com-fatih-color") + (version "1.7.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/fatih/color") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0v8msvg38r8d1iiq2i5r4xyfx0invhc941kjrsg5gzwvagv55inv")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/fatih/color")) + (home-page "https://github.com/fatih/color") + (synopsis "color") + (description + "Package color is an ANSI color package to output colorized or SGR defined +output to the standard output. The API can be used in several way, pick one +that suits you. +") + (license license:expat))) + +(define-public go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515 + (package + (name "go-github-com-kr-logfmt") + (version "0.0.0-20140226030751-b84e30acd515") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/logfmt") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "02ldzxgznrfdzvghfraslhgp19la1fczcbzh7wm2zdc6lmpd1qq9")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/logfmt")) + (home-page "https://github.com/kr/logfmt") + (synopsis #f) + (description + "Package implements the decoding of logfmt key-value pairs. +") + (license license:expat))) + +(define-public go-github-com-go-logfmt-logfmt-0.4.0 + (package + (name "go-github-com-go-logfmt-logfmt") + (version "0.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/go-logfmt/logfmt") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "06smxc112xmixz78nyvk3b2hmc7wasf2sl5vxj1xz62kqcq9lzm9")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/go-logfmt/logfmt")) + (propagated-inputs + `(("go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515" + ,go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515))) + (home-page "https://github.com/go-logfmt/logfmt") + (synopsis "logfmt") + (description + "Package logfmt implements utilities to marshal and unmarshal data in the +logfmt format. The logfmt format records key/value pairs in a way that +balances readability for humans and simplicity of computer parsing. It is +most commonly used as a more human friendly alternative to JSON for +structured logging. +") + (license license:expat))) + +(define-public go-github-com-golang-protobuf-1.3.1 + (package + (name "go-github-com-golang-protobuf") + (version "1.3.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "15am4s4646qy6iv0g3kkqq52rzykqjhm4bf08dk0fy2r58knpsyl")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-github-com-google-uuid-1.1.1 + (package + (name "go-github-com-google-uuid") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/uuid") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hfxcf9frkb57k6q0rdkrmnfs78ms21r1qfk9fhlqga2yh5xg8zb")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/uuid")) + (home-page "https://github.com/google/uuid") + (synopsis "uuid") + (description "Package uuid generates and inspects UUIDs. +") + (license license:bsd-3))) + +(define-public go-github-com-jpillora-backoff-0.0.0-20180909062703-3050d21c67d7 + (package + (name "go-github-com-jpillora-backoff") + (version "0.0.0-20180909062703-3050d21c67d7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jpillora/backoff") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1nxapdx9xg5gwiscfhq7m0w14hj4gaxb4avmgf1mx9zd3jnw9jxv")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/jpillora/backoff")) + (home-page "https://github.com/jpillora/backoff") + (synopsis "Backoff") + (description + "Package backoff provides an exponential-backoff implementation. +") + (license license:expat))) + +(define-public go-github-com-kr-pty-1.1.1 + (package + (name "go-github-com-kr-pty") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/pty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0383f0mb9kqjvncqrfpidsf8y6ns5zlrc91c6a74xpyxjwvzl2y6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/pty")) + (home-page "https://github.com/kr/pty") + (synopsis "pty") + (description + "Package pty is a wrapper for github.com/creack/pty, which provides +functions for working with Unix terminals. +") + (license license:expat))) + +(define-public go-github-com-kr-text-0.1.0 + (package + (name "go-github-com-kr-text") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1gm5bsl01apvc84bw06hasawyqm4q84vx1pm32wr9jnd7a8vjgj1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/text")) + (propagated-inputs + `(("go-github-com-kr-pty-1.1.1" ,go-github-com-kr-pty-1.1.1))) + (home-page "https://github.com/kr/text") + (synopsis #f) + (description + "Package text provides rudimentary functions for manipulating text in +paragraphs. +") + (license license:expat))) + +(define-public go-github-com-kr-pretty-0.2.0 + (package + (name "go-github-com-kr-pretty") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/pretty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ywbfzz1h3a3qd8rpkiqwi1dm4w8ls9ijb4x1b7567grns9f0vnp")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/pretty")) + (propagated-inputs + `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) + (home-page "https://github.com/kr/pretty") + (synopsis #f) + (description + "Package pretty provides pretty-printing for Go values. This is +useful during debugging, to avoid wrapping long output lines in +the terminal. +") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190222072716-a9d3bda3a223") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1w45zc13xrjzl19s1sx74r5mg3lf2z2nm13wygcdq5r5pyjlhdz9")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-mattn-go-isatty-0.0.8 + (package + (name "go-github-com-mattn-go-isatty") + (version "0.0.8") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mattn/go-isatty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0rqfh1rj6f5wm8p2ky7inm8g10152p7w6n2cli17kf9gad797i8h")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mattn/go-isatty")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223" + ,go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223))) + (home-page "https://github.com/mattn/go-isatty") + (synopsis "go-isatty") + (description "Package isatty implements interface to isatty +") + (license license:expat))) + +(define-public go-github-com-mattn-go-colorable-0.1.2 + (package + (name "go-github-com-mattn-go-colorable") + (version "0.1.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mattn/go-colorable") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0512jm3wmzkkn7d99x9wflyqf48n5ri3npy1fqkq6l6adc5mni3n")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mattn/go-colorable")) + (propagated-inputs + `(("go-github-com-mattn-go-isatty-0.0.8" + ,go-github-com-mattn-go-isatty-0.0.8))) + (home-page "https://github.com/mattn/go-colorable") + (synopsis "go-colorable") + (description "Colorable writer for windows.") + (license license:expat))) + +(define-public go-github-com-pkg-errors-0.8.1 + (package + (name "go-github-com-pkg-errors") + (version "0.8.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pkg/errors") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0g5qcb4d4fd96midz0zdk8b9kz8xkzwfa8kr1cliqbg8sxsy5vd1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pkg/errors")) + (home-page "https://github.com/pkg/errors") + (synopsis "errors") + (description "Package errors provides simple error handling primitives. +") + (license license:bsd-2))) + +(define-public go-github-com-rogpeppe-fastuuid-1.1.0 + (package + (name "go-github-com-rogpeppe-fastuuid") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/rogpeppe/fastuuid") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1jlif5pxyz3md02ij93kd2y2j1zz0ajc9k8azvn83vv6l3r5c1zg")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/rogpeppe/fastuuid")) + (home-page "https://github.com/rogpeppe/fastuuid") + (synopsis "fastuuid") + (description + "Package fastuuid provides fast UUID generation of 192 bit +universally unique identifiers. +") + (license license:bsd-3))) + +(define-public go-github-com-smartystreets-go-aws-auth-0.0.0-20180515143844-0c1422d1fdb9 + (package + (name "go-github-com-smartystreets-go-aws-auth") + (version "0.0.0-20180515143844-0c1422d1fdb9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/smartystreets-archives/go-aws-auth") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0krfdpgn3gfii1z9fi8ydfw0wwfqyvp6w3rji7w92m528zkjl93d")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/smartystreets/go-aws-auth")) + (home-page "https://github.com/smartystreets/go-aws-auth") + (synopsis "go-aws-auth") + (description + "Package awsauth implements AWS request signing using Signed Signature Version 2, +Signed Signature Version 3, and Signed Signature Version 4. Supports S3 and STS. +") + (license license:expat))) + +(define-public go-github-com-smartystreets-assertions-1.0.0 + (package + (name "go-github-com-smartystreets-assertions") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/smartystreets/assertions") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1188hs39zvil41sdnxs83h1hp319lfyc5n2rvd1xnhz1dh5qjjh4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/smartystreets/assertions")) + (home-page "https://github.com/smartystreets/assertions") + (synopsis #f) + (description + "Package assertions contains the implementations for all assertions which +are referenced in goconvey's `convey` package +(github.com/smartystreets/goconvey/convey) and gunit (github.com/smartystreets/gunit) +for use with the So(...) method. +They can also be used in traditional Go test functions and even in +applications. +") + (license license:expat))) + +(define-public go-github-com-smartystreets-gunit-1.0.0 + (package + (name "go-github-com-smartystreets-gunit") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/smartystreets/gunit") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "11d09rl5qqpj36a311pjj8w5jkj83d5b8gdcsx8f1zn4j924sm5d")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/smartystreets/gunit")) + (propagated-inputs + `(("go-github-com-smartystreets-assertions-1.0.0" + ,go-github-com-smartystreets-assertions-1.0.0))) + (home-page "https://github.com/smartystreets/gunit") + (synopsis "gunit") + (description + "Package gunit provides \"testing\" package hooks and convenience +functions for writing tests in an xUnit style. +See the README file and the examples folder for examples. +") + (license license:expat))) + +(define-public go-github-com-davecgh-go-spew-1.1.1 + (package + (name "go-github-com-davecgh-go-spew") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/davecgh/go-spew") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/davecgh/go-spew")) + (home-page "https://github.com/davecgh/go-spew") + (synopsis "go-spew") + (description + "Go-spew implements a deep pretty printer for Go data structures to aid in +debugging. A comprehensive suite of tests with 100% test coverage is provided +to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage +report. Go-spew is licensed under the liberal ISC license, so it may be used in +open source or commercial projects.") + (license license:isc))) + +(define-public go-github-com-davecgh-go-spew-1.1.0 + (package + (name "go-github-com-davecgh-go-spew") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/davecgh/go-spew") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/davecgh/go-spew")) + (home-page "https://github.com/davecgh/go-spew") + (synopsis "go-spew") + (description + "Go-spew implements a deep pretty printer for Go data structures to aid in +debugging. A comprehensive suite of tests with 100% test coverage is provided +to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage +report. Go-spew is licensed under the liberal ISC license, so it may be used in +open source or commercial projects.") + (license license:isc))) + +(define-public go-github-com-pmezard-go-difflib-1.0.0 + (package + (name "go-github-com-pmezard-go-difflib") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pmezard/go-difflib") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pmezard/go-difflib")) + (home-page "https://github.com/pmezard/go-difflib") + (synopsis "go-difflib") + (description + "Go-difflib is a partial port of python 3 difflib package. Its main goal +was to make unified and context diff available in pure Go, mostly for +testing purposes.") + (license license:bsd-3))) + +(define-public go-github-com-stretchr-objx-0.1.0 + (package + (name "go-github-com-stretchr-objx") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/objx") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/objx")) + (home-page "https://github.com/stretchr/objx") + (synopsis "Objx") + (description + "Objx - Go package for dealing with maps, slices, JSON and other data. +") + (license license:expat))) + +(define-public go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c + (package + (name "go-gopkg-in-yaml-v3") + (version "3.0.0-20200313102051-9f266ea9e77c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v3") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1bbai3lzb50m0x2vwsdbagrbhvfylj9k1m32hgbqwldqx4p9ay35")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v3") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language. +") + (license #f))) + +(define-public go-github-com-stretchr-testify-1.6.1 + (package + (name "go-github-com-stretchr-testify") + (version "1.6.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1yhiqqzjvi63pf01rgzx68gqkkvjx03fvl5wk30br5l6s81s090l")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (propagated-inputs + `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" + ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) + ("go-github-com-stretchr-objx-0.1.0" + ,go-github-com-stretchr-objx-0.1.0) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.0" + ,go-github-com-davecgh-go-spew-1.1.0))) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +") + (license license:expat))) + +(define-public go-gopkg-in-yaml-v3-3.0.0-20200605160147-a5ece683394c + (package + (name "go-gopkg-in-yaml-v3") + (version "3.0.0-20200605160147-a5ece683394c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v3") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03cm7c3p5fh0aa8vnxv5010dgqqr268ivb480ix1salxx3396w68")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v3") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language. +") + (license #f))) + +(define-public go-github-com-tj-assert-0.0.3 + (package + (name "go-github-com-tj-assert") + (version "0.0.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/tj/assert") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1j5swk3fjq1h5fpqkipddz2ccnbidr7qrpm5dpdaflg9q5jnc673")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/tj/assert")) + (propagated-inputs + `(("go-gopkg-in-yaml-v3-3.0.0-20200605160147-a5ece683394c" + ,go-gopkg-in-yaml-v3-3.0.0-20200605160147-a5ece683394c) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/tj/assert") + (synopsis "assert") + (description + "Package assert implements the same assertions as the `assert` package but +stops test execution when a test fails. +") + (license license:expat))) + +(define-public go-github-com-tj-go-buffer-1.1.0 + (package + (name "go-github-com-tj-go-buffer") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/tj/go-buffer") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1qdxpa069pjjbzh217aadpzz1aq1n6h32lhp60yjcpi7hr4q8fxx")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/tj/go-buffer")) + (propagated-inputs + `(("go-github-com-tj-assert-0.0.3" ,go-github-com-tj-assert-0.0.3))) + (home-page "https://github.com/tj/go-buffer") + (synopsis "Buffer") + (description + "Package buffer provides a generic buffer or batching mechanism for flushing +entries at a given size or interval, useful for cases such as batching log +events. +") + (license license:expat))) + +(define-public go-github-com-tj-go-elastic-0.0.0-20171221160941-36157cbbebc2 + (package + (name "go-github-com-tj-go-elastic") + (version "0.0.0-20171221160941-36157cbbebc2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/tj/go-elastic") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1r94vc4hbfvqvjz74n4mvsw4dy3vbyzlivb90kyn8vn76a4wqk69")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/tj/go-elastic")) + (home-page "https://github.com/tj/go-elastic") + (synopsis "go-elastic") + (description + "Package elastic provides an Elasticsearch client with AWS sigv4 support. +") + (license license:expat))) + +(define-public go-github-com-tj-go-kinesis-0.0.0-20171128231115-08b17f58cb1b + (package + (name "go-github-com-tj-go-kinesis") + (version "0.0.0-20171128231115-08b17f58cb1b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/tj/go-kinesis") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "108c6p5j6rhhc2cnc2v5368yfsw73y6lzlvz02vpvvjph8rhmld4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/tj/go-kinesis")) + (home-page "https://github.com/tj/go-kinesis") + (synopsis "go-kinesis") + (description + "Package kinesis implements a batch producer built on top of the official AWS SDK. +") + (license license:expat))) + +(define-public go-github-com-tj-go-spin-1.1.0 + (package + (name "go-github-com-tj-go-spin") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/tj/go-spin") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "11xr67991m5pwsy1dira3iwd0sr55vmn1cyjwmlqziw4bwpym64s")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/tj/go-spin")) + (home-page "https://github.com/tj/go-spin") + (synopsis #f) + (description #f) + (license #f))) + +(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20190308221718-c2843e01d9a2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190215142949-d0b11bdaac8a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-text-0.3.0 + (package + (name "go-golang-org-x-text") + (version "0.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/text")) + (home-page "https://golang.org/x/text") + (synopsis "Go Text") + (description + "text is a repository of text-related packages related to internationalization +(i18n) and localization (l10n), such as character encodings, text +transformations, and locale-specific text handling. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190620200207-3b0461eec859") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0l00c8l0a8xnv6qdpwfzxxsr58jggacgzdrwiprrfx2xqm37b6d5")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20180917221912-90fa682c2a6e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-golang-org-x-text-0.3.2 + (package + (name "go-golang-org-x-text") + (version "0.3.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0flv9idw0jm5nm8lx25xqanbkqgfiym6619w575p7nrdh0riqwqh")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/text")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" + ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) + (home-page "https://golang.org/x/text") + (synopsis "Go Text") + (description + "text is a repository of text-related packages related to internationalization +(i18n) and localization (l10n), such as character encodings, text +transformations, and locale-specific text handling. +") + (license license:bsd-3))) + +(define-public go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15 + (package + (name "go-gopkg-in-check-v1") + (version "1.0.0-20190902080502-41f04d3bba15") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/check.v1") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0vfk9czmlxmp6wndq8k17rhnjxal764mxfhrccza7nwlia760pjy")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) + (home-page "https://gopkg.in/check.v1") + (synopsis "Instructions") + (description + "Package check is a rich testing extension for Go's testing package. +") + (license license:bsd-2))) + +(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 + (package + (name "go-gopkg-in-check-v1") + (version "0.0.0-20161208181325-20d25e280405") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/check.v1") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) + (home-page "https://gopkg.in/check.v1") + (synopsis "Instructions") + (description + "Package check is a rich testing extension for Go's testing package. +") + (license license:bsd-2))) + +(define-public go-gopkg-in-yaml-v2-2.2.2 + (package + (name "go-gopkg-in-yaml-v2") + (version "2.2.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "01wj12jzsdqlnidpyjssmj0r4yavlqy7dwrg7adqd8dicjc4ncsa")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v2") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language. +") + (license license:asl2.0))) + +(define-public go-github-com-apex-log-1.9.0 + (package + (name "go-github-com-apex-log") + (version "1.9.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/apex/log") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ibqkncnb8wcwilg2kyfyl5541g69rg551iy6m61q6iwdn5vfhi2")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/apex/log")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) + ("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" + ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) + ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) + ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" + ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) + ("go-github-com-tj-go-spin-1.1.0" ,go-github-com-tj-go-spin-1.1.0) + ("go-github-com-tj-go-kinesis-0.0.0-20171128231115-08b17f58cb1b" + ,go-github-com-tj-go-kinesis-0.0.0-20171128231115-08b17f58cb1b) + ("go-github-com-tj-go-elastic-0.0.0-20171221160941-36157cbbebc2" + ,go-github-com-tj-go-elastic-0.0.0-20171221160941-36157cbbebc2) + ("go-github-com-tj-go-buffer-1.1.0" ,go-github-com-tj-go-buffer-1.1.0) + ("go-github-com-tj-assert-0.0.3" ,go-github-com-tj-assert-0.0.3) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-smartystreets-gunit-1.0.0" + ,go-github-com-smartystreets-gunit-1.0.0) + ("go-github-com-smartystreets-go-aws-auth-0.0.0-20180515143844-0c1422d1fdb9" + ,go-github-com-smartystreets-go-aws-auth-0.0.0-20180515143844-0c1422d1fdb9) + ("go-github-com-rogpeppe-fastuuid-1.1.0" + ,go-github-com-rogpeppe-fastuuid-1.1.0) + ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) + ("go-github-com-mattn-go-colorable-0.1.2" + ,go-github-com-mattn-go-colorable-0.1.2) + ("go-github-com-kr-pretty-0.2.0" ,go-github-com-kr-pretty-0.2.0) + ("go-github-com-jpillora-backoff-0.0.0-20180909062703-3050d21c67d7" + ,go-github-com-jpillora-backoff-0.0.0-20180909062703-3050d21c67d7) + ("go-github-com-google-uuid-1.1.1" ,go-github-com-google-uuid-1.1.1) + ("go-github-com-golang-protobuf-1.3.1" + ,go-github-com-golang-protobuf-1.3.1) + ("go-github-com-go-logfmt-logfmt-0.4.0" + ,go-github-com-go-logfmt-logfmt-0.4.0) + ("go-github-com-fatih-color-1.7.0" ,go-github-com-fatih-color-1.7.0) + ("go-github-com-aybabtme-rgbterm-0.0.0-20170906152045-cc83f3b3ce59" + ,go-github-com-aybabtme-rgbterm-0.0.0-20170906152045-cc83f3b3ce59) + ("go-github-com-aws-aws-sdk-go-1.20.6" + ,go-github-com-aws-aws-sdk-go-1.20.6) + ("go-github-com-aphistic-sweet-0.2.0" + ,go-github-com-aphistic-sweet-0.2.0) + ("go-github-com-aphistic-golf-0.0.0-20180712155816-02c07f170c5a" + ,go-github-com-aphistic-golf-0.0.0-20180712155816-02c07f170c5a) + ("go-github-com-apex-logs-1.0.0" ,go-github-com-apex-logs-1.0.0))) + (home-page "https://github.com/apex/log") + (synopsis "Handlers") + (description + "Package log implements a simple structured logging API designed with few assumptions. Designed for +centralized logging solutions such as Kinesis which require encoding and decoding before fanning-out +to handlers. +") + (license license:expat))) + +(define-public go-github-com-blang-semver-v4-4.0.0 + (package + (name "go-github-com-blang-semver-v4") + (version "4.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/blang/semver") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "14h9ys4n4kx9cbj42lkdf4i5k3nkll6sd62jcvl7cs565v6fiknz")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/blang/semver/v4")) + (home-page "https://github.com/blang/semver") + (synopsis #f) + (description #f) + (license license:expat))) + +(define-public go-github-com-buger-jsonparser-1.1.1 + (package + (name "go-github-com-buger-jsonparser") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/buger/jsonparser") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0qv2lsh2biwxn927941gqiv5pqg7n4v58j0i536pjp7pr17pq7dp")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/buger/jsonparser")) + (home-page "https://github.com/buger/jsonparser") + (synopsis + "Alternative JSON parser for Go (10x times faster standard library)") + (description + "It does not require you to know the structure of the payload (eg. create structs), and allows accessing fields by providing the path to them. It is up to @strong{10 times faster} than standard @code{encoding/json} package (depending on payload size and usage), @strong{allocates no memory}. See benchmarks below.") + (license license:expat))) + +(define-public go-github-com-bugsnag-bugsnag-go-1.5.1 + (package + (name "go-github-com-bugsnag-bugsnag-go") + (version "1.5.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/bugsnag/bugsnag-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "133yi7x5ygwg7iabl246nj2i3lqkkh0pmhpcw4maq2g0b8d7np54")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/bugsnag/bugsnag-go")) + (home-page "https://github.com/bugsnag/bugsnag-go") + (synopsis "Bugsnag error reporter for Go") + (description + "Package bugsnag captures errors in real-time and reports them to Bugsnag (@url{http://bugsnag.com,http://bugsnag.com}). +") + (license license:expat))) + +(define-public go-github-com-bugsnag-panicwrap-1.2.0 + (package + (name "go-github-com-bugsnag-panicwrap") + (version "1.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/bugsnag/panicwrap") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1dzsnpdy4b16h8gh6qr9k3bl5dfch7vmglqhsbcxwyli8s09pimx")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/bugsnag/panicwrap")) + (home-page "https://github.com/bugsnag/panicwrap") + (synopsis "panicwrap") + (description + "The panicwrap package provides functions for capturing and handling +panics in your application. It does this by re-executing the running +application and monitoring stderr for any panics. At the same time, +stdout/stderr/etc. are set to the same values so that data is shuttled +through properly, making the existence of panicwrap mostly transparent. +") + (license license:expat))) + +(define-public go-github-com-kr-pty-1.1.1 + (package + (name "go-github-com-kr-pty") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/pty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0383f0mb9kqjvncqrfpidsf8y6ns5zlrc91c6a74xpyxjwvzl2y6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/pty")) + (home-page "https://github.com/kr/pty") + (synopsis "pty") + (description + "Package pty is a wrapper for github.com/creack/pty, which provides +functions for working with Unix terminals. +") + (license license:expat))) + +(define-public go-github-com-kr-text-0.1.0 + (package + (name "go-github-com-kr-text") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1gm5bsl01apvc84bw06hasawyqm4q84vx1pm32wr9jnd7a8vjgj1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/text")) + (propagated-inputs + `(("go-github-com-kr-pty-1.1.1" ,go-github-com-kr-pty-1.1.1))) + (home-page "https://github.com/kr/text") + (synopsis #f) + (description + "Package text provides rudimentary functions for manipulating text in +paragraphs. +") + (license license:expat))) + +(define-public go-github-com-kr-pretty-0.2.1 + (package + (name "go-github-com-kr-pretty") + (version "0.2.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/pretty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0vzfz06y9q8gs2nxx0kys0591vzp78k0fvpb8digi5n15h3b25hy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/pretty")) + (propagated-inputs + `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) + (home-page "https://github.com/kr/pretty") + (synopsis #f) + (description + "Package pretty provides pretty-printing for Go values. This is +useful during debugging, to avoid wrapping long output lines in +the terminal. +") + (license license:expat))) + +(define-public go-github-com-frankban-quicktest-1.11.3 + (package + (name "go-github-com-frankban-quicktest") + (version "1.11.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/frankban/quicktest") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0d5njmwkfq2809vlimnlvy8ir6kln0c4cgdwr680fwsclpbr43qs")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/frankban/quicktest")) + (propagated-inputs + `(("go-github-com-kr-pretty-0.2.1" ,go-github-com-kr-pretty-0.2.1) + ("go-github-com-google-go-cmp-0.5.4" + ,go-github-com-google-go-cmp-0.5.4))) + (home-page "https://github.com/frankban/quicktest") + (synopsis "quicktest") + (description + "Package quicktest provides a collection of Go helpers for writing tests. +") + (license license:expat))) + +(define-public go-github-com-google-go-cmp-0.5.4 + (package + (name "go-github-com-google-go-cmp") + (version "0.5.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ld9pwb6l22g75g1zpa691l7q9ki7pjgpcqhwgdfr3va1zisr5ci")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") + (license license:bsd-3))) + +(define-public go-github-com-cilium-ebpf-0.4.0 + (package + (name "go-github-com-cilium-ebpf") + (version "0.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cilium/ebpf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1j33vfz8mxnqadkd17l0y3ll71gph3ndm8hwrwbwnf5px7bfv9yl")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/cilium/ebpf")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" + ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) + ("go-github-com-google-go-cmp-0.5.4" + ,go-github-com-google-go-cmp-0.5.4) + ("go-github-com-frankban-quicktest-1.11.3" + ,go-github-com-frankban-quicktest-1.11.3))) + (home-page "https://github.com/cilium/ebpf") + (synopsis "eBPF") + (description "Package ebpf is a toolkit for working with eBPF programs. +") + (license license:expat))) + +(define-public go-github-com-coreos-go-systemd-v22-22.1.0 + (package + (name "go-github-com-coreos-go-systemd-v22") + (version "22.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/coreos/go-systemd") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "127dj1iwp69yj74nwh9ckgc0mkk1mv4yzbxmbdxix1r7j6q35z3j")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/coreos/go-systemd/v22")) + (propagated-inputs + `(("go-github-com-godbus-dbus-v5-5.0.3" + ,go-github-com-godbus-dbus-v5-5.0.3))) + (home-page "https://github.com/coreos/go-systemd") + (synopsis "go-systemd") + (description "Go bindings to systemd. The project has several packages:") + (license license:asl2.0))) + +(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0 + (package + (name "go-github-com-cpuguy83-go-md2man-v2") + (version "2.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cpuguy83/go-md2man") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) + (propagated-inputs + `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" + ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) + ("go-github-com-russross-blackfriday-v2-2.0.1" + ,go-github-com-russross-blackfriday-v2-2.0.1) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0))) + (home-page "https://github.com/cpuguy83/go-md2man") + (synopsis "go-md2man") + (description "Converts markdown into roff (man pages).") + (license license:expat))) + +(define-public go-github-com-docker-go-units-0.4.0 + (package + (name "go-github-com-docker-go-units") + (version "0.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/docker/go-units") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0k8gja8ql4pqg5rzmqvka42vjfs6rzablak87whcnqba6qxpimvz")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/docker/go-units")) + (home-page "https://github.com/docker/go-units") + (synopsis "Introduction") + (description + "Package units provides helper function to parse and print size and time units +in human-readable format. +") + (license license:asl2.0))) + +(define-public go-github-com-godbus-dbus-v5-5.0.3 + (package + (name "go-github-com-godbus-dbus-v5") + (version "5.0.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/godbus/dbus") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1bkc904073k807yxg6mvqaxrr6ammmhginr9p54jfb55mz3hfw3s")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/godbus/dbus/v5")) + (home-page "https://github.com/godbus/dbus") + (synopsis "dbus") + (description + "Package dbus implements bindings to the D-Bus message bus system. +") + (license license:bsd-2))) + +(define-public go-github-com-yuin-goldmark-1.1.27 + (package + (name "go-github-com-yuin-goldmark") + (version "1.1.27") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/yuin/goldmark") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1872cqnii0kwiqcy81yin0idvjy5mdy4zlzz0csb319lcjs3b923")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/yuin/goldmark")) + (home-page "https://github.com/yuin/goldmark") + (synopsis "goldmark") + (description + "Package goldmark implements functions to convert markdown text to a desired format. +") + (license license:expat))) + +(define-public go-golang-org-x-mod-0.2.0 + (package + (name "go-golang-org-x-mod") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/mod") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fp6885dclq77mh73v7i54v2b9llpv4di193zc8vmsbbkkc483cl")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/mod")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" + ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) + ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" + ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) + ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" + ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) + (home-page "https://golang.org/x/mod") + (synopsis "mod") + (description + "This repository holds packages for writing tools +that work directly with Go module mechanics. +That is, it is for direct manipulation of Go modules themselves.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b + (package + (name "go-golang-org-x-net") + (version "0.0.0-20200226121028-0de0cce0169b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1db7s5kbzyh2zd5lpv05n7hp8wbwdvgk0wpiwrlnig94mkr0y5aq")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20190911185100-cd5d95a43a6e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1nqkyz2y1qvqcma52ijh02s8aiqmkfb95j08f6zcjhbga3ds6hds")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the +ones provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543 + (package + (name "go-golang-org-x-xerrors") + (version "0.0.0-20191204190536-9bdfabe68543") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/xerrors") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1yjfi1bk9xb81lqn85nnm13zz725wazvrx3b50hx19qmwg7a4b0c")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/xerrors")) + (home-page "https://golang.org/x/xerrors") + (synopsis #f) + (description + "Package xerrors implements functions to manipulate errors. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20200619180055-7c47624df98f + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20200619180055-7c47624df98f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fhzwd32j7w9g3algq0zj8g7ivx3f0mn9nx9mj046wdscryn49mk")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) + ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" + ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) + ("go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b" + ,go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b) + ("go-golang-org-x-mod-0.2.0" ,go-golang-org-x-mod-0.2.0) + ("go-github-com-yuin-goldmark-1.1.27" + ,go-github-com-yuin-goldmark-1.1.27))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-github-com-kisielk-errcheck-1.5.0 + (package + (name "go-github-com-kisielk-errcheck") + (version "1.5.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kisielk/errcheck") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ci3jz2px74pfmr42jv7dpx7fdzx08vai4czp9fkiyb0gcaiqsk6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kisielk/errcheck")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20200619180055-7c47624df98f" + ,go-golang-org-x-tools-0.0.0-20200619180055-7c47624df98f))) + (home-page "https://github.com/kisielk/errcheck") + (synopsis "errcheck") + (description + "errcheck is a program for checking for unchecked errors in go programs.") + (license license:expat))) + +(define-public go-github-com-kisielk-gotool-1.0.0 + (package + (name "go-github-com-kisielk-gotool") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kisielk/gotool") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "14af2pa0ssyp8bp2mvdw184s5wcysk6akil3wzxmr05wwy951iwn")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kisielk/gotool")) + (home-page "https://github.com/kisielk/gotool") + (synopsis "gotool") + (description + "Package gotool contains utility functions used to implement the standard +\"cmd/go\" tool, provided as a convenience to developers who want to write +tools with similar semantics. +") + (license license:expat))) + +(define-public go-github-com-yuin-goldmark-1.2.1 + (package + (name "go-github-com-yuin-goldmark") + (version "1.2.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/yuin/goldmark") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12rsnsf65drcp0jfw2jl9w589vsn3pxdk1zh3v9q908iigngrcmy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/yuin/goldmark")) + (home-page "https://github.com/yuin/goldmark") + (synopsis "goldmark") + (description + "Package goldmark implements functions to convert markdown text to a desired format. +") + (license license:expat))) + +(define-public go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20191011191535-87dc89f01550") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0z4i1m2yn3f31ci7wvcm2rxkx2yiv7a78mfzklncmsz2k97rlh2g")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" + ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) + ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" + ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190620200207-3b0461eec859") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0l00c8l0a8xnv6qdpwfzxxsr58jggacgzdrwiprrfx2xqm37b6d5")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20190423024810-112230192c58 + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20190423024810-112230192c58") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "05i2k43j2d0llq768hg5pf3hb2yhfzp9la1w5wp0rsnnzblr0lfn")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the +ones provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7 + (package + (name "go-golang-org-x-xerrors") + (version "0.0.0-20190717185122-a985d3407aa7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/xerrors") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "00wzr5w8aadipgc3rkk8f11i41znskfj9ix5nhhaxyg7isrslgcj")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/xerrors")) + (home-page "https://golang.org/x/xerrors") + (synopsis #f) + (description + "Package xerrors implements functions to manipulate errors. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20191119224855-298f0cb1881e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0l4pqwib2wnfnix6nvxl0yrq87ipi7ff1rz6z5bxfzy9dki1nzmv")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7" + ,go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7) + ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" + ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) + ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" + ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898 + (package + (name "go-golang-org-x-xerrors") + (version "0.0.0-20191011141410-1b5146add898") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/xerrors") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0w2akj91krxjag0xdhsg78470888nicc5ismc2ap9jqpss6v1zih")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/xerrors")) + (home-page "https://golang.org/x/xerrors") + (synopsis #f) + (description + "Package xerrors implements functions to manipulate errors. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-mod-0.3.0 + (package + (name "go-golang-org-x-mod") + (version "0.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/mod") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ldgbx2zpprbsfn6p8pfgs4nn87gwbfcv2z0fa7n8alwsq2yw78q")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/mod")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" + ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) + ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" + ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) + ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" + ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) + (home-page "https://golang.org/x/mod") + (synopsis "mod") + (description + "This repository holds packages for writing tools +that work directly with Go module mechanics. +That is, it is for direct manipulation of Go modules themselves.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190215142949-d0b11bdaac8a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20190308221718-c2843e01d9a2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-text-0.3.0 + (package + (name "go-golang-org-x-text") + (version "0.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/text")) + (home-page "https://golang.org/x/text") + (synopsis "Go Text") + (description + "text is a repository of text-related packages related to internationalization +(i18n) and localization (l10n), such as character encodings, text +transformations, and locale-specific text handling. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190404232315-eb5bcb51f2a3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "17k4g8krxbl84gzcs275b7gsh66dzm15fdxivjnx9xz8q84l4kby")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20190412213103-97732733099d + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190412213103-97732733099d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "118hkp01i4z1f5h6hcjm0ff2ngqhrzj1f7731n0kw8dr6hvbx0sw")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20200622213623-75b288015ac9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18vlncvvs11ds3zaaziqjlg5s2vcwi3496nn6qv7p0dp94j5pwa2")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" + ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) + ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" + ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200930185726-fdedc70b468f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1njlfhjbvi4lxvjbq8zswrb0y0q4jd2p6x51h1q6vmyzi9af6869")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20180917221912-90fa682c2a6e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-golang-org-x-text-0.3.3 + (package + (name "go-golang-org-x-text") + (version "0.3.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19pihqm3phyndmiw6i42pdv6z1rbvlqlsnhsyqf9gsnn0qnmqqlh")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/text")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" + ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) + (home-page "https://golang.org/x/text") + (synopsis "Go Text") + (description + "text is a repository of text-related packages related to internationalization +(i18n) and localization (l10n), such as character encodings, text +transformations, and locale-specific text handling. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20201021035429-f5854403a974 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20201021035429-f5854403a974") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1vw63zpmhi337f3gc432x3wkib4j2ia8dy7if31wxwb9dgqvy222")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) + ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" + ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) + ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" + ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9 + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20201020160332-67f06af15bc9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "093p4panc808ak5bamzz7m9nb0xxib7778jpnr6f0xkz1n4fzyw5")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the +ones provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1 + (package + (name "go-golang-org-x-xerrors") + (version "0.0.0-20200804184101-5ec99f83aff1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/xerrors") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1dbzc3gmf2haazpv7cgmv97rq40g2xzwbglc17vas8dwhgwgwrzb")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/xerrors")) + (home-page "https://golang.org/x/xerrors") + (synopsis #f) + (description + "Package xerrors implements functions to manipulate errors. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20210106214847-113979e3529a + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20210106214847-113979e3529a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0pq1a7hkamqdwsajyfrb27s56cvxz5838krsgyqz346s2djwdrzl")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" + ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) + ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" + ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) + ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" + ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) + ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) + ("go-github-com-yuin-goldmark-1.2.1" + ,go-github-com-yuin-goldmark-1.2.1))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-github-com-gogo-protobuf-1.3.2 + (package + (name "go-github-com-gogo-protobuf") + (version "1.3.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gogo/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0dfv1bhx5zhb5bsj5sj757nkacf2swp1ajpcyj9d0b37n602m18a")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/gogo/protobuf")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20210106214847-113979e3529a" + ,go-golang-org-x-tools-0.0.0-20210106214847-113979e3529a) + ("go-github-com-kisielk-gotool-1.0.0" + ,go-github-com-kisielk-gotool-1.0.0) + ("go-github-com-kisielk-errcheck-1.5.0" + ,go-github-com-kisielk-errcheck-1.5.0))) + (home-page "https://github.com/gogo/protobuf") + (synopsis "Protocol Buffers for Go with Gadgets") + (description + "gogoprotobuf is a fork of @url{https://github.com/golang/protobuf,golang/protobuf} with extra code generation features.") + (license license:bsd-3))) + +(define-public go-github-com-opencontainers-runtime-spec-1.0.2 + (package + (name "go-github-com-opencontainers-runtime-spec") + (version "1.0.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/runtime-spec") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19w981vcmd5lp2hy0630x6ayb8zz17n2vxqm2py5mg945xflcizg")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) + (home-page "https://github.com/opencontainers/runtime-spec") + (synopsis "Open Container Initiative Runtime Specification") + (description + "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") + (license license:asl2.0))) + +(define-public go-github-com-pkg-errors-0.9.1 + (package + (name "go-github-com-pkg-errors") + (version "0.9.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pkg/errors") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1761pybhc2kqr6v5fm8faj08x9bql8427yqg6vnfv6nhrasx1mwq")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pkg/errors")) + (home-page "https://github.com/pkg/errors") + (synopsis "errors") + (description "Package errors provides simple error handling primitives. +") + (license license:bsd-2))) + +(define-public go-github-com-davecgh-go-spew-1.1.1 + (package + (name "go-github-com-davecgh-go-spew") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/davecgh/go-spew") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/davecgh/go-spew")) + (home-page "https://github.com/davecgh/go-spew") + (synopsis "go-spew") + (description + "Go-spew implements a deep pretty printer for Go data structures to aid in +debugging. A comprehensive suite of tests with 100% test coverage is provided +to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage +report. Go-spew is licensed under the liberal ISC license, so it may be used in +open source or commercial projects.") + (license license:isc))) + +(define-public go-github-com-stretchr-testify-1.2.2 + (package + (name "go-github-com-stretchr-testify") + (version "1.2.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0dlszlshlxbmmfxj5hlwgv3r22x0y1af45gn1vd198nvvs3pnvfs")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20191026070338-33540a1f6037") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0fjcv0vzvi6za0b4xmnk3932pr9f9gczzf03y0kgq3ry9rqg169y")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-sirupsen-logrus-1.7.0 + (package + (name "go-github-com-sirupsen-logrus") + (version "1.7.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sirupsen/logrus") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1a59pw7zimvm8k423iq9l4f4qjj1ia1xc6pkmhwl2mxc46y2n442")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/sirupsen/logrus")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037" + ,go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037) + ("go-github-com-stretchr-testify-1.2.2" + ,go-github-com-stretchr-testify-1.2.2) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/sirupsen/logrus") + (synopsis "Logrus") + (description + "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. +") + (license license:expat))) + +(define-public go-github-com-davecgh-go-spew-1.1.0 + (package + (name "go-github-com-davecgh-go-spew") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/davecgh/go-spew") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/davecgh/go-spew")) + (home-page "https://github.com/davecgh/go-spew") + (synopsis "go-spew") + (description + "Go-spew implements a deep pretty printer for Go data structures to aid in +debugging. A comprehensive suite of tests with 100% test coverage is provided +to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage +report. Go-spew is licensed under the liberal ISC license, so it may be used in +open source or commercial projects.") + (license license:isc))) + +(define-public go-github-com-stretchr-objx-0.1.0 + (package + (name "go-github-com-stretchr-objx") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/objx") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/objx")) + (home-page "https://github.com/stretchr/objx") + (synopsis "Objx") + (description + "Objx - Go package for dealing with maps, slices, JSON and other data. +") + (license license:expat))) + +(define-public go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c + (package + (name "go-gopkg-in-yaml-v3") + (version "3.0.0-20200313102051-9f266ea9e77c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v3") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1bbai3lzb50m0x2vwsdbagrbhvfylj9k1m32hgbqwldqx4p9ay35")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v3") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language. +") + (license #f))) + +(define-public go-github-com-stretchr-testify-1.6.1 + (package + (name "go-github-com-stretchr-testify") + (version "1.6.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1yhiqqzjvi63pf01rgzx68gqkkvjx03fvl5wk30br5l6s81s090l")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (propagated-inputs + `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" + ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) + ("go-github-com-stretchr-objx-0.1.0" + ,go-github-com-stretchr-objx-0.1.0) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.0" + ,go-github-com-davecgh-go-spew-1.1.0))) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +") + (license license:expat))) + +(define-public go-github-com-burntsushi-toml-0.3.1 + (package + (name "go-github-com-burntsushi-toml") + (version "0.3.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/BurntSushi/toml") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fjdwwfzyzllgiwydknf1pwjvy49qxfsczqx5gz3y0izs7as99j6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/BurntSushi/toml")) + (home-page "https://github.com/BurntSushi/toml") + (synopsis "TOML parser and encoder for Go with reflection") + (description + "Package toml implements decoding and encoding of TOML files. +") + (license license:expat))) + +(define-public go-github-com-pmezard-go-difflib-1.0.0 + (package + (name "go-github-com-pmezard-go-difflib") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pmezard/go-difflib") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pmezard/go-difflib")) + (home-page "https://github.com/pmezard/go-difflib") + (synopsis "go-difflib") + (description + "Go-difflib is a partial port of python 3 difflib package. Its main goal +was to make unified and context diff available in pure Go, mostly for +testing purposes.") + (license license:bsd-3))) + +(define-public go-github-com-russross-blackfriday-v2-2.0.1 + (package + (name "go-github-com-russross-blackfriday-v2") + (version "2.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/russross/blackfriday") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0nlz7isdd4rgnwzs68499hlwicxz34j2k2a0b8jy0y7ycd2bcr5j")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/russross/blackfriday/v2")) + (home-page "https://github.com/russross/blackfriday") + (synopsis "Blackfriday") + (description "Package blackfriday is a markdown processor. +") + (license license:bsd-2))) + +(define-public go-github-com-shurcool-sanitized-anchor-name-1.0.0 + (package + (name "go-github-com-shurcool-sanitized-anchor-name") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/shurcooL/sanitized_anchor_name") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1gv9p2nr46z80dnfjsklc6zxbgk96349sdsxjz05f3z6wb6m5l8f")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/shurcooL/sanitized_anchor_name")) + (home-page "https://github.com/shurcooL/sanitized_anchor_name") + (synopsis "sanitized_anchor_name") + (description + "Package sanitized_anchor_name provides a func to create sanitized anchor names. +") + (license license:expat))) + +(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d + (package + (name "go-github-com-cpuguy83-go-md2man-v2") + (version "2.0.0-20190314233015-f79a8a8ca69d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cpuguy83/go-md2man") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) + (propagated-inputs + `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" + ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) + ("go-github-com-russross-blackfriday-v2-2.0.1" + ,go-github-com-russross-blackfriday-v2-2.0.1) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0))) + (home-page "https://github.com/cpuguy83/go-md2man") + (synopsis "go-md2man") + (description "Converts markdown into roff (man pages).") + (license license:expat))) + +(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 + (package + (name "go-gopkg-in-check-v1") + (version "0.0.0-20161208181325-20d25e280405") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/check.v1") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) + (home-page "https://gopkg.in/check.v1") + (synopsis "Instructions") + (description + "Package check is a rich testing extension for Go's testing package. +") + (license license:bsd-2))) + +(define-public go-gopkg-in-yaml-v2-2.2.2 + (package + (name "go-gopkg-in-yaml-v2") + (version "2.2.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "01wj12jzsdqlnidpyjssmj0r4yavlqy7dwrg7adqd8dicjc4ncsa")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v2") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language. +") + (license license:asl2.0))) + +(define-public go-github-com-urfave-cli-1.22.2 + (package + (name "go-github-com-urfave-cli") + (version "1.22.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/urfave/cli") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "10mcnvi5qmn00vpyk6si8gjka7p654wr9hac4zc9w5h3ickhvbdc")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/urfave/cli")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) + ("go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d" + ,go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d) + ("go-github-com-burntsushi-toml-0.3.1" + ,go-github-com-burntsushi-toml-0.3.1))) + (home-page "https://github.com/urfave/cli") + (synopsis "cli") + (description + "Package cli provides a minimal framework for creating and organizing command line +Go applications. cli is designed to be easy to understand and write, the most simple +cli application can be written as follows: +") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20210124154548-22da62e12c0c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "17gp3dl75wq3x7j9z1pqgcyvjhvy9jaln1wbscy57al3whdsjp07")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-containerd-cgroups-1.0.1 + (package + (name "go-github-com-containerd-cgroups") + (version "1.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/cgroups") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1p992w942xba9z77nhhbc6nk5q09c3zxxhq9n7fm5alx3a8fwbpl")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/cgroups")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" + ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) + ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-sirupsen-logrus-1.7.0" + ,go-github-com-sirupsen-logrus-1.7.0) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-runtime-spec-1.0.2" + ,go-github-com-opencontainers-runtime-spec-1.0.2) + ("go-github-com-gogo-protobuf-1.3.2" + ,go-github-com-gogo-protobuf-1.3.2) + ("go-github-com-godbus-dbus-v5-5.0.3" + ,go-github-com-godbus-dbus-v5-5.0.3) + ("go-github-com-docker-go-units-0.4.0" + ,go-github-com-docker-go-units-0.4.0) + ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" + ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) + ("go-github-com-coreos-go-systemd-v22-22.1.0" + ,go-github-com-coreos-go-systemd-v22-22.1.0) + ("go-github-com-cilium-ebpf-0.4.0" ,go-github-com-cilium-ebpf-0.4.0))) + (home-page "https://github.com/containerd/cgroups") + (synopsis "cgroups") + (description + "Go package for creating, managing, inspecting, and destroying cgroups. +The resources format for settings on the cgroup uses the OCI runtime-spec found +@url{https://github.com/opencontainers/runtime-spec,here}.") + (license license:asl2.0))) + +(define-public go-github-com-microsoft-go-winio-0.4.17 + (package + (name "go-github-com-microsoft-go-winio") + (version "0.4.17") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/microsoft/go-winio") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0gmgiak4x4gdyr17zm4b9vvharflk9pz5aj5jayh9hq50133b2f9")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/Microsoft/go-winio")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" + ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) + ("go-github-com-sirupsen-logrus-1.7.0" + ,go-github-com-sirupsen-logrus-1.7.0) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) + (home-page "https://github.com/Microsoft/go-winio") + (synopsis "go-winio") + (description + "This repository contains utilities for efficiently performing Win32 IO operations in +Go. Currently, this is focused on accessing named pipes and other file handles, and +for using named pipes as a net transport.") + (license license:expat))) + +(define-public go-github-com-cenkalti-backoff-v4-4.1.1 + (package + (name "go-github-com-cenkalti-backoff-v4") + (version "4.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cenkalti/backoff") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "08c28226q612i1pv83161y57qh16631vpc51ai9f76qfrzsy946z")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/cenkalti/backoff/v4")) + (home-page "https://github.com/cenkalti/backoff") + (synopsis "Exponential Backoff") + (description + "Package backoff implements backoff algorithms for retrying operations. +") + (license license:expat))) + +(define-public go-github-com-containerd-containerd-1.4.9 + (package + (name "go-github-com-containerd-containerd") + (version "1.4.9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/containerd") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ykikks6ihgg899ibk9m9m0hqrbss0cx7l7z4yjb873b10bacj52")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/containerd")) + (home-page "https://github.com/containerd/containerd") + (synopsis "Now Recruiting") + (description + "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") + (license license:asl2.0))) + +(define-public go-github-com-microsoft-hcsshim-0.8.23 + (package + (name "go-github-com-microsoft-hcsshim") + (version "0.8.23") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/microsoft/hcsshim") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19gmwvq72vrlw6wvnmz4rjmg6r34c1nbqk71mj4bqq08rpi3i89r")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/Microsoft/hcsshim")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) + ("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) + ("go-golang-org-x-sys-0.0.0-20210324051608-47abb6519492" + ,go-golang-org-x-sys-0.0.0-20210324051608-47abb6519492) + ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" + ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) + ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) + ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) + ("go-github-com-sirupsen-logrus-1.8.1" + ,go-github-com-sirupsen-logrus-1.8.1) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" + ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) + ("go-github-com-gogo-protobuf-1.3.2" + ,go-github-com-gogo-protobuf-1.3.2) + ("go-github-com-containerd-typeurl-1.0.2" + ,go-github-com-containerd-typeurl-1.0.2) + ("go-github-com-containerd-ttrpc-1.1.0" + ,go-github-com-containerd-ttrpc-1.1.0) + ("go-github-com-containerd-go-runc-1.0.0" + ,go-github-com-containerd-go-runc-1.0.0) + ("go-github-com-containerd-fifo-1.0.0" + ,go-github-com-containerd-fifo-1.0.0) + ("go-github-com-containerd-continuity-0.1.0" + ,go-github-com-containerd-continuity-0.1.0) + ("go-github-com-containerd-containerd-1.4.9" + ,go-github-com-containerd-containerd-1.4.9) + ("go-github-com-containerd-console-1.0.2" + ,go-github-com-containerd-console-1.0.2) + ("go-github-com-containerd-cgroups-1.0.1" + ,go-github-com-containerd-cgroups-1.0.1) + ("go-github-com-cenkalti-backoff-v4-4.1.1" + ,go-github-com-cenkalti-backoff-v4-4.1.1) + ("go-github-com-microsoft-go-winio-0.4.17" + ,go-github-com-microsoft-go-winio-0.4.17))) + (home-page "https://github.com/Microsoft/hcsshim") + (synopsis "hcsshim") + (description + "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") + (license license:expat))) + +(define-public go-github-com-containerd-aufs-1.0.0 + (package + (name "go-github-com-containerd-aufs") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/aufs") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0jyyyf6sr910m602axmp4h4j1l2n680cpp60z09pvprz55zi4ba0")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/aufs")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" + ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" + ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) + ("go-github-com-containerd-containerd-1.5.0-beta.3" + ,go-github-com-containerd-containerd-1.5.0-beta.3))) + (home-page "https://github.com/containerd/aufs") + (synopsis "aufs snapshotter") + (description + "AUFS implementation of the snapshot interface for containerd.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-btrfs-1.0.0 + (package + (name "go-github-com-containerd-btrfs") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/btrfs") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1yf38gg41y1v12m0cl81r9q7d13170a4npzqxhbz7qn32zr23kzn")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/btrfs")) + (propagated-inputs + `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) + (home-page "https://github.com/containerd/btrfs") + (synopsis "go-btrfs") + (description + "Package btrfs provides bindings for working with btrfs partitions from Go. +") + (license license:asl2.0))) + +(define-public go-github-com-cilium-ebpf-0.4.0 + (package + (name "go-github-com-cilium-ebpf") + (version "0.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cilium/ebpf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1j33vfz8mxnqadkd17l0y3ll71gph3ndm8hwrwbwnf5px7bfv9yl")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/cilium/ebpf")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" + ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) + ("go-github-com-google-go-cmp-0.5.4" + ,go-github-com-google-go-cmp-0.5.4) + ("go-github-com-frankban-quicktest-1.11.3" + ,go-github-com-frankban-quicktest-1.11.3))) + (home-page "https://github.com/cilium/ebpf") + (synopsis "eBPF") + (description "Package ebpf is a toolkit for working with eBPF programs. +") + (license license:expat))) + +(define-public go-github-com-containerd-cgroups-1.0.1 + (package + (name "go-github-com-containerd-cgroups") + (version "1.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/cgroups") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1p992w942xba9z77nhhbc6nk5q09c3zxxhq9n7fm5alx3a8fwbpl")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/cgroups")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" + ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) + ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-sirupsen-logrus-1.7.0" + ,go-github-com-sirupsen-logrus-1.7.0) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-runtime-spec-1.0.2" + ,go-github-com-opencontainers-runtime-spec-1.0.2) + ("go-github-com-gogo-protobuf-1.3.2" + ,go-github-com-gogo-protobuf-1.3.2) + ("go-github-com-godbus-dbus-v5-5.0.3" + ,go-github-com-godbus-dbus-v5-5.0.3) + ("go-github-com-docker-go-units-0.4.0" + ,go-github-com-docker-go-units-0.4.0) + ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" + ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) + ("go-github-com-coreos-go-systemd-v22-22.1.0" + ,go-github-com-coreos-go-systemd-v22-22.1.0) + ("go-github-com-cilium-ebpf-0.4.0" ,go-github-com-cilium-ebpf-0.4.0))) + (home-page "https://github.com/containerd/cgroups") + (synopsis "cgroups") + (description + "Go package for creating, managing, inspecting, and destroying cgroups. +The resources format for settings on the cgroup uses the OCI runtime-spec found +@url{https://github.com/opencontainers/runtime-spec,here}.") + (license license:asl2.0))) + +(define-public go-github-com-mitchellh-go-homedir-1.1.0 + (package + (name "go-github-com-mitchellh-go-homedir") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mitchellh/go-homedir") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ydzkipf28hwj2bfxqmwlww47khyk6d152xax4bnyh60f4lq3nx1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mitchellh/go-homedir")) + (home-page "https://github.com/mitchellh/go-homedir") + (synopsis "go-homedir") + (description + "This is a Go library for detecting the user's home directory without +the use of cgo, so the library can be used in cross-compilation environments.") + (license license:expat))) + +(define-public go-github-com-armon-consul-api-0.0.0-20180202201655-eb2c6b5be1b6 + (package + (name "go-github-com-armon-consul-api") + (version "0.0.0-20180202201655-eb2c6b5be1b6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/armon/consul-api") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1j6fdr1sg36qy4n4xjl7brq739fpm5npq98cmvklzjc9qrx98nk9")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/armon/consul-api")) + (home-page "https://github.com/armon/consul-api") + (synopsis "consul-api") + (description + " Please use @url{https://github.com/hashicorp/consul/tree/master/api,consul api package} instead. +Godocs for that package @url{http://godoc.org/github.com/hashicorp/consul/api,are here}.") + (license license:mpl2.0))) + +(define-public go-github-com-coreos-bbolt-1.3.2 + (package + (name "go-github-com-coreos-bbolt") + (version "1.3.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/etcd-io/bbolt") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "13d5l6p6c5wvkr6vn9hkhz9c593qifn7fgx0hg4d6jcvg1y0bnm2")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/coreos/bbolt")) + (home-page "https://github.com/coreos/bbolt") + (synopsis "bbolt") + (description + "package bbolt implements a low-level key/value store in pure Go. It supports +fully serializable transactions, ACID semantics, and lock-free MVCC with +multiple readers and a single writer. Bolt can be used for projects that +want a simple data store without the need to add large dependencies such as +Postgres or MySQL. +") + (license license:expat))) + +(define-public go-github-com-coreos-etcd-3.3.10+incompatible + (package + (name "go-github-com-coreos-etcd") + (version "3.3.10+incompatible") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/etcd-io/etcd") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1x2ii1hj8jraba8rbxz6dmc03y3sjxdnzipdvg6fywnlq1f3l3wl")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/coreos/etcd")) + (home-page "https://github.com/coreos/etcd") + (synopsis "etcd") + (description + "Package main is a simple wrapper of the real etcd entrypoint package +(located at github.com/coreos/etcd/etcdmain) to ensure that etcd is still +\"go getable\"; e.g. `go get github.com/coreos/etcd` works as expected and +builds a binary in $GOBIN/etcd +") + (license license:asl2.0))) + +(define-public go-github-com-golang-groupcache-0.0.0-20190129154638-5b532d6fd5ef + (package + (name "go-github-com-golang-groupcache") + (version "0.0.0-20190129154638-5b532d6fd5ef") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/groupcache") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ls2i4ixyd4r2556j7c5jmlligjb35gfvxknrdn2abjmcahgqd6h")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/groupcache")) + (home-page "https://github.com/golang/groupcache") + (synopsis "groupcache") + (description + "Package groupcache provides a data loading mechanism with caching +and de-duplication that works across a set of peer processes. +") + (license license:asl2.0))) + +(define-public go-github-com-gorilla-websocket-1.4.0 + (package + (name "go-github-com-gorilla-websocket") + (version "1.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gorilla/websocket") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "00i4vb31nsfkzzk7swvx3i75r2d960js3dri1875vypk3v2s0pzk")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/gorilla/websocket")) + (home-page "https://github.com/gorilla/websocket") + (synopsis "Gorilla WebSocket") + (description + "Package websocket implements the WebSocket protocol defined in @url{https://rfc-editor.org/rfc/rfc6455.html,RFC 6455}. +") + (license license:bsd-2))) + +(define-public go-github-com-grpc-ecosystem-go-grpc-middleware-1.0.0 + (package + (name "go-github-com-grpc-ecosystem-go-grpc-middleware") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc-ecosystem/go-grpc-middleware") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0lwgxih021xfhfb1xb9la5f98bpgpaiz63sbllx77qwwl2rmhrsp")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/grpc-ecosystem/go-grpc-middleware")) + (home-page "https://github.com/grpc-ecosystem/go-grpc-middleware") + (synopsis "Go gRPC Middleware") + (description + "`grpc_middleware` is a collection of gRPC middleware packages: interceptors, helpers and tools. +") + (license license:asl2.0))) + +(define-public go-github-com-grpc-ecosystem-grpc-gateway-1.9.0 + (package + (name "go-github-com-grpc-ecosystem-grpc-gateway") + (version "1.9.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc-ecosystem/grpc-gateway") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1r4y48c76yxc2hpqszfjirvh7zxjb6z72qmk95li12ar79dhv3dy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/grpc-ecosystem/grpc-gateway")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.0.0-20170812160011-eb3733d160e7" + ,go-gopkg-in-yaml-v2-2.0.0-20170812160011-eb3733d160e7) + ("go-gopkg-in-resty-v1-1.12.0" ,go-gopkg-in-resty-v1-1.12.0) + ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" + ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) + ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) + ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" + ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) + ("go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8" + ,go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8) + ("go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3" + ,go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3) + ("go-github-com-rogpeppe-fastuuid-0.0.0-20150106093220-6724a57986af" + ,go-github-com-rogpeppe-fastuuid-0.0.0-20150106093220-6724a57986af) + ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-ghodss-yaml-1.0.0" ,go-github-com-ghodss-yaml-1.0.0))) + (home-page "https://github.com/grpc-ecosystem/grpc-gateway") + (synopsis "grpc-gateway") + (description + "The grpc-gateway is a plugin of the Google protocol buffers compiler +@url{https://github.com/protocolbuffers/protobuf,protoc}. +It reads protobuf service definitions and generates a reverse-proxy server which +translates a RESTful HTTP API into gRPC. This server is generated according to the +@url{https://github.com/googleapis/googleapis/raw/master/google/api/http.proto#L46,(code google.api.http)} +annotations in your service definitions.") + (license license:bsd-3))) + +(define-public go-github-com-hashicorp-hcl-1.0.0 + (package + (name "go-github-com-hashicorp-hcl") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/hcl") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0q6ml0qqs0yil76mpn4mdx4lp94id8vbv575qm60jzl1ijcl5i66")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/hcl")) + (propagated-inputs + `(("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/hashicorp/hcl") + (synopsis "HCL") + (description "Package hcl decodes HCL into usable Go structures. +") + (license license:mpl2.0))) + +(define-public go-github-com-magiconair-properties-1.8.0 + (package + (name "go-github-com-magiconair-properties") + (version "1.8.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/magiconair/properties") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1a10362wv8a8qwb818wygn2z48lgzch940hvpv81hv8gc747ajxn")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/magiconair/properties")) + (home-page "https://github.com/magiconair/properties") + (synopsis "Overview") + (description + "Package properties provides functions for reading and writing +ISO-8859-1 and UTF-8 encoded .properties files and has +support for recursive property expansion. +") + (license license:bsd-2))) + +(define-public go-github-com-pelletier-go-toml-1.2.0 + (package + (name "go-github-com-pelletier-go-toml") + (version "1.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pelletier/go-toml") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fjzpcjng60mc3a4b2ql5a00d5gah84wj740dabv9kq67mpg8fxy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pelletier/go-toml")) + (home-page "https://github.com/pelletier/go-toml") + (synopsis "go-toml") + (description "Package toml is a TOML parser and manipulation library. +") + (license #f))) + +(define-public go-github-com-prometheus-common-0.4.0 + (package + (name "go-github-com-prometheus-common") + (version "0.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/common") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "00008pczafy982m59n1j31pnp41f4grbc2c40jccp52xg3m5klmr")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/common")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1) + ("go-gopkg-in-alecthomas-kingpin-v2-2.2.6" + ,go-gopkg-in-alecthomas-kingpin-v2-2.2.6) + ("go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5" + ,go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5) + ("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" + ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) + ("go-golang-org-x-net-0.0.0-20181114220301-adae6a3d119a" + ,go-golang-org-x-net-0.0.0-20181114220301-adae6a3d119a) + ("go-github-com-sirupsen-logrus-1.2.0" + ,go-github-com-sirupsen-logrus-1.2.0) + ("go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d" + ,go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d) + ("go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910" + ,go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910) + ("go-github-com-prometheus-client-golang-0.9.1" + ,go-github-com-prometheus-client-golang-0.9.1) + ("go-github-com-pkg-errors-0.8.0" ,go-github-com-pkg-errors-0.8.0) + ("go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223" + ,go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223) + ("go-github-com-matttproud-golang-protobuf-extensions-1.0.1" + ,go-github-com-matttproud-golang-protobuf-extensions-1.0.1) + ("go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515" + ,go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515) + ("go-github-com-julienschmidt-httprouter-1.2.0" + ,go-github-com-julienschmidt-httprouter-1.2.0) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0) + ("go-github-com-gogo-protobuf-1.1.1" + ,go-github-com-gogo-protobuf-1.1.1) + ("go-github-com-go-stack-stack-1.8.0" + ,go-github-com-go-stack-stack-1.8.0) + ("go-github-com-go-logfmt-logfmt-0.3.0" + ,go-github-com-go-logfmt-logfmt-0.3.0) + ("go-github-com-go-kit-kit-0.8.0" ,go-github-com-go-kit-kit-0.8.0) + ("go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973" + ,go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973) + ("go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf" + ,go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf) + ("go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc" + ,go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc))) + (home-page "https://github.com/prometheus/common") + (synopsis "Common") + (description + "This repository contains Go libraries that are shared across Prometheus +components and libraries. They are considered internal to Prometheus, without +any stability guarantees for external usage.") + (license license:asl2.0))) + +(define-public go-github-com-prometheus-procfs-0.0.0-20190507164030-5867b95ac084 + (package + (name "go-github-com-prometheus-procfs") + (version "0.0.0-20190507164030-5867b95ac084") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/procfs") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1rahdk62ajj4zpfb3mgzjqip773la9fb0m87m7s9a0b39l3fmzvr")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/procfs")) + (propagated-inputs + `(("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" + ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4))) + (home-page "https://github.com/prometheus/procfs") + (synopsis "procfs") + (description + "Package procfs provides functions to retrieve system, kernel and process +metrics from the pseudo-filesystem proc. +") + (license license:asl2.0))) + +(define-public go-github-com-oneofone-xxhash-1.2.2 + (package + (name "go-github-com-oneofone-xxhash") + (version "1.2.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/OneOfOne/xxhash") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1mjfhrwhvxa48rycjnqpqzm521i38h1hdyz6pdwmhd7xb8j6gwi6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/OneOfOne/xxhash")) + (home-page "https://github.com/OneOfOne/xxhash") + (synopsis "xxhash") + (description + "This is a native Go implementation of the excellent @url{https://github.com/Cyan4973/xxHash,xxhash}* algorithm, an extremely fast non-cryptographic Hash algorithm, working at speeds close to RAM limits.") + (license license:asl2.0))) + +(define-public go-github-com-spaolacci-murmur3-0.0.0-20180118202830-f09979ecbc72 + (package + (name "go-github-com-spaolacci-murmur3") + (version "0.0.0-20180118202830-f09979ecbc72") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/spaolacci/murmur3") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1lv3zyz3jy2d76bhvvs8svygx66606iygdvwy5cwc0p5z8yghq25")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/spaolacci/murmur3")) + (home-page "https://github.com/spaolacci/murmur3") + (synopsis "murmur3") + (description + "Package murmur3 implements Austin Appleby's non-cryptographic MurmurHash3. +") + (license license:bsd-3))) + +(define-public go-github-com-cespare-xxhash-1.1.0 + (package + (name "go-github-com-cespare-xxhash") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cespare/xxhash") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1qyzlcdcayavfazvi03izx83fvip8h36kis44zr2sg7xf6sx6l4x")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/cespare/xxhash")) + (propagated-inputs + `(("go-github-com-spaolacci-murmur3-0.0.0-20180118202830-f09979ecbc72" + ,go-github-com-spaolacci-murmur3-0.0.0-20180118202830-f09979ecbc72) + ("go-github-com-oneofone-xxhash-1.2.2" + ,go-github-com-oneofone-xxhash-1.2.2))) + (home-page "https://github.com/cespare/xxhash") + (synopsis "xxhash") + (description + "Package xxhash implements the 64-bit variant of xxHash (XXH64) as described +at @url{http://cyan4973.github.io/xxHash/,http://cyan4973.github.io/xxHash/}. +") + (license license:expat))) + +(define-public go-github-com-dgryski-go-sip13-0.0.0-20181026042036-e10d5fee7954 + (package + (name "go-github-com-dgryski-go-sip13") + (version "0.0.0-20181026042036-e10d5fee7954") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/dgryski/go-sip13") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "15fyibfas209ljz3f7g07kdmfbl3hhyd9n5n7aq5n5p9m5mn41d6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/dgryski/go-sip13")) + (home-page "https://github.com/dgryski/go-sip13") + (synopsis #f) + (description #f) + (license license:expat))) + +(define-public go-github-com-oklog-ulid-1.3.1 + (package + (name "go-github-com-oklog-ulid") + (version "1.3.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/oklog/ulid") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hybwyid820n80axrk863k2py93hbqlq6hxhf84ppmz0qd0ys0gq")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/oklog/ulid")) + (home-page "https://github.com/oklog/ulid") + (synopsis "Universally Unique Lexicographically Sortable Identifier") + (description + "This package provides a Go port of @url{https://github.com/alizain/ulid,alizain/ulid} with binary format implemented.") + (license license:asl2.0))) + +(define-public go-github-com-prometheus-common-0.0.0-20181113130724-41aa239b4cce + (package + (name "go-github-com-prometheus-common") + (version "0.0.0-20181113130724-41aa239b4cce") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/common") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0spy10lwanqa5ynks9cagphkq74zz4b3jm4w59vvizdcw4fhd7s6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/common")) + (home-page "https://github.com/prometheus/common") + (synopsis "Common") + (description + "This repository contains Go libraries that are shared across Prometheus +components and libraries. They are considered internal to Prometheus, without +any stability guarantees for external usage.") + (license license:asl2.0))) + +(define-public go-github-com-prometheus-tsdb-0.7.1 + (package + (name "go-github-com-prometheus-tsdb") + (version "0.7.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus-junkyard/tsdb") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1c1da8i5byvhh4fp3vqjfb65aaksjskn3ggb8wg9hcfzjrhgpz04")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/tsdb")) + (propagated-inputs + `(("go-gopkg-in-alecthomas-kingpin-v2-2.2.6" + ,go-gopkg-in-alecthomas-kingpin-v2-2.2.6) + ("go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8" + ,go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8) + ("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" + ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) + ("go-github-com-stretchr-testify-1.2.2" + ,go-github-com-stretchr-testify-1.2.2) + ("go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d" + ,go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d) + ("go-github-com-prometheus-common-0.0.0-20181113130724-41aa239b4cce" + ,go-github-com-prometheus-common-0.0.0-20181113130724-41aa239b4cce) + ("go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910" + ,go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910) + ("go-github-com-prometheus-client-golang-0.9.1" + ,go-github-com-prometheus-client-golang-0.9.1) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-pkg-errors-0.8.0" ,go-github-com-pkg-errors-0.8.0) + ("go-github-com-oklog-ulid-1.3.1" ,go-github-com-oklog-ulid-1.3.1) + ("go-github-com-matttproud-golang-protobuf-extensions-1.0.1" + ,go-github-com-matttproud-golang-protobuf-extensions-1.0.1) + ("go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515" + ,go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0) + ("go-github-com-gogo-protobuf-1.1.1" + ,go-github-com-gogo-protobuf-1.1.1) + ("go-github-com-go-stack-stack-1.8.0" + ,go-github-com-go-stack-stack-1.8.0) + ("go-github-com-go-logfmt-logfmt-0.3.0" + ,go-github-com-go-logfmt-logfmt-0.3.0) + ("go-github-com-go-kit-kit-0.8.0" ,go-github-com-go-kit-kit-0.8.0) + ("go-github-com-dgryski-go-sip13-0.0.0-20181026042036-e10d5fee7954" + ,go-github-com-dgryski-go-sip13-0.0.0-20181026042036-e10d5fee7954) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1) + ("go-github-com-cespare-xxhash-1.1.0" + ,go-github-com-cespare-xxhash-1.1.0) + ("go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973" + ,go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973) + ("go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf" + ,go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf) + ("go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc" + ,go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc))) + (home-page "https://github.com/prometheus/tsdb") + (synopsis "TSDB") + (description + "Package tsdb implements a time series storage for float64 sample data. +") + (license license:asl2.0))) + +(define-public go-github-com-prometheus-client-golang-0.9.3 + (package + (name "go-github-com-prometheus-client-golang") + (version "0.9.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/client_golang") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1608rm1y2p3iv8k2x7wyc6hshvpbfkv2k77hy0x870syms1g3g1p")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/client_golang")) + (propagated-inputs + `(("go-github-com-prometheus-tsdb-0.7.1" + ,go-github-com-prometheus-tsdb-0.7.1) + ("go-github-com-prometheus-procfs-0.0.0-20190507164030-5867b95ac084" + ,go-github-com-prometheus-procfs-0.0.0-20190507164030-5867b95ac084) + ("go-github-com-prometheus-common-0.4.0" + ,go-github-com-prometheus-common-0.4.0) + ("go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90" + ,go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90) + ("go-github-com-golang-protobuf-1.3.1" + ,go-github-com-golang-protobuf-1.3.1) + ("go-github-com-go-logfmt-logfmt-0.4.0" + ,go-github-com-go-logfmt-logfmt-0.4.0) + ("go-github-com-beorn7-perks-1.0.0" + ,go-github-com-beorn7-perks-1.0.0))) + (home-page "https://github.com/prometheus/client_golang") + (synopsis "Prometheus Go client library") + (description + "This is the @url{http://golang.org,Go} client library for +@url{http://prometheus.io,Prometheus}. It has two separate parts, one for +instrumenting application code, and one for creating clients that talk to the +Prometheus HTTP API.") + (license license:asl2.0))) + +(define-public go-github-com-spf13-afero-1.1.2 + (package + (name "go-github-com-spf13-afero") + (version "1.1.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/spf13/afero") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0miv4faf5ihjfifb1zv6aia6f6ik7h1s4954kcb8n6ixzhx9ck6k")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/spf13/afero")) + (home-page "https://github.com/spf13/afero") + (synopsis "Overview") + (description + "This package provides a FileSystem Abstraction System for Go") + (license license:asl2.0))) + +(define-public go-github-com-spf13-cast-1.3.0 + (package + (name "go-github-com-spf13-cast") + (version "1.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/spf13/cast") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0xq1ffqj8y8h7dcnm0m9lfrh0ga7pssnn2c1dnr09chqbpn4bdc5")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/spf13/cast")) + (propagated-inputs + `(("go-github-com-stretchr-testify-1.2.2" + ,go-github-com-stretchr-testify-1.2.2) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/spf13/cast") + (synopsis "cast") + (description "Package cast provides easy and safe casting in Go. +") + (license license:expat))) + +(define-public go-github-com-spf13-jwalterweatherman-1.0.0 + (package + (name "go-github-com-spf13-jwalterweatherman") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/spf13/jwalterweatherman") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "093fmmvavv84pv4q84hav7ph3fmrq87bvspjj899q0qsx37yvdr8")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/spf13/jwalterweatherman")) + (home-page "https://github.com/spf13/jwalterweatherman") + (synopsis "jWalterWeatherman") + (description + "Seamless printing to the terminal (stdout) and logging to a io.Writer +(file) thatâ\x80\x99s as easy to use as fmt.Println.") + (license license:expat))) + +(define-public go-github-com-ugorji-go-1.1.4 + (package + (name "go-github-com-ugorji-go") + (version "1.1.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/ugorji/go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ma2qvn5wqvjidpdz74x832a813qnr1cxbx6n6n125ak9b3wbn5w")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/ugorji/go")) + (home-page "https://github.com/ugorji/go") + (synopsis "go-codec") + (description + "This repository contains the @code{go-codec} library, the @code{codecgen} tool and +benchmarks for comparing against other libraries.") + (license license:expat))) + +(define-public go-github-com-xordataexchange-crypt-0.0.3-0.20170626215501-b2862e3d0a77 + (package + (name "go-github-com-xordataexchange-crypt") + (version "0.0.3-0.20170626215501-b2862e3d0a77") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/xordataexchange/crypt") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "04q3856anpzl4gdfgmg7pbp9cx231nkz3ymq2xp27rnmmwhfxr8y")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/xordataexchange/crypt")) + (home-page "https://github.com/xordataexchange/crypt") + (synopsis "crypt") + (description + "You can use crypt as a command line tool or as a configuration library:") + (license license:expat))) + +(define-public go-go-etcd-io-bbolt-1.3.2 + (package + (name "go-go-etcd-io-bbolt") + (version "1.3.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/etcd-io/bbolt") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "13d5l6p6c5wvkr6vn9hkhz9c593qifn7fgx0hg4d6jcvg1y0bnm2")))) + (build-system go-build-system) + (arguments '(#:import-path "go.etcd.io/bbolt")) + (home-page "https://go.etcd.io/bbolt") + (synopsis "bbolt") + (description + "package bbolt implements a low-level key/value store in pure Go. It supports +fully serializable transactions, ACID semantics, and lock-free MVCC with +multiple readers and a single writer. Bolt can be used for projects that +want a simple data store without the need to add large dependencies such as +Postgres or MySQL. +") + (license license:expat))) + +(define-public go-golang-org-x-time-0.0.0-20190308202827-9d24e82272b4 + (package + (name "go-golang-org-x-time") + (version "0.0.0-20190308202827-9d24e82272b4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/time") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1f5nkr4vys2vbd8wrwyiq2f5wcaahhpxmia85d1gshcbqjqf8dkb")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/time")) + (home-page "https://golang.org/x/time") + (synopsis "Go Time") + (description "This repository provides supplementary Go time packages.") + (license license:bsd-3))) + +(define-public go-github-com-spf13-viper-1.4.0 + (package + (name "go-github-com-spf13-viper") + (version "1.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/spf13/viper") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1zpzxvn13wpvbblbbn73svaq39zgxfjqhci9d68g3qf309pcfy19")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/spf13/viper")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) + ("go-google-golang-org-grpc-1.21.0" ,go-google-golang-org-grpc-1.21.0) + ("go-golang-org-x-time-0.0.0-20190308202827-9d24e82272b4" + ,go-golang-org-x-time-0.0.0-20190308202827-9d24e82272b4) + ("go-golang-org-x-net-0.0.0-20190522155817-f3200d17e092" + ,go-golang-org-x-net-0.0.0-20190522155817-f3200d17e092) + ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) + ("go-go-uber-org-multierr-1.1.0" ,go-go-uber-org-multierr-1.1.0) + ("go-go-uber-org-atomic-1.4.0" ,go-go-uber-org-atomic-1.4.0) + ("go-go-etcd-io-bbolt-1.3.2" ,go-go-etcd-io-bbolt-1.3.2) + ("go-github-com-xordataexchange-crypt-0.0.3-0.20170626215501-b2862e3d0a77" + ,go-github-com-xordataexchange-crypt-0.0.3-0.20170626215501-b2862e3d0a77) + ("go-github-com-xiang90-probing-0.0.0-20190116061207-43a291ad63a2" + ,go-github-com-xiang90-probing-0.0.0-20190116061207-43a291ad63a2) + ("go-github-com-ugorji-go-1.1.4" ,go-github-com-ugorji-go-1.1.4) + ("go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5" + ,go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5) + ("go-github-com-stretchr-testify-1.2.2" + ,go-github-com-stretchr-testify-1.2.2) + ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) + ("go-github-com-spf13-jwalterweatherman-1.0.0" + ,go-github-com-spf13-jwalterweatherman-1.0.0) + ("go-github-com-spf13-cast-1.3.0" ,go-github-com-spf13-cast-1.3.0) + ("go-github-com-spf13-afero-1.1.2" ,go-github-com-spf13-afero-1.1.2) + ("go-github-com-soheilhy-cmux-0.1.4" + ,go-github-com-soheilhy-cmux-0.1.4) + ("go-github-com-prometheus-client-golang-0.9.3" + ,go-github-com-prometheus-client-golang-0.9.3) + ("go-github-com-pelletier-go-toml-1.2.0" + ,go-github-com-pelletier-go-toml-1.2.0) + ("go-github-com-mitchellh-mapstructure-1.1.2" + ,go-github-com-mitchellh-mapstructure-1.1.2) + ("go-github-com-magiconair-properties-1.8.0" + ,go-github-com-magiconair-properties-1.8.0) + ("go-github-com-jonboulle-clockwork-0.1.0" + ,go-github-com-jonboulle-clockwork-0.1.0) + ("go-github-com-hashicorp-hcl-1.0.0" + ,go-github-com-hashicorp-hcl-1.0.0) + ("go-github-com-grpc-ecosystem-grpc-gateway-1.9.0" + ,go-github-com-grpc-ecosystem-grpc-gateway-1.9.0) + ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" + ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) + ("go-github-com-grpc-ecosystem-go-grpc-middleware-1.0.0" + ,go-github-com-grpc-ecosystem-go-grpc-middleware-1.0.0) + ("go-github-com-gorilla-websocket-1.4.0" + ,go-github-com-gorilla-websocket-1.4.0) + ("go-github-com-google-btree-1.0.0" ,go-github-com-google-btree-1.0.0) + ("go-github-com-golang-groupcache-0.0.0-20190129154638-5b532d6fd5ef" + ,go-github-com-golang-groupcache-0.0.0-20190129154638-5b532d6fd5ef) + ("go-github-com-gogo-protobuf-1.2.1" + ,go-github-com-gogo-protobuf-1.2.1) + ("go-github-com-fsnotify-fsnotify-1.4.7" + ,go-github-com-fsnotify-fsnotify-1.4.7) + ("go-github-com-dgrijalva-jwt-go-3.2.0+incompatible" + ,go-github-com-dgrijalva-jwt-go-3.2.0+incompatible) + ("go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f" + ,go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f) + ("go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e" + ,go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e) + ("go-github-com-coreos-go-semver-0.2.0" + ,go-github-com-coreos-go-semver-0.2.0) + ("go-github-com-coreos-etcd-3.3.10+incompatible" + ,go-github-com-coreos-etcd-3.3.10+incompatible) + ("go-github-com-coreos-bbolt-1.3.2" ,go-github-com-coreos-bbolt-1.3.2) + ("go-github-com-armon-consul-api-0.0.0-20180202201655-eb2c6b5be1b6" + ,go-github-com-armon-consul-api-0.0.0-20180202201655-eb2c6b5be1b6))) + (home-page "https://github.com/spf13/viper") + (synopsis "Install") + (description "Many Go projects are built using Viper including:") + (license license:expat))) + +(define-public go-github-com-spf13-cobra-1.0.0 + (package + (name "go-github-com-spf13-cobra") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/spf13/cobra") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0vbppqqhby302a5ayn0296jqr71qkcd4c9am7wzsk6z71fwdsa7h")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/spf13/cobra")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) + ("go-github-com-spf13-viper-1.4.0" ,go-github-com-spf13-viper-1.4.0) + ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) + ("go-github-com-mitchellh-go-homedir-1.1.0" + ,go-github-com-mitchellh-go-homedir-1.1.0) + ("go-github-com-inconshreveable-mousetrap-1.0.0" + ,go-github-com-inconshreveable-mousetrap-1.0.0) + ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" + ,go-github-com-cpuguy83-go-md2man-v2-2.0.0))) + (home-page "https://github.com/spf13/cobra") + (synopsis "Table of Contents") + (description + "Package cobra is a commander providing a simple interface to create powerful modern CLI interfaces. +In addition to providing an interface, Cobra simultaneously provides a controller to organize your application code. +") + (license license:asl2.0))) + +(define-public go-github-com-containerd-continuity-0.1.0 + (package + (name "go-github-com-containerd-continuity") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/continuity") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1h756l1xc31sc4zc1d3hmh64kl9qm5vpbbw0c93hrasn51ki96yz")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/continuity")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" + ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) + ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" + ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) + ("go-github-com-spf13-cobra-1.0.0" ,go-github-com-spf13-cobra-1.0.0) + ("go-github-com-sirupsen-logrus-1.7.0" + ,go-github-com-sirupsen-logrus-1.7.0) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-go-digest-1.0.0" + ,go-github-com-opencontainers-go-digest-1.0.0) + ("go-github-com-golang-protobuf-1.3.5" + ,go-github-com-golang-protobuf-1.3.5) + ("go-github-com-dustin-go-humanize-1.0.0" + ,go-github-com-dustin-go-humanize-1.0.0) + ("go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898" + ,go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898))) + (home-page "https://github.com/containerd/continuity") + (synopsis "continuity") + (description + "This package provides a transport-agnostic, filesystem metadata manifest system") + (license license:asl2.0))) + +(define-public go-github-com-containerd-fifo-1.0.0 + (package + (name "go-github-com-containerd-fifo") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/fifo") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1l6jy9b4mjcj7pbz1n79zmipni1dz60rf5n66vn5p2ggavbq7h1q")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/fifo")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" + ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) + (home-page "https://github.com/containerd/fifo") + (synopsis "fifo") + (description "Go package for handling fifos in a sane way.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-go-cni-1.0.2 + (package + (name "go-github-com-containerd-go-cni") + (version "1.0.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/go-cni") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1hqwy402qy04slz2vj05s517mhdbmmkdjs6nhfnk184a730whgv6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/go-cni")) + (propagated-inputs + `(("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-onsi-gomega-1.7.1" ,go-github-com-onsi-gomega-1.7.1) + ("go-github-com-onsi-ginkgo-1.10.3" ,go-github-com-onsi-ginkgo-1.10.3) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1) + ("go-github-com-containernetworking-cni-0.8.0" + ,go-github-com-containernetworking-cni-0.8.0))) + (home-page "https://github.com/containerd/go-cni") + (synopsis "go-cni") + (description + "This package provides a generic CNI library to provide APIs for CNI plugin interactions. The library provides APIs to:") + (license license:asl2.0))) + +(define-public go-github-com-containerd-go-runc-1.0.0 + (package + (name "go-github-com-containerd-go-runc") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/go-runc") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0xk30dzzxmd83bnfyilplizlxh1pg1gqz2jrq9wz9rqqkxazc03n")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/go-runc")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f" + ,go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f) + ("go-github-com-sirupsen-logrus-1.7.0" + ,go-github-com-sirupsen-logrus-1.7.0) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-runtime-spec-1.0.2" + ,go-github-com-opencontainers-runtime-spec-1.0.2) + ("go-github-com-containerd-console-1.0.1" + ,go-github-com-containerd-console-1.0.1))) + (home-page "https://github.com/containerd/go-runc") + (synopsis "go-runc") + (description + "This is a package for consuming the @url{https://github.com/opencontainers/runc,runc} binary in your Go applications. +It tries to expose all the settings and features of the runc CLI. If there is something missing then add it, its opensource!") + (license license:asl2.0))) + +(define-public go-github-com-containerd-zfs-0.0.0-20210315114300-dde8f0fda960 + (package + (name "go-github-com-containerd-zfs") + (version "0.0.0-20210315114300-dde8f0fda960") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/zfs") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ag5p2vqzdavq66wb1z42yw5jzrncsi97g8qk2x9nq51z1nj8rdi")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/zfs")) + (propagated-inputs + `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible" + ,go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible) + ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" + ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) + ("go-github-com-containerd-containerd-1.5.0-beta.3" + ,go-github-com-containerd-containerd-1.5.0-beta.3))) + (home-page "https://github.com/containerd/zfs") + (synopsis "ZFS snapshotter plugin") + (description "ZFS snapshotter plugin for containerd.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-containerd-1.5.0-beta.4 + (package + (name "go-github-com-containerd-containerd") + (version "1.5.0-beta.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/containerd") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "039c26mjq8qs1s4kbx76fc99wnmnx165bqn16b2b9gyvxcphs7iv")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/containerd")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) + ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) + ("go-github-com-golang-protobuf-1.3.5" + ,go-github-com-golang-protobuf-1.3.5) + ("go-github-com-gogo-googleapis-1.3.2" + ,go-github-com-gogo-googleapis-1.3.2) + ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" + ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) + ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) + ("go-k8s-io-cri-api-0.20.1" ,go-k8s-io-cri-api-0.20.1) + ("go-k8s-io-component-base-0.20.1" ,go-k8s-io-component-base-0.20.1) + ("go-k8s-io-client-go-0.20.1" ,go-k8s-io-client-go-0.20.1) + ("go-k8s-io-apiserver-0.20.1" ,go-k8s-io-apiserver-0.20.1) + ("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) + ("go-k8s-io-api-0.20.1" ,go-k8s-io-api-0.20.1) + ("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) + ("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" + ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) + ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" + ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) + ("go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b" + ,go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b) + ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) + ("go-github-com-tchap-go-patricia-2.2.6+incompatible" + ,go-github-com-tchap-go-patricia-2.2.6+incompatible) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-sirupsen-logrus-1.7.0" + ,go-github-com-sirupsen-logrus-1.7.0) + ("go-github-com-prometheus-client-golang-1.7.1" + ,go-github-com-prometheus-client-golang-1.7.1) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-selinux-1.8.0" + ,go-github-com-opencontainers-selinux-1.8.0) + ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" + ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) + ("go-github-com-opencontainers-runc-1.0.0-rc93" + ,go-github-com-opencontainers-runc-1.0.0-rc93) + ("go-github-com-opencontainers-image-spec-1.0.1" + ,go-github-com-opencontainers-image-spec-1.0.1) + ("go-github-com-opencontainers-go-digest-1.0.0" + ,go-github-com-opencontainers-go-digest-1.0.0) + ("go-github-com-moby-sys-symlink-0.1.0" + ,go-github-com-moby-sys-symlink-0.1.0) + ("go-github-com-moby-sys-mountinfo-0.4.1" + ,go-github-com-moby-sys-mountinfo-0.4.1) + ("go-github-com-klauspost-compress-1.11.3" + ,go-github-com-klauspost-compress-1.11.3) + ("go-github-com-imdario-mergo-0.3.11" + ,go-github-com-imdario-mergo-0.3.11) + ("go-github-com-hashicorp-go-multierror-1.0.0" + ,go-github-com-hashicorp-go-multierror-1.0.0) + ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" + ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) + ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) + ("go-github-com-google-go-cmp-0.5.4" + ,go-github-com-google-go-cmp-0.5.4) + ("go-github-com-gogo-protobuf-1.3.2" + ,go-github-com-gogo-protobuf-1.3.2) + ("go-github-com-fsnotify-fsnotify-1.4.9" + ,go-github-com-fsnotify-fsnotify-1.4.9) + ("go-github-com-emicklei-go-restful-2.9.5+incompatible" + ,go-github-com-emicklei-go-restful-2.9.5+incompatible) + ("go-github-com-docker-go-units-0.4.0" + ,go-github-com-docker-go-units-0.4.0) + ("go-github-com-docker-go-metrics-0.0.1" + ,go-github-com-docker-go-metrics-0.0.1) + ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" + ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1) + ("go-github-com-coreos-go-systemd-v22-22.1.0" + ,go-github-com-coreos-go-systemd-v22-22.1.0) + ("go-github-com-containernetworking-plugins-0.8.6" + ,go-github-com-containernetworking-plugins-0.8.6) + ("go-github-com-containerd-zfs-0.0.0-20210315114300-dde8f0fda960" + ,go-github-com-containerd-zfs-0.0.0-20210315114300-dde8f0fda960) + ("go-github-com-containerd-typeurl-1.0.1" + ,go-github-com-containerd-typeurl-1.0.1) + ("go-github-com-containerd-ttrpc-1.0.2" + ,go-github-com-containerd-ttrpc-1.0.2) + ("go-github-com-containerd-nri-0.0.0-20210316161719-dbaa18c31c14" + ,go-github-com-containerd-nri-0.0.0-20210316161719-dbaa18c31c14) + ("go-github-com-containerd-imgcrypt-1.1.1-0.20210312161619-7ed62a527887" + ,go-github-com-containerd-imgcrypt-1.1.1-0.20210312161619-7ed62a527887) + ("go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0" + ,go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0) + ("go-github-com-containerd-go-cni-1.0.1" + ,go-github-com-containerd-go-cni-1.0.1) + ("go-github-com-containerd-fifo-0.0.0-20210316144830-115abcc95a1d" + ,go-github-com-containerd-fifo-0.0.0-20210316144830-115abcc95a1d) + ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" + ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) + ("go-github-com-containerd-console-1.0.1" + ,go-github-com-containerd-console-1.0.1) + ("go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68" + ,go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68) + ("go-github-com-containerd-btrfs-0.0.0-20210316141732-918d888fb676" + ,go-github-com-containerd-btrfs-0.0.0-20210316141732-918d888fb676) + ("go-github-com-containerd-aufs-0.0.0-20210316121734-20793ff83c97" + ,go-github-com-containerd-aufs-0.0.0-20210316121734-20793ff83c97) + ("go-github-com-microsoft-hcsshim-0.8.15" + ,go-github-com-microsoft-hcsshim-0.8.15) + ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" + ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3) + ("go-github-com-burntsushi-toml-0.3.1" + ,go-github-com-burntsushi-toml-0.3.1))) + (home-page "https://github.com/containerd/containerd") + (synopsis "Now Recruiting") + (description + "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") + (license license:asl2.0))) + +(define-public go-golang-org-x-sys-0.0.0-20210324051608-47abb6519492 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20210324051608-47abb6519492") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19g0pa8lazad5kcq396ggg9x1d6sx39rw9brz3hklx71gg1jd3ja")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-microsoft-hcsshim-0.8.16 + (package + (name "go-github-com-microsoft-hcsshim") + (version "0.8.16") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/microsoft/hcsshim") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "15bxkqq4zavwspx3ga8j3vx9jrc7l0jazsa6cs6im9liy6xhkbd6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/Microsoft/hcsshim")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) + ("go-golang-org-x-sys-0.0.0-20210324051608-47abb6519492" + ,go-golang-org-x-sys-0.0.0-20210324051608-47abb6519492) + ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" + ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) + ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) + ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) + ("go-github-com-sirupsen-logrus-1.7.0" + ,go-github-com-sirupsen-logrus-1.7.0) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" + ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) + ("go-github-com-gogo-protobuf-1.3.2" + ,go-github-com-gogo-protobuf-1.3.2) + ("go-github-com-containerd-typeurl-1.0.1" + ,go-github-com-containerd-typeurl-1.0.1) + ("go-github-com-containerd-ttrpc-1.0.2" + ,go-github-com-containerd-ttrpc-1.0.2) + ("go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0" + ,go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0) + ("go-github-com-containerd-containerd-1.5.0-beta.4" + ,go-github-com-containerd-containerd-1.5.0-beta.4) + ("go-github-com-containerd-console-1.0.1" + ,go-github-com-containerd-console-1.0.1) + ("go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68" + ,go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68) + ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" + ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3))) + (home-page "https://github.com/Microsoft/hcsshim") + (synopsis "hcsshim") + (description + "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") + (license license:expat))) + +(define-public go-github-com-microsoft-go-winio-0.4.17-0.20210324224401-5516f17a5958 + (package + (name "go-github-com-microsoft-go-winio") + (version "0.4.17-0.20210324224401-5516f17a5958") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/microsoft/go-winio") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0gmgiak4x4gdyr17zm4b9vvharflk9pz5aj5jayh9hq50133b2f9")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/Microsoft/go-winio")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" + ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) + ("go-github-com-sirupsen-logrus-1.7.0" + ,go-github-com-sirupsen-logrus-1.7.0) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) + (home-page "https://github.com/Microsoft/go-winio") + (synopsis "go-winio") + (description + "This repository contains utilities for efficiently performing Win32 IO operations in +Go. Currently, this is focused on accessing named pipes and other file handles, and +for using named pipes as a net transport.") + (license license:expat))) + +(define-public go-github-com-containerd-aufs-0.0.0-20210316121734-20793ff83c97 + (package + (name "go-github-com-containerd-aufs") + (version "0.0.0-20210316121734-20793ff83c97") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/aufs") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ipr8pafb2xpkchfvnxjcfx9pb48mjr9k8krj9gnagssxhynbkd5")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/aufs")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" + ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" + ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) + ("go-github-com-containerd-containerd-1.5.0-beta.3" + ,go-github-com-containerd-containerd-1.5.0-beta.3))) + (home-page "https://github.com/containerd/aufs") + (synopsis "aufs snapshotter") + (description + "AUFS implementation of the snapshot interface for containerd.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-btrfs-0.0.0-20210316141732-918d888fb676 + (package + (name "go-github-com-containerd-btrfs") + (version "0.0.0-20210316141732-918d888fb676") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/btrfs") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1yf38gg41y1v12m0cl81r9q7d13170a4npzqxhbz7qn32zr23kzn")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/btrfs")) + (propagated-inputs + `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) + (home-page "https://github.com/containerd/btrfs") + (synopsis "go-btrfs") + (description + "Package btrfs provides bindings for working with btrfs partitions from Go. +") + (license license:asl2.0))) + +(define-public go-github-com-containerd-fifo-0.0.0-20210316144830-115abcc95a1d + (package + (name "go-github-com-containerd-fifo") + (version "0.0.0-20210316144830-115abcc95a1d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/fifo") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hqna43p8r6g3xv8g8n985hq1nzipsvjiwm70xpbzbgynh4ym6z5")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/fifo")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" + ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) + (home-page "https://github.com/containerd/fifo") + (synopsis "fifo") + (description "Go package for handling fifos in a sane way.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0 + (package + (name "go-github-com-containerd-go-runc") + (version "0.0.0-20201020171139-16b287bc67d0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/go-runc") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0xk30dzzxmd83bnfyilplizlxh1pg1gqz2jrq9wz9rqqkxazc03n")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/go-runc")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f" + ,go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f) + ("go-github-com-sirupsen-logrus-1.7.0" + ,go-github-com-sirupsen-logrus-1.7.0) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-runtime-spec-1.0.2" + ,go-github-com-opencontainers-runtime-spec-1.0.2) + ("go-github-com-containerd-console-1.0.1" + ,go-github-com-containerd-console-1.0.1))) + (home-page "https://github.com/containerd/go-runc") + (synopsis "go-runc") + (description + "This is a package for consuming the @url{https://github.com/opencontainers/runc,runc} binary in your Go applications. +It tries to expose all the settings and features of the runc CLI. If there is something missing then add it, its opensource!") + (license license:asl2.0))) + +(define-public go-github-com-containerd-imgcrypt-1.1.1-0.20210312161619-7ed62a527887 + (package + (name "go-github-com-containerd-imgcrypt") + (version "1.1.1-0.20210312161619-7ed62a527887") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/imgcrypt") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "16pgcc0w8m2cxhfjzmmd2h3n6mxzc1nlghrhgjlx0lf4q96hv904")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/imgcrypt")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) + ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" + ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) + ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) + ("go-github-com-sirupsen-logrus-1.7.0" + ,go-github-com-sirupsen-logrus-1.7.0) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" + ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) + ("go-github-com-opencontainers-image-spec-1.0.1" + ,go-github-com-opencontainers-image-spec-1.0.1) + ("go-github-com-opencontainers-go-digest-1.0.0" + ,go-github-com-opencontainers-go-digest-1.0.0) + ("go-github-com-gogo-protobuf-1.3.2" + ,go-github-com-gogo-protobuf-1.3.2) + ("go-github-com-containers-ocicrypt-1.1.0" + ,go-github-com-containers-ocicrypt-1.1.0) + ("go-github-com-containerd-typeurl-1.0.1" + ,go-github-com-containerd-typeurl-1.0.1) + ("go-github-com-containerd-containerd-1.5.0-beta.3" + ,go-github-com-containerd-containerd-1.5.0-beta.3) + ("go-github-com-containerd-console-1.0.1" + ,go-github-com-containerd-console-1.0.1) + ("go-github-com-microsoft-hcsshim-0.8.15" + ,go-github-com-microsoft-hcsshim-0.8.15) + ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" + ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3))) + (home-page "https://github.com/containerd/imgcrypt") + (synopsis "imgcrypt image encryption library and command line tool") + (description + "Project @code{imgcrypt} is a non-core subproject of containerd.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-nri-0.0.0-20210316161719-dbaa18c31c14 + (package + (name "go-github-com-containerd-nri") + (version "0.0.0-20210316161719-dbaa18c31c14") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/nri") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0kyrvagbga6yib7il0m4zvqz977a4wsv5lgjd3ix53xmr4h7fgm7")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/nri")) + (propagated-inputs + `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-containerd-containerd-1.5.0-beta.3" + ,go-github-com-containerd-containerd-1.5.0-beta.3))) + (home-page "https://github.com/containerd/nri") + (synopsis "nri - Node Resource Interface") + (description + "This project is a WIP for a new, CNI like, interface for managing resources on a node for Pods and Containers.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-zfs-0.0.0-20210324211415-d5c4544f0433 + (package + (name "go-github-com-containerd-zfs") + (version "0.0.0-20210324211415-d5c4544f0433") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/zfs") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1wsqwqv2pyn05asgpm9clgpwq9b8b0fjk4khzkjvscrf5j4v1rx4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/zfs")) + (propagated-inputs + `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible" + ,go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible) + ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" + ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) + ("go-github-com-containerd-containerd-1.5.0-beta.3" + ,go-github-com-containerd-containerd-1.5.0-beta.3))) + (home-page "https://github.com/containerd/zfs") + (synopsis "ZFS snapshotter plugin") + (description "ZFS snapshotter plugin for containerd.") + (license license:asl2.0))) + +(define-public go-k8s-io-apiserver-0.20.4 + (package + (name "go-k8s-io-apiserver") + (version "0.20.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes/apiserver") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1gffl7z6bvi46v0fvphbak4waddsgf4pd5w16khgrzl1sv9skn61")))) + (build-system go-build-system) + (arguments '(#:import-path "k8s.io/apiserver")) + (propagated-inputs + `(("go-k8s-io-component-base-0.20.4" ,go-k8s-io-component-base-0.20.4) + ("go-k8s-io-client-go-0.20.4" ,go-k8s-io-client-go-0.20.4) + ("go-k8s-io-apimachinery-0.20.4" ,go-k8s-io-apimachinery-0.20.4) + ("go-k8s-io-api-0.20.4" ,go-k8s-io-api-0.20.4) + ("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) + ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.2" + ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.2) + ("go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.14" + ,go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.14) + ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" + ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) + ("go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd" + ,go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd) + ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) + ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) + ("go-gopkg-in-square-go-jose-v2-2.2.2" + ,go-gopkg-in-square-go-jose-v2-2.2.2) + ("go-gopkg-in-natefinch-lumberjack-v2-2.0.0" + ,go-gopkg-in-natefinch-lumberjack-v2-2.0.0) + ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) + ("go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a" + ,go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a) + ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" + ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) + ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" + ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) + ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" + ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) + ("go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0" + ,go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0) + ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) + ("go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489" + ,go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489) + ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) + ("go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5" + ,go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) + ("go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021" + ,go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822" + ,go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822) + ("go-github-com-mailru-easyjson-0.7.0" + ,go-github-com-mailru-easyjson-0.7.0) + ("go-github-com-hashicorp-golang-lru-0.5.1" + ,go-github-com-hashicorp-golang-lru-0.5.1) + ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" + ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) + ("go-github-com-gorilla-websocket-1.4.2" + ,go-github-com-gorilla-websocket-1.4.2) + ("go-github-com-googleapis-gnostic-0.4.1" + ,go-github-com-googleapis-gnostic-0.4.1) + ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) + ("go-github-com-google-gofuzz-1.1.0" + ,go-github-com-google-gofuzz-1.1.0) + ("go-github-com-google-go-cmp-0.5.2" + ,go-github-com-google-go-cmp-0.5.2) + ("go-github-com-gogo-protobuf-1.3.1" + ,go-github-com-gogo-protobuf-1.3.1) + ("go-github-com-go-openapi-spec-0.19.3" + ,go-github-com-go-openapi-spec-0.19.3) + ("go-github-com-evanphx-json-patch-4.9.0+incompatible" + ,go-github-com-evanphx-json-patch-4.9.0+incompatible) + ("go-github-com-emicklei-go-restful-2.9.5+incompatible" + ,go-github-com-emicklei-go-restful-2.9.5+incompatible) + ("go-github-com-dustin-go-humanize-1.0.0" + ,go-github-com-dustin-go-humanize-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1) + ("go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f" + ,go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f) + ("go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e" + ,go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e) + ("go-github-com-coreos-go-semver-0.3.0" + ,go-github-com-coreos-go-semver-0.3.0) + ("go-github-com-coreos-go-oidc-2.1.0+incompatible" + ,go-github-com-coreos-go-oidc-2.1.0+incompatible))) + (home-page "https://k8s.io/apiserver") + (synopsis "apiserver") + (description + "Generic library for building a Kubernetes aggregated API server.") + (license license:asl2.0))) + +(define-public go-k8s-io-api-0.20.4 + (package + (name "go-k8s-io-api") + (version "0.20.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes/api") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hjckd94vpsr690kwx7dad8qlb8xjg2bz5ms315s9h6wc5cqwvgy")))) + (build-system go-build-system) + (arguments '(#:import-path "k8s.io/api")) + (propagated-inputs + `(("go-k8s-io-apimachinery-0.20.4" ,go-k8s-io-apimachinery-0.20.4) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-gogo-protobuf-1.3.1" + ,go-github-com-gogo-protobuf-1.3.1))) + (home-page "https://k8s.io/api") + (synopsis "api") + (description + "Schema of the external API types that are served by the Kubernetes API server.") + (license license:asl2.0))) + +(define-public go-k8s-io-apimachinery-0.20.4 + (package + (name "go-k8s-io-apimachinery") + (version "0.20.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes/apimachinery") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "15qc12lbzpd4lgajy0rv24b3ky4hhg5y1l37qxdfiakhz91didfw")))) + (build-system go-build-system) + (arguments '(#:import-path "k8s.io/apimachinery")) + (propagated-inputs + `(("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) + ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.2" + ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.2) + ("go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd" + ,go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd) + ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) + ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) + ("go-gopkg-in-inf-v0-0.9.1" ,go-gopkg-in-inf-v0-0.9.1) + ("go-google-golang-org-protobuf-1.25.0" + ,go-google-golang-org-protobuf-1.25.0) + ("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" + ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) + ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) + ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" + ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) + ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" + ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-onsi-gomega-1.7.0" ,go-github-com-onsi-gomega-1.7.0) + ("go-github-com-onsi-ginkgo-1.11.0" ,go-github-com-onsi-ginkgo-1.11.0) + ("go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f" + ,go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f) + ("go-github-com-modern-go-reflect2-1.0.1" + ,go-github-com-modern-go-reflect2-1.0.1) + ("go-github-com-json-iterator-go-1.1.10" + ,go-github-com-json-iterator-go-1.1.10) + ("go-github-com-hashicorp-golang-lru-0.5.1" + ,go-github-com-hashicorp-golang-lru-0.5.1) + ("go-github-com-googleapis-gnostic-0.4.1" + ,go-github-com-googleapis-gnostic-0.4.1) + ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) + ("go-github-com-google-gofuzz-1.1.0" + ,go-github-com-google-gofuzz-1.1.0) + ("go-github-com-google-go-cmp-0.5.2" + ,go-github-com-google-go-cmp-0.5.2) + ("go-github-com-golang-protobuf-1.4.3" + ,go-github-com-golang-protobuf-1.4.3) + ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" + ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) + ("go-github-com-gogo-protobuf-1.3.1" + ,go-github-com-gogo-protobuf-1.3.1) + ("go-github-com-fsnotify-fsnotify-1.4.9" + ,go-github-com-fsnotify-fsnotify-1.4.9) + ("go-github-com-evanphx-json-patch-4.9.0+incompatible" + ,go-github-com-evanphx-json-patch-4.9.0+incompatible) + ("go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153" + ,go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153) + ("go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96" + ,go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://k8s.io/apimachinery") + (synopsis "apimachinery") + (description + "Scheme, typing, encoding, decoding, and conversion packages for Kubernetes and Kubernetes-like API objects.") + (license license:asl2.0))) + +(define-public go-k8s-io-client-go-0.20.4 + (package + (name "go-k8s-io-client-go") + (version "0.20.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes/client-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0g8x2d59qm6068rql63c0mdhcjz9jsyyf7a5fdg1hyf88dvigfcx")))) + (build-system go-build-system) + (arguments '(#:import-path "k8s.io/client-go")) + (propagated-inputs + `(("go-k8s-io-apimachinery-0.20.4" ,go-k8s-io-apimachinery-0.20.4) + ("go-k8s-io-api-0.20.4" ,go-k8s-io-api-0.20.4) + ("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) + ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" + ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) + ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) + ("go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e" + ,go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e) + ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" + ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) + ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" + ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) + ("go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0" + ,go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) + ("go-github-com-peterbourgon-diskv-2.0.1+incompatible" + ,go-github-com-peterbourgon-diskv-2.0.1+incompatible) + ("go-github-com-imdario-mergo-0.3.5" + ,go-github-com-imdario-mergo-0.3.5) + ("go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7" + ,go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7) + ("go-github-com-googleapis-gnostic-0.4.1" + ,go-github-com-googleapis-gnostic-0.4.1) + ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) + ("go-github-com-google-gofuzz-1.1.0" + ,go-github-com-google-gofuzz-1.1.0) + ("go-github-com-google-go-cmp-0.5.2" + ,go-github-com-google-go-cmp-0.5.2) + ("go-github-com-golang-protobuf-1.4.3" + ,go-github-com-golang-protobuf-1.4.3) + ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" + ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) + ("go-github-com-gogo-protobuf-1.3.1" + ,go-github-com-gogo-protobuf-1.3.1) + ("go-github-com-evanphx-json-patch-4.9.0+incompatible" + ,go-github-com-evanphx-json-patch-4.9.0+incompatible) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1) + ("go-github-com-azure-go-autorest-autorest-adal-0.9.5" + ,go-github-com-azure-go-autorest-autorest-adal-0.9.5) + ("go-github-com-azure-go-autorest-autorest-0.11.1" + ,go-github-com-azure-go-autorest-autorest-0.11.1) + ("go-cloud-google-com-go-0.54.0" ,go-cloud-google-com-go-0.54.0))) + (home-page "https://k8s.io/client-go") + (synopsis "client-go") + (description + "Go clients for talking to a @url{http://kubernetes.io/,kubernetes} cluster.") + (license license:asl2.0))) + +(define-public go-k8s-io-component-base-0.20.4 + (package + (name "go-k8s-io-component-base") + (version "0.20.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes/component-base") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "02b782p63h8z3pg64i1kfgkmxwslxpyl6afkhd1agbig9zd6g7w8")))) + (build-system go-build-system) + (arguments '(#:import-path "k8s.io/component-base")) + (propagated-inputs + `(("go-k8s-io-client-go-0.20.4" ,go-k8s-io-client-go-0.20.4) + ("go-k8s-io-apimachinery-0.20.4" ,go-k8s-io-apimachinery-0.20.4) + ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" + ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) + ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) + ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) + ("go-go-uber-org-multierr-1.1.0" ,go-go-uber-org-multierr-1.1.0) + ("go-go-uber-org-atomic-1.4.0" ,go-go-uber-org-atomic-1.4.0) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) + ("go-github-com-sirupsen-logrus-1.6.0" + ,go-github-com-sirupsen-logrus-1.6.0) + ("go-github-com-prometheus-procfs-0.2.0" + ,go-github-com-prometheus-procfs-0.2.0) + ("go-github-com-prometheus-common-0.10.0" + ,go-github-com-prometheus-common-0.10.0) + ("go-github-com-prometheus-client-model-0.2.0" + ,go-github-com-prometheus-client-model-0.2.0) + ("go-github-com-prometheus-client-golang-1.7.1" + ,go-github-com-prometheus-client-golang-1.7.1) + ("go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd" + ,go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd) + ("go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369" + ,go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369) + ("go-github-com-google-go-cmp-0.5.2" + ,go-github-com-google-go-cmp-0.5.2) + ("go-github-com-go-logr-logr-0.2.0" ,go-github-com-go-logr-logr-0.2.0) + ("go-github-com-blang-semver-3.5.1+incompatible" + ,go-github-com-blang-semver-3.5.1+incompatible))) + (home-page "https://k8s.io/component-base") + (synopsis "component-base") + (description + "Implement KEP 32: @url{https://github.com/kubernetes/enhancements/blob/master/keps/sig-cluster-lifecycle/wgs/783-component-base/README.md,https://github.com/kubernetes/enhancements/blob/master/keps/sig-cluster-lifecycle/wgs/783-component-base/README.md}") + (license license:asl2.0))) + +(define-public go-k8s-io-cri-api-0.20.4 + (package + (name "go-k8s-io-cri-api") + (version "0.20.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes/cri-api") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1r98d0kv42sijdg3404xx2g5jj0zixvfagkky2zla12p68ajm4xr")))) + (build-system go-build-system) + (arguments '(#:import-path "k8s.io/cri-api")) + (propagated-inputs + `(("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" + ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) + ("go-google-golang-org-protobuf-1.25.0" + ,go-google-golang-org-protobuf-1.25.0) + ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) + ("go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a" + ,go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a) + ("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" + ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) + ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) + ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" + ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) + ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" + ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-kr-pretty-0.2.0" ,go-github-com-kr-pretty-0.2.0) + ("go-github-com-google-go-cmp-0.5.2" + ,go-github-com-google-go-cmp-0.5.2) + ("go-github-com-golang-protobuf-1.4.3" + ,go-github-com-golang-protobuf-1.4.3) + ("go-github-com-gogo-protobuf-1.3.1" + ,go-github-com-gogo-protobuf-1.3.1) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://k8s.io/cri-api") + (synopsis "Purpose") + (description + "This repository contains the definitions for the Container Runtime Interface (CRI). +CRI is a plugin interface which enables kubelet to use a wide variety of container runtimes, +without the need to recompile. CRI consists of a protocol buffers and gRPC API.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-containerd-1.5.0-rc.0 + (package + (name "go-github-com-containerd-containerd") + (version "1.5.0-rc.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/containerd") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "148z6782bj0vy3vzbhg2xf53g14llvxfsmdsqkz6x5n49rm6xr4i")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/containerd")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) + ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) + ("go-github-com-golang-protobuf-1.3.5" + ,go-github-com-golang-protobuf-1.3.5) + ("go-github-com-gogo-googleapis-1.3.2" + ,go-github-com-gogo-googleapis-1.3.2) + ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" + ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) + ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) + ("go-k8s-io-cri-api-0.20.4" ,go-k8s-io-cri-api-0.20.4) + ("go-k8s-io-component-base-0.20.4" ,go-k8s-io-component-base-0.20.4) + ("go-k8s-io-client-go-0.20.4" ,go-k8s-io-client-go-0.20.4) + ("go-k8s-io-apiserver-0.20.4" ,go-k8s-io-apiserver-0.20.4) + ("go-k8s-io-apimachinery-0.20.4" ,go-k8s-io-apimachinery-0.20.4) + ("go-k8s-io-api-0.20.4" ,go-k8s-io-api-0.20.4) + ("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) + ("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" + ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) + ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" + ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) + ("go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b" + ,go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b) + ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) + ("go-github-com-tchap-go-patricia-2.2.6+incompatible" + ,go-github-com-tchap-go-patricia-2.2.6+incompatible) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-sirupsen-logrus-1.7.0" + ,go-github-com-sirupsen-logrus-1.7.0) + ("go-github-com-prometheus-client-golang-1.7.1" + ,go-github-com-prometheus-client-golang-1.7.1) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-pelletier-go-toml-1.8.1" + ,go-github-com-pelletier-go-toml-1.8.1) + ("go-github-com-opencontainers-selinux-1.8.0" + ,go-github-com-opencontainers-selinux-1.8.0) + ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" + ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) + ("go-github-com-opencontainers-runc-1.0.0-rc93" + ,go-github-com-opencontainers-runc-1.0.0-rc93) + ("go-github-com-opencontainers-image-spec-1.0.1" + ,go-github-com-opencontainers-image-spec-1.0.1) + ("go-github-com-opencontainers-go-digest-1.0.0" + ,go-github-com-opencontainers-go-digest-1.0.0) + ("go-github-com-moby-sys-symlink-0.1.0" + ,go-github-com-moby-sys-symlink-0.1.0) + ("go-github-com-moby-sys-mountinfo-0.4.1" + ,go-github-com-moby-sys-mountinfo-0.4.1) + ("go-github-com-klauspost-compress-1.11.13" + ,go-github-com-klauspost-compress-1.11.13) + ("go-github-com-imdario-mergo-0.3.11" + ,go-github-com-imdario-mergo-0.3.11) + ("go-github-com-hashicorp-go-multierror-1.0.0" + ,go-github-com-hashicorp-go-multierror-1.0.0) + ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" + ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) + ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) + ("go-github-com-google-go-cmp-0.5.4" + ,go-github-com-google-go-cmp-0.5.4) + ("go-github-com-gogo-protobuf-1.3.2" + ,go-github-com-gogo-protobuf-1.3.2) + ("go-github-com-fsnotify-fsnotify-1.4.9" + ,go-github-com-fsnotify-fsnotify-1.4.9) + ("go-github-com-emicklei-go-restful-2.9.5+incompatible" + ,go-github-com-emicklei-go-restful-2.9.5+incompatible) + ("go-github-com-docker-go-units-0.4.0" + ,go-github-com-docker-go-units-0.4.0) + ("go-github-com-docker-go-metrics-0.0.1" + ,go-github-com-docker-go-metrics-0.0.1) + ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" + ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1) + ("go-github-com-coreos-go-systemd-v22-22.1.0" + ,go-github-com-coreos-go-systemd-v22-22.1.0) + ("go-github-com-containernetworking-plugins-0.8.6" + ,go-github-com-containernetworking-plugins-0.8.6) + ("go-github-com-containerd-zfs-0.0.0-20210324211415-d5c4544f0433" + ,go-github-com-containerd-zfs-0.0.0-20210324211415-d5c4544f0433) + ("go-github-com-containerd-typeurl-1.0.1" + ,go-github-com-containerd-typeurl-1.0.1) + ("go-github-com-containerd-ttrpc-1.0.2" + ,go-github-com-containerd-ttrpc-1.0.2) + ("go-github-com-containerd-nri-0.0.0-20210316161719-dbaa18c31c14" + ,go-github-com-containerd-nri-0.0.0-20210316161719-dbaa18c31c14) + ("go-github-com-containerd-imgcrypt-1.1.1-0.20210312161619-7ed62a527887" + ,go-github-com-containerd-imgcrypt-1.1.1-0.20210312161619-7ed62a527887) + ("go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0" + ,go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0) + ("go-github-com-containerd-go-cni-1.0.1" + ,go-github-com-containerd-go-cni-1.0.1) + ("go-github-com-containerd-fifo-0.0.0-20210316144830-115abcc95a1d" + ,go-github-com-containerd-fifo-0.0.0-20210316144830-115abcc95a1d) + ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" + ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) + ("go-github-com-containerd-console-1.0.1" + ,go-github-com-containerd-console-1.0.1) + ("go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68" + ,go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68) + ("go-github-com-containerd-btrfs-0.0.0-20210316141732-918d888fb676" + ,go-github-com-containerd-btrfs-0.0.0-20210316141732-918d888fb676) + ("go-github-com-containerd-aufs-0.0.0-20210316121734-20793ff83c97" + ,go-github-com-containerd-aufs-0.0.0-20210316121734-20793ff83c97) + ("go-github-com-microsoft-hcsshim-0.8.15" + ,go-github-com-microsoft-hcsshim-0.8.15) + ("go-github-com-microsoft-go-winio-0.4.17-0.20210324224401-5516f17a5958" + ,go-github-com-microsoft-go-winio-0.4.17-0.20210324224401-5516f17a5958))) + (home-page "https://github.com/containerd/containerd") + (synopsis "Now Recruiting") + (description + "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") + (license license:asl2.0))) + +(define-public go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20210322153248-0c34fe9e7dc2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "021szs1czc0xg4chpays7i05dvkax9s8mns314ab01r887kchqxq")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" + ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) + ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" + ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68) + ("go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110" + ,go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-github-com-containers-ocicrypt-1.1.1 + (package + (name "go-github-com-containers-ocicrypt") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containers/ocicrypt") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1l0bfk244sxnakg3my529jsw532pffkmiyk5y1iqblz4mkjfphc8")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containers/ocicrypt")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) + ("go-gopkg-in-square-go-jose-v2-2.5.1" + ,go-gopkg-in-square-go-jose-v2-2.5.1) + ("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) + ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" + ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) + ("go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2" + ,go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2) + ("go-go-mozilla-org-pkcs7-0.0.0-20200128120323-432b2356ecb1" + ,go-go-mozilla-org-pkcs7-0.0.0-20200128120323-432b2356ecb1) + ("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0) + ("go-github-com-stefanberger-go-pkcs11uri-0.0.0-20201008174630-78d3cae3a980" + ,go-github-com-stefanberger-go-pkcs11uri-0.0.0-20201008174630-78d3cae3a980) + ("go-github-com-sirupsen-logrus-1.7.0" + ,go-github-com-sirupsen-logrus-1.7.0) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-image-spec-1.0.1" + ,go-github-com-opencontainers-image-spec-1.0.1) + ("go-github-com-opencontainers-go-digest-1.0.0" + ,go-github-com-opencontainers-go-digest-1.0.0) + ("go-github-com-miekg-pkcs11-1.0.3" ,go-github-com-miekg-pkcs11-1.0.3) + ("go-github-com-google-go-cmp-0.5.2" + ,go-github-com-google-go-cmp-0.5.2) + ("go-github-com-golang-protobuf-1.4.3" + ,go-github-com-golang-protobuf-1.4.3))) + (home-page "https://github.com/containers/ocicrypt") + (synopsis "OCIcrypt Library") + (description + "The @code{ocicrypt} library is the OCI image spec implementation of container image encryption. More details of the spec can be seen in the @url{https://github.com/opencontainers/image-spec/pull/775,OCI repository}. The purpose of this library is to encode spec structures and consts in code, as well as provide a consistent implementation of image encryption across container runtimes and build tools.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-imgcrypt-1.1.1 + (package + (name "go-github-com-containerd-imgcrypt") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/imgcrypt") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "177fs3p2xzwjsffcxqqllx6wi6ghfyqbvfgn95v3q7a2993yqk4k")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/imgcrypt")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) + ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" + ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) + ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) + ("go-github-com-sirupsen-logrus-1.7.0" + ,go-github-com-sirupsen-logrus-1.7.0) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" + ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) + ("go-github-com-opencontainers-image-spec-1.0.1" + ,go-github-com-opencontainers-image-spec-1.0.1) + ("go-github-com-opencontainers-go-digest-1.0.0" + ,go-github-com-opencontainers-go-digest-1.0.0) + ("go-github-com-gogo-protobuf-1.3.2" + ,go-github-com-gogo-protobuf-1.3.2) + ("go-github-com-containers-ocicrypt-1.1.1" + ,go-github-com-containers-ocicrypt-1.1.1) + ("go-github-com-containerd-typeurl-1.0.1" + ,go-github-com-containerd-typeurl-1.0.1) + ("go-github-com-containerd-containerd-1.5.0-rc.0" + ,go-github-com-containerd-containerd-1.5.0-rc.0) + ("go-github-com-containerd-console-1.0.2" + ,go-github-com-containerd-console-1.0.2) + ("go-github-com-microsoft-hcsshim-0.8.16" + ,go-github-com-microsoft-hcsshim-0.8.16) + ("go-github-com-microsoft-go-winio-0.4.17-0.20210324224401-5516f17a5958" + ,go-github-com-microsoft-go-winio-0.4.17-0.20210324224401-5516f17a5958))) + (home-page "https://github.com/containerd/imgcrypt") + (synopsis "imgcrypt image encryption library and command line tool") + (description + "Project @code{imgcrypt} is a non-core subproject of containerd.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-nri-0.1.0 + (package + (name "go-github-com-containerd-nri") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/nri") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hqji5qa0n0fdyv9sjdl7mv3bb4fnq9i79pdzlw6m1nigrnb18qp")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/nri")) + (propagated-inputs + `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-containerd-containerd-1.5.0-beta.3" + ,go-github-com-containerd-containerd-1.5.0-beta.3))) + (home-page "https://github.com/containerd/nri") + (synopsis "nri - Node Resource Interface") + (description + "This project is a WIP for a new, CNI like, interface for managing resources on a node for Pods and Containers.") + (license license:asl2.0))) + +(define-public go-google-golang-org-genproto-0.0.0-20200224152610-e50cd9704f63 + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20200224152610-e50cd9704f63") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1392q1dfg4kkfg86w05gsszdlkd0hf424rvich1xzjqbm3ad3lin")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" + ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-golang-protobuf-1.3.3" + ,go-github-com-golang-protobuf-1.3.3))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-google-golang-org-protobuf-1.27.1 + (package + (name "go-google-golang-org-protobuf") + (version "1.27.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0aszb7cv8fq1m8akgd4kjyg5q7g5z9fdqnry6057ygq9r8r2yif2")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.5.5" + ,go-github-com-google-go-cmp-0.5.5) + ("go-github-com-golang-protobuf-1.5.0" + ,go-github-com-golang-protobuf-1.5.0))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-containerd-ttrpc-1.1.0 + (package + (name "go-github-com-containerd-ttrpc") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/ttrpc") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "13grp3ivmkdyhwpzhnva2w4lv035c4i1m0a2bdci4z44mif86gns")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/ttrpc")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.27.1" + ,go-google-golang-org-protobuf-1.27.1) + ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) + ("go-google-golang-org-genproto-0.0.0-20200224152610-e50cd9704f63" + ,go-google-golang-org-genproto-0.0.0-20200224152610-e50cd9704f63) + ("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" + ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) + ("go-github-com-sirupsen-logrus-1.8.1" + ,go-github-com-sirupsen-logrus-1.8.1) + ("go-github-com-prometheus-procfs-0.6.0" + ,go-github-com-prometheus-procfs-0.6.0) + ("go-github-com-gogo-protobuf-1.3.2" + ,go-github-com-gogo-protobuf-1.3.2))) + (home-page "https://github.com/containerd/ttrpc") + (synopsis "ttrpc") + (description "GRPC for low-memory environments.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-typeurl-1.0.2 + (package + (name "go-github-com-containerd-typeurl") + (version "1.0.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/typeurl") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wvfxlxgkln11d9s6rxay965c715bnpk203klbsq8m8qpjqrz620")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/typeurl")) + (propagated-inputs + `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-gogo-protobuf-1.3.2" + ,go-github-com-gogo-protobuf-1.3.2))) + (home-page "https://github.com/containerd/typeurl") + (synopsis "typeurl") + (description + "This package provides a Go package for managing the registration, marshaling, and unmarshaling of encoded types.") + (license license:asl2.0))) + +(define-public go-github-com-microsoft-hcsshim-0.8.15 + (package + (name "go-github-com-microsoft-hcsshim") + (version "0.8.15") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/microsoft/hcsshim") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1119qf7nklpnn9li61m8jrd5wvifhiz7qh7sfjjy04rfvbvlsi6c")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/Microsoft/hcsshim")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.30.0" ,go-google-golang-org-grpc-1.30.0) + ("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" + ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) + ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" + ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) + ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) + ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) + ("go-github-com-sirupsen-logrus-1.7.0" + ,go-github-com-sirupsen-logrus-1.7.0) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" + ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) + ("go-github-com-gogo-protobuf-1.3.2" + ,go-github-com-gogo-protobuf-1.3.2) + ("go-github-com-containerd-typeurl-1.0.1" + ,go-github-com-containerd-typeurl-1.0.1) + ("go-github-com-containerd-ttrpc-1.0.2" + ,go-github-com-containerd-ttrpc-1.0.2) + ("go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328" + ,go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328) + ("go-github-com-containerd-containerd-1.5.0-beta.1" + ,go-github-com-containerd-containerd-1.5.0-beta.1) + ("go-github-com-containerd-console-1.0.1" + ,go-github-com-containerd-console-1.0.1) + ("go-github-com-containerd-cgroups-0.0.0-20200824123100-0b889c03f102" + ,go-github-com-containerd-cgroups-0.0.0-20200824123100-0b889c03f102) + ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" + ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3))) + (home-page "https://github.com/Microsoft/hcsshim") + (synopsis "hcsshim") + (description + "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") + (license license:expat))) + +(define-public go-github-com-containerd-containerd-1.4.1 + (package + (name "go-github-com-containerd-containerd") + (version "1.4.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/containerd") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1k6dqaidnldf7kpxdszf0wn6xb8m6vaizm2aza81fri1q0051213")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/containerd")) + (home-page "https://github.com/containerd/containerd") + (synopsis "Now Recruiting") + (description + "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") + (license license:asl2.0))) + +(define-public go-golang-org-x-sys-0.0.0-20200622214017-ed371f2e16b4 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200622214017-ed371f2e16b4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "107wfy2fj6z5zps1v72j8drfrfvss1158drb0yqhz5awlbvgrpj7")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-containerd-aufs-0.0.0-20201003224125-76a6863f2989 + (package + (name "go-github-com-containerd-aufs") + (version "0.0.0-20201003224125-76a6863f2989") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/aufs") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0nsiyqjrgf3vvv6hpiljknpbkzlla1czpkq69i607f7p5jd8bgaq")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/aufs")) + (propagated-inputs + `(("go-gotest-tools-v3-3.0.2" ,go-gotest-tools-v3-3.0.2) + ("go-golang-org-x-sys-0.0.0-20200622214017-ed371f2e16b4" + ,go-golang-org-x-sys-0.0.0-20200622214017-ed371f2e16b4) + ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-image-spec-1.0.1" + ,go-github-com-opencontainers-image-spec-1.0.1) + ("go-github-com-google-go-cmp-0.3.1" + ,go-github-com-google-go-cmp-0.3.1) + ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" + ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) + ("go-github-com-containerd-typeurl-1.0.1" + ,go-github-com-containerd-typeurl-1.0.1) + ("go-github-com-containerd-ttrpc-1.0.1" + ,go-github-com-containerd-ttrpc-1.0.1) + ("go-github-com-containerd-continuity-0.0.0-20200710164510-efbc4488d8fe" + ,go-github-com-containerd-continuity-0.0.0-20200710164510-efbc4488d8fe) + ("go-github-com-containerd-containerd-1.4.1" + ,go-github-com-containerd-containerd-1.4.1) + ("go-github-com-microsoft-hcsshim-0.8.9" + ,go-github-com-microsoft-hcsshim-0.8.9))) + (home-page "https://github.com/containerd/aufs") + (synopsis "aufs snapshotter") + (description + "AUFS implementation of the snapshot interface for containerd.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68 + (package + (name "go-github-com-containerd-cgroups") + (version "0.0.0-20210114181951-8a68de567b68") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/cgroups") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0v70kxazvsizx33w9nz341hg14acg2vnbfcpx9yknmsjqdwgqnhs")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/cgroups")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9" + ,go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9) + ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) + ("go-github-com-stretchr-testify-1.2.2" + ,go-github-com-stretchr-testify-1.2.2) + ("go-github-com-sirupsen-logrus-1.7.0" + ,go-github-com-sirupsen-logrus-1.7.0) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-runtime-spec-1.0.2" + ,go-github-com-opencontainers-runtime-spec-1.0.2) + ("go-github-com-gogo-protobuf-1.3.1" + ,go-github-com-gogo-protobuf-1.3.1) + ("go-github-com-godbus-dbus-v5-5.0.3" + ,go-github-com-godbus-dbus-v5-5.0.3) + ("go-github-com-docker-go-units-0.4.0" + ,go-github-com-docker-go-units-0.4.0) + ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" + ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) + ("go-github-com-coreos-go-systemd-v22-22.1.0" + ,go-github-com-coreos-go-systemd-v22-22.1.0) + ("go-github-com-cilium-ebpf-0.2.0" ,go-github-com-cilium-ebpf-0.2.0))) + (home-page "https://github.com/containerd/cgroups") + (synopsis "cgroups") + (description + "Go package for creating, managing, inspecting, and destroying cgroups. +The resources format for settings on the cgroup uses the OCI runtime-spec found +@url{https://github.com/opencontainers/runtime-spec,here}.") + (license license:asl2.0))) + +(define-public go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3 + (package + (name "go-github-com-microsoft-go-winio") + (version "0.4.17-0.20210211115548-6eac466e5fa3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/microsoft/go-winio") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0w8fmybsl0v5azwi66qa299gwh0mlp907mrg4yaiya7s0cjmjx0d")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/Microsoft/go-winio")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" + ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) + ("go-github-com-sirupsen-logrus-1.7.0" + ,go-github-com-sirupsen-logrus-1.7.0) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) + (home-page "https://github.com/Microsoft/go-winio") + (synopsis "go-winio") + (description + "This repository contains utilities for efficiently performing Win32 IO operations in +Go. Currently, this is focused on accessing named pipes and other file handles, and +for using named pipes as a net transport.") + (license license:expat))) + +(define-public go-github-com-microsoft-hcsshim-test-0.0.0-20210227013316-43a75bb4edd3 + (package + (name "go-github-com-microsoft-hcsshim-test") + (version "0.0.0-20210227013316-43a75bb4edd3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/microsoft/hcsshim") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1j899w4hdw1mk6rfyy9qsm902iavgc49ykbjdsb02m6wszq1z0wy")))) + (build-system go-build-system) + (arguments + '(#:import-path + "github.com/Microsoft/hcsshim/test" + #:unpack-path + "github.com/Microsoft/hcsshim")) + (propagated-inputs + `(("go-k8s-io-cri-api-0.20.1" ,go-k8s-io-cri-api-0.20.1) + ("go-google-golang-org-grpc-1.30.0" ,go-google-golang-org-grpc-1.30.0) + ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" + ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) + ("go-github-com-sirupsen-logrus-1.7.0" + ,go-github-com-sirupsen-logrus-1.7.0) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39" + ,go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39) + ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" + ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) + ("go-github-com-gogo-protobuf-1.3.2" + ,go-github-com-gogo-protobuf-1.3.2) + ("go-github-com-containerd-typeurl-1.0.1" + ,go-github-com-containerd-typeurl-1.0.1) + ("go-github-com-containerd-ttrpc-1.0.2" + ,go-github-com-containerd-ttrpc-1.0.2) + ("go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328" + ,go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328) + ("go-github-com-containerd-containerd-1.5.0-beta.1" + ,go-github-com-containerd-containerd-1.5.0-beta.1) + ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" + ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3))) + (home-page "https://github.com/Microsoft/hcsshim") + (synopsis #f) + (description #f) + (license license:expat))) + +(define-public go-github-com-microsoft-go-winio-0.4.16 + (package + (name "go-github-com-microsoft-go-winio") + (version "0.4.16") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/microsoft/go-winio") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0snwbwdjs34x0my9ri77cvrbnahdiyjh2jlkzf12fy48p7fyk7pq")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/Microsoft/go-winio")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3" + ,go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3) + ("go-github-com-sirupsen-logrus-1.4.1" + ,go-github-com-sirupsen-logrus-1.4.1) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) + (home-page "https://github.com/Microsoft/go-winio") + (synopsis "go-winio") + (description + "This repository contains utilities for efficiently performing Win32 IO operations in +Go. Currently, this is focused on accessing named pipes and other file handles, and +for using named pipes as a net transport.") + (license license:expat))) + +(define-public go-github-com-azure-azure-sdk-for-go-16.2.1+incompatible + (package + (name "go-github-com-azure-azure-sdk-for-go") + (version "16.2.1+incompatible") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/Azure/azure-sdk-for-go") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1hwrspsyfs003h4f8zl8b41g3a6jpkqawqrykd1mjw9p6hs1c6k8")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/Azure/azure-sdk-for-go")) + (home-page "https://github.com/Azure/azure-sdk-for-go") + (synopsis "Azure SDK for Go") + (description + "Package sdk provides Go packages for managing and using Azure services. +") + (license license:expat))) + +(define-public go-github-com-azure-go-autorest-10.8.1+incompatible + (package + (name "go-github-com-azure-go-autorest") + (version "10.8.1+incompatible") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/Azure/go-autorest") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "122zfifj93vkix8ggkdh0dz5rmzxh4bql4nry1hws2czmzgxlkdm")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/Azure/go-autorest")) + (home-page "https://github.com/Azure/go-autorest") + (synopsis "go-autorest") + (description + "Package go-autorest provides an HTTP request client for use with Autorest-generated API client packages. +") + (license license:asl2.0))) + +(define-public go-github-com-shopify-logrus-bugsnag-0.0.0-20171204204709-577dee27f20d + (package + (name "go-github-com-shopify-logrus-bugsnag") + (version "0.0.0-20171204204709-577dee27f20d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/Shopify/logrus-bugsnag") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1l3yahk77vzgmjs7baf8g14sv33jj04rw73iind4wayg40lfgrp8")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/Shopify/logrus-bugsnag")) + (home-page "https://github.com/Shopify/logrus-bugsnag") + (synopsis "logrus-bugsnag") + (description + "logrus-bugsnag is a hook that allows @url{https://github.com/sirupsen/logrus,Logrus} to interface with @url{https://bugsnag.com,Bugsnag}.") + (license license:expat))) + +(define-public go-github-com-go-ini-ini-1.25.4 + (package + (name "go-github-com-go-ini-ini") + (version "1.25.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/go-ini/ini") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0b6cql5ripbiyrm18d6bfd1rfjnwcbskppw3d0vb80l0wy72d0c6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/go-ini/ini")) + (home-page "https://github.com/go-ini/ini") + (synopsis "INI") + (description + "Package ini provides INI file read and write functionality in Go. +") + (license license:asl2.0))) + +(define-public go-github-com-jmespath-go-jmespath-0.0.0-20160202185014-0b12d6b521d8 + (package + (name "go-github-com-jmespath-go-jmespath") + (version "0.0.0-20160202185014-0b12d6b521d8") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jmespath/go-jmespath") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1vv6hph8j6xgv7gwl9vvhlsaaqsm22sxxqmgmldi4v11783pc1ld")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/jmespath/go-jmespath")) + (home-page "https://github.com/jmespath/go-jmespath") + (synopsis "go-jmespath - A JMESPath implementation in Go") + (description + "go-jmespath is a GO implementation of JMESPath, +which is a query language for JSON. It will take a JSON +document and transform it into another JSON document +through a JMESPath expression.") + (license license:asl2.0))) + +(define-public go-github-com-aws-aws-sdk-go-1.15.11 + (package + (name "go-github-com-aws-aws-sdk-go") + (version "1.15.11") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/aws/aws-sdk-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0w960w39k3nyc17p1lvd41cls39qwg7kzfm57vfbdb4h1m5sck99")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/aws/aws-sdk-go")) + (propagated-inputs + `(("go-github-com-jmespath-go-jmespath-0.0.0-20160202185014-0b12d6b521d8" + ,go-github-com-jmespath-go-jmespath-0.0.0-20160202185014-0b12d6b521d8) + ("go-github-com-go-ini-ini-1.25.4" ,go-github-com-go-ini-ini-1.25.4))) + (home-page "https://github.com/aws/aws-sdk-go") + (synopsis "AWS SDK for Go") + (description + "Package sdk is the official AWS SDK for the Go programming language. +") + (license license:asl2.0))) + +(define-public go-github-com-beorn7-perks-0.0.0-20160804104726-4c0e84591b9a + (package + (name "go-github-com-beorn7-perks") + (version "0.0.0-20160804104726-4c0e84591b9a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/beorn7/perks") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1hrybsql68xw57brzj805xx2mghydpdiysv3gbhr7f5wlxj2514y")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/beorn7/perks")) + (home-page "https://github.com/beorn7/perks") + (synopsis "Perks for Go (golang.org)") + (description + "Perks contains the Go package quantile that computes approximate quantiles over +an unbounded data stream within low memory and CPU bounds.") + (license license:expat))) + +(define-public go-github-com-bitly-go-simplejson-0.5.0 + (package + (name "go-github-com-bitly-go-simplejson") + (version "0.5.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/bitly/go-simplejson") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0n9f9dz1jn1jx86d48569nznpjn9fmq3knn7r65xpy7jhih284jj")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/bitly/go-simplejson")) + (home-page "https://github.com/bitly/go-simplejson") + (synopsis "go-simplejson") + (description "a Go package to interact with arbitrary JSON") + (license license:expat))) + +(define-public go-github-com-bmizerany-assert-0.0.0-20160611221934-b7ed37b82869 + (package + (name "go-github-com-bmizerany-assert") + (version "0.0.0-20160611221934-b7ed37b82869") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/bmizerany/assert") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18hy1wyl9zdi7sgxafrn3m7fadh6in0rhhb8l0cvkxqzdl0jcw2s")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/bmizerany/assert")) + (home-page "https://github.com/bmizerany/assert") + (synopsis #f) + (description #f) + (license #f))) + +(define-public go-github-com-bshuster-repo-logrus-logstash-hook-0.4.1 + (package + (name "go-github-com-bshuster-repo-logrus-logstash-hook") + (version "0.4.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/bshuster-repo/logrus-logstash-hook") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1kkjzav4i3l2ahgpirysr0cqh60vdq517lpj00cc9z32zfrsw87k")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/bshuster-repo/logrus-logstash-hook")) + (home-page "https://github.com/bshuster-repo/logrus-logstash-hook") + (synopsis "Logstash hook for logrus") + (description + "Use this hook to send the logs to @url{https://www.elastic.co/products/logstash,Logstash}.") + (license license:expat))) + +(define-public go-github-com-bugsnag-bugsnag-go-0.0.0-20141110184014-b1d153021fcd + (package + (name "go-github-com-bugsnag-bugsnag-go") + (version "0.0.0-20141110184014-b1d153021fcd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/bugsnag/bugsnag-go") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "057vwigfzq42p9vkk9yhy8vkvgdmh6653rc988jmvmrkwbgvb352")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/bugsnag/bugsnag-go")) + (home-page "https://github.com/bugsnag/bugsnag-go") + (synopsis "Bugsnag error reporter for Go") + (description + "Package bugsnag captures errors in real-time and reports them to Bugsnag (@url{http://bugsnag.com,http://bugsnag.com}). +") + (license license:expat))) + +(define-public go-github-com-bugsnag-osext-0.0.0-20130617224835-0dd3f918b21b + (package + (name "go-github-com-bugsnag-osext") + (version "0.0.0-20130617224835-0dd3f918b21b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/bugsnag/osext") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "02pczqml6p1mnfdrygm3rs02g0r65qx8v1bi3x24dx8wv9dr5y23")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/bugsnag/osext")) + (home-page "https://github.com/bugsnag/osext") + (synopsis #f) + (description "Extensions to the standard \"os\" package. +") + (license license:zlib))) + +(define-public go-github-com-bugsnag-panicwrap-0.0.0-20151223152923-e2c28503fcd0 + (package + (name "go-github-com-bugsnag-panicwrap") + (version "0.0.0-20151223152923-e2c28503fcd0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/bugsnag/panicwrap") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "02z1q18s83xhfsz3n8bzv071a6n0irlad11yxppaf7015a7dl446")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/bugsnag/panicwrap")) + (home-page "https://github.com/bugsnag/panicwrap") + (synopsis "panicwrap") + (description + "The panicwrap package provides functions for capturing and handling +panics in your application. It does this by re-executing the running +application and monitoring stderr for any panics. At the same time, +stdout/stderr/etc. are set to the same values so that data is shuttled +through properly, making the existence of panicwrap mostly transparent. +") + (license license:expat))) + +(define-public go-github-com-denverdino-aliyungo-0.0.0-20190125010748-a747050bb1ba + (package + (name "go-github-com-denverdino-aliyungo") + (version "0.0.0-20190125010748-a747050bb1ba") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/denverdino/aliyungo") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0rc16ciz8gjpn36fhp0qz1ns0inlvjaz07z1qffl9ni4b49hhwkn")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/denverdino/aliyungo")) + (home-page "https://github.com/denverdino/aliyungo") + (synopsis "AliyunGo: Go SDK for Aliyun Services") + (description + "This is an unofficial Go SDK for Aliyun services. You are welcome for contribution.") + (license license:asl2.0))) + +(define-public go-github-com-dgrijalva-jwt-go-0.0.0-20170104182250-a601269ab70c + (package + (name "go-github-com-dgrijalva-jwt-go") + (version "0.0.0-20170104182250-a601269ab70c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/dgrijalva/jwt-go") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1c2dhmj95wh9cs099cr43qghgmp6bqx0mq44vha2dqq5jkbazwfv")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/dgrijalva/jwt-go")) + (home-page "https://github.com/dgrijalva/jwt-go") + (synopsis "jwt-go") + (description + "Package jwt is a Go implementation of JSON Web Tokens: @url{http://self-issued.info/docs/draft-jones-json-web-token.html,http://self-issued.info/docs/draft-jones-json-web-token.html} +") + (license license:expat))) + +(define-public go-github-com-dnaeon-go-vcr-1.0.1 + (package + (name "go-github-com-dnaeon-go-vcr") + (version "1.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/dnaeon/go-vcr") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1d0kpqr12qrqlamz5a47bp05mx49za2v6l1k7c6z71xahfmb7v2d")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/dnaeon/go-vcr")) + (home-page "https://github.com/dnaeon/go-vcr") + (synopsis "go-vcr") + (description + "@code{go-vcr} simplifies testing by recording your HTTP interactions and +replaying them in future runs in order to provide fast, deterministic +and accurate testing of your code.") + (license license:bsd-2))) + +(define-public go-github-com-docker-go-metrics-0.0.0-20180209012529-399ea8c73916 + (package + (name "go-github-com-docker-go-metrics") + (version "0.0.0-20180209012529-399ea8c73916") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/docker/go-metrics") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0najfy92fq05b330cnjk5b326yi7dnnmvzfk6g5lsa1fci78yzw4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/docker/go-metrics")) + (home-page "https://github.com/docker/go-metrics") + (synopsis "go-metrics") + (description + "This package is small wrapper around the prometheus go client to help enforce convention and best practices for metrics collection in Docker projects.") + (license (list license:asl2.0 license:cc-by-sa4.0)))) + +(define-public go-github-com-docker-libtrust-0.0.0-20150114040149-fa567046d9b1 + (package + (name "go-github-com-docker-libtrust") + (version "0.0.0-20150114040149-fa567046d9b1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/docker/libtrust") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1121c7fxarzyr3fvxyzfw8qs4hb8k92dsix26s5vxncgszl5svf2")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/docker/libtrust")) + (home-page "https://github.com/docker/libtrust") + (synopsis "libtrust") + (description + "Package libtrust provides an interface for managing authentication and +authorization using public key cryptography. Authentication is handled +using the identity attached to the public key and verified through TLS +x509 certificates, a key challenge, or signature. Authorization and +access control is managed through a trust graph distributed between +both remote trust servers and locally cached and managed data. +") + (license license:asl2.0))) + +(define-public go-github-com-garyburd-redigo-0.0.0-20150301180006-535138d7bcd7 + (package + (name "go-github-com-garyburd-redigo") + (version "0.0.0-20150301180006-535138d7bcd7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/garyburd/redigo") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1m7nc1gvv5yqnq8ii75f33485il6y6prf8gxl97dimsw94qccc5v")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/garyburd/redigo")) + (home-page "https://github.com/garyburd/redigo") + (synopsis #f) + (description + "Future development of Redigo is at +@url{https://github.com/gomodule/redigo,github.com/gomodule/redigo}. Please submit +issues at gomodule/redigo. The repository at github.com/garyburd/redigo is a +read-only snapshot.") + (license license:asl2.0))) + +(define-public go-github-com-gorilla-handlers-0.0.0-20150720190736-60c7bfde3e33 + (package + (name "go-github-com-gorilla-handlers") + (version "0.0.0-20150720190736-60c7bfde3e33") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gorilla/handlers") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0zvpxvybdn8yqpk2cxs134ip9wxmw6c1s0kw9nahf7qw1kfyzycm")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/gorilla/handlers")) + (home-page "https://github.com/gorilla/handlers") + (synopsis "gorilla/handlers") + (description + "Package handlers is a collection of handlers (aka \"HTTP middleware\") for use +with Go's net/http package (or any framework supporting http.Handler). +") + (license license:bsd-2))) + +(define-public go-github-com-gorilla-mux-1.7.2 + (package + (name "go-github-com-gorilla-mux") + (version "1.7.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gorilla/mux") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1gjcbgpdl3snc38i8sj8k6sqbv3inyrxqyggbqvr4jfx2phv2zy6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/gorilla/mux")) + (home-page "https://github.com/gorilla/mux") + (synopsis "gorilla/mux") + (description "Package mux implements a request router and dispatcher. +") + (license license:bsd-3))) + +(define-public go-github-com-jmespath-go-jmespath-0.0.0-20160803190731-bd40a432e4c7 + (package + (name "go-github-com-jmespath-go-jmespath") + (version "0.0.0-20160803190731-bd40a432e4c7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jmespath/go-jmespath") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1kgzwiyqn24ba9kgpjxlq1h746gnyby0psbjj9mp2yx0h1i0kc4z")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/jmespath/go-jmespath")) + (home-page "https://github.com/jmespath/go-jmespath") + (synopsis "go-jmespath - A JMESPath implementation in Go") + (description + "go-jmespath is a GO implementation of JMESPath, +which is a query language for JSON. It will take a JSON +document and transform it into another JSON document +through a JMESPath expression.") + (license license:asl2.0))) + +(define-public go-github-com-marstr-guid-1.1.0 + (package + (name "go-github-com-marstr-guid") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/marstr/guid") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "081qrar6wwpmb2pq3swv4byh73r9riyhl2dwv0902d8jg3kwricm")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/marstr/guid")) + (home-page "https://github.com/marstr/guid") + (synopsis "Guid") + (description + "Globally unique identifiers offer a quick means of generating non-colliding values across a distributed system. For this implemenation, @url{http://ietf.org/rfc/rfc4122.txt,RFC 4122} governs the desired behavior.") + (license license:expat))) + +(define-public go-github-com-mitchellh-osext-0.0.0-20151018003038-5e2d6d41470f + (package + (name "go-github-com-mitchellh-osext") + (version "0.0.0-20151018003038-5e2d6d41470f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mitchellh/osext") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0j635c1cx7crs5wlirlk713l36x70pnlmqrzd3x3bjgnjg194jrk")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mitchellh/osext")) + (home-page "https://github.com/mitchellh/osext") + (synopsis "osext") + (description "Extensions to the standard \"os\" package. +") + (license license:zlib))) + +(define-public go-github-com-ncw-swift-1.0.47 + (package + (name "go-github-com-ncw-swift") + (version "1.0.47") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/ncw/swift") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wxz4lvy6pjabghq8inby2fyh58ysclayccziawc8fd7a67kh4cd")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/ncw/swift")) + (home-page "https://github.com/ncw/swift") + (synopsis "Swift") + (description + "Package swift provides an easy to use interface to Swift / Openstack Object Storage / Rackspace Cloud Files +") + (license license:expat))) + +(define-public go-github-com-opencontainers-go-digest-0.0.0-20170106003457-a6d0ee40d420 + (package + (name "go-github-com-opencontainers-go-digest") + (version "0.0.0-20170106003457-a6d0ee40d420") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/go-digest") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1paz3na2xkhi10p5bk7f7gbh5yykfgr9f9i2gcc13rb461yq6fmg")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/go-digest")) + (home-page "https://github.com/opencontainers/go-digest") + (synopsis "go-digest") + (description + "Package digest provides a generalized type to opaquely represent message +digests and their operations within the registry. The Digest type is +designed to serve as a flexible identifier in a content-addressable system. +More importantly, it provides tools and wrappers to work with +hash.Hash-based digests with little effort. +") + (license (list license:asl2.0 license:cc-by-sa4.0)))) + +(define-public go-github-com-opencontainers-image-spec-1.0.0 + (package + (name "go-github-com-opencontainers-image-spec") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/image-spec") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "04ax2pylpwzsa5pw6wk94shdpdmfyqf70ys0idhpxsygzc2m5l23")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/image-spec")) + (home-page "https://github.com/opencontainers/image-spec") + (synopsis "OCI Image Format Specification") + (description + "The OCI Image Format project creates and maintains the software shipping container image format spec (OCI Image Format).") + (license license:asl2.0))) + +(define-public go-github-com-prometheus-client-golang-0.0.0-20180209125602-c332b6f63c06 + (package + (name "go-github-com-prometheus-client-golang") + (version "0.0.0-20180209125602-c332b6f63c06") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/client_golang") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "068r759wnh1lxcjhj89z4bqbpl7ydcx2drn2967ygw80nyab30pq")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/client_golang")) + (home-page "https://github.com/prometheus/client_golang") + (synopsis "Prometheus Go client library") + (description + "This is the @url{http://golang.org,Go} client library for +@url{http://prometheus.io,Prometheus}. It has two separate parts, one for +instrumenting application code, and one for creating clients that talk to the +Prometheus HTTP API.") + (license license:asl2.0))) + +(define-public go-github-com-prometheus-client-model-0.0.0-20171117100541-99fa1f4be8e5 + (package + (name "go-github-com-prometheus-client-model") + (version "0.0.0-20171117100541-99fa1f4be8e5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/client_model") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19y4ywsivhpxj7ikf2j0gm9k3cmyw37qcbfi78n526jxcc7kw998")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/client_model")) + (home-page "https://github.com/prometheus/client_model") + (synopsis "Deprecation note") + (description + "This repository used to contain the code that defined both +the data model and the exposition format of Prometheus metrics.") + (license license:asl2.0))) + +(define-public go-github-com-prometheus-common-0.0.0-20180110214958-89604d197083 + (package + (name "go-github-com-prometheus-common") + (version "0.0.0-20180110214958-89604d197083") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/common") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "169rdlaf2mk9z4fydz7ajmngyhmf3q1lk96yhvx46bn986x5xkyn")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/common")) + (home-page "https://github.com/prometheus/common") + (synopsis "Common") + (description + "This repository contains Go libraries that are shared across Prometheus +components and libraries. They are considered internal to Prometheus, without +any stability guarantees for external usage.") + (license license:asl2.0))) + +(define-public go-github-com-gopherjs-gopherjs-0.0.0-20181017120253-0766667cb4d1 + (package + (name "go-github-com-gopherjs-gopherjs") + (version "0.0.0-20181017120253-0766667cb4d1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gopherjs/gopherjs") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "13pfc9sxiwjky2lm1xb3i3lcisn8p6mgjk2d927l7r92ysph8dmw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/gopherjs/gopherjs")) + (home-page "https://github.com/gopherjs/gopherjs") + (synopsis "GopherJS - A compiler from Go to JavaScript") + (description + "GopherJS compiles Go code (@url{https://golang.org/,golang.org}) to pure JavaScript code. Its main purpose is to give you the opportunity to write front-end code in Go which will still run in all browsers.") + (license license:bsd-2))) + +(define-public go-github-com-jtolds-gls-4.20.0+incompatible + (package + (name "go-github-com-jtolds-gls") + (version "4.20.0+incompatible") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jtolio/gls") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1k7xd2q2ysv2xsh373qs801v6f359240kx0vrl0ydh7731lngvk6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/jtolds/gls")) + (home-page "https://github.com/jtolds/gls") + (synopsis "gls") + (description "Package gls implements goroutine-local storage. +") + (license license:expat))) + +(define-public go-github-com-smartystreets-assertions-0.0.0-20180927180507-b2de0cb4f26d + (package + (name "go-github-com-smartystreets-assertions") + (version "0.0.0-20180927180507-b2de0cb4f26d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/smartystreets/assertions") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1i7ldgavgl35c7gk25p7bvdr282ckng090zr4ch9mk1705akx09y")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/smartystreets/assertions")) + (home-page "https://github.com/smartystreets/assertions") + (synopsis #f) + (description + "Package assertions contains the implementations for all assertions which +are referenced in goconvey's `convey` package +(github.com/smartystreets/goconvey/convey) and gunit (github.com/smartystreets/gunit) +for use with the So(...) method. +They can also be used in traditional Go test functions and even in +applications. +") + (license license:expat))) + +(define-public go-golang-org-x-tools-0.0.0-20190328211700-ab21143f2384 + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20190328211700-ab21143f2384") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "15fk0psk53pplpyghz55bhay0kvsv5rikmn5hwgjnnyxq9vfy178")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-github-com-smartystreets-goconvey-0.0.0-20190330032615-68dc04aab96a + (package + (name "go-github-com-smartystreets-goconvey") + (version "0.0.0-20190330032615-68dc04aab96a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/smartystreets/goconvey") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1kas5v95fzhr88hg4rjy0vp03y4pzvy3pwwgkfz2yhn5nlj29nk6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/smartystreets/goconvey")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20190328211700-ab21143f2384" + ,go-golang-org-x-tools-0.0.0-20190328211700-ab21143f2384) + ("go-github-com-smartystreets-assertions-0.0.0-20180927180507-b2de0cb4f26d" + ,go-github-com-smartystreets-assertions-0.0.0-20180927180507-b2de0cb4f26d) + ("go-github-com-jtolds-gls-4.20.0+incompatible" + ,go-github-com-jtolds-gls-4.20.0+incompatible) + ("go-github-com-gopherjs-gopherjs-0.0.0-20181017120253-0766667cb4d1" + ,go-github-com-gopherjs-gopherjs-0.0.0-20181017120253-0766667cb4d1))) + (home-page "https://github.com/smartystreets/goconvey") + (synopsis "GoConvey is awesome Go testing") + (description + "This executable provides an HTTP server that watches for file system changes +to .go files within the working directory (and all nested go packages). +Navigating to the configured host and port in a web browser will display the +latest results of running `go test` in each go package. +") + (license license:expat))) + +(define-public go-github-com-yvasiyarov-go-metrics-0.0.0-20140926110328-57bccd1ccd43 + (package + (name "go-github-com-yvasiyarov-go-metrics") + (version "0.0.0-20140926110328-57bccd1ccd43") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/yvasiyarov/go-metrics") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1rwlq9k3iii54da90fjivi13zacx2h6znppkzncvl653xhjpm26g")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/yvasiyarov/go-metrics")) + (home-page "https://github.com/yvasiyarov/go-metrics") + (synopsis "go-metrics") + (description "Go port of Coda Hale's Metrics library +") + (license #f))) + +(define-public go-github-com-yvasiyarov-gorelic-0.0.0-20141212073537-a9bba5b9ab50 + (package + (name "go-github-com-yvasiyarov-gorelic") + (version "0.0.0-20141212073537-a9bba5b9ab50") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/yvasiyarov/gorelic") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1niwv40k9rx2g5h6wddci9ykf1sm1d5ml9mjgdjd1ahm4wfq08gn")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/yvasiyarov/gorelic")) + (home-page "https://github.com/yvasiyarov/gorelic") + (synopsis "GoRelic is deprecated in favour of") + (description + "Package gorelic is an New Relic agent implementation for Go runtime. It collect a lot of metrics about Go scheduler, garbage collector and memory allocator and send them to NewRelic. +") + (license license:bsd-2))) + +(define-public go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20140908184405-b21fdbd4370f + (package + (name "go-github-com-yvasiyarov-newrelic-platform-go") + (version "0.0.0-20140908184405-b21fdbd4370f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/yvasiyarov/newrelic_platform_go") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0a4yncdxwsy0rn3bhkadfysm817b7ndzmh9fkg8hh92pnw5aabzw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/yvasiyarov/newrelic_platform_go")) + (home-page "https://github.com/yvasiyarov/newrelic_platform_go") + (synopsis "New Relic Platform Agent SDK for Go(golang)") + (description + "Package newrelic_platform_go is New Relic Platform Agent SDK for Go language. +") + (license license:bsd-2))) + +(define-public go-golang-org-x-net-0.0.0-20190619014844-b5b0513f8c1b + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190619014844-b5b0513f8c1b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0sr4gbiq09izkmm6hcmfnia6lz6ngzzqjbwlrzh7jifbzyck53wz")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20190602015325-4c4f7f33c9ed + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190602015325-4c4f7f33c9ed") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "191001bxqyc3xfs46nnqmm7jdk0r73vk7a4zqngfl7zwjv9smwsq")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-google-golang-org-api-0.0.0-20160322025152-9bf6e6e569ff + (package + (name "go-google-golang-org-api") + (version "0.0.0-20160322025152-9bf6e6e569ff") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-api-go-client") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "02zn0zr4jrkdnxhxa0h3vm30j27bsc4lcswrffilkrafbspjsrxz")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/api")) + (home-page "https://google.golang.org/api") + (synopsis "Google APIs Client Library for Go") + (description + "Package api is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of +sub-packages. +") + (license license:bsd-3))) + +(define-public go-google-golang-org-cloud-0.0.0-20151119220103-975617b05ea8 + (package + (name "go-google-golang-org-cloud") + (version "0.0.0-20151119220103-975617b05ea8") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-cloud-go") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "156jhn1kakr98jfk830y4yr8lhisdj6qs38ypa42ddmgza9qcmdd")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/cloud")) + (home-page "https://google.golang.org/cloud") + (synopsis "Google Cloud Client Libraries for Go") + (description + "Package cloud is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +of sub-packages. +") + (license license:asl2.0))) + +(define-public go-google-golang-org-grpc-0.0.0-20160317175043-d3ddb4469d5a + (package + (name "go-google-golang-org-grpc") + (version "0.0.0-20160317175043-d3ddb4469d5a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0p45by0s66ragvx9hs8gkz1k1gy8456y794b5zspa0b86y2b53w9")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-gopkg-in-check-v1-1.0.0-20141024133853-64131543e789 + (package + (name "go-gopkg-in-check-v1") + (version "1.0.0-20141024133853-64131543e789") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/check.v1") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "01sz40asq0zwf6j7q2hww33wr1cflglngq8xazw466c9d1f9kyyh")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) + (home-page "https://gopkg.in/check.v1") + (synopsis "Instructions") + (description + "Package check is a rich testing extension for Go's testing package. +") + (license license:bsd-2))) + +(define-public go-github-com-docker-distribution-0.0.0-20190905152932-14b96e55d84c + (package + (name "go-github-com-docker-distribution") + (version "0.0.0-20190905152932-14b96e55d84c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/distribution/distribution") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0jd7ccjy7ahznsh6hf9dhqbgn9glwc0db9g5nv8n6sys5d1jdni9")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/docker/distribution")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) + ("go-gopkg-in-check-v1-1.0.0-20141024133853-64131543e789" + ,go-gopkg-in-check-v1-1.0.0-20141024133853-64131543e789) + ("go-google-golang-org-grpc-0.0.0-20160317175043-d3ddb4469d5a" + ,go-google-golang-org-grpc-0.0.0-20160317175043-d3ddb4469d5a) + ("go-google-golang-org-cloud-0.0.0-20151119220103-975617b05ea8" + ,go-google-golang-org-cloud-0.0.0-20151119220103-975617b05ea8) + ("go-google-golang-org-api-0.0.0-20160322025152-9bf6e6e569ff" + ,go-google-golang-org-api-0.0.0-20160322025152-9bf6e6e569ff) + ("go-golang-org-x-sys-0.0.0-20190602015325-4c4f7f33c9ed" + ,go-golang-org-x-sys-0.0.0-20190602015325-4c4f7f33c9ed) + ("go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45" + ,go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45) + ("go-golang-org-x-net-0.0.0-20190619014844-b5b0513f8c1b" + ,go-golang-org-x-net-0.0.0-20190619014844-b5b0513f8c1b) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2) + ("go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20140908184405-b21fdbd4370f" + ,go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20140908184405-b21fdbd4370f) + ("go-github-com-yvasiyarov-gorelic-0.0.0-20141212073537-a9bba5b9ab50" + ,go-github-com-yvasiyarov-gorelic-0.0.0-20141212073537-a9bba5b9ab50) + ("go-github-com-yvasiyarov-go-metrics-0.0.0-20140926110328-57bccd1ccd43" + ,go-github-com-yvasiyarov-go-metrics-0.0.0-20140926110328-57bccd1ccd43) + ("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0) + ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) + ("go-github-com-spf13-cobra-0.0.3" ,go-github-com-spf13-cobra-0.0.3) + ("go-github-com-smartystreets-goconvey-0.0.0-20190330032615-68dc04aab96a" + ,go-github-com-smartystreets-goconvey-0.0.0-20190330032615-68dc04aab96a) + ("go-github-com-sirupsen-logrus-1.4.2" + ,go-github-com-sirupsen-logrus-1.4.2) + ("go-github-com-satori-go-uuid-1.2.0" + ,go-github-com-satori-go-uuid-1.2.0) + ("go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7" + ,go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7) + ("go-github-com-prometheus-common-0.0.0-20180110214958-89604d197083" + ,go-github-com-prometheus-common-0.0.0-20180110214958-89604d197083) + ("go-github-com-prometheus-client-model-0.0.0-20171117100541-99fa1f4be8e5" + ,go-github-com-prometheus-client-model-0.0.0-20171117100541-99fa1f4be8e5) + ("go-github-com-prometheus-client-golang-0.0.0-20180209125602-c332b6f63c06" + ,go-github-com-prometheus-client-golang-0.0.0-20180209125602-c332b6f63c06) + ("go-github-com-opencontainers-image-spec-1.0.0" + ,go-github-com-opencontainers-image-spec-1.0.0) + ("go-github-com-opencontainers-go-digest-0.0.0-20170106003457-a6d0ee40d420" + ,go-github-com-opencontainers-go-digest-0.0.0-20170106003457-a6d0ee40d420) + ("go-github-com-ncw-swift-1.0.47" ,go-github-com-ncw-swift-1.0.47) + ("go-github-com-mitchellh-osext-0.0.0-20151018003038-5e2d6d41470f" + ,go-github-com-mitchellh-osext-0.0.0-20151018003038-5e2d6d41470f) + ("go-github-com-mitchellh-mapstructure-1.1.2" + ,go-github-com-mitchellh-mapstructure-1.1.2) + ("go-github-com-matttproud-golang-protobuf-extensions-1.0.1" + ,go-github-com-matttproud-golang-protobuf-extensions-1.0.1) + ("go-github-com-marstr-guid-1.1.0" ,go-github-com-marstr-guid-1.1.0) + ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) + ("go-github-com-jmespath-go-jmespath-0.0.0-20160803190731-bd40a432e4c7" + ,go-github-com-jmespath-go-jmespath-0.0.0-20160803190731-bd40a432e4c7) + ("go-github-com-inconshreveable-mousetrap-1.0.0" + ,go-github-com-inconshreveable-mousetrap-1.0.0) + ("go-github-com-gorilla-mux-1.7.2" ,go-github-com-gorilla-mux-1.7.2) + ("go-github-com-gorilla-handlers-0.0.0-20150720190736-60c7bfde3e33" + ,go-github-com-gorilla-handlers-0.0.0-20150720190736-60c7bfde3e33) + ("go-github-com-garyburd-redigo-0.0.0-20150301180006-535138d7bcd7" + ,go-github-com-garyburd-redigo-0.0.0-20150301180006-535138d7bcd7) + ("go-github-com-docker-libtrust-0.0.0-20150114040149-fa567046d9b1" + ,go-github-com-docker-libtrust-0.0.0-20150114040149-fa567046d9b1) + ("go-github-com-docker-go-metrics-0.0.0-20180209012529-399ea8c73916" + ,go-github-com-docker-go-metrics-0.0.0-20180209012529-399ea8c73916) + ("go-github-com-dnaeon-go-vcr-1.0.1" + ,go-github-com-dnaeon-go-vcr-1.0.1) + ("go-github-com-dgrijalva-jwt-go-0.0.0-20170104182250-a601269ab70c" + ,go-github-com-dgrijalva-jwt-go-0.0.0-20170104182250-a601269ab70c) + ("go-github-com-denverdino-aliyungo-0.0.0-20190125010748-a747050bb1ba" + ,go-github-com-denverdino-aliyungo-0.0.0-20190125010748-a747050bb1ba) + ("go-github-com-bugsnag-panicwrap-0.0.0-20151223152923-e2c28503fcd0" + ,go-github-com-bugsnag-panicwrap-0.0.0-20151223152923-e2c28503fcd0) + ("go-github-com-bugsnag-osext-0.0.0-20130617224835-0dd3f918b21b" + ,go-github-com-bugsnag-osext-0.0.0-20130617224835-0dd3f918b21b) + ("go-github-com-bugsnag-bugsnag-go-0.0.0-20141110184014-b1d153021fcd" + ,go-github-com-bugsnag-bugsnag-go-0.0.0-20141110184014-b1d153021fcd) + ("go-github-com-bshuster-repo-logrus-logstash-hook-0.4.1" + ,go-github-com-bshuster-repo-logrus-logstash-hook-0.4.1) + ("go-github-com-bmizerany-assert-0.0.0-20160611221934-b7ed37b82869" + ,go-github-com-bmizerany-assert-0.0.0-20160611221934-b7ed37b82869) + ("go-github-com-bitly-go-simplejson-0.5.0" + ,go-github-com-bitly-go-simplejson-0.5.0) + ("go-github-com-beorn7-perks-0.0.0-20160804104726-4c0e84591b9a" + ,go-github-com-beorn7-perks-0.0.0-20160804104726-4c0e84591b9a) + ("go-github-com-aws-aws-sdk-go-1.15.11" + ,go-github-com-aws-aws-sdk-go-1.15.11) + ("go-github-com-shopify-logrus-bugsnag-0.0.0-20171204204709-577dee27f20d" + ,go-github-com-shopify-logrus-bugsnag-0.0.0-20171204204709-577dee27f20d) + ("go-github-com-azure-go-autorest-10.8.1+incompatible" + ,go-github-com-azure-go-autorest-10.8.1+incompatible) + ("go-github-com-azure-azure-sdk-for-go-16.2.1+incompatible" + ,go-github-com-azure-azure-sdk-for-go-16.2.1+incompatible))) + (home-page "https://github.com/docker/distribution") + (synopsis "Distribution") + (description + "Package distribution will define the interfaces for the components of +docker distribution. The goal is to allow users to reliably package, ship +and store content related to docker images. +") + (license license:asl2.0))) + +(define-public go-github-com-gogo-protobuf-1.2.2-0.20190723190241-65acae22fc9d + (package + (name "go-github-com-gogo-protobuf") + (version "1.2.2-0.20190723190241-65acae22fc9d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gogo/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0700alky9z0g9akhrzn20wf4jr1600d0clhs32sm8chnlbvidy46")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/gogo/protobuf")) + (propagated-inputs + `(("go-github-com-kisielk-gotool-1.0.0" + ,go-github-com-kisielk-gotool-1.0.0) + ("go-github-com-kisielk-errcheck-1.2.0" + ,go-github-com-kisielk-errcheck-1.2.0))) + (home-page "https://github.com/gogo/protobuf") + (synopsis "Protocol Buffers for Go with Gadgets") + (description + "gogoprotobuf is a fork of @url{https://github.com/golang/protobuf,golang/protobuf} with extra code generation features.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20190813064441-fde4db37ae7a + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190813064441-fde4db37ae7a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "16k4w4pzziq1kln18k5fg01qgk4hpzb5xsm7175kaky6d6gwyhg3")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-k8s-io-cri-api-0.17.3 + (package + (name "go-k8s-io-cri-api") + (version "0.17.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes/cri-api") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "047wg80q4cb9qikpj0zp2kzcgp599cdqwiqlravfy86bga4r3fgf")))) + (build-system go-build-system) + (arguments '(#:import-path "k8s.io/cri-api")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190813064441-fde4db37ae7a" + ,go-golang-org-x-sys-0.0.0-20190813064441-fde4db37ae7a) + ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) + ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" + ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) + ("go-google-golang-org-grpc-1.23.1" ,go-google-golang-org-grpc-1.23.1) + ("go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873" + ,go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873) + ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) + ("go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9" + ,go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9) + ("go-github-com-stretchr-testify-1.4.0" + ,go-github-com-stretchr-testify-1.4.0) + ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2) + ("go-github-com-gogo-protobuf-1.2.2-0.20190723190241-65acae22fc9d" + ,go-github-com-gogo-protobuf-1.2.2-0.20190723190241-65acae22fc9d) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://k8s.io/cri-api") + (synopsis "Purpose") + (description + "This repository contains the definitions for the Container Runtime Interface (CRI). +CRI is a plugin interface which enables kubelet to use a wide variety of container runtimes, +without the need to recompile. CRI consists of a protocol buffers and gRPC API.") + (license license:asl2.0))) + +(define-public go-github-com-microsoft-hcsshim-test-0.0.0-20201218223536-d3e5debf77da + (package + (name "go-github-com-microsoft-hcsshim-test") + (version "0.0.0-20201218223536-d3e5debf77da") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/microsoft/hcsshim") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0k57knv8zrf32hp7rpv1km9j772w6752pfvdbpd3l711ism48c84")))) + (build-system go-build-system) + (arguments + '(#:import-path + "github.com/Microsoft/hcsshim/test" + #:unpack-path + "github.com/Microsoft/hcsshim")) + (propagated-inputs + `(("go-k8s-io-cri-api-0.17.3" ,go-k8s-io-cri-api-0.17.3) + ("go-google-golang-org-grpc-1.23.1" ,go-google-golang-org-grpc-1.23.1) + ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" + ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) + ("go-go-etcd-io-bbolt-1.3.3" ,go-go-etcd-io-bbolt-1.3.3) + ("go-github-com-xeipuuv-gojsonschema-0.0.0-20180618132009-1d523034197f" + ,go-github-com-xeipuuv-gojsonschema-0.0.0-20180618132009-1d523034197f) + ("go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415" + ,go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415) + ("go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f" + ,go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f) + ("go-github-com-syndtr-gocapability-0.0.0-20170704070218-db04d3cc01c8" + ,go-github-com-syndtr-gocapability-0.0.0-20170704070218-db04d3cc01c8) + ("go-github-com-sirupsen-logrus-1.4.2" + ,go-github-com-sirupsen-logrus-1.4.2) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39" + ,go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39) + ("go-github-com-opencontainers-runtime-spec-1.0.2" + ,go-github-com-opencontainers-runtime-spec-1.0.2) + ("go-github-com-imdario-mergo-0.3.8" + ,go-github-com-imdario-mergo-0.3.8) + ("go-github-com-hashicorp-go-multierror-0.0.0-20161216184304-ed905158d874" + ,go-github-com-hashicorp-go-multierror-0.0.0-20161216184304-ed905158d874) + ("go-github-com-hashicorp-errwrap-0.0.0-20141028054710-7554cd9344ce" + ,go-github-com-hashicorp-errwrap-0.0.0-20141028054710-7554cd9344ce) + ("go-github-com-gogo-protobuf-1.3.1" + ,go-github-com-gogo-protobuf-1.3.1) + ("go-github-com-gogo-googleapis-1.2.0" + ,go-github-com-gogo-googleapis-1.2.0) + ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" + ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) + ("go-github-com-docker-distribution-0.0.0-20190905152932-14b96e55d84c" + ,go-github-com-docker-distribution-0.0.0-20190905152932-14b96e55d84c) + ("go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd" + ,go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd) + ("go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de" + ,go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de) + ("go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3" + ,go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3) + ("go-github-com-containerd-containerd-1.3.2" + ,go-github-com-containerd-containerd-1.3.2) + ("go-github-com-blang-semver-3.1.0+incompatible" + ,go-github-com-blang-semver-3.1.0+incompatible) + ("go-github-com-microsoft-go-winio-0.4.16-0.20201130162521-d1ffc52c7331" + ,go-github-com-microsoft-go-winio-0.4.16-0.20201130162521-d1ffc52c7331))) + (home-page "https://github.com/Microsoft/hcsshim") + (synopsis #f) + (description #f) + (license license:expat))) + +(define-public go-github-com-containerd-aufs-0.0.0-20200908144142-dab0cbea06f4 + (package + (name "go-github-com-containerd-aufs") + (version "0.0.0-20200908144142-dab0cbea06f4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/aufs") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "060iqypyrdmww0ykip1zqi5f2fl1il55vndgdn5aq5zj6530mgsn")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/aufs")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) + ("go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449" + ,go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449) + ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" + ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) + ("go-go-etcd-io-bbolt-1.3.3" ,go-go-etcd-io-bbolt-1.3.3) + ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) + ("go-github-com-opencontainers-runc-1.0.0-rc9" + ,go-github-com-opencontainers-runc-1.0.0-rc9) + ("go-github-com-opencontainers-image-spec-1.0.1" + ,go-github-com-opencontainers-image-spec-1.0.1) + ("go-github-com-opencontainers-go-digest-1.0.0-rc1" + ,go-github-com-opencontainers-go-digest-1.0.0-rc1) + ("go-github-com-google-go-cmp-0.3.1" + ,go-github-com-google-go-cmp-0.3.1) + ("go-github-com-gogo-protobuf-1.3.1" + ,go-github-com-gogo-protobuf-1.3.1) + ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" + ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) + ("go-github-com-containerd-typeurl-0.0.0-20190911142611-5eb25027c9fd" + ,go-github-com-containerd-typeurl-0.0.0-20190911142611-5eb25027c9fd) + ("go-github-com-containerd-ttrpc-0.0.0-20191028202541-4f1b8fe65a5c" + ,go-github-com-containerd-ttrpc-0.0.0-20191028202541-4f1b8fe65a5c) + ("go-github-com-containerd-continuity-0.0.0-20191127005431-f65d91d395eb" + ,go-github-com-containerd-continuity-0.0.0-20191127005431-f65d91d395eb) + ("go-github-com-containerd-containerd-1.3.1-0.20191213020239-082f7e3aed57" + ,go-github-com-containerd-containerd-1.3.1-0.20191213020239-082f7e3aed57) + ("go-github-com-microsoft-hcsshim-0.8.7" + ,go-github-com-microsoft-hcsshim-0.8.7))) + (home-page "https://github.com/containerd/aufs") + (synopsis "aufs snapshotter") + (description + "AUFS implementation of the snapshot interface for containerd.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-btrfs-0.0.0-20201111183144-404b9149801e + (package + (name "go-github-com-containerd-btrfs") + (version "0.0.0-20201111183144-404b9149801e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/btrfs") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "10aakvy9njaly2mfwi1cvys8dxjn27mnd7wnpnmxh8pxb7g2svag")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/btrfs")) + (propagated-inputs + `(("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) + (home-page "https://github.com/containerd/btrfs") + (synopsis "go-btrfs") + (description + "Package btrfs provides bindings for working with btrfs partitions from Go. +") + (license license:asl2.0))) + +(define-public go-github-com-containerd-cgroups-0.0.0-20200824123100-0b889c03f102 + (package + (name "go-github-com-containerd-cgroups") + (version "0.0.0-20200824123100-0b889c03f102") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/cgroups") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1zjmphy2df9y20hzrmwxfpyyvz8vb5lazr4pjyx3c5a5x0j4rv8d")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/cgroups")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9" + ,go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9) + ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) + ("go-github-com-stretchr-testify-1.2.2" + ,go-github-com-stretchr-testify-1.2.2) + ("go-github-com-sirupsen-logrus-1.6.0" + ,go-github-com-sirupsen-logrus-1.6.0) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-runtime-spec-1.0.2" + ,go-github-com-opencontainers-runtime-spec-1.0.2) + ("go-github-com-gogo-protobuf-1.3.1" + ,go-github-com-gogo-protobuf-1.3.1) + ("go-github-com-godbus-dbus-v5-5.0.3" + ,go-github-com-godbus-dbus-v5-5.0.3) + ("go-github-com-docker-go-units-0.4.0" + ,go-github-com-docker-go-units-0.4.0) + ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" + ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) + ("go-github-com-coreos-go-systemd-v22-22.0.0" + ,go-github-com-coreos-go-systemd-v22-22.0.0) + ("go-github-com-cilium-ebpf-0.0.0-20200702112145-1c8d4c9ef775" + ,go-github-com-cilium-ebpf-0.0.0-20200702112145-1c8d4c9ef775))) + (home-page "https://github.com/containerd/cgroups") + (synopsis "cgroups") + (description + "Go package for creating, managing, inspecting, and destroying cgroups. +The resources format for settings on the cgroup uses the OCI runtime-spec found +@url{https://github.com/opencontainers/runtime-spec,here}.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-continuity-0.0.0-20201208142359-180525291bb7 + (package + (name "go-github-com-containerd-continuity") + (version "0.0.0-20201208142359-180525291bb7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/continuity") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1di4pspqfwfafdni0in84kzyn8h1fhqb6vh4i0g5skqmrc4sxf4h")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/continuity")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3" + ,go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3) + ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" + ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) + ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" + ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) + ("go-github-com-stretchr-testify-1.4.0" + ,go-github-com-stretchr-testify-1.4.0) + ("go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95" + ,go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95) + ("go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee" + ,go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee) + ("go-github-com-sirupsen-logrus-1.6.0" + ,go-github-com-sirupsen-logrus-1.6.0) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-go-digest-1.0.0" + ,go-github-com-opencontainers-go-digest-1.0.0) + ("go-github-com-inconshreveable-mousetrap-1.0.0" + ,go-github-com-inconshreveable-mousetrap-1.0.0) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0) + ("go-github-com-dustin-go-humanize-1.0.0" + ,go-github-com-dustin-go-humanize-1.0.0) + ("go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898" + ,go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898))) + (home-page "https://github.com/containerd/continuity") + (synopsis "continuity") + (description + "This package provides a transport-agnostic, filesystem metadata manifest system") + (license license:asl2.0))) + +(define-public go-github-com-containerd-fifo-0.0.0-20201026212402-0724c46b320c + (package + (name "go-github-com-containerd-fifo") + (version "0.0.0-20201026212402-0724c46b320c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/fifo") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "11d9j0isblnnqf78ygvwjyijjxn6zdzf7p803v0jv2py4d0pkvj8")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/fifo")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449" + ,go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449) + ("go-github-com-stretchr-testify-1.4.0" + ,go-github-com-stretchr-testify-1.4.0) + ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) + (home-page "https://github.com/containerd/fifo") + (synopsis "fifo") + (description "Go package for handling fifos in a sane way.") + (license license:asl2.0))) + +(define-public go-github-com-containernetworking-cni-0.8.0 + (package + (name "go-github-com-containernetworking-cni") + (version "0.8.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containernetworking/cni") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "16i59dhiq7pc7qs32cdk4yv4w9rjx4vvlw7fb6a6jhq6hxxjrgiw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containernetworking/cni")) + (home-page "https://github.com/containernetworking/cni") + (synopsis "CNI - the Container Network Interface") + (description + "CNI (), a @url{https://cncf.io,Cloud Native Computing Foundation} project, consists of a specification and libraries for writing plugins to configure network interfaces in Linux containers, along with a number of supported plugins. +CNI concerns itself only with network connectivity of containers and removing allocated resources when the container is deleted. +Because of this focus, CNI has a wide range of support and the specification is simple to implement.") + (license license:asl2.0))) + +(define-public go-github-com-onsi-ginkgo-1.10.3 + (package + (name "go-github-com-onsi-ginkgo") + (version "1.10.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/onsi/ginkgo") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "00a40by9f5ylycnar8h3p9b4z5rcsvfvg4j3v5s5mchdqrqjv1pc")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/onsi/ginkgo")) + (home-page "https://github.com/onsi/ginkgo") + (synopsis "Ginkgo 2.0 Release Candidate is available!") + (description "Ginkgo is a BDD-style testing framework for Golang +") + (license license:expat))) + +(define-public go-github-com-stretchr-objx-0.0.0-20180129172003-8a3f7159479f + (package + (name "go-github-com-stretchr-objx") + (version "0.0.0-20180129172003-8a3f7159479f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/objx") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0rbz4x4jbq9vp3zxmv0c2wh1vbg48lmc8ncdgz7zxk7241fc31ki")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/objx")) + (home-page "https://github.com/stretchr/objx") + (synopsis "Objx") + (description + "Objx - Go package for dealing with maps, slices, JSON and other data. +") + (license license:expat))) + +(define-public go-github-com-stretchr-testify-0.0.0-20180303142811-b89eecf5ca5d + (package + (name "go-github-com-stretchr-testify") + (version "0.0.0-20180303142811-b89eecf5ca5d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0g946ii8qjaynvidj648z8izl91i6yhy0ir6g3qsrn136im3r8wk")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +") + (license license:expat))) + +(define-public go-github-com-containerd-go-cni-1.0.1 + (package + (name "go-github-com-containerd-go-cni") + (version "1.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/go-cni") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0sdlwa4d0kzpm3vg9jy6fxqqcfjq8innv1zjcyp8n9qy8vj9b24y")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/go-cni")) + (propagated-inputs + `(("go-github-com-stretchr-testify-0.0.0-20180303142811-b89eecf5ca5d" + ,go-github-com-stretchr-testify-0.0.0-20180303142811-b89eecf5ca5d) + ("go-github-com-stretchr-objx-0.0.0-20180129172003-8a3f7159479f" + ,go-github-com-stretchr-objx-0.0.0-20180129172003-8a3f7159479f) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-onsi-gomega-1.7.1" ,go-github-com-onsi-gomega-1.7.1) + ("go-github-com-onsi-ginkgo-1.10.3" ,go-github-com-onsi-ginkgo-1.10.3) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1) + ("go-github-com-containernetworking-cni-0.8.0" + ,go-github-com-containernetworking-cni-0.8.0))) + (home-page "https://github.com/containerd/go-cni") + (synopsis "go-cni") + (description + "This package provides a generic CNI library to provide APIs for CNI plugin interactions. The library provides APIs to:") + (license license:asl2.0))) + +(define-public go-github-com-containerd-console-0.0.0-20191206165004-02ecf6a7291e + (package + (name "go-github-com-containerd-console") + (version "0.0.0-20191206165004-02ecf6a7291e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/console") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1b3yq446gv8da4fajknbjxr5syz1ypz0nii9sqw066hx8kmqzgqh")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/console")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e" + ,go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e) + ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) + (home-page "https://github.com/containerd/console") + (synopsis "console") + (description + "Golang package for dealing with consoles. Light on deps and a simple API.") + (license license:asl2.0))) + +(define-public go-github-com-opencontainers-runtime-spec-1.0.1 + (package + (name "go-github-com-opencontainers-runtime-spec") + (version "1.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/runtime-spec") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "00qb0q7ndxsll12ilp5a8pqfi4i1jqrlqzv0yf7sn52lkrdrw5f4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) + (home-page "https://github.com/opencontainers/runtime-spec") + (synopsis "Open Container Initiative Runtime Specification") + (description + "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328 + (package + (name "go-github-com-containerd-go-runc") + (version "0.0.0-20200220073739-7016d3ce2328") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/go-runc") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1mx2lvfkxw9kiyhi18g3c6hcpb9r2115zjzyvz6rkdqr08xrij9k")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/go-runc")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449" + ,go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449) + ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) + ("go-github-com-opencontainers-runtime-spec-1.0.1" + ,go-github-com-opencontainers-runtime-spec-1.0.1) + ("go-github-com-containerd-console-0.0.0-20191206165004-02ecf6a7291e" + ,go-github-com-containerd-console-0.0.0-20191206165004-02ecf6a7291e))) + (home-page "https://github.com/containerd/go-runc") + (synopsis "go-runc") + (description + "This is a package for consuming the @url{https://github.com/opencontainers/runc,runc} binary in your Go applications. +It tries to expose all the settings and features of the runc CLI. If there is something missing then add it, its opensource!") + (license license:asl2.0))) + +(define-public go-github-com-microsoft-go-winio-0.4.14 + (package + (name "go-github-com-microsoft-go-winio") + (version "0.4.14") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/microsoft/go-winio") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0n34wi9l9ks2z3cz97j30ljfmqppwf1zxr16hwbnswyrk54fcxm3")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/Microsoft/go-winio")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b" + ,go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b) + ("go-github-com-sirupsen-logrus-1.4.1" + ,go-github-com-sirupsen-logrus-1.4.1) + ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) + (home-page "https://github.com/Microsoft/go-winio") + (synopsis "go-winio") + (description + "This repository contains utilities for efficiently performing Win32 IO operations in +Go. Currently, this is focused on accessing named pipes and other file handles, and +for using named pipes as a net transport.") + (license license:expat))) + +(define-public go-github-com-microsoft-hcsshim-0.8.7-0.20190325164909-8abdbb8205e4 + (package + (name "go-github-com-microsoft-hcsshim") + (version "0.8.7-0.20190325164909-8abdbb8205e4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/microsoft/hcsshim") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0029085clghvprb3bs2m9q7xk4njx5fg2gr5wm3a0y8kqx0awv45")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/Microsoft/hcsshim")) + (home-page "https://github.com/Microsoft/hcsshim") + (synopsis "hcsshim") + (description + "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") + (license license:expat))) + +(define-public go-github-com-containerd-cgroups-0.0.0-20190717030353-c4b9ac5c7601 + (package + (name "go-github-com-containerd-cgroups") + (version "0.0.0-20190717030353-c4b9ac5c7601") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/cgroups") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fpai6nsm7qd5zfd8ykq8j4ngbqcy5v2isw16j086j0qabyw2iiw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/cgroups")) + (home-page "https://github.com/containerd/cgroups") + (synopsis "cgroups") + (description + "Go package for creating, managing, inspecting, and destroying cgroups. +The resources format for settings on the cgroup uses the OCI runtime-spec found +@url{https://github.com/opencontainers/runtime-spec,here}.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-console-0.0.0-20181022165439-0650fd9eeb50 + (package + (name "go-github-com-containerd-console") + (version "0.0.0-20181022165439-0650fd9eeb50") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/console") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0cs11g3gjan15rnbgryf60725sw2hf83fb6y2hwn1rgcm0jab1b8")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/console")) + (home-page "https://github.com/containerd/console") + (synopsis "console") + (description + "Golang package for dealing with consoles. Light on deps and a simple API.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-containerd-1.3.0 + (package + (name "go-github-com-containerd-containerd") + (version "1.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/containerd") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "05mr33l0rhkj49n6wf9lk95ijqvqwhp68ll879rpad1ypfv2f8as")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/containerd")) + (home-page "https://github.com/containerd/containerd") + (synopsis "Now Recruiting") + (description + "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-continuity-0.0.0-20190815185530-f2a389ac0a02 + (package + (name "go-github-com-containerd-continuity") + (version "0.0.0-20190815185530-f2a389ac0a02") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/continuity") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0h8a7npx46sjak0dyypkgg0h5dkq6dqpa4gx1v22ik62rmw0jy8r")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/continuity")) + (home-page "https://github.com/containerd/continuity") + (synopsis "continuity") + (description + "This package provides a transport-agnostic, filesystem metadata manifest system") + (license license:asl2.0))) + +(define-public go-github-com-containerd-fifo-0.0.0-20180307165137-3d5202aec260 + (package + (name "go-github-com-containerd-fifo") + (version "0.0.0-20180307165137-3d5202aec260") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/fifo") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "11jp12vgfj0xg9m2w5cfay72fwrxb6w8za7rkcqw8yy8hypiqqxq")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/fifo")) + (home-page "https://github.com/containerd/fifo") + (synopsis "fifo") + (description "Go package for handling fifos in a sane way.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-go-runc-0.0.0-20190911050354-e029b79d8cda + (package + (name "go-github-com-containerd-go-runc") + (version "0.0.0-20190911050354-e029b79d8cda") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/go-runc") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0zwb6bfnfmj09rnz1z3xx1y2pm4wrhyp2ls7vmf7p62j5zyvdpkw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/go-runc")) + (home-page "https://github.com/containerd/go-runc") + (synopsis "go-runc") + (description + "This is a package for consuming the @url{https://github.com/opencontainers/runc,runc} binary in your Go applications. +It tries to expose all the settings and features of the runc CLI. If there is something missing then add it, its opensource!") + (license license:asl2.0))) + +(define-public go-github-com-containerd-ttrpc-0.0.0-20190828172938-92c8520ef9f8 + (package + (name "go-github-com-containerd-ttrpc") + (version "0.0.0-20190828172938-92c8520ef9f8") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/ttrpc") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1kzclhmicw2xkiqsg6npx0xzs5jx36mqmyd0gj5dzv88i7p4b8dx")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/ttrpc")) + (home-page "https://github.com/containerd/ttrpc") + (synopsis "ttrpc") + (description "GRPC for low-memory environments.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-containerd-1.2.10 + (package + (name "go-github-com-containerd-containerd") + (version "1.2.10") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/containerd") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1kddhkd93wkrimk0yjcqiavdrqc818nd39rf3wrgxyilx1mfnrwb")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/containerd")) + (home-page "https://github.com/containerd/containerd") + (synopsis "Now Recruiting") + (description + "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") + (license license:asl2.0))) + +(define-public go-github-com-fullsailor-pkcs7-0.0.0-20190404230743-d7302db945fa + (package + (name "go-github-com-fullsailor-pkcs7") + (version "0.0.0-20190404230743-d7302db945fa") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/fullsailor/pkcs7") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "13d7dpj85j36pxwg1kn7b23rm54va5p9v3vdcx27pma2jjlsxsm1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/fullsailor/pkcs7")) + (home-page "https://github.com/fullsailor/pkcs7") + (synopsis "pkcs7") + (description + "Package pkcs7 implements parsing and generation of some PKCS#7 structures. +") + (license license:expat))) + +(define-public go-golang-org-x-crypto-0.0.0-20190701094942-4def268fd1a4 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20190701094942-4def268fd1a4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1bfsnari529gw34cz0zqk3d9mrkcj1ay35kangri8kbgll0ss5a6")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" + ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) + ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" + ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-gopkg-in-square-go-jose-v2-2.3.1 + (package + (name "go-gopkg-in-square-go-jose-v2") + (version "2.3.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/square/go-jose.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "11r93g9xrcjqj7qvq8sbd5hy5rnbpmim0vdsp6rbav8gl7wimaa3")))) + (build-system go-build-system) + (arguments + '(#:import-path + "gopkg.in/square/go-jose.v2" + #:unpack-path + "gopkg.in/square/go-jose.v2")) + (home-page "https://gopkg.in/square/go-jose.v2") + (synopsis "Go JOSE") + (description + "Package jose aims to provide an implementation of the Javascript Object Signing +and Encryption set of standards. It implements encryption and signing based on +the JSON Web Encryption and JSON Web Signature standards, with optional JSON +Web Token support available in a sub-package. The library supports both the +compact and full serialization formats, and has optional support for multiple +recipients. +") + (license license:asl2.0))) + +(define-public go-github-com-containers-ocicrypt-1.0.1 + (package + (name "go-github-com-containers-ocicrypt") + (version "1.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containers/ocicrypt") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0q27vzgdsimypkpi7iv0rl1xz571554adphyl0j8b5qa8wrf0n7v")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containers/ocicrypt")) + (propagated-inputs + `(("go-gotest-tools-2.2.0+incompatible" + ,go-gotest-tools-2.2.0+incompatible) + ("go-gopkg-in-square-go-jose-v2-2.3.1" + ,go-gopkg-in-square-go-jose-v2-2.3.1) + ("go-google-golang-org-grpc-1.24.0" ,go-google-golang-org-grpc-1.24.0) + ("go-golang-org-x-crypto-0.0.0-20190701094942-4def268fd1a4" + ,go-golang-org-x-crypto-0.0.0-20190701094942-4def268fd1a4) + ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) + ("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0) + ("go-github-com-sirupsen-logrus-1.4.2" + ,go-github-com-sirupsen-logrus-1.4.2) + ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) + ("go-github-com-opencontainers-image-spec-1.0.1" + ,go-github-com-opencontainers-image-spec-1.0.1) + ("go-github-com-opencontainers-go-digest-1.0.0-rc1" + ,go-github-com-opencontainers-go-digest-1.0.0-rc1) + ("go-github-com-fullsailor-pkcs7-0.0.0-20190404230743-d7302db945fa" + ,go-github-com-fullsailor-pkcs7-0.0.0-20190404230743-d7302db945fa) + ("go-github-com-containerd-containerd-1.2.10" + ,go-github-com-containerd-containerd-1.2.10))) + (home-page "https://github.com/containers/ocicrypt") + (synopsis "OCIcrypt Library") + (description + "The @code{ocicrypt} library is the OCI image spec implementation of container image encryption. More details of the spec can be seen in the @url{https://github.com/opencontainers/image-spec/pull/775,OCI repository}. The purpose of this library is to encode spec structures and consts in code, as well as provide a consistent implementation of image encryption across container runtimes and build tools.") + (license license:asl2.0))) + +(define-public go-github-com-coreos-go-systemd-0.0.0-20161114122254-48702e0da86b + (package + (name "go-github-com-coreos-go-systemd") + (version "0.0.0-20161114122254-48702e0da86b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/coreos/go-systemd") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "04zl9ns4j3lpjykf32rv5cb6sj9x5ci8yi90vab1bl27vnqjgdkh")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/coreos/go-systemd")) + (home-page "https://github.com/coreos/go-systemd") + (synopsis "go-systemd") + (description "Go bindings to systemd. The project has several packages:") + (license license:asl2.0))) + +(define-public go-github-com-docker-distribution-2.7.1-0.20190205005809-0d3efadf0154+incompatible + (package + (name "go-github-com-docker-distribution") + (version "2.7.1-0.20190205005809-0d3efadf0154+incompatible") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/distribution/distribution") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1wayhmcxr6l281fqkbw1gh0ymhxlznf4jj1rcldhwrc64l2zjh8l")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/docker/distribution")) + (home-page "https://github.com/docker/distribution") + (synopsis "Distribution") + (description + "Package distribution will define the interfaces for the components of +docker distribution. The goal is to allow users to reliably package, ship +and store content related to docker images. +") + (license license:asl2.0))) + +(define-public go-github-com-docker-go-events-0.0.0-20170721190031-9461782956ad + (package + (name "go-github-com-docker-go-events") + (version "0.0.0-20170721190031-9461782956ad") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/docker/go-events") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0vn0kd0w253jwdk86gv1h6s8p6bzxiyif74xdzlb39zr6fdrr145")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/docker/go-events")) + (home-page "https://github.com/docker/go-events") + (synopsis "Docker Events Package") + (description + "The Docker @code{events} package implements a composable event distribution package +for Go.") + (license license:asl2.0))) + +(define-public go-github-com-godbus-dbus-0.0.0-20151105175453-c7fdd8b5cd55 + (package + (name "go-github-com-godbus-dbus") + (version "0.0.0-20151105175453-c7fdd8b5cd55") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/godbus/dbus") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "09zazkiny2im24xaiac5kbyhhnbqdbhwi9z9n7fj6rhpg8msiq9n")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/godbus/dbus")) + (home-page "https://github.com/godbus/dbus") + (synopsis "dbus") + (description + "Package dbus implements bindings to the D-Bus message bus system. +") + (license license:bsd-2))) + +(define-public go-github-com-gogo-googleapis-1.2.0 + (package + (name "go-github-com-gogo-googleapis") + (version "1.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gogo/googleapis") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1a82n0xp0v8lgjxzl3aa595r0rmy7afgyn2l3kv6z9kzw339i0jp")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/gogo/googleapis")) + (propagated-inputs + `(("go-github-com-gogo-protobuf-1.2.1" + ,go-github-com-gogo-protobuf-1.2.1))) + (home-page "https://github.com/gogo/googleapis") + (synopsis "Google APIs generated by gogoprotobuf") + (description + "The @url{https://github.com/gogo/grpc-example,grpc-example} includes an example usage of this repository.") + (license license:asl2.0))) + +(define-public go-github-com-imdario-mergo-0.3.8 + (package + (name "go-github-com-imdario-mergo") + (version "0.3.8") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/imdario/mergo") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "15xwyrnwng11ib0fxi7clwick2r0njwn0gs3va2g5m1ad418ry57")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/imdario/mergo")) + (home-page "https://github.com/imdario/mergo") + (synopsis "Mergo") + (description + "This package provides a helper to merge structs and maps in Golang. Useful for configuration default values, avoiding messy if-statements. +") + (license license:bsd-3))) + +(define-public go-github-com-opencontainers-go-digest-1.0.0-rc1.0.20180430190053-c9281466c8b2 + (package + (name "go-github-com-opencontainers-go-digest") + (version "1.0.0-rc1.0.20180430190053-c9281466c8b2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/go-digest") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1djdazssy27xn91pjhx3dgb0f11bnlzzbwkh7f8zwnpz011anasi")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/go-digest")) + (home-page "https://github.com/opencontainers/go-digest") + (synopsis "go-digest") + (description + "Package digest provides a generalized type to opaquely represent message +digests and their operations within the registry. The Digest type is +designed to serve as a flexible identifier in a content-addressable system. +More importantly, it provides tools and wrappers to work with +hash.Hash-based digests with little effort. +") + (license (list license:asl2.0 license:cc-by-sa4.0)))) + +(define-public go-github-com-opencontainers-runc-1.0.0-rc8.0.20190926000215-3e425f80a8c9 + (package + (name "go-github-com-opencontainers-runc") + (version "1.0.0-rc8.0.20190926000215-3e425f80a8c9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/runc") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18psc830b2rkwml1x6vxngam5b5wi3pj14mw817rshpzy87prspj")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/runc")) + (home-page "https://github.com/opencontainers/runc") + (synopsis "runc") + (description + "@code{runc} is a CLI tool for spawning and running containers according to the OCI specification.") + (license license:asl2.0))) + +(define-public go-github-com-opencontainers-runtime-spec-1.0.2-0.20190207185410-29686dbc5559 + (package + (name "go-github-com-opencontainers-runtime-spec") + (version "1.0.2-0.20190207185410-29686dbc5559") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/runtime-spec") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0i8q3520jk4yl9rsxs8mn5vsi9i0gd3drysbhciaqwm5l8c30h65")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) + (home-page "https://github.com/opencontainers/runtime-spec") + (synopsis "Open Container Initiative Runtime Specification") + (description + "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") + (license license:asl2.0))) + +(define-public go-github-com-prometheus-procfs-0.0.8 + (package + (name "go-github-com-prometheus-procfs") + (version "0.0.8") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/procfs") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "076wblhz8fjdc73fmz1lg0hafbwg1xv8hszm78lbg9anjpfgacvq")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/procfs")) + (propagated-inputs + `(("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" + ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) + ("go-github-com-google-go-cmp-0.3.1" + ,go-github-com-google-go-cmp-0.3.1))) + (home-page "https://github.com/prometheus/procfs") + (synopsis "procfs") + (description + "Package procfs provides functions to retrieve system, kernel and process +metrics from the pseudo-filesystem proc. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-net-0.0.0-20190522155817-f3200d17e092 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190522155817-f3200d17e092") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1mskh7p80dd8j1ffy16917d3cyy7lfh1gb56n4rq9g1bwckz4lwy")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20190812073006-9eafafc0a87e + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190812073006-9eafafc0a87e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0g5wcpiafz47066993mgz77gka9qzww6w6crxpnyir0459j7z07r")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-google-golang-org-grpc-1.24.0 + (package + (name "go-google-golang-org-grpc") + (version "1.24.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0h8mwv74vzcfb7p4ai247x094skxca71vjp4wpj2wzmri0x9p4v6")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" + ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) + ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" + ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) + ("go-google-golang-org-appengine-1.1.0" + ,go-google-golang-org-appengine-1.1.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-google-go-cmp-0.2.0" + ,go-github-com-google-go-cmp-0.2.0) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2) + ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-client9-misspell-0.3.4" + ,go-github-com-client9-misspell-0.3.4) + ("go-github-com-burntsushi-toml-0.3.1" + ,go-github-com-burntsushi-toml-0.3.1) + ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-github-com-containerd-imgcrypt-1.0.1 + (package + (name "go-github-com-containerd-imgcrypt") + (version "1.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/imgcrypt") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0y0gbnp8imckw6rv3sjf3sycp8rc9lyhv0pp0x3q3yksvqmbqh5v")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/imgcrypt")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.24.0" ,go-google-golang-org-grpc-1.24.0) + ("go-golang-org-x-sys-0.0.0-20190812073006-9eafafc0a87e" + ,go-golang-org-x-sys-0.0.0-20190812073006-9eafafc0a87e) + ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" + ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) + ("go-golang-org-x-net-0.0.0-20190522155817-f3200d17e092" + ,go-golang-org-x-net-0.0.0-20190522155817-f3200d17e092) + ("go-go-etcd-io-bbolt-1.3.3" ,go-go-etcd-io-bbolt-1.3.3) + ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) + ("go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2" + ,go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2) + ("go-github-com-sirupsen-logrus-1.4.2" + ,go-github-com-sirupsen-logrus-1.4.2) + ("go-github-com-prometheus-procfs-0.0.8" + ,go-github-com-prometheus-procfs-0.0.8) + ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) + ("go-github-com-opencontainers-runtime-spec-1.0.2-0.20190207185410-29686dbc5559" + ,go-github-com-opencontainers-runtime-spec-1.0.2-0.20190207185410-29686dbc5559) + ("go-github-com-opencontainers-runc-1.0.0-rc8.0.20190926000215-3e425f80a8c9" + ,go-github-com-opencontainers-runc-1.0.0-rc8.0.20190926000215-3e425f80a8c9) + ("go-github-com-opencontainers-image-spec-1.0.1" + ,go-github-com-opencontainers-image-spec-1.0.1) + ("go-github-com-opencontainers-go-digest-1.0.0-rc1.0.20180430190053-c9281466c8b2" + ,go-github-com-opencontainers-go-digest-1.0.0-rc1.0.20180430190053-c9281466c8b2) + ("go-github-com-imdario-mergo-0.3.8" + ,go-github-com-imdario-mergo-0.3.8) + ("go-github-com-gogo-protobuf-1.2.1" + ,go-github-com-gogo-protobuf-1.2.1) + ("go-github-com-gogo-googleapis-1.2.0" + ,go-github-com-gogo-googleapis-1.2.0) + ("go-github-com-godbus-dbus-0.0.0-20151105175453-c7fdd8b5cd55" + ,go-github-com-godbus-dbus-0.0.0-20151105175453-c7fdd8b5cd55) + ("go-github-com-docker-go-units-0.4.0" + ,go-github-com-docker-go-units-0.4.0) + ("go-github-com-docker-go-events-0.0.0-20170721190031-9461782956ad" + ,go-github-com-docker-go-events-0.0.0-20170721190031-9461782956ad) + ("go-github-com-docker-distribution-2.7.1-0.20190205005809-0d3efadf0154+incompatible" + ,go-github-com-docker-distribution-2.7.1-0.20190205005809-0d3efadf0154+incompatible) + ("go-github-com-coreos-go-systemd-0.0.0-20161114122254-48702e0da86b" + ,go-github-com-coreos-go-systemd-0.0.0-20161114122254-48702e0da86b) + ("go-github-com-containers-ocicrypt-1.0.1" + ,go-github-com-containers-ocicrypt-1.0.1) + ("go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd" + ,go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd) + ("go-github-com-containerd-ttrpc-0.0.0-20190828172938-92c8520ef9f8" + ,go-github-com-containerd-ttrpc-0.0.0-20190828172938-92c8520ef9f8) + ("go-github-com-containerd-go-runc-0.0.0-20190911050354-e029b79d8cda" + ,go-github-com-containerd-go-runc-0.0.0-20190911050354-e029b79d8cda) + ("go-github-com-containerd-fifo-0.0.0-20180307165137-3d5202aec260" + ,go-github-com-containerd-fifo-0.0.0-20180307165137-3d5202aec260) + ("go-github-com-containerd-continuity-0.0.0-20190815185530-f2a389ac0a02" + ,go-github-com-containerd-continuity-0.0.0-20190815185530-f2a389ac0a02) + ("go-github-com-containerd-containerd-1.3.0" + ,go-github-com-containerd-containerd-1.3.0) + ("go-github-com-containerd-console-0.0.0-20181022165439-0650fd9eeb50" + ,go-github-com-containerd-console-0.0.0-20181022165439-0650fd9eeb50) + ("go-github-com-containerd-cgroups-0.0.0-20190717030353-c4b9ac5c7601" + ,go-github-com-containerd-cgroups-0.0.0-20190717030353-c4b9ac5c7601) + ("go-github-com-microsoft-hcsshim-0.8.7-0.20190325164909-8abdbb8205e4" + ,go-github-com-microsoft-hcsshim-0.8.7-0.20190325164909-8abdbb8205e4) + ("go-github-com-microsoft-go-winio-0.4.14" + ,go-github-com-microsoft-go-winio-0.4.14))) + (home-page "https://github.com/containerd/imgcrypt") + (synopsis "imgcrypt image encryption library and command line tool") + (description + "Project @code{imgcrypt} is a non-core subproject of containerd.") + (license license:asl2.0))) + +(define-public go-github-com-blang-semver-3.1.0+incompatible + (package + (name "go-github-com-blang-semver") + (version "3.1.0+incompatible") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/blang/semver") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1s80qlij6j6wrh0fhm0l11hbf3qjra67nca5bl7izyfjj4621fcd")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/blang/semver")) + (home-page "https://github.com/blang/semver") + (synopsis "semver for golang") + (description + "semver is a @url{http://semver.org/,Semantic Versioning} library written in golang. It fully covers spec version @code{2.0.0}.") + (license license:expat))) + +(define-public go-github-com-containerd-containerd-1.3.0-beta.2.0.20190828155532-0293cbd26c69 + (package + (name "go-github-com-containerd-containerd") + (version "1.3.0-beta.2.0.20190828155532-0293cbd26c69") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/containerd") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1jhb4a7fczf817d9dwj0a02wfscv46hkymrqh1dcsgpdsp80igkw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/containerd")) + (home-page "https://github.com/containerd/containerd") + (synopsis "Now Recruiting") + (description + "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") + (license license:asl2.0))) + +(define-public go-github-com-hashicorp-errwrap-0.0.0-20141028054710-7554cd9344ce + (package + (name "go-github-com-hashicorp-errwrap") + (version "0.0.0-20141028054710-7554cd9344ce") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/errwrap") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0kmv0p605di6jc8i1778qzass18m0mv9ks9vxxrfsiwcp4la82jf")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/errwrap")) + (home-page "https://github.com/hashicorp/errwrap") + (synopsis "errwrap") + (description + "Package errwrap implements methods to formalize error wrapping in Go. +") + (license license:mpl2.0))) + +(define-public go-github-com-hashicorp-go-multierror-0.0.0-20161216184304-ed905158d874 + (package + (name "go-github-com-hashicorp-go-multierror") + (version "0.0.0-20161216184304-ed905158d874") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/go-multierror") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1bldhx9dmx9q4gjsag3g1xswq1jsf394rs69fdbmgnkj75j3sp70")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/go-multierror")) + (home-page "https://github.com/hashicorp/go-multierror") + (synopsis "go-multierror") + (description + "@code{go-multierror} is a package for Go that provides a mechanism for +representing a list of @code{error} values as a single @code{error}.") + (license license:mpl2.0))) + +(define-public go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39 + (package + (name "go-github-com-opencontainers-runtime-tools") + (version "0.0.0-20181011054405-1d69bd0f9c39") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/runtime-tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1wgisl2v8i1hvy3bf8f16v7rarx2ynyasb0jx4kffp5n5hz2hfcl")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/runtime-tools")) + (home-page "https://github.com/opencontainers/runtime-tools") + (synopsis "oci-runtime-tool") + (description + "oci-runtime-tool is a collection of tools for working with the @url{https://github.com/opencontainers/runtime-spec,OCI runtime specification}. +To build from source code, runtime-tools requires Go 1.10.x or above.") + (license license:asl2.0))) + +(define-public go-github-com-prometheus-procfs-0.0.5 + (package + (name "go-github-com-prometheus-procfs") + (version "0.0.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/procfs") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1nqn8ip9f4f6kqrvand4lxhcxrkk19dwf8s3nh336i9wr2jfhbwa")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/procfs")) + (propagated-inputs + `(("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" + ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) + ("go-github-com-google-go-cmp-0.3.0" + ,go-github-com-google-go-cmp-0.3.0))) + (home-page "https://github.com/prometheus/procfs") + (synopsis "procfs") + (description + "Package procfs provides functions to retrieve system, kernel and process +metrics from the pseudo-filesystem proc. +") + (license license:asl2.0))) + +(define-public go-github-com-syndtr-gocapability-0.0.0-20170704070218-db04d3cc01c8 + (package + (name "go-github-com-syndtr-gocapability") + (version "0.0.0-20170704070218-db04d3cc01c8") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/syndtr/gocapability") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0jwica5kqax70rd4gbc2yjdz54401s4mr6clyn60gcmnxc0wynds")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/syndtr/gocapability")) + (home-page "https://github.com/syndtr/gocapability") + (synopsis #f) + (description #f) + (license license:bsd-2))) + +(define-public go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f + (package + (name "go-github-com-xeipuuv-gojsonpointer") + (version "0.0.0-20180127040702-4e3ac2762d5f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/xeipuuv/gojsonpointer") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "13y6iq2nzf9z4ls66bfgnnamj2m3438absmbpqry64bpwjfbsi9q")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/xeipuuv/gojsonpointer")) + (home-page "https://github.com/xeipuuv/gojsonpointer") + (synopsis "gojsonpointer") + (description "An implementation of JSON Pointer - Go language") + (license license:asl2.0))) + +(define-public go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415 + (package + (name "go-github-com-xeipuuv-gojsonreference") + (version "0.0.0-20180127040603-bd5ef7bd5415") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/xeipuuv/gojsonreference") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1xby79padc7bmyb8rfbad8wfnfdzpnh51b1n8c0kibch0kwc1db5")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/xeipuuv/gojsonreference")) + (home-page "https://github.com/xeipuuv/gojsonreference") + (synopsis "gojsonreference") + (description "An implementation of JSON Reference - Go language") + (license license:asl2.0))) + +(define-public go-github-com-xeipuuv-gojsonschema-0.0.0-20180618132009-1d523034197f + (package + (name "go-github-com-xeipuuv-gojsonschema") + (version "0.0.0-20180618132009-1d523034197f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/xeipuuv/gojsonschema") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1z8c6x8sfh6d1ib2lm2jps7r139qip6h3zik3fxhy1yr1380qbzp")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/xeipuuv/gojsonschema")) + (home-page "https://github.com/xeipuuv/gojsonschema") + (synopsis "gojsonschema") + (description + "An implementation of JSON Schema for the Go programming language. Supports draft-04, draft-06 and draft-07.") + (license license:asl2.0))) + +(define-public go-k8s-io-kubernetes-1.13.0 + (package + (name "go-k8s-io-kubernetes") + (version "1.13.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes/kubernetes") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12cvw8b7l319p8nc2imc2wck7zz7vzrwcjyxq5djqj7l5rbcwmzs")))) + (build-system go-build-system) + (arguments '(#:import-path "k8s.io/kubernetes")) + (home-page "https://k8s.io/kubernetes") + (synopsis "Kubernetes (K8s)") + (description + "Kubernetes, also known as K8s, is an open source system for managing @url{https://kubernetes.io/docs/concepts/overview/what-is-kubernetes/,containerized applications} +across multiple hosts. It provides basic mechanisms for deployment, maintenance, +and scaling of applications.") + (license license:asl2.0))) + +(define-public go-github-com-microsoft-hcsshim-0.8.7 + (package + (name "go-github-com-microsoft-hcsshim") + (version "0.8.7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/microsoft/hcsshim") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1c6ix202ll48n7x00xxb7gzgm3srm9zwwbx2503l6vz3sqclh9xm")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/Microsoft/hcsshim")) + (propagated-inputs + `(("go-k8s-io-kubernetes-1.13.0" ,go-k8s-io-kubernetes-1.13.0) + ("go-gotest-tools-2.2.0+incompatible" + ,go-gotest-tools-2.2.0+incompatible) + ("go-google-golang-org-grpc-1.20.1" ,go-google-golang-org-grpc-1.20.1) + ("go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3" + ,go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3) + ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" + ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) + ("go-go-opencensus-io-0.22.0" ,go-go-opencensus-io-0.22.0) + ("go-github-com-xeipuuv-gojsonschema-0.0.0-20180618132009-1d523034197f" + ,go-github-com-xeipuuv-gojsonschema-0.0.0-20180618132009-1d523034197f) + ("go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415" + ,go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415) + ("go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f" + ,go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f) + ("go-github-com-urfave-cli-0.0.0-20171014202726-7bc6a0acffa5" + ,go-github-com-urfave-cli-0.0.0-20171014202726-7bc6a0acffa5) + ("go-github-com-syndtr-gocapability-0.0.0-20170704070218-db04d3cc01c8" + ,go-github-com-syndtr-gocapability-0.0.0-20170704070218-db04d3cc01c8) + ("go-github-com-sirupsen-logrus-1.4.1" + ,go-github-com-sirupsen-logrus-1.4.1) + ("go-github-com-prometheus-procfs-0.0.5" + ,go-github-com-prometheus-procfs-0.0.5) + ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) + ("go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39" + ,go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39) + ("go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700" + ,go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700) + ("go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f" + ,go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f) + ("go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2" + ,go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2) + ("go-github-com-hashicorp-go-multierror-0.0.0-20161216184304-ed905158d874" + ,go-github-com-hashicorp-go-multierror-0.0.0-20161216184304-ed905158d874) + ("go-github-com-hashicorp-errwrap-0.0.0-20141028054710-7554cd9344ce" + ,go-github-com-hashicorp-errwrap-0.0.0-20141028054710-7554cd9344ce) + ("go-github-com-gogo-protobuf-1.2.1" + ,go-github-com-gogo-protobuf-1.2.1) + ("go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd" + ,go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd) + ("go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de" + ,go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de) + ("go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3" + ,go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3) + ("go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448" + ,go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448) + ("go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc" + ,go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc) + ("go-github-com-containerd-containerd-1.3.0-beta.2.0.20190828155532-0293cbd26c69" + ,go-github-com-containerd-containerd-1.3.0-beta.2.0.20190828155532-0293cbd26c69) + ("go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1" + ,go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1) + ("go-github-com-containerd-cgroups-0.0.0-20190919134610-bf292b21730f" + ,go-github-com-containerd-cgroups-0.0.0-20190919134610-bf292b21730f) + ("go-github-com-blang-semver-3.1.0+incompatible" + ,go-github-com-blang-semver-3.1.0+incompatible) + ("go-github-com-microsoft-go-winio-0.4.15-0.20190919025122-fc70bd9a86b5" + ,go-github-com-microsoft-go-winio-0.4.15-0.20190919025122-fc70bd9a86b5))) + (home-page "https://github.com/Microsoft/hcsshim") + (synopsis "hcsshim") + (description + "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") + (license license:expat))) + +(define-public go-github-com-containerd-containerd-1.3.1-0.20191213020239-082f7e3aed57 + (package + (name "go-github-com-containerd-containerd") + (version "1.3.1-0.20191213020239-082f7e3aed57") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/containerd") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1piaha1adhzhj150l7zhskn5fgl4r2cyvwhrrm8bbm3vnvhmgw7v")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/containerd")) + (home-page "https://github.com/containerd/containerd") + (synopsis "Now Recruiting") + (description + "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-continuity-0.0.0-20191127005431-f65d91d395eb + (package + (name "go-github-com-containerd-continuity") + (version "0.0.0-20191127005431-f65d91d395eb") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/continuity") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "15yh5idl3if8a982gsnq9q72021a7jcs9bdcrqaxbl4dwdqcszki")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/continuity")) + (home-page "https://github.com/containerd/continuity") + (synopsis "continuity") + (description + "This package provides a transport-agnostic, filesystem metadata manifest system") + (license license:asl2.0))) + +(define-public go-golang-org-x-sys-0.0.0-20190522044717-8097e1b27ff5 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190522044717-8097e1b27ff5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1rgflfvh365x5lwdyqdd9qk8hh3ycr88a2488bgqgvfhp5ri5p6x")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-google-golang-org-genproto-0.0.0-20190522204451-c2c4e71fbf69 + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20190522204451-c2c4e71fbf69") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1y44pmyy92pg822fhw80pnciifx1ah0g73i2l0ixickd24wyznnm")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" + ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) + ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) + ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" + ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) + ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" + ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) + ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" + ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) + ("go-github-com-golang-protobuf-1.3.1" + ,go-github-com-golang-protobuf-1.3.1))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-google-golang-org-grpc-1.21.0 + (package + (name "go-google-golang-org-grpc") + (version "1.21.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0zxjlxnvjqfn6zfx7gbmqhadx0j788vxfn95g1ngbmjkgppzsnfp")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" + ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) + ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" + ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) + ("go-google-golang-org-appengine-1.1.0" + ,go-google-golang-org-appengine-1.1.0) + ("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" + ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" + ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-google-go-cmp-0.2.0" + ,go-github-com-google-go-cmp-0.2.0) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0) + ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-client9-misspell-0.3.4" + ,go-github-com-client9-misspell-0.3.4) + ("go-github-com-burntsushi-toml-0.3.1" + ,go-github-com-burntsushi-toml-0.3.1) + ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-github-com-containerd-ttrpc-0.0.0-20191028202541-4f1b8fe65a5c + (package + (name "go-github-com-containerd-ttrpc") + (version "0.0.0-20191028202541-4f1b8fe65a5c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/ttrpc") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19fhm39jagk2sfgi9g5zdqx4rynziwxhaap03x4mdj8kczlz21x8")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/ttrpc")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.21.0" ,go-google-golang-org-grpc-1.21.0) + ("go-google-golang-org-genproto-0.0.0-20190522204451-c2c4e71fbf69" + ,go-google-golang-org-genproto-0.0.0-20190522204451-c2c4e71fbf69) + ("go-golang-org-x-sys-0.0.0-20190522044717-8097e1b27ff5" + ,go-golang-org-x-sys-0.0.0-20190522044717-8097e1b27ff5) + ("go-github-com-sirupsen-logrus-1.4.2" + ,go-github-com-sirupsen-logrus-1.4.2) + ("go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1" + ,go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1) + ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) + ("go-github-com-gogo-protobuf-1.2.1" + ,go-github-com-gogo-protobuf-1.2.1))) + (home-page "https://github.com/containerd/ttrpc") + (synopsis "ttrpc") + (description "GRPC for low-memory environments.") + (license license:asl2.0))) + +(define-public go-github-com-gogo-protobuf-1.3.0 + (package + (name "go-github-com-gogo-protobuf") + (version "1.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gogo/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0slfyrmbpdcppf0z3waar90bpszdhi2gv705ys1b0zx5x6ax8f1a")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/gogo/protobuf")) + (propagated-inputs + `(("go-github-com-kisielk-gotool-1.0.0" + ,go-github-com-kisielk-gotool-1.0.0) + ("go-github-com-kisielk-errcheck-1.2.0" + ,go-github-com-kisielk-errcheck-1.2.0))) + (home-page "https://github.com/gogo/protobuf") + (synopsis "Protocol Buffers for Go with Gadgets") + (description + "gogoprotobuf is a fork of @url{https://github.com/golang/protobuf,golang/protobuf} with extra code generation features.") + (license license:bsd-3))) + +(define-public go-github-com-containerd-typeurl-0.0.0-20190911142611-5eb25027c9fd + (package + (name "go-github-com-containerd-typeurl") + (version "0.0.0-20190911142611-5eb25027c9fd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/typeurl") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fyc2962b9sqgqycnlkxls6n0d701nszl84bayxrdv3r1491jn9v")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/typeurl")) + (propagated-inputs + `(("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) + ("go-github-com-gogo-protobuf-1.3.0" + ,go-github-com-gogo-protobuf-1.3.0))) + (home-page "https://github.com/containerd/typeurl") + (synopsis "typeurl") + (description + "This package provides a Go package for managing the registration, marshaling, and unmarshaling of encoded types.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-zfs-0.0.0-20200918131355-0a33824f23a2 + (package + (name "go-github-com-containerd-zfs") + (version "0.0.0-20200918131355-0a33824f23a2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/zfs") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "112bj6mxc3r2ncybblf3w1fgqa6w0070f6a8vlqcml1g00ljhsz6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/zfs")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) + ("go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449" + ,go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449) + ("go-go-etcd-io-bbolt-1.3.3" ,go-go-etcd-io-bbolt-1.3.3) + ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) + ("go-github-com-opencontainers-runc-1.0.0-rc9" + ,go-github-com-opencontainers-runc-1.0.0-rc9) + ("go-github-com-opencontainers-image-spec-1.0.1" + ,go-github-com-opencontainers-image-spec-1.0.1) + ("go-github-com-opencontainers-go-digest-1.0.0-rc1" + ,go-github-com-opencontainers-go-digest-1.0.0-rc1) + ("go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible" + ,go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible) + ("go-github-com-google-uuid-1.1.1" ,go-github-com-google-uuid-1.1.1) + ("go-github-com-google-go-cmp-0.3.1" + ,go-github-com-google-go-cmp-0.3.1) + ("go-github-com-gogo-protobuf-1.3.1" + ,go-github-com-gogo-protobuf-1.3.1) + ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" + ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) + ("go-github-com-containerd-typeurl-0.0.0-20190911142611-5eb25027c9fd" + ,go-github-com-containerd-typeurl-0.0.0-20190911142611-5eb25027c9fd) + ("go-github-com-containerd-ttrpc-0.0.0-20191028202541-4f1b8fe65a5c" + ,go-github-com-containerd-ttrpc-0.0.0-20191028202541-4f1b8fe65a5c) + ("go-github-com-containerd-continuity-0.0.0-20191127005431-f65d91d395eb" + ,go-github-com-containerd-continuity-0.0.0-20191127005431-f65d91d395eb) + ("go-github-com-containerd-containerd-1.3.1-0.20191213020239-082f7e3aed57" + ,go-github-com-containerd-containerd-1.3.1-0.20191213020239-082f7e3aed57) + ("go-github-com-microsoft-hcsshim-0.8.7" + ,go-github-com-microsoft-hcsshim-0.8.7))) + (home-page "https://github.com/containerd/zfs") + (synopsis "ZFS snapshotter plugin") + (description "ZFS snapshotter plugin for containerd.") + (license license:asl2.0))) + +(define-public go-golang-org-x-sys-0.0.0-20201202213521-69691e467435 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20201202213521-69691e467435") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0lndxdnazszfj1jl87cpz31vd12jrjm1wj0zw1c2p8yg64cfkhna")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-containerd-containerd-1.5.0-beta.1 + (package + (name "go-github-com-containerd-containerd") + (version "1.5.0-beta.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/containerd") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1jki3jwmbfk4mp2qhz4ppd6vgnicalszzv5ffibasa4qj5v19wcd")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/containerd")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) + ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) + ("go-github-com-golang-protobuf-1.3.5" + ,go-github-com-golang-protobuf-1.3.5) + ("go-github-com-gogo-googleapis-1.3.2" + ,go-github-com-gogo-googleapis-1.3.2) + ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" + ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) + ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) + ("go-k8s-io-cri-api-0.20.1" ,go-k8s-io-cri-api-0.20.1) + ("go-k8s-io-component-base-0.20.1" ,go-k8s-io-component-base-0.20.1) + ("go-k8s-io-client-go-0.20.1" ,go-k8s-io-client-go-0.20.1) + ("go-k8s-io-apiserver-0.20.1" ,go-k8s-io-apiserver-0.20.1) + ("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) + ("go-k8s-io-api-0.20.1" ,go-k8s-io-api-0.20.1) + ("go-gotest-tools-v3-3.0.2" ,go-gotest-tools-v3-3.0.2) + ("go-golang-org-x-sys-0.0.0-20201202213521-69691e467435" + ,go-golang-org-x-sys-0.0.0-20201202213521-69691e467435) + ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" + ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) + ("go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b" + ,go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b) + ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) + ("go-github-com-tchap-go-patricia-2.2.6+incompatible" + ,go-github-com-tchap-go-patricia-2.2.6+incompatible) + ("go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635" + ,go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-sirupsen-logrus-1.7.0" + ,go-github-com-sirupsen-logrus-1.7.0) + ("go-github-com-prometheus-client-golang-1.7.1" + ,go-github-com-prometheus-client-golang-1.7.1) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-selinux-1.8.0" + ,go-github-com-opencontainers-selinux-1.8.0) + ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" + ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) + ("go-github-com-opencontainers-runc-1.0.0-rc93" + ,go-github-com-opencontainers-runc-1.0.0-rc93) + ("go-github-com-opencontainers-image-spec-1.0.1" + ,go-github-com-opencontainers-image-spec-1.0.1) + ("go-github-com-opencontainers-go-digest-1.0.0" + ,go-github-com-opencontainers-go-digest-1.0.0) + ("go-github-com-moby-sys-symlink-0.1.0" + ,go-github-com-moby-sys-symlink-0.1.0) + ("go-github-com-moby-sys-mountinfo-0.4.0" + ,go-github-com-moby-sys-mountinfo-0.4.0) + ("go-github-com-klauspost-compress-1.11.3" + ,go-github-com-klauspost-compress-1.11.3) + ("go-github-com-imdario-mergo-0.3.10" + ,go-github-com-imdario-mergo-0.3.10) + ("go-github-com-hashicorp-go-multierror-1.0.0" + ,go-github-com-hashicorp-go-multierror-1.0.0) + ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" + ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) + ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) + ("go-github-com-google-go-cmp-0.5.2" + ,go-github-com-google-go-cmp-0.5.2) + ("go-github-com-gogo-protobuf-1.3.2" + ,go-github-com-gogo-protobuf-1.3.2) + ("go-github-com-fsnotify-fsnotify-1.4.9" + ,go-github-com-fsnotify-fsnotify-1.4.9) + ("go-github-com-emicklei-go-restful-2.9.5+incompatible" + ,go-github-com-emicklei-go-restful-2.9.5+incompatible) + ("go-github-com-docker-go-units-0.4.0" + ,go-github-com-docker-go-units-0.4.0) + ("go-github-com-docker-go-metrics-0.0.1" + ,go-github-com-docker-go-metrics-0.0.1) + ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" + ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1) + ("go-github-com-coreos-go-systemd-v22-22.1.0" + ,go-github-com-coreos-go-systemd-v22-22.1.0) + ("go-github-com-containernetworking-plugins-0.8.6" + ,go-github-com-containernetworking-plugins-0.8.6) + ("go-github-com-containerd-zfs-0.0.0-20200918131355-0a33824f23a2" + ,go-github-com-containerd-zfs-0.0.0-20200918131355-0a33824f23a2) + ("go-github-com-containerd-typeurl-1.0.1" + ,go-github-com-containerd-typeurl-1.0.1) + ("go-github-com-containerd-ttrpc-1.0.2" + ,go-github-com-containerd-ttrpc-1.0.2) + ("go-github-com-containerd-nri-0.0.0-20201007170849-eb1350a75164" + ,go-github-com-containerd-nri-0.0.0-20201007170849-eb1350a75164) + ("go-github-com-containerd-imgcrypt-1.0.1" + ,go-github-com-containerd-imgcrypt-1.0.1) + ("go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328" + ,go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328) + ("go-github-com-containerd-go-cni-1.0.1" + ,go-github-com-containerd-go-cni-1.0.1) + ("go-github-com-containerd-fifo-0.0.0-20201026212402-0724c46b320c" + ,go-github-com-containerd-fifo-0.0.0-20201026212402-0724c46b320c) + ("go-github-com-containerd-continuity-0.0.0-20201208142359-180525291bb7" + ,go-github-com-containerd-continuity-0.0.0-20201208142359-180525291bb7) + ("go-github-com-containerd-console-1.0.1" + ,go-github-com-containerd-console-1.0.1) + ("go-github-com-containerd-cgroups-0.0.0-20200824123100-0b889c03f102" + ,go-github-com-containerd-cgroups-0.0.0-20200824123100-0b889c03f102) + ("go-github-com-containerd-btrfs-0.0.0-20201111183144-404b9149801e" + ,go-github-com-containerd-btrfs-0.0.0-20201111183144-404b9149801e) + ("go-github-com-containerd-aufs-0.0.0-20200908144142-dab0cbea06f4" + ,go-github-com-containerd-aufs-0.0.0-20200908144142-dab0cbea06f4) + ("go-github-com-microsoft-hcsshim-test-0.0.0-20201218223536-d3e5debf77da" + ,go-github-com-microsoft-hcsshim-test-0.0.0-20201218223536-d3e5debf77da) + ("go-github-com-microsoft-hcsshim-0.8.14" + ,go-github-com-microsoft-hcsshim-0.8.14) + ("go-github-com-microsoft-go-winio-0.4.16" + ,go-github-com-microsoft-go-winio-0.4.16) + ("go-github-com-burntsushi-toml-0.3.1" + ,go-github-com-burntsushi-toml-0.3.1))) + (home-page "https://github.com/containerd/containerd") + (synopsis "Now Recruiting") + (description + "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") + (license license:asl2.0))) + +(define-public go-github-com-miekg-pkcs11-1.0.3 + (package + (name "go-github-com-miekg-pkcs11") + (version "1.0.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/miekg/pkcs11") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0rmmgssb6y28x54si5h63gwbdsjjxf5n9xvm3zqdfsf9l10gx2m6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/miekg/pkcs11")) + (home-page "https://github.com/miekg/pkcs11") + (synopsis "PKCS#11") + (description + "Package pkcs11 is a wrapper around the PKCS#11 cryptographic library. +") + (license license:bsd-3))) + +(define-public go-github-com-stefanberger-go-pkcs11uri-0.0.0-20201008174630-78d3cae3a980 + (package + (name "go-github-com-stefanberger-go-pkcs11uri") + (version "0.0.0-20201008174630-78d3cae3a980") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stefanberger/go-pkcs11uri") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "09bnd1fn2v5y5ngsxz751a0x9fsqn8idlfrwyymfv9l57wvmrd2l")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stefanberger/go-pkcs11uri")) + (home-page "https://github.com/stefanberger/go-pkcs11uri") + (synopsis "go-pkcs11uri") + (description + "Welcome to the go-pkcs11uri library. The implementation follows @url{https://tools.ietf.org/html/rfc7512,RFC 7512} and this @url{https://www.rfc-editor.org/errata/rfc7512,errata}.") + (license license:asl2.0))) + +(define-public go-go-mozilla-org-pkcs7-0.0.0-20200128120323-432b2356ecb1 + (package + (name "go-go-mozilla-org-pkcs7") + (version "0.0.0-20200128120323-432b2356ecb1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mozilla-services/pkcs7") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0yncaq6i1x6apykvng92yyqkj5kmzl4c43lmcalr5lq7ks009p40")))) + (build-system go-build-system) + (arguments '(#:import-path "go.mozilla.org/pkcs7")) + (home-page "https://go.mozilla.org/pkcs7") + (synopsis "pkcs7") + (description + "Package pkcs7 implements parsing and generation of some PKCS#7 structures. +") + (license license:expat))) + +(define-public go-golang-org-x-crypto-0.0.0-20200728195943-123391ffb6de + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20200728195943-123391ffb6de") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1a3wnn8yjvckh3smyqzwd2k2gvl3i8dk68pvcap0wha8hmga1vf3")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" + ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) + ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" + ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20200817155316-9781c653f443 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200817155316-9781c653f443") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fkwiydhhmn6cxmd9jb4rj2wp06yxmqc3903b7zawsxm9jpslicm")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-gopkg-in-square-go-jose-v2-2.5.1 + (package + (name "go-gopkg-in-square-go-jose-v2") + (version "2.5.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/square/go-jose.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0z0hbmb5yyvnjkyiyn259wkbqbjxs2pzx87jz472shn2bgggxa4n")))) + (build-system go-build-system) + (arguments + '(#:import-path + "gopkg.in/square/go-jose.v2" + #:unpack-path + "gopkg.in/square/go-jose.v2")) + (home-page "https://gopkg.in/square/go-jose.v2") + (synopsis "Go JOSE") + (description + "Package jose aims to provide an implementation of the Javascript Object Signing +and Encryption set of standards. It implements encryption and signing based on +the JSON Web Encryption and JSON Web Signature standards, with optional JSON +Web Token support available in a sub-package. The library supports both the +compact and full serialization formats, and has optional support for multiple +recipients. +") + (license license:asl2.0))) + +(define-public go-github-com-containers-ocicrypt-1.1.0 + (package + (name "go-github-com-containers-ocicrypt") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containers/ocicrypt") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "13avih8ml00idn6qy96ash3jxkimqxpkz4cy4kgryc8jx303nv6i")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containers/ocicrypt")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.3.0" ,go-gopkg-in-yaml-v2-2.3.0) + ("go-gopkg-in-square-go-jose-v2-2.5.1" + ,go-gopkg-in-square-go-jose-v2-2.5.1) + ("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) + ("go-golang-org-x-sys-0.0.0-20200817155316-9781c653f443" + ,go-golang-org-x-sys-0.0.0-20200817155316-9781c653f443) + ("go-golang-org-x-crypto-0.0.0-20200728195943-123391ffb6de" + ,go-golang-org-x-crypto-0.0.0-20200728195943-123391ffb6de) + ("go-go-mozilla-org-pkcs7-0.0.0-20200128120323-432b2356ecb1" + ,go-go-mozilla-org-pkcs7-0.0.0-20200128120323-432b2356ecb1) + ("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0) + ("go-github-com-stefanberger-go-pkcs11uri-0.0.0-20201008174630-78d3cae3a980" + ,go-github-com-stefanberger-go-pkcs11uri-0.0.0-20201008174630-78d3cae3a980) + ("go-github-com-sirupsen-logrus-1.7.0" + ,go-github-com-sirupsen-logrus-1.7.0) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-image-spec-1.0.1" + ,go-github-com-opencontainers-image-spec-1.0.1) + ("go-github-com-opencontainers-go-digest-1.0.0" + ,go-github-com-opencontainers-go-digest-1.0.0) + ("go-github-com-miekg-pkcs11-1.0.3" ,go-github-com-miekg-pkcs11-1.0.3) + ("go-github-com-google-go-cmp-0.5.2" + ,go-github-com-google-go-cmp-0.5.2) + ("go-github-com-golang-protobuf-1.4.3" + ,go-github-com-golang-protobuf-1.4.3))) + (home-page "https://github.com/containers/ocicrypt") + (synopsis "OCIcrypt Library") + (description + "The @code{ocicrypt} library is the OCI image spec implementation of container image encryption. More details of the spec can be seen in the @url{https://github.com/opencontainers/image-spec/pull/775,OCI repository}. The purpose of this library is to encode spec structures and consts in code, as well as provide a consistent implementation of image encryption across container runtimes and build tools.") + (license license:asl2.0))) + +(define-public go-github-com-prometheus-procfs-0.6.0 + (package + (name "go-github-com-prometheus-procfs") + (version "0.6.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/procfs") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0czzw37dq0sfq7rivxmxxw5hy287grqnng6q6hfz6mkqmhqgm1m6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/procfs")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" + ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) + ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" + ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) + ("go-github-com-google-go-cmp-0.5.4" + ,go-github-com-google-go-cmp-0.5.4))) + (home-page "https://github.com/prometheus/procfs") + (synopsis "procfs") + (description + "Package procfs provides functions to retrieve system, kernel and process +metrics from the pseudo-filesystem proc. +") + (license license:asl2.0))) + +(define-public go-google-golang-org-grpc-1.33.2 + (package + (name "go-google-golang-org-grpc") + (version "1.33.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03yz4nlf4kqbnpw48f0mvcb2f5zzy0vjd5i2iw0hrjspd0238fzk")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.25.0" + ,go-google-golang-org-protobuf-1.25.0) + ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" + ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) + ("go-github-com-google-go-cmp-0.5.0" + ,go-github-com-google-go-cmp-0.5.0) + ("go-github-com-golang-protobuf-1.4.1" + ,go-github-com-golang-protobuf-1.4.1) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-envoyproxy-go-control-plane-0.9.4" + ,go-github-com-envoyproxy-go-control-plane-0.9.4) + ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" + ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-gopkg-in-yaml-v2-2.4.0 + (package + (name "go-gopkg-in-yaml-v2") + (version "2.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1pbmrpj7gcws34g8vwna4i2nhm9p6235piww36436xhyaa10cldr")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v2") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language. +") + (license license:asl2.0))) + +(define-public go-github-com-containerd-imgcrypt-1.0.4-0.20210301171431-0ae5c75f59ba + (package + (name "go-github-com-containerd-imgcrypt") + (version "1.0.4-0.20210301171431-0ae5c75f59ba") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/imgcrypt") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0vkwgcxh3mpsn6wp231c9ad3sx6gmnc9948nn3vvbw8bsmjd4i77")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/imgcrypt")) + (propagated-inputs + `(("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) + ("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) + ("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) + ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" + ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) + ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) + ("go-github-com-sirupsen-logrus-1.7.0" + ,go-github-com-sirupsen-logrus-1.7.0) + ("go-github-com-prometheus-procfs-0.6.0" + ,go-github-com-prometheus-procfs-0.6.0) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" + ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) + ("go-github-com-opencontainers-image-spec-1.0.1" + ,go-github-com-opencontainers-image-spec-1.0.1) + ("go-github-com-opencontainers-go-digest-1.0.0" + ,go-github-com-opencontainers-go-digest-1.0.0) + ("go-github-com-imdario-mergo-0.3.11" + ,go-github-com-imdario-mergo-0.3.11) + ("go-github-com-gogo-protobuf-1.3.2" + ,go-github-com-gogo-protobuf-1.3.2) + ("go-github-com-containers-ocicrypt-1.1.0" + ,go-github-com-containers-ocicrypt-1.1.0) + ("go-github-com-containerd-typeurl-1.0.1" + ,go-github-com-containerd-typeurl-1.0.1) + ("go-github-com-containerd-containerd-1.5.0-beta.1" + ,go-github-com-containerd-containerd-1.5.0-beta.1) + ("go-github-com-containerd-console-1.0.1" + ,go-github-com-containerd-console-1.0.1) + ("go-github-com-microsoft-hcsshim-test-0.0.0-20210227013316-43a75bb4edd3" + ,go-github-com-microsoft-hcsshim-test-0.0.0-20210227013316-43a75bb4edd3) + ("go-github-com-microsoft-hcsshim-0.8.14" + ,go-github-com-microsoft-hcsshim-0.8.14) + ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" + ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3))) + (home-page "https://github.com/containerd/imgcrypt") + (synopsis "imgcrypt image encryption library and command line tool") + (description + "Project @code{imgcrypt} is a non-core subproject of containerd.") + (license license:asl2.0))) + +(define-public go-github-com-microsoft-go-winio-0.4.15-0.20190919025122-fc70bd9a86b5 + (package + (name "go-github-com-microsoft-go-winio") + (version "0.4.15-0.20190919025122-fc70bd9a86b5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/microsoft/go-winio") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "015ra2h3qfaq436d0g7akahgz7bikyvljq48m0l2d2f4k3wki86p")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/Microsoft/go-winio")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3" + ,go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3) + ("go-github-com-sirupsen-logrus-1.4.1" + ,go-github-com-sirupsen-logrus-1.4.1) + ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) + (home-page "https://github.com/Microsoft/go-winio") + (synopsis "go-winio") + (description + "This repository contains utilities for efficiently performing Win32 IO operations in +Go. Currently, this is focused on accessing named pipes and other file handles, and +for using named pipes as a net transport.") + (license license:expat))) + +(define-public go-github-com-godbus-dbus-0.0.0-20190422162347-ade71ed3457e + (package + (name "go-github-com-godbus-dbus") + (version "0.0.0-20190422162347-ade71ed3457e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/godbus/dbus") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12ga9izv32j1zjij1p9f2sdnxjy3v80lw964518dvzirxpvwfszn")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/godbus/dbus")) + (home-page "https://github.com/godbus/dbus") + (synopsis "dbus") + (description + "Package dbus implements bindings to the D-Bus message bus system. +") + (license license:bsd-2))) + +(define-public go-golang-org-x-sys-0.0.0-20190514135907-3a4b5fb9f71f + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190514135907-3a4b5fb9f71f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "122ry2lw2525mqlnw2zc006y1flvj3yhj8rnpxqdwxp71jc3kqii")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-containerd-cgroups-0.0.0-20190919134610-bf292b21730f + (package + (name "go-github-com-containerd-cgroups") + (version "0.0.0-20190919134610-bf292b21730f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/cgroups") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1vvk1vrwm9spilyl4r1r8626sg0zvnx3s3zmzigzinpkzzvbdqpw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/cgroups")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190514135907-3a4b5fb9f71f" + ,go-golang-org-x-sys-0.0.0-20190514135907-3a4b5fb9f71f) + ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) + ("go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700" + ,go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700) + ("go-github-com-gogo-protobuf-1.2.1" + ,go-github-com-gogo-protobuf-1.2.1) + ("go-github-com-godbus-dbus-0.0.0-20190422162347-ade71ed3457e" + ,go-github-com-godbus-dbus-0.0.0-20190422162347-ade71ed3457e) + ("go-github-com-docker-go-units-0.4.0" + ,go-github-com-docker-go-units-0.4.0) + ("go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e" + ,go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e))) + (home-page "https://github.com/containerd/cgroups") + (synopsis "cgroups") + (description + "Go package for creating, managing, inspecting, and destroying cgroups. +The resources format for settings on the cgroup uses the OCI runtime-spec found +@url{https://github.com/opencontainers/runtime-spec,here}.") + (license license:asl2.0))) + +(define-public go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700 + (package + (name "go-github-com-opencontainers-runtime-spec") + (version "0.1.2-0.20190507144316-5b71a03e2700") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/runtime-spec") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1dx0bp4f885vx6l4b5b7h19j6sm0jn9s2qxarfd917f4wp8l0cpl")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) + (home-page "https://github.com/opencontainers/runtime-spec") + (synopsis "Open Container Initiative Runtime Specification") + (description + "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") + (license license:asl2.0))) + +(define-public go-github-com-urfave-cli-0.0.0-20171014202726-7bc6a0acffa5 + (package + (name "go-github-com-urfave-cli") + (version "0.0.0-20171014202726-7bc6a0acffa5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/urfave/cli") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "13li8phkaznh81qxs9vg0r8294ph014rwca4cqf7gxhvyjlaigwp")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/urfave/cli")) + (home-page "https://github.com/urfave/cli") + (synopsis "cli") + (description + "Package cli provides a minimal framework for creating and organizing command line +Go applications. cli is designed to be easy to understand and write, the most simple +cli application can be written as follows: +") + (license license:expat))) + +(define-public go-github-com-microsoft-hcsshim-0.8.9 + (package + (name "go-github-com-microsoft-hcsshim") + (version "0.8.9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/microsoft/hcsshim") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1imyqhh51311fdmp81ffasf7z52rbqhblbhx6477d9w20p74866b")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/Microsoft/hcsshim")) + (propagated-inputs + `(("go-gotest-tools-2.2.0+incompatible" + ,go-gotest-tools-2.2.0+incompatible) + ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) + ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" + ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) + ("go-google-golang-org-grpc-1.23.1" ,go-google-golang-org-grpc-1.23.1) + ("go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873" + ,go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873) + ("go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3" + ,go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3) + ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" + ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) + ("go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9" + ,go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9) + ("go-go-opencensus-io-0.22.0" ,go-go-opencensus-io-0.22.0) + ("go-github-com-urfave-cli-0.0.0-20171014202726-7bc6a0acffa5" + ,go-github-com-urfave-cli-0.0.0-20171014202726-7bc6a0acffa5) + ("go-github-com-stretchr-testify-1.4.0" + ,go-github-com-stretchr-testify-1.4.0) + ("go-github-com-sirupsen-logrus-1.4.2" + ,go-github-com-sirupsen-logrus-1.4.2) + ("go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7" + ,go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7) + ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) + ("go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700" + ,go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700) + ("go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f" + ,go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f) + ("go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2" + ,go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2) + ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2) + ("go-github-com-gogo-protobuf-1.3.1" + ,go-github-com-gogo-protobuf-1.3.1) + ("go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd" + ,go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd) + ("go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de" + ,go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de) + ("go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3" + ,go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3) + ("go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448" + ,go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448) + ("go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc" + ,go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc) + ("go-github-com-containerd-containerd-1.3.2" + ,go-github-com-containerd-containerd-1.3.2) + ("go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1" + ,go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1) + ("go-github-com-containerd-cgroups-0.0.0-20190919134610-bf292b21730f" + ,go-github-com-containerd-cgroups-0.0.0-20190919134610-bf292b21730f) + ("go-github-com-microsoft-go-winio-0.4.15-0.20190919025122-fc70bd9a86b5" + ,go-github-com-microsoft-go-winio-0.4.15-0.20190919025122-fc70bd9a86b5))) + (home-page "https://github.com/Microsoft/hcsshim") + (synopsis "hcsshim") + (description + "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") + (license license:expat))) + +(define-public go-github-com-cilium-ebpf-0.0.0-20200702112145-1c8d4c9ef775 + (package + (name "go-github-com-cilium-ebpf") + (version "0.0.0-20200702112145-1c8d4c9ef775") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cilium/ebpf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1la90b88a1li5hmlqxfx9lgxlyzqb2pd4c2dxmz4s5gg2gz8a5x5")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/cilium/ebpf")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9" + ,go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9))) + (home-page "https://github.com/cilium/ebpf") + (synopsis "eBPF") + (description "Package ebpf is a toolkit for working with eBPF programs. +") + (license license:expat))) + +(define-public go-github-com-containerd-cgroups-0.0.0-20200710171044-318312a37340 + (package + (name "go-github-com-containerd-cgroups") + (version "0.0.0-20200710171044-318312a37340") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/cgroups") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1kizbm55pmlnly2dggymp84a0d9pn4fh7jf31h6wqm385zrs14zp")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/cgroups")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9" + ,go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9) + ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) + ("go-github-com-stretchr-testify-1.2.2" + ,go-github-com-stretchr-testify-1.2.2) + ("go-github-com-sirupsen-logrus-1.6.0" + ,go-github-com-sirupsen-logrus-1.6.0) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-runtime-spec-1.0.2" + ,go-github-com-opencontainers-runtime-spec-1.0.2) + ("go-github-com-gogo-protobuf-1.3.1" + ,go-github-com-gogo-protobuf-1.3.1) + ("go-github-com-godbus-dbus-v5-5.0.3" + ,go-github-com-godbus-dbus-v5-5.0.3) + ("go-github-com-docker-go-units-0.4.0" + ,go-github-com-docker-go-units-0.4.0) + ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" + ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) + ("go-github-com-coreos-go-systemd-v22-22.0.0" + ,go-github-com-coreos-go-systemd-v22-22.0.0) + ("go-github-com-cilium-ebpf-0.0.0-20200702112145-1c8d4c9ef775" + ,go-github-com-cilium-ebpf-0.0.0-20200702112145-1c8d4c9ef775))) + (home-page "https://github.com/containerd/cgroups") + (synopsis "cgroups") + (description + "Go package for creating, managing, inspecting, and destroying cgroups. +The resources format for settings on the cgroup uses the OCI runtime-spec found +@url{https://github.com/opencontainers/runtime-spec,here}.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-containerd-1.4.0-beta.2.0.20200729163537-40b22ef07410 + (package + (name "go-github-com-containerd-containerd") + (version "1.4.0-beta.2.0.20200729163537-40b22ef07410") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/containerd") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ky7ny5b0rvkr6a58pdlcm35kc9wls6jvl7cdk8py4a16y1f2lx9")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/containerd")) + (home-page "https://github.com/containerd/containerd") + (synopsis "Now Recruiting") + (description + "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") + (license license:asl2.0))) + +(define-public go-github-com-onsi-ginkgo-1.10.1 + (package + (name "go-github-com-onsi-ginkgo") + (version "1.10.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/onsi/ginkgo") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "033a42h1wzmji57p86igg9whvsbp6nvfdsypskw738ys903n3z4d")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/onsi/ginkgo")) + (home-page "https://github.com/onsi/ginkgo") + (synopsis "Ginkgo 2.0 Release Candidate is available!") + (description "Ginkgo is a BDD-style testing framework for Golang +") + (license license:expat))) + +(define-public go-github-com-opencontainers-go-digest-1.0.0-rc1 + (package + (name "go-github-com-opencontainers-go-digest") + (version "1.0.0-rc1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/go-digest") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "01gc7fpn8ax429024p2fcx3yb18axwz5bjf2hqxlii1jbsgw4bh9")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/go-digest")) + (home-page "https://github.com/opencontainers/go-digest") + (synopsis "go-digest") + (description + "Package digest provides a generalized type to opaquely represent message +digests and their operations within the registry. The Digest type is +designed to serve as a flexible identifier in a content-addressable system. +More importantly, it provides tools and wrappers to work with +hash.Hash-based digests with little effort. +") + (license (list license:asl2.0 license:cc-by-sa4.0)))) + +(define-public go-github-com-pkg-errors-0.8.1-0.20171018195549-f15c970de5b7 + (package + (name "go-github-com-pkg-errors") + (version "0.8.1-0.20171018195549-f15c970de5b7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pkg/errors") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18jihrffhfsjvz3rkanlhq9xjcdxkqilmflnijc64s7y7lijlbfm")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pkg/errors")) + (home-page "https://github.com/pkg/errors") + (synopsis "errors") + (description "Package errors provides simple error handling primitives. +") + (license license:bsd-2))) + +(define-public go-github-com-sirupsen-logrus-1.0.4-0.20170822132746-89742aefa4b2 + (package + (name "go-github-com-sirupsen-logrus") + (version "1.0.4-0.20170822132746-89742aefa4b2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sirupsen/logrus") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hk7fabx59msg2y0iik6xvfp80s73ybrwlcshbm9ds91iqbkcxi6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/sirupsen/logrus")) + (home-page "https://github.com/sirupsen/logrus") + (synopsis "Logrus") + (description + "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. +") + (license license:expat))) + +(define-public go-golang-org-x-crypto-0.0.0-20171113213409-9f005a07e0d3 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20171113213409-9f005a07e0d3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1mhmr6ljzl3iafsz4qy8vval7rmr828wh59dlqqqjqx6sqmcs1dv")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-github-com-containerd-continuity-0.0.0-20200710164510-efbc4488d8fe + (package + (name "go-github-com-containerd-continuity") + (version "0.0.0-20200710164510-efbc4488d8fe") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/continuity") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0d638nj7z7y8z19zdwbysamqh5m3kiwvnqny7av6bxax9gg6c3h8")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/continuity")) + (propagated-inputs + `(("go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2" + ,go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2) + ("go-gopkg-in-airbrake-gobrake-v2-2.0.9" + ,go-gopkg-in-airbrake-gobrake-v2-2.0.9) + ("go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e" + ,go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e) + ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" + ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) + ("go-golang-org-x-crypto-0.0.0-20171113213409-9f005a07e0d3" + ,go-golang-org-x-crypto-0.0.0-20171113213409-9f005a07e0d3) + ("go-github-com-stretchr-testify-1.4.0" + ,go-github-com-stretchr-testify-1.4.0) + ("go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95" + ,go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95) + ("go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee" + ,go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee) + ("go-github-com-sirupsen-logrus-1.0.4-0.20170822132746-89742aefa4b2" + ,go-github-com-sirupsen-logrus-1.0.4-0.20170822132746-89742aefa4b2) + ("go-github-com-pkg-errors-0.8.1-0.20171018195549-f15c970de5b7" + ,go-github-com-pkg-errors-0.8.1-0.20171018195549-f15c970de5b7) + ("go-github-com-opencontainers-go-digest-1.0.0-rc1" + ,go-github-com-opencontainers-go-digest-1.0.0-rc1) + ("go-github-com-onsi-gomega-1.7.0" ,go-github-com-onsi-gomega-1.7.0) + ("go-github-com-onsi-ginkgo-1.10.1" ,go-github-com-onsi-ginkgo-1.10.1) + ("go-github-com-inconshreveable-mousetrap-1.0.0" + ,go-github-com-inconshreveable-mousetrap-1.0.0) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0) + ("go-github-com-dustin-go-humanize-0.0.0-20171111073723-bb3d318650d4" + ,go-github-com-dustin-go-humanize-0.0.0-20171111073723-bb3d318650d4) + ("go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898" + ,go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898))) + (home-page "https://github.com/containerd/continuity") + (synopsis "continuity") + (description + "This package provides a transport-agnostic, filesystem metadata manifest system") + (license license:asl2.0))) + +(define-public go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20191210023423-ac6580df4449") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "14gvx65w5lddi20s4wypbbvbg9ni3m8777jhp9nqxhixc61k3dyi")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-containerd-fifo-0.0.0-20200410184934-f15a3290365b + (package + (name "go-github-com-containerd-fifo") + (version "0.0.0-20200410184934-f15a3290365b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/fifo") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1i3pylxr2a4b9gaifjrhfa21n147vvq2z9iqwzz9id532xv9mr48")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/fifo")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449" + ,go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449) + ("go-github-com-stretchr-testify-1.4.0" + ,go-github-com-stretchr-testify-1.4.0) + ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) + (home-page "https://github.com/containerd/fifo") + (synopsis "fifo") + (description "Go package for handling fifos in a sane way.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-ttrpc-1.0.1 + (package + (name "go-github-com-containerd-ttrpc") + (version "1.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/ttrpc") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "02ilz14f1k9zip7caqfjwvfg2nwa7bs6880pi6fxbri1wy6ar45q")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/ttrpc")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.26.0" ,go-google-golang-org-grpc-1.26.0) + ("go-google-golang-org-genproto-0.0.0-20200117163144-32f20d992d24" + ,go-google-golang-org-genproto-0.0.0-20200117163144-32f20d992d24) + ("go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479" + ,go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479) + ("go-github-com-sirupsen-logrus-1.4.2" + ,go-github-com-sirupsen-logrus-1.4.2) + ("go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1" + ,go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.2" + ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.2) + ("go-github-com-gogo-protobuf-1.3.1" + ,go-github-com-gogo-protobuf-1.3.1))) + (home-page "https://github.com/containerd/ttrpc") + (synopsis "ttrpc") + (description "GRPC for low-memory environments.") + (license license:asl2.0))) + +(define-public go-github-com-docker-distribution-2.7.1+incompatible + (package + (name "go-github-com-docker-distribution") + (version "2.7.1+incompatible") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/distribution/distribution") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1nx8b5a68rn81alp8wkkw6qd5v32mgf0fk23mxm60zdf63qk1nzw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/docker/distribution")) + (home-page "https://github.com/docker/distribution") + (synopsis "Distribution") + (description + "Package distribution will define the interfaces for the components of +docker distribution. The goal is to allow users to reliably package, ship +and store content related to docker images. +") + (license license:asl2.0))) + +(define-public go-github-com-gogo-googleapis-1.4.0 + (package + (name "go-github-com-gogo-googleapis") + (version "1.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gogo/googleapis") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1kka9qmra1klfkjza0s5papqvsi65f2d349dl8k1lvfq487iv9r4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/gogo/googleapis")) + (propagated-inputs + `(("go-github-com-gogo-protobuf-1.3.1" + ,go-github-com-gogo-protobuf-1.3.1))) + (home-page "https://github.com/gogo/googleapis") + (synopsis "Google APIs generated by gogoprotobuf") + (description + "The @url{https://github.com/gogo/grpc-example,grpc-example} includes an example usage of this repository.") + (license license:asl2.0))) + +(define-public go-github-com-google-go-cmp-0.5.1 + (package + (name "go-github-com-google-go-cmp") + (version "0.5.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1wjdid59brciv09agxgmqac5k9ywg63nhzb0yi9anmqpl38gps0p")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") + (license license:bsd-3))) + +(define-public go-github-com-imdario-mergo-0.3.10 + (package + (name "go-github-com-imdario-mergo") + (version "0.3.10") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/imdario/mergo") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "09h765p8yby9r8s0a3hv5kl8n2i382mda76wmvk48w1cc1w9s92p")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/imdario/mergo")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.3.0" ,go-gopkg-in-yaml-v2-2.3.0))) + (home-page "https://github.com/imdario/mergo") + (synopsis "Mergo") + (description + "This package provides a helper to merge structs and maps in Golang. Useful for configuration default values, avoiding messy if-statements. +") + (license license:bsd-3))) + +(define-public go-github-com-opencontainers-runc-0.1.1 + (package + (name "go-github-com-opencontainers-runc") + (version "0.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/runc") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "09fm7f1k4lvx8v3crqb0cli1x2brlz8ka7f7qa8d2sb6ln58h7w7")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/runc")) + (home-page "https://github.com/opencontainers/runc") + (synopsis "runc") + (description + "@code{runc} is a CLI tool for spawning and running containers according to the OCI specification.") + (license license:asl2.0))) + +(define-public go-github-com-willf-bitset-1.1.11-0.20200630133818-d5bec3311243 + (package + (name "go-github-com-willf-bitset") + (version "1.1.11-0.20200630133818-d5bec3311243") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/bits-and-blooms/bitset") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "05nyd0vhp2h9hbqlv2s9l2py6mr8hpz2zyfj09an1q7wd8vph4ja")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/willf/bitset")) + (home-page "https://github.com/willf/bitset") + (synopsis "bitset") + (description + "Package bitset implements bitsets, a mapping +between non-negative integers and boolean values. It should be more +efficient than map[uint] bool. +") + (license license:bsd-3))) + +(define-public go-github-com-opencontainers-selinux-1.6.0 + (package + (name "go-github-com-opencontainers-selinux") + (version "1.6.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/selinux") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ja41zfgrkhk5khixjnxpi1b85xfcxlkhq2q9b7ma6xjfdhg8bq2")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/selinux")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777" + ,go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777) + ("go-github-com-willf-bitset-1.1.11-0.20200630133818-d5bec3311243" + ,go-github-com-willf-bitset-1.1.11-0.20200630133818-d5bec3311243) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) + (home-page "https://github.com/opencontainers/selinux") + (synopsis "selinux") + (description "Common SELinux package used across the container ecosystem.") + (license license:asl2.0))) + +(define-public go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2 + (package + (name "go-github-com-syndtr-gocapability") + (version "0.0.0-20180916011248-d98352740cb2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/syndtr/gocapability") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "065y16562ynixxzj7iys4f4spb7knilbj3h833qlhds381j8hn93")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/syndtr/gocapability")) + (home-page "https://github.com/syndtr/gocapability") + (synopsis #f) + (description #f) + (license license:bsd-2))) + +(define-public go-golang-org-x-net-0.0.0-20200707034311-ab3426394381 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20200707034311-ab3426394381") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1wr7rnnqp210yykkypinb8ciszx28aq5a3l3dvsv6swzxxngs8zn")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" + ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) + ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" + ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208 + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20200625203802-6e8e738ad208") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1avk27pszd5l5df6ff7j78wgla46ir1hhy2jwfl9a3c0ys602yx9")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the +ones provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f + (package + (name "go-github-com-cncf-udpa-go") + (version "0.0.0-20191209042840-269d4d468f6f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cncf/udpa") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0i1jiaw2k3hlwwmg4hap81vb4s1p25xp9kdfww37v0fbgjariccs")))) + (build-system go-build-system) + (arguments + '(#:import-path + "github.com/cncf/udpa/go" + #:unpack-path + "github.com/cncf/udpa")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2) + ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" + ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0))) + (home-page "https://github.com/cncf/udpa") + (synopsis "Description") + (description + "This library has been deprecated in favor of @code{github.com/cncf/xds/go}. All users are recommended to switch their imports.") + (license license:asl2.0))) + +(define-public go-github-com-envoyproxy-go-control-plane-0.9.0 + (package + (name "go-github-com-envoyproxy-go-control-plane") + (version "0.9.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/envoyproxy/go-control-plane") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1dpvi4wnycyj6hnai78fr8aj58b27b1vcwdp3v0id5v22kvgr3xw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.23.0" ,go-google-golang-org-grpc-1.23.0) + ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" + ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) + ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" + ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2) + ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" + ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) + ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" + ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) + (home-page "https://github.com/envoyproxy/go-control-plane") + (synopsis "control-plane") + (description + "This repository contains a Go-based implementation of an API server that +implements the discovery service APIs defined in +@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") + (license license:asl2.0))) + +(define-public go-google-golang-org-grpc-1.25.1 + (package + (name "go-google-golang-org-grpc") + (version "1.25.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0a136ij9p11yj1vx892yqy40jkh7n5nfbpdvhgydcj823mx51c6f")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" + ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-github-com-google-go-cmp-0.2.0" + ,go-github-com-google-go-cmp-0.2.0) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2) + ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" + ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) + ("go-github-com-envoyproxy-go-control-plane-0.9.0" + ,go-github-com-envoyproxy-go-control-plane-0.9.0))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-github-com-envoyproxy-go-control-plane-0.9.4 + (package + (name "go-github-com-envoyproxy-go-control-plane") + (version "0.9.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/envoyproxy/go-control-plane") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0m0crzx70lp7vz13v20wxb1fcfdnzp7h3mkh3bn6a8mbfz6w5asj")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) + ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" + ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) + ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" + ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) + ("go-github-com-google-go-cmp-0.2.0" + ,go-github-com-google-go-cmp-0.2.0) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2) + ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" + ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) + ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" + ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f) + ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" + ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) + (home-page "https://github.com/envoyproxy/go-control-plane") + (synopsis "control-plane") + (description + "This repository contains a Go-based implementation of an API server that +implements the discovery service APIs defined in +@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") + (license license:asl2.0))) + +(define-public go-google-golang-org-grpc-1.30.0 + (package + (name "go-google-golang-org-grpc") + (version "1.30.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "05pb9xrxd7kpbi8zzby90f87b6sxq65nmpgqx5h3255whmmpzbi9")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" + ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.3.3" + ,go-github-com-golang-protobuf-1.3.3) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-envoyproxy-go-control-plane-0.9.4" + ,go-github-com-envoyproxy-go-control-plane-0.9.4) + ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" + ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-github-com-containerd-nri-0.0.0-20201007170849-eb1350a75164 + (package + (name "go-github-com-containerd-nri") + (version "0.0.0-20201007170849-eb1350a75164") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/nri") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1yhrxl36fswgxv7ny3p9xi99jsbwyk920gmzkjyfyk6nqs0hqbkg")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/nri")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.30.0" ,go-google-golang-org-grpc-1.30.0) + ("go-golang-org-x-sys-0.0.0-20200728102440-3e129f6d46b1" + ,go-golang-org-x-sys-0.0.0-20200728102440-3e129f6d46b1) + ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" + ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) + ("go-golang-org-x-net-0.0.0-20200707034311-ab3426394381" + ,go-golang-org-x-net-0.0.0-20200707034311-ab3426394381) + ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) + ("go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2" + ,go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-selinux-1.6.0" + ,go-github-com-opencontainers-selinux-1.6.0) + ("go-github-com-opencontainers-runc-0.1.1" + ,go-github-com-opencontainers-runc-0.1.1) + ("go-github-com-opencontainers-image-spec-1.0.1" + ,go-github-com-opencontainers-image-spec-1.0.1) + ("go-github-com-opencontainers-go-digest-1.0.0" + ,go-github-com-opencontainers-go-digest-1.0.0) + ("go-github-com-imdario-mergo-0.3.10" + ,go-github-com-imdario-mergo-0.3.10) + ("go-github-com-google-uuid-1.1.1" ,go-github-com-google-uuid-1.1.1) + ("go-github-com-google-go-cmp-0.5.1" + ,go-github-com-google-go-cmp-0.5.1) + ("go-github-com-gogo-googleapis-1.4.0" + ,go-github-com-gogo-googleapis-1.4.0) + ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" + ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) + ("go-github-com-docker-distribution-2.7.1+incompatible" + ,go-github-com-docker-distribution-2.7.1+incompatible) + ("go-github-com-containerd-typeurl-1.0.1" + ,go-github-com-containerd-typeurl-1.0.1) + ("go-github-com-containerd-ttrpc-1.0.1" + ,go-github-com-containerd-ttrpc-1.0.1) + ("go-github-com-containerd-fifo-0.0.0-20200410184934-f15a3290365b" + ,go-github-com-containerd-fifo-0.0.0-20200410184934-f15a3290365b) + ("go-github-com-containerd-continuity-0.0.0-20200710164510-efbc4488d8fe" + ,go-github-com-containerd-continuity-0.0.0-20200710164510-efbc4488d8fe) + ("go-github-com-containerd-containerd-1.4.0-beta.2.0.20200729163537-40b22ef07410" + ,go-github-com-containerd-containerd-1.4.0-beta.2.0.20200729163537-40b22ef07410) + ("go-github-com-containerd-cgroups-0.0.0-20200710171044-318312a37340" + ,go-github-com-containerd-cgroups-0.0.0-20200710171044-318312a37340) + ("go-github-com-microsoft-hcsshim-0.8.9" + ,go-github-com-microsoft-hcsshim-0.8.9))) + (home-page "https://github.com/containerd/nri") + (synopsis "nri - Node Resource Interface") + (description + "This project is a WIP for a new, CNI like, interface for managing resources on a node for Pods and Containers.") + (license license:asl2.0))) + +(define-public go-github-com-sirupsen-logrus-1.4.1 + (package + (name "go-github-com-sirupsen-logrus") + (version "1.4.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sirupsen/logrus") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1m7ny9jkb98cxqhsp13xa5hnqh1s9f25x04q6arsala4zswsw33c")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/sirupsen/logrus")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33" + ,go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33) + ("go-github-com-stretchr-testify-1.2.2" + ,go-github-com-stretchr-testify-1.2.2) + ("go-github-com-stretchr-objx-0.1.1" + ,go-github-com-stretchr-objx-0.1.1) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.1" + ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.1) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/sirupsen/logrus") + (synopsis "Logrus") + (description + "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. +") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190916202348-b4ddaad3f8a3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "05pa68kqxhpjk71b4cbm8vyzh6527b3ig6war2jr1g4aj3b7f1ak")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-microsoft-go-winio-0.4.16-0.20201130162521-d1ffc52c7331 + (package + (name "go-github-com-microsoft-go-winio") + (version "0.4.16-0.20201130162521-d1ffc52c7331") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/microsoft/go-winio") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0snwbwdjs34x0my9ri77cvrbnahdiyjh2jlkzf12fy48p7fyk7pq")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/Microsoft/go-winio")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3" + ,go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3) + ("go-github-com-sirupsen-logrus-1.4.1" + ,go-github-com-sirupsen-logrus-1.4.1) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) + (home-page "https://github.com/Microsoft/go-winio") + (synopsis "go-winio") + (description + "This repository contains utilities for efficiently performing Win32 IO operations in +Go. Currently, this is focused on accessing named pipes and other file handles, and +for using named pipes as a net transport.") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20191022100944-742c48ecaeb7 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20191022100944-742c48ecaeb7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1saf59bplvvb753my15ijxcy4a1jwfg53cmkgb6wkln2x4fgnhkp")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-cilium-ebpf-0.0.0-20200110133405-4032b1d8aae3 + (package + (name "go-github-com-cilium-ebpf") + (version "0.0.0-20200110133405-4032b1d8aae3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cilium/ebpf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "107x63zl8dlw2izn5xw8pnflgq19srpa46bgvjs8q4d61i02q1fr")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/cilium/ebpf")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191022100944-742c48ecaeb7" + ,go-golang-org-x-sys-0.0.0-20191022100944-742c48ecaeb7) + ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) + (home-page "https://github.com/cilium/ebpf") + (synopsis "eBPF") + (description "Package ebpf is a toolkit for working with eBPF programs. +") + (license license:expat))) + +(define-public go-github-com-coreos-go-systemd-v22-22.0.0 + (package + (name "go-github-com-coreos-go-systemd-v22") + (version "22.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/coreos/go-systemd") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0p4sb2fxxm2j1xny2l4fkq4kwj74plvh600gih8nyniqzannhrdx")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/coreos/go-systemd/v22")) + (propagated-inputs + `(("go-github-com-godbus-dbus-v5-5.0.3" + ,go-github-com-godbus-dbus-v5-5.0.3))) + (home-page "https://github.com/coreos/go-systemd") + (synopsis "go-systemd") + (description "Go bindings to systemd. The project has several packages:") + (license license:asl2.0))) + +(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0 + (package + (name "go-github-com-cpuguy83-go-md2man-v2") + (version "2.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cpuguy83/go-md2man") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) + (propagated-inputs + `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" + ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) + ("go-github-com-russross-blackfriday-v2-2.0.1" + ,go-github-com-russross-blackfriday-v2-2.0.1) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0))) + (home-page "https://github.com/cpuguy83/go-md2man") + (synopsis "go-md2man") + (description "Converts markdown into roff (man pages).") + (license license:expat))) + +(define-public go-github-com-containerd-cgroups-0.0.0-20200531161412-0dbf7f05ba59 + (package + (name "go-github-com-containerd-cgroups") + (version "0.0.0-20200531161412-0dbf7f05ba59") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/cgroups") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "10abzkjf77s8pv4mpyvy2jbl8wckhk3j7ykgs01sclal21v8p251")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/cgroups")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479" + ,go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479) + ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) + ("go-github-com-stretchr-testify-1.2.2" + ,go-github-com-stretchr-testify-1.2.2) + ("go-github-com-sirupsen-logrus-1.4.2" + ,go-github-com-sirupsen-logrus-1.4.2) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-runtime-spec-1.0.2" + ,go-github-com-opencontainers-runtime-spec-1.0.2) + ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.2" + ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.2) + ("go-github-com-gogo-protobuf-1.3.1" + ,go-github-com-gogo-protobuf-1.3.1) + ("go-github-com-godbus-dbus-v5-5.0.3" + ,go-github-com-godbus-dbus-v5-5.0.3) + ("go-github-com-docker-go-units-0.4.0" + ,go-github-com-docker-go-units-0.4.0) + ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" + ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) + ("go-github-com-coreos-go-systemd-v22-22.0.0" + ,go-github-com-coreos-go-systemd-v22-22.0.0) + ("go-github-com-cilium-ebpf-0.0.0-20200110133405-4032b1d8aae3" + ,go-github-com-cilium-ebpf-0.0.0-20200110133405-4032b1d8aae3))) + (home-page "https://github.com/containerd/cgroups") + (synopsis "cgroups") + (description + "Go package for creating, managing, inspecting, and destroying cgroups. +The resources format for settings on the cgroup uses the OCI runtime-spec found +@url{https://github.com/opencontainers/runtime-spec,here}.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1 + (package + (name "go-github-com-containerd-console") + (version "0.0.0-20180822173158-c12b1e7919c1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/console") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ylrnmdhn9a2f8w8fsdgsvwnz5j0whhyhppjnhqc4lh8h9p9dpi9")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/console")) + (home-page "https://github.com/containerd/console") + (synopsis "console") + (description + "Golang package for dealing with consoles. Light on deps and a simple API.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-containerd-1.3.2 + (package + (name "go-github-com-containerd-containerd") + (version "1.3.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/containerd") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0qz6ss7a6f2r7gl7aar39pr5ry9l7nh7dn3kclr18nwdv01gmrvc")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/containerd")) + (home-page "https://github.com/containerd/containerd") + (synopsis "Now Recruiting") + (description + "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc + (package + (name "go-github-com-containerd-continuity") + (version "0.0.0-20190426062206-aaeac12a7ffc") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/continuity") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "05caqvxxb831xfvqnga692k98cy8xzkllqg1ibra0fb0ljnhbmca")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/continuity")) + (home-page "https://github.com/containerd/continuity") + (synopsis "continuity") + (description + "This package provides a transport-agnostic, filesystem metadata manifest system") + (license license:asl2.0))) + +(define-public go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448 + (package + (name "go-github-com-containerd-fifo") + (version "0.0.0-20190226154929-a9fb20d87448") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/fifo") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0c0sgfnafjnws4jgziczs6wxh0adjdrp6yyd88b7xy0hv13fsnqa")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/fifo")) + (home-page "https://github.com/containerd/fifo") + (synopsis "fifo") + (description "Go package for handling fifos in a sane way.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3 + (package + (name "go-github-com-containerd-go-runc") + (version "0.0.0-20180907222934-5a6d9f37cfa3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/go-runc") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "07qpxcjy64m238igpmj8g9z7qhf06k5xy1jcgpgvf5n912g4k3vd")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/go-runc")) + (home-page "https://github.com/containerd/go-runc") + (synopsis "go-runc") + (description + "This is a package for consuming the @url{https://github.com/opencontainers/runc,runc} binary in your Go applications. +It tries to expose all the settings and features of the runc CLI. If there is something missing then add it, its opensource!") + (license license:asl2.0))) + +(define-public go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de + (package + (name "go-github-com-containerd-ttrpc") + (version "0.0.0-20190828154514-0e0f228740de") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/ttrpc") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1kzclhmicw2xkiqsg6npx0xzs5jx36mqmyd0gj5dzv88i7p4b8dx")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/ttrpc")) + (home-page "https://github.com/containerd/ttrpc") + (synopsis "ttrpc") + (description "GRPC for low-memory environments.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd + (package + (name "go-github-com-containerd-typeurl") + (version "0.0.0-20180627222232-a93fcdb778cd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/typeurl") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0aqnf5rzc5pldln0czhxlr0fqaf5553ab7wzsq85p90lg1ryqnd6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/typeurl")) + (home-page "https://github.com/containerd/typeurl") + (synopsis "typeurl") + (description + "This package provides a Go package for managing the registration, marshaling, and unmarshaling of encoded types.") + (license license:asl2.0))) + +(define-public go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2 + (package + (name "go-github-com-opencontainers-go-digest") + (version "0.0.0-20180430190053-c9281466c8b2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/go-digest") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1djdazssy27xn91pjhx3dgb0f11bnlzzbwkh7f8zwnpz011anasi")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/go-digest")) + (home-page "https://github.com/opencontainers/go-digest") + (synopsis "go-digest") + (description + "Package digest provides a generalized type to opaquely represent message +digests and their operations within the registry. The Digest type is +designed to serve as a flexible identifier in a content-addressable system. +More importantly, it provides tools and wrappers to work with +hash.Hash-based digests with little effort. +") + (license (list license:asl2.0 license:cc-by-sa4.0)))) + +(define-public go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f + (package + (name "go-github-com-opencontainers-runc") + (version "0.0.0-20190115041553-12f6a991201f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/runc") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0lr4q440pliilq2njyj5glfpma89r9l1cl687niwkp2pzb32dm45")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/runc")) + (home-page "https://github.com/opencontainers/runc") + (synopsis "runc") + (description + "@code{runc} is a CLI tool for spawning and running containers according to the OCI specification.") + (license license:asl2.0))) + +(define-public go-github-com-opencontainers-runtime-spec-1.0.2 + (package + (name "go-github-com-opencontainers-runtime-spec") + (version "1.0.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/runtime-spec") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19w981vcmd5lp2hy0630x6ayb8zz17n2vxqm2py5mg945xflcizg")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) + (home-page "https://github.com/opencontainers/runtime-spec") + (synopsis "Open Container Initiative Runtime Specification") + (description + "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") + (license license:asl2.0))) + +(define-public go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7 + (package + (name "go-github-com-prometheus-procfs") + (version "0.0.0-20180125133057-cb4147076ac7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/procfs") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0zhlrik0f9q1lj6cisgnxgbz4darbcix52hm5abi24l2ahchf5ca")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/procfs")) + (home-page "https://github.com/prometheus/procfs") + (synopsis "procfs") + (description + "Package procfs provides functions to retrieve system, kernel and process +metrics from the pseudo-filesystem proc. +") + (license license:asl2.0))) + +(define-public go-github-com-urfave-cli-1.22.2 + (package + (name "go-github-com-urfave-cli") + (version "1.22.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/urfave/cli") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "10mcnvi5qmn00vpyk6si8gjka7p654wr9hac4zc9w5h3ickhvbdc")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/urfave/cli")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) + ("go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d" + ,go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d) + ("go-github-com-burntsushi-toml-0.3.1" + ,go-github-com-burntsushi-toml-0.3.1))) + (home-page "https://github.com/urfave/cli") + (synopsis "cli") + (description + "Package cli provides a minimal framework for creating and organizing command line +Go applications. cli is designed to be easy to understand and write, the most simple +cli application can be written as follows: +") + (license license:expat))) + +(define-public go-golang-org-x-net-0.0.0-20190501004415-9ce7a6920f09 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190501004415-9ce7a6920f09") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1kbs85jsqbv4v89ii2zam4b8dhmllhsrf46njmi09x0w6s0b9cbk")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-go-opencensus-io-0.22.0 + (package + (name "go-go-opencensus-io") + (version "0.22.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/census-instrumentation/opencensus-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "05jr8gkr2w34i5wwki4zhl5ch0qrgi7cdgag5iy5gpxplhbrvbg9")))) + (build-system go-build-system) + (arguments '(#:import-path "go.opencensus.io")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.20.1" ,go-google-golang-org-grpc-1.20.1) + ("go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb" + ,go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb) + ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) + ("go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd" + ,go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd) + ("go-golang-org-x-net-0.0.0-20190501004415-9ce7a6920f09" + ,go-golang-org-x-net-0.0.0-20190501004415-9ce7a6920f09) + ("go-github-com-hashicorp-golang-lru-0.5.1" + ,go-github-com-hashicorp-golang-lru-0.5.1) + ("go-github-com-google-go-cmp-0.3.0" + ,go-github-com-google-go-cmp-0.3.0) + ("go-github-com-golang-protobuf-1.3.1" + ,go-github-com-golang-protobuf-1.3.1))) + (home-page "https://go.opencensus.io") + (synopsis "OpenCensus Libraries for Go") + (description "Package opencensus contains Go support for OpenCensus. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20191004110552-13f9640d40b9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ba2767lvklnmfvb9jkwvd4m7z6326gaiz3rgylh795g88hy34g1")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873 + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20190502173448-54afdca5d873") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1vm1vggl874jd4wi6qyl7aggc6s6kdsazk4vj0cs2dfcw2xnw8ag")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" + ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) + ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) + ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" + ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) + ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" + ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) + ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" + ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd) + ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" + ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) + ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" + ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-google-golang-org-grpc-1.23.1 + (package + (name "go-google-golang-org-grpc") + (version "1.23.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1d8gjjhrqbiq8pb56lb4x10hb752k7k06wspjvh7v0vpzmf25981")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" + ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) + ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" + ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) + ("go-google-golang-org-appengine-1.1.0" + ,go-google-golang-org-appengine-1.1.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-google-go-cmp-0.2.0" + ,go-github-com-google-go-cmp-0.2.0) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0) + ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-client9-misspell-0.3.4" + ,go-github-com-client9-misspell-0.3.4) + ("go-github-com-burntsushi-toml-0.3.1" + ,go-github-com-burntsushi-toml-0.3.1) + ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-github-com-microsoft-hcsshim-0.8.14 + (package + (name "go-github-com-microsoft-hcsshim") + (version "0.8.14") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/microsoft/hcsshim") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0k57knv8zrf32hp7rpv1km9j772w6752pfvdbpd3l711ism48c84")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/Microsoft/hcsshim")) + (propagated-inputs + `(("go-gotest-tools-2.2.0+incompatible" + ,go-gotest-tools-2.2.0+incompatible) + ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) + ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" + ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) + ("go-google-golang-org-grpc-1.23.1" ,go-google-golang-org-grpc-1.23.1) + ("go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873" + ,go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873) + ("go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3" + ,go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3) + ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" + ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) + ("go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9" + ,go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9) + ("go-go-opencensus-io-0.22.0" ,go-go-opencensus-io-0.22.0) + ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) + ("go-github-com-stretchr-testify-1.4.0" + ,go-github-com-stretchr-testify-1.4.0) + ("go-github-com-sirupsen-logrus-1.4.2" + ,go-github-com-sirupsen-logrus-1.4.2) + ("go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7" + ,go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-runtime-spec-1.0.2" + ,go-github-com-opencontainers-runtime-spec-1.0.2) + ("go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f" + ,go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f) + ("go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2" + ,go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2) + ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2) + ("go-github-com-gogo-protobuf-1.3.1" + ,go-github-com-gogo-protobuf-1.3.1) + ("go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd" + ,go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd) + ("go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de" + ,go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de) + ("go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3" + ,go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3) + ("go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448" + ,go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448) + ("go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc" + ,go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc) + ("go-github-com-containerd-containerd-1.3.2" + ,go-github-com-containerd-containerd-1.3.2) + ("go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1" + ,go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1) + ("go-github-com-containerd-cgroups-0.0.0-20200531161412-0dbf7f05ba59" + ,go-github-com-containerd-cgroups-0.0.0-20200531161412-0dbf7f05ba59) + ("go-github-com-microsoft-go-winio-0.4.16-0.20201130162521-d1ffc52c7331" + ,go-github-com-microsoft-go-winio-0.4.16-0.20201130162521-d1ffc52c7331))) + (home-page "https://github.com/Microsoft/hcsshim") + (synopsis "hcsshim") + (description + "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") + (license license:expat))) + +(define-public go-github-com-containerd-containerd-1.4.3 + (package + (name "go-github-com-containerd-containerd") + (version "1.4.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/containerd") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "09xvhjg5f8h90w1y94kqqnqzhbhd62dcdd9wb9sdqakisjk6zrl0")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/containerd")) + (home-page "https://github.com/containerd/containerd") + (synopsis "Now Recruiting") + (description + "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") + (license license:asl2.0))) + +(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.2 + (package + (name "go-github-com-konsorten-go-windows-terminal-sequences") + (version "1.0.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/konsorten/go-windows-terminal-sequences") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "09mn209ika7ciy87xf2x31dq5fnqw39jidgaljvmqxwk7ff1hnx7")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) + (home-page "https://github.com/konsorten/go-windows-terminal-sequences") + (synopsis "Windows Terminal Sequences") + (description + "This library allow for enabling Windows terminal color support for Go.") + (license license:expat))) + +(define-public go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1 + (package + (name "go-github-com-prometheus-procfs") + (version "0.0.0-20190522114515-bc1a522cf7b1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/procfs") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "13ws66kd65zbhk31zmax9qgmh22fzjcgs5ihy4fm1d775w6bmdzx")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/procfs")) + (propagated-inputs + `(("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" + ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4))) + (home-page "https://github.com/prometheus/procfs") + (synopsis "procfs") + (description + "Package procfs provides functions to retrieve system, kernel and process +metrics from the pseudo-filesystem proc. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200120151820-655fe14d7479") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "133yxmdcny5b0r8775m52sj7zja36riv0x2437k7jccywqi8nx32")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-google-golang-org-genproto-0.0.0-20200117163144-32f20d992d24 + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20200117163144-32f20d992d24") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1kl696jd8fykykjjbngqpgqsngajwbbrvrpl1q0804l6hz8qk858")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" + ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) + ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) + ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" + ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) + ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" + ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) + ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" + ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-ttrpc-1.0.2 + (package + (name "go-github-com-containerd-ttrpc") + (version "1.0.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/ttrpc") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0plkm3yrr20vccfl0x8dxys3iphjwnmi285in0pivff6p9djf3yz")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/ttrpc")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.26.0" ,go-google-golang-org-grpc-1.26.0) + ("go-google-golang-org-genproto-0.0.0-20200117163144-32f20d992d24" + ,go-google-golang-org-genproto-0.0.0-20200117163144-32f20d992d24) + ("go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479" + ,go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479) + ("go-github-com-sirupsen-logrus-1.4.2" + ,go-github-com-sirupsen-logrus-1.4.2) + ("go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1" + ,go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.2" + ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.2) + ("go-github-com-gogo-protobuf-1.3.1" + ,go-github-com-gogo-protobuf-1.3.1))) + (home-page "https://github.com/containerd/ttrpc") + (synopsis "ttrpc") + (description "GRPC for low-memory environments.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-typeurl-1.0.1 + (package + (name "go-github-com-containerd-typeurl") + (version "1.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/typeurl") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "09cgrchrw5d36zq0mc321l5qr2gfbdm1z1a3hhkhqr4qay6vglqn")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/typeurl")) + (propagated-inputs + `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-gogo-protobuf-1.3.1" + ,go-github-com-gogo-protobuf-1.3.1))) + (home-page "https://github.com/containerd/typeurl") + (synopsis "typeurl") + (description + "This package provides a Go package for managing the registration, marshaling, and unmarshaling of encoded types.") + (license license:asl2.0))) + +(define-public go-github-com-opencontainers-runc-1.0.0-rc9 + (package + (name "go-github-com-opencontainers-runc") + (version "1.0.0-rc9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/runc") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ss5b46cbbckyqlwgj8dbd5l59c5y0kp679hcpc0ybaj53pmwxj7")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/runc")) + (home-page "https://github.com/opencontainers/runc") + (synopsis "runc") + (description + "@code{runc} is a CLI tool for spawning and running containers according to the OCI specification.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-zfs-0.0.0-20210301145711-11e8f1707f62 + (package + (name "go-github-com-containerd-zfs") + (version "0.0.0-20210301145711-11e8f1707f62") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/zfs") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1919ax45a07v2y56xq5c0xihkn2c5zgyqv68rzx3x5cc20n2p8yg")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/zfs")) + (propagated-inputs + `(("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) + ("go-go-etcd-io-bbolt-1.3.3" ,go-go-etcd-io-bbolt-1.3.3) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-runc-1.0.0-rc9" + ,go-github-com-opencontainers-runc-1.0.0-rc9) + ("go-github-com-opencontainers-image-spec-1.0.1" + ,go-github-com-opencontainers-image-spec-1.0.1) + ("go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible" + ,go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible) + ("go-github-com-google-uuid-1.1.1" ,go-github-com-google-uuid-1.1.1) + ("go-github-com-gogo-protobuf-1.3.1" + ,go-github-com-gogo-protobuf-1.3.1) + ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" + ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) + ("go-github-com-containerd-typeurl-1.0.1" + ,go-github-com-containerd-typeurl-1.0.1) + ("go-github-com-containerd-ttrpc-1.0.2" + ,go-github-com-containerd-ttrpc-1.0.2) + ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" + ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) + ("go-github-com-containerd-containerd-1.4.3" + ,go-github-com-containerd-containerd-1.4.3) + ("go-github-com-microsoft-hcsshim-0.8.14" + ,go-github-com-microsoft-hcsshim-0.8.14))) + (home-page "https://github.com/containerd/zfs") + (synopsis "ZFS snapshotter plugin") + (description "ZFS snapshotter plugin for containerd.") + (license license:asl2.0))) + +(define-public go-github-com-containernetworking-cni-0.7.1 + (package + (name "go-github-com-containernetworking-cni") + (version "0.7.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containernetworking/cni") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "02qn1br8164d99978acalisy1sx294g1axnii4yh1wji0fc735xz")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containernetworking/cni")) + (home-page "https://github.com/containernetworking/cni") + (synopsis "CNI - the Container Network Interface") + (description + "CNI (), a @url{https://cncf.io,Cloud Native Computing Foundation} project, consists of a specification and libraries for writing plugins to configure network interfaces in Linux containers, along with a number of supported plugins. +CNI concerns itself only with network connectivity of containers and removing allocated resources when the container is deleted. +Because of this focus, CNI has a wide range of support and the specification is simple to implement.") + (license license:asl2.0))) + +(define-public go-github-com-coreos-go-iptables-0.4.5 + (package + (name "go-github-com-coreos-go-iptables") + (version "0.4.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/coreos/go-iptables") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "04iqh4hvvrrvjsfjyaa5bdyqklwzrzzy8yiyvja90hvv121f7975")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/coreos/go-iptables")) + (home-page "https://github.com/coreos/go-iptables") + (synopsis "go-iptables") + (description "Go bindings for iptables utility.") + (license license:asl2.0))) + +(define-public go-github-com-onsi-ginkgo-0.0.0-20151202141238-7f8ab55aaf3b + (package + (name "go-github-com-onsi-ginkgo") + (version "0.0.0-20151202141238-7f8ab55aaf3b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/onsi/ginkgo") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0nas6wqdym4jx42kw9wj80b58r69k9qhnvglz009lj34g5gba7rw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/onsi/ginkgo")) + (home-page "https://github.com/onsi/ginkgo") + (synopsis "Ginkgo 2.0 Release Candidate is available!") + (description "Ginkgo is a BDD-style testing framework for Golang +") + (license license:expat))) + +(define-public go-github-com-onsi-gomega-0.0.0-20151007035656-2152b45fa28a + (package + (name "go-github-com-onsi-gomega") + (version "0.0.0-20151007035656-2152b45fa28a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/onsi/gomega") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0amjlkawp84mmdqjgdamf93p1546cla6h4wwrx7hf5r862r2qcw2")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/onsi/gomega")) + (home-page "https://github.com/onsi/gomega") + (synopsis ": a BDD Testing Framework for Golang") + (description + "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library. +") + (license license:expat))) + +(define-public go-github-com-vishvananda-netlink-0.0.0-20181108222139-023a6dafdcdf + (package + (name "go-github-com-vishvananda-netlink") + (version "0.0.0-20181108222139-023a6dafdcdf") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/vishvananda/netlink") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1i5q8r8rg7lxzvq2vhbf25lrkzdlgficfv0bxg9rf7cgg6z819sn")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/vishvananda/netlink")) + (home-page "https://github.com/vishvananda/netlink") + (synopsis "netlink - netlink library for go") + (description + "Package netlink provides a simple library for netlink. Netlink is +the interface a user-space program in linux uses to communicate with +the kernel. It can be used to add and remove interfaces, set up ip +addresses and routes, and confiugre ipsec. Netlink communication +requires elevated privileges, so in most cases this code needs to +be run as root. The low level primitives for netlink are contained +in the nl subpackage. This package attempts to provide a high-level +interface that is loosly modeled on the iproute2 cli. +") + (license license:asl2.0))) + +(define-public go-github-com-vishvananda-netns-0.0.0-20180720170159-13995c7128cc + (package + (name "go-github-com-vishvananda-netns") + (version "0.0.0-20180720170159-13995c7128cc") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/vishvananda/netns") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1zk6w8158qi4niva5rijchbv9ixgmijsgqshh54wdaav4xrhjshn")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/vishvananda/netns")) + (home-page "https://github.com/vishvananda/netns") + (synopsis "netns - network namespaces in go") + (description + "Package netns allows ultra-simple network namespace handling. NsHandles +can be retrieved and set. Note that the current namespace is thread +local so actions that set and reset namespaces should use LockOSThread +to make sure the namespace doesn't change due to a goroutine switch. +It is best to close NsHandles when you are done with them. This can be +accomplished via a `defer ns.Close()` on the handle. Changing namespaces +requires elevated privileges, so in most cases this code needs to be run +as root. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-crypto-0.0.0-20181009213950-7c1a557ab941 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20181009213950-7c1a557ab941") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1f1q9mby8m7ws3gbj90v0prhnf4g2sgf74azmw31kzwd6azlar3m")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20181011144130-49bb7cea24b1 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20181011144130-49bb7cea24b1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "111q4qm3hcjvzvyv9y5rz8ydnyg48rckcygxqy6gv63q618wz6gn")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-github-com-containernetworking-plugins-0.8.6 + (package + (name "go-github-com-containernetworking-plugins") + (version "0.8.6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containernetworking/plugins") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0f1cqxjf26sy1c4aw6y7pyd9lrz0vknby4q5j6xj77a1pab9073m")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containernetworking/plugins")) + (propagated-inputs + `(("go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2" + ,go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2) + ("go-gopkg-in-airbrake-gobrake-v2-2.0.9" + ,go-gopkg-in-airbrake-gobrake-v2-2.0.9) + ("go-golang-org-x-sys-0.0.0-20190616124812-15dcb6c0061f" + ,go-golang-org-x-sys-0.0.0-20190616124812-15dcb6c0061f) + ("go-golang-org-x-net-0.0.0-20181011144130-49bb7cea24b1" + ,go-golang-org-x-net-0.0.0-20181011144130-49bb7cea24b1) + ("go-golang-org-x-crypto-0.0.0-20181009213950-7c1a557ab941" + ,go-golang-org-x-crypto-0.0.0-20181009213950-7c1a557ab941) + ("go-github-com-vishvananda-netns-0.0.0-20180720170159-13995c7128cc" + ,go-github-com-vishvananda-netns-0.0.0-20180720170159-13995c7128cc) + ("go-github-com-vishvananda-netlink-0.0.0-20181108222139-023a6dafdcdf" + ,go-github-com-vishvananda-netlink-0.0.0-20181108222139-023a6dafdcdf) + ("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0) + ("go-github-com-sirupsen-logrus-1.0.6" + ,go-github-com-sirupsen-logrus-1.0.6) + ("go-github-com-safchain-ethtool-0.0.0-20190326074333-42ed695e3de8" + ,go-github-com-safchain-ethtool-0.0.0-20190326074333-42ed695e3de8) + ("go-github-com-onsi-gomega-0.0.0-20151007035656-2152b45fa28a" + ,go-github-com-onsi-gomega-0.0.0-20151007035656-2152b45fa28a) + ("go-github-com-onsi-ginkgo-0.0.0-20151202141238-7f8ab55aaf3b" + ,go-github-com-onsi-ginkgo-0.0.0-20151202141238-7f8ab55aaf3b) + ("go-github-com-mattn-go-shellwords-1.0.3" + ,go-github-com-mattn-go-shellwords-1.0.3) + ("go-github-com-j-keck-arping-0.0.0-20160618110441-2cf9dc699c56" + ,go-github-com-j-keck-arping-0.0.0-20160618110441-2cf9dc699c56) + ("go-github-com-golang-protobuf-1.3.1" + ,go-github-com-golang-protobuf-1.3.1) + ("go-github-com-godbus-dbus-0.0.0-20180201030542-885f9cc04c9c" + ,go-github-com-godbus-dbus-0.0.0-20180201030542-885f9cc04c9c) + ("go-github-com-d2g-hardwareaddr-0.0.0-20190221164911-e7d9fbe030e4" + ,go-github-com-d2g-hardwareaddr-0.0.0-20190221164911-e7d9fbe030e4) + ("go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5" + ,go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5) + ("go-github-com-d2g-dhcp4client-1.0.0" + ,go-github-com-d2g-dhcp4client-1.0.0) + ("go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c" + ,go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c) + ("go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7" + ,go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7) + ("go-github-com-coreos-go-iptables-0.4.5" + ,go-github-com-coreos-go-iptables-0.4.5) + ("go-github-com-containernetworking-cni-0.7.1" + ,go-github-com-containernetworking-cni-0.7.1) + ("go-github-com-buger-jsonparser-0.0.0-20180808090653-f4dd9f5a6b44" + ,go-github-com-buger-jsonparser-0.0.0-20180808090653-f4dd9f5a6b44) + ("go-github-com-alexflint-go-filemutex-0.0.0-20171022225611-72bdc8eae2ae" + ,go-github-com-alexflint-go-filemutex-0.0.0-20171022225611-72bdc8eae2ae) + ("go-github-com-microsoft-hcsshim-0.8.6" + ,go-github-com-microsoft-hcsshim-0.8.6) + ("go-github-com-microsoft-go-winio-0.4.11" + ,go-github-com-microsoft-go-winio-0.4.11))) + (home-page "https://github.com/containernetworking/plugins") + (synopsis "Plugins") + (description + "Some CNI network plugins, maintained by the containernetworking team. For more information, see the @url{https://www.cni.dev,CNI website}.") + (license license:asl2.0))) + +(define-public go-github-com-imdario-mergo-0.3.11 + (package + (name "go-github-com-imdario-mergo") + (version "0.3.11") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/imdario/mergo") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "07iay9j3ry7qrflvn9bgyyggvwacl1s1in1cnbmsp1020ydkph8k")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/imdario/mergo")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.3.0" ,go-gopkg-in-yaml-v2-2.3.0))) + (home-page "https://github.com/imdario/mergo") + (synopsis "Mergo") + (description + "This package provides a helper to merge structs and maps in Golang. Useful for configuration default values, avoiding messy if-statements. +") + (license license:bsd-3))) + +(define-public go-github-com-klauspost-compress-1.11.3 + (package + (name "go-github-com-klauspost-compress") + (version "1.11.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/klauspost/compress") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "04wpilw6072fh2wd492ma1nw4br7bvz466mj0vi2m1g4w6d0z88z")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/klauspost/compress")) + (home-page "https://github.com/klauspost/compress") + (synopsis "compress") + (description "This package provides various compression algorithms.") + (license #f))) + +(define-public go-github-com-checkpoint-restore-go-criu-v4-4.1.0 + (package + (name "go-github-com-checkpoint-restore-go-criu-v4") + (version "4.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/checkpoint-restore/go-criu") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hfgjck015df5h44hczl3x4gg430saczgkl619cp0l6cpaxga5yi")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/checkpoint-restore/go-criu/v4")) + (propagated-inputs + `(("go-github-com-golang-protobuf-1.3.5" + ,go-github-com-golang-protobuf-1.3.5))) + (home-page "https://github.com/checkpoint-restore/go-criu") + (synopsis "go-criu -- Go bindings for") + (description + "This repository provides Go bindings for CRIU. The code is based on the Go based PHaul +implementation from the CRIU repository. For easier inclusion into other Go projects the +CRIU Go bindings have been moved to this repository.") + (license license:asl2.0))) + +(define-public go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200124204421-9fbb57f87de9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0qaz2jjkrxzgkapmjqingdwamrgq2aiblxvzzgrcsv2qhkj0wdps")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-cilium-ebpf-0.2.0 + (package + (name "go-github-com-cilium-ebpf") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cilium/ebpf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0f7my8n5v2c5cmgrcikgi0naamglr7c4khgxkbb1k5wl8mm9465a")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/cilium/ebpf")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9" + ,go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9) + ("go-github-com-google-go-cmp-0.5.2" + ,go-github-com-google-go-cmp-0.5.2))) + (home-page "https://github.com/cilium/ebpf") + (synopsis "eBPF") + (description "Package ebpf is a toolkit for working with eBPF programs. +") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200916030750-2334cc1a136f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1lc7d513gwwpr6r7f55743684n1qsgn9vmg6b79x0hsp1x90z4mr")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-containerd-console-1.0.1 + (package + (name "go-github-com-containerd-console") + (version "1.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/console") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0s837wj6h80fykk2pdmaji75rw9c3863by0gh0cq51hh0lgyjpvg")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/console")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f" + ,go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) + (home-page "https://github.com/containerd/console") + (synopsis "console") + (description + "Golang package for dealing with consoles. Light on deps and a simple API.") + (license license:asl2.0))) + +(define-public go-github-com-coreos-go-systemd-v22-22.1.0 + (package + (name "go-github-com-coreos-go-systemd-v22") + (version "22.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/coreos/go-systemd") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "127dj1iwp69yj74nwh9ckgc0mkk1mv4yzbxmbdxix1r7j6q35z3j")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/coreos/go-systemd/v22")) + (propagated-inputs + `(("go-github-com-godbus-dbus-v5-5.0.3" + ,go-github-com-godbus-dbus-v5-5.0.3))) + (home-page "https://github.com/coreos/go-systemd") + (synopsis "go-systemd") + (description "Go bindings to systemd. The project has several packages:") + (license license:asl2.0))) + +(define-public go-github-com-godbus-dbus-v5-5.0.3 + (package + (name "go-github-com-godbus-dbus-v5") + (version "5.0.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/godbus/dbus") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1bkc904073k807yxg6mvqaxrr6ammmhginr9p54jfb55mz3hfw3s")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/godbus/dbus/v5")) + (home-page "https://github.com/godbus/dbus") + (synopsis "dbus") + (description + "Package dbus implements bindings to the D-Bus message bus system. +") + (license license:bsd-2))) + +(define-public go-github-com-opencontainers-runc-1.0.0-rc93 + (package + (name "go-github-com-opencontainers-runc") + (version "1.0.0-rc93") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/runc") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "008d5wkznic80n5q1vwx727qn5ifalc7cydq68hc1gk9wrhna4v4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/runc")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" + ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68) + ("go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b" + ,go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b) + ("go-github-com-willf-bitset-1.1.11" + ,go-github-com-willf-bitset-1.1.11) + ("go-github-com-vishvananda-netlink-1.1.0" + ,go-github-com-vishvananda-netlink-1.1.0) + ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) + ("go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635" + ,go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635) + ("go-github-com-sirupsen-logrus-1.7.0" + ,go-github-com-sirupsen-logrus-1.7.0) + ("go-github-com-seccomp-libseccomp-golang-0.9.1" + ,go-github-com-seccomp-libseccomp-golang-0.9.1) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-selinux-1.8.0" + ,go-github-com-opencontainers-selinux-1.8.0) + ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" + ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) + ("go-github-com-mrunalp-fileutils-0.5.0" + ,go-github-com-mrunalp-fileutils-0.5.0) + ("go-github-com-moby-sys-mountinfo-0.4.0" + ,go-github-com-moby-sys-mountinfo-0.4.0) + ("go-github-com-golang-protobuf-1.4.3" + ,go-github-com-golang-protobuf-1.4.3) + ("go-github-com-godbus-dbus-v5-5.0.3" + ,go-github-com-godbus-dbus-v5-5.0.3) + ("go-github-com-docker-go-units-0.4.0" + ,go-github-com-docker-go-units-0.4.0) + ("go-github-com-cyphar-filepath-securejoin-0.2.2" + ,go-github-com-cyphar-filepath-securejoin-0.2.2) + ("go-github-com-coreos-go-systemd-v22-22.1.0" + ,go-github-com-coreos-go-systemd-v22-22.1.0) + ("go-github-com-containerd-console-1.0.1" + ,go-github-com-containerd-console-1.0.1) + ("go-github-com-cilium-ebpf-0.2.0" ,go-github-com-cilium-ebpf-0.2.0) + ("go-github-com-checkpoint-restore-go-criu-v4-4.1.0" + ,go-github-com-checkpoint-restore-go-criu-v4-4.1.0))) + (home-page "https://github.com/opencontainers/runc") + (synopsis "runc") + (description + "@code{runc} is a CLI tool for spawning and running containers according to the OCI specification.") + (license license:asl2.0))) + +(define-public go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d + (package + (name "go-github-com-opencontainers-runtime-spec") + (version "1.0.3-0.20200929063507-e6143ca7d51d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/runtime-spec") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "06yk9kjif5mgi46d0hcgqcikdcplf3yflqbj8h6ljxshp6jzc49w")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) + (home-page "https://github.com/opencontainers/runtime-spec") + (synopsis "Open Container Initiative Runtime Specification") + (description + "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") + (license license:asl2.0))) + +(define-public go-github-com-willf-bitset-1.1.11 + (package + (name "go-github-com-willf-bitset") + (version "1.1.11") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/bits-and-blooms/bitset") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1v7wnikdxiyhwdxnsj2wcrsrsi1kb2ssmarvbrda90vmxzafjl7d")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/willf/bitset")) + (home-page "https://github.com/willf/bitset") + (synopsis "bitset") + (description + "Package bitset implements bitsets, a mapping +between non-negative integers and boolean values. It should be more +efficient than map[uint] bool. +") + (license license:bsd-3))) + +(define-public go-github-com-opencontainers-selinux-1.8.0 + (package + (name "go-github-com-opencontainers-selinux") + (version "1.8.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/selinux") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "08aakiva619hk4lgfvyi6kpjgw7hfirs0jlc2jdgzcv7p0gfhbmx")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/selinux")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777" + ,go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777) + ("go-github-com-willf-bitset-1.1.11" + ,go-github-com-willf-bitset-1.1.11) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) + (home-page "https://github.com/opencontainers/selinux") + (synopsis "selinux") + (description "Common SELinux package used across the container ecosystem.") + (license license:asl2.0))) + +(define-public go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.14 + (package + (name "go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client") + (version "0.0.14") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes-sigs/apiserver-network-proxy") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0px41x5apgcssmwmx75cwm000s8b8pgd84dxn56maxx223dzz9vm")))) + (build-system go-build-system) + (arguments + '(#:import-path + "sigs.k8s.io/apiserver-network-proxy/konnectivity-client")) + (propagated-inputs + `(("go-k8s-io-klog-v2-2.0.0" ,go-k8s-io-klog-v2-2.0.0) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-github-com-golang-protobuf-1.4.0" + ,go-github-com-golang-protobuf-1.4.0))) + (home-page + "https://sigs.k8s.io/apiserver-network-proxy/konnectivity-client") + (synopsis #f) + (description #f) + (license license:asl2.0))) + +(define-public go-k8s-io-apiserver-0.20.1 + (package + (name "go-k8s-io-apiserver") + (version "0.20.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes/apiserver") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03k8kjisscj59i410kk2bz0qfpxa2d2vbwxiwyn93k7a2avbn7cs")))) + (build-system go-build-system) + (arguments '(#:import-path "k8s.io/apiserver")) + (propagated-inputs + `(("go-k8s-io-component-base-0.20.1" ,go-k8s-io-component-base-0.20.1) + ("go-k8s-io-client-go-0.20.1" ,go-k8s-io-client-go-0.20.1) + ("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) + ("go-k8s-io-api-0.20.1" ,go-k8s-io-api-0.20.1) + ("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) + ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.2" + ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.2) + ("go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.14" + ,go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.14) + ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" + ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) + ("go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd" + ,go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd) + ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) + ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) + ("go-gopkg-in-square-go-jose-v2-2.2.2" + ,go-gopkg-in-square-go-jose-v2-2.2.2) + ("go-gopkg-in-natefinch-lumberjack-v2-2.0.0" + ,go-gopkg-in-natefinch-lumberjack-v2-2.0.0) + ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) + ("go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a" + ,go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a) + ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" + ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) + ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" + ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) + ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" + ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) + ("go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0" + ,go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0) + ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) + ("go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489" + ,go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489) + ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) + ("go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5" + ,go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) + ("go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021" + ,go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822" + ,go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822) + ("go-github-com-mailru-easyjson-0.7.0" + ,go-github-com-mailru-easyjson-0.7.0) + ("go-github-com-hashicorp-golang-lru-0.5.1" + ,go-github-com-hashicorp-golang-lru-0.5.1) + ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" + ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) + ("go-github-com-gorilla-websocket-1.4.2" + ,go-github-com-gorilla-websocket-1.4.2) + ("go-github-com-googleapis-gnostic-0.4.1" + ,go-github-com-googleapis-gnostic-0.4.1) + ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) + ("go-github-com-google-gofuzz-1.1.0" + ,go-github-com-google-gofuzz-1.1.0) + ("go-github-com-google-go-cmp-0.5.2" + ,go-github-com-google-go-cmp-0.5.2) + ("go-github-com-gogo-protobuf-1.3.1" + ,go-github-com-gogo-protobuf-1.3.1) + ("go-github-com-go-openapi-spec-0.19.3" + ,go-github-com-go-openapi-spec-0.19.3) + ("go-github-com-evanphx-json-patch-4.9.0+incompatible" + ,go-github-com-evanphx-json-patch-4.9.0+incompatible) + ("go-github-com-emicklei-go-restful-2.9.5+incompatible" + ,go-github-com-emicklei-go-restful-2.9.5+incompatible) + ("go-github-com-dustin-go-humanize-1.0.0" + ,go-github-com-dustin-go-humanize-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1) + ("go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f" + ,go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f) + ("go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e" + ,go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e) + ("go-github-com-coreos-go-semver-0.3.0" + ,go-github-com-coreos-go-semver-0.3.0) + ("go-github-com-coreos-go-oidc-2.1.0+incompatible" + ,go-github-com-coreos-go-oidc-2.1.0+incompatible))) + (home-page "https://k8s.io/apiserver") + (synopsis "apiserver") + (description + "Generic library for building a Kubernetes aggregated API server.") + (license license:asl2.0))) + +(define-public go-k8s-io-api-0.20.1 + (package + (name "go-k8s-io-api") + (version "0.20.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes/api") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "051nl7g66k0jkc9rmfbvwdsmqkn36nq71kvnfym3lhnjcgg53k0l")))) + (build-system go-build-system) + (arguments '(#:import-path "k8s.io/api")) + (propagated-inputs + `(("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-gogo-protobuf-1.3.1" + ,go-github-com-gogo-protobuf-1.3.1))) + (home-page "https://k8s.io/api") + (synopsis "api") + (description + "Schema of the external API types that are served by the Kubernetes API server.") + (license license:asl2.0))) + +(define-public go-k8s-io-apimachinery-0.20.1 + (package + (name "go-k8s-io-apimachinery") + (version "0.20.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes/apimachinery") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "15qc12lbzpd4lgajy0rv24b3ky4hhg5y1l37qxdfiakhz91didfw")))) + (build-system go-build-system) + (arguments '(#:import-path "k8s.io/apimachinery")) + (propagated-inputs + `(("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) + ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.2" + ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.2) + ("go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd" + ,go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd) + ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) + ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) + ("go-gopkg-in-inf-v0-0.9.1" ,go-gopkg-in-inf-v0-0.9.1) + ("go-google-golang-org-protobuf-1.25.0" + ,go-google-golang-org-protobuf-1.25.0) + ("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" + ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) + ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) + ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" + ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) + ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" + ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-onsi-gomega-1.7.0" ,go-github-com-onsi-gomega-1.7.0) + ("go-github-com-onsi-ginkgo-1.11.0" ,go-github-com-onsi-ginkgo-1.11.0) + ("go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f" + ,go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f) + ("go-github-com-modern-go-reflect2-1.0.1" + ,go-github-com-modern-go-reflect2-1.0.1) + ("go-github-com-json-iterator-go-1.1.10" + ,go-github-com-json-iterator-go-1.1.10) + ("go-github-com-hashicorp-golang-lru-0.5.1" + ,go-github-com-hashicorp-golang-lru-0.5.1) + ("go-github-com-googleapis-gnostic-0.4.1" + ,go-github-com-googleapis-gnostic-0.4.1) + ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) + ("go-github-com-google-gofuzz-1.1.0" + ,go-github-com-google-gofuzz-1.1.0) + ("go-github-com-google-go-cmp-0.5.2" + ,go-github-com-google-go-cmp-0.5.2) + ("go-github-com-golang-protobuf-1.4.3" + ,go-github-com-golang-protobuf-1.4.3) + ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" + ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) + ("go-github-com-gogo-protobuf-1.3.1" + ,go-github-com-gogo-protobuf-1.3.1) + ("go-github-com-fsnotify-fsnotify-1.4.9" + ,go-github-com-fsnotify-fsnotify-1.4.9) + ("go-github-com-evanphx-json-patch-4.9.0+incompatible" + ,go-github-com-evanphx-json-patch-4.9.0+incompatible) + ("go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153" + ,go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153) + ("go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96" + ,go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://k8s.io/apimachinery") + (synopsis "apimachinery") + (description + "Scheme, typing, encoding, decoding, and conversion packages for Kubernetes and Kubernetes-like API objects.") + (license license:asl2.0))) + +(define-public go-k8s-io-client-go-0.20.1 + (package + (name "go-k8s-io-client-go") + (version "0.20.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes/client-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "02jrzwwcrdlya91fga2wvf8dsl1yka3kky194dm6l9pmd754qwzs")))) + (build-system go-build-system) + (arguments '(#:import-path "k8s.io/client-go")) + (propagated-inputs + `(("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) + ("go-k8s-io-api-0.20.1" ,go-k8s-io-api-0.20.1) + ("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) + ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" + ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) + ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) + ("go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e" + ,go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e) + ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" + ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) + ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" + ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) + ("go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0" + ,go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) + ("go-github-com-peterbourgon-diskv-2.0.1+incompatible" + ,go-github-com-peterbourgon-diskv-2.0.1+incompatible) + ("go-github-com-imdario-mergo-0.3.5" + ,go-github-com-imdario-mergo-0.3.5) + ("go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7" + ,go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7) + ("go-github-com-googleapis-gnostic-0.4.1" + ,go-github-com-googleapis-gnostic-0.4.1) + ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) + ("go-github-com-google-gofuzz-1.1.0" + ,go-github-com-google-gofuzz-1.1.0) + ("go-github-com-google-go-cmp-0.5.2" + ,go-github-com-google-go-cmp-0.5.2) + ("go-github-com-golang-protobuf-1.4.3" + ,go-github-com-golang-protobuf-1.4.3) + ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" + ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) + ("go-github-com-gogo-protobuf-1.3.1" + ,go-github-com-gogo-protobuf-1.3.1) + ("go-github-com-evanphx-json-patch-4.9.0+incompatible" + ,go-github-com-evanphx-json-patch-4.9.0+incompatible) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1) + ("go-github-com-azure-go-autorest-autorest-adal-0.9.5" + ,go-github-com-azure-go-autorest-autorest-adal-0.9.5) + ("go-github-com-azure-go-autorest-autorest-0.11.1" + ,go-github-com-azure-go-autorest-autorest-0.11.1) + ("go-cloud-google-com-go-0.54.0" ,go-cloud-google-com-go-0.54.0))) + (home-page "https://k8s.io/client-go") + (synopsis "client-go") + (description + "Go clients for talking to a @url{http://kubernetes.io/,kubernetes} cluster.") + (license license:asl2.0))) + +(define-public go-k8s-io-component-base-0.20.1 + (package + (name "go-k8s-io-component-base") + (version "0.20.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes/component-base") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "05x3mv1lxh7s6ckfh1s9wwmb0n9rg14a9637ai9bhxdfps47sz0v")))) + (build-system go-build-system) + (arguments '(#:import-path "k8s.io/component-base")) + (propagated-inputs + `(("go-k8s-io-client-go-0.20.1" ,go-k8s-io-client-go-0.20.1) + ("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) + ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" + ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) + ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) + ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) + ("go-go-uber-org-multierr-1.1.0" ,go-go-uber-org-multierr-1.1.0) + ("go-go-uber-org-atomic-1.4.0" ,go-go-uber-org-atomic-1.4.0) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) + ("go-github-com-sirupsen-logrus-1.6.0" + ,go-github-com-sirupsen-logrus-1.6.0) + ("go-github-com-prometheus-procfs-0.2.0" + ,go-github-com-prometheus-procfs-0.2.0) + ("go-github-com-prometheus-common-0.10.0" + ,go-github-com-prometheus-common-0.10.0) + ("go-github-com-prometheus-client-model-0.2.0" + ,go-github-com-prometheus-client-model-0.2.0) + ("go-github-com-prometheus-client-golang-1.7.1" + ,go-github-com-prometheus-client-golang-1.7.1) + ("go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd" + ,go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd) + ("go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369" + ,go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369) + ("go-github-com-google-go-cmp-0.5.2" + ,go-github-com-google-go-cmp-0.5.2) + ("go-github-com-go-logr-logr-0.2.0" ,go-github-com-go-logr-logr-0.2.0) + ("go-github-com-blang-semver-3.5.1+incompatible" + ,go-github-com-blang-semver-3.5.1+incompatible))) + (home-page "https://k8s.io/component-base") + (synopsis "component-base") + (description + "Implement KEP 32: @url{https://github.com/kubernetes/enhancements/blob/master/keps/sig-cluster-lifecycle/wgs/783-component-base/README.md,https://github.com/kubernetes/enhancements/blob/master/keps/sig-cluster-lifecycle/wgs/783-component-base/README.md}") + (license license:asl2.0))) + +(define-public go-k8s-io-cri-api-0.20.1 + (package + (name "go-k8s-io-cri-api") + (version "0.20.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes/cri-api") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1r98d0kv42sijdg3404xx2g5jj0zixvfagkky2zla12p68ajm4xr")))) + (build-system go-build-system) + (arguments '(#:import-path "k8s.io/cri-api")) + (propagated-inputs + `(("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" + ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) + ("go-google-golang-org-protobuf-1.25.0" + ,go-google-golang-org-protobuf-1.25.0) + ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) + ("go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a" + ,go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a) + ("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" + ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) + ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) + ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" + ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) + ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" + ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-kr-pretty-0.2.0" ,go-github-com-kr-pretty-0.2.0) + ("go-github-com-google-go-cmp-0.5.2" + ,go-github-com-google-go-cmp-0.5.2) + ("go-github-com-golang-protobuf-1.4.3" + ,go-github-com-golang-protobuf-1.4.3) + ("go-github-com-gogo-protobuf-1.3.1" + ,go-github-com-gogo-protobuf-1.3.1) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://k8s.io/cri-api") + (synopsis "Purpose") + (description + "This repository contains the definitions for the Container Runtime Interface (CRI). +CRI is a plugin interface which enables kubelet to use a wide variety of container runtimes, +without the need to recompile. CRI consists of a protocol buffers and gRPC API.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-containerd-1.5.0-beta.3 + (package + (name "go-github-com-containerd-containerd") + (version "1.5.0-beta.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/containerd") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0fbd4llrwg5hi5adfkmfndma5y129yl9wwz3c3fjn7cfhc64hlqf")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/containerd")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) + ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) + ("go-github-com-golang-protobuf-1.3.5" + ,go-github-com-golang-protobuf-1.3.5) + ("go-github-com-gogo-googleapis-1.3.2" + ,go-github-com-gogo-googleapis-1.3.2) + ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" + ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) + ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) + ("go-k8s-io-cri-api-0.20.1" ,go-k8s-io-cri-api-0.20.1) + ("go-k8s-io-component-base-0.20.1" ,go-k8s-io-component-base-0.20.1) + ("go-k8s-io-client-go-0.20.1" ,go-k8s-io-client-go-0.20.1) + ("go-k8s-io-apiserver-0.20.1" ,go-k8s-io-apiserver-0.20.1) + ("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) + ("go-k8s-io-api-0.20.1" ,go-k8s-io-api-0.20.1) + ("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) + ("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" + ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) + ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" + ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) + ("go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b" + ,go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b) + ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) + ("go-github-com-tchap-go-patricia-2.2.6+incompatible" + ,go-github-com-tchap-go-patricia-2.2.6+incompatible) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-sirupsen-logrus-1.7.0" + ,go-github-com-sirupsen-logrus-1.7.0) + ("go-github-com-prometheus-client-golang-1.7.1" + ,go-github-com-prometheus-client-golang-1.7.1) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-selinux-1.8.0" + ,go-github-com-opencontainers-selinux-1.8.0) + ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" + ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) + ("go-github-com-opencontainers-runc-1.0.0-rc93" + ,go-github-com-opencontainers-runc-1.0.0-rc93) + ("go-github-com-opencontainers-image-spec-1.0.1" + ,go-github-com-opencontainers-image-spec-1.0.1) + ("go-github-com-opencontainers-go-digest-1.0.0" + ,go-github-com-opencontainers-go-digest-1.0.0) + ("go-github-com-moby-sys-symlink-0.1.0" + ,go-github-com-moby-sys-symlink-0.1.0) + ("go-github-com-moby-sys-mountinfo-0.4.0" + ,go-github-com-moby-sys-mountinfo-0.4.0) + ("go-github-com-klauspost-compress-1.11.3" + ,go-github-com-klauspost-compress-1.11.3) + ("go-github-com-imdario-mergo-0.3.11" + ,go-github-com-imdario-mergo-0.3.11) + ("go-github-com-hashicorp-go-multierror-1.0.0" + ,go-github-com-hashicorp-go-multierror-1.0.0) + ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" + ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) + ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) + ("go-github-com-google-go-cmp-0.5.4" + ,go-github-com-google-go-cmp-0.5.4) + ("go-github-com-gogo-protobuf-1.3.2" + ,go-github-com-gogo-protobuf-1.3.2) + ("go-github-com-fsnotify-fsnotify-1.4.9" + ,go-github-com-fsnotify-fsnotify-1.4.9) + ("go-github-com-emicklei-go-restful-2.9.5+incompatible" + ,go-github-com-emicklei-go-restful-2.9.5+incompatible) + ("go-github-com-docker-go-units-0.4.0" + ,go-github-com-docker-go-units-0.4.0) + ("go-github-com-docker-go-metrics-0.0.1" + ,go-github-com-docker-go-metrics-0.0.1) + ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" + ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1) + ("go-github-com-coreos-go-systemd-v22-22.1.0" + ,go-github-com-coreos-go-systemd-v22-22.1.0) + ("go-github-com-containernetworking-plugins-0.8.6" + ,go-github-com-containernetworking-plugins-0.8.6) + ("go-github-com-containerd-zfs-0.0.0-20210301145711-11e8f1707f62" + ,go-github-com-containerd-zfs-0.0.0-20210301145711-11e8f1707f62) + ("go-github-com-containerd-typeurl-1.0.1" + ,go-github-com-containerd-typeurl-1.0.1) + ("go-github-com-containerd-ttrpc-1.0.2" + ,go-github-com-containerd-ttrpc-1.0.2) + ("go-github-com-containerd-nri-0.0.0-20201007170849-eb1350a75164" + ,go-github-com-containerd-nri-0.0.0-20201007170849-eb1350a75164) + ("go-github-com-containerd-imgcrypt-1.0.4-0.20210301171431-0ae5c75f59ba" + ,go-github-com-containerd-imgcrypt-1.0.4-0.20210301171431-0ae5c75f59ba) + ("go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328" + ,go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328) + ("go-github-com-containerd-go-cni-1.0.1" + ,go-github-com-containerd-go-cni-1.0.1) + ("go-github-com-containerd-fifo-0.0.0-20201026212402-0724c46b320c" + ,go-github-com-containerd-fifo-0.0.0-20201026212402-0724c46b320c) + ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" + ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) + ("go-github-com-containerd-console-1.0.1" + ,go-github-com-containerd-console-1.0.1) + ("go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68" + ,go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68) + ("go-github-com-containerd-btrfs-0.0.0-20201111183144-404b9149801e" + ,go-github-com-containerd-btrfs-0.0.0-20201111183144-404b9149801e) + ("go-github-com-containerd-aufs-0.0.0-20201003224125-76a6863f2989" + ,go-github-com-containerd-aufs-0.0.0-20201003224125-76a6863f2989) + ("go-github-com-microsoft-hcsshim-test-0.0.0-20210227013316-43a75bb4edd3" + ,go-github-com-microsoft-hcsshim-test-0.0.0-20210227013316-43a75bb4edd3) + ("go-github-com-microsoft-hcsshim-0.8.15" + ,go-github-com-microsoft-hcsshim-0.8.15) + ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" + ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3) + ("go-github-com-burntsushi-toml-0.3.1" + ,go-github-com-burntsushi-toml-0.3.1))) + (home-page "https://github.com/containerd/containerd") + (synopsis "Now Recruiting") + (description + "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") + (license license:asl2.0))) + +(define-public go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898 + (package + (name "go-bazil-org-fuse") + (version "0.0.0-20160811212531-371fbbdaa898") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/bazil/fuse") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1x5p301py7mcxgwklfm6pqqkzssln0nfzllng49pnk60m03ilp4w")))) + (build-system go-build-system) + (arguments '(#:import-path "bazil.org/fuse")) + (home-page "https://bazil.org/fuse") + (synopsis "bazil.org/fuse -- Filesystems in Go") + (description + "Package fuse enables writing FUSE file systems on Linux and FreeBSD. +") + (license #f))) + +(define-public go-github-com-sirupsen-logrus-1.7.0 + (package + (name "go-github-com-sirupsen-logrus") + (version "1.7.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sirupsen/logrus") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1a59pw7zimvm8k423iq9l4f4qjj1ia1xc6pkmhwl2mxc46y2n442")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/sirupsen/logrus")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037" + ,go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037) + ("go-github-com-stretchr-testify-1.2.2" + ,go-github-com-stretchr-testify-1.2.2) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/sirupsen/logrus") + (synopsis "Logrus") + (description + "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. +") + (license license:expat))) + +(define-public go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee + (package + (name "go-github-com-spf13-cobra") + (version "0.0.2-0.20171109065643-2da4a54c5cee") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/spf13/cobra") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18qbrp774fx6dyibjcy9snld705gslq6z2sql1biyjahxkm1vpfy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/spf13/cobra")) + (home-page "https://github.com/spf13/cobra") + (synopsis "Table of Contents") + (description + "Package cobra is a commander providing a simple interface to create powerful modern CLI interfaces. +In addition to providing an interface, Cobra simultaneously provides a controller to organize your application code. +") + (license license:asl2.0))) + +(define-public go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95 + (package + (name "go-github-com-spf13-pflag") + (version "1.0.1-0.20171106142849-4c012f6dcd95") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/spf13/pflag") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0plmm67lkm25ir0lczwh7hmanyilrs1vxmbp8a0dyr282ji1dqm5")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/spf13/pflag")) + (home-page "https://github.com/spf13/pflag") + (synopsis "Description") + (description + "Package pflag is a drop-in replacement for Go's flag package, implementing +POSIX/GNU-style --flags. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20201201145000-ef89a241ccb3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0a8myxx2mvdr77a003gpy5jmdzbxbnrf5zppmpl4za4sspxlmwif")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e + (package + (name "go-github-com-containerd-continuity") + (version "0.0.0-20210208174643-50096c924a4e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/continuity") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1drmxbb2l4z12b19dq3vvh1ss7b4z8fq1n5g6c8ln13mjgz6cq48")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/continuity")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3" + ,go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3) + ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" + ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) + ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" + ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) + ("go-github-com-stretchr-testify-1.4.0" + ,go-github-com-stretchr-testify-1.4.0) + ("go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95" + ,go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95) + ("go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee" + ,go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee) + ("go-github-com-sirupsen-logrus-1.7.0" + ,go-github-com-sirupsen-logrus-1.7.0) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-go-digest-1.0.0" + ,go-github-com-opencontainers-go-digest-1.0.0) + ("go-github-com-inconshreveable-mousetrap-1.0.0" + ,go-github-com-inconshreveable-mousetrap-1.0.0) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0) + ("go-github-com-dustin-go-humanize-1.0.0" + ,go-github-com-dustin-go-humanize-1.0.0) + ("go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898" + ,go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898))) + (home-page "https://github.com/containerd/continuity") + (synopsis "continuity") + (description + "This package provides a transport-agnostic, filesystem metadata manifest system") + (license license:asl2.0))) + +(define-public go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible + (package + (name "go-github-com-mistifyio-go-zfs") + (version "2.1.2-0.20190413222219-f784269be439+incompatible") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mistifyio/go-zfs") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0x6ncjaqjm06c615kbwkqbd5wcdg9nmrbl7wm4w185s6kq6l8fpw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mistifyio/go-zfs")) + (home-page "https://github.com/mistifyio/go-zfs") + (synopsis "Go Wrapper for ZFS") + (description + "Package zfs provides wrappers around the ZFS command line tools. +") + (license license:asl2.0))) + +(define-public go-github-com-containerd-zfs-1.0.0 + (package + (name "go-github-com-containerd-zfs") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/zfs") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "10shqmcdxlxxi90kwgs5cljz12589yz5cm78aimv9m4cgwiv3wl3")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/zfs")) + (propagated-inputs + `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible" + ,go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible) + ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" + ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) + ("go-github-com-containerd-containerd-1.5.0-beta.3" + ,go-github-com-containerd-containerd-1.5.0-beta.3))) + (home-page "https://github.com/containerd/zfs") + (synopsis "ZFS snapshotter plugin") + (description "ZFS snapshotter plugin for containerd.") + (license license:asl2.0))) + +(define-public go-github-com-microsoft-go-winio-0.4.11 + (package + (name "go-github-com-microsoft-go-winio") + (version "0.4.11") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/microsoft/go-winio") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "14y1gryr3pb3zy09v2g8dh89m363rfd9sch0wgbabh531hfx72vn")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/Microsoft/go-winio")) + (home-page "https://github.com/Microsoft/go-winio") + (synopsis "go-winio") + (description + "This repository contains utilities for efficiently performing Win32 IO operations in +Go. Currently, this is focused on accessing named pipes and other file handles, and +for using named pipes as a net transport.") + (license license:expat))) + +(define-public go-github-com-microsoft-hcsshim-0.8.6 + (package + (name "go-github-com-microsoft-hcsshim") + (version "0.8.6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/microsoft/hcsshim") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "05arx8y4b6rvhjcnwizhc8svzab3ld0njkgj8vijgs27az84z6pw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/Microsoft/hcsshim")) + (home-page "https://github.com/Microsoft/hcsshim") + (synopsis "hcsshim") + (description + "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") + (license license:expat))) + +(define-public go-github-com-alexflint-go-filemutex-0.0.0-20171022225611-72bdc8eae2ae + (package + (name "go-github-com-alexflint-go-filemutex") + (version "0.0.0-20171022225611-72bdc8eae2ae") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/alexflint/go-filemutex") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "082y6y9zv40q3kaqvsv6fyaw2fc42j0sn9z0dl9rbiz4szixj3c4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/alexflint/go-filemutex")) + (home-page "https://github.com/alexflint/go-filemutex") + (synopsis "FileMutex") + (description + "FileMutex is similar to @code{sync.RWMutex}, but also synchronizes across processes. +On Linux, OSX, and other POSIX systems it uses the flock system call. On windows +it uses the LockFileEx and UnlockFileEx system calls.") + (license license:expat))) + +(define-public go-github-com-buger-jsonparser-0.0.0-20180808090653-f4dd9f5a6b44 + (package + (name "go-github-com-buger-jsonparser") + (version "0.0.0-20180808090653-f4dd9f5a6b44") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/buger/jsonparser") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12qa2n33s7yz88ywpr3k9kg3b4gm6rqgnv28iyikyxw8h5jascz5")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/buger/jsonparser")) + (home-page "https://github.com/buger/jsonparser") + (synopsis + "Alternative JSON parser for Go (10x times faster standard library)") + (description + "It does not require you to know the structure of the payload (eg. create structs), and allows accessing fields by providing the path to them. It is up to @strong{10 times faster} than standard @code{encoding/json} package (depending on payload size and usage), @strong{allocates no memory}. See benchmarks below.") + (license license:expat))) + +(define-public go-github-com-containernetworking-cni-0.8.1 + (package + (name "go-github-com-containernetworking-cni") + (version "0.8.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containernetworking/cni") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ydzsiq6kfwjghf5dd4ld2rv3cxgbjq6c1523jxmib1phwf0s75z")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containernetworking/cni")) + (home-page "https://github.com/containernetworking/cni") + (synopsis "CNI - the Container Network Interface") + (description + "CNI (), a @url{https://cncf.io,Cloud Native Computing Foundation} project, consists of a specification and libraries for writing plugins to configure network interfaces in Linux containers, along with a number of supported plugins. +CNI concerns itself only with network connectivity of containers and removing allocated resources when the container is deleted. +Because of this focus, CNI has a wide range of support and the specification is simple to implement.") + (license license:asl2.0))) + +(define-public go-github-com-coreos-go-iptables-0.5.0 + (package + (name "go-github-com-coreos-go-iptables") + (version "0.5.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/coreos/go-iptables") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0syxjad9b3d19sjy7cy7zjpx5bx60yvbhidz8r9cdv43iqadxmp7")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/coreos/go-iptables")) + (home-page "https://github.com/coreos/go-iptables") + (synopsis "go-iptables") + (description "Go bindings for iptables utility.") + (license license:asl2.0))) + +(define-public go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c + (package + (name "go-github-com-d2g-dhcp4") + (version "0.0.0-20170904100407-a1d1b6c41b1c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/d2g/dhcp4") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "191hzw6yqzkm042h6miyycq3g0zrhqjhhpl27f8vhwzp4wanasiz")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/d2g/dhcp4")) + (home-page "https://github.com/d2g/dhcp4") + (synopsis "DHCP4 - A DHCP library written in Go.") + (description + "Warning: This library is still being developed. Function calls will change.") + (license license:bsd-3))) + +(define-public go-github-com-d2g-dhcp4client-1.0.0 + (package + (name "go-github-com-d2g-dhcp4client") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/d2g/dhcp4client") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1n4qrn7xsgvnshmddq56hr8g2si5vfmxi0wnp0w71lmdfsxvvx0q")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/d2g/dhcp4client")) + (home-page "https://github.com/d2g/dhcp4client") + (synopsis "dhcp4client") + (description "DHCP Client") + (license license:mpl2.0))) + +(define-public go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5 + (package + (name "go-github-com-d2g-dhcp4server") + (version "0.0.0-20181031114812-7d4a0a7f59a5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/d2g/dhcp4server") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03ibq32flr74pxfly1yca9qicb6f15xgl159jjg3svgnzfjpblwl")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/d2g/dhcp4server")) + (home-page "https://github.com/d2g/dhcp4server") + (synopsis "dhcp4server") + (description "DHCP Server") + (license license:mpl2.0))) + +(define-public go-github-com-d2g-hardwareaddr-0.0.0-20190221164911-e7d9fbe030e4 + (package + (name "go-github-com-d2g-hardwareaddr") + (version "0.0.0-20190221164911-e7d9fbe030e4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/d2g/hardwareaddr") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "09nm5py9xbb9klwhzqkf6786i3b59ynba78xkrv9jx4ari7ibh8q")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/d2g/hardwareaddr")) + (home-page "https://github.com/d2g/hardwareaddr") + (synopsis "hardwareaddr") + (description "Generate Hardware Addresses") + (license license:mpl2.0))) + +(define-public go-github-com-godbus-dbus-0.0.0-20180201030542-885f9cc04c9c + (package + (name "go-github-com-godbus-dbus") + (version "0.0.0-20180201030542-885f9cc04c9c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/godbus/dbus") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wjpaj4vr5lvpnwc5faf3qizd7zd2v9yq0fm0558wap1hiyqb8x8")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/godbus/dbus")) + (home-page "https://github.com/godbus/dbus") + (synopsis "dbus") + (description + "Package dbus implements bindings to the D-Bus message bus system. +") + (license license:bsd-2))) + +(define-public go-github-com-j-keck-arping-0.0.0-20160618110441-2cf9dc699c56 + (package + (name "go-github-com-j-keck-arping") + (version "0.0.0-20160618110441-2cf9dc699c56") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/j-keck/arping") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1bid8mpx3j4546ni0a6q5xyz7hb854g95qnxqmg5jzs9vrcird3c")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/j-keck/arping")) + (home-page "https://github.com/j-keck/arping") + (synopsis "arping") + (description + "Package arping is a native go library to ping a host per arp datagram, or query a host mac address +") + (license license:expat))) + +(define-public go-github-com-mattn-go-shellwords-1.0.3 + (package + (name "go-github-com-mattn-go-shellwords") + (version "1.0.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mattn/go-shellwords") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1pg7pl25wvpl2dbpyrv9p1r7prnqimxlf6136vn0dfm54j2x4mnr")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mattn/go-shellwords")) + (home-page "https://github.com/mattn/go-shellwords") + (synopsis "go-shellwords") + (description "Parse line as shell words.") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20190904154756-749cb33beabd + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190904154756-749cb33beabd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0dm3257q3rv2kyn5lmqqim2fqg634v6rhrqq4glvbk4wx4l3v337")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-nxadm-tail-1.4.4 + (package + (name "go-github-com-nxadm-tail") + (version "1.4.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/nxadm/tail") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1czmwqii0fc8v3ar5bwqpfanprkxg19waly405zlvcflzvj53wwc")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/nxadm/tail")) + (propagated-inputs + `(("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" + ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) + ("go-golang-org-x-sys-0.0.0-20190904154756-749cb33beabd" + ,go-golang-org-x-sys-0.0.0-20190904154756-749cb33beabd) + ("go-github-com-fsnotify-fsnotify-1.4.7" + ,go-github-com-fsnotify-fsnotify-1.4.7))) + (home-page "https://github.com/nxadm/tail") + (synopsis "tail functionality in Go") + (description + "nxadm/tail provides a Go library that emulates the features of the BSD `tail` +program. The library comes with full support for truncation/move detection as +it is designed to work with log rotation tools. The library works on all +operating systems supported by Go, including POSIX systems like Linux and +*BSD, and MS Windows. Go 1.9 is the oldest compiler release supported. +") + (license license:expat))) + +(define-public go-github-com-onsi-gomega-1.7.1 + (package + (name "go-github-com-onsi-gomega") + (version "1.7.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/onsi/gomega") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "06p3x0910cdaa64l7d44s728d4j3yhps315dlcvrbjzhljjj7mam")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/onsi/gomega")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.4" ,go-gopkg-in-yaml-v2-2.2.4) + ("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" + ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) + ("go-gopkg-in-fsnotify-v1-1.4.7" ,go-gopkg-in-fsnotify-v1-1.4.7) + ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e" + ,go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e) + ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" + ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) + ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" + ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) + ("go-github-com-onsi-ginkgo-1.6.0" ,go-github-com-onsi-ginkgo-1.6.0) + ("go-github-com-hpcloud-tail-1.0.0" ,go-github-com-hpcloud-tail-1.0.0) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0) + ("go-github-com-fsnotify-fsnotify-1.4.7" + ,go-github-com-fsnotify-fsnotify-1.4.7))) + (home-page "https://github.com/onsi/gomega") + (synopsis ": a BDD Testing Framework for Golang") + (description + "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library. +") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20191120155948-bd437916bb0e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1i8x26frmlin55k69k936zd1rp5sqnq14y5ms4rkxbfzhasdm2rx")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-onsi-ginkgo-1.12.1 + (package + (name "go-github-com-onsi-ginkgo") + (version "1.12.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/onsi/ginkgo") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0xs9724l2b0bwjwrvw5cs3akxaw0n1j5kyxrb1ggfsdjz0zmjcxh")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/onsi/ginkgo")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e" + ,go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e) + ("go-github-com-onsi-gomega-1.7.1" ,go-github-com-onsi-gomega-1.7.1) + ("go-github-com-nxadm-tail-1.4.4" ,go-github-com-nxadm-tail-1.4.4))) + (home-page "https://github.com/onsi/ginkgo") + (synopsis "Ginkgo 2.0 Release Candidate is available!") + (description "Ginkgo is a BDD-style testing framework for Golang +") + (license license:expat))) + +(define-public go-golang-org-x-net-0.0.0-20201006153459-a7d1128ccaa0 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20201006153459-a7d1128ccaa0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1iqqq7s95b2a29bspfxv68qnby8vwjvy9f8gl2262p6f9hhp21d2")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) + ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" + ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) + ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" + ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-github-com-onsi-gomega-1.10.3 + (package + (name "go-github-com-onsi-gomega") + (version "1.10.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/onsi/gomega") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1jvp5wlny86ncsqak5rz70qfn61y3ajc64w0hrj4840zgh90zb06")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/onsi/gomega")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.3.0" ,go-gopkg-in-yaml-v2-2.3.0) + ("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) + ("go-golang-org-x-net-0.0.0-20201006153459-a7d1128ccaa0" + ,go-golang-org-x-net-0.0.0-20201006153459-a7d1128ccaa0) + ("go-github-com-onsi-ginkgo-1.12.1" ,go-github-com-onsi-ginkgo-1.12.1) + ("go-github-com-golang-protobuf-1.4.2" + ,go-github-com-golang-protobuf-1.4.2))) + (home-page "https://github.com/onsi/gomega") + (synopsis ": a BDD Testing Framework for Golang") + (description + "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library. +") + (license license:expat))) + +(define-public go-github-com-safchain-ethtool-0.0.0-20190326074333-42ed695e3de8 + (package + (name "go-github-com-safchain-ethtool") + (version "0.0.0-20190326074333-42ed695e3de8") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/safchain/ethtool") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0n5hkrzc1bh46nidcssx4539kvcmgj501v3kzh2pljpg27509daj")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/safchain/ethtool")) + (home-page "https://github.com/safchain/ethtool") + (synopsis "ethtool go package") + (description + "Package ethtool aims to provide a library giving a simple access to the +Linux SIOCETHTOOL ioctl operations. It can be used to retrieve informations +from a network device like statistics, driver related informations or +even the peer of a VETH interface. +") + (license license:asl2.0))) + +(define-public go-github-com-sirupsen-logrus-1.0.6 + (package + (name "go-github-com-sirupsen-logrus") + (version "1.0.6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sirupsen/logrus") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "029irw2lsbqi944gdrbkwdw0m2794sqni4g21gsnmz142hbzds8c")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/sirupsen/logrus")) + (home-page "https://github.com/sirupsen/logrus") + (synopsis "Logrus") + (description + "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. +") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20200217220822-9197077df867 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200217220822-9197077df867") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1270yyiqzlgrsygp2j0qavh4agm4xjv3ljfpk4wgqgmg4ph1lmx1")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-vishvananda-netns-0.0.0-20200728191858-db3c7e526aae + (package + (name "go-github-com-vishvananda-netns") + (version "0.0.0-20200728191858-db3c7e526aae") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/vishvananda/netns") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1gx41r06by67q5yyyvjpr0cyqqs2pcksfaqxy0s36cx4vpjn5x9r")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/vishvananda/netns")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20200217220822-9197077df867" + ,go-golang-org-x-sys-0.0.0-20200217220822-9197077df867))) + (home-page "https://github.com/vishvananda/netns") + (synopsis "netns - network namespaces in go") + (description + "Package netns allows ultra-simple network namespace handling. NsHandles +can be retrieved and set. Note that the current namespace is thread +local so actions that set and reset namespaces should use LockOSThread +to make sure the namespace doesn't change due to a goroutine switch. +It is best to close NsHandles when you are done with them. This can be +accomplished via a `defer ns.Close()` on the handle. Changing namespaces +requires elevated privileges, so in most cases this code needs to be run +as root. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-sys-0.0.0-20200728102440-3e129f6d46b1 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200728102440-3e129f6d46b1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "02wcaghvpysqijiqsiimk52vma7lx99g5kvdid2r1qsf9hmwgvy2")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-vishvananda-netlink-1.1.1-0.20201029203352-d40f9887b852 + (package + (name "go-github-com-vishvananda-netlink") + (version "1.1.1-0.20201029203352-d40f9887b852") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/vishvananda/netlink") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1aq13npm7vd153vxrk1vhsg36r2g9hrh21cvk422ssrf57qy2fsj")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/vishvananda/netlink")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20200728102440-3e129f6d46b1" + ,go-golang-org-x-sys-0.0.0-20200728102440-3e129f6d46b1) + ("go-github-com-vishvananda-netns-0.0.0-20200728191858-db3c7e526aae" + ,go-github-com-vishvananda-netns-0.0.0-20200728191858-db3c7e526aae))) + (home-page "https://github.com/vishvananda/netlink") + (synopsis "netlink - netlink library for go") + (description + "Package netlink provides a simple library for netlink. Netlink is +the interface a user-space program in linux uses to communicate with +the kernel. It can be used to add and remove interfaces, set up ip +addresses and routes, and confiugre ipsec. Netlink communication +requires elevated privileges, so in most cases this code needs to +be run as root. The low level primitives for netlink are contained +in the nl subpackage. This package attempts to provide a high-level +interface that is loosly modeled on the iproute2 cli. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-sys-0.0.0-20201117170446-d9b008d0a637 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20201117170446-d9b008d0a637") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "06pp1nrhzx6nm6rwwzm0xzf8bs3r1mfsrkclyhlhnr7x5r0a0ppi")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-gopkg-in-airbrake-gobrake-v2-2.0.9 + (package + (name "go-gopkg-in-airbrake-gobrake-v2") + (version "2.0.9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/airbrake/gobrake.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1x06f7n7qlyzqgyz0sdfcidf3w4ldn6zs6qx2mhibggk2z4whcjw")))) + (build-system go-build-system) + (arguments + '(#:import-path + "gopkg.in/airbrake/gobrake.v2" + #:unpack-path + "gopkg.in/airbrake/gobrake.v2")) + (home-page "https://gopkg.in/airbrake/gobrake.v2") + (synopsis "Airbrake Golang Notifier") + (description + "You can use @url{https://github.com/airbrake/glog,glog fork} to send your logs to Airbrake.") + (license license:bsd-3))) + +(define-public go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2 + (package + (name "go-gopkg-in-gemnasium-logrus-airbrake-hook-v2") + (version "2.1.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/gemnasium/logrus-airbrake-hook.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0sbg0dn6cysmf8f2bi209jwl4jnpiwp4rdghnxlzirw3c32ms5y5")))) + (build-system go-build-system) + (arguments + '(#:import-path + "gopkg.in/gemnasium/logrus-airbrake-hook.v2" + #:unpack-path + "gopkg.in/gemnasium/logrus-airbrake-hook.v2")) + (home-page "https://gopkg.in/gemnasium/logrus-airbrake-hook.v2") + (synopsis "Airbrake Hook for Logrus") + (description + "Use this hook to send your errors to @url{https://airbrake.io/,Airbrake}. +This hook is using the @url{https://github.com/airbrake/gobrake,official airbrake go package}, and will hit the api V3. +The hook is synchronous and will send the error for @code{log.Error}, @code{log.Fatal} and @code{log.Panic} levels.") + (license license:expat))) + +(define-public go-github-com-containernetworking-plugins-0.9.1 + (package + (name "go-github-com-containernetworking-plugins") + (version "0.9.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containernetworking/plugins") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "17rafngfa9b0ybs3j4lvjjqdva6jkamhnbb1n0qnv685g0asvqwz")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containernetworking/plugins")) + (propagated-inputs + `(("go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2" + ,go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2) + ("go-gopkg-in-airbrake-gobrake-v2-2.0.9" + ,go-gopkg-in-airbrake-gobrake-v2-2.0.9) + ("go-golang-org-x-sys-0.0.0-20201117170446-d9b008d0a637" + ,go-golang-org-x-sys-0.0.0-20201117170446-d9b008d0a637) + ("go-github-com-vishvananda-netlink-1.1.1-0.20201029203352-d40f9887b852" + ,go-github-com-vishvananda-netlink-1.1.1-0.20201029203352-d40f9887b852) + ("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0) + ("go-github-com-sirupsen-logrus-1.0.6" + ,go-github-com-sirupsen-logrus-1.0.6) + ("go-github-com-safchain-ethtool-0.0.0-20190326074333-42ed695e3de8" + ,go-github-com-safchain-ethtool-0.0.0-20190326074333-42ed695e3de8) + ("go-github-com-onsi-gomega-1.10.3" ,go-github-com-onsi-gomega-1.10.3) + ("go-github-com-onsi-ginkgo-1.12.1" ,go-github-com-onsi-ginkgo-1.12.1) + ("go-github-com-mattn-go-shellwords-1.0.3" + ,go-github-com-mattn-go-shellwords-1.0.3) + ("go-github-com-j-keck-arping-0.0.0-20160618110441-2cf9dc699c56" + ,go-github-com-j-keck-arping-0.0.0-20160618110441-2cf9dc699c56) + ("go-github-com-godbus-dbus-0.0.0-20180201030542-885f9cc04c9c" + ,go-github-com-godbus-dbus-0.0.0-20180201030542-885f9cc04c9c) + ("go-github-com-d2g-hardwareaddr-0.0.0-20190221164911-e7d9fbe030e4" + ,go-github-com-d2g-hardwareaddr-0.0.0-20190221164911-e7d9fbe030e4) + ("go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5" + ,go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5) + ("go-github-com-d2g-dhcp4client-1.0.0" + ,go-github-com-d2g-dhcp4client-1.0.0) + ("go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c" + ,go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c) + ("go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7" + ,go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7) + ("go-github-com-coreos-go-iptables-0.5.0" + ,go-github-com-coreos-go-iptables-0.5.0) + ("go-github-com-containernetworking-cni-0.8.1" + ,go-github-com-containernetworking-cni-0.8.1) + ("go-github-com-buger-jsonparser-0.0.0-20180808090653-f4dd9f5a6b44" + ,go-github-com-buger-jsonparser-0.0.0-20180808090653-f4dd9f5a6b44) + ("go-github-com-alexflint-go-filemutex-0.0.0-20171022225611-72bdc8eae2ae" + ,go-github-com-alexflint-go-filemutex-0.0.0-20171022225611-72bdc8eae2ae) + ("go-github-com-microsoft-hcsshim-0.8.6" + ,go-github-com-microsoft-hcsshim-0.8.6) + ("go-github-com-microsoft-go-winio-0.4.11" + ,go-github-com-microsoft-go-winio-0.4.11))) + (home-page "https://github.com/containernetworking/plugins") + (synopsis "Plugins") + (description + "Some CNI network plugins, maintained by the containernetworking team. For more information, see the @url{https://www.cni.dev,CNI website}.") + (license license:asl2.0))) + +(define-public go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c + (package + (name "go-github-com-docker-go-events") + (version "0.0.0-20190806004212-e31b211e4f1c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/docker/go-events") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "09gm4z43g23isbklabnsnfb87bwf8kjdgvvyi3vfjq2bqdjdg7cl")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/docker/go-events")) + (home-page "https://github.com/docker/go-events") + (synopsis "Docker Events Package") + (description + "The Docker @code{events} package implements a composable event distribution package +for Go.") + (license license:asl2.0))) + +(define-public go-github-com-prometheus-common-0.6.0 + (package + (name "go-github-com-prometheus-common") + (version "0.6.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/common") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1q16br348117ffycxdwsldb0i39p34miclfa8z93k6vjwnrqbh2l")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/common")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1) + ("go-gopkg-in-alecthomas-kingpin-v2-2.2.6" + ,go-gopkg-in-alecthomas-kingpin-v2-2.2.6) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980" + ,go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980) + ("go-github-com-sirupsen-logrus-1.2.0" + ,go-github-com-sirupsen-logrus-1.2.0) + ("go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90" + ,go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90) + ("go-github-com-prometheus-client-golang-1.0.0" + ,go-github-com-prometheus-client-golang-1.0.0) + ("go-github-com-pkg-errors-0.8.0" ,go-github-com-pkg-errors-0.8.0) + ("go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223" + ,go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223) + ("go-github-com-matttproud-golang-protobuf-extensions-1.0.1" + ,go-github-com-matttproud-golang-protobuf-extensions-1.0.1) + ("go-github-com-julienschmidt-httprouter-1.2.0" + ,go-github-com-julienschmidt-httprouter-1.2.0) + ("go-github-com-golang-protobuf-1.3.1" + ,go-github-com-golang-protobuf-1.3.1) + ("go-github-com-go-logfmt-logfmt-0.4.0" + ,go-github-com-go-logfmt-logfmt-0.4.0) + ("go-github-com-go-kit-kit-0.8.0" ,go-github-com-go-kit-kit-0.8.0))) + (home-page "https://github.com/prometheus/common") + (synopsis "Common") + (description + "This repository contains Go libraries that are shared across Prometheus +components and libraries. They are considered internal to Prometheus, without +any stability guarantees for external usage.") + (license license:asl2.0))) + +(define-public go-github-com-prometheus-procfs-0.0.3 + (package + (name "go-github-com-prometheus-procfs") + (version "0.0.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/procfs") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18c4m795fwng8f8qa395f3crvamlbk5y5afk8b5rzyisnmjq774y")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/procfs")) + (propagated-inputs + `(("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" + ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) + ("go-github-com-google-go-cmp-0.3.0" + ,go-github-com-google-go-cmp-0.3.0))) + (home-page "https://github.com/prometheus/procfs") + (synopsis "procfs") + (description + "Package procfs provides functions to retrieve system, kernel and process +metrics from the pseudo-filesystem proc. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-sys-0.0.0-20190801041406-cbf593c0f2f3 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190801041406-cbf593c0f2f3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1zmcmckinhclcwlvznjqvs31aww8jnf6pjm9is0nq8lqlvipg5ls")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-prometheus-client-golang-1.1.0 + (package + (name "go-github-com-prometheus-client-golang") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/client_golang") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1r0irxkmfnj6ininb06w6ybknini5lz02idawrbkk2i5lq1qcvvf")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/client_golang")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190801041406-cbf593c0f2f3" + ,go-golang-org-x-sys-0.0.0-20190801041406-cbf593c0f2f3) + ("go-github-com-prometheus-procfs-0.0.3" + ,go-github-com-prometheus-procfs-0.0.3) + ("go-github-com-prometheus-common-0.6.0" + ,go-github-com-prometheus-common-0.6.0) + ("go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90" + ,go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90) + ("go-github-com-json-iterator-go-1.1.7" + ,go-github-com-json-iterator-go-1.1.7) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2) + ("go-github-com-beorn7-perks-1.0.1" + ,go-github-com-beorn7-perks-1.0.1))) + (home-page "https://github.com/prometheus/client_golang") + (synopsis "Prometheus Go client library") + (description + "This is the @url{http://golang.org,Go} client library for +@url{http://prometheus.io,Prometheus}. It has two separate parts, one for +instrumenting application code, and one for creating clients that talk to the +Prometheus HTTP API.") + (license license:asl2.0))) + +(define-public go-github-com-docker-go-metrics-0.0.1 + (package + (name "go-github-com-docker-go-metrics") + (version "0.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/docker/go-metrics") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1b6f1889chmwlsgrqxylnks2jic16j2dqhsdd1dvaklk48ky95ga")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/docker/go-metrics")) + (propagated-inputs + `(("go-github-com-prometheus-client-golang-1.1.0" + ,go-github-com-prometheus-client-golang-1.1.0))) + (home-page "https://github.com/docker/go-metrics") + (synopsis "go-metrics") + (description + "This package is small wrapper around the prometheus go client to help enforce convention and best practices for metrics collection in Docker projects.") + (license (list license:asl2.0 license:cc-by-sa4.0)))) + +(define-public go-github-com-google-uuid-1.2.0 + (package + (name "go-github-com-google-uuid") + (version "1.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/uuid") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "08wqig98w23cg2ngjijhgm6s0mdayb95awa3cn3bs69lg20gryac")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/uuid")) + (home-page "https://github.com/google/uuid") + (synopsis "uuid") + (description "Package uuid generates and inspects UUIDs. +") + (license license:bsd-3))) + +(define-public go-github-com-hashicorp-errwrap-1.0.0 + (package + (name "go-github-com-hashicorp-errwrap") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/errwrap") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0slfb6w3b61xz04r32bi0a1bygc82rjzhqkxj2si2074wynqnr1c")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/errwrap")) + (home-page "https://github.com/hashicorp/errwrap") + (synopsis "errwrap") + (description + "Package errwrap implements methods to formalize error wrapping in Go. +") + (license license:mpl2.0))) + +(define-public go-github-com-hashicorp-go-multierror-1.0.0 + (package + (name "go-github-com-hashicorp-go-multierror") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/go-multierror") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "00nyn8llqzbfm8aflr9kwsvpzi4kv8v45c141v88xskxp5xf6z49")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/go-multierror")) + (propagated-inputs + `(("go-github-com-hashicorp-errwrap-1.0.0" + ,go-github-com-hashicorp-errwrap-1.0.0))) + (home-page "https://github.com/hashicorp/go-multierror") + (synopsis "go-multierror") + (description + "@code{go-multierror} is a package for Go that provides a mechanism for +representing a list of @code{error} values as a single @code{error}.") + (license license:mpl2.0))) + +(define-public go-gopkg-in-yaml-v2-2.3.0 + (package + (name "go-gopkg-in-yaml-v2") + (version "2.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1md0hlyd9s6myv3663i9l59y74n4xjazifmmyxn43g86fgkc5lzj")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v2") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language. +") + (license license:asl2.0))) + +(define-public go-github-com-imdario-mergo-0.3.12 + (package + (name "go-github-com-imdario-mergo") + (version "0.3.12") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/imdario/mergo") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "15s6807vcm7xq4l6my7rnw1i7x57712jvdidjli5bip79jfaxw90")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/imdario/mergo")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.3.0" ,go-gopkg-in-yaml-v2-2.3.0))) + (home-page "https://github.com/imdario/mergo") + (synopsis "Mergo") + (description + "This package provides a helper to merge structs and maps in Golang. Useful for configuration default values, avoiding messy if-statements. +") + (license license:bsd-3))) + +(define-public go-github-com-klauspost-compress-1.11.13 + (package + (name "go-github-com-klauspost-compress") + (version "1.11.13") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/klauspost/compress") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19l2rbh6vg0ly4qp2gn5lf39ijggf7asav7lxziikkhjqqb4223j")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/klauspost/compress")) + (home-page "https://github.com/klauspost/compress") + (synopsis "compress") + (description "This package provides various compression algorithms.") + (license #f))) + +(define-public go-github-com-moby-locker-1.0.1 + (package + (name "go-github-com-moby-locker") + (version "1.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/moby/locker") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "07rc2c6h35f9mcy81jp382a030f6xmcifi9n5jnlayybfwxmpjir")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/moby/locker")) + (home-page "https://github.com/moby/locker") + (synopsis "Locker") + (description + "Package locker provides a mechanism for creating finer-grained locking to help +free up more global locks to handle other tasks. +") + (license license:asl2.0))) + +(define-public go-github-com-opencontainers-go-digest-1.0.0 + (package + (name "go-github-com-opencontainers-go-digest") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/go-digest") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0i5acjajvr6hi9zb7gxwifd8w28y884cv7cx36adj8lngj647xbi")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/go-digest")) + (home-page "https://github.com/opencontainers/go-digest") + (synopsis "go-digest") + (description + "Package digest provides a generalized type to opaquely represent message +digests and their operations within the registry. The Digest type is +designed to serve as a flexible identifier in a content-addressable system. +More importantly, it provides tools and wrappers to work with +hash.Hash-based digests with little effort. +") + (license (list license:asl2.0 license:cc-by-sa4.0)))) + +(define-public go-github-com-opencontainers-image-spec-1.0.1 + (package + (name "go-github-com-opencontainers-image-spec") + (version "1.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/image-spec") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03dvbj3dln8c55v9gp79mgmz2yi2ws3r08iyz2fk41y3i22iaw1q")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/image-spec")) + (home-page "https://github.com/opencontainers/image-spec") + (synopsis "OCI Image Format Specification") + (description + "The OCI Image Format project creates and maintains the software shipping container image format spec (OCI Image Format).") + (license license:asl2.0))) + +(define-public go-github-com-checkpoint-restore-go-criu-v5-5.0.0 + (package + (name "go-github-com-checkpoint-restore-go-criu-v5") + (version "5.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/checkpoint-restore/go-criu") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "07dal5a9y43azkkh61jf6s81h7anbl17drkh2mal9mzcsi8wa2z8")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/checkpoint-restore/go-criu/v5")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.23.0" + ,go-google-golang-org-protobuf-1.23.0) + ("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" + ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) + ("go-github-com-golang-protobuf-1.4.3" + ,go-github-com-golang-protobuf-1.4.3))) + (home-page "https://github.com/checkpoint-restore/go-criu") + (synopsis "go-criu -- Go bindings for CRIU") + (description + "This repository provides Go bindings for @url{https://criu.org/,CRIU}. The code is based on the Go-based PHaul +implementation from the CRIU repository. For easier inclusion into other Go projects the +CRIU Go bindings have been moved to this repository.") + (license license:asl2.0))) + +(define-public go-github-com-kr-pretty-0.2.1 + (package + (name "go-github-com-kr-pretty") + (version "0.2.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/pretty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0vzfz06y9q8gs2nxx0kys0591vzp78k0fvpb8digi5n15h3b25hy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/pretty")) + (propagated-inputs + `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) + (home-page "https://github.com/kr/pretty") + (synopsis #f) + (description + "Package pretty provides pretty-printing for Go values. This is +useful during debugging, to avoid wrapping long output lines in +the terminal. +") + (license license:expat))) + +(define-public go-github-com-frankban-quicktest-1.11.3 + (package + (name "go-github-com-frankban-quicktest") + (version "1.11.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/frankban/quicktest") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0d5njmwkfq2809vlimnlvy8ir6kln0c4cgdwr680fwsclpbr43qs")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/frankban/quicktest")) + (propagated-inputs + `(("go-github-com-kr-pretty-0.2.1" ,go-github-com-kr-pretty-0.2.1) + ("go-github-com-google-go-cmp-0.5.4" + ,go-github-com-google-go-cmp-0.5.4))) + (home-page "https://github.com/frankban/quicktest") + (synopsis "quicktest") + (description + "Package quicktest provides a collection of Go helpers for writing tests. +") + (license license:expat))) + +(define-public go-github-com-google-go-cmp-0.5.4 + (package + (name "go-github-com-google-go-cmp") + (version "0.5.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ld9pwb6l22g75g1zpa691l7q9ki7pjgpcqhwgdfr3va1zisr5ci")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") + (license license:bsd-3))) + +(define-public go-github-com-cilium-ebpf-0.6.2 + (package + (name "go-github-com-cilium-ebpf") + (version "0.6.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cilium/ebpf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0x64sg0kyc8bbsp75dpv8g2jfmpdldsshf9ni49jh6rgsnnqhpf8")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/cilium/ebpf")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" + ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) + ("go-github-com-google-go-cmp-0.5.4" + ,go-github-com-google-go-cmp-0.5.4) + ("go-github-com-frankban-quicktest-1.11.3" + ,go-github-com-frankban-quicktest-1.11.3))) + (home-page "https://github.com/cilium/ebpf") + (synopsis "eBPF") + (description "Package ebpf is a toolkit for working with eBPF programs. +") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20210124154548-22da62e12c0c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "17gp3dl75wq3x7j9z1pqgcyvjhvy9jaln1wbscy57al3whdsjp07")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-containerd-console-1.0.2 + (package + (name "go-github-com-containerd-console") + (version "1.0.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/console") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0rxwgq578hphs2ldx1gg6c9fq1qm8rgqfx3vgi2sbrsmxn6m2438")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/console")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" + ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) + (home-page "https://github.com/containerd/console") + (synopsis "console") + (description + "Golang package for dealing with consoles. Light on deps and a simple API.") + (license license:asl2.0))) + +(define-public go-github-com-coreos-go-systemd-v22-22.3.2 + (package + (name "go-github-com-coreos-go-systemd-v22") + (version "22.3.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/coreos/go-systemd") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ndi86b8va84ha93njqgafypz4di7yxfd5r5kf1r0s3y3ghcjajq")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/coreos/go-systemd/v22")) + (propagated-inputs + `(("go-github-com-godbus-dbus-v5-5.0.4" + ,go-github-com-godbus-dbus-v5-5.0.4))) + (home-page "https://github.com/coreos/go-systemd") + (synopsis "go-systemd") + (description "Go bindings to systemd. The project has several packages:") + (license license:asl2.0))) + +(define-public go-github-com-cyphar-filepath-securejoin-0.2.2 + (package + (name "go-github-com-cyphar-filepath-securejoin") + (version "0.2.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cyphar/filepath-securejoin") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0id32zjb92wm569m29nfrzz5mw9z1glr3klayr6j134pp4h1sgq4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/cyphar/filepath-securejoin")) + (home-page "https://github.com/cyphar/filepath-securejoin") + (synopsis #f) + (description + "Package securejoin is an implementation of the hopefully-soon-to-be-included +SecureJoin helper that is meant to be part of the \"path/filepath\" package. +The purpose of this project is to provide a PoC implementation to make the +SecureJoin proposal (@url{https://github.com/golang/go/issues/20126,https://github.com/golang/go/issues/20126}) more +tangible. +") + (license license:bsd-3))) + +(define-public go-github-com-docker-go-units-0.4.0 + (package + (name "go-github-com-docker-go-units") + (version "0.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/docker/go-units") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0k8gja8ql4pqg5rzmqvka42vjfs6rzablak87whcnqba6qxpimvz")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/docker/go-units")) + (home-page "https://github.com/docker/go-units") + (synopsis "Introduction") + (description + "Package units provides helper function to parse and print size and time units +in human-readable format. +") + (license license:asl2.0))) + +(define-public go-github-com-godbus-dbus-v5-5.0.4 + (package + (name "go-github-com-godbus-dbus-v5") + (version "5.0.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/godbus/dbus") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0znax8kskb5gmp5fj75w56bc9p7b22wrdswzlh4d04sprlc471yi")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/godbus/dbus/v5")) + (home-page "https://github.com/godbus/dbus") + (synopsis "dbus") + (description + "Package dbus implements bindings to the D-Bus message bus system. +") + (license license:bsd-2))) + +(define-public go-github-com-mrunalp-fileutils-0.5.0 + (package + (name "go-github-com-mrunalp-fileutils") + (version "0.5.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mrunalp/fileutils") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1zrs959gf4zgi6ijwkdn4dcqk0svfblpaikkqy63q30rqz4swm0x")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mrunalp/fileutils")) + (home-page "https://github.com/mrunalp/fileutils") + (synopsis "fileutils") + (description "Collection of utilities for file manipulation in golang") + (license license:asl2.0))) + +(define-public go-github-com-seccomp-libseccomp-golang-0.9.1 + (package + (name "go-github-com-seccomp-libseccomp-golang") + (version "0.9.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/seccomp/libseccomp-golang") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "022c8prvxz0shrifams7lq4xidvkcqg9xi87wjjcpmbikqi72cna")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/seccomp/libseccomp-golang")) + (home-page "https://github.com/seccomp/libseccomp-golang") + (synopsis #f) + (description + "Package seccomp provides bindings for libseccomp, a library wrapping the Linux +seccomp syscall. Seccomp enables an application to restrict system call use +for itself and its children. +") + (license license:bsd-2))) + +(define-public go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635 + (package + (name "go-github-com-syndtr-gocapability") + (version "0.0.0-20200815063812-42c35b437635") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/syndtr/gocapability") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "00zi0k190ydlm9drnafvj9p4cf6axm858wr71pbmq1p3r94iqws4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/syndtr/gocapability")) + (home-page "https://github.com/syndtr/gocapability") + (synopsis #f) + (description #f) + (license license:bsd-2))) + +(define-public go-github-com-vishvananda-netns-0.0.0-20191106174202-0a2b9b5464df + (package + (name "go-github-com-vishvananda-netns") + (version "0.0.0-20191106174202-0a2b9b5464df") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/vishvananda/netns") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1k1zb7pzc4r4wicq7ncspf6zsvq298lvpsq963ibj813shg657xw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/vishvananda/netns")) + (home-page "https://github.com/vishvananda/netns") + (synopsis "netns - network namespaces in go") + (description + "Package netns allows ultra-simple network namespace handling. NsHandles +can be retrieved and set. Note that the current namespace is thread +local so actions that set and reset namespaces should use LockOSThread +to make sure the namespace doesn't change due to a goroutine switch. +It is best to close NsHandles when you are done with them. This can be +accomplished via a `defer ns.Close()` on the handle. Changing namespaces +requires elevated privileges, so in most cases this code needs to be run +as root. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-sys-0.0.0-20190606203320-7fc4e5ec1444 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190606203320-7fc4e5ec1444") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18rv3m1kksv3758aqiaac2l6j334g0bapic6ibsj999agcn7y9fg")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-vishvananda-netlink-1.1.0 + (package + (name "go-github-com-vishvananda-netlink") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/vishvananda/netlink") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1vhl30p1gx636a088ls4h6a0l8jjyfvz79fr5w0qzdrg4qg9h08h")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/vishvananda/netlink")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190606203320-7fc4e5ec1444" + ,go-golang-org-x-sys-0.0.0-20190606203320-7fc4e5ec1444) + ("go-github-com-vishvananda-netns-0.0.0-20191106174202-0a2b9b5464df" + ,go-github-com-vishvananda-netns-0.0.0-20191106174202-0a2b9b5464df))) + (home-page "https://github.com/vishvananda/netlink") + (synopsis "netlink - netlink library for go") + (description + "Package netlink provides a simple library for netlink. Netlink is +the interface a user-space program in linux uses to communicate with +the kernel. It can be used to add and remove interfaces, set up ip +addresses and routes, and confiugre ipsec. Netlink communication +requires elevated privileges, so in most cases this code needs to +be run as root. The low level primitives for netlink are contained +in the nl subpackage. This package attempts to provide a high-level +interface that is loosly modeled on the iproute2 cli. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b + (package + (name "go-golang-org-x-net") + (version "0.0.0-20201224014010-6772e930b67b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0zlr39dxbg0fxfdrc20c4x0pw43n9kz749ssml97cdzqy116p5qa")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) + ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" + ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) + ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" + ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-1.26.0-rc.1 + (package + (name "go-google-golang-org-protobuf") + (version "1.26.0-rc.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1m2jp247qcnix42jncn0q7pwrjgbhiqllb1115hfsz40xfnfhp8j")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.5.5" + ,go-github-com-google-go-cmp-0.5.5))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.5.0 + (package + (name "go-github-com-golang-protobuf") + (version "1.5.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1craaxv34g4g8q3yrv6pr28fx9ihnk7hj5gnbmxcrhcp78423lnf")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.26.0-rc.1" + ,go-google-golang-org-protobuf-1.26.0-rc.1) + ("go-github-com-google-go-cmp-0.5.5" + ,go-github-com-google-go-cmp-0.5.5))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-github-com-google-go-cmp-0.5.5 + (package + (name "go-github-com-google-go-cmp") + (version "0.5.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12fmkdhyv5d4is8s57k78j097zb0phlgnrkqc03agiszxlid69x7")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-1.26.0 + (package + (name "go-google-golang-org-protobuf") + (version "1.26.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0xq6phaps6d0vcv13ga59gzj4306l0ki9kikhmb52h6pq0iwfqlz")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.5.5" + ,go-github-com-google-go-cmp-0.5.5) + ("go-github-com-golang-protobuf-1.5.0" + ,go-github-com-golang-protobuf-1.5.0))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-opencontainers-runc-1.0.2 + (package + (name "go-github-com-opencontainers-runc") + (version "1.0.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/runc") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1bpckghjah0rczciw1a1ab8z718lb2d3k4mjm4zb45lpm3njmrcp")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/runc")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.26.0" + ,go-google-golang-org-protobuf-1.26.0) + ("go-golang-org-x-sys-0.0.0-20210426230700-d19ff857e887" + ,go-golang-org-x-sys-0.0.0-20210426230700-d19ff857e887) + ("go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b" + ,go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b) + ("go-github-com-vishvananda-netlink-1.1.0" + ,go-github-com-vishvananda-netlink-1.1.0) + ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) + ("go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635" + ,go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635) + ("go-github-com-sirupsen-logrus-1.8.1" + ,go-github-com-sirupsen-logrus-1.8.1) + ("go-github-com-seccomp-libseccomp-golang-0.9.1" + ,go-github-com-seccomp-libseccomp-golang-0.9.1) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-selinux-1.8.2" + ,go-github-com-opencontainers-selinux-1.8.2) + ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417" + ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417) + ("go-github-com-mrunalp-fileutils-0.5.0" + ,go-github-com-mrunalp-fileutils-0.5.0) + ("go-github-com-moby-sys-mountinfo-0.4.1" + ,go-github-com-moby-sys-mountinfo-0.4.1) + ("go-github-com-godbus-dbus-v5-5.0.4" + ,go-github-com-godbus-dbus-v5-5.0.4) + ("go-github-com-docker-go-units-0.4.0" + ,go-github-com-docker-go-units-0.4.0) + ("go-github-com-cyphar-filepath-securejoin-0.2.2" + ,go-github-com-cyphar-filepath-securejoin-0.2.2) + ("go-github-com-coreos-go-systemd-v22-22.3.2" + ,go-github-com-coreos-go-systemd-v22-22.3.2) + ("go-github-com-containerd-console-1.0.2" + ,go-github-com-containerd-console-1.0.2) + ("go-github-com-cilium-ebpf-0.6.2" ,go-github-com-cilium-ebpf-0.6.2) + ("go-github-com-checkpoint-restore-go-criu-v5-5.0.0" + ,go-github-com-checkpoint-restore-go-criu-v5-5.0.0) + ("go-github-com-bits-and-blooms-bitset-1.2.0" + ,go-github-com-bits-and-blooms-bitset-1.2.0))) + (home-page "https://github.com/opencontainers/runc") + (synopsis "runc") + (description + "@code{runc} is a CLI tool for spawning and running containers according to the OCI specification.") + (license license:asl2.0))) + +(define-public go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417 + (package + (name "go-github-com-opencontainers-runtime-spec") + (version "1.0.3-0.20210326190908-1c3f411f0417") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/runtime-spec") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1azk8z41ga8af35c966f06vrq9y9hwz6mkm59r3py5qaamzim3qq")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) + (home-page "https://github.com/opencontainers/runtime-spec") + (synopsis "Open Container Initiative Runtime Specification") + (description + "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") + (license license:asl2.0))) + +(define-public go-github-com-bits-and-blooms-bitset-1.2.0 + (package + (name "go-github-com-bits-and-blooms-bitset") + (version "1.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/bits-and-blooms/bitset") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0r9f7lvz6znl7yr6njg77m8hj472yhdshf1qaybwyw7j8as6c4r3")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/bits-and-blooms/bitset")) + (home-page "https://github.com/bits-and-blooms/bitset") + (synopsis "bitset") + (description + "Package bitset implements bitsets, a mapping +between non-negative integers and boolean values. It should be more +efficient than map[uint] bool. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20191115151921-52ab43148777") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1kakxbqrb1w2vwg7r1896z68qcx2lfvimsl8cs2niiipbgpi6imx")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-opencontainers-selinux-1.8.2 + (package + (name "go-github-com-opencontainers-selinux") + (version "1.8.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/selinux") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1dl1h8nzpyhsfki1dcjphm5h4n52qwilahyl6qlnwgzcc76pwizq")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/selinux")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777" + ,go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-bits-and-blooms-bitset-1.2.0" + ,go-github-com-bits-and-blooms-bitset-1.2.0))) + (home-page "https://github.com/opencontainers/selinux") + (synopsis "selinux") + (description "Common SELinux package used across the container ecosystem.") + (license license:asl2.0))) + +(define-public go-github-com-pelletier-go-toml-1.8.1 + (package + (name "go-github-com-pelletier-go-toml") + (version "1.8.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pelletier/go-toml") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1pi1r9ds0vxjza4qrbk52y98wxrzh1ghwzc9c2v1w6i02pdwdcz9")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pelletier/go-toml")) + (propagated-inputs + `(("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/pelletier/go-toml") + (synopsis "go-toml") + (description "Package toml is a TOML parser and manipulation library. +") + (license #f))) + +(define-public go-github-com-satori-go-uuid-1.2.0 + (package + (name "go-github-com-satori-go-uuid") + (version "1.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/satori/go.uuid") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1j4s5pfg2ldm35y8ls8jah4dya2grfnx2drb4jcbjsyrp4cm5yfb")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/satori/go.uuid")) + (home-page "https://github.com/satori/go.uuid") + (synopsis "UUID package for Go language") + (description + "Package uuid provides implementation of Universally Unique Identifier (UUID). +Supported versions are 1, 3, 4 and 5 (as specified in @url{https://rfc-editor.org/rfc/rfc4122.html,RFC 4122}) and +version 2 (as specified in DCE 1.1). +") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20191026070338-33540a1f6037") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0fjcv0vzvi6za0b4xmnk3932pr9f9gczzf03y0kgq3ry9rqg169y")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-sirupsen-logrus-1.8.1 + (package + (name "go-github-com-sirupsen-logrus") + (version "1.8.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sirupsen/logrus") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0rvqzic2zz7fpxyizmqxwmhv1m52ii9bgxnqa6km8wsa0l08wh42")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/sirupsen/logrus")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037" + ,go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037) + ("go-github-com-stretchr-testify-1.2.2" + ,go-github-com-stretchr-testify-1.2.2) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/sirupsen/logrus") + (synopsis "Logrus") + (description + "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. +") + (license license:expat))) + +(define-public go-github-com-tchap-go-patricia-2.2.6+incompatible + (package + (name "go-github-com-tchap-go-patricia") + (version "2.2.6+incompatible") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/tchap/go-patricia") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1yy1s3pnll52iyzphwi50drvz36lx628vn3xfy5ld29fxqngrckb")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/tchap/go-patricia")) + (home-page "https://github.com/tchap/go-patricia") + (synopsis "go-patricia") + (description + "@strong{Documentation}: @url{http://godoc.org/github.com/tchap/go-patricia/patricia,GoDoc} +@strong{Test Coverage}: @url{https://coveralls.io/r/tchap/go-patricia,(img (@ (src https://coveralls.io/repos/tchap/go-patricia/badge.png) (alt CoverageStatus)))}") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20201119102817-f84b799fce68") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1dvhqian5byzkcg1bnqzygqa6ccc6krc2q7j12pp1vhl3y7znnsg")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1 + (package + (name "go-golang-org-x-term") + (version "0.0.0-20201126162022-7de9c90e9dd1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/term") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ba252xmv6qsvf1w1gcy98mngrj0vd4inbjw0lsklqvva65nljna")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/term")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" + ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) + (home-page "https://golang.org/x/term") + (synopsis "Go terminal/console support") + (description + "Package term provides support functions for dealing with terminals, as +commonly found on UNIX systems. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20210226172049-e18ecbb05110") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1vlq8mdscp7yfaa1lmyv03y5m4c2d67ydg2q1i6smkrxghn3zn3q")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) + ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" + ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) + ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" + ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20201207232520-09787c993a3a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1nv4mwi9njkkyc7lwmxrjr8ggfh2cf1c67a9bq85dnss81vpj61y")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the +ones provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20210426230700-d19ff857e887 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20210426230700-d19ff857e887") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12m35a34dfm99agcv2ln9zvvyczigaxfwqbzqirvwn1lw4784whn")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-gotest-tools-v3-3.0.3 + (package + (name "go-gotest-tools-v3") + (version "3.0.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gotestyourself/gotest.tools") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1h316233n33lkfhbak8ljdj5i8df6hcwwm48n200svf22x3d95ww")))) + (build-system go-build-system) + (arguments + '(#:import-path "gotest.tools/v3" #:unpack-path "gotest.tools/v3")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20190624222133-a101b041ded4" + ,go-golang-org-x-tools-0.0.0-20190624222133-a101b041ded4) + ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) + ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0))) + (home-page "https://gotest.tools/v3") + (synopsis "gotest.tools") + (description + "Package gotesttools is a collection of packages to augment `testing` and +support common patterns. +") + (license license:asl2.0))) + +(define-public go-github-com-coreos-go-oidc-2.1.0+incompatible + (package + (name "go-github-com-coreos-go-oidc") + (version "2.1.0+incompatible") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/coreos/go-oidc") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0y9vxack1whvxy766jrc6xhh2rfkvnznwxi356si2kabzjv2lp6h")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/coreos/go-oidc")) + (home-page "https://github.com/coreos/go-oidc") + (synopsis "go-oidc") + (description + "Package oidc implements OpenID Connect client logic for the golang.org/x/oauth2 package. +") + (license license:asl2.0))) + +(define-public go-github-com-coreos-go-semver-0.3.0 + (package + (name "go-github-com-coreos-go-semver") + (version "0.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/coreos/go-semver") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0770h1mpig2j5sbiha3abnwaw8p6dg9i87r8pc7cf6m4kwml3sc9")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/coreos/go-semver")) + (home-page "https://github.com/coreos/go-semver") + (synopsis "go-semver - Semantic Versioning Library") + (description + "go-semver is a @url{http://semver.org/,semantic versioning} library for Go. It lets you parse +and compare two semantic version strings.") + (license license:asl2.0))) + +(define-public go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e + (package + (name "go-github-com-coreos-go-systemd") + (version "0.0.0-20190321100706-95778dfbb74e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/coreos/go-systemd") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1s3bg9p78wkixn2bqb2p23wbsqfg949ml6crw2b498s71mwh8rcf")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/coreos/go-systemd")) + (home-page "https://github.com/coreos/go-systemd") + (synopsis "go-systemd") + (description "Go bindings to systemd. The project has several packages:") + (license license:asl2.0))) + +(define-public go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f + (package + (name "go-github-com-coreos-pkg") + (version "0.0.0-20180928190104-399ea9e2e55f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/coreos/pkg") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0nxbn0m7lr4dg0yrwnvlkfiyg3ndv8vdpssjx7b714nivpc6ar0y")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/coreos/pkg")) + (home-page "https://github.com/coreos/pkg") + (synopsis #f) + (description "a collection of go utility packages") + (license license:asl2.0))) + +(define-public go-github-com-dustin-go-humanize-1.0.0 + (package + (name "go-github-com-dustin-go-humanize") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/dustin/go-humanize") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1kqf1kavdyvjk7f8kx62pnm7fbypn9z1vbf8v2qdh3y7z7a0cbl3")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/dustin/go-humanize")) + (home-page "https://github.com/dustin/go-humanize") + (synopsis "Humane Units") + (description + "Package humanize converts boring ugly numbers to human-friendly strings and back. +") + (license license:expat))) + +(define-public go-github-com-emicklei-go-restful-2.9.5+incompatible + (package + (name "go-github-com-emicklei-go-restful") + (version "2.9.5+incompatible") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/emicklei/go-restful") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0258y7q2krih98zznc4jsym9mf689afn6nsnsif1jhshrj653k36")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/emicklei/go-restful")) + (home-page "https://github.com/emicklei/go-restful") + (synopsis "go-restful") + (description + "Package restful , a lean package for creating REST-style WebServices without magic. +") + (license license:expat))) + +(define-public go-github-com-gorilla-websocket-1.4.2 + (package + (name "go-github-com-gorilla-websocket") + (version "1.4.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gorilla/websocket") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0mkm9w6kjkrlzab5wh8p4qxkc0icqawjbvr01d2nk6ykylrln40s")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/gorilla/websocket")) + (home-page "https://github.com/gorilla/websocket") + (synopsis "Gorilla WebSocket") + (description + "Package websocket implements the WebSocket protocol defined in @url{https://rfc-editor.org/rfc/rfc6455.html,RFC 6455}. +") + (license license:bsd-2))) + +(define-public go-github-com-mailru-easyjson-0.7.0 + (package + (name "go-github-com-mailru-easyjson") + (version "0.7.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mailru/easyjson") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "13zv5fvjp3nr65lhqhiw6i6mlmqvyls882rlmcas0ab35alsxni8")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mailru/easyjson")) + (home-page "https://github.com/mailru/easyjson") + (synopsis "easyjson") + (description + "Package easyjson contains marshaler/unmarshaler interfaces and helper functions. +") + (license license:expat))) + +(define-public go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822 + (package + (name "go-github-com-munnerz-goautoneg") + (version "0.0.0-20191010083416-a7dc8b61c822") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/munnerz/goautoneg") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1m4v6bw6yf1g0kvpc46isjp0qfhx2y8gnvlnyjf637jy64613mgg")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/munnerz/goautoneg")) + (home-page "https://github.com/munnerz/goautoneg") + (synopsis #f) + (description #f) + (license license:bsd-3))) + +(define-public go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021 + (package + (name "go-github-com-pquerna-cachecontrol") + (version "0.0.0-20171018203845-0dec1b30a021") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pquerna/cachecontrol") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "14yyfhrv60rvb983rqm7s916nwvn9kcmbvnrcna2md0s3mkzs3yh")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pquerna/cachecontrol")) + (home-page "https://github.com/pquerna/cachecontrol") + (synopsis "cachecontrol: HTTP Caching Parser and Interpretation") + (description + "Package cachecontrol implements the logic for HTTP Caching +") + (license license:asl2.0))) + +(define-public go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5 + (package + (name "go-github-com-tmc-grpc-websocket-proxy") + (version "0.0.0-20190109142713-0ad062ec5ee5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/tmc/grpc-websocket-proxy") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1anw4v9wspnw9xf2z5r9w0sszwjklyanl0l85wgg6nxak9gnrqp4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/tmc/grpc-websocket-proxy")) + (home-page "https://github.com/tmc/grpc-websocket-proxy") + (synopsis "grpc-websocket-proxy") + (description + "Wrap your grpc-gateway mux with this helper to expose streaming endpoints over websockets.") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20200202164722-d101bd2416d5 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200202164722-d101bd2416d5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ksxf37b0ym21n8j29m3wgbaiw1kcjw3hgf88kipc1ry2j13l98p")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-go-etcd-io-bbolt-1.3.5 + (package + (name "go-go-etcd-io-bbolt") + (version "1.3.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/etcd-io/bbolt") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1h64gipvcg7060byv5wjlf524kqwj12p3v08kfh4ygv46vpm8p2r")))) + (build-system go-build-system) + (arguments '(#:import-path "go.etcd.io/bbolt")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20200202164722-d101bd2416d5" + ,go-golang-org-x-sys-0.0.0-20200202164722-d101bd2416d5))) + (home-page "https://go.etcd.io/bbolt") + (synopsis "bbolt") + (description + "package bbolt implements a low-level key/value store in pure Go. It supports +fully serializable transactions, ACID semantics, and lock-free MVCC with +multiple readers and a single writer. Bolt can be used for projects that +want a simple data store without the need to add large dependencies such as +Postgres or MySQL. +") + (license license:expat))) + +(define-public go-github-com-bgentry-speakeasy-0.1.0 + (package + (name "go-github-com-bgentry-speakeasy") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/bgentry/speakeasy") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "02dfrj0wyphd3db9zn2mixqxwiz1ivnyc5xc7gkz58l5l27nzp8s")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/bgentry/speakeasy")) + (home-page "https://github.com/bgentry/speakeasy") + (synopsis "Speakeasy") + (description + "This package provides cross-platform Go (#golang) helpers for taking user input +from the terminal while not echoing the input back (similar to @code{getpasswd}). The +package uses syscalls to avoid any dependence on cgo, and is therefore +compatible with cross-compiling.") + (license license:expat))) + +(define-public go-github-com-cockroachdb-datadriven-0.0.0-20190809214429-80d97fb3cbaa + (package + (name "go-github-com-cockroachdb-datadriven") + (version "0.0.0-20190809214429-80d97fb3cbaa") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cockroachdb/datadriven") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0rvavka9zhri6r50n8fy98247fl5vycb1hffjrhshsicjv1frmlp")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/cockroachdb/datadriven")) + (home-page "https://github.com/cockroachdb/datadriven") + (synopsis "Data-Driven Tests for Go") + (description + "This repository implements an extension of @url{https://github.com/golang/go/wiki/TableDrivenTests,Table-Driven Testing}. Instead of +building and iterating over a table in the test code, the input is further +separated into files (or inline strings). For certain classes of tests, this +can significantly reduce the friction involved in writing and reading these +tests.") + (license license:asl2.0))) + +(define-public go-github-com-coreos-go-semver-0.2.0 + (package + (name "go-github-com-coreos-go-semver") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/coreos/go-semver") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1gghi5bnqj50hfxhqc1cxmynqmh2yk9ii7ab9gsm75y5cp94ymk0")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/coreos/go-semver")) + (home-page "https://github.com/coreos/go-semver") + (synopsis "go-semver - Semantic Versioning Library") + (description + "go-semver is a @url{http://semver.org/,semantic versioning} library for Go. It lets you parse +and compare two semantic version strings.") + (license license:asl2.0))) + +(define-public go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7 + (package + (name "go-github-com-coreos-go-systemd") + (version "0.0.0-20180511133405-39ca1b05acc7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/coreos/go-systemd") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1kzqrrzqspa5qm7kwslxl3m16lqzns23c24rv474ajzwmj3ixmx1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/coreos/go-systemd")) + (home-page "https://github.com/coreos/go-systemd") + (synopsis "go-systemd") + (description "Go bindings to systemd. The project has several packages:") + (license license:asl2.0))) + +(define-public go-github-com-coreos-pkg-0.0.0-20160727233714-3ac0863d7acf + (package + (name "go-github-com-coreos-pkg") + (version "0.0.0-20160727233714-3ac0863d7acf") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/coreos/pkg") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0l5ans1ls2gknkrnhymgc0zbgg5nqjbjbqc51r611adcr0m6gg8l")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/coreos/pkg")) + (home-page "https://github.com/coreos/pkg") + (synopsis #f) + (description "a collection of go utility packages") + (license license:asl2.0))) + +(define-public go-github-com-creack-pty-1.1.7 + (package + (name "go-github-com-creack-pty") + (version "1.1.7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/creack/pty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1plwwlk1i9b80zv8zdplvv81shfyc9gf0flydnydsh5sr3ib5vrc")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/creack/pty")) + (home-page "https://github.com/creack/pty") + (synopsis "pty") + (description + "Package pty provides functions for working with Unix terminals. +") + (license license:expat))) + +(define-public go-github-com-dgrijalva-jwt-go-3.2.0+incompatible + (package + (name "go-github-com-dgrijalva-jwt-go") + (version "3.2.0+incompatible") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/dgrijalva/jwt-go") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "08m27vlms74pfy5z79w67f9lk9zkx6a9jd68k3c4msxy75ry36mp")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/dgrijalva/jwt-go")) + (home-page "https://github.com/dgrijalva/jwt-go") + (synopsis "jwt-go") + (description + "Package jwt is a Go implementation of JSON Web Tokens: @url{http://self-issued.info/docs/draft-jones-json-web-token.html,http://self-issued.info/docs/draft-jones-json-web-token.html} +") + (license license:expat))) + +(define-public go-github-com-dustin-go-humanize-0.0.0-20171111073723-bb3d318650d4 + (package + (name "go-github-com-dustin-go-humanize") + (version "0.0.0-20171111073723-bb3d318650d4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/dustin/go-humanize") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1lqd8ix3cb164j5iazjby2jpa6bdsflhy0h9mi4yldvvcvrc194c")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/dustin/go-humanize")) + (home-page "https://github.com/dustin/go-humanize") + (synopsis "Humane Units") + (description + "Package humanize converts boring ugly numbers to human-friendly strings and back. +") + (license license:expat))) + +(define-public go-github-com-fatih-color-1.7.0 + (package + (name "go-github-com-fatih-color") + (version "1.7.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/fatih/color") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0v8msvg38r8d1iiq2i5r4xyfx0invhc941kjrsg5gzwvagv55inv")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/fatih/color")) + (home-page "https://github.com/fatih/color") + (synopsis "color") + (description + "Package color is an ANSI color package to output colorized or SGR defined +output to the standard output. The API can be used in several way, pick one +that suits you. +") + (license license:expat))) + +(define-public go-golang-org-x-tools-0.0.0-20180221164845-07fd8470d635 + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20180221164845-07fd8470d635") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "193g0a1zxb9ikph7r2klc6rdqxqzfmmr8d5bcibyhsm2l63s17mx")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-github-com-kisielk-errcheck-1.1.0 + (package + (name "go-github-com-kisielk-errcheck") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kisielk/errcheck") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19vd4rxmqbk5lpiav3pf7df3yjlz0l0dwx9mn0gjq5f998iyhy6y")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kisielk/errcheck")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20180221164845-07fd8470d635" + ,go-golang-org-x-tools-0.0.0-20180221164845-07fd8470d635) + ("go-github-com-kisielk-gotool-1.0.0" + ,go-github-com-kisielk-gotool-1.0.0))) + (home-page "https://github.com/kisielk/errcheck") + (synopsis "errcheck") + (description + "errcheck is a program for checking for unchecked errors in go programs.") + (license license:expat))) + +(define-public go-github-com-gogo-protobuf-1.2.1 + (package + (name "go-github-com-gogo-protobuf") + (version "1.2.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gogo/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "06yqa6h0kw3gr5pc3qmas7f7435a96zf7iw7p0l00r2hqf6fqq6m")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/gogo/protobuf")) + (propagated-inputs + `(("go-github-com-kisielk-errcheck-1.1.0" + ,go-github-com-kisielk-errcheck-1.1.0))) + (home-page "https://github.com/gogo/protobuf") + (synopsis "Protocol Buffers for Go with Gadgets") + (description + "gogoprotobuf is a fork of @url{https://github.com/golang/protobuf,golang/protobuf} with extra code generation features.") + (license license:bsd-3))) + +(define-public go-github-com-golang-groupcache-0.0.0-20160516000752-02826c3e7903 + (package + (name "go-github-com-golang-groupcache") + (version "0.0.0-20160516000752-02826c3e7903") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/groupcache") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0w46bsllddfij66nrg8jbfjsr54birvfww8a2fj9fmgyig5syn2x")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/groupcache")) + (home-page "https://github.com/golang/groupcache") + (synopsis "groupcache") + (description + "Package groupcache provides a data loading mechanism with caching +and de-duplication that works across a set of peer processes. +") + (license license:asl2.0))) + +(define-public go-github-com-google-btree-1.0.0 + (package + (name "go-github-com-google-btree") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/btree") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ba430m9fbnagacp57krgidsyrgp3ycw5r7dj71brgp5r52g82p6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/btree")) + (home-page "https://github.com/google/btree") + (synopsis "BTree implementation for Go") + (description + "Package btree implements in-memory B-Trees of arbitrary degree. +") + (license license:asl2.0))) + +(define-public go-github-com-google-uuid-1.0.0 + (package + (name "go-github-com-google-uuid") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/uuid") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1922bjrnx66692dm0rrc1ckmznsaqx920ww4jzsds3xzrwf15mqv")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/uuid")) + (home-page "https://github.com/google/uuid") + (synopsis "uuid") + (description "Package uuid generates and inspects UUIDs. +") + (license license:bsd-3))) + +(define-public go-github-com-gorilla-websocket-0.0.0-20170926233335-4201258b820c + (package + (name "go-github-com-gorilla-websocket") + (version "0.0.0-20170926233335-4201258b820c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gorilla/websocket") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1kpdg3m46kp15ixl9ahhchhadyiblz0qpcxzylp8jhffc1rnxjb7")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/gorilla/websocket")) + (home-page "https://github.com/gorilla/websocket") + (synopsis "Gorilla WebSocket") + (description + "Package websocket implements the WebSocket protocol defined in @url{https://rfc-editor.org/rfc/rfc6455.html,RFC 6455}. +") + (license license:bsd-2))) + +(define-public go-github-com-grpc-ecosystem-go-grpc-middleware-1.0.1-0.20190118093823-f849b5445de4 + (package + (name "go-github-com-grpc-ecosystem-go-grpc-middleware") + (version "1.0.1-0.20190118093823-f849b5445de4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc-ecosystem/go-grpc-middleware") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hscypgj0nd1407jp6y4qrnrr0mrhc4wgxz9b3mj1cs3pkvi61vc")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/grpc-ecosystem/go-grpc-middleware")) + (home-page "https://github.com/grpc-ecosystem/go-grpc-middleware") + (synopsis "Go gRPC Middleware") + (description + "`grpc_middleware` is a collection of gRPC middleware packages: interceptors, helpers and tools. +") + (license license:asl2.0))) + +(define-public go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0 + (package + (name "go-github-com-grpc-ecosystem-go-grpc-prometheus") + (version "1.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc-ecosystem/go-grpc-prometheus") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1lzk54h7np32b3acidg1ggbn8ppbnns0m71gcg9d1qkkdh8zrijl")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/grpc-ecosystem/go-grpc-prometheus")) + (home-page "https://github.com/grpc-ecosystem/go-grpc-prometheus") + (synopsis "Go gRPC Interceptors for Prometheus monitoring") + (description + "@url{https://prometheus.io/,Prometheus} monitoring for your @url{https://github.com/grpc/grpc-go,gRPC Go} servers and clients.") + (license license:asl2.0))) + +(define-public go-github-com-ghodss-yaml-1.0.0 + (package + (name "go-github-com-ghodss-yaml") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/ghodss/yaml") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0skwmimpy7hlh7pva2slpcplnm912rp3igs98xnqmn859kwa5v8g")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/ghodss/yaml")) + (home-page "https://github.com/ghodss/yaml") + (synopsis "YAML marshaling and unmarshaling support for Go") + (description + "Copyright 2013 The Go Authors. All rights reserved. +Use of this source code is governed by a BSD-style +license that can be found in the LICENSE file. +") + (license #f))) + +(define-public go-github-com-rogpeppe-fastuuid-0.0.0-20150106093220-6724a57986af + (package + (name "go-github-com-rogpeppe-fastuuid") + (version "0.0.0-20150106093220-6724a57986af") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/rogpeppe/fastuuid") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12s65phfx6hxj4v0b5kj8akgrbf5mxpa101fyzw03h6hld1f70cz")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/rogpeppe/fastuuid")) + (home-page "https://github.com/rogpeppe/fastuuid") + (synopsis "fastuuid") + (description + "Package fastuuid provides fast UUID generation of 192 bit +universally unique identifiers. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20181107165924-66b7b1311ac8") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "00ny4r2bbj6rz939iy9g699acqydq7rfi6r6awn25w9i2dld9m13")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20181220203305-927f97764cc3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0np7b766gb92vbm514yhdl7cjmqvn0dxdxskd84aas2ri1fkpgw5")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-gopkg-in-resty-v1-1.12.0 + (package + (name "go-gopkg-in-resty-v1") + (version "1.12.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/resty.v1") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "062mn735rqzhha5ag07z4gz08hxzrfm2yx067jfmaaxmb6797lmp")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/resty.v1" #:unpack-path "gopkg.in/resty.v1")) + (propagated-inputs + `(("go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3" + ,go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3))) + (home-page "https://gopkg.in/resty.v1") + (synopsis "News") + (description + "Package resty provides Simple HTTP and REST client library for Go. +") + (license license:expat))) + +(define-public go-gopkg-in-yaml-v2-2.0.0-20170812160011-eb3733d160e7 + (package + (name "go-gopkg-in-yaml-v2") + (version "2.0.0-20170812160011-eb3733d160e7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v2") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1srhvcaa9db3a6xj29mkjr5kg33y71pclrlx4vcwz5m1lgb5c7q6")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) + (home-page "https://gopkg.in/yaml.v2") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language. +") + (license license:asl2.0))) + +(define-public go-github-com-grpc-ecosystem-grpc-gateway-1.9.5 + (package + (name "go-github-com-grpc-ecosystem-grpc-gateway") + (version "1.9.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc-ecosystem/grpc-gateway") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0acpbxa1i1bxcpkclkcif2macbcfrlywb58vly5pzwsj261mg58a")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/grpc-ecosystem/grpc-gateway")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.0.0-20170812160011-eb3733d160e7" + ,go-gopkg-in-yaml-v2-2.0.0-20170812160011-eb3733d160e7) + ("go-gopkg-in-resty-v1-1.12.0" ,go-gopkg-in-resty-v1-1.12.0) + ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" + ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) + ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) + ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" + ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) + ("go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8" + ,go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8) + ("go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3" + ,go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3) + ("go-github-com-rogpeppe-fastuuid-0.0.0-20150106093220-6724a57986af" + ,go-github-com-rogpeppe-fastuuid-0.0.0-20150106093220-6724a57986af) + ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-ghodss-yaml-1.0.0" ,go-github-com-ghodss-yaml-1.0.0))) + (home-page "https://github.com/grpc-ecosystem/grpc-gateway") + (synopsis "grpc-gateway") + (description + "The grpc-gateway is a plugin of the Google protocol buffers compiler +@url{https://github.com/protocolbuffers/protobuf,protoc}. +It reads protobuf service definitions and generates a reverse-proxy server which +translates a RESTful HTTP API into gRPC. This server is generated according to the +@url{https://github.com/googleapis/googleapis/raw/master/google/api/http.proto#L46,(code google.api.http)} +annotations in your service definitions.") + (license license:bsd-3))) + +(define-public go-github-com-inconshreveable-mousetrap-1.0.0 + (package + (name "go-github-com-inconshreveable-mousetrap") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/inconshreveable/mousetrap") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1mn0kg48xkd74brf48qf5hzp0bc6g8cf5a77w895rl3qnlpfw152")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/inconshreveable/mousetrap")) + (home-page "https://github.com/inconshreveable/mousetrap") + (synopsis "mousetrap") + (description "mousetrap is a tiny library that answers a single question.") + (license license:asl2.0))) + +(define-public go-github-com-jonboulle-clockwork-0.1.0 + (package + (name "go-github-com-jonboulle-clockwork") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jonboulle/clockwork") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1pqxhsdavbp1n5grgyx2j6ylvql2fzn2cvpsgkc8li69dil7sibl")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/jonboulle/clockwork")) + (home-page "https://github.com/jonboulle/clockwork") + (synopsis "clockwork") + (description + "Replace uses of the @code{time} package with the @code{clockwork.Clock} interface instead.") + (license license:asl2.0))) + +(define-public go-github-com-json-iterator-go-1.1.7 + (package + (name "go-github-com-json-iterator-go") + (version "1.1.7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/json-iterator/go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0n79p4s67zl5zprxv7diayw3vavnmmfqkmd6snz0i9bxp825dsyz")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/json-iterator/go")) + (propagated-inputs + `(("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0) + ("go-github-com-modern-go-reflect2-0.0.0-20180701023420-4b7aa43c6742" + ,go-github-com-modern-go-reflect2-0.0.0-20180701023420-4b7aa43c6742) + ("go-github-com-modern-go-concurrent-0.0.0-20180228061459-e0a39a4cb421" + ,go-github-com-modern-go-concurrent-0.0.0-20180228061459-e0a39a4cb421) + ("go-github-com-google-gofuzz-1.0.0" + ,go-github-com-google-gofuzz-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/json-iterator/go") + (synopsis "Benchmark") + (description + "Package jsoniter implements encoding and decoding of JSON as defined in +@url{https://rfc-editor.org/rfc/rfc4627.html,RFC 4627} and provides interfaces with identical syntax of standard lib encoding/json. +Converting from encoding/json to jsoniter is no more than replacing the package with jsoniter +and variable type declarations (if any). +jsoniter interfaces gives 100% compatibility with code using standard lib. +") + (license license:expat))) + +(define-public go-github-com-mattn-go-colorable-0.0.9 + (package + (name "go-github-com-mattn-go-colorable") + (version "0.0.9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mattn/go-colorable") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1nwjmsppsjicr7anq8na6md7b1z84l9ppnlr045hhxjvbkqwalvx")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mattn/go-colorable")) + (home-page "https://github.com/mattn/go-colorable") + (synopsis "go-colorable") + (description "Colorable writer for windows.") + (license license:expat))) + +(define-public go-github-com-mattn-go-isatty-0.0.4 + (package + (name "go-github-com-mattn-go-isatty") + (version "0.0.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mattn/go-isatty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0zs92j2cqaw9j8qx1sdxpv3ap0rgbs0vrvi72m40mg8aa36gd39w")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mattn/go-isatty")) + (home-page "https://github.com/mattn/go-isatty") + (synopsis "go-isatty") + (description "Package isatty implements interface to isatty +") + (license license:expat))) + +(define-public go-github-com-mattn-go-runewidth-0.0.2 + (package + (name "go-github-com-mattn-go-runewidth") + (version "0.0.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mattn/go-runewidth") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0vkrfrz3fzn5n6ix4k8s0cg0b448459sldq8bp4riavsxm932jzb")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mattn/go-runewidth")) + (home-page "https://github.com/mattn/go-runewidth") + (synopsis "go-runewidth") + (description + "This package provides functions to get fixed width of the character or string.") + (license license:expat))) + +(define-public go-github-com-olekukonko-tablewriter-0.0.0-20170122224234-a0225b3f23b5 + (package + (name "go-github-com-olekukonko-tablewriter") + (version "0.0.0-20170122224234-a0225b3f23b5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/olekukonko/tablewriter") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0bp9r6xzy6d3p7l2hjmvr25y3rp3p8c9xv1agkllkksm45ng6681")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/olekukonko/tablewriter")) + (home-page "https://github.com/olekukonko/tablewriter") + (synopsis "ASCII Table Writer") + (description "Create & Generate text based table +") + (license license:expat))) + +(define-public go-github-com-soheilhy-cmux-0.1.4 + (package + (name "go-github-com-soheilhy-cmux") + (version "0.1.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/soheilhy/cmux") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1f736g68d9vwlyfb6g0fxkr0r875369xafk30cz8kaq5niaqwv0h")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/soheilhy/cmux")) + (home-page "https://github.com/soheilhy/cmux") + (synopsis "cmux: Connection Mux") + (description + "Package cmux is a library to multiplex network connections based on +their payload. Using cmux, you can serve different protocols from the +same listener. +") + (license license:asl2.0))) + +(define-public go-github-com-spf13-cobra-0.0.3 + (package + (name "go-github-com-spf13-cobra") + (version "0.0.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/spf13/cobra") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1q1nsx05svyv9fv3fy6xv6gs9ffimkyzsfm49flvl3wnvf1ncrkd")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/spf13/cobra")) + (home-page "https://github.com/spf13/cobra") + (synopsis "Table of Contents") + (description + "Package cobra is a commander providing a simple interface to create powerful modern CLI interfaces. +In addition to providing an interface, Cobra simultaneously provides a controller to organize your application code. +") + (license license:asl2.0))) + +(define-public go-github-com-spf13-pflag-1.0.1 + (package + (name "go-github-com-spf13-pflag") + (version "1.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/spf13/pflag") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0nr4mdpfhhk94hq4ymn5b2sxc47b29p1akxd8b0hx4dvdybmipb5")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/spf13/pflag")) + (home-page "https://github.com/spf13/pflag") + (synopsis "Description") + (description + "Package pflag is a drop-in replacement for Go's flag package, implementing +POSIX/GNU-style --flags. +") + (license license:bsd-3))) + +(define-public go-github-com-tmc-grpc-websocket-proxy-0.0.0-20170815181823-89b8d40f7ca8 + (package + (name "go-github-com-tmc-grpc-websocket-proxy") + (version "0.0.0-20170815181823-89b8d40f7ca8") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/tmc/grpc-websocket-proxy") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1bg6m0cycy5sww175zkbnhi9lvzb08iicc8xka8klrgaa9mc5nsk")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/tmc/grpc-websocket-proxy")) + (home-page "https://github.com/tmc/grpc-websocket-proxy") + (synopsis "grpc-websocket-proxy") + (description + "Wrap your grpc-gateway mux with this helper to expose streaming endpoints over websockets.") + (license license:expat))) + +(define-public go-github-com-urfave-cli-1.20.0 + (package + (name "go-github-com-urfave-cli") + (version "1.20.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/urfave/cli") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0y6f4sbzkiiwrxbl15biivj8c7qwxnvm3zl2dd3mw4wzg4x10ygj")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/urfave/cli")) + (home-page "https://github.com/urfave/cli") + (synopsis "cli") + (description + "Package cli provides a minimal framework for creating and organizing command line +Go applications. cli is designed to be easy to understand and write, the most simple +cli application can be written as follows: +") + (license license:expat))) + +(define-public go-github-com-xiang90-probing-0.0.0-20190116061207-43a291ad63a2 + (package + (name "go-github-com-xiang90-probing") + (version "0.0.0-20190116061207-43a291ad63a2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/xiang90/probing") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1z22ms16j5j42775mf31isanwx2pwr1d8wqw8006dczjv36qnz5i")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/xiang90/probing")) + (home-page "https://github.com/xiang90/probing") + (synopsis "Getting Started") + (description "We first need to serve the probing HTTP handler.") + (license license:expat))) + +(define-public go-go-etcd-io-bbolt-1.3.3 + (package + (name "go-go-etcd-io-bbolt") + (version "1.3.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/etcd-io/bbolt") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0dn0zngks9xiz0rrrb3911f73ghl64z84jsmzai2yfmzqr7cdkqc")))) + (build-system go-build-system) + (arguments '(#:import-path "go.etcd.io/bbolt")) + (home-page "https://go.etcd.io/bbolt") + (synopsis "bbolt") + (description + "package bbolt implements a low-level key/value store in pure Go. It supports +fully serializable transactions, ACID semantics, and lock-free MVCC with +multiple readers and a single writer. Bolt can be used for projects that +want a simple data store without the need to add large dependencies such as +Postgres or MySQL. +") + (license license:expat))) + +(define-public go-go-uber-org-atomic-1.3.2 + (package + (name "go-go-uber-org-atomic") + (version "1.3.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/uber-go/atomic") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "11pzvjys5ddjjgrv94pgk9pnip9yyb54z7idf33zk7p7xylpnsv6")))) + (build-system go-build-system) + (arguments '(#:import-path "go.uber.org/atomic")) + (home-page "https://go.uber.org/atomic") + (synopsis "atomic") + (description + "Package atomic provides simple wrappers around numerics to enforce atomic +access. +") + (license license:expat))) + +(define-public go-golang-org-x-net-0.0.0-20190813141303-74dc4d7220e7 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190813141303-74dc4d7220e7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0563yswwqknxx2gsvl0qikn0lmwalilbng8i12iw4d3v40n23s0l")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20190826190057-c7b8b68b1456 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190826190057-c7b8b68b1456") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0lqnnrx5prrvkinnhgyvzzhcyvi8x5w54rlp336xjhpslkgqn132")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-time-0.0.0-20180412165947-fbb02b2291d2 + (package + (name "go-golang-org-x-time") + (version "0.0.0-20180412165947-fbb02b2291d2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/time") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0jjqcv6rzihlgg4i797q80g1f6ch5diz2kxqh6488gwkb6nds4h4")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/time")) + (home-page "https://golang.org/x/time") + (synopsis "Go Time") + (description "This repository provides supplementary Go time packages.") + (license license:bsd-3))) + +(define-public go-google-golang-org-grpc-1.26.0 + (package + (name "go-google-golang-org-grpc") + (version "1.26.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1qsb2mcswpp3vd7i9gfvz4a3ypdwk2svhhn09nyywgb1vvw80krv")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" + ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-github-com-google-go-cmp-0.2.0" + ,go-github-com-google-go-cmp-0.2.0) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2) + ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" + ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) + ("go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473" + ,go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-gopkg-in-cheggaaa-pb-v1-1.0.25 + (package + (name "go-gopkg-in-cheggaaa-pb-v1") + (version "1.0.25") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/cheggaaa/pb.v1") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0vxqiw6f3xyv0zy3g4lksf8za0z8i0hvfpw92hqimsy84f79j3dp")))) + (build-system go-build-system) + (arguments + '(#:import-path + "gopkg.in/cheggaaa/pb.v1" + #:unpack-path + "gopkg.in/cheggaaa/pb.v1")) + (home-page "https://gopkg.in/cheggaaa/pb.v1") + (synopsis "Terminal progress bar for Go") + (description "Simple console progress bars +") + (license license:bsd-3))) + +(define-public go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489 + (package + (name "go-go-etcd-io-etcd") + (version "0.5.0-alpha.5.0.20200910180754-dd1b699fc489") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/etcd-io/etcd") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "11zkvkq7ipqi0n8y05zgn8lf7qm59xdk75x7jbxj5sflx38yfa0k")))) + (build-system go-build-system) + (arguments '(#:import-path "go.etcd.io/etcd")) + (propagated-inputs + `(("go-sigs-k8s-io-yaml-1.1.0" ,go-sigs-k8s-io-yaml-1.1.0) + ("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" + ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) + ("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) + ("go-gopkg-in-cheggaaa-pb-v1-1.0.25" + ,go-gopkg-in-cheggaaa-pb-v1-1.0.25) + ("go-google-golang-org-grpc-1.26.0" ,go-google-golang-org-grpc-1.26.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-time-0.0.0-20180412165947-fbb02b2291d2" + ,go-golang-org-x-time-0.0.0-20180412165947-fbb02b2291d2) + ("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) + ("go-golang-org-x-sys-0.0.0-20190826190057-c7b8b68b1456" + ,go-golang-org-x-sys-0.0.0-20190826190057-c7b8b68b1456) + ("go-golang-org-x-net-0.0.0-20190813141303-74dc4d7220e7" + ,go-golang-org-x-net-0.0.0-20190813141303-74dc4d7220e7) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2) + ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) + ("go-go-uber-org-multierr-1.1.0" ,go-go-uber-org-multierr-1.1.0) + ("go-go-uber-org-atomic-1.3.2" ,go-go-uber-org-atomic-1.3.2) + ("go-go-etcd-io-bbolt-1.3.3" ,go-go-etcd-io-bbolt-1.3.3) + ("go-github-com-xiang90-probing-0.0.0-20190116061207-43a291ad63a2" + ,go-github-com-xiang90-probing-0.0.0-20190116061207-43a291ad63a2) + ("go-github-com-urfave-cli-1.20.0" ,go-github-com-urfave-cli-1.20.0) + ("go-github-com-tmc-grpc-websocket-proxy-0.0.0-20170815181823-89b8d40f7ca8" + ,go-github-com-tmc-grpc-websocket-proxy-0.0.0-20170815181823-89b8d40f7ca8) + ("go-github-com-spf13-pflag-1.0.1" ,go-github-com-spf13-pflag-1.0.1) + ("go-github-com-spf13-cobra-0.0.3" ,go-github-com-spf13-cobra-0.0.3) + ("go-github-com-soheilhy-cmux-0.1.4" + ,go-github-com-soheilhy-cmux-0.1.4) + ("go-github-com-sirupsen-logrus-1.4.2" + ,go-github-com-sirupsen-logrus-1.4.2) + ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" + ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) + ("go-github-com-prometheus-client-golang-1.0.0" + ,go-github-com-prometheus-client-golang-1.0.0) + ("go-github-com-olekukonko-tablewriter-0.0.0-20170122224234-a0225b3f23b5" + ,go-github-com-olekukonko-tablewriter-0.0.0-20170122224234-a0225b3f23b5) + ("go-github-com-modern-go-reflect2-1.0.1" + ,go-github-com-modern-go-reflect2-1.0.1) + ("go-github-com-mattn-go-runewidth-0.0.2" + ,go-github-com-mattn-go-runewidth-0.0.2) + ("go-github-com-mattn-go-isatty-0.0.4" + ,go-github-com-mattn-go-isatty-0.0.4) + ("go-github-com-mattn-go-colorable-0.0.9" + ,go-github-com-mattn-go-colorable-0.0.9) + ("go-github-com-json-iterator-go-1.1.7" + ,go-github-com-json-iterator-go-1.1.7) + ("go-github-com-jonboulle-clockwork-0.1.0" + ,go-github-com-jonboulle-clockwork-0.1.0) + ("go-github-com-inconshreveable-mousetrap-1.0.0" + ,go-github-com-inconshreveable-mousetrap-1.0.0) + ("go-github-com-grpc-ecosystem-grpc-gateway-1.9.5" + ,go-github-com-grpc-ecosystem-grpc-gateway-1.9.5) + ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" + ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) + ("go-github-com-grpc-ecosystem-go-grpc-middleware-1.0.1-0.20190118093823-f849b5445de4" + ,go-github-com-grpc-ecosystem-go-grpc-middleware-1.0.1-0.20190118093823-f849b5445de4) + ("go-github-com-gorilla-websocket-0.0.0-20170926233335-4201258b820c" + ,go-github-com-gorilla-websocket-0.0.0-20170926233335-4201258b820c) + ("go-github-com-google-uuid-1.0.0" ,go-github-com-google-uuid-1.0.0) + ("go-github-com-google-btree-1.0.0" ,go-github-com-google-btree-1.0.0) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2) + ("go-github-com-golang-groupcache-0.0.0-20160516000752-02826c3e7903" + ,go-github-com-golang-groupcache-0.0.0-20160516000752-02826c3e7903) + ("go-github-com-gogo-protobuf-1.2.1" + ,go-github-com-gogo-protobuf-1.2.1) + ("go-github-com-fatih-color-1.7.0" ,go-github-com-fatih-color-1.7.0) + ("go-github-com-dustin-go-humanize-0.0.0-20171111073723-bb3d318650d4" + ,go-github-com-dustin-go-humanize-0.0.0-20171111073723-bb3d318650d4) + ("go-github-com-dgrijalva-jwt-go-3.2.0+incompatible" + ,go-github-com-dgrijalva-jwt-go-3.2.0+incompatible) + ("go-github-com-creack-pty-1.1.7" ,go-github-com-creack-pty-1.1.7) + ("go-github-com-coreos-pkg-0.0.0-20160727233714-3ac0863d7acf" + ,go-github-com-coreos-pkg-0.0.0-20160727233714-3ac0863d7acf) + ("go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7" + ,go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7) + ("go-github-com-coreos-go-semver-0.2.0" + ,go-github-com-coreos-go-semver-0.2.0) + ("go-github-com-cockroachdb-datadriven-0.0.0-20190809214429-80d97fb3cbaa" + ,go-github-com-cockroachdb-datadriven-0.0.0-20190809214429-80d97fb3cbaa) + ("go-github-com-bgentry-speakeasy-0.1.0" + ,go-github-com-bgentry-speakeasy-0.1.0))) + (home-page "https://go.etcd.io/etcd") + (synopsis "etcd") + (description + "Package main is a simple wrapper of the real etcd entrypoint package +(located at github.com/coreos/etcd/etcdmain) to ensure that etcd is still +\"go getable\"; e.g. `go get github.com/coreos/etcd` works as expected and +builds a binary in $GOBIN/etcd +") + (license license:asl2.0))) + +(define-public go-gopkg-in-natefinch-lumberjack-v2-2.0.0 + (package + (name "go-gopkg-in-natefinch-lumberjack-v2") + (version "2.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/natefinch/lumberjack.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1m2sxypk7p805jvc68padvylyx5v7cwkh5klnnxxr0340kgspf08")))) + (build-system go-build-system) + (arguments + '(#:import-path + "gopkg.in/natefinch/lumberjack.v2" + #:unpack-path + "gopkg.in/natefinch/lumberjack.v2")) + (home-page "https://gopkg.in/natefinch/lumberjack.v2") + (synopsis "lumberjack") + (description "Package lumberjack provides a rolling logger. +") + (license license:expat))) + +(define-public go-gopkg-in-square-go-jose-v2-2.2.2 + (package + (name "go-gopkg-in-square-go-jose-v2") + (version "2.2.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/square/go-jose.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1cpvfqw7pw8m8wfj8nda4kam0z48q3gp6b9a3a0wr90zv9ldszbv")))) + (build-system go-build-system) + (arguments + '(#:import-path + "gopkg.in/square/go-jose.v2" + #:unpack-path + "gopkg.in/square/go-jose.v2")) + (home-page "https://gopkg.in/square/go-jose.v2") + (synopsis "Go JOSE") + (description + "Package jose aims to provide an implementation of the Javascript Object Signing +and Encryption set of standards. It implements encryption and signing based on +the JSON Web Encryption and JSON Web Signature standards, with optional JSON +Web Token support available in a sub-package. The library supports both the +compact and full serialization formats, and has optional support for multiple +recipients. +") + (license license:asl2.0))) + +(define-public go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.15 + (package + (name "go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client") + (version "0.0.15") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes-sigs/apiserver-network-proxy") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "00ad9yjr3g1pj118xy063z7rnydkilqmvz9xf89vdva2kjqd7fal")))) + (build-system go-build-system) + (arguments + '(#:import-path + "sigs.k8s.io/apiserver-network-proxy/konnectivity-client")) + (propagated-inputs + `(("go-k8s-io-klog-v2-2.0.0" ,go-k8s-io-klog-v2-2.0.0) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-github-com-golang-protobuf-1.4.0" + ,go-github-com-golang-protobuf-1.4.0))) + (home-page + "https://sigs.k8s.io/apiserver-network-proxy/konnectivity-client") + (synopsis #f) + (description #f) + (license license:asl2.0))) + +(define-public go-k8s-io-apiserver-0.20.6 + (package + (name "go-k8s-io-apiserver") + (version "0.20.6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes/apiserver") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0b53aw2cp9i2v5kg1m2s5kwkz7525ii8vs1g7d8yc2j980aar9y3")))) + (build-system go-build-system) + (arguments '(#:import-path "k8s.io/apiserver")) + (propagated-inputs + `(("go-k8s-io-component-base-0.20.6" ,go-k8s-io-component-base-0.20.6) + ("go-k8s-io-client-go-0.20.6" ,go-k8s-io-client-go-0.20.6) + ("go-k8s-io-apimachinery-0.20.6" ,go-k8s-io-apimachinery-0.20.6) + ("go-k8s-io-api-0.20.6" ,go-k8s-io-api-0.20.6) + ("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) + ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.3" + ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.3) + ("go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.15" + ,go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.15) + ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" + ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) + ("go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd" + ,go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd) + ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) + ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) + ("go-gopkg-in-square-go-jose-v2-2.2.2" + ,go-gopkg-in-square-go-jose-v2-2.2.2) + ("go-gopkg-in-natefinch-lumberjack-v2-2.0.0" + ,go-gopkg-in-natefinch-lumberjack-v2-2.0.0) + ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) + ("go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a" + ,go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a) + ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" + ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) + ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" + ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) + ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" + ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) + ("go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0" + ,go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0) + ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) + ("go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489" + ,go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489) + ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) + ("go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5" + ,go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) + ("go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021" + ,go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822" + ,go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822) + ("go-github-com-mailru-easyjson-0.7.0" + ,go-github-com-mailru-easyjson-0.7.0) + ("go-github-com-hashicorp-golang-lru-0.5.1" + ,go-github-com-hashicorp-golang-lru-0.5.1) + ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" + ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) + ("go-github-com-gorilla-websocket-1.4.2" + ,go-github-com-gorilla-websocket-1.4.2) + ("go-github-com-googleapis-gnostic-0.4.1" + ,go-github-com-googleapis-gnostic-0.4.1) + ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) + ("go-github-com-google-gofuzz-1.1.0" + ,go-github-com-google-gofuzz-1.1.0) + ("go-github-com-google-go-cmp-0.5.2" + ,go-github-com-google-go-cmp-0.5.2) + ("go-github-com-gogo-protobuf-1.3.2" + ,go-github-com-gogo-protobuf-1.3.2) + ("go-github-com-go-openapi-spec-0.19.3" + ,go-github-com-go-openapi-spec-0.19.3) + ("go-github-com-evanphx-json-patch-4.9.0+incompatible" + ,go-github-com-evanphx-json-patch-4.9.0+incompatible) + ("go-github-com-emicklei-go-restful-2.9.5+incompatible" + ,go-github-com-emicklei-go-restful-2.9.5+incompatible) + ("go-github-com-dustin-go-humanize-1.0.0" + ,go-github-com-dustin-go-humanize-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1) + ("go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f" + ,go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f) + ("go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e" + ,go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e) + ("go-github-com-coreos-go-semver-0.3.0" + ,go-github-com-coreos-go-semver-0.3.0) + ("go-github-com-coreos-go-oidc-2.1.0+incompatible" + ,go-github-com-coreos-go-oidc-2.1.0+incompatible))) + (home-page "https://k8s.io/apiserver") + (synopsis "apiserver") + (description + "Generic library for building a Kubernetes aggregated API server.") + (license license:asl2.0))) + +(define-public go-github-com-blang-semver-3.5.1+incompatible + (package + (name "go-github-com-blang-semver") + (version "3.5.1+incompatible") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/blang/semver") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "13ws259bwcibkclbr82ilhk6zadm63kxklxhk12wayklj8ghhsmy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/blang/semver")) + (home-page "https://github.com/blang/semver") + (synopsis "semver for golang") + (description + "semver is a @url{http://semver.org/,Semantic Versioning} library written in golang. It fully covers spec version @code{2.0.0}.") + (license license:expat))) + +(define-public go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369 + (package + (name "go-github-com-matttproud-golang-protobuf-extensions") + (version "1.0.2-0.20181231171920-c182affec369") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/matttproud/golang_protobuf_extensions") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1xqsf9vpcrd4hp95rl6kgmjvkv1df4aicfw4l5vfcxcwxknfx2xs")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/matttproud/golang_protobuf_extensions")) + (propagated-inputs + `(("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" + ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0))) + (home-page "https://github.com/matttproud/golang_protobuf_extensions") + (synopsis "Overview") + (description + "This repository provides various Protocol Buffer extensions for the Go +language (golang), namely support for record length-delimited message +streaming.") + (license license:asl2.0))) + +(define-public go-github-com-azure-go-ansiterm-0.0.0-20170929234023-d6e3b3328b78 + (package + (name "go-github-com-azure-go-ansiterm") + (version "0.0.0-20170929234023-d6e3b3328b78") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/Azure/go-ansiterm") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "010khrkhkf9cxlvvb6ncqv4c1qcdmpbz9jn38g4fxf4xsma8xx1q")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/Azure/go-ansiterm")) + (home-page "https://github.com/Azure/go-ansiterm") + (synopsis "go-ansiterm") + (description + "This is a cross platform Ansi Terminal Emulation library. It reads a stream of Ansi characters and produces the appropriate function calls. The results of the function calls are platform dependent.") + (license license:expat))) + +(define-public go-gotest-tools-2.2.0+incompatible + (package + (name "go-gotest-tools") + (version "2.2.0+incompatible") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gotestyourself/gotest.tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0yif3gdyckmf8i54jq0xn00kflla5rhib9sarw66ngnbl7bn9kyl")))) + (build-system go-build-system) + (arguments '(#:import-path "gotest.tools")) + (home-page "https://gotest.tools") + (synopsis "gotest.tools") + (description + "Package gotesttools is a collection of packages to augment `testing` and +support common patterns. +") + (license license:asl2.0))) + +(define-public go-github-com-spf13-pflag-1.0.3 + (package + (name "go-github-com-spf13-pflag") + (version "1.0.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/spf13/pflag") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1cj3cjm7d3zk0mf1xdybh0jywkbbw7a6yr3y22x9sis31scprswd")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/spf13/pflag")) + (home-page "https://github.com/spf13/pflag") + (synopsis "Description") + (description + "Package pflag is a drop-in replacement for Go's flag package, implementing +POSIX/GNU-style --flags. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20190624222133-a101b041ded4 + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20190624222133-a101b041ded4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1pm50dybm5wixjjspvfpafjmiy81b1zp08h13gxc5cylrfgncrfl")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" + ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-gotest-tools-v3-3.0.2 + (package + (name "go-gotest-tools-v3") + (version "3.0.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gotestyourself/gotest.tools") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0cap2aq2wphnbkkzkck5zdjxb64q3jqxfwpkgqys7279rbr8cvjm")))) + (build-system go-build-system) + (arguments + '(#:import-path "gotest.tools/v3" #:unpack-path "gotest.tools/v3")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20190624222133-a101b041ded4" + ,go-golang-org-x-tools-0.0.0-20190624222133-a101b041ded4) + ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) + ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) + ("go-github-com-google-go-cmp-0.3.0" + ,go-github-com-google-go-cmp-0.3.0))) + (home-page "https://gotest.tools/v3") + (synopsis "gotest.tools") + (description + "Package gotesttools is a collection of packages to augment `testing` and +support common patterns. +") + (license license:asl2.0))) + +(define-public go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd + (package + (name "go-github-com-moby-term") + (version "0.0.0-20200312100748-672ec06f55cd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/moby/term") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0xspasm3d101hmjsayrbx6az4r4ybbg5gkj13qybhpq674a6kkwn")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/moby/term")) + (propagated-inputs + `(("go-gotest-tools-v3-3.0.2" ,go-gotest-tools-v3-3.0.2) + ("go-gotest-tools-2.2.0+incompatible" + ,go-gotest-tools-2.2.0+incompatible) + ("go-golang-org-x-sys-0.0.0-20200302150141-5c8b2ff67527" + ,go-golang-org-x-sys-0.0.0-20200302150141-5c8b2ff67527) + ("go-github-com-sirupsen-logrus-1.4.2" + ,go-github-com-sirupsen-logrus-1.4.2) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-google-go-cmp-0.3.1" + ,go-github-com-google-go-cmp-0.3.1) + ("go-github-com-azure-go-ansiterm-0.0.0-20170929234023-d6e3b3328b78" + ,go-github-com-azure-go-ansiterm-0.0.0-20170929234023-d6e3b3328b78))) + (home-page "https://github.com/moby/term") + (synopsis "term - utilities for dealing with terminals") + (description + "Package term provides structures and helper functions to work with +terminal (state, sizes). +") + (license license:asl2.0))) + +(define-public go-github-com-beorn7-perks-1.0.1 + (package + (name "go-github-com-beorn7-perks") + (version "1.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/beorn7/perks") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "17n4yygjxa6p499dj3yaqzfww2g7528165cl13haj97hlx94dgl7")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/beorn7/perks")) + (home-page "https://github.com/beorn7/perks") + (synopsis "Perks for Go (golang.org)") + (description + "Perks contains the Go package quantile that computes approximate quantiles over +an unbounded data stream within low memory and CPU bounds.") + (license license:expat))) + +(define-public go-github-com-cespare-xxhash-v2-2.1.1 + (package + (name "go-github-com-cespare-xxhash-v2") + (version "2.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cespare/xxhash") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0rl5rs8546zj1vzggv38w93wx0b5dvav7yy5hzxa8kw7iikv1cgr")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/cespare/xxhash/v2")) + (home-page "https://github.com/cespare/xxhash") + (synopsis "xxhash") + (description + "Package xxhash implements the 64-bit variant of xxHash (XXH64) as described +at @url{http://cyan4973.github.io/xxHash/,http://cyan4973.github.io/xxHash/}. +") + (license license:expat))) + +(define-public go-github-com-golang-protobuf-1.4.2 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0m5z81im4nsyfgarjhppayk4hqnrwswr3nix9mj8pff8x9jvcjqw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.23.0" + ,go-google-golang-org-protobuf-1.23.0) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-github-com-prometheus-procfs-0.1.3 + (package + (name "go-github-com-prometheus-procfs") + (version "0.1.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/procfs") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "09wmlmvmjf49nchidqffc99wn6vl98v5k9qgyyrhqgv0015xskwa")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/procfs")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20200106162015-b016eb3dc98e" + ,go-golang-org-x-sys-0.0.0-20200106162015-b016eb3dc98e) + ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" + ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) + ("go-github-com-google-go-cmp-0.3.1" + ,go-github-com-google-go-cmp-0.3.1))) + (home-page "https://github.com/prometheus/procfs") + (synopsis "procfs") + (description + "Package procfs provides functions to retrieve system, kernel and process +metrics from the pseudo-filesystem proc. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-sys-0.0.0-20200615200032-f1bc736245b1 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200615200032-f1bc736245b1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fbmih4n2xw53qbpmc7msqf2660i4ryr0chbrsbj8mdalfrjr0vp")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-gopkg-in-yaml-v2-2.2.5 + (package + (name "go-gopkg-in-yaml-v2") + (version "2.2.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "08smz8dfyxp02ha74my9iszqa5qzgl3ksi28ilyp8lqipssiq6fg")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v2") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language. +") + (license license:asl2.0))) + +(define-public go-github-com-prometheus-client-golang-1.7.1 + (package + (name "go-github-com-prometheus-client-golang") + (version "1.7.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/client_golang") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0i9wbwjq3idgp9y0vv7fvg6g7zrqi9qlfw915xc49ahw83q2h61w")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/client_golang")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.5" ,go-gopkg-in-yaml-v2-2.2.5) + ("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" + ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) + ("go-golang-org-x-sys-0.0.0-20200615200032-f1bc736245b1" + ,go-golang-org-x-sys-0.0.0-20200615200032-f1bc736245b1) + ("go-github-com-stretchr-testify-1.4.0" + ,go-github-com-stretchr-testify-1.4.0) + ("go-github-com-prometheus-procfs-0.1.3" + ,go-github-com-prometheus-procfs-0.1.3) + ("go-github-com-prometheus-common-0.10.0" + ,go-github-com-prometheus-common-0.10.0) + ("go-github-com-prometheus-client-model-0.2.0" + ,go-github-com-prometheus-client-model-0.2.0) + ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) + ("go-github-com-json-iterator-go-1.1.10" + ,go-github-com-json-iterator-go-1.1.10) + ("go-github-com-golang-protobuf-1.4.2" + ,go-github-com-golang-protobuf-1.4.2) + ("go-github-com-cespare-xxhash-v2-2.1.1" + ,go-github-com-cespare-xxhash-v2-2.1.1) + ("go-github-com-beorn7-perks-1.0.1" + ,go-github-com-beorn7-perks-1.0.1))) + (home-page "https://github.com/prometheus/client_golang") + (synopsis "Prometheus Go client library") + (description + "This is the @url{http://golang.org,Go} client library for +@url{http://prometheus.io,Prometheus}. It has two separate parts, one for +instrumenting application code, and one for creating clients that talk to the +Prometheus HTTP API.") + (license license:asl2.0))) + +(define-public go-github-com-alecthomas-template-0.0.0-20190718012654-fb15b899a751 + (package + (name "go-github-com-alecthomas-template") + (version "0.0.0-20190718012654-fb15b899a751") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/alecthomas/template") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1vlasv4dgycydh5wx6jdcvz40zdv90zz1h7836z7lhsi2ymvii26")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/alecthomas/template")) + (home-page "https://github.com/alecthomas/template") + (synopsis "Go's") + (description + "Package template implements data-driven templates for generating textual output. +") + (license license:bsd-3))) + +(define-public go-github-com-alecthomas-units-0.0.0-20190717042225-c3de453c63f4 + (package + (name "go-github-com-alecthomas-units") + (version "0.0.0-20190717042225-c3de453c63f4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/alecthomas/units") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0js37zlgv37y61j4a2d46jh72xm5kxmpaiw0ya9v944bjpc386my")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/alecthomas/units")) + (home-page "https://github.com/alecthomas/units") + (synopsis "Units - Helpful unit multipliers and functions for Go") + (description + "Package units provides helpful unit multipliers and functions for Go. +") + (license license:expat))) + +(define-public go-github-com-go-kit-kit-0.9.0 + (package + (name "go-github-com-go-kit-kit") + (version "0.9.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/go-kit/kit") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "09038mnw705h7isbjp8dzgp2i04bp5rqkmifxvwc5xkh75s00qpw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/go-kit/kit")) + (home-page "https://github.com/go-kit/kit") + (synopsis "Go kit") + (description + "@strong{Go kit} is a @strong{programming toolkit} for building microservices +(or elegant monoliths) in Go. We solve common problems in distributed +systems and application architecture so you can focus on delivering +business value.") + (license license:expat))) + +(define-public go-github-com-go-logfmt-logfmt-0.4.0 + (package + (name "go-github-com-go-logfmt-logfmt") + (version "0.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/go-logfmt/logfmt") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "06smxc112xmixz78nyvk3b2hmc7wasf2sl5vxj1xz62kqcq9lzm9")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/go-logfmt/logfmt")) + (propagated-inputs + `(("go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515" + ,go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515))) + (home-page "https://github.com/go-logfmt/logfmt") + (synopsis "logfmt") + (description + "Package logfmt implements utilities to marshal and unmarshal data in the +logfmt format. The logfmt format records key/value pairs in a way that +balances readability for humans and simplicity of computer parsing. It is +most commonly used as a more human friendly alternative to JSON for +structured logging. +") + (license license:expat))) + +(define-public go-github-com-pkg-errors-0.8.1 + (package + (name "go-github-com-pkg-errors") + (version "0.8.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pkg/errors") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0g5qcb4d4fd96midz0zdk8b9kz8xkzwfa8kr1cliqbg8sxsy5vd1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pkg/errors")) + (home-page "https://github.com/pkg/errors") + (synopsis "errors") + (description "Package errors provides simple error handling primitives. +") + (license license:bsd-2))) + +(define-public go-github-com-beorn7-perks-1.0.0 + (package + (name "go-github-com-beorn7-perks") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/beorn7/perks") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1i1nz1f6g55xi2y3aiaz5kqfgvknarbfl4f0sx4nyyb4s7xb1z9x")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/beorn7/perks")) + (home-page "https://github.com/beorn7/perks") + (synopsis "Perks for Go (golang.org)") + (description + "Perks contains the Go package quantile that computes approximate quantiles over +an unbounded data stream within low memory and CPU bounds.") + (license license:expat))) + +(define-public go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90 + (package + (name "go-github-com-prometheus-client-model") + (version "0.0.0-20190129233127-fd36f4220a90") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/client_model") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1bs5d72k361llflgl94c22n0w53j30rsfh84smgk8mbjbcmjsaa5")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/client_model")) + (propagated-inputs + `(("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" + ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0))) + (home-page "https://github.com/prometheus/client_model") + (synopsis "Deprecation note") + (description + "This repository used to contain the code that defined both +the data model and the exposition format of Prometheus metrics.") + (license license:asl2.0))) + +(define-public go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc + (package + (name "go-github-com-alecthomas-template") + (version "0.0.0-20160405071501-a0175ee3bccc") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/alecthomas/template") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0qjgvvh26vk1cyfq9fadyhfgdj36f1iapbmr5xp6zqipldz8ffxj")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/alecthomas/template")) + (home-page "https://github.com/alecthomas/template") + (synopsis "Go's") + (description + "Package template implements data-driven templates for generating textual output. +") + (license license:bsd-3))) + +(define-public go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf + (package + (name "go-github-com-alecthomas-units") + (version "0.0.0-20151022065526-2efee857e7cf") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/alecthomas/units") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1j65b91qb9sbrml9cpabfrcf07wmgzzghrl7809hjjhrmbzri5bl")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/alecthomas/units")) + (home-page "https://github.com/alecthomas/units") + (synopsis "Units - Helpful unit multipliers and functions for Go") + (description + "Package units provides helpful unit multipliers and functions for Go. +") + (license license:expat))) + +(define-public go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973 + (package + (name "go-github-com-beorn7-perks") + (version "0.0.0-20180321164747-3a771d992973") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/beorn7/perks") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1l2lns4f5jabp61201sh88zf3b0q793w4zdgp9nll7mmfcxxjif3")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/beorn7/perks")) + (home-page "https://github.com/beorn7/perks") + (synopsis "Perks for Go (golang.org)") + (description + "Perks contains the Go package quantile that computes approximate quantiles over +an unbounded data stream within low memory and CPU bounds.") + (license license:expat))) + +(define-public go-github-com-go-kit-kit-0.8.0 + (package + (name "go-github-com-go-kit-kit") + (version "0.8.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/go-kit/kit") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1rcywbc2pvab06qyf8pc2rdfjv7r6kxdv2v4wnpqnjhz225wqvc0")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/go-kit/kit")) + (home-page "https://github.com/go-kit/kit") + (synopsis "Go kit") + (description + "@strong{Go kit} is a @strong{programming toolkit} for building microservices +(or elegant monoliths) in Go. We solve common problems in distributed +systems and application architecture so you can focus on delivering +business value.") + (license license:expat))) + +(define-public go-github-com-go-logfmt-logfmt-0.3.0 + (package + (name "go-github-com-go-logfmt-logfmt") + (version "0.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/go-logfmt/logfmt") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1gkgh3k5w1xwb2qbjq52p6azq3h1c1rr6pfwjlwj1zrijpzn2xb9")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/go-logfmt/logfmt")) + (home-page "https://github.com/go-logfmt/logfmt") + (synopsis "logfmt") + (description + "Package logfmt implements utilities to marshal and unmarshal data in the +logfmt format. The logfmt format records key/value pairs in a way that +balances readability for humans and simplicity of computer parsing. It is +most commonly used as a more human friendly alternative to JSON for +structured logging. +") + (license license:expat))) + +(define-public go-github-com-go-stack-stack-1.8.0 + (package + (name "go-github-com-go-stack-stack") + (version "1.8.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/go-stack/stack") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wk25751ryyvxclyp8jdk5c3ar0cmfr8lrjb66qbg4808x66b96v")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/go-stack/stack")) + (home-page "https://github.com/go-stack/stack") + (synopsis "stack") + (description + "Package stack implements utilities to capture, manipulate, and format call +stacks. It provides a simpler API than package runtime. +") + (license license:expat))) + +(define-public go-github-com-julienschmidt-httprouter-1.2.0 + (package + (name "go-github-com-julienschmidt-httprouter") + (version "1.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/julienschmidt/httprouter") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1k8bylc9s4vpvf5xhqh9h246dl1snxrzzz0614zz88cdh8yzs666")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/julienschmidt/httprouter")) + (home-page "https://github.com/julienschmidt/httprouter") + (synopsis "HttpRouter") + (description + "Package httprouter is a trie based high performance HTTP request router. +") + (license license:bsd-3))) + +(define-public go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515 + (package + (name "go-github-com-kr-logfmt") + (version "0.0.0-20140226030751-b84e30acd515") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/logfmt") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "02ldzxgznrfdzvghfraslhgp19la1fczcbzh7wm2zdc6lmpd1qq9")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/logfmt")) + (home-page "https://github.com/kr/logfmt") + (synopsis #f) + (description + "Package implements the decoding of logfmt key-value pairs. +") + (license license:expat))) + +(define-public go-github-com-matttproud-golang-protobuf-extensions-1.0.1 + (package + (name "go-github-com-matttproud-golang-protobuf-extensions") + (version "1.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/matttproud/golang_protobuf_extensions") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1d0c1isd2lk9pnfq2nk0aih356j30k3h1gi2w0ixsivi5csl7jya")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/matttproud/golang_protobuf_extensions")) + (home-page "https://github.com/matttproud/golang_protobuf_extensions") + (synopsis "Overview") + (description + "This repository provides various Protocol Buffer extensions for the Go +language (golang), namely support for record length-delimited message +streaming.") + (license license:asl2.0))) + +(define-public go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223 + (package + (name "go-github-com-mwitkow-go-conntrack") + (version "0.0.0-20161129095857-cc309e4a2223") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mwitkow/go-conntrack") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0nbrnpk7bkmqg9mzwsxlm0y8m7s9qd9phr1q30qlx2qmdmz7c1mf")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mwitkow/go-conntrack")) + (home-page "https://github.com/mwitkow/go-conntrack") + (synopsis "Go tracing and monitoring (Prometheus) for") + (description + "@url{https://prometheus.io/,Prometheus} monitoring and @url{https://godoc.org/golang.org/x/net/trace#EventLog,(code x/net/trace)} tracing wrappers @code{net.Conn}, both inbound (@code{net.Listener}) and outbound (@code{net.Dialer}).") + (license license:asl2.0))) + +(define-public go-github-com-pkg-errors-0.8.0 + (package + (name "go-github-com-pkg-errors") + (version "0.8.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pkg/errors") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "001i6n71ghp2l6kdl3qq1v2vmghcz3kicv9a5wgcihrzigm75pp5")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pkg/errors")) + (home-page "https://github.com/pkg/errors") + (synopsis "errors") + (description "Package errors provides simple error handling primitives. +") + (license license:bsd-2))) + +(define-public go-github-com-prometheus-client-golang-0.9.1 + (package + (name "go-github-com-prometheus-client-golang") + (version "0.9.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/client_golang") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "01gnylazia30pcp069xcng482gwmm3xcx5zgrlwdkhic1lyb6i9l")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/client_golang")) + (home-page "https://github.com/prometheus/client_golang") + (synopsis "Prometheus Go client library") + (description + "This is the @url{http://golang.org,Go} client library for +@url{http://prometheus.io,Prometheus}. It has two separate parts, one for +instrumenting application code, and one for creating clients that talk to the +Prometheus HTTP API.") + (license license:asl2.0))) + +(define-public go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910 + (package + (name "go-github-com-prometheus-client-model") + (version "0.0.0-20180712105110-5c3871d89910") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/client_model") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "04psf81l9fjcwascsys428v03fx4fi894h7fhrj2vvcz723q57k0")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/client_model")) + (home-page "https://github.com/prometheus/client_model") + (synopsis "Deprecation note") + (description + "This repository used to contain the code that defined both +the data model and the exposition format of Prometheus metrics.") + (license license:asl2.0))) + +(define-public go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d + (package + (name "go-github-com-prometheus-procfs") + (version "0.0.0-20181005140218-185b4288413d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/procfs") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0d85429kdw5dgj5zhyiz1sq3i5691vj2gjnda93nnxxzx9acg8cv")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/procfs")) + (home-page "https://github.com/prometheus/procfs") + (synopsis "procfs") + (description + "Package procfs provides functions to retrieve system, kernel and process +metrics from the pseudo-filesystem proc. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-crypto-0.0.0-20180904163835-0709b304e793 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20180904163835-0709b304e793") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0i05s09y5pavmfh71fgih7syxg58x7a4krgd8am6d3mnahnmab5c")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20180905080454-ebe1bf3edb33") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0rkspxyjxdmc9f4n09hgkwj8jjd8z5p8mc9z8vwqwqcwrqv4sg7c")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-sirupsen-logrus-1.2.0 + (package + (name "go-github-com-sirupsen-logrus") + (version "1.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sirupsen/logrus") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0r6334x2bls8ddznvzaldx4g88msjjns4mlks95rqrrg7h0ijigg")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/sirupsen/logrus")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33" + ,go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33) + ("go-golang-org-x-crypto-0.0.0-20180904163835-0709b304e793" + ,go-golang-org-x-crypto-0.0.0-20180904163835-0709b304e793) + ("go-github-com-stretchr-testify-1.2.2" + ,go-github-com-stretchr-testify-1.2.2) + ("go-github-com-stretchr-objx-0.1.1" + ,go-github-com-stretchr-objx-0.1.1) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.1" + ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.1) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/sirupsen/logrus") + (synopsis "Logrus") + (description + "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. +") + (license license:expat))) + +(define-public go-golang-org-x-net-0.0.0-20181114220301-adae6a3d119a + (package + (name "go-golang-org-x-net") + (version "0.0.0-20181114220301-adae6a3d119a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fx860zsgzqk28j7lmp96qsfrgb0kzbfjvr294hywswcbwdwkb01")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-github-com-prometheus-common-0.4.1 + (package + (name "go-github-com-prometheus-common") + (version "0.4.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/common") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0sf4sjdckblz1hqdfvripk3zyp8xq89w7q75kbsyg4c078af896s")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/common")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1) + ("go-gopkg-in-alecthomas-kingpin-v2-2.2.6" + ,go-gopkg-in-alecthomas-kingpin-v2-2.2.6) + ("go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5" + ,go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5) + ("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" + ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) + ("go-golang-org-x-net-0.0.0-20181114220301-adae6a3d119a" + ,go-golang-org-x-net-0.0.0-20181114220301-adae6a3d119a) + ("go-github-com-sirupsen-logrus-1.2.0" + ,go-github-com-sirupsen-logrus-1.2.0) + ("go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d" + ,go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d) + ("go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910" + ,go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910) + ("go-github-com-prometheus-client-golang-0.9.1" + ,go-github-com-prometheus-client-golang-0.9.1) + ("go-github-com-pkg-errors-0.8.0" ,go-github-com-pkg-errors-0.8.0) + ("go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223" + ,go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223) + ("go-github-com-matttproud-golang-protobuf-extensions-1.0.1" + ,go-github-com-matttproud-golang-protobuf-extensions-1.0.1) + ("go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515" + ,go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515) + ("go-github-com-julienschmidt-httprouter-1.2.0" + ,go-github-com-julienschmidt-httprouter-1.2.0) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0) + ("go-github-com-gogo-protobuf-1.1.1" + ,go-github-com-gogo-protobuf-1.1.1) + ("go-github-com-go-stack-stack-1.8.0" + ,go-github-com-go-stack-stack-1.8.0) + ("go-github-com-go-logfmt-logfmt-0.3.0" + ,go-github-com-go-logfmt-logfmt-0.3.0) + ("go-github-com-go-kit-kit-0.8.0" ,go-github-com-go-kit-kit-0.8.0) + ("go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973" + ,go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973) + ("go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf" + ,go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf) + ("go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc" + ,go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc))) + (home-page "https://github.com/prometheus/common") + (synopsis "Common") + (description + "This repository contains Go libraries that are shared across Prometheus +components and libraries. They are considered internal to Prometheus, without +any stability guarantees for external usage.") + (license license:asl2.0))) + +(define-public go-github-com-prometheus-procfs-0.0.2 + (package + (name "go-github-com-prometheus-procfs") + (version "0.0.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/procfs") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0s7pvs7fgnfpmym3cd0k219av321h9sf3yvdlnn3qy0ps280lg7k")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/procfs")) + (propagated-inputs + `(("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" + ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4))) + (home-page "https://github.com/prometheus/procfs") + (synopsis "procfs") + (description + "Package procfs provides functions to retrieve system, kernel and process +metrics from the pseudo-filesystem proc. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20181116152217-5ac8a444bdc5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "00zdrighflwc4iyizsag184nvl1cbkk02v73kpl5miprdrvzqlr4")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-prometheus-client-golang-1.0.0 + (package + (name "go-github-com-prometheus-client-golang") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/client_golang") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1f03ndyi3jq7zdxinnvzimz3s4z2374r6dikkc8i42xzb6d1bli6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/client_golang")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5" + ,go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5) + ("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0) + ("go-github-com-prometheus-procfs-0.0.2" + ,go-github-com-prometheus-procfs-0.0.2) + ("go-github-com-prometheus-common-0.4.1" + ,go-github-com-prometheus-common-0.4.1) + ("go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90" + ,go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90) + ("go-github-com-modern-go-reflect2-1.0.1" + ,go-github-com-modern-go-reflect2-1.0.1) + ("go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd" + ,go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd) + ("go-github-com-json-iterator-go-1.1.6" + ,go-github-com-json-iterator-go-1.1.6) + ("go-github-com-golang-protobuf-1.3.1" + ,go-github-com-golang-protobuf-1.3.1) + ("go-github-com-beorn7-perks-1.0.0" + ,go-github-com-beorn7-perks-1.0.0))) + (home-page "https://github.com/prometheus/client_golang") + (synopsis "Prometheus Go client library") + (description + "This is the @url{http://golang.org,Go} client library for +@url{http://prometheus.io,Prometheus}. It has two separate parts, one for +instrumenting application code, and one for creating clients that talk to the +Prometheus HTTP API.") + (license license:asl2.0))) + +(define-public go-github-com-prometheus-client-model-0.2.0 + (package + (name "go-github-com-prometheus-client-model") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/client_model") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0jffnz94d6ff39fr96b5w8i8yk26pwnrfggzz8jhi8k0yihg2c9d")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/client_model")) + (propagated-inputs + `(("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" + ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0))) + (home-page "https://github.com/prometheus/client_model") + (synopsis "Deprecation note") + (description + "This repository used to contain the code that defined both +the data model and the exposition format of Prometheus metrics.") + (license license:asl2.0))) + +(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.1 + (package + (name "go-github-com-konsorten-go-windows-terminal-sequences") + (version "1.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/konsorten/go-windows-terminal-sequences") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1lchgf27n276vma6iyxa0v1xds68n2g8lih5lavqnx5x6q5pw2ip")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) + (home-page "https://github.com/konsorten/go-windows-terminal-sequences") + (synopsis "Windows Terminal Sequences") + (description + "This library allow for enabling Windows terminal color support for Go.") + (license license:expat))) + +(define-public go-github-com-stretchr-objx-0.1.1 + (package + (name "go-github-com-stretchr-objx") + (version "0.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/objx") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0iph0qmpyqg4kwv8jsx6a56a7hhqq8swrazv40ycxk9rzr0s8yls")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/objx")) + (home-page "https://github.com/stretchr/objx") + (synopsis "Objx") + (description + "Objx - Go package for dealing with maps, slices, JSON and other data. +") + (license license:expat))) + +(define-public go-github-com-sirupsen-logrus-1.4.2 + (package + (name "go-github-com-sirupsen-logrus") + (version "1.4.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sirupsen/logrus") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "087k2lxrr9p9dh68yw71d05h5g9p5v26zbwd6j7lghinjfaw334x")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/sirupsen/logrus")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894" + ,go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894) + ("go-github-com-stretchr-testify-1.2.2" + ,go-github-com-stretchr-testify-1.2.2) + ("go-github-com-stretchr-objx-0.1.1" + ,go-github-com-stretchr-objx-0.1.1) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.1" + ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.1) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/sirupsen/logrus") + (synopsis "Logrus") + (description + "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. +") + (license license:expat))) + +(define-public go-gopkg-in-alecthomas-kingpin-v2-2.2.6 + (package + (name "go-gopkg-in-alecthomas-kingpin-v2") + (version "2.2.6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/alecthomas/kingpin.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0mndnv3hdngr3bxp7yxfd47cas4prv98sqw534mx7vp38gd88n5r")))) + (build-system go-build-system) + (arguments + '(#:import-path + "gopkg.in/alecthomas/kingpin.v2" + #:unpack-path + "gopkg.in/alecthomas/kingpin.v2")) + (home-page "https://gopkg.in/alecthomas/kingpin.v2") + (synopsis "Kingpin - A Go (golang) command line and flag parser") + (description + "Package kingpin provides command line interfaces like this: +") + (license license:expat))) + +(define-public go-gopkg-in-yaml-v2-2.2.4 + (package + (name "go-gopkg-in-yaml-v2") + (version "2.2.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "11bwj757wi8kdrcnlgfqb8vv2d2xdhlghmyagd19i62khrkchsg2")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v2") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language. +") + (license license:asl2.0))) + +(define-public go-github-com-prometheus-common-0.10.0 + (package + (name "go-github-com-prometheus-common") + (version "0.10.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/common") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ra7zfqsnvgfizzsxn3rk0dwhk7nx8p8082zgpvadbv2b0j1k01i")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/common")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.4" ,go-gopkg-in-yaml-v2-2.2.4) + ("go-gopkg-in-alecthomas-kingpin-v2-2.2.6" + ,go-gopkg-in-alecthomas-kingpin-v2-2.2.6) + ("go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894" + ,go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894) + ("go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980" + ,go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980) + ("go-github-com-sirupsen-logrus-1.4.2" + ,go-github-com-sirupsen-logrus-1.4.2) + ("go-github-com-prometheus-client-model-0.2.0" + ,go-github-com-prometheus-client-model-0.2.0) + ("go-github-com-prometheus-client-golang-1.0.0" + ,go-github-com-prometheus-client-golang-1.0.0) + ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) + ("go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223" + ,go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223) + ("go-github-com-matttproud-golang-protobuf-extensions-1.0.1" + ,go-github-com-matttproud-golang-protobuf-extensions-1.0.1) + ("go-github-com-julienschmidt-httprouter-1.2.0" + ,go-github-com-julienschmidt-httprouter-1.2.0) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2) + ("go-github-com-go-logfmt-logfmt-0.4.0" + ,go-github-com-go-logfmt-logfmt-0.4.0) + ("go-github-com-go-kit-kit-0.9.0" ,go-github-com-go-kit-kit-0.9.0) + ("go-github-com-alecthomas-units-0.0.0-20190717042225-c3de453c63f4" + ,go-github-com-alecthomas-units-0.0.0-20190717042225-c3de453c63f4) + ("go-github-com-alecthomas-template-0.0.0-20190718012654-fb15b899a751" + ,go-github-com-alecthomas-template-0.0.0-20190718012654-fb15b899a751))) + (home-page "https://github.com/prometheus/common") + (synopsis "Common") + (description + "This repository contains Go libraries that are shared across Prometheus +components and libraries. They are considered internal to Prometheus, without +any stability guarantees for external usage.") + (license license:asl2.0))) + +(define-public go-golang-org-x-sys-0.0.0-20200106162015-b016eb3dc98e + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200106162015-b016eb3dc98e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1k0qr26046d228gi6ngkfxp4m1rjgxk4jj75h0kh1cpyp91n5rja")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-prometheus-procfs-0.2.0 + (package + (name "go-github-com-prometheus-procfs") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/procfs") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0rkpyq1grk3qyfahnfry5qkxjg5qb10yh1l8cvm8b79nqsmdyjbm")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/procfs")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20200106162015-b016eb3dc98e" + ,go-golang-org-x-sys-0.0.0-20200106162015-b016eb3dc98e) + ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" + ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) + ("go-github-com-google-go-cmp-0.3.1" + ,go-github-com-google-go-cmp-0.3.1))) + (home-page "https://github.com/prometheus/procfs") + (synopsis "procfs") + (description + "Package procfs provides functions to retrieve system, kernel and process +metrics from the pseudo-filesystem proc. +") + (license license:asl2.0))) + +(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.3 + (package + (name "go-github-com-konsorten-go-windows-terminal-sequences") + (version "1.0.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/konsorten/go-windows-terminal-sequences") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1yrsd4s8vhjnxhwbigirymz89dn6qfjnhn28i33vvvdgf96j6ypl")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) + (home-page "https://github.com/konsorten/go-windows-terminal-sequences") + (synopsis "Windows Terminal Sequences") + (description + "This library allow for enabling Windows terminal color support for Go.") + (license license:expat))) + +(define-public go-github-com-stretchr-testify-1.2.2 + (package + (name "go-github-com-stretchr-testify") + (version "1.2.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0dlszlshlxbmmfxj5hlwgv3r22x0y1af45gn1vd198nvvs3pnvfs")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190422165155-953cdadca894") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0gkha4whk8xkcv3isigbs250akag99isxnd3v9xmy0kl3g88hxy1")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-sirupsen-logrus-1.6.0 + (package + (name "go-github-com-sirupsen-logrus") + (version "1.6.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sirupsen/logrus") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1zf9is1yxxnna0d1pyag2m9ziy3l27zb2j92p9msm1gx5jjrvzzj")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/sirupsen/logrus")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894" + ,go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894) + ("go-github-com-stretchr-testify-1.2.2" + ,go-github-com-stretchr-testify-1.2.2) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.3" + ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.3) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/sirupsen/logrus") + (synopsis "Logrus") + (description + "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. +") + (license license:expat))) + +(define-public go-go-uber-org-atomic-1.4.0 + (package + (name "go-go-uber-org-atomic") + (version "1.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/uber-go/atomic") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0c6yzx15c20719xii3dm0vyjd8i9jx45m0wh5yp1zf29b0gbljcy")))) + (build-system go-build-system) + (arguments '(#:import-path "go.uber.org/atomic")) + (home-page "https://go.uber.org/atomic") + (synopsis "atomic") + (description + "Package atomic provides simple wrappers around numerics to enforce atomic +access. +") + (license license:expat))) + +(define-public go-go-uber-org-multierr-1.1.0 + (package + (name "go-go-uber-org-multierr") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/uber-go/multierr") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1slfc6syvw8cvr6rbrjsy6ja5w8gsx0f8aq8qm16rp2x5c2pj07w")))) + (build-system go-build-system) + (arguments '(#:import-path "go.uber.org/multierr")) + (home-page "https://go.uber.org/multierr") + (synopsis "multierr") + (description + "Package multierr allows combining one or more errors together. +") + (license license:expat))) + +(define-public go-go-uber-org-zap-1.10.0 + (package + (name "go-go-uber-org-zap") + (version "1.10.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/uber-go/zap") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "10hdzr1rghwbsl6bbd30779dx44fh9mg9pq8d2cgqlknqxxpvpvr")))) + (build-system go-build-system) + (arguments '(#:import-path "go.uber.org/zap")) + (home-page "https://go.uber.org/zap") + (synopsis "â\x9a¡ zap") + (description "Package zap provides fast, structured, leveled logging. +") + (license license:expat))) + +(define-public go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262 + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20190425150028-36563e24a262") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0lasi96f6a1h11gkm8kl33x03pmxp369wrqq2dg7x7xv9nq76d6g")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" + ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-golang-org-x-text-0.0.0-20170915032832-14c0d48ead0c + (package + (name "go-golang-org-x-text") + (version "0.0.0-20170915032832-14c0d48ead0c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/text") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0y0nrj4hw7vby6m3iqklbf4v7njqlsx7s4pwfkwmvh1ryn1kb7d6")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/text")) + (home-page "https://golang.org/x/text") + (synopsis "Go Text") + (description + "text is a repository of text-related packages related to internationalization +(i18n) and localization (l10n), such as character encodings, text +transformations, and locale-specific text handling. +") + (license license:bsd-3))) + +(define-public go-rsc-io-sampler-1.3.0 + (package + (name "go-rsc-io-sampler") + (version "1.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/rsc/sampler") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0byxk2ynba50py805kcvbvjzh59l1r308i1xgyzpw6lff4xx9xjh")))) + (build-system go-build-system) + (arguments '(#:import-path "rsc.io/sampler")) + (propagated-inputs + `(("go-golang-org-x-text-0.0.0-20170915032832-14c0d48ead0c" + ,go-golang-org-x-text-0.0.0-20170915032832-14c0d48ead0c))) + (home-page "https://rsc.io/sampler") + (synopsis #f) + (description "Package sampler shows simple texts. +") + (license license:bsd-3))) + +(define-public go-rsc-io-quote-v3-3.1.0 + (package + (name "go-rsc-io-quote-v3") + (version "3.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/rsc/quote") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0nvv97hwwrl1mx5gzsbdm1ndnwpg3m7i2jb10ig9wily7zmvki0i")))) + (build-system go-build-system) + (arguments + '(#:import-path "rsc.io/quote/v3" #:unpack-path "rsc.io/quote/v3")) + (propagated-inputs `(("go-rsc-io-sampler-1.3.0" ,go-rsc-io-sampler-1.3.0))) + (home-page "https://rsc.io/quote/v3") + (synopsis #f) + (description "Package quote collects pithy sayings. +") + (license license:bsd-3))) + +(define-public go-github-com-golang-mock-1.4.1 + (package + (name "go-github-com-golang-mock") + (version "1.4.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/mock") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1zb4n285mv85dh3y2f8fqbs30h2dhzw7vbczr6z0zg2gqr6vzg0q")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/mock")) + (propagated-inputs + `(("go-rsc-io-quote-v3-3.1.0" ,go-rsc-io-quote-v3-3.1.0) + ("go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262" + ,go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262))) + (home-page "https://github.com/golang/mock") + (synopsis "gomock") + (description + "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It +integrates well with Go's built-in @code{testing} package, but can be used in other +contexts too.") + (license license:asl2.0))) + +(define-public go-github-com-golang-protobuf-1.3.4 + (package + (name "go-github-com-golang-protobuf") + (version "1.3.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12dclmj2if8l0069fby4psrpqby7p810dr1dr63nwx93g9jhvkmx")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-github-com-chzyer-logex-1.1.10 + (package + (name "go-github-com-chzyer-logex") + (version "1.1.10") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/chzyer/logex") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "08pbjj3wx9acavlwyr055isa8a5hnmllgdv5k6ra60l5y1brmlq4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/chzyer/logex")) + (home-page "https://github.com/chzyer/logex") + (synopsis #f) + (description #f) + (license #f))) + +(define-public go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e + (package + (name "go-github-com-chzyer-readline") + (version "0.0.0-20180603132655-2972be24d48e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/chzyer/readline") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "104q8dazj8yf6b089jjr82fy9h1g80zyyzvp3g8b44a7d8ngjj6r")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/chzyer/readline")) + (home-page "https://github.com/chzyer/readline") + (synopsis "Guide") + (description + "Readline is a pure go implementation for GNU-Readline kind library. +") + (license license:expat))) + +(define-public go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1 + (package + (name "go-github-com-chzyer-test") + (version "0.0.0-20180213035817-a1ea475d72b1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/chzyer/test") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0rns2aqk22i9xsgyap0pq8wi4cfaxsri4d9q6xxhhyma8jjsnj2k")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/chzyer/test")) + (home-page "https://github.com/chzyer/test") + (synopsis "test") + (description #f) + (license license:expat))) + +(define-public go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6 + (package + (name "go-github-com-ianlancetaylor-demangle") + (version "0.0.0-20181102032728-5e5cf60278f6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/ianlancetaylor/demangle") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fhjk11cip9c3jyj1byz9z77n6n2rlxmyz0xjx1zpn1da3cvri75")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/ianlancetaylor/demangle")) + (home-page "https://github.com/ianlancetaylor/demangle") + (synopsis "github.com/ianlancetaylor/demangle") + (description + "Package demangle defines functions that demangle GCC/LLVM +C++ and Rust symbol names. +This package recognizes names that were mangled according to the C++ ABI +defined at @url{http://codesourcery.com/cxx-abi/,http://codesourcery.com/cxx-abi/} and the Rust ABI +defined at +@url{https://rust-lang.github.io/rfcs/2603-rust-symbol-name-mangling-v0.html,https://rust-lang.github.io/rfcs/2603-rust-symbol-name-mangling-v0.html} +") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20191204072324-ce4227a45e2e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1s43wvqfml6ml5ks7iv2bis9d664g77mq86v7mfmjhn56x856g35")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-google-pprof-0.0.0-20200229191704-1ebb73c60ed3 + (package + (name "go-github-com-google-pprof") + (version "0.0.0-20200229191704-1ebb73c60ed3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/pprof") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1gdi9p4j1zfm5xlm488i5l0q3kk4q6hsmbmlk6p729i0di2n3ifa")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/pprof")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" + ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) + ("go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6" + ,go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6) + ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" + ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) + ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" + ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) + ("go-github-com-chzyer-logex-1.1.10" + ,go-github-com-chzyer-logex-1.1.10))) + (home-page "https://github.com/google/pprof") + (synopsis "Introduction") + (description + "pprof is a tool for collection, manipulation and visualization +of performance profiles. +") + (license license:asl2.0))) + +(define-public go-github-com-jstemmer-go-junit-report-0.9.1 + (package + (name "go-github-com-jstemmer-go-junit-report") + (version "0.9.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jstemmer/go-junit-report") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1knip80yir1cdsjlb3rzy0a4w3kl4ljpiciaz6hjzwqlfhnv7bkw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/jstemmer/go-junit-report")) + (home-page "https://github.com/jstemmer/go-junit-report") + (synopsis "go-junit-report") + (description + "Converts @code{go test} output to an xml report, suitable for applications that +expect junit xml reports (e.g. @url{http://jenkins-ci.org,Jenkins}).") + (license license:expat))) + +(define-public go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6 + (package + (name "go-github-com-golang-groupcache") + (version "0.0.0-20190702054246-869f871628b6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/groupcache") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0r4nk8129bvx50qb4xzjaay39b2h6k7cbdqqzdlanmc82ygczsbw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/groupcache")) + (home-page "https://github.com/golang/groupcache") + (synopsis "groupcache") + (description + "Package groupcache provides a data loading mechanism with caching +and de-duplication that works across a set of peer processes. +") + (license license:asl2.0))) + +(define-public go-github-com-golang-protobuf-1.3.1 + (package + (name "go-github-com-golang-protobuf") + (version "1.3.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "15am4s4646qy6iv0g3kkqq52rzykqjhm4bf08dk0fy2r58knpsyl")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-github-com-stretchr-testify-1.4.0 + (package + (name "go-github-com-stretchr-testify") + (version "1.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "187i5g88sxfy4vxpm7dw1gwv29pa2qaq475lxrdh5livh69wqfjb")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) + ("go-github-com-stretchr-objx-0.1.0" + ,go-github-com-stretchr-objx-0.1.0) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.0" + ,go-github-com-davecgh-go-spew-1.1.0))) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190502145724-3ef323f4f1fd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "15iw4gjvrnrx98rlny1qcaprp3577rh2b77byb38dr6m3q42rvc6")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20190425155659-357c62f0e4bb") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1h1a0wys83cc86s4w2hqmz78ixijw8f7qchmiwdv5xjvpg0i27c2")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" + ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) + ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) + ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" + ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) + ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" + ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) + ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" + ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd) + ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" + ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) + ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" + ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-google-golang-org-grpc-1.20.1 + (package + (name "go-google-golang-org-grpc") + (version "1.20.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0rj3fs6jillapiwnpkfn3v2jbl7a3zsb0lys4srswl26hjijviqq")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" + ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) + ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" + ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) + ("go-google-golang-org-appengine-1.1.0" + ,go-google-golang-org-appengine-1.1.0) + ("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" + ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" + ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0) + ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-client9-misspell-0.3.4" + ,go-github-com-client9-misspell-0.3.4) + ("go-github-com-burntsushi-toml-0.3.1" + ,go-github-com-burntsushi-toml-0.3.1) + ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-go-opencensus-io-0.22.3 + (package + (name "go-go-opencensus-io") + (version "0.22.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/census-instrumentation/opencensus-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0xj16iq5jp26hi2py7lsd8cvqh651fgn39y05gzvjdi88d9xd3nw")))) + (build-system go-build-system) + (arguments '(#:import-path "go.opencensus.io")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.20.1" ,go-google-golang-org-grpc-1.20.1) + ("go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb" + ,go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb) + ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) + ("go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd" + ,go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd) + ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" + ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) + ("go-github-com-stretchr-testify-1.4.0" + ,go-github-com-stretchr-testify-1.4.0) + ("go-github-com-google-go-cmp-0.3.0" + ,go-github-com-google-go-cmp-0.3.0) + ("go-github-com-golang-protobuf-1.3.1" + ,go-github-com-golang-protobuf-1.3.1) + ("go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6" + ,go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6))) + (home-page "https://go.opencensus.io") + (synopsis "OpenCensus Libraries for Go") + (description "Package opencensus contains Go support for OpenCensus. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-mod-0.1.1-0.20191105210325-c90efee705ee + (package + (name "go-golang-org-x-mod") + (version "0.1.1-0.20191105210325-c90efee705ee") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/mod") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0i5md645rmcy5z5ij9ng428k9rz4g3k1kjy3blsq1264rn426gdf")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/mod")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" + ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) + ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" + ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) + (home-page "https://golang.org/x/mod") + (synopsis "mod") + (description + "This repository holds packages for writing tools +that work directly with Go module mechanics. +That is, it is for direct manipulation of Go modules themselves.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7 + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20200130002326-2f3ba24bd6e7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0j3nnmlwnbivf0h9x89vlp8ji3ha41v96bj33cxwmrrjnxq543ww")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" + ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) + ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" + ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) + ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" + ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) + ("go-golang-org-x-mod-0.1.1-0.20191105210325-c90efee705ee" + ,go-golang-org-x-mod-0.1.1-0.20191105210325-c90efee705ee))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b + (package + (name "go-golang-org-x-lint") + (version "0.0.0-20200302205851-738671d3881b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/lint") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0jkiz4py59jjnkyxbxifpf7bsar11lbgmj5jiq2kic5k03shkn9c")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/lint")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7" + ,go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7))) + (home-page "https://golang.org/x/lint") + (synopsis "Installation") + (description "Package lint contains a linter for Go source code. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20200301022130-244492dfa37a + (package + (name "go-golang-org-x-net") + (version "0.0.0-20200301022130-244492dfa37a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0vm2q44phz4vjnzq9428rjk58c82fxf003whczp7c9ryn9fazh7s")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20200302150141-5c8b2ff67527 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200302150141-5c8b2ff67527") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0r5s7f4w7crrbcf5ydpr2xzsq0svjm332vsds41yp58kwi2lvh2v")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20200304193943-95d2e580d8eb + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20200304193943-95d2e580d8eb") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0f46657xsdc12lr29ksqg80fp0j8v2iqgihzh788avcj5cmhnqyl")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) + ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" + ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) + ("go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b" + ,go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b) + ("go-golang-org-x-mod-0.2.0" ,go-golang-org-x-mod-0.2.0))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-github-com-golang-mock-1.2.0 + (package + (name "go-github-com-golang-mock") + (version "1.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/mock") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12ddj2g8ab87id6n2n67vnbhq6p8dvgsq1pzpqfriym4dk8w54fg")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/mock")) + (home-page "https://github.com/golang/mock") + (synopsis "gomock") + (description + "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It +integrates well with Go's built-in @code{testing} package, but can be used in other +contexts too.") + (license license:asl2.0))) + +(define-public go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c + (package + (name "go-github-com-google-btree") + (version "0.0.0-20180813153112-4030bb1f1f0c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/btree") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ba430m9fbnagacp57krgidsyrgp3ycw5r7dj71brgp5r52g82p6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/btree")) + (home-page "https://github.com/google/btree") + (synopsis "BTree implementation for Go") + (description + "Package btree implements in-memory B-Trees of arbitrary degree. +") + (license license:asl2.0))) + +(define-public go-github-com-google-martian-2.1.0+incompatible + (package + (name "go-github-com-google-martian") + (version "2.1.0+incompatible") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/martian") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "197hil6vrjk50b9wvwyzf61csid83whsjj6ik8mc9r2lryxlyyrp")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/martian")) + (home-page "https://github.com/google/martian") + (synopsis "Martian Proxy") + (description + "Package martian provides an HTTP/1.1 proxy with an API for configurable +request and response modifiers. +") + (license license:asl2.0))) + +(define-public go-github-com-google-pprof-0.0.0-20181206194817-3ea8567a2e57 + (package + (name "go-github-com-google-pprof") + (version "0.0.0-20181206194817-3ea8567a2e57") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/pprof") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "09rhjn3ms0a72dw0yzbp237p7yhqma772zspddn6mgkh3gi3kn4c")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/pprof")) + (home-page "https://github.com/google/pprof") + (synopsis "Introduction") + (description + "pprof is a tool for collection, manipulation and visualization +of performance profiles. +") + (license license:asl2.0))) + +(define-public go-github-com-googleapis-gax-go-v2-2.0.4 + (package + (name "go-github-com-googleapis-gax-go-v2") + (version "2.0.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/gax-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1iwnm6ky1x53lgs44mw3hpdkjzrm5qd0kfs50m0qcq2ml5m1cwdm")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/googleapis/gax-go/v2")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.19.0" + ,go-google-golang-org-grpc-1.19.0))) + (home-page "https://github.com/googleapis/gax-go") + (synopsis #f) + (description + "Package gax contains a set of modules which aid the development of APIs +for clients and servers based on gRPC and Google API conventions. +") + (license license:bsd-3))) + +(define-public go-github-com-jstemmer-go-junit-report-0.0.0-20190106144839-af01ea7f8024 + (package + (name "go-github-com-jstemmer-go-junit-report") + (version "0.0.0-20190106144839-af01ea7f8024") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jstemmer/go-junit-report") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1lp3n94ris12hac02wi31f3whs88lcrzwgdg43a5j6cafg9p1d0s")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/jstemmer/go-junit-report")) + (home-page "https://github.com/jstemmer/go-junit-report") + (synopsis "go-junit-report") + (description + "Converts @code{go test} output to an xml report, suitable for applications that +expect junit xml reports (e.g. @url{http://jenkins-ci.org,Jenkins}).") + (license license:expat))) + +(define-public go-golang-org-x-text-0.3.1-0.20180807135948-17ff2d5776d2 + (package + (name "go-golang-org-x-text") + (version "0.3.1-0.20180807135948-17ff2d5776d2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/text") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1rrh2mnmyxr45nsvy42zq3w3ly6gw6rl993knwvf1w71kyv0jjnj")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/text")) + (home-page "https://golang.org/x/text") + (synopsis "Go Text") + (description + "text is a repository of text-related packages related to internationalization +(i18n) and localization (l10n), such as character encodings, text +transformations, and locale-specific text handling. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-time-0.0.0-20181108054448-85acf8d2951c + (package + (name "go-golang-org-x-time") + (version "0.0.0-20181108054448-85acf8d2951c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/time") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0yqnxsrarjk4qkda8kcxzmk7y90kkkxzx9iwryzrk7bzs87ky3xc")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/time")) + (home-page "https://golang.org/x/time") + (synopsis "Go Time") + (description "This repository provides supplementary Go time packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f + (package + (name "go-golang-org-x-lint") + (version "0.0.0-20190301231843-5614ed5bae6f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/lint") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0fzn0zjv0x92xvfdq3a0v9w5sgkhr7hxkfy9zaqi8i57807z8bnx")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/lint")) + (home-page "https://golang.org/x/lint") + (synopsis "Installation") + (description "Package lint contains a linter for Go source code. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421 + (package + (name "go-golang-org-x-oauth2") + (version "0.0.0-20190226205417-e64efc72b421") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/oauth2") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0djvwz2avx7knsjbl434vw1wqbrg53xp1kh599gfixn5icrggz4m")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/oauth2")) + (propagated-inputs + `(("go-google-golang-org-appengine-1.4.0" + ,go-google-golang-org-appengine-1.4.0) + ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" + ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) + ("go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e" + ,go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e) + ("go-cloud-google-com-go-0.34.0" ,go-cloud-google-com-go-0.34.0))) + (home-page "https://golang.org/x/oauth2") + (synopsis "OAuth2 for Go") + (description + "Package oauth2 provides support for making +OAuth2 authorized and authenticated HTTP requests, +as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +It can additionally grant authorization with Bearer JWT. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138 + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20190312170243-e65039ee4138") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0c094599cf70wdrms49a3879qkq122pqlp2av444gs2pvc8apdcx")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-google-golang-org-api-0.4.0 + (package + (name "go-google-golang-org-api") + (version "0.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-api-go-client") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1hzgrw5wasmcjlqpxsmryddzzw4cwyzf2vx14i9z51v1plwssijm")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/api")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" + ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) + ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) + ("go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19" + ,go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19) + ("go-google-golang-org-appengine-1.4.0" + ,go-google-golang-org-appengine-1.4.0) + ("go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138" + ,go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138) + ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" + ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) + ("go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421" + ,go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421) + ("go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f" + ,go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f) + ("go-go-opencensus-io-0.21.0" ,go-go-opencensus-io-0.21.0) + ("go-github-com-google-go-cmp-0.2.0" + ,go-github-com-google-go-cmp-0.2.0))) + (home-page "https://google.golang.org/api") + (synopsis "Google APIs Client Library for Go") + (description + "Package api is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of +sub-packages. +") + (license license:bsd-3))) + +(define-public go-google-golang-org-genproto-0.0.0-20190418145605-e7d98fc518a7 + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20190418145605-e7d98fc518a7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1cnavkyawwvfc5yl097ygnfy1ac69v4zc02gdfnq1bvgcvgmvnbi")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" + ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) + ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) + ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" + ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) + ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" + ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) + ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" + ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd) + ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" + ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) + ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" + ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-honnef-co-go-tools-0.0.0-20190106161140-3f1c8253044a + (package + (name "go-honnef-co-go-tools") + (version "0.0.0-20190106161140-3f1c8253044a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/dominikh/go-tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0d3vgh0fgfj1z7i648g1s6x2pwxd07sxfjwg1xn3yagr9h06jh3h")))) + (build-system go-build-system) + (arguments '(#:import-path "honnef.co/go/tools")) + (home-page "https://honnef.co/go/tools") + (synopsis "Documentation") + (description + "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, +offers simplifications, and enforces style rules.") + (license license:expat))) + +(define-public go-cloud-google-com-go-0.38.0 + (package + (name "go-cloud-google-com-go") + (version "0.38.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-cloud-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0n6n13b7lri2fmc4bn4ifszyawj31dpbzvyv0xafsf81440z8cyh")))) + (build-system go-build-system) + (arguments '(#:import-path "cloud.google.com/go")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190106161140-3f1c8253044a" + ,go-honnef-co-go-tools-0.0.0-20190106161140-3f1c8253044a) + ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) + ("go-google-golang-org-genproto-0.0.0-20190418145605-e7d98fc518a7" + ,go-google-golang-org-genproto-0.0.0-20190418145605-e7d98fc518a7) + ("go-google-golang-org-api-0.4.0" ,go-google-golang-org-api-0.4.0) + ("go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138" + ,go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138) + ("go-golang-org-x-time-0.0.0-20181108054448-85acf8d2951c" + ,go-golang-org-x-time-0.0.0-20181108054448-85acf8d2951c) + ("go-golang-org-x-text-0.3.1-0.20180807135948-17ff2d5776d2" + ,go-golang-org-x-text-0.3.1-0.20180807135948-17ff2d5776d2) + ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" + ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) + ("go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421" + ,go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421) + ("go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f" + ,go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f) + ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" + ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) + ("go-go-opencensus-io-0.21.0" ,go-go-opencensus-io-0.21.0) + ("go-github-com-jstemmer-go-junit-report-0.0.0-20190106144839-af01ea7f8024" + ,go-github-com-jstemmer-go-junit-report-0.0.0-20190106144839-af01ea7f8024) + ("go-github-com-googleapis-gax-go-v2-2.0.4" + ,go-github-com-googleapis-gax-go-v2-2.0.4) + ("go-github-com-google-pprof-0.0.0-20181206194817-3ea8567a2e57" + ,go-github-com-google-pprof-0.0.0-20181206194817-3ea8567a2e57) + ("go-github-com-google-martian-2.1.0+incompatible" + ,go-github-com-google-martian-2.1.0+incompatible) + ("go-github-com-google-go-cmp-0.2.0" + ,go-github-com-google-go-cmp-0.2.0) + ("go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c" + ,go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0) + ("go-github-com-golang-mock-1.2.0" ,go-github-com-golang-mock-1.2.0))) + (home-page "https://cloud.google.com/go") + (synopsis "Google Cloud Client Libraries for Go") + (description + "Package cloud is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +of sub-packages. +") + (license license:asl2.0))) + +(define-public go-github-com-googleapis-gax-go-v2-2.0.5 + (package + (name "go-github-com-googleapis-gax-go-v2") + (version "2.0.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/gax-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1lxawwngv6miaqd25s3ba0didfzylbwisd2nz7r4gmbmin6jsjrx")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/googleapis/gax-go/v2")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.19.0" + ,go-google-golang-org-grpc-1.19.0))) + (home-page "https://github.com/googleapis/gax-go") + (synopsis #f) + (description + "Package gax contains a set of modules which aid the development of APIs +for clients and servers based on gRPC and Google API conventions. +") + (license license:bsd-3))) + +(define-public go-github-com-hashicorp-golang-lru-0.5.0 + (package + (name "go-github-com-hashicorp-golang-lru") + (version "0.5.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/golang-lru") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12k2cp2k615fjvfa5hyb9k2alian77wivds8s65diwshwv41939f")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/golang-lru")) + (home-page "https://github.com/hashicorp/golang-lru") + (synopsis "golang-lru") + (description + "Package lru provides three different LRU caches of varying sophistication. +") + (license license:mpl2.0))) + +(define-public go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6 + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20190227155943-e225da77a7e6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0bh3583smcfw6jw3w6lp0za93rz7hpxfdz8vhxng75b7a6vdlw4p")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the +ones provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19 + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20190307195333-5fe7a883aa19") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0qjkwig0r42q0j2qv57s4ahsgmmp41dz3ih3rnaqg0619n5w7lbs")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" + ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) + ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) + ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" + ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) + ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" + ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) + ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" + ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd) + ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" + ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) + ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" + ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-go-opencensus-io-0.21.0 + (package + (name "go-go-opencensus-io") + (version "0.21.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/census-instrumentation/opencensus-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "14s0a12xdzjvad0dgksgv8m3hh7nc585abvjkvyk6r67a29lxj6x")))) + (build-system go-build-system) + (arguments '(#:import-path "go.opencensus.io")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) + ("go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19" + ,go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-github-com-hashicorp-golang-lru-0.5.0" + ,go-github-com-hashicorp-golang-lru-0.5.0) + ("go-github-com-google-go-cmp-0.2.0" + ,go-github-com-google-go-cmp-0.2.0) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0))) + (home-page "https://go.opencensus.io") + (synopsis "OpenCensus Libraries for Go") + (description "Package opencensus contains Go support for OpenCensus. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-net-0.0.0-20190503192946-f4e77d36d62c + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190503192946-f4e77d36d62c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0avjnglqqg9ya0cbhp23m4namykii219kxjywxn4cd7pfcc5arha")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45 + (package + (name "go-golang-org-x-oauth2") + (version "0.0.0-20190604053449-0f29369cfe45") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/oauth2") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "06jwpvx0x2gjn2y959drbcir5kd7vg87k0r1216abk6rrdzzrzi2")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/oauth2")) + (propagated-inputs + `(("go-google-golang-org-appengine-1.4.0" + ,go-google-golang-org-appengine-1.4.0) + ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" + ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) + ("go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e" + ,go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e) + ("go-cloud-google-com-go-0.34.0" ,go-cloud-google-com-go-0.34.0))) + (home-page "https://golang.org/x/oauth2") + (synopsis "OAuth2 for Go") + (description + "Package oauth2 provides support for making +OAuth2 authorized and authenticated HTTP requests, +as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +It can additionally grant authorization with Bearer JWT. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190507160741-ecd444e8653b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1vhld4948mzfnlgf20id29mv1bwpk9a3xlbw1mbjzxzxxdv1jds2")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-google-golang-org-appengine-1.5.0 + (package + (name "go-google-golang-org-appengine") + (version "1.5.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/appengine") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0l7mkdnwhidv8m686x432vmx8z5nqcrr9f46ddgvrxbh4wvyfcll")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/appengine")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225" + ,go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0))) + (home-page "https://google.golang.org/appengine") + (synopsis "Go App Engine packages") + (description + "Package appengine provides basic functionality for Google App Engine. +") + (license license:asl2.0))) + +(define-public go-google-golang-org-api-0.20.0 + (package + (name "go-google-golang-org-api") + (version "0.20.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-api-go-client") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "13syr1x33k6mrn5w6l4sgdbzn368w3m60vf6kk2j10fwa45125rg")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/api")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" + ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" + ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) + ("go-google-golang-org-appengine-1.5.0" + ,go-google-golang-org-appengine-1.5.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) + ("go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b" + ,go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b) + ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" + ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) + ("go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45" + ,go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45) + ("go-golang-org-x-net-0.0.0-20190503192946-f4e77d36d62c" + ,go-golang-org-x-net-0.0.0-20190503192946-f4e77d36d62c) + ("go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422" + ,go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422) + ("go-go-opencensus-io-0.21.0" ,go-go-opencensus-io-0.21.0) + ("go-github-com-hashicorp-golang-lru-0.5.1" + ,go-github-com-hashicorp-golang-lru-0.5.1) + ("go-github-com-googleapis-gax-go-v2-2.0.5" + ,go-github-com-googleapis-gax-go-v2-2.0.5) + ("go-github-com-google-go-cmp-0.3.0" + ,go-github-com-google-go-cmp-0.3.0) + ("go-cloud-google-com-go-0.38.0" ,go-cloud-google-com-go-0.38.0))) + (home-page "https://google.golang.org/api") + (synopsis "Google APIs Client Library for Go") + (description + "Package api is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of +sub-packages. +") + (license license:bsd-3))) + +(define-public go-google-golang-org-genproto-0.0.0-20200305110556-506484158171 + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20200305110556-506484158171") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19h7sxkfjcrkm7majd0pyzzirdnk1qlsxc3h5zklhm234d8jg407")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" + ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-golang-protobuf-1.3.3" + ,go-github-com-golang-protobuf-1.3.3))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-github-com-google-renameio-0.1.0 + (package + (name "go-github-com-google-renameio") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/renameio") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ki2x5a9nrj17sn092d6n4zr29lfg5ydv4xz5cp58z6cw8ip43jx")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/renameio")) + (home-page "https://github.com/google/renameio") + (synopsis "Atomicity vs durability") + (description + "Package renameio provides a way to atomically create or replace a file or +symbolic link. +") + (license license:asl2.0))) + +(define-public go-gopkg-in-errgo-v2-2.1.0 + (package + (name "go-gopkg-in-errgo-v2") + (version "2.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/errgo.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "065mbihiy7q67wnql0bzl9y1kkvck5ivra68254zbih52jxwrgr2")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/errgo.v2" #:unpack-path "gopkg.in/errgo.v2")) + (propagated-inputs + `(("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" + ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) + ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0))) + (home-page "https://gopkg.in/errgo.v2") + (synopsis #f) + (description + "Package errgo provides some primitives for error creation and handling.") + (license license:bsd-3))) + +(define-public go-github-com-rogpeppe-go-internal-1.3.0 + (package + (name "go-github-com-rogpeppe-go-internal") + (version "1.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/rogpeppe/go-internal") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0mcdh1licgnnahwml9y2iq6xy5x9xmjw5frcnds2s3wpjyqrl216")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/rogpeppe/go-internal")) + (propagated-inputs + `(("go-gopkg-in-errgo-v2-2.1.0" ,go-gopkg-in-errgo-v2-2.1.0))) + (home-page "https://github.com/rogpeppe/go-internal") + (synopsis #f) + (description + "This repository factors out an opinionated selection of internal packages and functionality from the Go standard +library. Currently this consists mostly of packages and testing code from within the Go tool implementation.") + (license license:bsd-3))) + +(define-public go-golang-org-x-crypto-0.0.0-20190510104115-cbcb75029529 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20190510104115-cbcb75029529") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12831ga1gq04a3jbbcmww7kaqfdfgp7cdv2fj9aqidz8h52ajdmh")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" + ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) + ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" + ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-mod-0.0.0-20190513183733-4bf6d317e70e + (package + (name "go-golang-org-x-mod") + (version "0.0.0-20190513183733-4bf6d317e70e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/mod") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19lg1ly3j31anx92p0hynic1gjk417wwxphfdrb2cq1c19kj3r17")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/mod")) + (propagated-inputs + `(("go-golang-org-x-crypto-0.0.0-20190510104115-cbcb75029529" + ,go-golang-org-x-crypto-0.0.0-20190510104115-cbcb75029529))) + (home-page "https://golang.org/x/mod") + (synopsis "mod") + (description + "This repository holds packages for writing tools +that work directly with Go module mechanics. +That is, it is for direct manipulation of Go modules themselves.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20191130070609-6e064ea0cf2d + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20191130070609-6e064ea0cf2d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1nbki367xspsa37j6276f5q2gv31vfjpb52axn3p3ymz548my75d")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7" + ,go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7) + ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" + ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) + ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" + ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-honnef-co-go-tools-0.0.1-2020.1.3 + (package + (name "go-honnef-co-go-tools") + (version "0.0.1-2020.1.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/dominikh/go-tools") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0pvi1mzhy6zgx4zfgdypbl4zhvgg11hl5qv7blf2qs0a96j2djhf")))) + (build-system go-build-system) + (arguments '(#:import-path "honnef.co/go/tools")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20191130070609-6e064ea0cf2d" + ,go-golang-org-x-tools-0.0.0-20191130070609-6e064ea0cf2d) + ("go-golang-org-x-mod-0.0.0-20190513183733-4bf6d317e70e" + ,go-golang-org-x-mod-0.0.0-20190513183733-4bf6d317e70e) + ("go-github-com-rogpeppe-go-internal-1.3.0" + ,go-github-com-rogpeppe-go-internal-1.3.0) + ("go-github-com-kisielk-gotool-1.0.0" + ,go-github-com-kisielk-gotool-1.0.0) + ("go-github-com-google-renameio-0.1.0" + ,go-github-com-google-renameio-0.1.0) + ("go-github-com-burntsushi-toml-0.3.1" + ,go-github-com-burntsushi-toml-0.3.1))) + (home-page "https://honnef.co/go/tools") + (synopsis "Documentation") + (description + "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, +offers simplifications, and enforces style rules.") + (license license:expat))) + +(define-public go-cloud-google-com-go-0.54.0 + (package + (name "go-cloud-google-com-go") + (version "0.54.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-cloud-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ilqqymrphg546c66jc0npd48dlr88wbgrg462h1jgm2ykbnq1ba")))) + (build-system go-build-system) + (arguments '(#:import-path "cloud.google.com/go")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.1-2020.1.3" + ,go-honnef-co-go-tools-0.0.1-2020.1.3) + ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) + ("go-google-golang-org-genproto-0.0.0-20200305110556-506484158171" + ,go-google-golang-org-genproto-0.0.0-20200305110556-506484158171) + ("go-google-golang-org-api-0.20.0" ,go-google-golang-org-api-0.20.0) + ("go-golang-org-x-tools-0.0.0-20200304193943-95d2e580d8eb" + ,go-golang-org-x-tools-0.0.0-20200304193943-95d2e580d8eb) + ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) + ("go-golang-org-x-sys-0.0.0-20200302150141-5c8b2ff67527" + ,go-golang-org-x-sys-0.0.0-20200302150141-5c8b2ff67527) + ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" + ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) + ("go-golang-org-x-net-0.0.0-20200301022130-244492dfa37a" + ,go-golang-org-x-net-0.0.0-20200301022130-244492dfa37a) + ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" + ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) + ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) + ("go-github-com-jstemmer-go-junit-report-0.9.1" + ,go-github-com-jstemmer-go-junit-report-0.9.1) + ("go-github-com-googleapis-gax-go-v2-2.0.5" + ,go-github-com-googleapis-gax-go-v2-2.0.5) + ("go-github-com-google-pprof-0.0.0-20200229191704-1ebb73c60ed3" + ,go-github-com-google-pprof-0.0.0-20200229191704-1ebb73c60ed3) + ("go-github-com-google-martian-2.1.0+incompatible" + ,go-github-com-google-martian-2.1.0+incompatible) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.3.4" + ,go-github-com-golang-protobuf-1.3.4) + ("go-github-com-golang-mock-1.4.1" ,go-github-com-golang-mock-1.4.1) + ("go-cloud-google-com-go-storage-1.6.0" + ,go-cloud-google-com-go-storage-1.6.0) + ("go-cloud-google-com-go-pubsub-1.2.0" + ,go-cloud-google-com-go-pubsub-1.2.0) + ("go-cloud-google-com-go-datastore-1.1.0" + ,go-cloud-google-com-go-datastore-1.1.0) + ("go-cloud-google-com-go-bigquery-1.4.0" + ,go-cloud-google-com-go-bigquery-1.4.0))) + (home-page "https://cloud.google.com/go") + (synopsis "Google Cloud Client Libraries for Go") + (description + "Package cloud is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +of sub-packages. +") + (license license:asl2.0))) + +(define-public go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7 + (package + (name "go-github-com-gregjones-httpcache") + (version "0.0.0-20180305231024-9cad4c3443a7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gregjones/httpcache") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wjdwcwqqcx2d5y68qvhg6qyj977il5ijmnn9h9cd6wjbdy0ay6s")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/gregjones/httpcache")) + (home-page "https://github.com/gregjones/httpcache") + (synopsis "httpcache") + (description + "Package httpcache provides a http.RoundTripper implementation that works as a +mostly RFC-compliant cache for http responses. +") + (license license:expat))) + +(define-public go-github-com-imdario-mergo-0.3.5 + (package + (name "go-github-com-imdario-mergo") + (version "0.3.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/imdario/mergo") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1mvgn89vp39gcpvhiq4n7nw5ipj7fk6h03jgc6fjwgvwvss213pb")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/imdario/mergo")) + (home-page "https://github.com/imdario/mergo") + (synopsis "Mergo") + (description + "This package provides a helper to merge structs and maps in Golang. Useful for configuration default values, avoiding messy if-statements. +") + (license license:bsd-3))) + +(define-public go-github-com-peterbourgon-diskv-2.0.1+incompatible + (package + (name "go-github-com-peterbourgon-diskv") + (version "2.0.1+incompatible") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/peterbourgon/diskv") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1mxpa5aad08x30qcbffzk80g9540wvbca4blc1r2qyzl65b8929b")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/peterbourgon/diskv")) + (home-page "https://github.com/peterbourgon/diskv") + (synopsis "What is diskv?") + (description + "Diskv (disk-vee) is a simple, persistent key-value store written in the Go +language. It starts with an incredibly simple API for storing arbitrary data on +a filesystem by key, and builds several layers of performance-enhancing +abstraction on top. The end result is a conceptually simple, but highly +performant, disk-backed storage system.") + (license license:expat))) + +(define-public go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20201002170205-7f63de1d35b0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1dr89jfs4dmpr3jqfshqqvfpzzdx4r76nkzhrvmixfrmn6wxrnd1")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" + ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) + ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" + ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-cloud-google-com-go-0.34.0 + (package + (name "go-cloud-google-com-go") + (version "0.34.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-cloud-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1kclgclwar3r37zbvb9gg3qxbgzkb50zk3s9778zlh2773qikmai")))) + (build-system go-build-system) + (arguments '(#:import-path "cloud.google.com/go")) + (home-page "https://cloud.google.com/go") + (synopsis "Google Cloud Client Libraries for Go") + (description + "Package cloud is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +of sub-packages. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190108225652-1e06a53dbb7e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0lpqqvdccby48nixihvmn8ig1z48b950m1bxfqxn78air308qc3j")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4 + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20181221193216-37e7f081c4d4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1bb0mw6ckb1k7z8v3iil2qlqwfj408fvvp8m1cik2b46p7snyjhm")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the +ones provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d + (package + (name "go-golang-org-x-oauth2") + (version "0.0.0-20200107190931-bf48bf16ab8d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/oauth2") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1sirdib60zwmh93kf9qrx51r8544k1p9rs5mk0797wibz3m4mrdg")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/oauth2")) + (propagated-inputs + `(("go-google-golang-org-appengine-1.4.0" + ,go-google-golang-org-appengine-1.4.0) + ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" + ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) + ("go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e" + ,go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e) + ("go-cloud-google-com-go-0.34.0" ,go-cloud-google-com-go-0.34.0))) + (home-page "https://golang.org/x/oauth2") + (synopsis "OAuth2 for Go") + (description + "Package oauth2 provides support for making +OAuth2 authorized and authenticated HTTP requests, +as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +It can additionally grant authorization with Bearer JWT. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e + (package + (name "go-golang-org-x-time") + (version "0.0.0-20200630173020-3af7569d3a1e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/time") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "05hqhw3vlssi499y6m41zgdp1yyjsw2kj95ahymlw6pkhsssh2vq")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/time")) + (home-page "https://golang.org/x/time") + (synopsis "Go Time") + (description "This repository provides supplementary Go time packages.") + (license license:bsd-3))) + +(define-public go-k8s-io-api-0.20.6 + (package + (name "go-k8s-io-api") + (version "0.20.6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes/api") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0mm6a91a4nrlsvnfcbgn2574vdwxf1nxpgrd5avklh8mym2ngimw")))) + (build-system go-build-system) + (arguments '(#:import-path "k8s.io/api")) + (propagated-inputs + `(("go-k8s-io-apimachinery-0.20.6" ,go-k8s-io-apimachinery-0.20.6) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-gogo-protobuf-1.3.2" + ,go-github-com-gogo-protobuf-1.3.2))) + (home-page "https://k8s.io/api") + (synopsis "api") + (description + "Schema of the external API types that are served by the Kubernetes API server.") + (license license:asl2.0))) + +(define-public go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96 + (package + (name "go-github-com-docker-spdystream") + (version "0.0.0-20160310174837-449fdfce4d96") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/moby/spdystream") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1412cpiis971iq1kxrirzirhj2708ispjh0x0dh879b66x8507sl")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/docker/spdystream")) + (home-page "https://github.com/docker/spdystream") + (synopsis "SpdyStream") + (description + "This package provides a multiplexed stream library using spdy") + (license license:asl2.0))) + +(define-public go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153 + (package + (name "go-github-com-elazarl-goproxy") + (version "0.0.0-20180725130230-947c36da3153") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/elazarl/goproxy") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0lmsnr5xmda89wig8sw62llg6acjb5caghz5jmdhnm85rm6rnssk")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/elazarl/goproxy")) + (home-page "https://github.com/elazarl/goproxy") + (synopsis "Introduction") + (description + "Taken from $GOROOT/src/pkg/net/http/chunked +needed to write https responses to client. +") + (license license:bsd-3))) + +(define-public go-github-com-evanphx-json-patch-4.9.0+incompatible + (package + (name "go-github-com-evanphx-json-patch") + (version "4.9.0+incompatible") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/evanphx/json-patch") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1r88qpzjxsx8skij9s5pi4a5qcv4bm18vq8sy21gpwgzp3qf6qzx")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/evanphx/json-patch")) + (home-page "https://github.com/evanphx/json-patch") + (synopsis "JSON-Patch") + (description + "@code{jsonpatch} is a library which provides functionality for both applying +@url{http://tools.ietf.org/html/rfc6902,RFC6902 JSON patches} against documents, as +well as for calculating & applying @url{https://tools.ietf.org/html/rfc7396,RFC7396 JSON merge patches}.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20191005200804-aed5e4c7ecf9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wsdsbl9n61l99z0cvib2xzg56fsfgky4yc5xapdw9ywx9h0zm3a")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-fsnotify-fsnotify-1.4.9 + (package + (name "go-github-com-fsnotify-fsnotify") + (version "1.4.9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/fsnotify/fsnotify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1i1r72knpbfwwql9frn9bqc3nhfc2ai5m6qllcyr6wban62lr40x")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/fsnotify/fsnotify")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9" + ,go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9))) + (home-page "https://github.com/fsnotify/fsnotify") + (synopsis "File system notifications for Go") + (description + "Package fsnotify provides a platform-independent interface for file system notifications. +") + (license license:bsd-3))) + +(define-public go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e + (package + (name "go-github-com-golang-groupcache") + (version "0.0.0-20200121045136-8c9f03a8e57e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/groupcache") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0vjjr79r32icjzlb05wn02k59av7jx0rn1jijml8r4whlg7dnkfh")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/groupcache")) + (home-page "https://github.com/golang/groupcache") + (synopsis "groupcache") + (description + "Package groupcache provides a data loading mechanism with caching +and de-duplication that works across a set of peer processes. +") + (license license:asl2.0))) + +(define-public go-github-com-google-gofuzz-1.1.0 + (package + (name "go-github-com-google-gofuzz") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/gofuzz") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0si2fiigj45vr4jnw4grjhls7nw56wkwinnn93gqbl9ng9ynw8rx")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/gofuzz")) + (home-page "https://github.com/google/gofuzz") + (synopsis "gofuzz") + (description + "Package fuzz is a library for populating go objects with random values. +") + (license license:asl2.0))) + +(define-public go-github-com-google-uuid-1.1.2 + (package + (name "go-github-com-google-uuid") + (version "1.1.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/uuid") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1rbpfa0v0ly9sdnixcxhf79swki54ikgm1zkwwkj64p1ws66syqd")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/uuid")) + (home-page "https://github.com/google/uuid") + (synopsis "uuid") + (description "Package uuid generates and inspects UUIDs. +") + (license license:bsd-3))) + +(define-public go-github-com-hashicorp-golang-lru-0.5.1 + (package + (name "go-github-com-hashicorp-golang-lru") + (version "0.5.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/golang-lru") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "13f870cvk161bzjj6x41l45r5x9i1z9r2ymwmvm7768kg08zznpy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/golang-lru")) + (home-page "https://github.com/hashicorp/golang-lru") + (synopsis "golang-lru") + (description + "Package lru provides three different LRU caches of varying sophistication. +") + (license license:mpl2.0))) + +(define-public go-github-com-modern-go-concurrent-0.0.0-20180228061459-e0a39a4cb421 + (package + (name "go-github-com-modern-go-concurrent") + (version "0.0.0-20180228061459-e0a39a4cb421") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/modern-go/concurrent") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hamz1zimsxm9vl0ih19v7sbibglwq2j6473w4j9k7ib80fmxdzr")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/modern-go/concurrent")) + (home-page "https://github.com/modern-go/concurrent") + (synopsis "concurrent") + (description + "because sync.Map is only available in go 1.9, we can use concurrent.Map to make code portable") + (license license:asl2.0))) + +(define-public go-github-com-modern-go-reflect2-0.0.0-20180701023420-4b7aa43c6742 + (package + (name "go-github-com-modern-go-reflect2") + (version "0.0.0-20180701023420-4b7aa43c6742") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/modern-go/reflect2") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1721y3yr3dpx5dx5ashf063qczk2awy5zjir1jvp1h5hn7qz4i49")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/modern-go/reflect2")) + (home-page "https://github.com/modern-go/reflect2") + (synopsis "reflect2") + (description "reflect api that avoids runtime reflect.Value cost") + (license license:asl2.0))) + +(define-public go-github-com-json-iterator-go-1.1.10 + (package + (name "go-github-com-json-iterator-go") + (version "1.1.10") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/json-iterator/go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "134zwc2pmf8nd90r8065wsl6vv1mwjl23bs70i08dzhw5h98drr4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/json-iterator/go")) + (propagated-inputs + `(("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0) + ("go-github-com-modern-go-reflect2-0.0.0-20180701023420-4b7aa43c6742" + ,go-github-com-modern-go-reflect2-0.0.0-20180701023420-4b7aa43c6742) + ("go-github-com-modern-go-concurrent-0.0.0-20180228061459-e0a39a4cb421" + ,go-github-com-modern-go-concurrent-0.0.0-20180228061459-e0a39a4cb421) + ("go-github-com-google-gofuzz-1.0.0" + ,go-github-com-google-gofuzz-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/json-iterator/go") + (synopsis "Benchmark") + (description + "Package jsoniter implements encoding and decoding of JSON as defined in +@url{https://rfc-editor.org/rfc/rfc4627.html,RFC 4627} and provides interfaces with identical syntax of standard lib encoding/json. +Converting from encoding/json to jsoniter is no more than replacing the package with jsoniter +and variable type declarations (if any). +jsoniter interfaces gives 100% compatibility with code using standard lib. +") + (license license:expat))) + +(define-public go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f + (package + (name "go-github-com-mxk-go-flowrate") + (version "0.0.0-20140419014527-cca7078d478f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mxk/go-flowrate") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0zqs39923ja0yypdmiqk6x8pgmfs3ms5x5sl1dqv9z6zyx2xy541")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mxk/go-flowrate")) + (home-page "https://github.com/mxk/go-flowrate") + (synopsis #f) + (description #f) + (license license:bsd-3))) + +(define-public go-github-com-onsi-ginkgo-1.11.0 + (package + (name "go-github-com-onsi-ginkgo") + (version "1.11.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/onsi/ginkgo") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1vxmb5k89bq50m2kzcw5l3bdvci4czpifkgxd4nbq1yzv5ir03kp")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/onsi/ginkgo")) + (home-page "https://github.com/onsi/ginkgo") + (synopsis "Ginkgo 2.0 Release Candidate is available!") + (description "Ginkgo is a BDD-style testing framework for Golang +") + (license license:expat))) + +(define-public go-github-com-fsnotify-fsnotify-1.4.7 + (package + (name "go-github-com-fsnotify-fsnotify") + (version "1.4.7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/fsnotify/fsnotify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/fsnotify/fsnotify")) + (home-page "https://github.com/fsnotify/fsnotify") + (synopsis "File system notifications for Go") + (description + "Package fsnotify provides a platform-independent interface for file system notifications. +") + (license license:bsd-3))) + +(define-public go-github-com-hpcloud-tail-1.0.0 + (package + (name "go-github-com-hpcloud-tail") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hpcloud/tail") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1njpzc0pi1acg5zx9y6vj9xi6ksbsc5d387rd6904hy6rh2m6kn0")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hpcloud/tail")) + (home-page "https://github.com/hpcloud/tail") + (synopsis "Go package for tail-ing files") + (description + "This package provides a Go package striving to emulate the features of the BSD @code{tail} program.") + (license license:expat))) + +(define-public go-github-com-onsi-ginkgo-1.6.0 + (package + (name "go-github-com-onsi-ginkgo") + (version "1.6.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/onsi/ginkgo") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0x0gc89vgq38xhgmi2h22bhr73cf2gmk42g89nz89k8dgg9hhr25")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/onsi/ginkgo")) + (home-page "https://github.com/onsi/ginkgo") + (synopsis "Ginkgo 2.0 Release Candidate is available!") + (description "Ginkgo is a BDD-style testing framework for Golang +") + (license license:expat))) + +(define-public go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd + (package + (name "go-golang-org-x-net") + (version "0.0.0-20180906233101-161cd47e91fd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0254ld010iijygbzykib2vags1dc0wlmcmhgh4jl8iny159lhbcv")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20180909124046-d0be0721c37e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "081wyvfnlf842dqg03raxfz6lldlxpmyh1prix9lmrrm65arxb12")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-gopkg-in-fsnotify-v1-1.4.7 + (package + (name "go-gopkg-in-fsnotify-v1") + (version "1.4.7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/fsnotify.v1") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) + (build-system go-build-system) + (arguments + '(#:import-path + "gopkg.in/fsnotify.v1" + #:unpack-path + "gopkg.in/fsnotify.v1")) + (home-page "https://gopkg.in/fsnotify.v1") + (synopsis "File system notifications for Go") + (description + "Package fsnotify provides a platform-independent interface for file system notifications. +") + (license license:bsd-3))) + +(define-public go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7 + (package + (name "go-gopkg-in-tomb-v1") + (version "1.0.0-20141024135613-dd632973f1e7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/tomb.v1") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1lqmq1ag7s4b3gc3ddvr792c5xb5k6sfn0cchr3i2s7f1c231zjv")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/tomb.v1" #:unpack-path "gopkg.in/tomb.v1")) + (home-page "https://gopkg.in/tomb.v1") + (synopsis "Installation and usage") + (description + "The tomb package offers a conventional API for clean goroutine termination. +") + (license license:bsd-3))) + +(define-public go-github-com-onsi-gomega-1.7.0 + (package + (name "go-github-com-onsi-gomega") + (version "1.7.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/onsi/gomega") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "09j6wq425wgzzsbwm9ckhfgl2capv3yyqbrf45qyrjwkzm49i02y")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/onsi/gomega")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1) + ("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" + ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) + ("go-gopkg-in-fsnotify-v1-1.4.7" ,go-gopkg-in-fsnotify-v1-1.4.7) + ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e" + ,go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e) + ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" + ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) + ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" + ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) + ("go-github-com-onsi-ginkgo-1.6.0" ,go-github-com-onsi-ginkgo-1.6.0) + ("go-github-com-hpcloud-tail-1.0.0" ,go-github-com-hpcloud-tail-1.0.0) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0) + ("go-github-com-fsnotify-fsnotify-1.4.7" + ,go-github-com-fsnotify-fsnotify-1.4.7))) + (home-page "https://github.com/onsi/gomega") + (synopsis ": a BDD Testing Framework for Golang") + (description + "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library. +") + (license license:expat))) + +(define-public go-github-com-pkg-errors-0.9.1 + (package + (name "go-github-com-pkg-errors") + (version "0.9.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pkg/errors") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1761pybhc2kqr6v5fm8faj08x9bql8427yqg6vnfv6nhrasx1mwq")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pkg/errors")) + (home-page "https://github.com/pkg/errors") + (synopsis "errors") + (description "Package errors provides simple error handling primitives. +") + (license license:bsd-2))) + +(define-public go-github-com-spf13-pflag-1.0.5 + (package + (name "go-github-com-spf13-pflag") + (version "1.0.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/spf13/pflag") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0gpmacngd0gpslnbkzi263f5ishigzgh6pbdv9hp092rnjl4nd31")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/spf13/pflag")) + (home-page "https://github.com/spf13/pflag") + (synopsis "Description") + (description + "Package pflag is a drop-in replacement for Go's flag package, implementing +POSIX/GNU-style --flags. +") + (license license:bsd-3))) + +(define-public go-gopkg-in-inf-v0-0.9.1 + (package + (name "go-gopkg-in-inf-v0") + (version "0.9.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/inf.v0") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "00k5iqjcp371fllqxncv7jkf80hn1zww92zm78cclbcn4ybigkng")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/inf.v0" #:unpack-path "gopkg.in/inf.v0")) + (home-page "https://gopkg.in/inf.v0") + (synopsis #f) + (description + "Package inf (type inf.Dec) implements \"infinite-precision\" decimal +arithmetic. +\"Infinite precision\" describes two characteristics: practically unlimited +precision for decimal number representation and no support for calculating +with any specific fixed precision. +(Although there is no practical limit on precision, inf.Dec can only +represent finite decimals.) +") + (license license:bsd-3))) + +(define-public go-github-com-nytimes-gziphandler-0.0.0-20170623195520-56545f4a5d46 + (package + (name "go-github-com-nytimes-gziphandler") + (version "0.0.0-20170623195520-56545f4a5d46") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/nytimes/gziphandler") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fwk9wz6vrvq72f2gq8jhvd1nvv6grqgwrjq66vjpm0726pxar72")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/NYTimes/gziphandler")) + (home-page "https://github.com/NYTimes/gziphandler") + (synopsis "Gzip Handler") + (description + "This is a tiny Go package which wraps HTTP handlers to transparently gzip the +response body, for clients which support it. Although it's usually simpler to +leave that to a reverse proxy (like nginx or Varnish), this package is useful +when that's undesirable.") + (license license:asl2.0))) + +(define-public go-github-com-asaskevich-govalidator-0.0.0-20190424111038-f61b66f89f4a + (package + (name "go-github-com-asaskevich-govalidator") + (version "0.0.0-20190424111038-f61b66f89f4a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/asaskevich/govalidator") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1jzjd9ak4byb83bwhbyrrdclnhrgglyxcbr4d4qh39a6ywvcijm5")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/asaskevich/govalidator")) + (home-page "https://github.com/asaskevich/govalidator") + (synopsis "govalidator") + (description + "Package govalidator is package of validators and sanitizers for strings, structs and collections. +") + (license license:expat))) + +(define-public go-github-com-emicklei-go-restful-0.0.0-20170410110728-ff4f55a20633 + (package + (name "go-github-com-emicklei-go-restful") + (version "0.0.0-20170410110728-ff4f55a20633") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/emicklei/go-restful") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1v5lj5142abz3gvbygp6xghpdx4ps2lwswl8559ivaidahwnc21c")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/emicklei/go-restful")) + (home-page "https://github.com/emicklei/go-restful") + (synopsis "go-restful") + (description + "Package restful , a lean package for creating REST-style WebServices without magic. +") + (license license:expat))) + +(define-public go-github-com-ghodss-yaml-0.0.0-20150909031657-73d445a93680 + (package + (name "go-github-com-ghodss-yaml") + (version "0.0.0-20150909031657-73d445a93680") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/ghodss/yaml") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0pg53ky4sy3sp9j4n7vgf1p3gw4nbckwqfldcmmi9rf13kjh0mr7")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/ghodss/yaml")) + (home-page "https://github.com/ghodss/yaml") + (synopsis "YAML marshaling and unmarshaling support for Go") + (description + "Copyright 2013 The Go Authors. All rights reserved. +Use of this source code is governed by a BSD-style +license that can be found in the LICENSE file. +") + (license #f))) + +(define-public go-github-com-go-openapi-jsonreference-0.19.3 + (package + (name "go-github-com-go-openapi-jsonreference") + (version "0.19.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/go-openapi/jsonreference") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ln21xai74fynwmi4ck5j0c70yszjy96wfagc705y8khjxsgncsw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/go-openapi/jsonreference")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) + ("go-golang-org-x-net-0.0.0-20190827160401-ba9fcec4b297" + ,go-golang-org-x-net-0.0.0-20190827160401-ba9fcec4b297) + ("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0) + ("go-github-com-go-openapi-jsonpointer-0.19.3" + ,go-github-com-go-openapi-jsonpointer-0.19.3) + ("go-github-com-puerkitobio-urlesc-0.0.0-20170810143723-de5bf2ad4578" + ,go-github-com-puerkitobio-urlesc-0.0.0-20170810143723-de5bf2ad4578) + ("go-github-com-puerkitobio-purell-1.1.1" + ,go-github-com-puerkitobio-purell-1.1.1))) + (home-page "https://github.com/go-openapi/jsonreference") + (synopsis "gojsonreference") + (description + "@url{https://raw.githubusercontent.com/go-openapi/jsonreference/master/LICENSE,(img (@ (src http://img.shields.io/badge/license-Apache%20v2-orange.svg) (alt license)))} @url{http://godoc.org/github.com/go-openapi/jsonreference,(img (@ (src https://godoc.org/github.com/go-openapi/jsonreference?status.svg=) (alt GoDoc)))} +An implementation of JSON Reference - Go language") + (license license:asl2.0))) + +(define-public go-github-com-mailru-easyjson-0.0.0-20190626092158-b2ccc519800e + (package + (name "go-github-com-mailru-easyjson") + (version "0.0.0-20190626092158-b2ccc519800e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mailru/easyjson") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0q85h383mhbkcjm2vqm72bi8n2252fv3c56q3lclzb8n2crnjcdk")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mailru/easyjson")) + (home-page "https://github.com/mailru/easyjson") + (synopsis "easyjson") + (description + "Package easyjson contains marshaler/unmarshaler interfaces and helper functions. +") + (license license:expat))) + +(define-public go-github-com-go-openapi-jsonpointer-0.19.3 + (package + (name "go-github-com-go-openapi-jsonpointer") + (version "0.19.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/go-openapi/jsonpointer") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1m4bb7c5y8ss2s8wl50k7lsk84nl4lcldkbkphrfdl21y51gz4jr")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/go-openapi/jsonpointer")) + (propagated-inputs + `(("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0) + ("go-github-com-mailru-easyjson-0.0.0-20190626092158-b2ccc519800e" + ,go-github-com-mailru-easyjson-0.0.0-20190626092158-b2ccc519800e) + ("go-github-com-go-openapi-swag-0.19.5" + ,go-github-com-go-openapi-swag-0.19.5))) + (home-page "https://github.com/go-openapi/jsonpointer") + (synopsis "gojsonpointer") + (description + "@url{https://raw.githubusercontent.com/go-openapi/jsonpointer/master/LICENSE,(img (@ (src http://img.shields.io/badge/license-Apache%20v2-orange.svg) (alt license)))} @url{http://godoc.org/github.com/go-openapi/jsonpointer,(img (@ (src https://godoc.org/github.com/go-openapi/jsonpointer?status.svg=) (alt GoDoc)))} +An implementation of JSON Pointer - Go language") + (license license:asl2.0))) + +(define-public go-github-com-puerkitobio-purell-1.1.1 + (package + (name "go-github-com-puerkitobio-purell") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/PuerkitoBio/purell") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0c525frsxmalrn55hzzsxy17ng8avkd40ga0wxfw9haxsdjgqdqy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/PuerkitoBio/purell")) + (home-page "https://github.com/PuerkitoBio/purell") + (synopsis "Purell") + (description + "Package purell offers URL normalization as described on the wikipedia page: +@url{http://en.wikipedia.org/wiki/URL_normalization,http://en.wikipedia.org/wiki/URL_normalization} +") + (license license:bsd-3))) + +(define-public go-github-com-puerkitobio-urlesc-0.0.0-20170810143723-de5bf2ad4578 + (package + (name "go-github-com-puerkitobio-urlesc") + (version "0.0.0-20170810143723-de5bf2ad4578") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/PuerkitoBio/urlesc") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0n0srpqwbaan1wrhh2b7ysz543pjs1xw2rghvqyffg9l0g8kzgcw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/PuerkitoBio/urlesc")) + (home-page "https://github.com/PuerkitoBio/urlesc") + (synopsis "urlesc") + (description + "Package urlesc implements query escaping as per @url{https://rfc-editor.org/rfc/rfc3986.html,RFC 3986}. +It contains some parts of the net/url package, modified so as to allow +some reserved characters incorrectly escaped by net/url. +See @url{https://github.com/golang/go/issues/5684,https://github.com/golang/go/issues/5684} +") + (license license:bsd-3))) + +(define-public go-github-com-go-openapi-swag-0.19.2 + (package + (name "go-github-com-go-openapi-swag") + (version "0.19.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/go-openapi/swag") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1mlxlajx2p9wjm72rmqjrx5g49q2sn04y45s3nrykkf6jqlq1v4z")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/go-openapi/swag")) + (propagated-inputs + `(("go-github-com-sourcegraph-go-diff-0.5.1" + ,go-github-com-sourcegraph-go-diff-0.5.1) + ("go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422" + ,go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422) + ("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) + ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" + ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) + ("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0) + ("go-github-com-mailru-easyjson-0.0.0-20190614124828-94de47d64c63" + ,go-github-com-mailru-easyjson-0.0.0-20190614124828-94de47d64c63) + ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/go-openapi/swag") + (synopsis "Swag") + (description + "Package swag contains a bunch of helper functions for go-openapi and go-swagger projects. +") + (license license:asl2.0))) + +(define-public go-github-com-go-openapi-jsonpointer-0.19.2 + (package + (name "go-github-com-go-openapi-jsonpointer") + (version "0.19.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/go-openapi/jsonpointer") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1s3cqf4svrbygvvpvi7hf122szsgihas52vqh0bba3avf4w03g9n")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/go-openapi/jsonpointer")) + (propagated-inputs + `(("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0) + ("go-github-com-go-openapi-swag-0.19.2" + ,go-github-com-go-openapi-swag-0.19.2))) + (home-page "https://github.com/go-openapi/jsonpointer") + (synopsis "gojsonpointer") + (description + "@url{https://raw.githubusercontent.com/go-openapi/jsonpointer/master/LICENSE,(img (@ (src http://img.shields.io/badge/license-Apache%20v2-orange.svg) (alt license)))} @url{http://godoc.org/github.com/go-openapi/jsonpointer,(img (@ (src https://godoc.org/github.com/go-openapi/jsonpointer?status.svg=) (alt GoDoc)))} +An implementation of JSON Pointer - Go language") + (license license:asl2.0))) + +(define-public go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190613194153-d28f0bde5980") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18xj31h70m7xxb7gc86n9i21w6d7djbjz67zfaljm4jqskz6hxkf")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-text-0.3.2 + (package + (name "go-golang-org-x-text") + (version "0.3.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0flv9idw0jm5nm8lx25xqanbkqgfiym6619w575p7nrdh0riqwqh")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/text")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" + ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) + (home-page "https://golang.org/x/text") + (synopsis "Go Text") + (description + "text is a repository of text-related packages related to internationalization +(i18n) and localization (l10n), such as character encodings, text +transformations, and locale-specific text handling. +") + (license license:bsd-3))) + +(define-public go-github-com-go-openapi-jsonreference-0.19.2 + (package + (name "go-github-com-go-openapi-jsonreference") + (version "0.19.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/go-openapi/jsonreference") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0v933yvcwyzzlpdxwb9204ki7lls2rwfd96ww2i901ndvz37kdf8")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/go-openapi/jsonreference")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) + ("go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980" + ,go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980) + ("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0) + ("go-github-com-go-openapi-jsonpointer-0.19.2" + ,go-github-com-go-openapi-jsonpointer-0.19.2) + ("go-github-com-puerkitobio-urlesc-0.0.0-20170810143723-de5bf2ad4578" + ,go-github-com-puerkitobio-urlesc-0.0.0-20170810143723-de5bf2ad4578) + ("go-github-com-puerkitobio-purell-1.1.1" + ,go-github-com-puerkitobio-purell-1.1.1))) + (home-page "https://github.com/go-openapi/jsonreference") + (synopsis "gojsonreference") + (description + "@url{https://raw.githubusercontent.com/go-openapi/jsonreference/master/LICENSE,(img (@ (src http://img.shields.io/badge/license-Apache%20v2-orange.svg) (alt license)))} @url{http://godoc.org/github.com/go-openapi/jsonreference,(img (@ (src https://godoc.org/github.com/go-openapi/jsonreference?status.svg=) (alt GoDoc)))} +An implementation of JSON Reference - Go language") + (license license:asl2.0))) + +(define-public go-github-com-kr-pty-1.1.5 + (package + (name "go-github-com-kr-pty") + (version "1.1.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/pty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1bpq77b90z72cv9h66dvxsg2j197ylpgcps23xsjfbs752bykfw1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/pty")) + (home-page "https://github.com/kr/pty") + (synopsis "pty") + (description + "Package pty is a wrapper for github.com/creack/pty, which provides +functions for working with Unix terminals. +") + (license license:expat))) + +(define-public go-github-com-stretchr-objx-0.2.0 + (package + (name "go-github-com-stretchr-objx") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/objx") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0pcdvakxgddaiwcdj73ra4da05a3q4cgwbpm2w75ycq4kzv8ij8k")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/objx")) + (propagated-inputs + `(("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/stretchr/objx") + (synopsis "Objx") + (description + "Objx - Go package for dealing with maps, slices, JSON and other data. +") + (license license:expat))) + +(define-public go-golang-org-x-crypto-0.0.0-20190611184440-5c40567a22f8 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20190611184440-5c40567a22f8") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "17g8fb9vy2sqq8vgz8jdvf6c6d2290gm2qs0i4yzsd86mgn4dlrg")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" + ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) + ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" + ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20190827160401-ba9fcec4b297 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190827160401-ba9fcec4b297") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1hbqvy6r0s5h0dpdqw8fynl3cq0acin3iyqki9xvl5r8h33yb9bx")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20190616124812-15dcb6c0061f + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190616124812-15dcb6c0061f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1qfkkysbyn44nyx57cq8mmw1cjgpxi9gi9xrf6kljmd9c1416zdd")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20190614205625-5aca471b1d59 + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20190614205625-5aca471b1d59") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1i4h3q83w4y9s065w0wnnnwlssy69jbrj08k47ppsa8dnv85kyrf")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" + ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-github-com-go-openapi-spec-0.19.3 + (package + (name "go-github-com-go-openapi-spec") + (version "0.19.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/go-openapi/spec") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1dikq1p550vj5i9y918s075pgk0fxkixxk3fb70ri7wkm51s6nlj")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/go-openapi/spec")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) + ("go-golang-org-x-tools-0.0.0-20190614205625-5aca471b1d59" + ,go-golang-org-x-tools-0.0.0-20190614205625-5aca471b1d59) + ("go-golang-org-x-sys-0.0.0-20190616124812-15dcb6c0061f" + ,go-golang-org-x-sys-0.0.0-20190616124812-15dcb6c0061f) + ("go-golang-org-x-net-0.0.0-20190827160401-ba9fcec4b297" + ,go-golang-org-x-net-0.0.0-20190827160401-ba9fcec4b297) + ("go-golang-org-x-crypto-0.0.0-20190611184440-5c40567a22f8" + ,go-golang-org-x-crypto-0.0.0-20190611184440-5c40567a22f8) + ("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0) + ("go-github-com-stretchr-objx-0.2.0" + ,go-github-com-stretchr-objx-0.2.0) + ("go-github-com-kr-pty-1.1.5" ,go-github-com-kr-pty-1.1.5) + ("go-github-com-go-openapi-swag-0.19.5" + ,go-github-com-go-openapi-swag-0.19.5) + ("go-github-com-go-openapi-jsonreference-0.19.2" + ,go-github-com-go-openapi-jsonreference-0.19.2) + ("go-github-com-go-openapi-jsonpointer-0.19.3" + ,go-github-com-go-openapi-jsonpointer-0.19.3))) + (home-page "https://github.com/go-openapi/spec") + (synopsis "OAI object model") + (description "The object model for OpenAPI specification documents.") + (license license:asl2.0))) + +(define-public go-github-com-kr-pretty-0.1.0 + (package + (name "go-github-com-kr-pretty") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/pretty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18m4pwg2abd0j9cn5v3k2ksk9ig4vlwxmlw9rrglanziv9l967qp")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/pretty")) + (propagated-inputs + `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) + (home-page "https://github.com/kr/pretty") + (synopsis #f) + (description + "Package pretty provides pretty-printing for Go values. This is +useful during debugging, to avoid wrapping long output lines in +the terminal. +") + (license license:expat))) + +(define-public go-github-com-mailru-easyjson-0.0.0-20190614124828-94de47d64c63 + (package + (name "go-github-com-mailru-easyjson") + (version "0.0.0-20190614124828-94de47d64c63") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mailru/easyjson") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1km0kkh7cf7dlz5pqi9yr1wamv0167y41cyv1dbrcxfdmwgpfd23")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mailru/easyjson")) + (home-page "https://github.com/mailru/easyjson") + (synopsis "easyjson") + (description + "Package easyjson contains marshaler/unmarshaler interfaces and helper functions. +") + (license license:expat))) + +(define-public go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127 + (package + (name "go-gopkg-in-check-v1") + (version "1.0.0-20180628173108-788fd7840127") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/check.v1") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0v3bim0j375z81zrpr5qv42knqs0y2qv2vkjiqi5axvb78slki1a")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) + (home-page "https://gopkg.in/check.v1") + (synopsis "Instructions") + (description + "Package check is a rich testing extension for Go's testing package. +") + (license license:bsd-2))) + +(define-public go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422 + (package + (name "go-golang-org-x-lint") + (version "0.0.0-20190409202823-959b441ac422") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/lint") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1mgcv5f00pkzsbwnq2y7vqvd1b4lr5a3s47cphh2qv4indfk7pck")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/lint")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" + ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd))) + (home-page "https://golang.org/x/lint") + (synopsis "Installation") + (description "Package lint contains a linter for Go source code. +") + (license license:bsd-3))) + +(define-public go-github-com-gogo-protobuf-1.1.1 + (package + (name "go-github-com-gogo-protobuf") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gogo/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1525pq7r6h3s8dncvq8gxi893p2nq8dxpzvq0nfl5b4p6mq0v1c2")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/gogo/protobuf")) + (home-page "https://github.com/gogo/protobuf") + (synopsis "Protocol Buffers for Go with Gadgets") + (description + "gogoprotobuf is a fork of @url{https://github.com/golang/protobuf,golang/protobuf} with extra code generation features.") + (license license:bsd-3))) + +(define-public go-github-com-shurcool-go-0.0.0-20180423040247-9e1955d9fb6e + (package + (name "go-github-com-shurcool-go") + (version "0.0.0-20180423040247-9e1955d9fb6e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/shurcooL/go") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1lad9bvs75jsn61cfza19739c2c057k0bqxg2b4xz3z3l4w1mkqj")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/shurcooL/go")) + (home-page "https://github.com/shurcooL/go") + (synopsis "go") + (description "Common Go code.") + (license license:expat))) + +(define-public go-github-com-shurcool-go-goon-0.0.0-20170922171312-37c2f522c041 + (package + (name "go-github-com-shurcool-go-goon") + (version "0.0.0-20170922171312-37c2f522c041") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/shurcooL/go-goon") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "17ac6j6msdcxbmfhq6pxhw5z339b87bd6ciln9909drjv2szyxqv")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/shurcooL/go-goon")) + (home-page "https://github.com/shurcooL/go-goon") + (synopsis "goon") + (description + "Package goon is a deep pretty printer with Go-like notation. It implements the goon specification. +") + (license license:expat))) + +(define-public go-sourcegraph-com-sqs-pbtypes-0.0.0-20180604144634-d3ebe8f20ae4 + (package + (name "go-sourcegraph-com-sqs-pbtypes") + (version "0.0.0-20180604144634-d3ebe8f20ae4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sqs/pbtypes") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0vcyqq4jc2jv1wh288qdxv51qxcfj07lvnlf37pjicsd2yrb7yrr")))) + (build-system go-build-system) + (arguments '(#:import-path "sourcegraph.com/sqs/pbtypes")) + (home-page "https://sourcegraph.com/sqs/pbtypes") + (synopsis "pbtypes") + (description + "Package pbtypes contains protocol buffer types (Timestamp, Void, +etc.) and related helpers. +") + (license license:asl2.0))) + +(define-public go-github-com-sourcegraph-go-diff-0.5.1 + (package + (name "go-github-com-sourcegraph-go-diff") + (version "0.5.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sourcegraph/go-diff") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0acabccjmxgdvhyd7fr0krlf7ymc7mngdq292n03hfys9nrnb0b2")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/sourcegraph/go-diff")) + (propagated-inputs + `(("go-sourcegraph-com-sqs-pbtypes-0.0.0-20180604144634-d3ebe8f20ae4" + ,go-sourcegraph-com-sqs-pbtypes-0.0.0-20180604144634-d3ebe8f20ae4) + ("go-github-com-shurcool-go-goon-0.0.0-20170922171312-37c2f522c041" + ,go-github-com-shurcool-go-goon-0.0.0-20170922171312-37c2f522c041) + ("go-github-com-shurcool-go-0.0.0-20180423040247-9e1955d9fb6e" + ,go-github-com-shurcool-go-0.0.0-20180423040247-9e1955d9fb6e) + ("go-github-com-gogo-protobuf-1.1.1" + ,go-github-com-gogo-protobuf-1.1.1))) + (home-page "https://github.com/sourcegraph/go-diff") + (synopsis "go-diff") + (description "Diff parser and printer for Go.") + (license license:expat))) + +(define-public go-github-com-go-openapi-swag-0.19.5 + (package + (name "go-github-com-go-openapi-swag") + (version "0.19.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/go-openapi/swag") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1z34vqc5yz6rzvarrvlhkimxx33p74iaxb28l1mv716njvlsmjhg")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/go-openapi/swag")) + (propagated-inputs + `(("go-github-com-sourcegraph-go-diff-0.5.1" + ,go-github-com-sourcegraph-go-diff-0.5.1) + ("go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422" + ,go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422) + ("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) + ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" + ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) + ("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0) + ("go-github-com-mailru-easyjson-0.0.0-20190614124828-94de47d64c63" + ,go-github-com-mailru-easyjson-0.0.0-20190614124828-94de47d64c63) + ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/go-openapi/swag") + (synopsis "Swag") + (description + "Package swag contains a bunch of helper functions for go-openapi and go-swagger projects. +") + (license license:asl2.0))) + +(define-public go-github-com-google-uuid-1.1.1 + (package + (name "go-github-com-google-uuid") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/uuid") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hfxcf9frkb57k6q0rdkrmnfs78ms21r1qfk9fhlqga2yh5xg8zb")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/uuid")) + (home-page "https://github.com/google/uuid") + (synopsis "uuid") + (description "Package uuid generates and inspects UUIDs. +") + (license license:bsd-3))) + +(define-public go-github-com-docopt-docopt-go-0.0.0-20180111231733-ee0de3bc6815 + (package + (name "go-github-com-docopt-docopt-go") + (version "0.0.0-20180111231733-ee0de3bc6815") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/docopt/docopt.go") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hlra7rmi5pmd7d93rv56ahiy4qkgmq8a6mz0jpadvbi5qh8lq6j")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/docopt/docopt-go")) + (home-page "https://github.com/docopt/docopt-go") + (synopsis "docopt-go") + (description + "Package docopt parses command-line arguments based on a help message. +") + (license license:expat))) + +(define-public go-github-com-golang-protobuf-1.3.3 + (package + (name "go-github-com-golang-protobuf") + (version "1.3.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1cyyr52yhj3fzrily3rmsbqyj8va4ld75lmry0857m39rgpv8sy1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-github-com-googleapis-gnostic-0.4.1 + (package + (name "go-github-com-googleapis-gnostic") + (version "0.4.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/gnostic") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fw28m3ach5pkcdh4ijd6s7w09j0n88p6mah3hp0k8918jsc6mj9")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/googleapis/gnostic")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) + ("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" + ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) + ("go-github-com-kr-pretty-0.2.0" ,go-github-com-kr-pretty-0.2.0) + ("go-github-com-golang-protobuf-1.3.3" + ,go-github-com-golang-protobuf-1.3.3) + ("go-github-com-docopt-docopt-go-0.0.0-20180111231733-ee0de3bc6815" + ,go-github-com-docopt-docopt-go-0.0.0-20180111231733-ee0de3bc6815))) + (home-page "https://github.com/googleapis/gnostic") + (synopsis "â¨\x81 gnostic") + (description + "Gnostic is a tool for building better REST APIs through knowledge. +") + (license license:asl2.0))) + +(define-public go-github-com-mitchellh-mapstructure-1.1.2 + (package + (name "go-github-com-mitchellh-mapstructure") + (version "1.1.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mitchellh/mapstructure") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03bpv28jz9zhn4947saqwi328ydj7f6g6pf1m2d4m5zdh5jlfkrr")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mitchellh/mapstructure")) + (home-page "https://github.com/mitchellh/mapstructure") + (synopsis "mapstructure") + (description + "Package mapstructure exposes functionality to convert one arbitrary +Go type into another, typically to convert a map[string]interface{} +into a native Go structure. +") + (license license:expat))) + +(define-public go-github-com-munnerz-goautoneg-0.0.0-20120707110453-a547fc61f48d + (package + (name "go-github-com-munnerz-goautoneg") + (version "0.0.0-20120707110453-a547fc61f48d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/munnerz/goautoneg") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19khhn5xhqv1yp7d6k987gh5w5rhrjnp4p0c6fyrd8z6lzz5h9qi")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/munnerz/goautoneg")) + (home-page "https://github.com/munnerz/goautoneg") + (synopsis #f) + (description #f) + (license license:bsd-3))) + +(define-public go-github-com-onsi-ginkgo-0.0.0-20170829012221-11459a886d9c + (package + (name "go-github-com-onsi-ginkgo") + (version "0.0.0-20170829012221-11459a886d9c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/onsi/ginkgo") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1nswc1fnrrs792qbix05h91bilj8rr3wxmxgwi97p2gjk0r292zh")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/onsi/ginkgo")) + (home-page "https://github.com/onsi/ginkgo") + (synopsis "Ginkgo 2.0 Release Candidate is available!") + (description "Ginkgo is a BDD-style testing framework for Golang +") + (license license:expat))) + +(define-public go-github-com-onsi-gomega-0.0.0-20170829124025-dcabb60a477c + (package + (name "go-github-com-onsi-gomega") + (version "0.0.0-20170829124025-dcabb60a477c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/onsi/gomega") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1775lv5jbsgv3ghq5v2827slqlhqdadrzc1nkpq4y0hdv2qzrgkm")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/onsi/gomega")) + (home-page "https://github.com/onsi/gomega") + (synopsis ": a BDD Testing Framework for Golang") + (description + "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library. +") + (license license:expat))) + +(define-public go-github-com-spf13-pflag-0.0.0-20170130214245-9ff6c6923cff + (package + (name "go-github-com-spf13-pflag") + (version "0.0.0-20170130214245-9ff6c6923cff") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/spf13/pflag") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0mfrxzyl8x7araa126lh8l3sihbbgfbzgkrg3v3cx7y4n3wrsqvn")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/spf13/pflag")) + (home-page "https://github.com/spf13/pflag") + (synopsis "Description") + (description + "Package pflag is a drop-in replacement for Go's flag package, implementing +POSIX/GNU-style --flags. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200323222414-85ca7c5b95cd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1504qkgbhhm4f0bhk77v2r1lj6x171ay5m79alkg78wjb5cign5l")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20200324143707-d3edc9973b7e + (package + (name "go-golang-org-x-net") + (version "0.0.0-20200324143707-d3edc9973b7e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12zbjwcsh9b0lwycqlkrnbyg5a6a9dzgj8hhgq399bdda5bd97y7")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" + ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-k8s-io-gengo-0.0.0-20200413195148-3a45101e95ac + (package + (name "go-k8s-io-gengo") + (version "0.0.0-20200413195148-3a45101e95ac") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes/gengo") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0x46jq6rv8z0y96231rfgzvfscgy5hp5aacid3r93zy0rq9r37g6")))) + (build-system go-build-system) + (arguments '(#:import-path "k8s.io/gengo")) + (home-page "https://k8s.io/gengo") + (synopsis "gengo") + (description + "This package provides a package for generating things based on go files. This mechanism was first used +in Kubernetes and is split out here for ease of reuse and maintainability.") + (license license:asl2.0))) + +(define-public go-sigs-k8s-io-structured-merge-diff-v4-4.0.2 + (package + (name "go-sigs-k8s-io-structured-merge-diff-v4") + (version "4.0.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes-sigs/structured-merge-diff") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1z60sw6nrlzyddyx5pvh6afwf8jvmn8c2zw15hklq17iyvj3lj7a")))) + (build-system go-build-system) + (arguments + '(#:import-path + "sigs.k8s.io/structured-merge-diff/v4" + #:unpack-path + "sigs.k8s.io/structured-merge-diff/v4")) + (propagated-inputs + `(("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0) + ("go-github-com-modern-go-reflect2-1.0.1" + ,go-github-com-modern-go-reflect2-1.0.1) + ("go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd" + ,go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd) + ("go-github-com-json-iterator-go-1.1.6" + ,go-github-com-json-iterator-go-1.1.6) + ("go-github-com-google-gofuzz-1.0.0" + ,go-github-com-google-gofuzz-1.0.0) + ("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1))) + (home-page "https://sigs.k8s.io/structured-merge-diff/v4") + (synopsis "Structured Merge and Diff") + (description + "This repo contains code which implements the Kubernetes \"apply\" operation.") + (license license:asl2.0))) + +(define-public go-sigs-k8s-io-yaml-1.1.0 + (package + (name "go-sigs-k8s-io-yaml") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes-sigs/yaml") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1p7hvjdr5jsyk7nys1g1pmgnf3ys6n320i6hds85afppk81k01kb")))) + (build-system go-build-system) + (arguments '(#:import-path "sigs.k8s.io/yaml")) + (home-page "https://sigs.k8s.io/yaml") + (synopsis "YAML marshaling and unmarshaling support for Go") + (description + "kubernetes-sigs/yaml is a permanent fork of @url{https://github.com/ghodss/yaml,ghodss/yaml}.") + (license #f))) + +(define-public go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd + (package + (name "go-k8s-io-kube-openapi") + (version "0.0.0-20201113171705-d219536bb9fd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes/kube-openapi") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "11d420a3rxznh3f6x5a6xp22zjwv6jfq4w1gb6srqb4vn9rhgrka")))) + (build-system go-build-system) + (arguments '(#:import-path "k8s.io/kube-openapi")) + (propagated-inputs + `(("go-sigs-k8s-io-yaml-1.1.0" ,go-sigs-k8s-io-yaml-1.1.0) + ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.2" + ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.2) + ("go-k8s-io-klog-v2-2.0.0" ,go-k8s-io-klog-v2-2.0.0) + ("go-k8s-io-gengo-0.0.0-20200413195148-3a45101e95ac" + ,go-k8s-io-gengo-0.0.0-20200413195148-3a45101e95ac) + ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) + ("go-golang-org-x-net-0.0.0-20200324143707-d3edc9973b7e" + ,go-golang-org-x-net-0.0.0-20200324143707-d3edc9973b7e) + ("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0) + ("go-github-com-spf13-pflag-0.0.0-20170130214245-9ff6c6923cff" + ,go-github-com-spf13-pflag-0.0.0-20170130214245-9ff6c6923cff) + ("go-github-com-onsi-gomega-0.0.0-20170829124025-dcabb60a477c" + ,go-github-com-onsi-gomega-0.0.0-20170829124025-dcabb60a477c) + ("go-github-com-onsi-ginkgo-0.0.0-20170829012221-11459a886d9c" + ,go-github-com-onsi-ginkgo-0.0.0-20170829012221-11459a886d9c) + ("go-github-com-munnerz-goautoneg-0.0.0-20120707110453-a547fc61f48d" + ,go-github-com-munnerz-goautoneg-0.0.0-20120707110453-a547fc61f48d) + ("go-github-com-mitchellh-mapstructure-1.1.2" + ,go-github-com-mitchellh-mapstructure-1.1.2) + ("go-github-com-json-iterator-go-1.1.6" + ,go-github-com-json-iterator-go-1.1.6) + ("go-github-com-googleapis-gnostic-0.4.1" + ,go-github-com-googleapis-gnostic-0.4.1) + ("go-github-com-google-uuid-1.1.1" ,go-github-com-google-uuid-1.1.1) + ("go-github-com-google-gofuzz-1.0.0" + ,go-github-com-google-gofuzz-1.0.0) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.3.3" + ,go-github-com-golang-protobuf-1.3.3) + ("go-github-com-go-openapi-swag-0.19.5" + ,go-github-com-go-openapi-swag-0.19.5) + ("go-github-com-go-openapi-spec-0.19.3" + ,go-github-com-go-openapi-spec-0.19.3) + ("go-github-com-go-openapi-jsonreference-0.19.3" + ,go-github-com-go-openapi-jsonreference-0.19.3) + ("go-github-com-go-openapi-jsonpointer-0.19.3" + ,go-github-com-go-openapi-jsonpointer-0.19.3) + ("go-github-com-ghodss-yaml-0.0.0-20150909031657-73d445a93680" + ,go-github-com-ghodss-yaml-0.0.0-20150909031657-73d445a93680) + ("go-github-com-emicklei-go-restful-0.0.0-20170410110728-ff4f55a20633" + ,go-github-com-emicklei-go-restful-0.0.0-20170410110728-ff4f55a20633) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1) + ("go-github-com-asaskevich-govalidator-0.0.0-20190424111038-f61b66f89f4a" + ,go-github-com-asaskevich-govalidator-0.0.0-20190424111038-f61b66f89f4a) + ("go-github-com-nytimes-gziphandler-0.0.0-20170623195520-56545f4a5d46" + ,go-github-com-nytimes-gziphandler-0.0.0-20170623195520-56545f4a5d46))) + (home-page "https://k8s.io/kube-openapi") + (synopsis "Kube OpenAPI") + (description + "This repo is the home for Kubernetes OpenAPI discovery spec generation. The goal +is to support a subset of OpenAPI features to satisfy kubernetes use-cases but +implement that subset with little to no assumption about the structure of the +code or routes. Thus, there should be no kubernetes specific code in this repo.") + (license license:asl2.0))) + +(define-public go-gopkg-in-yaml-v2-2.2.1 + (package + (name "go-gopkg-in-yaml-v2") + (version "2.2.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0dwjrs2lp2gdlscs7bsrmyc5yf6mm4fvgw71bzr9mv2qrd2q73s1")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v2") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language. +") + (license license:asl2.0))) + +(define-public go-github-com-google-gofuzz-1.0.0 + (package + (name "go-github-com-google-gofuzz") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/gofuzz") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0qz439qvccm91w0mmjz4fqgx48clxdwagkvvx89cr43q1d4iry36")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/gofuzz")) + (home-page "https://github.com/google/gofuzz") + (synopsis "gofuzz") + (description + "Package fuzz is a library for populating go objects with random values. +") + (license license:asl2.0))) + +(define-public go-github-com-json-iterator-go-1.1.6 + (package + (name "go-github-com-json-iterator-go") + (version "1.1.6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/json-iterator/go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "08caswxvdn7nvaqyj5kyny6ghpygandlbw9vxdj7l5vkp7q0s43r")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/json-iterator/go")) + (home-page "https://github.com/json-iterator/go") + (synopsis "Benchmark") + (description + "Package jsoniter implements encoding and decoding of JSON as defined in +@url{https://rfc-editor.org/rfc/rfc4627.html,RFC 4627} and provides interfaces with identical syntax of standard lib encoding/json. +Converting from encoding/json to jsoniter is no more than replacing the package with jsoniter +and variable type declarations (if any). +jsoniter interfaces gives 100% compatibility with code using standard lib. +") + (license license:expat))) + +(define-public go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd + (package + (name "go-github-com-modern-go-concurrent") + (version "0.0.0-20180306012644-bacd9c7ef1dd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/modern-go/concurrent") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0s0fxccsyb8icjmiym5k7prcqx36hvgdwl588y0491gi18k5i4zs")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/modern-go/concurrent")) + (home-page "https://github.com/modern-go/concurrent") + (synopsis "concurrent") + (description + "because sync.Map is only available in go 1.9, we can use concurrent.Map to make code portable") + (license license:asl2.0))) + +(define-public go-github-com-modern-go-reflect2-1.0.1 + (package + (name "go-github-com-modern-go-reflect2") + (version "1.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/modern-go/reflect2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "06a3sablw53n1dqqbr2f53jyksbxdmmk8axaas4yvnhyfi55k4lf")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/modern-go/reflect2")) + (home-page "https://github.com/modern-go/reflect2") + (synopsis "reflect2") + (description "reflect api that avoids runtime reflect.Value cost") + (license license:asl2.0))) + +(define-public go-sigs-k8s-io-structured-merge-diff-v4-4.0.3 + (package + (name "go-sigs-k8s-io-structured-merge-diff-v4") + (version "4.0.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes-sigs/structured-merge-diff") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1jv60bkk0z437bsz5ldjyc006k20njmpl0xfl8p3g1q0bx0fkypa")))) + (build-system go-build-system) + (arguments + '(#:import-path + "sigs.k8s.io/structured-merge-diff/v4" + #:unpack-path + "sigs.k8s.io/structured-merge-diff/v4")) + (propagated-inputs + `(("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0) + ("go-github-com-modern-go-reflect2-1.0.1" + ,go-github-com-modern-go-reflect2-1.0.1) + ("go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd" + ,go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd) + ("go-github-com-json-iterator-go-1.1.6" + ,go-github-com-json-iterator-go-1.1.6) + ("go-github-com-google-gofuzz-1.0.0" + ,go-github-com-google-gofuzz-1.0.0) + ("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1))) + (home-page "https://sigs.k8s.io/structured-merge-diff/v4") + (synopsis "Structured Merge and Diff") + (description + "This repo contains code which implements the Kubernetes \"apply\" operation.") + (license license:asl2.0))) + +(define-public go-gopkg-in-yaml-v2-2.2.8 + (package + (name "go-gopkg-in-yaml-v2") + (version "2.2.8") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1inf7svydzscwv9fcjd2rm61a4xjk6jkswknybmns2n58shimapw")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v2") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language. +") + (license license:asl2.0))) + +(define-public go-sigs-k8s-io-yaml-1.2.0 + (package + (name "go-sigs-k8s-io-yaml") + (version "1.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes-sigs/yaml") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "059a1chkd6afyvqszrx7h93k6cgik3ia92x29f5whpwi66461pzq")))) + (build-system go-build-system) + (arguments '(#:import-path "sigs.k8s.io/yaml")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://sigs.k8s.io/yaml") + (synopsis "YAML marshaling and unmarshaling support for Go") + (description + "kubernetes-sigs/yaml is a permanent fork of @url{https://github.com/ghodss/yaml,ghodss/yaml}.") + (license #f))) + +(define-public go-k8s-io-apimachinery-0.20.6 + (package + (name "go-k8s-io-apimachinery") + (version "0.20.6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes/apimachinery") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "16952v7zjk3pdyw5r3wy28qkcfx3risid0847pwdw8gmalwxr237")))) + (build-system go-build-system) + (arguments '(#:import-path "k8s.io/apimachinery")) + (propagated-inputs + `(("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) + ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.3" + ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.3) + ("go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd" + ,go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd) + ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) + ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) + ("go-gopkg-in-inf-v0-0.9.1" ,go-gopkg-in-inf-v0-0.9.1) + ("go-google-golang-org-protobuf-1.25.0" + ,go-google-golang-org-protobuf-1.25.0) + ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) + ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" + ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) + ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" + ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-onsi-gomega-1.7.0" ,go-github-com-onsi-gomega-1.7.0) + ("go-github-com-onsi-ginkgo-1.11.0" ,go-github-com-onsi-ginkgo-1.11.0) + ("go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f" + ,go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f) + ("go-github-com-modern-go-reflect2-1.0.1" + ,go-github-com-modern-go-reflect2-1.0.1) + ("go-github-com-json-iterator-go-1.1.10" + ,go-github-com-json-iterator-go-1.1.10) + ("go-github-com-hashicorp-golang-lru-0.5.1" + ,go-github-com-hashicorp-golang-lru-0.5.1) + ("go-github-com-googleapis-gnostic-0.4.1" + ,go-github-com-googleapis-gnostic-0.4.1) + ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) + ("go-github-com-google-gofuzz-1.1.0" + ,go-github-com-google-gofuzz-1.1.0) + ("go-github-com-google-go-cmp-0.5.2" + ,go-github-com-google-go-cmp-0.5.2) + ("go-github-com-golang-protobuf-1.4.3" + ,go-github-com-golang-protobuf-1.4.3) + ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" + ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) + ("go-github-com-gogo-protobuf-1.3.2" + ,go-github-com-gogo-protobuf-1.3.2) + ("go-github-com-fsnotify-fsnotify-1.4.9" + ,go-github-com-fsnotify-fsnotify-1.4.9) + ("go-github-com-evanphx-json-patch-4.9.0+incompatible" + ,go-github-com-evanphx-json-patch-4.9.0+incompatible) + ("go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153" + ,go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153) + ("go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96" + ,go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://k8s.io/apimachinery") + (synopsis "apimachinery") + (description + "Scheme, typing, encoding, decoding, and conversion packages for Kubernetes and Kubernetes-like API objects.") + (license license:asl2.0))) + +(define-public go-k8s-io-client-go-0.20.6 + (package + (name "go-k8s-io-client-go") + (version "0.20.6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes/client-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fpz56pfadbfp8mlzmzicfmlgk5zqbk2rdwnr8c8h6ypjd5xjcvz")))) + (build-system go-build-system) + (arguments '(#:import-path "k8s.io/client-go")) + (propagated-inputs + `(("go-k8s-io-apimachinery-0.20.6" ,go-k8s-io-apimachinery-0.20.6) + ("go-k8s-io-api-0.20.6" ,go-k8s-io-api-0.20.6) + ("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) + ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" + ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) + ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) + ("go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e" + ,go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e) + ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" + ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) + ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" + ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) + ("go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0" + ,go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) + ("go-github-com-peterbourgon-diskv-2.0.1+incompatible" + ,go-github-com-peterbourgon-diskv-2.0.1+incompatible) + ("go-github-com-imdario-mergo-0.3.5" + ,go-github-com-imdario-mergo-0.3.5) + ("go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7" + ,go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7) + ("go-github-com-googleapis-gnostic-0.4.1" + ,go-github-com-googleapis-gnostic-0.4.1) + ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) + ("go-github-com-google-gofuzz-1.1.0" + ,go-github-com-google-gofuzz-1.1.0) + ("go-github-com-google-go-cmp-0.5.2" + ,go-github-com-google-go-cmp-0.5.2) + ("go-github-com-golang-protobuf-1.4.3" + ,go-github-com-golang-protobuf-1.4.3) + ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" + ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) + ("go-github-com-gogo-protobuf-1.3.2" + ,go-github-com-gogo-protobuf-1.3.2) + ("go-github-com-evanphx-json-patch-4.9.0+incompatible" + ,go-github-com-evanphx-json-patch-4.9.0+incompatible) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1) + ("go-github-com-azure-go-autorest-autorest-adal-0.9.5" + ,go-github-com-azure-go-autorest-autorest-adal-0.9.5) + ("go-github-com-azure-go-autorest-autorest-0.11.1" + ,go-github-com-azure-go-autorest-autorest-0.11.1) + ("go-cloud-google-com-go-0.54.0" ,go-cloud-google-com-go-0.54.0))) + (home-page "https://k8s.io/client-go") + (synopsis "client-go") + (description + "Go clients for talking to a @url{http://kubernetes.io/,kubernetes} cluster.") + (license license:asl2.0))) + +(define-public go-k8s-io-component-base-0.20.6 + (package + (name "go-k8s-io-component-base") + (version "0.20.6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes/component-base") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1987vm5lhbnn4ynrpzdgz3873lp78664cpdpkbv9jwnhzqdhpyhf")))) + (build-system go-build-system) + (arguments '(#:import-path "k8s.io/component-base")) + (propagated-inputs + `(("go-k8s-io-client-go-0.20.6" ,go-k8s-io-client-go-0.20.6) + ("go-k8s-io-apimachinery-0.20.6" ,go-k8s-io-apimachinery-0.20.6) + ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" + ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) + ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) + ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) + ("go-go-uber-org-multierr-1.1.0" ,go-go-uber-org-multierr-1.1.0) + ("go-go-uber-org-atomic-1.4.0" ,go-go-uber-org-atomic-1.4.0) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) + ("go-github-com-sirupsen-logrus-1.6.0" + ,go-github-com-sirupsen-logrus-1.6.0) + ("go-github-com-prometheus-procfs-0.2.0" + ,go-github-com-prometheus-procfs-0.2.0) + ("go-github-com-prometheus-common-0.10.0" + ,go-github-com-prometheus-common-0.10.0) + ("go-github-com-prometheus-client-model-0.2.0" + ,go-github-com-prometheus-client-model-0.2.0) + ("go-github-com-prometheus-client-golang-1.7.1" + ,go-github-com-prometheus-client-golang-1.7.1) + ("go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd" + ,go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd) + ("go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369" + ,go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369) + ("go-github-com-google-go-cmp-0.5.2" + ,go-github-com-google-go-cmp-0.5.2) + ("go-github-com-go-logr-logr-0.2.0" ,go-github-com-go-logr-logr-0.2.0) + ("go-github-com-blang-semver-3.5.1+incompatible" + ,go-github-com-blang-semver-3.5.1+incompatible))) + (home-page "https://k8s.io/component-base") + (synopsis "component-base") + (description + "Implement KEP 32: @url{https://github.com/kubernetes/enhancements/blob/master/keps/sig-cluster-lifecycle/wgs/783-component-base/README.md,https://github.com/kubernetes/enhancements/blob/master/keps/sig-cluster-lifecycle/wgs/783-component-base/README.md}") + (license license:asl2.0))) + +(define-public go-github-com-yuin-goldmark-1.1.27 + (package + (name "go-github-com-yuin-goldmark") + (version "1.1.27") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/yuin/goldmark") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1872cqnii0kwiqcy81yin0idvjy5mdy4zlzz0csb319lcjs3b923")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/yuin/goldmark")) + (home-page "https://github.com/yuin/goldmark") + (synopsis "goldmark") + (description + "Package goldmark implements functions to convert markdown text to a desired format. +") + (license license:expat))) + +(define-public go-golang-org-x-mod-0.2.0 + (package + (name "go-golang-org-x-mod") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/mod") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fp6885dclq77mh73v7i54v2b9llpv4di193zc8vmsbbkkc483cl")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/mod")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" + ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) + ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" + ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) + ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" + ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) + (home-page "https://golang.org/x/mod") + (synopsis "mod") + (description + "This repository holds packages for writing tools +that work directly with Go module mechanics. +That is, it is for direct manipulation of Go modules themselves.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b + (package + (name "go-golang-org-x-net") + (version "0.0.0-20200226121028-0de0cce0169b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1db7s5kbzyh2zd5lpv05n7hp8wbwdvgk0wpiwrlnig94mkr0y5aq")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20190911185100-cd5d95a43a6e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1nqkyz2y1qvqcma52ijh02s8aiqmkfb95j08f6zcjhbga3ds6hds")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the +ones provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20200619180055-7c47624df98f + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20200619180055-7c47624df98f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fhzwd32j7w9g3algq0zj8g7ivx3f0mn9nx9mj046wdscryn49mk")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) + ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" + ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) + ("go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b" + ,go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b) + ("go-golang-org-x-mod-0.2.0" ,go-golang-org-x-mod-0.2.0) + ("go-github-com-yuin-goldmark-1.1.27" + ,go-github-com-yuin-goldmark-1.1.27))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-github-com-kisielk-errcheck-1.5.0 + (package + (name "go-github-com-kisielk-errcheck") + (version "1.5.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kisielk/errcheck") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ci3jz2px74pfmr42jv7dpx7fdzx08vai4czp9fkiyb0gcaiqsk6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kisielk/errcheck")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20200619180055-7c47624df98f" + ,go-golang-org-x-tools-0.0.0-20200619180055-7c47624df98f))) + (home-page "https://github.com/kisielk/errcheck") + (synopsis "errcheck") + (description + "errcheck is a program for checking for unchecked errors in go programs.") + (license license:expat))) + +(define-public go-github-com-yuin-goldmark-1.2.1 + (package + (name "go-github-com-yuin-goldmark") + (version "1.2.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/yuin/goldmark") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12rsnsf65drcp0jfw2jl9w589vsn3pxdk1zh3v9q908iigngrcmy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/yuin/goldmark")) + (home-page "https://github.com/yuin/goldmark") + (synopsis "goldmark") + (description + "Package goldmark implements functions to convert markdown text to a desired format. +") + (license license:expat))) + +(define-public go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20191011191535-87dc89f01550") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0z4i1m2yn3f31ci7wvcm2rxkx2yiv7a78mfzklncmsz2k97rlh2g")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" + ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) + ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" + ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190620200207-3b0461eec859") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0l00c8l0a8xnv6qdpwfzxxsr58jggacgzdrwiprrfx2xqm37b6d5")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7 + (package + (name "go-golang-org-x-xerrors") + (version "0.0.0-20190717185122-a985d3407aa7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/xerrors") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "00wzr5w8aadipgc3rkk8f11i41znskfj9ix5nhhaxyg7isrslgcj")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/xerrors")) + (home-page "https://golang.org/x/xerrors") + (synopsis #f) + (description + "Package xerrors implements functions to manipulate errors. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20191119224855-298f0cb1881e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0l4pqwib2wnfnix6nvxl0yrq87ipi7ff1rz6z5bxfzy9dki1nzmv")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7" + ,go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7) + ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" + ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) + ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" + ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898 + (package + (name "go-golang-org-x-xerrors") + (version "0.0.0-20191011141410-1b5146add898") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/xerrors") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0w2akj91krxjag0xdhsg78470888nicc5ismc2ap9jqpss6v1zih")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/xerrors")) + (home-page "https://golang.org/x/xerrors") + (synopsis #f) + (description + "Package xerrors implements functions to manipulate errors. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-mod-0.3.0 + (package + (name "go-golang-org-x-mod") + (version "0.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/mod") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ldgbx2zpprbsfn6p8pfgs4nn87gwbfcv2z0fa7n8alwsq2yw78q")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/mod")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" + ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) + ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" + ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) + ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" + ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) + (home-page "https://golang.org/x/mod") + (synopsis "mod") + (description + "This repository holds packages for writing tools +that work directly with Go module mechanics. +That is, it is for direct manipulation of Go modules themselves.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20201021035429-f5854403a974 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20201021035429-f5854403a974") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1vw63zpmhi337f3gc432x3wkib4j2ia8dy7if31wxwb9dgqvy222")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) + ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" + ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) + ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" + ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9 + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20201020160332-67f06af15bc9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "093p4panc808ak5bamzz7m9nb0xxib7778jpnr6f0xkz1n4fzyw5")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the +ones provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1 + (package + (name "go-golang-org-x-xerrors") + (version "0.0.0-20200804184101-5ec99f83aff1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/xerrors") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1dbzc3gmf2haazpv7cgmv97rq40g2xzwbglc17vas8dwhgwgwrzb")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/xerrors")) + (home-page "https://golang.org/x/xerrors") + (synopsis #f) + (description + "Package xerrors implements functions to manipulate errors. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20210106214847-113979e3529a + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20210106214847-113979e3529a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0pq1a7hkamqdwsajyfrb27s56cvxz5838krsgyqz346s2djwdrzl")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" + ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) + ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" + ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) + ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" + ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) + ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) + ("go-github-com-yuin-goldmark-1.2.1" + ,go-github-com-yuin-goldmark-1.2.1))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-github-com-gogo-protobuf-1.3.2 + (package + (name "go-github-com-gogo-protobuf") + (version "1.3.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gogo/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0dfv1bhx5zhb5bsj5sj757nkacf2swp1ajpcyj9d0b37n602m18a")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/gogo/protobuf")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20210106214847-113979e3529a" + ,go-golang-org-x-tools-0.0.0-20210106214847-113979e3529a) + ("go-github-com-kisielk-gotool-1.0.0" + ,go-github-com-kisielk-gotool-1.0.0) + ("go-github-com-kisielk-errcheck-1.5.0" + ,go-github-com-kisielk-errcheck-1.5.0))) + (home-page "https://github.com/gogo/protobuf") + (synopsis "Protocol Buffers for Go with Gadgets") + (description + "gogoprotobuf is a fork of @url{https://github.com/golang/protobuf,golang/protobuf} with extra code generation features.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-1.23.0 + (package + (name "go-google-golang-org-protobuf") + (version "1.23.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03yan0m1v0zmlr935p4n24fd376mznsg85zy8sywbgisls4s1bzy")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.0" + ,go-github-com-golang-protobuf-1.4.0))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.4.3 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1kf1d7xmyjvy0z6j5czp6nqyvj9zrk6liv6znif08927xqfrzyln")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.23.0" + ,go-google-golang-org-protobuf-1.23.0) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-github-com-google-go-cmp-0.5.2 + (package + (name "go-github-com-google-go-cmp") + (version "0.5.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0qchy411jm9q2l9mf7x3ry2ycaqp9xdhf2nx14qrpzcxfigv2705")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") + (license license:bsd-3))) + +(define-public go-github-com-kr-pty-1.1.1 + (package + (name "go-github-com-kr-pty") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/pty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0383f0mb9kqjvncqrfpidsf8y6ns5zlrc91c6a74xpyxjwvzl2y6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/pty")) + (home-page "https://github.com/kr/pty") + (synopsis "pty") + (description + "Package pty is a wrapper for github.com/creack/pty, which provides +functions for working with Unix terminals. +") + (license license:expat))) + +(define-public go-github-com-kr-text-0.1.0 + (package + (name "go-github-com-kr-text") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1gm5bsl01apvc84bw06hasawyqm4q84vx1pm32wr9jnd7a8vjgj1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/text")) + (propagated-inputs + `(("go-github-com-kr-pty-1.1.1" ,go-github-com-kr-pty-1.1.1))) + (home-page "https://github.com/kr/text") + (synopsis #f) + (description + "Package text provides rudimentary functions for manipulating text in +paragraphs. +") + (license license:expat))) + +(define-public go-github-com-kr-pretty-0.2.0 + (package + (name "go-github-com-kr-pretty") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/pretty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ywbfzz1h3a3qd8rpkiqwi1dm4w8ls9ijb4x1b7567grns9f0vnp")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/pretty")) + (propagated-inputs + `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) + (home-page "https://github.com/kr/pretty") + (synopsis #f) + (description + "Package pretty provides pretty-printing for Go values. This is +useful during debugging, to avoid wrapping long output lines in +the terminal. +") + (license license:expat))) + +(define-public go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c + (package + (name "go-gopkg-in-yaml-v3") + (version "3.0.0-20200313102051-9f266ea9e77c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v3") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1bbai3lzb50m0x2vwsdbagrbhvfylj9k1m32hgbqwldqx4p9ay35")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v3") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language. +") + (license #f))) + +(define-public go-github-com-stretchr-testify-1.6.1 + (package + (name "go-github-com-stretchr-testify") + (version "1.6.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1yhiqqzjvi63pf01rgzx68gqkkvjx03fvl5wk30br5l6s81s090l")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (propagated-inputs + `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" + ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) + ("go-github-com-stretchr-objx-0.1.0" + ,go-github-com-stretchr-objx-0.1.0) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.0" + ,go-github-com-davecgh-go-spew-1.1.0))) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +") + (license license:expat))) + +(define-public go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190404232315-eb5bcb51f2a3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "17k4g8krxbl84gzcs275b7gsh66dzm15fdxivjnx9xz8q84l4kby")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20190412213103-97732733099d + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190412213103-97732733099d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "118hkp01i4z1f5h6hcjm0ff2ngqhrzj1f7731n0kw8dr6hvbx0sw")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20200622213623-75b288015ac9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18vlncvvs11ds3zaaziqjlg5s2vcwi3496nn6qv7p0dp94j5pwa2")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" + ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) + ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" + ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200930185726-fdedc70b468f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1njlfhjbvi4lxvjbq8zswrb0y0q4jd2p6x51h1q6vmyzi9af6869")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-text-0.3.3 + (package + (name "go-golang-org-x-text") + (version "0.3.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19pihqm3phyndmiw6i42pdv6z1rbvlqlsnhsyqf9gsnn0qnmqqlh")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/text")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" + ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) + (home-page "https://golang.org/x/text") + (synopsis "Go Text") + (description + "text is a repository of text-related packages related to internationalization +(i18n) and localization (l10n), such as character encodings, text +transformations, and locale-specific text handling. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b + (package + (name "go-golang-org-x-net") + (version "0.0.0-20201110031124-69a78807bb2b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "176z5k6jbhr9vf0am2avl1lyqwym3q0mri98yb8r572z33qmcw1d")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) + ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" + ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) + ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" + ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20201112073958-5cba982894dd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "08dvnwmi2p4slmhyx7gzkmzfp51mmnkzi0ngwhvv0vip1s3s3zjc")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20180917221912-90fa682c2a6e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-golang-org-x-text-0.3.4 + (package + (name "go-golang-org-x-text") + (version "0.3.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "11jdvix83xcl5xnb039y4zrz4x5skzsps0w1jryp6wrar53cydvz")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/text")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" + ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) + (home-page "https://golang.org/x/text") + (synopsis "Go Text") + (description + "text is a repository of text-related packages related to internationalization +(i18n) and localization (l10n), such as character encodings, text +transformations, and locale-specific text handling. +") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-1.24.0 + (package + (name "go-google-golang-org-protobuf") + (version "1.24.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0x3qyn3rizbs671gs7f8v50rmiwf9h7kbaradpivw9718mhbg1gn")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" + ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.1" + ,go-github-com-golang-protobuf-1.4.1))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20201110150050-8816d57aaa9a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0cbfam4w9jr5gib43v3s2r5j8mhd3hl6ks3azwsahaff6idggg20")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.24.0" + ,go-google-golang-org-protobuf-1.24.0) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-golang-protobuf-1.4.1" + ,go-github-com-golang-protobuf-1.4.1))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-github-com-google-go-cmp-0.5.0 + (package + (name "go-github-com-google-go-cmp") + (version "0.5.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "04pzp583p6b32y34c6jygfxarff9qjs39rarvfh6467z24sdd9k4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-1.22.0 + (package + (name "go-google-golang-org-protobuf") + (version "1.22.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0n7lc4m7kfvj01glc0gnjy0zsnsic7cxnbvlajy0h14cxbab87pj")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.0" + ,go-github-com-golang-protobuf-1.4.0))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.4.1 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0w7ks4vffnnkp0miwgc3chrsnmya45lzvpahb2wmw0jwhdp5kdx7")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.22.0" + ,go-google-golang-org-protobuf-1.22.0) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-google-golang-org-grpc-1.27.0 + (package + (name "go-google-golang-org-grpc") + (version "1.27.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ijrmgrxyabfn51nm3p9l81iaasq5fg237wnr6mdc4dzsfcg8kd7")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" + ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-github-com-google-go-cmp-0.2.0" + ,go-github-com-google-go-cmp-0.2.0) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2) + ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" + ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) + ("go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473" + ,go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-github-com-google-go-cmp-0.3.0 + (package + (name "go-github-com-google-go-cmp") + (version "0.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1hyxx3434zshl2m9ja78gwlkg1rx9yl6diqa7dnjb31xz5x4gbjj")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd + (package + (name "go-google-golang-org-protobuf") + (version "0.0.0-20200109180630-ec00e32a8dfd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0w6lp9w2avxcpxwzzhspr209ifhyjagvs23k0vykfdqahl1aplrh")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.3.0" + ,go-github-com-google-go-cmp-0.3.0))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.4.0-rc.1 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.0-rc.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "186rirvbfgv6hrxp27ipx2cdpv19qifdd20biqfdm01wiyclqimn")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd" + ,go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd) + ("go-github-com-google-go-cmp-0.3.1" + ,go-github-com-google-go-cmp-0.3.1))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-github-com-google-go-cmp-0.3.1 + (package + (name "go-github-com-google-go-cmp") + (version "0.3.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1caw49i0plkjxir7kdf5qhwls3krqwfmi7g4h392rdfwi3kfahx1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64 + (package + (name "go-google-golang-org-protobuf") + (version "0.0.0-20200221191635-4d8936d0db64") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0563bsvdjj6k0sgwqd5yzrgfiax7sp3lcwh608gync5sv9fx39cy")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.3.1" + ,go-github-com-google-go-cmp-0.3.1) + ("go-github-com-golang-protobuf-1.4.0-rc.1" + ,go-github-com-golang-protobuf-1.4.0-rc.1))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.0-rc.1.0.20200221234624-67d41d38c208") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ykxhg3zixmw25pd435f8h16wnz1g00jpcmmg3xl030kksgqgpp6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64" + ,go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60 + (package + (name "go-google-golang-org-protobuf") + (version "0.0.0-20200228230310-ab0ca4ff8a60") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1rinspcznfp85yz4vrlf4h38hr576virgv8lcs22bsylqga808sd")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208" + ,go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.4.0-rc.2 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.0-rc.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1hd43hjv5zl6bjbmhm5phx74bw4xajsi73m5zky2k56za4mpgzzc")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60" + ,go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967 + (package + (name "go-google-golang-org-protobuf") + (version "1.20.1-0.20200309200217-e05f789c0967") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "17wmy89hnmpkwc63rfcjp50q15s9f1rhmczg06c3z9yy41zk82w9")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.0-rc.2" + ,go-github-com-golang-protobuf-1.4.0-rc.2))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.0-rc.4.0.20200313231945-b860323f09d0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1zj6cwshx0l5n9cn2cpbikzzb79px5dmkpc4p19zy1iif5r5p0z0")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967" + ,go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-1.21.0 + (package + (name "go-google-golang-org-protobuf") + (version "1.21.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12bwln8z1lf9105gdp6ip0rx741i4yfz1520gxnp8861lh9wcl63")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0" + ,go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.4.0 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fjvl5n77abxz5qsd4mgyvjq19x43c5bfvmq62mq3m5plx6zksc8")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.21.0" + ,go-google-golang-org-protobuf-1.21.0) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543 + (package + (name "go-golang-org-x-xerrors") + (version "0.0.0-20191204190536-9bdfabe68543") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/xerrors") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1yjfi1bk9xb81lqn85nnm13zz725wazvrx3b50hx19qmwg7a4b0c")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/xerrors")) + (home-page "https://golang.org/x/xerrors") + (synopsis #f) + (description + "Package xerrors implements functions to manipulate errors. +") + (license license:bsd-3))) + +(define-public go-github-com-google-go-cmp-0.4.0 + (package + (name "go-github-com-google-go-cmp") + (version "0.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1x5pvl3fb5sbyng7i34431xycnhmx8xx94gq2n19g6p0vz68z2v2")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc + (package + (name "go-google-golang-org-protobuf") + (version "1.23.1-0.20200526195155-81db48ad09cc") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "02cpr8rqr5wmpj2fqb32mzilsdnxkh52g1jz95a3ck3gzffc7hh1")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.0" + ,go-github-com-golang-protobuf-1.4.0))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013 + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20200526211855-cb27e3aa2013") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ml73ghqcwbz7ipfk8fnxb5indcml49b5p7vp1fsyny0abyyrmxf")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" + ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) + ("go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc" + ,go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-golang-protobuf-1.4.1" + ,go-github-com-golang-protobuf-1.4.1))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-google-golang-org-protobuf-1.25.0 + (package + (name "go-google-golang-org-protobuf") + (version "1.25.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0apfl42x166dh96zfq5kvv4b4ax9xljik6bq1mnvn2240ir3mc23")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" + ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) + ("go-github-com-google-go-cmp-0.5.0" + ,go-github-com-google-go-cmp-0.5.0) + ("go-github-com-golang-protobuf-1.4.1" + ,go-github-com-golang-protobuf-1.4.1))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15 + (package + (name "go-gopkg-in-check-v1") + (version "1.0.0-20190902080502-41f04d3bba15") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/check.v1") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0vfk9czmlxmp6wndq8k17rhnjxal764mxfhrccza7nwlia760pjy")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) + (home-page "https://gopkg.in/check.v1") + (synopsis "Instructions") + (description + "Package check is a rich testing extension for Go's testing package. +") + (license license:bsd-2))) + +(define-public go-k8s-io-cri-api-0.20.6 + (package + (name "go-k8s-io-cri-api") + (version "0.20.6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes/cri-api") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0yp4rfxjn4h78z4sbmwhcqm8mva9bsvsc5jky2qa76npp0hycjhx")))) + (build-system go-build-system) + (arguments '(#:import-path "k8s.io/cri-api")) + (propagated-inputs + `(("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" + ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) + ("go-google-golang-org-protobuf-1.25.0" + ,go-google-golang-org-protobuf-1.25.0) + ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) + ("go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a" + ,go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a) + ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) + ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" + ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) + ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" + ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-kr-pretty-0.2.0" ,go-github-com-kr-pretty-0.2.0) + ("go-github-com-google-go-cmp-0.5.2" + ,go-github-com-google-go-cmp-0.5.2) + ("go-github-com-golang-protobuf-1.4.3" + ,go-github-com-golang-protobuf-1.4.3) + ("go-github-com-gogo-protobuf-1.3.2" + ,go-github-com-gogo-protobuf-1.3.2) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://k8s.io/cri-api") + (synopsis "Purpose") + (description + "This repository contains the definitions for the Container Runtime Interface (CRI). +CRI is a plugin interface which enables kubelet to use a wide variety of container runtimes, +without the need to recompile. CRI consists of a protocol buffers and gRPC API.") + (license license:asl2.0))) + +(define-public go-github-com-go-logr-logr-0.2.0 + (package + (name "go-github-com-go-logr-logr") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/go-logr/logr") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "06xh4pw53z38vyi300mgpnr4pkqgknw9xakdyk1xzqfg9zd60d7d")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/go-logr/logr")) + (home-page "https://github.com/go-logr/logr") + (synopsis "A minimal logging API for Go") + (description + "Package logr defines a general-purpose logging API and abstract interfaces +to back that API. Packages in the Go ecosystem can depend on this package, +while callers can implement logging with whatever backend is appropriate. +") + (license license:asl2.0))) + +(define-public go-k8s-io-klog-v2-2.4.0 + (package + (name "go-k8s-io-klog-v2") + (version "2.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes/klog") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1zjih6bgdalga5hqaa2fwwidslq6lv358gkj88a8wwj7w253wc8c")))) + (build-system go-build-system) + (arguments + '(#:import-path "k8s.io/klog/v2" #:unpack-path "k8s.io/klog/v2")) + (propagated-inputs + `(("go-github-com-go-logr-logr-0.2.0" + ,go-github-com-go-logr-logr-0.2.0))) + (home-page "https://k8s.io/klog/v2") + (synopsis "klog") + (description + "Package klog implements logging analogous to the Google-internal C++ INFO/ERROR/V setup. +It provides functions Info, Warning, Error, Fatal, plus formatting variants such as +Infof. It also provides V-style logging controlled by the -v and -vmodule=file=2 flags. +") + (license license:asl2.0))) + +(define-public go-github-com-davecgh-go-spew-1.1.1 + (package + (name "go-github-com-davecgh-go-spew") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/davecgh/go-spew") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/davecgh/go-spew")) + (home-page "https://github.com/davecgh/go-spew") + (synopsis "go-spew") + (description + "Go-spew implements a deep pretty printer for Go data structures to aid in +debugging. A comprehensive suite of tests with 100% test coverage is provided +to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage +report. Go-spew is licensed under the liberal ISC license, so it may be used in +open source or commercial projects.") + (license license:isc))) + +(define-public go-github-com-spf13-afero-1.2.2 + (package + (name "go-github-com-spf13-afero") + (version "1.2.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/spf13/afero") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0j9r65qgd58324m85lkl49vk9dgwd62g7dwvkfcm3k6i9dc555a9")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/spf13/afero")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0))) + (home-page "https://github.com/spf13/afero") + (synopsis "Overview") + (description + "This package provides a FileSystem Abstraction System for Go") + (license license:asl2.0))) + +(define-public go-github-com-davecgh-go-spew-1.1.0 + (package + (name "go-github-com-davecgh-go-spew") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/davecgh/go-spew") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/davecgh/go-spew")) + (home-page "https://github.com/davecgh/go-spew") + (synopsis "go-spew") + (description + "Go-spew implements a deep pretty printer for Go data structures to aid in +debugging. A comprehensive suite of tests with 100% test coverage is provided +to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage +report. Go-spew is licensed under the liberal ISC license, so it may be used in +open source or commercial projects.") + (license license:isc))) + +(define-public go-github-com-stretchr-objx-0.1.0 + (package + (name "go-github-com-stretchr-objx") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/objx") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/objx")) + (home-page "https://github.com/stretchr/objx") + (synopsis "Objx") + (description + "Objx - Go package for dealing with maps, slices, JSON and other data. +") + (license license:expat))) + +(define-public go-github-com-stretchr-testify-1.3.0 + (package + (name "go-github-com-stretchr-testify") + (version "1.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wjchp2c8xbgcbbq32w3kvblk6q6yn533g78nxl6iskq6y95lxsy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (propagated-inputs + `(("go-github-com-stretchr-objx-0.1.0" + ,go-github-com-stretchr-objx-0.1.0) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.0" + ,go-github-com-davecgh-go-spew-1.1.0))) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +") + (license license:expat))) + +(define-public go-github-com-go-logr-logr-0.1.0 + (package + (name "go-github-com-go-logr-logr") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/go-logr/logr") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0fhijjhxz4n2j5i24ckzv8r9kri3v44jdyklgbqjfq0xm7izqg14")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/go-logr/logr")) + (home-page "https://github.com/go-logr/logr") + (synopsis "A minimal logging API for Go") + (description + "Package logr defines a general-purpose logging API and abstract interfaces +to back that API. Packages in the Go ecosystem can depend on this package, +while callers can implement logging with whatever backend is appropriate. +") + (license license:asl2.0))) + +(define-public go-k8s-io-klog-v2-2.0.0 + (package + (name "go-k8s-io-klog-v2") + (version "2.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes/klog") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "09vqm0n5l64lzpk3xqm4njbncnphx52qk21gwx8nsgyivlxx1n8g")))) + (build-system go-build-system) + (arguments + '(#:import-path "k8s.io/klog/v2" #:unpack-path "k8s.io/klog/v2")) + (propagated-inputs + `(("go-github-com-go-logr-logr-0.1.0" + ,go-github-com-go-logr-logr-0.1.0))) + (home-page "https://k8s.io/klog/v2") + (synopsis "klog") + (description + "Package klog implements logging analogous to the Google-internal C++ INFO/ERROR/V setup. +It provides functions Info, Warning, Error, Fatal, plus formatting variants such as +Infof. It also provides V-style logging controlled by the -v and -vmodule=file=2 flags. +") + (license license:asl2.0))) + +(define-public go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920 + (package + (name "go-k8s-io-utils") + (version "0.0.0-20201110183641-67b214c5f920") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes/utils") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19rc9v5xin0a8qbf25my3rd0jd74cin2mk2a38j2dwplqy3s9crl")))) + (build-system go-build-system) + (arguments '(#:import-path "k8s.io/utils")) + (propagated-inputs + `(("go-k8s-io-klog-v2-2.0.0" ,go-k8s-io-klog-v2-2.0.0) + ("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0) + ("go-github-com-spf13-afero-1.2.2" ,go-github-com-spf13-afero-1.2.2) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://k8s.io/utils") + (synopsis "Utils") + (description + "This package provides a set of Go libraries that provide low-level, kubernetes-independent packages +supplementing the @url{https://golang.org/pkg/#stdlib,Go standard libs}.") + (license license:asl2.0))) + +(define-public go-golang-org-x-tools-0.0.0-20181030221726-6c7e314b6563 + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20181030221726-6c7e314b6563") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1m1n6r8v6mrlh0yvlz3qxz4s7jc7nis0zf3dfl1i6hqh5xblkwnw")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-github-com-kisielk-errcheck-1.2.0 + (package + (name "go-github-com-kisielk-errcheck") + (version "1.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kisielk/errcheck") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0am6g10ipdxw84byscm7shda654882wjcbinq5c4696m6mhi2qrd")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kisielk/errcheck")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20181030221726-6c7e314b6563" + ,go-golang-org-x-tools-0.0.0-20181030221726-6c7e314b6563))) + (home-page "https://github.com/kisielk/errcheck") + (synopsis "errcheck") + (description + "errcheck is a program for checking for unchecked errors in go programs.") + (license license:expat))) + +(define-public go-github-com-kisielk-gotool-1.0.0 + (package + (name "go-github-com-kisielk-gotool") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kisielk/gotool") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "14af2pa0ssyp8bp2mvdw184s5wcysk6akil3wzxmr05wwy951iwn")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kisielk/gotool")) + (home-page "https://github.com/kisielk/gotool") + (synopsis "gotool") + (description + "Package gotool contains utility functions used to implement the standard +\"cmd/go\" tool, provided as a convenience to developers who want to write +tools with similar semantics. +") + (license license:expat))) + +(define-public go-github-com-gogo-protobuf-1.3.1 + (package + (name "go-github-com-gogo-protobuf") + (version "1.3.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gogo/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0x77x64sxjgfhmbijqfzmj8h4ar25l2w97h01q3cqs1wk7zfnkhp")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/gogo/protobuf")) + (propagated-inputs + `(("go-github-com-kisielk-gotool-1.0.0" + ,go-github-com-kisielk-gotool-1.0.0) + ("go-github-com-kisielk-errcheck-1.2.0" + ,go-github-com-kisielk-errcheck-1.2.0))) + (home-page "https://github.com/gogo/protobuf") + (synopsis "Protocol Buffers for Go with Gadgets") + (description + "gogoprotobuf is a fork of @url{https://github.com/golang/protobuf,golang/protobuf} with extra code generation features.") + (license license:bsd-3))) + +(define-public go-github-com-gogo-googleapis-1.3.2 + (package + (name "go-github-com-gogo-googleapis") + (version "1.3.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gogo/googleapis") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "10670qprmk151n6pa1yclr89kgrvmalzvkq221xqbid83iv59s2h")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/gogo/googleapis")) + (propagated-inputs + `(("go-github-com-gogo-protobuf-1.3.1" + ,go-github-com-gogo-protobuf-1.3.1))) + (home-page "https://github.com/gogo/googleapis") + (synopsis "Google APIs generated by gogoprotobuf") + (description + "The @url{https://github.com/gogo/grpc-example,grpc-example} includes an example usage of this repository.") + (license license:asl2.0))) + +(define-public go-github-com-golang-protobuf-1.3.5 + (package + (name "go-github-com-golang-protobuf") + (version "1.3.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1gkd1942vk9n8kfzdwy1iil6wgvlwjq7a3y5jc49ck4lz9rhmgkq")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-github-com-pmezard-go-difflib-1.0.0 + (package + (name "go-github-com-pmezard-go-difflib") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pmezard/go-difflib") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pmezard/go-difflib")) + (home-page "https://github.com/pmezard/go-difflib") + (synopsis "go-difflib") + (description + "Go-difflib is a partial port of python 3 difflib package. Its main goal +was to make unified and context diff available in pure Go, mostly for +testing purposes.") + (license license:bsd-3))) + +(define-public go-github-com-russross-blackfriday-v2-2.0.1 + (package + (name "go-github-com-russross-blackfriday-v2") + (version "2.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/russross/blackfriday") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0nlz7isdd4rgnwzs68499hlwicxz34j2k2a0b8jy0y7ycd2bcr5j")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/russross/blackfriday/v2")) + (home-page "https://github.com/russross/blackfriday") + (synopsis "Blackfriday") + (description "Package blackfriday is a markdown processor. +") + (license license:bsd-2))) + +(define-public go-github-com-shurcool-sanitized-anchor-name-1.0.0 + (package + (name "go-github-com-shurcool-sanitized-anchor-name") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/shurcooL/sanitized_anchor_name") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1gv9p2nr46z80dnfjsklc6zxbgk96349sdsxjz05f3z6wb6m5l8f")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/shurcooL/sanitized_anchor_name")) + (home-page "https://github.com/shurcooL/sanitized_anchor_name") + (synopsis "sanitized_anchor_name") + (description + "Package sanitized_anchor_name provides a func to create sanitized anchor names. +") + (license license:expat))) + +(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d + (package + (name "go-github-com-cpuguy83-go-md2man-v2") + (version "2.0.0-20190314233015-f79a8a8ca69d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cpuguy83/go-md2man") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) + (propagated-inputs + `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" + ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) + ("go-github-com-russross-blackfriday-v2-2.0.1" + ,go-github-com-russross-blackfriday-v2-2.0.1) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0))) + (home-page "https://github.com/cpuguy83/go-md2man") + (synopsis "go-md2man") + (description "Converts markdown into roff (man pages).") + (license license:expat))) + +(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 + (package + (name "go-gopkg-in-check-v1") + (version "0.0.0-20161208181325-20d25e280405") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/check.v1") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) + (home-page "https://gopkg.in/check.v1") + (synopsis "Instructions") + (description + "Package check is a rich testing extension for Go's testing package. +") + (license license:bsd-2))) + +(define-public go-gopkg-in-yaml-v2-2.2.2 + (package + (name "go-gopkg-in-yaml-v2") + (version "2.2.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "01wj12jzsdqlnidpyjssmj0r4yavlqy7dwrg7adqd8dicjc4ncsa")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v2") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language. +") + (license license:asl2.0))) + +(define-public go-github-com-urfave-cli-1.22.1 + (package + (name "go-github-com-urfave-cli") + (version "1.22.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/urfave/cli") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "04ymak18flqlfcn8lycmg8r3931al8dvr8f1cg9n4yjaskmg72v8")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/urfave/cli")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) + ("go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d" + ,go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d) + ("go-github-com-burntsushi-toml-0.3.1" + ,go-github-com-burntsushi-toml-0.3.1))) + (home-page "https://github.com/urfave/cli") + (synopsis "cli") + (description + "Package cli provides a minimal framework for creating and organizing command line +Go applications. cli is designed to be easy to understand and write, the most simple +cli application can be written as follows: +") + (license license:expat))) + +(define-public go-github-com-census-instrumentation-opencensus-proto-0.2.1 + (package + (name "go-github-com-census-instrumentation-opencensus-proto") + (version "0.2.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/census-instrumentation/opencensus-proto") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19fcx3sc99i5dsklny6r073z5j20vlwn2xqm6di1q3b1xwchzqfj")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/census-instrumentation/opencensus-proto")) + (home-page "https://github.com/census-instrumentation/opencensus-proto") + (synopsis + "OpenCensus Proto - Language Independent Interface Types For OpenCensus") + (description + "Census provides a framework to define and collect stats against metrics and to +break those stats down across user-defined dimensions.") + (license license:asl2.0))) + +(define-public go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4 + (package + (name "go-github-com-prometheus-client-model") + (version "0.0.0-20190812154241-14fe0d1b01d4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/client_model") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0zdmk6rbbx39cvfz0r59v2jg5sg9yd02b4pds5n5llgvivi99550")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/client_model")) + (propagated-inputs + `(("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" + ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0))) + (home-page "https://github.com/prometheus/client_model") + (synopsis "Deprecation note") + (description + "This repository used to contain the code that defined both +the data model and the exposition format of Prometheus metrics.") + (license license:asl2.0))) + +(define-public go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20190311212946-11955173bddd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hlkai67w167wiyivkzd1fgqrnyxkb94l2c6kr51jwcscizfyfn3")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3 + (package + (name "go-golang-org-x-lint") + (version "0.0.0-20190313153728-d0100b6bd8b3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/lint") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0b0amr9x4ji66iv9ayfx7zrfx52k1m5g66qfcxkgj80qrb1y2yn7")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/lint")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" + ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd))) + (home-page "https://golang.org/x/lint") + (synopsis "Installation") + (description "Package lint contains a linter for Go source code. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20190423024810-112230192c58 + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20190423024810-112230192c58") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "05i2k43j2d0llq768hg5pf3hb2yhfzp9la1w5wp0rsnnzblr0lfn")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the +ones provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135 + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20190524140312-2c0ae7006135") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1lsi2ssxajclj3bciz2a41v1vjv768ja3v6wnbyhxy8xphwkp4fk")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" + ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc + (package + (name "go-honnef-co-go-tools") + (version "0.0.0-20190523083050-ea95bdfd59fc") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/dominikh/go-tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1763nw7pwpzkvzfnm63dgzcgbq9hwmq5l1nffchnhh77vgkaq4ic")))) + (build-system go-build-system) + (arguments '(#:import-path "honnef.co/go/tools")) + (home-page "https://honnef.co/go/tools") + (synopsis "Documentation") + (description + "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, +offers simplifications, and enforces style rules.") + (license license:expat))) + +(define-public go-google-golang-org-grpc-1.23.0 + (package + (name "go-google-golang-org-grpc") + (version "1.23.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1cn33r2gclmq2v1ndpf1n5bmhf2qs8mms7ii5cnl6f9ch4r2c4k3")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" + ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) + ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" + ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) + ("go-google-golang-org-appengine-1.1.0" + ,go-google-golang-org-appengine-1.1.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-google-go-cmp-0.2.0" + ,go-github-com-google-go-cmp-0.2.0) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0) + ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-client9-misspell-0.3.4" + ,go-github-com-client9-misspell-0.3.4) + ("go-github-com-burntsushi-toml-0.3.1" + ,go-github-com-burntsushi-toml-0.3.1) + ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473 + (package + (name "go-github-com-envoyproxy-go-control-plane") + (version "0.9.1-0.20191026205805-5f8ba28d4473") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/envoyproxy/go-control-plane") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1f1s764rd41vd9vgk3r14h1m6fz6pdvxj6fd83q58gxifbc4q5w4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.23.0" ,go-google-golang-org-grpc-1.23.0) + ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" + ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) + ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" + ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2) + ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" + ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) + ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" + ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) + (home-page "https://github.com/envoyproxy/go-control-plane") + (synopsis "control-plane") + (description + "This repository contains a Go-based implementation of an API server that +implements the discovery service APIs defined in +@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") + (license license:asl2.0))) + +(define-public go-github-com-envoyproxy-protoc-gen-validate-0.1.0 + (package + (name "go-github-com-envoyproxy-protoc-gen-validate") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/envoyproxy/protoc-gen-validate") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0kxd3wwh3xwqk0r684hsy281xq4y71cd11d4q2hspcjbnlbwh7cy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/envoyproxy/protoc-gen-validate")) + (home-page "https://github.com/envoyproxy/protoc-gen-validate") + (synopsis "protoc-gen-validate (PGV)") + (description + "PGV is a protoc plugin to generate polyglot message validators. While protocol buffers effectively guarantee the types of structured data, they cannot enforce semantic rules for values. This plugin adds support to protoc-generated code to validate such constraints.") + (license license:asl2.0))) + +(define-public go-github-com-google-go-cmp-0.2.0 + (package + (name "go-github-com-google-go-cmp") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fbv0x27k9sn8svafc0hjwsnckk864lv4yi7bvzrxvmd3d5hskds")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") + (license license:bsd-3))) + +(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20190308221718-c2843e01d9a2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20190311183353-d8887717615a + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190311183353-d8887717615a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1wfm6ngxjyj7v5a2dqib6lw8bb2rdnf1kl48diykxjrsddn0s163")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190215142949-d0b11bdaac8a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.3.2 + (package + (name "go-github-com-golang-protobuf") + (version "1.3.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1k1wb4zr0qbwgpvz9q5ws9zhlal8hq7dmq62pwxxriksayl6hzym")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4 + (package + (name "go-golang-org-x-exp") + (version "0.0.0-20190121172915-509febef88a4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/exp") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "02isrh39z8znrp5znplzy0dip2gnrl3jm1355raliyvhnhg04j6q")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/exp")) + (home-page "https://golang.org/x/exp") + (synopsis "exp") + (description + "This subrepository holds experimental and deprecated (in the @code{old} +directory) packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961 + (package + (name "go-golang-org-x-lint") + (version "0.0.0-20190227174305-5b3e6a55c961") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/lint") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "04zp5vbds9nffmjg36wjpi5vg9zmf890yf78xxasai3ni637ivfw")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/lint")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" + ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c))) + (home-page "https://golang.org/x/lint") + (synopsis "Installation") + (description "Package lint contains a linter for Go source code. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190213061140-3a22650c66bd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12q6fgdkc0742vcms67nzadgdwvi3rnb1gx3vwkljhrvlnwvz7wc")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20181108010431-42b317875d0f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0mrjhk7al7yyh76x9flvxy4jm5jyqh2fxbxagpaazxn1xdgkaif3")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the +ones provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20180724234803-3673e40ba225") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0vx7mz18p480p7fh0w5jv6mfdbsswrlac1sz4i705q7q7ygz59lm")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-google-golang-org-appengine-1.4.0 + (package + (name "go-google-golang-org-appengine") + (version "1.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/appengine") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "06zl7w4sxgdq2pl94wy9ncii6h0z3szl4xpqds0sv3b3wbdlhbnn")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/appengine")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225" + ,go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0))) + (home-page "https://google.golang.org/appengine") + (synopsis "Go App Engine packages") + (description + "Package appengine provides basic functionality for Google App Engine. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20190226205152-f727befe758c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0rpcqw6z13qd33rbasg32zb0gdhgh5lzjla63r6g651zf6hpsak0")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-google-golang-org-appengine-1.4.0" + ,go-google-golang-org-appengine-1.4.0) + ("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" + ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) + ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" + ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-cloud-google-com-go-0.26.0 + (package + (name "go-cloud-google-com-go") + (version "0.26.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-cloud-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "149v3ci17g6wd2pm18mzcncq5qpl9hwdjnz3rlbn5rfidyn46la1")))) + (build-system go-build-system) + (arguments '(#:import-path "cloud.google.com/go")) + (home-page "https://cloud.google.com/go") + (synopsis "Google Cloud Client Libraries for Go") + (description + "Package cloud is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +of sub-packages. +") + (license license:asl2.0))) + +(define-public go-github-com-burntsushi-toml-0.3.1 + (package + (name "go-github-com-burntsushi-toml") + (version "0.3.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/BurntSushi/toml") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fjdwwfzyzllgiwydknf1pwjvy49qxfsczqx5gz3y0izs7as99j6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/BurntSushi/toml")) + (home-page "https://github.com/BurntSushi/toml") + (synopsis "TOML parser and encoder for Go with reflection") + (description + "Package toml implements decoding and encoding of TOML files. +") + (license license:expat))) + +(define-public go-github-com-client9-misspell-0.3.4 + (package + (name "go-github-com-client9-misspell") + (version "0.3.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/client9/misspell") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1vwf33wsc4la25zk9nylpbp9px3svlmldkm0bha4hp56jws4q9cs")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/client9/misspell")) + (home-page "https://github.com/client9/misspell") + (synopsis "Install") + (description + "Package misspell corrects commonly misspelled English words in source files. +") + (license license:expat))) + +(define-public go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b + (package + (name "go-github-com-golang-glog") + (version "0.0.0-20160126235308-23def4e6c14b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/glog") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0jb2834rw5sykfr937fxi8hxi2zy80sj2bdn9b3jb4b26ksqng30")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/glog")) + (home-page "https://github.com/golang/glog") + (synopsis "glog") + (description + "Package glog implements logging analogous to the Google-internal C++ INFO/ERROR/V setup. +It provides functions Info, Warning, Error, Fatal, plus formatting variants such as +Infof. It also provides V-style logging controlled by the -v and -vmodule=file=2 flags. +") + (license license:asl2.0))) + +(define-public go-github-com-golang-mock-1.1.1 + (package + (name "go-github-com-golang-mock") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/mock") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ap8wb6pdl6ccmdb43advjll2ly4sz26wsc3axw0hbrjrybybzgy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/mock")) + (home-page "https://github.com/golang/mock") + (synopsis "gomock") + (description + "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It +integrates well with Go's built-in @code{testing} package, but can be used in other +contexts too.") + (license license:asl2.0))) + +(define-public go-github-com-golang-protobuf-1.2.0 + (package + (name "go-github-com-golang-protobuf") + (version "1.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0kf4b59rcbb1cchfny2dm9jyznp8ri2hsb14n8iak1q8986xa0ab")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3 + (package + (name "go-golang-org-x-lint") + (version "0.0.0-20181026193005-c67002cb31c3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/lint") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0gymbggskjmphqxqcx4s0vnlcz7mygbix0vhwcwv5r67c0bf6765")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/lint")) + (home-page "https://golang.org/x/lint") + (synopsis "Installation") + (description "Package lint contains a linter for Go source code. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d + (package + (name "go-golang-org-x-net") + (version "0.0.0-20180826012351-8a410e7b638d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hp0l8f6fir5gmgrjq0mhh5ikc0rlrm72774228800kfwqjrxxny")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be + (package + (name "go-golang-org-x-oauth2") + (version "0.0.0-20180821212333-d2e6202438be") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/oauth2") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wbn75fd10485nb93bm4kqldqifdim5xqy4v7r5sdvimvf3fyhn7")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/oauth2")) + (home-page "https://golang.org/x/oauth2") + (synopsis "OAuth2 for Go") + (description + "Package oauth2 provides support for making +OAuth2 authorized and authenticated HTTP requests, +as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +It can additionally grant authorization with Bearer JWT. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20180314180146-1d60e4601c6f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "046jlanz2lkxq1r57x9bl6s4cvfqaic6p2xybsj8mq1120jv4rs6")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the +ones provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20180830151530-49385e6e1522") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0spbldahns09fdxkxflb1x24f8k2awdlnr6k5i7ci4fqd19r1dv4")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-text-0.3.0 + (package + (name "go-golang-org-x-text") + (version "0.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/text")) + (home-page "https://golang.org/x/text") + (synopsis "Go Text") + (description + "text is a repository of text-related packages related to internationalization +(i18n) and localization (l10n), such as character encodings, text +transformations, and locale-specific text handling. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20190114222345-bf090417da8b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1n3xp56k4k3lj06rx7587wr5gnwg0148nvwx6ch0g7ar02hh94hw")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-google-golang-org-appengine-1.1.0 + (package + (name "go-google-golang-org-appengine") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/appengine") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1pz202zszg8f35dk5pfhwgcdi3r6dx1l4yk6x6ly7nb4j45zi96x")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/appengine")) + (home-page "https://google.golang.org/appengine") + (synopsis "Go App Engine packages") + (description + "Package appengine provides basic functionality for Google App Engine. +") + (license license:asl2.0))) + +(define-public go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8 + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20180817151627-c66870c02cf8") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0siq7sv68556ygqi2d2zmvx8l1xjqdc0fylqzci5h1mq2i14bayn")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-google-golang-org-grpc-1.19.0 + (package + (name "go-google-golang-org-grpc") + (version "1.19.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1znqwpj7ix3dpzx4zch0q70sdl3z5lvbb7v3q4i8sf8kas3yv71v")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" + ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) + ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" + ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) + ("go-google-golang-org-appengine-1.1.0" + ,go-google-golang-org-appengine-1.1.0) + ("go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b" + ,go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b) + ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522" + ,go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522) + ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" + ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d" + ,go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d) + ("go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3" + ,go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0) + ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-client9-misspell-0.3.4" + ,go-github-com-client9-misspell-0.3.4) + ("go-github-com-burntsushi-toml-0.3.1" + ,go-github-com-burntsushi-toml-0.3.1) + ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099 + (package + (name "go-honnef-co-go-tools") + (version "0.0.0-20190102054323-c2f93a96b099") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/dominikh/go-tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "07lg29aiap80ca9f201jzng9vjr168cv3qmvjmbd7v5pmww9kmr8")))) + (build-system go-build-system) + (arguments '(#:import-path "honnef.co/go/tools")) + (home-page "https://honnef.co/go/tools") + (synopsis "Documentation") + (description + "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, +offers simplifications, and enforces style rules.") + (license license:expat))) + +(define-public go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55 + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20190819201941-24fa4b261c55") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "109zhaqlfd8zkbr1hk6zqbs6vcxfrk64scjwh2nswph05gr0m84d")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" + ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) + ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) + ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" + ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) + ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" + ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) + ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" + ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-google-golang-org-grpc-1.27.1 + (package + (name "go-google-golang-org-grpc") + (version "1.27.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "09phrrsafgq6hnbw8cawvx44bdpk1p584fys17x1bwn0j0451zzs")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" + ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-github-com-google-go-cmp-0.2.0" + ,go-github-com-google-go-cmp-0.2.0) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2) + ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" + ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) + ("go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473" + ,go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-github-com-containerd-containerd-1.5.8 + (package + (name "go-github-com-containerd-containerd") + (version "1.5.8") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/containerd") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18lzmpbhbk1kq1nwdp6zcxb577kp425l2ikcmb45jcwgqdwzla6l")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/containerd")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) + ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) + ("go-github-com-golang-protobuf-1.3.5" + ,go-github-com-golang-protobuf-1.3.5) + ("go-github-com-gogo-googleapis-1.3.2" + ,go-github-com-gogo-googleapis-1.3.2) + ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" + ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) + ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) + ("go-k8s-io-cri-api-0.20.6" ,go-k8s-io-cri-api-0.20.6) + ("go-k8s-io-component-base-0.20.6" ,go-k8s-io-component-base-0.20.6) + ("go-k8s-io-client-go-0.20.6" ,go-k8s-io-client-go-0.20.6) + ("go-k8s-io-apiserver-0.20.6" ,go-k8s-io-apiserver-0.20.6) + ("go-k8s-io-apimachinery-0.20.6" ,go-k8s-io-apimachinery-0.20.6) + ("go-k8s-io-api-0.20.6" ,go-k8s-io-api-0.20.6) + ("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) + ("go-golang-org-x-sys-0.0.0-20210426230700-d19ff857e887" + ,go-golang-org-x-sys-0.0.0-20210426230700-d19ff857e887) + ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" + ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) + ("go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110" + ,go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110) + ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) + ("go-github-com-tchap-go-patricia-2.2.6+incompatible" + ,go-github-com-tchap-go-patricia-2.2.6+incompatible) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-sirupsen-logrus-1.8.1" + ,go-github-com-sirupsen-logrus-1.8.1) + ("go-github-com-satori-go-uuid-1.2.0" + ,go-github-com-satori-go-uuid-1.2.0) + ("go-github-com-prometheus-client-golang-1.7.1" + ,go-github-com-prometheus-client-golang-1.7.1) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-pelletier-go-toml-1.8.1" + ,go-github-com-pelletier-go-toml-1.8.1) + ("go-github-com-opencontainers-selinux-1.8.2" + ,go-github-com-opencontainers-selinux-1.8.2) + ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417" + ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417) + ("go-github-com-opencontainers-runc-1.0.2" + ,go-github-com-opencontainers-runc-1.0.2) + ("go-github-com-opencontainers-image-spec-1.0.1" + ,go-github-com-opencontainers-image-spec-1.0.1) + ("go-github-com-opencontainers-go-digest-1.0.0" + ,go-github-com-opencontainers-go-digest-1.0.0) + ("go-github-com-moby-sys-symlink-0.1.0" + ,go-github-com-moby-sys-symlink-0.1.0) + ("go-github-com-moby-sys-mountinfo-0.4.1" + ,go-github-com-moby-sys-mountinfo-0.4.1) + ("go-github-com-moby-locker-1.0.1" ,go-github-com-moby-locker-1.0.1) + ("go-github-com-klauspost-compress-1.11.13" + ,go-github-com-klauspost-compress-1.11.13) + ("go-github-com-imdario-mergo-0.3.12" + ,go-github-com-imdario-mergo-0.3.12) + ("go-github-com-hashicorp-go-multierror-1.0.0" + ,go-github-com-hashicorp-go-multierror-1.0.0) + ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" + ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) + ("go-github-com-google-uuid-1.2.0" ,go-github-com-google-uuid-1.2.0) + ("go-github-com-google-go-cmp-0.5.5" + ,go-github-com-google-go-cmp-0.5.5) + ("go-github-com-gogo-protobuf-1.3.2" + ,go-github-com-gogo-protobuf-1.3.2) + ("go-github-com-fsnotify-fsnotify-1.4.9" + ,go-github-com-fsnotify-fsnotify-1.4.9) + ("go-github-com-emicklei-go-restful-2.9.5+incompatible" + ,go-github-com-emicklei-go-restful-2.9.5+incompatible) + ("go-github-com-docker-go-units-0.4.0" + ,go-github-com-docker-go-units-0.4.0) + ("go-github-com-docker-go-metrics-0.0.1" + ,go-github-com-docker-go-metrics-0.0.1) + ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" + ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1) + ("go-github-com-coreos-go-systemd-v22-22.3.2" + ,go-github-com-coreos-go-systemd-v22-22.3.2) + ("go-github-com-containernetworking-plugins-0.9.1" + ,go-github-com-containernetworking-plugins-0.9.1) + ("go-github-com-containerd-zfs-1.0.0" + ,go-github-com-containerd-zfs-1.0.0) + ("go-github-com-containerd-typeurl-1.0.2" + ,go-github-com-containerd-typeurl-1.0.2) + ("go-github-com-containerd-ttrpc-1.1.0" + ,go-github-com-containerd-ttrpc-1.1.0) + ("go-github-com-containerd-nri-0.1.0" + ,go-github-com-containerd-nri-0.1.0) + ("go-github-com-containerd-imgcrypt-1.1.1" + ,go-github-com-containerd-imgcrypt-1.1.1) + ("go-github-com-containerd-go-runc-1.0.0" + ,go-github-com-containerd-go-runc-1.0.0) + ("go-github-com-containerd-go-cni-1.0.2" + ,go-github-com-containerd-go-cni-1.0.2) + ("go-github-com-containerd-fifo-1.0.0" + ,go-github-com-containerd-fifo-1.0.0) + ("go-github-com-containerd-continuity-0.1.0" + ,go-github-com-containerd-continuity-0.1.0) + ("go-github-com-containerd-console-1.0.2" + ,go-github-com-containerd-console-1.0.2) + ("go-github-com-containerd-cgroups-1.0.1" + ,go-github-com-containerd-cgroups-1.0.1) + ("go-github-com-containerd-btrfs-1.0.0" + ,go-github-com-containerd-btrfs-1.0.0) + ("go-github-com-containerd-aufs-1.0.0" + ,go-github-com-containerd-aufs-1.0.0) + ("go-github-com-microsoft-hcsshim-0.8.23" + ,go-github-com-microsoft-hcsshim-0.8.23) + ("go-github-com-microsoft-go-winio-0.4.17" + ,go-github-com-microsoft-go-winio-0.4.17))) + (home-page "https://github.com/containerd/containerd") + (synopsis "Now Recruiting") + (description + "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") + (license license:asl2.0))) + +(define-public go-github-com-containernetworking-cni-0.8.1 + (package + (name "go-github-com-containernetworking-cni") + (version "0.8.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containernetworking/cni") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ydzsiq6kfwjghf5dd4ld2rv3cxgbjq6c1523jxmib1phwf0s75z")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containernetworking/cni")) + (home-page "https://github.com/containernetworking/cni") + (synopsis "CNI - the Container Network Interface") + (description + "CNI (), a @url{https://cncf.io,Cloud Native Computing Foundation} project, consists of a specification and libraries for writing plugins to configure network interfaces in Linux containers, along with a number of supported plugins. +CNI concerns itself only with network connectivity of containers and removing allocated resources when the container is deleted. +Because of this focus, CNI has a wide range of support and the specification is simple to implement.") + (license license:asl2.0))) + +(define-public go-github-com-microsoft-go-winio-0.4.11 + (package + (name "go-github-com-microsoft-go-winio") + (version "0.4.11") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/microsoft/go-winio") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "14y1gryr3pb3zy09v2g8dh89m363rfd9sch0wgbabh531hfx72vn")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/Microsoft/go-winio")) + (home-page "https://github.com/Microsoft/go-winio") + (synopsis "go-winio") + (description + "This repository contains utilities for efficiently performing Win32 IO operations in +Go. Currently, this is focused on accessing named pipes and other file handles, and +for using named pipes as a net transport.") + (license license:expat))) + +(define-public go-github-com-microsoft-hcsshim-0.8.6 + (package + (name "go-github-com-microsoft-hcsshim") + (version "0.8.6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/microsoft/hcsshim") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "05arx8y4b6rvhjcnwizhc8svzab3ld0njkgj8vijgs27az84z6pw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/Microsoft/hcsshim")) + (home-page "https://github.com/Microsoft/hcsshim") + (synopsis "hcsshim") + (description + "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") + (license license:expat))) + +(define-public go-github-com-alexflint-go-filemutex-0.0.0-20171022225611-72bdc8eae2ae + (package + (name "go-github-com-alexflint-go-filemutex") + (version "0.0.0-20171022225611-72bdc8eae2ae") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/alexflint/go-filemutex") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "082y6y9zv40q3kaqvsv6fyaw2fc42j0sn9z0dl9rbiz4szixj3c4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/alexflint/go-filemutex")) + (home-page "https://github.com/alexflint/go-filemutex") + (synopsis "FileMutex") + (description + "FileMutex is similar to @code{sync.RWMutex}, but also synchronizes across processes. +On Linux, OSX, and other POSIX systems it uses the flock system call. On windows +it uses the LockFileEx and UnlockFileEx system calls.") + (license license:expat))) + +(define-public go-github-com-buger-jsonparser-0.0.0-20180808090653-f4dd9f5a6b44 + (package + (name "go-github-com-buger-jsonparser") + (version "0.0.0-20180808090653-f4dd9f5a6b44") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/buger/jsonparser") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12qa2n33s7yz88ywpr3k9kg3b4gm6rqgnv28iyikyxw8h5jascz5")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/buger/jsonparser")) + (home-page "https://github.com/buger/jsonparser") + (synopsis + "Alternative JSON parser for Go (10x times faster standard library)") + (description + "It does not require you to know the structure of the payload (eg. create structs), and allows accessing fields by providing the path to them. It is up to @strong{10 times faster} than standard @code{encoding/json} package (depending on payload size and usage), @strong{allocates no memory}. See benchmarks below.") + (license license:expat))) + +(define-public go-github-com-containernetworking-cni-0.8.1 + (package + (name "go-github-com-containernetworking-cni") + (version "0.8.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containernetworking/cni") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ydzsiq6kfwjghf5dd4ld2rv3cxgbjq6c1523jxmib1phwf0s75z")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containernetworking/cni")) + (home-page "https://github.com/containernetworking/cni") + (synopsis "CNI - the Container Network Interface") + (description + "CNI (), a @url{https://cncf.io,Cloud Native Computing Foundation} project, consists of a specification and libraries for writing plugins to configure network interfaces in Linux containers, along with a number of supported plugins. +CNI concerns itself only with network connectivity of containers and removing allocated resources when the container is deleted. +Because of this focus, CNI has a wide range of support and the specification is simple to implement.") + (license license:asl2.0))) + +(define-public go-github-com-coreos-go-iptables-0.5.0 + (package + (name "go-github-com-coreos-go-iptables") + (version "0.5.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/coreos/go-iptables") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0syxjad9b3d19sjy7cy7zjpx5bx60yvbhidz8r9cdv43iqadxmp7")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/coreos/go-iptables")) + (home-page "https://github.com/coreos/go-iptables") + (synopsis "go-iptables") + (description "Go bindings for iptables utility.") + (license license:asl2.0))) + +(define-public go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7 + (package + (name "go-github-com-coreos-go-systemd") + (version "0.0.0-20180511133405-39ca1b05acc7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/coreos/go-systemd") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1kzqrrzqspa5qm7kwslxl3m16lqzns23c24rv474ajzwmj3ixmx1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/coreos/go-systemd")) + (home-page "https://github.com/coreos/go-systemd") + (synopsis "go-systemd") + (description "Go bindings to systemd. The project has several packages:") + (license license:asl2.0))) + +(define-public go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c + (package + (name "go-github-com-d2g-dhcp4") + (version "0.0.0-20170904100407-a1d1b6c41b1c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/d2g/dhcp4") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "191hzw6yqzkm042h6miyycq3g0zrhqjhhpl27f8vhwzp4wanasiz")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/d2g/dhcp4")) + (home-page "https://github.com/d2g/dhcp4") + (synopsis "DHCP4 - A DHCP library written in Go.") + (description + "Warning: This library is still being developed. Function calls will change.") + (license license:bsd-3))) + +(define-public go-github-com-d2g-dhcp4client-1.0.0 + (package + (name "go-github-com-d2g-dhcp4client") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/d2g/dhcp4client") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1n4qrn7xsgvnshmddq56hr8g2si5vfmxi0wnp0w71lmdfsxvvx0q")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/d2g/dhcp4client")) + (home-page "https://github.com/d2g/dhcp4client") + (synopsis "dhcp4client") + (description "DHCP Client") + (license license:mpl2.0))) + +(define-public go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5 + (package + (name "go-github-com-d2g-dhcp4server") + (version "0.0.0-20181031114812-7d4a0a7f59a5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/d2g/dhcp4server") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03ibq32flr74pxfly1yca9qicb6f15xgl159jjg3svgnzfjpblwl")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/d2g/dhcp4server")) + (home-page "https://github.com/d2g/dhcp4server") + (synopsis "dhcp4server") + (description "DHCP Server") + (license license:mpl2.0))) + +(define-public go-github-com-d2g-hardwareaddr-0.0.0-20190221164911-e7d9fbe030e4 + (package + (name "go-github-com-d2g-hardwareaddr") + (version "0.0.0-20190221164911-e7d9fbe030e4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/d2g/hardwareaddr") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "09nm5py9xbb9klwhzqkf6786i3b59ynba78xkrv9jx4ari7ibh8q")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/d2g/hardwareaddr")) + (home-page "https://github.com/d2g/hardwareaddr") + (synopsis "hardwareaddr") + (description "Generate Hardware Addresses") + (license license:mpl2.0))) + +(define-public go-github-com-godbus-dbus-0.0.0-20180201030542-885f9cc04c9c + (package + (name "go-github-com-godbus-dbus") + (version "0.0.0-20180201030542-885f9cc04c9c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/godbus/dbus") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wjpaj4vr5lvpnwc5faf3qizd7zd2v9yq0fm0558wap1hiyqb8x8")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/godbus/dbus")) + (home-page "https://github.com/godbus/dbus") + (synopsis "dbus") + (description + "Package dbus implements bindings to the D-Bus message bus system. +") + (license license:bsd-2))) + +(define-public go-github-com-j-keck-arping-0.0.0-20160618110441-2cf9dc699c56 + (package + (name "go-github-com-j-keck-arping") + (version "0.0.0-20160618110441-2cf9dc699c56") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/j-keck/arping") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1bid8mpx3j4546ni0a6q5xyz7hb854g95qnxqmg5jzs9vrcird3c")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/j-keck/arping")) + (home-page "https://github.com/j-keck/arping") + (synopsis "arping") + (description + "Package arping is a native go library to ping a host per arp datagram, or query a host mac address +") + (license license:expat))) + +(define-public go-github-com-mattn-go-shellwords-1.0.3 + (package + (name "go-github-com-mattn-go-shellwords") + (version "1.0.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mattn/go-shellwords") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1pg7pl25wvpl2dbpyrv9p1r7prnqimxlf6136vn0dfm54j2x4mnr")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mattn/go-shellwords")) + (home-page "https://github.com/mattn/go-shellwords") + (synopsis "go-shellwords") + (description "Parse line as shell words.") + (license license:expat))) + +(define-public go-github-com-google-go-cmp-0.3.0 + (package + (name "go-github-com-google-go-cmp") + (version "0.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1hyxx3434zshl2m9ja78gwlkg1rx9yl6diqa7dnjb31xz5x4gbjj")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd + (package + (name "go-google-golang-org-protobuf") + (version "0.0.0-20200109180630-ec00e32a8dfd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0w6lp9w2avxcpxwzzhspr209ifhyjagvs23k0vykfdqahl1aplrh")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.3.0" + ,go-github-com-google-go-cmp-0.3.0))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.4.0-rc.1 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.0-rc.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "186rirvbfgv6hrxp27ipx2cdpv19qifdd20biqfdm01wiyclqimn")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd" + ,go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd) + ("go-github-com-google-go-cmp-0.3.1" + ,go-github-com-google-go-cmp-0.3.1))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-github-com-google-go-cmp-0.3.1 + (package + (name "go-github-com-google-go-cmp") + (version "0.3.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1caw49i0plkjxir7kdf5qhwls3krqwfmi7g4h392rdfwi3kfahx1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64 + (package + (name "go-google-golang-org-protobuf") + (version "0.0.0-20200221191635-4d8936d0db64") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0563bsvdjj6k0sgwqd5yzrgfiax7sp3lcwh608gync5sv9fx39cy")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.3.1" + ,go-github-com-google-go-cmp-0.3.1) + ("go-github-com-golang-protobuf-1.4.0-rc.1" + ,go-github-com-golang-protobuf-1.4.0-rc.1))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.0-rc.1.0.20200221234624-67d41d38c208") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ykxhg3zixmw25pd435f8h16wnz1g00jpcmmg3xl030kksgqgpp6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64" + ,go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60 + (package + (name "go-google-golang-org-protobuf") + (version "0.0.0-20200228230310-ab0ca4ff8a60") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1rinspcznfp85yz4vrlf4h38hr576virgv8lcs22bsylqga808sd")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208" + ,go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.4.0-rc.2 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.0-rc.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1hd43hjv5zl6bjbmhm5phx74bw4xajsi73m5zky2k56za4mpgzzc")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60" + ,go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967 + (package + (name "go-google-golang-org-protobuf") + (version "1.20.1-0.20200309200217-e05f789c0967") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "17wmy89hnmpkwc63rfcjp50q15s9f1rhmczg06c3z9yy41zk82w9")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.0-rc.2" + ,go-github-com-golang-protobuf-1.4.0-rc.2))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.0-rc.4.0.20200313231945-b860323f09d0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1zj6cwshx0l5n9cn2cpbikzzb79px5dmkpc4p19zy1iif5r5p0z0")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967" + ,go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-1.21.0 + (package + (name "go-google-golang-org-protobuf") + (version "1.21.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12bwln8z1lf9105gdp6ip0rx741i4yfz1520gxnp8861lh9wcl63")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0" + ,go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.4.0 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fjvl5n77abxz5qsd4mgyvjq19x43c5bfvmq62mq3m5plx6zksc8")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.21.0" + ,go-google-golang-org-protobuf-1.21.0) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-github-com-google-go-cmp-0.4.0 + (package + (name "go-github-com-google-go-cmp") + (version "0.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1x5pvl3fb5sbyng7i34431xycnhmx8xx94gq2n19g6p0vz68z2v2")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-1.23.0 + (package + (name "go-google-golang-org-protobuf") + (version "1.23.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03yan0m1v0zmlr935p4n24fd376mznsg85zy8sywbgisls4s1bzy")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.0" + ,go-github-com-golang-protobuf-1.4.0))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.4.2 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0m5z81im4nsyfgarjhppayk4hqnrwswr3nix9mj8pff8x9jvcjqw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.23.0" + ,go-google-golang-org-protobuf-1.23.0) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20190904154756-749cb33beabd + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190904154756-749cb33beabd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0dm3257q3rv2kyn5lmqqim2fqg634v6rhrqq4glvbk4wx4l3v337")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-nxadm-tail-1.4.4 + (package + (name "go-github-com-nxadm-tail") + (version "1.4.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/nxadm/tail") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1czmwqii0fc8v3ar5bwqpfanprkxg19waly405zlvcflzvj53wwc")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/nxadm/tail")) + (propagated-inputs + `(("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" + ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) + ("go-golang-org-x-sys-0.0.0-20190904154756-749cb33beabd" + ,go-golang-org-x-sys-0.0.0-20190904154756-749cb33beabd) + ("go-github-com-fsnotify-fsnotify-1.4.7" + ,go-github-com-fsnotify-fsnotify-1.4.7))) + (home-page "https://github.com/nxadm/tail") + (synopsis "tail functionality in Go") + (description + "nxadm/tail provides a Go library that emulates the features of the BSD `tail` +program. The library comes with full support for truncation/move detection as +it is designed to work with log rotation tools. The library works on all +operating systems supported by Go, including POSIX systems like Linux and +*BSD, and MS Windows. Go 1.9 is the oldest compiler release supported. +") + (license license:expat))) + +(define-public go-github-com-fsnotify-fsnotify-1.4.7 + (package + (name "go-github-com-fsnotify-fsnotify") + (version "1.4.7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/fsnotify/fsnotify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/fsnotify/fsnotify")) + (home-page "https://github.com/fsnotify/fsnotify") + (synopsis "File system notifications for Go") + (description + "Package fsnotify provides a platform-independent interface for file system notifications. +") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.2.0 + (package + (name "go-github-com-golang-protobuf") + (version "1.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0kf4b59rcbb1cchfny2dm9jyznp8ri2hsb14n8iak1q8986xa0ab")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-github-com-hpcloud-tail-1.0.0 + (package + (name "go-github-com-hpcloud-tail") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hpcloud/tail") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1njpzc0pi1acg5zx9y6vj9xi6ksbsc5d387rd6904hy6rh2m6kn0")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hpcloud/tail")) + (home-page "https://github.com/hpcloud/tail") + (synopsis "Go package for tail-ing files") + (description + "This package provides a Go package striving to emulate the features of the BSD @code{tail} program.") + (license license:expat))) + +(define-public go-github-com-onsi-ginkgo-1.6.0 + (package + (name "go-github-com-onsi-ginkgo") + (version "1.6.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/onsi/ginkgo") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0x0gc89vgq38xhgmi2h22bhr73cf2gmk42g89nz89k8dgg9hhr25")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/onsi/ginkgo")) + (home-page "https://github.com/onsi/ginkgo") + (synopsis "Ginkgo 2.0 Release Candidate is available!") + (description "Ginkgo is a BDD-style testing framework for Golang +") + (license license:expat))) + +(define-public go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd + (package + (name "go-golang-org-x-net") + (version "0.0.0-20180906233101-161cd47e91fd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0254ld010iijygbzykib2vags1dc0wlmcmhgh4jl8iny159lhbcv")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20180314180146-1d60e4601c6f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "046jlanz2lkxq1r57x9bl6s4cvfqaic6p2xybsj8mq1120jv4rs6")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the +ones provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20180909124046-d0be0721c37e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "081wyvfnlf842dqg03raxfz6lldlxpmyh1prix9lmrrm65arxb12")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-gopkg-in-fsnotify-v1-1.4.7 + (package + (name "go-gopkg-in-fsnotify-v1") + (version "1.4.7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/fsnotify.v1") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) + (build-system go-build-system) + (arguments + '(#:import-path + "gopkg.in/fsnotify.v1" + #:unpack-path + "gopkg.in/fsnotify.v1")) + (home-page "https://gopkg.in/fsnotify.v1") + (synopsis "File system notifications for Go") + (description + "Package fsnotify provides a platform-independent interface for file system notifications. +") + (license license:bsd-3))) + +(define-public go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7 + (package + (name "go-gopkg-in-tomb-v1") + (version "1.0.0-20141024135613-dd632973f1e7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/tomb.v1") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1lqmq1ag7s4b3gc3ddvr792c5xb5k6sfn0cchr3i2s7f1c231zjv")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/tomb.v1" #:unpack-path "gopkg.in/tomb.v1")) + (home-page "https://gopkg.in/tomb.v1") + (synopsis "Installation and usage") + (description + "The tomb package offers a conventional API for clean goroutine termination. +") + (license license:bsd-3))) + +(define-public go-gopkg-in-yaml-v2-2.2.4 + (package + (name "go-gopkg-in-yaml-v2") + (version "2.2.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "11bwj757wi8kdrcnlgfqb8vv2d2xdhlghmyagd19i62khrkchsg2")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v2") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language. +") + (license license:asl2.0))) + +(define-public go-github-com-onsi-gomega-1.7.1 + (package + (name "go-github-com-onsi-gomega") + (version "1.7.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/onsi/gomega") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "06p3x0910cdaa64l7d44s728d4j3yhps315dlcvrbjzhljjj7mam")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/onsi/gomega")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.4" ,go-gopkg-in-yaml-v2-2.2.4) + ("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" + ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) + ("go-gopkg-in-fsnotify-v1-1.4.7" ,go-gopkg-in-fsnotify-v1-1.4.7) + ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e" + ,go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e) + ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" + ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) + ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" + ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) + ("go-github-com-onsi-ginkgo-1.6.0" ,go-github-com-onsi-ginkgo-1.6.0) + ("go-github-com-hpcloud-tail-1.0.0" ,go-github-com-hpcloud-tail-1.0.0) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0) + ("go-github-com-fsnotify-fsnotify-1.4.7" + ,go-github-com-fsnotify-fsnotify-1.4.7))) + (home-page "https://github.com/onsi/gomega") + (synopsis ": a BDD Testing Framework for Golang") + (description + "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library. +") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20191120155948-bd437916bb0e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1i8x26frmlin55k69k936zd1rp5sqnq14y5ms4rkxbfzhasdm2rx")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-onsi-ginkgo-1.12.1 + (package + (name "go-github-com-onsi-ginkgo") + (version "1.12.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/onsi/ginkgo") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0xs9724l2b0bwjwrvw5cs3akxaw0n1j5kyxrb1ggfsdjz0zmjcxh")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/onsi/ginkgo")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e" + ,go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e) + ("go-github-com-onsi-gomega-1.7.1" ,go-github-com-onsi-gomega-1.7.1) + ("go-github-com-nxadm-tail-1.4.4" ,go-github-com-nxadm-tail-1.4.4))) + (home-page "https://github.com/onsi/ginkgo") + (synopsis "Ginkgo 2.0 Release Candidate is available!") + (description "Ginkgo is a BDD-style testing framework for Golang +") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190215142949-d0b11bdaac8a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20190308221718-c2843e01d9a2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-text-0.3.0 + (package + (name "go-golang-org-x-text") + (version "0.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/text")) + (home-page "https://golang.org/x/text") + (synopsis "Go Text") + (description + "text is a repository of text-related packages related to internationalization +(i18n) and localization (l10n), such as character encodings, text +transformations, and locale-specific text handling. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190404232315-eb5bcb51f2a3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "17k4g8krxbl84gzcs275b7gsh66dzm15fdxivjnx9xz8q84l4kby")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20190412213103-97732733099d + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190412213103-97732733099d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "118hkp01i4z1f5h6hcjm0ff2ngqhrzj1f7731n0kw8dr6hvbx0sw")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20200622213623-75b288015ac9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18vlncvvs11ds3zaaziqjlg5s2vcwi3496nn6qv7p0dp94j5pwa2")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" + ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) + ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" + ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200930185726-fdedc70b468f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1njlfhjbvi4lxvjbq8zswrb0y0q4jd2p6x51h1q6vmyzi9af6869")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20180917221912-90fa682c2a6e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-golang-org-x-text-0.3.3 + (package + (name "go-golang-org-x-text") + (version "0.3.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19pihqm3phyndmiw6i42pdv6z1rbvlqlsnhsyqf9gsnn0qnmqqlh")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/text")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" + ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) + (home-page "https://golang.org/x/text") + (synopsis "Go Text") + (description + "text is a repository of text-related packages related to internationalization +(i18n) and localization (l10n), such as character encodings, text +transformations, and locale-specific text handling. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20201006153459-a7d1128ccaa0 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20201006153459-a7d1128ccaa0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1iqqq7s95b2a29bspfxv68qnby8vwjvy9f8gl2262p6f9hhp21d2")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) + ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" + ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) + ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" + ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543 + (package + (name "go-golang-org-x-xerrors") + (version "0.0.0-20191204190536-9bdfabe68543") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/xerrors") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1yjfi1bk9xb81lqn85nnm13zz725wazvrx3b50hx19qmwg7a4b0c")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/xerrors")) + (home-page "https://golang.org/x/xerrors") + (synopsis #f) + (description + "Package xerrors implements functions to manipulate errors. +") + (license license:bsd-3))) + +(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 + (package + (name "go-gopkg-in-check-v1") + (version "0.0.0-20161208181325-20d25e280405") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/check.v1") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) + (home-page "https://gopkg.in/check.v1") + (synopsis "Instructions") + (description + "Package check is a rich testing extension for Go's testing package. +") + (license license:bsd-2))) + +(define-public go-gopkg-in-yaml-v2-2.3.0 + (package + (name "go-gopkg-in-yaml-v2") + (version "2.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1md0hlyd9s6myv3663i9l59y74n4xjazifmmyxn43g86fgkc5lzj")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v2") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language. +") + (license license:asl2.0))) + +(define-public go-github-com-onsi-gomega-1.10.3 + (package + (name "go-github-com-onsi-gomega") + (version "1.10.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/onsi/gomega") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1jvp5wlny86ncsqak5rz70qfn61y3ajc64w0hrj4840zgh90zb06")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/onsi/gomega")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.3.0" ,go-gopkg-in-yaml-v2-2.3.0) + ("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) + ("go-golang-org-x-net-0.0.0-20201006153459-a7d1128ccaa0" + ,go-golang-org-x-net-0.0.0-20201006153459-a7d1128ccaa0) + ("go-github-com-onsi-ginkgo-1.12.1" ,go-github-com-onsi-ginkgo-1.12.1) + ("go-github-com-golang-protobuf-1.4.2" + ,go-github-com-golang-protobuf-1.4.2))) + (home-page "https://github.com/onsi/gomega") + (synopsis ": a BDD Testing Framework for Golang") + (description + "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library. +") + (license license:expat))) + +(define-public go-github-com-safchain-ethtool-0.0.0-20190326074333-42ed695e3de8 + (package + (name "go-github-com-safchain-ethtool") + (version "0.0.0-20190326074333-42ed695e3de8") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/safchain/ethtool") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0n5hkrzc1bh46nidcssx4539kvcmgj501v3kzh2pljpg27509daj")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/safchain/ethtool")) + (home-page "https://github.com/safchain/ethtool") + (synopsis "ethtool go package") + (description + "Package ethtool aims to provide a library giving a simple access to the +Linux SIOCETHTOOL ioctl operations. It can be used to retrieve informations +from a network device like statistics, driver related informations or +even the peer of a VETH interface. +") + (license license:asl2.0))) + +(define-public go-github-com-sirupsen-logrus-1.0.6 + (package + (name "go-github-com-sirupsen-logrus") + (version "1.0.6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sirupsen/logrus") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "029irw2lsbqi944gdrbkwdw0m2794sqni4g21gsnmz142hbzds8c")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/sirupsen/logrus")) + (home-page "https://github.com/sirupsen/logrus") + (synopsis "Logrus") + (description + "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. +") + (license license:expat))) + +(define-public go-github-com-davecgh-go-spew-1.1.0 + (package + (name "go-github-com-davecgh-go-spew") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/davecgh/go-spew") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/davecgh/go-spew")) + (home-page "https://github.com/davecgh/go-spew") + (synopsis "go-spew") + (description + "Go-spew implements a deep pretty printer for Go data structures to aid in +debugging. A comprehensive suite of tests with 100% test coverage is provided +to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage +report. Go-spew is licensed under the liberal ISC license, so it may be used in +open source or commercial projects.") + (license license:isc))) + +(define-public go-github-com-pmezard-go-difflib-1.0.0 + (package + (name "go-github-com-pmezard-go-difflib") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pmezard/go-difflib") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pmezard/go-difflib")) + (home-page "https://github.com/pmezard/go-difflib") + (synopsis "go-difflib") + (description + "Go-difflib is a partial port of python 3 difflib package. Its main goal +was to make unified and context diff available in pure Go, mostly for +testing purposes.") + (license license:bsd-3))) + +(define-public go-github-com-stretchr-objx-0.1.0 + (package + (name "go-github-com-stretchr-objx") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/objx") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/objx")) + (home-page "https://github.com/stretchr/objx") + (synopsis "Objx") + (description + "Objx - Go package for dealing with maps, slices, JSON and other data. +") + (license license:expat))) + +(define-public go-github-com-stretchr-testify-1.3.0 + (package + (name "go-github-com-stretchr-testify") + (version "1.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wjchp2c8xbgcbbq32w3kvblk6q6yn533g78nxl6iskq6y95lxsy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (propagated-inputs + `(("go-github-com-stretchr-objx-0.1.0" + ,go-github-com-stretchr-objx-0.1.0) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.0" + ,go-github-com-davecgh-go-spew-1.1.0))) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20200217220822-9197077df867 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200217220822-9197077df867") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1270yyiqzlgrsygp2j0qavh4agm4xjv3ljfpk4wgqgmg4ph1lmx1")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-vishvananda-netns-0.0.0-20200728191858-db3c7e526aae + (package + (name "go-github-com-vishvananda-netns") + (version "0.0.0-20200728191858-db3c7e526aae") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/vishvananda/netns") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1gx41r06by67q5yyyvjpr0cyqqs2pcksfaqxy0s36cx4vpjn5x9r")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/vishvananda/netns")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20200217220822-9197077df867" + ,go-golang-org-x-sys-0.0.0-20200217220822-9197077df867))) + (home-page "https://github.com/vishvananda/netns") + (synopsis "netns - network namespaces in go") + (description + "Package netns allows ultra-simple network namespace handling. NsHandles +can be retrieved and set. Note that the current namespace is thread +local so actions that set and reset namespaces should use LockOSThread +to make sure the namespace doesn't change due to a goroutine switch. +It is best to close NsHandles when you are done with them. This can be +accomplished via a `defer ns.Close()` on the handle. Changing namespaces +requires elevated privileges, so in most cases this code needs to be run +as root. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-sys-0.0.0-20200728102440-3e129f6d46b1 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200728102440-3e129f6d46b1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "02wcaghvpysqijiqsiimk52vma7lx99g5kvdid2r1qsf9hmwgvy2")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-vishvananda-netlink-1.1.1-0.20201029203352-d40f9887b852 + (package + (name "go-github-com-vishvananda-netlink") + (version "1.1.1-0.20201029203352-d40f9887b852") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/vishvananda/netlink") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1aq13npm7vd153vxrk1vhsg36r2g9hrh21cvk422ssrf57qy2fsj")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/vishvananda/netlink")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20200728102440-3e129f6d46b1" + ,go-golang-org-x-sys-0.0.0-20200728102440-3e129f6d46b1) + ("go-github-com-vishvananda-netns-0.0.0-20200728191858-db3c7e526aae" + ,go-github-com-vishvananda-netns-0.0.0-20200728191858-db3c7e526aae))) + (home-page "https://github.com/vishvananda/netlink") + (synopsis "netlink - netlink library for go") + (description + "Package netlink provides a simple library for netlink. Netlink is +the interface a user-space program in linux uses to communicate with +the kernel. It can be used to add and remove interfaces, set up ip +addresses and routes, and confiugre ipsec. Netlink communication +requires elevated privileges, so in most cases this code needs to +be run as root. The low level primitives for netlink are contained +in the nl subpackage. This package attempts to provide a high-level +interface that is loosly modeled on the iproute2 cli. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-sys-0.0.0-20201117170446-d9b008d0a637 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20201117170446-d9b008d0a637") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "06pp1nrhzx6nm6rwwzm0xzf8bs3r1mfsrkclyhlhnr7x5r0a0ppi")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-gopkg-in-airbrake-gobrake-v2-2.0.9 + (package + (name "go-gopkg-in-airbrake-gobrake-v2") + (version "2.0.9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/airbrake/gobrake.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1x06f7n7qlyzqgyz0sdfcidf3w4ldn6zs6qx2mhibggk2z4whcjw")))) + (build-system go-build-system) + (arguments + '(#:import-path + "gopkg.in/airbrake/gobrake.v2" + #:unpack-path + "gopkg.in/airbrake/gobrake.v2")) + (home-page "https://gopkg.in/airbrake/gobrake.v2") + (synopsis "Airbrake Golang Notifier") + (description + "You can use @url{https://github.com/airbrake/glog,glog fork} to send your logs to Airbrake.") + (license license:bsd-3))) + +(define-public go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2 + (package + (name "go-gopkg-in-gemnasium-logrus-airbrake-hook-v2") + (version "2.1.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/gemnasium/logrus-airbrake-hook.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0sbg0dn6cysmf8f2bi209jwl4jnpiwp4rdghnxlzirw3c32ms5y5")))) + (build-system go-build-system) + (arguments + '(#:import-path + "gopkg.in/gemnasium/logrus-airbrake-hook.v2" + #:unpack-path + "gopkg.in/gemnasium/logrus-airbrake-hook.v2")) + (home-page "https://gopkg.in/gemnasium/logrus-airbrake-hook.v2") + (synopsis "Airbrake Hook for Logrus") + (description + "Use this hook to send your errors to @url{https://airbrake.io/,Airbrake}. +This hook is using the @url{https://github.com/airbrake/gobrake,official airbrake go package}, and will hit the api V3. +The hook is synchronous and will send the error for @code{log.Error}, @code{log.Fatal} and @code{log.Panic} levels.") + (license license:expat))) + +(define-public go-github-com-containernetworking-plugins-0.9.1 + (package + (name "go-github-com-containernetworking-plugins") + (version "0.9.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containernetworking/plugins") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "17rafngfa9b0ybs3j4lvjjqdva6jkamhnbb1n0qnv685g0asvqwz")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containernetworking/plugins")) + (propagated-inputs + `(("go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2" + ,go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2) + ("go-gopkg-in-airbrake-gobrake-v2-2.0.9" + ,go-gopkg-in-airbrake-gobrake-v2-2.0.9) + ("go-golang-org-x-sys-0.0.0-20201117170446-d9b008d0a637" + ,go-golang-org-x-sys-0.0.0-20201117170446-d9b008d0a637) + ("go-github-com-vishvananda-netlink-1.1.1-0.20201029203352-d40f9887b852" + ,go-github-com-vishvananda-netlink-1.1.1-0.20201029203352-d40f9887b852) + ("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0) + ("go-github-com-sirupsen-logrus-1.0.6" + ,go-github-com-sirupsen-logrus-1.0.6) + ("go-github-com-safchain-ethtool-0.0.0-20190326074333-42ed695e3de8" + ,go-github-com-safchain-ethtool-0.0.0-20190326074333-42ed695e3de8) + ("go-github-com-onsi-gomega-1.10.3" ,go-github-com-onsi-gomega-1.10.3) + ("go-github-com-onsi-ginkgo-1.12.1" ,go-github-com-onsi-ginkgo-1.12.1) + ("go-github-com-mattn-go-shellwords-1.0.3" + ,go-github-com-mattn-go-shellwords-1.0.3) + ("go-github-com-j-keck-arping-0.0.0-20160618110441-2cf9dc699c56" + ,go-github-com-j-keck-arping-0.0.0-20160618110441-2cf9dc699c56) + ("go-github-com-godbus-dbus-0.0.0-20180201030542-885f9cc04c9c" + ,go-github-com-godbus-dbus-0.0.0-20180201030542-885f9cc04c9c) + ("go-github-com-d2g-hardwareaddr-0.0.0-20190221164911-e7d9fbe030e4" + ,go-github-com-d2g-hardwareaddr-0.0.0-20190221164911-e7d9fbe030e4) + ("go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5" + ,go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5) + ("go-github-com-d2g-dhcp4client-1.0.0" + ,go-github-com-d2g-dhcp4client-1.0.0) + ("go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c" + ,go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c) + ("go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7" + ,go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7) + ("go-github-com-coreos-go-iptables-0.5.0" + ,go-github-com-coreos-go-iptables-0.5.0) + ("go-github-com-containernetworking-cni-0.8.1" + ,go-github-com-containernetworking-cni-0.8.1) + ("go-github-com-buger-jsonparser-0.0.0-20180808090653-f4dd9f5a6b44" + ,go-github-com-buger-jsonparser-0.0.0-20180808090653-f4dd9f5a6b44) + ("go-github-com-alexflint-go-filemutex-0.0.0-20171022225611-72bdc8eae2ae" + ,go-github-com-alexflint-go-filemutex-0.0.0-20171022225611-72bdc8eae2ae) + ("go-github-com-microsoft-hcsshim-0.8.6" + ,go-github-com-microsoft-hcsshim-0.8.6) + ("go-github-com-microsoft-go-winio-0.4.11" + ,go-github-com-microsoft-go-winio-0.4.11))) + (home-page "https://github.com/containernetworking/plugins") + (synopsis "Plugins") + (description + "Some CNI network plugins, maintained by the containernetworking team. For more information, see the @url{https://www.cni.dev,CNI website}.") + (license license:asl2.0))) + +(define-public go-github-com-14rcole-gopopulate-0.0.0-20180821133914-b175b219e774 + (package + (name "go-github-com-14rcole-gopopulate") + (version "0.0.0-20180821133914-b175b219e774") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/14rcole/gopopulate") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0rrrwsmjvkswn3mrdm03q53sl6r9y00galv83lcm7b789m9a6abf")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/14rcole/gopopulate")) + (home-page "https://github.com/14rcole/gopopulate") + (synopsis "gopopulate") + (description #f) + (license license:expat))) + +(define-public go-github-com-containerd-containerd-1.5.1 + (package + (name "go-github-com-containerd-containerd") + (version "1.5.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/containerd") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1mbdk7c1drl14wzxykh6h3hxd5d9xxgdslp9634yj9pwi5wkx3n3")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/containerd")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) + ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) + ("go-github-com-golang-protobuf-1.3.5" + ,go-github-com-golang-protobuf-1.3.5) + ("go-github-com-gogo-googleapis-1.3.2" + ,go-github-com-gogo-googleapis-1.3.2) + ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" + ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) + ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) + ("go-k8s-io-cri-api-0.20.6" ,go-k8s-io-cri-api-0.20.6) + ("go-k8s-io-component-base-0.20.6" ,go-k8s-io-component-base-0.20.6) + ("go-k8s-io-client-go-0.20.6" ,go-k8s-io-client-go-0.20.6) + ("go-k8s-io-apiserver-0.20.6" ,go-k8s-io-apiserver-0.20.6) + ("go-k8s-io-apimachinery-0.20.6" ,go-k8s-io-apimachinery-0.20.6) + ("go-k8s-io-api-0.20.6" ,go-k8s-io-api-0.20.6) + ("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) + ("go-golang-org-x-sys-0.0.0-20210324051608-47abb6519492" + ,go-golang-org-x-sys-0.0.0-20210324051608-47abb6519492) + ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" + ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) + ("go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110" + ,go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110) + ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) + ("go-github-com-tchap-go-patricia-2.2.6+incompatible" + ,go-github-com-tchap-go-patricia-2.2.6+incompatible) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-sirupsen-logrus-1.7.0" + ,go-github-com-sirupsen-logrus-1.7.0) + ("go-github-com-satori-go-uuid-1.2.0" + ,go-github-com-satori-go-uuid-1.2.0) + ("go-github-com-prometheus-procfs-0.6.0" + ,go-github-com-prometheus-procfs-0.6.0) + ("go-github-com-prometheus-client-golang-1.7.1" + ,go-github-com-prometheus-client-golang-1.7.1) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-pelletier-go-toml-1.8.1" + ,go-github-com-pelletier-go-toml-1.8.1) + ("go-github-com-opencontainers-selinux-1.8.0" + ,go-github-com-opencontainers-selinux-1.8.0) + ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" + ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) + ("go-github-com-opencontainers-runc-1.0.0-rc93" + ,go-github-com-opencontainers-runc-1.0.0-rc93) + ("go-github-com-opencontainers-image-spec-1.0.1" + ,go-github-com-opencontainers-image-spec-1.0.1) + ("go-github-com-opencontainers-go-digest-1.0.0" + ,go-github-com-opencontainers-go-digest-1.0.0) + ("go-github-com-moby-sys-symlink-0.1.0" + ,go-github-com-moby-sys-symlink-0.1.0) + ("go-github-com-moby-sys-mountinfo-0.4.1" + ,go-github-com-moby-sys-mountinfo-0.4.1) + ("go-github-com-moby-locker-1.0.1" ,go-github-com-moby-locker-1.0.1) + ("go-github-com-klauspost-compress-1.11.13" + ,go-github-com-klauspost-compress-1.11.13) + ("go-github-com-imdario-mergo-0.3.11" + ,go-github-com-imdario-mergo-0.3.11) + ("go-github-com-hashicorp-go-multierror-1.0.0" + ,go-github-com-hashicorp-go-multierror-1.0.0) + ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" + ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) + ("go-github-com-google-uuid-1.2.0" ,go-github-com-google-uuid-1.2.0) + ("go-github-com-google-go-cmp-0.5.4" + ,go-github-com-google-go-cmp-0.5.4) + ("go-github-com-gogo-protobuf-1.3.2" + ,go-github-com-gogo-protobuf-1.3.2) + ("go-github-com-fsnotify-fsnotify-1.4.9" + ,go-github-com-fsnotify-fsnotify-1.4.9) + ("go-github-com-emicklei-go-restful-2.9.5+incompatible" + ,go-github-com-emicklei-go-restful-2.9.5+incompatible) + ("go-github-com-docker-go-units-0.4.0" + ,go-github-com-docker-go-units-0.4.0) + ("go-github-com-docker-go-metrics-0.0.1" + ,go-github-com-docker-go-metrics-0.0.1) + ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" + ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1) + ("go-github-com-coreos-go-systemd-v22-22.1.0" + ,go-github-com-coreos-go-systemd-v22-22.1.0) + ("go-github-com-containernetworking-plugins-0.9.1" + ,go-github-com-containernetworking-plugins-0.9.1) + ("go-github-com-containerd-zfs-1.0.0" + ,go-github-com-containerd-zfs-1.0.0) + ("go-github-com-containerd-typeurl-1.0.2" + ,go-github-com-containerd-typeurl-1.0.2) + ("go-github-com-containerd-ttrpc-1.0.2" + ,go-github-com-containerd-ttrpc-1.0.2) + ("go-github-com-containerd-nri-0.1.0" + ,go-github-com-containerd-nri-0.1.0) + ("go-github-com-containerd-imgcrypt-1.1.1" + ,go-github-com-containerd-imgcrypt-1.1.1) + ("go-github-com-containerd-go-runc-1.0.0" + ,go-github-com-containerd-go-runc-1.0.0) + ("go-github-com-containerd-go-cni-1.0.2" + ,go-github-com-containerd-go-cni-1.0.2) + ("go-github-com-containerd-fifo-1.0.0" + ,go-github-com-containerd-fifo-1.0.0) + ("go-github-com-containerd-continuity-0.1.0" + ,go-github-com-containerd-continuity-0.1.0) + ("go-github-com-containerd-console-1.0.2" + ,go-github-com-containerd-console-1.0.2) + ("go-github-com-containerd-cgroups-1.0.1" + ,go-github-com-containerd-cgroups-1.0.1) + ("go-github-com-containerd-btrfs-1.0.0" + ,go-github-com-containerd-btrfs-1.0.0) + ("go-github-com-containerd-aufs-1.0.0" + ,go-github-com-containerd-aufs-1.0.0) + ("go-github-com-microsoft-hcsshim-0.8.16" + ,go-github-com-microsoft-hcsshim-0.8.16) + ("go-github-com-microsoft-go-winio-0.4.17" + ,go-github-com-microsoft-go-winio-0.4.17))) + (home-page "https://github.com/containerd/containerd") + (synopsis "Now Recruiting") + (description + "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") + (license license:asl2.0))) + +(define-public go-github-com-microsoft-hcsshim-0.8.21 + (package + (name "go-github-com-microsoft-hcsshim") + (version "0.8.21") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/microsoft/hcsshim") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1z0imk1nr6h6smi3r5fr7zl54k1wzbkgwff6jijg0zr2m3lqp051")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/Microsoft/hcsshim")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) + ("go-golang-org-x-sys-0.0.0-20210324051608-47abb6519492" + ,go-golang-org-x-sys-0.0.0-20210324051608-47abb6519492) + ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" + ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) + ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) + ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) + ("go-github-com-sirupsen-logrus-1.7.0" + ,go-github-com-sirupsen-logrus-1.7.0) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" + ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) + ("go-github-com-gogo-protobuf-1.3.2" + ,go-github-com-gogo-protobuf-1.3.2) + ("go-github-com-containerd-typeurl-1.0.2" + ,go-github-com-containerd-typeurl-1.0.2) + ("go-github-com-containerd-ttrpc-1.0.2" + ,go-github-com-containerd-ttrpc-1.0.2) + ("go-github-com-containerd-go-runc-1.0.0" + ,go-github-com-containerd-go-runc-1.0.0) + ("go-github-com-containerd-containerd-1.5.1" + ,go-github-com-containerd-containerd-1.5.1) + ("go-github-com-containerd-console-1.0.2" + ,go-github-com-containerd-console-1.0.2) + ("go-github-com-containerd-cgroups-1.0.1" + ,go-github-com-containerd-cgroups-1.0.1) + ("go-github-com-microsoft-go-winio-0.4.17" + ,go-github-com-microsoft-go-winio-0.4.17))) + (home-page "https://github.com/Microsoft/hcsshim") + (synopsis "hcsshim") + (description + "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") + (license license:expat))) + +(define-public go-github-com-containerd-aufs-1.0.0 + (package + (name "go-github-com-containerd-aufs") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/aufs") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0jyyyf6sr910m602axmp4h4j1l2n680cpp60z09pvprz55zi4ba0")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/aufs")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" + ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" + ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) + ("go-github-com-containerd-containerd-1.5.0-beta.3" + ,go-github-com-containerd-containerd-1.5.0-beta.3))) + (home-page "https://github.com/containerd/aufs") + (synopsis "aufs snapshotter") + (description + "AUFS implementation of the snapshot interface for containerd.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-btrfs-1.0.0 + (package + (name "go-github-com-containerd-btrfs") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/btrfs") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1yf38gg41y1v12m0cl81r9q7d13170a4npzqxhbz7qn32zr23kzn")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/btrfs")) + (propagated-inputs + `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) + (home-page "https://github.com/containerd/btrfs") + (synopsis "go-btrfs") + (description + "Package btrfs provides bindings for working with btrfs partitions from Go. +") + (license license:asl2.0))) + +(define-public go-github-com-containerd-go-cni-1.0.2 + (package + (name "go-github-com-containerd-go-cni") + (version "1.0.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/go-cni") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1hqwy402qy04slz2vj05s517mhdbmmkdjs6nhfnk184a730whgv6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/go-cni")) + (propagated-inputs + `(("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-onsi-gomega-1.7.1" ,go-github-com-onsi-gomega-1.7.1) + ("go-github-com-onsi-ginkgo-1.10.3" ,go-github-com-onsi-ginkgo-1.10.3) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1) + ("go-github-com-containernetworking-cni-0.8.0" + ,go-github-com-containernetworking-cni-0.8.0))) + (home-page "https://github.com/containerd/go-cni") + (synopsis "go-cni") + (description + "This package provides a generic CNI library to provide APIs for CNI plugin interactions. The library provides APIs to:") + (license license:asl2.0))) + +(define-public go-github-com-containerd-zfs-0.0.0-20210315114300-dde8f0fda960 + (package + (name "go-github-com-containerd-zfs") + (version "0.0.0-20210315114300-dde8f0fda960") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/zfs") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ag5p2vqzdavq66wb1z42yw5jzrncsi97g8qk2x9nq51z1nj8rdi")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/zfs")) + (propagated-inputs + `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible" + ,go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible) + ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" + ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) + ("go-github-com-containerd-containerd-1.5.0-beta.3" + ,go-github-com-containerd-containerd-1.5.0-beta.3))) + (home-page "https://github.com/containerd/zfs") + (synopsis "ZFS snapshotter plugin") + (description "ZFS snapshotter plugin for containerd.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-containerd-1.5.0-beta.4 + (package + (name "go-github-com-containerd-containerd") + (version "1.5.0-beta.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/containerd") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "039c26mjq8qs1s4kbx76fc99wnmnx165bqn16b2b9gyvxcphs7iv")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/containerd")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) + ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) + ("go-github-com-golang-protobuf-1.3.5" + ,go-github-com-golang-protobuf-1.3.5) + ("go-github-com-gogo-googleapis-1.3.2" + ,go-github-com-gogo-googleapis-1.3.2) + ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" + ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) + ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) + ("go-k8s-io-cri-api-0.20.1" ,go-k8s-io-cri-api-0.20.1) + ("go-k8s-io-component-base-0.20.1" ,go-k8s-io-component-base-0.20.1) + ("go-k8s-io-client-go-0.20.1" ,go-k8s-io-client-go-0.20.1) + ("go-k8s-io-apiserver-0.20.1" ,go-k8s-io-apiserver-0.20.1) + ("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) + ("go-k8s-io-api-0.20.1" ,go-k8s-io-api-0.20.1) + ("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) + ("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" + ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) + ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" + ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) + ("go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b" + ,go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b) + ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) + ("go-github-com-tchap-go-patricia-2.2.6+incompatible" + ,go-github-com-tchap-go-patricia-2.2.6+incompatible) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-sirupsen-logrus-1.7.0" + ,go-github-com-sirupsen-logrus-1.7.0) + ("go-github-com-prometheus-client-golang-1.7.1" + ,go-github-com-prometheus-client-golang-1.7.1) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-selinux-1.8.0" + ,go-github-com-opencontainers-selinux-1.8.0) + ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" + ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) + ("go-github-com-opencontainers-runc-1.0.0-rc93" + ,go-github-com-opencontainers-runc-1.0.0-rc93) + ("go-github-com-opencontainers-image-spec-1.0.1" + ,go-github-com-opencontainers-image-spec-1.0.1) + ("go-github-com-opencontainers-go-digest-1.0.0" + ,go-github-com-opencontainers-go-digest-1.0.0) + ("go-github-com-moby-sys-symlink-0.1.0" + ,go-github-com-moby-sys-symlink-0.1.0) + ("go-github-com-moby-sys-mountinfo-0.4.1" + ,go-github-com-moby-sys-mountinfo-0.4.1) + ("go-github-com-klauspost-compress-1.11.3" + ,go-github-com-klauspost-compress-1.11.3) + ("go-github-com-imdario-mergo-0.3.11" + ,go-github-com-imdario-mergo-0.3.11) + ("go-github-com-hashicorp-go-multierror-1.0.0" + ,go-github-com-hashicorp-go-multierror-1.0.0) + ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" + ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) + ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) + ("go-github-com-google-go-cmp-0.5.4" + ,go-github-com-google-go-cmp-0.5.4) + ("go-github-com-gogo-protobuf-1.3.2" + ,go-github-com-gogo-protobuf-1.3.2) + ("go-github-com-fsnotify-fsnotify-1.4.9" + ,go-github-com-fsnotify-fsnotify-1.4.9) + ("go-github-com-emicklei-go-restful-2.9.5+incompatible" + ,go-github-com-emicklei-go-restful-2.9.5+incompatible) + ("go-github-com-docker-go-units-0.4.0" + ,go-github-com-docker-go-units-0.4.0) + ("go-github-com-docker-go-metrics-0.0.1" + ,go-github-com-docker-go-metrics-0.0.1) + ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" + ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1) + ("go-github-com-coreos-go-systemd-v22-22.1.0" + ,go-github-com-coreos-go-systemd-v22-22.1.0) + ("go-github-com-containernetworking-plugins-0.8.6" + ,go-github-com-containernetworking-plugins-0.8.6) + ("go-github-com-containerd-zfs-0.0.0-20210315114300-dde8f0fda960" + ,go-github-com-containerd-zfs-0.0.0-20210315114300-dde8f0fda960) + ("go-github-com-containerd-typeurl-1.0.1" + ,go-github-com-containerd-typeurl-1.0.1) + ("go-github-com-containerd-ttrpc-1.0.2" + ,go-github-com-containerd-ttrpc-1.0.2) + ("go-github-com-containerd-nri-0.0.0-20210316161719-dbaa18c31c14" + ,go-github-com-containerd-nri-0.0.0-20210316161719-dbaa18c31c14) + ("go-github-com-containerd-imgcrypt-1.1.1-0.20210312161619-7ed62a527887" + ,go-github-com-containerd-imgcrypt-1.1.1-0.20210312161619-7ed62a527887) + ("go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0" + ,go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0) + ("go-github-com-containerd-go-cni-1.0.1" + ,go-github-com-containerd-go-cni-1.0.1) + ("go-github-com-containerd-fifo-0.0.0-20210316144830-115abcc95a1d" + ,go-github-com-containerd-fifo-0.0.0-20210316144830-115abcc95a1d) + ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" + ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) + ("go-github-com-containerd-console-1.0.1" + ,go-github-com-containerd-console-1.0.1) + ("go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68" + ,go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68) + ("go-github-com-containerd-btrfs-0.0.0-20210316141732-918d888fb676" + ,go-github-com-containerd-btrfs-0.0.0-20210316141732-918d888fb676) + ("go-github-com-containerd-aufs-0.0.0-20210316121734-20793ff83c97" + ,go-github-com-containerd-aufs-0.0.0-20210316121734-20793ff83c97) + ("go-github-com-microsoft-hcsshim-0.8.15" + ,go-github-com-microsoft-hcsshim-0.8.15) + ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" + ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3) + ("go-github-com-burntsushi-toml-0.3.1" + ,go-github-com-burntsushi-toml-0.3.1))) + (home-page "https://github.com/containerd/containerd") + (synopsis "Now Recruiting") + (description + "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") + (license license:asl2.0))) + +(define-public go-github-com-microsoft-hcsshim-0.8.16 + (package + (name "go-github-com-microsoft-hcsshim") + (version "0.8.16") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/microsoft/hcsshim") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "15bxkqq4zavwspx3ga8j3vx9jrc7l0jazsa6cs6im9liy6xhkbd6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/Microsoft/hcsshim")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) + ("go-golang-org-x-sys-0.0.0-20210324051608-47abb6519492" + ,go-golang-org-x-sys-0.0.0-20210324051608-47abb6519492) + ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" + ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) + ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) + ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) + ("go-github-com-sirupsen-logrus-1.7.0" + ,go-github-com-sirupsen-logrus-1.7.0) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" + ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) + ("go-github-com-gogo-protobuf-1.3.2" + ,go-github-com-gogo-protobuf-1.3.2) + ("go-github-com-containerd-typeurl-1.0.1" + ,go-github-com-containerd-typeurl-1.0.1) + ("go-github-com-containerd-ttrpc-1.0.2" + ,go-github-com-containerd-ttrpc-1.0.2) + ("go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0" + ,go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0) + ("go-github-com-containerd-containerd-1.5.0-beta.4" + ,go-github-com-containerd-containerd-1.5.0-beta.4) + ("go-github-com-containerd-console-1.0.1" + ,go-github-com-containerd-console-1.0.1) + ("go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68" + ,go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68) + ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" + ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3))) + (home-page "https://github.com/Microsoft/hcsshim") + (synopsis "hcsshim") + (description + "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") + (license license:expat))) + +(define-public go-github-com-microsoft-go-winio-0.4.17-0.20210324224401-5516f17a5958 + (package + (name "go-github-com-microsoft-go-winio") + (version "0.4.17-0.20210324224401-5516f17a5958") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/microsoft/go-winio") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0gmgiak4x4gdyr17zm4b9vvharflk9pz5aj5jayh9hq50133b2f9")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/Microsoft/go-winio")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" + ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) + ("go-github-com-sirupsen-logrus-1.7.0" + ,go-github-com-sirupsen-logrus-1.7.0) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) + (home-page "https://github.com/Microsoft/go-winio") + (synopsis "go-winio") + (description + "This repository contains utilities for efficiently performing Win32 IO operations in +Go. Currently, this is focused on accessing named pipes and other file handles, and +for using named pipes as a net transport.") + (license license:expat))) + +(define-public go-github-com-containerd-aufs-0.0.0-20210316121734-20793ff83c97 + (package + (name "go-github-com-containerd-aufs") + (version "0.0.0-20210316121734-20793ff83c97") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/aufs") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ipr8pafb2xpkchfvnxjcfx9pb48mjr9k8krj9gnagssxhynbkd5")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/aufs")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" + ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" + ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) + ("go-github-com-containerd-containerd-1.5.0-beta.3" + ,go-github-com-containerd-containerd-1.5.0-beta.3))) + (home-page "https://github.com/containerd/aufs") + (synopsis "aufs snapshotter") + (description + "AUFS implementation of the snapshot interface for containerd.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-btrfs-0.0.0-20210316141732-918d888fb676 + (package + (name "go-github-com-containerd-btrfs") + (version "0.0.0-20210316141732-918d888fb676") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/btrfs") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1yf38gg41y1v12m0cl81r9q7d13170a4npzqxhbz7qn32zr23kzn")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/btrfs")) + (propagated-inputs + `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) + (home-page "https://github.com/containerd/btrfs") + (synopsis "go-btrfs") + (description + "Package btrfs provides bindings for working with btrfs partitions from Go. +") + (license license:asl2.0))) + +(define-public go-github-com-containerd-fifo-0.0.0-20210316144830-115abcc95a1d + (package + (name "go-github-com-containerd-fifo") + (version "0.0.0-20210316144830-115abcc95a1d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/fifo") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hqna43p8r6g3xv8g8n985hq1nzipsvjiwm70xpbzbgynh4ym6z5")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/fifo")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" + ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) + (home-page "https://github.com/containerd/fifo") + (synopsis "fifo") + (description "Go package for handling fifos in a sane way.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0 + (package + (name "go-github-com-containerd-go-runc") + (version "0.0.0-20201020171139-16b287bc67d0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/go-runc") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0xk30dzzxmd83bnfyilplizlxh1pg1gqz2jrq9wz9rqqkxazc03n")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/go-runc")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f" + ,go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f) + ("go-github-com-sirupsen-logrus-1.7.0" + ,go-github-com-sirupsen-logrus-1.7.0) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-runtime-spec-1.0.2" + ,go-github-com-opencontainers-runtime-spec-1.0.2) + ("go-github-com-containerd-console-1.0.1" + ,go-github-com-containerd-console-1.0.1))) + (home-page "https://github.com/containerd/go-runc") + (synopsis "go-runc") + (description + "This is a package for consuming the @url{https://github.com/opencontainers/runc,runc} binary in your Go applications. +It tries to expose all the settings and features of the runc CLI. If there is something missing then add it, its opensource!") + (license license:asl2.0))) + +(define-public go-github-com-containerd-imgcrypt-1.1.1-0.20210312161619-7ed62a527887 + (package + (name "go-github-com-containerd-imgcrypt") + (version "1.1.1-0.20210312161619-7ed62a527887") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/imgcrypt") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "16pgcc0w8m2cxhfjzmmd2h3n6mxzc1nlghrhgjlx0lf4q96hv904")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/imgcrypt")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) + ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" + ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) + ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) + ("go-github-com-sirupsen-logrus-1.7.0" + ,go-github-com-sirupsen-logrus-1.7.0) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" + ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) + ("go-github-com-opencontainers-image-spec-1.0.1" + ,go-github-com-opencontainers-image-spec-1.0.1) + ("go-github-com-opencontainers-go-digest-1.0.0" + ,go-github-com-opencontainers-go-digest-1.0.0) + ("go-github-com-gogo-protobuf-1.3.2" + ,go-github-com-gogo-protobuf-1.3.2) + ("go-github-com-containers-ocicrypt-1.1.0" + ,go-github-com-containers-ocicrypt-1.1.0) + ("go-github-com-containerd-typeurl-1.0.1" + ,go-github-com-containerd-typeurl-1.0.1) + ("go-github-com-containerd-containerd-1.5.0-beta.3" + ,go-github-com-containerd-containerd-1.5.0-beta.3) + ("go-github-com-containerd-console-1.0.1" + ,go-github-com-containerd-console-1.0.1) + ("go-github-com-microsoft-hcsshim-0.8.15" + ,go-github-com-microsoft-hcsshim-0.8.15) + ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" + ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3))) + (home-page "https://github.com/containerd/imgcrypt") + (synopsis "imgcrypt image encryption library and command line tool") + (description + "Project @code{imgcrypt} is a non-core subproject of containerd.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-nri-0.0.0-20210316161719-dbaa18c31c14 + (package + (name "go-github-com-containerd-nri") + (version "0.0.0-20210316161719-dbaa18c31c14") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/nri") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0kyrvagbga6yib7il0m4zvqz977a4wsv5lgjd3ix53xmr4h7fgm7")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/nri")) + (propagated-inputs + `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-containerd-containerd-1.5.0-beta.3" + ,go-github-com-containerd-containerd-1.5.0-beta.3))) + (home-page "https://github.com/containerd/nri") + (synopsis "nri - Node Resource Interface") + (description + "This project is a WIP for a new, CNI like, interface for managing resources on a node for Pods and Containers.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-zfs-0.0.0-20210324211415-d5c4544f0433 + (package + (name "go-github-com-containerd-zfs") + (version "0.0.0-20210324211415-d5c4544f0433") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/zfs") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1wsqwqv2pyn05asgpm9clgpwq9b8b0fjk4khzkjvscrf5j4v1rx4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/zfs")) + (propagated-inputs + `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible" + ,go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible) + ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" + ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) + ("go-github-com-containerd-containerd-1.5.0-beta.3" + ,go-github-com-containerd-containerd-1.5.0-beta.3))) + (home-page "https://github.com/containerd/zfs") + (synopsis "ZFS snapshotter plugin") + (description "ZFS snapshotter plugin for containerd.") + (license license:asl2.0))) + +(define-public go-k8s-io-apiserver-0.20.4 + (package + (name "go-k8s-io-apiserver") + (version "0.20.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes/apiserver") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1gffl7z6bvi46v0fvphbak4waddsgf4pd5w16khgrzl1sv9skn61")))) + (build-system go-build-system) + (arguments '(#:import-path "k8s.io/apiserver")) + (propagated-inputs + `(("go-k8s-io-component-base-0.20.4" ,go-k8s-io-component-base-0.20.4) + ("go-k8s-io-client-go-0.20.4" ,go-k8s-io-client-go-0.20.4) + ("go-k8s-io-apimachinery-0.20.4" ,go-k8s-io-apimachinery-0.20.4) + ("go-k8s-io-api-0.20.4" ,go-k8s-io-api-0.20.4) + ("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) + ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.2" + ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.2) + ("go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.14" + ,go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.14) + ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" + ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) + ("go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd" + ,go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd) + ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) + ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) + ("go-gopkg-in-square-go-jose-v2-2.2.2" + ,go-gopkg-in-square-go-jose-v2-2.2.2) + ("go-gopkg-in-natefinch-lumberjack-v2-2.0.0" + ,go-gopkg-in-natefinch-lumberjack-v2-2.0.0) + ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) + ("go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a" + ,go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a) + ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" + ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) + ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" + ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) + ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" + ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) + ("go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0" + ,go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0) + ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) + ("go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489" + ,go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489) + ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) + ("go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5" + ,go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) + ("go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021" + ,go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822" + ,go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822) + ("go-github-com-mailru-easyjson-0.7.0" + ,go-github-com-mailru-easyjson-0.7.0) + ("go-github-com-hashicorp-golang-lru-0.5.1" + ,go-github-com-hashicorp-golang-lru-0.5.1) + ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" + ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) + ("go-github-com-gorilla-websocket-1.4.2" + ,go-github-com-gorilla-websocket-1.4.2) + ("go-github-com-googleapis-gnostic-0.4.1" + ,go-github-com-googleapis-gnostic-0.4.1) + ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) + ("go-github-com-google-gofuzz-1.1.0" + ,go-github-com-google-gofuzz-1.1.0) + ("go-github-com-google-go-cmp-0.5.2" + ,go-github-com-google-go-cmp-0.5.2) + ("go-github-com-gogo-protobuf-1.3.1" + ,go-github-com-gogo-protobuf-1.3.1) + ("go-github-com-go-openapi-spec-0.19.3" + ,go-github-com-go-openapi-spec-0.19.3) + ("go-github-com-evanphx-json-patch-4.9.0+incompatible" + ,go-github-com-evanphx-json-patch-4.9.0+incompatible) + ("go-github-com-emicklei-go-restful-2.9.5+incompatible" + ,go-github-com-emicklei-go-restful-2.9.5+incompatible) + ("go-github-com-dustin-go-humanize-1.0.0" + ,go-github-com-dustin-go-humanize-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1) + ("go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f" + ,go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f) + ("go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e" + ,go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e) + ("go-github-com-coreos-go-semver-0.3.0" + ,go-github-com-coreos-go-semver-0.3.0) + ("go-github-com-coreos-go-oidc-2.1.0+incompatible" + ,go-github-com-coreos-go-oidc-2.1.0+incompatible))) + (home-page "https://k8s.io/apiserver") + (synopsis "apiserver") + (description + "Generic library for building a Kubernetes aggregated API server.") + (license license:asl2.0))) + +(define-public go-k8s-io-api-0.20.4 + (package + (name "go-k8s-io-api") + (version "0.20.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes/api") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hjckd94vpsr690kwx7dad8qlb8xjg2bz5ms315s9h6wc5cqwvgy")))) + (build-system go-build-system) + (arguments '(#:import-path "k8s.io/api")) + (propagated-inputs + `(("go-k8s-io-apimachinery-0.20.4" ,go-k8s-io-apimachinery-0.20.4) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-gogo-protobuf-1.3.1" + ,go-github-com-gogo-protobuf-1.3.1))) + (home-page "https://k8s.io/api") + (synopsis "api") + (description + "Schema of the external API types that are served by the Kubernetes API server.") + (license license:asl2.0))) + +(define-public go-k8s-io-apimachinery-0.20.4 + (package + (name "go-k8s-io-apimachinery") + (version "0.20.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes/apimachinery") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "15qc12lbzpd4lgajy0rv24b3ky4hhg5y1l37qxdfiakhz91didfw")))) + (build-system go-build-system) + (arguments '(#:import-path "k8s.io/apimachinery")) + (propagated-inputs + `(("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) + ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.2" + ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.2) + ("go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd" + ,go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd) + ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) + ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) + ("go-gopkg-in-inf-v0-0.9.1" ,go-gopkg-in-inf-v0-0.9.1) + ("go-google-golang-org-protobuf-1.25.0" + ,go-google-golang-org-protobuf-1.25.0) + ("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" + ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) + ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) + ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" + ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) + ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" + ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-onsi-gomega-1.7.0" ,go-github-com-onsi-gomega-1.7.0) + ("go-github-com-onsi-ginkgo-1.11.0" ,go-github-com-onsi-ginkgo-1.11.0) + ("go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f" + ,go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f) + ("go-github-com-modern-go-reflect2-1.0.1" + ,go-github-com-modern-go-reflect2-1.0.1) + ("go-github-com-json-iterator-go-1.1.10" + ,go-github-com-json-iterator-go-1.1.10) + ("go-github-com-hashicorp-golang-lru-0.5.1" + ,go-github-com-hashicorp-golang-lru-0.5.1) + ("go-github-com-googleapis-gnostic-0.4.1" + ,go-github-com-googleapis-gnostic-0.4.1) + ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) + ("go-github-com-google-gofuzz-1.1.0" + ,go-github-com-google-gofuzz-1.1.0) + ("go-github-com-google-go-cmp-0.5.2" + ,go-github-com-google-go-cmp-0.5.2) + ("go-github-com-golang-protobuf-1.4.3" + ,go-github-com-golang-protobuf-1.4.3) + ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" + ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) + ("go-github-com-gogo-protobuf-1.3.1" + ,go-github-com-gogo-protobuf-1.3.1) + ("go-github-com-fsnotify-fsnotify-1.4.9" + ,go-github-com-fsnotify-fsnotify-1.4.9) + ("go-github-com-evanphx-json-patch-4.9.0+incompatible" + ,go-github-com-evanphx-json-patch-4.9.0+incompatible) + ("go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153" + ,go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153) + ("go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96" + ,go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://k8s.io/apimachinery") + (synopsis "apimachinery") + (description + "Scheme, typing, encoding, decoding, and conversion packages for Kubernetes and Kubernetes-like API objects.") + (license license:asl2.0))) + +(define-public go-k8s-io-client-go-0.20.4 + (package + (name "go-k8s-io-client-go") + (version "0.20.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes/client-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0g8x2d59qm6068rql63c0mdhcjz9jsyyf7a5fdg1hyf88dvigfcx")))) + (build-system go-build-system) + (arguments '(#:import-path "k8s.io/client-go")) + (propagated-inputs + `(("go-k8s-io-apimachinery-0.20.4" ,go-k8s-io-apimachinery-0.20.4) + ("go-k8s-io-api-0.20.4" ,go-k8s-io-api-0.20.4) + ("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) + ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" + ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) + ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) + ("go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e" + ,go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e) + ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" + ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) + ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" + ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) + ("go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0" + ,go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) + ("go-github-com-peterbourgon-diskv-2.0.1+incompatible" + ,go-github-com-peterbourgon-diskv-2.0.1+incompatible) + ("go-github-com-imdario-mergo-0.3.5" + ,go-github-com-imdario-mergo-0.3.5) + ("go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7" + ,go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7) + ("go-github-com-googleapis-gnostic-0.4.1" + ,go-github-com-googleapis-gnostic-0.4.1) + ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) + ("go-github-com-google-gofuzz-1.1.0" + ,go-github-com-google-gofuzz-1.1.0) + ("go-github-com-google-go-cmp-0.5.2" + ,go-github-com-google-go-cmp-0.5.2) + ("go-github-com-golang-protobuf-1.4.3" + ,go-github-com-golang-protobuf-1.4.3) + ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" + ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) + ("go-github-com-gogo-protobuf-1.3.1" + ,go-github-com-gogo-protobuf-1.3.1) + ("go-github-com-evanphx-json-patch-4.9.0+incompatible" + ,go-github-com-evanphx-json-patch-4.9.0+incompatible) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1) + ("go-github-com-azure-go-autorest-autorest-adal-0.9.5" + ,go-github-com-azure-go-autorest-autorest-adal-0.9.5) + ("go-github-com-azure-go-autorest-autorest-0.11.1" + ,go-github-com-azure-go-autorest-autorest-0.11.1) + ("go-cloud-google-com-go-0.54.0" ,go-cloud-google-com-go-0.54.0))) + (home-page "https://k8s.io/client-go") + (synopsis "client-go") + (description + "Go clients for talking to a @url{http://kubernetes.io/,kubernetes} cluster.") + (license license:asl2.0))) + +(define-public go-k8s-io-component-base-0.20.4 + (package + (name "go-k8s-io-component-base") + (version "0.20.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes/component-base") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "02b782p63h8z3pg64i1kfgkmxwslxpyl6afkhd1agbig9zd6g7w8")))) + (build-system go-build-system) + (arguments '(#:import-path "k8s.io/component-base")) + (propagated-inputs + `(("go-k8s-io-client-go-0.20.4" ,go-k8s-io-client-go-0.20.4) + ("go-k8s-io-apimachinery-0.20.4" ,go-k8s-io-apimachinery-0.20.4) + ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" + ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) + ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) + ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) + ("go-go-uber-org-multierr-1.1.0" ,go-go-uber-org-multierr-1.1.0) + ("go-go-uber-org-atomic-1.4.0" ,go-go-uber-org-atomic-1.4.0) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) + ("go-github-com-sirupsen-logrus-1.6.0" + ,go-github-com-sirupsen-logrus-1.6.0) + ("go-github-com-prometheus-procfs-0.2.0" + ,go-github-com-prometheus-procfs-0.2.0) + ("go-github-com-prometheus-common-0.10.0" + ,go-github-com-prometheus-common-0.10.0) + ("go-github-com-prometheus-client-model-0.2.0" + ,go-github-com-prometheus-client-model-0.2.0) + ("go-github-com-prometheus-client-golang-1.7.1" + ,go-github-com-prometheus-client-golang-1.7.1) + ("go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd" + ,go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd) + ("go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369" + ,go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369) + ("go-github-com-google-go-cmp-0.5.2" + ,go-github-com-google-go-cmp-0.5.2) + ("go-github-com-go-logr-logr-0.2.0" ,go-github-com-go-logr-logr-0.2.0) + ("go-github-com-blang-semver-3.5.1+incompatible" + ,go-github-com-blang-semver-3.5.1+incompatible))) + (home-page "https://k8s.io/component-base") + (synopsis "component-base") + (description + "Implement KEP 32: @url{https://github.com/kubernetes/enhancements/blob/master/keps/sig-cluster-lifecycle/wgs/783-component-base/README.md,https://github.com/kubernetes/enhancements/blob/master/keps/sig-cluster-lifecycle/wgs/783-component-base/README.md}") + (license license:asl2.0))) + +(define-public go-k8s-io-cri-api-0.20.4 + (package + (name "go-k8s-io-cri-api") + (version "0.20.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes/cri-api") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1r98d0kv42sijdg3404xx2g5jj0zixvfagkky2zla12p68ajm4xr")))) + (build-system go-build-system) + (arguments '(#:import-path "k8s.io/cri-api")) + (propagated-inputs + `(("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" + ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) + ("go-google-golang-org-protobuf-1.25.0" + ,go-google-golang-org-protobuf-1.25.0) + ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) + ("go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a" + ,go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a) + ("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" + ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) + ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) + ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" + ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) + ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" + ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-kr-pretty-0.2.0" ,go-github-com-kr-pretty-0.2.0) + ("go-github-com-google-go-cmp-0.5.2" + ,go-github-com-google-go-cmp-0.5.2) + ("go-github-com-golang-protobuf-1.4.3" + ,go-github-com-golang-protobuf-1.4.3) + ("go-github-com-gogo-protobuf-1.3.1" + ,go-github-com-gogo-protobuf-1.3.1) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://k8s.io/cri-api") + (synopsis "Purpose") + (description + "This repository contains the definitions for the Container Runtime Interface (CRI). +CRI is a plugin interface which enables kubelet to use a wide variety of container runtimes, +without the need to recompile. CRI consists of a protocol buffers and gRPC API.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-containerd-1.5.0-rc.0 + (package + (name "go-github-com-containerd-containerd") + (version "1.5.0-rc.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/containerd") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "148z6782bj0vy3vzbhg2xf53g14llvxfsmdsqkz6x5n49rm6xr4i")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/containerd")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) + ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) + ("go-github-com-golang-protobuf-1.3.5" + ,go-github-com-golang-protobuf-1.3.5) + ("go-github-com-gogo-googleapis-1.3.2" + ,go-github-com-gogo-googleapis-1.3.2) + ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" + ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) + ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) + ("go-k8s-io-cri-api-0.20.4" ,go-k8s-io-cri-api-0.20.4) + ("go-k8s-io-component-base-0.20.4" ,go-k8s-io-component-base-0.20.4) + ("go-k8s-io-client-go-0.20.4" ,go-k8s-io-client-go-0.20.4) + ("go-k8s-io-apiserver-0.20.4" ,go-k8s-io-apiserver-0.20.4) + ("go-k8s-io-apimachinery-0.20.4" ,go-k8s-io-apimachinery-0.20.4) + ("go-k8s-io-api-0.20.4" ,go-k8s-io-api-0.20.4) + ("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) + ("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" + ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) + ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" + ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) + ("go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b" + ,go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b) + ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) + ("go-github-com-tchap-go-patricia-2.2.6+incompatible" + ,go-github-com-tchap-go-patricia-2.2.6+incompatible) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-sirupsen-logrus-1.7.0" + ,go-github-com-sirupsen-logrus-1.7.0) + ("go-github-com-prometheus-client-golang-1.7.1" + ,go-github-com-prometheus-client-golang-1.7.1) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-pelletier-go-toml-1.8.1" + ,go-github-com-pelletier-go-toml-1.8.1) + ("go-github-com-opencontainers-selinux-1.8.0" + ,go-github-com-opencontainers-selinux-1.8.0) + ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" + ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) + ("go-github-com-opencontainers-runc-1.0.0-rc93" + ,go-github-com-opencontainers-runc-1.0.0-rc93) + ("go-github-com-opencontainers-image-spec-1.0.1" + ,go-github-com-opencontainers-image-spec-1.0.1) + ("go-github-com-opencontainers-go-digest-1.0.0" + ,go-github-com-opencontainers-go-digest-1.0.0) + ("go-github-com-moby-sys-symlink-0.1.0" + ,go-github-com-moby-sys-symlink-0.1.0) + ("go-github-com-moby-sys-mountinfo-0.4.1" + ,go-github-com-moby-sys-mountinfo-0.4.1) + ("go-github-com-klauspost-compress-1.11.13" + ,go-github-com-klauspost-compress-1.11.13) + ("go-github-com-imdario-mergo-0.3.11" + ,go-github-com-imdario-mergo-0.3.11) + ("go-github-com-hashicorp-go-multierror-1.0.0" + ,go-github-com-hashicorp-go-multierror-1.0.0) + ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" + ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) + ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) + ("go-github-com-google-go-cmp-0.5.4" + ,go-github-com-google-go-cmp-0.5.4) + ("go-github-com-gogo-protobuf-1.3.2" + ,go-github-com-gogo-protobuf-1.3.2) + ("go-github-com-fsnotify-fsnotify-1.4.9" + ,go-github-com-fsnotify-fsnotify-1.4.9) + ("go-github-com-emicklei-go-restful-2.9.5+incompatible" + ,go-github-com-emicklei-go-restful-2.9.5+incompatible) + ("go-github-com-docker-go-units-0.4.0" + ,go-github-com-docker-go-units-0.4.0) + ("go-github-com-docker-go-metrics-0.0.1" + ,go-github-com-docker-go-metrics-0.0.1) + ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" + ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1) + ("go-github-com-coreos-go-systemd-v22-22.1.0" + ,go-github-com-coreos-go-systemd-v22-22.1.0) + ("go-github-com-containernetworking-plugins-0.8.6" + ,go-github-com-containernetworking-plugins-0.8.6) + ("go-github-com-containerd-zfs-0.0.0-20210324211415-d5c4544f0433" + ,go-github-com-containerd-zfs-0.0.0-20210324211415-d5c4544f0433) + ("go-github-com-containerd-typeurl-1.0.1" + ,go-github-com-containerd-typeurl-1.0.1) + ("go-github-com-containerd-ttrpc-1.0.2" + ,go-github-com-containerd-ttrpc-1.0.2) + ("go-github-com-containerd-nri-0.0.0-20210316161719-dbaa18c31c14" + ,go-github-com-containerd-nri-0.0.0-20210316161719-dbaa18c31c14) + ("go-github-com-containerd-imgcrypt-1.1.1-0.20210312161619-7ed62a527887" + ,go-github-com-containerd-imgcrypt-1.1.1-0.20210312161619-7ed62a527887) + ("go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0" + ,go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0) + ("go-github-com-containerd-go-cni-1.0.1" + ,go-github-com-containerd-go-cni-1.0.1) + ("go-github-com-containerd-fifo-0.0.0-20210316144830-115abcc95a1d" + ,go-github-com-containerd-fifo-0.0.0-20210316144830-115abcc95a1d) + ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" + ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) + ("go-github-com-containerd-console-1.0.1" + ,go-github-com-containerd-console-1.0.1) + ("go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68" + ,go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68) + ("go-github-com-containerd-btrfs-0.0.0-20210316141732-918d888fb676" + ,go-github-com-containerd-btrfs-0.0.0-20210316141732-918d888fb676) + ("go-github-com-containerd-aufs-0.0.0-20210316121734-20793ff83c97" + ,go-github-com-containerd-aufs-0.0.0-20210316121734-20793ff83c97) + ("go-github-com-microsoft-hcsshim-0.8.15" + ,go-github-com-microsoft-hcsshim-0.8.15) + ("go-github-com-microsoft-go-winio-0.4.17-0.20210324224401-5516f17a5958" + ,go-github-com-microsoft-go-winio-0.4.17-0.20210324224401-5516f17a5958))) + (home-page "https://github.com/containerd/containerd") + (synopsis "Now Recruiting") + (description + "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") + (license license:asl2.0))) + +(define-public go-github-com-containers-ocicrypt-1.1.1 + (package + (name "go-github-com-containers-ocicrypt") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containers/ocicrypt") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1l0bfk244sxnakg3my529jsw532pffkmiyk5y1iqblz4mkjfphc8")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containers/ocicrypt")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) + ("go-gopkg-in-square-go-jose-v2-2.5.1" + ,go-gopkg-in-square-go-jose-v2-2.5.1) + ("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) + ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" + ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) + ("go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2" + ,go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2) + ("go-go-mozilla-org-pkcs7-0.0.0-20200128120323-432b2356ecb1" + ,go-go-mozilla-org-pkcs7-0.0.0-20200128120323-432b2356ecb1) + ("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0) + ("go-github-com-stefanberger-go-pkcs11uri-0.0.0-20201008174630-78d3cae3a980" + ,go-github-com-stefanberger-go-pkcs11uri-0.0.0-20201008174630-78d3cae3a980) + ("go-github-com-sirupsen-logrus-1.7.0" + ,go-github-com-sirupsen-logrus-1.7.0) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-image-spec-1.0.1" + ,go-github-com-opencontainers-image-spec-1.0.1) + ("go-github-com-opencontainers-go-digest-1.0.0" + ,go-github-com-opencontainers-go-digest-1.0.0) + ("go-github-com-miekg-pkcs11-1.0.3" ,go-github-com-miekg-pkcs11-1.0.3) + ("go-github-com-google-go-cmp-0.5.2" + ,go-github-com-google-go-cmp-0.5.2) + ("go-github-com-golang-protobuf-1.4.3" + ,go-github-com-golang-protobuf-1.4.3))) + (home-page "https://github.com/containers/ocicrypt") + (synopsis "OCIcrypt Library") + (description + "The @code{ocicrypt} library is the OCI image spec implementation of container image encryption. More details of the spec can be seen in the @url{https://github.com/opencontainers/image-spec/pull/775,OCI repository}. The purpose of this library is to encode spec structures and consts in code, as well as provide a consistent implementation of image encryption across container runtimes and build tools.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-imgcrypt-1.1.1 + (package + (name "go-github-com-containerd-imgcrypt") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/imgcrypt") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "177fs3p2xzwjsffcxqqllx6wi6ghfyqbvfgn95v3q7a2993yqk4k")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/imgcrypt")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) + ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" + ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) + ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) + ("go-github-com-sirupsen-logrus-1.7.0" + ,go-github-com-sirupsen-logrus-1.7.0) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" + ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) + ("go-github-com-opencontainers-image-spec-1.0.1" + ,go-github-com-opencontainers-image-spec-1.0.1) + ("go-github-com-opencontainers-go-digest-1.0.0" + ,go-github-com-opencontainers-go-digest-1.0.0) + ("go-github-com-gogo-protobuf-1.3.2" + ,go-github-com-gogo-protobuf-1.3.2) + ("go-github-com-containers-ocicrypt-1.1.1" + ,go-github-com-containers-ocicrypt-1.1.1) + ("go-github-com-containerd-typeurl-1.0.1" + ,go-github-com-containerd-typeurl-1.0.1) + ("go-github-com-containerd-containerd-1.5.0-rc.0" + ,go-github-com-containerd-containerd-1.5.0-rc.0) + ("go-github-com-containerd-console-1.0.2" + ,go-github-com-containerd-console-1.0.2) + ("go-github-com-microsoft-hcsshim-0.8.16" + ,go-github-com-microsoft-hcsshim-0.8.16) + ("go-github-com-microsoft-go-winio-0.4.17-0.20210324224401-5516f17a5958" + ,go-github-com-microsoft-go-winio-0.4.17-0.20210324224401-5516f17a5958))) + (home-page "https://github.com/containerd/imgcrypt") + (synopsis "imgcrypt image encryption library and command line tool") + (description + "Project @code{imgcrypt} is a non-core subproject of containerd.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-nri-0.1.0 + (package + (name "go-github-com-containerd-nri") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/nri") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hqji5qa0n0fdyv9sjdl7mv3bb4fnq9i79pdzlw6m1nigrnb18qp")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/nri")) + (propagated-inputs + `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-containerd-containerd-1.5.0-beta.3" + ,go-github-com-containerd-containerd-1.5.0-beta.3))) + (home-page "https://github.com/containerd/nri") + (synopsis "nri - Node Resource Interface") + (description + "This project is a WIP for a new, CNI like, interface for managing resources on a node for Pods and Containers.") + (license license:asl2.0))) + +(define-public go-github-com-microsoft-hcsshim-0.8.15 + (package + (name "go-github-com-microsoft-hcsshim") + (version "0.8.15") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/microsoft/hcsshim") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1119qf7nklpnn9li61m8jrd5wvifhiz7qh7sfjjy04rfvbvlsi6c")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/Microsoft/hcsshim")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.30.0" ,go-google-golang-org-grpc-1.30.0) + ("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" + ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) + ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" + ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) + ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) + ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) + ("go-github-com-sirupsen-logrus-1.7.0" + ,go-github-com-sirupsen-logrus-1.7.0) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" + ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) + ("go-github-com-gogo-protobuf-1.3.2" + ,go-github-com-gogo-protobuf-1.3.2) + ("go-github-com-containerd-typeurl-1.0.1" + ,go-github-com-containerd-typeurl-1.0.1) + ("go-github-com-containerd-ttrpc-1.0.2" + ,go-github-com-containerd-ttrpc-1.0.2) + ("go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328" + ,go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328) + ("go-github-com-containerd-containerd-1.5.0-beta.1" + ,go-github-com-containerd-containerd-1.5.0-beta.1) + ("go-github-com-containerd-console-1.0.1" + ,go-github-com-containerd-console-1.0.1) + ("go-github-com-containerd-cgroups-0.0.0-20200824123100-0b889c03f102" + ,go-github-com-containerd-cgroups-0.0.0-20200824123100-0b889c03f102) + ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" + ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3))) + (home-page "https://github.com/Microsoft/hcsshim") + (synopsis "hcsshim") + (description + "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") + (license license:expat))) + +(define-public go-github-com-containerd-containerd-1.4.1 + (package + (name "go-github-com-containerd-containerd") + (version "1.4.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/containerd") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1k6dqaidnldf7kpxdszf0wn6xb8m6vaizm2aza81fri1q0051213")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/containerd")) + (home-page "https://github.com/containerd/containerd") + (synopsis "Now Recruiting") + (description + "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") + (license license:asl2.0))) + +(define-public go-golang-org-x-sys-0.0.0-20200622214017-ed371f2e16b4 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200622214017-ed371f2e16b4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "107wfy2fj6z5zps1v72j8drfrfvss1158drb0yqhz5awlbvgrpj7")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-containerd-aufs-0.0.0-20201003224125-76a6863f2989 + (package + (name "go-github-com-containerd-aufs") + (version "0.0.0-20201003224125-76a6863f2989") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/aufs") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0nsiyqjrgf3vvv6hpiljknpbkzlla1czpkq69i607f7p5jd8bgaq")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/aufs")) + (propagated-inputs + `(("go-gotest-tools-v3-3.0.2" ,go-gotest-tools-v3-3.0.2) + ("go-golang-org-x-sys-0.0.0-20200622214017-ed371f2e16b4" + ,go-golang-org-x-sys-0.0.0-20200622214017-ed371f2e16b4) + ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-image-spec-1.0.1" + ,go-github-com-opencontainers-image-spec-1.0.1) + ("go-github-com-google-go-cmp-0.3.1" + ,go-github-com-google-go-cmp-0.3.1) + ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" + ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) + ("go-github-com-containerd-typeurl-1.0.1" + ,go-github-com-containerd-typeurl-1.0.1) + ("go-github-com-containerd-ttrpc-1.0.1" + ,go-github-com-containerd-ttrpc-1.0.1) + ("go-github-com-containerd-continuity-0.0.0-20200710164510-efbc4488d8fe" + ,go-github-com-containerd-continuity-0.0.0-20200710164510-efbc4488d8fe) + ("go-github-com-containerd-containerd-1.4.1" + ,go-github-com-containerd-containerd-1.4.1) + ("go-github-com-microsoft-hcsshim-0.8.9" + ,go-github-com-microsoft-hcsshim-0.8.9))) + (home-page "https://github.com/containerd/aufs") + (synopsis "aufs snapshotter") + (description + "AUFS implementation of the snapshot interface for containerd.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68 + (package + (name "go-github-com-containerd-cgroups") + (version "0.0.0-20210114181951-8a68de567b68") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/cgroups") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0v70kxazvsizx33w9nz341hg14acg2vnbfcpx9yknmsjqdwgqnhs")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/cgroups")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9" + ,go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9) + ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) + ("go-github-com-stretchr-testify-1.2.2" + ,go-github-com-stretchr-testify-1.2.2) + ("go-github-com-sirupsen-logrus-1.7.0" + ,go-github-com-sirupsen-logrus-1.7.0) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-runtime-spec-1.0.2" + ,go-github-com-opencontainers-runtime-spec-1.0.2) + ("go-github-com-gogo-protobuf-1.3.1" + ,go-github-com-gogo-protobuf-1.3.1) + ("go-github-com-godbus-dbus-v5-5.0.3" + ,go-github-com-godbus-dbus-v5-5.0.3) + ("go-github-com-docker-go-units-0.4.0" + ,go-github-com-docker-go-units-0.4.0) + ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" + ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) + ("go-github-com-coreos-go-systemd-v22-22.1.0" + ,go-github-com-coreos-go-systemd-v22-22.1.0) + ("go-github-com-cilium-ebpf-0.2.0" ,go-github-com-cilium-ebpf-0.2.0))) + (home-page "https://github.com/containerd/cgroups") + (synopsis "cgroups") + (description + "Go package for creating, managing, inspecting, and destroying cgroups. +The resources format for settings on the cgroup uses the OCI runtime-spec found +@url{https://github.com/opencontainers/runtime-spec,here}.") + (license license:asl2.0))) + +(define-public go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3 + (package + (name "go-github-com-microsoft-go-winio") + (version "0.4.17-0.20210211115548-6eac466e5fa3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/microsoft/go-winio") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0w8fmybsl0v5azwi66qa299gwh0mlp907mrg4yaiya7s0cjmjx0d")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/Microsoft/go-winio")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" + ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) + ("go-github-com-sirupsen-logrus-1.7.0" + ,go-github-com-sirupsen-logrus-1.7.0) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) + (home-page "https://github.com/Microsoft/go-winio") + (synopsis "go-winio") + (description + "This repository contains utilities for efficiently performing Win32 IO operations in +Go. Currently, this is focused on accessing named pipes and other file handles, and +for using named pipes as a net transport.") + (license license:expat))) + +(define-public go-github-com-microsoft-hcsshim-test-0.0.0-20210227013316-43a75bb4edd3 + (package + (name "go-github-com-microsoft-hcsshim-test") + (version "0.0.0-20210227013316-43a75bb4edd3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/microsoft/hcsshim") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1j899w4hdw1mk6rfyy9qsm902iavgc49ykbjdsb02m6wszq1z0wy")))) + (build-system go-build-system) + (arguments + '(#:import-path + "github.com/Microsoft/hcsshim/test" + #:unpack-path + "github.com/Microsoft/hcsshim")) + (propagated-inputs + `(("go-k8s-io-cri-api-0.20.1" ,go-k8s-io-cri-api-0.20.1) + ("go-google-golang-org-grpc-1.30.0" ,go-google-golang-org-grpc-1.30.0) + ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" + ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) + ("go-github-com-sirupsen-logrus-1.7.0" + ,go-github-com-sirupsen-logrus-1.7.0) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39" + ,go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39) + ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" + ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) + ("go-github-com-gogo-protobuf-1.3.2" + ,go-github-com-gogo-protobuf-1.3.2) + ("go-github-com-containerd-typeurl-1.0.1" + ,go-github-com-containerd-typeurl-1.0.1) + ("go-github-com-containerd-ttrpc-1.0.2" + ,go-github-com-containerd-ttrpc-1.0.2) + ("go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328" + ,go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328) + ("go-github-com-containerd-containerd-1.5.0-beta.1" + ,go-github-com-containerd-containerd-1.5.0-beta.1) + ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" + ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3))) + (home-page "https://github.com/Microsoft/hcsshim") + (synopsis #f) + (description #f) + (license license:expat))) + +(define-public go-github-com-microsoft-go-winio-0.4.16 + (package + (name "go-github-com-microsoft-go-winio") + (version "0.4.16") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/microsoft/go-winio") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0snwbwdjs34x0my9ri77cvrbnahdiyjh2jlkzf12fy48p7fyk7pq")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/Microsoft/go-winio")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3" + ,go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3) + ("go-github-com-sirupsen-logrus-1.4.1" + ,go-github-com-sirupsen-logrus-1.4.1) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) + (home-page "https://github.com/Microsoft/go-winio") + (synopsis "go-winio") + (description + "This repository contains utilities for efficiently performing Win32 IO operations in +Go. Currently, this is focused on accessing named pipes and other file handles, and +for using named pipes as a net transport.") + (license license:expat))) + +(define-public go-github-com-azure-azure-sdk-for-go-16.2.1+incompatible + (package + (name "go-github-com-azure-azure-sdk-for-go") + (version "16.2.1+incompatible") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/Azure/azure-sdk-for-go") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1hwrspsyfs003h4f8zl8b41g3a6jpkqawqrykd1mjw9p6hs1c6k8")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/Azure/azure-sdk-for-go")) + (home-page "https://github.com/Azure/azure-sdk-for-go") + (synopsis "Azure SDK for Go") + (description + "Package sdk provides Go packages for managing and using Azure services. +") + (license license:expat))) + +(define-public go-github-com-azure-go-autorest-10.8.1+incompatible + (package + (name "go-github-com-azure-go-autorest") + (version "10.8.1+incompatible") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/Azure/go-autorest") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "122zfifj93vkix8ggkdh0dz5rmzxh4bql4nry1hws2czmzgxlkdm")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/Azure/go-autorest")) + (home-page "https://github.com/Azure/go-autorest") + (synopsis "go-autorest") + (description + "Package go-autorest provides an HTTP request client for use with Autorest-generated API client packages. +") + (license license:asl2.0))) + +(define-public go-github-com-shopify-logrus-bugsnag-0.0.0-20171204204709-577dee27f20d + (package + (name "go-github-com-shopify-logrus-bugsnag") + (version "0.0.0-20171204204709-577dee27f20d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/Shopify/logrus-bugsnag") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1l3yahk77vzgmjs7baf8g14sv33jj04rw73iind4wayg40lfgrp8")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/Shopify/logrus-bugsnag")) + (home-page "https://github.com/Shopify/logrus-bugsnag") + (synopsis "logrus-bugsnag") + (description + "logrus-bugsnag is a hook that allows @url{https://github.com/sirupsen/logrus,Logrus} to interface with @url{https://bugsnag.com,Bugsnag}.") + (license license:expat))) + +(define-public go-github-com-go-ini-ini-1.25.4 + (package + (name "go-github-com-go-ini-ini") + (version "1.25.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/go-ini/ini") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0b6cql5ripbiyrm18d6bfd1rfjnwcbskppw3d0vb80l0wy72d0c6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/go-ini/ini")) + (home-page "https://github.com/go-ini/ini") + (synopsis "INI") + (description + "Package ini provides INI file read and write functionality in Go. +") + (license license:asl2.0))) + +(define-public go-github-com-jmespath-go-jmespath-0.0.0-20160202185014-0b12d6b521d8 + (package + (name "go-github-com-jmespath-go-jmespath") + (version "0.0.0-20160202185014-0b12d6b521d8") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jmespath/go-jmespath") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1vv6hph8j6xgv7gwl9vvhlsaaqsm22sxxqmgmldi4v11783pc1ld")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/jmespath/go-jmespath")) + (home-page "https://github.com/jmespath/go-jmespath") + (synopsis "go-jmespath - A JMESPath implementation in Go") + (description + "go-jmespath is a GO implementation of JMESPath, +which is a query language for JSON. It will take a JSON +document and transform it into another JSON document +through a JMESPath expression.") + (license license:asl2.0))) + +(define-public go-github-com-aws-aws-sdk-go-1.15.11 + (package + (name "go-github-com-aws-aws-sdk-go") + (version "1.15.11") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/aws/aws-sdk-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0w960w39k3nyc17p1lvd41cls39qwg7kzfm57vfbdb4h1m5sck99")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/aws/aws-sdk-go")) + (propagated-inputs + `(("go-github-com-jmespath-go-jmespath-0.0.0-20160202185014-0b12d6b521d8" + ,go-github-com-jmespath-go-jmespath-0.0.0-20160202185014-0b12d6b521d8) + ("go-github-com-go-ini-ini-1.25.4" ,go-github-com-go-ini-ini-1.25.4))) + (home-page "https://github.com/aws/aws-sdk-go") + (synopsis "AWS SDK for Go") + (description + "Package sdk is the official AWS SDK for the Go programming language. +") + (license license:asl2.0))) + +(define-public go-github-com-beorn7-perks-0.0.0-20160804104726-4c0e84591b9a + (package + (name "go-github-com-beorn7-perks") + (version "0.0.0-20160804104726-4c0e84591b9a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/beorn7/perks") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1hrybsql68xw57brzj805xx2mghydpdiysv3gbhr7f5wlxj2514y")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/beorn7/perks")) + (home-page "https://github.com/beorn7/perks") + (synopsis "Perks for Go (golang.org)") + (description + "Perks contains the Go package quantile that computes approximate quantiles over +an unbounded data stream within low memory and CPU bounds.") + (license license:expat))) + +(define-public go-github-com-bitly-go-simplejson-0.5.0 + (package + (name "go-github-com-bitly-go-simplejson") + (version "0.5.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/bitly/go-simplejson") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0n9f9dz1jn1jx86d48569nznpjn9fmq3knn7r65xpy7jhih284jj")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/bitly/go-simplejson")) + (home-page "https://github.com/bitly/go-simplejson") + (synopsis "go-simplejson") + (description "a Go package to interact with arbitrary JSON") + (license license:expat))) + +(define-public go-github-com-bmizerany-assert-0.0.0-20160611221934-b7ed37b82869 + (package + (name "go-github-com-bmizerany-assert") + (version "0.0.0-20160611221934-b7ed37b82869") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/bmizerany/assert") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18hy1wyl9zdi7sgxafrn3m7fadh6in0rhhb8l0cvkxqzdl0jcw2s")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/bmizerany/assert")) + (home-page "https://github.com/bmizerany/assert") + (synopsis #f) + (description #f) + (license #f))) + +(define-public go-github-com-bshuster-repo-logrus-logstash-hook-0.4.1 + (package + (name "go-github-com-bshuster-repo-logrus-logstash-hook") + (version "0.4.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/bshuster-repo/logrus-logstash-hook") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1kkjzav4i3l2ahgpirysr0cqh60vdq517lpj00cc9z32zfrsw87k")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/bshuster-repo/logrus-logstash-hook")) + (home-page "https://github.com/bshuster-repo/logrus-logstash-hook") + (synopsis "Logstash hook for logrus") + (description + "Use this hook to send the logs to @url{https://www.elastic.co/products/logstash,Logstash}.") + (license license:expat))) + +(define-public go-github-com-bugsnag-bugsnag-go-0.0.0-20141110184014-b1d153021fcd + (package + (name "go-github-com-bugsnag-bugsnag-go") + (version "0.0.0-20141110184014-b1d153021fcd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/bugsnag/bugsnag-go") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "057vwigfzq42p9vkk9yhy8vkvgdmh6653rc988jmvmrkwbgvb352")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/bugsnag/bugsnag-go")) + (home-page "https://github.com/bugsnag/bugsnag-go") + (synopsis "Bugsnag error reporter for Go") + (description + "Package bugsnag captures errors in real-time and reports them to Bugsnag (@url{http://bugsnag.com,http://bugsnag.com}). +") + (license license:expat))) + +(define-public go-github-com-bugsnag-osext-0.0.0-20130617224835-0dd3f918b21b + (package + (name "go-github-com-bugsnag-osext") + (version "0.0.0-20130617224835-0dd3f918b21b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/bugsnag/osext") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "02pczqml6p1mnfdrygm3rs02g0r65qx8v1bi3x24dx8wv9dr5y23")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/bugsnag/osext")) + (home-page "https://github.com/bugsnag/osext") + (synopsis #f) + (description "Extensions to the standard \"os\" package. +") + (license license:zlib))) + +(define-public go-github-com-bugsnag-panicwrap-0.0.0-20151223152923-e2c28503fcd0 + (package + (name "go-github-com-bugsnag-panicwrap") + (version "0.0.0-20151223152923-e2c28503fcd0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/bugsnag/panicwrap") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "02z1q18s83xhfsz3n8bzv071a6n0irlad11yxppaf7015a7dl446")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/bugsnag/panicwrap")) + (home-page "https://github.com/bugsnag/panicwrap") + (synopsis "panicwrap") + (description + "The panicwrap package provides functions for capturing and handling +panics in your application. It does this by re-executing the running +application and monitoring stderr for any panics. At the same time, +stdout/stderr/etc. are set to the same values so that data is shuttled +through properly, making the existence of panicwrap mostly transparent. +") + (license license:expat))) + +(define-public go-github-com-denverdino-aliyungo-0.0.0-20190125010748-a747050bb1ba + (package + (name "go-github-com-denverdino-aliyungo") + (version "0.0.0-20190125010748-a747050bb1ba") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/denverdino/aliyungo") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0rc16ciz8gjpn36fhp0qz1ns0inlvjaz07z1qffl9ni4b49hhwkn")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/denverdino/aliyungo")) + (home-page "https://github.com/denverdino/aliyungo") + (synopsis "AliyunGo: Go SDK for Aliyun Services") + (description + "This is an unofficial Go SDK for Aliyun services. You are welcome for contribution.") + (license license:asl2.0))) + +(define-public go-github-com-dgrijalva-jwt-go-0.0.0-20170104182250-a601269ab70c + (package + (name "go-github-com-dgrijalva-jwt-go") + (version "0.0.0-20170104182250-a601269ab70c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/dgrijalva/jwt-go") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1c2dhmj95wh9cs099cr43qghgmp6bqx0mq44vha2dqq5jkbazwfv")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/dgrijalva/jwt-go")) + (home-page "https://github.com/dgrijalva/jwt-go") + (synopsis "jwt-go") + (description + "Package jwt is a Go implementation of JSON Web Tokens: @url{http://self-issued.info/docs/draft-jones-json-web-token.html,http://self-issued.info/docs/draft-jones-json-web-token.html} +") + (license license:expat))) + +(define-public go-github-com-dnaeon-go-vcr-1.0.1 + (package + (name "go-github-com-dnaeon-go-vcr") + (version "1.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/dnaeon/go-vcr") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1d0kpqr12qrqlamz5a47bp05mx49za2v6l1k7c6z71xahfmb7v2d")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/dnaeon/go-vcr")) + (home-page "https://github.com/dnaeon/go-vcr") + (synopsis "go-vcr") + (description + "@code{go-vcr} simplifies testing by recording your HTTP interactions and +replaying them in future runs in order to provide fast, deterministic +and accurate testing of your code.") + (license license:bsd-2))) + +(define-public go-github-com-docker-go-metrics-0.0.0-20180209012529-399ea8c73916 + (package + (name "go-github-com-docker-go-metrics") + (version "0.0.0-20180209012529-399ea8c73916") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/docker/go-metrics") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0najfy92fq05b330cnjk5b326yi7dnnmvzfk6g5lsa1fci78yzw4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/docker/go-metrics")) + (home-page "https://github.com/docker/go-metrics") + (synopsis "go-metrics") + (description + "This package is small wrapper around the prometheus go client to help enforce convention and best practices for metrics collection in Docker projects.") + (license (list license:asl2.0 license:cc-by-sa4.0)))) + +(define-public go-github-com-docker-libtrust-0.0.0-20150114040149-fa567046d9b1 + (package + (name "go-github-com-docker-libtrust") + (version "0.0.0-20150114040149-fa567046d9b1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/docker/libtrust") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1121c7fxarzyr3fvxyzfw8qs4hb8k92dsix26s5vxncgszl5svf2")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/docker/libtrust")) + (home-page "https://github.com/docker/libtrust") + (synopsis "libtrust") + (description + "Package libtrust provides an interface for managing authentication and +authorization using public key cryptography. Authentication is handled +using the identity attached to the public key and verified through TLS +x509 certificates, a key challenge, or signature. Authorization and +access control is managed through a trust graph distributed between +both remote trust servers and locally cached and managed data. +") + (license license:asl2.0))) + +(define-public go-github-com-garyburd-redigo-0.0.0-20150301180006-535138d7bcd7 + (package + (name "go-github-com-garyburd-redigo") + (version "0.0.0-20150301180006-535138d7bcd7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/garyburd/redigo") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1m7nc1gvv5yqnq8ii75f33485il6y6prf8gxl97dimsw94qccc5v")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/garyburd/redigo")) + (home-page "https://github.com/garyburd/redigo") + (synopsis #f) + (description + "Future development of Redigo is at +@url{https://github.com/gomodule/redigo,github.com/gomodule/redigo}. Please submit +issues at gomodule/redigo. The repository at github.com/garyburd/redigo is a +read-only snapshot.") + (license license:asl2.0))) + +(define-public go-github-com-gorilla-handlers-0.0.0-20150720190736-60c7bfde3e33 + (package + (name "go-github-com-gorilla-handlers") + (version "0.0.0-20150720190736-60c7bfde3e33") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gorilla/handlers") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0zvpxvybdn8yqpk2cxs134ip9wxmw6c1s0kw9nahf7qw1kfyzycm")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/gorilla/handlers")) + (home-page "https://github.com/gorilla/handlers") + (synopsis "gorilla/handlers") + (description + "Package handlers is a collection of handlers (aka \"HTTP middleware\") for use +with Go's net/http package (or any framework supporting http.Handler). +") + (license license:bsd-2))) + +(define-public go-github-com-gorilla-mux-1.7.2 + (package + (name "go-github-com-gorilla-mux") + (version "1.7.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gorilla/mux") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1gjcbgpdl3snc38i8sj8k6sqbv3inyrxqyggbqvr4jfx2phv2zy6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/gorilla/mux")) + (home-page "https://github.com/gorilla/mux") + (synopsis "gorilla/mux") + (description "Package mux implements a request router and dispatcher. +") + (license license:bsd-3))) + +(define-public go-github-com-jmespath-go-jmespath-0.0.0-20160803190731-bd40a432e4c7 + (package + (name "go-github-com-jmespath-go-jmespath") + (version "0.0.0-20160803190731-bd40a432e4c7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jmespath/go-jmespath") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1kgzwiyqn24ba9kgpjxlq1h746gnyby0psbjj9mp2yx0h1i0kc4z")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/jmespath/go-jmespath")) + (home-page "https://github.com/jmespath/go-jmespath") + (synopsis "go-jmespath - A JMESPath implementation in Go") + (description + "go-jmespath is a GO implementation of JMESPath, +which is a query language for JSON. It will take a JSON +document and transform it into another JSON document +through a JMESPath expression.") + (license license:asl2.0))) + +(define-public go-github-com-marstr-guid-1.1.0 + (package + (name "go-github-com-marstr-guid") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/marstr/guid") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "081qrar6wwpmb2pq3swv4byh73r9riyhl2dwv0902d8jg3kwricm")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/marstr/guid")) + (home-page "https://github.com/marstr/guid") + (synopsis "Guid") + (description + "Globally unique identifiers offer a quick means of generating non-colliding values across a distributed system. For this implemenation, @url{http://ietf.org/rfc/rfc4122.txt,RFC 4122} governs the desired behavior.") + (license license:expat))) + +(define-public go-github-com-mitchellh-osext-0.0.0-20151018003038-5e2d6d41470f + (package + (name "go-github-com-mitchellh-osext") + (version "0.0.0-20151018003038-5e2d6d41470f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mitchellh/osext") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0j635c1cx7crs5wlirlk713l36x70pnlmqrzd3x3bjgnjg194jrk")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mitchellh/osext")) + (home-page "https://github.com/mitchellh/osext") + (synopsis "osext") + (description "Extensions to the standard \"os\" package. +") + (license license:zlib))) + +(define-public go-github-com-ncw-swift-1.0.47 + (package + (name "go-github-com-ncw-swift") + (version "1.0.47") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/ncw/swift") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wxz4lvy6pjabghq8inby2fyh58ysclayccziawc8fd7a67kh4cd")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/ncw/swift")) + (home-page "https://github.com/ncw/swift") + (synopsis "Swift") + (description + "Package swift provides an easy to use interface to Swift / Openstack Object Storage / Rackspace Cloud Files +") + (license license:expat))) + +(define-public go-github-com-opencontainers-go-digest-0.0.0-20170106003457-a6d0ee40d420 + (package + (name "go-github-com-opencontainers-go-digest") + (version "0.0.0-20170106003457-a6d0ee40d420") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/go-digest") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1paz3na2xkhi10p5bk7f7gbh5yykfgr9f9i2gcc13rb461yq6fmg")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/go-digest")) + (home-page "https://github.com/opencontainers/go-digest") + (synopsis "go-digest") + (description + "Package digest provides a generalized type to opaquely represent message +digests and their operations within the registry. The Digest type is +designed to serve as a flexible identifier in a content-addressable system. +More importantly, it provides tools and wrappers to work with +hash.Hash-based digests with little effort. +") + (license (list license:asl2.0 license:cc-by-sa4.0)))) + +(define-public go-github-com-opencontainers-image-spec-1.0.0 + (package + (name "go-github-com-opencontainers-image-spec") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/image-spec") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "04ax2pylpwzsa5pw6wk94shdpdmfyqf70ys0idhpxsygzc2m5l23")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/image-spec")) + (home-page "https://github.com/opencontainers/image-spec") + (synopsis "OCI Image Format Specification") + (description + "The OCI Image Format project creates and maintains the software shipping container image format spec (OCI Image Format).") + (license license:asl2.0))) + +(define-public go-github-com-prometheus-client-golang-0.0.0-20180209125602-c332b6f63c06 + (package + (name "go-github-com-prometheus-client-golang") + (version "0.0.0-20180209125602-c332b6f63c06") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/client_golang") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "068r759wnh1lxcjhj89z4bqbpl7ydcx2drn2967ygw80nyab30pq")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/client_golang")) + (home-page "https://github.com/prometheus/client_golang") + (synopsis "Prometheus Go client library") + (description + "This is the @url{http://golang.org,Go} client library for +@url{http://prometheus.io,Prometheus}. It has two separate parts, one for +instrumenting application code, and one for creating clients that talk to the +Prometheus HTTP API.") + (license license:asl2.0))) + +(define-public go-github-com-prometheus-client-model-0.0.0-20171117100541-99fa1f4be8e5 + (package + (name "go-github-com-prometheus-client-model") + (version "0.0.0-20171117100541-99fa1f4be8e5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/client_model") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19y4ywsivhpxj7ikf2j0gm9k3cmyw37qcbfi78n526jxcc7kw998")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/client_model")) + (home-page "https://github.com/prometheus/client_model") + (synopsis "Deprecation note") + (description + "This repository used to contain the code that defined both +the data model and the exposition format of Prometheus metrics.") + (license license:asl2.0))) + +(define-public go-github-com-prometheus-common-0.0.0-20180110214958-89604d197083 + (package + (name "go-github-com-prometheus-common") + (version "0.0.0-20180110214958-89604d197083") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/common") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "169rdlaf2mk9z4fydz7ajmngyhmf3q1lk96yhvx46bn986x5xkyn")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/common")) + (home-page "https://github.com/prometheus/common") + (synopsis "Common") + (description + "This repository contains Go libraries that are shared across Prometheus +components and libraries. They are considered internal to Prometheus, without +any stability guarantees for external usage.") + (license license:asl2.0))) + +(define-public go-github-com-gopherjs-gopherjs-0.0.0-20181017120253-0766667cb4d1 + (package + (name "go-github-com-gopherjs-gopherjs") + (version "0.0.0-20181017120253-0766667cb4d1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gopherjs/gopherjs") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "13pfc9sxiwjky2lm1xb3i3lcisn8p6mgjk2d927l7r92ysph8dmw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/gopherjs/gopherjs")) + (home-page "https://github.com/gopherjs/gopherjs") + (synopsis "GopherJS - A compiler from Go to JavaScript") + (description + "GopherJS compiles Go code (@url{https://golang.org/,golang.org}) to pure JavaScript code. Its main purpose is to give you the opportunity to write front-end code in Go which will still run in all browsers.") + (license license:bsd-2))) + +(define-public go-github-com-jtolds-gls-4.20.0+incompatible + (package + (name "go-github-com-jtolds-gls") + (version "4.20.0+incompatible") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jtolio/gls") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1k7xd2q2ysv2xsh373qs801v6f359240kx0vrl0ydh7731lngvk6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/jtolds/gls")) + (home-page "https://github.com/jtolds/gls") + (synopsis "gls") + (description "Package gls implements goroutine-local storage. +") + (license license:expat))) + +(define-public go-github-com-smartystreets-assertions-0.0.0-20180927180507-b2de0cb4f26d + (package + (name "go-github-com-smartystreets-assertions") + (version "0.0.0-20180927180507-b2de0cb4f26d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/smartystreets/assertions") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1i7ldgavgl35c7gk25p7bvdr282ckng090zr4ch9mk1705akx09y")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/smartystreets/assertions")) + (home-page "https://github.com/smartystreets/assertions") + (synopsis #f) + (description + "Package assertions contains the implementations for all assertions which +are referenced in goconvey's `convey` package +(github.com/smartystreets/goconvey/convey) and gunit (github.com/smartystreets/gunit) +for use with the So(...) method. +They can also be used in traditional Go test functions and even in +applications. +") + (license license:expat))) + +(define-public go-golang-org-x-tools-0.0.0-20190328211700-ab21143f2384 + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20190328211700-ab21143f2384") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "15fk0psk53pplpyghz55bhay0kvsv5rikmn5hwgjnnyxq9vfy178")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-github-com-smartystreets-goconvey-0.0.0-20190330032615-68dc04aab96a + (package + (name "go-github-com-smartystreets-goconvey") + (version "0.0.0-20190330032615-68dc04aab96a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/smartystreets/goconvey") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1kas5v95fzhr88hg4rjy0vp03y4pzvy3pwwgkfz2yhn5nlj29nk6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/smartystreets/goconvey")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20190328211700-ab21143f2384" + ,go-golang-org-x-tools-0.0.0-20190328211700-ab21143f2384) + ("go-github-com-smartystreets-assertions-0.0.0-20180927180507-b2de0cb4f26d" + ,go-github-com-smartystreets-assertions-0.0.0-20180927180507-b2de0cb4f26d) + ("go-github-com-jtolds-gls-4.20.0+incompatible" + ,go-github-com-jtolds-gls-4.20.0+incompatible) + ("go-github-com-gopherjs-gopherjs-0.0.0-20181017120253-0766667cb4d1" + ,go-github-com-gopherjs-gopherjs-0.0.0-20181017120253-0766667cb4d1))) + (home-page "https://github.com/smartystreets/goconvey") + (synopsis "GoConvey is awesome Go testing") + (description + "This executable provides an HTTP server that watches for file system changes +to .go files within the working directory (and all nested go packages). +Navigating to the configured host and port in a web browser will display the +latest results of running `go test` in each go package. +") + (license license:expat))) + +(define-public go-github-com-yvasiyarov-go-metrics-0.0.0-20140926110328-57bccd1ccd43 + (package + (name "go-github-com-yvasiyarov-go-metrics") + (version "0.0.0-20140926110328-57bccd1ccd43") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/yvasiyarov/go-metrics") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1rwlq9k3iii54da90fjivi13zacx2h6znppkzncvl653xhjpm26g")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/yvasiyarov/go-metrics")) + (home-page "https://github.com/yvasiyarov/go-metrics") + (synopsis "go-metrics") + (description "Go port of Coda Hale's Metrics library +") + (license #f))) + +(define-public go-github-com-yvasiyarov-gorelic-0.0.0-20141212073537-a9bba5b9ab50 + (package + (name "go-github-com-yvasiyarov-gorelic") + (version "0.0.0-20141212073537-a9bba5b9ab50") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/yvasiyarov/gorelic") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1niwv40k9rx2g5h6wddci9ykf1sm1d5ml9mjgdjd1ahm4wfq08gn")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/yvasiyarov/gorelic")) + (home-page "https://github.com/yvasiyarov/gorelic") + (synopsis "GoRelic is deprecated in favour of") + (description + "Package gorelic is an New Relic agent implementation for Go runtime. It collect a lot of metrics about Go scheduler, garbage collector and memory allocator and send them to NewRelic. +") + (license license:bsd-2))) + +(define-public go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20140908184405-b21fdbd4370f + (package + (name "go-github-com-yvasiyarov-newrelic-platform-go") + (version "0.0.0-20140908184405-b21fdbd4370f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/yvasiyarov/newrelic_platform_go") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0a4yncdxwsy0rn3bhkadfysm817b7ndzmh9fkg8hh92pnw5aabzw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/yvasiyarov/newrelic_platform_go")) + (home-page "https://github.com/yvasiyarov/newrelic_platform_go") + (synopsis "New Relic Platform Agent SDK for Go(golang)") + (description + "Package newrelic_platform_go is New Relic Platform Agent SDK for Go language. +") + (license license:bsd-2))) + +(define-public go-golang-org-x-net-0.0.0-20190619014844-b5b0513f8c1b + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190619014844-b5b0513f8c1b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0sr4gbiq09izkmm6hcmfnia6lz6ngzzqjbwlrzh7jifbzyck53wz")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20190602015325-4c4f7f33c9ed + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190602015325-4c4f7f33c9ed") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "191001bxqyc3xfs46nnqmm7jdk0r73vk7a4zqngfl7zwjv9smwsq")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-google-golang-org-api-0.0.0-20160322025152-9bf6e6e569ff + (package + (name "go-google-golang-org-api") + (version "0.0.0-20160322025152-9bf6e6e569ff") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-api-go-client") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "02zn0zr4jrkdnxhxa0h3vm30j27bsc4lcswrffilkrafbspjsrxz")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/api")) + (home-page "https://google.golang.org/api") + (synopsis "Google APIs Client Library for Go") + (description + "Package api is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of +sub-packages. +") + (license license:bsd-3))) + +(define-public go-google-golang-org-cloud-0.0.0-20151119220103-975617b05ea8 + (package + (name "go-google-golang-org-cloud") + (version "0.0.0-20151119220103-975617b05ea8") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-cloud-go") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "156jhn1kakr98jfk830y4yr8lhisdj6qs38ypa42ddmgza9qcmdd")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/cloud")) + (home-page "https://google.golang.org/cloud") + (synopsis "Google Cloud Client Libraries for Go") + (description + "Package cloud is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +of sub-packages. +") + (license license:asl2.0))) + +(define-public go-google-golang-org-grpc-0.0.0-20160317175043-d3ddb4469d5a + (package + (name "go-google-golang-org-grpc") + (version "0.0.0-20160317175043-d3ddb4469d5a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0p45by0s66ragvx9hs8gkz1k1gy8456y794b5zspa0b86y2b53w9")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-gopkg-in-check-v1-1.0.0-20141024133853-64131543e789 + (package + (name "go-gopkg-in-check-v1") + (version "1.0.0-20141024133853-64131543e789") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/check.v1") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "01sz40asq0zwf6j7q2hww33wr1cflglngq8xazw466c9d1f9kyyh")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) + (home-page "https://gopkg.in/check.v1") + (synopsis "Instructions") + (description + "Package check is a rich testing extension for Go's testing package. +") + (license license:bsd-2))) + +(define-public go-github-com-docker-distribution-0.0.0-20190905152932-14b96e55d84c + (package + (name "go-github-com-docker-distribution") + (version "0.0.0-20190905152932-14b96e55d84c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/distribution/distribution") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0jd7ccjy7ahznsh6hf9dhqbgn9glwc0db9g5nv8n6sys5d1jdni9")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/docker/distribution")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) + ("go-gopkg-in-check-v1-1.0.0-20141024133853-64131543e789" + ,go-gopkg-in-check-v1-1.0.0-20141024133853-64131543e789) + ("go-google-golang-org-grpc-0.0.0-20160317175043-d3ddb4469d5a" + ,go-google-golang-org-grpc-0.0.0-20160317175043-d3ddb4469d5a) + ("go-google-golang-org-cloud-0.0.0-20151119220103-975617b05ea8" + ,go-google-golang-org-cloud-0.0.0-20151119220103-975617b05ea8) + ("go-google-golang-org-api-0.0.0-20160322025152-9bf6e6e569ff" + ,go-google-golang-org-api-0.0.0-20160322025152-9bf6e6e569ff) + ("go-golang-org-x-sys-0.0.0-20190602015325-4c4f7f33c9ed" + ,go-golang-org-x-sys-0.0.0-20190602015325-4c4f7f33c9ed) + ("go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45" + ,go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45) + ("go-golang-org-x-net-0.0.0-20190619014844-b5b0513f8c1b" + ,go-golang-org-x-net-0.0.0-20190619014844-b5b0513f8c1b) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2) + ("go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20140908184405-b21fdbd4370f" + ,go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20140908184405-b21fdbd4370f) + ("go-github-com-yvasiyarov-gorelic-0.0.0-20141212073537-a9bba5b9ab50" + ,go-github-com-yvasiyarov-gorelic-0.0.0-20141212073537-a9bba5b9ab50) + ("go-github-com-yvasiyarov-go-metrics-0.0.0-20140926110328-57bccd1ccd43" + ,go-github-com-yvasiyarov-go-metrics-0.0.0-20140926110328-57bccd1ccd43) + ("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0) + ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) + ("go-github-com-spf13-cobra-0.0.3" ,go-github-com-spf13-cobra-0.0.3) + ("go-github-com-smartystreets-goconvey-0.0.0-20190330032615-68dc04aab96a" + ,go-github-com-smartystreets-goconvey-0.0.0-20190330032615-68dc04aab96a) + ("go-github-com-sirupsen-logrus-1.4.2" + ,go-github-com-sirupsen-logrus-1.4.2) + ("go-github-com-satori-go-uuid-1.2.0" + ,go-github-com-satori-go-uuid-1.2.0) + ("go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7" + ,go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7) + ("go-github-com-prometheus-common-0.0.0-20180110214958-89604d197083" + ,go-github-com-prometheus-common-0.0.0-20180110214958-89604d197083) + ("go-github-com-prometheus-client-model-0.0.0-20171117100541-99fa1f4be8e5" + ,go-github-com-prometheus-client-model-0.0.0-20171117100541-99fa1f4be8e5) + ("go-github-com-prometheus-client-golang-0.0.0-20180209125602-c332b6f63c06" + ,go-github-com-prometheus-client-golang-0.0.0-20180209125602-c332b6f63c06) + ("go-github-com-opencontainers-image-spec-1.0.0" + ,go-github-com-opencontainers-image-spec-1.0.0) + ("go-github-com-opencontainers-go-digest-0.0.0-20170106003457-a6d0ee40d420" + ,go-github-com-opencontainers-go-digest-0.0.0-20170106003457-a6d0ee40d420) + ("go-github-com-ncw-swift-1.0.47" ,go-github-com-ncw-swift-1.0.47) + ("go-github-com-mitchellh-osext-0.0.0-20151018003038-5e2d6d41470f" + ,go-github-com-mitchellh-osext-0.0.0-20151018003038-5e2d6d41470f) + ("go-github-com-mitchellh-mapstructure-1.1.2" + ,go-github-com-mitchellh-mapstructure-1.1.2) + ("go-github-com-matttproud-golang-protobuf-extensions-1.0.1" + ,go-github-com-matttproud-golang-protobuf-extensions-1.0.1) + ("go-github-com-marstr-guid-1.1.0" ,go-github-com-marstr-guid-1.1.0) + ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) + ("go-github-com-jmespath-go-jmespath-0.0.0-20160803190731-bd40a432e4c7" + ,go-github-com-jmespath-go-jmespath-0.0.0-20160803190731-bd40a432e4c7) + ("go-github-com-inconshreveable-mousetrap-1.0.0" + ,go-github-com-inconshreveable-mousetrap-1.0.0) + ("go-github-com-gorilla-mux-1.7.2" ,go-github-com-gorilla-mux-1.7.2) + ("go-github-com-gorilla-handlers-0.0.0-20150720190736-60c7bfde3e33" + ,go-github-com-gorilla-handlers-0.0.0-20150720190736-60c7bfde3e33) + ("go-github-com-garyburd-redigo-0.0.0-20150301180006-535138d7bcd7" + ,go-github-com-garyburd-redigo-0.0.0-20150301180006-535138d7bcd7) + ("go-github-com-docker-libtrust-0.0.0-20150114040149-fa567046d9b1" + ,go-github-com-docker-libtrust-0.0.0-20150114040149-fa567046d9b1) + ("go-github-com-docker-go-metrics-0.0.0-20180209012529-399ea8c73916" + ,go-github-com-docker-go-metrics-0.0.0-20180209012529-399ea8c73916) + ("go-github-com-dnaeon-go-vcr-1.0.1" + ,go-github-com-dnaeon-go-vcr-1.0.1) + ("go-github-com-dgrijalva-jwt-go-0.0.0-20170104182250-a601269ab70c" + ,go-github-com-dgrijalva-jwt-go-0.0.0-20170104182250-a601269ab70c) + ("go-github-com-denverdino-aliyungo-0.0.0-20190125010748-a747050bb1ba" + ,go-github-com-denverdino-aliyungo-0.0.0-20190125010748-a747050bb1ba) + ("go-github-com-bugsnag-panicwrap-0.0.0-20151223152923-e2c28503fcd0" + ,go-github-com-bugsnag-panicwrap-0.0.0-20151223152923-e2c28503fcd0) + ("go-github-com-bugsnag-osext-0.0.0-20130617224835-0dd3f918b21b" + ,go-github-com-bugsnag-osext-0.0.0-20130617224835-0dd3f918b21b) + ("go-github-com-bugsnag-bugsnag-go-0.0.0-20141110184014-b1d153021fcd" + ,go-github-com-bugsnag-bugsnag-go-0.0.0-20141110184014-b1d153021fcd) + ("go-github-com-bshuster-repo-logrus-logstash-hook-0.4.1" + ,go-github-com-bshuster-repo-logrus-logstash-hook-0.4.1) + ("go-github-com-bmizerany-assert-0.0.0-20160611221934-b7ed37b82869" + ,go-github-com-bmizerany-assert-0.0.0-20160611221934-b7ed37b82869) + ("go-github-com-bitly-go-simplejson-0.5.0" + ,go-github-com-bitly-go-simplejson-0.5.0) + ("go-github-com-beorn7-perks-0.0.0-20160804104726-4c0e84591b9a" + ,go-github-com-beorn7-perks-0.0.0-20160804104726-4c0e84591b9a) + ("go-github-com-aws-aws-sdk-go-1.15.11" + ,go-github-com-aws-aws-sdk-go-1.15.11) + ("go-github-com-shopify-logrus-bugsnag-0.0.0-20171204204709-577dee27f20d" + ,go-github-com-shopify-logrus-bugsnag-0.0.0-20171204204709-577dee27f20d) + ("go-github-com-azure-go-autorest-10.8.1+incompatible" + ,go-github-com-azure-go-autorest-10.8.1+incompatible) + ("go-github-com-azure-azure-sdk-for-go-16.2.1+incompatible" + ,go-github-com-azure-azure-sdk-for-go-16.2.1+incompatible))) + (home-page "https://github.com/docker/distribution") + (synopsis "Distribution") + (description + "Package distribution will define the interfaces for the components of +docker distribution. The goal is to allow users to reliably package, ship +and store content related to docker images. +") + (license license:asl2.0))) + +(define-public go-github-com-gogo-protobuf-1.2.2-0.20190723190241-65acae22fc9d + (package + (name "go-github-com-gogo-protobuf") + (version "1.2.2-0.20190723190241-65acae22fc9d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gogo/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0700alky9z0g9akhrzn20wf4jr1600d0clhs32sm8chnlbvidy46")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/gogo/protobuf")) + (propagated-inputs + `(("go-github-com-kisielk-gotool-1.0.0" + ,go-github-com-kisielk-gotool-1.0.0) + ("go-github-com-kisielk-errcheck-1.2.0" + ,go-github-com-kisielk-errcheck-1.2.0))) + (home-page "https://github.com/gogo/protobuf") + (synopsis "Protocol Buffers for Go with Gadgets") + (description + "gogoprotobuf is a fork of @url{https://github.com/golang/protobuf,golang/protobuf} with extra code generation features.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20190813064441-fde4db37ae7a + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190813064441-fde4db37ae7a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "16k4w4pzziq1kln18k5fg01qgk4hpzb5xsm7175kaky6d6gwyhg3")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-k8s-io-cri-api-0.17.3 + (package + (name "go-k8s-io-cri-api") + (version "0.17.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes/cri-api") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "047wg80q4cb9qikpj0zp2kzcgp599cdqwiqlravfy86bga4r3fgf")))) + (build-system go-build-system) + (arguments '(#:import-path "k8s.io/cri-api")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190813064441-fde4db37ae7a" + ,go-golang-org-x-sys-0.0.0-20190813064441-fde4db37ae7a) + ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) + ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" + ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) + ("go-google-golang-org-grpc-1.23.1" ,go-google-golang-org-grpc-1.23.1) + ("go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873" + ,go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873) + ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) + ("go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9" + ,go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9) + ("go-github-com-stretchr-testify-1.4.0" + ,go-github-com-stretchr-testify-1.4.0) + ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2) + ("go-github-com-gogo-protobuf-1.2.2-0.20190723190241-65acae22fc9d" + ,go-github-com-gogo-protobuf-1.2.2-0.20190723190241-65acae22fc9d) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://k8s.io/cri-api") + (synopsis "Purpose") + (description + "This repository contains the definitions for the Container Runtime Interface (CRI). +CRI is a plugin interface which enables kubelet to use a wide variety of container runtimes, +without the need to recompile. CRI consists of a protocol buffers and gRPC API.") + (license license:asl2.0))) + +(define-public go-github-com-microsoft-hcsshim-test-0.0.0-20201218223536-d3e5debf77da + (package + (name "go-github-com-microsoft-hcsshim-test") + (version "0.0.0-20201218223536-d3e5debf77da") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/microsoft/hcsshim") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0k57knv8zrf32hp7rpv1km9j772w6752pfvdbpd3l711ism48c84")))) + (build-system go-build-system) + (arguments + '(#:import-path + "github.com/Microsoft/hcsshim/test" + #:unpack-path + "github.com/Microsoft/hcsshim")) + (propagated-inputs + `(("go-k8s-io-cri-api-0.17.3" ,go-k8s-io-cri-api-0.17.3) + ("go-google-golang-org-grpc-1.23.1" ,go-google-golang-org-grpc-1.23.1) + ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" + ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) + ("go-go-etcd-io-bbolt-1.3.3" ,go-go-etcd-io-bbolt-1.3.3) + ("go-github-com-xeipuuv-gojsonschema-0.0.0-20180618132009-1d523034197f" + ,go-github-com-xeipuuv-gojsonschema-0.0.0-20180618132009-1d523034197f) + ("go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415" + ,go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415) + ("go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f" + ,go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f) + ("go-github-com-syndtr-gocapability-0.0.0-20170704070218-db04d3cc01c8" + ,go-github-com-syndtr-gocapability-0.0.0-20170704070218-db04d3cc01c8) + ("go-github-com-sirupsen-logrus-1.4.2" + ,go-github-com-sirupsen-logrus-1.4.2) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39" + ,go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39) + ("go-github-com-opencontainers-runtime-spec-1.0.2" + ,go-github-com-opencontainers-runtime-spec-1.0.2) + ("go-github-com-imdario-mergo-0.3.8" + ,go-github-com-imdario-mergo-0.3.8) + ("go-github-com-hashicorp-go-multierror-0.0.0-20161216184304-ed905158d874" + ,go-github-com-hashicorp-go-multierror-0.0.0-20161216184304-ed905158d874) + ("go-github-com-hashicorp-errwrap-0.0.0-20141028054710-7554cd9344ce" + ,go-github-com-hashicorp-errwrap-0.0.0-20141028054710-7554cd9344ce) + ("go-github-com-gogo-protobuf-1.3.1" + ,go-github-com-gogo-protobuf-1.3.1) + ("go-github-com-gogo-googleapis-1.2.0" + ,go-github-com-gogo-googleapis-1.2.0) + ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" + ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) + ("go-github-com-docker-distribution-0.0.0-20190905152932-14b96e55d84c" + ,go-github-com-docker-distribution-0.0.0-20190905152932-14b96e55d84c) + ("go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd" + ,go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd) + ("go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de" + ,go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de) + ("go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3" + ,go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3) + ("go-github-com-containerd-containerd-1.3.2" + ,go-github-com-containerd-containerd-1.3.2) + ("go-github-com-blang-semver-3.1.0+incompatible" + ,go-github-com-blang-semver-3.1.0+incompatible) + ("go-github-com-microsoft-go-winio-0.4.16-0.20201130162521-d1ffc52c7331" + ,go-github-com-microsoft-go-winio-0.4.16-0.20201130162521-d1ffc52c7331))) + (home-page "https://github.com/Microsoft/hcsshim") + (synopsis #f) + (description #f) + (license license:expat))) + +(define-public go-github-com-containerd-aufs-0.0.0-20200908144142-dab0cbea06f4 + (package + (name "go-github-com-containerd-aufs") + (version "0.0.0-20200908144142-dab0cbea06f4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/aufs") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "060iqypyrdmww0ykip1zqi5f2fl1il55vndgdn5aq5zj6530mgsn")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/aufs")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) + ("go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449" + ,go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449) + ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" + ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) + ("go-go-etcd-io-bbolt-1.3.3" ,go-go-etcd-io-bbolt-1.3.3) + ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) + ("go-github-com-opencontainers-runc-1.0.0-rc9" + ,go-github-com-opencontainers-runc-1.0.0-rc9) + ("go-github-com-opencontainers-image-spec-1.0.1" + ,go-github-com-opencontainers-image-spec-1.0.1) + ("go-github-com-opencontainers-go-digest-1.0.0-rc1" + ,go-github-com-opencontainers-go-digest-1.0.0-rc1) + ("go-github-com-google-go-cmp-0.3.1" + ,go-github-com-google-go-cmp-0.3.1) + ("go-github-com-gogo-protobuf-1.3.1" + ,go-github-com-gogo-protobuf-1.3.1) + ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" + ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) + ("go-github-com-containerd-typeurl-0.0.0-20190911142611-5eb25027c9fd" + ,go-github-com-containerd-typeurl-0.0.0-20190911142611-5eb25027c9fd) + ("go-github-com-containerd-ttrpc-0.0.0-20191028202541-4f1b8fe65a5c" + ,go-github-com-containerd-ttrpc-0.0.0-20191028202541-4f1b8fe65a5c) + ("go-github-com-containerd-continuity-0.0.0-20191127005431-f65d91d395eb" + ,go-github-com-containerd-continuity-0.0.0-20191127005431-f65d91d395eb) + ("go-github-com-containerd-containerd-1.3.1-0.20191213020239-082f7e3aed57" + ,go-github-com-containerd-containerd-1.3.1-0.20191213020239-082f7e3aed57) + ("go-github-com-microsoft-hcsshim-0.8.7" + ,go-github-com-microsoft-hcsshim-0.8.7))) + (home-page "https://github.com/containerd/aufs") + (synopsis "aufs snapshotter") + (description + "AUFS implementation of the snapshot interface for containerd.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-btrfs-0.0.0-20201111183144-404b9149801e + (package + (name "go-github-com-containerd-btrfs") + (version "0.0.0-20201111183144-404b9149801e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/btrfs") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "10aakvy9njaly2mfwi1cvys8dxjn27mnd7wnpnmxh8pxb7g2svag")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/btrfs")) + (propagated-inputs + `(("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) + (home-page "https://github.com/containerd/btrfs") + (synopsis "go-btrfs") + (description + "Package btrfs provides bindings for working with btrfs partitions from Go. +") + (license license:asl2.0))) + +(define-public go-github-com-containerd-cgroups-0.0.0-20200824123100-0b889c03f102 + (package + (name "go-github-com-containerd-cgroups") + (version "0.0.0-20200824123100-0b889c03f102") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/cgroups") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1zjmphy2df9y20hzrmwxfpyyvz8vb5lazr4pjyx3c5a5x0j4rv8d")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/cgroups")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9" + ,go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9) + ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) + ("go-github-com-stretchr-testify-1.2.2" + ,go-github-com-stretchr-testify-1.2.2) + ("go-github-com-sirupsen-logrus-1.6.0" + ,go-github-com-sirupsen-logrus-1.6.0) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-runtime-spec-1.0.2" + ,go-github-com-opencontainers-runtime-spec-1.0.2) + ("go-github-com-gogo-protobuf-1.3.1" + ,go-github-com-gogo-protobuf-1.3.1) + ("go-github-com-godbus-dbus-v5-5.0.3" + ,go-github-com-godbus-dbus-v5-5.0.3) + ("go-github-com-docker-go-units-0.4.0" + ,go-github-com-docker-go-units-0.4.0) + ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" + ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) + ("go-github-com-coreos-go-systemd-v22-22.0.0" + ,go-github-com-coreos-go-systemd-v22-22.0.0) + ("go-github-com-cilium-ebpf-0.0.0-20200702112145-1c8d4c9ef775" + ,go-github-com-cilium-ebpf-0.0.0-20200702112145-1c8d4c9ef775))) + (home-page "https://github.com/containerd/cgroups") + (synopsis "cgroups") + (description + "Go package for creating, managing, inspecting, and destroying cgroups. +The resources format for settings on the cgroup uses the OCI runtime-spec found +@url{https://github.com/opencontainers/runtime-spec,here}.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-continuity-0.0.0-20201208142359-180525291bb7 + (package + (name "go-github-com-containerd-continuity") + (version "0.0.0-20201208142359-180525291bb7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/continuity") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1di4pspqfwfafdni0in84kzyn8h1fhqb6vh4i0g5skqmrc4sxf4h")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/continuity")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3" + ,go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3) + ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" + ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) + ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" + ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) + ("go-github-com-stretchr-testify-1.4.0" + ,go-github-com-stretchr-testify-1.4.0) + ("go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95" + ,go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95) + ("go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee" + ,go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee) + ("go-github-com-sirupsen-logrus-1.6.0" + ,go-github-com-sirupsen-logrus-1.6.0) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-go-digest-1.0.0" + ,go-github-com-opencontainers-go-digest-1.0.0) + ("go-github-com-inconshreveable-mousetrap-1.0.0" + ,go-github-com-inconshreveable-mousetrap-1.0.0) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0) + ("go-github-com-dustin-go-humanize-1.0.0" + ,go-github-com-dustin-go-humanize-1.0.0) + ("go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898" + ,go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898))) + (home-page "https://github.com/containerd/continuity") + (synopsis "continuity") + (description + "This package provides a transport-agnostic, filesystem metadata manifest system") + (license license:asl2.0))) + +(define-public go-github-com-containerd-fifo-0.0.0-20201026212402-0724c46b320c + (package + (name "go-github-com-containerd-fifo") + (version "0.0.0-20201026212402-0724c46b320c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/fifo") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "11d9j0isblnnqf78ygvwjyijjxn6zdzf7p803v0jv2py4d0pkvj8")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/fifo")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449" + ,go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449) + ("go-github-com-stretchr-testify-1.4.0" + ,go-github-com-stretchr-testify-1.4.0) + ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) + (home-page "https://github.com/containerd/fifo") + (synopsis "fifo") + (description "Go package for handling fifos in a sane way.") + (license license:asl2.0))) + +(define-public go-github-com-containernetworking-cni-0.8.0 + (package + (name "go-github-com-containernetworking-cni") + (version "0.8.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containernetworking/cni") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "16i59dhiq7pc7qs32cdk4yv4w9rjx4vvlw7fb6a6jhq6hxxjrgiw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containernetworking/cni")) + (home-page "https://github.com/containernetworking/cni") + (synopsis "CNI - the Container Network Interface") + (description + "CNI (), a @url{https://cncf.io,Cloud Native Computing Foundation} project, consists of a specification and libraries for writing plugins to configure network interfaces in Linux containers, along with a number of supported plugins. +CNI concerns itself only with network connectivity of containers and removing allocated resources when the container is deleted. +Because of this focus, CNI has a wide range of support and the specification is simple to implement.") + (license license:asl2.0))) + +(define-public go-github-com-onsi-ginkgo-1.10.3 + (package + (name "go-github-com-onsi-ginkgo") + (version "1.10.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/onsi/ginkgo") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "00a40by9f5ylycnar8h3p9b4z5rcsvfvg4j3v5s5mchdqrqjv1pc")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/onsi/ginkgo")) + (home-page "https://github.com/onsi/ginkgo") + (synopsis "Ginkgo 2.0 Release Candidate is available!") + (description "Ginkgo is a BDD-style testing framework for Golang +") + (license license:expat))) + +(define-public go-github-com-stretchr-objx-0.0.0-20180129172003-8a3f7159479f + (package + (name "go-github-com-stretchr-objx") + (version "0.0.0-20180129172003-8a3f7159479f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/objx") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0rbz4x4jbq9vp3zxmv0c2wh1vbg48lmc8ncdgz7zxk7241fc31ki")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/objx")) + (home-page "https://github.com/stretchr/objx") + (synopsis "Objx") + (description + "Objx - Go package for dealing with maps, slices, JSON and other data. +") + (license license:expat))) + +(define-public go-github-com-stretchr-testify-0.0.0-20180303142811-b89eecf5ca5d + (package + (name "go-github-com-stretchr-testify") + (version "0.0.0-20180303142811-b89eecf5ca5d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0g946ii8qjaynvidj648z8izl91i6yhy0ir6g3qsrn136im3r8wk")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +") + (license license:expat))) + +(define-public go-github-com-containerd-go-cni-1.0.1 + (package + (name "go-github-com-containerd-go-cni") + (version "1.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/go-cni") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0sdlwa4d0kzpm3vg9jy6fxqqcfjq8innv1zjcyp8n9qy8vj9b24y")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/go-cni")) + (propagated-inputs + `(("go-github-com-stretchr-testify-0.0.0-20180303142811-b89eecf5ca5d" + ,go-github-com-stretchr-testify-0.0.0-20180303142811-b89eecf5ca5d) + ("go-github-com-stretchr-objx-0.0.0-20180129172003-8a3f7159479f" + ,go-github-com-stretchr-objx-0.0.0-20180129172003-8a3f7159479f) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-onsi-gomega-1.7.1" ,go-github-com-onsi-gomega-1.7.1) + ("go-github-com-onsi-ginkgo-1.10.3" ,go-github-com-onsi-ginkgo-1.10.3) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1) + ("go-github-com-containernetworking-cni-0.8.0" + ,go-github-com-containernetworking-cni-0.8.0))) + (home-page "https://github.com/containerd/go-cni") + (synopsis "go-cni") + (description + "This package provides a generic CNI library to provide APIs for CNI plugin interactions. The library provides APIs to:") + (license license:asl2.0))) + +(define-public go-github-com-containerd-console-0.0.0-20191206165004-02ecf6a7291e + (package + (name "go-github-com-containerd-console") + (version "0.0.0-20191206165004-02ecf6a7291e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/console") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1b3yq446gv8da4fajknbjxr5syz1ypz0nii9sqw066hx8kmqzgqh")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/console")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e" + ,go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e) + ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) + (home-page "https://github.com/containerd/console") + (synopsis "console") + (description + "Golang package for dealing with consoles. Light on deps and a simple API.") + (license license:asl2.0))) + +(define-public go-github-com-opencontainers-runtime-spec-1.0.1 + (package + (name "go-github-com-opencontainers-runtime-spec") + (version "1.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/runtime-spec") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "00qb0q7ndxsll12ilp5a8pqfi4i1jqrlqzv0yf7sn52lkrdrw5f4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) + (home-page "https://github.com/opencontainers/runtime-spec") + (synopsis "Open Container Initiative Runtime Specification") + (description + "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328 + (package + (name "go-github-com-containerd-go-runc") + (version "0.0.0-20200220073739-7016d3ce2328") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/go-runc") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1mx2lvfkxw9kiyhi18g3c6hcpb9r2115zjzyvz6rkdqr08xrij9k")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/go-runc")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449" + ,go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449) + ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) + ("go-github-com-opencontainers-runtime-spec-1.0.1" + ,go-github-com-opencontainers-runtime-spec-1.0.1) + ("go-github-com-containerd-console-0.0.0-20191206165004-02ecf6a7291e" + ,go-github-com-containerd-console-0.0.0-20191206165004-02ecf6a7291e))) + (home-page "https://github.com/containerd/go-runc") + (synopsis "go-runc") + (description + "This is a package for consuming the @url{https://github.com/opencontainers/runc,runc} binary in your Go applications. +It tries to expose all the settings and features of the runc CLI. If there is something missing then add it, its opensource!") + (license license:asl2.0))) + +(define-public go-github-com-microsoft-go-winio-0.4.14 + (package + (name "go-github-com-microsoft-go-winio") + (version "0.4.14") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/microsoft/go-winio") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0n34wi9l9ks2z3cz97j30ljfmqppwf1zxr16hwbnswyrk54fcxm3")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/Microsoft/go-winio")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b" + ,go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b) + ("go-github-com-sirupsen-logrus-1.4.1" + ,go-github-com-sirupsen-logrus-1.4.1) + ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) + (home-page "https://github.com/Microsoft/go-winio") + (synopsis "go-winio") + (description + "This repository contains utilities for efficiently performing Win32 IO operations in +Go. Currently, this is focused on accessing named pipes and other file handles, and +for using named pipes as a net transport.") + (license license:expat))) + +(define-public go-github-com-microsoft-hcsshim-0.8.7-0.20190325164909-8abdbb8205e4 + (package + (name "go-github-com-microsoft-hcsshim") + (version "0.8.7-0.20190325164909-8abdbb8205e4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/microsoft/hcsshim") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0029085clghvprb3bs2m9q7xk4njx5fg2gr5wm3a0y8kqx0awv45")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/Microsoft/hcsshim")) + (home-page "https://github.com/Microsoft/hcsshim") + (synopsis "hcsshim") + (description + "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") + (license license:expat))) + +(define-public go-github-com-containerd-cgroups-0.0.0-20190717030353-c4b9ac5c7601 + (package + (name "go-github-com-containerd-cgroups") + (version "0.0.0-20190717030353-c4b9ac5c7601") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/cgroups") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fpai6nsm7qd5zfd8ykq8j4ngbqcy5v2isw16j086j0qabyw2iiw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/cgroups")) + (home-page "https://github.com/containerd/cgroups") + (synopsis "cgroups") + (description + "Go package for creating, managing, inspecting, and destroying cgroups. +The resources format for settings on the cgroup uses the OCI runtime-spec found +@url{https://github.com/opencontainers/runtime-spec,here}.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-console-0.0.0-20181022165439-0650fd9eeb50 + (package + (name "go-github-com-containerd-console") + (version "0.0.0-20181022165439-0650fd9eeb50") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/console") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0cs11g3gjan15rnbgryf60725sw2hf83fb6y2hwn1rgcm0jab1b8")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/console")) + (home-page "https://github.com/containerd/console") + (synopsis "console") + (description + "Golang package for dealing with consoles. Light on deps and a simple API.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-containerd-1.3.0 + (package + (name "go-github-com-containerd-containerd") + (version "1.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/containerd") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "05mr33l0rhkj49n6wf9lk95ijqvqwhp68ll879rpad1ypfv2f8as")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/containerd")) + (home-page "https://github.com/containerd/containerd") + (synopsis "Now Recruiting") + (description + "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-continuity-0.0.0-20190815185530-f2a389ac0a02 + (package + (name "go-github-com-containerd-continuity") + (version "0.0.0-20190815185530-f2a389ac0a02") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/continuity") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0h8a7npx46sjak0dyypkgg0h5dkq6dqpa4gx1v22ik62rmw0jy8r")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/continuity")) + (home-page "https://github.com/containerd/continuity") + (synopsis "continuity") + (description + "This package provides a transport-agnostic, filesystem metadata manifest system") + (license license:asl2.0))) + +(define-public go-github-com-containerd-fifo-0.0.0-20180307165137-3d5202aec260 + (package + (name "go-github-com-containerd-fifo") + (version "0.0.0-20180307165137-3d5202aec260") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/fifo") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "11jp12vgfj0xg9m2w5cfay72fwrxb6w8za7rkcqw8yy8hypiqqxq")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/fifo")) + (home-page "https://github.com/containerd/fifo") + (synopsis "fifo") + (description "Go package for handling fifos in a sane way.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-go-runc-0.0.0-20190911050354-e029b79d8cda + (package + (name "go-github-com-containerd-go-runc") + (version "0.0.0-20190911050354-e029b79d8cda") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/go-runc") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0zwb6bfnfmj09rnz1z3xx1y2pm4wrhyp2ls7vmf7p62j5zyvdpkw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/go-runc")) + (home-page "https://github.com/containerd/go-runc") + (synopsis "go-runc") + (description + "This is a package for consuming the @url{https://github.com/opencontainers/runc,runc} binary in your Go applications. +It tries to expose all the settings and features of the runc CLI. If there is something missing then add it, its opensource!") + (license license:asl2.0))) + +(define-public go-github-com-containerd-ttrpc-0.0.0-20190828172938-92c8520ef9f8 + (package + (name "go-github-com-containerd-ttrpc") + (version "0.0.0-20190828172938-92c8520ef9f8") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/ttrpc") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1kzclhmicw2xkiqsg6npx0xzs5jx36mqmyd0gj5dzv88i7p4b8dx")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/ttrpc")) + (home-page "https://github.com/containerd/ttrpc") + (synopsis "ttrpc") + (description "GRPC for low-memory environments.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-containerd-1.2.10 + (package + (name "go-github-com-containerd-containerd") + (version "1.2.10") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/containerd") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1kddhkd93wkrimk0yjcqiavdrqc818nd39rf3wrgxyilx1mfnrwb")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/containerd")) + (home-page "https://github.com/containerd/containerd") + (synopsis "Now Recruiting") + (description + "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") + (license license:asl2.0))) + +(define-public go-github-com-fullsailor-pkcs7-0.0.0-20190404230743-d7302db945fa + (package + (name "go-github-com-fullsailor-pkcs7") + (version "0.0.0-20190404230743-d7302db945fa") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/fullsailor/pkcs7") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "13d7dpj85j36pxwg1kn7b23rm54va5p9v3vdcx27pma2jjlsxsm1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/fullsailor/pkcs7")) + (home-page "https://github.com/fullsailor/pkcs7") + (synopsis "pkcs7") + (description + "Package pkcs7 implements parsing and generation of some PKCS#7 structures. +") + (license license:expat))) + +(define-public go-golang-org-x-crypto-0.0.0-20190701094942-4def268fd1a4 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20190701094942-4def268fd1a4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1bfsnari529gw34cz0zqk3d9mrkcj1ay35kangri8kbgll0ss5a6")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" + ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) + ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" + ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-gopkg-in-square-go-jose-v2-2.3.1 + (package + (name "go-gopkg-in-square-go-jose-v2") + (version "2.3.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/square/go-jose.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "11r93g9xrcjqj7qvq8sbd5hy5rnbpmim0vdsp6rbav8gl7wimaa3")))) + (build-system go-build-system) + (arguments + '(#:import-path + "gopkg.in/square/go-jose.v2" + #:unpack-path + "gopkg.in/square/go-jose.v2")) + (home-page "https://gopkg.in/square/go-jose.v2") + (synopsis "Go JOSE") + (description + "Package jose aims to provide an implementation of the Javascript Object Signing +and Encryption set of standards. It implements encryption and signing based on +the JSON Web Encryption and JSON Web Signature standards, with optional JSON +Web Token support available in a sub-package. The library supports both the +compact and full serialization formats, and has optional support for multiple +recipients. +") + (license license:asl2.0))) + +(define-public go-github-com-containers-ocicrypt-1.0.1 + (package + (name "go-github-com-containers-ocicrypt") + (version "1.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containers/ocicrypt") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0q27vzgdsimypkpi7iv0rl1xz571554adphyl0j8b5qa8wrf0n7v")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containers/ocicrypt")) + (propagated-inputs + `(("go-gotest-tools-2.2.0+incompatible" + ,go-gotest-tools-2.2.0+incompatible) + ("go-gopkg-in-square-go-jose-v2-2.3.1" + ,go-gopkg-in-square-go-jose-v2-2.3.1) + ("go-google-golang-org-grpc-1.24.0" ,go-google-golang-org-grpc-1.24.0) + ("go-golang-org-x-crypto-0.0.0-20190701094942-4def268fd1a4" + ,go-golang-org-x-crypto-0.0.0-20190701094942-4def268fd1a4) + ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) + ("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0) + ("go-github-com-sirupsen-logrus-1.4.2" + ,go-github-com-sirupsen-logrus-1.4.2) + ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) + ("go-github-com-opencontainers-image-spec-1.0.1" + ,go-github-com-opencontainers-image-spec-1.0.1) + ("go-github-com-opencontainers-go-digest-1.0.0-rc1" + ,go-github-com-opencontainers-go-digest-1.0.0-rc1) + ("go-github-com-fullsailor-pkcs7-0.0.0-20190404230743-d7302db945fa" + ,go-github-com-fullsailor-pkcs7-0.0.0-20190404230743-d7302db945fa) + ("go-github-com-containerd-containerd-1.2.10" + ,go-github-com-containerd-containerd-1.2.10))) + (home-page "https://github.com/containers/ocicrypt") + (synopsis "OCIcrypt Library") + (description + "The @code{ocicrypt} library is the OCI image spec implementation of container image encryption. More details of the spec can be seen in the @url{https://github.com/opencontainers/image-spec/pull/775,OCI repository}. The purpose of this library is to encode spec structures and consts in code, as well as provide a consistent implementation of image encryption across container runtimes and build tools.") + (license license:asl2.0))) + +(define-public go-github-com-coreos-go-systemd-0.0.0-20161114122254-48702e0da86b + (package + (name "go-github-com-coreos-go-systemd") + (version "0.0.0-20161114122254-48702e0da86b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/coreos/go-systemd") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "04zl9ns4j3lpjykf32rv5cb6sj9x5ci8yi90vab1bl27vnqjgdkh")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/coreos/go-systemd")) + (home-page "https://github.com/coreos/go-systemd") + (synopsis "go-systemd") + (description "Go bindings to systemd. The project has several packages:") + (license license:asl2.0))) + +(define-public go-github-com-docker-distribution-2.7.1-0.20190205005809-0d3efadf0154+incompatible + (package + (name "go-github-com-docker-distribution") + (version "2.7.1-0.20190205005809-0d3efadf0154+incompatible") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/distribution/distribution") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1wayhmcxr6l281fqkbw1gh0ymhxlznf4jj1rcldhwrc64l2zjh8l")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/docker/distribution")) + (home-page "https://github.com/docker/distribution") + (synopsis "Distribution") + (description + "Package distribution will define the interfaces for the components of +docker distribution. The goal is to allow users to reliably package, ship +and store content related to docker images. +") + (license license:asl2.0))) + +(define-public go-github-com-docker-go-events-0.0.0-20170721190031-9461782956ad + (package + (name "go-github-com-docker-go-events") + (version "0.0.0-20170721190031-9461782956ad") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/docker/go-events") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0vn0kd0w253jwdk86gv1h6s8p6bzxiyif74xdzlb39zr6fdrr145")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/docker/go-events")) + (home-page "https://github.com/docker/go-events") + (synopsis "Docker Events Package") + (description + "The Docker @code{events} package implements a composable event distribution package +for Go.") + (license license:asl2.0))) + +(define-public go-github-com-godbus-dbus-0.0.0-20151105175453-c7fdd8b5cd55 + (package + (name "go-github-com-godbus-dbus") + (version "0.0.0-20151105175453-c7fdd8b5cd55") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/godbus/dbus") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "09zazkiny2im24xaiac5kbyhhnbqdbhwi9z9n7fj6rhpg8msiq9n")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/godbus/dbus")) + (home-page "https://github.com/godbus/dbus") + (synopsis "dbus") + (description + "Package dbus implements bindings to the D-Bus message bus system. +") + (license license:bsd-2))) + +(define-public go-github-com-gogo-googleapis-1.2.0 + (package + (name "go-github-com-gogo-googleapis") + (version "1.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gogo/googleapis") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1a82n0xp0v8lgjxzl3aa595r0rmy7afgyn2l3kv6z9kzw339i0jp")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/gogo/googleapis")) + (propagated-inputs + `(("go-github-com-gogo-protobuf-1.2.1" + ,go-github-com-gogo-protobuf-1.2.1))) + (home-page "https://github.com/gogo/googleapis") + (synopsis "Google APIs generated by gogoprotobuf") + (description + "The @url{https://github.com/gogo/grpc-example,grpc-example} includes an example usage of this repository.") + (license license:asl2.0))) + +(define-public go-github-com-imdario-mergo-0.3.8 + (package + (name "go-github-com-imdario-mergo") + (version "0.3.8") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/imdario/mergo") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "15xwyrnwng11ib0fxi7clwick2r0njwn0gs3va2g5m1ad418ry57")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/imdario/mergo")) + (home-page "https://github.com/imdario/mergo") + (synopsis "Mergo") + (description + "This package provides a helper to merge structs and maps in Golang. Useful for configuration default values, avoiding messy if-statements. +") + (license license:bsd-3))) + +(define-public go-github-com-opencontainers-go-digest-1.0.0-rc1.0.20180430190053-c9281466c8b2 + (package + (name "go-github-com-opencontainers-go-digest") + (version "1.0.0-rc1.0.20180430190053-c9281466c8b2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/go-digest") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1djdazssy27xn91pjhx3dgb0f11bnlzzbwkh7f8zwnpz011anasi")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/go-digest")) + (home-page "https://github.com/opencontainers/go-digest") + (synopsis "go-digest") + (description + "Package digest provides a generalized type to opaquely represent message +digests and their operations within the registry. The Digest type is +designed to serve as a flexible identifier in a content-addressable system. +More importantly, it provides tools and wrappers to work with +hash.Hash-based digests with little effort. +") + (license (list license:asl2.0 license:cc-by-sa4.0)))) + +(define-public go-github-com-opencontainers-runc-1.0.0-rc8.0.20190926000215-3e425f80a8c9 + (package + (name "go-github-com-opencontainers-runc") + (version "1.0.0-rc8.0.20190926000215-3e425f80a8c9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/runc") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18psc830b2rkwml1x6vxngam5b5wi3pj14mw817rshpzy87prspj")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/runc")) + (home-page "https://github.com/opencontainers/runc") + (synopsis "runc") + (description + "@code{runc} is a CLI tool for spawning and running containers according to the OCI specification.") + (license license:asl2.0))) + +(define-public go-github-com-opencontainers-runtime-spec-1.0.2-0.20190207185410-29686dbc5559 + (package + (name "go-github-com-opencontainers-runtime-spec") + (version "1.0.2-0.20190207185410-29686dbc5559") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/runtime-spec") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0i8q3520jk4yl9rsxs8mn5vsi9i0gd3drysbhciaqwm5l8c30h65")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) + (home-page "https://github.com/opencontainers/runtime-spec") + (synopsis "Open Container Initiative Runtime Specification") + (description + "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") + (license license:asl2.0))) + +(define-public go-github-com-prometheus-procfs-0.0.8 + (package + (name "go-github-com-prometheus-procfs") + (version "0.0.8") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/procfs") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "076wblhz8fjdc73fmz1lg0hafbwg1xv8hszm78lbg9anjpfgacvq")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/procfs")) + (propagated-inputs + `(("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" + ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) + ("go-github-com-google-go-cmp-0.3.1" + ,go-github-com-google-go-cmp-0.3.1))) + (home-page "https://github.com/prometheus/procfs") + (synopsis "procfs") + (description + "Package procfs provides functions to retrieve system, kernel and process +metrics from the pseudo-filesystem proc. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-sys-0.0.0-20190812073006-9eafafc0a87e + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190812073006-9eafafc0a87e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0g5wcpiafz47066993mgz77gka9qzww6w6crxpnyir0459j7z07r")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-google-golang-org-grpc-1.24.0 + (package + (name "go-google-golang-org-grpc") + (version "1.24.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0h8mwv74vzcfb7p4ai247x094skxca71vjp4wpj2wzmri0x9p4v6")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" + ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) + ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" + ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) + ("go-google-golang-org-appengine-1.1.0" + ,go-google-golang-org-appengine-1.1.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-google-go-cmp-0.2.0" + ,go-github-com-google-go-cmp-0.2.0) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2) + ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-client9-misspell-0.3.4" + ,go-github-com-client9-misspell-0.3.4) + ("go-github-com-burntsushi-toml-0.3.1" + ,go-github-com-burntsushi-toml-0.3.1) + ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-github-com-containerd-imgcrypt-1.0.1 + (package + (name "go-github-com-containerd-imgcrypt") + (version "1.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/imgcrypt") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0y0gbnp8imckw6rv3sjf3sycp8rc9lyhv0pp0x3q3yksvqmbqh5v")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/imgcrypt")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.24.0" ,go-google-golang-org-grpc-1.24.0) + ("go-golang-org-x-sys-0.0.0-20190812073006-9eafafc0a87e" + ,go-golang-org-x-sys-0.0.0-20190812073006-9eafafc0a87e) + ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" + ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) + ("go-golang-org-x-net-0.0.0-20190522155817-f3200d17e092" + ,go-golang-org-x-net-0.0.0-20190522155817-f3200d17e092) + ("go-go-etcd-io-bbolt-1.3.3" ,go-go-etcd-io-bbolt-1.3.3) + ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) + ("go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2" + ,go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2) + ("go-github-com-sirupsen-logrus-1.4.2" + ,go-github-com-sirupsen-logrus-1.4.2) + ("go-github-com-prometheus-procfs-0.0.8" + ,go-github-com-prometheus-procfs-0.0.8) + ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) + ("go-github-com-opencontainers-runtime-spec-1.0.2-0.20190207185410-29686dbc5559" + ,go-github-com-opencontainers-runtime-spec-1.0.2-0.20190207185410-29686dbc5559) + ("go-github-com-opencontainers-runc-1.0.0-rc8.0.20190926000215-3e425f80a8c9" + ,go-github-com-opencontainers-runc-1.0.0-rc8.0.20190926000215-3e425f80a8c9) + ("go-github-com-opencontainers-image-spec-1.0.1" + ,go-github-com-opencontainers-image-spec-1.0.1) + ("go-github-com-opencontainers-go-digest-1.0.0-rc1.0.20180430190053-c9281466c8b2" + ,go-github-com-opencontainers-go-digest-1.0.0-rc1.0.20180430190053-c9281466c8b2) + ("go-github-com-imdario-mergo-0.3.8" + ,go-github-com-imdario-mergo-0.3.8) + ("go-github-com-gogo-protobuf-1.2.1" + ,go-github-com-gogo-protobuf-1.2.1) + ("go-github-com-gogo-googleapis-1.2.0" + ,go-github-com-gogo-googleapis-1.2.0) + ("go-github-com-godbus-dbus-0.0.0-20151105175453-c7fdd8b5cd55" + ,go-github-com-godbus-dbus-0.0.0-20151105175453-c7fdd8b5cd55) + ("go-github-com-docker-go-units-0.4.0" + ,go-github-com-docker-go-units-0.4.0) + ("go-github-com-docker-go-events-0.0.0-20170721190031-9461782956ad" + ,go-github-com-docker-go-events-0.0.0-20170721190031-9461782956ad) + ("go-github-com-docker-distribution-2.7.1-0.20190205005809-0d3efadf0154+incompatible" + ,go-github-com-docker-distribution-2.7.1-0.20190205005809-0d3efadf0154+incompatible) + ("go-github-com-coreos-go-systemd-0.0.0-20161114122254-48702e0da86b" + ,go-github-com-coreos-go-systemd-0.0.0-20161114122254-48702e0da86b) + ("go-github-com-containers-ocicrypt-1.0.1" + ,go-github-com-containers-ocicrypt-1.0.1) + ("go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd" + ,go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd) + ("go-github-com-containerd-ttrpc-0.0.0-20190828172938-92c8520ef9f8" + ,go-github-com-containerd-ttrpc-0.0.0-20190828172938-92c8520ef9f8) + ("go-github-com-containerd-go-runc-0.0.0-20190911050354-e029b79d8cda" + ,go-github-com-containerd-go-runc-0.0.0-20190911050354-e029b79d8cda) + ("go-github-com-containerd-fifo-0.0.0-20180307165137-3d5202aec260" + ,go-github-com-containerd-fifo-0.0.0-20180307165137-3d5202aec260) + ("go-github-com-containerd-continuity-0.0.0-20190815185530-f2a389ac0a02" + ,go-github-com-containerd-continuity-0.0.0-20190815185530-f2a389ac0a02) + ("go-github-com-containerd-containerd-1.3.0" + ,go-github-com-containerd-containerd-1.3.0) + ("go-github-com-containerd-console-0.0.0-20181022165439-0650fd9eeb50" + ,go-github-com-containerd-console-0.0.0-20181022165439-0650fd9eeb50) + ("go-github-com-containerd-cgroups-0.0.0-20190717030353-c4b9ac5c7601" + ,go-github-com-containerd-cgroups-0.0.0-20190717030353-c4b9ac5c7601) + ("go-github-com-microsoft-hcsshim-0.8.7-0.20190325164909-8abdbb8205e4" + ,go-github-com-microsoft-hcsshim-0.8.7-0.20190325164909-8abdbb8205e4) + ("go-github-com-microsoft-go-winio-0.4.14" + ,go-github-com-microsoft-go-winio-0.4.14))) + (home-page "https://github.com/containerd/imgcrypt") + (synopsis "imgcrypt image encryption library and command line tool") + (description + "Project @code{imgcrypt} is a non-core subproject of containerd.") + (license license:asl2.0))) + +(define-public go-github-com-blang-semver-3.1.0+incompatible + (package + (name "go-github-com-blang-semver") + (version "3.1.0+incompatible") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/blang/semver") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1s80qlij6j6wrh0fhm0l11hbf3qjra67nca5bl7izyfjj4621fcd")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/blang/semver")) + (home-page "https://github.com/blang/semver") + (synopsis "semver for golang") + (description + "semver is a @url{http://semver.org/,Semantic Versioning} library written in golang. It fully covers spec version @code{2.0.0}.") + (license license:expat))) + +(define-public go-github-com-containerd-containerd-1.3.0-beta.2.0.20190828155532-0293cbd26c69 + (package + (name "go-github-com-containerd-containerd") + (version "1.3.0-beta.2.0.20190828155532-0293cbd26c69") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/containerd") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1jhb4a7fczf817d9dwj0a02wfscv46hkymrqh1dcsgpdsp80igkw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/containerd")) + (home-page "https://github.com/containerd/containerd") + (synopsis "Now Recruiting") + (description + "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") + (license license:asl2.0))) + +(define-public go-github-com-hashicorp-errwrap-0.0.0-20141028054710-7554cd9344ce + (package + (name "go-github-com-hashicorp-errwrap") + (version "0.0.0-20141028054710-7554cd9344ce") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/errwrap") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0kmv0p605di6jc8i1778qzass18m0mv9ks9vxxrfsiwcp4la82jf")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/errwrap")) + (home-page "https://github.com/hashicorp/errwrap") + (synopsis "errwrap") + (description + "Package errwrap implements methods to formalize error wrapping in Go. +") + (license license:mpl2.0))) + +(define-public go-github-com-hashicorp-go-multierror-0.0.0-20161216184304-ed905158d874 + (package + (name "go-github-com-hashicorp-go-multierror") + (version "0.0.0-20161216184304-ed905158d874") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/go-multierror") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1bldhx9dmx9q4gjsag3g1xswq1jsf394rs69fdbmgnkj75j3sp70")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/go-multierror")) + (home-page "https://github.com/hashicorp/go-multierror") + (synopsis "go-multierror") + (description + "@code{go-multierror} is a package for Go that provides a mechanism for +representing a list of @code{error} values as a single @code{error}.") + (license license:mpl2.0))) + +(define-public go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39 + (package + (name "go-github-com-opencontainers-runtime-tools") + (version "0.0.0-20181011054405-1d69bd0f9c39") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/runtime-tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1wgisl2v8i1hvy3bf8f16v7rarx2ynyasb0jx4kffp5n5hz2hfcl")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/runtime-tools")) + (home-page "https://github.com/opencontainers/runtime-tools") + (synopsis "oci-runtime-tool") + (description + "oci-runtime-tool is a collection of tools for working with the @url{https://github.com/opencontainers/runtime-spec,OCI runtime specification}. +To build from source code, runtime-tools requires Go 1.10.x or above.") + (license license:asl2.0))) + +(define-public go-github-com-prometheus-procfs-0.0.5 + (package + (name "go-github-com-prometheus-procfs") + (version "0.0.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/procfs") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1nqn8ip9f4f6kqrvand4lxhcxrkk19dwf8s3nh336i9wr2jfhbwa")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/procfs")) + (propagated-inputs + `(("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" + ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) + ("go-github-com-google-go-cmp-0.3.0" + ,go-github-com-google-go-cmp-0.3.0))) + (home-page "https://github.com/prometheus/procfs") + (synopsis "procfs") + (description + "Package procfs provides functions to retrieve system, kernel and process +metrics from the pseudo-filesystem proc. +") + (license license:asl2.0))) + +(define-public go-github-com-syndtr-gocapability-0.0.0-20170704070218-db04d3cc01c8 + (package + (name "go-github-com-syndtr-gocapability") + (version "0.0.0-20170704070218-db04d3cc01c8") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/syndtr/gocapability") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0jwica5kqax70rd4gbc2yjdz54401s4mr6clyn60gcmnxc0wynds")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/syndtr/gocapability")) + (home-page "https://github.com/syndtr/gocapability") + (synopsis #f) + (description #f) + (license license:bsd-2))) + +(define-public go-github-com-xeipuuv-gojsonschema-0.0.0-20180618132009-1d523034197f + (package + (name "go-github-com-xeipuuv-gojsonschema") + (version "0.0.0-20180618132009-1d523034197f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/xeipuuv/gojsonschema") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1z8c6x8sfh6d1ib2lm2jps7r139qip6h3zik3fxhy1yr1380qbzp")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/xeipuuv/gojsonschema")) + (home-page "https://github.com/xeipuuv/gojsonschema") + (synopsis "gojsonschema") + (description + "An implementation of JSON Schema for the Go programming language. Supports draft-04, draft-06 and draft-07.") + (license license:asl2.0))) + +(define-public go-k8s-io-kubernetes-1.13.0 + (package + (name "go-k8s-io-kubernetes") + (version "1.13.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes/kubernetes") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12cvw8b7l319p8nc2imc2wck7zz7vzrwcjyxq5djqj7l5rbcwmzs")))) + (build-system go-build-system) + (arguments '(#:import-path "k8s.io/kubernetes")) + (home-page "https://k8s.io/kubernetes") + (synopsis "Kubernetes (K8s)") + (description + "Kubernetes, also known as K8s, is an open source system for managing @url{https://kubernetes.io/docs/concepts/overview/what-is-kubernetes/,containerized applications} +across multiple hosts. It provides basic mechanisms for deployment, maintenance, +and scaling of applications.") + (license license:asl2.0))) + +(define-public go-github-com-microsoft-hcsshim-0.8.7 + (package + (name "go-github-com-microsoft-hcsshim") + (version "0.8.7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/microsoft/hcsshim") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1c6ix202ll48n7x00xxb7gzgm3srm9zwwbx2503l6vz3sqclh9xm")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/Microsoft/hcsshim")) + (propagated-inputs + `(("go-k8s-io-kubernetes-1.13.0" ,go-k8s-io-kubernetes-1.13.0) + ("go-gotest-tools-2.2.0+incompatible" + ,go-gotest-tools-2.2.0+incompatible) + ("go-google-golang-org-grpc-1.20.1" ,go-google-golang-org-grpc-1.20.1) + ("go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3" + ,go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3) + ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" + ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) + ("go-go-opencensus-io-0.22.0" ,go-go-opencensus-io-0.22.0) + ("go-github-com-xeipuuv-gojsonschema-0.0.0-20180618132009-1d523034197f" + ,go-github-com-xeipuuv-gojsonschema-0.0.0-20180618132009-1d523034197f) + ("go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415" + ,go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415) + ("go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f" + ,go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f) + ("go-github-com-urfave-cli-0.0.0-20171014202726-7bc6a0acffa5" + ,go-github-com-urfave-cli-0.0.0-20171014202726-7bc6a0acffa5) + ("go-github-com-syndtr-gocapability-0.0.0-20170704070218-db04d3cc01c8" + ,go-github-com-syndtr-gocapability-0.0.0-20170704070218-db04d3cc01c8) + ("go-github-com-sirupsen-logrus-1.4.1" + ,go-github-com-sirupsen-logrus-1.4.1) + ("go-github-com-prometheus-procfs-0.0.5" + ,go-github-com-prometheus-procfs-0.0.5) + ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) + ("go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39" + ,go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39) + ("go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700" + ,go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700) + ("go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f" + ,go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f) + ("go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2" + ,go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2) + ("go-github-com-hashicorp-go-multierror-0.0.0-20161216184304-ed905158d874" + ,go-github-com-hashicorp-go-multierror-0.0.0-20161216184304-ed905158d874) + ("go-github-com-hashicorp-errwrap-0.0.0-20141028054710-7554cd9344ce" + ,go-github-com-hashicorp-errwrap-0.0.0-20141028054710-7554cd9344ce) + ("go-github-com-gogo-protobuf-1.2.1" + ,go-github-com-gogo-protobuf-1.2.1) + ("go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd" + ,go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd) + ("go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de" + ,go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de) + ("go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3" + ,go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3) + ("go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448" + ,go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448) + ("go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc" + ,go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc) + ("go-github-com-containerd-containerd-1.3.0-beta.2.0.20190828155532-0293cbd26c69" + ,go-github-com-containerd-containerd-1.3.0-beta.2.0.20190828155532-0293cbd26c69) + ("go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1" + ,go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1) + ("go-github-com-containerd-cgroups-0.0.0-20190919134610-bf292b21730f" + ,go-github-com-containerd-cgroups-0.0.0-20190919134610-bf292b21730f) + ("go-github-com-blang-semver-3.1.0+incompatible" + ,go-github-com-blang-semver-3.1.0+incompatible) + ("go-github-com-microsoft-go-winio-0.4.15-0.20190919025122-fc70bd9a86b5" + ,go-github-com-microsoft-go-winio-0.4.15-0.20190919025122-fc70bd9a86b5))) + (home-page "https://github.com/Microsoft/hcsshim") + (synopsis "hcsshim") + (description + "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") + (license license:expat))) + +(define-public go-github-com-containerd-containerd-1.3.1-0.20191213020239-082f7e3aed57 + (package + (name "go-github-com-containerd-containerd") + (version "1.3.1-0.20191213020239-082f7e3aed57") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/containerd") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1piaha1adhzhj150l7zhskn5fgl4r2cyvwhrrm8bbm3vnvhmgw7v")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/containerd")) + (home-page "https://github.com/containerd/containerd") + (synopsis "Now Recruiting") + (description + "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-continuity-0.0.0-20191127005431-f65d91d395eb + (package + (name "go-github-com-containerd-continuity") + (version "0.0.0-20191127005431-f65d91d395eb") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/continuity") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "15yh5idl3if8a982gsnq9q72021a7jcs9bdcrqaxbl4dwdqcszki")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/continuity")) + (home-page "https://github.com/containerd/continuity") + (synopsis "continuity") + (description + "This package provides a transport-agnostic, filesystem metadata manifest system") + (license license:asl2.0))) + +(define-public go-golang-org-x-sys-0.0.0-20190522044717-8097e1b27ff5 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190522044717-8097e1b27ff5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1rgflfvh365x5lwdyqdd9qk8hh3ycr88a2488bgqgvfhp5ri5p6x")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-google-golang-org-genproto-0.0.0-20190522204451-c2c4e71fbf69 + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20190522204451-c2c4e71fbf69") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1y44pmyy92pg822fhw80pnciifx1ah0g73i2l0ixickd24wyznnm")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" + ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) + ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) + ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" + ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) + ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" + ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) + ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" + ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) + ("go-github-com-golang-protobuf-1.3.1" + ,go-github-com-golang-protobuf-1.3.1))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-ttrpc-0.0.0-20191028202541-4f1b8fe65a5c + (package + (name "go-github-com-containerd-ttrpc") + (version "0.0.0-20191028202541-4f1b8fe65a5c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/ttrpc") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19fhm39jagk2sfgi9g5zdqx4rynziwxhaap03x4mdj8kczlz21x8")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/ttrpc")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.21.0" ,go-google-golang-org-grpc-1.21.0) + ("go-google-golang-org-genproto-0.0.0-20190522204451-c2c4e71fbf69" + ,go-google-golang-org-genproto-0.0.0-20190522204451-c2c4e71fbf69) + ("go-golang-org-x-sys-0.0.0-20190522044717-8097e1b27ff5" + ,go-golang-org-x-sys-0.0.0-20190522044717-8097e1b27ff5) + ("go-github-com-sirupsen-logrus-1.4.2" + ,go-github-com-sirupsen-logrus-1.4.2) + ("go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1" + ,go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1) + ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) + ("go-github-com-gogo-protobuf-1.2.1" + ,go-github-com-gogo-protobuf-1.2.1))) + (home-page "https://github.com/containerd/ttrpc") + (synopsis "ttrpc") + (description "GRPC for low-memory environments.") + (license license:asl2.0))) + +(define-public go-github-com-gogo-protobuf-1.3.0 + (package + (name "go-github-com-gogo-protobuf") + (version "1.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gogo/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0slfyrmbpdcppf0z3waar90bpszdhi2gv705ys1b0zx5x6ax8f1a")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/gogo/protobuf")) + (propagated-inputs + `(("go-github-com-kisielk-gotool-1.0.0" + ,go-github-com-kisielk-gotool-1.0.0) + ("go-github-com-kisielk-errcheck-1.2.0" + ,go-github-com-kisielk-errcheck-1.2.0))) + (home-page "https://github.com/gogo/protobuf") + (synopsis "Protocol Buffers for Go with Gadgets") + (description + "gogoprotobuf is a fork of @url{https://github.com/golang/protobuf,golang/protobuf} with extra code generation features.") + (license license:bsd-3))) + +(define-public go-github-com-containerd-typeurl-0.0.0-20190911142611-5eb25027c9fd + (package + (name "go-github-com-containerd-typeurl") + (version "0.0.0-20190911142611-5eb25027c9fd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/typeurl") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fyc2962b9sqgqycnlkxls6n0d701nszl84bayxrdv3r1491jn9v")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/typeurl")) + (propagated-inputs + `(("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) + ("go-github-com-gogo-protobuf-1.3.0" + ,go-github-com-gogo-protobuf-1.3.0))) + (home-page "https://github.com/containerd/typeurl") + (synopsis "typeurl") + (description + "This package provides a Go package for managing the registration, marshaling, and unmarshaling of encoded types.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-zfs-0.0.0-20200918131355-0a33824f23a2 + (package + (name "go-github-com-containerd-zfs") + (version "0.0.0-20200918131355-0a33824f23a2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/zfs") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "112bj6mxc3r2ncybblf3w1fgqa6w0070f6a8vlqcml1g00ljhsz6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/zfs")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) + ("go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449" + ,go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449) + ("go-go-etcd-io-bbolt-1.3.3" ,go-go-etcd-io-bbolt-1.3.3) + ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) + ("go-github-com-opencontainers-runc-1.0.0-rc9" + ,go-github-com-opencontainers-runc-1.0.0-rc9) + ("go-github-com-opencontainers-image-spec-1.0.1" + ,go-github-com-opencontainers-image-spec-1.0.1) + ("go-github-com-opencontainers-go-digest-1.0.0-rc1" + ,go-github-com-opencontainers-go-digest-1.0.0-rc1) + ("go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible" + ,go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible) + ("go-github-com-google-uuid-1.1.1" ,go-github-com-google-uuid-1.1.1) + ("go-github-com-google-go-cmp-0.3.1" + ,go-github-com-google-go-cmp-0.3.1) + ("go-github-com-gogo-protobuf-1.3.1" + ,go-github-com-gogo-protobuf-1.3.1) + ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" + ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) + ("go-github-com-containerd-typeurl-0.0.0-20190911142611-5eb25027c9fd" + ,go-github-com-containerd-typeurl-0.0.0-20190911142611-5eb25027c9fd) + ("go-github-com-containerd-ttrpc-0.0.0-20191028202541-4f1b8fe65a5c" + ,go-github-com-containerd-ttrpc-0.0.0-20191028202541-4f1b8fe65a5c) + ("go-github-com-containerd-continuity-0.0.0-20191127005431-f65d91d395eb" + ,go-github-com-containerd-continuity-0.0.0-20191127005431-f65d91d395eb) + ("go-github-com-containerd-containerd-1.3.1-0.20191213020239-082f7e3aed57" + ,go-github-com-containerd-containerd-1.3.1-0.20191213020239-082f7e3aed57) + ("go-github-com-microsoft-hcsshim-0.8.7" + ,go-github-com-microsoft-hcsshim-0.8.7))) + (home-page "https://github.com/containerd/zfs") + (synopsis "ZFS snapshotter plugin") + (description "ZFS snapshotter plugin for containerd.") + (license license:asl2.0))) + +(define-public go-golang-org-x-sys-0.0.0-20201202213521-69691e467435 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20201202213521-69691e467435") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0lndxdnazszfj1jl87cpz31vd12jrjm1wj0zw1c2p8yg64cfkhna")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-containerd-containerd-1.5.0-beta.1 + (package + (name "go-github-com-containerd-containerd") + (version "1.5.0-beta.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/containerd") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1jki3jwmbfk4mp2qhz4ppd6vgnicalszzv5ffibasa4qj5v19wcd")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/containerd")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) + ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) + ("go-github-com-golang-protobuf-1.3.5" + ,go-github-com-golang-protobuf-1.3.5) + ("go-github-com-gogo-googleapis-1.3.2" + ,go-github-com-gogo-googleapis-1.3.2) + ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" + ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) + ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) + ("go-k8s-io-cri-api-0.20.1" ,go-k8s-io-cri-api-0.20.1) + ("go-k8s-io-component-base-0.20.1" ,go-k8s-io-component-base-0.20.1) + ("go-k8s-io-client-go-0.20.1" ,go-k8s-io-client-go-0.20.1) + ("go-k8s-io-apiserver-0.20.1" ,go-k8s-io-apiserver-0.20.1) + ("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) + ("go-k8s-io-api-0.20.1" ,go-k8s-io-api-0.20.1) + ("go-gotest-tools-v3-3.0.2" ,go-gotest-tools-v3-3.0.2) + ("go-golang-org-x-sys-0.0.0-20201202213521-69691e467435" + ,go-golang-org-x-sys-0.0.0-20201202213521-69691e467435) + ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" + ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) + ("go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b" + ,go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b) + ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) + ("go-github-com-tchap-go-patricia-2.2.6+incompatible" + ,go-github-com-tchap-go-patricia-2.2.6+incompatible) + ("go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635" + ,go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-sirupsen-logrus-1.7.0" + ,go-github-com-sirupsen-logrus-1.7.0) + ("go-github-com-prometheus-client-golang-1.7.1" + ,go-github-com-prometheus-client-golang-1.7.1) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-selinux-1.8.0" + ,go-github-com-opencontainers-selinux-1.8.0) + ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" + ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) + ("go-github-com-opencontainers-runc-1.0.0-rc93" + ,go-github-com-opencontainers-runc-1.0.0-rc93) + ("go-github-com-opencontainers-image-spec-1.0.1" + ,go-github-com-opencontainers-image-spec-1.0.1) + ("go-github-com-opencontainers-go-digest-1.0.0" + ,go-github-com-opencontainers-go-digest-1.0.0) + ("go-github-com-moby-sys-symlink-0.1.0" + ,go-github-com-moby-sys-symlink-0.1.0) + ("go-github-com-moby-sys-mountinfo-0.4.0" + ,go-github-com-moby-sys-mountinfo-0.4.0) + ("go-github-com-klauspost-compress-1.11.3" + ,go-github-com-klauspost-compress-1.11.3) + ("go-github-com-imdario-mergo-0.3.10" + ,go-github-com-imdario-mergo-0.3.10) + ("go-github-com-hashicorp-go-multierror-1.0.0" + ,go-github-com-hashicorp-go-multierror-1.0.0) + ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" + ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) + ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) + ("go-github-com-google-go-cmp-0.5.2" + ,go-github-com-google-go-cmp-0.5.2) + ("go-github-com-gogo-protobuf-1.3.2" + ,go-github-com-gogo-protobuf-1.3.2) + ("go-github-com-fsnotify-fsnotify-1.4.9" + ,go-github-com-fsnotify-fsnotify-1.4.9) + ("go-github-com-emicklei-go-restful-2.9.5+incompatible" + ,go-github-com-emicklei-go-restful-2.9.5+incompatible) + ("go-github-com-docker-go-units-0.4.0" + ,go-github-com-docker-go-units-0.4.0) + ("go-github-com-docker-go-metrics-0.0.1" + ,go-github-com-docker-go-metrics-0.0.1) + ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" + ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1) + ("go-github-com-coreos-go-systemd-v22-22.1.0" + ,go-github-com-coreos-go-systemd-v22-22.1.0) + ("go-github-com-containernetworking-plugins-0.8.6" + ,go-github-com-containernetworking-plugins-0.8.6) + ("go-github-com-containerd-zfs-0.0.0-20200918131355-0a33824f23a2" + ,go-github-com-containerd-zfs-0.0.0-20200918131355-0a33824f23a2) + ("go-github-com-containerd-typeurl-1.0.1" + ,go-github-com-containerd-typeurl-1.0.1) + ("go-github-com-containerd-ttrpc-1.0.2" + ,go-github-com-containerd-ttrpc-1.0.2) + ("go-github-com-containerd-nri-0.0.0-20201007170849-eb1350a75164" + ,go-github-com-containerd-nri-0.0.0-20201007170849-eb1350a75164) + ("go-github-com-containerd-imgcrypt-1.0.1" + ,go-github-com-containerd-imgcrypt-1.0.1) + ("go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328" + ,go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328) + ("go-github-com-containerd-go-cni-1.0.1" + ,go-github-com-containerd-go-cni-1.0.1) + ("go-github-com-containerd-fifo-0.0.0-20201026212402-0724c46b320c" + ,go-github-com-containerd-fifo-0.0.0-20201026212402-0724c46b320c) + ("go-github-com-containerd-continuity-0.0.0-20201208142359-180525291bb7" + ,go-github-com-containerd-continuity-0.0.0-20201208142359-180525291bb7) + ("go-github-com-containerd-console-1.0.1" + ,go-github-com-containerd-console-1.0.1) + ("go-github-com-containerd-cgroups-0.0.0-20200824123100-0b889c03f102" + ,go-github-com-containerd-cgroups-0.0.0-20200824123100-0b889c03f102) + ("go-github-com-containerd-btrfs-0.0.0-20201111183144-404b9149801e" + ,go-github-com-containerd-btrfs-0.0.0-20201111183144-404b9149801e) + ("go-github-com-containerd-aufs-0.0.0-20200908144142-dab0cbea06f4" + ,go-github-com-containerd-aufs-0.0.0-20200908144142-dab0cbea06f4) + ("go-github-com-microsoft-hcsshim-test-0.0.0-20201218223536-d3e5debf77da" + ,go-github-com-microsoft-hcsshim-test-0.0.0-20201218223536-d3e5debf77da) + ("go-github-com-microsoft-hcsshim-0.8.14" + ,go-github-com-microsoft-hcsshim-0.8.14) + ("go-github-com-microsoft-go-winio-0.4.16" + ,go-github-com-microsoft-go-winio-0.4.16) + ("go-github-com-burntsushi-toml-0.3.1" + ,go-github-com-burntsushi-toml-0.3.1))) + (home-page "https://github.com/containerd/containerd") + (synopsis "Now Recruiting") + (description + "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") + (license license:asl2.0))) + +(define-public go-golang-org-x-crypto-0.0.0-20200728195943-123391ffb6de + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20200728195943-123391ffb6de") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1a3wnn8yjvckh3smyqzwd2k2gvl3i8dk68pvcap0wha8hmga1vf3")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" + ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) + ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" + ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20200817155316-9781c653f443 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200817155316-9781c653f443") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fkwiydhhmn6cxmd9jb4rj2wp06yxmqc3903b7zawsxm9jpslicm")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-containers-ocicrypt-1.1.0 + (package + (name "go-github-com-containers-ocicrypt") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containers/ocicrypt") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "13avih8ml00idn6qy96ash3jxkimqxpkz4cy4kgryc8jx303nv6i")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containers/ocicrypt")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.3.0" ,go-gopkg-in-yaml-v2-2.3.0) + ("go-gopkg-in-square-go-jose-v2-2.5.1" + ,go-gopkg-in-square-go-jose-v2-2.5.1) + ("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) + ("go-golang-org-x-sys-0.0.0-20200817155316-9781c653f443" + ,go-golang-org-x-sys-0.0.0-20200817155316-9781c653f443) + ("go-golang-org-x-crypto-0.0.0-20200728195943-123391ffb6de" + ,go-golang-org-x-crypto-0.0.0-20200728195943-123391ffb6de) + ("go-go-mozilla-org-pkcs7-0.0.0-20200128120323-432b2356ecb1" + ,go-go-mozilla-org-pkcs7-0.0.0-20200128120323-432b2356ecb1) + ("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0) + ("go-github-com-stefanberger-go-pkcs11uri-0.0.0-20201008174630-78d3cae3a980" + ,go-github-com-stefanberger-go-pkcs11uri-0.0.0-20201008174630-78d3cae3a980) + ("go-github-com-sirupsen-logrus-1.7.0" + ,go-github-com-sirupsen-logrus-1.7.0) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-image-spec-1.0.1" + ,go-github-com-opencontainers-image-spec-1.0.1) + ("go-github-com-opencontainers-go-digest-1.0.0" + ,go-github-com-opencontainers-go-digest-1.0.0) + ("go-github-com-miekg-pkcs11-1.0.3" ,go-github-com-miekg-pkcs11-1.0.3) + ("go-github-com-google-go-cmp-0.5.2" + ,go-github-com-google-go-cmp-0.5.2) + ("go-github-com-golang-protobuf-1.4.3" + ,go-github-com-golang-protobuf-1.4.3))) + (home-page "https://github.com/containers/ocicrypt") + (synopsis "OCIcrypt Library") + (description + "The @code{ocicrypt} library is the OCI image spec implementation of container image encryption. More details of the spec can be seen in the @url{https://github.com/opencontainers/image-spec/pull/775,OCI repository}. The purpose of this library is to encode spec structures and consts in code, as well as provide a consistent implementation of image encryption across container runtimes and build tools.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-imgcrypt-1.0.4-0.20210301171431-0ae5c75f59ba + (package + (name "go-github-com-containerd-imgcrypt") + (version "1.0.4-0.20210301171431-0ae5c75f59ba") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/imgcrypt") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0vkwgcxh3mpsn6wp231c9ad3sx6gmnc9948nn3vvbw8bsmjd4i77")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/imgcrypt")) + (propagated-inputs + `(("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) + ("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) + ("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) + ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" + ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) + ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) + ("go-github-com-sirupsen-logrus-1.7.0" + ,go-github-com-sirupsen-logrus-1.7.0) + ("go-github-com-prometheus-procfs-0.6.0" + ,go-github-com-prometheus-procfs-0.6.0) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" + ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) + ("go-github-com-opencontainers-image-spec-1.0.1" + ,go-github-com-opencontainers-image-spec-1.0.1) + ("go-github-com-opencontainers-go-digest-1.0.0" + ,go-github-com-opencontainers-go-digest-1.0.0) + ("go-github-com-imdario-mergo-0.3.11" + ,go-github-com-imdario-mergo-0.3.11) + ("go-github-com-gogo-protobuf-1.3.2" + ,go-github-com-gogo-protobuf-1.3.2) + ("go-github-com-containers-ocicrypt-1.1.0" + ,go-github-com-containers-ocicrypt-1.1.0) + ("go-github-com-containerd-typeurl-1.0.1" + ,go-github-com-containerd-typeurl-1.0.1) + ("go-github-com-containerd-containerd-1.5.0-beta.1" + ,go-github-com-containerd-containerd-1.5.0-beta.1) + ("go-github-com-containerd-console-1.0.1" + ,go-github-com-containerd-console-1.0.1) + ("go-github-com-microsoft-hcsshim-test-0.0.0-20210227013316-43a75bb4edd3" + ,go-github-com-microsoft-hcsshim-test-0.0.0-20210227013316-43a75bb4edd3) + ("go-github-com-microsoft-hcsshim-0.8.14" + ,go-github-com-microsoft-hcsshim-0.8.14) + ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" + ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3))) + (home-page "https://github.com/containerd/imgcrypt") + (synopsis "imgcrypt image encryption library and command line tool") + (description + "Project @code{imgcrypt} is a non-core subproject of containerd.") + (license license:asl2.0))) + +(define-public go-github-com-microsoft-go-winio-0.4.15-0.20190919025122-fc70bd9a86b5 + (package + (name "go-github-com-microsoft-go-winio") + (version "0.4.15-0.20190919025122-fc70bd9a86b5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/microsoft/go-winio") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "015ra2h3qfaq436d0g7akahgz7bikyvljq48m0l2d2f4k3wki86p")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/Microsoft/go-winio")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3" + ,go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3) + ("go-github-com-sirupsen-logrus-1.4.1" + ,go-github-com-sirupsen-logrus-1.4.1) + ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) + (home-page "https://github.com/Microsoft/go-winio") + (synopsis "go-winio") + (description + "This repository contains utilities for efficiently performing Win32 IO operations in +Go. Currently, this is focused on accessing named pipes and other file handles, and +for using named pipes as a net transport.") + (license license:expat))) + +(define-public go-github-com-godbus-dbus-0.0.0-20190422162347-ade71ed3457e + (package + (name "go-github-com-godbus-dbus") + (version "0.0.0-20190422162347-ade71ed3457e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/godbus/dbus") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12ga9izv32j1zjij1p9f2sdnxjy3v80lw964518dvzirxpvwfszn")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/godbus/dbus")) + (home-page "https://github.com/godbus/dbus") + (synopsis "dbus") + (description + "Package dbus implements bindings to the D-Bus message bus system. +") + (license license:bsd-2))) + +(define-public go-golang-org-x-sys-0.0.0-20190514135907-3a4b5fb9f71f + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190514135907-3a4b5fb9f71f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "122ry2lw2525mqlnw2zc006y1flvj3yhj8rnpxqdwxp71jc3kqii")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-containerd-cgroups-0.0.0-20190919134610-bf292b21730f + (package + (name "go-github-com-containerd-cgroups") + (version "0.0.0-20190919134610-bf292b21730f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/cgroups") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1vvk1vrwm9spilyl4r1r8626sg0zvnx3s3zmzigzinpkzzvbdqpw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/cgroups")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190514135907-3a4b5fb9f71f" + ,go-golang-org-x-sys-0.0.0-20190514135907-3a4b5fb9f71f) + ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) + ("go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700" + ,go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700) + ("go-github-com-gogo-protobuf-1.2.1" + ,go-github-com-gogo-protobuf-1.2.1) + ("go-github-com-godbus-dbus-0.0.0-20190422162347-ade71ed3457e" + ,go-github-com-godbus-dbus-0.0.0-20190422162347-ade71ed3457e) + ("go-github-com-docker-go-units-0.4.0" + ,go-github-com-docker-go-units-0.4.0) + ("go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e" + ,go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e))) + (home-page "https://github.com/containerd/cgroups") + (synopsis "cgroups") + (description + "Go package for creating, managing, inspecting, and destroying cgroups. +The resources format for settings on the cgroup uses the OCI runtime-spec found +@url{https://github.com/opencontainers/runtime-spec,here}.") + (license license:asl2.0))) + +(define-public go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700 + (package + (name "go-github-com-opencontainers-runtime-spec") + (version "0.1.2-0.20190507144316-5b71a03e2700") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/runtime-spec") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1dx0bp4f885vx6l4b5b7h19j6sm0jn9s2qxarfd917f4wp8l0cpl")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) + (home-page "https://github.com/opencontainers/runtime-spec") + (synopsis "Open Container Initiative Runtime Specification") + (description + "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") + (license license:asl2.0))) + +(define-public go-github-com-urfave-cli-0.0.0-20171014202726-7bc6a0acffa5 + (package + (name "go-github-com-urfave-cli") + (version "0.0.0-20171014202726-7bc6a0acffa5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/urfave/cli") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "13li8phkaznh81qxs9vg0r8294ph014rwca4cqf7gxhvyjlaigwp")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/urfave/cli")) + (home-page "https://github.com/urfave/cli") + (synopsis "cli") + (description + "Package cli provides a minimal framework for creating and organizing command line +Go applications. cli is designed to be easy to understand and write, the most simple +cli application can be written as follows: +") + (license license:expat))) + +(define-public go-github-com-microsoft-hcsshim-0.8.9 + (package + (name "go-github-com-microsoft-hcsshim") + (version "0.8.9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/microsoft/hcsshim") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1imyqhh51311fdmp81ffasf7z52rbqhblbhx6477d9w20p74866b")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/Microsoft/hcsshim")) + (propagated-inputs + `(("go-gotest-tools-2.2.0+incompatible" + ,go-gotest-tools-2.2.0+incompatible) + ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) + ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" + ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) + ("go-google-golang-org-grpc-1.23.1" ,go-google-golang-org-grpc-1.23.1) + ("go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873" + ,go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873) + ("go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3" + ,go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3) + ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" + ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) + ("go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9" + ,go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9) + ("go-go-opencensus-io-0.22.0" ,go-go-opencensus-io-0.22.0) + ("go-github-com-urfave-cli-0.0.0-20171014202726-7bc6a0acffa5" + ,go-github-com-urfave-cli-0.0.0-20171014202726-7bc6a0acffa5) + ("go-github-com-stretchr-testify-1.4.0" + ,go-github-com-stretchr-testify-1.4.0) + ("go-github-com-sirupsen-logrus-1.4.2" + ,go-github-com-sirupsen-logrus-1.4.2) + ("go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7" + ,go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7) + ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) + ("go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700" + ,go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700) + ("go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f" + ,go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f) + ("go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2" + ,go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2) + ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2) + ("go-github-com-gogo-protobuf-1.3.1" + ,go-github-com-gogo-protobuf-1.3.1) + ("go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd" + ,go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd) + ("go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de" + ,go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de) + ("go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3" + ,go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3) + ("go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448" + ,go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448) + ("go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc" + ,go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc) + ("go-github-com-containerd-containerd-1.3.2" + ,go-github-com-containerd-containerd-1.3.2) + ("go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1" + ,go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1) + ("go-github-com-containerd-cgroups-0.0.0-20190919134610-bf292b21730f" + ,go-github-com-containerd-cgroups-0.0.0-20190919134610-bf292b21730f) + ("go-github-com-microsoft-go-winio-0.4.15-0.20190919025122-fc70bd9a86b5" + ,go-github-com-microsoft-go-winio-0.4.15-0.20190919025122-fc70bd9a86b5))) + (home-page "https://github.com/Microsoft/hcsshim") + (synopsis "hcsshim") + (description + "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") + (license license:expat))) + +(define-public go-github-com-cilium-ebpf-0.0.0-20200702112145-1c8d4c9ef775 + (package + (name "go-github-com-cilium-ebpf") + (version "0.0.0-20200702112145-1c8d4c9ef775") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cilium/ebpf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1la90b88a1li5hmlqxfx9lgxlyzqb2pd4c2dxmz4s5gg2gz8a5x5")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/cilium/ebpf")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9" + ,go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9))) + (home-page "https://github.com/cilium/ebpf") + (synopsis "eBPF") + (description "Package ebpf is a toolkit for working with eBPF programs. +") + (license license:expat))) + +(define-public go-github-com-containerd-cgroups-0.0.0-20200710171044-318312a37340 + (package + (name "go-github-com-containerd-cgroups") + (version "0.0.0-20200710171044-318312a37340") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/cgroups") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1kizbm55pmlnly2dggymp84a0d9pn4fh7jf31h6wqm385zrs14zp")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/cgroups")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9" + ,go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9) + ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) + ("go-github-com-stretchr-testify-1.2.2" + ,go-github-com-stretchr-testify-1.2.2) + ("go-github-com-sirupsen-logrus-1.6.0" + ,go-github-com-sirupsen-logrus-1.6.0) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-runtime-spec-1.0.2" + ,go-github-com-opencontainers-runtime-spec-1.0.2) + ("go-github-com-gogo-protobuf-1.3.1" + ,go-github-com-gogo-protobuf-1.3.1) + ("go-github-com-godbus-dbus-v5-5.0.3" + ,go-github-com-godbus-dbus-v5-5.0.3) + ("go-github-com-docker-go-units-0.4.0" + ,go-github-com-docker-go-units-0.4.0) + ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" + ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) + ("go-github-com-coreos-go-systemd-v22-22.0.0" + ,go-github-com-coreos-go-systemd-v22-22.0.0) + ("go-github-com-cilium-ebpf-0.0.0-20200702112145-1c8d4c9ef775" + ,go-github-com-cilium-ebpf-0.0.0-20200702112145-1c8d4c9ef775))) + (home-page "https://github.com/containerd/cgroups") + (synopsis "cgroups") + (description + "Go package for creating, managing, inspecting, and destroying cgroups. +The resources format for settings on the cgroup uses the OCI runtime-spec found +@url{https://github.com/opencontainers/runtime-spec,here}.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-containerd-1.4.0-beta.2.0.20200729163537-40b22ef07410 + (package + (name "go-github-com-containerd-containerd") + (version "1.4.0-beta.2.0.20200729163537-40b22ef07410") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/containerd") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ky7ny5b0rvkr6a58pdlcm35kc9wls6jvl7cdk8py4a16y1f2lx9")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/containerd")) + (home-page "https://github.com/containerd/containerd") + (synopsis "Now Recruiting") + (description + "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") + (license license:asl2.0))) + +(define-public go-github-com-onsi-ginkgo-1.10.1 + (package + (name "go-github-com-onsi-ginkgo") + (version "1.10.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/onsi/ginkgo") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "033a42h1wzmji57p86igg9whvsbp6nvfdsypskw738ys903n3z4d")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/onsi/ginkgo")) + (home-page "https://github.com/onsi/ginkgo") + (synopsis "Ginkgo 2.0 Release Candidate is available!") + (description "Ginkgo is a BDD-style testing framework for Golang +") + (license license:expat))) + +(define-public go-github-com-opencontainers-go-digest-1.0.0-rc1 + (package + (name "go-github-com-opencontainers-go-digest") + (version "1.0.0-rc1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/go-digest") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "01gc7fpn8ax429024p2fcx3yb18axwz5bjf2hqxlii1jbsgw4bh9")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/go-digest")) + (home-page "https://github.com/opencontainers/go-digest") + (synopsis "go-digest") + (description + "Package digest provides a generalized type to opaquely represent message +digests and their operations within the registry. The Digest type is +designed to serve as a flexible identifier in a content-addressable system. +More importantly, it provides tools and wrappers to work with +hash.Hash-based digests with little effort. +") + (license (list license:asl2.0 license:cc-by-sa4.0)))) + +(define-public go-github-com-pkg-errors-0.8.1-0.20171018195549-f15c970de5b7 + (package + (name "go-github-com-pkg-errors") + (version "0.8.1-0.20171018195549-f15c970de5b7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pkg/errors") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18jihrffhfsjvz3rkanlhq9xjcdxkqilmflnijc64s7y7lijlbfm")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pkg/errors")) + (home-page "https://github.com/pkg/errors") + (synopsis "errors") + (description "Package errors provides simple error handling primitives. +") + (license license:bsd-2))) + +(define-public go-github-com-sirupsen-logrus-1.0.4-0.20170822132746-89742aefa4b2 + (package + (name "go-github-com-sirupsen-logrus") + (version "1.0.4-0.20170822132746-89742aefa4b2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sirupsen/logrus") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hk7fabx59msg2y0iik6xvfp80s73ybrwlcshbm9ds91iqbkcxi6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/sirupsen/logrus")) + (home-page "https://github.com/sirupsen/logrus") + (synopsis "Logrus") + (description + "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. +") + (license license:expat))) + +(define-public go-golang-org-x-crypto-0.0.0-20171113213409-9f005a07e0d3 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20171113213409-9f005a07e0d3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1mhmr6ljzl3iafsz4qy8vval7rmr828wh59dlqqqjqx6sqmcs1dv")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-github-com-containerd-continuity-0.0.0-20200710164510-efbc4488d8fe + (package + (name "go-github-com-containerd-continuity") + (version "0.0.0-20200710164510-efbc4488d8fe") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/continuity") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0d638nj7z7y8z19zdwbysamqh5m3kiwvnqny7av6bxax9gg6c3h8")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/continuity")) + (propagated-inputs + `(("go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2" + ,go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2) + ("go-gopkg-in-airbrake-gobrake-v2-2.0.9" + ,go-gopkg-in-airbrake-gobrake-v2-2.0.9) + ("go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e" + ,go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e) + ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" + ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) + ("go-golang-org-x-crypto-0.0.0-20171113213409-9f005a07e0d3" + ,go-golang-org-x-crypto-0.0.0-20171113213409-9f005a07e0d3) + ("go-github-com-stretchr-testify-1.4.0" + ,go-github-com-stretchr-testify-1.4.0) + ("go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95" + ,go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95) + ("go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee" + ,go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee) + ("go-github-com-sirupsen-logrus-1.0.4-0.20170822132746-89742aefa4b2" + ,go-github-com-sirupsen-logrus-1.0.4-0.20170822132746-89742aefa4b2) + ("go-github-com-pkg-errors-0.8.1-0.20171018195549-f15c970de5b7" + ,go-github-com-pkg-errors-0.8.1-0.20171018195549-f15c970de5b7) + ("go-github-com-opencontainers-go-digest-1.0.0-rc1" + ,go-github-com-opencontainers-go-digest-1.0.0-rc1) + ("go-github-com-onsi-gomega-1.7.0" ,go-github-com-onsi-gomega-1.7.0) + ("go-github-com-onsi-ginkgo-1.10.1" ,go-github-com-onsi-ginkgo-1.10.1) + ("go-github-com-inconshreveable-mousetrap-1.0.0" + ,go-github-com-inconshreveable-mousetrap-1.0.0) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0) + ("go-github-com-dustin-go-humanize-0.0.0-20171111073723-bb3d318650d4" + ,go-github-com-dustin-go-humanize-0.0.0-20171111073723-bb3d318650d4) + ("go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898" + ,go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898))) + (home-page "https://github.com/containerd/continuity") + (synopsis "continuity") + (description + "This package provides a transport-agnostic, filesystem metadata manifest system") + (license license:asl2.0))) + +(define-public go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20191210023423-ac6580df4449") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "14gvx65w5lddi20s4wypbbvbg9ni3m8777jhp9nqxhixc61k3dyi")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-containerd-fifo-0.0.0-20200410184934-f15a3290365b + (package + (name "go-github-com-containerd-fifo") + (version "0.0.0-20200410184934-f15a3290365b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/fifo") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1i3pylxr2a4b9gaifjrhfa21n147vvq2z9iqwzz9id532xv9mr48")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/fifo")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449" + ,go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449) + ("go-github-com-stretchr-testify-1.4.0" + ,go-github-com-stretchr-testify-1.4.0) + ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) + (home-page "https://github.com/containerd/fifo") + (synopsis "fifo") + (description "Go package for handling fifos in a sane way.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-ttrpc-1.0.1 + (package + (name "go-github-com-containerd-ttrpc") + (version "1.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/ttrpc") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "02ilz14f1k9zip7caqfjwvfg2nwa7bs6880pi6fxbri1wy6ar45q")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/ttrpc")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.26.0" ,go-google-golang-org-grpc-1.26.0) + ("go-google-golang-org-genproto-0.0.0-20200117163144-32f20d992d24" + ,go-google-golang-org-genproto-0.0.0-20200117163144-32f20d992d24) + ("go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479" + ,go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479) + ("go-github-com-sirupsen-logrus-1.4.2" + ,go-github-com-sirupsen-logrus-1.4.2) + ("go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1" + ,go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.2" + ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.2) + ("go-github-com-gogo-protobuf-1.3.1" + ,go-github-com-gogo-protobuf-1.3.1))) + (home-page "https://github.com/containerd/ttrpc") + (synopsis "ttrpc") + (description "GRPC for low-memory environments.") + (license license:asl2.0))) + +(define-public go-github-com-gogo-googleapis-1.4.0 + (package + (name "go-github-com-gogo-googleapis") + (version "1.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gogo/googleapis") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1kka9qmra1klfkjza0s5papqvsi65f2d349dl8k1lvfq487iv9r4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/gogo/googleapis")) + (propagated-inputs + `(("go-github-com-gogo-protobuf-1.3.1" + ,go-github-com-gogo-protobuf-1.3.1))) + (home-page "https://github.com/gogo/googleapis") + (synopsis "Google APIs generated by gogoprotobuf") + (description + "The @url{https://github.com/gogo/grpc-example,grpc-example} includes an example usage of this repository.") + (license license:asl2.0))) + +(define-public go-github-com-google-go-cmp-0.5.1 + (package + (name "go-github-com-google-go-cmp") + (version "0.5.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1wjdid59brciv09agxgmqac5k9ywg63nhzb0yi9anmqpl38gps0p")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") + (license license:bsd-3))) + +(define-public go-github-com-imdario-mergo-0.3.10 + (package + (name "go-github-com-imdario-mergo") + (version "0.3.10") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/imdario/mergo") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "09h765p8yby9r8s0a3hv5kl8n2i382mda76wmvk48w1cc1w9s92p")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/imdario/mergo")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.3.0" ,go-gopkg-in-yaml-v2-2.3.0))) + (home-page "https://github.com/imdario/mergo") + (synopsis "Mergo") + (description + "This package provides a helper to merge structs and maps in Golang. Useful for configuration default values, avoiding messy if-statements. +") + (license license:bsd-3))) + +(define-public go-github-com-opencontainers-runc-0.1.1 + (package + (name "go-github-com-opencontainers-runc") + (version "0.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/runc") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "09fm7f1k4lvx8v3crqb0cli1x2brlz8ka7f7qa8d2sb6ln58h7w7")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/runc")) + (home-page "https://github.com/opencontainers/runc") + (synopsis "runc") + (description + "@code{runc} is a CLI tool for spawning and running containers according to the OCI specification.") + (license license:asl2.0))) + +(define-public go-github-com-willf-bitset-1.1.11-0.20200630133818-d5bec3311243 + (package + (name "go-github-com-willf-bitset") + (version "1.1.11-0.20200630133818-d5bec3311243") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/bits-and-blooms/bitset") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "05nyd0vhp2h9hbqlv2s9l2py6mr8hpz2zyfj09an1q7wd8vph4ja")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/willf/bitset")) + (home-page "https://github.com/willf/bitset") + (synopsis "bitset") + (description + "Package bitset implements bitsets, a mapping +between non-negative integers and boolean values. It should be more +efficient than map[uint] bool. +") + (license license:bsd-3))) + +(define-public go-github-com-opencontainers-selinux-1.6.0 + (package + (name "go-github-com-opencontainers-selinux") + (version "1.6.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/selinux") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ja41zfgrkhk5khixjnxpi1b85xfcxlkhq2q9b7ma6xjfdhg8bq2")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/selinux")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777" + ,go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777) + ("go-github-com-willf-bitset-1.1.11-0.20200630133818-d5bec3311243" + ,go-github-com-willf-bitset-1.1.11-0.20200630133818-d5bec3311243) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) + (home-page "https://github.com/opencontainers/selinux") + (synopsis "selinux") + (description "Common SELinux package used across the container ecosystem.") + (license license:asl2.0))) + +(define-public go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2 + (package + (name "go-github-com-syndtr-gocapability") + (version "0.0.0-20180916011248-d98352740cb2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/syndtr/gocapability") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "065y16562ynixxzj7iys4f4spb7knilbj3h833qlhds381j8hn93")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/syndtr/gocapability")) + (home-page "https://github.com/syndtr/gocapability") + (synopsis #f) + (description #f) + (license license:bsd-2))) + +(define-public go-golang-org-x-net-0.0.0-20200707034311-ab3426394381 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20200707034311-ab3426394381") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1wr7rnnqp210yykkypinb8ciszx28aq5a3l3dvsv6swzxxngs8zn")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" + ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) + ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" + ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208 + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20200625203802-6e8e738ad208") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1avk27pszd5l5df6ff7j78wgla46ir1hhy2jwfl9a3c0ys602yx9")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the +ones provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-google-golang-org-grpc-1.30.0 + (package + (name "go-google-golang-org-grpc") + (version "1.30.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "05pb9xrxd7kpbi8zzby90f87b6sxq65nmpgqx5h3255whmmpzbi9")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" + ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.3.3" + ,go-github-com-golang-protobuf-1.3.3) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-envoyproxy-go-control-plane-0.9.4" + ,go-github-com-envoyproxy-go-control-plane-0.9.4) + ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" + ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-github-com-containerd-nri-0.0.0-20201007170849-eb1350a75164 + (package + (name "go-github-com-containerd-nri") + (version "0.0.0-20201007170849-eb1350a75164") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/nri") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1yhrxl36fswgxv7ny3p9xi99jsbwyk920gmzkjyfyk6nqs0hqbkg")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/nri")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.30.0" ,go-google-golang-org-grpc-1.30.0) + ("go-golang-org-x-sys-0.0.0-20200728102440-3e129f6d46b1" + ,go-golang-org-x-sys-0.0.0-20200728102440-3e129f6d46b1) + ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" + ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) + ("go-golang-org-x-net-0.0.0-20200707034311-ab3426394381" + ,go-golang-org-x-net-0.0.0-20200707034311-ab3426394381) + ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) + ("go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2" + ,go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-selinux-1.6.0" + ,go-github-com-opencontainers-selinux-1.6.0) + ("go-github-com-opencontainers-runc-0.1.1" + ,go-github-com-opencontainers-runc-0.1.1) + ("go-github-com-opencontainers-image-spec-1.0.1" + ,go-github-com-opencontainers-image-spec-1.0.1) + ("go-github-com-opencontainers-go-digest-1.0.0" + ,go-github-com-opencontainers-go-digest-1.0.0) + ("go-github-com-imdario-mergo-0.3.10" + ,go-github-com-imdario-mergo-0.3.10) + ("go-github-com-google-uuid-1.1.1" ,go-github-com-google-uuid-1.1.1) + ("go-github-com-google-go-cmp-0.5.1" + ,go-github-com-google-go-cmp-0.5.1) + ("go-github-com-gogo-googleapis-1.4.0" + ,go-github-com-gogo-googleapis-1.4.0) + ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" + ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) + ("go-github-com-docker-distribution-2.7.1+incompatible" + ,go-github-com-docker-distribution-2.7.1+incompatible) + ("go-github-com-containerd-typeurl-1.0.1" + ,go-github-com-containerd-typeurl-1.0.1) + ("go-github-com-containerd-ttrpc-1.0.1" + ,go-github-com-containerd-ttrpc-1.0.1) + ("go-github-com-containerd-fifo-0.0.0-20200410184934-f15a3290365b" + ,go-github-com-containerd-fifo-0.0.0-20200410184934-f15a3290365b) + ("go-github-com-containerd-continuity-0.0.0-20200710164510-efbc4488d8fe" + ,go-github-com-containerd-continuity-0.0.0-20200710164510-efbc4488d8fe) + ("go-github-com-containerd-containerd-1.4.0-beta.2.0.20200729163537-40b22ef07410" + ,go-github-com-containerd-containerd-1.4.0-beta.2.0.20200729163537-40b22ef07410) + ("go-github-com-containerd-cgroups-0.0.0-20200710171044-318312a37340" + ,go-github-com-containerd-cgroups-0.0.0-20200710171044-318312a37340) + ("go-github-com-microsoft-hcsshim-0.8.9" + ,go-github-com-microsoft-hcsshim-0.8.9))) + (home-page "https://github.com/containerd/nri") + (synopsis "nri - Node Resource Interface") + (description + "This project is a WIP for a new, CNI like, interface for managing resources on a node for Pods and Containers.") + (license license:asl2.0))) + +(define-public go-github-com-sirupsen-logrus-1.4.1 + (package + (name "go-github-com-sirupsen-logrus") + (version "1.4.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sirupsen/logrus") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1m7ny9jkb98cxqhsp13xa5hnqh1s9f25x04q6arsala4zswsw33c")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/sirupsen/logrus")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33" + ,go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33) + ("go-github-com-stretchr-testify-1.2.2" + ,go-github-com-stretchr-testify-1.2.2) + ("go-github-com-stretchr-objx-0.1.1" + ,go-github-com-stretchr-objx-0.1.1) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.1" + ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.1) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/sirupsen/logrus") + (synopsis "Logrus") + (description + "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. +") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190916202348-b4ddaad3f8a3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "05pa68kqxhpjk71b4cbm8vyzh6527b3ig6war2jr1g4aj3b7f1ak")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-microsoft-go-winio-0.4.16-0.20201130162521-d1ffc52c7331 + (package + (name "go-github-com-microsoft-go-winio") + (version "0.4.16-0.20201130162521-d1ffc52c7331") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/microsoft/go-winio") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0snwbwdjs34x0my9ri77cvrbnahdiyjh2jlkzf12fy48p7fyk7pq")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/Microsoft/go-winio")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3" + ,go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3) + ("go-github-com-sirupsen-logrus-1.4.1" + ,go-github-com-sirupsen-logrus-1.4.1) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) + (home-page "https://github.com/Microsoft/go-winio") + (synopsis "go-winio") + (description + "This repository contains utilities for efficiently performing Win32 IO operations in +Go. Currently, this is focused on accessing named pipes and other file handles, and +for using named pipes as a net transport.") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20191022100944-742c48ecaeb7 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20191022100944-742c48ecaeb7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1saf59bplvvb753my15ijxcy4a1jwfg53cmkgb6wkln2x4fgnhkp")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-cilium-ebpf-0.0.0-20200110133405-4032b1d8aae3 + (package + (name "go-github-com-cilium-ebpf") + (version "0.0.0-20200110133405-4032b1d8aae3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cilium/ebpf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "107x63zl8dlw2izn5xw8pnflgq19srpa46bgvjs8q4d61i02q1fr")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/cilium/ebpf")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191022100944-742c48ecaeb7" + ,go-golang-org-x-sys-0.0.0-20191022100944-742c48ecaeb7) + ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) + (home-page "https://github.com/cilium/ebpf") + (synopsis "eBPF") + (description "Package ebpf is a toolkit for working with eBPF programs. +") + (license license:expat))) + +(define-public go-github-com-coreos-go-systemd-v22-22.0.0 + (package + (name "go-github-com-coreos-go-systemd-v22") + (version "22.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/coreos/go-systemd") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0p4sb2fxxm2j1xny2l4fkq4kwj74plvh600gih8nyniqzannhrdx")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/coreos/go-systemd/v22")) + (propagated-inputs + `(("go-github-com-godbus-dbus-v5-5.0.3" + ,go-github-com-godbus-dbus-v5-5.0.3))) + (home-page "https://github.com/coreos/go-systemd") + (synopsis "go-systemd") + (description "Go bindings to systemd. The project has several packages:") + (license license:asl2.0))) + +(define-public go-github-com-containerd-cgroups-0.0.0-20200531161412-0dbf7f05ba59 + (package + (name "go-github-com-containerd-cgroups") + (version "0.0.0-20200531161412-0dbf7f05ba59") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/cgroups") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "10abzkjf77s8pv4mpyvy2jbl8wckhk3j7ykgs01sclal21v8p251")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/cgroups")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479" + ,go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479) + ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) + ("go-github-com-stretchr-testify-1.2.2" + ,go-github-com-stretchr-testify-1.2.2) + ("go-github-com-sirupsen-logrus-1.4.2" + ,go-github-com-sirupsen-logrus-1.4.2) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-runtime-spec-1.0.2" + ,go-github-com-opencontainers-runtime-spec-1.0.2) + ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.2" + ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.2) + ("go-github-com-gogo-protobuf-1.3.1" + ,go-github-com-gogo-protobuf-1.3.1) + ("go-github-com-godbus-dbus-v5-5.0.3" + ,go-github-com-godbus-dbus-v5-5.0.3) + ("go-github-com-docker-go-units-0.4.0" + ,go-github-com-docker-go-units-0.4.0) + ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" + ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) + ("go-github-com-coreos-go-systemd-v22-22.0.0" + ,go-github-com-coreos-go-systemd-v22-22.0.0) + ("go-github-com-cilium-ebpf-0.0.0-20200110133405-4032b1d8aae3" + ,go-github-com-cilium-ebpf-0.0.0-20200110133405-4032b1d8aae3))) + (home-page "https://github.com/containerd/cgroups") + (synopsis "cgroups") + (description + "Go package for creating, managing, inspecting, and destroying cgroups. +The resources format for settings on the cgroup uses the OCI runtime-spec found +@url{https://github.com/opencontainers/runtime-spec,here}.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1 + (package + (name "go-github-com-containerd-console") + (version "0.0.0-20180822173158-c12b1e7919c1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/console") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ylrnmdhn9a2f8w8fsdgsvwnz5j0whhyhppjnhqc4lh8h9p9dpi9")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/console")) + (home-page "https://github.com/containerd/console") + (synopsis "console") + (description + "Golang package for dealing with consoles. Light on deps and a simple API.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-containerd-1.3.2 + (package + (name "go-github-com-containerd-containerd") + (version "1.3.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/containerd") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0qz6ss7a6f2r7gl7aar39pr5ry9l7nh7dn3kclr18nwdv01gmrvc")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/containerd")) + (home-page "https://github.com/containerd/containerd") + (synopsis "Now Recruiting") + (description + "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc + (package + (name "go-github-com-containerd-continuity") + (version "0.0.0-20190426062206-aaeac12a7ffc") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/continuity") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "05caqvxxb831xfvqnga692k98cy8xzkllqg1ibra0fb0ljnhbmca")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/continuity")) + (home-page "https://github.com/containerd/continuity") + (synopsis "continuity") + (description + "This package provides a transport-agnostic, filesystem metadata manifest system") + (license license:asl2.0))) + +(define-public go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448 + (package + (name "go-github-com-containerd-fifo") + (version "0.0.0-20190226154929-a9fb20d87448") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/fifo") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0c0sgfnafjnws4jgziczs6wxh0adjdrp6yyd88b7xy0hv13fsnqa")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/fifo")) + (home-page "https://github.com/containerd/fifo") + (synopsis "fifo") + (description "Go package for handling fifos in a sane way.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3 + (package + (name "go-github-com-containerd-go-runc") + (version "0.0.0-20180907222934-5a6d9f37cfa3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/go-runc") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "07qpxcjy64m238igpmj8g9z7qhf06k5xy1jcgpgvf5n912g4k3vd")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/go-runc")) + (home-page "https://github.com/containerd/go-runc") + (synopsis "go-runc") + (description + "This is a package for consuming the @url{https://github.com/opencontainers/runc,runc} binary in your Go applications. +It tries to expose all the settings and features of the runc CLI. If there is something missing then add it, its opensource!") + (license license:asl2.0))) + +(define-public go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de + (package + (name "go-github-com-containerd-ttrpc") + (version "0.0.0-20190828154514-0e0f228740de") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/ttrpc") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1kzclhmicw2xkiqsg6npx0xzs5jx36mqmyd0gj5dzv88i7p4b8dx")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/ttrpc")) + (home-page "https://github.com/containerd/ttrpc") + (synopsis "ttrpc") + (description "GRPC for low-memory environments.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd + (package + (name "go-github-com-containerd-typeurl") + (version "0.0.0-20180627222232-a93fcdb778cd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/typeurl") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0aqnf5rzc5pldln0czhxlr0fqaf5553ab7wzsq85p90lg1ryqnd6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/typeurl")) + (home-page "https://github.com/containerd/typeurl") + (synopsis "typeurl") + (description + "This package provides a Go package for managing the registration, marshaling, and unmarshaling of encoded types.") + (license license:asl2.0))) + +(define-public go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2 + (package + (name "go-github-com-opencontainers-go-digest") + (version "0.0.0-20180430190053-c9281466c8b2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/go-digest") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1djdazssy27xn91pjhx3dgb0f11bnlzzbwkh7f8zwnpz011anasi")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/go-digest")) + (home-page "https://github.com/opencontainers/go-digest") + (synopsis "go-digest") + (description + "Package digest provides a generalized type to opaquely represent message +digests and their operations within the registry. The Digest type is +designed to serve as a flexible identifier in a content-addressable system. +More importantly, it provides tools and wrappers to work with +hash.Hash-based digests with little effort. +") + (license (list license:asl2.0 license:cc-by-sa4.0)))) + +(define-public go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f + (package + (name "go-github-com-opencontainers-runc") + (version "0.0.0-20190115041553-12f6a991201f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/runc") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0lr4q440pliilq2njyj5glfpma89r9l1cl687niwkp2pzb32dm45")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/runc")) + (home-page "https://github.com/opencontainers/runc") + (synopsis "runc") + (description + "@code{runc} is a CLI tool for spawning and running containers according to the OCI specification.") + (license license:asl2.0))) + +(define-public go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7 + (package + (name "go-github-com-prometheus-procfs") + (version "0.0.0-20180125133057-cb4147076ac7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/procfs") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0zhlrik0f9q1lj6cisgnxgbz4darbcix52hm5abi24l2ahchf5ca")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/procfs")) + (home-page "https://github.com/prometheus/procfs") + (synopsis "procfs") + (description + "Package procfs provides functions to retrieve system, kernel and process +metrics from the pseudo-filesystem proc. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-net-0.0.0-20190501004415-9ce7a6920f09 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190501004415-9ce7a6920f09") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1kbs85jsqbv4v89ii2zam4b8dhmllhsrf46njmi09x0w6s0b9cbk")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-go-opencensus-io-0.22.0 + (package + (name "go-go-opencensus-io") + (version "0.22.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/census-instrumentation/opencensus-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "05jr8gkr2w34i5wwki4zhl5ch0qrgi7cdgag5iy5gpxplhbrvbg9")))) + (build-system go-build-system) + (arguments '(#:import-path "go.opencensus.io")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.20.1" ,go-google-golang-org-grpc-1.20.1) + ("go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb" + ,go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb) + ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) + ("go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd" + ,go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd) + ("go-golang-org-x-net-0.0.0-20190501004415-9ce7a6920f09" + ,go-golang-org-x-net-0.0.0-20190501004415-9ce7a6920f09) + ("go-github-com-hashicorp-golang-lru-0.5.1" + ,go-github-com-hashicorp-golang-lru-0.5.1) + ("go-github-com-google-go-cmp-0.3.0" + ,go-github-com-google-go-cmp-0.3.0) + ("go-github-com-golang-protobuf-1.3.1" + ,go-github-com-golang-protobuf-1.3.1))) + (home-page "https://go.opencensus.io") + (synopsis "OpenCensus Libraries for Go") + (description "Package opencensus contains Go support for OpenCensus. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20191004110552-13f9640d40b9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ba2767lvklnmfvb9jkwvd4m7z6326gaiz3rgylh795g88hy34g1")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873 + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20190502173448-54afdca5d873") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1vm1vggl874jd4wi6qyl7aggc6s6kdsazk4vj0cs2dfcw2xnw8ag")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" + ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) + ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) + ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" + ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) + ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" + ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) + ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" + ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd) + ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" + ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) + ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" + ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-google-golang-org-grpc-1.23.1 + (package + (name "go-google-golang-org-grpc") + (version "1.23.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1d8gjjhrqbiq8pb56lb4x10hb752k7k06wspjvh7v0vpzmf25981")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" + ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) + ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" + ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) + ("go-google-golang-org-appengine-1.1.0" + ,go-google-golang-org-appengine-1.1.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-google-go-cmp-0.2.0" + ,go-github-com-google-go-cmp-0.2.0) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0) + ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-client9-misspell-0.3.4" + ,go-github-com-client9-misspell-0.3.4) + ("go-github-com-burntsushi-toml-0.3.1" + ,go-github-com-burntsushi-toml-0.3.1) + ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-github-com-microsoft-hcsshim-0.8.14 + (package + (name "go-github-com-microsoft-hcsshim") + (version "0.8.14") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/microsoft/hcsshim") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0k57knv8zrf32hp7rpv1km9j772w6752pfvdbpd3l711ism48c84")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/Microsoft/hcsshim")) + (propagated-inputs + `(("go-gotest-tools-2.2.0+incompatible" + ,go-gotest-tools-2.2.0+incompatible) + ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) + ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" + ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) + ("go-google-golang-org-grpc-1.23.1" ,go-google-golang-org-grpc-1.23.1) + ("go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873" + ,go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873) + ("go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3" + ,go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3) + ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" + ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) + ("go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9" + ,go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9) + ("go-go-opencensus-io-0.22.0" ,go-go-opencensus-io-0.22.0) + ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) + ("go-github-com-stretchr-testify-1.4.0" + ,go-github-com-stretchr-testify-1.4.0) + ("go-github-com-sirupsen-logrus-1.4.2" + ,go-github-com-sirupsen-logrus-1.4.2) + ("go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7" + ,go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-runtime-spec-1.0.2" + ,go-github-com-opencontainers-runtime-spec-1.0.2) + ("go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f" + ,go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f) + ("go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2" + ,go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2) + ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2) + ("go-github-com-gogo-protobuf-1.3.1" + ,go-github-com-gogo-protobuf-1.3.1) + ("go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd" + ,go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd) + ("go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de" + ,go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de) + ("go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3" + ,go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3) + ("go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448" + ,go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448) + ("go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc" + ,go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc) + ("go-github-com-containerd-containerd-1.3.2" + ,go-github-com-containerd-containerd-1.3.2) + ("go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1" + ,go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1) + ("go-github-com-containerd-cgroups-0.0.0-20200531161412-0dbf7f05ba59" + ,go-github-com-containerd-cgroups-0.0.0-20200531161412-0dbf7f05ba59) + ("go-github-com-microsoft-go-winio-0.4.16-0.20201130162521-d1ffc52c7331" + ,go-github-com-microsoft-go-winio-0.4.16-0.20201130162521-d1ffc52c7331))) + (home-page "https://github.com/Microsoft/hcsshim") + (synopsis "hcsshim") + (description + "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") + (license license:expat))) + +(define-public go-github-com-containerd-containerd-1.4.3 + (package + (name "go-github-com-containerd-containerd") + (version "1.4.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/containerd") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "09xvhjg5f8h90w1y94kqqnqzhbhd62dcdd9wb9sdqakisjk6zrl0")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/containerd")) + (home-page "https://github.com/containerd/containerd") + (synopsis "Now Recruiting") + (description + "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-typeurl-1.0.1 + (package + (name "go-github-com-containerd-typeurl") + (version "1.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/typeurl") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "09cgrchrw5d36zq0mc321l5qr2gfbdm1z1a3hhkhqr4qay6vglqn")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/typeurl")) + (propagated-inputs + `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-gogo-protobuf-1.3.1" + ,go-github-com-gogo-protobuf-1.3.1))) + (home-page "https://github.com/containerd/typeurl") + (synopsis "typeurl") + (description + "This package provides a Go package for managing the registration, marshaling, and unmarshaling of encoded types.") + (license license:asl2.0))) + +(define-public go-github-com-opencontainers-runc-1.0.0-rc9 + (package + (name "go-github-com-opencontainers-runc") + (version "1.0.0-rc9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/runc") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ss5b46cbbckyqlwgj8dbd5l59c5y0kp679hcpc0ybaj53pmwxj7")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/runc")) + (home-page "https://github.com/opencontainers/runc") + (synopsis "runc") + (description + "@code{runc} is a CLI tool for spawning and running containers according to the OCI specification.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-zfs-0.0.0-20210301145711-11e8f1707f62 + (package + (name "go-github-com-containerd-zfs") + (version "0.0.0-20210301145711-11e8f1707f62") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/zfs") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1919ax45a07v2y56xq5c0xihkn2c5zgyqv68rzx3x5cc20n2p8yg")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/zfs")) + (propagated-inputs + `(("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) + ("go-go-etcd-io-bbolt-1.3.3" ,go-go-etcd-io-bbolt-1.3.3) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-runc-1.0.0-rc9" + ,go-github-com-opencontainers-runc-1.0.0-rc9) + ("go-github-com-opencontainers-image-spec-1.0.1" + ,go-github-com-opencontainers-image-spec-1.0.1) + ("go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible" + ,go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible) + ("go-github-com-google-uuid-1.1.1" ,go-github-com-google-uuid-1.1.1) + ("go-github-com-gogo-protobuf-1.3.1" + ,go-github-com-gogo-protobuf-1.3.1) + ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" + ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) + ("go-github-com-containerd-typeurl-1.0.1" + ,go-github-com-containerd-typeurl-1.0.1) + ("go-github-com-containerd-ttrpc-1.0.2" + ,go-github-com-containerd-ttrpc-1.0.2) + ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" + ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) + ("go-github-com-containerd-containerd-1.4.3" + ,go-github-com-containerd-containerd-1.4.3) + ("go-github-com-microsoft-hcsshim-0.8.14" + ,go-github-com-microsoft-hcsshim-0.8.14))) + (home-page "https://github.com/containerd/zfs") + (synopsis "ZFS snapshotter plugin") + (description "ZFS snapshotter plugin for containerd.") + (license license:asl2.0))) + +(define-public go-github-com-containernetworking-cni-0.7.1 + (package + (name "go-github-com-containernetworking-cni") + (version "0.7.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containernetworking/cni") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "02qn1br8164d99978acalisy1sx294g1axnii4yh1wji0fc735xz")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containernetworking/cni")) + (home-page "https://github.com/containernetworking/cni") + (synopsis "CNI - the Container Network Interface") + (description + "CNI (), a @url{https://cncf.io,Cloud Native Computing Foundation} project, consists of a specification and libraries for writing plugins to configure network interfaces in Linux containers, along with a number of supported plugins. +CNI concerns itself only with network connectivity of containers and removing allocated resources when the container is deleted. +Because of this focus, CNI has a wide range of support and the specification is simple to implement.") + (license license:asl2.0))) + +(define-public go-github-com-coreos-go-iptables-0.4.5 + (package + (name "go-github-com-coreos-go-iptables") + (version "0.4.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/coreos/go-iptables") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "04iqh4hvvrrvjsfjyaa5bdyqklwzrzzy8yiyvja90hvv121f7975")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/coreos/go-iptables")) + (home-page "https://github.com/coreos/go-iptables") + (synopsis "go-iptables") + (description "Go bindings for iptables utility.") + (license license:asl2.0))) + +(define-public go-github-com-onsi-ginkgo-0.0.0-20151202141238-7f8ab55aaf3b + (package + (name "go-github-com-onsi-ginkgo") + (version "0.0.0-20151202141238-7f8ab55aaf3b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/onsi/ginkgo") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0nas6wqdym4jx42kw9wj80b58r69k9qhnvglz009lj34g5gba7rw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/onsi/ginkgo")) + (home-page "https://github.com/onsi/ginkgo") + (synopsis "Ginkgo 2.0 Release Candidate is available!") + (description "Ginkgo is a BDD-style testing framework for Golang +") + (license license:expat))) + +(define-public go-github-com-onsi-gomega-0.0.0-20151007035656-2152b45fa28a + (package + (name "go-github-com-onsi-gomega") + (version "0.0.0-20151007035656-2152b45fa28a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/onsi/gomega") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0amjlkawp84mmdqjgdamf93p1546cla6h4wwrx7hf5r862r2qcw2")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/onsi/gomega")) + (home-page "https://github.com/onsi/gomega") + (synopsis ": a BDD Testing Framework for Golang") + (description + "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library. +") + (license license:expat))) + +(define-public go-github-com-vishvananda-netlink-0.0.0-20181108222139-023a6dafdcdf + (package + (name "go-github-com-vishvananda-netlink") + (version "0.0.0-20181108222139-023a6dafdcdf") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/vishvananda/netlink") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1i5q8r8rg7lxzvq2vhbf25lrkzdlgficfv0bxg9rf7cgg6z819sn")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/vishvananda/netlink")) + (home-page "https://github.com/vishvananda/netlink") + (synopsis "netlink - netlink library for go") + (description + "Package netlink provides a simple library for netlink. Netlink is +the interface a user-space program in linux uses to communicate with +the kernel. It can be used to add and remove interfaces, set up ip +addresses and routes, and confiugre ipsec. Netlink communication +requires elevated privileges, so in most cases this code needs to +be run as root. The low level primitives for netlink are contained +in the nl subpackage. This package attempts to provide a high-level +interface that is loosly modeled on the iproute2 cli. +") + (license license:asl2.0))) + +(define-public go-github-com-vishvananda-netns-0.0.0-20180720170159-13995c7128cc + (package + (name "go-github-com-vishvananda-netns") + (version "0.0.0-20180720170159-13995c7128cc") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/vishvananda/netns") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1zk6w8158qi4niva5rijchbv9ixgmijsgqshh54wdaav4xrhjshn")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/vishvananda/netns")) + (home-page "https://github.com/vishvananda/netns") + (synopsis "netns - network namespaces in go") + (description + "Package netns allows ultra-simple network namespace handling. NsHandles +can be retrieved and set. Note that the current namespace is thread +local so actions that set and reset namespaces should use LockOSThread +to make sure the namespace doesn't change due to a goroutine switch. +It is best to close NsHandles when you are done with them. This can be +accomplished via a `defer ns.Close()` on the handle. Changing namespaces +requires elevated privileges, so in most cases this code needs to be run +as root. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-crypto-0.0.0-20181009213950-7c1a557ab941 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20181009213950-7c1a557ab941") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1f1q9mby8m7ws3gbj90v0prhnf4g2sgf74azmw31kzwd6azlar3m")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20181011144130-49bb7cea24b1 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20181011144130-49bb7cea24b1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "111q4qm3hcjvzvyv9y5rz8ydnyg48rckcygxqy6gv63q618wz6gn")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-github-com-containernetworking-plugins-0.8.6 + (package + (name "go-github-com-containernetworking-plugins") + (version "0.8.6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containernetworking/plugins") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0f1cqxjf26sy1c4aw6y7pyd9lrz0vknby4q5j6xj77a1pab9073m")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containernetworking/plugins")) + (propagated-inputs + `(("go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2" + ,go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2) + ("go-gopkg-in-airbrake-gobrake-v2-2.0.9" + ,go-gopkg-in-airbrake-gobrake-v2-2.0.9) + ("go-golang-org-x-sys-0.0.0-20190616124812-15dcb6c0061f" + ,go-golang-org-x-sys-0.0.0-20190616124812-15dcb6c0061f) + ("go-golang-org-x-net-0.0.0-20181011144130-49bb7cea24b1" + ,go-golang-org-x-net-0.0.0-20181011144130-49bb7cea24b1) + ("go-golang-org-x-crypto-0.0.0-20181009213950-7c1a557ab941" + ,go-golang-org-x-crypto-0.0.0-20181009213950-7c1a557ab941) + ("go-github-com-vishvananda-netns-0.0.0-20180720170159-13995c7128cc" + ,go-github-com-vishvananda-netns-0.0.0-20180720170159-13995c7128cc) + ("go-github-com-vishvananda-netlink-0.0.0-20181108222139-023a6dafdcdf" + ,go-github-com-vishvananda-netlink-0.0.0-20181108222139-023a6dafdcdf) + ("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0) + ("go-github-com-sirupsen-logrus-1.0.6" + ,go-github-com-sirupsen-logrus-1.0.6) + ("go-github-com-safchain-ethtool-0.0.0-20190326074333-42ed695e3de8" + ,go-github-com-safchain-ethtool-0.0.0-20190326074333-42ed695e3de8) + ("go-github-com-onsi-gomega-0.0.0-20151007035656-2152b45fa28a" + ,go-github-com-onsi-gomega-0.0.0-20151007035656-2152b45fa28a) + ("go-github-com-onsi-ginkgo-0.0.0-20151202141238-7f8ab55aaf3b" + ,go-github-com-onsi-ginkgo-0.0.0-20151202141238-7f8ab55aaf3b) + ("go-github-com-mattn-go-shellwords-1.0.3" + ,go-github-com-mattn-go-shellwords-1.0.3) + ("go-github-com-j-keck-arping-0.0.0-20160618110441-2cf9dc699c56" + ,go-github-com-j-keck-arping-0.0.0-20160618110441-2cf9dc699c56) + ("go-github-com-golang-protobuf-1.3.1" + ,go-github-com-golang-protobuf-1.3.1) + ("go-github-com-godbus-dbus-0.0.0-20180201030542-885f9cc04c9c" + ,go-github-com-godbus-dbus-0.0.0-20180201030542-885f9cc04c9c) + ("go-github-com-d2g-hardwareaddr-0.0.0-20190221164911-e7d9fbe030e4" + ,go-github-com-d2g-hardwareaddr-0.0.0-20190221164911-e7d9fbe030e4) + ("go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5" + ,go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5) + ("go-github-com-d2g-dhcp4client-1.0.0" + ,go-github-com-d2g-dhcp4client-1.0.0) + ("go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c" + ,go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c) + ("go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7" + ,go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7) + ("go-github-com-coreos-go-iptables-0.4.5" + ,go-github-com-coreos-go-iptables-0.4.5) + ("go-github-com-containernetworking-cni-0.7.1" + ,go-github-com-containernetworking-cni-0.7.1) + ("go-github-com-buger-jsonparser-0.0.0-20180808090653-f4dd9f5a6b44" + ,go-github-com-buger-jsonparser-0.0.0-20180808090653-f4dd9f5a6b44) + ("go-github-com-alexflint-go-filemutex-0.0.0-20171022225611-72bdc8eae2ae" + ,go-github-com-alexflint-go-filemutex-0.0.0-20171022225611-72bdc8eae2ae) + ("go-github-com-microsoft-hcsshim-0.8.6" + ,go-github-com-microsoft-hcsshim-0.8.6) + ("go-github-com-microsoft-go-winio-0.4.11" + ,go-github-com-microsoft-go-winio-0.4.11))) + (home-page "https://github.com/containernetworking/plugins") + (synopsis "Plugins") + (description + "Some CNI network plugins, maintained by the containernetworking team. For more information, see the @url{https://www.cni.dev,CNI website}.") + (license license:asl2.0))) + +(define-public go-github-com-imdario-mergo-0.3.11 + (package + (name "go-github-com-imdario-mergo") + (version "0.3.11") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/imdario/mergo") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "07iay9j3ry7qrflvn9bgyyggvwacl1s1in1cnbmsp1020ydkph8k")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/imdario/mergo")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.3.0" ,go-gopkg-in-yaml-v2-2.3.0))) + (home-page "https://github.com/imdario/mergo") + (synopsis "Mergo") + (description + "This package provides a helper to merge structs and maps in Golang. Useful for configuration default values, avoiding messy if-statements. +") + (license license:bsd-3))) + +(define-public go-github-com-klauspost-compress-1.11.3 + (package + (name "go-github-com-klauspost-compress") + (version "1.11.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/klauspost/compress") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "04wpilw6072fh2wd492ma1nw4br7bvz466mj0vi2m1g4w6d0z88z")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/klauspost/compress")) + (home-page "https://github.com/klauspost/compress") + (synopsis "compress") + (description "This package provides various compression algorithms.") + (license #f))) + +(define-public go-github-com-checkpoint-restore-go-criu-v4-4.1.0 + (package + (name "go-github-com-checkpoint-restore-go-criu-v4") + (version "4.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/checkpoint-restore/go-criu") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hfgjck015df5h44hczl3x4gg430saczgkl619cp0l6cpaxga5yi")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/checkpoint-restore/go-criu/v4")) + (propagated-inputs + `(("go-github-com-golang-protobuf-1.3.5" + ,go-github-com-golang-protobuf-1.3.5))) + (home-page "https://github.com/checkpoint-restore/go-criu") + (synopsis "go-criu -- Go bindings for") + (description + "This repository provides Go bindings for CRIU. The code is based on the Go based PHaul +implementation from the CRIU repository. For easier inclusion into other Go projects the +CRIU Go bindings have been moved to this repository.") + (license license:asl2.0))) + +(define-public go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200124204421-9fbb57f87de9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0qaz2jjkrxzgkapmjqingdwamrgq2aiblxvzzgrcsv2qhkj0wdps")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-cilium-ebpf-0.2.0 + (package + (name "go-github-com-cilium-ebpf") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cilium/ebpf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0f7my8n5v2c5cmgrcikgi0naamglr7c4khgxkbb1k5wl8mm9465a")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/cilium/ebpf")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9" + ,go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9) + ("go-github-com-google-go-cmp-0.5.2" + ,go-github-com-google-go-cmp-0.5.2))) + (home-page "https://github.com/cilium/ebpf") + (synopsis "eBPF") + (description "Package ebpf is a toolkit for working with eBPF programs. +") + (license license:expat))) + +(define-public go-github-com-opencontainers-runc-1.0.0-rc93 + (package + (name "go-github-com-opencontainers-runc") + (version "1.0.0-rc93") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/runc") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "008d5wkznic80n5q1vwx727qn5ifalc7cydq68hc1gk9wrhna4v4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/runc")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" + ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68) + ("go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b" + ,go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b) + ("go-github-com-willf-bitset-1.1.11" + ,go-github-com-willf-bitset-1.1.11) + ("go-github-com-vishvananda-netlink-1.1.0" + ,go-github-com-vishvananda-netlink-1.1.0) + ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) + ("go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635" + ,go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635) + ("go-github-com-sirupsen-logrus-1.7.0" + ,go-github-com-sirupsen-logrus-1.7.0) + ("go-github-com-seccomp-libseccomp-golang-0.9.1" + ,go-github-com-seccomp-libseccomp-golang-0.9.1) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-selinux-1.8.0" + ,go-github-com-opencontainers-selinux-1.8.0) + ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" + ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) + ("go-github-com-mrunalp-fileutils-0.5.0" + ,go-github-com-mrunalp-fileutils-0.5.0) + ("go-github-com-moby-sys-mountinfo-0.4.0" + ,go-github-com-moby-sys-mountinfo-0.4.0) + ("go-github-com-golang-protobuf-1.4.3" + ,go-github-com-golang-protobuf-1.4.3) + ("go-github-com-godbus-dbus-v5-5.0.3" + ,go-github-com-godbus-dbus-v5-5.0.3) + ("go-github-com-docker-go-units-0.4.0" + ,go-github-com-docker-go-units-0.4.0) + ("go-github-com-cyphar-filepath-securejoin-0.2.2" + ,go-github-com-cyphar-filepath-securejoin-0.2.2) + ("go-github-com-coreos-go-systemd-v22-22.1.0" + ,go-github-com-coreos-go-systemd-v22-22.1.0) + ("go-github-com-containerd-console-1.0.1" + ,go-github-com-containerd-console-1.0.1) + ("go-github-com-cilium-ebpf-0.2.0" ,go-github-com-cilium-ebpf-0.2.0) + ("go-github-com-checkpoint-restore-go-criu-v4-4.1.0" + ,go-github-com-checkpoint-restore-go-criu-v4-4.1.0))) + (home-page "https://github.com/opencontainers/runc") + (synopsis "runc") + (description + "@code{runc} is a CLI tool for spawning and running containers according to the OCI specification.") + (license license:asl2.0))) + +(define-public go-github-com-willf-bitset-1.1.11 + (package + (name "go-github-com-willf-bitset") + (version "1.1.11") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/bits-and-blooms/bitset") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1v7wnikdxiyhwdxnsj2wcrsrsi1kb2ssmarvbrda90vmxzafjl7d")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/willf/bitset")) + (home-page "https://github.com/willf/bitset") + (synopsis "bitset") + (description + "Package bitset implements bitsets, a mapping +between non-negative integers and boolean values. It should be more +efficient than map[uint] bool. +") + (license license:bsd-3))) + +(define-public go-github-com-opencontainers-selinux-1.8.0 + (package + (name "go-github-com-opencontainers-selinux") + (version "1.8.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/selinux") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "08aakiva619hk4lgfvyi6kpjgw7hfirs0jlc2jdgzcv7p0gfhbmx")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/selinux")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777" + ,go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777) + ("go-github-com-willf-bitset-1.1.11" + ,go-github-com-willf-bitset-1.1.11) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) + (home-page "https://github.com/opencontainers/selinux") + (synopsis "selinux") + (description "Common SELinux package used across the container ecosystem.") + (license license:asl2.0))) + +(define-public go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.14 + (package + (name "go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client") + (version "0.0.14") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes-sigs/apiserver-network-proxy") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0px41x5apgcssmwmx75cwm000s8b8pgd84dxn56maxx223dzz9vm")))) + (build-system go-build-system) + (arguments + '(#:import-path + "sigs.k8s.io/apiserver-network-proxy/konnectivity-client")) + (propagated-inputs + `(("go-k8s-io-klog-v2-2.0.0" ,go-k8s-io-klog-v2-2.0.0) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-github-com-golang-protobuf-1.4.0" + ,go-github-com-golang-protobuf-1.4.0))) + (home-page + "https://sigs.k8s.io/apiserver-network-proxy/konnectivity-client") + (synopsis #f) + (description #f) + (license license:asl2.0))) + +(define-public go-k8s-io-apiserver-0.20.1 + (package + (name "go-k8s-io-apiserver") + (version "0.20.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes/apiserver") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03k8kjisscj59i410kk2bz0qfpxa2d2vbwxiwyn93k7a2avbn7cs")))) + (build-system go-build-system) + (arguments '(#:import-path "k8s.io/apiserver")) + (propagated-inputs + `(("go-k8s-io-component-base-0.20.1" ,go-k8s-io-component-base-0.20.1) + ("go-k8s-io-client-go-0.20.1" ,go-k8s-io-client-go-0.20.1) + ("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) + ("go-k8s-io-api-0.20.1" ,go-k8s-io-api-0.20.1) + ("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) + ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.2" + ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.2) + ("go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.14" + ,go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.14) + ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" + ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) + ("go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd" + ,go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd) + ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) + ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) + ("go-gopkg-in-square-go-jose-v2-2.2.2" + ,go-gopkg-in-square-go-jose-v2-2.2.2) + ("go-gopkg-in-natefinch-lumberjack-v2-2.0.0" + ,go-gopkg-in-natefinch-lumberjack-v2-2.0.0) + ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) + ("go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a" + ,go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a) + ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" + ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) + ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" + ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) + ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" + ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) + ("go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0" + ,go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0) + ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) + ("go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489" + ,go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489) + ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) + ("go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5" + ,go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) + ("go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021" + ,go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822" + ,go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822) + ("go-github-com-mailru-easyjson-0.7.0" + ,go-github-com-mailru-easyjson-0.7.0) + ("go-github-com-hashicorp-golang-lru-0.5.1" + ,go-github-com-hashicorp-golang-lru-0.5.1) + ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" + ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) + ("go-github-com-gorilla-websocket-1.4.2" + ,go-github-com-gorilla-websocket-1.4.2) + ("go-github-com-googleapis-gnostic-0.4.1" + ,go-github-com-googleapis-gnostic-0.4.1) + ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) + ("go-github-com-google-gofuzz-1.1.0" + ,go-github-com-google-gofuzz-1.1.0) + ("go-github-com-google-go-cmp-0.5.2" + ,go-github-com-google-go-cmp-0.5.2) + ("go-github-com-gogo-protobuf-1.3.1" + ,go-github-com-gogo-protobuf-1.3.1) + ("go-github-com-go-openapi-spec-0.19.3" + ,go-github-com-go-openapi-spec-0.19.3) + ("go-github-com-evanphx-json-patch-4.9.0+incompatible" + ,go-github-com-evanphx-json-patch-4.9.0+incompatible) + ("go-github-com-emicklei-go-restful-2.9.5+incompatible" + ,go-github-com-emicklei-go-restful-2.9.5+incompatible) + ("go-github-com-dustin-go-humanize-1.0.0" + ,go-github-com-dustin-go-humanize-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1) + ("go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f" + ,go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f) + ("go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e" + ,go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e) + ("go-github-com-coreos-go-semver-0.3.0" + ,go-github-com-coreos-go-semver-0.3.0) + ("go-github-com-coreos-go-oidc-2.1.0+incompatible" + ,go-github-com-coreos-go-oidc-2.1.0+incompatible))) + (home-page "https://k8s.io/apiserver") + (synopsis "apiserver") + (description + "Generic library for building a Kubernetes aggregated API server.") + (license license:asl2.0))) + +(define-public go-k8s-io-api-0.20.1 + (package + (name "go-k8s-io-api") + (version "0.20.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes/api") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "051nl7g66k0jkc9rmfbvwdsmqkn36nq71kvnfym3lhnjcgg53k0l")))) + (build-system go-build-system) + (arguments '(#:import-path "k8s.io/api")) + (propagated-inputs + `(("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-gogo-protobuf-1.3.1" + ,go-github-com-gogo-protobuf-1.3.1))) + (home-page "https://k8s.io/api") + (synopsis "api") + (description + "Schema of the external API types that are served by the Kubernetes API server.") + (license license:asl2.0))) + +(define-public go-k8s-io-apimachinery-0.20.1 + (package + (name "go-k8s-io-apimachinery") + (version "0.20.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes/apimachinery") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "15qc12lbzpd4lgajy0rv24b3ky4hhg5y1l37qxdfiakhz91didfw")))) + (build-system go-build-system) + (arguments '(#:import-path "k8s.io/apimachinery")) + (propagated-inputs + `(("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) + ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.2" + ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.2) + ("go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd" + ,go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd) + ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) + ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) + ("go-gopkg-in-inf-v0-0.9.1" ,go-gopkg-in-inf-v0-0.9.1) + ("go-google-golang-org-protobuf-1.25.0" + ,go-google-golang-org-protobuf-1.25.0) + ("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" + ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) + ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) + ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" + ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) + ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" + ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-onsi-gomega-1.7.0" ,go-github-com-onsi-gomega-1.7.0) + ("go-github-com-onsi-ginkgo-1.11.0" ,go-github-com-onsi-ginkgo-1.11.0) + ("go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f" + ,go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f) + ("go-github-com-modern-go-reflect2-1.0.1" + ,go-github-com-modern-go-reflect2-1.0.1) + ("go-github-com-json-iterator-go-1.1.10" + ,go-github-com-json-iterator-go-1.1.10) + ("go-github-com-hashicorp-golang-lru-0.5.1" + ,go-github-com-hashicorp-golang-lru-0.5.1) + ("go-github-com-googleapis-gnostic-0.4.1" + ,go-github-com-googleapis-gnostic-0.4.1) + ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) + ("go-github-com-google-gofuzz-1.1.0" + ,go-github-com-google-gofuzz-1.1.0) + ("go-github-com-google-go-cmp-0.5.2" + ,go-github-com-google-go-cmp-0.5.2) + ("go-github-com-golang-protobuf-1.4.3" + ,go-github-com-golang-protobuf-1.4.3) + ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" + ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) + ("go-github-com-gogo-protobuf-1.3.1" + ,go-github-com-gogo-protobuf-1.3.1) + ("go-github-com-fsnotify-fsnotify-1.4.9" + ,go-github-com-fsnotify-fsnotify-1.4.9) + ("go-github-com-evanphx-json-patch-4.9.0+incompatible" + ,go-github-com-evanphx-json-patch-4.9.0+incompatible) + ("go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153" + ,go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153) + ("go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96" + ,go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://k8s.io/apimachinery") + (synopsis "apimachinery") + (description + "Scheme, typing, encoding, decoding, and conversion packages for Kubernetes and Kubernetes-like API objects.") + (license license:asl2.0))) + +(define-public go-k8s-io-client-go-0.20.1 + (package + (name "go-k8s-io-client-go") + (version "0.20.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes/client-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "02jrzwwcrdlya91fga2wvf8dsl1yka3kky194dm6l9pmd754qwzs")))) + (build-system go-build-system) + (arguments '(#:import-path "k8s.io/client-go")) + (propagated-inputs + `(("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) + ("go-k8s-io-api-0.20.1" ,go-k8s-io-api-0.20.1) + ("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) + ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" + ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) + ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) + ("go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e" + ,go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e) + ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" + ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) + ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" + ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) + ("go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0" + ,go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) + ("go-github-com-peterbourgon-diskv-2.0.1+incompatible" + ,go-github-com-peterbourgon-diskv-2.0.1+incompatible) + ("go-github-com-imdario-mergo-0.3.5" + ,go-github-com-imdario-mergo-0.3.5) + ("go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7" + ,go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7) + ("go-github-com-googleapis-gnostic-0.4.1" + ,go-github-com-googleapis-gnostic-0.4.1) + ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) + ("go-github-com-google-gofuzz-1.1.0" + ,go-github-com-google-gofuzz-1.1.0) + ("go-github-com-google-go-cmp-0.5.2" + ,go-github-com-google-go-cmp-0.5.2) + ("go-github-com-golang-protobuf-1.4.3" + ,go-github-com-golang-protobuf-1.4.3) + ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" + ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) + ("go-github-com-gogo-protobuf-1.3.1" + ,go-github-com-gogo-protobuf-1.3.1) + ("go-github-com-evanphx-json-patch-4.9.0+incompatible" + ,go-github-com-evanphx-json-patch-4.9.0+incompatible) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1) + ("go-github-com-azure-go-autorest-autorest-adal-0.9.5" + ,go-github-com-azure-go-autorest-autorest-adal-0.9.5) + ("go-github-com-azure-go-autorest-autorest-0.11.1" + ,go-github-com-azure-go-autorest-autorest-0.11.1) + ("go-cloud-google-com-go-0.54.0" ,go-cloud-google-com-go-0.54.0))) + (home-page "https://k8s.io/client-go") + (synopsis "client-go") + (description + "Go clients for talking to a @url{http://kubernetes.io/,kubernetes} cluster.") + (license license:asl2.0))) + +(define-public go-k8s-io-component-base-0.20.1 + (package + (name "go-k8s-io-component-base") + (version "0.20.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes/component-base") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "05x3mv1lxh7s6ckfh1s9wwmb0n9rg14a9637ai9bhxdfps47sz0v")))) + (build-system go-build-system) + (arguments '(#:import-path "k8s.io/component-base")) + (propagated-inputs + `(("go-k8s-io-client-go-0.20.1" ,go-k8s-io-client-go-0.20.1) + ("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) + ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" + ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) + ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) + ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) + ("go-go-uber-org-multierr-1.1.0" ,go-go-uber-org-multierr-1.1.0) + ("go-go-uber-org-atomic-1.4.0" ,go-go-uber-org-atomic-1.4.0) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) + ("go-github-com-sirupsen-logrus-1.6.0" + ,go-github-com-sirupsen-logrus-1.6.0) + ("go-github-com-prometheus-procfs-0.2.0" + ,go-github-com-prometheus-procfs-0.2.0) + ("go-github-com-prometheus-common-0.10.0" + ,go-github-com-prometheus-common-0.10.0) + ("go-github-com-prometheus-client-model-0.2.0" + ,go-github-com-prometheus-client-model-0.2.0) + ("go-github-com-prometheus-client-golang-1.7.1" + ,go-github-com-prometheus-client-golang-1.7.1) + ("go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd" + ,go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd) + ("go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369" + ,go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369) + ("go-github-com-google-go-cmp-0.5.2" + ,go-github-com-google-go-cmp-0.5.2) + ("go-github-com-go-logr-logr-0.2.0" ,go-github-com-go-logr-logr-0.2.0) + ("go-github-com-blang-semver-3.5.1+incompatible" + ,go-github-com-blang-semver-3.5.1+incompatible))) + (home-page "https://k8s.io/component-base") + (synopsis "component-base") + (description + "Implement KEP 32: @url{https://github.com/kubernetes/enhancements/blob/master/keps/sig-cluster-lifecycle/wgs/783-component-base/README.md,https://github.com/kubernetes/enhancements/blob/master/keps/sig-cluster-lifecycle/wgs/783-component-base/README.md}") + (license license:asl2.0))) + +(define-public go-k8s-io-cri-api-0.20.1 + (package + (name "go-k8s-io-cri-api") + (version "0.20.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes/cri-api") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1r98d0kv42sijdg3404xx2g5jj0zixvfagkky2zla12p68ajm4xr")))) + (build-system go-build-system) + (arguments '(#:import-path "k8s.io/cri-api")) + (propagated-inputs + `(("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" + ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) + ("go-google-golang-org-protobuf-1.25.0" + ,go-google-golang-org-protobuf-1.25.0) + ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) + ("go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a" + ,go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a) + ("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" + ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) + ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) + ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" + ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) + ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" + ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-kr-pretty-0.2.0" ,go-github-com-kr-pretty-0.2.0) + ("go-github-com-google-go-cmp-0.5.2" + ,go-github-com-google-go-cmp-0.5.2) + ("go-github-com-golang-protobuf-1.4.3" + ,go-github-com-golang-protobuf-1.4.3) + ("go-github-com-gogo-protobuf-1.3.1" + ,go-github-com-gogo-protobuf-1.3.1) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://k8s.io/cri-api") + (synopsis "Purpose") + (description + "This repository contains the definitions for the Container Runtime Interface (CRI). +CRI is a plugin interface which enables kubelet to use a wide variety of container runtimes, +without the need to recompile. CRI consists of a protocol buffers and gRPC API.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-containerd-1.5.0-beta.3 + (package + (name "go-github-com-containerd-containerd") + (version "1.5.0-beta.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/containerd") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0fbd4llrwg5hi5adfkmfndma5y129yl9wwz3c3fjn7cfhc64hlqf")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/containerd")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) + ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) + ("go-github-com-golang-protobuf-1.3.5" + ,go-github-com-golang-protobuf-1.3.5) + ("go-github-com-gogo-googleapis-1.3.2" + ,go-github-com-gogo-googleapis-1.3.2) + ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" + ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) + ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) + ("go-k8s-io-cri-api-0.20.1" ,go-k8s-io-cri-api-0.20.1) + ("go-k8s-io-component-base-0.20.1" ,go-k8s-io-component-base-0.20.1) + ("go-k8s-io-client-go-0.20.1" ,go-k8s-io-client-go-0.20.1) + ("go-k8s-io-apiserver-0.20.1" ,go-k8s-io-apiserver-0.20.1) + ("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) + ("go-k8s-io-api-0.20.1" ,go-k8s-io-api-0.20.1) + ("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) + ("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" + ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) + ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" + ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) + ("go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b" + ,go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b) + ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) + ("go-github-com-tchap-go-patricia-2.2.6+incompatible" + ,go-github-com-tchap-go-patricia-2.2.6+incompatible) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-sirupsen-logrus-1.7.0" + ,go-github-com-sirupsen-logrus-1.7.0) + ("go-github-com-prometheus-client-golang-1.7.1" + ,go-github-com-prometheus-client-golang-1.7.1) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-selinux-1.8.0" + ,go-github-com-opencontainers-selinux-1.8.0) + ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" + ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) + ("go-github-com-opencontainers-runc-1.0.0-rc93" + ,go-github-com-opencontainers-runc-1.0.0-rc93) + ("go-github-com-opencontainers-image-spec-1.0.1" + ,go-github-com-opencontainers-image-spec-1.0.1) + ("go-github-com-opencontainers-go-digest-1.0.0" + ,go-github-com-opencontainers-go-digest-1.0.0) + ("go-github-com-moby-sys-symlink-0.1.0" + ,go-github-com-moby-sys-symlink-0.1.0) + ("go-github-com-moby-sys-mountinfo-0.4.0" + ,go-github-com-moby-sys-mountinfo-0.4.0) + ("go-github-com-klauspost-compress-1.11.3" + ,go-github-com-klauspost-compress-1.11.3) + ("go-github-com-imdario-mergo-0.3.11" + ,go-github-com-imdario-mergo-0.3.11) + ("go-github-com-hashicorp-go-multierror-1.0.0" + ,go-github-com-hashicorp-go-multierror-1.0.0) + ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" + ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) + ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) + ("go-github-com-google-go-cmp-0.5.4" + ,go-github-com-google-go-cmp-0.5.4) + ("go-github-com-gogo-protobuf-1.3.2" + ,go-github-com-gogo-protobuf-1.3.2) + ("go-github-com-fsnotify-fsnotify-1.4.9" + ,go-github-com-fsnotify-fsnotify-1.4.9) + ("go-github-com-emicklei-go-restful-2.9.5+incompatible" + ,go-github-com-emicklei-go-restful-2.9.5+incompatible) + ("go-github-com-docker-go-units-0.4.0" + ,go-github-com-docker-go-units-0.4.0) + ("go-github-com-docker-go-metrics-0.0.1" + ,go-github-com-docker-go-metrics-0.0.1) + ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" + ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1) + ("go-github-com-coreos-go-systemd-v22-22.1.0" + ,go-github-com-coreos-go-systemd-v22-22.1.0) + ("go-github-com-containernetworking-plugins-0.8.6" + ,go-github-com-containernetworking-plugins-0.8.6) + ("go-github-com-containerd-zfs-0.0.0-20210301145711-11e8f1707f62" + ,go-github-com-containerd-zfs-0.0.0-20210301145711-11e8f1707f62) + ("go-github-com-containerd-typeurl-1.0.1" + ,go-github-com-containerd-typeurl-1.0.1) + ("go-github-com-containerd-ttrpc-1.0.2" + ,go-github-com-containerd-ttrpc-1.0.2) + ("go-github-com-containerd-nri-0.0.0-20201007170849-eb1350a75164" + ,go-github-com-containerd-nri-0.0.0-20201007170849-eb1350a75164) + ("go-github-com-containerd-imgcrypt-1.0.4-0.20210301171431-0ae5c75f59ba" + ,go-github-com-containerd-imgcrypt-1.0.4-0.20210301171431-0ae5c75f59ba) + ("go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328" + ,go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328) + ("go-github-com-containerd-go-cni-1.0.1" + ,go-github-com-containerd-go-cni-1.0.1) + ("go-github-com-containerd-fifo-0.0.0-20201026212402-0724c46b320c" + ,go-github-com-containerd-fifo-0.0.0-20201026212402-0724c46b320c) + ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" + ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) + ("go-github-com-containerd-console-1.0.1" + ,go-github-com-containerd-console-1.0.1) + ("go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68" + ,go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68) + ("go-github-com-containerd-btrfs-0.0.0-20201111183144-404b9149801e" + ,go-github-com-containerd-btrfs-0.0.0-20201111183144-404b9149801e) + ("go-github-com-containerd-aufs-0.0.0-20201003224125-76a6863f2989" + ,go-github-com-containerd-aufs-0.0.0-20201003224125-76a6863f2989) + ("go-github-com-microsoft-hcsshim-test-0.0.0-20210227013316-43a75bb4edd3" + ,go-github-com-microsoft-hcsshim-test-0.0.0-20210227013316-43a75bb4edd3) + ("go-github-com-microsoft-hcsshim-0.8.15" + ,go-github-com-microsoft-hcsshim-0.8.15) + ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" + ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3) + ("go-github-com-burntsushi-toml-0.3.1" + ,go-github-com-burntsushi-toml-0.3.1))) + (home-page "https://github.com/containerd/containerd") + (synopsis "Now Recruiting") + (description + "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") + (license license:asl2.0))) + +(define-public go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee + (package + (name "go-github-com-spf13-cobra") + (version "0.0.2-0.20171109065643-2da4a54c5cee") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/spf13/cobra") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18qbrp774fx6dyibjcy9snld705gslq6z2sql1biyjahxkm1vpfy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/spf13/cobra")) + (home-page "https://github.com/spf13/cobra") + (synopsis "Table of Contents") + (description + "Package cobra is a commander providing a simple interface to create powerful modern CLI interfaces. +In addition to providing an interface, Cobra simultaneously provides a controller to organize your application code. +") + (license license:asl2.0))) + +(define-public go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95 + (package + (name "go-github-com-spf13-pflag") + (version "1.0.1-0.20171106142849-4c012f6dcd95") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/spf13/pflag") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0plmm67lkm25ir0lczwh7hmanyilrs1vxmbp8a0dyr282ji1dqm5")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/spf13/pflag")) + (home-page "https://github.com/spf13/pflag") + (synopsis "Description") + (description + "Package pflag is a drop-in replacement for Go's flag package, implementing +POSIX/GNU-style --flags. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20201201145000-ef89a241ccb3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0a8myxx2mvdr77a003gpy5jmdzbxbnrf5zppmpl4za4sspxlmwif")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e + (package + (name "go-github-com-containerd-continuity") + (version "0.0.0-20210208174643-50096c924a4e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/continuity") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1drmxbb2l4z12b19dq3vvh1ss7b4z8fq1n5g6c8ln13mjgz6cq48")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/continuity")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3" + ,go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3) + ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" + ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) + ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" + ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) + ("go-github-com-stretchr-testify-1.4.0" + ,go-github-com-stretchr-testify-1.4.0) + ("go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95" + ,go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95) + ("go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee" + ,go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee) + ("go-github-com-sirupsen-logrus-1.7.0" + ,go-github-com-sirupsen-logrus-1.7.0) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-go-digest-1.0.0" + ,go-github-com-opencontainers-go-digest-1.0.0) + ("go-github-com-inconshreveable-mousetrap-1.0.0" + ,go-github-com-inconshreveable-mousetrap-1.0.0) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0) + ("go-github-com-dustin-go-humanize-1.0.0" + ,go-github-com-dustin-go-humanize-1.0.0) + ("go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898" + ,go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898))) + (home-page "https://github.com/containerd/continuity") + (synopsis "continuity") + (description + "This package provides a transport-agnostic, filesystem metadata manifest system") + (license license:asl2.0))) + +(define-public go-github-com-containerd-zfs-1.0.0 + (package + (name "go-github-com-containerd-zfs") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/zfs") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "10shqmcdxlxxi90kwgs5cljz12589yz5cm78aimv9m4cgwiv3wl3")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/zfs")) + (propagated-inputs + `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible" + ,go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible) + ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" + ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) + ("go-github-com-containerd-containerd-1.5.0-beta.3" + ,go-github-com-containerd-containerd-1.5.0-beta.3))) + (home-page "https://github.com/containerd/zfs") + (synopsis "ZFS snapshotter plugin") + (description "ZFS snapshotter plugin for containerd.") + (license license:asl2.0))) + +(define-public go-github-com-microsoft-go-winio-0.4.11 + (package + (name "go-github-com-microsoft-go-winio") + (version "0.4.11") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/microsoft/go-winio") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "14y1gryr3pb3zy09v2g8dh89m363rfd9sch0wgbabh531hfx72vn")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/Microsoft/go-winio")) + (home-page "https://github.com/Microsoft/go-winio") + (synopsis "go-winio") + (description + "This repository contains utilities for efficiently performing Win32 IO operations in +Go. Currently, this is focused on accessing named pipes and other file handles, and +for using named pipes as a net transport.") + (license license:expat))) + +(define-public go-github-com-microsoft-hcsshim-0.8.6 + (package + (name "go-github-com-microsoft-hcsshim") + (version "0.8.6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/microsoft/hcsshim") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "05arx8y4b6rvhjcnwizhc8svzab3ld0njkgj8vijgs27az84z6pw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/Microsoft/hcsshim")) + (home-page "https://github.com/Microsoft/hcsshim") + (synopsis "hcsshim") + (description + "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") + (license license:expat))) + +(define-public go-github-com-alexflint-go-filemutex-0.0.0-20171022225611-72bdc8eae2ae + (package + (name "go-github-com-alexflint-go-filemutex") + (version "0.0.0-20171022225611-72bdc8eae2ae") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/alexflint/go-filemutex") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "082y6y9zv40q3kaqvsv6fyaw2fc42j0sn9z0dl9rbiz4szixj3c4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/alexflint/go-filemutex")) + (home-page "https://github.com/alexflint/go-filemutex") + (synopsis "FileMutex") + (description + "FileMutex is similar to @code{sync.RWMutex}, but also synchronizes across processes. +On Linux, OSX, and other POSIX systems it uses the flock system call. On windows +it uses the LockFileEx and UnlockFileEx system calls.") + (license license:expat))) + +(define-public go-github-com-buger-jsonparser-0.0.0-20180808090653-f4dd9f5a6b44 + (package + (name "go-github-com-buger-jsonparser") + (version "0.0.0-20180808090653-f4dd9f5a6b44") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/buger/jsonparser") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12qa2n33s7yz88ywpr3k9kg3b4gm6rqgnv28iyikyxw8h5jascz5")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/buger/jsonparser")) + (home-page "https://github.com/buger/jsonparser") + (synopsis + "Alternative JSON parser for Go (10x times faster standard library)") + (description + "It does not require you to know the structure of the payload (eg. create structs), and allows accessing fields by providing the path to them. It is up to @strong{10 times faster} than standard @code{encoding/json} package (depending on payload size and usage), @strong{allocates no memory}. See benchmarks below.") + (license license:expat))) + +(define-public go-github-com-containernetworking-cni-0.8.1 + (package + (name "go-github-com-containernetworking-cni") + (version "0.8.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containernetworking/cni") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ydzsiq6kfwjghf5dd4ld2rv3cxgbjq6c1523jxmib1phwf0s75z")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containernetworking/cni")) + (home-page "https://github.com/containernetworking/cni") + (synopsis "CNI - the Container Network Interface") + (description + "CNI (), a @url{https://cncf.io,Cloud Native Computing Foundation} project, consists of a specification and libraries for writing plugins to configure network interfaces in Linux containers, along with a number of supported plugins. +CNI concerns itself only with network connectivity of containers and removing allocated resources when the container is deleted. +Because of this focus, CNI has a wide range of support and the specification is simple to implement.") + (license license:asl2.0))) + +(define-public go-github-com-coreos-go-iptables-0.5.0 + (package + (name "go-github-com-coreos-go-iptables") + (version "0.5.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/coreos/go-iptables") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0syxjad9b3d19sjy7cy7zjpx5bx60yvbhidz8r9cdv43iqadxmp7")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/coreos/go-iptables")) + (home-page "https://github.com/coreos/go-iptables") + (synopsis "go-iptables") + (description "Go bindings for iptables utility.") + (license license:asl2.0))) + +(define-public go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c + (package + (name "go-github-com-d2g-dhcp4") + (version "0.0.0-20170904100407-a1d1b6c41b1c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/d2g/dhcp4") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "191hzw6yqzkm042h6miyycq3g0zrhqjhhpl27f8vhwzp4wanasiz")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/d2g/dhcp4")) + (home-page "https://github.com/d2g/dhcp4") + (synopsis "DHCP4 - A DHCP library written in Go.") + (description + "Warning: This library is still being developed. Function calls will change.") + (license license:bsd-3))) + +(define-public go-github-com-d2g-dhcp4client-1.0.0 + (package + (name "go-github-com-d2g-dhcp4client") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/d2g/dhcp4client") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1n4qrn7xsgvnshmddq56hr8g2si5vfmxi0wnp0w71lmdfsxvvx0q")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/d2g/dhcp4client")) + (home-page "https://github.com/d2g/dhcp4client") + (synopsis "dhcp4client") + (description "DHCP Client") + (license license:mpl2.0))) + +(define-public go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5 + (package + (name "go-github-com-d2g-dhcp4server") + (version "0.0.0-20181031114812-7d4a0a7f59a5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/d2g/dhcp4server") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03ibq32flr74pxfly1yca9qicb6f15xgl159jjg3svgnzfjpblwl")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/d2g/dhcp4server")) + (home-page "https://github.com/d2g/dhcp4server") + (synopsis "dhcp4server") + (description "DHCP Server") + (license license:mpl2.0))) + +(define-public go-github-com-d2g-hardwareaddr-0.0.0-20190221164911-e7d9fbe030e4 + (package + (name "go-github-com-d2g-hardwareaddr") + (version "0.0.0-20190221164911-e7d9fbe030e4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/d2g/hardwareaddr") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "09nm5py9xbb9klwhzqkf6786i3b59ynba78xkrv9jx4ari7ibh8q")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/d2g/hardwareaddr")) + (home-page "https://github.com/d2g/hardwareaddr") + (synopsis "hardwareaddr") + (description "Generate Hardware Addresses") + (license license:mpl2.0))) + +(define-public go-github-com-godbus-dbus-0.0.0-20180201030542-885f9cc04c9c + (package + (name "go-github-com-godbus-dbus") + (version "0.0.0-20180201030542-885f9cc04c9c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/godbus/dbus") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wjpaj4vr5lvpnwc5faf3qizd7zd2v9yq0fm0558wap1hiyqb8x8")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/godbus/dbus")) + (home-page "https://github.com/godbus/dbus") + (synopsis "dbus") + (description + "Package dbus implements bindings to the D-Bus message bus system. +") + (license license:bsd-2))) + +(define-public go-github-com-j-keck-arping-0.0.0-20160618110441-2cf9dc699c56 + (package + (name "go-github-com-j-keck-arping") + (version "0.0.0-20160618110441-2cf9dc699c56") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/j-keck/arping") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1bid8mpx3j4546ni0a6q5xyz7hb854g95qnxqmg5jzs9vrcird3c")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/j-keck/arping")) + (home-page "https://github.com/j-keck/arping") + (synopsis "arping") + (description + "Package arping is a native go library to ping a host per arp datagram, or query a host mac address +") + (license license:expat))) + +(define-public go-github-com-mattn-go-shellwords-1.0.3 + (package + (name "go-github-com-mattn-go-shellwords") + (version "1.0.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mattn/go-shellwords") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1pg7pl25wvpl2dbpyrv9p1r7prnqimxlf6136vn0dfm54j2x4mnr")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mattn/go-shellwords")) + (home-page "https://github.com/mattn/go-shellwords") + (synopsis "go-shellwords") + (description "Parse line as shell words.") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20190904154756-749cb33beabd + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190904154756-749cb33beabd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0dm3257q3rv2kyn5lmqqim2fqg634v6rhrqq4glvbk4wx4l3v337")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-nxadm-tail-1.4.4 + (package + (name "go-github-com-nxadm-tail") + (version "1.4.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/nxadm/tail") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1czmwqii0fc8v3ar5bwqpfanprkxg19waly405zlvcflzvj53wwc")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/nxadm/tail")) + (propagated-inputs + `(("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" + ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) + ("go-golang-org-x-sys-0.0.0-20190904154756-749cb33beabd" + ,go-golang-org-x-sys-0.0.0-20190904154756-749cb33beabd) + ("go-github-com-fsnotify-fsnotify-1.4.7" + ,go-github-com-fsnotify-fsnotify-1.4.7))) + (home-page "https://github.com/nxadm/tail") + (synopsis "tail functionality in Go") + (description + "nxadm/tail provides a Go library that emulates the features of the BSD `tail` +program. The library comes with full support for truncation/move detection as +it is designed to work with log rotation tools. The library works on all +operating systems supported by Go, including POSIX systems like Linux and +*BSD, and MS Windows. Go 1.9 is the oldest compiler release supported. +") + (license license:expat))) + +(define-public go-github-com-onsi-gomega-1.7.1 + (package + (name "go-github-com-onsi-gomega") + (version "1.7.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/onsi/gomega") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "06p3x0910cdaa64l7d44s728d4j3yhps315dlcvrbjzhljjj7mam")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/onsi/gomega")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.4" ,go-gopkg-in-yaml-v2-2.2.4) + ("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" + ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) + ("go-gopkg-in-fsnotify-v1-1.4.7" ,go-gopkg-in-fsnotify-v1-1.4.7) + ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e" + ,go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e) + ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" + ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) + ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" + ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) + ("go-github-com-onsi-ginkgo-1.6.0" ,go-github-com-onsi-ginkgo-1.6.0) + ("go-github-com-hpcloud-tail-1.0.0" ,go-github-com-hpcloud-tail-1.0.0) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0) + ("go-github-com-fsnotify-fsnotify-1.4.7" + ,go-github-com-fsnotify-fsnotify-1.4.7))) + (home-page "https://github.com/onsi/gomega") + (synopsis ": a BDD Testing Framework for Golang") + (description + "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library. +") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20191120155948-bd437916bb0e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1i8x26frmlin55k69k936zd1rp5sqnq14y5ms4rkxbfzhasdm2rx")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-onsi-ginkgo-1.12.1 + (package + (name "go-github-com-onsi-ginkgo") + (version "1.12.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/onsi/ginkgo") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0xs9724l2b0bwjwrvw5cs3akxaw0n1j5kyxrb1ggfsdjz0zmjcxh")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/onsi/ginkgo")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e" + ,go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e) + ("go-github-com-onsi-gomega-1.7.1" ,go-github-com-onsi-gomega-1.7.1) + ("go-github-com-nxadm-tail-1.4.4" ,go-github-com-nxadm-tail-1.4.4))) + (home-page "https://github.com/onsi/ginkgo") + (synopsis "Ginkgo 2.0 Release Candidate is available!") + (description "Ginkgo is a BDD-style testing framework for Golang +") + (license license:expat))) + +(define-public go-golang-org-x-net-0.0.0-20201006153459-a7d1128ccaa0 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20201006153459-a7d1128ccaa0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1iqqq7s95b2a29bspfxv68qnby8vwjvy9f8gl2262p6f9hhp21d2")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) + ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" + ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) + ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" + ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-github-com-onsi-gomega-1.10.3 + (package + (name "go-github-com-onsi-gomega") + (version "1.10.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/onsi/gomega") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1jvp5wlny86ncsqak5rz70qfn61y3ajc64w0hrj4840zgh90zb06")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/onsi/gomega")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.3.0" ,go-gopkg-in-yaml-v2-2.3.0) + ("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) + ("go-golang-org-x-net-0.0.0-20201006153459-a7d1128ccaa0" + ,go-golang-org-x-net-0.0.0-20201006153459-a7d1128ccaa0) + ("go-github-com-onsi-ginkgo-1.12.1" ,go-github-com-onsi-ginkgo-1.12.1) + ("go-github-com-golang-protobuf-1.4.2" + ,go-github-com-golang-protobuf-1.4.2))) + (home-page "https://github.com/onsi/gomega") + (synopsis ": a BDD Testing Framework for Golang") + (description + "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library. +") + (license license:expat))) + +(define-public go-github-com-safchain-ethtool-0.0.0-20190326074333-42ed695e3de8 + (package + (name "go-github-com-safchain-ethtool") + (version "0.0.0-20190326074333-42ed695e3de8") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/safchain/ethtool") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0n5hkrzc1bh46nidcssx4539kvcmgj501v3kzh2pljpg27509daj")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/safchain/ethtool")) + (home-page "https://github.com/safchain/ethtool") + (synopsis "ethtool go package") + (description + "Package ethtool aims to provide a library giving a simple access to the +Linux SIOCETHTOOL ioctl operations. It can be used to retrieve informations +from a network device like statistics, driver related informations or +even the peer of a VETH interface. +") + (license license:asl2.0))) + +(define-public go-github-com-sirupsen-logrus-1.0.6 + (package + (name "go-github-com-sirupsen-logrus") + (version "1.0.6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sirupsen/logrus") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "029irw2lsbqi944gdrbkwdw0m2794sqni4g21gsnmz142hbzds8c")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/sirupsen/logrus")) + (home-page "https://github.com/sirupsen/logrus") + (synopsis "Logrus") + (description + "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. +") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20200217220822-9197077df867 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200217220822-9197077df867") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1270yyiqzlgrsygp2j0qavh4agm4xjv3ljfpk4wgqgmg4ph1lmx1")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-vishvananda-netns-0.0.0-20200728191858-db3c7e526aae + (package + (name "go-github-com-vishvananda-netns") + (version "0.0.0-20200728191858-db3c7e526aae") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/vishvananda/netns") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1gx41r06by67q5yyyvjpr0cyqqs2pcksfaqxy0s36cx4vpjn5x9r")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/vishvananda/netns")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20200217220822-9197077df867" + ,go-golang-org-x-sys-0.0.0-20200217220822-9197077df867))) + (home-page "https://github.com/vishvananda/netns") + (synopsis "netns - network namespaces in go") + (description + "Package netns allows ultra-simple network namespace handling. NsHandles +can be retrieved and set. Note that the current namespace is thread +local so actions that set and reset namespaces should use LockOSThread +to make sure the namespace doesn't change due to a goroutine switch. +It is best to close NsHandles when you are done with them. This can be +accomplished via a `defer ns.Close()` on the handle. Changing namespaces +requires elevated privileges, so in most cases this code needs to be run +as root. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-sys-0.0.0-20200728102440-3e129f6d46b1 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200728102440-3e129f6d46b1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "02wcaghvpysqijiqsiimk52vma7lx99g5kvdid2r1qsf9hmwgvy2")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-vishvananda-netlink-1.1.1-0.20201029203352-d40f9887b852 + (package + (name "go-github-com-vishvananda-netlink") + (version "1.1.1-0.20201029203352-d40f9887b852") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/vishvananda/netlink") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1aq13npm7vd153vxrk1vhsg36r2g9hrh21cvk422ssrf57qy2fsj")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/vishvananda/netlink")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20200728102440-3e129f6d46b1" + ,go-golang-org-x-sys-0.0.0-20200728102440-3e129f6d46b1) + ("go-github-com-vishvananda-netns-0.0.0-20200728191858-db3c7e526aae" + ,go-github-com-vishvananda-netns-0.0.0-20200728191858-db3c7e526aae))) + (home-page "https://github.com/vishvananda/netlink") + (synopsis "netlink - netlink library for go") + (description + "Package netlink provides a simple library for netlink. Netlink is +the interface a user-space program in linux uses to communicate with +the kernel. It can be used to add and remove interfaces, set up ip +addresses and routes, and confiugre ipsec. Netlink communication +requires elevated privileges, so in most cases this code needs to +be run as root. The low level primitives for netlink are contained +in the nl subpackage. This package attempts to provide a high-level +interface that is loosly modeled on the iproute2 cli. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-sys-0.0.0-20201117170446-d9b008d0a637 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20201117170446-d9b008d0a637") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "06pp1nrhzx6nm6rwwzm0xzf8bs3r1mfsrkclyhlhnr7x5r0a0ppi")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-gopkg-in-airbrake-gobrake-v2-2.0.9 + (package + (name "go-gopkg-in-airbrake-gobrake-v2") + (version "2.0.9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/airbrake/gobrake.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1x06f7n7qlyzqgyz0sdfcidf3w4ldn6zs6qx2mhibggk2z4whcjw")))) + (build-system go-build-system) + (arguments + '(#:import-path + "gopkg.in/airbrake/gobrake.v2" + #:unpack-path + "gopkg.in/airbrake/gobrake.v2")) + (home-page "https://gopkg.in/airbrake/gobrake.v2") + (synopsis "Airbrake Golang Notifier") + (description + "You can use @url{https://github.com/airbrake/glog,glog fork} to send your logs to Airbrake.") + (license license:bsd-3))) + +(define-public go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2 + (package + (name "go-gopkg-in-gemnasium-logrus-airbrake-hook-v2") + (version "2.1.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/gemnasium/logrus-airbrake-hook.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0sbg0dn6cysmf8f2bi209jwl4jnpiwp4rdghnxlzirw3c32ms5y5")))) + (build-system go-build-system) + (arguments + '(#:import-path + "gopkg.in/gemnasium/logrus-airbrake-hook.v2" + #:unpack-path + "gopkg.in/gemnasium/logrus-airbrake-hook.v2")) + (home-page "https://gopkg.in/gemnasium/logrus-airbrake-hook.v2") + (synopsis "Airbrake Hook for Logrus") + (description + "Use this hook to send your errors to @url{https://airbrake.io/,Airbrake}. +This hook is using the @url{https://github.com/airbrake/gobrake,official airbrake go package}, and will hit the api V3. +The hook is synchronous and will send the error for @code{log.Error}, @code{log.Fatal} and @code{log.Panic} levels.") + (license license:expat))) + +(define-public go-github-com-containernetworking-plugins-0.9.1 + (package + (name "go-github-com-containernetworking-plugins") + (version "0.9.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containernetworking/plugins") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "17rafngfa9b0ybs3j4lvjjqdva6jkamhnbb1n0qnv685g0asvqwz")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containernetworking/plugins")) + (propagated-inputs + `(("go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2" + ,go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2) + ("go-gopkg-in-airbrake-gobrake-v2-2.0.9" + ,go-gopkg-in-airbrake-gobrake-v2-2.0.9) + ("go-golang-org-x-sys-0.0.0-20201117170446-d9b008d0a637" + ,go-golang-org-x-sys-0.0.0-20201117170446-d9b008d0a637) + ("go-github-com-vishvananda-netlink-1.1.1-0.20201029203352-d40f9887b852" + ,go-github-com-vishvananda-netlink-1.1.1-0.20201029203352-d40f9887b852) + ("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0) + ("go-github-com-sirupsen-logrus-1.0.6" + ,go-github-com-sirupsen-logrus-1.0.6) + ("go-github-com-safchain-ethtool-0.0.0-20190326074333-42ed695e3de8" + ,go-github-com-safchain-ethtool-0.0.0-20190326074333-42ed695e3de8) + ("go-github-com-onsi-gomega-1.10.3" ,go-github-com-onsi-gomega-1.10.3) + ("go-github-com-onsi-ginkgo-1.12.1" ,go-github-com-onsi-ginkgo-1.12.1) + ("go-github-com-mattn-go-shellwords-1.0.3" + ,go-github-com-mattn-go-shellwords-1.0.3) + ("go-github-com-j-keck-arping-0.0.0-20160618110441-2cf9dc699c56" + ,go-github-com-j-keck-arping-0.0.0-20160618110441-2cf9dc699c56) + ("go-github-com-godbus-dbus-0.0.0-20180201030542-885f9cc04c9c" + ,go-github-com-godbus-dbus-0.0.0-20180201030542-885f9cc04c9c) + ("go-github-com-d2g-hardwareaddr-0.0.0-20190221164911-e7d9fbe030e4" + ,go-github-com-d2g-hardwareaddr-0.0.0-20190221164911-e7d9fbe030e4) + ("go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5" + ,go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5) + ("go-github-com-d2g-dhcp4client-1.0.0" + ,go-github-com-d2g-dhcp4client-1.0.0) + ("go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c" + ,go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c) + ("go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7" + ,go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7) + ("go-github-com-coreos-go-iptables-0.5.0" + ,go-github-com-coreos-go-iptables-0.5.0) + ("go-github-com-containernetworking-cni-0.8.1" + ,go-github-com-containernetworking-cni-0.8.1) + ("go-github-com-buger-jsonparser-0.0.0-20180808090653-f4dd9f5a6b44" + ,go-github-com-buger-jsonparser-0.0.0-20180808090653-f4dd9f5a6b44) + ("go-github-com-alexflint-go-filemutex-0.0.0-20171022225611-72bdc8eae2ae" + ,go-github-com-alexflint-go-filemutex-0.0.0-20171022225611-72bdc8eae2ae) + ("go-github-com-microsoft-hcsshim-0.8.6" + ,go-github-com-microsoft-hcsshim-0.8.6) + ("go-github-com-microsoft-go-winio-0.4.11" + ,go-github-com-microsoft-go-winio-0.4.11))) + (home-page "https://github.com/containernetworking/plugins") + (synopsis "Plugins") + (description + "Some CNI network plugins, maintained by the containernetworking team. For more information, see the @url{https://www.cni.dev,CNI website}.") + (license license:asl2.0))) + +(define-public go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c + (package + (name "go-github-com-docker-go-events") + (version "0.0.0-20190806004212-e31b211e4f1c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/docker/go-events") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "09gm4z43g23isbklabnsnfb87bwf8kjdgvvyi3vfjq2bqdjdg7cl")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/docker/go-events")) + (home-page "https://github.com/docker/go-events") + (synopsis "Docker Events Package") + (description + "The Docker @code{events} package implements a composable event distribution package +for Go.") + (license license:asl2.0))) + +(define-public go-github-com-prometheus-common-0.6.0 + (package + (name "go-github-com-prometheus-common") + (version "0.6.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/common") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1q16br348117ffycxdwsldb0i39p34miclfa8z93k6vjwnrqbh2l")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/common")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1) + ("go-gopkg-in-alecthomas-kingpin-v2-2.2.6" + ,go-gopkg-in-alecthomas-kingpin-v2-2.2.6) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980" + ,go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980) + ("go-github-com-sirupsen-logrus-1.2.0" + ,go-github-com-sirupsen-logrus-1.2.0) + ("go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90" + ,go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90) + ("go-github-com-prometheus-client-golang-1.0.0" + ,go-github-com-prometheus-client-golang-1.0.0) + ("go-github-com-pkg-errors-0.8.0" ,go-github-com-pkg-errors-0.8.0) + ("go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223" + ,go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223) + ("go-github-com-matttproud-golang-protobuf-extensions-1.0.1" + ,go-github-com-matttproud-golang-protobuf-extensions-1.0.1) + ("go-github-com-julienschmidt-httprouter-1.2.0" + ,go-github-com-julienschmidt-httprouter-1.2.0) + ("go-github-com-golang-protobuf-1.3.1" + ,go-github-com-golang-protobuf-1.3.1) + ("go-github-com-go-logfmt-logfmt-0.4.0" + ,go-github-com-go-logfmt-logfmt-0.4.0) + ("go-github-com-go-kit-kit-0.8.0" ,go-github-com-go-kit-kit-0.8.0))) + (home-page "https://github.com/prometheus/common") + (synopsis "Common") + (description + "This repository contains Go libraries that are shared across Prometheus +components and libraries. They are considered internal to Prometheus, without +any stability guarantees for external usage.") + (license license:asl2.0))) + +(define-public go-github-com-prometheus-procfs-0.0.3 + (package + (name "go-github-com-prometheus-procfs") + (version "0.0.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/procfs") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18c4m795fwng8f8qa395f3crvamlbk5y5afk8b5rzyisnmjq774y")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/procfs")) + (propagated-inputs + `(("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" + ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) + ("go-github-com-google-go-cmp-0.3.0" + ,go-github-com-google-go-cmp-0.3.0))) + (home-page "https://github.com/prometheus/procfs") + (synopsis "procfs") + (description + "Package procfs provides functions to retrieve system, kernel and process +metrics from the pseudo-filesystem proc. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-sys-0.0.0-20190801041406-cbf593c0f2f3 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190801041406-cbf593c0f2f3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1zmcmckinhclcwlvznjqvs31aww8jnf6pjm9is0nq8lqlvipg5ls")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-prometheus-client-golang-1.1.0 + (package + (name "go-github-com-prometheus-client-golang") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/client_golang") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1r0irxkmfnj6ininb06w6ybknini5lz02idawrbkk2i5lq1qcvvf")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/client_golang")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190801041406-cbf593c0f2f3" + ,go-golang-org-x-sys-0.0.0-20190801041406-cbf593c0f2f3) + ("go-github-com-prometheus-procfs-0.0.3" + ,go-github-com-prometheus-procfs-0.0.3) + ("go-github-com-prometheus-common-0.6.0" + ,go-github-com-prometheus-common-0.6.0) + ("go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90" + ,go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90) + ("go-github-com-json-iterator-go-1.1.7" + ,go-github-com-json-iterator-go-1.1.7) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2) + ("go-github-com-beorn7-perks-1.0.1" + ,go-github-com-beorn7-perks-1.0.1))) + (home-page "https://github.com/prometheus/client_golang") + (synopsis "Prometheus Go client library") + (description + "This is the @url{http://golang.org,Go} client library for +@url{http://prometheus.io,Prometheus}. It has two separate parts, one for +instrumenting application code, and one for creating clients that talk to the +Prometheus HTTP API.") + (license license:asl2.0))) + +(define-public go-github-com-docker-go-metrics-0.0.1 + (package + (name "go-github-com-docker-go-metrics") + (version "0.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/docker/go-metrics") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1b6f1889chmwlsgrqxylnks2jic16j2dqhsdd1dvaklk48ky95ga")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/docker/go-metrics")) + (propagated-inputs + `(("go-github-com-prometheus-client-golang-1.1.0" + ,go-github-com-prometheus-client-golang-1.1.0))) + (home-page "https://github.com/docker/go-metrics") + (synopsis "go-metrics") + (description + "This package is small wrapper around the prometheus go client to help enforce convention and best practices for metrics collection in Docker projects.") + (license (list license:asl2.0 license:cc-by-sa4.0)))) + +(define-public go-github-com-hashicorp-go-multierror-1.0.0 + (package + (name "go-github-com-hashicorp-go-multierror") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/go-multierror") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "00nyn8llqzbfm8aflr9kwsvpzi4kv8v45c141v88xskxp5xf6z49")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/go-multierror")) + (propagated-inputs + `(("go-github-com-hashicorp-errwrap-1.0.0" + ,go-github-com-hashicorp-errwrap-1.0.0))) + (home-page "https://github.com/hashicorp/go-multierror") + (synopsis "go-multierror") + (description + "@code{go-multierror} is a package for Go that provides a mechanism for +representing a list of @code{error} values as a single @code{error}.") + (license license:mpl2.0))) + +(define-public go-github-com-klauspost-compress-1.11.13 + (package + (name "go-github-com-klauspost-compress") + (version "1.11.13") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/klauspost/compress") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19l2rbh6vg0ly4qp2gn5lf39ijggf7asav7lxziikkhjqqb4223j")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/klauspost/compress")) + (home-page "https://github.com/klauspost/compress") + (synopsis "compress") + (description "This package provides various compression algorithms.") + (license #f))) + +(define-public go-github-com-moby-locker-1.0.1 + (package + (name "go-github-com-moby-locker") + (version "1.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/moby/locker") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "07rc2c6h35f9mcy81jp382a030f6xmcifi9n5jnlayybfwxmpjir")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/moby/locker")) + (home-page "https://github.com/moby/locker") + (synopsis "Locker") + (description + "Package locker provides a mechanism for creating finer-grained locking to help +free up more global locks to handle other tasks. +") + (license license:asl2.0))) + +(define-public go-github-com-pelletier-go-toml-1.8.1 + (package + (name "go-github-com-pelletier-go-toml") + (version "1.8.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pelletier/go-toml") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1pi1r9ds0vxjza4qrbk52y98wxrzh1ghwzc9c2v1w6i02pdwdcz9")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pelletier/go-toml")) + (propagated-inputs + `(("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/pelletier/go-toml") + (synopsis "go-toml") + (description "Package toml is a TOML parser and manipulation library. +") + (license #f))) + +(define-public go-github-com-prometheus-procfs-0.6.0 + (package + (name "go-github-com-prometheus-procfs") + (version "0.6.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/procfs") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0czzw37dq0sfq7rivxmxxw5hy287grqnng6q6hfz6mkqmhqgm1m6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/procfs")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" + ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) + ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" + ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) + ("go-github-com-google-go-cmp-0.5.4" + ,go-github-com-google-go-cmp-0.5.4))) + (home-page "https://github.com/prometheus/procfs") + (synopsis "procfs") + (description + "Package procfs provides functions to retrieve system, kernel and process +metrics from the pseudo-filesystem proc. +") + (license license:asl2.0))) + +(define-public go-github-com-satori-go-uuid-1.2.0 + (package + (name "go-github-com-satori-go-uuid") + (version "1.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/satori/go.uuid") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1j4s5pfg2ldm35y8ls8jah4dya2grfnx2drb4jcbjsyrp4cm5yfb")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/satori/go.uuid")) + (home-page "https://github.com/satori/go.uuid") + (synopsis "UUID package for Go language") + (description + "Package uuid provides implementation of Universally Unique Identifier (UUID). +Supported versions are 1, 3, 4 and 5 (as specified in @url{https://rfc-editor.org/rfc/rfc4122.html,RFC 4122}) and +version 2 (as specified in DCE 1.1). +") + (license license:expat))) + +(define-public go-github-com-tchap-go-patricia-2.2.6+incompatible + (package + (name "go-github-com-tchap-go-patricia") + (version "2.2.6+incompatible") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/tchap/go-patricia") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1yy1s3pnll52iyzphwi50drvz36lx628vn3xfy5ld29fxqngrckb")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/tchap/go-patricia")) + (home-page "https://github.com/tchap/go-patricia") + (synopsis "go-patricia") + (description + "@strong{Documentation}: @url{http://godoc.org/github.com/tchap/go-patricia/patricia,GoDoc} +@strong{Test Coverage}: @url{https://coveralls.io/r/tchap/go-patricia,(img (@ (src https://coveralls.io/repos/tchap/go-patricia/badge.png) (alt CoverageStatus)))}") + (license license:expat))) + +(define-public go-github-com-coreos-go-oidc-2.1.0+incompatible + (package + (name "go-github-com-coreos-go-oidc") + (version "2.1.0+incompatible") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/coreos/go-oidc") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0y9vxack1whvxy766jrc6xhh2rfkvnznwxi356si2kabzjv2lp6h")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/coreos/go-oidc")) + (home-page "https://github.com/coreos/go-oidc") + (synopsis "go-oidc") + (description + "Package oidc implements OpenID Connect client logic for the golang.org/x/oauth2 package. +") + (license license:asl2.0))) + +(define-public go-github-com-coreos-go-semver-0.3.0 + (package + (name "go-github-com-coreos-go-semver") + (version "0.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/coreos/go-semver") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0770h1mpig2j5sbiha3abnwaw8p6dg9i87r8pc7cf6m4kwml3sc9")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/coreos/go-semver")) + (home-page "https://github.com/coreos/go-semver") + (synopsis "go-semver - Semantic Versioning Library") + (description + "go-semver is a @url{http://semver.org/,semantic versioning} library for Go. It lets you parse +and compare two semantic version strings.") + (license license:asl2.0))) + +(define-public go-github-com-emicklei-go-restful-2.9.5+incompatible + (package + (name "go-github-com-emicklei-go-restful") + (version "2.9.5+incompatible") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/emicklei/go-restful") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0258y7q2krih98zznc4jsym9mf689afn6nsnsif1jhshrj653k36")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/emicklei/go-restful")) + (home-page "https://github.com/emicklei/go-restful") + (synopsis "go-restful") + (description + "Package restful , a lean package for creating REST-style WebServices without magic. +") + (license license:expat))) + +(define-public go-github-com-gorilla-websocket-1.4.2 + (package + (name "go-github-com-gorilla-websocket") + (version "1.4.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gorilla/websocket") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0mkm9w6kjkrlzab5wh8p4qxkc0icqawjbvr01d2nk6ykylrln40s")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/gorilla/websocket")) + (home-page "https://github.com/gorilla/websocket") + (synopsis "Gorilla WebSocket") + (description + "Package websocket implements the WebSocket protocol defined in @url{https://rfc-editor.org/rfc/rfc6455.html,RFC 6455}. +") + (license license:bsd-2))) + +(define-public go-github-com-mailru-easyjson-0.7.0 + (package + (name "go-github-com-mailru-easyjson") + (version "0.7.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mailru/easyjson") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "13zv5fvjp3nr65lhqhiw6i6mlmqvyls882rlmcas0ab35alsxni8")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mailru/easyjson")) + (home-page "https://github.com/mailru/easyjson") + (synopsis "easyjson") + (description + "Package easyjson contains marshaler/unmarshaler interfaces and helper functions. +") + (license license:expat))) + +(define-public go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822 + (package + (name "go-github-com-munnerz-goautoneg") + (version "0.0.0-20191010083416-a7dc8b61c822") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/munnerz/goautoneg") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1m4v6bw6yf1g0kvpc46isjp0qfhx2y8gnvlnyjf637jy64613mgg")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/munnerz/goautoneg")) + (home-page "https://github.com/munnerz/goautoneg") + (synopsis #f) + (description #f) + (license license:bsd-3))) + +(define-public go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021 + (package + (name "go-github-com-pquerna-cachecontrol") + (version "0.0.0-20171018203845-0dec1b30a021") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pquerna/cachecontrol") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "14yyfhrv60rvb983rqm7s916nwvn9kcmbvnrcna2md0s3mkzs3yh")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pquerna/cachecontrol")) + (home-page "https://github.com/pquerna/cachecontrol") + (synopsis "cachecontrol: HTTP Caching Parser and Interpretation") + (description + "Package cachecontrol implements the logic for HTTP Caching +") + (license license:asl2.0))) + +(define-public go-golang-org-x-sys-0.0.0-20200202164722-d101bd2416d5 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200202164722-d101bd2416d5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ksxf37b0ym21n8j29m3wgbaiw1kcjw3hgf88kipc1ry2j13l98p")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-go-etcd-io-bbolt-1.3.5 + (package + (name "go-go-etcd-io-bbolt") + (version "1.3.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/etcd-io/bbolt") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1h64gipvcg7060byv5wjlf524kqwj12p3v08kfh4ygv46vpm8p2r")))) + (build-system go-build-system) + (arguments '(#:import-path "go.etcd.io/bbolt")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20200202164722-d101bd2416d5" + ,go-golang-org-x-sys-0.0.0-20200202164722-d101bd2416d5))) + (home-page "https://go.etcd.io/bbolt") + (synopsis "bbolt") + (description + "package bbolt implements a low-level key/value store in pure Go. It supports +fully serializable transactions, ACID semantics, and lock-free MVCC with +multiple readers and a single writer. Bolt can be used for projects that +want a simple data store without the need to add large dependencies such as +Postgres or MySQL. +") + (license license:expat))) + +(define-public go-github-com-bgentry-speakeasy-0.1.0 + (package + (name "go-github-com-bgentry-speakeasy") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/bgentry/speakeasy") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "02dfrj0wyphd3db9zn2mixqxwiz1ivnyc5xc7gkz58l5l27nzp8s")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/bgentry/speakeasy")) + (home-page "https://github.com/bgentry/speakeasy") + (synopsis "Speakeasy") + (description + "This package provides cross-platform Go (#golang) helpers for taking user input +from the terminal while not echoing the input back (similar to @code{getpasswd}). The +package uses syscalls to avoid any dependence on cgo, and is therefore +compatible with cross-compiling.") + (license license:expat))) + +(define-public go-github-com-cockroachdb-datadriven-0.0.0-20190809214429-80d97fb3cbaa + (package + (name "go-github-com-cockroachdb-datadriven") + (version "0.0.0-20190809214429-80d97fb3cbaa") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cockroachdb/datadriven") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0rvavka9zhri6r50n8fy98247fl5vycb1hffjrhshsicjv1frmlp")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/cockroachdb/datadriven")) + (home-page "https://github.com/cockroachdb/datadriven") + (synopsis "Data-Driven Tests for Go") + (description + "This repository implements an extension of @url{https://github.com/golang/go/wiki/TableDrivenTests,Table-Driven Testing}. Instead of +building and iterating over a table in the test code, the input is further +separated into files (or inline strings). For certain classes of tests, this +can significantly reduce the friction involved in writing and reading these +tests.") + (license license:asl2.0))) + +(define-public go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7 + (package + (name "go-github-com-coreos-go-systemd") + (version "0.0.0-20180511133405-39ca1b05acc7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/coreos/go-systemd") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1kzqrrzqspa5qm7kwslxl3m16lqzns23c24rv474ajzwmj3ixmx1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/coreos/go-systemd")) + (home-page "https://github.com/coreos/go-systemd") + (synopsis "go-systemd") + (description "Go bindings to systemd. The project has several packages:") + (license license:asl2.0))) + +(define-public go-github-com-coreos-pkg-0.0.0-20160727233714-3ac0863d7acf + (package + (name "go-github-com-coreos-pkg") + (version "0.0.0-20160727233714-3ac0863d7acf") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/coreos/pkg") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0l5ans1ls2gknkrnhymgc0zbgg5nqjbjbqc51r611adcr0m6gg8l")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/coreos/pkg")) + (home-page "https://github.com/coreos/pkg") + (synopsis #f) + (description "a collection of go utility packages") + (license license:asl2.0))) + +(define-public go-github-com-creack-pty-1.1.7 + (package + (name "go-github-com-creack-pty") + (version "1.1.7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/creack/pty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1plwwlk1i9b80zv8zdplvv81shfyc9gf0flydnydsh5sr3ib5vrc")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/creack/pty")) + (home-page "https://github.com/creack/pty") + (synopsis "pty") + (description + "Package pty provides functions for working with Unix terminals. +") + (license license:expat))) + +(define-public go-github-com-dustin-go-humanize-0.0.0-20171111073723-bb3d318650d4 + (package + (name "go-github-com-dustin-go-humanize") + (version "0.0.0-20171111073723-bb3d318650d4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/dustin/go-humanize") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1lqd8ix3cb164j5iazjby2jpa6bdsflhy0h9mi4yldvvcvrc194c")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/dustin/go-humanize")) + (home-page "https://github.com/dustin/go-humanize") + (synopsis "Humane Units") + (description + "Package humanize converts boring ugly numbers to human-friendly strings and back. +") + (license license:expat))) + +(define-public go-github-com-fatih-color-1.7.0 + (package + (name "go-github-com-fatih-color") + (version "1.7.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/fatih/color") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0v8msvg38r8d1iiq2i5r4xyfx0invhc941kjrsg5gzwvagv55inv")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/fatih/color")) + (home-page "https://github.com/fatih/color") + (synopsis "color") + (description + "Package color is an ANSI color package to output colorized or SGR defined +output to the standard output. The API can be used in several way, pick one +that suits you. +") + (license license:expat))) + +(define-public go-github-com-golang-groupcache-0.0.0-20160516000752-02826c3e7903 + (package + (name "go-github-com-golang-groupcache") + (version "0.0.0-20160516000752-02826c3e7903") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/groupcache") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0w46bsllddfij66nrg8jbfjsr54birvfww8a2fj9fmgyig5syn2x")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/groupcache")) + (home-page "https://github.com/golang/groupcache") + (synopsis "groupcache") + (description + "Package groupcache provides a data loading mechanism with caching +and de-duplication that works across a set of peer processes. +") + (license license:asl2.0))) + +(define-public go-github-com-google-uuid-1.0.0 + (package + (name "go-github-com-google-uuid") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/uuid") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1922bjrnx66692dm0rrc1ckmznsaqx920ww4jzsds3xzrwf15mqv")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/uuid")) + (home-page "https://github.com/google/uuid") + (synopsis "uuid") + (description "Package uuid generates and inspects UUIDs. +") + (license license:bsd-3))) + +(define-public go-github-com-gorilla-websocket-0.0.0-20170926233335-4201258b820c + (package + (name "go-github-com-gorilla-websocket") + (version "0.0.0-20170926233335-4201258b820c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gorilla/websocket") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1kpdg3m46kp15ixl9ahhchhadyiblz0qpcxzylp8jhffc1rnxjb7")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/gorilla/websocket")) + (home-page "https://github.com/gorilla/websocket") + (synopsis "Gorilla WebSocket") + (description + "Package websocket implements the WebSocket protocol defined in @url{https://rfc-editor.org/rfc/rfc6455.html,RFC 6455}. +") + (license license:bsd-2))) + +(define-public go-github-com-grpc-ecosystem-go-grpc-middleware-1.0.1-0.20190118093823-f849b5445de4 + (package + (name "go-github-com-grpc-ecosystem-go-grpc-middleware") + (version "1.0.1-0.20190118093823-f849b5445de4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc-ecosystem/go-grpc-middleware") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hscypgj0nd1407jp6y4qrnrr0mrhc4wgxz9b3mj1cs3pkvi61vc")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/grpc-ecosystem/go-grpc-middleware")) + (home-page "https://github.com/grpc-ecosystem/go-grpc-middleware") + (synopsis "Go gRPC Middleware") + (description + "`grpc_middleware` is a collection of gRPC middleware packages: interceptors, helpers and tools. +") + (license license:asl2.0))) + +(define-public go-github-com-grpc-ecosystem-grpc-gateway-1.9.5 + (package + (name "go-github-com-grpc-ecosystem-grpc-gateway") + (version "1.9.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc-ecosystem/grpc-gateway") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0acpbxa1i1bxcpkclkcif2macbcfrlywb58vly5pzwsj261mg58a")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/grpc-ecosystem/grpc-gateway")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.0.0-20170812160011-eb3733d160e7" + ,go-gopkg-in-yaml-v2-2.0.0-20170812160011-eb3733d160e7) + ("go-gopkg-in-resty-v1-1.12.0" ,go-gopkg-in-resty-v1-1.12.0) + ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" + ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) + ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) + ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" + ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) + ("go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8" + ,go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8) + ("go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3" + ,go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3) + ("go-github-com-rogpeppe-fastuuid-0.0.0-20150106093220-6724a57986af" + ,go-github-com-rogpeppe-fastuuid-0.0.0-20150106093220-6724a57986af) + ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-ghodss-yaml-1.0.0" ,go-github-com-ghodss-yaml-1.0.0))) + (home-page "https://github.com/grpc-ecosystem/grpc-gateway") + (synopsis "grpc-gateway") + (description + "The grpc-gateway is a plugin of the Google protocol buffers compiler +@url{https://github.com/protocolbuffers/protobuf,protoc}. +It reads protobuf service definitions and generates a reverse-proxy server which +translates a RESTful HTTP API into gRPC. This server is generated according to the +@url{https://github.com/googleapis/googleapis/raw/master/google/api/http.proto#L46,(code google.api.http)} +annotations in your service definitions.") + (license license:bsd-3))) + +(define-public go-github-com-json-iterator-go-1.1.7 + (package + (name "go-github-com-json-iterator-go") + (version "1.1.7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/json-iterator/go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0n79p4s67zl5zprxv7diayw3vavnmmfqkmd6snz0i9bxp825dsyz")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/json-iterator/go")) + (propagated-inputs + `(("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0) + ("go-github-com-modern-go-reflect2-0.0.0-20180701023420-4b7aa43c6742" + ,go-github-com-modern-go-reflect2-0.0.0-20180701023420-4b7aa43c6742) + ("go-github-com-modern-go-concurrent-0.0.0-20180228061459-e0a39a4cb421" + ,go-github-com-modern-go-concurrent-0.0.0-20180228061459-e0a39a4cb421) + ("go-github-com-google-gofuzz-1.0.0" + ,go-github-com-google-gofuzz-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/json-iterator/go") + (synopsis "Benchmark") + (description + "Package jsoniter implements encoding and decoding of JSON as defined in +@url{https://rfc-editor.org/rfc/rfc4627.html,RFC 4627} and provides interfaces with identical syntax of standard lib encoding/json. +Converting from encoding/json to jsoniter is no more than replacing the package with jsoniter +and variable type declarations (if any). +jsoniter interfaces gives 100% compatibility with code using standard lib. +") + (license license:expat))) + +(define-public go-github-com-mattn-go-colorable-0.0.9 + (package + (name "go-github-com-mattn-go-colorable") + (version "0.0.9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mattn/go-colorable") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1nwjmsppsjicr7anq8na6md7b1z84l9ppnlr045hhxjvbkqwalvx")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mattn/go-colorable")) + (home-page "https://github.com/mattn/go-colorable") + (synopsis "go-colorable") + (description "Colorable writer for windows.") + (license license:expat))) + +(define-public go-github-com-mattn-go-isatty-0.0.4 + (package + (name "go-github-com-mattn-go-isatty") + (version "0.0.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mattn/go-isatty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0zs92j2cqaw9j8qx1sdxpv3ap0rgbs0vrvi72m40mg8aa36gd39w")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mattn/go-isatty")) + (home-page "https://github.com/mattn/go-isatty") + (synopsis "go-isatty") + (description "Package isatty implements interface to isatty +") + (license license:expat))) + +(define-public go-github-com-mattn-go-runewidth-0.0.2 + (package + (name "go-github-com-mattn-go-runewidth") + (version "0.0.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mattn/go-runewidth") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0vkrfrz3fzn5n6ix4k8s0cg0b448459sldq8bp4riavsxm932jzb")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mattn/go-runewidth")) + (home-page "https://github.com/mattn/go-runewidth") + (synopsis "go-runewidth") + (description + "This package provides functions to get fixed width of the character or string.") + (license license:expat))) + +(define-public go-github-com-olekukonko-tablewriter-0.0.0-20170122224234-a0225b3f23b5 + (package + (name "go-github-com-olekukonko-tablewriter") + (version "0.0.0-20170122224234-a0225b3f23b5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/olekukonko/tablewriter") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0bp9r6xzy6d3p7l2hjmvr25y3rp3p8c9xv1agkllkksm45ng6681")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/olekukonko/tablewriter")) + (home-page "https://github.com/olekukonko/tablewriter") + (synopsis "ASCII Table Writer") + (description "Create & Generate text based table +") + (license license:expat))) + +(define-public go-github-com-spf13-cobra-0.0.3 + (package + (name "go-github-com-spf13-cobra") + (version "0.0.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/spf13/cobra") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1q1nsx05svyv9fv3fy6xv6gs9ffimkyzsfm49flvl3wnvf1ncrkd")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/spf13/cobra")) + (home-page "https://github.com/spf13/cobra") + (synopsis "Table of Contents") + (description + "Package cobra is a commander providing a simple interface to create powerful modern CLI interfaces. +In addition to providing an interface, Cobra simultaneously provides a controller to organize your application code. +") + (license license:asl2.0))) + +(define-public go-github-com-spf13-pflag-1.0.1 + (package + (name "go-github-com-spf13-pflag") + (version "1.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/spf13/pflag") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0nr4mdpfhhk94hq4ymn5b2sxc47b29p1akxd8b0hx4dvdybmipb5")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/spf13/pflag")) + (home-page "https://github.com/spf13/pflag") + (synopsis "Description") + (description + "Package pflag is a drop-in replacement for Go's flag package, implementing +POSIX/GNU-style --flags. +") + (license license:bsd-3))) + +(define-public go-github-com-tmc-grpc-websocket-proxy-0.0.0-20170815181823-89b8d40f7ca8 + (package + (name "go-github-com-tmc-grpc-websocket-proxy") + (version "0.0.0-20170815181823-89b8d40f7ca8") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/tmc/grpc-websocket-proxy") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1bg6m0cycy5sww175zkbnhi9lvzb08iicc8xka8klrgaa9mc5nsk")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/tmc/grpc-websocket-proxy")) + (home-page "https://github.com/tmc/grpc-websocket-proxy") + (synopsis "grpc-websocket-proxy") + (description + "Wrap your grpc-gateway mux with this helper to expose streaming endpoints over websockets.") + (license license:expat))) + +(define-public go-github-com-urfave-cli-1.20.0 + (package + (name "go-github-com-urfave-cli") + (version "1.20.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/urfave/cli") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0y6f4sbzkiiwrxbl15biivj8c7qwxnvm3zl2dd3mw4wzg4x10ygj")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/urfave/cli")) + (home-page "https://github.com/urfave/cli") + (synopsis "cli") + (description + "Package cli provides a minimal framework for creating and organizing command line +Go applications. cli is designed to be easy to understand and write, the most simple +cli application can be written as follows: +") + (license license:expat))) + +(define-public go-go-etcd-io-bbolt-1.3.3 + (package + (name "go-go-etcd-io-bbolt") + (version "1.3.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/etcd-io/bbolt") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0dn0zngks9xiz0rrrb3911f73ghl64z84jsmzai2yfmzqr7cdkqc")))) + (build-system go-build-system) + (arguments '(#:import-path "go.etcd.io/bbolt")) + (home-page "https://go.etcd.io/bbolt") + (synopsis "bbolt") + (description + "package bbolt implements a low-level key/value store in pure Go. It supports +fully serializable transactions, ACID semantics, and lock-free MVCC with +multiple readers and a single writer. Bolt can be used for projects that +want a simple data store without the need to add large dependencies such as +Postgres or MySQL. +") + (license license:expat))) + +(define-public go-go-uber-org-atomic-1.3.2 + (package + (name "go-go-uber-org-atomic") + (version "1.3.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/uber-go/atomic") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "11pzvjys5ddjjgrv94pgk9pnip9yyb54z7idf33zk7p7xylpnsv6")))) + (build-system go-build-system) + (arguments '(#:import-path "go.uber.org/atomic")) + (home-page "https://go.uber.org/atomic") + (synopsis "atomic") + (description + "Package atomic provides simple wrappers around numerics to enforce atomic +access. +") + (license license:expat))) + +(define-public go-golang-org-x-net-0.0.0-20190813141303-74dc4d7220e7 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190813141303-74dc4d7220e7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0563yswwqknxx2gsvl0qikn0lmwalilbng8i12iw4d3v40n23s0l")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20190826190057-c7b8b68b1456 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190826190057-c7b8b68b1456") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0lqnnrx5prrvkinnhgyvzzhcyvi8x5w54rlp336xjhpslkgqn132")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-time-0.0.0-20180412165947-fbb02b2291d2 + (package + (name "go-golang-org-x-time") + (version "0.0.0-20180412165947-fbb02b2291d2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/time") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0jjqcv6rzihlgg4i797q80g1f6ch5diz2kxqh6488gwkb6nds4h4")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/time")) + (home-page "https://golang.org/x/time") + (synopsis "Go Time") + (description "This repository provides supplementary Go time packages.") + (license license:bsd-3))) + +(define-public go-gopkg-in-cheggaaa-pb-v1-1.0.25 + (package + (name "go-gopkg-in-cheggaaa-pb-v1") + (version "1.0.25") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/cheggaaa/pb.v1") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0vxqiw6f3xyv0zy3g4lksf8za0z8i0hvfpw92hqimsy84f79j3dp")))) + (build-system go-build-system) + (arguments + '(#:import-path + "gopkg.in/cheggaaa/pb.v1" + #:unpack-path + "gopkg.in/cheggaaa/pb.v1")) + (home-page "https://gopkg.in/cheggaaa/pb.v1") + (synopsis "Terminal progress bar for Go") + (description "Simple console progress bars +") + (license license:bsd-3))) + +(define-public go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489 + (package + (name "go-go-etcd-io-etcd") + (version "0.5.0-alpha.5.0.20200910180754-dd1b699fc489") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/etcd-io/etcd") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "11zkvkq7ipqi0n8y05zgn8lf7qm59xdk75x7jbxj5sflx38yfa0k")))) + (build-system go-build-system) + (arguments '(#:import-path "go.etcd.io/etcd")) + (propagated-inputs + `(("go-sigs-k8s-io-yaml-1.1.0" ,go-sigs-k8s-io-yaml-1.1.0) + ("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" + ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) + ("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) + ("go-gopkg-in-cheggaaa-pb-v1-1.0.25" + ,go-gopkg-in-cheggaaa-pb-v1-1.0.25) + ("go-google-golang-org-grpc-1.26.0" ,go-google-golang-org-grpc-1.26.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-time-0.0.0-20180412165947-fbb02b2291d2" + ,go-golang-org-x-time-0.0.0-20180412165947-fbb02b2291d2) + ("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) + ("go-golang-org-x-sys-0.0.0-20190826190057-c7b8b68b1456" + ,go-golang-org-x-sys-0.0.0-20190826190057-c7b8b68b1456) + ("go-golang-org-x-net-0.0.0-20190813141303-74dc4d7220e7" + ,go-golang-org-x-net-0.0.0-20190813141303-74dc4d7220e7) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2) + ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) + ("go-go-uber-org-multierr-1.1.0" ,go-go-uber-org-multierr-1.1.0) + ("go-go-uber-org-atomic-1.3.2" ,go-go-uber-org-atomic-1.3.2) + ("go-go-etcd-io-bbolt-1.3.3" ,go-go-etcd-io-bbolt-1.3.3) + ("go-github-com-xiang90-probing-0.0.0-20190116061207-43a291ad63a2" + ,go-github-com-xiang90-probing-0.0.0-20190116061207-43a291ad63a2) + ("go-github-com-urfave-cli-1.20.0" ,go-github-com-urfave-cli-1.20.0) + ("go-github-com-tmc-grpc-websocket-proxy-0.0.0-20170815181823-89b8d40f7ca8" + ,go-github-com-tmc-grpc-websocket-proxy-0.0.0-20170815181823-89b8d40f7ca8) + ("go-github-com-spf13-pflag-1.0.1" ,go-github-com-spf13-pflag-1.0.1) + ("go-github-com-spf13-cobra-0.0.3" ,go-github-com-spf13-cobra-0.0.3) + ("go-github-com-soheilhy-cmux-0.1.4" + ,go-github-com-soheilhy-cmux-0.1.4) + ("go-github-com-sirupsen-logrus-1.4.2" + ,go-github-com-sirupsen-logrus-1.4.2) + ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" + ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) + ("go-github-com-prometheus-client-golang-1.0.0" + ,go-github-com-prometheus-client-golang-1.0.0) + ("go-github-com-olekukonko-tablewriter-0.0.0-20170122224234-a0225b3f23b5" + ,go-github-com-olekukonko-tablewriter-0.0.0-20170122224234-a0225b3f23b5) + ("go-github-com-modern-go-reflect2-1.0.1" + ,go-github-com-modern-go-reflect2-1.0.1) + ("go-github-com-mattn-go-runewidth-0.0.2" + ,go-github-com-mattn-go-runewidth-0.0.2) + ("go-github-com-mattn-go-isatty-0.0.4" + ,go-github-com-mattn-go-isatty-0.0.4) + ("go-github-com-mattn-go-colorable-0.0.9" + ,go-github-com-mattn-go-colorable-0.0.9) + ("go-github-com-json-iterator-go-1.1.7" + ,go-github-com-json-iterator-go-1.1.7) + ("go-github-com-jonboulle-clockwork-0.1.0" + ,go-github-com-jonboulle-clockwork-0.1.0) + ("go-github-com-inconshreveable-mousetrap-1.0.0" + ,go-github-com-inconshreveable-mousetrap-1.0.0) + ("go-github-com-grpc-ecosystem-grpc-gateway-1.9.5" + ,go-github-com-grpc-ecosystem-grpc-gateway-1.9.5) + ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" + ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) + ("go-github-com-grpc-ecosystem-go-grpc-middleware-1.0.1-0.20190118093823-f849b5445de4" + ,go-github-com-grpc-ecosystem-go-grpc-middleware-1.0.1-0.20190118093823-f849b5445de4) + ("go-github-com-gorilla-websocket-0.0.0-20170926233335-4201258b820c" + ,go-github-com-gorilla-websocket-0.0.0-20170926233335-4201258b820c) + ("go-github-com-google-uuid-1.0.0" ,go-github-com-google-uuid-1.0.0) + ("go-github-com-google-btree-1.0.0" ,go-github-com-google-btree-1.0.0) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2) + ("go-github-com-golang-groupcache-0.0.0-20160516000752-02826c3e7903" + ,go-github-com-golang-groupcache-0.0.0-20160516000752-02826c3e7903) + ("go-github-com-gogo-protobuf-1.2.1" + ,go-github-com-gogo-protobuf-1.2.1) + ("go-github-com-fatih-color-1.7.0" ,go-github-com-fatih-color-1.7.0) + ("go-github-com-dustin-go-humanize-0.0.0-20171111073723-bb3d318650d4" + ,go-github-com-dustin-go-humanize-0.0.0-20171111073723-bb3d318650d4) + ("go-github-com-dgrijalva-jwt-go-3.2.0+incompatible" + ,go-github-com-dgrijalva-jwt-go-3.2.0+incompatible) + ("go-github-com-creack-pty-1.1.7" ,go-github-com-creack-pty-1.1.7) + ("go-github-com-coreos-pkg-0.0.0-20160727233714-3ac0863d7acf" + ,go-github-com-coreos-pkg-0.0.0-20160727233714-3ac0863d7acf) + ("go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7" + ,go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7) + ("go-github-com-coreos-go-semver-0.2.0" + ,go-github-com-coreos-go-semver-0.2.0) + ("go-github-com-cockroachdb-datadriven-0.0.0-20190809214429-80d97fb3cbaa" + ,go-github-com-cockroachdb-datadriven-0.0.0-20190809214429-80d97fb3cbaa) + ("go-github-com-bgentry-speakeasy-0.1.0" + ,go-github-com-bgentry-speakeasy-0.1.0))) + (home-page "https://go.etcd.io/etcd") + (synopsis "etcd") + (description + "Package main is a simple wrapper of the real etcd entrypoint package +(located at github.com/coreos/etcd/etcdmain) to ensure that etcd is still +\"go getable\"; e.g. `go get github.com/coreos/etcd` works as expected and +builds a binary in $GOBIN/etcd +") + (license license:asl2.0))) + +(define-public go-gopkg-in-natefinch-lumberjack-v2-2.0.0 + (package + (name "go-gopkg-in-natefinch-lumberjack-v2") + (version "2.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/natefinch/lumberjack.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1m2sxypk7p805jvc68padvylyx5v7cwkh5klnnxxr0340kgspf08")))) + (build-system go-build-system) + (arguments + '(#:import-path + "gopkg.in/natefinch/lumberjack.v2" + #:unpack-path + "gopkg.in/natefinch/lumberjack.v2")) + (home-page "https://gopkg.in/natefinch/lumberjack.v2") + (synopsis "lumberjack") + (description "Package lumberjack provides a rolling logger. +") + (license license:expat))) + +(define-public go-gopkg-in-square-go-jose-v2-2.2.2 + (package + (name "go-gopkg-in-square-go-jose-v2") + (version "2.2.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/square/go-jose.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1cpvfqw7pw8m8wfj8nda4kam0z48q3gp6b9a3a0wr90zv9ldszbv")))) + (build-system go-build-system) + (arguments + '(#:import-path + "gopkg.in/square/go-jose.v2" + #:unpack-path + "gopkg.in/square/go-jose.v2")) + (home-page "https://gopkg.in/square/go-jose.v2") + (synopsis "Go JOSE") + (description + "Package jose aims to provide an implementation of the Javascript Object Signing +and Encryption set of standards. It implements encryption and signing based on +the JSON Web Encryption and JSON Web Signature standards, with optional JSON +Web Token support available in a sub-package. The library supports both the +compact and full serialization formats, and has optional support for multiple +recipients. +") + (license license:asl2.0))) + +(define-public go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.15 + (package + (name "go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client") + (version "0.0.15") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes-sigs/apiserver-network-proxy") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "00ad9yjr3g1pj118xy063z7rnydkilqmvz9xf89vdva2kjqd7fal")))) + (build-system go-build-system) + (arguments + '(#:import-path + "sigs.k8s.io/apiserver-network-proxy/konnectivity-client")) + (propagated-inputs + `(("go-k8s-io-klog-v2-2.0.0" ,go-k8s-io-klog-v2-2.0.0) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-github-com-golang-protobuf-1.4.0" + ,go-github-com-golang-protobuf-1.4.0))) + (home-page + "https://sigs.k8s.io/apiserver-network-proxy/konnectivity-client") + (synopsis #f) + (description #f) + (license license:asl2.0))) + +(define-public go-k8s-io-apiserver-0.20.6 + (package + (name "go-k8s-io-apiserver") + (version "0.20.6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes/apiserver") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0b53aw2cp9i2v5kg1m2s5kwkz7525ii8vs1g7d8yc2j980aar9y3")))) + (build-system go-build-system) + (arguments '(#:import-path "k8s.io/apiserver")) + (propagated-inputs + `(("go-k8s-io-component-base-0.20.6" ,go-k8s-io-component-base-0.20.6) + ("go-k8s-io-client-go-0.20.6" ,go-k8s-io-client-go-0.20.6) + ("go-k8s-io-apimachinery-0.20.6" ,go-k8s-io-apimachinery-0.20.6) + ("go-k8s-io-api-0.20.6" ,go-k8s-io-api-0.20.6) + ("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) + ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.3" + ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.3) + ("go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.15" + ,go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.15) + ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" + ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) + ("go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd" + ,go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd) + ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) + ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) + ("go-gopkg-in-square-go-jose-v2-2.2.2" + ,go-gopkg-in-square-go-jose-v2-2.2.2) + ("go-gopkg-in-natefinch-lumberjack-v2-2.0.0" + ,go-gopkg-in-natefinch-lumberjack-v2-2.0.0) + ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) + ("go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a" + ,go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a) + ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" + ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) + ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" + ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) + ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" + ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) + ("go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0" + ,go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0) + ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) + ("go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489" + ,go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489) + ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) + ("go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5" + ,go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) + ("go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021" + ,go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822" + ,go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822) + ("go-github-com-mailru-easyjson-0.7.0" + ,go-github-com-mailru-easyjson-0.7.0) + ("go-github-com-hashicorp-golang-lru-0.5.1" + ,go-github-com-hashicorp-golang-lru-0.5.1) + ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" + ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) + ("go-github-com-gorilla-websocket-1.4.2" + ,go-github-com-gorilla-websocket-1.4.2) + ("go-github-com-googleapis-gnostic-0.4.1" + ,go-github-com-googleapis-gnostic-0.4.1) + ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) + ("go-github-com-google-gofuzz-1.1.0" + ,go-github-com-google-gofuzz-1.1.0) + ("go-github-com-google-go-cmp-0.5.2" + ,go-github-com-google-go-cmp-0.5.2) + ("go-github-com-gogo-protobuf-1.3.2" + ,go-github-com-gogo-protobuf-1.3.2) + ("go-github-com-go-openapi-spec-0.19.3" + ,go-github-com-go-openapi-spec-0.19.3) + ("go-github-com-evanphx-json-patch-4.9.0+incompatible" + ,go-github-com-evanphx-json-patch-4.9.0+incompatible) + ("go-github-com-emicklei-go-restful-2.9.5+incompatible" + ,go-github-com-emicklei-go-restful-2.9.5+incompatible) + ("go-github-com-dustin-go-humanize-1.0.0" + ,go-github-com-dustin-go-humanize-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1) + ("go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f" + ,go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f) + ("go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e" + ,go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e) + ("go-github-com-coreos-go-semver-0.3.0" + ,go-github-com-coreos-go-semver-0.3.0) + ("go-github-com-coreos-go-oidc-2.1.0+incompatible" + ,go-github-com-coreos-go-oidc-2.1.0+incompatible))) + (home-page "https://k8s.io/apiserver") + (synopsis "apiserver") + (description + "Generic library for building a Kubernetes aggregated API server.") + (license license:asl2.0))) + +(define-public go-github-com-blang-semver-3.5.1+incompatible + (package + (name "go-github-com-blang-semver") + (version "3.5.1+incompatible") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/blang/semver") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "13ws259bwcibkclbr82ilhk6zadm63kxklxhk12wayklj8ghhsmy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/blang/semver")) + (home-page "https://github.com/blang/semver") + (synopsis "semver for golang") + (description + "semver is a @url{http://semver.org/,Semantic Versioning} library written in golang. It fully covers spec version @code{2.0.0}.") + (license license:expat))) + +(define-public go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369 + (package + (name "go-github-com-matttproud-golang-protobuf-extensions") + (version "1.0.2-0.20181231171920-c182affec369") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/matttproud/golang_protobuf_extensions") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1xqsf9vpcrd4hp95rl6kgmjvkv1df4aicfw4l5vfcxcwxknfx2xs")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/matttproud/golang_protobuf_extensions")) + (propagated-inputs + `(("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" + ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0))) + (home-page "https://github.com/matttproud/golang_protobuf_extensions") + (synopsis "Overview") + (description + "This repository provides various Protocol Buffer extensions for the Go +language (golang), namely support for record length-delimited message +streaming.") + (license license:asl2.0))) + +(define-public go-github-com-azure-go-ansiterm-0.0.0-20170929234023-d6e3b3328b78 + (package + (name "go-github-com-azure-go-ansiterm") + (version "0.0.0-20170929234023-d6e3b3328b78") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/Azure/go-ansiterm") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "010khrkhkf9cxlvvb6ncqv4c1qcdmpbz9jn38g4fxf4xsma8xx1q")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/Azure/go-ansiterm")) + (home-page "https://github.com/Azure/go-ansiterm") + (synopsis "go-ansiterm") + (description + "This is a cross platform Ansi Terminal Emulation library. It reads a stream of Ansi characters and produces the appropriate function calls. The results of the function calls are platform dependent.") + (license license:expat))) + +(define-public go-gotest-tools-v3-3.0.2 + (package + (name "go-gotest-tools-v3") + (version "3.0.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gotestyourself/gotest.tools") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0cap2aq2wphnbkkzkck5zdjxb64q3jqxfwpkgqys7279rbr8cvjm")))) + (build-system go-build-system) + (arguments + '(#:import-path "gotest.tools/v3" #:unpack-path "gotest.tools/v3")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20190624222133-a101b041ded4" + ,go-golang-org-x-tools-0.0.0-20190624222133-a101b041ded4) + ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) + ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) + ("go-github-com-google-go-cmp-0.3.0" + ,go-github-com-google-go-cmp-0.3.0))) + (home-page "https://gotest.tools/v3") + (synopsis "gotest.tools") + (description + "Package gotesttools is a collection of packages to augment `testing` and +support common patterns. +") + (license license:asl2.0))) + +(define-public go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd + (package + (name "go-github-com-moby-term") + (version "0.0.0-20200312100748-672ec06f55cd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/moby/term") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0xspasm3d101hmjsayrbx6az4r4ybbg5gkj13qybhpq674a6kkwn")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/moby/term")) + (propagated-inputs + `(("go-gotest-tools-v3-3.0.2" ,go-gotest-tools-v3-3.0.2) + ("go-gotest-tools-2.2.0+incompatible" + ,go-gotest-tools-2.2.0+incompatible) + ("go-golang-org-x-sys-0.0.0-20200302150141-5c8b2ff67527" + ,go-golang-org-x-sys-0.0.0-20200302150141-5c8b2ff67527) + ("go-github-com-sirupsen-logrus-1.4.2" + ,go-github-com-sirupsen-logrus-1.4.2) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-google-go-cmp-0.3.1" + ,go-github-com-google-go-cmp-0.3.1) + ("go-github-com-azure-go-ansiterm-0.0.0-20170929234023-d6e3b3328b78" + ,go-github-com-azure-go-ansiterm-0.0.0-20170929234023-d6e3b3328b78))) + (home-page "https://github.com/moby/term") + (synopsis "term - utilities for dealing with terminals") + (description + "Package term provides structures and helper functions to work with +terminal (state, sizes). +") + (license license:asl2.0))) + +(define-public go-github-com-beorn7-perks-1.0.1 + (package + (name "go-github-com-beorn7-perks") + (version "1.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/beorn7/perks") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "17n4yygjxa6p499dj3yaqzfww2g7528165cl13haj97hlx94dgl7")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/beorn7/perks")) + (home-page "https://github.com/beorn7/perks") + (synopsis "Perks for Go (golang.org)") + (description + "Perks contains the Go package quantile that computes approximate quantiles over +an unbounded data stream within low memory and CPU bounds.") + (license license:expat))) + +(define-public go-github-com-prometheus-procfs-0.1.3 + (package + (name "go-github-com-prometheus-procfs") + (version "0.1.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/procfs") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "09wmlmvmjf49nchidqffc99wn6vl98v5k9qgyyrhqgv0015xskwa")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/procfs")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20200106162015-b016eb3dc98e" + ,go-golang-org-x-sys-0.0.0-20200106162015-b016eb3dc98e) + ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" + ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) + ("go-github-com-google-go-cmp-0.3.1" + ,go-github-com-google-go-cmp-0.3.1))) + (home-page "https://github.com/prometheus/procfs") + (synopsis "procfs") + (description + "Package procfs provides functions to retrieve system, kernel and process +metrics from the pseudo-filesystem proc. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-sys-0.0.0-20200615200032-f1bc736245b1 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200615200032-f1bc736245b1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fbmih4n2xw53qbpmc7msqf2660i4ryr0chbrsbj8mdalfrjr0vp")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-gopkg-in-yaml-v2-2.2.5 + (package + (name "go-gopkg-in-yaml-v2") + (version "2.2.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "08smz8dfyxp02ha74my9iszqa5qzgl3ksi28ilyp8lqipssiq6fg")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v2") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language. +") + (license license:asl2.0))) + +(define-public go-github-com-prometheus-client-golang-1.7.1 + (package + (name "go-github-com-prometheus-client-golang") + (version "1.7.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/client_golang") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0i9wbwjq3idgp9y0vv7fvg6g7zrqi9qlfw915xc49ahw83q2h61w")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/client_golang")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.5" ,go-gopkg-in-yaml-v2-2.2.5) + ("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" + ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) + ("go-golang-org-x-sys-0.0.0-20200615200032-f1bc736245b1" + ,go-golang-org-x-sys-0.0.0-20200615200032-f1bc736245b1) + ("go-github-com-stretchr-testify-1.4.0" + ,go-github-com-stretchr-testify-1.4.0) + ("go-github-com-prometheus-procfs-0.1.3" + ,go-github-com-prometheus-procfs-0.1.3) + ("go-github-com-prometheus-common-0.10.0" + ,go-github-com-prometheus-common-0.10.0) + ("go-github-com-prometheus-client-model-0.2.0" + ,go-github-com-prometheus-client-model-0.2.0) + ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) + ("go-github-com-json-iterator-go-1.1.10" + ,go-github-com-json-iterator-go-1.1.10) + ("go-github-com-golang-protobuf-1.4.2" + ,go-github-com-golang-protobuf-1.4.2) + ("go-github-com-cespare-xxhash-v2-2.1.1" + ,go-github-com-cespare-xxhash-v2-2.1.1) + ("go-github-com-beorn7-perks-1.0.1" + ,go-github-com-beorn7-perks-1.0.1))) + (home-page "https://github.com/prometheus/client_golang") + (synopsis "Prometheus Go client library") + (description + "This is the @url{http://golang.org,Go} client library for +@url{http://prometheus.io,Prometheus}. It has two separate parts, one for +instrumenting application code, and one for creating clients that talk to the +Prometheus HTTP API.") + (license license:asl2.0))) + +(define-public go-github-com-alecthomas-template-0.0.0-20190718012654-fb15b899a751 + (package + (name "go-github-com-alecthomas-template") + (version "0.0.0-20190718012654-fb15b899a751") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/alecthomas/template") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1vlasv4dgycydh5wx6jdcvz40zdv90zz1h7836z7lhsi2ymvii26")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/alecthomas/template")) + (home-page "https://github.com/alecthomas/template") + (synopsis "Go's") + (description + "Package template implements data-driven templates for generating textual output. +") + (license license:bsd-3))) + +(define-public go-github-com-alecthomas-units-0.0.0-20190717042225-c3de453c63f4 + (package + (name "go-github-com-alecthomas-units") + (version "0.0.0-20190717042225-c3de453c63f4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/alecthomas/units") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0js37zlgv37y61j4a2d46jh72xm5kxmpaiw0ya9v944bjpc386my")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/alecthomas/units")) + (home-page "https://github.com/alecthomas/units") + (synopsis "Units - Helpful unit multipliers and functions for Go") + (description + "Package units provides helpful unit multipliers and functions for Go. +") + (license license:expat))) + +(define-public go-github-com-go-kit-kit-0.9.0 + (package + (name "go-github-com-go-kit-kit") + (version "0.9.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/go-kit/kit") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "09038mnw705h7isbjp8dzgp2i04bp5rqkmifxvwc5xkh75s00qpw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/go-kit/kit")) + (home-page "https://github.com/go-kit/kit") + (synopsis "Go kit") + (description + "@strong{Go kit} is a @strong{programming toolkit} for building microservices +(or elegant monoliths) in Go. We solve common problems in distributed +systems and application architecture so you can focus on delivering +business value.") + (license license:expat))) + +(define-public go-github-com-prometheus-common-0.4.1 + (package + (name "go-github-com-prometheus-common") + (version "0.4.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/common") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0sf4sjdckblz1hqdfvripk3zyp8xq89w7q75kbsyg4c078af896s")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/common")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1) + ("go-gopkg-in-alecthomas-kingpin-v2-2.2.6" + ,go-gopkg-in-alecthomas-kingpin-v2-2.2.6) + ("go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5" + ,go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5) + ("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" + ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) + ("go-golang-org-x-net-0.0.0-20181114220301-adae6a3d119a" + ,go-golang-org-x-net-0.0.0-20181114220301-adae6a3d119a) + ("go-github-com-sirupsen-logrus-1.2.0" + ,go-github-com-sirupsen-logrus-1.2.0) + ("go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d" + ,go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d) + ("go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910" + ,go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910) + ("go-github-com-prometheus-client-golang-0.9.1" + ,go-github-com-prometheus-client-golang-0.9.1) + ("go-github-com-pkg-errors-0.8.0" ,go-github-com-pkg-errors-0.8.0) + ("go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223" + ,go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223) + ("go-github-com-matttproud-golang-protobuf-extensions-1.0.1" + ,go-github-com-matttproud-golang-protobuf-extensions-1.0.1) + ("go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515" + ,go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515) + ("go-github-com-julienschmidt-httprouter-1.2.0" + ,go-github-com-julienschmidt-httprouter-1.2.0) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0) + ("go-github-com-gogo-protobuf-1.1.1" + ,go-github-com-gogo-protobuf-1.1.1) + ("go-github-com-go-stack-stack-1.8.0" + ,go-github-com-go-stack-stack-1.8.0) + ("go-github-com-go-logfmt-logfmt-0.3.0" + ,go-github-com-go-logfmt-logfmt-0.3.0) + ("go-github-com-go-kit-kit-0.8.0" ,go-github-com-go-kit-kit-0.8.0) + ("go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973" + ,go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973) + ("go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf" + ,go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf) + ("go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc" + ,go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc))) + (home-page "https://github.com/prometheus/common") + (synopsis "Common") + (description + "This repository contains Go libraries that are shared across Prometheus +components and libraries. They are considered internal to Prometheus, without +any stability guarantees for external usage.") + (license license:asl2.0))) + +(define-public go-github-com-prometheus-procfs-0.0.2 + (package + (name "go-github-com-prometheus-procfs") + (version "0.0.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/procfs") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0s7pvs7fgnfpmym3cd0k219av321h9sf3yvdlnn3qy0ps280lg7k")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/procfs")) + (propagated-inputs + `(("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" + ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4))) + (home-page "https://github.com/prometheus/procfs") + (synopsis "procfs") + (description + "Package procfs provides functions to retrieve system, kernel and process +metrics from the pseudo-filesystem proc. +") + (license license:asl2.0))) + +(define-public go-github-com-prometheus-client-golang-1.0.0 + (package + (name "go-github-com-prometheus-client-golang") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/client_golang") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1f03ndyi3jq7zdxinnvzimz3s4z2374r6dikkc8i42xzb6d1bli6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/client_golang")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5" + ,go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5) + ("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0) + ("go-github-com-prometheus-procfs-0.0.2" + ,go-github-com-prometheus-procfs-0.0.2) + ("go-github-com-prometheus-common-0.4.1" + ,go-github-com-prometheus-common-0.4.1) + ("go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90" + ,go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90) + ("go-github-com-modern-go-reflect2-1.0.1" + ,go-github-com-modern-go-reflect2-1.0.1) + ("go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd" + ,go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd) + ("go-github-com-json-iterator-go-1.1.6" + ,go-github-com-json-iterator-go-1.1.6) + ("go-github-com-golang-protobuf-1.3.1" + ,go-github-com-golang-protobuf-1.3.1) + ("go-github-com-beorn7-perks-1.0.0" + ,go-github-com-beorn7-perks-1.0.0))) + (home-page "https://github.com/prometheus/client_golang") + (synopsis "Prometheus Go client library") + (description + "This is the @url{http://golang.org,Go} client library for +@url{http://prometheus.io,Prometheus}. It has two separate parts, one for +instrumenting application code, and one for creating clients that talk to the +Prometheus HTTP API.") + (license license:asl2.0))) + +(define-public go-github-com-prometheus-client-model-0.2.0 + (package + (name "go-github-com-prometheus-client-model") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/client_model") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0jffnz94d6ff39fr96b5w8i8yk26pwnrfggzz8jhi8k0yihg2c9d")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/client_model")) + (propagated-inputs + `(("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" + ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0))) + (home-page "https://github.com/prometheus/client_model") + (synopsis "Deprecation note") + (description + "This repository used to contain the code that defined both +the data model and the exposition format of Prometheus metrics.") + (license license:asl2.0))) + +(define-public go-gopkg-in-yaml-v2-2.2.4 + (package + (name "go-gopkg-in-yaml-v2") + (version "2.2.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "11bwj757wi8kdrcnlgfqb8vv2d2xdhlghmyagd19i62khrkchsg2")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v2") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language. +") + (license license:asl2.0))) + +(define-public go-github-com-prometheus-common-0.10.0 + (package + (name "go-github-com-prometheus-common") + (version "0.10.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/common") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ra7zfqsnvgfizzsxn3rk0dwhk7nx8p8082zgpvadbv2b0j1k01i")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/common")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.4" ,go-gopkg-in-yaml-v2-2.2.4) + ("go-gopkg-in-alecthomas-kingpin-v2-2.2.6" + ,go-gopkg-in-alecthomas-kingpin-v2-2.2.6) + ("go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894" + ,go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894) + ("go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980" + ,go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980) + ("go-github-com-sirupsen-logrus-1.4.2" + ,go-github-com-sirupsen-logrus-1.4.2) + ("go-github-com-prometheus-client-model-0.2.0" + ,go-github-com-prometheus-client-model-0.2.0) + ("go-github-com-prometheus-client-golang-1.0.0" + ,go-github-com-prometheus-client-golang-1.0.0) + ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) + ("go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223" + ,go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223) + ("go-github-com-matttproud-golang-protobuf-extensions-1.0.1" + ,go-github-com-matttproud-golang-protobuf-extensions-1.0.1) + ("go-github-com-julienschmidt-httprouter-1.2.0" + ,go-github-com-julienschmidt-httprouter-1.2.0) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2) + ("go-github-com-go-logfmt-logfmt-0.4.0" + ,go-github-com-go-logfmt-logfmt-0.4.0) + ("go-github-com-go-kit-kit-0.9.0" ,go-github-com-go-kit-kit-0.9.0) + ("go-github-com-alecthomas-units-0.0.0-20190717042225-c3de453c63f4" + ,go-github-com-alecthomas-units-0.0.0-20190717042225-c3de453c63f4) + ("go-github-com-alecthomas-template-0.0.0-20190718012654-fb15b899a751" + ,go-github-com-alecthomas-template-0.0.0-20190718012654-fb15b899a751))) + (home-page "https://github.com/prometheus/common") + (synopsis "Common") + (description + "This repository contains Go libraries that are shared across Prometheus +components and libraries. They are considered internal to Prometheus, without +any stability guarantees for external usage.") + (license license:asl2.0))) + +(define-public go-golang-org-x-sys-0.0.0-20200106162015-b016eb3dc98e + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200106162015-b016eb3dc98e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1k0qr26046d228gi6ngkfxp4m1rjgxk4jj75h0kh1cpyp91n5rja")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-prometheus-procfs-0.2.0 + (package + (name "go-github-com-prometheus-procfs") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/procfs") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0rkpyq1grk3qyfahnfry5qkxjg5qb10yh1l8cvm8b79nqsmdyjbm")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/procfs")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20200106162015-b016eb3dc98e" + ,go-golang-org-x-sys-0.0.0-20200106162015-b016eb3dc98e) + ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" + ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) + ("go-github-com-google-go-cmp-0.3.1" + ,go-github-com-google-go-cmp-0.3.1))) + (home-page "https://github.com/prometheus/procfs") + (synopsis "procfs") + (description + "Package procfs provides functions to retrieve system, kernel and process +metrics from the pseudo-filesystem proc. +") + (license license:asl2.0))) + +(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.3 + (package + (name "go-github-com-konsorten-go-windows-terminal-sequences") + (version "1.0.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/konsorten/go-windows-terminal-sequences") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1yrsd4s8vhjnxhwbigirymz89dn6qfjnhn28i33vvvdgf96j6ypl")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) + (home-page "https://github.com/konsorten/go-windows-terminal-sequences") + (synopsis "Windows Terminal Sequences") + (description + "This library allow for enabling Windows terminal color support for Go.") + (license license:expat))) + +(define-public go-github-com-sirupsen-logrus-1.6.0 + (package + (name "go-github-com-sirupsen-logrus") + (version "1.6.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sirupsen/logrus") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1zf9is1yxxnna0d1pyag2m9ziy3l27zb2j92p9msm1gx5jjrvzzj")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/sirupsen/logrus")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894" + ,go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894) + ("go-github-com-stretchr-testify-1.2.2" + ,go-github-com-stretchr-testify-1.2.2) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.3" + ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.3) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/sirupsen/logrus") + (synopsis "Logrus") + (description + "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. +") + (license license:expat))) + +(define-public go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262 + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20190425150028-36563e24a262") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0lasi96f6a1h11gkm8kl33x03pmxp369wrqq2dg7x7xv9nq76d6g")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" + ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-golang-org-x-text-0.0.0-20170915032832-14c0d48ead0c + (package + (name "go-golang-org-x-text") + (version "0.0.0-20170915032832-14c0d48ead0c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/text") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0y0nrj4hw7vby6m3iqklbf4v7njqlsx7s4pwfkwmvh1ryn1kb7d6")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/text")) + (home-page "https://golang.org/x/text") + (synopsis "Go Text") + (description + "text is a repository of text-related packages related to internationalization +(i18n) and localization (l10n), such as character encodings, text +transformations, and locale-specific text handling. +") + (license license:bsd-3))) + +(define-public go-rsc-io-sampler-1.3.0 + (package + (name "go-rsc-io-sampler") + (version "1.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/rsc/sampler") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0byxk2ynba50py805kcvbvjzh59l1r308i1xgyzpw6lff4xx9xjh")))) + (build-system go-build-system) + (arguments '(#:import-path "rsc.io/sampler")) + (propagated-inputs + `(("go-golang-org-x-text-0.0.0-20170915032832-14c0d48ead0c" + ,go-golang-org-x-text-0.0.0-20170915032832-14c0d48ead0c))) + (home-page "https://rsc.io/sampler") + (synopsis #f) + (description "Package sampler shows simple texts. +") + (license license:bsd-3))) + +(define-public go-rsc-io-quote-v3-3.1.0 + (package + (name "go-rsc-io-quote-v3") + (version "3.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/rsc/quote") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0nvv97hwwrl1mx5gzsbdm1ndnwpg3m7i2jb10ig9wily7zmvki0i")))) + (build-system go-build-system) + (arguments + '(#:import-path "rsc.io/quote/v3" #:unpack-path "rsc.io/quote/v3")) + (propagated-inputs `(("go-rsc-io-sampler-1.3.0" ,go-rsc-io-sampler-1.3.0))) + (home-page "https://rsc.io/quote/v3") + (synopsis #f) + (description "Package quote collects pithy sayings. +") + (license license:bsd-3))) + +(define-public go-github-com-golang-mock-1.4.1 + (package + (name "go-github-com-golang-mock") + (version "1.4.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/mock") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1zb4n285mv85dh3y2f8fqbs30h2dhzw7vbczr6z0zg2gqr6vzg0q")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/mock")) + (propagated-inputs + `(("go-rsc-io-quote-v3-3.1.0" ,go-rsc-io-quote-v3-3.1.0) + ("go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262" + ,go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262))) + (home-page "https://github.com/golang/mock") + (synopsis "gomock") + (description + "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It +integrates well with Go's built-in @code{testing} package, but can be used in other +contexts too.") + (license license:asl2.0))) + +(define-public go-github-com-golang-protobuf-1.3.4 + (package + (name "go-github-com-golang-protobuf") + (version "1.3.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12dclmj2if8l0069fby4psrpqby7p810dr1dr63nwx93g9jhvkmx")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6 + (package + (name "go-github-com-ianlancetaylor-demangle") + (version "0.0.0-20181102032728-5e5cf60278f6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/ianlancetaylor/demangle") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fhjk11cip9c3jyj1byz9z77n6n2rlxmyz0xjx1zpn1da3cvri75")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/ianlancetaylor/demangle")) + (home-page "https://github.com/ianlancetaylor/demangle") + (synopsis "github.com/ianlancetaylor/demangle") + (description + "Package demangle defines functions that demangle GCC/LLVM +C++ and Rust symbol names. +This package recognizes names that were mangled according to the C++ ABI +defined at @url{http://codesourcery.com/cxx-abi/,http://codesourcery.com/cxx-abi/} and the Rust ABI +defined at +@url{https://rust-lang.github.io/rfcs/2603-rust-symbol-name-mangling-v0.html,https://rust-lang.github.io/rfcs/2603-rust-symbol-name-mangling-v0.html} +") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20191204072324-ce4227a45e2e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1s43wvqfml6ml5ks7iv2bis9d664g77mq86v7mfmjhn56x856g35")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-google-pprof-0.0.0-20200229191704-1ebb73c60ed3 + (package + (name "go-github-com-google-pprof") + (version "0.0.0-20200229191704-1ebb73c60ed3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/pprof") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1gdi9p4j1zfm5xlm488i5l0q3kk4q6hsmbmlk6p729i0di2n3ifa")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/pprof")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" + ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) + ("go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6" + ,go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6) + ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" + ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) + ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" + ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) + ("go-github-com-chzyer-logex-1.1.10" + ,go-github-com-chzyer-logex-1.1.10))) + (home-page "https://github.com/google/pprof") + (synopsis "Introduction") + (description + "pprof is a tool for collection, manipulation and visualization +of performance profiles. +") + (license license:asl2.0))) + +(define-public go-github-com-jstemmer-go-junit-report-0.9.1 + (package + (name "go-github-com-jstemmer-go-junit-report") + (version "0.9.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jstemmer/go-junit-report") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1knip80yir1cdsjlb3rzy0a4w3kl4ljpiciaz6hjzwqlfhnv7bkw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/jstemmer/go-junit-report")) + (home-page "https://github.com/jstemmer/go-junit-report") + (synopsis "go-junit-report") + (description + "Converts @code{go test} output to an xml report, suitable for applications that +expect junit xml reports (e.g. @url{http://jenkins-ci.org,Jenkins}).") + (license license:expat))) + +(define-public go-golang-org-x-mod-0.1.1-0.20191105210325-c90efee705ee + (package + (name "go-golang-org-x-mod") + (version "0.1.1-0.20191105210325-c90efee705ee") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/mod") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0i5md645rmcy5z5ij9ng428k9rz4g3k1kjy3blsq1264rn426gdf")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/mod")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" + ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) + ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" + ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) + (home-page "https://golang.org/x/mod") + (synopsis "mod") + (description + "This repository holds packages for writing tools +that work directly with Go module mechanics. +That is, it is for direct manipulation of Go modules themselves.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7 + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20200130002326-2f3ba24bd6e7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0j3nnmlwnbivf0h9x89vlp8ji3ha41v96bj33cxwmrrjnxq543ww")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" + ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) + ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" + ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) + ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" + ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) + ("go-golang-org-x-mod-0.1.1-0.20191105210325-c90efee705ee" + ,go-golang-org-x-mod-0.1.1-0.20191105210325-c90efee705ee))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b + (package + (name "go-golang-org-x-lint") + (version "0.0.0-20200302205851-738671d3881b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/lint") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0jkiz4py59jjnkyxbxifpf7bsar11lbgmj5jiq2kic5k03shkn9c")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/lint")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7" + ,go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7))) + (home-page "https://golang.org/x/lint") + (synopsis "Installation") + (description "Package lint contains a linter for Go source code. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20200301022130-244492dfa37a + (package + (name "go-golang-org-x-net") + (version "0.0.0-20200301022130-244492dfa37a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0vm2q44phz4vjnzq9428rjk58c82fxf003whczp7c9ryn9fazh7s")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20200302150141-5c8b2ff67527 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200302150141-5c8b2ff67527") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0r5s7f4w7crrbcf5ydpr2xzsq0svjm332vsds41yp58kwi2lvh2v")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20200304193943-95d2e580d8eb + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20200304193943-95d2e580d8eb") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0f46657xsdc12lr29ksqg80fp0j8v2iqgihzh788avcj5cmhnqyl")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) + ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" + ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) + ("go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b" + ,go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b) + ("go-golang-org-x-mod-0.2.0" ,go-golang-org-x-mod-0.2.0))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-github-com-golang-mock-1.2.0 + (package + (name "go-github-com-golang-mock") + (version "1.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/mock") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12ddj2g8ab87id6n2n67vnbhq6p8dvgsq1pzpqfriym4dk8w54fg")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/mock")) + (home-page "https://github.com/golang/mock") + (synopsis "gomock") + (description + "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It +integrates well with Go's built-in @code{testing} package, but can be used in other +contexts too.") + (license license:asl2.0))) + +(define-public go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c + (package + (name "go-github-com-google-btree") + (version "0.0.0-20180813153112-4030bb1f1f0c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/btree") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ba430m9fbnagacp57krgidsyrgp3ycw5r7dj71brgp5r52g82p6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/btree")) + (home-page "https://github.com/google/btree") + (synopsis "BTree implementation for Go") + (description + "Package btree implements in-memory B-Trees of arbitrary degree. +") + (license license:asl2.0))) + +(define-public go-github-com-google-martian-2.1.0+incompatible + (package + (name "go-github-com-google-martian") + (version "2.1.0+incompatible") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/martian") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "197hil6vrjk50b9wvwyzf61csid83whsjj6ik8mc9r2lryxlyyrp")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/martian")) + (home-page "https://github.com/google/martian") + (synopsis "Martian Proxy") + (description + "Package martian provides an HTTP/1.1 proxy with an API for configurable +request and response modifiers. +") + (license license:asl2.0))) + +(define-public go-github-com-google-pprof-0.0.0-20181206194817-3ea8567a2e57 + (package + (name "go-github-com-google-pprof") + (version "0.0.0-20181206194817-3ea8567a2e57") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/pprof") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "09rhjn3ms0a72dw0yzbp237p7yhqma772zspddn6mgkh3gi3kn4c")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/pprof")) + (home-page "https://github.com/google/pprof") + (synopsis "Introduction") + (description + "pprof is a tool for collection, manipulation and visualization +of performance profiles. +") + (license license:asl2.0))) + +(define-public go-github-com-googleapis-gax-go-v2-2.0.4 + (package + (name "go-github-com-googleapis-gax-go-v2") + (version "2.0.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/gax-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1iwnm6ky1x53lgs44mw3hpdkjzrm5qd0kfs50m0qcq2ml5m1cwdm")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/googleapis/gax-go/v2")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.19.0" + ,go-google-golang-org-grpc-1.19.0))) + (home-page "https://github.com/googleapis/gax-go") + (synopsis #f) + (description + "Package gax contains a set of modules which aid the development of APIs +for clients and servers based on gRPC and Google API conventions. +") + (license license:bsd-3))) + +(define-public go-github-com-jstemmer-go-junit-report-0.0.0-20190106144839-af01ea7f8024 + (package + (name "go-github-com-jstemmer-go-junit-report") + (version "0.0.0-20190106144839-af01ea7f8024") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jstemmer/go-junit-report") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1lp3n94ris12hac02wi31f3whs88lcrzwgdg43a5j6cafg9p1d0s")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/jstemmer/go-junit-report")) + (home-page "https://github.com/jstemmer/go-junit-report") + (synopsis "go-junit-report") + (description + "Converts @code{go test} output to an xml report, suitable for applications that +expect junit xml reports (e.g. @url{http://jenkins-ci.org,Jenkins}).") + (license license:expat))) + +(define-public go-golang-org-x-text-0.3.1-0.20180807135948-17ff2d5776d2 + (package + (name "go-golang-org-x-text") + (version "0.3.1-0.20180807135948-17ff2d5776d2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/text") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1rrh2mnmyxr45nsvy42zq3w3ly6gw6rl993knwvf1w71kyv0jjnj")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/text")) + (home-page "https://golang.org/x/text") + (synopsis "Go Text") + (description + "text is a repository of text-related packages related to internationalization +(i18n) and localization (l10n), such as character encodings, text +transformations, and locale-specific text handling. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-time-0.0.0-20181108054448-85acf8d2951c + (package + (name "go-golang-org-x-time") + (version "0.0.0-20181108054448-85acf8d2951c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/time") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0yqnxsrarjk4qkda8kcxzmk7y90kkkxzx9iwryzrk7bzs87ky3xc")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/time")) + (home-page "https://golang.org/x/time") + (synopsis "Go Time") + (description "This repository provides supplementary Go time packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f + (package + (name "go-golang-org-x-lint") + (version "0.0.0-20190301231843-5614ed5bae6f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/lint") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0fzn0zjv0x92xvfdq3a0v9w5sgkhr7hxkfy9zaqi8i57807z8bnx")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/lint")) + (home-page "https://golang.org/x/lint") + (synopsis "Installation") + (description "Package lint contains a linter for Go source code. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421 + (package + (name "go-golang-org-x-oauth2") + (version "0.0.0-20190226205417-e64efc72b421") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/oauth2") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0djvwz2avx7knsjbl434vw1wqbrg53xp1kh599gfixn5icrggz4m")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/oauth2")) + (propagated-inputs + `(("go-google-golang-org-appengine-1.4.0" + ,go-google-golang-org-appengine-1.4.0) + ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" + ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) + ("go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e" + ,go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e) + ("go-cloud-google-com-go-0.34.0" ,go-cloud-google-com-go-0.34.0))) + (home-page "https://golang.org/x/oauth2") + (synopsis "OAuth2 for Go") + (description + "Package oauth2 provides support for making +OAuth2 authorized and authenticated HTTP requests, +as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +It can additionally grant authorization with Bearer JWT. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138 + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20190312170243-e65039ee4138") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0c094599cf70wdrms49a3879qkq122pqlp2av444gs2pvc8apdcx")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-google-golang-org-api-0.4.0 + (package + (name "go-google-golang-org-api") + (version "0.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-api-go-client") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1hzgrw5wasmcjlqpxsmryddzzw4cwyzf2vx14i9z51v1plwssijm")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/api")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" + ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) + ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) + ("go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19" + ,go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19) + ("go-google-golang-org-appengine-1.4.0" + ,go-google-golang-org-appengine-1.4.0) + ("go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138" + ,go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138) + ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" + ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) + ("go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421" + ,go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421) + ("go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f" + ,go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f) + ("go-go-opencensus-io-0.21.0" ,go-go-opencensus-io-0.21.0) + ("go-github-com-google-go-cmp-0.2.0" + ,go-github-com-google-go-cmp-0.2.0))) + (home-page "https://google.golang.org/api") + (synopsis "Google APIs Client Library for Go") + (description + "Package api is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of +sub-packages. +") + (license license:bsd-3))) + +(define-public go-google-golang-org-genproto-0.0.0-20190418145605-e7d98fc518a7 + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20190418145605-e7d98fc518a7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1cnavkyawwvfc5yl097ygnfy1ac69v4zc02gdfnq1bvgcvgmvnbi")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" + ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) + ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) + ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" + ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) + ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" + ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) + ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" + ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd) + ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" + ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) + ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" + ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-honnef-co-go-tools-0.0.0-20190106161140-3f1c8253044a + (package + (name "go-honnef-co-go-tools") + (version "0.0.0-20190106161140-3f1c8253044a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/dominikh/go-tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0d3vgh0fgfj1z7i648g1s6x2pwxd07sxfjwg1xn3yagr9h06jh3h")))) + (build-system go-build-system) + (arguments '(#:import-path "honnef.co/go/tools")) + (home-page "https://honnef.co/go/tools") + (synopsis "Documentation") + (description + "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, +offers simplifications, and enforces style rules.") + (license license:expat))) + +(define-public go-cloud-google-com-go-0.38.0 + (package + (name "go-cloud-google-com-go") + (version "0.38.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-cloud-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0n6n13b7lri2fmc4bn4ifszyawj31dpbzvyv0xafsf81440z8cyh")))) + (build-system go-build-system) + (arguments '(#:import-path "cloud.google.com/go")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190106161140-3f1c8253044a" + ,go-honnef-co-go-tools-0.0.0-20190106161140-3f1c8253044a) + ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) + ("go-google-golang-org-genproto-0.0.0-20190418145605-e7d98fc518a7" + ,go-google-golang-org-genproto-0.0.0-20190418145605-e7d98fc518a7) + ("go-google-golang-org-api-0.4.0" ,go-google-golang-org-api-0.4.0) + ("go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138" + ,go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138) + ("go-golang-org-x-time-0.0.0-20181108054448-85acf8d2951c" + ,go-golang-org-x-time-0.0.0-20181108054448-85acf8d2951c) + ("go-golang-org-x-text-0.3.1-0.20180807135948-17ff2d5776d2" + ,go-golang-org-x-text-0.3.1-0.20180807135948-17ff2d5776d2) + ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" + ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) + ("go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421" + ,go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421) + ("go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f" + ,go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f) + ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" + ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) + ("go-go-opencensus-io-0.21.0" ,go-go-opencensus-io-0.21.0) + ("go-github-com-jstemmer-go-junit-report-0.0.0-20190106144839-af01ea7f8024" + ,go-github-com-jstemmer-go-junit-report-0.0.0-20190106144839-af01ea7f8024) + ("go-github-com-googleapis-gax-go-v2-2.0.4" + ,go-github-com-googleapis-gax-go-v2-2.0.4) + ("go-github-com-google-pprof-0.0.0-20181206194817-3ea8567a2e57" + ,go-github-com-google-pprof-0.0.0-20181206194817-3ea8567a2e57) + ("go-github-com-google-martian-2.1.0+incompatible" + ,go-github-com-google-martian-2.1.0+incompatible) + ("go-github-com-google-go-cmp-0.2.0" + ,go-github-com-google-go-cmp-0.2.0) + ("go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c" + ,go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0) + ("go-github-com-golang-mock-1.2.0" ,go-github-com-golang-mock-1.2.0))) + (home-page "https://cloud.google.com/go") + (synopsis "Google Cloud Client Libraries for Go") + (description + "Package cloud is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +of sub-packages. +") + (license license:asl2.0))) + +(define-public go-github-com-googleapis-gax-go-v2-2.0.5 + (package + (name "go-github-com-googleapis-gax-go-v2") + (version "2.0.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/gax-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1lxawwngv6miaqd25s3ba0didfzylbwisd2nz7r4gmbmin6jsjrx")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/googleapis/gax-go/v2")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.19.0" + ,go-google-golang-org-grpc-1.19.0))) + (home-page "https://github.com/googleapis/gax-go") + (synopsis #f) + (description + "Package gax contains a set of modules which aid the development of APIs +for clients and servers based on gRPC and Google API conventions. +") + (license license:bsd-3))) + +(define-public go-github-com-hashicorp-golang-lru-0.5.0 + (package + (name "go-github-com-hashicorp-golang-lru") + (version "0.5.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/golang-lru") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12k2cp2k615fjvfa5hyb9k2alian77wivds8s65diwshwv41939f")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/golang-lru")) + (home-page "https://github.com/hashicorp/golang-lru") + (synopsis "golang-lru") + (description + "Package lru provides three different LRU caches of varying sophistication. +") + (license license:mpl2.0))) + +(define-public go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19 + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20190307195333-5fe7a883aa19") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0qjkwig0r42q0j2qv57s4ahsgmmp41dz3ih3rnaqg0619n5w7lbs")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" + ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) + ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) + ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" + ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) + ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" + ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) + ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" + ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd) + ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" + ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) + ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" + ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-go-opencensus-io-0.21.0 + (package + (name "go-go-opencensus-io") + (version "0.21.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/census-instrumentation/opencensus-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "14s0a12xdzjvad0dgksgv8m3hh7nc585abvjkvyk6r67a29lxj6x")))) + (build-system go-build-system) + (arguments '(#:import-path "go.opencensus.io")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) + ("go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19" + ,go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-github-com-hashicorp-golang-lru-0.5.0" + ,go-github-com-hashicorp-golang-lru-0.5.0) + ("go-github-com-google-go-cmp-0.2.0" + ,go-github-com-google-go-cmp-0.2.0) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0))) + (home-page "https://go.opencensus.io") + (synopsis "OpenCensus Libraries for Go") + (description "Package opencensus contains Go support for OpenCensus. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-net-0.0.0-20190503192946-f4e77d36d62c + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190503192946-f4e77d36d62c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0avjnglqqg9ya0cbhp23m4namykii219kxjywxn4cd7pfcc5arha")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45 + (package + (name "go-golang-org-x-oauth2") + (version "0.0.0-20190604053449-0f29369cfe45") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/oauth2") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "06jwpvx0x2gjn2y959drbcir5kd7vg87k0r1216abk6rrdzzrzi2")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/oauth2")) + (propagated-inputs + `(("go-google-golang-org-appengine-1.4.0" + ,go-google-golang-org-appengine-1.4.0) + ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" + ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) + ("go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e" + ,go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e) + ("go-cloud-google-com-go-0.34.0" ,go-cloud-google-com-go-0.34.0))) + (home-page "https://golang.org/x/oauth2") + (synopsis "OAuth2 for Go") + (description + "Package oauth2 provides support for making +OAuth2 authorized and authenticated HTTP requests, +as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +It can additionally grant authorization with Bearer JWT. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190507160741-ecd444e8653b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1vhld4948mzfnlgf20id29mv1bwpk9a3xlbw1mbjzxzxxdv1jds2")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-google-golang-org-appengine-1.5.0 + (package + (name "go-google-golang-org-appengine") + (version "1.5.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/appengine") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0l7mkdnwhidv8m686x432vmx8z5nqcrr9f46ddgvrxbh4wvyfcll")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/appengine")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225" + ,go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0))) + (home-page "https://google.golang.org/appengine") + (synopsis "Go App Engine packages") + (description + "Package appengine provides basic functionality for Google App Engine. +") + (license license:asl2.0))) + +(define-public go-google-golang-org-api-0.20.0 + (package + (name "go-google-golang-org-api") + (version "0.20.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-api-go-client") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "13syr1x33k6mrn5w6l4sgdbzn368w3m60vf6kk2j10fwa45125rg")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/api")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" + ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" + ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) + ("go-google-golang-org-appengine-1.5.0" + ,go-google-golang-org-appengine-1.5.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) + ("go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b" + ,go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b) + ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" + ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) + ("go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45" + ,go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45) + ("go-golang-org-x-net-0.0.0-20190503192946-f4e77d36d62c" + ,go-golang-org-x-net-0.0.0-20190503192946-f4e77d36d62c) + ("go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422" + ,go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422) + ("go-go-opencensus-io-0.21.0" ,go-go-opencensus-io-0.21.0) + ("go-github-com-hashicorp-golang-lru-0.5.1" + ,go-github-com-hashicorp-golang-lru-0.5.1) + ("go-github-com-googleapis-gax-go-v2-2.0.5" + ,go-github-com-googleapis-gax-go-v2-2.0.5) + ("go-github-com-google-go-cmp-0.3.0" + ,go-github-com-google-go-cmp-0.3.0) + ("go-cloud-google-com-go-0.38.0" ,go-cloud-google-com-go-0.38.0))) + (home-page "https://google.golang.org/api") + (synopsis "Google APIs Client Library for Go") + (description + "Package api is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of +sub-packages. +") + (license license:bsd-3))) + +(define-public go-google-golang-org-genproto-0.0.0-20200305110556-506484158171 + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20200305110556-506484158171") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19h7sxkfjcrkm7majd0pyzzirdnk1qlsxc3h5zklhm234d8jg407")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" + ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-golang-protobuf-1.3.3" + ,go-github-com-golang-protobuf-1.3.3))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-github-com-google-renameio-0.1.0 + (package + (name "go-github-com-google-renameio") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/renameio") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ki2x5a9nrj17sn092d6n4zr29lfg5ydv4xz5cp58z6cw8ip43jx")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/renameio")) + (home-page "https://github.com/google/renameio") + (synopsis "Atomicity vs durability") + (description + "Package renameio provides a way to atomically create or replace a file or +symbolic link. +") + (license license:asl2.0))) + +(define-public go-gopkg-in-errgo-v2-2.1.0 + (package + (name "go-gopkg-in-errgo-v2") + (version "2.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/errgo.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "065mbihiy7q67wnql0bzl9y1kkvck5ivra68254zbih52jxwrgr2")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/errgo.v2" #:unpack-path "gopkg.in/errgo.v2")) + (propagated-inputs + `(("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" + ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) + ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0))) + (home-page "https://gopkg.in/errgo.v2") + (synopsis #f) + (description + "Package errgo provides some primitives for error creation and handling.") + (license license:bsd-3))) + +(define-public go-github-com-rogpeppe-go-internal-1.3.0 + (package + (name "go-github-com-rogpeppe-go-internal") + (version "1.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/rogpeppe/go-internal") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0mcdh1licgnnahwml9y2iq6xy5x9xmjw5frcnds2s3wpjyqrl216")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/rogpeppe/go-internal")) + (propagated-inputs + `(("go-gopkg-in-errgo-v2-2.1.0" ,go-gopkg-in-errgo-v2-2.1.0))) + (home-page "https://github.com/rogpeppe/go-internal") + (synopsis #f) + (description + "This repository factors out an opinionated selection of internal packages and functionality from the Go standard +library. Currently this consists mostly of packages and testing code from within the Go tool implementation.") + (license license:bsd-3))) + +(define-public go-golang-org-x-crypto-0.0.0-20190510104115-cbcb75029529 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20190510104115-cbcb75029529") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12831ga1gq04a3jbbcmww7kaqfdfgp7cdv2fj9aqidz8h52ajdmh")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" + ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) + ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" + ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-mod-0.0.0-20190513183733-4bf6d317e70e + (package + (name "go-golang-org-x-mod") + (version "0.0.0-20190513183733-4bf6d317e70e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/mod") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19lg1ly3j31anx92p0hynic1gjk417wwxphfdrb2cq1c19kj3r17")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/mod")) + (propagated-inputs + `(("go-golang-org-x-crypto-0.0.0-20190510104115-cbcb75029529" + ,go-golang-org-x-crypto-0.0.0-20190510104115-cbcb75029529))) + (home-page "https://golang.org/x/mod") + (synopsis "mod") + (description + "This repository holds packages for writing tools +that work directly with Go module mechanics. +That is, it is for direct manipulation of Go modules themselves.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20191130070609-6e064ea0cf2d + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20191130070609-6e064ea0cf2d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1nbki367xspsa37j6276f5q2gv31vfjpb52axn3p3ymz548my75d")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7" + ,go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7) + ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" + ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) + ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" + ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-honnef-co-go-tools-0.0.1-2020.1.3 + (package + (name "go-honnef-co-go-tools") + (version "0.0.1-2020.1.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/dominikh/go-tools") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0pvi1mzhy6zgx4zfgdypbl4zhvgg11hl5qv7blf2qs0a96j2djhf")))) + (build-system go-build-system) + (arguments '(#:import-path "honnef.co/go/tools")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20191130070609-6e064ea0cf2d" + ,go-golang-org-x-tools-0.0.0-20191130070609-6e064ea0cf2d) + ("go-golang-org-x-mod-0.0.0-20190513183733-4bf6d317e70e" + ,go-golang-org-x-mod-0.0.0-20190513183733-4bf6d317e70e) + ("go-github-com-rogpeppe-go-internal-1.3.0" + ,go-github-com-rogpeppe-go-internal-1.3.0) + ("go-github-com-kisielk-gotool-1.0.0" + ,go-github-com-kisielk-gotool-1.0.0) + ("go-github-com-google-renameio-0.1.0" + ,go-github-com-google-renameio-0.1.0) + ("go-github-com-burntsushi-toml-0.3.1" + ,go-github-com-burntsushi-toml-0.3.1))) + (home-page "https://honnef.co/go/tools") + (synopsis "Documentation") + (description + "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, +offers simplifications, and enforces style rules.") + (license license:expat))) + +(define-public go-cloud-google-com-go-0.54.0 + (package + (name "go-cloud-google-com-go") + (version "0.54.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-cloud-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ilqqymrphg546c66jc0npd48dlr88wbgrg462h1jgm2ykbnq1ba")))) + (build-system go-build-system) + (arguments '(#:import-path "cloud.google.com/go")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.1-2020.1.3" + ,go-honnef-co-go-tools-0.0.1-2020.1.3) + ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) + ("go-google-golang-org-genproto-0.0.0-20200305110556-506484158171" + ,go-google-golang-org-genproto-0.0.0-20200305110556-506484158171) + ("go-google-golang-org-api-0.20.0" ,go-google-golang-org-api-0.20.0) + ("go-golang-org-x-tools-0.0.0-20200304193943-95d2e580d8eb" + ,go-golang-org-x-tools-0.0.0-20200304193943-95d2e580d8eb) + ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) + ("go-golang-org-x-sys-0.0.0-20200302150141-5c8b2ff67527" + ,go-golang-org-x-sys-0.0.0-20200302150141-5c8b2ff67527) + ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" + ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) + ("go-golang-org-x-net-0.0.0-20200301022130-244492dfa37a" + ,go-golang-org-x-net-0.0.0-20200301022130-244492dfa37a) + ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" + ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) + ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) + ("go-github-com-jstemmer-go-junit-report-0.9.1" + ,go-github-com-jstemmer-go-junit-report-0.9.1) + ("go-github-com-googleapis-gax-go-v2-2.0.5" + ,go-github-com-googleapis-gax-go-v2-2.0.5) + ("go-github-com-google-pprof-0.0.0-20200229191704-1ebb73c60ed3" + ,go-github-com-google-pprof-0.0.0-20200229191704-1ebb73c60ed3) + ("go-github-com-google-martian-2.1.0+incompatible" + ,go-github-com-google-martian-2.1.0+incompatible) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.3.4" + ,go-github-com-golang-protobuf-1.3.4) + ("go-github-com-golang-mock-1.4.1" ,go-github-com-golang-mock-1.4.1) + ("go-cloud-google-com-go-storage-1.6.0" + ,go-cloud-google-com-go-storage-1.6.0) + ("go-cloud-google-com-go-pubsub-1.2.0" + ,go-cloud-google-com-go-pubsub-1.2.0) + ("go-cloud-google-com-go-datastore-1.1.0" + ,go-cloud-google-com-go-datastore-1.1.0) + ("go-cloud-google-com-go-bigquery-1.4.0" + ,go-cloud-google-com-go-bigquery-1.4.0))) + (home-page "https://cloud.google.com/go") + (synopsis "Google Cloud Client Libraries for Go") + (description + "Package cloud is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +of sub-packages. +") + (license license:asl2.0))) + +(define-public go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7 + (package + (name "go-github-com-gregjones-httpcache") + (version "0.0.0-20180305231024-9cad4c3443a7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gregjones/httpcache") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wjdwcwqqcx2d5y68qvhg6qyj977il5ijmnn9h9cd6wjbdy0ay6s")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/gregjones/httpcache")) + (home-page "https://github.com/gregjones/httpcache") + (synopsis "httpcache") + (description + "Package httpcache provides a http.RoundTripper implementation that works as a +mostly RFC-compliant cache for http responses. +") + (license license:expat))) + +(define-public go-github-com-imdario-mergo-0.3.5 + (package + (name "go-github-com-imdario-mergo") + (version "0.3.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/imdario/mergo") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1mvgn89vp39gcpvhiq4n7nw5ipj7fk6h03jgc6fjwgvwvss213pb")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/imdario/mergo")) + (home-page "https://github.com/imdario/mergo") + (synopsis "Mergo") + (description + "This package provides a helper to merge structs and maps in Golang. Useful for configuration default values, avoiding messy if-statements. +") + (license license:bsd-3))) + +(define-public go-github-com-peterbourgon-diskv-2.0.1+incompatible + (package + (name "go-github-com-peterbourgon-diskv") + (version "2.0.1+incompatible") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/peterbourgon/diskv") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1mxpa5aad08x30qcbffzk80g9540wvbca4blc1r2qyzl65b8929b")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/peterbourgon/diskv")) + (home-page "https://github.com/peterbourgon/diskv") + (synopsis "What is diskv?") + (description + "Diskv (disk-vee) is a simple, persistent key-value store written in the Go +language. It starts with an incredibly simple API for storing arbitrary data on +a filesystem by key, and builds several layers of performance-enhancing +abstraction on top. The end result is a conceptually simple, but highly +performant, disk-backed storage system.") + (license license:expat))) + +(define-public go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20201002170205-7f63de1d35b0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1dr89jfs4dmpr3jqfshqqvfpzzdx4r76nkzhrvmixfrmn6wxrnd1")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" + ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) + ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" + ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e + (package + (name "go-golang-org-x-time") + (version "0.0.0-20200630173020-3af7569d3a1e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/time") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "05hqhw3vlssi499y6m41zgdp1yyjsw2kj95ahymlw6pkhsssh2vq")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/time")) + (home-page "https://golang.org/x/time") + (synopsis "Go Time") + (description "This repository provides supplementary Go time packages.") + (license license:bsd-3))) + +(define-public go-k8s-io-api-0.20.6 + (package + (name "go-k8s-io-api") + (version "0.20.6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes/api") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0mm6a91a4nrlsvnfcbgn2574vdwxf1nxpgrd5avklh8mym2ngimw")))) + (build-system go-build-system) + (arguments '(#:import-path "k8s.io/api")) + (propagated-inputs + `(("go-k8s-io-apimachinery-0.20.6" ,go-k8s-io-apimachinery-0.20.6) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-gogo-protobuf-1.3.2" + ,go-github-com-gogo-protobuf-1.3.2))) + (home-page "https://k8s.io/api") + (synopsis "api") + (description + "Schema of the external API types that are served by the Kubernetes API server.") + (license license:asl2.0))) + +(define-public go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96 + (package + (name "go-github-com-docker-spdystream") + (version "0.0.0-20160310174837-449fdfce4d96") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/moby/spdystream") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1412cpiis971iq1kxrirzirhj2708ispjh0x0dh879b66x8507sl")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/docker/spdystream")) + (home-page "https://github.com/docker/spdystream") + (synopsis "SpdyStream") + (description + "This package provides a multiplexed stream library using spdy") + (license license:asl2.0))) + +(define-public go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153 + (package + (name "go-github-com-elazarl-goproxy") + (version "0.0.0-20180725130230-947c36da3153") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/elazarl/goproxy") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0lmsnr5xmda89wig8sw62llg6acjb5caghz5jmdhnm85rm6rnssk")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/elazarl/goproxy")) + (home-page "https://github.com/elazarl/goproxy") + (synopsis "Introduction") + (description + "Taken from $GOROOT/src/pkg/net/http/chunked +needed to write https responses to client. +") + (license license:bsd-3))) + +(define-public go-github-com-evanphx-json-patch-4.9.0+incompatible + (package + (name "go-github-com-evanphx-json-patch") + (version "4.9.0+incompatible") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/evanphx/json-patch") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1r88qpzjxsx8skij9s5pi4a5qcv4bm18vq8sy21gpwgzp3qf6qzx")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/evanphx/json-patch")) + (home-page "https://github.com/evanphx/json-patch") + (synopsis "JSON-Patch") + (description + "@code{jsonpatch} is a library which provides functionality for both applying +@url{http://tools.ietf.org/html/rfc6902,RFC6902 JSON patches} against documents, as +well as for calculating & applying @url{https://tools.ietf.org/html/rfc7396,RFC7396 JSON merge patches}.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20191005200804-aed5e4c7ecf9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wsdsbl9n61l99z0cvib2xzg56fsfgky4yc5xapdw9ywx9h0zm3a")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-fsnotify-fsnotify-1.4.9 + (package + (name "go-github-com-fsnotify-fsnotify") + (version "1.4.9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/fsnotify/fsnotify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1i1r72knpbfwwql9frn9bqc3nhfc2ai5m6qllcyr6wban62lr40x")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/fsnotify/fsnotify")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9" + ,go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9))) + (home-page "https://github.com/fsnotify/fsnotify") + (synopsis "File system notifications for Go") + (description + "Package fsnotify provides a platform-independent interface for file system notifications. +") + (license license:bsd-3))) + +(define-public go-github-com-google-gofuzz-1.1.0 + (package + (name "go-github-com-google-gofuzz") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/gofuzz") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0si2fiigj45vr4jnw4grjhls7nw56wkwinnn93gqbl9ng9ynw8rx")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/gofuzz")) + (home-page "https://github.com/google/gofuzz") + (synopsis "gofuzz") + (description + "Package fuzz is a library for populating go objects with random values. +") + (license license:asl2.0))) + +(define-public go-github-com-hashicorp-golang-lru-0.5.1 + (package + (name "go-github-com-hashicorp-golang-lru") + (version "0.5.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/golang-lru") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "13f870cvk161bzjj6x41l45r5x9i1z9r2ymwmvm7768kg08zznpy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/golang-lru")) + (home-page "https://github.com/hashicorp/golang-lru") + (synopsis "golang-lru") + (description + "Package lru provides three different LRU caches of varying sophistication. +") + (license license:mpl2.0))) + +(define-public go-github-com-modern-go-reflect2-0.0.0-20180701023420-4b7aa43c6742 + (package + (name "go-github-com-modern-go-reflect2") + (version "0.0.0-20180701023420-4b7aa43c6742") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/modern-go/reflect2") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1721y3yr3dpx5dx5ashf063qczk2awy5zjir1jvp1h5hn7qz4i49")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/modern-go/reflect2")) + (home-page "https://github.com/modern-go/reflect2") + (synopsis "reflect2") + (description "reflect api that avoids runtime reflect.Value cost") + (license license:asl2.0))) + +(define-public go-github-com-json-iterator-go-1.1.10 + (package + (name "go-github-com-json-iterator-go") + (version "1.1.10") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/json-iterator/go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "134zwc2pmf8nd90r8065wsl6vv1mwjl23bs70i08dzhw5h98drr4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/json-iterator/go")) + (propagated-inputs + `(("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0) + ("go-github-com-modern-go-reflect2-0.0.0-20180701023420-4b7aa43c6742" + ,go-github-com-modern-go-reflect2-0.0.0-20180701023420-4b7aa43c6742) + ("go-github-com-modern-go-concurrent-0.0.0-20180228061459-e0a39a4cb421" + ,go-github-com-modern-go-concurrent-0.0.0-20180228061459-e0a39a4cb421) + ("go-github-com-google-gofuzz-1.0.0" + ,go-github-com-google-gofuzz-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/json-iterator/go") + (synopsis "Benchmark") + (description + "Package jsoniter implements encoding and decoding of JSON as defined in +@url{https://rfc-editor.org/rfc/rfc4627.html,RFC 4627} and provides interfaces with identical syntax of standard lib encoding/json. +Converting from encoding/json to jsoniter is no more than replacing the package with jsoniter +and variable type declarations (if any). +jsoniter interfaces gives 100% compatibility with code using standard lib. +") + (license license:expat))) + +(define-public go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f + (package + (name "go-github-com-mxk-go-flowrate") + (version "0.0.0-20140419014527-cca7078d478f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mxk/go-flowrate") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0zqs39923ja0yypdmiqk6x8pgmfs3ms5x5sl1dqv9z6zyx2xy541")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mxk/go-flowrate")) + (home-page "https://github.com/mxk/go-flowrate") + (synopsis #f) + (description #f) + (license license:bsd-3))) + +(define-public go-github-com-onsi-ginkgo-1.11.0 + (package + (name "go-github-com-onsi-ginkgo") + (version "1.11.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/onsi/ginkgo") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1vxmb5k89bq50m2kzcw5l3bdvci4czpifkgxd4nbq1yzv5ir03kp")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/onsi/ginkgo")) + (home-page "https://github.com/onsi/ginkgo") + (synopsis "Ginkgo 2.0 Release Candidate is available!") + (description "Ginkgo is a BDD-style testing framework for Golang +") + (license license:expat))) + +(define-public go-github-com-hpcloud-tail-1.0.0 + (package + (name "go-github-com-hpcloud-tail") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hpcloud/tail") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1njpzc0pi1acg5zx9y6vj9xi6ksbsc5d387rd6904hy6rh2m6kn0")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hpcloud/tail")) + (home-page "https://github.com/hpcloud/tail") + (synopsis "Go package for tail-ing files") + (description + "This package provides a Go package striving to emulate the features of the BSD @code{tail} program.") + (license license:expat))) + +(define-public go-github-com-onsi-ginkgo-1.6.0 + (package + (name "go-github-com-onsi-ginkgo") + (version "1.6.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/onsi/ginkgo") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0x0gc89vgq38xhgmi2h22bhr73cf2gmk42g89nz89k8dgg9hhr25")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/onsi/ginkgo")) + (home-page "https://github.com/onsi/ginkgo") + (synopsis "Ginkgo 2.0 Release Candidate is available!") + (description "Ginkgo is a BDD-style testing framework for Golang +") + (license license:expat))) + +(define-public go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd + (package + (name "go-golang-org-x-net") + (version "0.0.0-20180906233101-161cd47e91fd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0254ld010iijygbzykib2vags1dc0wlmcmhgh4jl8iny159lhbcv")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20180909124046-d0be0721c37e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "081wyvfnlf842dqg03raxfz6lldlxpmyh1prix9lmrrm65arxb12")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-gopkg-in-fsnotify-v1-1.4.7 + (package + (name "go-gopkg-in-fsnotify-v1") + (version "1.4.7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/fsnotify.v1") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) + (build-system go-build-system) + (arguments + '(#:import-path + "gopkg.in/fsnotify.v1" + #:unpack-path + "gopkg.in/fsnotify.v1")) + (home-page "https://gopkg.in/fsnotify.v1") + (synopsis "File system notifications for Go") + (description + "Package fsnotify provides a platform-independent interface for file system notifications. +") + (license license:bsd-3))) + +(define-public go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7 + (package + (name "go-gopkg-in-tomb-v1") + (version "1.0.0-20141024135613-dd632973f1e7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/tomb.v1") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1lqmq1ag7s4b3gc3ddvr792c5xb5k6sfn0cchr3i2s7f1c231zjv")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/tomb.v1" #:unpack-path "gopkg.in/tomb.v1")) + (home-page "https://gopkg.in/tomb.v1") + (synopsis "Installation and usage") + (description + "The tomb package offers a conventional API for clean goroutine termination. +") + (license license:bsd-3))) + +(define-public go-github-com-onsi-gomega-1.7.0 + (package + (name "go-github-com-onsi-gomega") + (version "1.7.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/onsi/gomega") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "09j6wq425wgzzsbwm9ckhfgl2capv3yyqbrf45qyrjwkzm49i02y")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/onsi/gomega")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1) + ("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" + ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) + ("go-gopkg-in-fsnotify-v1-1.4.7" ,go-gopkg-in-fsnotify-v1-1.4.7) + ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e" + ,go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e) + ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" + ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) + ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" + ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) + ("go-github-com-onsi-ginkgo-1.6.0" ,go-github-com-onsi-ginkgo-1.6.0) + ("go-github-com-hpcloud-tail-1.0.0" ,go-github-com-hpcloud-tail-1.0.0) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0) + ("go-github-com-fsnotify-fsnotify-1.4.7" + ,go-github-com-fsnotify-fsnotify-1.4.7))) + (home-page "https://github.com/onsi/gomega") + (synopsis ": a BDD Testing Framework for Golang") + (description + "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library. +") + (license license:expat))) + +(define-public go-github-com-spf13-pflag-1.0.5 + (package + (name "go-github-com-spf13-pflag") + (version "1.0.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/spf13/pflag") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0gpmacngd0gpslnbkzi263f5ishigzgh6pbdv9hp092rnjl4nd31")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/spf13/pflag")) + (home-page "https://github.com/spf13/pflag") + (synopsis "Description") + (description + "Package pflag is a drop-in replacement for Go's flag package, implementing +POSIX/GNU-style --flags. +") + (license license:bsd-3))) + +(define-public go-gopkg-in-inf-v0-0.9.1 + (package + (name "go-gopkg-in-inf-v0") + (version "0.9.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/inf.v0") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "00k5iqjcp371fllqxncv7jkf80hn1zww92zm78cclbcn4ybigkng")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/inf.v0" #:unpack-path "gopkg.in/inf.v0")) + (home-page "https://gopkg.in/inf.v0") + (synopsis #f) + (description + "Package inf (type inf.Dec) implements \"infinite-precision\" decimal +arithmetic. +\"Infinite precision\" describes two characteristics: practically unlimited +precision for decimal number representation and no support for calculating +with any specific fixed precision. +(Although there is no practical limit on precision, inf.Dec can only +represent finite decimals.) +") + (license license:bsd-3))) + +(define-public go-github-com-nytimes-gziphandler-0.0.0-20170623195520-56545f4a5d46 + (package + (name "go-github-com-nytimes-gziphandler") + (version "0.0.0-20170623195520-56545f4a5d46") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/nytimes/gziphandler") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fwk9wz6vrvq72f2gq8jhvd1nvv6grqgwrjq66vjpm0726pxar72")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/NYTimes/gziphandler")) + (home-page "https://github.com/NYTimes/gziphandler") + (synopsis "Gzip Handler") + (description + "This is a tiny Go package which wraps HTTP handlers to transparently gzip the +response body, for clients which support it. Although it's usually simpler to +leave that to a reverse proxy (like nginx or Varnish), this package is useful +when that's undesirable.") + (license license:asl2.0))) + +(define-public go-github-com-asaskevich-govalidator-0.0.0-20190424111038-f61b66f89f4a + (package + (name "go-github-com-asaskevich-govalidator") + (version "0.0.0-20190424111038-f61b66f89f4a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/asaskevich/govalidator") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1jzjd9ak4byb83bwhbyrrdclnhrgglyxcbr4d4qh39a6ywvcijm5")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/asaskevich/govalidator")) + (home-page "https://github.com/asaskevich/govalidator") + (synopsis "govalidator") + (description + "Package govalidator is package of validators and sanitizers for strings, structs and collections. +") + (license license:expat))) + +(define-public go-github-com-emicklei-go-restful-0.0.0-20170410110728-ff4f55a20633 + (package + (name "go-github-com-emicklei-go-restful") + (version "0.0.0-20170410110728-ff4f55a20633") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/emicklei/go-restful") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1v5lj5142abz3gvbygp6xghpdx4ps2lwswl8559ivaidahwnc21c")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/emicklei/go-restful")) + (home-page "https://github.com/emicklei/go-restful") + (synopsis "go-restful") + (description + "Package restful , a lean package for creating REST-style WebServices without magic. +") + (license license:expat))) + +(define-public go-github-com-ghodss-yaml-0.0.0-20150909031657-73d445a93680 + (package + (name "go-github-com-ghodss-yaml") + (version "0.0.0-20150909031657-73d445a93680") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/ghodss/yaml") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0pg53ky4sy3sp9j4n7vgf1p3gw4nbckwqfldcmmi9rf13kjh0mr7")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/ghodss/yaml")) + (home-page "https://github.com/ghodss/yaml") + (synopsis "YAML marshaling and unmarshaling support for Go") + (description + "Copyright 2013 The Go Authors. All rights reserved. +Use of this source code is governed by a BSD-style +license that can be found in the LICENSE file. +") + (license #f))) + +(define-public go-github-com-go-openapi-jsonreference-0.19.3 + (package + (name "go-github-com-go-openapi-jsonreference") + (version "0.19.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/go-openapi/jsonreference") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ln21xai74fynwmi4ck5j0c70yszjy96wfagc705y8khjxsgncsw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/go-openapi/jsonreference")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) + ("go-golang-org-x-net-0.0.0-20190827160401-ba9fcec4b297" + ,go-golang-org-x-net-0.0.0-20190827160401-ba9fcec4b297) + ("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0) + ("go-github-com-go-openapi-jsonpointer-0.19.3" + ,go-github-com-go-openapi-jsonpointer-0.19.3) + ("go-github-com-puerkitobio-urlesc-0.0.0-20170810143723-de5bf2ad4578" + ,go-github-com-puerkitobio-urlesc-0.0.0-20170810143723-de5bf2ad4578) + ("go-github-com-puerkitobio-purell-1.1.1" + ,go-github-com-puerkitobio-purell-1.1.1))) + (home-page "https://github.com/go-openapi/jsonreference") + (synopsis "gojsonreference") + (description + "@url{https://raw.githubusercontent.com/go-openapi/jsonreference/master/LICENSE,(img (@ (src http://img.shields.io/badge/license-Apache%20v2-orange.svg) (alt license)))} @url{http://godoc.org/github.com/go-openapi/jsonreference,(img (@ (src https://godoc.org/github.com/go-openapi/jsonreference?status.svg=) (alt GoDoc)))} +An implementation of JSON Reference - Go language") + (license license:asl2.0))) + +(define-public go-github-com-mailru-easyjson-0.0.0-20190626092158-b2ccc519800e + (package + (name "go-github-com-mailru-easyjson") + (version "0.0.0-20190626092158-b2ccc519800e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mailru/easyjson") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0q85h383mhbkcjm2vqm72bi8n2252fv3c56q3lclzb8n2crnjcdk")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mailru/easyjson")) + (home-page "https://github.com/mailru/easyjson") + (synopsis "easyjson") + (description + "Package easyjson contains marshaler/unmarshaler interfaces and helper functions. +") + (license license:expat))) + +(define-public go-github-com-go-openapi-jsonpointer-0.19.3 + (package + (name "go-github-com-go-openapi-jsonpointer") + (version "0.19.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/go-openapi/jsonpointer") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1m4bb7c5y8ss2s8wl50k7lsk84nl4lcldkbkphrfdl21y51gz4jr")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/go-openapi/jsonpointer")) + (propagated-inputs + `(("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0) + ("go-github-com-mailru-easyjson-0.0.0-20190626092158-b2ccc519800e" + ,go-github-com-mailru-easyjson-0.0.0-20190626092158-b2ccc519800e) + ("go-github-com-go-openapi-swag-0.19.5" + ,go-github-com-go-openapi-swag-0.19.5))) + (home-page "https://github.com/go-openapi/jsonpointer") + (synopsis "gojsonpointer") + (description + "@url{https://raw.githubusercontent.com/go-openapi/jsonpointer/master/LICENSE,(img (@ (src http://img.shields.io/badge/license-Apache%20v2-orange.svg) (alt license)))} @url{http://godoc.org/github.com/go-openapi/jsonpointer,(img (@ (src https://godoc.org/github.com/go-openapi/jsonpointer?status.svg=) (alt GoDoc)))} +An implementation of JSON Pointer - Go language") + (license license:asl2.0))) + +(define-public go-github-com-puerkitobio-purell-1.1.1 + (package + (name "go-github-com-puerkitobio-purell") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/PuerkitoBio/purell") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0c525frsxmalrn55hzzsxy17ng8avkd40ga0wxfw9haxsdjgqdqy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/PuerkitoBio/purell")) + (home-page "https://github.com/PuerkitoBio/purell") + (synopsis "Purell") + (description + "Package purell offers URL normalization as described on the wikipedia page: +@url{http://en.wikipedia.org/wiki/URL_normalization,http://en.wikipedia.org/wiki/URL_normalization} +") + (license license:bsd-3))) + +(define-public go-github-com-puerkitobio-urlesc-0.0.0-20170810143723-de5bf2ad4578 + (package + (name "go-github-com-puerkitobio-urlesc") + (version "0.0.0-20170810143723-de5bf2ad4578") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/PuerkitoBio/urlesc") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0n0srpqwbaan1wrhh2b7ysz543pjs1xw2rghvqyffg9l0g8kzgcw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/PuerkitoBio/urlesc")) + (home-page "https://github.com/PuerkitoBio/urlesc") + (synopsis "urlesc") + (description + "Package urlesc implements query escaping as per @url{https://rfc-editor.org/rfc/rfc3986.html,RFC 3986}. +It contains some parts of the net/url package, modified so as to allow +some reserved characters incorrectly escaped by net/url. +See @url{https://github.com/golang/go/issues/5684,https://github.com/golang/go/issues/5684} +") + (license license:bsd-3))) + +(define-public go-github-com-go-openapi-swag-0.19.2 + (package + (name "go-github-com-go-openapi-swag") + (version "0.19.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/go-openapi/swag") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1mlxlajx2p9wjm72rmqjrx5g49q2sn04y45s3nrykkf6jqlq1v4z")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/go-openapi/swag")) + (propagated-inputs + `(("go-github-com-sourcegraph-go-diff-0.5.1" + ,go-github-com-sourcegraph-go-diff-0.5.1) + ("go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422" + ,go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422) + ("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) + ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" + ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) + ("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0) + ("go-github-com-mailru-easyjson-0.0.0-20190614124828-94de47d64c63" + ,go-github-com-mailru-easyjson-0.0.0-20190614124828-94de47d64c63) + ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/go-openapi/swag") + (synopsis "Swag") + (description + "Package swag contains a bunch of helper functions for go-openapi and go-swagger projects. +") + (license license:asl2.0))) + +(define-public go-github-com-go-openapi-jsonpointer-0.19.2 + (package + (name "go-github-com-go-openapi-jsonpointer") + (version "0.19.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/go-openapi/jsonpointer") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1s3cqf4svrbygvvpvi7hf122szsgihas52vqh0bba3avf4w03g9n")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/go-openapi/jsonpointer")) + (propagated-inputs + `(("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0) + ("go-github-com-go-openapi-swag-0.19.2" + ,go-github-com-go-openapi-swag-0.19.2))) + (home-page "https://github.com/go-openapi/jsonpointer") + (synopsis "gojsonpointer") + (description + "@url{https://raw.githubusercontent.com/go-openapi/jsonpointer/master/LICENSE,(img (@ (src http://img.shields.io/badge/license-Apache%20v2-orange.svg) (alt license)))} @url{http://godoc.org/github.com/go-openapi/jsonpointer,(img (@ (src https://godoc.org/github.com/go-openapi/jsonpointer?status.svg=) (alt GoDoc)))} +An implementation of JSON Pointer - Go language") + (license license:asl2.0))) + +(define-public go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190613194153-d28f0bde5980") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18xj31h70m7xxb7gc86n9i21w6d7djbjz67zfaljm4jqskz6hxkf")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-github-com-go-openapi-jsonreference-0.19.2 + (package + (name "go-github-com-go-openapi-jsonreference") + (version "0.19.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/go-openapi/jsonreference") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0v933yvcwyzzlpdxwb9204ki7lls2rwfd96ww2i901ndvz37kdf8")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/go-openapi/jsonreference")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) + ("go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980" + ,go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980) + ("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0) + ("go-github-com-go-openapi-jsonpointer-0.19.2" + ,go-github-com-go-openapi-jsonpointer-0.19.2) + ("go-github-com-puerkitobio-urlesc-0.0.0-20170810143723-de5bf2ad4578" + ,go-github-com-puerkitobio-urlesc-0.0.0-20170810143723-de5bf2ad4578) + ("go-github-com-puerkitobio-purell-1.1.1" + ,go-github-com-puerkitobio-purell-1.1.1))) + (home-page "https://github.com/go-openapi/jsonreference") + (synopsis "gojsonreference") + (description + "@url{https://raw.githubusercontent.com/go-openapi/jsonreference/master/LICENSE,(img (@ (src http://img.shields.io/badge/license-Apache%20v2-orange.svg) (alt license)))} @url{http://godoc.org/github.com/go-openapi/jsonreference,(img (@ (src https://godoc.org/github.com/go-openapi/jsonreference?status.svg=) (alt GoDoc)))} +An implementation of JSON Reference - Go language") + (license license:asl2.0))) + +(define-public go-github-com-kr-pty-1.1.5 + (package + (name "go-github-com-kr-pty") + (version "1.1.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/pty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1bpq77b90z72cv9h66dvxsg2j197ylpgcps23xsjfbs752bykfw1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/pty")) + (home-page "https://github.com/kr/pty") + (synopsis "pty") + (description + "Package pty is a wrapper for github.com/creack/pty, which provides +functions for working with Unix terminals. +") + (license license:expat))) + +(define-public go-github-com-stretchr-objx-0.2.0 + (package + (name "go-github-com-stretchr-objx") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/objx") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0pcdvakxgddaiwcdj73ra4da05a3q4cgwbpm2w75ycq4kzv8ij8k")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/objx")) + (propagated-inputs + `(("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/stretchr/objx") + (synopsis "Objx") + (description + "Objx - Go package for dealing with maps, slices, JSON and other data. +") + (license license:expat))) + +(define-public go-golang-org-x-crypto-0.0.0-20190611184440-5c40567a22f8 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20190611184440-5c40567a22f8") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "17g8fb9vy2sqq8vgz8jdvf6c6d2290gm2qs0i4yzsd86mgn4dlrg")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" + ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) + ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" + ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20190827160401-ba9fcec4b297 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190827160401-ba9fcec4b297") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1hbqvy6r0s5h0dpdqw8fynl3cq0acin3iyqki9xvl5r8h33yb9bx")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20190616124812-15dcb6c0061f + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190616124812-15dcb6c0061f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1qfkkysbyn44nyx57cq8mmw1cjgpxi9gi9xrf6kljmd9c1416zdd")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20190614205625-5aca471b1d59 + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20190614205625-5aca471b1d59") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1i4h3q83w4y9s065w0wnnnwlssy69jbrj08k47ppsa8dnv85kyrf")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" + ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-github-com-go-openapi-spec-0.19.3 + (package + (name "go-github-com-go-openapi-spec") + (version "0.19.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/go-openapi/spec") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1dikq1p550vj5i9y918s075pgk0fxkixxk3fb70ri7wkm51s6nlj")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/go-openapi/spec")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) + ("go-golang-org-x-tools-0.0.0-20190614205625-5aca471b1d59" + ,go-golang-org-x-tools-0.0.0-20190614205625-5aca471b1d59) + ("go-golang-org-x-sys-0.0.0-20190616124812-15dcb6c0061f" + ,go-golang-org-x-sys-0.0.0-20190616124812-15dcb6c0061f) + ("go-golang-org-x-net-0.0.0-20190827160401-ba9fcec4b297" + ,go-golang-org-x-net-0.0.0-20190827160401-ba9fcec4b297) + ("go-golang-org-x-crypto-0.0.0-20190611184440-5c40567a22f8" + ,go-golang-org-x-crypto-0.0.0-20190611184440-5c40567a22f8) + ("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0) + ("go-github-com-stretchr-objx-0.2.0" + ,go-github-com-stretchr-objx-0.2.0) + ("go-github-com-kr-pty-1.1.5" ,go-github-com-kr-pty-1.1.5) + ("go-github-com-go-openapi-swag-0.19.5" + ,go-github-com-go-openapi-swag-0.19.5) + ("go-github-com-go-openapi-jsonreference-0.19.2" + ,go-github-com-go-openapi-jsonreference-0.19.2) + ("go-github-com-go-openapi-jsonpointer-0.19.3" + ,go-github-com-go-openapi-jsonpointer-0.19.3))) + (home-page "https://github.com/go-openapi/spec") + (synopsis "OAI object model") + (description "The object model for OpenAPI specification documents.") + (license license:asl2.0))) + +(define-public go-github-com-mailru-easyjson-0.0.0-20190614124828-94de47d64c63 + (package + (name "go-github-com-mailru-easyjson") + (version "0.0.0-20190614124828-94de47d64c63") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mailru/easyjson") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1km0kkh7cf7dlz5pqi9yr1wamv0167y41cyv1dbrcxfdmwgpfd23")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mailru/easyjson")) + (home-page "https://github.com/mailru/easyjson") + (synopsis "easyjson") + (description + "Package easyjson contains marshaler/unmarshaler interfaces and helper functions. +") + (license license:expat))) + +(define-public go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422 + (package + (name "go-golang-org-x-lint") + (version "0.0.0-20190409202823-959b441ac422") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/lint") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1mgcv5f00pkzsbwnq2y7vqvd1b4lr5a3s47cphh2qv4indfk7pck")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/lint")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" + ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd))) + (home-page "https://golang.org/x/lint") + (synopsis "Installation") + (description "Package lint contains a linter for Go source code. +") + (license license:bsd-3))) + +(define-public go-github-com-shurcool-go-0.0.0-20180423040247-9e1955d9fb6e + (package + (name "go-github-com-shurcool-go") + (version "0.0.0-20180423040247-9e1955d9fb6e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/shurcooL/go") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1lad9bvs75jsn61cfza19739c2c057k0bqxg2b4xz3z3l4w1mkqj")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/shurcooL/go")) + (home-page "https://github.com/shurcooL/go") + (synopsis "go") + (description "Common Go code.") + (license license:expat))) + +(define-public go-github-com-shurcool-go-goon-0.0.0-20170922171312-37c2f522c041 + (package + (name "go-github-com-shurcool-go-goon") + (version "0.0.0-20170922171312-37c2f522c041") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/shurcooL/go-goon") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "17ac6j6msdcxbmfhq6pxhw5z339b87bd6ciln9909drjv2szyxqv")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/shurcooL/go-goon")) + (home-page "https://github.com/shurcooL/go-goon") + (synopsis "goon") + (description + "Package goon is a deep pretty printer with Go-like notation. It implements the goon specification. +") + (license license:expat))) + +(define-public go-sourcegraph-com-sqs-pbtypes-0.0.0-20180604144634-d3ebe8f20ae4 + (package + (name "go-sourcegraph-com-sqs-pbtypes") + (version "0.0.0-20180604144634-d3ebe8f20ae4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sqs/pbtypes") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0vcyqq4jc2jv1wh288qdxv51qxcfj07lvnlf37pjicsd2yrb7yrr")))) + (build-system go-build-system) + (arguments '(#:import-path "sourcegraph.com/sqs/pbtypes")) + (home-page "https://sourcegraph.com/sqs/pbtypes") + (synopsis "pbtypes") + (description + "Package pbtypes contains protocol buffer types (Timestamp, Void, +etc.) and related helpers. +") + (license license:asl2.0))) + +(define-public go-github-com-sourcegraph-go-diff-0.5.1 + (package + (name "go-github-com-sourcegraph-go-diff") + (version "0.5.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sourcegraph/go-diff") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0acabccjmxgdvhyd7fr0krlf7ymc7mngdq292n03hfys9nrnb0b2")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/sourcegraph/go-diff")) + (propagated-inputs + `(("go-sourcegraph-com-sqs-pbtypes-0.0.0-20180604144634-d3ebe8f20ae4" + ,go-sourcegraph-com-sqs-pbtypes-0.0.0-20180604144634-d3ebe8f20ae4) + ("go-github-com-shurcool-go-goon-0.0.0-20170922171312-37c2f522c041" + ,go-github-com-shurcool-go-goon-0.0.0-20170922171312-37c2f522c041) + ("go-github-com-shurcool-go-0.0.0-20180423040247-9e1955d9fb6e" + ,go-github-com-shurcool-go-0.0.0-20180423040247-9e1955d9fb6e) + ("go-github-com-gogo-protobuf-1.1.1" + ,go-github-com-gogo-protobuf-1.1.1))) + (home-page "https://github.com/sourcegraph/go-diff") + (synopsis "go-diff") + (description "Diff parser and printer for Go.") + (license license:expat))) + +(define-public go-github-com-go-openapi-swag-0.19.5 + (package + (name "go-github-com-go-openapi-swag") + (version "0.19.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/go-openapi/swag") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1z34vqc5yz6rzvarrvlhkimxx33p74iaxb28l1mv716njvlsmjhg")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/go-openapi/swag")) + (propagated-inputs + `(("go-github-com-sourcegraph-go-diff-0.5.1" + ,go-github-com-sourcegraph-go-diff-0.5.1) + ("go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422" + ,go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422) + ("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) + ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" + ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) + ("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0) + ("go-github-com-mailru-easyjson-0.0.0-20190614124828-94de47d64c63" + ,go-github-com-mailru-easyjson-0.0.0-20190614124828-94de47d64c63) + ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/go-openapi/swag") + (synopsis "Swag") + (description + "Package swag contains a bunch of helper functions for go-openapi and go-swagger projects. +") + (license license:asl2.0))) + +(define-public go-github-com-google-uuid-1.1.1 + (package + (name "go-github-com-google-uuid") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/uuid") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hfxcf9frkb57k6q0rdkrmnfs78ms21r1qfk9fhlqga2yh5xg8zb")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/uuid")) + (home-page "https://github.com/google/uuid") + (synopsis "uuid") + (description "Package uuid generates and inspects UUIDs. +") + (license license:bsd-3))) + +(define-public go-github-com-docopt-docopt-go-0.0.0-20180111231733-ee0de3bc6815 + (package + (name "go-github-com-docopt-docopt-go") + (version "0.0.0-20180111231733-ee0de3bc6815") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/docopt/docopt.go") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hlra7rmi5pmd7d93rv56ahiy4qkgmq8a6mz0jpadvbi5qh8lq6j")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/docopt/docopt-go")) + (home-page "https://github.com/docopt/docopt-go") + (synopsis "docopt-go") + (description + "Package docopt parses command-line arguments based on a help message. +") + (license license:expat))) + +(define-public go-github-com-googleapis-gnostic-0.4.1 + (package + (name "go-github-com-googleapis-gnostic") + (version "0.4.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/gnostic") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fw28m3ach5pkcdh4ijd6s7w09j0n88p6mah3hp0k8918jsc6mj9")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/googleapis/gnostic")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) + ("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" + ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) + ("go-github-com-kr-pretty-0.2.0" ,go-github-com-kr-pretty-0.2.0) + ("go-github-com-golang-protobuf-1.3.3" + ,go-github-com-golang-protobuf-1.3.3) + ("go-github-com-docopt-docopt-go-0.0.0-20180111231733-ee0de3bc6815" + ,go-github-com-docopt-docopt-go-0.0.0-20180111231733-ee0de3bc6815))) + (home-page "https://github.com/googleapis/gnostic") + (synopsis "â¨\x81 gnostic") + (description + "Gnostic is a tool for building better REST APIs through knowledge. +") + (license license:asl2.0))) + +(define-public go-github-com-munnerz-goautoneg-0.0.0-20120707110453-a547fc61f48d + (package + (name "go-github-com-munnerz-goautoneg") + (version "0.0.0-20120707110453-a547fc61f48d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/munnerz/goautoneg") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19khhn5xhqv1yp7d6k987gh5w5rhrjnp4p0c6fyrd8z6lzz5h9qi")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/munnerz/goautoneg")) + (home-page "https://github.com/munnerz/goautoneg") + (synopsis #f) + (description #f) + (license license:bsd-3))) + +(define-public go-github-com-onsi-ginkgo-0.0.0-20170829012221-11459a886d9c + (package + (name "go-github-com-onsi-ginkgo") + (version "0.0.0-20170829012221-11459a886d9c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/onsi/ginkgo") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1nswc1fnrrs792qbix05h91bilj8rr3wxmxgwi97p2gjk0r292zh")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/onsi/ginkgo")) + (home-page "https://github.com/onsi/ginkgo") + (synopsis "Ginkgo 2.0 Release Candidate is available!") + (description "Ginkgo is a BDD-style testing framework for Golang +") + (license license:expat))) + +(define-public go-github-com-onsi-gomega-0.0.0-20170829124025-dcabb60a477c + (package + (name "go-github-com-onsi-gomega") + (version "0.0.0-20170829124025-dcabb60a477c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/onsi/gomega") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1775lv5jbsgv3ghq5v2827slqlhqdadrzc1nkpq4y0hdv2qzrgkm")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/onsi/gomega")) + (home-page "https://github.com/onsi/gomega") + (synopsis ": a BDD Testing Framework for Golang") + (description + "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library. +") + (license license:expat))) + +(define-public go-github-com-spf13-pflag-0.0.0-20170130214245-9ff6c6923cff + (package + (name "go-github-com-spf13-pflag") + (version "0.0.0-20170130214245-9ff6c6923cff") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/spf13/pflag") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0mfrxzyl8x7araa126lh8l3sihbbgfbzgkrg3v3cx7y4n3wrsqvn")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/spf13/pflag")) + (home-page "https://github.com/spf13/pflag") + (synopsis "Description") + (description + "Package pflag is a drop-in replacement for Go's flag package, implementing +POSIX/GNU-style --flags. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20200324143707-d3edc9973b7e + (package + (name "go-golang-org-x-net") + (version "0.0.0-20200324143707-d3edc9973b7e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12zbjwcsh9b0lwycqlkrnbyg5a6a9dzgj8hhgq399bdda5bd97y7")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" + ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-k8s-io-gengo-0.0.0-20200413195148-3a45101e95ac + (package + (name "go-k8s-io-gengo") + (version "0.0.0-20200413195148-3a45101e95ac") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes/gengo") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0x46jq6rv8z0y96231rfgzvfscgy5hp5aacid3r93zy0rq9r37g6")))) + (build-system go-build-system) + (arguments '(#:import-path "k8s.io/gengo")) + (home-page "https://k8s.io/gengo") + (synopsis "gengo") + (description + "This package provides a package for generating things based on go files. This mechanism was first used +in Kubernetes and is split out here for ease of reuse and maintainability.") + (license license:asl2.0))) + +(define-public go-sigs-k8s-io-structured-merge-diff-v4-4.0.2 + (package + (name "go-sigs-k8s-io-structured-merge-diff-v4") + (version "4.0.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes-sigs/structured-merge-diff") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1z60sw6nrlzyddyx5pvh6afwf8jvmn8c2zw15hklq17iyvj3lj7a")))) + (build-system go-build-system) + (arguments + '(#:import-path + "sigs.k8s.io/structured-merge-diff/v4" + #:unpack-path + "sigs.k8s.io/structured-merge-diff/v4")) + (propagated-inputs + `(("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0) + ("go-github-com-modern-go-reflect2-1.0.1" + ,go-github-com-modern-go-reflect2-1.0.1) + ("go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd" + ,go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd) + ("go-github-com-json-iterator-go-1.1.6" + ,go-github-com-json-iterator-go-1.1.6) + ("go-github-com-google-gofuzz-1.0.0" + ,go-github-com-google-gofuzz-1.0.0) + ("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1))) + (home-page "https://sigs.k8s.io/structured-merge-diff/v4") + (synopsis "Structured Merge and Diff") + (description + "This repo contains code which implements the Kubernetes \"apply\" operation.") + (license license:asl2.0))) + +(define-public go-sigs-k8s-io-yaml-1.1.0 + (package + (name "go-sigs-k8s-io-yaml") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes-sigs/yaml") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1p7hvjdr5jsyk7nys1g1pmgnf3ys6n320i6hds85afppk81k01kb")))) + (build-system go-build-system) + (arguments '(#:import-path "sigs.k8s.io/yaml")) + (home-page "https://sigs.k8s.io/yaml") + (synopsis "YAML marshaling and unmarshaling support for Go") + (description + "kubernetes-sigs/yaml is a permanent fork of @url{https://github.com/ghodss/yaml,ghodss/yaml}.") + (license #f))) + +(define-public go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd + (package + (name "go-k8s-io-kube-openapi") + (version "0.0.0-20201113171705-d219536bb9fd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes/kube-openapi") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "11d420a3rxznh3f6x5a6xp22zjwv6jfq4w1gb6srqb4vn9rhgrka")))) + (build-system go-build-system) + (arguments '(#:import-path "k8s.io/kube-openapi")) + (propagated-inputs + `(("go-sigs-k8s-io-yaml-1.1.0" ,go-sigs-k8s-io-yaml-1.1.0) + ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.2" + ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.2) + ("go-k8s-io-klog-v2-2.0.0" ,go-k8s-io-klog-v2-2.0.0) + ("go-k8s-io-gengo-0.0.0-20200413195148-3a45101e95ac" + ,go-k8s-io-gengo-0.0.0-20200413195148-3a45101e95ac) + ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) + ("go-golang-org-x-net-0.0.0-20200324143707-d3edc9973b7e" + ,go-golang-org-x-net-0.0.0-20200324143707-d3edc9973b7e) + ("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0) + ("go-github-com-spf13-pflag-0.0.0-20170130214245-9ff6c6923cff" + ,go-github-com-spf13-pflag-0.0.0-20170130214245-9ff6c6923cff) + ("go-github-com-onsi-gomega-0.0.0-20170829124025-dcabb60a477c" + ,go-github-com-onsi-gomega-0.0.0-20170829124025-dcabb60a477c) + ("go-github-com-onsi-ginkgo-0.0.0-20170829012221-11459a886d9c" + ,go-github-com-onsi-ginkgo-0.0.0-20170829012221-11459a886d9c) + ("go-github-com-munnerz-goautoneg-0.0.0-20120707110453-a547fc61f48d" + ,go-github-com-munnerz-goautoneg-0.0.0-20120707110453-a547fc61f48d) + ("go-github-com-mitchellh-mapstructure-1.1.2" + ,go-github-com-mitchellh-mapstructure-1.1.2) + ("go-github-com-json-iterator-go-1.1.6" + ,go-github-com-json-iterator-go-1.1.6) + ("go-github-com-googleapis-gnostic-0.4.1" + ,go-github-com-googleapis-gnostic-0.4.1) + ("go-github-com-google-uuid-1.1.1" ,go-github-com-google-uuid-1.1.1) + ("go-github-com-google-gofuzz-1.0.0" + ,go-github-com-google-gofuzz-1.0.0) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.3.3" + ,go-github-com-golang-protobuf-1.3.3) + ("go-github-com-go-openapi-swag-0.19.5" + ,go-github-com-go-openapi-swag-0.19.5) + ("go-github-com-go-openapi-spec-0.19.3" + ,go-github-com-go-openapi-spec-0.19.3) + ("go-github-com-go-openapi-jsonreference-0.19.3" + ,go-github-com-go-openapi-jsonreference-0.19.3) + ("go-github-com-go-openapi-jsonpointer-0.19.3" + ,go-github-com-go-openapi-jsonpointer-0.19.3) + ("go-github-com-ghodss-yaml-0.0.0-20150909031657-73d445a93680" + ,go-github-com-ghodss-yaml-0.0.0-20150909031657-73d445a93680) + ("go-github-com-emicklei-go-restful-0.0.0-20170410110728-ff4f55a20633" + ,go-github-com-emicklei-go-restful-0.0.0-20170410110728-ff4f55a20633) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1) + ("go-github-com-asaskevich-govalidator-0.0.0-20190424111038-f61b66f89f4a" + ,go-github-com-asaskevich-govalidator-0.0.0-20190424111038-f61b66f89f4a) + ("go-github-com-nytimes-gziphandler-0.0.0-20170623195520-56545f4a5d46" + ,go-github-com-nytimes-gziphandler-0.0.0-20170623195520-56545f4a5d46))) + (home-page "https://k8s.io/kube-openapi") + (synopsis "Kube OpenAPI") + (description + "This repo is the home for Kubernetes OpenAPI discovery spec generation. The goal +is to support a subset of OpenAPI features to satisfy kubernetes use-cases but +implement that subset with little to no assumption about the structure of the +code or routes. Thus, there should be no kubernetes specific code in this repo.") + (license license:asl2.0))) + +(define-public go-github-com-json-iterator-go-1.1.6 + (package + (name "go-github-com-json-iterator-go") + (version "1.1.6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/json-iterator/go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "08caswxvdn7nvaqyj5kyny6ghpygandlbw9vxdj7l5vkp7q0s43r")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/json-iterator/go")) + (home-page "https://github.com/json-iterator/go") + (synopsis "Benchmark") + (description + "Package jsoniter implements encoding and decoding of JSON as defined in +@url{https://rfc-editor.org/rfc/rfc4627.html,RFC 4627} and provides interfaces with identical syntax of standard lib encoding/json. +Converting from encoding/json to jsoniter is no more than replacing the package with jsoniter +and variable type declarations (if any). +jsoniter interfaces gives 100% compatibility with code using standard lib. +") + (license license:expat))) + +(define-public go-github-com-modern-go-reflect2-1.0.1 + (package + (name "go-github-com-modern-go-reflect2") + (version "1.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/modern-go/reflect2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "06a3sablw53n1dqqbr2f53jyksbxdmmk8axaas4yvnhyfi55k4lf")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/modern-go/reflect2")) + (home-page "https://github.com/modern-go/reflect2") + (synopsis "reflect2") + (description "reflect api that avoids runtime reflect.Value cost") + (license license:asl2.0))) + +(define-public go-sigs-k8s-io-structured-merge-diff-v4-4.0.3 + (package + (name "go-sigs-k8s-io-structured-merge-diff-v4") + (version "4.0.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes-sigs/structured-merge-diff") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1jv60bkk0z437bsz5ldjyc006k20njmpl0xfl8p3g1q0bx0fkypa")))) + (build-system go-build-system) + (arguments + '(#:import-path + "sigs.k8s.io/structured-merge-diff/v4" + #:unpack-path + "sigs.k8s.io/structured-merge-diff/v4")) + (propagated-inputs + `(("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0) + ("go-github-com-modern-go-reflect2-1.0.1" + ,go-github-com-modern-go-reflect2-1.0.1) + ("go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd" + ,go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd) + ("go-github-com-json-iterator-go-1.1.6" + ,go-github-com-json-iterator-go-1.1.6) + ("go-github-com-google-gofuzz-1.0.0" + ,go-github-com-google-gofuzz-1.0.0) + ("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1))) + (home-page "https://sigs.k8s.io/structured-merge-diff/v4") + (synopsis "Structured Merge and Diff") + (description + "This repo contains code which implements the Kubernetes \"apply\" operation.") + (license license:asl2.0))) + +(define-public go-gopkg-in-yaml-v2-2.2.8 + (package + (name "go-gopkg-in-yaml-v2") + (version "2.2.8") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1inf7svydzscwv9fcjd2rm61a4xjk6jkswknybmns2n58shimapw")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v2") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language. +") + (license license:asl2.0))) + +(define-public go-sigs-k8s-io-yaml-1.2.0 + (package + (name "go-sigs-k8s-io-yaml") + (version "1.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes-sigs/yaml") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "059a1chkd6afyvqszrx7h93k6cgik3ia92x29f5whpwi66461pzq")))) + (build-system go-build-system) + (arguments '(#:import-path "sigs.k8s.io/yaml")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://sigs.k8s.io/yaml") + (synopsis "YAML marshaling and unmarshaling support for Go") + (description + "kubernetes-sigs/yaml is a permanent fork of @url{https://github.com/ghodss/yaml,ghodss/yaml}.") + (license #f))) + +(define-public go-k8s-io-apimachinery-0.20.6 + (package + (name "go-k8s-io-apimachinery") + (version "0.20.6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes/apimachinery") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "16952v7zjk3pdyw5r3wy28qkcfx3risid0847pwdw8gmalwxr237")))) + (build-system go-build-system) + (arguments '(#:import-path "k8s.io/apimachinery")) + (propagated-inputs + `(("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) + ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.3" + ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.3) + ("go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd" + ,go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd) + ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) + ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) + ("go-gopkg-in-inf-v0-0.9.1" ,go-gopkg-in-inf-v0-0.9.1) + ("go-google-golang-org-protobuf-1.25.0" + ,go-google-golang-org-protobuf-1.25.0) + ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) + ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" + ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) + ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" + ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-onsi-gomega-1.7.0" ,go-github-com-onsi-gomega-1.7.0) + ("go-github-com-onsi-ginkgo-1.11.0" ,go-github-com-onsi-ginkgo-1.11.0) + ("go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f" + ,go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f) + ("go-github-com-modern-go-reflect2-1.0.1" + ,go-github-com-modern-go-reflect2-1.0.1) + ("go-github-com-json-iterator-go-1.1.10" + ,go-github-com-json-iterator-go-1.1.10) + ("go-github-com-hashicorp-golang-lru-0.5.1" + ,go-github-com-hashicorp-golang-lru-0.5.1) + ("go-github-com-googleapis-gnostic-0.4.1" + ,go-github-com-googleapis-gnostic-0.4.1) + ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) + ("go-github-com-google-gofuzz-1.1.0" + ,go-github-com-google-gofuzz-1.1.0) + ("go-github-com-google-go-cmp-0.5.2" + ,go-github-com-google-go-cmp-0.5.2) + ("go-github-com-golang-protobuf-1.4.3" + ,go-github-com-golang-protobuf-1.4.3) + ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" + ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) + ("go-github-com-gogo-protobuf-1.3.2" + ,go-github-com-gogo-protobuf-1.3.2) + ("go-github-com-fsnotify-fsnotify-1.4.9" + ,go-github-com-fsnotify-fsnotify-1.4.9) + ("go-github-com-evanphx-json-patch-4.9.0+incompatible" + ,go-github-com-evanphx-json-patch-4.9.0+incompatible) + ("go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153" + ,go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153) + ("go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96" + ,go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://k8s.io/apimachinery") + (synopsis "apimachinery") + (description + "Scheme, typing, encoding, decoding, and conversion packages for Kubernetes and Kubernetes-like API objects.") + (license license:asl2.0))) + +(define-public go-k8s-io-client-go-0.20.6 + (package + (name "go-k8s-io-client-go") + (version "0.20.6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes/client-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fpz56pfadbfp8mlzmzicfmlgk5zqbk2rdwnr8c8h6ypjd5xjcvz")))) + (build-system go-build-system) + (arguments '(#:import-path "k8s.io/client-go")) + (propagated-inputs + `(("go-k8s-io-apimachinery-0.20.6" ,go-k8s-io-apimachinery-0.20.6) + ("go-k8s-io-api-0.20.6" ,go-k8s-io-api-0.20.6) + ("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) + ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" + ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) + ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) + ("go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e" + ,go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e) + ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" + ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) + ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" + ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) + ("go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0" + ,go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) + ("go-github-com-peterbourgon-diskv-2.0.1+incompatible" + ,go-github-com-peterbourgon-diskv-2.0.1+incompatible) + ("go-github-com-imdario-mergo-0.3.5" + ,go-github-com-imdario-mergo-0.3.5) + ("go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7" + ,go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7) + ("go-github-com-googleapis-gnostic-0.4.1" + ,go-github-com-googleapis-gnostic-0.4.1) + ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) + ("go-github-com-google-gofuzz-1.1.0" + ,go-github-com-google-gofuzz-1.1.0) + ("go-github-com-google-go-cmp-0.5.2" + ,go-github-com-google-go-cmp-0.5.2) + ("go-github-com-golang-protobuf-1.4.3" + ,go-github-com-golang-protobuf-1.4.3) + ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" + ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) + ("go-github-com-gogo-protobuf-1.3.2" + ,go-github-com-gogo-protobuf-1.3.2) + ("go-github-com-evanphx-json-patch-4.9.0+incompatible" + ,go-github-com-evanphx-json-patch-4.9.0+incompatible) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1) + ("go-github-com-azure-go-autorest-autorest-adal-0.9.5" + ,go-github-com-azure-go-autorest-autorest-adal-0.9.5) + ("go-github-com-azure-go-autorest-autorest-0.11.1" + ,go-github-com-azure-go-autorest-autorest-0.11.1) + ("go-cloud-google-com-go-0.54.0" ,go-cloud-google-com-go-0.54.0))) + (home-page "https://k8s.io/client-go") + (synopsis "client-go") + (description + "Go clients for talking to a @url{http://kubernetes.io/,kubernetes} cluster.") + (license license:asl2.0))) + +(define-public go-k8s-io-component-base-0.20.6 + (package + (name "go-k8s-io-component-base") + (version "0.20.6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes/component-base") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1987vm5lhbnn4ynrpzdgz3873lp78664cpdpkbv9jwnhzqdhpyhf")))) + (build-system go-build-system) + (arguments '(#:import-path "k8s.io/component-base")) + (propagated-inputs + `(("go-k8s-io-client-go-0.20.6" ,go-k8s-io-client-go-0.20.6) + ("go-k8s-io-apimachinery-0.20.6" ,go-k8s-io-apimachinery-0.20.6) + ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" + ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) + ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) + ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) + ("go-go-uber-org-multierr-1.1.0" ,go-go-uber-org-multierr-1.1.0) + ("go-go-uber-org-atomic-1.4.0" ,go-go-uber-org-atomic-1.4.0) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) + ("go-github-com-sirupsen-logrus-1.6.0" + ,go-github-com-sirupsen-logrus-1.6.0) + ("go-github-com-prometheus-procfs-0.2.0" + ,go-github-com-prometheus-procfs-0.2.0) + ("go-github-com-prometheus-common-0.10.0" + ,go-github-com-prometheus-common-0.10.0) + ("go-github-com-prometheus-client-model-0.2.0" + ,go-github-com-prometheus-client-model-0.2.0) + ("go-github-com-prometheus-client-golang-1.7.1" + ,go-github-com-prometheus-client-golang-1.7.1) + ("go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd" + ,go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd) + ("go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369" + ,go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369) + ("go-github-com-google-go-cmp-0.5.2" + ,go-github-com-google-go-cmp-0.5.2) + ("go-github-com-go-logr-logr-0.2.0" ,go-github-com-go-logr-logr-0.2.0) + ("go-github-com-blang-semver-3.5.1+incompatible" + ,go-github-com-blang-semver-3.5.1+incompatible))) + (home-page "https://k8s.io/component-base") + (synopsis "component-base") + (description + "Implement KEP 32: @url{https://github.com/kubernetes/enhancements/blob/master/keps/sig-cluster-lifecycle/wgs/783-component-base/README.md,https://github.com/kubernetes/enhancements/blob/master/keps/sig-cluster-lifecycle/wgs/783-component-base/README.md}") + (license license:asl2.0))) + +(define-public go-github-com-kr-pretty-0.2.0 + (package + (name "go-github-com-kr-pretty") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/pretty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ywbfzz1h3a3qd8rpkiqwi1dm4w8ls9ijb4x1b7567grns9f0vnp")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/pretty")) + (propagated-inputs + `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) + (home-page "https://github.com/kr/pretty") + (synopsis #f) + (description + "Package pretty provides pretty-printing for Go values. This is +useful during debugging, to avoid wrapping long output lines in +the terminal. +") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20201112073958-5cba982894dd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "08dvnwmi2p4slmhyx7gzkmzfp51mmnkzi0ngwhvv0vip1s3s3zjc")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-text-0.3.4 + (package + (name "go-golang-org-x-text") + (version "0.3.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "11jdvix83xcl5xnb039y4zrz4x5skzsps0w1jryp6wrar53cydvz")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/text")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" + ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) + (home-page "https://golang.org/x/text") + (synopsis "Go Text") + (description + "text is a repository of text-related packages related to internationalization +(i18n) and localization (l10n), such as character encodings, text +transformations, and locale-specific text handling. +") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-1.24.0 + (package + (name "go-google-golang-org-protobuf") + (version "1.24.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0x3qyn3rizbs671gs7f8v50rmiwf9h7kbaradpivw9718mhbg1gn")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" + ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.1" + ,go-github-com-golang-protobuf-1.4.1))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20201110150050-8816d57aaa9a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0cbfam4w9jr5gib43v3s2r5j8mhd3hl6ks3azwsahaff6idggg20")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.24.0" + ,go-google-golang-org-protobuf-1.24.0) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-golang-protobuf-1.4.1" + ,go-github-com-golang-protobuf-1.4.1))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-k8s-io-cri-api-0.20.6 + (package + (name "go-k8s-io-cri-api") + (version "0.20.6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes/cri-api") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0yp4rfxjn4h78z4sbmwhcqm8mva9bsvsc5jky2qa76npp0hycjhx")))) + (build-system go-build-system) + (arguments '(#:import-path "k8s.io/cri-api")) + (propagated-inputs + `(("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" + ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) + ("go-google-golang-org-protobuf-1.25.0" + ,go-google-golang-org-protobuf-1.25.0) + ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) + ("go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a" + ,go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a) + ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) + ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" + ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) + ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" + ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-kr-pretty-0.2.0" ,go-github-com-kr-pretty-0.2.0) + ("go-github-com-google-go-cmp-0.5.2" + ,go-github-com-google-go-cmp-0.5.2) + ("go-github-com-golang-protobuf-1.4.3" + ,go-github-com-golang-protobuf-1.4.3) + ("go-github-com-gogo-protobuf-1.3.2" + ,go-github-com-gogo-protobuf-1.3.2) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://k8s.io/cri-api") + (synopsis "Purpose") + (description + "This repository contains the definitions for the Container Runtime Interface (CRI). +CRI is a plugin interface which enables kubelet to use a wide variety of container runtimes, +without the need to recompile. CRI consists of a protocol buffers and gRPC API.") + (license license:asl2.0))) + +(define-public go-github-com-go-logr-logr-0.2.0 + (package + (name "go-github-com-go-logr-logr") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/go-logr/logr") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "06xh4pw53z38vyi300mgpnr4pkqgknw9xakdyk1xzqfg9zd60d7d")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/go-logr/logr")) + (home-page "https://github.com/go-logr/logr") + (synopsis "A minimal logging API for Go") + (description + "Package logr defines a general-purpose logging API and abstract interfaces +to back that API. Packages in the Go ecosystem can depend on this package, +while callers can implement logging with whatever backend is appropriate. +") + (license license:asl2.0))) + +(define-public go-k8s-io-klog-v2-2.4.0 + (package + (name "go-k8s-io-klog-v2") + (version "2.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes/klog") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1zjih6bgdalga5hqaa2fwwidslq6lv358gkj88a8wwj7w253wc8c")))) + (build-system go-build-system) + (arguments + '(#:import-path "k8s.io/klog/v2" #:unpack-path "k8s.io/klog/v2")) + (propagated-inputs + `(("go-github-com-go-logr-logr-0.2.0" + ,go-github-com-go-logr-logr-0.2.0))) + (home-page "https://k8s.io/klog/v2") + (synopsis "klog") + (description + "Package klog implements logging analogous to the Google-internal C++ INFO/ERROR/V setup. +It provides functions Info, Warning, Error, Fatal, plus formatting variants such as +Infof. It also provides V-style logging controlled by the -v and -vmodule=file=2 flags. +") + (license license:asl2.0))) + +(define-public go-github-com-spf13-afero-1.2.2 + (package + (name "go-github-com-spf13-afero") + (version "1.2.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/spf13/afero") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0j9r65qgd58324m85lkl49vk9dgwd62g7dwvkfcm3k6i9dc555a9")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/spf13/afero")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0))) + (home-page "https://github.com/spf13/afero") + (synopsis "Overview") + (description + "This package provides a FileSystem Abstraction System for Go") + (license license:asl2.0))) + +(define-public go-github-com-go-logr-logr-0.1.0 + (package + (name "go-github-com-go-logr-logr") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/go-logr/logr") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0fhijjhxz4n2j5i24ckzv8r9kri3v44jdyklgbqjfq0xm7izqg14")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/go-logr/logr")) + (home-page "https://github.com/go-logr/logr") + (synopsis "A minimal logging API for Go") + (description + "Package logr defines a general-purpose logging API and abstract interfaces +to back that API. Packages in the Go ecosystem can depend on this package, +while callers can implement logging with whatever backend is appropriate. +") + (license license:asl2.0))) + +(define-public go-k8s-io-klog-v2-2.0.0 + (package + (name "go-k8s-io-klog-v2") + (version "2.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes/klog") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "09vqm0n5l64lzpk3xqm4njbncnphx52qk21gwx8nsgyivlxx1n8g")))) + (build-system go-build-system) + (arguments + '(#:import-path "k8s.io/klog/v2" #:unpack-path "k8s.io/klog/v2")) + (propagated-inputs + `(("go-github-com-go-logr-logr-0.1.0" + ,go-github-com-go-logr-logr-0.1.0))) + (home-page "https://k8s.io/klog/v2") + (synopsis "klog") + (description + "Package klog implements logging analogous to the Google-internal C++ INFO/ERROR/V setup. +It provides functions Info, Warning, Error, Fatal, plus formatting variants such as +Infof. It also provides V-style logging controlled by the -v and -vmodule=file=2 flags. +") + (license license:asl2.0))) + +(define-public go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920 + (package + (name "go-k8s-io-utils") + (version "0.0.0-20201110183641-67b214c5f920") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes/utils") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19rc9v5xin0a8qbf25my3rd0jd74cin2mk2a38j2dwplqy3s9crl")))) + (build-system go-build-system) + (arguments '(#:import-path "k8s.io/utils")) + (propagated-inputs + `(("go-k8s-io-klog-v2-2.0.0" ,go-k8s-io-klog-v2-2.0.0) + ("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0) + ("go-github-com-spf13-afero-1.2.2" ,go-github-com-spf13-afero-1.2.2) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://k8s.io/utils") + (synopsis "Utils") + (description + "This package provides a set of Go libraries that provide low-level, kubernetes-independent packages +supplementing the @url{https://golang.org/pkg/#stdlib,Go standard libs}.") + (license license:asl2.0))) + +(define-public go-github-com-gogo-googleapis-1.3.2 + (package + (name "go-github-com-gogo-googleapis") + (version "1.3.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gogo/googleapis") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "10670qprmk151n6pa1yclr89kgrvmalzvkq221xqbid83iv59s2h")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/gogo/googleapis")) + (propagated-inputs + `(("go-github-com-gogo-protobuf-1.3.1" + ,go-github-com-gogo-protobuf-1.3.1))) + (home-page "https://github.com/gogo/googleapis") + (synopsis "Google APIs generated by gogoprotobuf") + (description + "The @url{https://github.com/gogo/grpc-example,grpc-example} includes an example usage of this repository.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-containerd-1.5.7 + (package + (name "go-github-com-containerd-containerd") + (version "1.5.7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/containerd") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "14qb7a9ckfvxl30axqsha0qs8lfkpkxnhj61cdqxk2b9mz160a67")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/containerd")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) + ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) + ("go-github-com-golang-protobuf-1.3.5" + ,go-github-com-golang-protobuf-1.3.5) + ("go-github-com-gogo-googleapis-1.3.2" + ,go-github-com-gogo-googleapis-1.3.2) + ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" + ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) + ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) + ("go-k8s-io-cri-api-0.20.6" ,go-k8s-io-cri-api-0.20.6) + ("go-k8s-io-component-base-0.20.6" ,go-k8s-io-component-base-0.20.6) + ("go-k8s-io-client-go-0.20.6" ,go-k8s-io-client-go-0.20.6) + ("go-k8s-io-apiserver-0.20.6" ,go-k8s-io-apiserver-0.20.6) + ("go-k8s-io-apimachinery-0.20.6" ,go-k8s-io-apimachinery-0.20.6) + ("go-k8s-io-api-0.20.6" ,go-k8s-io-api-0.20.6) + ("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) + ("go-golang-org-x-sys-0.0.0-20210426230700-d19ff857e887" + ,go-golang-org-x-sys-0.0.0-20210426230700-d19ff857e887) + ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" + ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) + ("go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110" + ,go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110) + ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) + ("go-github-com-tchap-go-patricia-2.2.6+incompatible" + ,go-github-com-tchap-go-patricia-2.2.6+incompatible) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-sirupsen-logrus-1.8.1" + ,go-github-com-sirupsen-logrus-1.8.1) + ("go-github-com-satori-go-uuid-1.2.0" + ,go-github-com-satori-go-uuid-1.2.0) + ("go-github-com-prometheus-procfs-0.6.0" + ,go-github-com-prometheus-procfs-0.6.0) + ("go-github-com-prometheus-client-golang-1.7.1" + ,go-github-com-prometheus-client-golang-1.7.1) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-pelletier-go-toml-1.8.1" + ,go-github-com-pelletier-go-toml-1.8.1) + ("go-github-com-opencontainers-selinux-1.8.2" + ,go-github-com-opencontainers-selinux-1.8.2) + ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417" + ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417) + ("go-github-com-opencontainers-runc-1.0.2" + ,go-github-com-opencontainers-runc-1.0.2) + ("go-github-com-opencontainers-image-spec-1.0.1" + ,go-github-com-opencontainers-image-spec-1.0.1) + ("go-github-com-opencontainers-go-digest-1.0.0" + ,go-github-com-opencontainers-go-digest-1.0.0) + ("go-github-com-moby-sys-symlink-0.1.0" + ,go-github-com-moby-sys-symlink-0.1.0) + ("go-github-com-moby-sys-mountinfo-0.4.1" + ,go-github-com-moby-sys-mountinfo-0.4.1) + ("go-github-com-moby-locker-1.0.1" ,go-github-com-moby-locker-1.0.1) + ("go-github-com-klauspost-compress-1.11.13" + ,go-github-com-klauspost-compress-1.11.13) + ("go-github-com-imdario-mergo-0.3.12" + ,go-github-com-imdario-mergo-0.3.12) + ("go-github-com-hashicorp-go-multierror-1.0.0" + ,go-github-com-hashicorp-go-multierror-1.0.0) + ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" + ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) + ("go-github-com-google-uuid-1.2.0" ,go-github-com-google-uuid-1.2.0) + ("go-github-com-google-go-cmp-0.5.5" + ,go-github-com-google-go-cmp-0.5.5) + ("go-github-com-gogo-protobuf-1.3.2" + ,go-github-com-gogo-protobuf-1.3.2) + ("go-github-com-fsnotify-fsnotify-1.4.9" + ,go-github-com-fsnotify-fsnotify-1.4.9) + ("go-github-com-emicklei-go-restful-2.9.5+incompatible" + ,go-github-com-emicklei-go-restful-2.9.5+incompatible) + ("go-github-com-docker-go-units-0.4.0" + ,go-github-com-docker-go-units-0.4.0) + ("go-github-com-docker-go-metrics-0.0.1" + ,go-github-com-docker-go-metrics-0.0.1) + ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" + ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1) + ("go-github-com-coreos-go-systemd-v22-22.3.2" + ,go-github-com-coreos-go-systemd-v22-22.3.2) + ("go-github-com-containernetworking-plugins-0.9.1" + ,go-github-com-containernetworking-plugins-0.9.1) + ("go-github-com-containerd-zfs-1.0.0" + ,go-github-com-containerd-zfs-1.0.0) + ("go-github-com-containerd-typeurl-1.0.2" + ,go-github-com-containerd-typeurl-1.0.2) + ("go-github-com-containerd-ttrpc-1.0.2" + ,go-github-com-containerd-ttrpc-1.0.2) + ("go-github-com-containerd-nri-0.1.0" + ,go-github-com-containerd-nri-0.1.0) + ("go-github-com-containerd-imgcrypt-1.1.1" + ,go-github-com-containerd-imgcrypt-1.1.1) + ("go-github-com-containerd-go-runc-1.0.0" + ,go-github-com-containerd-go-runc-1.0.0) + ("go-github-com-containerd-go-cni-1.0.2" + ,go-github-com-containerd-go-cni-1.0.2) + ("go-github-com-containerd-fifo-1.0.0" + ,go-github-com-containerd-fifo-1.0.0) + ("go-github-com-containerd-continuity-0.1.0" + ,go-github-com-containerd-continuity-0.1.0) + ("go-github-com-containerd-console-1.0.2" + ,go-github-com-containerd-console-1.0.2) + ("go-github-com-containerd-cgroups-1.0.1" + ,go-github-com-containerd-cgroups-1.0.1) + ("go-github-com-containerd-btrfs-1.0.0" + ,go-github-com-containerd-btrfs-1.0.0) + ("go-github-com-containerd-aufs-1.0.0" + ,go-github-com-containerd-aufs-1.0.0) + ("go-github-com-microsoft-hcsshim-0.8.21" + ,go-github-com-microsoft-hcsshim-0.8.21) + ("go-github-com-microsoft-go-winio-0.4.17" + ,go-github-com-microsoft-go-winio-0.4.17))) + (home-page "https://github.com/containerd/containerd") + (synopsis "Now Recruiting") + (description + "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") + (license license:asl2.0))) + +(define-public go-github-com-containers-libtrust-0.0.0-20190913040956-14b96171aa3b + (package + (name "go-github-com-containers-libtrust") + (version "0.0.0-20190913040956-14b96171aa3b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containers/libtrust") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1s54984nlg8mbl6n678v46zknxsmnbvma5c77zrdk2bj2m287d09")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containers/libtrust")) + (home-page "https://github.com/containers/libtrust") + (synopsis "libtrust") + (description + "Package libtrust provides an interface for managing authentication and +authorization using public key cryptography. Authentication is handled +using the identity attached to the public key and verified through TLS +x509 certificates, a key challenge, or signature. Authorization and +access control is managed through a trust graph distributed between +both remote trust servers and locally cached and managed data. +") + (license license:asl2.0))) + +(define-public go-github-com-google-go-cmp-0.5.2 + (package + (name "go-github-com-google-go-cmp") + (version "0.5.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0qchy411jm9q2l9mf7x3ry2ycaqp9xdhf2nx14qrpzcxfigv2705")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") + (license license:bsd-3))) + +(define-public go-github-com-miekg-pkcs11-1.0.3 + (package + (name "go-github-com-miekg-pkcs11") + (version "1.0.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/miekg/pkcs11") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0rmmgssb6y28x54si5h63gwbdsjjxf5n9xvm3zqdfsf9l10gx2m6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/miekg/pkcs11")) + (home-page "https://github.com/miekg/pkcs11") + (synopsis "PKCS#11") + (description + "Package pkcs11 is a wrapper around the PKCS#11 cryptographic library. +") + (license license:bsd-3))) + +(define-public go-github-com-opencontainers-image-spec-1.0.1 + (package + (name "go-github-com-opencontainers-image-spec") + (version "1.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/image-spec") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03dvbj3dln8c55v9gp79mgmz2yi2ws3r08iyz2fk41y3i22iaw1q")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/image-spec")) + (home-page "https://github.com/opencontainers/image-spec") + (synopsis "OCI Image Format Specification") + (description + "The OCI Image Format project creates and maintains the software shipping container image format spec (OCI Image Format).") + (license license:asl2.0))) + +(define-public go-github-com-stefanberger-go-pkcs11uri-0.0.0-20201008174630-78d3cae3a980 + (package + (name "go-github-com-stefanberger-go-pkcs11uri") + (version "0.0.0-20201008174630-78d3cae3a980") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stefanberger/go-pkcs11uri") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "09bnd1fn2v5y5ngsxz751a0x9fsqn8idlfrwyymfv9l57wvmrd2l")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stefanberger/go-pkcs11uri")) + (home-page "https://github.com/stefanberger/go-pkcs11uri") + (synopsis "go-pkcs11uri") + (description + "Welcome to the go-pkcs11uri library. The implementation follows @url{https://tools.ietf.org/html/rfc7512,RFC 7512} and this @url{https://www.rfc-editor.org/errata/rfc7512,errata}.") + (license license:asl2.0))) + +(define-public go-go-mozilla-org-pkcs7-0.0.0-20200128120323-432b2356ecb1 + (package + (name "go-go-mozilla-org-pkcs7") + (version "0.0.0-20200128120323-432b2356ecb1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mozilla-services/pkcs7") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0yncaq6i1x6apykvng92yyqkj5kmzl4c43lmcalr5lq7ks009p40")))) + (build-system go-build-system) + (arguments '(#:import-path "go.mozilla.org/pkcs7")) + (home-page "https://go.mozilla.org/pkcs7") + (synopsis "pkcs7") + (description + "Package pkcs7 implements parsing and generation of some PKCS#7 structures. +") + (license license:expat))) + +(define-public go-gopkg-in-square-go-jose-v2-2.5.1 + (package + (name "go-gopkg-in-square-go-jose-v2") + (version "2.5.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/square/go-jose.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0z0hbmb5yyvnjkyiyn259wkbqbjxs2pzx87jz472shn2bgggxa4n")))) + (build-system go-build-system) + (arguments + '(#:import-path + "gopkg.in/square/go-jose.v2" + #:unpack-path + "gopkg.in/square/go-jose.v2")) + (home-page "https://gopkg.in/square/go-jose.v2") + (synopsis "Go JOSE") + (description + "Package jose aims to provide an implementation of the Javascript Object Signing +and Encryption set of standards. It implements encryption and signing based on +the JSON Web Encryption and JSON Web Signature standards, with optional JSON +Web Token support available in a sub-package. The library supports both the +compact and full serialization formats, and has optional support for multiple +recipients. +") + (license license:asl2.0))) + +(define-public go-gopkg-in-yaml-v2-2.4.0 + (package + (name "go-gopkg-in-yaml-v2") + (version "2.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1pbmrpj7gcws34g8vwna4i2nhm9p6235piww36436xhyaa10cldr")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v2") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language. +") + (license license:asl2.0))) + +(define-public go-github-com-containers-ocicrypt-1.1.2 + (package + (name "go-github-com-containers-ocicrypt") + (version "1.1.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containers/ocicrypt") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0cw9f8vmra6vx6k11yhn297brz719ana3h5pznclfdfp54ggz8vv")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containers/ocicrypt")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) + ("go-gopkg-in-square-go-jose-v2-2.5.1" + ,go-gopkg-in-square-go-jose-v2-2.5.1) + ("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) + ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" + ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) + ("go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2" + ,go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2) + ("go-go-mozilla-org-pkcs7-0.0.0-20200128120323-432b2356ecb1" + ,go-go-mozilla-org-pkcs7-0.0.0-20200128120323-432b2356ecb1) + ("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0) + ("go-github-com-stefanberger-go-pkcs11uri-0.0.0-20201008174630-78d3cae3a980" + ,go-github-com-stefanberger-go-pkcs11uri-0.0.0-20201008174630-78d3cae3a980) + ("go-github-com-sirupsen-logrus-1.7.0" + ,go-github-com-sirupsen-logrus-1.7.0) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-image-spec-1.0.1" + ,go-github-com-opencontainers-image-spec-1.0.1) + ("go-github-com-opencontainers-go-digest-1.0.0" + ,go-github-com-opencontainers-go-digest-1.0.0) + ("go-github-com-miekg-pkcs11-1.0.3" ,go-github-com-miekg-pkcs11-1.0.3) + ("go-github-com-google-go-cmp-0.5.2" + ,go-github-com-google-go-cmp-0.5.2) + ("go-github-com-golang-protobuf-1.4.3" + ,go-github-com-golang-protobuf-1.4.3))) + (home-page "https://github.com/containers/ocicrypt") + (synopsis "OCIcrypt Library") + (description + "The @code{ocicrypt} library is the OCI image spec implementation of container image encryption. More details of the spec can be seen in the @url{https://github.com/opencontainers/image-spec/pull/775,OCI repository}. The purpose of this library is to encode spec structures and consts in code, as well as provide a consistent implementation of image encryption across container runtimes and build tools.") + (license license:asl2.0))) + +(define-public go-github-com-burntsushi-toml-0.4.1 + (package + (name "go-github-com-burntsushi-toml") + (version "0.4.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/BurntSushi/toml") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0bz7q3v4m2rq5z47q81bvb4lw6ss2r1x3phgr43a6nls9x5kcpp1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/BurntSushi/toml")) + (home-page "https://github.com/BurntSushi/toml") + (synopsis "TOML parser and encoder for Go with reflection") + (description + "Package toml implements decoding and encoding of TOML files. +") + (license license:expat))) + +(define-public go-github-com-microsoft-go-winio-0.5.0 + (package + (name "go-github-com-microsoft-go-winio") + (version "0.5.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/microsoft/go-winio") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "123p5by5craqigydfqj0hchplcv75zz81xzj5s3ixq624qjbg0z5")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/Microsoft/go-winio")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" + ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) + ("go-github-com-sirupsen-logrus-1.7.0" + ,go-github-com-sirupsen-logrus-1.7.0) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) + (home-page "https://github.com/Microsoft/go-winio") + (synopsis "go-winio") + (description + "This repository contains utilities for efficiently performing Win32 IO operations in +Go. Currently, this is focused on accessing named pipes and other file handles, and +for using named pipes as a net transport.") + (license license:expat))) + +(define-public go-github-com-microsoft-go-winio-0.4.17 + (package + (name "go-github-com-microsoft-go-winio") + (version "0.4.17") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/microsoft/go-winio") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0gmgiak4x4gdyr17zm4b9vvharflk9pz5aj5jayh9hq50133b2f9")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/Microsoft/go-winio")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" + ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) + ("go-github-com-sirupsen-logrus-1.7.0" + ,go-github-com-sirupsen-logrus-1.7.0) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) + (home-page "https://github.com/Microsoft/go-winio") + (synopsis "go-winio") + (description + "This repository contains utilities for efficiently performing Win32 IO operations in +Go. Currently, this is focused on accessing named pipes and other file handles, and +for using named pipes as a net transport.") + (license license:expat))) + +(define-public go-github-com-cilium-ebpf-0.4.0 + (package + (name "go-github-com-cilium-ebpf") + (version "0.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cilium/ebpf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1j33vfz8mxnqadkd17l0y3ll71gph3ndm8hwrwbwnf5px7bfv9yl")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/cilium/ebpf")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" + ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) + ("go-github-com-google-go-cmp-0.5.4" + ,go-github-com-google-go-cmp-0.5.4) + ("go-github-com-frankban-quicktest-1.11.3" + ,go-github-com-frankban-quicktest-1.11.3))) + (home-page "https://github.com/cilium/ebpf") + (synopsis "eBPF") + (description "Package ebpf is a toolkit for working with eBPF programs. +") + (license license:expat))) + +(define-public go-github-com-coreos-go-systemd-v22-22.1.0 + (package + (name "go-github-com-coreos-go-systemd-v22") + (version "22.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/coreos/go-systemd") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "127dj1iwp69yj74nwh9ckgc0mkk1mv4yzbxmbdxix1r7j6q35z3j")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/coreos/go-systemd/v22")) + (propagated-inputs + `(("go-github-com-godbus-dbus-v5-5.0.3" + ,go-github-com-godbus-dbus-v5-5.0.3))) + (home-page "https://github.com/coreos/go-systemd") + (synopsis "go-systemd") + (description "Go bindings to systemd. The project has several packages:") + (license license:asl2.0))) + +(define-public go-github-com-godbus-dbus-v5-5.0.3 + (package + (name "go-github-com-godbus-dbus-v5") + (version "5.0.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/godbus/dbus") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1bkc904073k807yxg6mvqaxrr6ammmhginr9p54jfb55mz3hfw3s")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/godbus/dbus/v5")) + (home-page "https://github.com/godbus/dbus") + (synopsis "dbus") + (description + "Package dbus implements bindings to the D-Bus message bus system. +") + (license license:bsd-2))) + +(define-public go-github-com-containerd-cgroups-1.0.1 + (package + (name "go-github-com-containerd-cgroups") + (version "1.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/cgroups") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1p992w942xba9z77nhhbc6nk5q09c3zxxhq9n7fm5alx3a8fwbpl")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/cgroups")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" + ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) + ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-sirupsen-logrus-1.7.0" + ,go-github-com-sirupsen-logrus-1.7.0) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-runtime-spec-1.0.2" + ,go-github-com-opencontainers-runtime-spec-1.0.2) + ("go-github-com-gogo-protobuf-1.3.2" + ,go-github-com-gogo-protobuf-1.3.2) + ("go-github-com-godbus-dbus-v5-5.0.3" + ,go-github-com-godbus-dbus-v5-5.0.3) + ("go-github-com-docker-go-units-0.4.0" + ,go-github-com-docker-go-units-0.4.0) + ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" + ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) + ("go-github-com-coreos-go-systemd-v22-22.1.0" + ,go-github-com-coreos-go-systemd-v22-22.1.0) + ("go-github-com-cilium-ebpf-0.4.0" ,go-github-com-cilium-ebpf-0.4.0))) + (home-page "https://github.com/containerd/cgroups") + (synopsis "cgroups") + (description + "Go package for creating, managing, inspecting, and destroying cgroups. +The resources format for settings on the cgroup uses the OCI runtime-spec found +@url{https://github.com/opencontainers/runtime-spec,here}.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-containerd-1.4.9 + (package + (name "go-github-com-containerd-containerd") + (version "1.4.9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/containerd") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ykikks6ihgg899ibk9m9m0hqrbss0cx7l7z4yjb873b10bacj52")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/containerd")) + (home-page "https://github.com/containerd/containerd") + (synopsis "Now Recruiting") + (description + "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") + (license license:asl2.0))) + +(define-public go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898 + (package + (name "go-bazil-org-fuse") + (version "0.0.0-20160811212531-371fbbdaa898") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/bazil/fuse") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1x5p301py7mcxgwklfm6pqqkzssln0nfzllng49pnk60m03ilp4w")))) + (build-system go-build-system) + (arguments '(#:import-path "bazil.org/fuse")) + (home-page "https://bazil.org/fuse") + (synopsis "bazil.org/fuse -- Filesystems in Go") + (description + "Package fuse enables writing FUSE file systems on Linux and FreeBSD. +") + (license #f))) + +(define-public go-github-com-dustin-go-humanize-1.0.0 + (package + (name "go-github-com-dustin-go-humanize") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/dustin/go-humanize") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1kqf1kavdyvjk7f8kx62pnm7fbypn9z1vbf8v2qdh3y7z7a0cbl3")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/dustin/go-humanize")) + (home-page "https://github.com/dustin/go-humanize") + (synopsis "Humane Units") + (description + "Package humanize converts boring ugly numbers to human-friendly strings and back. +") + (license license:expat))) + +(define-public go-github-com-golang-protobuf-1.3.5 + (package + (name "go-github-com-golang-protobuf") + (version "1.3.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1gkd1942vk9n8kfzdwy1iil6wgvlwjq7a3y5jc49ck4lz9rhmgkq")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0 + (package + (name "go-github-com-cpuguy83-go-md2man-v2") + (version "2.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cpuguy83/go-md2man") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) + (propagated-inputs + `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" + ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) + ("go-github-com-russross-blackfriday-v2-2.0.1" + ,go-github-com-russross-blackfriday-v2-2.0.1) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0))) + (home-page "https://github.com/cpuguy83/go-md2man") + (synopsis "go-md2man") + (description "Converts markdown into roff (man pages).") + (license license:expat))) + +(define-public go-github-com-inconshreveable-mousetrap-1.0.0 + (package + (name "go-github-com-inconshreveable-mousetrap") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/inconshreveable/mousetrap") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1mn0kg48xkd74brf48qf5hzp0bc6g8cf5a77w895rl3qnlpfw152")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/inconshreveable/mousetrap")) + (home-page "https://github.com/inconshreveable/mousetrap") + (synopsis "mousetrap") + (description "mousetrap is a tiny library that answers a single question.") + (license license:asl2.0))) + +(define-public go-github-com-mitchellh-go-homedir-1.1.0 + (package + (name "go-github-com-mitchellh-go-homedir") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mitchellh/go-homedir") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ydzkipf28hwj2bfxqmwlww47khyk6d152xax4bnyh60f4lq3nx1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mitchellh/go-homedir")) + (home-page "https://github.com/mitchellh/go-homedir") + (synopsis "go-homedir") + (description + "This is a Go library for detecting the user's home directory without +the use of cgo, so the library can be used in cross-compilation environments.") + (license license:expat))) + +(define-public go-github-com-armon-consul-api-0.0.0-20180202201655-eb2c6b5be1b6 + (package + (name "go-github-com-armon-consul-api") + (version "0.0.0-20180202201655-eb2c6b5be1b6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/armon/consul-api") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1j6fdr1sg36qy4n4xjl7brq739fpm5npq98cmvklzjc9qrx98nk9")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/armon/consul-api")) + (home-page "https://github.com/armon/consul-api") + (synopsis "consul-api") + (description + " Please use @url{https://github.com/hashicorp/consul/tree/master/api,consul api package} instead. +Godocs for that package @url{http://godoc.org/github.com/hashicorp/consul/api,are here}.") + (license license:mpl2.0))) + +(define-public go-github-com-coreos-bbolt-1.3.2 + (package + (name "go-github-com-coreos-bbolt") + (version "1.3.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/etcd-io/bbolt") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "13d5l6p6c5wvkr6vn9hkhz9c593qifn7fgx0hg4d6jcvg1y0bnm2")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/coreos/bbolt")) + (home-page "https://github.com/coreos/bbolt") + (synopsis "bbolt") + (description + "package bbolt implements a low-level key/value store in pure Go. It supports +fully serializable transactions, ACID semantics, and lock-free MVCC with +multiple readers and a single writer. Bolt can be used for projects that +want a simple data store without the need to add large dependencies such as +Postgres or MySQL. +") + (license license:expat))) + +(define-public go-github-com-coreos-etcd-3.3.10+incompatible + (package + (name "go-github-com-coreos-etcd") + (version "3.3.10+incompatible") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/etcd-io/etcd") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1x2ii1hj8jraba8rbxz6dmc03y3sjxdnzipdvg6fywnlq1f3l3wl")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/coreos/etcd")) + (home-page "https://github.com/coreos/etcd") + (synopsis "etcd") + (description + "Package main is a simple wrapper of the real etcd entrypoint package +(located at github.com/coreos/etcd/etcdmain) to ensure that etcd is still +\"go getable\"; e.g. `go get github.com/coreos/etcd` works as expected and +builds a binary in $GOBIN/etcd +") + (license license:asl2.0))) + +(define-public go-github-com-coreos-go-semver-0.2.0 + (package + (name "go-github-com-coreos-go-semver") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/coreos/go-semver") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1gghi5bnqj50hfxhqc1cxmynqmh2yk9ii7ab9gsm75y5cp94ymk0")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/coreos/go-semver")) + (home-page "https://github.com/coreos/go-semver") + (synopsis "go-semver - Semantic Versioning Library") + (description + "go-semver is a @url{http://semver.org/,semantic versioning} library for Go. It lets you parse +and compare two semantic version strings.") + (license license:asl2.0))) + +(define-public go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e + (package + (name "go-github-com-coreos-go-systemd") + (version "0.0.0-20190321100706-95778dfbb74e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/coreos/go-systemd") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1s3bg9p78wkixn2bqb2p23wbsqfg949ml6crw2b498s71mwh8rcf")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/coreos/go-systemd")) + (home-page "https://github.com/coreos/go-systemd") + (synopsis "go-systemd") + (description "Go bindings to systemd. The project has several packages:") + (license license:asl2.0))) + +(define-public go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f + (package + (name "go-github-com-coreos-pkg") + (version "0.0.0-20180928190104-399ea9e2e55f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/coreos/pkg") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0nxbn0m7lr4dg0yrwnvlkfiyg3ndv8vdpssjx7b714nivpc6ar0y")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/coreos/pkg")) + (home-page "https://github.com/coreos/pkg") + (synopsis #f) + (description "a collection of go utility packages") + (license license:asl2.0))) + +(define-public go-github-com-dgrijalva-jwt-go-3.2.0+incompatible + (package + (name "go-github-com-dgrijalva-jwt-go") + (version "3.2.0+incompatible") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/dgrijalva/jwt-go") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "08m27vlms74pfy5z79w67f9lk9zkx6a9jd68k3c4msxy75ry36mp")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/dgrijalva/jwt-go")) + (home-page "https://github.com/dgrijalva/jwt-go") + (synopsis "jwt-go") + (description + "Package jwt is a Go implementation of JSON Web Tokens: @url{http://self-issued.info/docs/draft-jones-json-web-token.html,http://self-issued.info/docs/draft-jones-json-web-token.html} +") + (license license:expat))) + +(define-public go-github-com-fsnotify-fsnotify-1.4.7 + (package + (name "go-github-com-fsnotify-fsnotify") + (version "1.4.7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/fsnotify/fsnotify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/fsnotify/fsnotify")) + (home-page "https://github.com/fsnotify/fsnotify") + (synopsis "File system notifications for Go") + (description + "Package fsnotify provides a platform-independent interface for file system notifications. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20180221164845-07fd8470d635 + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20180221164845-07fd8470d635") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "193g0a1zxb9ikph7r2klc6rdqxqzfmmr8d5bcibyhsm2l63s17mx")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-github-com-kisielk-errcheck-1.1.0 + (package + (name "go-github-com-kisielk-errcheck") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kisielk/errcheck") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19vd4rxmqbk5lpiav3pf7df3yjlz0l0dwx9mn0gjq5f998iyhy6y")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kisielk/errcheck")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20180221164845-07fd8470d635" + ,go-golang-org-x-tools-0.0.0-20180221164845-07fd8470d635) + ("go-github-com-kisielk-gotool-1.0.0" + ,go-github-com-kisielk-gotool-1.0.0))) + (home-page "https://github.com/kisielk/errcheck") + (synopsis "errcheck") + (description + "errcheck is a program for checking for unchecked errors in go programs.") + (license license:expat))) + +(define-public go-github-com-gogo-protobuf-1.2.1 + (package + (name "go-github-com-gogo-protobuf") + (version "1.2.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gogo/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "06yqa6h0kw3gr5pc3qmas7f7435a96zf7iw7p0l00r2hqf6fqq6m")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/gogo/protobuf")) + (propagated-inputs + `(("go-github-com-kisielk-errcheck-1.1.0" + ,go-github-com-kisielk-errcheck-1.1.0))) + (home-page "https://github.com/gogo/protobuf") + (synopsis "Protocol Buffers for Go with Gadgets") + (description + "gogoprotobuf is a fork of @url{https://github.com/golang/protobuf,golang/protobuf} with extra code generation features.") + (license license:bsd-3))) + +(define-public go-github-com-golang-groupcache-0.0.0-20190129154638-5b532d6fd5ef + (package + (name "go-github-com-golang-groupcache") + (version "0.0.0-20190129154638-5b532d6fd5ef") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/groupcache") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ls2i4ixyd4r2556j7c5jmlligjb35gfvxknrdn2abjmcahgqd6h")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/groupcache")) + (home-page "https://github.com/golang/groupcache") + (synopsis "groupcache") + (description + "Package groupcache provides a data loading mechanism with caching +and de-duplication that works across a set of peer processes. +") + (license license:asl2.0))) + +(define-public go-github-com-google-btree-1.0.0 + (package + (name "go-github-com-google-btree") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/btree") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ba430m9fbnagacp57krgidsyrgp3ycw5r7dj71brgp5r52g82p6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/btree")) + (home-page "https://github.com/google/btree") + (synopsis "BTree implementation for Go") + (description + "Package btree implements in-memory B-Trees of arbitrary degree. +") + (license license:asl2.0))) + +(define-public go-github-com-gorilla-websocket-1.4.0 + (package + (name "go-github-com-gorilla-websocket") + (version "1.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gorilla/websocket") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "00i4vb31nsfkzzk7swvx3i75r2d960js3dri1875vypk3v2s0pzk")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/gorilla/websocket")) + (home-page "https://github.com/gorilla/websocket") + (synopsis "Gorilla WebSocket") + (description + "Package websocket implements the WebSocket protocol defined in @url{https://rfc-editor.org/rfc/rfc6455.html,RFC 6455}. +") + (license license:bsd-2))) + +(define-public go-github-com-grpc-ecosystem-go-grpc-middleware-1.0.0 + (package + (name "go-github-com-grpc-ecosystem-go-grpc-middleware") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc-ecosystem/go-grpc-middleware") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0lwgxih021xfhfb1xb9la5f98bpgpaiz63sbllx77qwwl2rmhrsp")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/grpc-ecosystem/go-grpc-middleware")) + (home-page "https://github.com/grpc-ecosystem/go-grpc-middleware") + (synopsis "Go gRPC Middleware") + (description + "`grpc_middleware` is a collection of gRPC middleware packages: interceptors, helpers and tools. +") + (license license:asl2.0))) + +(define-public go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0 + (package + (name "go-github-com-grpc-ecosystem-go-grpc-prometheus") + (version "1.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc-ecosystem/go-grpc-prometheus") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1lzk54h7np32b3acidg1ggbn8ppbnns0m71gcg9d1qkkdh8zrijl")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/grpc-ecosystem/go-grpc-prometheus")) + (home-page "https://github.com/grpc-ecosystem/go-grpc-prometheus") + (synopsis "Go gRPC Interceptors for Prometheus monitoring") + (description + "@url{https://prometheus.io/,Prometheus} monitoring for your @url{https://github.com/grpc/grpc-go,gRPC Go} servers and clients.") + (license license:asl2.0))) + +(define-public go-github-com-kr-pretty-0.1.0 + (package + (name "go-github-com-kr-pretty") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/pretty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18m4pwg2abd0j9cn5v3k2ksk9ig4vlwxmlw9rrglanziv9l967qp")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/pretty")) + (propagated-inputs + `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) + (home-page "https://github.com/kr/pretty") + (synopsis #f) + (description + "Package pretty provides pretty-printing for Go values. This is +useful during debugging, to avoid wrapping long output lines in +the terminal. +") + (license license:expat))) + +(define-public go-github-com-rogpeppe-fastuuid-0.0.0-20150106093220-6724a57986af + (package + (name "go-github-com-rogpeppe-fastuuid") + (version "0.0.0-20150106093220-6724a57986af") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/rogpeppe/fastuuid") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12s65phfx6hxj4v0b5kj8akgrbf5mxpa101fyzw03h6hld1f70cz")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/rogpeppe/fastuuid")) + (home-page "https://github.com/rogpeppe/fastuuid") + (synopsis "fastuuid") + (description + "Package fastuuid provides fast UUID generation of 192 bit +universally unique identifiers. +") + (license license:bsd-3))) + +(define-public go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127 + (package + (name "go-gopkg-in-check-v1") + (version "1.0.0-20180628173108-788fd7840127") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/check.v1") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0v3bim0j375z81zrpr5qv42knqs0y2qv2vkjiqi5axvb78slki1a")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) + (home-page "https://gopkg.in/check.v1") + (synopsis "Instructions") + (description + "Package check is a rich testing extension for Go's testing package. +") + (license license:bsd-2))) + +(define-public go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20181220203305-927f97764cc3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0np7b766gb92vbm514yhdl7cjmqvn0dxdxskd84aas2ri1fkpgw5")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-gopkg-in-resty-v1-1.12.0 + (package + (name "go-gopkg-in-resty-v1") + (version "1.12.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/resty.v1") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "062mn735rqzhha5ag07z4gz08hxzrfm2yx067jfmaaxmb6797lmp")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/resty.v1" #:unpack-path "gopkg.in/resty.v1")) + (propagated-inputs + `(("go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3" + ,go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3))) + (home-page "https://gopkg.in/resty.v1") + (synopsis "News") + (description + "Package resty provides Simple HTTP and REST client library for Go. +") + (license license:expat))) + +(define-public go-gopkg-in-yaml-v2-2.0.0-20170812160011-eb3733d160e7 + (package + (name "go-gopkg-in-yaml-v2") + (version "2.0.0-20170812160011-eb3733d160e7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v2") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1srhvcaa9db3a6xj29mkjr5kg33y71pclrlx4vcwz5m1lgb5c7q6")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) + (home-page "https://gopkg.in/yaml.v2") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language. +") + (license license:asl2.0))) + +(define-public go-github-com-grpc-ecosystem-grpc-gateway-1.9.0 + (package + (name "go-github-com-grpc-ecosystem-grpc-gateway") + (version "1.9.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc-ecosystem/grpc-gateway") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1r4y48c76yxc2hpqszfjirvh7zxjb6z72qmk95li12ar79dhv3dy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/grpc-ecosystem/grpc-gateway")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.0.0-20170812160011-eb3733d160e7" + ,go-gopkg-in-yaml-v2-2.0.0-20170812160011-eb3733d160e7) + ("go-gopkg-in-resty-v1-1.12.0" ,go-gopkg-in-resty-v1-1.12.0) + ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" + ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) + ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) + ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" + ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) + ("go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8" + ,go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8) + ("go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3" + ,go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3) + ("go-github-com-rogpeppe-fastuuid-0.0.0-20150106093220-6724a57986af" + ,go-github-com-rogpeppe-fastuuid-0.0.0-20150106093220-6724a57986af) + ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-ghodss-yaml-1.0.0" ,go-github-com-ghodss-yaml-1.0.0))) + (home-page "https://github.com/grpc-ecosystem/grpc-gateway") + (synopsis "grpc-gateway") + (description + "The grpc-gateway is a plugin of the Google protocol buffers compiler +@url{https://github.com/protocolbuffers/protobuf,protoc}. +It reads protobuf service definitions and generates a reverse-proxy server which +translates a RESTful HTTP API into gRPC. This server is generated according to the +@url{https://github.com/googleapis/googleapis/raw/master/google/api/http.proto#L46,(code google.api.http)} +annotations in your service definitions.") + (license license:bsd-3))) + +(define-public go-github-com-hashicorp-hcl-1.0.0 + (package + (name "go-github-com-hashicorp-hcl") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/hcl") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0q6ml0qqs0yil76mpn4mdx4lp94id8vbv575qm60jzl1ijcl5i66")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/hcl")) + (propagated-inputs + `(("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/hashicorp/hcl") + (synopsis "HCL") + (description "Package hcl decodes HCL into usable Go structures. +") + (license license:mpl2.0))) + +(define-public go-github-com-jonboulle-clockwork-0.1.0 + (package + (name "go-github-com-jonboulle-clockwork") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jonboulle/clockwork") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1pqxhsdavbp1n5grgyx2j6ylvql2fzn2cvpsgkc8li69dil7sibl")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/jonboulle/clockwork")) + (home-page "https://github.com/jonboulle/clockwork") + (synopsis "clockwork") + (description + "Replace uses of the @code{time} package with the @code{clockwork.Clock} interface instead.") + (license license:asl2.0))) + +(define-public go-github-com-magiconair-properties-1.8.0 + (package + (name "go-github-com-magiconair-properties") + (version "1.8.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/magiconair/properties") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1a10362wv8a8qwb818wygn2z48lgzch940hvpv81hv8gc747ajxn")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/magiconair/properties")) + (home-page "https://github.com/magiconair/properties") + (synopsis "Overview") + (description + "Package properties provides functions for reading and writing +ISO-8859-1 and UTF-8 encoded .properties files and has +support for recursive property expansion. +") + (license license:bsd-2))) + +(define-public go-github-com-mitchellh-mapstructure-1.1.2 + (package + (name "go-github-com-mitchellh-mapstructure") + (version "1.1.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mitchellh/mapstructure") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03bpv28jz9zhn4947saqwi328ydj7f6g6pf1m2d4m5zdh5jlfkrr")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mitchellh/mapstructure")) + (home-page "https://github.com/mitchellh/mapstructure") + (synopsis "mapstructure") + (description + "Package mapstructure exposes functionality to convert one arbitrary +Go type into another, typically to convert a map[string]interface{} +into a native Go structure. +") + (license license:expat))) + +(define-public go-github-com-pelletier-go-toml-1.2.0 + (package + (name "go-github-com-pelletier-go-toml") + (version "1.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pelletier/go-toml") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fjzpcjng60mc3a4b2ql5a00d5gah84wj740dabv9kq67mpg8fxy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pelletier/go-toml")) + (home-page "https://github.com/pelletier/go-toml") + (synopsis "go-toml") + (description "Package toml is a TOML parser and manipulation library. +") + (license #f))) + +(define-public go-github-com-beorn7-perks-1.0.0 + (package + (name "go-github-com-beorn7-perks") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/beorn7/perks") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1i1nz1f6g55xi2y3aiaz5kqfgvknarbfl4f0sx4nyyb4s7xb1z9x")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/beorn7/perks")) + (home-page "https://github.com/beorn7/perks") + (synopsis "Perks for Go (golang.org)") + (description + "Perks contains the Go package quantile that computes approximate quantiles over +an unbounded data stream within low memory and CPU bounds.") + (license license:expat))) + +(define-public go-github-com-go-logfmt-logfmt-0.4.0 + (package + (name "go-github-com-go-logfmt-logfmt") + (version "0.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/go-logfmt/logfmt") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "06smxc112xmixz78nyvk3b2hmc7wasf2sl5vxj1xz62kqcq9lzm9")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/go-logfmt/logfmt")) + (propagated-inputs + `(("go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515" + ,go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515))) + (home-page "https://github.com/go-logfmt/logfmt") + (synopsis "logfmt") + (description + "Package logfmt implements utilities to marshal and unmarshal data in the +logfmt format. The logfmt format records key/value pairs in a way that +balances readability for humans and simplicity of computer parsing. It is +most commonly used as a more human friendly alternative to JSON for +structured logging. +") + (license license:expat))) + +(define-public go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90 + (package + (name "go-github-com-prometheus-client-model") + (version "0.0.0-20190129233127-fd36f4220a90") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/client_model") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1bs5d72k361llflgl94c22n0w53j30rsfh84smgk8mbjbcmjsaa5")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/client_model")) + (propagated-inputs + `(("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" + ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0))) + (home-page "https://github.com/prometheus/client_model") + (synopsis "Deprecation note") + (description + "This repository used to contain the code that defined both +the data model and the exposition format of Prometheus metrics.") + (license license:asl2.0))) + +(define-public go-github-com-julienschmidt-httprouter-1.2.0 + (package + (name "go-github-com-julienschmidt-httprouter") + (version "1.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/julienschmidt/httprouter") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1k8bylc9s4vpvf5xhqh9h246dl1snxrzzz0614zz88cdh8yzs666")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/julienschmidt/httprouter")) + (home-page "https://github.com/julienschmidt/httprouter") + (synopsis "HttpRouter") + (description + "Package httprouter is a trie based high performance HTTP request router. +") + (license license:bsd-3))) + +(define-public go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223 + (package + (name "go-github-com-mwitkow-go-conntrack") + (version "0.0.0-20161129095857-cc309e4a2223") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mwitkow/go-conntrack") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0nbrnpk7bkmqg9mzwsxlm0y8m7s9qd9phr1q30qlx2qmdmz7c1mf")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mwitkow/go-conntrack")) + (home-page "https://github.com/mwitkow/go-conntrack") + (synopsis "Go tracing and monitoring (Prometheus) for") + (description + "@url{https://prometheus.io/,Prometheus} monitoring and @url{https://godoc.org/golang.org/x/net/trace#EventLog,(code x/net/trace)} tracing wrappers @code{net.Conn}, both inbound (@code{net.Listener}) and outbound (@code{net.Dialer}).") + (license license:asl2.0))) + +(define-public go-golang-org-x-crypto-0.0.0-20180904163835-0709b304e793 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20180904163835-0709b304e793") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0i05s09y5pavmfh71fgih7syxg58x7a4krgd8am6d3mnahnmab5c")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20180905080454-ebe1bf3edb33") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0rkspxyjxdmc9f4n09hgkwj8jjd8z5p8mc9z8vwqwqcwrqv4sg7c")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-sirupsen-logrus-1.2.0 + (package + (name "go-github-com-sirupsen-logrus") + (version "1.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sirupsen/logrus") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0r6334x2bls8ddznvzaldx4g88msjjns4mlks95rqrrg7h0ijigg")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/sirupsen/logrus")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33" + ,go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33) + ("go-golang-org-x-crypto-0.0.0-20180904163835-0709b304e793" + ,go-golang-org-x-crypto-0.0.0-20180904163835-0709b304e793) + ("go-github-com-stretchr-testify-1.2.2" + ,go-github-com-stretchr-testify-1.2.2) + ("go-github-com-stretchr-objx-0.1.1" + ,go-github-com-stretchr-objx-0.1.1) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.1" + ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.1) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/sirupsen/logrus") + (synopsis "Logrus") + (description + "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. +") + (license license:expat))) + +(define-public go-golang-org-x-net-0.0.0-20181114220301-adae6a3d119a + (package + (name "go-golang-org-x-net") + (version "0.0.0-20181114220301-adae6a3d119a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fx860zsgzqk28j7lmp96qsfrgb0kzbfjvr294hywswcbwdwkb01")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20181116152217-5ac8a444bdc5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "00zdrighflwc4iyizsag184nvl1cbkk02v73kpl5miprdrvzqlr4")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-gopkg-in-yaml-v2-2.2.1 + (package + (name "go-gopkg-in-yaml-v2") + (version "2.2.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0dwjrs2lp2gdlscs7bsrmyc5yf6mm4fvgw71bzr9mv2qrd2q73s1")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v2") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language. +") + (license license:asl2.0))) + +(define-public go-github-com-prometheus-common-0.4.0 + (package + (name "go-github-com-prometheus-common") + (version "0.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/common") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "00008pczafy982m59n1j31pnp41f4grbc2c40jccp52xg3m5klmr")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/common")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1) + ("go-gopkg-in-alecthomas-kingpin-v2-2.2.6" + ,go-gopkg-in-alecthomas-kingpin-v2-2.2.6) + ("go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5" + ,go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5) + ("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" + ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) + ("go-golang-org-x-net-0.0.0-20181114220301-adae6a3d119a" + ,go-golang-org-x-net-0.0.0-20181114220301-adae6a3d119a) + ("go-github-com-sirupsen-logrus-1.2.0" + ,go-github-com-sirupsen-logrus-1.2.0) + ("go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d" + ,go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d) + ("go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910" + ,go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910) + ("go-github-com-prometheus-client-golang-0.9.1" + ,go-github-com-prometheus-client-golang-0.9.1) + ("go-github-com-pkg-errors-0.8.0" ,go-github-com-pkg-errors-0.8.0) + ("go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223" + ,go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223) + ("go-github-com-matttproud-golang-protobuf-extensions-1.0.1" + ,go-github-com-matttproud-golang-protobuf-extensions-1.0.1) + ("go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515" + ,go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515) + ("go-github-com-julienschmidt-httprouter-1.2.0" + ,go-github-com-julienschmidt-httprouter-1.2.0) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0) + ("go-github-com-gogo-protobuf-1.1.1" + ,go-github-com-gogo-protobuf-1.1.1) + ("go-github-com-go-stack-stack-1.8.0" + ,go-github-com-go-stack-stack-1.8.0) + ("go-github-com-go-logfmt-logfmt-0.3.0" + ,go-github-com-go-logfmt-logfmt-0.3.0) + ("go-github-com-go-kit-kit-0.8.0" ,go-github-com-go-kit-kit-0.8.0) + ("go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973" + ,go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973) + ("go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf" + ,go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf) + ("go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc" + ,go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc))) + (home-page "https://github.com/prometheus/common") + (synopsis "Common") + (description + "This repository contains Go libraries that are shared across Prometheus +components and libraries. They are considered internal to Prometheus, without +any stability guarantees for external usage.") + (license license:asl2.0))) + +(define-public go-github-com-prometheus-procfs-0.0.0-20190507164030-5867b95ac084 + (package + (name "go-github-com-prometheus-procfs") + (version "0.0.0-20190507164030-5867b95ac084") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/procfs") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1rahdk62ajj4zpfb3mgzjqip773la9fb0m87m7s9a0b39l3fmzvr")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/procfs")) + (propagated-inputs + `(("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" + ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4))) + (home-page "https://github.com/prometheus/procfs") + (synopsis "procfs") + (description + "Package procfs provides functions to retrieve system, kernel and process +metrics from the pseudo-filesystem proc. +") + (license license:asl2.0))) + +(define-public go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc + (package + (name "go-github-com-alecthomas-template") + (version "0.0.0-20160405071501-a0175ee3bccc") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/alecthomas/template") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0qjgvvh26vk1cyfq9fadyhfgdj36f1iapbmr5xp6zqipldz8ffxj")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/alecthomas/template")) + (home-page "https://github.com/alecthomas/template") + (synopsis "Go's") + (description + "Package template implements data-driven templates for generating textual output. +") + (license license:bsd-3))) + +(define-public go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf + (package + (name "go-github-com-alecthomas-units") + (version "0.0.0-20151022065526-2efee857e7cf") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/alecthomas/units") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1j65b91qb9sbrml9cpabfrcf07wmgzzghrl7809hjjhrmbzri5bl")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/alecthomas/units")) + (home-page "https://github.com/alecthomas/units") + (synopsis "Units - Helpful unit multipliers and functions for Go") + (description + "Package units provides helpful unit multipliers and functions for Go. +") + (license license:expat))) + +(define-public go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973 + (package + (name "go-github-com-beorn7-perks") + (version "0.0.0-20180321164747-3a771d992973") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/beorn7/perks") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1l2lns4f5jabp61201sh88zf3b0q793w4zdgp9nll7mmfcxxjif3")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/beorn7/perks")) + (home-page "https://github.com/beorn7/perks") + (synopsis "Perks for Go (golang.org)") + (description + "Perks contains the Go package quantile that computes approximate quantiles over +an unbounded data stream within low memory and CPU bounds.") + (license license:expat))) + +(define-public go-github-com-dgryski-go-sip13-0.0.0-20181026042036-e10d5fee7954 + (package + (name "go-github-com-dgryski-go-sip13") + (version "0.0.0-20181026042036-e10d5fee7954") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/dgryski/go-sip13") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "15fyibfas209ljz3f7g07kdmfbl3hhyd9n5n7aq5n5p9m5mn41d6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/dgryski/go-sip13")) + (home-page "https://github.com/dgryski/go-sip13") + (synopsis #f) + (description #f) + (license license:expat))) + +(define-public go-github-com-go-kit-kit-0.8.0 + (package + (name "go-github-com-go-kit-kit") + (version "0.8.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/go-kit/kit") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1rcywbc2pvab06qyf8pc2rdfjv7r6kxdv2v4wnpqnjhz225wqvc0")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/go-kit/kit")) + (home-page "https://github.com/go-kit/kit") + (synopsis "Go kit") + (description + "@strong{Go kit} is a @strong{programming toolkit} for building microservices +(or elegant monoliths) in Go. We solve common problems in distributed +systems and application architecture so you can focus on delivering +business value.") + (license license:expat))) + +(define-public go-github-com-go-logfmt-logfmt-0.3.0 + (package + (name "go-github-com-go-logfmt-logfmt") + (version "0.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/go-logfmt/logfmt") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1gkgh3k5w1xwb2qbjq52p6azq3h1c1rr6pfwjlwj1zrijpzn2xb9")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/go-logfmt/logfmt")) + (home-page "https://github.com/go-logfmt/logfmt") + (synopsis "logfmt") + (description + "Package logfmt implements utilities to marshal and unmarshal data in the +logfmt format. The logfmt format records key/value pairs in a way that +balances readability for humans and simplicity of computer parsing. It is +most commonly used as a more human friendly alternative to JSON for +structured logging. +") + (license license:expat))) + +(define-public go-github-com-go-stack-stack-1.8.0 + (package + (name "go-github-com-go-stack-stack") + (version "1.8.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/go-stack/stack") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wk25751ryyvxclyp8jdk5c3ar0cmfr8lrjb66qbg4808x66b96v")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/go-stack/stack")) + (home-page "https://github.com/go-stack/stack") + (synopsis "stack") + (description + "Package stack implements utilities to capture, manipulate, and format call +stacks. It provides a simpler API than package runtime. +") + (license license:expat))) + +(define-public go-github-com-gogo-protobuf-1.1.1 + (package + (name "go-github-com-gogo-protobuf") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gogo/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1525pq7r6h3s8dncvq8gxi893p2nq8dxpzvq0nfl5b4p6mq0v1c2")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/gogo/protobuf")) + (home-page "https://github.com/gogo/protobuf") + (synopsis "Protocol Buffers for Go with Gadgets") + (description + "gogoprotobuf is a fork of @url{https://github.com/golang/protobuf,golang/protobuf} with extra code generation features.") + (license license:bsd-3))) + +(define-public go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515 + (package + (name "go-github-com-kr-logfmt") + (version "0.0.0-20140226030751-b84e30acd515") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/logfmt") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "02ldzxgznrfdzvghfraslhgp19la1fczcbzh7wm2zdc6lmpd1qq9")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/logfmt")) + (home-page "https://github.com/kr/logfmt") + (synopsis #f) + (description + "Package implements the decoding of logfmt key-value pairs. +") + (license license:expat))) + +(define-public go-github-com-matttproud-golang-protobuf-extensions-1.0.1 + (package + (name "go-github-com-matttproud-golang-protobuf-extensions") + (version "1.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/matttproud/golang_protobuf_extensions") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1d0c1isd2lk9pnfq2nk0aih356j30k3h1gi2w0ixsivi5csl7jya")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/matttproud/golang_protobuf_extensions")) + (home-page "https://github.com/matttproud/golang_protobuf_extensions") + (synopsis "Overview") + (description + "This repository provides various Protocol Buffer extensions for the Go +language (golang), namely support for record length-delimited message +streaming.") + (license license:asl2.0))) + +(define-public go-github-com-oklog-ulid-1.3.1 + (package + (name "go-github-com-oklog-ulid") + (version "1.3.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/oklog/ulid") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hybwyid820n80axrk863k2py93hbqlq6hxhf84ppmz0qd0ys0gq")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/oklog/ulid")) + (home-page "https://github.com/oklog/ulid") + (synopsis "Universally Unique Lexicographically Sortable Identifier") + (description + "This package provides a Go port of @url{https://github.com/alizain/ulid,alizain/ulid} with binary format implemented.") + (license license:asl2.0))) + +(define-public go-github-com-pkg-errors-0.8.0 + (package + (name "go-github-com-pkg-errors") + (version "0.8.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pkg/errors") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "001i6n71ghp2l6kdl3qq1v2vmghcz3kicv9a5wgcihrzigm75pp5")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pkg/errors")) + (home-page "https://github.com/pkg/errors") + (synopsis "errors") + (description "Package errors provides simple error handling primitives. +") + (license license:bsd-2))) + +(define-public go-github-com-prometheus-client-golang-0.9.1 + (package + (name "go-github-com-prometheus-client-golang") + (version "0.9.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/client_golang") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "01gnylazia30pcp069xcng482gwmm3xcx5zgrlwdkhic1lyb6i9l")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/client_golang")) + (home-page "https://github.com/prometheus/client_golang") + (synopsis "Prometheus Go client library") + (description + "This is the @url{http://golang.org,Go} client library for +@url{http://prometheus.io,Prometheus}. It has two separate parts, one for +instrumenting application code, and one for creating clients that talk to the +Prometheus HTTP API.") + (license license:asl2.0))) + +(define-public go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910 + (package + (name "go-github-com-prometheus-client-model") + (version "0.0.0-20180712105110-5c3871d89910") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/client_model") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "04psf81l9fjcwascsys428v03fx4fi894h7fhrj2vvcz723q57k0")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/client_model")) + (home-page "https://github.com/prometheus/client_model") + (synopsis "Deprecation note") + (description + "This repository used to contain the code that defined both +the data model and the exposition format of Prometheus metrics.") + (license license:asl2.0))) + +(define-public go-github-com-prometheus-common-0.0.0-20181113130724-41aa239b4cce + (package + (name "go-github-com-prometheus-common") + (version "0.0.0-20181113130724-41aa239b4cce") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/common") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0spy10lwanqa5ynks9cagphkq74zz4b3jm4w59vvizdcw4fhd7s6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/common")) + (home-page "https://github.com/prometheus/common") + (synopsis "Common") + (description + "This repository contains Go libraries that are shared across Prometheus +components and libraries. They are considered internal to Prometheus, without +any stability guarantees for external usage.") + (license license:asl2.0))) + +(define-public go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d + (package + (name "go-github-com-prometheus-procfs") + (version "0.0.0-20181005140218-185b4288413d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/procfs") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0d85429kdw5dgj5zhyiz1sq3i5691vj2gjnda93nnxxzx9acg8cv")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/procfs")) + (home-page "https://github.com/prometheus/procfs") + (synopsis "procfs") + (description + "Package procfs provides functions to retrieve system, kernel and process +metrics from the pseudo-filesystem proc. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20181107165924-66b7b1311ac8") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "00ny4r2bbj6rz939iy9g699acqydq7rfi6r6awn25w9i2dld9m13")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-gopkg-in-alecthomas-kingpin-v2-2.2.6 + (package + (name "go-gopkg-in-alecthomas-kingpin-v2") + (version "2.2.6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/alecthomas/kingpin.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0mndnv3hdngr3bxp7yxfd47cas4prv98sqw534mx7vp38gd88n5r")))) + (build-system go-build-system) + (arguments + '(#:import-path + "gopkg.in/alecthomas/kingpin.v2" + #:unpack-path + "gopkg.in/alecthomas/kingpin.v2")) + (home-page "https://gopkg.in/alecthomas/kingpin.v2") + (synopsis "Kingpin - A Go (golang) command line and flag parser") + (description + "Package kingpin provides command line interfaces like this: +") + (license license:expat))) + +(define-public go-github-com-prometheus-tsdb-0.7.1 + (package + (name "go-github-com-prometheus-tsdb") + (version "0.7.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus-junkyard/tsdb") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1c1da8i5byvhh4fp3vqjfb65aaksjskn3ggb8wg9hcfzjrhgpz04")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/tsdb")) + (propagated-inputs + `(("go-gopkg-in-alecthomas-kingpin-v2-2.2.6" + ,go-gopkg-in-alecthomas-kingpin-v2-2.2.6) + ("go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8" + ,go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8) + ("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" + ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) + ("go-github-com-stretchr-testify-1.2.2" + ,go-github-com-stretchr-testify-1.2.2) + ("go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d" + ,go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d) + ("go-github-com-prometheus-common-0.0.0-20181113130724-41aa239b4cce" + ,go-github-com-prometheus-common-0.0.0-20181113130724-41aa239b4cce) + ("go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910" + ,go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910) + ("go-github-com-prometheus-client-golang-0.9.1" + ,go-github-com-prometheus-client-golang-0.9.1) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-pkg-errors-0.8.0" ,go-github-com-pkg-errors-0.8.0) + ("go-github-com-oklog-ulid-1.3.1" ,go-github-com-oklog-ulid-1.3.1) + ("go-github-com-matttproud-golang-protobuf-extensions-1.0.1" + ,go-github-com-matttproud-golang-protobuf-extensions-1.0.1) + ("go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515" + ,go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0) + ("go-github-com-gogo-protobuf-1.1.1" + ,go-github-com-gogo-protobuf-1.1.1) + ("go-github-com-go-stack-stack-1.8.0" + ,go-github-com-go-stack-stack-1.8.0) + ("go-github-com-go-logfmt-logfmt-0.3.0" + ,go-github-com-go-logfmt-logfmt-0.3.0) + ("go-github-com-go-kit-kit-0.8.0" ,go-github-com-go-kit-kit-0.8.0) + ("go-github-com-dgryski-go-sip13-0.0.0-20181026042036-e10d5fee7954" + ,go-github-com-dgryski-go-sip13-0.0.0-20181026042036-e10d5fee7954) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1) + ("go-github-com-cespare-xxhash-1.1.0" + ,go-github-com-cespare-xxhash-1.1.0) + ("go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973" + ,go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973) + ("go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf" + ,go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf) + ("go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc" + ,go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc))) + (home-page "https://github.com/prometheus/tsdb") + (synopsis "TSDB") + (description + "Package tsdb implements a time series storage for float64 sample data. +") + (license license:asl2.0))) + +(define-public go-github-com-prometheus-client-golang-0.9.3 + (package + (name "go-github-com-prometheus-client-golang") + (version "0.9.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/client_golang") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1608rm1y2p3iv8k2x7wyc6hshvpbfkv2k77hy0x870syms1g3g1p")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/client_golang")) + (propagated-inputs + `(("go-github-com-prometheus-tsdb-0.7.1" + ,go-github-com-prometheus-tsdb-0.7.1) + ("go-github-com-prometheus-procfs-0.0.0-20190507164030-5867b95ac084" + ,go-github-com-prometheus-procfs-0.0.0-20190507164030-5867b95ac084) + ("go-github-com-prometheus-common-0.4.0" + ,go-github-com-prometheus-common-0.4.0) + ("go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90" + ,go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90) + ("go-github-com-golang-protobuf-1.3.1" + ,go-github-com-golang-protobuf-1.3.1) + ("go-github-com-go-logfmt-logfmt-0.4.0" + ,go-github-com-go-logfmt-logfmt-0.4.0) + ("go-github-com-beorn7-perks-1.0.0" + ,go-github-com-beorn7-perks-1.0.0))) + (home-page "https://github.com/prometheus/client_golang") + (synopsis "Prometheus Go client library") + (description + "This is the @url{http://golang.org,Go} client library for +@url{http://prometheus.io,Prometheus}. It has two separate parts, one for +instrumenting application code, and one for creating clients that talk to the +Prometheus HTTP API.") + (license license:asl2.0))) + +(define-public go-github-com-soheilhy-cmux-0.1.4 + (package + (name "go-github-com-soheilhy-cmux") + (version "0.1.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/soheilhy/cmux") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1f736g68d9vwlyfb6g0fxkr0r875369xafk30cz8kaq5niaqwv0h")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/soheilhy/cmux")) + (home-page "https://github.com/soheilhy/cmux") + (synopsis "cmux: Connection Mux") + (description + "Package cmux is a library to multiplex network connections based on +their payload. Using cmux, you can serve different protocols from the +same listener. +") + (license license:asl2.0))) + +(define-public go-github-com-spf13-afero-1.1.2 + (package + (name "go-github-com-spf13-afero") + (version "1.1.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/spf13/afero") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0miv4faf5ihjfifb1zv6aia6f6ik7h1s4954kcb8n6ixzhx9ck6k")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/spf13/afero")) + (home-page "https://github.com/spf13/afero") + (synopsis "Overview") + (description + "This package provides a FileSystem Abstraction System for Go") + (license license:asl2.0))) + +(define-public go-github-com-spf13-cast-1.3.0 + (package + (name "go-github-com-spf13-cast") + (version "1.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/spf13/cast") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0xq1ffqj8y8h7dcnm0m9lfrh0ga7pssnn2c1dnr09chqbpn4bdc5")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/spf13/cast")) + (propagated-inputs + `(("go-github-com-stretchr-testify-1.2.2" + ,go-github-com-stretchr-testify-1.2.2) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/spf13/cast") + (synopsis "cast") + (description "Package cast provides easy and safe casting in Go. +") + (license license:expat))) + +(define-public go-github-com-spf13-jwalterweatherman-1.0.0 + (package + (name "go-github-com-spf13-jwalterweatherman") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/spf13/jwalterweatherman") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "093fmmvavv84pv4q84hav7ph3fmrq87bvspjj899q0qsx37yvdr8")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/spf13/jwalterweatherman")) + (home-page "https://github.com/spf13/jwalterweatherman") + (synopsis "jWalterWeatherman") + (description + "Seamless printing to the terminal (stdout) and logging to a io.Writer +(file) thatâ\x80\x99s as easy to use as fmt.Println.") + (license license:expat))) + +(define-public go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5 + (package + (name "go-github-com-tmc-grpc-websocket-proxy") + (version "0.0.0-20190109142713-0ad062ec5ee5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/tmc/grpc-websocket-proxy") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1anw4v9wspnw9xf2z5r9w0sszwjklyanl0l85wgg6nxak9gnrqp4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/tmc/grpc-websocket-proxy")) + (home-page "https://github.com/tmc/grpc-websocket-proxy") + (synopsis "grpc-websocket-proxy") + (description + "Wrap your grpc-gateway mux with this helper to expose streaming endpoints over websockets.") + (license license:expat))) + +(define-public go-github-com-ugorji-go-1.1.4 + (package + (name "go-github-com-ugorji-go") + (version "1.1.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/ugorji/go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ma2qvn5wqvjidpdz74x832a813qnr1cxbx6n6n125ak9b3wbn5w")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/ugorji/go")) + (home-page "https://github.com/ugorji/go") + (synopsis "go-codec") + (description + "This repository contains the @code{go-codec} library, the @code{codecgen} tool and +benchmarks for comparing against other libraries.") + (license license:expat))) + +(define-public go-github-com-xiang90-probing-0.0.0-20190116061207-43a291ad63a2 + (package + (name "go-github-com-xiang90-probing") + (version "0.0.0-20190116061207-43a291ad63a2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/xiang90/probing") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1z22ms16j5j42775mf31isanwx2pwr1d8wqw8006dczjv36qnz5i")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/xiang90/probing")) + (home-page "https://github.com/xiang90/probing") + (synopsis "Getting Started") + (description "We first need to serve the probing HTTP handler.") + (license license:expat))) + +(define-public go-github-com-xordataexchange-crypt-0.0.3-0.20170626215501-b2862e3d0a77 + (package + (name "go-github-com-xordataexchange-crypt") + (version "0.0.3-0.20170626215501-b2862e3d0a77") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/xordataexchange/crypt") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "04q3856anpzl4gdfgmg7pbp9cx231nkz3ymq2xp27rnmmwhfxr8y")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/xordataexchange/crypt")) + (home-page "https://github.com/xordataexchange/crypt") + (synopsis "crypt") + (description + "You can use crypt as a command line tool or as a configuration library:") + (license license:expat))) + +(define-public go-go-etcd-io-bbolt-1.3.2 + (package + (name "go-go-etcd-io-bbolt") + (version "1.3.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/etcd-io/bbolt") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "13d5l6p6c5wvkr6vn9hkhz9c593qifn7fgx0hg4d6jcvg1y0bnm2")))) + (build-system go-build-system) + (arguments '(#:import-path "go.etcd.io/bbolt")) + (home-page "https://go.etcd.io/bbolt") + (synopsis "bbolt") + (description + "package bbolt implements a low-level key/value store in pure Go. It supports +fully serializable transactions, ACID semantics, and lock-free MVCC with +multiple readers and a single writer. Bolt can be used for projects that +want a simple data store without the need to add large dependencies such as +Postgres or MySQL. +") + (license license:expat))) + +(define-public go-go-uber-org-atomic-1.4.0 + (package + (name "go-go-uber-org-atomic") + (version "1.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/uber-go/atomic") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0c6yzx15c20719xii3dm0vyjd8i9jx45m0wh5yp1zf29b0gbljcy")))) + (build-system go-build-system) + (arguments '(#:import-path "go.uber.org/atomic")) + (home-page "https://go.uber.org/atomic") + (synopsis "atomic") + (description + "Package atomic provides simple wrappers around numerics to enforce atomic +access. +") + (license license:expat))) + +(define-public go-go-uber-org-multierr-1.1.0 + (package + (name "go-go-uber-org-multierr") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/uber-go/multierr") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1slfc6syvw8cvr6rbrjsy6ja5w8gsx0f8aq8qm16rp2x5c2pj07w")))) + (build-system go-build-system) + (arguments '(#:import-path "go.uber.org/multierr")) + (home-page "https://go.uber.org/multierr") + (synopsis "multierr") + (description + "Package multierr allows combining one or more errors together. +") + (license license:expat))) + +(define-public go-go-uber-org-zap-1.10.0 + (package + (name "go-go-uber-org-zap") + (version "1.10.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/uber-go/zap") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "10hdzr1rghwbsl6bbd30779dx44fh9mg9pq8d2cgqlknqxxpvpvr")))) + (build-system go-build-system) + (arguments '(#:import-path "go.uber.org/zap")) + (home-page "https://go.uber.org/zap") + (synopsis "â\x9a¡ zap") + (description "Package zap provides fast, structured, leveled logging. +") + (license license:expat))) + +(define-public go-golang-org-x-net-0.0.0-20190522155817-f3200d17e092 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190522155817-f3200d17e092") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1mskh7p80dd8j1ffy16917d3cyy7lfh1gb56n4rq9g1bwckz4lwy")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-time-0.0.0-20190308202827-9d24e82272b4 + (package + (name "go-golang-org-x-time") + (version "0.0.0-20190308202827-9d24e82272b4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/time") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1f5nkr4vys2vbd8wrwyiq2f5wcaahhpxmia85d1gshcbqjqf8dkb")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/time")) + (home-page "https://golang.org/x/time") + (synopsis "Go Time") + (description "This repository provides supplementary Go time packages.") + (license license:bsd-3))) + +(define-public go-google-golang-org-grpc-1.21.0 + (package + (name "go-google-golang-org-grpc") + (version "1.21.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0zxjlxnvjqfn6zfx7gbmqhadx0j788vxfn95g1ngbmjkgppzsnfp")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" + ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) + ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" + ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) + ("go-google-golang-org-appengine-1.1.0" + ,go-google-golang-org-appengine-1.1.0) + ("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" + ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" + ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-google-go-cmp-0.2.0" + ,go-github-com-google-go-cmp-0.2.0) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0) + ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-client9-misspell-0.3.4" + ,go-github-com-client9-misspell-0.3.4) + ("go-github-com-burntsushi-toml-0.3.1" + ,go-github-com-burntsushi-toml-0.3.1) + ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-github-com-spf13-viper-1.4.0 + (package + (name "go-github-com-spf13-viper") + (version "1.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/spf13/viper") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1zpzxvn13wpvbblbbn73svaq39zgxfjqhci9d68g3qf309pcfy19")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/spf13/viper")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) + ("go-google-golang-org-grpc-1.21.0" ,go-google-golang-org-grpc-1.21.0) + ("go-golang-org-x-time-0.0.0-20190308202827-9d24e82272b4" + ,go-golang-org-x-time-0.0.0-20190308202827-9d24e82272b4) + ("go-golang-org-x-net-0.0.0-20190522155817-f3200d17e092" + ,go-golang-org-x-net-0.0.0-20190522155817-f3200d17e092) + ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) + ("go-go-uber-org-multierr-1.1.0" ,go-go-uber-org-multierr-1.1.0) + ("go-go-uber-org-atomic-1.4.0" ,go-go-uber-org-atomic-1.4.0) + ("go-go-etcd-io-bbolt-1.3.2" ,go-go-etcd-io-bbolt-1.3.2) + ("go-github-com-xordataexchange-crypt-0.0.3-0.20170626215501-b2862e3d0a77" + ,go-github-com-xordataexchange-crypt-0.0.3-0.20170626215501-b2862e3d0a77) + ("go-github-com-xiang90-probing-0.0.0-20190116061207-43a291ad63a2" + ,go-github-com-xiang90-probing-0.0.0-20190116061207-43a291ad63a2) + ("go-github-com-ugorji-go-1.1.4" ,go-github-com-ugorji-go-1.1.4) + ("go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5" + ,go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5) + ("go-github-com-stretchr-testify-1.2.2" + ,go-github-com-stretchr-testify-1.2.2) + ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) + ("go-github-com-spf13-jwalterweatherman-1.0.0" + ,go-github-com-spf13-jwalterweatherman-1.0.0) + ("go-github-com-spf13-cast-1.3.0" ,go-github-com-spf13-cast-1.3.0) + ("go-github-com-spf13-afero-1.1.2" ,go-github-com-spf13-afero-1.1.2) + ("go-github-com-soheilhy-cmux-0.1.4" + ,go-github-com-soheilhy-cmux-0.1.4) + ("go-github-com-prometheus-client-golang-0.9.3" + ,go-github-com-prometheus-client-golang-0.9.3) + ("go-github-com-pelletier-go-toml-1.2.0" + ,go-github-com-pelletier-go-toml-1.2.0) + ("go-github-com-mitchellh-mapstructure-1.1.2" + ,go-github-com-mitchellh-mapstructure-1.1.2) + ("go-github-com-magiconair-properties-1.8.0" + ,go-github-com-magiconair-properties-1.8.0) + ("go-github-com-jonboulle-clockwork-0.1.0" + ,go-github-com-jonboulle-clockwork-0.1.0) + ("go-github-com-hashicorp-hcl-1.0.0" + ,go-github-com-hashicorp-hcl-1.0.0) + ("go-github-com-grpc-ecosystem-grpc-gateway-1.9.0" + ,go-github-com-grpc-ecosystem-grpc-gateway-1.9.0) + ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" + ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) + ("go-github-com-grpc-ecosystem-go-grpc-middleware-1.0.0" + ,go-github-com-grpc-ecosystem-go-grpc-middleware-1.0.0) + ("go-github-com-gorilla-websocket-1.4.0" + ,go-github-com-gorilla-websocket-1.4.0) + ("go-github-com-google-btree-1.0.0" ,go-github-com-google-btree-1.0.0) + ("go-github-com-golang-groupcache-0.0.0-20190129154638-5b532d6fd5ef" + ,go-github-com-golang-groupcache-0.0.0-20190129154638-5b532d6fd5ef) + ("go-github-com-gogo-protobuf-1.2.1" + ,go-github-com-gogo-protobuf-1.2.1) + ("go-github-com-fsnotify-fsnotify-1.4.7" + ,go-github-com-fsnotify-fsnotify-1.4.7) + ("go-github-com-dgrijalva-jwt-go-3.2.0+incompatible" + ,go-github-com-dgrijalva-jwt-go-3.2.0+incompatible) + ("go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f" + ,go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f) + ("go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e" + ,go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e) + ("go-github-com-coreos-go-semver-0.2.0" + ,go-github-com-coreos-go-semver-0.2.0) + ("go-github-com-coreos-etcd-3.3.10+incompatible" + ,go-github-com-coreos-etcd-3.3.10+incompatible) + ("go-github-com-coreos-bbolt-1.3.2" ,go-github-com-coreos-bbolt-1.3.2) + ("go-github-com-armon-consul-api-0.0.0-20180202201655-eb2c6b5be1b6" + ,go-github-com-armon-consul-api-0.0.0-20180202201655-eb2c6b5be1b6))) + (home-page "https://github.com/spf13/viper") + (synopsis "Install") + (description "Many Go projects are built using Viper including:") + (license license:expat))) + +(define-public go-github-com-spf13-cobra-1.0.0 + (package + (name "go-github-com-spf13-cobra") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/spf13/cobra") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0vbppqqhby302a5ayn0296jqr71qkcd4c9am7wzsk6z71fwdsa7h")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/spf13/cobra")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) + ("go-github-com-spf13-viper-1.4.0" ,go-github-com-spf13-viper-1.4.0) + ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) + ("go-github-com-mitchellh-go-homedir-1.1.0" + ,go-github-com-mitchellh-go-homedir-1.1.0) + ("go-github-com-inconshreveable-mousetrap-1.0.0" + ,go-github-com-inconshreveable-mousetrap-1.0.0) + ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" + ,go-github-com-cpuguy83-go-md2man-v2-2.0.0))) + (home-page "https://github.com/spf13/cobra") + (synopsis "Table of Contents") + (description + "Package cobra is a commander providing a simple interface to create powerful modern CLI interfaces. +In addition to providing an interface, Cobra simultaneously provides a controller to organize your application code. +") + (license license:asl2.0))) + +(define-public go-github-com-containerd-continuity-0.1.0 + (package + (name "go-github-com-containerd-continuity") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/continuity") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1h756l1xc31sc4zc1d3hmh64kl9qm5vpbbw0c93hrasn51ki96yz")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/continuity")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" + ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) + ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" + ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) + ("go-github-com-spf13-cobra-1.0.0" ,go-github-com-spf13-cobra-1.0.0) + ("go-github-com-sirupsen-logrus-1.7.0" + ,go-github-com-sirupsen-logrus-1.7.0) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-go-digest-1.0.0" + ,go-github-com-opencontainers-go-digest-1.0.0) + ("go-github-com-golang-protobuf-1.3.5" + ,go-github-com-golang-protobuf-1.3.5) + ("go-github-com-dustin-go-humanize-1.0.0" + ,go-github-com-dustin-go-humanize-1.0.0) + ("go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898" + ,go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898))) + (home-page "https://github.com/containerd/continuity") + (synopsis "continuity") + (description + "This package provides a transport-agnostic, filesystem metadata manifest system") + (license license:asl2.0))) + +(define-public go-github-com-containerd-fifo-1.0.0 + (package + (name "go-github-com-containerd-fifo") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/fifo") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1l6jy9b4mjcj7pbz1n79zmipni1dz60rf5n66vn5p2ggavbq7h1q")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/fifo")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" + ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) + (home-page "https://github.com/containerd/fifo") + (synopsis "fifo") + (description "Go package for handling fifos in a sane way.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-console-1.0.1 + (package + (name "go-github-com-containerd-console") + (version "1.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/console") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0s837wj6h80fykk2pdmaji75rw9c3863by0gh0cq51hh0lgyjpvg")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/console")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f" + ,go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) + (home-page "https://github.com/containerd/console") + (synopsis "console") + (description + "Golang package for dealing with consoles. Light on deps and a simple API.") + (license license:asl2.0))) + +(define-public go-github-com-opencontainers-runtime-spec-1.0.2 + (package + (name "go-github-com-opencontainers-runtime-spec") + (version "1.0.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/runtime-spec") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19w981vcmd5lp2hy0630x6ayb8zz17n2vxqm2py5mg945xflcizg")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) + (home-page "https://github.com/opencontainers/runtime-spec") + (synopsis "Open Container Initiative Runtime Specification") + (description + "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") + (license license:asl2.0))) + +(define-public go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200916030750-2334cc1a136f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1lc7d513gwwpr6r7f55743684n1qsgn9vmg6b79x0hsp1x90z4mr")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-containerd-go-runc-1.0.0 + (package + (name "go-github-com-containerd-go-runc") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/go-runc") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0xk30dzzxmd83bnfyilplizlxh1pg1gqz2jrq9wz9rqqkxazc03n")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/go-runc")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f" + ,go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f) + ("go-github-com-sirupsen-logrus-1.7.0" + ,go-github-com-sirupsen-logrus-1.7.0) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-runtime-spec-1.0.2" + ,go-github-com-opencontainers-runtime-spec-1.0.2) + ("go-github-com-containerd-console-1.0.1" + ,go-github-com-containerd-console-1.0.1))) + (home-page "https://github.com/containerd/go-runc") + (synopsis "go-runc") + (description + "This is a package for consuming the @url{https://github.com/opencontainers/runc,runc} binary in your Go applications. +It tries to expose all the settings and features of the runc CLI. If there is something missing then add it, its opensource!") + (license license:asl2.0))) + +(define-public go-golang-org-x-tools-0.0.0-20181030221726-6c7e314b6563 + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20181030221726-6c7e314b6563") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1m1n6r8v6mrlh0yvlz3qxz4s7jc7nis0zf3dfl1i6hqh5xblkwnw")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-github-com-kisielk-errcheck-1.2.0 + (package + (name "go-github-com-kisielk-errcheck") + (version "1.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kisielk/errcheck") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0am6g10ipdxw84byscm7shda654882wjcbinq5c4696m6mhi2qrd")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kisielk/errcheck")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20181030221726-6c7e314b6563" + ,go-golang-org-x-tools-0.0.0-20181030221726-6c7e314b6563))) + (home-page "https://github.com/kisielk/errcheck") + (synopsis "errcheck") + (description + "errcheck is a program for checking for unchecked errors in go programs.") + (license license:expat))) + +(define-public go-github-com-gogo-protobuf-1.3.1 + (package + (name "go-github-com-gogo-protobuf") + (version "1.3.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gogo/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0x77x64sxjgfhmbijqfzmj8h4ar25l2w97h01q3cqs1wk7zfnkhp")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/gogo/protobuf")) + (propagated-inputs + `(("go-github-com-kisielk-gotool-1.0.0" + ,go-github-com-kisielk-gotool-1.0.0) + ("go-github-com-kisielk-errcheck-1.2.0" + ,go-github-com-kisielk-errcheck-1.2.0))) + (home-page "https://github.com/gogo/protobuf") + (synopsis "Protocol Buffers for Go with Gadgets") + (description + "gogoprotobuf is a fork of @url{https://github.com/golang/protobuf,golang/protobuf} with extra code generation features.") + (license license:bsd-3))) + +(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.2 + (package + (name "go-github-com-konsorten-go-windows-terminal-sequences") + (version "1.0.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/konsorten/go-windows-terminal-sequences") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "09mn209ika7ciy87xf2x31dq5fnqw39jidgaljvmqxwk7ff1hnx7")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) + (home-page "https://github.com/konsorten/go-windows-terminal-sequences") + (synopsis "Windows Terminal Sequences") + (description + "This library allow for enabling Windows terminal color support for Go.") + (license license:expat))) + +(define-public go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1 + (package + (name "go-github-com-prometheus-procfs") + (version "0.0.0-20190522114515-bc1a522cf7b1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/procfs") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "13ws66kd65zbhk31zmax9qgmh22fzjcgs5ihy4fm1d775w6bmdzx")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/procfs")) + (propagated-inputs + `(("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" + ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4))) + (home-page "https://github.com/prometheus/procfs") + (synopsis "procfs") + (description + "Package procfs provides functions to retrieve system, kernel and process +metrics from the pseudo-filesystem proc. +") + (license license:asl2.0))) + +(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.1 + (package + (name "go-github-com-konsorten-go-windows-terminal-sequences") + (version "1.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/konsorten/go-windows-terminal-sequences") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1lchgf27n276vma6iyxa0v1xds68n2g8lih5lavqnx5x6q5pw2ip")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) + (home-page "https://github.com/konsorten/go-windows-terminal-sequences") + (synopsis "Windows Terminal Sequences") + (description + "This library allow for enabling Windows terminal color support for Go.") + (license license:expat))) + +(define-public go-github-com-stretchr-objx-0.1.1 + (package + (name "go-github-com-stretchr-objx") + (version "0.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/objx") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0iph0qmpyqg4kwv8jsx6a56a7hhqq8swrazv40ycxk9rzr0s8yls")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/objx")) + (home-page "https://github.com/stretchr/objx") + (synopsis "Objx") + (description + "Objx - Go package for dealing with maps, slices, JSON and other data. +") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190422165155-953cdadca894") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0gkha4whk8xkcv3isigbs250akag99isxnd3v9xmy0kl3g88hxy1")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-sirupsen-logrus-1.4.2 + (package + (name "go-github-com-sirupsen-logrus") + (version "1.4.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sirupsen/logrus") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "087k2lxrr9p9dh68yw71d05h5g9p5v26zbwd6j7lghinjfaw334x")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/sirupsen/logrus")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894" + ,go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894) + ("go-github-com-stretchr-testify-1.2.2" + ,go-github-com-stretchr-testify-1.2.2) + ("go-github-com-stretchr-objx-0.1.1" + ,go-github-com-stretchr-objx-0.1.1) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.1" + ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.1) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/sirupsen/logrus") + (synopsis "Logrus") + (description + "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. +") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200120151820-655fe14d7479") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "133yxmdcny5b0r8775m52sj7zja36riv0x2437k7jccywqi8nx32")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-google-golang-org-genproto-0.0.0-20200117163144-32f20d992d24 + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20200117163144-32f20d992d24") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1kl696jd8fykykjjbngqpgqsngajwbbrvrpl1q0804l6hz8qk858")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" + ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) + ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) + ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" + ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) + ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" + ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) + ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" + ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-google-golang-org-grpc-1.26.0 + (package + (name "go-google-golang-org-grpc") + (version "1.26.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1qsb2mcswpp3vd7i9gfvz4a3ypdwk2svhhn09nyywgb1vvw80krv")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" + ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-github-com-google-go-cmp-0.2.0" + ,go-github-com-google-go-cmp-0.2.0) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2) + ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" + ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) + ("go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473" + ,go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-github-com-containerd-ttrpc-1.0.2 + (package + (name "go-github-com-containerd-ttrpc") + (version "1.0.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/ttrpc") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0plkm3yrr20vccfl0x8dxys3iphjwnmi285in0pivff6p9djf3yz")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/ttrpc")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.26.0" ,go-google-golang-org-grpc-1.26.0) + ("go-google-golang-org-genproto-0.0.0-20200117163144-32f20d992d24" + ,go-google-golang-org-genproto-0.0.0-20200117163144-32f20d992d24) + ("go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479" + ,go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479) + ("go-github-com-sirupsen-logrus-1.4.2" + ,go-github-com-sirupsen-logrus-1.4.2) + ("go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1" + ,go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.2" + ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.2) + ("go-github-com-gogo-protobuf-1.3.1" + ,go-github-com-gogo-protobuf-1.3.1))) + (home-page "https://github.com/containerd/ttrpc") + (synopsis "ttrpc") + (description "GRPC for low-memory environments.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-typeurl-1.0.2 + (package + (name "go-github-com-containerd-typeurl") + (version "1.0.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/typeurl") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wvfxlxgkln11d9s6rxay965c715bnpk203klbsq8m8qpjqrz620")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/typeurl")) + (propagated-inputs + `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-gogo-protobuf-1.3.2" + ,go-github-com-gogo-protobuf-1.3.2))) + (home-page "https://github.com/containerd/typeurl") + (synopsis "typeurl") + (description + "This package provides a Go package for managing the registration, marshaling, and unmarshaling of encoded types.") + (license license:asl2.0))) + +(define-public go-github-com-yuin-goldmark-1.1.27 + (package + (name "go-github-com-yuin-goldmark") + (version "1.1.27") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/yuin/goldmark") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1872cqnii0kwiqcy81yin0idvjy5mdy4zlzz0csb319lcjs3b923")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/yuin/goldmark")) + (home-page "https://github.com/yuin/goldmark") + (synopsis "goldmark") + (description + "Package goldmark implements functions to convert markdown text to a desired format. +") + (license license:expat))) + +(define-public go-golang-org-x-mod-0.2.0 + (package + (name "go-golang-org-x-mod") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/mod") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fp6885dclq77mh73v7i54v2b9llpv4di193zc8vmsbbkkc483cl")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/mod")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" + ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) + ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" + ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) + ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" + ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) + (home-page "https://golang.org/x/mod") + (synopsis "mod") + (description + "This repository holds packages for writing tools +that work directly with Go module mechanics. +That is, it is for direct manipulation of Go modules themselves.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b + (package + (name "go-golang-org-x-net") + (version "0.0.0-20200226121028-0de0cce0169b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1db7s5kbzyh2zd5lpv05n7hp8wbwdvgk0wpiwrlnig94mkr0y5aq")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20190911185100-cd5d95a43a6e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1nqkyz2y1qvqcma52ijh02s8aiqmkfb95j08f6zcjhbga3ds6hds")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the +ones provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20200619180055-7c47624df98f + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20200619180055-7c47624df98f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fhzwd32j7w9g3algq0zj8g7ivx3f0mn9nx9mj046wdscryn49mk")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) + ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" + ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) + ("go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b" + ,go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b) + ("go-golang-org-x-mod-0.2.0" ,go-golang-org-x-mod-0.2.0) + ("go-github-com-yuin-goldmark-1.1.27" + ,go-github-com-yuin-goldmark-1.1.27))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-github-com-kisielk-errcheck-1.5.0 + (package + (name "go-github-com-kisielk-errcheck") + (version "1.5.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kisielk/errcheck") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ci3jz2px74pfmr42jv7dpx7fdzx08vai4czp9fkiyb0gcaiqsk6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kisielk/errcheck")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20200619180055-7c47624df98f" + ,go-golang-org-x-tools-0.0.0-20200619180055-7c47624df98f))) + (home-page "https://github.com/kisielk/errcheck") + (synopsis "errcheck") + (description + "errcheck is a program for checking for unchecked errors in go programs.") + (license license:expat))) + +(define-public go-github-com-kisielk-gotool-1.0.0 + (package + (name "go-github-com-kisielk-gotool") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kisielk/gotool") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "14af2pa0ssyp8bp2mvdw184s5wcysk6akil3wzxmr05wwy951iwn")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kisielk/gotool")) + (home-page "https://github.com/kisielk/gotool") + (synopsis "gotool") + (description + "Package gotool contains utility functions used to implement the standard +\"cmd/go\" tool, provided as a convenience to developers who want to write +tools with similar semantics. +") + (license license:expat))) + +(define-public go-github-com-yuin-goldmark-1.2.1 + (package + (name "go-github-com-yuin-goldmark") + (version "1.2.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/yuin/goldmark") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12rsnsf65drcp0jfw2jl9w589vsn3pxdk1zh3v9q908iigngrcmy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/yuin/goldmark")) + (home-page "https://github.com/yuin/goldmark") + (synopsis "goldmark") + (description + "Package goldmark implements functions to convert markdown text to a desired format. +") + (license license:expat))) + +(define-public go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20191011191535-87dc89f01550") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0z4i1m2yn3f31ci7wvcm2rxkx2yiv7a78mfzklncmsz2k97rlh2g")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" + ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) + ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" + ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7 + (package + (name "go-golang-org-x-xerrors") + (version "0.0.0-20190717185122-a985d3407aa7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/xerrors") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "00wzr5w8aadipgc3rkk8f11i41znskfj9ix5nhhaxyg7isrslgcj")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/xerrors")) + (home-page "https://golang.org/x/xerrors") + (synopsis #f) + (description + "Package xerrors implements functions to manipulate errors. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20191119224855-298f0cb1881e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0l4pqwib2wnfnix6nvxl0yrq87ipi7ff1rz6z5bxfzy9dki1nzmv")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7" + ,go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7) + ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" + ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) + ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" + ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898 + (package + (name "go-golang-org-x-xerrors") + (version "0.0.0-20191011141410-1b5146add898") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/xerrors") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0w2akj91krxjag0xdhsg78470888nicc5ismc2ap9jqpss6v1zih")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/xerrors")) + (home-page "https://golang.org/x/xerrors") + (synopsis #f) + (description + "Package xerrors implements functions to manipulate errors. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-mod-0.3.0 + (package + (name "go-golang-org-x-mod") + (version "0.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/mod") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ldgbx2zpprbsfn6p8pfgs4nn87gwbfcv2z0fa7n8alwsq2yw78q")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/mod")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" + ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) + ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" + ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) + ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" + ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) + (home-page "https://golang.org/x/mod") + (synopsis "mod") + (description + "This repository holds packages for writing tools +that work directly with Go module mechanics. +That is, it is for direct manipulation of Go modules themselves.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20201021035429-f5854403a974 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20201021035429-f5854403a974") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1vw63zpmhi337f3gc432x3wkib4j2ia8dy7if31wxwb9dgqvy222")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) + ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" + ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) + ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" + ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9 + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20201020160332-67f06af15bc9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "093p4panc808ak5bamzz7m9nb0xxib7778jpnr6f0xkz1n4fzyw5")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the +ones provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20210106214847-113979e3529a + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20210106214847-113979e3529a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0pq1a7hkamqdwsajyfrb27s56cvxz5838krsgyqz346s2djwdrzl")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" + ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) + ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" + ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) + ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" + ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) + ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) + ("go-github-com-yuin-goldmark-1.2.1" + ,go-github-com-yuin-goldmark-1.2.1))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-github-com-gogo-protobuf-1.3.2 + (package + (name "go-github-com-gogo-protobuf") + (version "1.3.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gogo/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0dfv1bhx5zhb5bsj5sj757nkacf2swp1ajpcyj9d0b37n602m18a")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/gogo/protobuf")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20210106214847-113979e3529a" + ,go-golang-org-x-tools-0.0.0-20210106214847-113979e3529a) + ("go-github-com-kisielk-gotool-1.0.0" + ,go-github-com-kisielk-gotool-1.0.0) + ("go-github-com-kisielk-errcheck-1.5.0" + ,go-github-com-kisielk-errcheck-1.5.0))) + (home-page "https://github.com/gogo/protobuf") + (synopsis "Protocol Buffers for Go with Gadgets") + (description + "gogoprotobuf is a fork of @url{https://github.com/golang/protobuf,golang/protobuf} with extra code generation features.") + (license license:bsd-3))) + +(define-public go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d + (package + (name "go-github-com-opencontainers-runtime-spec") + (version "1.0.3-0.20200929063507-e6143ca7d51d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/runtime-spec") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "06yk9kjif5mgi46d0hcgqcikdcplf3yflqbj8h6ljxshp6jzc49w")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) + (home-page "https://github.com/opencontainers/runtime-spec") + (synopsis "Open Container Initiative Runtime Specification") + (description + "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") + (license license:asl2.0))) + +(define-public go-github-com-urfave-cli-1.22.2 + (package + (name "go-github-com-urfave-cli") + (version "1.22.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/urfave/cli") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "10mcnvi5qmn00vpyk6si8gjka7p654wr9hac4zc9w5h3ickhvbdc")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/urfave/cli")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) + ("go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d" + ,go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d) + ("go-github-com-burntsushi-toml-0.3.1" + ,go-github-com-burntsushi-toml-0.3.1))) + (home-page "https://github.com/urfave/cli") + (synopsis "cli") + (description + "Package cli provides a minimal framework for creating and organizing command line +Go applications. cli is designed to be easy to understand and write, the most simple +cli application can be written as follows: +") + (license license:expat))) + +(define-public go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6 + (package + (name "go-github-com-golang-groupcache") + (version "0.0.0-20190702054246-869f871628b6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/groupcache") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0r4nk8129bvx50qb4xzjaay39b2h6k7cbdqqzdlanmc82ygczsbw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/groupcache")) + (home-page "https://github.com/golang/groupcache") + (synopsis "groupcache") + (description + "Package groupcache provides a data loading mechanism with caching +and de-duplication that works across a set of peer processes. +") + (license license:asl2.0))) + +(define-public go-github-com-golang-protobuf-1.3.1 + (package + (name "go-github-com-golang-protobuf") + (version "1.3.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "15am4s4646qy6iv0g3kkqq52rzykqjhm4bf08dk0fy2r58knpsyl")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-github-com-stretchr-testify-1.4.0 + (package + (name "go-github-com-stretchr-testify") + (version "1.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "187i5g88sxfy4vxpm7dw1gwv29pa2qaq475lxrdh5livh69wqfjb")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) + ("go-github-com-stretchr-objx-0.1.0" + ,go-github-com-stretchr-objx-0.1.0) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.0" + ,go-github-com-davecgh-go-spew-1.1.0))) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +") + (license license:expat))) + +(define-public go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190620200207-3b0461eec859") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0l00c8l0a8xnv6qdpwfzxxsr58jggacgzdrwiprrfx2xqm37b6d5")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190502145724-3ef323f4f1fd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "15iw4gjvrnrx98rlny1qcaprp3577rh2b77byb38dr6m3q42rvc6")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-text-0.3.2 + (package + (name "go-golang-org-x-text") + (version "0.3.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0flv9idw0jm5nm8lx25xqanbkqgfiym6619w575p7nrdh0riqwqh")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/text")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" + ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) + (home-page "https://golang.org/x/text") + (synopsis "Go Text") + (description + "text is a repository of text-related packages related to internationalization +(i18n) and localization (l10n), such as character encodings, text +transformations, and locale-specific text handling. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6 + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20190227155943-e225da77a7e6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0bh3583smcfw6jw3w6lp0za93rz7hpxfdz8vhxng75b7a6vdlw4p")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the +ones provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20190425155659-357c62f0e4bb") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1h1a0wys83cc86s4w2hqmz78ixijw8f7qchmiwdv5xjvpg0i27c2")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" + ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) + ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) + ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" + ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) + ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" + ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) + ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" + ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd) + ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" + ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) + ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" + ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-google-golang-org-grpc-1.20.1 + (package + (name "go-google-golang-org-grpc") + (version "1.20.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0rj3fs6jillapiwnpkfn3v2jbl7a3zsb0lys4srswl26hjijviqq")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" + ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) + ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" + ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) + ("go-google-golang-org-appengine-1.1.0" + ,go-google-golang-org-appengine-1.1.0) + ("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" + ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" + ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0) + ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-client9-misspell-0.3.4" + ,go-github-com-client9-misspell-0.3.4) + ("go-github-com-burntsushi-toml-0.3.1" + ,go-github-com-burntsushi-toml-0.3.1) + ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-go-opencensus-io-0.22.3 + (package + (name "go-go-opencensus-io") + (version "0.22.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/census-instrumentation/opencensus-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0xj16iq5jp26hi2py7lsd8cvqh651fgn39y05gzvjdi88d9xd3nw")))) + (build-system go-build-system) + (arguments '(#:import-path "go.opencensus.io")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.20.1" ,go-google-golang-org-grpc-1.20.1) + ("go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb" + ,go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb) + ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) + ("go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd" + ,go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd) + ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" + ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) + ("go-github-com-stretchr-testify-1.4.0" + ,go-github-com-stretchr-testify-1.4.0) + ("go-github-com-google-go-cmp-0.3.0" + ,go-github-com-google-go-cmp-0.3.0) + ("go-github-com-golang-protobuf-1.3.1" + ,go-github-com-golang-protobuf-1.3.1) + ("go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6" + ,go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6))) + (home-page "https://go.opencensus.io") + (synopsis "OpenCensus Libraries for Go") + (description "Package opencensus contains Go support for OpenCensus. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-sys-0.0.0-20210324051608-47abb6519492 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20210324051608-47abb6519492") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19g0pa8lazad5kcq396ggg9x1d6sx39rw9brz3hklx71gg1jd3ja")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-pkg-errors-0.8.1 + (package + (name "go-github-com-pkg-errors") + (version "0.8.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pkg/errors") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0g5qcb4d4fd96midz0zdk8b9kz8xkzwfa8kr1cliqbg8sxsy5vd1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pkg/errors")) + (home-page "https://github.com/pkg/errors") + (synopsis "errors") + (description "Package errors provides simple error handling primitives. +") + (license license:bsd-2))) + +(define-public go-github-com-spf13-pflag-1.0.3 + (package + (name "go-github-com-spf13-pflag") + (version "1.0.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/spf13/pflag") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1cj3cjm7d3zk0mf1xdybh0jywkbbw7a6yr3y22x9sis31scprswd")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/spf13/pflag")) + (home-page "https://github.com/spf13/pflag") + (synopsis "Description") + (description + "Package pflag is a drop-in replacement for Go's flag package, implementing +POSIX/GNU-style --flags. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20190624222133-a101b041ded4 + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20190624222133-a101b041ded4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1pm50dybm5wixjjspvfpafjmiy81b1zp08h13gxc5cylrfgncrfl")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" + ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-gotest-tools-v3-3.0.3 + (package + (name "go-gotest-tools-v3") + (version "3.0.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gotestyourself/gotest.tools") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1h316233n33lkfhbak8ljdj5i8df6hcwwm48n200svf22x3d95ww")))) + (build-system go-build-system) + (arguments + '(#:import-path "gotest.tools/v3" #:unpack-path "gotest.tools/v3")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20190624222133-a101b041ded4" + ,go-golang-org-x-tools-0.0.0-20190624222133-a101b041ded4) + ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) + ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0))) + (home-page "https://gotest.tools/v3") + (synopsis "gotest.tools") + (description + "Package gotesttools is a collection of packages to augment `testing` and +support common patterns. +") + (license license:asl2.0))) + +(define-public go-google-golang-org-grpc-1.27.1 + (package + (name "go-google-golang-org-grpc") + (version "1.27.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "09phrrsafgq6hnbw8cawvx44bdpk1p584fys17x1bwn0j0451zzs")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" + ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-github-com-google-go-cmp-0.2.0" + ,go-github-com-google-go-cmp-0.2.0) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2) + ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" + ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) + ("go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473" + ,go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-github-com-microsoft-hcsshim-0.8.22 + (package + (name "go-github-com-microsoft-hcsshim") + (version "0.8.22") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/microsoft/hcsshim") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ncpq5sqmygck8q09mqqsgmvx5akwn9izf1k4p8bjya46g3kzk6g")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/Microsoft/hcsshim")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) + ("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) + ("go-golang-org-x-sys-0.0.0-20210324051608-47abb6519492" + ,go-golang-org-x-sys-0.0.0-20210324051608-47abb6519492) + ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" + ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) + ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) + ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) + ("go-github-com-sirupsen-logrus-1.7.0" + ,go-github-com-sirupsen-logrus-1.7.0) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" + ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) + ("go-github-com-gogo-protobuf-1.3.2" + ,go-github-com-gogo-protobuf-1.3.2) + ("go-github-com-containerd-typeurl-1.0.2" + ,go-github-com-containerd-typeurl-1.0.2) + ("go-github-com-containerd-ttrpc-1.0.2" + ,go-github-com-containerd-ttrpc-1.0.2) + ("go-github-com-containerd-go-runc-1.0.0" + ,go-github-com-containerd-go-runc-1.0.0) + ("go-github-com-containerd-fifo-1.0.0" + ,go-github-com-containerd-fifo-1.0.0) + ("go-github-com-containerd-continuity-0.1.0" + ,go-github-com-containerd-continuity-0.1.0) + ("go-github-com-containerd-containerd-1.4.9" + ,go-github-com-containerd-containerd-1.4.9) + ("go-github-com-containerd-console-1.0.2" + ,go-github-com-containerd-console-1.0.2) + ("go-github-com-containerd-cgroups-1.0.1" + ,go-github-com-containerd-cgroups-1.0.1) + ("go-github-com-microsoft-go-winio-0.4.17" + ,go-github-com-microsoft-go-winio-0.4.17))) + (home-page "https://github.com/Microsoft/hcsshim") + (synopsis "hcsshim") + (description + "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") + (license license:expat))) + +(define-public go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20201207232520-09787c993a3a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1nv4mwi9njkkyc7lwmxrjr8ggfh2cf1c67a9bq85dnss81vpj61y")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the +ones provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-github-com-containerd-stargz-snapshotter-estargz-0.9.0 + (package + (name "go-github-com-containerd-stargz-snapshotter-estargz") + (version "0.9.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/stargz-snapshotter") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "01mjy4sks43jznxfsmb0jmb7l6a62pa2jxsyaqchb9pb7v9h43cq")))) + (build-system go-build-system) + (arguments + '(#:import-path + "github.com/containerd/stargz-snapshotter/estargz" + #:unpack-path + "github.com/containerd/stargz-snapshotter")) + (propagated-inputs + `(("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" + ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) + ("go-github-com-vbatts-tar-split-0.11.2" + ,go-github-com-vbatts-tar-split-0.11.2) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-go-digest-1.0.0" + ,go-github-com-opencontainers-go-digest-1.0.0) + ("go-github-com-klauspost-compress-1.13.6" + ,go-github-com-klauspost-compress-1.13.6))) + (home-page "https://github.com/containerd/stargz-snapshotter") + (synopsis #f) + (description #f) + (license license:asl2.0))) + +(define-public go-github-com-google-go-intervals-0.0.2 + (package + (name "go-github-com-google-go-intervals") + (version "0.0.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-intervals") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0v9i46g1vdbyinagj94jvaibw4bpgh2l9f9p5268wg6msf761jm9")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-intervals")) + (home-page "https://github.com/google/go-intervals") + (synopsis "go-intervals") + (description + "go-intervals is a library for performing set operations on 1-dimensional +intervals, such as time ranges.") + (license license:asl2.0))) + +(define-public go-github-com-google-uuid-1.2.0 + (package + (name "go-github-com-google-uuid") + (version "1.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/uuid") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "08wqig98w23cg2ngjijhgm6s0mdayb95awa3cn3bs69lg20gryac")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/uuid")) + (home-page "https://github.com/google/uuid") + (synopsis "uuid") + (description "Package uuid generates and inspects UUIDs. +") + (license license:bsd-3))) + +(define-public go-github-com-google-gofuzz-1.0.0 + (package + (name "go-github-com-google-gofuzz") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/gofuzz") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0qz439qvccm91w0mmjz4fqgx48clxdwagkvvx89cr43q1d4iry36")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/gofuzz")) + (home-page "https://github.com/google/gofuzz") + (synopsis "gofuzz") + (description + "Package fuzz is a library for populating go objects with random values. +") + (license license:asl2.0))) + +(define-public go-github-com-modern-go-concurrent-0.0.0-20180228061459-e0a39a4cb421 + (package + (name "go-github-com-modern-go-concurrent") + (version "0.0.0-20180228061459-e0a39a4cb421") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/modern-go/concurrent") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hamz1zimsxm9vl0ih19v7sbibglwq2j6473w4j9k7ib80fmxdzr")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/modern-go/concurrent")) + (home-page "https://github.com/modern-go/concurrent") + (synopsis "concurrent") + (description + "because sync.Map is only available in go 1.9, we can use concurrent.Map to make code portable") + (license license:asl2.0))) + +(define-public go-github-com-modern-go-reflect2-1.0.2 + (package + (name "go-github-com-modern-go-reflect2") + (version "1.0.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/modern-go/reflect2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "05a89f9j4nj8v1bchfkv2sy8piz746ikj831ilbp54g8dqhl8vzr")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/modern-go/reflect2")) + (home-page "https://github.com/modern-go/reflect2") + (synopsis "reflect2") + (description "reflect api that avoids runtime reflect.Value cost") + (license license:asl2.0))) + +(define-public go-github-com-json-iterator-go-1.1.12 + (package + (name "go-github-com-json-iterator-go") + (version "1.1.12") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/json-iterator/go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1c8f0hxm18wivx31bs615x3vxs2j3ba0v6vxchsjhldc8kl311bz")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/json-iterator/go")) + (propagated-inputs + `(("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0) + ("go-github-com-modern-go-reflect2-1.0.2" + ,go-github-com-modern-go-reflect2-1.0.2) + ("go-github-com-modern-go-concurrent-0.0.0-20180228061459-e0a39a4cb421" + ,go-github-com-modern-go-concurrent-0.0.0-20180228061459-e0a39a4cb421) + ("go-github-com-google-gofuzz-1.0.0" + ,go-github-com-google-gofuzz-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/json-iterator/go") + (synopsis "Benchmark") + (description + "Package jsoniter implements encoding and decoding of JSON as defined in +@url{https://rfc-editor.org/rfc/rfc4627.html,RFC 4627} and provides interfaces with identical syntax of standard lib encoding/json. +Converting from encoding/json to jsoniter is no more than replacing the package with jsoniter +and variable type declarations (if any). +jsoniter interfaces gives 100% compatibility with code using standard lib. +") + (license license:expat))) + +(define-public go-github-com-mattn-go-shellwords-1.0.12 + (package + (name "go-github-com-mattn-go-shellwords") + (version "1.0.12") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mattn/go-shellwords") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0l0l5s4hlsrm4z6hygig2pp1qirk5ycrzn9z27ay3yvg9k7zafzx")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mattn/go-shellwords")) + (home-page "https://github.com/mattn/go-shellwords") + (synopsis "go-shellwords") + (description "Parse line as shell words.") + (license license:expat))) + +(define-public go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible + (package + (name "go-github-com-mistifyio-go-zfs") + (version "2.1.2-0.20190413222219-f784269be439+incompatible") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mistifyio/go-zfs") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0x6ncjaqjm06c615kbwkqbd5wcdg9nmrbl7wm4w185s6kq6l8fpw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mistifyio/go-zfs")) + (home-page "https://github.com/mistifyio/go-zfs") + (synopsis "Go Wrapper for ZFS") + (description + "Package zfs provides wrappers around the ZFS command line tools. +") + (license license:asl2.0))) + +(define-public go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd + (package + (name "go-github-com-modern-go-concurrent") + (version "0.0.0-20180306012644-bacd9c7ef1dd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/modern-go/concurrent") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0s0fxccsyb8icjmiym5k7prcqx36hvgdwl588y0491gi18k5i4zs")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/modern-go/concurrent")) + (home-page "https://github.com/modern-go/concurrent") + (synopsis "concurrent") + (description + "because sync.Map is only available in go 1.9, we can use concurrent.Map to make code portable") + (license license:asl2.0))) + +(define-public go-github-com-checkpoint-restore-go-criu-v5-5.0.0 + (package + (name "go-github-com-checkpoint-restore-go-criu-v5") + (version "5.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/checkpoint-restore/go-criu") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "07dal5a9y43azkkh61jf6s81h7anbl17drkh2mal9mzcsi8wa2z8")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/checkpoint-restore/go-criu/v5")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.23.0" + ,go-google-golang-org-protobuf-1.23.0) + ("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" + ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) + ("go-github-com-golang-protobuf-1.4.3" + ,go-github-com-golang-protobuf-1.4.3))) + (home-page "https://github.com/checkpoint-restore/go-criu") + (synopsis "go-criu -- Go bindings for CRIU") + (description + "This repository provides Go bindings for @url{https://criu.org/,CRIU}. The code is based on the Go-based PHaul +implementation from the CRIU repository. For easier inclusion into other Go projects the +CRIU Go bindings have been moved to this repository.") + (license license:asl2.0))) + +(define-public go-github-com-kr-pty-1.1.1 + (package + (name "go-github-com-kr-pty") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/pty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0383f0mb9kqjvncqrfpidsf8y6ns5zlrc91c6a74xpyxjwvzl2y6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/pty")) + (home-page "https://github.com/kr/pty") + (synopsis "pty") + (description + "Package pty is a wrapper for github.com/creack/pty, which provides +functions for working with Unix terminals. +") + (license license:expat))) + +(define-public go-github-com-kr-text-0.1.0 + (package + (name "go-github-com-kr-text") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1gm5bsl01apvc84bw06hasawyqm4q84vx1pm32wr9jnd7a8vjgj1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/text")) + (propagated-inputs + `(("go-github-com-kr-pty-1.1.1" ,go-github-com-kr-pty-1.1.1))) + (home-page "https://github.com/kr/text") + (synopsis #f) + (description + "Package text provides rudimentary functions for manipulating text in +paragraphs. +") + (license license:expat))) + +(define-public go-github-com-kr-pretty-0.2.1 + (package + (name "go-github-com-kr-pretty") + (version "0.2.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/pretty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0vzfz06y9q8gs2nxx0kys0591vzp78k0fvpb8digi5n15h3b25hy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/pretty")) + (propagated-inputs + `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) + (home-page "https://github.com/kr/pretty") + (synopsis #f) + (description + "Package pretty provides pretty-printing for Go values. This is +useful during debugging, to avoid wrapping long output lines in +the terminal. +") + (license license:expat))) + +(define-public go-github-com-frankban-quicktest-1.11.3 + (package + (name "go-github-com-frankban-quicktest") + (version "1.11.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/frankban/quicktest") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0d5njmwkfq2809vlimnlvy8ir6kln0c4cgdwr680fwsclpbr43qs")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/frankban/quicktest")) + (propagated-inputs + `(("go-github-com-kr-pretty-0.2.1" ,go-github-com-kr-pretty-0.2.1) + ("go-github-com-google-go-cmp-0.5.4" + ,go-github-com-google-go-cmp-0.5.4))) + (home-page "https://github.com/frankban/quicktest") + (synopsis "quicktest") + (description + "Package quicktest provides a collection of Go helpers for writing tests. +") + (license license:expat))) + +(define-public go-github-com-google-go-cmp-0.5.4 + (package + (name "go-github-com-google-go-cmp") + (version "0.5.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ld9pwb6l22g75g1zpa691l7q9ki7pjgpcqhwgdfr3va1zisr5ci")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") + (license license:bsd-3))) + +(define-public go-github-com-cilium-ebpf-0.6.2 + (package + (name "go-github-com-cilium-ebpf") + (version "0.6.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cilium/ebpf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0x64sg0kyc8bbsp75dpv8g2jfmpdldsshf9ni49jh6rgsnnqhpf8")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/cilium/ebpf")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" + ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) + ("go-github-com-google-go-cmp-0.5.4" + ,go-github-com-google-go-cmp-0.5.4) + ("go-github-com-frankban-quicktest-1.11.3" + ,go-github-com-frankban-quicktest-1.11.3))) + (home-page "https://github.com/cilium/ebpf") + (synopsis "eBPF") + (description "Package ebpf is a toolkit for working with eBPF programs. +") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20210124154548-22da62e12c0c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "17gp3dl75wq3x7j9z1pqgcyvjhvy9jaln1wbscy57al3whdsjp07")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-containerd-console-1.0.2 + (package + (name "go-github-com-containerd-console") + (version "1.0.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/console") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0rxwgq578hphs2ldx1gg6c9fq1qm8rgqfx3vgi2sbrsmxn6m2438")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/console")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" + ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) + (home-page "https://github.com/containerd/console") + (synopsis "console") + (description + "Golang package for dealing with consoles. Light on deps and a simple API.") + (license license:asl2.0))) + +(define-public go-github-com-coreos-go-systemd-v22-22.3.2 + (package + (name "go-github-com-coreos-go-systemd-v22") + (version "22.3.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/coreos/go-systemd") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ndi86b8va84ha93njqgafypz4di7yxfd5r5kf1r0s3y3ghcjajq")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/coreos/go-systemd/v22")) + (propagated-inputs + `(("go-github-com-godbus-dbus-v5-5.0.4" + ,go-github-com-godbus-dbus-v5-5.0.4))) + (home-page "https://github.com/coreos/go-systemd") + (synopsis "go-systemd") + (description "Go bindings to systemd. The project has several packages:") + (license license:asl2.0))) + +(define-public go-github-com-cyphar-filepath-securejoin-0.2.2 + (package + (name "go-github-com-cyphar-filepath-securejoin") + (version "0.2.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cyphar/filepath-securejoin") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0id32zjb92wm569m29nfrzz5mw9z1glr3klayr6j134pp4h1sgq4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/cyphar/filepath-securejoin")) + (home-page "https://github.com/cyphar/filepath-securejoin") + (synopsis #f) + (description + "Package securejoin is an implementation of the hopefully-soon-to-be-included +SecureJoin helper that is meant to be part of the \"path/filepath\" package. +The purpose of this project is to provide a PoC implementation to make the +SecureJoin proposal (@url{https://github.com/golang/go/issues/20126,https://github.com/golang/go/issues/20126}) more +tangible. +") + (license license:bsd-3))) + +(define-public go-github-com-docker-go-units-0.4.0 + (package + (name "go-github-com-docker-go-units") + (version "0.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/docker/go-units") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0k8gja8ql4pqg5rzmqvka42vjfs6rzablak87whcnqba6qxpimvz")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/docker/go-units")) + (home-page "https://github.com/docker/go-units") + (synopsis "Introduction") + (description + "Package units provides helper function to parse and print size and time units +in human-readable format. +") + (license license:asl2.0))) + +(define-public go-github-com-godbus-dbus-v5-5.0.4 + (package + (name "go-github-com-godbus-dbus-v5") + (version "5.0.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/godbus/dbus") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0znax8kskb5gmp5fj75w56bc9p7b22wrdswzlh4d04sprlc471yi")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/godbus/dbus/v5")) + (home-page "https://github.com/godbus/dbus") + (synopsis "dbus") + (description + "Package dbus implements bindings to the D-Bus message bus system. +") + (license license:bsd-2))) + +(define-public go-github-com-mrunalp-fileutils-0.5.0 + (package + (name "go-github-com-mrunalp-fileutils") + (version "0.5.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mrunalp/fileutils") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1zrs959gf4zgi6ijwkdn4dcqk0svfblpaikkqy63q30rqz4swm0x")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mrunalp/fileutils")) + (home-page "https://github.com/mrunalp/fileutils") + (synopsis "fileutils") + (description "Collection of utilities for file manipulation in golang") + (license license:asl2.0))) + +(define-public go-github-com-opencontainers-selinux-1.8.2 + (package + (name "go-github-com-opencontainers-selinux") + (version "1.8.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/selinux") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1dl1h8nzpyhsfki1dcjphm5h4n52qwilahyl6qlnwgzcc76pwizq")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/selinux")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777" + ,go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-bits-and-blooms-bitset-1.2.0" + ,go-github-com-bits-and-blooms-bitset-1.2.0))) + (home-page "https://github.com/opencontainers/selinux") + (synopsis "selinux") + (description "Common SELinux package used across the container ecosystem.") + (license license:asl2.0))) + +(define-public go-github-com-seccomp-libseccomp-golang-0.9.1 + (package + (name "go-github-com-seccomp-libseccomp-golang") + (version "0.9.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/seccomp/libseccomp-golang") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "022c8prvxz0shrifams7lq4xidvkcqg9xi87wjjcpmbikqi72cna")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/seccomp/libseccomp-golang")) + (home-page "https://github.com/seccomp/libseccomp-golang") + (synopsis #f) + (description + "Package seccomp provides bindings for libseccomp, a library wrapping the Linux +seccomp syscall. Seccomp enables an application to restrict system call use +for itself and its children. +") + (license license:bsd-2))) + +(define-public go-github-com-urfave-cli-1.22.1 + (package + (name "go-github-com-urfave-cli") + (version "1.22.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/urfave/cli") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "04ymak18flqlfcn8lycmg8r3931al8dvr8f1cg9n4yjaskmg72v8")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/urfave/cli")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) + ("go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d" + ,go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d) + ("go-github-com-burntsushi-toml-0.3.1" + ,go-github-com-burntsushi-toml-0.3.1))) + (home-page "https://github.com/urfave/cli") + (synopsis "cli") + (description + "Package cli provides a minimal framework for creating and organizing command line +Go applications. cli is designed to be easy to understand and write, the most simple +cli application can be written as follows: +") + (license license:expat))) + +(define-public go-github-com-vishvananda-netns-0.0.0-20191106174202-0a2b9b5464df + (package + (name "go-github-com-vishvananda-netns") + (version "0.0.0-20191106174202-0a2b9b5464df") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/vishvananda/netns") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1k1zb7pzc4r4wicq7ncspf6zsvq298lvpsq963ibj813shg657xw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/vishvananda/netns")) + (home-page "https://github.com/vishvananda/netns") + (synopsis "netns - network namespaces in go") + (description + "Package netns allows ultra-simple network namespace handling. NsHandles +can be retrieved and set. Note that the current namespace is thread +local so actions that set and reset namespaces should use LockOSThread +to make sure the namespace doesn't change due to a goroutine switch. +It is best to close NsHandles when you are done with them. This can be +accomplished via a `defer ns.Close()` on the handle. Changing namespaces +requires elevated privileges, so in most cases this code needs to be run +as root. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-sys-0.0.0-20190606203320-7fc4e5ec1444 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190606203320-7fc4e5ec1444") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18rv3m1kksv3758aqiaac2l6j334g0bapic6ibsj999agcn7y9fg")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-vishvananda-netlink-1.1.0 + (package + (name "go-github-com-vishvananda-netlink") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/vishvananda/netlink") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1vhl30p1gx636a088ls4h6a0l8jjyfvz79fr5w0qzdrg4qg9h08h")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/vishvananda/netlink")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190606203320-7fc4e5ec1444" + ,go-golang-org-x-sys-0.0.0-20190606203320-7fc4e5ec1444) + ("go-github-com-vishvananda-netns-0.0.0-20191106174202-0a2b9b5464df" + ,go-github-com-vishvananda-netns-0.0.0-20191106174202-0a2b9b5464df))) + (home-page "https://github.com/vishvananda/netlink") + (synopsis "netlink - netlink library for go") + (description + "Package netlink provides a simple library for netlink. Netlink is +the interface a user-space program in linux uses to communicate with +the kernel. It can be used to add and remove interfaces, set up ip +addresses and routes, and confiugre ipsec. Netlink communication +requires elevated privileges, so in most cases this code needs to +be run as root. The low level primitives for netlink are contained +in the nl subpackage. This package attempts to provide a high-level +interface that is loosly modeled on the iproute2 cli. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b + (package + (name "go-golang-org-x-net") + (version "0.0.0-20201224014010-6772e930b67b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0zlr39dxbg0fxfdrc20c4x0pw43n9kz749ssml97cdzqy116p5qa")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) + ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" + ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) + ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" + ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20210426230700-d19ff857e887 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20210426230700-d19ff857e887") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12m35a34dfm99agcv2ln9zvvyczigaxfwqbzqirvwn1lw4784whn")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-opencontainers-runc-1.0.2 + (package + (name "go-github-com-opencontainers-runc") + (version "1.0.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/runc") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1bpckghjah0rczciw1a1ab8z718lb2d3k4mjm4zb45lpm3njmrcp")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/runc")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.26.0" + ,go-google-golang-org-protobuf-1.26.0) + ("go-golang-org-x-sys-0.0.0-20210426230700-d19ff857e887" + ,go-golang-org-x-sys-0.0.0-20210426230700-d19ff857e887) + ("go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b" + ,go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b) + ("go-github-com-vishvananda-netlink-1.1.0" + ,go-github-com-vishvananda-netlink-1.1.0) + ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) + ("go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635" + ,go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635) + ("go-github-com-sirupsen-logrus-1.8.1" + ,go-github-com-sirupsen-logrus-1.8.1) + ("go-github-com-seccomp-libseccomp-golang-0.9.1" + ,go-github-com-seccomp-libseccomp-golang-0.9.1) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-selinux-1.8.2" + ,go-github-com-opencontainers-selinux-1.8.2) + ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417" + ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417) + ("go-github-com-mrunalp-fileutils-0.5.0" + ,go-github-com-mrunalp-fileutils-0.5.0) + ("go-github-com-moby-sys-mountinfo-0.4.1" + ,go-github-com-moby-sys-mountinfo-0.4.1) + ("go-github-com-godbus-dbus-v5-5.0.4" + ,go-github-com-godbus-dbus-v5-5.0.4) + ("go-github-com-docker-go-units-0.4.0" + ,go-github-com-docker-go-units-0.4.0) + ("go-github-com-cyphar-filepath-securejoin-0.2.2" + ,go-github-com-cyphar-filepath-securejoin-0.2.2) + ("go-github-com-coreos-go-systemd-v22-22.3.2" + ,go-github-com-coreos-go-systemd-v22-22.3.2) + ("go-github-com-containerd-console-1.0.2" + ,go-github-com-containerd-console-1.0.2) + ("go-github-com-cilium-ebpf-0.6.2" ,go-github-com-cilium-ebpf-0.6.2) + ("go-github-com-checkpoint-restore-go-criu-v5-5.0.0" + ,go-github-com-checkpoint-restore-go-criu-v5-5.0.0) + ("go-github-com-bits-and-blooms-bitset-1.2.0" + ,go-github-com-bits-and-blooms-bitset-1.2.0))) + (home-page "https://github.com/opencontainers/runc") + (synopsis "runc") + (description + "@code{runc} is a CLI tool for spawning and running containers according to the OCI specification.") + (license license:asl2.0))) + +(define-public go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417 + (package + (name "go-github-com-opencontainers-runtime-spec") + (version "1.0.3-0.20210326190908-1c3f411f0417") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/runtime-spec") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1azk8z41ga8af35c966f06vrq9y9hwz6mkm59r3py5qaamzim3qq")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) + (home-page "https://github.com/opencontainers/runtime-spec") + (synopsis "Open Container Initiative Runtime Specification") + (description + "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") + (license license:asl2.0))) + +(define-public go-github-com-bits-and-blooms-bitset-1.2.0 + (package + (name "go-github-com-bits-and-blooms-bitset") + (version "1.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/bits-and-blooms/bitset") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0r9f7lvz6znl7yr6njg77m8hj472yhdshf1qaybwyw7j8as6c4r3")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/bits-and-blooms/bitset")) + (home-page "https://github.com/bits-and-blooms/bitset") + (synopsis "bitset") + (description + "Package bitset implements bitsets, a mapping +between non-negative integers and boolean values. It should be more +efficient than map[uint] bool. +") + (license license:bsd-3))) + +(define-public go-github-com-opencontainers-selinux-1.8.5 + (package + (name "go-github-com-opencontainers-selinux") + (version "1.8.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/selinux") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "07p8an2y6ycagjigs7dgf7546p0zfgyl739bbv062jk2r2zwxr03")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/selinux")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777" + ,go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777) + ("go-github-com-bits-and-blooms-bitset-1.2.0" + ,go-github-com-bits-and-blooms-bitset-1.2.0))) + (home-page "https://github.com/opencontainers/selinux") + (synopsis "selinux") + (description "Common SELinux package used across the container ecosystem.") + (license license:asl2.0))) + +(define-public go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635 + (package + (name "go-github-com-syndtr-gocapability") + (version "0.0.0-20200815063812-42c35b437635") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/syndtr/gocapability") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "00zi0k190ydlm9drnafvj9p4cf6axm858wr71pbmq1p3r94iqws4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/syndtr/gocapability")) + (home-page "https://github.com/syndtr/gocapability") + (synopsis #f) + (description #f) + (license license:bsd-2))) + +(define-public go-github-com-tchap-go-patricia-2.3.0+incompatible + (package + (name "go-github-com-tchap-go-patricia") + (version "2.3.0+incompatible") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/tchap/go-patricia") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12s2q1g98iy96d2cz10ip5jmaf0aqf59sxhm2h1whc7f8h5w0knc")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/tchap/go-patricia")) + (home-page "https://github.com/tchap/go-patricia") + (synopsis "go-patricia") + (description + "@strong{Documentation}: @url{http://godoc.org/github.com/tchap/go-patricia/patricia,GoDoc} +@strong{Test Coverage}: @url{https://coveralls.io/r/tchap/go-patricia,(img (@ (src https://coveralls.io/repos/tchap/go-patricia/badge.png) (alt CoverageStatus)))}") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20210820121016-41cdb8703e55 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20210820121016-41cdb8703e55") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "01ampyy748h8qkrz1w1xhzwfdj3svzcn38dfla8zczrwqv9wf77a")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15 + (package + (name "go-gopkg-in-check-v1") + (version "1.0.0-20190902080502-41f04d3bba15") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/check.v1") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0vfk9czmlxmp6wndq8k17rhnjxal764mxfhrccza7nwlia760pjy")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) + (home-page "https://gopkg.in/check.v1") + (synopsis "Instructions") + (description + "Package check is a rich testing extension for Go's testing package. +") + (license license:bsd-2))) + +(define-public go-gotest-tools-2.2.0+incompatible + (package + (name "go-gotest-tools") + (version "2.2.0+incompatible") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gotestyourself/gotest.tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0yif3gdyckmf8i54jq0xn00kflla5rhib9sarw66ngnbl7bn9kyl")))) + (build-system go-build-system) + (arguments '(#:import-path "gotest.tools")) + (home-page "https://gotest.tools") + (synopsis "gotest.tools") + (description + "Package gotesttools is a collection of packages to augment `testing` and +support common patterns. +") + (license license:asl2.0))) + +(define-public go-github-com-containers-storage-1.37.0 + (package + (name "go-github-com-containers-storage") + (version "1.37.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containers/storage") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1m4bxaisaw9fd364b7kr41xv5i2s863f1kz2aa4krzp5q25j118f")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containers/storage")) + (propagated-inputs + `(("go-gotest-tools-2.2.0+incompatible" + ,go-gotest-tools-2.2.0+incompatible) + ("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" + ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) + ("go-golang-org-x-sys-0.0.0-20210820121016-41cdb8703e55" + ,go-golang-org-x-sys-0.0.0-20210820121016-41cdb8703e55) + ("go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110" + ,go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110) + ("go-github-com-vbatts-tar-split-0.11.2" + ,go-github-com-vbatts-tar-split-0.11.2) + ("go-github-com-ulikunitz-xz-0.5.10" + ,go-github-com-ulikunitz-xz-0.5.10) + ("go-github-com-tchap-go-patricia-2.3.0+incompatible" + ,go-github-com-tchap-go-patricia-2.3.0+incompatible) + ("go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635" + ,go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635) + ("go-github-com-stretchr-testify-1.7.0" + ,go-github-com-stretchr-testify-1.7.0) + ("go-github-com-sirupsen-logrus-1.8.1" + ,go-github-com-sirupsen-logrus-1.8.1) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-selinux-1.8.5" + ,go-github-com-opencontainers-selinux-1.8.5) + ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417" + ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417) + ("go-github-com-opencontainers-runc-1.0.2" + ,go-github-com-opencontainers-runc-1.0.2) + ("go-github-com-opencontainers-go-digest-1.0.0" + ,go-github-com-opencontainers-go-digest-1.0.0) + ("go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd" + ,go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd) + ("go-github-com-moby-sys-mountinfo-0.4.1" + ,go-github-com-moby-sys-mountinfo-0.4.1) + ("go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible" + ,go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible) + ("go-github-com-mattn-go-shellwords-1.0.12" + ,go-github-com-mattn-go-shellwords-1.0.12) + ("go-github-com-klauspost-pgzip-1.2.5" + ,go-github-com-klauspost-pgzip-1.2.5) + ("go-github-com-klauspost-compress-1.13.6" + ,go-github-com-klauspost-compress-1.13.6) + ("go-github-com-json-iterator-go-1.1.12" + ,go-github-com-json-iterator-go-1.1.12) + ("go-github-com-hashicorp-go-multierror-1.1.1" + ,go-github-com-hashicorp-go-multierror-1.1.1) + ("go-github-com-google-uuid-1.2.0" ,go-github-com-google-uuid-1.2.0) + ("go-github-com-google-go-intervals-0.0.2" + ,go-github-com-google-go-intervals-0.0.2) + ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" + ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) + ("go-github-com-docker-go-units-0.4.0" + ,go-github-com-docker-go-units-0.4.0) + ("go-github-com-containerd-stargz-snapshotter-estargz-0.9.0" + ,go-github-com-containerd-stargz-snapshotter-estargz-0.9.0) + ("go-github-com-microsoft-hcsshim-0.8.22" + ,go-github-com-microsoft-hcsshim-0.8.22) + ("go-github-com-microsoft-go-winio-0.5.0" + ,go-github-com-microsoft-go-winio-0.5.0) + ("go-github-com-burntsushi-toml-0.4.1" + ,go-github-com-burntsushi-toml-0.4.1))) + (home-page "https://github.com/containers/storage") + (synopsis #f) + (description + "@code{storage} is a Go library which aims to provide methods for storing filesystem +layers, container images, and containers. A @code{containers-storage} CLI wrapper +is also included for manual and scripting use.") + (license license:asl2.0))) + +(define-public go-github-com-docker-distribution-2.7.1+incompatible + (package + (name "go-github-com-docker-distribution") + (version "2.7.1+incompatible") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/distribution/distribution") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1nx8b5a68rn81alp8wkkw6qd5v32mgf0fk23mxm60zdf63qk1nzw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/docker/distribution")) + (home-page "https://github.com/docker/distribution") + (synopsis "Distribution") + (description + "Package distribution will define the interfaces for the components of +docker distribution. The goal is to allow users to reliably package, ship +and store content related to docker images. +") + (license license:asl2.0))) + +(define-public go-github-com-docker-docker-20.10.11+incompatible + (package + (name "go-github-com-docker-docker") + (version "20.10.11+incompatible") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/moby/moby") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1h1r66j57l073iba6hwrhcz779vaym68l1gfycdiw2d2gglfrdgr")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/docker/docker")) + (home-page "https://github.com/docker/docker") + (synopsis "The Moby Project") + (description + "Moby is an open-source project created by Docker to enable and accelerate software containerization.") + (license license:asl2.0))) + +(define-public go-github-com-danieljoos-wincred-1.1.0 + (package + (name "go-github-com-danieljoos-wincred") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/danieljoos/wincred") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0fllr8lwk70qb8gfndkgshfq5c7p8zdpp47bcd3816giv5w78vxi")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/danieljoos/wincred")) + (propagated-inputs + `(("go-github-com-stretchr-testify-1.5.1" + ,go-github-com-stretchr-testify-1.5.1))) + (home-page "https://github.com/danieljoos/wincred") + (synopsis "wincred") + (description + "Package wincred provides primitives for accessing the Windows Credentials Management API. +This includes functions for retrieval, listing and storage of credentials as well as Go structures for convenient access to the credential data. +") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20210119212857-b64e53b001e4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "16in6bazi0frdkzhqxyvmw7qcvzjavq21dnz9bmrqq8d4dpd2j44")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-docker-docker-credential-helpers-0.6.4 + (package + (name "go-github-com-docker-docker-credential-helpers") + (version "0.6.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/docker/docker-credential-helpers") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0xsz8zgil2xrv835p3i6qbk7s81jz62sgasfvmmxi6lrkirahmh6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/docker/docker-credential-helpers")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4" + ,go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4) + ("go-github-com-danieljoos-wincred-1.1.0" + ,go-github-com-danieljoos-wincred-1.1.0))) + (home-page "https://github.com/docker/docker-credential-helpers") + (synopsis "Introduction") + (description + "docker-credential-helpers is a suite of programs to use native stores to keep Docker credentials safe.") + (license license:expat))) + +(define-public go-github-com-docker-go-connections-0.4.0 + (package + (name "go-github-com-docker-go-connections") + (version "0.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/docker/go-connections") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0mv6f6b5nljc17dmwmc28hc0y11pqglz7x0d2mjrwdmfxf64hwqq")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/docker/go-connections")) + (home-page "https://github.com/docker/go-connections") + (synopsis "Introduction") + (description + "Package connections provides libraries to work with network connections. +This library is divided in several components for specific usage. +") + (license license:asl2.0))) + +(define-public go-github-com-docker-libtrust-0.0.0-20160708172513-aabc10ec26b7 + (package + (name "go-github-com-docker-libtrust") + (version "0.0.0-20160708172513-aabc10ec26b7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/docker/libtrust") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1lwslbggzc2b0c4wxl5pn6i2nfgz5jz8f7s7vnid9mrlsk59h7s1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/docker/libtrust")) + (home-page "https://github.com/docker/libtrust") + (synopsis "libtrust") + (description + "Package libtrust provides an interface for managing authentication and +authorization using public key cryptography. Authentication is handled +using the identity attached to the public key and verified through TLS +x509 certificates, a key challenge, or signature. Authorization and +access control is managed through a trust graph distributed between +both remote trust servers and locally cached and managed data. +") + (license license:asl2.0))) + +(define-public go-github-com-golang-groupcache-0.0.0-20210331224755-41bb18bfe9da + (package + (name "go-github-com-golang-groupcache") + (version "0.0.0-20210331224755-41bb18bfe9da") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/groupcache") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "07amgr8ji4mnq91qbsw2jlcmw6hqiwdf4kzfdrj8c4b05w4knszc")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/groupcache")) + (home-page "https://github.com/golang/groupcache") + (synopsis "groupcache") + (description + "Package groupcache provides a data loading mechanism with caching +and de-duplication that works across a set of peer processes. +") + (license license:asl2.0))) + +(define-public go-github-com-google-uuid-1.3.0 + (package + (name "go-github-com-google-uuid") + (version "1.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/uuid") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0imkw52m7fzrwsdj2rfrk3zbplqfbwncyv6hv89xw0vdw3jpk122")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/uuid")) + (home-page "https://github.com/google/uuid") + (synopsis "uuid") + (description "Package uuid generates and inspects UUIDs. +") + (license license:bsd-3))) + +(define-public go-github-com-gorilla-mux-1.7.4 + (package + (name "go-github-com-gorilla-mux") + (version "1.7.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gorilla/mux") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1d0sy1paa055ic84sp3766s9pa24q008hf77dc842vrgvn8p3wmh")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/gorilla/mux")) + (home-page "https://github.com/gorilla/mux") + (synopsis "gorilla/mux") + (description "Package mux implements a request router and dispatcher. +") + (license license:bsd-3))) + +(define-public go-github-com-hashicorp-errwrap-1.0.0 + (package + (name "go-github-com-hashicorp-errwrap") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/errwrap") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0slfb6w3b61xz04r32bi0a1bygc82rjzhqkxj2si2074wynqnr1c")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/errwrap")) + (home-page "https://github.com/hashicorp/errwrap") + (synopsis "errwrap") + (description + "Package errwrap implements methods to formalize error wrapping in Go. +") + (license license:mpl2.0))) + +(define-public go-github-com-hashicorp-go-multierror-1.1.1 + (package + (name "go-github-com-hashicorp-go-multierror") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/go-multierror") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0l4s41skdpifndn9s8y6s9vzgghdzg4z8z0lld9qjr28888wzp00")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/go-multierror")) + (propagated-inputs + `(("go-github-com-hashicorp-errwrap-1.0.0" + ,go-github-com-hashicorp-errwrap-1.0.0))) + (home-page "https://github.com/hashicorp/go-multierror") + (synopsis "go-multierror") + (description + "@code{go-multierror} is a package for Go that provides a mechanism for +representing a list of @code{error} values as a single @code{error}.") + (license license:mpl2.0))) + +(define-public go-gopkg-in-yaml-v2-2.3.0 + (package + (name "go-gopkg-in-yaml-v2") + (version "2.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1md0hlyd9s6myv3663i9l59y74n4xjazifmmyxn43g86fgkc5lzj")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v2") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language. +") + (license license:asl2.0))) + +(define-public go-github-com-imdario-mergo-0.3.12 + (package + (name "go-github-com-imdario-mergo") + (version "0.3.12") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/imdario/mergo") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "15s6807vcm7xq4l6my7rnw1i7x57712jvdidjli5bip79jfaxw90")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/imdario/mergo")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.3.0" ,go-gopkg-in-yaml-v2-2.3.0))) + (home-page "https://github.com/imdario/mergo") + (synopsis "Mergo") + (description + "This package provides a helper to merge structs and maps in Golang. Useful for configuration default values, avoiding messy if-statements. +") + (license license:bsd-3))) + +(define-public go-github-com-klauspost-compress-1.13.6 + (package + (name "go-github-com-klauspost-compress") + (version "1.13.6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/klauspost/compress") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1bgqhv2pp56b8f5mfzpfjlm4cb262gjbqbp3235blhj9xf2wrynj")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/klauspost/compress")) + (home-page "https://github.com/klauspost/compress") + (synopsis "compress") + (description "This package provides various compression algorithms.") + (license #f))) + +(define-public go-github-com-klauspost-pgzip-1.2.5 + (package + (name "go-github-com-klauspost-pgzip") + (version "1.2.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/klauspost/pgzip") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0m66jcsz27076qvi5qzagzlbyd1sdzh6kbf1njj0sswx86026rx3")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/klauspost/pgzip")) + (home-page "https://github.com/klauspost/pgzip") + (synopsis "pgzip") + (description + "Package pgzip implements reading and writing of gzip format compressed files, +as specified in @url{https://rfc-editor.org/rfc/rfc1952.html,RFC 1952}. +") + (license license:expat))) + +(define-public go-github-com-chzyer-logex-1.1.10 + (package + (name "go-github-com-chzyer-logex") + (version "1.1.10") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/chzyer/logex") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "08pbjj3wx9acavlwyr055isa8a5hnmllgdv5k6ra60l5y1brmlq4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/chzyer/logex")) + (home-page "https://github.com/chzyer/logex") + (synopsis #f) + (description #f) + (license #f))) + +(define-public go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e + (package + (name "go-github-com-chzyer-readline") + (version "0.0.0-20180603132655-2972be24d48e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/chzyer/readline") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "104q8dazj8yf6b089jjr82fy9h1g80zyyzvp3g8b44a7d8ngjj6r")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/chzyer/readline")) + (home-page "https://github.com/chzyer/readline") + (synopsis "Guide") + (description + "Readline is a pure go implementation for GNU-Readline kind library. +") + (license license:expat))) + +(define-public go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1 + (package + (name "go-github-com-chzyer-test") + (version "0.0.0-20180213035817-a1ea475d72b1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/chzyer/test") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0rns2aqk22i9xsgyap0pq8wi4cfaxsri4d9q6xxhhyma8jjsnj2k")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/chzyer/test")) + (home-page "https://github.com/chzyer/test") + (synopsis "test") + (description #f) + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20181122145206-62eef0e2fa9b + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20181122145206-62eef0e2fa9b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0mslbflrh422mcfg2hs2q1xwm3xwd5prn597w7xqhi3s41mx1vs4")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-manifoldco-promptui-0.9.0 + (package + (name "go-github-com-manifoldco-promptui") + (version "0.9.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/manifoldco/promptui") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1nnlj1ahwq4ar5gbvxg8dqjl1wl5r8mhcm0bixg1c4wiihz8xv8m")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/manifoldco/promptui")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20181122145206-62eef0e2fa9b" + ,go-golang-org-x-sys-0.0.0-20181122145206-62eef0e2fa9b) + ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" + ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) + ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" + ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) + ("go-github-com-chzyer-logex-1.1.10" + ,go-github-com-chzyer-logex-1.1.10))) + (home-page "https://github.com/manifoldco/promptui") + (synopsis "promptui") + (description + "Package promptui is a library providing a simple interface to create command-line prompts for go. +It can be easily integrated into spf13/cobra, urfave/cli or any cli go application. +") + (license license:bsd-3))) + +(define-public go-github-com-morikuni-aec-1.0.0 + (package + (name "go-github-com-morikuni-aec") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/morikuni/aec") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1qaqh0lk9wrqgff0yrxnbznvmwyhdxy3g9b2hjpazp5bw4nj0dp7")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/morikuni/aec")) + (home-page "https://github.com/morikuni/aec") + (synopsis "aec") + (description "Go wrapper for ANSI escape code.") + (license license:expat))) + +(define-public go-github-com-mtrmac-gpgme-0.1.2 + (package + (name "go-github-com-mtrmac-gpgme") + (version "0.1.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mtrmac/gpgme") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "00jgfyg93247bc5n3wk679rgnbbq8kr2qr6ymimwfc0bwi8yqz53")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mtrmac/gpgme")) + (home-page "https://github.com/mtrmac/gpgme") + (synopsis "GPGME (golang)") + (description "Package gpgme provides a Go wrapper for the GPGME library +") + (license license:bsd-3))) + +(define-public go-github-com-opencontainers-go-digest-1.0.0 + (package + (name "go-github-com-opencontainers-go-digest") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/go-digest") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0i5acjajvr6hi9zb7gxwifd8w28y884cv7cx36adj8lngj647xbi")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/go-digest")) + (home-page "https://github.com/opencontainers/go-digest") + (synopsis "go-digest") + (description + "Package digest provides a generalized type to opaquely represent message +digests and their operations within the registry. The Digest type is +designed to serve as a flexible identifier in a content-addressable system. +More importantly, it provides tools and wrappers to work with +hash.Hash-based digests with little effort. +") + (license (list license:asl2.0 license:cc-by-sa4.0)))) + +(define-public go-github-com-opencontainers-image-spec-1.0.2-0.20210819154149-5ad6f50d6283 + (package + (name "go-github-com-opencontainers-image-spec") + (version "1.0.2-0.20210819154149-5ad6f50d6283") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/image-spec") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1p91nlpr9g5hv7b4mxncwa4gmhaxiw31fl6xn2fxd38zw1912hjx")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/image-spec")) + (home-page "https://github.com/opencontainers/image-spec") + (synopsis "OCI Image Format Specification") + (description + "The OCI Image Format project creates and maintains the software shipping container image format spec (OCI Image Format).") + (license license:asl2.0))) + +(define-public go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20191115151921-52ab43148777") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1kakxbqrb1w2vwg7r1896z68qcx2lfvimsl8cs2niiipbgpi6imx")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-opencontainers-selinux-1.9.1 + (package + (name "go-github-com-opencontainers-selinux") + (version "1.9.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/selinux") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0gfa7rmx3240da3smgyx5p4495zaw9l6cj0q69ly12m0iqb6889s")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/selinux")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777" + ,go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777))) + (home-page "https://github.com/opencontainers/selinux") + (synopsis "selinux") + (description "Common SELinux package used across the container ecosystem.") + (license license:asl2.0))) + +(define-public go-github-com-ostreedev-ostree-go-0.0.0-20190702140239-759a8c1ac913 + (package + (name "go-github-com-ostreedev-ostree-go") + (version "0.0.0-20190702140239-759a8c1ac913") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/ostreedev/ostree-go") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "025s1621vs0rcvar8i8lfam7556f4562zdg19wp2j7hfx14vc46s")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/ostreedev/ostree-go")) + (home-page "https://github.com/ostreedev/ostree-go") + (synopsis "OSTree-Go") + (description + "Go bindings for OSTree. Find out more about OSTree @url{https://github.com/ostreedev/ostree,here}") + (license license:isc))) + +(define-public go-github-com-pkg-errors-0.9.1 + (package + (name "go-github-com-pkg-errors") + (version "0.9.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pkg/errors") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1761pybhc2kqr6v5fm8faj08x9bql8427yqg6vnfv6nhrasx1mwq")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pkg/errors")) + (home-page "https://github.com/pkg/errors") + (synopsis "errors") + (description "Package errors provides simple error handling primitives. +") + (license license:bsd-2))) + +(define-public go-github-com-sirupsen-logrus-1.8.1 + (package + (name "go-github-com-sirupsen-logrus") + (version "1.8.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sirupsen/logrus") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0rvqzic2zz7fpxyizmqxwmhv1m52ii9bgxnqa6km8wsa0l08wh42")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/sirupsen/logrus")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037" + ,go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037) + ("go-github-com-stretchr-testify-1.2.2" + ,go-github-com-stretchr-testify-1.2.2) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/sirupsen/logrus") + (synopsis "Logrus") + (description + "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. +") + (license license:expat))) + +(define-public go-github-com-ulikunitz-xz-0.5.10 + (package + (name "go-github-com-ulikunitz-xz") + (version "0.5.10") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/ulikunitz/xz") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "07vynk0sh8i8g7x9p9x04dj8wylvxaf8ypbi43yvcv7j6zd63c72")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/ulikunitz/xz")) + (home-page "https://github.com/ulikunitz/xz") + (synopsis "Package xz") + (description + "Package xz supports the compression and decompression of xz files. It +supports version 1.0.4 of the specification without the non-LZMA2 +filters. See @url{http://tukaani.org/xz/xz-file-format-1.0.4.txt,http://tukaani.org/xz/xz-file-format-1.0.4.txt} +") + (license license:bsd-3))) + +(define-public go-github-com-davecgh-go-spew-1.1.1 + (package + (name "go-github-com-davecgh-go-spew") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/davecgh/go-spew") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/davecgh/go-spew")) + (home-page "https://github.com/davecgh/go-spew") + (synopsis "go-spew") + (description + "Go-spew implements a deep pretty printer for Go data structures to aid in +debugging. A comprehensive suite of tests with 100% test coverage is provided +to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage +report. Go-spew is licensed under the liberal ISC license, so it may be used in +open source or commercial projects.") + (license license:isc))) + +(define-public go-github-com-stretchr-testify-1.2.2 + (package + (name "go-github-com-stretchr-testify") + (version "1.2.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0dlszlshlxbmmfxj5hlwgv3r22x0y1af45gn1vd198nvvs3pnvfs")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20191026070338-33540a1f6037") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0fjcv0vzvi6za0b4xmnk3932pr9f9gczzf03y0kgq3ry9rqg169y")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-sirupsen-logrus-1.7.0 + (package + (name "go-github-com-sirupsen-logrus") + (version "1.7.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sirupsen/logrus") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1a59pw7zimvm8k423iq9l4f4qjj1ia1xc6pkmhwl2mxc46y2n442")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/sirupsen/logrus")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037" + ,go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037) + ("go-github-com-stretchr-testify-1.2.2" + ,go-github-com-stretchr-testify-1.2.2) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/sirupsen/logrus") + (synopsis "Logrus") + (description + "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. +") + (license license:expat))) + +(define-public go-github-com-russross-blackfriday-v2-2.0.1 + (package + (name "go-github-com-russross-blackfriday-v2") + (version "2.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/russross/blackfriday") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0nlz7isdd4rgnwzs68499hlwicxz34j2k2a0b8jy0y7ycd2bcr5j")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/russross/blackfriday/v2")) + (home-page "https://github.com/russross/blackfriday") + (synopsis "Blackfriday") + (description "Package blackfriday is a markdown processor. +") + (license license:bsd-2))) + +(define-public go-github-com-shurcool-sanitized-anchor-name-1.0.0 + (package + (name "go-github-com-shurcool-sanitized-anchor-name") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/shurcooL/sanitized_anchor_name") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1gv9p2nr46z80dnfjsklc6zxbgk96349sdsxjz05f3z6wb6m5l8f")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/shurcooL/sanitized_anchor_name")) + (home-page "https://github.com/shurcooL/sanitized_anchor_name") + (synopsis "sanitized_anchor_name") + (description + "Package sanitized_anchor_name provides a func to create sanitized anchor names. +") + (license license:expat))) + +(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d + (package + (name "go-github-com-cpuguy83-go-md2man-v2") + (version "2.0.0-20190314233015-f79a8a8ca69d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cpuguy83/go-md2man") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) + (propagated-inputs + `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" + ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) + ("go-github-com-russross-blackfriday-v2-2.0.1" + ,go-github-com-russross-blackfriday-v2-2.0.1) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0))) + (home-page "https://github.com/cpuguy83/go-md2man") + (synopsis "go-md2man") + (description "Converts markdown into roff (man pages).") + (license license:expat))) + +(define-public go-github-com-urfave-cli-1.22.4 + (package + (name "go-github-com-urfave-cli") + (version "1.22.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/urfave/cli") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1s7frsmiih4wh8vpx9z3ck4667c6vpjrmba7b9ymnv1p9khyg8wc")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/urfave/cli")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) + ("go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d" + ,go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d) + ("go-github-com-burntsushi-toml-0.3.1" + ,go-github-com-burntsushi-toml-0.3.1))) + (home-page "https://github.com/urfave/cli") + (synopsis "cli") + (description + "Package cli provides a minimal framework for creating and organizing command line +Go applications. cli is designed to be easy to understand and write, the most simple +cli application can be written as follows: +") + (license license:expat))) + +(define-public go-github-com-vbatts-tar-split-0.11.2 + (package + (name "go-github-com-vbatts-tar-split") + (version "0.11.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/vbatts/tar-split") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0zmqnlif7r9n9kffw8k3m820ybvyy4zp7m2xfg8rrb321m869dcd")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/vbatts/tar-split")) + (propagated-inputs + `(("go-github-com-urfave-cli-1.22.4" ,go-github-com-urfave-cli-1.22.4) + ("go-github-com-sirupsen-logrus-1.7.0" + ,go-github-com-sirupsen-logrus-1.7.0))) + (home-page "https://github.com/vbatts/tar-split") + (synopsis "tar-split") + (description + "Pristinely disassembling a tar archive, and stashing needed raw bytes and offsets to reassemble a validating original archive.") + (license license:bsd-3))) + +(define-public go-github-com-vividcortex-ewma-1.2.0 + (package + (name "go-github-com-vividcortex-ewma") + (version "1.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/VividCortex/ewma") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0whx516l9nm4n41spagb605ry7kfnz1qha96mcshnfjlahhnnylq")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/VividCortex/ewma")) + (home-page "https://github.com/VividCortex/ewma") + (synopsis "EWMA") + (description + "Package ewma implements exponentially weighted moving averages. +") + (license license:expat))) + +(define-public go-github-com-acarl005-stripansi-0.0.0-20180116102854-5a71ef0e047d + (package + (name "go-github-com-acarl005-stripansi") + (version "0.0.0-20180116102854-5a71ef0e047d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/acarl005/stripansi") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "02sxiishdixm791jqbkmhdcvc712l0fb8rqmibxzgc61h0qs6rs3")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/acarl005/stripansi")) + (home-page "https://github.com/acarl005/stripansi") + (synopsis "Strip ANSI") + (description "This Go package removes ANSI escape codes from strings.") + (license license:expat))) + +(define-public go-github-com-rivo-uniseg-0.2.0 + (package + (name "go-github-com-rivo-uniseg") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/rivo/uniseg") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0j7h22vfmjj562vr8gpsyrkrwp1pq9ayh5fylv24skxb467g9f0q")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/rivo/uniseg")) + (home-page "https://github.com/rivo/uniseg") + (synopsis "Unicode Text Segmentation for Go") + (description + "Package uniseg implements Unicode Text Segmentation according to Unicode +Standard Annex #29 (@url{http://unicode.org/reports/tr29/,http://unicode.org/reports/tr29/}). +") + (license license:expat))) + +(define-public go-github-com-mattn-go-runewidth-0.0.13 + (package + (name "go-github-com-mattn-go-runewidth") + (version "0.0.13") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mattn/go-runewidth") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1yir0f3wc5z5hnkwhvx5qb6nmpfb05zp2gvfjvna63s8kmla1rrn")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mattn/go-runewidth")) + (propagated-inputs + `(("go-github-com-rivo-uniseg-0.2.0" ,go-github-com-rivo-uniseg-0.2.0))) + (home-page "https://github.com/mattn/go-runewidth") + (synopsis "go-runewidth") + (description + "This package provides functions to get fixed width of the character or string.") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20210910150752-751e447fb3d0 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20210910150752-751e447fb3d0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1sis5gp14r60lyx4hjkylf6rhmlybivcmrlw5qcbjgjwbbkvi0qk")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-vbauerster-mpb-v7-7.1.5 + (package + (name "go-github-com-vbauerster-mpb-v7") + (version "7.1.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/vbauerster/mpb") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0g2gqy41a15713r90j0j6n9zrs82aczrh33ffmm7jhz6r4nlrq07")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/vbauerster/mpb/v7")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20210910150752-751e447fb3d0" + ,go-golang-org-x-sys-0.0.0-20210910150752-751e447fb3d0) + ("go-github-com-mattn-go-runewidth-0.0.13" + ,go-github-com-mattn-go-runewidth-0.0.13) + ("go-github-com-acarl005-stripansi-0.0.0-20180116102854-5a71ef0e047d" + ,go-github-com-acarl005-stripansi-0.0.0-20180116102854-5a71ef0e047d) + ("go-github-com-vividcortex-ewma-1.2.0" + ,go-github-com-vividcortex-ewma-1.2.0))) + (home-page "https://github.com/vbauerster/mpb") + (synopsis "Multi Progress Bar") + (description + "Package mpb is a library for rendering progress bars in terminal applications. +") + (license license:unlicense))) + +(define-public go-github-com-xeipuuv-gojsonpointer-0.0.0-20190809123943-df4f5c81cb3b + (package + (name "go-github-com-xeipuuv-gojsonpointer") + (version "0.0.0-20190809123943-df4f5c81cb3b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/xeipuuv/gojsonpointer") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0dfwc66z5gq75m3z7va80c10c22ijiq99bahq86l26ki71g286xn")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/xeipuuv/gojsonpointer")) + (home-page "https://github.com/xeipuuv/gojsonpointer") + (synopsis "gojsonpointer") + (description "An implementation of JSON Pointer - Go language") + (license license:asl2.0))) + +(define-public go-github-com-stretchr-testify-1.3.0 + (package + (name "go-github-com-stretchr-testify") + (version "1.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wjchp2c8xbgcbbq32w3kvblk6q6yn533g78nxl6iskq6y95lxsy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (propagated-inputs + `(("go-github-com-stretchr-objx-0.1.0" + ,go-github-com-stretchr-objx-0.1.0) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.0" + ,go-github-com-davecgh-go-spew-1.1.0))) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +") + (license license:expat))) + +(define-public go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f + (package + (name "go-github-com-xeipuuv-gojsonpointer") + (version "0.0.0-20180127040702-4e3ac2762d5f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/xeipuuv/gojsonpointer") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "13y6iq2nzf9z4ls66bfgnnamj2m3438absmbpqry64bpwjfbsi9q")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/xeipuuv/gojsonpointer")) + (home-page "https://github.com/xeipuuv/gojsonpointer") + (synopsis "gojsonpointer") + (description "An implementation of JSON Pointer - Go language") + (license license:asl2.0))) + +(define-public go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415 + (package + (name "go-github-com-xeipuuv-gojsonreference") + (version "0.0.0-20180127040603-bd5ef7bd5415") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/xeipuuv/gojsonreference") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1xby79padc7bmyb8rfbad8wfnfdzpnh51b1n8c0kibch0kwc1db5")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/xeipuuv/gojsonreference")) + (home-page "https://github.com/xeipuuv/gojsonreference") + (synopsis "gojsonreference") + (description "An implementation of JSON Reference - Go language") + (license license:asl2.0))) + +(define-public go-github-com-xeipuuv-gojsonschema-1.2.0 + (package + (name "go-github-com-xeipuuv-gojsonschema") + (version "1.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/xeipuuv/gojsonschema") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1mqiq0r8qw4qlfp3ls8073r6514rmzwrmdn4j33rppk3zh942i6l")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/xeipuuv/gojsonschema")) + (propagated-inputs + `(("go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415" + ,go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415) + ("go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f" + ,go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f) + ("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0))) + (home-page "https://github.com/xeipuuv/gojsonschema") + (synopsis "gojsonschema") + (description + "An implementation of JSON Schema for the Go programming language. Supports draft-04, draft-06 and draft-07.") + (license license:asl2.0))) + +(define-public go-golang-org-x-sys-0.0.0-20200923182605-d9f96fdee20d + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200923182605-d9f96fdee20d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1lj8nmnpb7ngbd90il65kyh78i6sc325vhmxr6l61qvbh0qdybyh")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-go-etcd-io-bbolt-1.3.6 + (package + (name "go-go-etcd-io-bbolt") + (version "1.3.6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/etcd-io/bbolt") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0pj5245d417za41j6p09fmkbv05797vykr1bi9a6rnwddh1dbs8d")))) + (build-system go-build-system) + (arguments '(#:import-path "go.etcd.io/bbolt")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20200923182605-d9f96fdee20d" + ,go-golang-org-x-sys-0.0.0-20200923182605-d9f96fdee20d))) + (home-page "https://go.etcd.io/bbolt") + (synopsis "bbolt") + (description + "package bbolt implements a low-level key/value store in pure Go. It supports +fully serializable transactions, ACID semantics, and lock-free MVCC with +multiple readers and a single writer. Bolt can be used for projects that +want a simple data store without the need to add large dependencies such as +Postgres or MySQL. +") + (license license:expat))) + +(define-public go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e + (package + (name "go-github-com-golang-groupcache") + (version "0.0.0-20200121045136-8c9f03a8e57e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/groupcache") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0vjjr79r32icjzlb05wn02k59av7jx0rn1jijml8r4whlg7dnkfh")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/groupcache")) + (home-page "https://github.com/golang/groupcache") + (synopsis "groupcache") + (description + "Package groupcache provides a data loading mechanism with caching +and de-duplication that works across a set of peer processes. +") + (license license:asl2.0))) + +(define-public go-github-com-google-go-cmp-0.5.3 + (package + (name "go-github-com-google-go-cmp") + (version "0.5.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "011gdkmyk3w7qkcwljhqak4h5npn4n7fwgx1fwpyx9c7wizvgkm5")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") + (license license:bsd-3))) + +(define-public go-github-com-stretchr-testify-1.6.1 + (package + (name "go-github-com-stretchr-testify") + (version "1.6.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1yhiqqzjvi63pf01rgzx68gqkkvjx03fvl5wk30br5l6s81s090l")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (propagated-inputs + `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" + ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) + ("go-github-com-stretchr-objx-0.1.0" + ,go-github-com-stretchr-objx-0.1.0) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.0" + ,go-github-com-davecgh-go-spew-1.1.0))) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200930185726-fdedc70b468f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1njlfhjbvi4lxvjbq8zswrb0y0q4jd2p6x51h1q6vmyzi9af6869")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b + (package + (name "go-golang-org-x-net") + (version "0.0.0-20201110031124-69a78807bb2b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "176z5k6jbhr9vf0am2avl1lyqwym3q0mri98yb8r572z33qmcw1d")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) + ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" + ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) + ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" + ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-google-golang-org-grpc-1.33.2 + (package + (name "go-google-golang-org-grpc") + (version "1.33.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03yz4nlf4kqbnpw48f0mvcb2f5zzy0vjd5i2iw0hrjspd0238fzk")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.25.0" + ,go-google-golang-org-protobuf-1.25.0) + ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" + ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) + ("go-github-com-google-go-cmp-0.5.0" + ,go-github-com-google-go-cmp-0.5.0) + ("go-github-com-golang-protobuf-1.4.1" + ,go-github-com-golang-protobuf-1.4.1) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-envoyproxy-go-control-plane-0.9.4" + ,go-github-com-envoyproxy-go-control-plane-0.9.4) + ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" + ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-go-opencensus-io-0.23.0 + (package + (name "go-go-opencensus-io") + (version "0.23.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/census-instrumentation/opencensus-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0gw4f7inf8y2ik00yfb36xganiq9rl4w2d1a41bsjqsh83ajz2km")))) + (build-system go-build-system) + (arguments '(#:import-path "go.opencensus.io")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) + ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" + ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-google-go-cmp-0.5.3" + ,go-github-com-google-go-cmp-0.5.3) + ("go-github-com-golang-protobuf-1.4.3" + ,go-github-com-golang-protobuf-1.4.3) + ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" + ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e))) + (home-page "https://go.opencensus.io") + (synopsis "OpenCensus Libraries for Go") + (description "Package opencensus contains Go support for OpenCensus. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20210226172049-e18ecbb05110") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1vlq8mdscp7yfaa1lmyv03y5m4c2d67ydg2q1i6smkrxghn3zn3q")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) + ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" + ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) + ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" + ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20210322153248-0c34fe9e7dc2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "021szs1czc0xg4chpays7i05dvkax9s8mns314ab01r887kchqxq")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" + ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) + ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" + ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68) + ("go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110" + ,go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20210423082822-04245dca01da + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20210423082822-04245dca01da") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "11is2c5cpxk0gf2mxza2wpzfcf71fxb9b3in77f6w2q0pr68ykzx")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-text-0.3.6 + (package + (name "go-golang-org-x-text") + (version "0.3.6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wzhvdb059vrp2cczqw422ajrb9sbs4l3qd020hlngj33qfhxah0")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/text")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" + ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) + (home-page "https://golang.org/x/text") + (synopsis "Go Text") + (description + "text is a repository of text-related packages related to internationalization +(i18n) and localization (l10n), such as character encodings, text +transformations, and locale-specific text handling. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20211005001312-d4b1ae081e3b + (package + (name "go-golang-org-x-net") + (version "0.0.0-20211005001312-d4b1ae081e3b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0mid37a5nk85xxym49cxw9k5y9w8j8hiafgmn4igaympm8yy5dc9")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.6" ,go-golang-org-x-text-0.3.6) + ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" + ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) + ("go-golang-org-x-sys-0.0.0-20210423082822-04245dca01da" + ,go-golang-org-x-sys-0.0.0-20210423082822-04245dca01da))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20210220032951-036812b2e83c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1gl202py3s4gl6arkaxlf8qa6f0jyyg2f95m6f89qnfmr416h85b")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the +ones provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20211004093028-2c5d950f24ef + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20211004093028-2c5d950f24ef") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "13ac9v54zgxrya9n2dvbmyafhd0rbmnkfb5zrcp96z8vzd9q8zfz")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-text-0.3.7 + (package + (name "go-golang-org-x-text") + (version "0.3.7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0xkw0qvfjyifdqd25y7nxdqkdh92inymw3q7841nricc9s01p4jy")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/text")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" + ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) + (home-page "https://golang.org/x/text") + (synopsis "Go Text") + (description + "text is a repository of text-related packages related to internationalization +(i18n) and localization (l10n), such as character encodings, text +transformations, and locale-specific text handling. +") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-1.26.0 + (package + (name "go-google-golang-org-protobuf") + (version "1.26.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0xq6phaps6d0vcv13ga59gzj4306l0ki9kikhmb52h6pq0iwfqlz")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.5.5" + ,go-github-com-google-go-cmp-0.5.5) + ("go-github-com-golang-protobuf-1.5.0" + ,go-github-com-golang-protobuf-1.5.0))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.5.2 + (package + (name "go-github-com-golang-protobuf") + (version "1.5.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1mh5fyim42dn821nsd3afnmgscrzzhn3h8rag635d2jnr23r1zhk")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.26.0" + ,go-google-golang-org-protobuf-1.26.0) + ("go-github-com-google-go-cmp-0.5.5" + ,go-github-com-google-go-cmp-0.5.5))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20210330210617-4fbd30eecc44 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20210330210617-4fbd30eecc44") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "02mmymbm7wb3vdp3z9hm8p0f45708fybyd38qm8qxzwm19zqnp56")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20201119102817-f84b799fce68") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1dvhqian5byzkcg1bnqzygqa6ccc6krc2q7j12pp1vhl3y7znnsg")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1 + (package + (name "go-golang-org-x-term") + (version "0.0.0-20201126162022-7de9c90e9dd1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/term") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ba252xmv6qsvf1w1gcy98mngrj0vd4inbjw0lsklqvva65nljna")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/term")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" + ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) + (home-page "https://golang.org/x/term") + (synopsis "Go terminal/console support") + (description + "Package term provides support functions for dealing with terminals, as +commonly found on UNIX systems. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-text-0.3.3 + (package + (name "go-golang-org-x-text") + (version "0.3.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19pihqm3phyndmiw6i42pdv6z1rbvlqlsnhsyqf9gsnn0qnmqqlh")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/text")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" + ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) + (home-page "https://golang.org/x/text") + (synopsis "Go Text") + (description + "text is a repository of text-related packages related to internationalization +(i18n) and localization (l10n), such as character encodings, text +transformations, and locale-specific text handling. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20210405180319-a5a99cb37ef4 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20210405180319-a5a99cb37ef4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0z90hpmxdw9i8vfhd6vf7hd63c86f1128qfb5f3y4kinvlpjy3rl")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) + ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" + ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) + ("go-golang-org-x-sys-0.0.0-20210330210617-4fbd30eecc44" + ,go-golang-org-x-sys-0.0.0-20210330210617-4fbd30eecc44))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20210510120138-977fb7262007 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20210510120138-977fb7262007") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0d2vnblgzxgvis2kly99gv10kadyl3v0cpv1lskjqg2v5d11r6hd")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20180917221912-90fa682c2a6e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-golang-org-x-text-0.3.5 + (package + (name "go-golang-org-x-text") + (version "0.3.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "082s9d7wnh1aa2v08g3h5z4if2f8hl4y01pb788qsvab9329lj0w")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/text")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" + ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) + (home-page "https://golang.org/x/text") + (synopsis "Go Text") + (description + "text is a repository of text-related packages related to internationalization +(i18n) and localization (l10n), such as character encodings, text +transformations, and locale-specific text handling. +") + (license license:bsd-3))) + +(define-public go-github-com-oneofone-xxhash-1.2.2 + (package + (name "go-github-com-oneofone-xxhash") + (version "1.2.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/OneOfOne/xxhash") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1mjfhrwhvxa48rycjnqpqzm521i38h1hdyz6pdwmhd7xb8j6gwi6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/OneOfOne/xxhash")) + (home-page "https://github.com/OneOfOne/xxhash") + (synopsis "xxhash") + (description + "This is a native Go implementation of the excellent @url{https://github.com/Cyan4973/xxHash,xxhash}* algorithm, an extremely fast non-cryptographic Hash algorithm, working at speeds close to RAM limits.") + (license license:asl2.0))) + +(define-public go-github-com-spaolacci-murmur3-0.0.0-20180118202830-f09979ecbc72 + (package + (name "go-github-com-spaolacci-murmur3") + (version "0.0.0-20180118202830-f09979ecbc72") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/spaolacci/murmur3") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1lv3zyz3jy2d76bhvvs8svygx66606iygdvwy5cwc0p5z8yghq25")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/spaolacci/murmur3")) + (home-page "https://github.com/spaolacci/murmur3") + (synopsis "murmur3") + (description + "Package murmur3 implements Austin Appleby's non-cryptographic MurmurHash3. +") + (license license:bsd-3))) + +(define-public go-github-com-cespare-xxhash-1.1.0 + (package + (name "go-github-com-cespare-xxhash") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cespare/xxhash") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1qyzlcdcayavfazvi03izx83fvip8h36kis44zr2sg7xf6sx6l4x")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/cespare/xxhash")) + (propagated-inputs + `(("go-github-com-spaolacci-murmur3-0.0.0-20180118202830-f09979ecbc72" + ,go-github-com-spaolacci-murmur3-0.0.0-20180118202830-f09979ecbc72) + ("go-github-com-oneofone-xxhash-1.2.2" + ,go-github-com-oneofone-xxhash-1.2.2))) + (home-page "https://github.com/cespare/xxhash") + (synopsis "xxhash") + (description + "Package xxhash implements the 64-bit variant of xxHash (XXH64) as described +at @url{http://cyan4973.github.io/xxHash/,http://cyan4973.github.io/xxHash/}. +") + (license license:expat))) + +(define-public go-github-com-cncf-xds-go-0.0.0-20210312221358-fbca930ec8ed + (package + (name "go-github-com-cncf-xds-go") + (version "0.0.0-20210312221358-fbca930ec8ed") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cncf/xds") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "16dlsms2k63570051ch1jb9yphrkqz61wdgs2l6zqaykhg13rjmh")))) + (build-system go-build-system) + (arguments + '(#:import-path + "github.com/cncf/xds/go" + #:unpack-path + "github.com/cncf/xds")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2) + ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" + ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0))) + (home-page "https://github.com/cncf/xds") + (synopsis #f) + (description #f) + (license license:asl2.0))) + +(define-public go-github-com-envoyproxy-go-control-plane-0.9.9-0.20210512163311-63b5d3c536b0 + (package + (name "go-github-com-envoyproxy-go-control-plane") + (version "0.9.9-0.20210512163311-63b5d3c536b0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/envoyproxy/go-control-plane") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1zb462sarpyjd4jxgiv9mqlmzz2rbjfh2r9xb7z4nbdkhpg1wh1j")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.25.0" + ,go-google-golang-org-protobuf-1.25.0) + ("go-google-golang-org-grpc-1.36.0" ,go-google-golang-org-grpc-1.36.0) + ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" + ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) + ("go-go-opentelemetry-io-proto-otlp-0.7.0" + ,go-go-opentelemetry-io-proto-otlp-0.7.0) + ("go-github-com-stretchr-testify-1.5.1" + ,go-github-com-stretchr-testify-1.5.1) + ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" + ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) + ("go-github-com-google-go-cmp-0.5.0" + ,go-github-com-google-go-cmp-0.5.0) + ("go-github-com-golang-protobuf-1.4.3" + ,go-github-com-golang-protobuf-1.4.3) + ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" + ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) + ("go-github-com-cncf-xds-go-0.0.0-20210312221358-fbca930ec8ed" + ,go-github-com-cncf-xds-go-0.0.0-20210312221358-fbca930ec8ed) + ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" + ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) + (home-page "https://github.com/envoyproxy/go-control-plane") + (synopsis "control-plane") + (description + "This repository contains a Go-based implementation of an API server that +implements the discovery service APIs defined in +@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") + (license license:asl2.0))) + +(define-public go-google-golang-org-grpc-1.40.0 + (package + (name "go-google-golang-org-grpc") + (version "1.40.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0n63k9j3grwc8di3k2fkxqbdyzw0pwrcs9vpmwrnga6hdwg9d5hv")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.25.0" + ,go-google-golang-org-protobuf-1.25.0) + ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" + ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) + ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" + ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) + ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" + ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) + ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" + ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) + ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) + ("go-github-com-google-go-cmp-0.5.0" + ,go-github-com-google-go-cmp-0.5.0) + ("go-github-com-golang-protobuf-1.4.3" + ,go-github-com-golang-protobuf-1.4.3) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-envoyproxy-go-control-plane-0.9.9-0.20210512163311-63b5d3c536b0" + ,go-github-com-envoyproxy-go-control-plane-0.9.9-0.20210512163311-63b5d3c536b0) + ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" + ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403) + ("go-github-com-cespare-xxhash-1.1.0" + ,go-github-com-cespare-xxhash-1.1.0))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-google-golang-org-protobuf-1.26.0-rc.1 + (package + (name "go-google-golang-org-protobuf") + (version "1.26.0-rc.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1m2jp247qcnix42jncn0q7pwrjgbhiqllb1115hfsz40xfnfhp8j")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.5.5" + ,go-github-com-google-go-cmp-0.5.5))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.5.0 + (package + (name "go-github-com-golang-protobuf") + (version "1.5.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1craaxv34g4g8q3yrv6pr28fx9ihnk7hj5gnbmxcrhcp78423lnf")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.26.0-rc.1" + ,go-google-golang-org-protobuf-1.26.0-rc.1) + ("go-github-com-google-go-cmp-0.5.5" + ,go-github-com-google-go-cmp-0.5.5))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-github-com-google-go-cmp-0.5.5 + (package + (name "go-github-com-google-go-cmp") + (version "0.5.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12fmkdhyv5d4is8s57k78j097zb0phlgnrkqc03agiszxlid69x7")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-1.27.1 + (package + (name "go-google-golang-org-protobuf") + (version "1.27.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0aszb7cv8fq1m8akgd4kjyg5q7g5z9fdqnry6057ygq9r8r2yif2")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.5.5" + ,go-github-com-google-go-cmp-0.5.5) + ("go-github-com-golang-protobuf-1.5.0" + ,go-github-com-golang-protobuf-1.5.0))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-google-golang-org-genproto-0.0.0-20211005153810-c76a74d43a8e + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20211005153810-c76a74d43a8e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1y0dv6kra59adcvlgygw2rw5f70rr8jq18v2pcr2kjlfjmc48dh1")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.27.1" + ,go-google-golang-org-protobuf-1.27.1) + ("go-google-golang-org-grpc-1.40.0" ,go-google-golang-org-grpc-1.40.0) + ("go-golang-org-x-text-0.3.5" ,go-golang-org-x-text-0.3.5) + ("go-golang-org-x-sys-0.0.0-20210510120138-977fb7262007" + ,go-golang-org-x-sys-0.0.0-20210510120138-977fb7262007) + ("go-golang-org-x-net-0.0.0-20210405180319-a5a99cb37ef4" + ,go-golang-org-x-net-0.0.0-20210405180319-a5a99cb37ef4) + ("go-github-com-golang-protobuf-1.5.2" + ,go-github-com-golang-protobuf-1.5.2))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-github-com-cespare-xxhash-v2-2.1.1 + (package + (name "go-github-com-cespare-xxhash-v2") + (version "2.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cespare/xxhash") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0rl5rs8546zj1vzggv38w93wx0b5dvav7yy5hzxa8kw7iikv1cgr")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/cespare/xxhash/v2")) + (home-page "https://github.com/cespare/xxhash") + (synopsis "xxhash") + (description + "Package xxhash implements the 64-bit variant of xxHash (XXH64) as described +at @url{http://cyan4973.github.io/xxHash/,http://cyan4973.github.io/xxHash/}. +") + (license license:expat))) + +(define-public go-github-com-cncf-xds-go-0.0.0-20210805033703-aa0b78936158 + (package + (name "go-github-com-cncf-xds-go") + (version "0.0.0-20210805033703-aa0b78936158") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cncf/xds") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1mym5pilywkv77ibw9baipf2ibnl3a06g2wjgjfy4xwwr8sbx6zb")))) + (build-system go-build-system) + (arguments + '(#:import-path + "github.com/cncf/xds/go" + #:unpack-path + "github.com/cncf/xds")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2) + ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" + ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0))) + (home-page "https://github.com/cncf/xds") + (synopsis #f) + (description #f) + (license license:asl2.0))) + +(define-public go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c + (package + (name "go-gopkg-in-yaml-v3") + (version "3.0.0-20200313102051-9f266ea9e77c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v3") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1bbai3lzb50m0x2vwsdbagrbhvfylj9k1m32hgbqwldqx4p9ay35")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v3") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language. +") + (license #f))) + +(define-public go-github-com-stretchr-testify-1.7.0 + (package + (name "go-github-com-stretchr-testify") + (version "1.7.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ixgjsvafr3513pz3r6pmgk074s2dxkll0dadvl25gkf30rkmh10")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (propagated-inputs + `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" + ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) + ("go-github-com-stretchr-objx-0.1.0" + ,go-github-com-stretchr-objx-0.1.0) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.0" + ,go-github-com-davecgh-go-spew-1.1.0))) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +") + (license license:expat))) + +(define-public go-github-com-antihax-optional-1.0.0 + (package + (name "go-github-com-antihax-optional") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/antihax/optional") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ix08vl49qxr58rc6201cl97g1yznhhkwvqldslawind99js4rj0")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/antihax/optional")) + (home-page "https://github.com/antihax/optional") + (synopsis #f) + (description #f) + (license license:expat))) + +(define-public go-github-com-ghodss-yaml-1.0.0 + (package + (name "go-github-com-ghodss-yaml") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/ghodss/yaml") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0skwmimpy7hlh7pva2slpcplnm912rp3igs98xnqmn859kwa5v8g")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/ghodss/yaml")) + (home-page "https://github.com/ghodss/yaml") + (synopsis "YAML marshaling and unmarshaling support for Go") + (description + "Copyright 2013 The Go Authors. All rights reserved. +Use of this source code is governed by a BSD-style +license that can be found in the LICENSE file. +") + (license #f))) + +(define-public go-github-com-rogpeppe-fastuuid-1.2.0 + (package + (name "go-github-com-rogpeppe-fastuuid") + (version "1.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/rogpeppe/fastuuid") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "028acdg63zkxpjz3l639nlhki2l0canr2v5jglrmwa1wpjqcfff8")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/rogpeppe/fastuuid")) + (home-page "https://github.com/rogpeppe/fastuuid") + (synopsis "fastuuid") + (description + "Package fastuuid provides fast UUID generation of 192 bit +universally unique identifiers. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1 + (package + (name "go-golang-org-x-xerrors") + (version "0.0.0-20200804184101-5ec99f83aff1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/xerrors") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1dbzc3gmf2haazpv7cgmv97rq40g2xzwbglc17vas8dwhgwgwrzb")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/xerrors")) + (home-page "https://golang.org/x/xerrors") + (synopsis #f) + (description + "Package xerrors implements functions to manipulate errors. +") + (license license:bsd-3))) + +(define-public go-google-golang-org-genproto-0.0.0-20200513103714-09dca8ec2884 + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20200513103714-09dca8ec2884") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1bfv9n6sxizgxnf82xhwz9x6h7srdizhy5mdy90j0w833dlk6h9h")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" + ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-golang-protobuf-1.3.3" + ,go-github-com-golang-protobuf-1.3.3))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f + (package + (name "go-github-com-cncf-udpa-go") + (version "0.0.0-20191209042840-269d4d468f6f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cncf/udpa") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0i1jiaw2k3hlwwmg4hap81vb4s1p25xp9kdfww37v0fbgjariccs")))) + (build-system go-build-system) + (arguments + '(#:import-path + "github.com/cncf/udpa/go" + #:unpack-path + "github.com/cncf/udpa")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2) + ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" + ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0))) + (home-page "https://github.com/cncf/udpa") + (synopsis "Description") + (description + "This library has been deprecated in favor of @code{github.com/cncf/xds/go}. All users are recommended to switch their imports.") + (license license:asl2.0))) + +(define-public go-github-com-envoyproxy-go-control-plane-0.9.4 + (package + (name "go-github-com-envoyproxy-go-control-plane") + (version "0.9.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/envoyproxy/go-control-plane") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0m0crzx70lp7vz13v20wxb1fcfdnzp7h3mkh3bn6a8mbfz6w5asj")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) + ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" + ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) + ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" + ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) + ("go-github-com-google-go-cmp-0.2.0" + ,go-github-com-google-go-cmp-0.2.0) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2) + ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" + ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) + ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" + ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f) + ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" + ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) + (home-page "https://github.com/envoyproxy/go-control-plane") + (synopsis "control-plane") + (description + "This repository contains a Go-based implementation of an API server that +implements the discovery service APIs defined in +@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") + (license license:asl2.0))) + +(define-public go-github-com-golang-protobuf-1.3.3 + (package + (name "go-github-com-golang-protobuf") + (version "1.3.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1cyyr52yhj3fzrily3rmsbqyj8va4ld75lmry0857m39rgpv8sy1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-google-golang-org-grpc-1.33.1 + (package + (name "go-google-golang-org-grpc") + (version "1.33.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hv5p4d6m85gbk730l1ki3mdx2v8yr4djg00dwg7a8ga4ixxsxvc")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" + ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.3.3" + ,go-github-com-golang-protobuf-1.3.3) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-envoyproxy-go-control-plane-0.9.4" + ,go-github-com-envoyproxy-go-control-plane-0.9.4) + ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" + ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-gopkg-in-yaml-v2-2.2.3 + (package + (name "go-gopkg-in-yaml-v2") + (version "2.2.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0l2s7y180gkkvrmnw2xyfszz1m4kp92x2hz680c9vyklcbzsxrrx")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v2") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language. +") + (license license:asl2.0))) + +(define-public go-github-com-grpc-ecosystem-grpc-gateway-1.16.0 + (package + (name "go-github-com-grpc-ecosystem-grpc-gateway") + (version "1.16.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc-ecosystem/grpc-gateway") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0dzq1qbgzz2c6vnh8anx0j3py34sd72p35x6s2wrl001q68am5cc")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/grpc-ecosystem/grpc-gateway")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.3" ,go-gopkg-in-yaml-v2-2.2.3) + ("go-google-golang-org-grpc-1.33.1" ,go-google-golang-org-grpc-1.33.1) + ("go-google-golang-org-genproto-0.0.0-20200513103714-09dca8ec2884" + ,go-google-golang-org-genproto-0.0.0-20200513103714-09dca8ec2884) + ("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" + ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) + ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" + ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) + ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" + ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) + ("go-github-com-rogpeppe-fastuuid-1.2.0" + ,go-github-com-rogpeppe-fastuuid-1.2.0) + ("go-github-com-golang-protobuf-1.3.3" + ,go-github-com-golang-protobuf-1.3.3) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-ghodss-yaml-1.0.0" ,go-github-com-ghodss-yaml-1.0.0) + ("go-github-com-antihax-optional-1.0.0" + ,go-github-com-antihax-optional-1.0.0))) + (home-page "https://github.com/grpc-ecosystem/grpc-gateway") + (synopsis "grpc-gateway") + (description + "The grpc-gateway is a plugin of the Google protocol buffers compiler +@url{https://github.com/protocolbuffers/protobuf,protoc}. +It reads protobuf service definitions and generates a reverse-proxy server which +translates a RESTful HTTP API into gRPC. This server is generated according to the +@url{https://github.com/googleapis/googleapis/raw/master/google/api/http.proto#L46,(code google.api.http)} +annotations in your service definitions.") + (license license:bsd-3))) + +(define-public go-go-opentelemetry-io-proto-otlp-0.7.0 + (package + (name "go-go-opentelemetry-io-proto-otlp") + (version "0.7.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/open-telemetry/opentelemetry-proto-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0p2a2i6f9gghvk3h9w08va50dhz7q8i5q6l4jvk6b7nisx6kb1qq")))) + (build-system go-build-system) + (arguments '(#:import-path "go.opentelemetry.io/proto/otlp")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.25.0" + ,go-google-golang-org-protobuf-1.25.0) + ("go-google-golang-org-grpc-1.36.0" ,go-google-golang-org-grpc-1.36.0) + ("go-github-com-grpc-ecosystem-grpc-gateway-1.16.0" + ,go-github-com-grpc-ecosystem-grpc-gateway-1.16.0) + ("go-github-com-golang-protobuf-1.4.3" + ,go-github-com-golang-protobuf-1.4.3))) + (home-page "https://go.opentelemetry.io/proto/otlp") + (synopsis #f) + (description #f) + (license license:asl2.0))) + +(define-public go-github-com-envoyproxy-go-control-plane-0.9.0 + (package + (name "go-github-com-envoyproxy-go-control-plane") + (version "0.9.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/envoyproxy/go-control-plane") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1dpvi4wnycyj6hnai78fr8aj58b27b1vcwdp3v0id5v22kvgr3xw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.23.0" ,go-google-golang-org-grpc-1.23.0) + ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" + ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) + ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" + ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2) + ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" + ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) + ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" + ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) + (home-page "https://github.com/envoyproxy/go-control-plane") + (synopsis "control-plane") + (description + "This repository contains a Go-based implementation of an API server that +implements the discovery service APIs defined in +@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") + (license license:asl2.0))) + +(define-public go-google-golang-org-grpc-1.25.1 + (package + (name "go-google-golang-org-grpc") + (version "1.25.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0a136ij9p11yj1vx892yqy40jkh7n5nfbpdvhgydcj823mx51c6f")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" + ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-github-com-google-go-cmp-0.2.0" + ,go-github-com-google-go-cmp-0.2.0) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2) + ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" + ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) + ("go-github-com-envoyproxy-go-control-plane-0.9.0" + ,go-github-com-envoyproxy-go-control-plane-0.9.0))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403 + (package + (name "go-github-com-cncf-udpa-go") + (version "0.0.0-20201120205902-5459f2c99403") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cncf/udpa") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0i3al193dsp91j7iywqrm6fr56y2sz51ci4vf19mb3j4n2x44gsi")))) + (build-system go-build-system) + (arguments + '(#:import-path + "github.com/cncf/udpa/go" + #:unpack-path + "github.com/cncf/udpa")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2) + ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" + ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0))) + (home-page "https://github.com/cncf/udpa") + (synopsis "Description") + (description + "This library has been deprecated in favor of @code{github.com/cncf/xds/go}. All users are recommended to switch their imports.") + (license license:asl2.0))) + +(define-public go-github-com-davecgh-go-spew-1.1.0 + (package + (name "go-github-com-davecgh-go-spew") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/davecgh/go-spew") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/davecgh/go-spew")) + (home-page "https://github.com/davecgh/go-spew") + (synopsis "go-spew") + (description + "Go-spew implements a deep pretty printer for Go data structures to aid in +debugging. A comprehensive suite of tests with 100% test coverage is provided +to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage +report. Go-spew is licensed under the liberal ISC license, so it may be used in +open source or commercial projects.") + (license license:isc))) + +(define-public go-github-com-pmezard-go-difflib-1.0.0 + (package + (name "go-github-com-pmezard-go-difflib") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pmezard/go-difflib") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pmezard/go-difflib")) + (home-page "https://github.com/pmezard/go-difflib") + (synopsis "go-difflib") + (description + "Go-difflib is a partial port of python 3 difflib package. Its main goal +was to make unified and context diff available in pure Go, mostly for +testing purposes.") + (license license:bsd-3))) + +(define-public go-github-com-stretchr-objx-0.1.0 + (package + (name "go-github-com-stretchr-objx") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/objx") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/objx")) + (home-page "https://github.com/stretchr/objx") + (synopsis "Objx") + (description + "Objx - Go package for dealing with maps, slices, JSON and other data. +") + (license license:expat))) + +(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 + (package + (name "go-gopkg-in-check-v1") + (version "0.0.0-20161208181325-20d25e280405") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/check.v1") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) + (home-page "https://gopkg.in/check.v1") + (synopsis "Instructions") + (description + "Package check is a rich testing extension for Go's testing package. +") + (license license:bsd-2))) + +(define-public go-gopkg-in-yaml-v2-2.2.2 + (package + (name "go-gopkg-in-yaml-v2") + (version "2.2.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "01wj12jzsdqlnidpyjssmj0r4yavlqy7dwrg7adqd8dicjc4ncsa")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v2") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language. +") + (license license:asl2.0))) + +(define-public go-github-com-stretchr-testify-1.5.1 + (package + (name "go-github-com-stretchr-testify") + (version "1.5.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "09r89m1wy4cjv2nps1ykp00qjpi0531r07q3s34hr7m6njk4srkl")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) + ("go-github-com-stretchr-objx-0.1.0" + ,go-github-com-stretchr-objx-0.1.0) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.0" + ,go-github-com-davecgh-go-spew-1.1.0))) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +") + (license license:expat))) + +(define-public go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad + (package + (name "go-github-com-envoyproxy-go-control-plane") + (version "0.9.9-0.20201210154907-fd9021fe5dad") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/envoyproxy/go-control-plane") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0piyk6pk36x2qr3bhys2k240pfwz3bv64fhi2l0vx1mzwiddapbm")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.23.0" + ,go-google-golang-org-protobuf-1.23.0) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" + ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) + ("go-github-com-stretchr-testify-1.5.1" + ,go-github-com-stretchr-testify-1.5.1) + ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" + ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.2" + ,go-github-com-golang-protobuf-1.4.2) + ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" + ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) + ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" + ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403) + ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" + ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) + (home-page "https://github.com/envoyproxy/go-control-plane") + (synopsis "control-plane") + (description + "This repository contains a Go-based implementation of an API server that +implements the discovery service APIs defined in +@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") + (license license:asl2.0))) + +(define-public go-github-com-golang-protobuf-1.4.2 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0m5z81im4nsyfgarjhppayk4hqnrwswr3nix9mj8pff8x9jvcjqw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.23.0" + ,go-google-golang-org-protobuf-1.23.0) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-google-golang-org-grpc-1.36.0 + (package + (name "go-google-golang-org-grpc") + (version "1.36.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1m4xsfv3ysc84cwqxqqr61fs3d2w04f0q5xbdjijhczjixcxwh5i")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.25.0" + ,go-google-golang-org-protobuf-1.25.0) + ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" + ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) + ("go-github-com-google-go-cmp-0.5.0" + ,go-github-com-google-go-cmp-0.5.0) + ("go-github-com-golang-protobuf-1.4.2" + ,go-github-com-golang-protobuf-1.4.2) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad" + ,go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad) + ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" + ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-github-com-envoyproxy-go-control-plane-0.9.10-0.20210907150352-cf90f659a021 + (package + (name "go-github-com-envoyproxy-go-control-plane") + (version "0.9.10-0.20210907150352-cf90f659a021") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/envoyproxy/go-control-plane") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0qwhcz5a4c9b27xcxdzr3lq76xyxbgjb2l033b0k0hb5lqi1gdnv")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.25.0" + ,go-google-golang-org-protobuf-1.25.0) + ("go-google-golang-org-grpc-1.36.0" ,go-google-golang-org-grpc-1.36.0) + ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" + ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) + ("go-go-opentelemetry-io-proto-otlp-0.7.0" + ,go-go-opentelemetry-io-proto-otlp-0.7.0) + ("go-github-com-stretchr-testify-1.7.0" + ,go-github-com-stretchr-testify-1.7.0) + ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" + ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) + ("go-github-com-google-go-cmp-0.5.0" + ,go-github-com-google-go-cmp-0.5.0) + ("go-github-com-golang-protobuf-1.4.3" + ,go-github-com-golang-protobuf-1.4.3) + ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" + ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) + ("go-github-com-cncf-xds-go-0.0.0-20210805033703-aa0b78936158" + ,go-github-com-cncf-xds-go-0.0.0-20210805033703-aa0b78936158) + ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" + ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) + (home-page "https://github.com/envoyproxy/go-control-plane") + (synopsis "control-plane") + (description + "This repository contains a Go-based implementation of an API server that +implements the discovery service APIs defined in +@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") + (license license:asl2.0))) + +(define-public go-google-golang-org-protobuf-1.23.0 + (package + (name "go-google-golang-org-protobuf") + (version "1.23.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03yan0m1v0zmlr935p4n24fd376mznsg85zy8sywbgisls4s1bzy")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.0" + ,go-github-com-golang-protobuf-1.4.0))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.4.3 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1kf1d7xmyjvy0z6j5czp6nqyvj9zrk6liv6znif08927xqfrzyln")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.23.0" + ,go-google-golang-org-protobuf-1.23.0) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-github-com-google-uuid-1.1.2 + (package + (name "go-github-com-google-uuid") + (version "1.1.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/uuid") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1rbpfa0v0ly9sdnixcxhf79swki54ikgm1zkwwkj64p1ws66syqd")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/uuid")) + (home-page "https://github.com/google/uuid") + (synopsis "uuid") + (description "Package uuid generates and inspects UUIDs. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190404232315-eb5bcb51f2a3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "17k4g8krxbl84gzcs275b7gsh66dzm15fdxivjnx9xz8q84l4kby")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20190412213103-97732733099d + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190412213103-97732733099d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "118hkp01i4z1f5h6hcjm0ff2ngqhrzj1f7731n0kw8dr6hvbx0sw")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20200622213623-75b288015ac9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18vlncvvs11ds3zaaziqjlg5s2vcwi3496nn6qv7p0dp94j5pwa2")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" + ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) + ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" + ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20200822124328-c89045814202 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20200822124328-c89045814202") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1g3wxilwbcbf2xj20y3mpxh38jka4fyhl48akfqf00vr48zmx96x")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" + ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) + ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" + ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-cloud-google-com-go-0.34.0 + (package + (name "go-cloud-google-com-go") + (version "0.34.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-cloud-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1kclgclwar3r37zbvb9gg3qxbgzkb50zk3s9778zlh2773qikmai")))) + (build-system go-build-system) + (arguments '(#:import-path "cloud.google.com/go")) + (home-page "https://cloud.google.com/go") + (synopsis "Google Cloud Client Libraries for Go") + (description + "Package cloud is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +of sub-packages. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190108225652-1e06a53dbb7e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0lpqqvdccby48nixihvmn8ig1z48b950m1bxfqxn78air308qc3j")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4 + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20181221193216-37e7f081c4d4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1bb0mw6ckb1k7z8v3iil2qlqwfj408fvvp8m1cik2b46p7snyjhm")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the +ones provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d + (package + (name "go-golang-org-x-oauth2") + (version "0.0.0-20200107190931-bf48bf16ab8d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/oauth2") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1sirdib60zwmh93kf9qrx51r8544k1p9rs5mk0797wibz3m4mrdg")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/oauth2")) + (propagated-inputs + `(("go-google-golang-org-appengine-1.4.0" + ,go-google-golang-org-appengine-1.4.0) + ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" + ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) + ("go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e" + ,go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e) + ("go-cloud-google-com-go-0.34.0" ,go-cloud-google-com-go-0.34.0))) + (home-page "https://golang.org/x/oauth2") + (synopsis "OAuth2 for Go") + (description + "Package oauth2 provides support for making +OAuth2 authorized and authenticated HTTP requests, +as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +It can additionally grant authorization with Bearer JWT. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200323222414-85ca7c5b95cd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1504qkgbhhm4f0bhk77v2r1lj6x171ay5m79alkg78wjb5cign5l")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-google-go-cmp-0.5.0 + (package + (name "go-github-com-google-go-cmp") + (version "0.5.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "04pzp583p6b32y34c6jygfxarff9qjs39rarvfh6467z24sdd9k4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-1.22.0 + (package + (name "go-google-golang-org-protobuf") + (version "1.22.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0n7lc4m7kfvj01glc0gnjy0zsnsic7cxnbvlajy0h14cxbab87pj")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.0" + ,go-github-com-golang-protobuf-1.4.0))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.4.1 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0w7ks4vffnnkp0miwgc3chrsnmya45lzvpahb2wmw0jwhdp5kdx7")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.22.0" + ,go-google-golang-org-protobuf-1.22.0) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-github-com-census-instrumentation-opencensus-proto-0.2.1 + (package + (name "go-github-com-census-instrumentation-opencensus-proto") + (version "0.2.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/census-instrumentation/opencensus-proto") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19fcx3sc99i5dsklny6r073z5j20vlwn2xqm6di1q3b1xwchzqfj")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/census-instrumentation/opencensus-proto")) + (home-page "https://github.com/census-instrumentation/opencensus-proto") + (synopsis + "OpenCensus Proto - Language Independent Interface Types For OpenCensus") + (description + "Census provides a framework to define and collect stats against metrics and to +break those stats down across user-defined dimensions.") + (license license:asl2.0))) + +(define-public go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4 + (package + (name "go-github-com-prometheus-client-model") + (version "0.0.0-20190812154241-14fe0d1b01d4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/client_model") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0zdmk6rbbx39cvfz0r59v2jg5sg9yd02b4pds5n5llgvivi99550")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/client_model")) + (propagated-inputs + `(("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" + ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0))) + (home-page "https://github.com/prometheus/client_model") + (synopsis "Deprecation note") + (description + "This repository used to contain the code that defined both +the data model and the exposition format of Prometheus metrics.") + (license license:asl2.0))) + +(define-public go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20190311212946-11955173bddd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hlkai67w167wiyivkzd1fgqrnyxkb94l2c6kr51jwcscizfyfn3")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3 + (package + (name "go-golang-org-x-lint") + (version "0.0.0-20190313153728-d0100b6bd8b3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/lint") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0b0amr9x4ji66iv9ayfx7zrfx52k1m5g66qfcxkgj80qrb1y2yn7")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/lint")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" + ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd))) + (home-page "https://golang.org/x/lint") + (synopsis "Installation") + (description "Package lint contains a linter for Go source code. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20190423024810-112230192c58 + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20190423024810-112230192c58") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "05i2k43j2d0llq768hg5pf3hb2yhfzp9la1w5wp0rsnnzblr0lfn")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the +ones provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135 + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20190524140312-2c0ae7006135") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1lsi2ssxajclj3bciz2a41v1vjv768ja3v6wnbyhxy8xphwkp4fk")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" + ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-google-golang-org-grpc-1.23.0 + (package + (name "go-google-golang-org-grpc") + (version "1.23.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1cn33r2gclmq2v1ndpf1n5bmhf2qs8mms7ii5cnl6f9ch4r2c4k3")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" + ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) + ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" + ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) + ("go-google-golang-org-appengine-1.1.0" + ,go-google-golang-org-appengine-1.1.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-google-go-cmp-0.2.0" + ,go-github-com-google-go-cmp-0.2.0) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0) + ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-client9-misspell-0.3.4" + ,go-github-com-client9-misspell-0.3.4) + ("go-github-com-burntsushi-toml-0.3.1" + ,go-github-com-burntsushi-toml-0.3.1) + ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473 + (package + (name "go-github-com-envoyproxy-go-control-plane") + (version "0.9.1-0.20191026205805-5f8ba28d4473") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/envoyproxy/go-control-plane") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1f1s764rd41vd9vgk3r14h1m6fz6pdvxj6fd83q58gxifbc4q5w4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.23.0" ,go-google-golang-org-grpc-1.23.0) + ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" + ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) + ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" + ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2) + ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" + ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) + ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" + ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) + (home-page "https://github.com/envoyproxy/go-control-plane") + (synopsis "control-plane") + (description + "This repository contains a Go-based implementation of an API server that +implements the discovery service APIs defined in +@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") + (license license:asl2.0))) + +(define-public go-github-com-envoyproxy-protoc-gen-validate-0.1.0 + (package + (name "go-github-com-envoyproxy-protoc-gen-validate") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/envoyproxy/protoc-gen-validate") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0kxd3wwh3xwqk0r684hsy281xq4y71cd11d4q2hspcjbnlbwh7cy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/envoyproxy/protoc-gen-validate")) + (home-page "https://github.com/envoyproxy/protoc-gen-validate") + (synopsis "protoc-gen-validate (PGV)") + (description + "PGV is a protoc plugin to generate polyglot message validators. While protocol buffers effectively guarantee the types of structured data, they cannot enforce semantic rules for values. This plugin adds support to protoc-generated code to validate such constraints.") + (license license:asl2.0))) + +(define-public go-github-com-google-go-cmp-0.2.0 + (package + (name "go-github-com-google-go-cmp") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fbv0x27k9sn8svafc0hjwsnckk864lv4yi7bvzrxvmd3d5hskds")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") + (license license:bsd-3))) + +(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20190308221718-c2843e01d9a2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20190311183353-d8887717615a + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190311183353-d8887717615a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1wfm6ngxjyj7v5a2dqib6lw8bb2rdnf1kl48diykxjrsddn0s163")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190215142949-d0b11bdaac8a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.3.2 + (package + (name "go-github-com-golang-protobuf") + (version "1.3.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1k1wb4zr0qbwgpvz9q5ws9zhlal8hq7dmq62pwxxriksayl6hzym")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4 + (package + (name "go-golang-org-x-exp") + (version "0.0.0-20190121172915-509febef88a4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/exp") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "02isrh39z8znrp5znplzy0dip2gnrl3jm1355raliyvhnhg04j6q")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/exp")) + (home-page "https://golang.org/x/exp") + (synopsis "exp") + (description + "This subrepository holds experimental and deprecated (in the @code{old} +directory) packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961 + (package + (name "go-golang-org-x-lint") + (version "0.0.0-20190227174305-5b3e6a55c961") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/lint") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "04zp5vbds9nffmjg36wjpi5vg9zmf890yf78xxasai3ni637ivfw")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/lint")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" + ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c))) + (home-page "https://golang.org/x/lint") + (synopsis "Installation") + (description "Package lint contains a linter for Go source code. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190213061140-3a22650c66bd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12q6fgdkc0742vcms67nzadgdwvi3rnb1gx3vwkljhrvlnwvz7wc")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20181108010431-42b317875d0f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0mrjhk7al7yyh76x9flvxy4jm5jyqh2fxbxagpaazxn1xdgkaif3")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the +ones provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20180724234803-3673e40ba225") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0vx7mz18p480p7fh0w5jv6mfdbsswrlac1sz4i705q7q7ygz59lm")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-google-golang-org-appengine-1.4.0 + (package + (name "go-google-golang-org-appengine") + (version "1.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/appengine") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "06zl7w4sxgdq2pl94wy9ncii6h0z3szl4xpqds0sv3b3wbdlhbnn")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/appengine")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225" + ,go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0))) + (home-page "https://google.golang.org/appengine") + (synopsis "Go App Engine packages") + (description + "Package appengine provides basic functionality for Google App Engine. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20190226205152-f727befe758c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0rpcqw6z13qd33rbasg32zb0gdhgh5lzjla63r6g651zf6hpsak0")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-google-golang-org-appengine-1.4.0" + ,go-google-golang-org-appengine-1.4.0) + ("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" + ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) + ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" + ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-cloud-google-com-go-0.26.0 + (package + (name "go-cloud-google-com-go") + (version "0.26.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-cloud-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "149v3ci17g6wd2pm18mzcncq5qpl9hwdjnz3rlbn5rfidyn46la1")))) + (build-system go-build-system) + (arguments '(#:import-path "cloud.google.com/go")) + (home-page "https://cloud.google.com/go") + (synopsis "Google Cloud Client Libraries for Go") + (description + "Package cloud is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +of sub-packages. +") + (license license:asl2.0))) + +(define-public go-github-com-burntsushi-toml-0.3.1 + (package + (name "go-github-com-burntsushi-toml") + (version "0.3.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/BurntSushi/toml") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fjdwwfzyzllgiwydknf1pwjvy49qxfsczqx5gz3y0izs7as99j6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/BurntSushi/toml")) + (home-page "https://github.com/BurntSushi/toml") + (synopsis "TOML parser and encoder for Go with reflection") + (description + "Package toml implements decoding and encoding of TOML files. +") + (license license:expat))) + +(define-public go-github-com-client9-misspell-0.3.4 + (package + (name "go-github-com-client9-misspell") + (version "0.3.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/client9/misspell") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1vwf33wsc4la25zk9nylpbp9px3svlmldkm0bha4hp56jws4q9cs")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/client9/misspell")) + (home-page "https://github.com/client9/misspell") + (synopsis "Install") + (description + "Package misspell corrects commonly misspelled English words in source files. +") + (license license:expat))) + +(define-public go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b + (package + (name "go-github-com-golang-glog") + (version "0.0.0-20160126235308-23def4e6c14b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/glog") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0jb2834rw5sykfr937fxi8hxi2zy80sj2bdn9b3jb4b26ksqng30")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/glog")) + (home-page "https://github.com/golang/glog") + (synopsis "glog") + (description + "Package glog implements logging analogous to the Google-internal C++ INFO/ERROR/V setup. +It provides functions Info, Warning, Error, Fatal, plus formatting variants such as +Infof. It also provides V-style logging controlled by the -v and -vmodule=file=2 flags. +") + (license license:asl2.0))) + +(define-public go-github-com-golang-mock-1.1.1 + (package + (name "go-github-com-golang-mock") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/mock") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ap8wb6pdl6ccmdb43advjll2ly4sz26wsc3axw0hbrjrybybzgy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/mock")) + (home-page "https://github.com/golang/mock") + (synopsis "gomock") + (description + "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It +integrates well with Go's built-in @code{testing} package, but can be used in other +contexts too.") + (license license:asl2.0))) + +(define-public go-github-com-golang-protobuf-1.2.0 + (package + (name "go-github-com-golang-protobuf") + (version "1.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0kf4b59rcbb1cchfny2dm9jyznp8ri2hsb14n8iak1q8986xa0ab")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3 + (package + (name "go-golang-org-x-lint") + (version "0.0.0-20181026193005-c67002cb31c3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/lint") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0gymbggskjmphqxqcx4s0vnlcz7mygbix0vhwcwv5r67c0bf6765")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/lint")) + (home-page "https://golang.org/x/lint") + (synopsis "Installation") + (description "Package lint contains a linter for Go source code. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d + (package + (name "go-golang-org-x-net") + (version "0.0.0-20180826012351-8a410e7b638d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hp0l8f6fir5gmgrjq0mhh5ikc0rlrm72774228800kfwqjrxxny")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be + (package + (name "go-golang-org-x-oauth2") + (version "0.0.0-20180821212333-d2e6202438be") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/oauth2") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wbn75fd10485nb93bm4kqldqifdim5xqy4v7r5sdvimvf3fyhn7")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/oauth2")) + (home-page "https://golang.org/x/oauth2") + (synopsis "OAuth2 for Go") + (description + "Package oauth2 provides support for making +OAuth2 authorized and authenticated HTTP requests, +as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +It can additionally grant authorization with Bearer JWT. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20180314180146-1d60e4601c6f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "046jlanz2lkxq1r57x9bl6s4cvfqaic6p2xybsj8mq1120jv4rs6")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the +ones provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20180830151530-49385e6e1522") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0spbldahns09fdxkxflb1x24f8k2awdlnr6k5i7ci4fqd19r1dv4")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-text-0.3.0 + (package + (name "go-golang-org-x-text") + (version "0.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/text")) + (home-page "https://golang.org/x/text") + (synopsis "Go Text") + (description + "text is a repository of text-related packages related to internationalization +(i18n) and localization (l10n), such as character encodings, text +transformations, and locale-specific text handling. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20190114222345-bf090417da8b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1n3xp56k4k3lj06rx7587wr5gnwg0148nvwx6ch0g7ar02hh94hw")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-google-golang-org-appengine-1.1.0 + (package + (name "go-google-golang-org-appengine") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/appengine") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1pz202zszg8f35dk5pfhwgcdi3r6dx1l4yk6x6ly7nb4j45zi96x")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/appengine")) + (home-page "https://google.golang.org/appengine") + (synopsis "Go App Engine packages") + (description + "Package appengine provides basic functionality for Google App Engine. +") + (license license:asl2.0))) + +(define-public go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8 + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20180817151627-c66870c02cf8") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0siq7sv68556ygqi2d2zmvx8l1xjqdc0fylqzci5h1mq2i14bayn")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-google-golang-org-grpc-1.19.0 + (package + (name "go-google-golang-org-grpc") + (version "1.19.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1znqwpj7ix3dpzx4zch0q70sdl3z5lvbb7v3q4i8sf8kas3yv71v")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" + ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) + ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" + ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) + ("go-google-golang-org-appengine-1.1.0" + ,go-google-golang-org-appengine-1.1.0) + ("go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b" + ,go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b) + ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522" + ,go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522) + ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" + ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d" + ,go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d) + ("go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3" + ,go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0) + ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-client9-misspell-0.3.4" + ,go-github-com-client9-misspell-0.3.4) + ("go-github-com-burntsushi-toml-0.3.1" + ,go-github-com-burntsushi-toml-0.3.1) + ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099 + (package + (name "go-honnef-co-go-tools") + (version "0.0.0-20190102054323-c2f93a96b099") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/dominikh/go-tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "07lg29aiap80ca9f201jzng9vjr168cv3qmvjmbd7v5pmww9kmr8")))) + (build-system go-build-system) + (arguments '(#:import-path "honnef.co/go/tools")) + (home-page "https://honnef.co/go/tools") + (synopsis "Documentation") + (description + "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, +offers simplifications, and enforces style rules.") + (license license:expat))) + +(define-public go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55 + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20190819201941-24fa4b261c55") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "109zhaqlfd8zkbr1hk6zqbs6vcxfrk64scjwh2nswph05gr0m84d")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" + ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) + ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) + ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" + ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) + ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" + ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) + ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" + ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-google-golang-org-grpc-1.27.0 + (package + (name "go-google-golang-org-grpc") + (version "1.27.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ijrmgrxyabfn51nm3p9l81iaasq5fg237wnr6mdc4dzsfcg8kd7")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" + ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-github-com-google-go-cmp-0.2.0" + ,go-github-com-google-go-cmp-0.2.0) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2) + ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" + ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) + ("go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473" + ,go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-github-com-google-go-cmp-0.3.0 + (package + (name "go-github-com-google-go-cmp") + (version "0.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1hyxx3434zshl2m9ja78gwlkg1rx9yl6diqa7dnjb31xz5x4gbjj")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd + (package + (name "go-google-golang-org-protobuf") + (version "0.0.0-20200109180630-ec00e32a8dfd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0w6lp9w2avxcpxwzzhspr209ifhyjagvs23k0vykfdqahl1aplrh")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.3.0" + ,go-github-com-google-go-cmp-0.3.0))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.4.0-rc.1 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.0-rc.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "186rirvbfgv6hrxp27ipx2cdpv19qifdd20biqfdm01wiyclqimn")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd" + ,go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd) + ("go-github-com-google-go-cmp-0.3.1" + ,go-github-com-google-go-cmp-0.3.1))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-github-com-google-go-cmp-0.3.1 + (package + (name "go-github-com-google-go-cmp") + (version "0.3.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1caw49i0plkjxir7kdf5qhwls3krqwfmi7g4h392rdfwi3kfahx1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64 + (package + (name "go-google-golang-org-protobuf") + (version "0.0.0-20200221191635-4d8936d0db64") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0563bsvdjj6k0sgwqd5yzrgfiax7sp3lcwh608gync5sv9fx39cy")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.3.1" + ,go-github-com-google-go-cmp-0.3.1) + ("go-github-com-golang-protobuf-1.4.0-rc.1" + ,go-github-com-golang-protobuf-1.4.0-rc.1))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.0-rc.1.0.20200221234624-67d41d38c208") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ykxhg3zixmw25pd435f8h16wnz1g00jpcmmg3xl030kksgqgpp6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64" + ,go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60 + (package + (name "go-google-golang-org-protobuf") + (version "0.0.0-20200228230310-ab0ca4ff8a60") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1rinspcznfp85yz4vrlf4h38hr576virgv8lcs22bsylqga808sd")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208" + ,go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.4.0-rc.2 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.0-rc.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1hd43hjv5zl6bjbmhm5phx74bw4xajsi73m5zky2k56za4mpgzzc")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60" + ,go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967 + (package + (name "go-google-golang-org-protobuf") + (version "1.20.1-0.20200309200217-e05f789c0967") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "17wmy89hnmpkwc63rfcjp50q15s9f1rhmczg06c3z9yy41zk82w9")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.0-rc.2" + ,go-github-com-golang-protobuf-1.4.0-rc.2))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.0-rc.4.0.20200313231945-b860323f09d0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1zj6cwshx0l5n9cn2cpbikzzb79px5dmkpc4p19zy1iif5r5p0z0")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967" + ,go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-1.21.0 + (package + (name "go-google-golang-org-protobuf") + (version "1.21.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12bwln8z1lf9105gdp6ip0rx741i4yfz1520gxnp8861lh9wcl63")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0" + ,go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.4.0 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fjvl5n77abxz5qsd4mgyvjq19x43c5bfvmq62mq3m5plx6zksc8")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.21.0" + ,go-google-golang-org-protobuf-1.21.0) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543 + (package + (name "go-golang-org-x-xerrors") + (version "0.0.0-20191204190536-9bdfabe68543") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/xerrors") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1yjfi1bk9xb81lqn85nnm13zz725wazvrx3b50hx19qmwg7a4b0c")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/xerrors")) + (home-page "https://golang.org/x/xerrors") + (synopsis #f) + (description + "Package xerrors implements functions to manipulate errors. +") + (license license:bsd-3))) + +(define-public go-github-com-google-go-cmp-0.4.0 + (package + (name "go-github-com-google-go-cmp") + (version "0.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1x5pvl3fb5sbyng7i34431xycnhmx8xx94gq2n19g6p0vz68z2v2")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc + (package + (name "go-google-golang-org-protobuf") + (version "1.23.1-0.20200526195155-81db48ad09cc") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "02cpr8rqr5wmpj2fqb32mzilsdnxkh52g1jz95a3ck3gzffc7hh1")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.0" + ,go-github-com-golang-protobuf-1.4.0))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc + (package + (name "go-honnef-co-go-tools") + (version "0.0.0-20190523083050-ea95bdfd59fc") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/dominikh/go-tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1763nw7pwpzkvzfnm63dgzcgbq9hwmq5l1nffchnhh77vgkaq4ic")))) + (build-system go-build-system) + (arguments '(#:import-path "honnef.co/go/tools")) + (home-page "https://honnef.co/go/tools") + (synopsis "Documentation") + (description + "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, +offers simplifications, and enforces style rules.") + (license license:expat))) + +(define-public go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013 + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20200526211855-cb27e3aa2013") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ml73ghqcwbz7ipfk8fnxb5indcml49b5p7vp1fsyny0abyyrmxf")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" + ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) + ("go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc" + ,go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-golang-protobuf-1.4.1" + ,go-github-com-golang-protobuf-1.4.1))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-google-golang-org-protobuf-1.25.0 + (package + (name "go-google-golang-org-protobuf") + (version "1.25.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0apfl42x166dh96zfq5kvv4b4ax9xljik6bq1mnvn2240ir3mc23")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" + ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) + ("go-github-com-google-go-cmp-0.5.0" + ,go-github-com-google-go-cmp-0.5.0) + ("go-github-com-golang-protobuf-1.4.1" + ,go-github-com-golang-protobuf-1.4.1))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-google-golang-org-grpc-1.41.0 + (package + (name "go-google-golang-org-grpc") + (version "1.41.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "10a0n2lmvl8zqhcswz3sjyqil0sk0mvp892d04lfnq61wq1ssgsn")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.25.0" + ,go-google-golang-org-protobuf-1.25.0) + ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" + ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) + ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" + ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) + ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" + ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) + ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" + ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) + ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) + ("go-github-com-google-go-cmp-0.5.0" + ,go-github-com-google-go-cmp-0.5.0) + ("go-github-com-golang-protobuf-1.4.3" + ,go-github-com-golang-protobuf-1.4.3) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-envoyproxy-go-control-plane-0.9.10-0.20210907150352-cf90f659a021" + ,go-github-com-envoyproxy-go-control-plane-0.9.10-0.20210907150352-cf90f659a021) + ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" + ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403) + ("go-github-com-cespare-xxhash-v2-2.1.1" + ,go-github-com-cespare-xxhash-v2-2.1.1))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-github-com-containers-image-v5-5.17.0 + (package + (name "go-github-com-containers-image-v5") + (version "5.17.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containers/image") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0nr5myldx1jhw7qjjilh7xwvn8g8lx85d9llny5iyagqn75q45b1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containers/image/v5")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.41.0" ,go-google-golang-org-grpc-1.41.0) + ("go-google-golang-org-genproto-0.0.0-20211005153810-c76a74d43a8e" + ,go-google-golang-org-genproto-0.0.0-20211005153810-c76a74d43a8e) + ("go-golang-org-x-text-0.3.7" ,go-golang-org-x-text-0.3.7) + ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" + ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) + ("go-golang-org-x-sys-0.0.0-20211004093028-2c5d950f24ef" + ,go-golang-org-x-sys-0.0.0-20211004093028-2c5d950f24ef) + ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" + ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) + ("go-golang-org-x-net-0.0.0-20211005001312-d4b1ae081e3b" + ,go-golang-org-x-net-0.0.0-20211005001312-d4b1ae081e3b) + ("go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2" + ,go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2) + ("go-go-opencensus-io-0.23.0" ,go-go-opencensus-io-0.23.0) + ("go-go-etcd-io-bbolt-1.3.6" ,go-go-etcd-io-bbolt-1.3.6) + ("go-github-com-xeipuuv-gojsonschema-1.2.0" + ,go-github-com-xeipuuv-gojsonschema-1.2.0) + ("go-github-com-xeipuuv-gojsonpointer-0.0.0-20190809123943-df4f5c81cb3b" + ,go-github-com-xeipuuv-gojsonpointer-0.0.0-20190809123943-df4f5c81cb3b) + ("go-github-com-vbauerster-mpb-v7-7.1.5" + ,go-github-com-vbauerster-mpb-v7-7.1.5) + ("go-github-com-vbatts-tar-split-0.11.2" + ,go-github-com-vbatts-tar-split-0.11.2) + ("go-github-com-ulikunitz-xz-0.5.10" + ,go-github-com-ulikunitz-xz-0.5.10) + ("go-github-com-stretchr-testify-1.7.0" + ,go-github-com-stretchr-testify-1.7.0) + ("go-github-com-sirupsen-logrus-1.8.1" + ,go-github-com-sirupsen-logrus-1.8.1) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-ostreedev-ostree-go-0.0.0-20190702140239-759a8c1ac913" + ,go-github-com-ostreedev-ostree-go-0.0.0-20190702140239-759a8c1ac913) + ("go-github-com-opencontainers-selinux-1.9.1" + ,go-github-com-opencontainers-selinux-1.9.1) + ("go-github-com-opencontainers-image-spec-1.0.2-0.20210819154149-5ad6f50d6283" + ,go-github-com-opencontainers-image-spec-1.0.2-0.20210819154149-5ad6f50d6283) + ("go-github-com-opencontainers-go-digest-1.0.0" + ,go-github-com-opencontainers-go-digest-1.0.0) + ("go-github-com-mtrmac-gpgme-0.1.2" ,go-github-com-mtrmac-gpgme-0.1.2) + ("go-github-com-morikuni-aec-1.0.0" ,go-github-com-morikuni-aec-1.0.0) + ("go-github-com-manifoldco-promptui-0.9.0" + ,go-github-com-manifoldco-promptui-0.9.0) + ("go-github-com-klauspost-pgzip-1.2.5" + ,go-github-com-klauspost-pgzip-1.2.5) + ("go-github-com-klauspost-compress-1.13.6" + ,go-github-com-klauspost-compress-1.13.6) + ("go-github-com-imdario-mergo-0.3.12" + ,go-github-com-imdario-mergo-0.3.12) + ("go-github-com-hashicorp-go-multierror-1.1.1" + ,go-github-com-hashicorp-go-multierror-1.1.1) + ("go-github-com-gorilla-mux-1.7.4" ,go-github-com-gorilla-mux-1.7.4) + ("go-github-com-google-uuid-1.3.0" ,go-github-com-google-uuid-1.3.0) + ("go-github-com-golang-groupcache-0.0.0-20210331224755-41bb18bfe9da" + ,go-github-com-golang-groupcache-0.0.0-20210331224755-41bb18bfe9da) + ("go-github-com-ghodss-yaml-1.0.0" ,go-github-com-ghodss-yaml-1.0.0) + ("go-github-com-docker-libtrust-0.0.0-20160708172513-aabc10ec26b7" + ,go-github-com-docker-libtrust-0.0.0-20160708172513-aabc10ec26b7) + ("go-github-com-docker-go-connections-0.4.0" + ,go-github-com-docker-go-connections-0.4.0) + ("go-github-com-docker-docker-credential-helpers-0.6.4" + ,go-github-com-docker-docker-credential-helpers-0.6.4) + ("go-github-com-docker-docker-20.10.11+incompatible" + ,go-github-com-docker-docker-20.10.11+incompatible) + ("go-github-com-docker-distribution-2.7.1+incompatible" + ,go-github-com-docker-distribution-2.7.1+incompatible) + ("go-github-com-containers-storage-1.37.0" + ,go-github-com-containers-storage-1.37.0) + ("go-github-com-containers-ocicrypt-1.1.2" + ,go-github-com-containers-ocicrypt-1.1.2) + ("go-github-com-containers-libtrust-0.0.0-20190913040956-14b96171aa3b" + ,go-github-com-containers-libtrust-0.0.0-20190913040956-14b96171aa3b) + ("go-github-com-containerd-containerd-1.5.7" + ,go-github-com-containerd-containerd-1.5.7) + ("go-github-com-burntsushi-toml-0.4.1" + ,go-github-com-burntsushi-toml-0.4.1) + ("go-github-com-14rcole-gopopulate-0.0.0-20180821133914-b175b219e774" + ,go-github-com-14rcole-gopopulate-0.0.0-20180821133914-b175b219e774))) + (home-page "https://github.com/containers/image") + (synopsis "") + (description + "The package image provides libraries and commands to interact with container images. +") + (license license:asl2.0))) + +(define-public go-github-com-cyphar-filepath-securejoin-0.2.3 + (package + (name "go-github-com-cyphar-filepath-securejoin") + (version "0.2.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cyphar/filepath-securejoin") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0w03d8hslwfhcnfqck21agzs7y0sc6gpwfz53md8fv26ishwxppy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/cyphar/filepath-securejoin")) + (home-page "https://github.com/cyphar/filepath-securejoin") + (synopsis #f) + (description + "Package securejoin is an implementation of the hopefully-soon-to-be-included +SecureJoin helper that is meant to be part of the \"path/filepath\" package. +The purpose of this project is to provide a PoC implementation to make the +SecureJoin proposal (@url{https://github.com/golang/go/issues/20126,https://github.com/golang/go/issues/20126}) more +tangible. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20200223170610-d5e6a3e2c0ae + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200223170610-d5e6a3e2c0ae") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0lz7vm5dz2p14fzq2j4m1l9p392cl0fa73aaf45gln07ylfajk4n")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-mattn-go-colorable-0.1.8 + (package + (name "go-github-com-mattn-go-colorable") + (version "0.1.8") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mattn/go-colorable") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0q34zqwbnls72md8q8mhj368s7p3i4xspvs3rk8fs76s0pn7dr2l")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mattn/go-colorable")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20200223170610-d5e6a3e2c0ae" + ,go-golang-org-x-sys-0.0.0-20200223170610-d5e6a3e2c0ae) + ("go-github-com-mattn-go-isatty-0.0.12" + ,go-github-com-mattn-go-isatty-0.0.12))) + (home-page "https://github.com/mattn/go-colorable") + (synopsis "go-colorable") + (description "Colorable writer for windows.") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20200116001909-b77594299b42 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200116001909-b77594299b42") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0isfm6kmh4fjhh6m7mrb3zvdjka2y31c5habr5kydl7rg0lwkabv")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-mattn-go-isatty-0.0.12 + (package + (name "go-github-com-mattn-go-isatty") + (version "0.0.12") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mattn/go-isatty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1dfsh27d52wmz0nmmzm2382pfrs2fcijvh6cgir7jbb4pnigr5w4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mattn/go-isatty")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20200116001909-b77594299b42" + ,go-golang-org-x-sys-0.0.0-20200116001909-b77594299b42))) + (home-page "https://github.com/mattn/go-isatty") + (synopsis "go-isatty") + (description "Package isatty implements interface to isatty +") + (license license:expat))) + +(define-public go-github-com-fatih-color-1.12.0 + (package + (name "go-github-com-fatih-color") + (version "1.12.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/fatih/color") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0r6r4vh9aiz8ny2whvpq288x8shkyvpj38g5pqw5840ryq38chig")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/fatih/color")) + (propagated-inputs + `(("go-github-com-mattn-go-isatty-0.0.12" + ,go-github-com-mattn-go-isatty-0.0.12) + ("go-github-com-mattn-go-colorable-0.1.8" + ,go-github-com-mattn-go-colorable-0.1.8))) + (home-page "https://github.com/fatih/color") + (synopsis "color") + (description + "Package color is an ANSI color package to output colorized or SGR defined +output to the standard output. The API can be used in several way, pick one +that suits you. +") + (license license:expat))) + +(define-public go-github-com-go-log-log-0.2.0 + (package + (name "go-github-com-go-log-log") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/go-log/log") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1idnqv4yvkmdh3wcsgvhcpak9z6ix8dsifdjq5kfbbnskdq5rmvg")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/go-log/log")) + (home-page "https://github.com/go-log/log") + (synopsis "Log") + (description "Package log provides a log interface +") + (license license:expat))) + +(define-public go-github-com-godbus-dbus-4.1.0+incompatible + (package + (name "go-github-com-godbus-dbus") + (version "4.1.0+incompatible") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/godbus/dbus") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ckvg15zdsgmbn4mi36cazkb407ixc9mmyf7vwj8b8wi3d00rgn9")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/godbus/dbus")) + (home-page "https://github.com/godbus/dbus") + (synopsis "dbus") + (description + "Package dbus implements bindings to the D-Bus message bus system. +") + (license license:bsd-2))) + +(define-public go-github-com-google-uuid-1.3.0 + (package + (name "go-github-com-google-uuid") + (version "1.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/uuid") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0imkw52m7fzrwsdj2rfrk3zbplqfbwncyv6hv89xw0vdw3jpk122")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/uuid")) + (home-page "https://github.com/google/uuid") + (synopsis "uuid") + (description "Package uuid generates and inspects UUIDs. +") + (license license:bsd-3))) + +(define-public go-github-com-gorilla-websocket-1.4.2 + (package + (name "go-github-com-gorilla-websocket") + (version "1.4.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gorilla/websocket") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0mkm9w6kjkrlzab5wh8p4qxkc0icqawjbvr01d2nk6ykylrln40s")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/gorilla/websocket")) + (home-page "https://github.com/gorilla/websocket") + (synopsis "Gorilla WebSocket") + (description + "Package websocket implements the WebSocket protocol defined in @url{https://rfc-editor.org/rfc/rfc6455.html,RFC 6455}. +") + (license license:bsd-2))) + +(define-public go-github-com-satori-go-uuid-1.2.1-0.20180404165556-75cca531ea76 + (package + (name "go-github-com-satori-go-uuid") + (version "1.2.1-0.20180404165556-75cca531ea76") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/satori/go.uuid") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0fi1rc2zl0vyyah6iy8cvsjyxipp6pnzb19x40qkq3j1qlra20qy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/satori/go.uuid")) + (home-page "https://github.com/satori/go.uuid") + (synopsis "UUID package for Go language") + (description + "Package uuid provides implementation of Universally Unique Identifier (UUID). +Supported versions are 1, 3, 4 and 5 (as specified in @url{https://rfc-editor.org/rfc/rfc4122.html,RFC 4122}) and +version 2 (as specified in DCE 1.1). +") + (license license:expat))) + +(define-public go-github-com-sebdah-goldie-v2-2.5.3 + (package + (name "go-github-com-sebdah-goldie-v2") + (version "2.5.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sebdah/goldie") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12gji9p6b6zlkisbd3ww103zwd5chlwkb6h5dppfrmgxim84n5n0")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/sebdah/goldie/v2")) + (propagated-inputs + `(("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0) + ("go-github-com-sergi-go-diff-1.0.0" + ,go-github-com-sergi-go-diff-1.0.0) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) + (home-page "https://github.com/sebdah/goldie") + (synopsis "goldie - Golden test utility for Go") + (description + "Package goldie provides test assertions based on golden files. It's +typically used for testing responses with larger data bodies. +") + (license license:expat))) + +(define-public go-github-com-russross-blackfriday-v2-2.0.1 + (package + (name "go-github-com-russross-blackfriday-v2") + (version "2.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/russross/blackfriday") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0nlz7isdd4rgnwzs68499hlwicxz34j2k2a0b8jy0y7ycd2bcr5j")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/russross/blackfriday/v2")) + (home-page "https://github.com/russross/blackfriday") + (synopsis "Blackfriday") + (description "Package blackfriday is a markdown processor. +") + (license license:bsd-2))) + +(define-public go-github-com-shurcool-sanitized-anchor-name-1.0.0 + (package + (name "go-github-com-shurcool-sanitized-anchor-name") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/shurcooL/sanitized_anchor_name") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1gv9p2nr46z80dnfjsklc6zxbgk96349sdsxjz05f3z6wb6m5l8f")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/shurcooL/sanitized_anchor_name")) + (home-page "https://github.com/shurcooL/sanitized_anchor_name") + (synopsis "sanitized_anchor_name") + (description + "Package sanitized_anchor_name provides a func to create sanitized anchor names. +") + (license license:expat))) + +(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0 + (package + (name "go-github-com-cpuguy83-go-md2man-v2") + (version "2.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cpuguy83/go-md2man") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) + (propagated-inputs + `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" + ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) + ("go-github-com-russross-blackfriday-v2-2.0.1" + ,go-github-com-russross-blackfriday-v2-2.0.1) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0))) + (home-page "https://github.com/cpuguy83/go-md2man") + (synopsis "go-md2man") + (description "Converts markdown into roff (man pages).") + (license license:expat))) + +(define-public go-github-com-hashicorp-go-cleanhttp-0.5.1 + (package + (name "go-github-com-hashicorp-go-cleanhttp") + (version "0.5.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/go-cleanhttp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "07kx3fhryqmaw3czacmm11qwx63js2q8cfq967vphk7xg9q377kk")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/go-cleanhttp")) + (home-page "https://github.com/hashicorp/go-cleanhttp") + (synopsis "cleanhttp") + (description + "Package cleanhttp offers convenience utilities for acquiring \"clean\" +http.Transport and http.Client structs. +") + (license license:mpl2.0))) + +(define-public go-github-com-mitchellh-go-homedir-1.0.0 + (package + (name "go-github-com-mitchellh-go-homedir") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mitchellh/go-homedir") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0f0z0aa4wivk4z1y503dmnw0k0g0g403dly8i4q263gfshs82sbq")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mitchellh/go-homedir")) + (home-page "https://github.com/mitchellh/go-homedir") + (synopsis "go-homedir") + (description + "This is a Go library for detecting the user's home directory without +the use of cgo, so the library can be used in cross-compilation environments.") + (license license:expat))) + +(define-public go-github-com-hashicorp-go-rootcerts-1.0.0 + (package + (name "go-github-com-hashicorp-go-rootcerts") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/go-rootcerts") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wply5zhj1rcybr932zbwm1i18q5wr7kgkhnz6bw6mk1n9yr8lfj")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/go-rootcerts")) + (propagated-inputs + `(("go-github-com-mitchellh-go-homedir-1.0.0" + ,go-github-com-mitchellh-go-homedir-1.0.0))) + (home-page "https://github.com/hashicorp/go-rootcerts") + (synopsis "rootcerts") + (description + "Package rootcerts contains functions to aid in loading CA certificates for +TLS connections. +") + (license license:mpl2.0))) + +(define-public go-github-com-armon-circbuf-0.0.0-20150827004946-bbbad097214e + (package + (name "go-github-com-armon-circbuf") + (version "0.0.0-20150827004946-bbbad097214e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/armon/circbuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1idpr0lzb2px2p3wgfq2276yl7jpaz43df6n91kf790404s4zmk3")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/armon/circbuf")) + (home-page "https://github.com/armon/circbuf") + (synopsis "circbuf") + (description + "This repository provides the @code{circbuf} package. This provides a @code{Buffer} object +which is a circular (or ring) buffer. It has a fixed size, but can be written +to infinitely. Only the last @code{size} bytes are ever retained. The buffer implements +the @code{io.Writer} interface.") + (license license:expat))) + +(define-public go-github-com-hashicorp-go-syslog-1.0.0 + (package + (name "go-github-com-hashicorp-go-syslog") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/go-syslog") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "09vccqggz212cg0jir6vv708d6mx0f9w5bxrcdah3h6chgmal6v1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/go-syslog")) + (home-page "https://github.com/hashicorp/go-syslog") + (synopsis "go-syslog") + (description + "This repository provides a very simple @code{gsyslog} package. The point of this +package is to allow safe importing of syslog without introducing cross-compilation +issues. The stdlib @code{log/syslog} cannot be imported on Windows systems, and without +conditional compilation this adds complications.") + (license license:expat))) + +(define-public go-github-com-hashicorp-go-uuid-1.0.1 + (package + (name "go-github-com-hashicorp-go-uuid") + (version "1.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/go-uuid") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0jvb88m0rq41bwgirsadgw7mnayl27av3gd2vqa3xvxp3fy0hp5k")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/go-uuid")) + (home-page "https://github.com/hashicorp/go-uuid") + (synopsis "uuid") + (description + "Generates UUID-format strings using high quality, bytes. It is @strong{not} intended to be RFC compliant, merely to use a well-understood string representation of a 128-bit value. It can also parse UUID-format strings into their component bytes.") + (license license:mpl2.0))) + +(define-public go-github-com-hashicorp-logutils-1.0.0 + (package + (name "go-github-com-hashicorp-logutils") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/logutils") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "076wf4sh5p3f953ndqk1cc0x7jhmlqrxak9953rz79rcdw77rjvv")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/logutils")) + (home-page "https://github.com/hashicorp/logutils") + (synopsis "logutils") + (description + "Package logutils augments the standard log package with levels. +") + (license license:mpl2.0))) + +(define-public go-github-com-hashicorp-go-net-0.0.1 + (package + (name "go-github-com-hashicorp-go-net") + (version "0.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/go.net") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "06arwi95xp5rxyz7rndvhc3wlwg0jn9a5z6djf3yyg5h9zfab9i4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/go.net")) + (home-page "https://github.com/hashicorp/go.net") + (synopsis #f) + (description #f) + (license license:bsd-3))) + +(define-public go-github-com-hashicorp-mdns-1.0.0 + (package + (name "go-github-com-hashicorp-mdns") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/mdns") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0qr4l91hhi97s8a1isnrw3s4q8pjzacqiks870vnwh15v7ig3axd")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/mdns")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20181026203630-95b1ffbd15a5" + ,go-golang-org-x-sys-0.0.0-20181026203630-95b1ffbd15a5) + ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" + ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) + ("go-golang-org-x-net-0.0.0-20181023162649-9b4f9f5ad519" + ,go-golang-org-x-net-0.0.0-20181023162649-9b4f9f5ad519) + ("go-golang-org-x-crypto-0.0.0-20181029021203-45a5f77698d3" + ,go-golang-org-x-crypto-0.0.0-20181029021203-45a5f77698d3) + ("go-github-com-miekg-dns-1.0.14" ,go-github-com-miekg-dns-1.0.14) + ("go-github-com-hashicorp-go-net-0.0.1" + ,go-github-com-hashicorp-go-net-0.0.1))) + (home-page "https://github.com/hashicorp/mdns") + (synopsis "mdns") + (description + "Simple mDNS client/server library in Golang. mDNS or Multicast DNS can be +used to discover services on the local network without the use of an authoritative +DNS server. This enables peer-to-peer discovery. It is important to note that many +networks restrict the use of multicasting, which prevents mDNS from functioning. +Notably, multicast cannot be used in any sort of cloud, or shared infrastructure +environment. However it works well in most office, home, or private infrastructure +environments.") + (license license:expat))) + +(define-public go-github-com-armon-go-metrics-0.0.0-20180917152333-f0300d1749da + (package + (name "go-github-com-armon-go-metrics") + (version "0.0.0-20180917152333-f0300d1749da") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/armon/go-metrics") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "13l7c35ps0r27vxfil2w0xhhc7w5rh00awvlmn4cz0a937b9ffpv")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/armon/go-metrics")) + (home-page "https://github.com/armon/go-metrics") + (synopsis "go-metrics") + (description + "This library provides a @code{metrics} package which can be used to instrument code, +expose application metrics, and profile runtime performance in a flexible manner.") + (license license:expat))) + +(define-public go-github-com-hashicorp-go-uuid-1.0.0 + (package + (name "go-github-com-hashicorp-go-uuid") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/go-uuid") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1jflywlani7583qm4ysph40hsgx3n66n5zr2k84i057fmwa1ypfy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/go-uuid")) + (home-page "https://github.com/hashicorp/go-uuid") + (synopsis "uuid") + (description + "Generates UUID-format strings using high quality, bytes. It is @strong{not} intended to be RFC compliant, merely to use a well-understood string representation of a 128-bit value. It can also parse UUID-format strings into their component bytes.") + (license license:mpl2.0))) + +(define-public go-github-com-hashicorp-go-immutable-radix-1.0.0 + (package + (name "go-github-com-hashicorp-go-immutable-radix") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/go-immutable-radix") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1v3nmsnk1s8bzpclrhirz7iq0g5xxbw9q5gvrg9ss6w9crs72qr6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/go-immutable-radix")) + (propagated-inputs + `(("go-github-com-hashicorp-golang-lru-0.5.0" + ,go-github-com-hashicorp-golang-lru-0.5.0) + ("go-github-com-hashicorp-go-uuid-1.0.0" + ,go-github-com-hashicorp-go-uuid-1.0.0))) + (home-page "https://github.com/hashicorp/go-immutable-radix") + (synopsis "go-immutable-radix") + (description + "This package provides the @code{iradix} package that implements an immutable @url{http://en.wikipedia.org/wiki/Radix_tree,radix tree}. +The package only provides a single @code{Tree} implementation, optimized for sparse nodes.") + (license license:mpl2.0))) + +(define-public go-github-com-hashicorp-go-msgpack-0.5.3 + (package + (name "go-github-com-hashicorp-go-msgpack") + (version "0.5.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/go-msgpack") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "00jv0ajqd58pkb2yyhlrjp0rv1mvb1ijx3yqjyikcmzvk9jb4h5m")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/go-msgpack")) + (home-page "https://github.com/hashicorp/go-msgpack") + (synopsis "go-codec") + (description "This repository contains the @code{go-codec} library.") + (license license:expat))) + +(define-public go-github-com-hashicorp-go-sockaddr-1.0.0 + (package + (name "go-github-com-hashicorp-go-sockaddr") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/go-sockaddr") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1yn1xq8ysn0lszmkygz3a9lgpswbz1p91jv7q8l20s4749a22xgi")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/go-sockaddr")) + (home-page "https://github.com/hashicorp/go-sockaddr") + (synopsis "go-sockaddr") + (description + "Package sockaddr is a Go implementation of the UNIX socket family data types and +related helper functions. +") + (license license:mpl2.0))) + +(define-public go-github-com-miekg-dns-1.0.14 + (package + (name "go-github-com-miekg-dns") + (version "1.0.14") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/miekg/dns") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1qgli6yp59bv6vc6zag84cwxmcxgnyxm1q2f301yyijk3wy5b2ak")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/miekg/dns")) + (home-page "https://github.com/miekg/dns") + (synopsis "Alternative (more granular) approach to a DNS library") + (description + "Package dns implements a full featured interface to the Domain Name System. +Both server- and client-side programming is supported. The package allows +complete control over what is sent out to the DNS. The API follows the +less-is-more principle, by presenting a small, clean interface. +") + (license license:bsd-3))) + +(define-public go-github-com-sean--seed-0.0.0-20170313163322-e2103e2c3529 + (package + (name "go-github-com-sean--seed") + (version "0.0.0-20170313163322-e2103e2c3529") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sean-/seed") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0glir8jxi1w7aga2jwdb63pp1h8q4whknili7xixsqzwyy716125")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/sean-/seed")) + (home-page "https://github.com/sean-/seed") + (synopsis "- Quickly Seed Go's Random Number Generator") + (description + "Boiler-plate to securely @url{https://en.wikipedia.org/wiki/Random_seed,seed} Go's +random number generator (if possible). This library isn't anything fancy, it's +just a canonical way of seeding Go's random number generator. Cribbed from +@url{https://github.com/hashicorp/nomad/commit/f89a993ec6b91636a3384dd568898245fbc273a1,(code Nomad)} +before it was moved into +@url{https://github.com/hashicorp/consul/commit/d695bcaae6e31ee307c11fdf55bb0bf46ea9fcf4,(code Consul)} +and made into a helper function, and now further modularized to be a super +lightweight and reusable library.") + (license #f))) + +(define-public go-golang-org-x-crypto-0.0.0-20181029021203-45a5f77698d3 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20181029021203-45a5f77698d3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0636jjj89wkzqchajwwzgcn4aafc334p70nawh9jzavg2mkx0ch4")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20181023162649-9b4f9f5ad519 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20181023162649-9b4f9f5ad519") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "06hvxy113h76f31gv1mq6vdr6xja1zv0fdig686l2b4y2b6swych")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20181026203630-95b1ffbd15a5 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20181026203630-95b1ffbd15a5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "06c3lf93wzf5kkfmzmgn75x4c0a7159vrwjrqh6zh9zxzqq5whpq")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-hashicorp-memberlist-0.1.3 + (package + (name "go-github-com-hashicorp-memberlist") + (version "0.1.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/memberlist") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0k1spq7dagvqj3baqw2dhxx1zxrb02y6m3apzr3a7gyirii890g3")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/memberlist")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20181026203630-95b1ffbd15a5" + ,go-golang-org-x-sys-0.0.0-20181026203630-95b1ffbd15a5) + ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" + ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) + ("go-golang-org-x-net-0.0.0-20181023162649-9b4f9f5ad519" + ,go-golang-org-x-net-0.0.0-20181023162649-9b4f9f5ad519) + ("go-golang-org-x-crypto-0.0.0-20181029021203-45a5f77698d3" + ,go-golang-org-x-crypto-0.0.0-20181029021203-45a5f77698d3) + ("go-github-com-stretchr-testify-1.2.2" + ,go-github-com-stretchr-testify-1.2.2) + ("go-github-com-sean--seed-0.0.0-20170313163322-e2103e2c3529" + ,go-github-com-sean--seed-0.0.0-20170313163322-e2103e2c3529) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-pascaldekloe-goe-0.0.0-20180627143212-57f6aae5913c" + ,go-github-com-pascaldekloe-goe-0.0.0-20180627143212-57f6aae5913c) + ("go-github-com-miekg-dns-1.0.14" ,go-github-com-miekg-dns-1.0.14) + ("go-github-com-hashicorp-go-sockaddr-1.0.0" + ,go-github-com-hashicorp-go-sockaddr-1.0.0) + ("go-github-com-hashicorp-go-multierror-1.0.0" + ,go-github-com-hashicorp-go-multierror-1.0.0) + ("go-github-com-hashicorp-go-msgpack-0.5.3" + ,go-github-com-hashicorp-go-msgpack-0.5.3) + ("go-github-com-hashicorp-go-immutable-radix-1.0.0" + ,go-github-com-hashicorp-go-immutable-radix-1.0.0) + ("go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c" + ,go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1) + ("go-github-com-armon-go-metrics-0.0.0-20180917152333-f0300d1749da" + ,go-github-com-armon-go-metrics-0.0.0-20180917152333-f0300d1749da))) + (home-page "https://github.com/hashicorp/memberlist") + (synopsis "memberlist") + (description + "memberlist is a library that manages cluster +membership and member failure detection using a gossip based protocol. +") + (license license:mpl2.0))) + +(define-public go-github-com-armon-go-radix-0.0.0-20180808171621-7fddfc383310 + (package + (name "go-github-com-armon-go-radix") + (version "0.0.0-20180808171621-7fddfc383310") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/armon/go-radix") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0y8chspn14n9xpsfb9gxnnf819rfpriaz64v81p7873a42kkhxb4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/armon/go-radix")) + (home-page "https://github.com/armon/go-radix") + (synopsis "go-radix") + (description + "This package provides the @code{radix} package that implements a @url{http://en.wikipedia.org/wiki/Radix_tree,radix tree}. +The package only provides a single @code{Tree} implementation, optimized for sparse nodes.") + (license license:expat))) + +(define-public go-github-com-bgentry-speakeasy-0.1.0 + (package + (name "go-github-com-bgentry-speakeasy") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/bgentry/speakeasy") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "02dfrj0wyphd3db9zn2mixqxwiz1ivnyc5xc7gkz58l5l27nzp8s")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/bgentry/speakeasy")) + (home-page "https://github.com/bgentry/speakeasy") + (synopsis "Speakeasy") + (description + "This package provides cross-platform Go (#golang) helpers for taking user input +from the terminal while not echoing the input back (similar to @code{getpasswd}). The +package uses syscalls to avoid any dependence on cgo, and is therefore +compatible with cross-compiling.") + (license license:expat))) + +(define-public go-github-com-fatih-color-1.7.0 + (package + (name "go-github-com-fatih-color") + (version "1.7.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/fatih/color") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0v8msvg38r8d1iiq2i5r4xyfx0invhc941kjrsg5gzwvagv55inv")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/fatih/color")) + (home-page "https://github.com/fatih/color") + (synopsis "color") + (description + "Package color is an ANSI color package to output colorized or SGR defined +output to the standard output. The API can be used in several way, pick one +that suits you. +") + (license license:expat))) + +(define-public go-github-com-hashicorp-errwrap-1.0.0 + (package + (name "go-github-com-hashicorp-errwrap") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/errwrap") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0slfb6w3b61xz04r32bi0a1bygc82rjzhqkxj2si2074wynqnr1c")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/errwrap")) + (home-page "https://github.com/hashicorp/errwrap") + (synopsis "errwrap") + (description + "Package errwrap implements methods to formalize error wrapping in Go. +") + (license license:mpl2.0))) + +(define-public go-github-com-hashicorp-go-multierror-1.0.0 + (package + (name "go-github-com-hashicorp-go-multierror") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/go-multierror") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "00nyn8llqzbfm8aflr9kwsvpzi4kv8v45c141v88xskxp5xf6z49")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/go-multierror")) + (propagated-inputs + `(("go-github-com-hashicorp-errwrap-1.0.0" + ,go-github-com-hashicorp-errwrap-1.0.0))) + (home-page "https://github.com/hashicorp/go-multierror") + (synopsis "go-multierror") + (description + "@code{go-multierror} is a package for Go that provides a mechanism for +representing a list of @code{error} values as a single @code{error}.") + (license license:mpl2.0))) + +(define-public go-github-com-mattn-go-colorable-0.0.9 + (package + (name "go-github-com-mattn-go-colorable") + (version "0.0.9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mattn/go-colorable") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1nwjmsppsjicr7anq8na6md7b1z84l9ppnlr045hhxjvbkqwalvx")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mattn/go-colorable")) + (home-page "https://github.com/mattn/go-colorable") + (synopsis "go-colorable") + (description "Colorable writer for windows.") + (license license:expat))) + +(define-public go-github-com-mattn-go-isatty-0.0.3 + (package + (name "go-github-com-mattn-go-isatty") + (version "0.0.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mattn/go-isatty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "06w45aqz2a6yrk25axbly2k5wmsccv8cspb94bfmz4izvw8h927n")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mattn/go-isatty")) + (home-page "https://github.com/mattn/go-isatty") + (synopsis "go-isatty") + (description "Package isatty implements interface to isatty +") + (license license:expat))) + +(define-public go-github-com-posener-complete-1.1.1 + (package + (name "go-github-com-posener-complete") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/posener/complete") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1nbdiybjizbaxbf5q0xwbq0cjqw4bl6jggvsjzrpif0w86fcjda2")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/posener/complete")) + (home-page "https://github.com/posener/complete") + (synopsis "complete") + (description + "Package complete provides a tool for bash writing bash completion in go, and bash completion for the go command line. +") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20180823144017-11551d06cbcc + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20180823144017-11551d06cbcc") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0j34525b9smcyjqmxvvqgcfn87kkx3b2izidmjp2cmhjxzjrgpwm")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-mitchellh-cli-1.0.0 + (package + (name "go-github-com-mitchellh-cli") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mitchellh/cli") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1i9kmr7rcf10d2hji8h4247hmc0nbairv7a0q51393aw2h1bnwg2")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mitchellh/cli")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20180823144017-11551d06cbcc" + ,go-golang-org-x-sys-0.0.0-20180823144017-11551d06cbcc) + ("go-github-com-posener-complete-1.1.1" + ,go-github-com-posener-complete-1.1.1) + ("go-github-com-mattn-go-isatty-0.0.3" + ,go-github-com-mattn-go-isatty-0.0.3) + ("go-github-com-mattn-go-colorable-0.0.9" + ,go-github-com-mattn-go-colorable-0.0.9) + ("go-github-com-hashicorp-go-multierror-1.0.0" + ,go-github-com-hashicorp-go-multierror-1.0.0) + ("go-github-com-fatih-color-1.7.0" ,go-github-com-fatih-color-1.7.0) + ("go-github-com-bgentry-speakeasy-0.1.0" + ,go-github-com-bgentry-speakeasy-0.1.0) + ("go-github-com-armon-go-radix-0.0.0-20180808171621-7fddfc383310" + ,go-github-com-armon-go-radix-0.0.0-20180808171621-7fddfc383310))) + (home-page "https://github.com/mitchellh/cli") + (synopsis "Go CLI Library") + (description + "cli is a library for implementing powerful command-line interfaces in Go. +cli is the library that powers the CLI for +@url{https://github.com/mitchellh/packer,Packer}, +@url{https://github.com/hashicorp/serf,Serf}, +@url{https://github.com/hashicorp/consul,Consul}, +@url{https://github.com/hashicorp/vault,Vault}, +@url{https://github.com/hashicorp/terraform,Terraform}, and +@url{https://github.com/hashicorp/nomad,Nomad}.") + (license license:mpl2.0))) + +(define-public go-github-com-mitchellh-gox-0.4.0 + (package + (name "go-github-com-mitchellh-gox") + (version "0.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mitchellh/gox") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1q4fdkw904mrmh1q5z8pfd3r0gcn5dm776kldqawddy93iiwnp8r")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mitchellh/gox")) + (home-page "https://github.com/mitchellh/gox") + (synopsis "Gox - Simple Go Cross Compilation") + (description + "Gox is a simple, no-frills tool for Go cross compilation that behaves a +lot like standard @code{go build}. Gox will parallelize builds for multiple +platforms. Gox will also build the cross-compilation toolchain for you.") + (license license:mpl2.0))) + +(define-public go-github-com-mitchellh-iochan-1.0.0 + (package + (name "go-github-com-mitchellh-iochan") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mitchellh/iochan") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "058n9bbf536f2nw3pbs7pysrg9cqvgkb28z2zf5wjyrzrknyk53g")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mitchellh/iochan")) + (home-page "https://github.com/mitchellh/iochan") + (synopsis "iochan") + (description + "iochan is a Go library for treating @code{io} readers and writers like channels. +This is useful when sometimes you wish to use @code{io.Reader} and such in @code{select} +statements.") + (license license:expat))) + +(define-public go-github-com-mitchellh-mapstructure-0.0.0-20160808181253-ca63d7c062ee + (package + (name "go-github-com-mitchellh-mapstructure") + (version "0.0.0-20160808181253-ca63d7c062ee") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mitchellh/mapstructure") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1yjwhgi57l5fxlmpdchipdd4jasdn1sa8ccl2f2486v06rv6z7gr")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mitchellh/mapstructure")) + (home-page "https://github.com/mitchellh/mapstructure") + (synopsis "mapstructure") + (description + "Package mapstructure exposes functionality to convert one arbitrary +Go type into another, typically to convert a map[string]interface{} +into a native Go structure. +") + (license license:expat))) + +(define-public go-github-com-ryanuber-columnize-0.0.0-20160712163229-9b3edd62028f + (package + (name "go-github-com-ryanuber-columnize") + (version "0.0.0-20160712163229-9b3edd62028f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/ryanuber/columnize") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ya1idkbb0a9fjlhkcnh5a9yvpwzwfmbyg7d56lpplwr9rqi1da4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/ryanuber/columnize")) + (home-page "https://github.com/ryanuber/columnize") + (synopsis "Columnize") + (description "Easy column-formatted output for golang") + (license license:expat))) + +(define-public go-golang-org-x-net-0.0.0-20181201002055-351d144fa1fc + (package + (name "go-golang-org-x-net") + (version "0.0.0-20181201002055-351d144fa1fc") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1c5x25qjyz83y92bq0lll5kmznyi3m02wd4c54scgf0866gy938k")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-github-com-hashicorp-serf-0.8.2 + (package + (name "go-github-com-hashicorp-serf") + (version "0.8.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/serf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0nrslghvdjhaczr2xp9mn8xgcx1dxl4jgpbk0l61ssmxahpx4iyc")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/serf")) + (propagated-inputs + `(("go-golang-org-x-net-0.0.0-20181201002055-351d144fa1fc" + ,go-golang-org-x-net-0.0.0-20181201002055-351d144fa1fc) + ("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0) + ("go-github-com-ryanuber-columnize-0.0.0-20160712163229-9b3edd62028f" + ,go-github-com-ryanuber-columnize-0.0.0-20160712163229-9b3edd62028f) + ("go-github-com-mitchellh-mapstructure-0.0.0-20160808181253-ca63d7c062ee" + ,go-github-com-mitchellh-mapstructure-0.0.0-20160808181253-ca63d7c062ee) + ("go-github-com-mitchellh-iochan-1.0.0" + ,go-github-com-mitchellh-iochan-1.0.0) + ("go-github-com-mitchellh-gox-0.4.0" + ,go-github-com-mitchellh-gox-0.4.0) + ("go-github-com-mitchellh-cli-1.0.0" + ,go-github-com-mitchellh-cli-1.0.0) + ("go-github-com-hashicorp-memberlist-0.1.3" + ,go-github-com-hashicorp-memberlist-0.1.3) + ("go-github-com-hashicorp-mdns-1.0.0" + ,go-github-com-hashicorp-mdns-1.0.0) + ("go-github-com-hashicorp-logutils-1.0.0" + ,go-github-com-hashicorp-logutils-1.0.0) + ("go-github-com-hashicorp-go-uuid-1.0.1" + ,go-github-com-hashicorp-go-uuid-1.0.1) + ("go-github-com-hashicorp-go-syslog-1.0.0" + ,go-github-com-hashicorp-go-syslog-1.0.0) + ("go-github-com-hashicorp-go-msgpack-0.5.3" + ,go-github-com-hashicorp-go-msgpack-0.5.3) + ("go-github-com-armon-go-metrics-0.0.0-20180917152333-f0300d1749da" + ,go-github-com-armon-go-metrics-0.0.0-20180917152333-f0300d1749da) + ("go-github-com-armon-circbuf-0.0.0-20150827004946-bbbad097214e" + ,go-github-com-armon-circbuf-0.0.0-20150827004946-bbbad097214e))) + (home-page "https://github.com/hashicorp/serf") + (synopsis "Serf") + (description + "Serf is a decentralized solution for service discovery and orchestration +that is lightweight, highly available, and fault tolerant.") + (license license:mpl2.0))) + +(define-public go-github-com-mitchellh-mapstructure-1.1.2 + (package + (name "go-github-com-mitchellh-mapstructure") + (version "1.1.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mitchellh/mapstructure") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03bpv28jz9zhn4947saqwi328ydj7f6g6pf1m2d4m5zdh5jlfkrr")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mitchellh/mapstructure")) + (home-page "https://github.com/mitchellh/mapstructure") + (synopsis "mapstructure") + (description + "Package mapstructure exposes functionality to convert one arbitrary +Go type into another, typically to convert a map[string]interface{} +into a native Go structure. +") + (license license:expat))) + +(define-public go-github-com-pascaldekloe-goe-0.0.0-20180627143212-57f6aae5913c + (package + (name "go-github-com-pascaldekloe-goe") + (version "0.0.0-20180627143212-57f6aae5913c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pascaldekloe/goe") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1dqd3mfb4z2vmv6pg6fhgvfc53vhndk24wcl9lj1rz02n6m279fq")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pascaldekloe/goe")) + (home-page "https://github.com/pascaldekloe/goe") + (synopsis "Go Enterprise") + (description + "Common enterprise features for the Go programming language (golang).") + (license license:cc0))) + +(define-public go-github-com-stretchr-testify-1.3.0 + (package + (name "go-github-com-stretchr-testify") + (version "1.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wjchp2c8xbgcbbq32w3kvblk6q6yn533g78nxl6iskq6y95lxsy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (propagated-inputs + `(("go-github-com-stretchr-objx-0.1.0" + ,go-github-com-stretchr-objx-0.1.0) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.0" + ,go-github-com-davecgh-go-spew-1.1.0))) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +") + (license license:expat))) + +(define-public go-github-com-hashicorp-consul-api-1.1.0 + (package + (name "go-github-com-hashicorp-consul-api") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/consul") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0xm3gl8i7pgsbsc2397bwh9hp2dwnk4cmw5y05acqn3zpyp84sbv")))) + (build-system go-build-system) + (arguments + '(#:import-path + "github.com/hashicorp/consul/api" + #:unpack-path + "github.com/hashicorp/consul")) + (propagated-inputs + `(("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0) + ("go-github-com-pascaldekloe-goe-0.0.0-20180627143212-57f6aae5913c" + ,go-github-com-pascaldekloe-goe-0.0.0-20180627143212-57f6aae5913c) + ("go-github-com-mitchellh-mapstructure-1.1.2" + ,go-github-com-mitchellh-mapstructure-1.1.2) + ("go-github-com-hashicorp-serf-0.8.2" + ,go-github-com-hashicorp-serf-0.8.2) + ("go-github-com-hashicorp-go-uuid-1.0.1" + ,go-github-com-hashicorp-go-uuid-1.0.1) + ("go-github-com-hashicorp-go-rootcerts-1.0.0" + ,go-github-com-hashicorp-go-rootcerts-1.0.0) + ("go-github-com-hashicorp-go-cleanhttp-0.5.1" + ,go-github-com-hashicorp-go-cleanhttp-0.5.1))) + (home-page "https://github.com/hashicorp/consul") + (synopsis "Consul API client") + (description + "This package provides the @code{api} package which attempts to +provide programmatic access to the full Consul API.") + (license license:mpl2.0))) + +(define-public go-github-com-golang-mock-1.5.0 + (package + (name "go-github-com-golang-mock") + (version "1.5.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/mock") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12l7p08pwwk3xn70w7rlm28nz6jf4szlzgjxjfmbssyirxxxy8v1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/mock")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" + ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) + ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0))) + (home-page "https://github.com/golang/mock") + (synopsis "gomock") + (description + "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It +integrates well with Go's built-in @code{testing} package, but can be used in other +contexts too.") + (license license:asl2.0))) + +(define-public go-github-com-google-pprof-0.0.0-20210226084205-cbba55b83ad5 + (package + (name "go-github-com-google-pprof") + (version "0.0.0-20210226084205-cbba55b83ad5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/pprof") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0drr44nqq0s3jillcrl8qa7sklxybs083lvashdh2ad62hrs31l7")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/pprof")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" + ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) + ("go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639" + ,go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639) + ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" + ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) + ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" + ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) + ("go-github-com-chzyer-logex-1.1.10" + ,go-github-com-chzyer-logex-1.1.10))) + (home-page "https://github.com/google/pprof") + (synopsis "Introduction") + (description + "pprof is a tool for collection, manipulation and visualization +of performance profiles. +") + (license license:asl2.0))) + +(define-public go-github-com-google-pprof-0.0.0-20210122040257-d980be63207e + (package + (name "go-github-com-google-pprof") + (version "0.0.0-20210122040257-d980be63207e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/pprof") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0vg5z6rp5kfd324w8j12hlx9zv049vxljpc6dyqkj2k9vzzzqkw8")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/pprof")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" + ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) + ("go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639" + ,go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639) + ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" + ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) + ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" + ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) + ("go-github-com-chzyer-logex-1.1.10" + ,go-github-com-chzyer-logex-1.1.10))) + (home-page "https://github.com/google/pprof") + (synopsis "Introduction") + (description + "pprof is a tool for collection, manipulation and visualization +of performance profiles. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-mod-0.4.1 + (package + (name "go-golang-org-x-mod") + (version "0.4.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/mod") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0q4p41223d1xh4jmw9vmywjfi0jzn56gbidrwv5x1bzmx2qmj01n")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/mod")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" + ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) + ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" + ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) + ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" + ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) + (home-page "https://golang.org/x/mod") + (synopsis "mod") + (description + "This repository holds packages for writing tools +that work directly with Go module mechanics. +That is, it is for direct manipulation of Go modules themselves.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20210119194325-5f4716e94777 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20210119194325-5f4716e94777") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1xh4hk0fhkzq096z9qbzqfswmmgg4kvb44qvazpandvlpwm4jds2")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) + ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" + ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) + ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" + ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-oauth2-0.0.0-20210218202405-ba52d332ba99 + (package + (name "go-golang-org-x-oauth2") + (version "0.0.0-20210218202405-ba52d332ba99") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/oauth2") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0fdm3fljk3k4xbpzaywccayrhgqdfl79vl18k4z1zw2pl654bqbg")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/oauth2")) + (propagated-inputs + `(("go-google-golang-org-appengine-1.6.6" + ,go-google-golang-org-appengine-1.6.6) + ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" + ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) + ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) + (home-page "https://golang.org/x/oauth2") + (synopsis "OAuth2 for Go") + (description + "Package oauth2 provides support for making +OAuth2 authorized and authenticated HTTP requests, +as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +It can additionally grant authorization with Bearer JWT. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20210220050731-9a76102bfb43 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20210220050731-9a76102bfb43") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "07qn19yla2w604p3dc8h1c75xj2pxc4fajvg0mf0d4c72d5qiss4")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-google-pprof-0.0.0-20201203190320-1bf35d6f28c2 + (package + (name "go-github-com-google-pprof") + (version "0.0.0-20201203190320-1bf35d6f28c2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/pprof") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "140n5hjk2faanrf6v5h1559g755rgavynz1r99s1n15bmgibysvp")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/pprof")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" + ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) + ("go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639" + ,go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639) + ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" + ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) + ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" + ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) + ("go-github-com-chzyer-logex-1.1.10" + ,go-github-com-chzyer-logex-1.1.10))) + (home-page "https://github.com/google/pprof") + (synopsis "Introduction") + (description + "pprof is a tool for collection, manipulation and visualization +of performance profiles. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-mod-0.4.0 + (package + (name "go-golang-org-x-mod") + (version "0.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/mod") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ri003765yxawq6s8jbkbiaijihwrg980c4qwqsaa5x0sq2psrg1")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/mod")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" + ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) + ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" + ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) + ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" + ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) + (home-page "https://golang.org/x/mod") + (synopsis "mod") + (description + "This repository holds packages for writing tools +that work directly with Go module mechanics. +That is, it is for direct manipulation of Go modules themselves.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20201209123823-ac852fbbde11 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20201209123823-ac852fbbde11") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1zmp2fxgf7792xx15qhzcsfs8k0qv7q3m6jlcj6qvdngfzyvna64")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) + ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" + ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) + ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" + ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20201208233053-a543418bbed2 + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20201208233053-a543418bbed2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0r87p89pm2h75yajsz0g2vvy2q3z9gknc0fmsdm5rh427f1qazfr")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" + ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) + ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" + ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) + ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" + ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) + ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) + ("go-github-com-yuin-goldmark-1.2.1" + ,go-github-com-yuin-goldmark-1.2.1))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-github-com-google-martian-v3-3.1.0 + (package + (name "go-github-com-google-martian-v3") + (version "3.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/martian") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1pr9akggfzj2vw11l7ry4sij0hqslpc3gwx4ynbzyvbjhvh64sbc")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/martian/v3")) + (propagated-inputs + `(("go-golang-org-x-net-0.0.0-20190628185345-da137c7871d7" + ,go-golang-org-x-net-0.0.0-20190628185345-da137c7871d7))) + (home-page "https://github.com/google/martian") + (synopsis "Martian Proxy") + (description + "Package martian provides an HTTP/1.1 proxy with an API for configurable +request and response modifiers. +") + (license license:asl2.0))) + +(define-public go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639 + (package + (name "go-github-com-ianlancetaylor-demangle") + (version "0.0.0-20200824232613-28f6c0f3b639") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/ianlancetaylor/demangle") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0rsq3622gd40f1x1l7caidsxrmzg1993ich2higwd94fqbxs1r83")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/ianlancetaylor/demangle")) + (home-page "https://github.com/ianlancetaylor/demangle") + (synopsis "github.com/ianlancetaylor/demangle") + (description + "Package demangle defines functions that demangle GCC/LLVM +C++ and Rust symbol names. +This package recognizes names that were mangled according to the C++ ABI +defined at @url{http://codesourcery.com/cxx-abi/,http://codesourcery.com/cxx-abi/} and the Rust ABI +defined at +@url{https://rust-lang.github.io/rfcs/2603-rust-symbol-name-mangling-v0.html,https://rust-lang.github.io/rfcs/2603-rust-symbol-name-mangling-v0.html} +") + (license license:bsd-3))) + +(define-public go-github-com-google-pprof-0.0.0-20201023163331-3e6fc7fc9c4c + (package + (name "go-github-com-google-pprof") + (version "0.0.0-20201023163331-3e6fc7fc9c4c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/pprof") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1xmy4579gx45lqsy1cgddnc7nmaqfpiwd2kc5dhf8i0wjjvf18hq")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/pprof")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" + ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) + ("go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639" + ,go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639) + ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" + ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) + ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" + ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) + ("go-github-com-chzyer-logex-1.1.10" + ,go-github-com-chzyer-logex-1.1.10))) + (home-page "https://github.com/google/pprof") + (synopsis "Introduction") + (description + "pprof is a tool for collection, manipulation and visualization +of performance profiles. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-net-0.0.0-20201031054903-ff519b6c9102 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20201031054903-ff519b6c9102") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "162ssgcc0kgj42ajaki0q3j5lwmixqqwkdqcmz41xg1k8wjm7riw")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) + ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" + ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) + ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" + ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-text-0.3.4 + (package + (name "go-golang-org-x-text") + (version "0.3.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "11jdvix83xcl5xnb039y4zrz4x5skzsps0w1jryp6wrar53cydvz")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/text")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" + ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) + (home-page "https://golang.org/x/text") + (synopsis "Go Text") + (description + "text is a repository of text-related packages related to internationalization +(i18n) and localization (l10n), such as character encodings, text +transformations, and locale-specific text handling. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20201110124207-079ba7bd75cd + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20201110124207-079ba7bd75cd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0g4d7cx480rbnpg16qqc4yycd50lpp2mi2qzvzr6hdny91v7sa05")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" + ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) + ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" + ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) + ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" + ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) + ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) + ("go-github-com-yuin-goldmark-1.2.1" + ,go-github-com-yuin-goldmark-1.2.1))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-github-com-google-go-cmp-0.5.2 + (package + (name "go-github-com-google-go-cmp") + (version "0.5.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0qchy411jm9q2l9mf7x3ry2ycaqp9xdhf2nx14qrpzcxfigv2705")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") + (license license:bsd-3))) + +(define-public go-golang-org-x-oauth2-0.0.0-20200902213428-5d25da1a8d43 + (package + (name "go-golang-org-x-oauth2") + (version "0.0.0-20200902213428-5d25da1a8d43") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/oauth2") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "14jx8sxshbvnx4fggn12mlmz000zcrd1a73n1455b1wgg1xfzq3n")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/oauth2")) + (propagated-inputs + `(("go-google-golang-org-appengine-1.6.6" + ,go-google-golang-org-appengine-1.6.6) + ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" + ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) + ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) + (home-page "https://golang.org/x/oauth2") + (synopsis "OAuth2 for Go") + (description + "Package oauth2 provides support for making +OAuth2 authorized and authenticated HTTP requests, +as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +It can additionally grant authorization with Bearer JWT. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20200905004654-be1d3432aa8f + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200905004654-be1d3432aa8f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1kd3szjsazhpgidv5xjv0s26fm4wvv2cr7j4zk8nblnqkic58as2")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20200904185747-39188db58858 + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20200904185747-39188db58858") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ydyylwqzjwijy4rdp2fmvnfh3s27896dx6g74r2wa6vbhisszvk")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" + ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) + ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" + ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) + ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" + ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) + ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) + ("go-github-com-yuin-goldmark-1.2.1" + ,go-github-com-yuin-goldmark-1.2.1))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-google-golang-org-genproto-0.0.0-20200904004341-0bd0a958aa1d + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20200904004341-0bd0a958aa1d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "01xp4ic4jvdv7n984cjgrgqbpbi9m4bj2xnfrs1s1zn1adx0jivs")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.24.0" + ,go-google-golang-org-protobuf-1.24.0) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-golang-protobuf-1.4.1" + ,go-github-com-golang-protobuf-1.4.1))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-google-golang-org-grpc-1.31.1 + (package + (name "go-google-golang-org-grpc") + (version "1.31.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18565vf9i2zc69znd9b8a2iz0kgv5cms0g0ppj93hnhri8rjqagk")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" + ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.3.3" + ,go-github-com-golang-protobuf-1.3.3) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-envoyproxy-go-control-plane-0.9.4" + ,go-github-com-envoyproxy-go-control-plane-0.9.4) + ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" + ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-google-golang-org-api-0.35.0 + (package + (name "go-google-golang-org-api") + (version "0.35.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-api-go-client") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0fgn21lmrlkw44sl0ivjicygwksibb1pclzp3zyh3ivn7ylvk2jd")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/api")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.31.1" ,go-google-golang-org-grpc-1.31.1) + ("go-google-golang-org-genproto-0.0.0-20200904004341-0bd0a958aa1d" + ,go-google-golang-org-genproto-0.0.0-20200904004341-0bd0a958aa1d) + ("go-google-golang-org-appengine-1.6.6" + ,go-google-golang-org-appengine-1.6.6) + ("go-golang-org-x-tools-0.0.0-20200904185747-39188db58858" + ,go-golang-org-x-tools-0.0.0-20200904185747-39188db58858) + ("go-golang-org-x-sys-0.0.0-20200905004654-be1d3432aa8f" + ,go-golang-org-x-sys-0.0.0-20200905004654-be1d3432aa8f) + ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" + ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) + ("go-golang-org-x-oauth2-0.0.0-20200902213428-5d25da1a8d43" + ,go-golang-org-x-oauth2-0.0.0-20200902213428-5d25da1a8d43) + ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" + ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) + ("go-go-opencensus-io-0.22.4" ,go-go-opencensus-io-0.22.4) + ("go-github-com-googleapis-gax-go-v2-2.0.5" + ,go-github-com-googleapis-gax-go-v2-2.0.5) + ("go-github-com-google-go-cmp-0.5.2" + ,go-github-com-google-go-cmp-0.5.2) + ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) + (home-page "https://google.golang.org/api") + (synopsis "Google APIs Client Library for Go") + (description + "Package api is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of +sub-packages. +") + (license license:bsd-3))) + +(define-public go-google-golang-org-genproto-0.0.0-20201109203340-2640f1f9cdfb + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20201109203340-2640f1f9cdfb") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "00mwybjbdpvmlkvmwsjvdb2z8lzzx2a340y4pf3bxqamalhdka0w")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.24.0" + ,go-google-golang-org-protobuf-1.24.0) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-golang-protobuf-1.4.1" + ,go-github-com-golang-protobuf-1.4.1))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-cloud-google-com-go-0.72.0 + (package + (name "go-cloud-google-com-go") + (version "0.72.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-cloud-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1x4gy466jrzab9l02dwd3lvy2dwy84j34zpjkm5xnxh45za6hpxn")))) + (build-system go-build-system) + (arguments '(#:import-path "cloud.google.com/go")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) + ("go-google-golang-org-genproto-0.0.0-20201109203340-2640f1f9cdfb" + ,go-google-golang-org-genproto-0.0.0-20201109203340-2640f1f9cdfb) + ("go-google-golang-org-api-0.35.0" ,go-google-golang-org-api-0.35.0) + ("go-golang-org-x-tools-0.0.0-20201110124207-079ba7bd75cd" + ,go-golang-org-x-tools-0.0.0-20201110124207-079ba7bd75cd) + ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) + ("go-golang-org-x-oauth2-0.0.0-20200902213428-5d25da1a8d43" + ,go-golang-org-x-oauth2-0.0.0-20200902213428-5d25da1a8d43) + ("go-golang-org-x-net-0.0.0-20201031054903-ff519b6c9102" + ,go-golang-org-x-net-0.0.0-20201031054903-ff519b6c9102) + ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" + ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) + ("go-go-opencensus-io-0.22.5" ,go-go-opencensus-io-0.22.5) + ("go-github-com-jstemmer-go-junit-report-0.9.1" + ,go-github-com-jstemmer-go-junit-report-0.9.1) + ("go-github-com-googleapis-gax-go-v2-2.0.5" + ,go-github-com-googleapis-gax-go-v2-2.0.5) + ("go-github-com-google-pprof-0.0.0-20201023163331-3e6fc7fc9c4c" + ,go-github-com-google-pprof-0.0.0-20201023163331-3e6fc7fc9c4c) + ("go-github-com-google-martian-v3-3.1.0" + ,go-github-com-google-martian-v3-3.1.0) + ("go-github-com-google-go-cmp-0.5.2" + ,go-github-com-google-go-cmp-0.5.2) + ("go-github-com-golang-protobuf-1.4.3" + ,go-github-com-golang-protobuf-1.4.3) + ("go-github-com-golang-mock-1.4.4" ,go-github-com-golang-mock-1.4.4) + ("go-cloud-google-com-go-storage-1.10.0" + ,go-cloud-google-com-go-storage-1.10.0))) + (home-page "https://cloud.google.com/go") + (synopsis "Google Cloud Client Libraries for Go") + (description + "Package cloud is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +of sub-packages. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-oauth2-0.0.0-20201109201403-9fd604954f58 + (package + (name "go-golang-org-x-oauth2") + (version "0.0.0-20201109201403-9fd604954f58") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/oauth2") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "06dj14f6jrgpqmf3v3z74zhcin3yj7yp8mzxljm3a3ihq984kz8v")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/oauth2")) + (propagated-inputs + `(("go-google-golang-org-appengine-1.6.6" + ,go-google-golang-org-appengine-1.6.6) + ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" + ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) + ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) + (home-page "https://golang.org/x/oauth2") + (synopsis "OAuth2 for Go") + (description + "Package oauth2 provides support for making +OAuth2 authorized and authenticated HTTP requests, +as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +It can additionally grant authorization with Bearer JWT. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20201201145000-ef89a241ccb3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0a8myxx2mvdr77a003gpy5jmdzbxbnrf5zppmpl4za4sspxlmwif")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20201201161351-ac6f37ff4c2a + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20201201161351-ac6f37ff4c2a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0akq0z86x51rh556fs7icjmmmgdyaa7rq7cmqlngrmvjb79wnwpl")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" + ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) + ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" + ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) + ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" + ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) + ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) + ("go-github-com-yuin-goldmark-1.2.1" + ,go-github-com-yuin-goldmark-1.2.1))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-google-golang-org-genproto-0.0.0-20201201144952-b05cb90ed32e + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20201201144952-b05cb90ed32e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1n9jlhnn5fg7a41ahdril7wgfli43kxplnpxbdbhrkknjra7xdjd")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.24.0" + ,go-google-golang-org-protobuf-1.24.0) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-golang-protobuf-1.4.1" + ,go-github-com-golang-protobuf-1.4.1))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-google-golang-org-api-0.36.0 + (package + (name "go-google-golang-org-api") + (version "0.36.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-api-go-client") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1x6wlavrqi2r6ss3h2kg94p2lfj0z019kc85zm1pajpf0k23fxp7")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/api")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) + ("go-google-golang-org-genproto-0.0.0-20201201144952-b05cb90ed32e" + ,go-google-golang-org-genproto-0.0.0-20201201144952-b05cb90ed32e) + ("go-google-golang-org-appengine-1.6.7" + ,go-google-golang-org-appengine-1.6.7) + ("go-golang-org-x-tools-0.0.0-20201201161351-ac6f37ff4c2a" + ,go-golang-org-x-tools-0.0.0-20201201161351-ac6f37ff4c2a) + ("go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3" + ,go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3) + ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" + ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) + ("go-golang-org-x-oauth2-0.0.0-20201109201403-9fd604954f58" + ,go-golang-org-x-oauth2-0.0.0-20201109201403-9fd604954f58) + ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" + ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) + ("go-go-opencensus-io-0.22.5" ,go-go-opencensus-io-0.22.5) + ("go-github-com-googleapis-gax-go-v2-2.0.5" + ,go-github-com-googleapis-gax-go-v2-2.0.5) + ("go-github-com-google-go-cmp-0.5.4" + ,go-github-com-google-go-cmp-0.5.4) + ("go-cloud-google-com-go-0.72.0" ,go-cloud-google-com-go-0.72.0))) + (home-page "https://google.golang.org/api") + (synopsis "Google APIs Client Library for Go") + (description + "Package api is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of +sub-packages. +") + (license license:bsd-3))) + +(define-public go-google-golang-org-genproto-0.0.0-20201210142538-e3217bee35cc + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20201210142538-e3217bee35cc") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1bzfa58dw7jmkrp46hikbsq1yyk2r29a1gn51sqlilbvf7lq96p9")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.24.0" + ,go-google-golang-org-protobuf-1.24.0) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-golang-protobuf-1.4.1" + ,go-github-com-golang-protobuf-1.4.1))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-cloud-google-com-go-0.74.0 + (package + (name "go-cloud-google-com-go") + (version "0.74.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-cloud-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "09j1qppf2gf14bn06hsyrj9jaxz9vlbs9d7yrxrdvh2234qsbggy")))) + (build-system go-build-system) + (arguments '(#:import-path "cloud.google.com/go")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.34.0" ,go-google-golang-org-grpc-1.34.0) + ("go-google-golang-org-genproto-0.0.0-20201210142538-e3217bee35cc" + ,go-google-golang-org-genproto-0.0.0-20201210142538-e3217bee35cc) + ("go-google-golang-org-api-0.36.0" ,go-google-golang-org-api-0.36.0) + ("go-golang-org-x-tools-0.0.0-20201208233053-a543418bbed2" + ,go-golang-org-x-tools-0.0.0-20201208233053-a543418bbed2) + ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) + ("go-golang-org-x-oauth2-0.0.0-20201208152858-08078c50e5b5" + ,go-golang-org-x-oauth2-0.0.0-20201208152858-08078c50e5b5) + ("go-golang-org-x-net-0.0.0-20201209123823-ac852fbbde11" + ,go-golang-org-x-net-0.0.0-20201209123823-ac852fbbde11) + ("go-golang-org-x-mod-0.4.0" ,go-golang-org-x-mod-0.4.0) + ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" + ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) + ("go-go-opencensus-io-0.22.5" ,go-go-opencensus-io-0.22.5) + ("go-github-com-jstemmer-go-junit-report-0.9.1" + ,go-github-com-jstemmer-go-junit-report-0.9.1) + ("go-github-com-googleapis-gax-go-v2-2.0.5" + ,go-github-com-googleapis-gax-go-v2-2.0.5) + ("go-github-com-google-pprof-0.0.0-20201203190320-1bf35d6f28c2" + ,go-github-com-google-pprof-0.0.0-20201203190320-1bf35d6f28c2) + ("go-github-com-google-martian-v3-3.1.0" + ,go-github-com-google-martian-v3-3.1.0) + ("go-github-com-google-go-cmp-0.5.4" + ,go-github-com-google-go-cmp-0.5.4) + ("go-github-com-golang-protobuf-1.4.3" + ,go-github-com-golang-protobuf-1.4.3) + ("go-github-com-golang-mock-1.4.4" ,go-github-com-golang-mock-1.4.4) + ("go-cloud-google-com-go-storage-1.10.0" + ,go-cloud-google-com-go-storage-1.10.0))) + (home-page "https://cloud.google.com/go") + (synopsis "Google Cloud Client Libraries for Go") + (description + "Package cloud is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +of sub-packages. +") + (license license:asl2.0))) + +(define-public go-github-com-google-go-cmp-0.5.4 + (package + (name "go-github-com-google-go-cmp") + (version "0.5.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ld9pwb6l22g75g1zpa691l7q9ki7pjgpcqhwgdfr3va1zisr5ci")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") + (license license:bsd-3))) + +(define-public go-go-opencensus-io-0.22.5 + (package + (name "go-go-opencensus-io") + (version "0.22.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/census-instrumentation/opencensus-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18s1d7bk28i8gbs6i587ccd31qp3f8gibgd14dpkzs05gyvlccy6")))) + (build-system go-build-system) + (arguments '(#:import-path "go.opencensus.io")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.20.1" ,go-google-golang-org-grpc-1.20.1) + ("go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb" + ,go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb) + ("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) + ("go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd" + ,go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd) + ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" + ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) + ("go-github-com-stretchr-testify-1.4.0" + ,go-github-com-stretchr-testify-1.4.0) + ("go-github-com-google-go-cmp-0.3.0" + ,go-github-com-google-go-cmp-0.3.0) + ("go-github-com-golang-protobuf-1.3.1" + ,go-github-com-golang-protobuf-1.3.1) + ("go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6" + ,go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6))) + (home-page "https://go.opencensus.io") + (synopsis "OpenCensus Libraries for Go") + (description "Package opencensus contains Go support for OpenCensus. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-oauth2-0.0.0-20201208152858-08078c50e5b5 + (package + (name "go-golang-org-x-oauth2") + (version "0.0.0-20201208152858-08078c50e5b5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/oauth2") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0zynwxw47nhwhs6n1c87c9np43lwl9m9z2w2cmdvjwhsisa93b75")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/oauth2")) + (propagated-inputs + `(("go-google-golang-org-appengine-1.6.6" + ,go-google-golang-org-appengine-1.6.6) + ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" + ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) + ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) + (home-page "https://golang.org/x/oauth2") + (synopsis "OAuth2 for Go") + (description + "Package oauth2 provides support for making +OAuth2 authorized and authenticated HTTP requests, +as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +It can additionally grant authorization with Bearer JWT. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20201207232520-09787c993a3a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1nv4mwi9njkkyc7lwmxrjr8ggfh2cf1c67a9bq85dnss81vpj61y")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the +ones provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20210104204734-6f8348627aad + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20210104204734-6f8348627aad") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0pmz8dwjf4gxr1gwnp4iahh3yh09apcf40kvvybycsx4rfjc2gbl")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20210105154028-b0ab187a4818 + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20210105154028-b0ab187a4818") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "157w706lz7j4s7cwgh7j7mf8v1sah5hm4dlmp8isf6vhnqpixdp7")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" + ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) + ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" + ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) + ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" + ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) + ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) + ("go-github-com-yuin-goldmark-1.2.1" + ,go-github-com-yuin-goldmark-1.2.1))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-google-golang-org-genproto-0.0.0-20201214200347-8c77b98c765d + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20201214200347-8c77b98c765d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1bdpss5xmla0gjz66mdk8bqpsdb5i1xz65g30k9cs2h7vrqlwzn4")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.24.0" + ,go-google-golang-org-protobuf-1.24.0) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-golang-protobuf-1.4.1" + ,go-github-com-golang-protobuf-1.4.1))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-github-com-cncf-udpa-go-0.0.0-20200629203442-efcf912fb354 + (package + (name "go-github-com-cncf-udpa-go") + (version "0.0.0-20200629203442-efcf912fb354") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cncf/udpa") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18b1v01h3id5d7v5gqabc4qsaja17r45rn3fvv38nrfx9l4smv0x")))) + (build-system go-build-system) + (arguments + '(#:import-path + "github.com/cncf/udpa/go" + #:unpack-path + "github.com/cncf/udpa")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2) + ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" + ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0))) + (home-page "https://github.com/cncf/udpa") + (synopsis "Description") + (description + "This library has been deprecated in favor of @code{github.com/cncf/xds/go}. All users are recommended to switch their imports.") + (license license:asl2.0))) + +(define-public go-github-com-envoyproxy-go-control-plane-0.9.7 + (package + (name "go-github-com-envoyproxy-go-control-plane") + (version "0.9.7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/envoyproxy/go-control-plane") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0nx5ybyadkjqr29hndn6amhbcqpi1rkfv12bxp0rk3ay045zxsh8")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.23.0" + ,go-google-golang-org-protobuf-1.23.0) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" + ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) + ("go-github-com-stretchr-testify-1.5.1" + ,go-github-com-stretchr-testify-1.5.1) + ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" + ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.2" + ,go-github-com-golang-protobuf-1.4.2) + ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" + ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) + ("go-github-com-cncf-udpa-go-0.0.0-20200629203442-efcf912fb354" + ,go-github-com-cncf-udpa-go-0.0.0-20200629203442-efcf912fb354) + ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" + ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) + (home-page "https://github.com/envoyproxy/go-control-plane") + (synopsis "control-plane") + (description + "This repository contains a Go-based implementation of an API server that +implements the discovery service APIs defined in +@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") + (license license:asl2.0))) + +(define-public go-google-golang-org-grpc-1.34.0 + (package + (name "go-google-golang-org-grpc") + (version "1.34.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0s8y19qvv0zfy2irq8vv12h65v7pw18k6yqfix1j2370yxmsajgm")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.25.0" + ,go-google-golang-org-protobuf-1.25.0) + ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" + ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) + ("go-github-com-google-go-cmp-0.5.0" + ,go-github-com-google-go-cmp-0.5.0) + ("go-github-com-golang-protobuf-1.4.2" + ,go-github-com-golang-protobuf-1.4.2) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-envoyproxy-go-control-plane-0.9.7" + ,go-github-com-envoyproxy-go-control-plane-0.9.7) + ("go-github-com-cncf-udpa-go-0.0.0-20200629203442-efcf912fb354" + ,go-github-com-cncf-udpa-go-0.0.0-20200629203442-efcf912fb354))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-google-golang-org-api-0.40.0 + (package + (name "go-google-golang-org-api") + (version "0.40.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-api-go-client") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0vs0bnzljg5iib8x01sy49ndgsz3cl1sq53pvy3h6kzp7may0bpc")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/api")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.34.0" ,go-google-golang-org-grpc-1.34.0) + ("go-google-golang-org-genproto-0.0.0-20201214200347-8c77b98c765d" + ,go-google-golang-org-genproto-0.0.0-20201214200347-8c77b98c765d) + ("go-google-golang-org-appengine-1.6.7" + ,go-google-golang-org-appengine-1.6.7) + ("go-golang-org-x-tools-0.0.0-20210105154028-b0ab187a4818" + ,go-golang-org-x-tools-0.0.0-20210105154028-b0ab187a4818) + ("go-golang-org-x-sys-0.0.0-20210104204734-6f8348627aad" + ,go-golang-org-x-sys-0.0.0-20210104204734-6f8348627aad) + ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" + ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) + ("go-golang-org-x-oauth2-0.0.0-20201208152858-08078c50e5b5" + ,go-golang-org-x-oauth2-0.0.0-20201208152858-08078c50e5b5) + ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" + ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) + ("go-go-opencensus-io-0.22.5" ,go-go-opencensus-io-0.22.5) + ("go-github-com-googleapis-gax-go-v2-2.0.5" + ,go-github-com-googleapis-gax-go-v2-2.0.5) + ("go-github-com-google-go-cmp-0.5.4" + ,go-github-com-google-go-cmp-0.5.4) + ("go-cloud-google-com-go-0.74.0" ,go-cloud-google-com-go-0.74.0))) + (home-page "https://google.golang.org/api") + (synopsis "Google APIs Client Library for Go") + (description + "Package api is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of +sub-packages. +") + (license license:bsd-3))) + +(define-public go-google-golang-org-genproto-0.0.0-20210222152913-aa3ee6e6a81c + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20210222152913-aa3ee6e6a81c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "06wa7v3s558rwxsqd1kqz5xy10kigzx50ciqh3zdxsbvxqvjwxrx")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.24.0" + ,go-google-golang-org-protobuf-1.24.0) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-golang-protobuf-1.4.1" + ,go-github-com-golang-protobuf-1.4.1))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-google-golang-org-grpc-1.35.0 + (package + (name "go-google-golang-org-grpc") + (version "1.35.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "15ij5acp9h8dxq0brc0jljj98badri23zpm4yvmsn6gnnxaykl72")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.25.0" + ,go-google-golang-org-protobuf-1.25.0) + ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" + ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) + ("go-github-com-google-go-cmp-0.5.0" + ,go-github-com-google-go-cmp-0.5.0) + ("go-github-com-golang-protobuf-1.4.2" + ,go-github-com-golang-protobuf-1.4.2) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad" + ,go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad) + ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" + ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-cloud-google-com-go-0.78.0 + (package + (name "go-cloud-google-com-go") + (version "0.78.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-cloud-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "11wldladkcz41ivsfnbrqy2hg5wp55d72hnr2wki0zvnhbzsj376")))) + (build-system go-build-system) + (arguments '(#:import-path "cloud.google.com/go")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.35.0" ,go-google-golang-org-grpc-1.35.0) + ("go-google-golang-org-genproto-0.0.0-20210222152913-aa3ee6e6a81c" + ,go-google-golang-org-genproto-0.0.0-20210222152913-aa3ee6e6a81c) + ("go-google-golang-org-api-0.40.0" ,go-google-golang-org-api-0.40.0) + ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) + ("go-golang-org-x-text-0.3.5" ,go-golang-org-x-text-0.3.5) + ("go-golang-org-x-sys-0.0.0-20210220050731-9a76102bfb43" + ,go-golang-org-x-sys-0.0.0-20210220050731-9a76102bfb43) + ("go-golang-org-x-oauth2-0.0.0-20210218202405-ba52d332ba99" + ,go-golang-org-x-oauth2-0.0.0-20210218202405-ba52d332ba99) + ("go-golang-org-x-net-0.0.0-20210119194325-5f4716e94777" + ,go-golang-org-x-net-0.0.0-20210119194325-5f4716e94777) + ("go-golang-org-x-mod-0.4.1" ,go-golang-org-x-mod-0.4.1) + ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" + ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) + ("go-go-opencensus-io-0.22.5" ,go-go-opencensus-io-0.22.5) + ("go-github-com-jstemmer-go-junit-report-0.9.1" + ,go-github-com-jstemmer-go-junit-report-0.9.1) + ("go-github-com-googleapis-gax-go-v2-2.0.5" + ,go-github-com-googleapis-gax-go-v2-2.0.5) + ("go-github-com-google-pprof-0.0.0-20210122040257-d980be63207e" + ,go-github-com-google-pprof-0.0.0-20210122040257-d980be63207e) + ("go-github-com-google-martian-v3-3.1.0" + ,go-github-com-google-martian-v3-3.1.0) + ("go-github-com-google-go-cmp-0.5.4" + ,go-github-com-google-go-cmp-0.5.4) + ("go-github-com-golang-protobuf-1.4.3" + ,go-github-com-golang-protobuf-1.4.3) + ("go-github-com-golang-mock-1.4.4" ,go-github-com-golang-mock-1.4.4) + ("go-cloud-google-com-go-storage-1.10.0" + ,go-cloud-google-com-go-storage-1.10.0))) + (home-page "https://cloud.google.com/go") + (synopsis "Google Cloud Client Libraries for Go") + (description + "Package cloud is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +of sub-packages. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-oauth2-0.0.0-20210220000619-9bb904979d93 + (package + (name "go-golang-org-x-oauth2") + (version "0.0.0-20210220000619-9bb904979d93") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/oauth2") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1rhndpvpvfy5bsaxi974cznlq4hbamhmy6l06ppp9phh12pvn11p")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/oauth2")) + (propagated-inputs + `(("go-google-golang-org-appengine-1.6.6" + ,go-google-golang-org-appengine-1.6.6) + ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" + ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) + ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) + (home-page "https://golang.org/x/oauth2") + (synopsis "OAuth2 for Go") + (description + "Package oauth2 provides support for making +OAuth2 authorized and authenticated HTTP requests, +as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +It can additionally grant authorization with Bearer JWT. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20210305230114-8fe3ee5dd75b + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20210305230114-8fe3ee5dd75b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1x7fn66vplxkac6lbwqv649wwnx7kz0bqdzgr98z7yx7cfdxd7rj")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-google-golang-org-genproto-0.0.0-20210303154014-9728d6b83eeb + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20210303154014-9728d6b83eeb") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1abic7gjp07d1s6imjfn00s316xdirss3zvcric74gr9varr02xn")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.24.0" + ,go-google-golang-org-protobuf-1.24.0) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-golang-protobuf-1.4.1" + ,go-github-com-golang-protobuf-1.4.1))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-google-golang-org-api-0.41.0 + (package + (name "go-google-golang-org-api") + (version "0.41.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-api-go-client") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0yzz534xzl2km3vxr18h204yvnrzqlss02fagg2ign0sy3qnlkhx")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/api")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.36.0" ,go-google-golang-org-grpc-1.36.0) + ("go-google-golang-org-genproto-0.0.0-20210303154014-9728d6b83eeb" + ,go-google-golang-org-genproto-0.0.0-20210303154014-9728d6b83eeb) + ("go-google-golang-org-appengine-1.6.7" + ,go-google-golang-org-appengine-1.6.7) + ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) + ("go-golang-org-x-sys-0.0.0-20210305230114-8fe3ee5dd75b" + ,go-golang-org-x-sys-0.0.0-20210305230114-8fe3ee5dd75b) + ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" + ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) + ("go-golang-org-x-oauth2-0.0.0-20210220000619-9bb904979d93" + ,go-golang-org-x-oauth2-0.0.0-20210220000619-9bb904979d93) + ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" + ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) + ("go-go-opencensus-io-0.23.0" ,go-go-opencensus-io-0.23.0) + ("go-github-com-googleapis-gax-go-v2-2.0.5" + ,go-github-com-googleapis-gax-go-v2-2.0.5) + ("go-github-com-google-go-cmp-0.5.5" + ,go-github-com-google-go-cmp-0.5.5) + ("go-cloud-google-com-go-0.78.0" ,go-cloud-google-com-go-0.78.0))) + (home-page "https://google.golang.org/api") + (synopsis "Google APIs Client Library for Go") + (description + "Package api is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of +sub-packages. +") + (license license:bsd-3))) + +(define-public go-google-golang-org-genproto-0.0.0-20210310155132-4ce2db91004e + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20210310155132-4ce2db91004e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0r5f024c4piqna27pvc28m0h44ms9rhcbihf1zn5l8prf4vvrdw9")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.24.0" + ,go-google-golang-org-protobuf-1.24.0) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-golang-protobuf-1.4.1" + ,go-github-com-golang-protobuf-1.4.1))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-cloud-google-com-go-0.79.0 + (package + (name "go-cloud-google-com-go") + (version "0.79.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-cloud-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "031jrfgyys0slh154593d4swj6iqrjvs9dxwmab99dl6zfws77jv")))) + (build-system go-build-system) + (arguments '(#:import-path "cloud.google.com/go")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.36.0" ,go-google-golang-org-grpc-1.36.0) + ("go-google-golang-org-genproto-0.0.0-20210310155132-4ce2db91004e" + ,go-google-golang-org-genproto-0.0.0-20210310155132-4ce2db91004e) + ("go-google-golang-org-api-0.41.0" ,go-google-golang-org-api-0.41.0) + ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) + ("go-golang-org-x-text-0.3.5" ,go-golang-org-x-text-0.3.5) + ("go-golang-org-x-oauth2-0.0.0-20210220000619-9bb904979d93" + ,go-golang-org-x-oauth2-0.0.0-20210220000619-9bb904979d93) + ("go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110" + ,go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110) + ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" + ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) + ("go-go-opencensus-io-0.23.0" ,go-go-opencensus-io-0.23.0) + ("go-github-com-jstemmer-go-junit-report-0.9.1" + ,go-github-com-jstemmer-go-junit-report-0.9.1) + ("go-github-com-googleapis-gax-go-v2-2.0.5" + ,go-github-com-googleapis-gax-go-v2-2.0.5) + ("go-github-com-google-pprof-0.0.0-20210226084205-cbba55b83ad5" + ,go-github-com-google-pprof-0.0.0-20210226084205-cbba55b83ad5) + ("go-github-com-google-martian-v3-3.1.0" + ,go-github-com-google-martian-v3-3.1.0) + ("go-github-com-google-go-cmp-0.5.5" + ,go-github-com-google-go-cmp-0.5.5) + ("go-github-com-golang-protobuf-1.4.3" + ,go-github-com-golang-protobuf-1.4.3) + ("go-github-com-golang-mock-1.5.0" ,go-github-com-golang-mock-1.5.0) + ("go-cloud-google-com-go-storage-1.10.0" + ,go-cloud-google-com-go-storage-1.10.0))) + (home-page "https://cloud.google.com/go") + (synopsis "Google Cloud Client Libraries for Go") + (description + "Package cloud is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +of sub-packages. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-oauth2-0.0.0-20210313182246-cd4f82c27b84 + (package + (name "go-golang-org-x-oauth2") + (version "0.0.0-20210313182246-cd4f82c27b84") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/oauth2") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1jf68sh1957ji1lv1zrrhsbm6jr3508pw159pfzgyw6hbzsg5amv")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/oauth2")) + (propagated-inputs + `(("go-google-golang-org-appengine-1.6.6" + ,go-google-golang-org-appengine-1.6.6) + ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" + ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) + ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) + (home-page "https://golang.org/x/oauth2") + (synopsis "OAuth2 for Go") + (description + "Package oauth2 provides support for making +OAuth2 authorized and authenticated HTTP requests, +as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +It can additionally grant authorization with Bearer JWT. +") + (license license:bsd-3))) + +(define-public go-google-golang-org-genproto-0.0.0-20210319143718-93e7006c17a6 + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20210319143718-93e7006c17a6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0l143m8rn7zmbfb2rpdawhxs8qjbdpn61hqynf47j5hwsbjci2xs")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.24.0" + ,go-google-golang-org-protobuf-1.24.0) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-golang-protobuf-1.4.1" + ,go-github-com-golang-protobuf-1.4.1))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-google-golang-org-grpc-1.36.0 + (package + (name "go-google-golang-org-grpc") + (version "1.36.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1m4xsfv3ysc84cwqxqqr61fs3d2w04f0q5xbdjijhczjixcxwh5i")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.25.0" + ,go-google-golang-org-protobuf-1.25.0) + ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" + ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) + ("go-github-com-google-go-cmp-0.5.0" + ,go-github-com-google-go-cmp-0.5.0) + ("go-github-com-golang-protobuf-1.4.2" + ,go-github-com-golang-protobuf-1.4.2) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad" + ,go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad) + ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" + ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-google-golang-org-api-0.43.0 + (package + (name "go-google-golang-org-api") + (version "0.43.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-api-go-client") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wxxbihigjn49warampi7gqfslbnp9nrj5zmk8p3ssq429jpvsib")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/api")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.36.0" ,go-google-golang-org-grpc-1.36.0) + ("go-google-golang-org-genproto-0.0.0-20210319143718-93e7006c17a6" + ,go-google-golang-org-genproto-0.0.0-20210319143718-93e7006c17a6) + ("go-google-golang-org-appengine-1.6.7" + ,go-google-golang-org-appengine-1.6.7) + ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) + ("go-golang-org-x-sys-0.0.0-20210320140829-1e4c9ba3b0c4" + ,go-golang-org-x-sys-0.0.0-20210320140829-1e4c9ba3b0c4) + ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" + ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) + ("go-golang-org-x-oauth2-0.0.0-20210313182246-cd4f82c27b84" + ,go-golang-org-x-oauth2-0.0.0-20210313182246-cd4f82c27b84) + ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" + ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) + ("go-go-opencensus-io-0.23.0" ,go-go-opencensus-io-0.23.0) + ("go-github-com-googleapis-gax-go-v2-2.0.5" + ,go-github-com-googleapis-gax-go-v2-2.0.5) + ("go-github-com-google-go-cmp-0.5.5" + ,go-github-com-google-go-cmp-0.5.5) + ("go-cloud-google-com-go-0.79.0" ,go-cloud-google-com-go-0.79.0))) + (home-page "https://google.golang.org/api") + (synopsis "Google APIs Client Library for Go") + (description + "Package api is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of +sub-packages. +") + (license license:bsd-3))) + +(define-public go-cloud-google-com-go-0.81.0 + (package + (name "go-cloud-google-com-go") + (version "0.81.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-cloud-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "15jgynqb5pbxqbj3a7ii970yn4srsw1dbxzxnhpkfkmplalpgyh3")))) + (build-system go-build-system) + (arguments '(#:import-path "cloud.google.com/go")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.36.1" ,go-google-golang-org-grpc-1.36.1) + ("go-google-golang-org-genproto-0.0.0-20210402141018-6c239bbf2bb1" + ,go-google-golang-org-genproto-0.0.0-20210402141018-6c239bbf2bb1) + ("go-google-golang-org-api-0.43.0" ,go-google-golang-org-api-0.43.0) + ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) + ("go-golang-org-x-text-0.3.5" ,go-golang-org-x-text-0.3.5) + ("go-golang-org-x-oauth2-0.0.0-20210313182246-cd4f82c27b84" + ,go-golang-org-x-oauth2-0.0.0-20210313182246-cd4f82c27b84) + ("go-golang-org-x-net-0.0.0-20210316092652-d523dce5a7f4" + ,go-golang-org-x-net-0.0.0-20210316092652-d523dce5a7f4) + ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" + ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) + ("go-go-opencensus-io-0.23.0" ,go-go-opencensus-io-0.23.0) + ("go-github-com-jstemmer-go-junit-report-0.9.1" + ,go-github-com-jstemmer-go-junit-report-0.9.1) + ("go-github-com-googleapis-gax-go-v2-2.0.5" + ,go-github-com-googleapis-gax-go-v2-2.0.5) + ("go-github-com-google-pprof-0.0.0-20210226084205-cbba55b83ad5" + ,go-github-com-google-pprof-0.0.0-20210226084205-cbba55b83ad5) + ("go-github-com-google-martian-v3-3.1.0" + ,go-github-com-google-martian-v3-3.1.0) + ("go-github-com-google-go-cmp-0.5.5" + ,go-github-com-google-go-cmp-0.5.5) + ("go-github-com-golang-protobuf-1.5.1" + ,go-github-com-golang-protobuf-1.5.1) + ("go-github-com-golang-mock-1.5.0" ,go-github-com-golang-mock-1.5.0) + ("go-cloud-google-com-go-storage-1.10.0" + ,go-cloud-google-com-go-storage-1.10.0))) + (home-page "https://cloud.google.com/go") + (synopsis "Google Cloud Client Libraries for Go") + (description + "Package cloud is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +of sub-packages. +") + (license license:asl2.0))) + +(define-public go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e + (package + (name "go-github-com-golang-groupcache") + (version "0.0.0-20200121045136-8c9f03a8e57e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/groupcache") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0vjjr79r32icjzlb05wn02k59av7jx0rn1jijml8r4whlg7dnkfh")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/groupcache")) + (home-page "https://github.com/golang/groupcache") + (synopsis "groupcache") + (description + "Package groupcache provides a data loading mechanism with caching +and de-duplication that works across a set of peer processes. +") + (license license:asl2.0))) + +(define-public go-github-com-golang-protobuf-1.4.3 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1kf1d7xmyjvy0z6j5czp6nqyvj9zrk6liv6znif08927xqfrzyln")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.23.0" + ,go-google-golang-org-protobuf-1.23.0) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-github-com-google-go-cmp-0.5.3 + (package + (name "go-github-com-google-go-cmp") + (version "0.5.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "011gdkmyk3w7qkcwljhqak4h5npn4n7fwgx1fwpyx9c7wizvgkm5")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") + (license license:bsd-3))) + +(define-public go-github-com-stretchr-testify-1.6.1 + (package + (name "go-github-com-stretchr-testify") + (version "1.6.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1yhiqqzjvi63pf01rgzx68gqkkvjx03fvl5wk30br5l6s81s090l")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (propagated-inputs + `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" + ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) + ("go-github-com-stretchr-objx-0.1.0" + ,go-github-com-stretchr-objx-0.1.0) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.0" + ,go-github-com-davecgh-go-spew-1.1.0))) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +") + (license license:expat))) + +(define-public go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b + (package + (name "go-golang-org-x-net") + (version "0.0.0-20201110031124-69a78807bb2b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "176z5k6jbhr9vf0am2avl1lyqwym3q0mri98yb8r572z33qmcw1d")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) + ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" + ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) + ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" + ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-google-golang-org-grpc-1.33.2 + (package + (name "go-google-golang-org-grpc") + (version "1.33.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03yz4nlf4kqbnpw48f0mvcb2f5zzy0vjd5i2iw0hrjspd0238fzk")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.25.0" + ,go-google-golang-org-protobuf-1.25.0) + ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" + ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) + ("go-github-com-google-go-cmp-0.5.0" + ,go-github-com-google-go-cmp-0.5.0) + ("go-github-com-golang-protobuf-1.4.1" + ,go-github-com-golang-protobuf-1.4.1) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-envoyproxy-go-control-plane-0.9.4" + ,go-github-com-envoyproxy-go-control-plane-0.9.4) + ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" + ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-go-opencensus-io-0.23.0 + (package + (name "go-go-opencensus-io") + (version "0.23.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/census-instrumentation/opencensus-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0gw4f7inf8y2ik00yfb36xganiq9rl4w2d1a41bsjqsh83ajz2km")))) + (build-system go-build-system) + (arguments '(#:import-path "go.opencensus.io")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) + ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" + ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-google-go-cmp-0.5.3" + ,go-github-com-google-go-cmp-0.5.3) + ("go-github-com-golang-protobuf-1.4.3" + ,go-github-com-golang-protobuf-1.4.3) + ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" + ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e))) + (home-page "https://go.opencensus.io") + (synopsis "OpenCensus Libraries for Go") + (description "Package opencensus contains Go support for OpenCensus. +") + (license license:asl2.0))) + +(define-public go-github-com-golang-mock-1.4.4 + (package + (name "go-github-com-golang-mock") + (version "1.4.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/mock") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1lj0dvd6div4jaq1s0afpwqaq9ah8cxhkq93wii2ably1xmp2l0a")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/mock")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262" + ,go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262))) + (home-page "https://github.com/golang/mock") + (synopsis "gomock") + (description + "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It +integrates well with Go's built-in @code{testing} package, but can be used in other +contexts too.") + (license license:asl2.0))) + +(define-public go-golang-org-x-tools-0.0.0-20200825202427-b303f430e36d + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20200825202427-b303f430e36d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0zzf6ifzjvkwin6m97jp2dndbfac0sbdr84ki79j9srhpqdigl75")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) + ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" + ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) + ("go-golang-org-x-net-0.0.0-20200625001655-4c5254603344" + ,go-golang-org-x-net-0.0.0-20200625001655-4c5254603344) + ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) + ("go-github-com-yuin-goldmark-1.1.32" + ,go-github-com-yuin-goldmark-1.1.32))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20190628185345-da137c7871d7 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190628185345-da137c7871d7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1qsiyr3irmb6ii06hivm9p2c7wqyxczms1a9v1ss5698yjr3fg47")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-github-com-google-martian-v3-3.0.0 + (package + (name "go-github-com-google-martian-v3") + (version "3.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/martian") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ngvs4l6a06s8scnliq9i5pwvwpzfpa5wf9skg0gcvysli1rm3fm")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/martian/v3")) + (propagated-inputs + `(("go-golang-org-x-net-0.0.0-20190628185345-da137c7871d7" + ,go-golang-org-x-net-0.0.0-20190628185345-da137c7871d7))) + (home-page "https://github.com/google/martian") + (synopsis "Martian Proxy") + (description + "Package martian provides an HTTP/1.1 proxy with an API for configurable +request and response modifiers. +") + (license license:asl2.0))) + +(define-public go-github-com-google-pprof-0.0.0-20200708004538-1a94d8640e99 + (package + (name "go-github-com-google-pprof") + (version "0.0.0-20200708004538-1a94d8640e99") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/pprof") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0isfwwan9vimwsfjml0phwrqv6kb83mkmk063dcb81k09gzzs3wy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/pprof")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" + ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) + ("go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6" + ,go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6) + ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" + ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) + ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" + ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) + ("go-github-com-chzyer-logex-1.1.10" + ,go-github-com-chzyer-logex-1.1.10))) + (home-page "https://github.com/google/pprof") + (synopsis "Introduction") + (description + "pprof is a tool for collection, manipulation and visualization +of performance profiles. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-net-0.0.0-20200707034311-ab3426394381 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20200707034311-ab3426394381") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1wr7rnnqp210yykkypinb8ciszx28aq5a3l3dvsv6swzxxngs8zn")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" + ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) + ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" + ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20200729194436-6467de6f59a7 + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20200729194436-6467de6f59a7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "14zpkr5idlx2zbm5dp7gk4afppy7k3j4y68s1qvpgi70yazaxzkd")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) + ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" + ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) + ("go-golang-org-x-net-0.0.0-20200625001655-4c5254603344" + ,go-golang-org-x-net-0.0.0-20200625001655-4c5254603344) + ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) + ("go-github-com-yuin-goldmark-1.1.32" + ,go-github-com-yuin-goldmark-1.1.32))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262 + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20190425150028-36563e24a262") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0lasi96f6a1h11gkm8kl33x03pmxp369wrqq2dg7x7xv9nq76d6g")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" + ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-golang-org-x-text-0.0.0-20170915032832-14c0d48ead0c + (package + (name "go-golang-org-x-text") + (version "0.0.0-20170915032832-14c0d48ead0c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/text") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0y0nrj4hw7vby6m3iqklbf4v7njqlsx7s4pwfkwmvh1ryn1kb7d6")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/text")) + (home-page "https://golang.org/x/text") + (synopsis "Go Text") + (description + "text is a repository of text-related packages related to internationalization +(i18n) and localization (l10n), such as character encodings, text +transformations, and locale-specific text handling. +") + (license license:bsd-3))) + +(define-public go-rsc-io-sampler-1.3.0 + (package + (name "go-rsc-io-sampler") + (version "1.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/rsc/sampler") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0byxk2ynba50py805kcvbvjzh59l1r308i1xgyzpw6lff4xx9xjh")))) + (build-system go-build-system) + (arguments '(#:import-path "rsc.io/sampler")) + (propagated-inputs + `(("go-golang-org-x-text-0.0.0-20170915032832-14c0d48ead0c" + ,go-golang-org-x-text-0.0.0-20170915032832-14c0d48ead0c))) + (home-page "https://rsc.io/sampler") + (synopsis #f) + (description "Package sampler shows simple texts. +") + (license license:bsd-3))) + +(define-public go-rsc-io-quote-v3-3.1.0 + (package + (name "go-rsc-io-quote-v3") + (version "3.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/rsc/quote") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0nvv97hwwrl1mx5gzsbdm1ndnwpg3m7i2jb10ig9wily7zmvki0i")))) + (build-system go-build-system) + (arguments + '(#:import-path "rsc.io/quote/v3" #:unpack-path "rsc.io/quote/v3")) + (propagated-inputs `(("go-rsc-io-sampler-1.3.0" ,go-rsc-io-sampler-1.3.0))) + (home-page "https://rsc.io/quote/v3") + (synopsis #f) + (description "Package quote collects pithy sayings. +") + (license license:bsd-3))) + +(define-public go-github-com-golang-mock-1.4.3 + (package + (name "go-github-com-golang-mock") + (version "1.4.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/mock") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1p37xnja1dgq5ykx24n7wincwz2gahjh71b95p8vpw7ss2g8j8wx")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/mock")) + (propagated-inputs + `(("go-rsc-io-quote-v3-3.1.0" ,go-rsc-io-quote-v3-3.1.0) + ("go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262" + ,go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262))) + (home-page "https://github.com/golang/mock") + (synopsis "gomock") + (description + "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It +integrates well with Go's built-in @code{testing} package, but can be used in other +contexts too.") + (license license:asl2.0))) + +(define-public go-github-com-golang-protobuf-1.3.5 + (package + (name "go-github-com-golang-protobuf") + (version "1.3.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1gkd1942vk9n8kfzdwy1iil6wgvlwjq7a3y5jc49ck4lz9rhmgkq")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-github-com-chzyer-logex-1.1.10 + (package + (name "go-github-com-chzyer-logex") + (version "1.1.10") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/chzyer/logex") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "08pbjj3wx9acavlwyr055isa8a5hnmllgdv5k6ra60l5y1brmlq4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/chzyer/logex")) + (home-page "https://github.com/chzyer/logex") + (synopsis #f) + (description #f) + (license #f))) + +(define-public go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e + (package + (name "go-github-com-chzyer-readline") + (version "0.0.0-20180603132655-2972be24d48e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/chzyer/readline") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "104q8dazj8yf6b089jjr82fy9h1g80zyyzvp3g8b44a7d8ngjj6r")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/chzyer/readline")) + (home-page "https://github.com/chzyer/readline") + (synopsis "Guide") + (description + "Readline is a pure go implementation for GNU-Readline kind library. +") + (license license:expat))) + +(define-public go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1 + (package + (name "go-github-com-chzyer-test") + (version "0.0.0-20180213035817-a1ea475d72b1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/chzyer/test") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0rns2aqk22i9xsgyap0pq8wi4cfaxsri4d9q6xxhhyma8jjsnj2k")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/chzyer/test")) + (home-page "https://github.com/chzyer/test") + (synopsis "test") + (description #f) + (license license:expat))) + +(define-public go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6 + (package + (name "go-github-com-ianlancetaylor-demangle") + (version "0.0.0-20181102032728-5e5cf60278f6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/ianlancetaylor/demangle") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fhjk11cip9c3jyj1byz9z77n6n2rlxmyz0xjx1zpn1da3cvri75")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/ianlancetaylor/demangle")) + (home-page "https://github.com/ianlancetaylor/demangle") + (synopsis "github.com/ianlancetaylor/demangle") + (description + "Package demangle defines functions that demangle GCC/LLVM +C++ and Rust symbol names. +This package recognizes names that were mangled according to the C++ ABI +defined at @url{http://codesourcery.com/cxx-abi/,http://codesourcery.com/cxx-abi/} and the Rust ABI +defined at +@url{https://rust-lang.github.io/rfcs/2603-rust-symbol-name-mangling-v0.html,https://rust-lang.github.io/rfcs/2603-rust-symbol-name-mangling-v0.html} +") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20191204072324-ce4227a45e2e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1s43wvqfml6ml5ks7iv2bis9d664g77mq86v7mfmjhn56x856g35")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-google-pprof-0.0.0-20200229191704-1ebb73c60ed3 + (package + (name "go-github-com-google-pprof") + (version "0.0.0-20200229191704-1ebb73c60ed3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/pprof") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1gdi9p4j1zfm5xlm488i5l0q3kk4q6hsmbmlk6p729i0di2n3ifa")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/pprof")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" + ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) + ("go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6" + ,go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6) + ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" + ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) + ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" + ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) + ("go-github-com-chzyer-logex-1.1.10" + ,go-github-com-chzyer-logex-1.1.10))) + (home-page "https://github.com/google/pprof") + (synopsis "Introduction") + (description + "pprof is a tool for collection, manipulation and visualization +of performance profiles. +") + (license license:asl2.0))) + +(define-public go-github-com-jstemmer-go-junit-report-0.9.1 + (package + (name "go-github-com-jstemmer-go-junit-report") + (version "0.9.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jstemmer/go-junit-report") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1knip80yir1cdsjlb3rzy0a4w3kl4ljpiciaz6hjzwqlfhnv7bkw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/jstemmer/go-junit-report")) + (home-page "https://github.com/jstemmer/go-junit-report") + (synopsis "go-junit-report") + (description + "Converts @code{go test} output to an xml report, suitable for applications that +expect junit xml reports (e.g. @url{http://jenkins-ci.org,Jenkins}).") + (license license:expat))) + +(define-public go-golang-org-x-net-0.0.0-20200324143707-d3edc9973b7e + (package + (name "go-golang-org-x-net") + (version "0.0.0-20200324143707-d3edc9973b7e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12zbjwcsh9b0lwycqlkrnbyg5a6a9dzgj8hhgq399bdda5bd97y7")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" + ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-github-com-golang-mock-1.2.0 + (package + (name "go-github-com-golang-mock") + (version "1.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/mock") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12ddj2g8ab87id6n2n67vnbhq6p8dvgsq1pzpqfriym4dk8w54fg")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/mock")) + (home-page "https://github.com/golang/mock") + (synopsis "gomock") + (description + "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It +integrates well with Go's built-in @code{testing} package, but can be used in other +contexts too.") + (license license:asl2.0))) + +(define-public go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c + (package + (name "go-github-com-google-btree") + (version "0.0.0-20180813153112-4030bb1f1f0c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/btree") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ba430m9fbnagacp57krgidsyrgp3ycw5r7dj71brgp5r52g82p6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/btree")) + (home-page "https://github.com/google/btree") + (synopsis "BTree implementation for Go") + (description + "Package btree implements in-memory B-Trees of arbitrary degree. +") + (license license:asl2.0))) + +(define-public go-github-com-google-martian-2.1.0+incompatible + (package + (name "go-github-com-google-martian") + (version "2.1.0+incompatible") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/martian") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "197hil6vrjk50b9wvwyzf61csid83whsjj6ik8mc9r2lryxlyyrp")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/martian")) + (home-page "https://github.com/google/martian") + (synopsis "Martian Proxy") + (description + "Package martian provides an HTTP/1.1 proxy with an API for configurable +request and response modifiers. +") + (license license:asl2.0))) + +(define-public go-github-com-google-pprof-0.0.0-20181206194817-3ea8567a2e57 + (package + (name "go-github-com-google-pprof") + (version "0.0.0-20181206194817-3ea8567a2e57") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/pprof") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "09rhjn3ms0a72dw0yzbp237p7yhqma772zspddn6mgkh3gi3kn4c")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/pprof")) + (home-page "https://github.com/google/pprof") + (synopsis "Introduction") + (description + "pprof is a tool for collection, manipulation and visualization +of performance profiles. +") + (license license:asl2.0))) + +(define-public go-github-com-googleapis-gax-go-v2-2.0.4 + (package + (name "go-github-com-googleapis-gax-go-v2") + (version "2.0.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/gax-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1iwnm6ky1x53lgs44mw3hpdkjzrm5qd0kfs50m0qcq2ml5m1cwdm")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/googleapis/gax-go/v2")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.19.0" + ,go-google-golang-org-grpc-1.19.0))) + (home-page "https://github.com/googleapis/gax-go") + (synopsis #f) + (description + "Package gax contains a set of modules which aid the development of APIs +for clients and servers based on gRPC and Google API conventions. +") + (license license:bsd-3))) + +(define-public go-github-com-jstemmer-go-junit-report-0.0.0-20190106144839-af01ea7f8024 + (package + (name "go-github-com-jstemmer-go-junit-report") + (version "0.0.0-20190106144839-af01ea7f8024") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jstemmer/go-junit-report") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1lp3n94ris12hac02wi31f3whs88lcrzwgdg43a5j6cafg9p1d0s")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/jstemmer/go-junit-report")) + (home-page "https://github.com/jstemmer/go-junit-report") + (synopsis "go-junit-report") + (description + "Converts @code{go test} output to an xml report, suitable for applications that +expect junit xml reports (e.g. @url{http://jenkins-ci.org,Jenkins}).") + (license license:expat))) + +(define-public go-golang-org-x-text-0.3.1-0.20180807135948-17ff2d5776d2 + (package + (name "go-golang-org-x-text") + (version "0.3.1-0.20180807135948-17ff2d5776d2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/text") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1rrh2mnmyxr45nsvy42zq3w3ly6gw6rl993knwvf1w71kyv0jjnj")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/text")) + (home-page "https://golang.org/x/text") + (synopsis "Go Text") + (description + "text is a repository of text-related packages related to internationalization +(i18n) and localization (l10n), such as character encodings, text +transformations, and locale-specific text handling. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-time-0.0.0-20181108054448-85acf8d2951c + (package + (name "go-golang-org-x-time") + (version "0.0.0-20181108054448-85acf8d2951c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/time") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0yqnxsrarjk4qkda8kcxzmk7y90kkkxzx9iwryzrk7bzs87ky3xc")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/time")) + (home-page "https://golang.org/x/time") + (synopsis "Go Time") + (description "This repository provides supplementary Go time packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f + (package + (name "go-golang-org-x-lint") + (version "0.0.0-20190301231843-5614ed5bae6f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/lint") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0fzn0zjv0x92xvfdq3a0v9w5sgkhr7hxkfy9zaqi8i57807z8bnx")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/lint")) + (home-page "https://golang.org/x/lint") + (synopsis "Installation") + (description "Package lint contains a linter for Go source code. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421 + (package + (name "go-golang-org-x-oauth2") + (version "0.0.0-20190226205417-e64efc72b421") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/oauth2") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0djvwz2avx7knsjbl434vw1wqbrg53xp1kh599gfixn5icrggz4m")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/oauth2")) + (propagated-inputs + `(("go-google-golang-org-appengine-1.4.0" + ,go-google-golang-org-appengine-1.4.0) + ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" + ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) + ("go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e" + ,go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e) + ("go-cloud-google-com-go-0.34.0" ,go-cloud-google-com-go-0.34.0))) + (home-page "https://golang.org/x/oauth2") + (synopsis "OAuth2 for Go") + (description + "Package oauth2 provides support for making +OAuth2 authorized and authenticated HTTP requests, +as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +It can additionally grant authorization with Bearer JWT. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138 + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20190312170243-e65039ee4138") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0c094599cf70wdrms49a3879qkq122pqlp2av444gs2pvc8apdcx")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-google-golang-org-api-0.4.0 + (package + (name "go-google-golang-org-api") + (version "0.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-api-go-client") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1hzgrw5wasmcjlqpxsmryddzzw4cwyzf2vx14i9z51v1plwssijm")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/api")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" + ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) + ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) + ("go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19" + ,go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19) + ("go-google-golang-org-appengine-1.4.0" + ,go-google-golang-org-appengine-1.4.0) + ("go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138" + ,go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138) + ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" + ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) + ("go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421" + ,go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421) + ("go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f" + ,go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f) + ("go-go-opencensus-io-0.21.0" ,go-go-opencensus-io-0.21.0) + ("go-github-com-google-go-cmp-0.2.0" + ,go-github-com-google-go-cmp-0.2.0))) + (home-page "https://google.golang.org/api") + (synopsis "Google APIs Client Library for Go") + (description + "Package api is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of +sub-packages. +") + (license license:bsd-3))) + +(define-public go-google-golang-org-genproto-0.0.0-20190418145605-e7d98fc518a7 + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20190418145605-e7d98fc518a7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1cnavkyawwvfc5yl097ygnfy1ac69v4zc02gdfnq1bvgcvgmvnbi")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" + ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) + ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) + ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" + ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) + ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" + ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) + ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" + ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd) + ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" + ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) + ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" + ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-honnef-co-go-tools-0.0.0-20190106161140-3f1c8253044a + (package + (name "go-honnef-co-go-tools") + (version "0.0.0-20190106161140-3f1c8253044a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/dominikh/go-tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0d3vgh0fgfj1z7i648g1s6x2pwxd07sxfjwg1xn3yagr9h06jh3h")))) + (build-system go-build-system) + (arguments '(#:import-path "honnef.co/go/tools")) + (home-page "https://honnef.co/go/tools") + (synopsis "Documentation") + (description + "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, +offers simplifications, and enforces style rules.") + (license license:expat))) + +(define-public go-cloud-google-com-go-0.38.0 + (package + (name "go-cloud-google-com-go") + (version "0.38.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-cloud-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0n6n13b7lri2fmc4bn4ifszyawj31dpbzvyv0xafsf81440z8cyh")))) + (build-system go-build-system) + (arguments '(#:import-path "cloud.google.com/go")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190106161140-3f1c8253044a" + ,go-honnef-co-go-tools-0.0.0-20190106161140-3f1c8253044a) + ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) + ("go-google-golang-org-genproto-0.0.0-20190418145605-e7d98fc518a7" + ,go-google-golang-org-genproto-0.0.0-20190418145605-e7d98fc518a7) + ("go-google-golang-org-api-0.4.0" ,go-google-golang-org-api-0.4.0) + ("go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138" + ,go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138) + ("go-golang-org-x-time-0.0.0-20181108054448-85acf8d2951c" + ,go-golang-org-x-time-0.0.0-20181108054448-85acf8d2951c) + ("go-golang-org-x-text-0.3.1-0.20180807135948-17ff2d5776d2" + ,go-golang-org-x-text-0.3.1-0.20180807135948-17ff2d5776d2) + ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" + ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) + ("go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421" + ,go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421) + ("go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f" + ,go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f) + ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" + ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) + ("go-go-opencensus-io-0.21.0" ,go-go-opencensus-io-0.21.0) + ("go-github-com-jstemmer-go-junit-report-0.0.0-20190106144839-af01ea7f8024" + ,go-github-com-jstemmer-go-junit-report-0.0.0-20190106144839-af01ea7f8024) + ("go-github-com-googleapis-gax-go-v2-2.0.4" + ,go-github-com-googleapis-gax-go-v2-2.0.4) + ("go-github-com-google-pprof-0.0.0-20181206194817-3ea8567a2e57" + ,go-github-com-google-pprof-0.0.0-20181206194817-3ea8567a2e57) + ("go-github-com-google-martian-2.1.0+incompatible" + ,go-github-com-google-martian-2.1.0+incompatible) + ("go-github-com-google-go-cmp-0.2.0" + ,go-github-com-google-go-cmp-0.2.0) + ("go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c" + ,go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0) + ("go-github-com-golang-mock-1.2.0" ,go-github-com-golang-mock-1.2.0))) + (home-page "https://cloud.google.com/go") + (synopsis "Google Cloud Client Libraries for Go") + (description + "Package cloud is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +of sub-packages. +") + (license license:asl2.0))) + +(define-public go-github-com-hashicorp-golang-lru-0.5.1 + (package + (name "go-github-com-hashicorp-golang-lru") + (version "0.5.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/golang-lru") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "13f870cvk161bzjj6x41l45r5x9i1z9r2ymwmvm7768kg08zznpy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/golang-lru")) + (home-page "https://github.com/hashicorp/golang-lru") + (synopsis "golang-lru") + (description + "Package lru provides three different LRU caches of varying sophistication. +") + (license license:mpl2.0))) + +(define-public go-github-com-hashicorp-golang-lru-0.5.0 + (package + (name "go-github-com-hashicorp-golang-lru") + (version "0.5.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/golang-lru") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12k2cp2k615fjvfa5hyb9k2alian77wivds8s65diwshwv41939f")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/golang-lru")) + (home-page "https://github.com/hashicorp/golang-lru") + (synopsis "golang-lru") + (description + "Package lru provides three different LRU caches of varying sophistication. +") + (license license:mpl2.0))) + +(define-public go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19 + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20190307195333-5fe7a883aa19") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0qjkwig0r42q0j2qv57s4ahsgmmp41dz3ih3rnaqg0619n5w7lbs")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" + ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) + ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) + ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" + ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) + ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" + ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) + ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" + ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd) + ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" + ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) + ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" + ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-go-opencensus-io-0.21.0 + (package + (name "go-go-opencensus-io") + (version "0.21.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/census-instrumentation/opencensus-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "14s0a12xdzjvad0dgksgv8m3hh7nc585abvjkvyk6r67a29lxj6x")))) + (build-system go-build-system) + (arguments '(#:import-path "go.opencensus.io")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) + ("go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19" + ,go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-github-com-hashicorp-golang-lru-0.5.0" + ,go-github-com-hashicorp-golang-lru-0.5.0) + ("go-github-com-google-go-cmp-0.2.0" + ,go-github-com-google-go-cmp-0.2.0) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0))) + (home-page "https://go.opencensus.io") + (synopsis "OpenCensus Libraries for Go") + (description "Package opencensus contains Go support for OpenCensus. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422 + (package + (name "go-golang-org-x-lint") + (version "0.0.0-20190409202823-959b441ac422") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/lint") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1mgcv5f00pkzsbwnq2y7vqvd1b4lr5a3s47cphh2qv4indfk7pck")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/lint")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" + ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd))) + (home-page "https://golang.org/x/lint") + (synopsis "Installation") + (description "Package lint contains a linter for Go source code. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20190503192946-f4e77d36d62c + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190503192946-f4e77d36d62c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0avjnglqqg9ya0cbhp23m4namykii219kxjywxn4cd7pfcc5arha")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45 + (package + (name "go-golang-org-x-oauth2") + (version "0.0.0-20190604053449-0f29369cfe45") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/oauth2") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "06jwpvx0x2gjn2y959drbcir5kd7vg87k0r1216abk6rrdzzrzi2")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/oauth2")) + (propagated-inputs + `(("go-google-golang-org-appengine-1.4.0" + ,go-google-golang-org-appengine-1.4.0) + ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" + ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) + ("go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e" + ,go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e) + ("go-cloud-google-com-go-0.34.0" ,go-cloud-google-com-go-0.34.0))) + (home-page "https://golang.org/x/oauth2") + (synopsis "OAuth2 for Go") + (description + "Package oauth2 provides support for making +OAuth2 authorized and authenticated HTTP requests, +as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +It can additionally grant authorization with Bearer JWT. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190507160741-ecd444e8653b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1vhld4948mzfnlgf20id29mv1bwpk9a3xlbw1mbjzxzxxdv1jds2")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-google-golang-org-appengine-1.5.0 + (package + (name "go-google-golang-org-appengine") + (version "1.5.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/appengine") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0l7mkdnwhidv8m686x432vmx8z5nqcrr9f46ddgvrxbh4wvyfcll")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/appengine")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225" + ,go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0))) + (home-page "https://google.golang.org/appengine") + (synopsis "Go App Engine packages") + (description + "Package appengine provides basic functionality for Google App Engine. +") + (license license:asl2.0))) + +(define-public go-google-golang-org-api-0.20.0 + (package + (name "go-google-golang-org-api") + (version "0.20.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-api-go-client") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "13syr1x33k6mrn5w6l4sgdbzn368w3m60vf6kk2j10fwa45125rg")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/api")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" + ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" + ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) + ("go-google-golang-org-appengine-1.5.0" + ,go-google-golang-org-appengine-1.5.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) + ("go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b" + ,go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b) + ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" + ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) + ("go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45" + ,go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45) + ("go-golang-org-x-net-0.0.0-20190503192946-f4e77d36d62c" + ,go-golang-org-x-net-0.0.0-20190503192946-f4e77d36d62c) + ("go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422" + ,go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422) + ("go-go-opencensus-io-0.21.0" ,go-go-opencensus-io-0.21.0) + ("go-github-com-hashicorp-golang-lru-0.5.1" + ,go-github-com-hashicorp-golang-lru-0.5.1) + ("go-github-com-googleapis-gax-go-v2-2.0.5" + ,go-github-com-googleapis-gax-go-v2-2.0.5) + ("go-github-com-google-go-cmp-0.3.0" + ,go-github-com-google-go-cmp-0.3.0) + ("go-cloud-google-com-go-0.38.0" ,go-cloud-google-com-go-0.38.0))) + (home-page "https://google.golang.org/api") + (synopsis "Google APIs Client Library for Go") + (description + "Package api is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of +sub-packages. +") + (license license:bsd-3))) + +(define-public go-github-com-google-renameio-0.1.0 + (package + (name "go-github-com-google-renameio") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/renameio") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ki2x5a9nrj17sn092d6n4zr29lfg5ydv4xz5cp58z6cw8ip43jx")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/renameio")) + (home-page "https://github.com/google/renameio") + (synopsis "Atomicity vs durability") + (description + "Package renameio provides a way to atomically create or replace a file or +symbolic link. +") + (license license:asl2.0))) + +(define-public go-github-com-kisielk-gotool-1.0.0 + (package + (name "go-github-com-kisielk-gotool") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kisielk/gotool") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "14af2pa0ssyp8bp2mvdw184s5wcysk6akil3wzxmr05wwy951iwn")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kisielk/gotool")) + (home-page "https://github.com/kisielk/gotool") + (synopsis "gotool") + (description + "Package gotool contains utility functions used to implement the standard +\"cmd/go\" tool, provided as a convenience to developers who want to write +tools with similar semantics. +") + (license license:expat))) + +(define-public go-github-com-kr-pty-1.1.1 + (package + (name "go-github-com-kr-pty") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/pty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0383f0mb9kqjvncqrfpidsf8y6ns5zlrc91c6a74xpyxjwvzl2y6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/pty")) + (home-page "https://github.com/kr/pty") + (synopsis "pty") + (description + "Package pty is a wrapper for github.com/creack/pty, which provides +functions for working with Unix terminals. +") + (license license:expat))) + +(define-public go-github-com-kr-text-0.1.0 + (package + (name "go-github-com-kr-text") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1gm5bsl01apvc84bw06hasawyqm4q84vx1pm32wr9jnd7a8vjgj1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/text")) + (propagated-inputs + `(("go-github-com-kr-pty-1.1.1" ,go-github-com-kr-pty-1.1.1))) + (home-page "https://github.com/kr/text") + (synopsis #f) + (description + "Package text provides rudimentary functions for manipulating text in +paragraphs. +") + (license license:expat))) + +(define-public go-github-com-kr-pretty-0.1.0 + (package + (name "go-github-com-kr-pretty") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/pretty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18m4pwg2abd0j9cn5v3k2ksk9ig4vlwxmlw9rrglanziv9l967qp")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/pretty")) + (propagated-inputs + `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) + (home-page "https://github.com/kr/pretty") + (synopsis #f) + (description + "Package pretty provides pretty-printing for Go values. This is +useful during debugging, to avoid wrapping long output lines in +the terminal. +") + (license license:expat))) + +(define-public go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127 + (package + (name "go-gopkg-in-check-v1") + (version "1.0.0-20180628173108-788fd7840127") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/check.v1") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0v3bim0j375z81zrpr5qv42knqs0y2qv2vkjiqi5axvb78slki1a")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) + (home-page "https://gopkg.in/check.v1") + (synopsis "Instructions") + (description + "Package check is a rich testing extension for Go's testing package. +") + (license license:bsd-2))) + +(define-public go-gopkg-in-errgo-v2-2.1.0 + (package + (name "go-gopkg-in-errgo-v2") + (version "2.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/errgo.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "065mbihiy7q67wnql0bzl9y1kkvck5ivra68254zbih52jxwrgr2")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/errgo.v2" #:unpack-path "gopkg.in/errgo.v2")) + (propagated-inputs + `(("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" + ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) + ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0))) + (home-page "https://gopkg.in/errgo.v2") + (synopsis #f) + (description + "Package errgo provides some primitives for error creation and handling.") + (license license:bsd-3))) + +(define-public go-github-com-rogpeppe-go-internal-1.3.0 + (package + (name "go-github-com-rogpeppe-go-internal") + (version "1.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/rogpeppe/go-internal") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0mcdh1licgnnahwml9y2iq6xy5x9xmjw5frcnds2s3wpjyqrl216")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/rogpeppe/go-internal")) + (propagated-inputs + `(("go-gopkg-in-errgo-v2-2.1.0" ,go-gopkg-in-errgo-v2-2.1.0))) + (home-page "https://github.com/rogpeppe/go-internal") + (synopsis #f) + (description + "This repository factors out an opinionated selection of internal packages and functionality from the Go standard +library. Currently this consists mostly of packages and testing code from within the Go tool implementation.") + (license license:bsd-3))) + +(define-public go-golang-org-x-crypto-0.0.0-20190510104115-cbcb75029529 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20190510104115-cbcb75029529") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12831ga1gq04a3jbbcmww7kaqfdfgp7cdv2fj9aqidz8h52ajdmh")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" + ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) + ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" + ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-mod-0.0.0-20190513183733-4bf6d317e70e + (package + (name "go-golang-org-x-mod") + (version "0.0.0-20190513183733-4bf6d317e70e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/mod") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19lg1ly3j31anx92p0hynic1gjk417wwxphfdrb2cq1c19kj3r17")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/mod")) + (propagated-inputs + `(("go-golang-org-x-crypto-0.0.0-20190510104115-cbcb75029529" + ,go-golang-org-x-crypto-0.0.0-20190510104115-cbcb75029529))) + (home-page "https://golang.org/x/mod") + (synopsis "mod") + (description + "This repository holds packages for writing tools +that work directly with Go module mechanics. +That is, it is for direct manipulation of Go modules themselves.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20191130070609-6e064ea0cf2d + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20191130070609-6e064ea0cf2d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1nbki367xspsa37j6276f5q2gv31vfjpb52axn3p3ymz548my75d")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7" + ,go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7) + ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" + ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) + ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" + ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-honnef-co-go-tools-0.0.1-2020.1.3 + (package + (name "go-honnef-co-go-tools") + (version "0.0.1-2020.1.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/dominikh/go-tools") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0pvi1mzhy6zgx4zfgdypbl4zhvgg11hl5qv7blf2qs0a96j2djhf")))) + (build-system go-build-system) + (arguments '(#:import-path "honnef.co/go/tools")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20191130070609-6e064ea0cf2d" + ,go-golang-org-x-tools-0.0.0-20191130070609-6e064ea0cf2d) + ("go-golang-org-x-mod-0.0.0-20190513183733-4bf6d317e70e" + ,go-golang-org-x-mod-0.0.0-20190513183733-4bf6d317e70e) + ("go-github-com-rogpeppe-go-internal-1.3.0" + ,go-github-com-rogpeppe-go-internal-1.3.0) + ("go-github-com-kisielk-gotool-1.0.0" + ,go-github-com-kisielk-gotool-1.0.0) + ("go-github-com-google-renameio-0.1.0" + ,go-github-com-google-renameio-0.1.0) + ("go-github-com-burntsushi-toml-0.3.1" + ,go-github-com-burntsushi-toml-0.3.1))) + (home-page "https://honnef.co/go/tools") + (synopsis "Documentation") + (description + "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, +offers simplifications, and enforces style rules.") + (license license:expat))) + +(define-public go-cloud-google-com-go-0.56.0 + (package + (name "go-cloud-google-com-go") + (version "0.56.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-cloud-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1bpx84q7byxr5rp197qcg3pl56acs8v1q555frxgcqygxwjacszf")))) + (build-system go-build-system) + (arguments '(#:import-path "cloud.google.com/go")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.1-2020.1.3" + ,go-honnef-co-go-tools-0.0.1-2020.1.3) + ("go-google-golang-org-grpc-1.28.0" ,go-google-golang-org-grpc-1.28.0) + ("go-google-golang-org-genproto-0.0.0-20200331122359-1ee6d9798940" + ,go-google-golang-org-genproto-0.0.0-20200331122359-1ee6d9798940) + ("go-google-golang-org-api-0.20.0" ,go-google-golang-org-api-0.20.0) + ("go-golang-org-x-tools-0.0.0-20200331025713-a30bf2db82d4" + ,go-golang-org-x-tools-0.0.0-20200331025713-a30bf2db82d4) + ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) + ("go-golang-org-x-sys-0.0.0-20200331124033-c3d80250170d" + ,go-golang-org-x-sys-0.0.0-20200331124033-c3d80250170d) + ("go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a" + ,go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a) + ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" + ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) + ("go-golang-org-x-net-0.0.0-20200324143707-d3edc9973b7e" + ,go-golang-org-x-net-0.0.0-20200324143707-d3edc9973b7e) + ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" + ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) + ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) + ("go-github-com-jstemmer-go-junit-report-0.9.1" + ,go-github-com-jstemmer-go-junit-report-0.9.1) + ("go-github-com-googleapis-gax-go-v2-2.0.5" + ,go-github-com-googleapis-gax-go-v2-2.0.5) + ("go-github-com-google-pprof-0.0.0-20200229191704-1ebb73c60ed3" + ,go-github-com-google-pprof-0.0.0-20200229191704-1ebb73c60ed3) + ("go-github-com-google-martian-2.1.0+incompatible" + ,go-github-com-google-martian-2.1.0+incompatible) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.3.5" + ,go-github-com-golang-protobuf-1.3.5) + ("go-github-com-golang-mock-1.4.3" ,go-github-com-golang-mock-1.4.3) + ("go-cloud-google-com-go-storage-1.6.0" + ,go-cloud-google-com-go-storage-1.6.0) + ("go-cloud-google-com-go-pubsub-1.2.0" + ,go-cloud-google-com-go-pubsub-1.2.0) + ("go-cloud-google-com-go-datastore-1.1.0" + ,go-cloud-google-com-go-datastore-1.1.0) + ("go-cloud-google-com-go-bigquery-1.4.0" + ,go-cloud-google-com-go-bigquery-1.4.0))) + (home-page "https://cloud.google.com/go") + (synopsis "Google Cloud Client Libraries for Go") + (description + "Package cloud is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +of sub-packages. +") + (license license:asl2.0))) + +(define-public go-go-opencensus-io-0.22.3 + (package + (name "go-go-opencensus-io") + (version "0.22.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/census-instrumentation/opencensus-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0xj16iq5jp26hi2py7lsd8cvqh651fgn39y05gzvjdi88d9xd3nw")))) + (build-system go-build-system) + (arguments '(#:import-path "go.opencensus.io")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.20.1" ,go-google-golang-org-grpc-1.20.1) + ("go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb" + ,go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb) + ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) + ("go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd" + ,go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd) + ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" + ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) + ("go-github-com-stretchr-testify-1.4.0" + ,go-github-com-stretchr-testify-1.4.0) + ("go-github-com-google-go-cmp-0.3.0" + ,go-github-com-google-go-cmp-0.3.0) + ("go-github-com-golang-protobuf-1.3.1" + ,go-github-com-golang-protobuf-1.3.1) + ("go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6" + ,go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6))) + (home-page "https://go.opencensus.io") + (synopsis "OpenCensus Libraries for Go") + (description "Package opencensus contains Go support for OpenCensus. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20200317015054-43a5402ce75a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0j6zrrb81qjr1926kkwmn0di9a0jn8qyjd9dw614rfkihxgq1vsm")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the +ones provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20200331124033-c3d80250170d + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200331124033-c3d80250170d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1nswjhkg7yixla0b3d8xwzf94rawwyjrxipay3ffdvm426n0ld42")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-yuin-goldmark-1.1.25 + (package + (name "go-github-com-yuin-goldmark") + (version "1.1.25") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/yuin/goldmark") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0cr3mk8pr7vsyisgrvln5ailnnn9xhardcy8mkshybk5c3n1kw5k")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/yuin/goldmark")) + (home-page "https://github.com/yuin/goldmark") + (synopsis "goldmark") + (description + "Package goldmark implements functions to convert markdown text to a desired format. +") + (license license:expat))) + +(define-public go-golang-org-x-mod-0.2.0 + (package + (name "go-golang-org-x-mod") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/mod") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fp6885dclq77mh73v7i54v2b9llpv4di193zc8vmsbbkkc483cl")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/mod")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" + ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) + ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" + ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) + ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" + ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) + (home-page "https://golang.org/x/mod") + (synopsis "mod") + (description + "This repository holds packages for writing tools +that work directly with Go module mechanics. +That is, it is for direct manipulation of Go modules themselves.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b + (package + (name "go-golang-org-x-net") + (version "0.0.0-20200226121028-0de0cce0169b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1db7s5kbzyh2zd5lpv05n7hp8wbwdvgk0wpiwrlnig94mkr0y5aq")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20190911185100-cd5d95a43a6e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1nqkyz2y1qvqcma52ijh02s8aiqmkfb95j08f6zcjhbga3ds6hds")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the +ones provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20200331025713-a30bf2db82d4 + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20200331025713-a30bf2db82d4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1rb488ydwi24zmd1zvsv8k8srs3q6xnqqfdar538hssqgljyvp7l")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) + ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" + ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) + ("go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b" + ,go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b) + ("go-golang-org-x-mod-0.2.0" ,go-golang-org-x-mod-0.2.0) + ("go-github-com-yuin-goldmark-1.1.25" + ,go-github-com-yuin-goldmark-1.1.25))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-google-golang-org-appengine-1.6.5 + (package + (name "go-google-golang-org-appengine") + (version "1.6.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/appengine") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "05hbq4cs7bqw0zl17bx8rzdkszid3nyl92100scg3jjrg70dhm7w")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/appengine")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) + ("go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65" + ,go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65) + ("go-github-com-golang-protobuf-1.3.1" + ,go-github-com-golang-protobuf-1.3.1))) + (home-page "https://google.golang.org/appengine") + (synopsis "Go App Engine packages") + (description + "Package appengine provides basic functionality for Google App Engine. +") + (license license:asl2.0))) + +(define-public go-google-golang-org-genproto-0.0.0-20200331122359-1ee6d9798940 + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20200331122359-1ee6d9798940") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1zsp55d7xjc0b3yw5jjpvbsc0gkji1c1j2vxmcwm89dh26rz4jwd")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" + ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-golang-protobuf-1.3.3" + ,go-github-com-golang-protobuf-1.3.3))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-google-golang-org-grpc-1.28.0 + (package + (name "go-google-golang-org-grpc") + (version "1.28.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1m36rg3w2mf4r3383yf0r1pjrz890mdw506h1lpm6bkc8w3kyqz3")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" + ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-github-com-google-go-cmp-0.2.0" + ,go-github-com-google-go-cmp-0.2.0) + ("go-github-com-golang-protobuf-1.3.3" + ,go-github-com-golang-protobuf-1.3.3) + ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" + ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) + ("go-github-com-envoyproxy-go-control-plane-0.9.4" + ,go-github-com-envoyproxy-go-control-plane-0.9.4))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-google-golang-org-api-0.29.0 + (package + (name "go-google-golang-org-api") + (version "0.29.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-api-go-client") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1y6izqcc6krill33pb57fbgbs7ni3jxyf3knm5jkl4qydsj9303h")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/api")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.28.0" ,go-google-golang-org-grpc-1.28.0) + ("go-google-golang-org-genproto-0.0.0-20200331122359-1ee6d9798940" + ,go-google-golang-org-genproto-0.0.0-20200331122359-1ee6d9798940) + ("go-google-golang-org-appengine-1.6.5" + ,go-google-golang-org-appengine-1.6.5) + ("go-golang-org-x-tools-0.0.0-20200331025713-a30bf2db82d4" + ,go-golang-org-x-tools-0.0.0-20200331025713-a30bf2db82d4) + ("go-golang-org-x-sys-0.0.0-20200331124033-c3d80250170d" + ,go-golang-org-x-sys-0.0.0-20200331124033-c3d80250170d) + ("go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a" + ,go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a) + ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" + ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) + ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" + ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) + ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) + ("go-github-com-googleapis-gax-go-v2-2.0.5" + ,go-github-com-googleapis-gax-go-v2-2.0.5) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-cloud-google-com-go-0.56.0" ,go-cloud-google-com-go-0.56.0))) + (home-page "https://google.golang.org/api") + (synopsis "Google APIs Client Library for Go") + (description + "Package api is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of +sub-packages. +") + (license license:bsd-3))) + +(define-public go-google-golang-org-genproto-0.0.0-20200729003335-053ba62fc06f + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20200729003335-053ba62fc06f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1h34qgr4lqy1l0niay3gzqh6pc63y2xh1mmp8757y8jsrdz1s5fv")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.24.0" + ,go-google-golang-org-protobuf-1.24.0) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-golang-protobuf-1.4.1" + ,go-github-com-golang-protobuf-1.4.1))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-google-golang-org-grpc-1.30.0 + (package + (name "go-google-golang-org-grpc") + (version "1.30.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "05pb9xrxd7kpbi8zzby90f87b6sxq65nmpgqx5h3255whmmpzbi9")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" + ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.3.3" + ,go-github-com-golang-protobuf-1.3.3) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-envoyproxy-go-control-plane-0.9.4" + ,go-github-com-envoyproxy-go-control-plane-0.9.4) + ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" + ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-cloud-google-com-go-0.62.0 + (package + (name "go-cloud-google-com-go") + (version "0.62.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-cloud-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "00x1nlq4fvvxrwx24firscav511qwck3zl6ghs9p6zzzixla8r5h")))) + (build-system go-build-system) + (arguments '(#:import-path "cloud.google.com/go")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.25.0" + ,go-google-golang-org-protobuf-1.25.0) + ("go-google-golang-org-grpc-1.30.0" ,go-google-golang-org-grpc-1.30.0) + ("go-google-golang-org-genproto-0.0.0-20200729003335-053ba62fc06f" + ,go-google-golang-org-genproto-0.0.0-20200729003335-053ba62fc06f) + ("go-google-golang-org-api-0.29.0" ,go-google-golang-org-api-0.29.0) + ("go-golang-org-x-tools-0.0.0-20200729194436-6467de6f59a7" + ,go-golang-org-x-tools-0.0.0-20200729194436-6467de6f59a7) + ("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) + ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" + ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) + ("go-golang-org-x-net-0.0.0-20200707034311-ab3426394381" + ,go-golang-org-x-net-0.0.0-20200707034311-ab3426394381) + ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" + ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) + ("go-go-opencensus-io-0.22.4" ,go-go-opencensus-io-0.22.4) + ("go-github-com-jstemmer-go-junit-report-0.9.1" + ,go-github-com-jstemmer-go-junit-report-0.9.1) + ("go-github-com-googleapis-gax-go-v2-2.0.5" + ,go-github-com-googleapis-gax-go-v2-2.0.5) + ("go-github-com-google-pprof-0.0.0-20200708004538-1a94d8640e99" + ,go-github-com-google-pprof-0.0.0-20200708004538-1a94d8640e99) + ("go-github-com-google-martian-v3-3.0.0" + ,go-github-com-google-martian-v3-3.0.0) + ("go-github-com-google-go-cmp-0.5.1" + ,go-github-com-google-go-cmp-0.5.1) + ("go-github-com-golang-protobuf-1.4.2" + ,go-github-com-golang-protobuf-1.4.2) + ("go-github-com-golang-mock-1.4.3" ,go-github-com-golang-mock-1.4.3) + ("go-cloud-google-com-go-storage-1.10.0" + ,go-cloud-google-com-go-storage-1.10.0))) + (home-page "https://cloud.google.com/go") + (synopsis "Google Cloud Client Libraries for Go") + (description + "Package cloud is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +of sub-packages. +") + (license license:asl2.0))) + +(define-public go-github-com-google-go-cmp-0.5.1 + (package + (name "go-github-com-google-go-cmp") + (version "0.5.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1wjdid59brciv09agxgmqac5k9ywg63nhzb0yi9anmqpl38gps0p")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") + (license license:bsd-3))) + +(define-public go-github-com-googleapis-gax-go-v2-2.0.5 + (package + (name "go-github-com-googleapis-gax-go-v2") + (version "2.0.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/gax-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1lxawwngv6miaqd25s3ba0didfzylbwisd2nz7r4gmbmin6jsjrx")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/googleapis/gax-go/v2")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.19.0" + ,go-google-golang-org-grpc-1.19.0))) + (home-page "https://github.com/googleapis/gax-go") + (synopsis #f) + (description + "Package gax contains a set of modules which aid the development of APIs +for clients and servers based on gRPC and Google API conventions. +") + (license license:bsd-3))) + +(define-public go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6 + (package + (name "go-github-com-golang-groupcache") + (version "0.0.0-20190702054246-869f871628b6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/groupcache") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0r4nk8129bvx50qb4xzjaay39b2h6k7cbdqqzdlanmc82ygczsbw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/groupcache")) + (home-page "https://github.com/golang/groupcache") + (synopsis "groupcache") + (description + "Package groupcache provides a data loading mechanism with caching +and de-duplication that works across a set of peer processes. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190502145724-3ef323f4f1fd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "15iw4gjvrnrx98rlny1qcaprp3577rh2b77byb38dr6m3q42rvc6")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6 + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20190227155943-e225da77a7e6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0bh3583smcfw6jw3w6lp0za93rz7hpxfdz8vhxng75b7a6vdlw4p")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the +ones provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20190425155659-357c62f0e4bb") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1h1a0wys83cc86s4w2hqmz78ixijw8f7qchmiwdv5xjvpg0i27c2")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" + ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) + ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) + ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" + ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) + ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" + ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) + ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" + ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd) + ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" + ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) + ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" + ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-google-golang-org-grpc-1.20.1 + (package + (name "go-google-golang-org-grpc") + (version "1.20.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0rj3fs6jillapiwnpkfn3v2jbl7a3zsb0lys4srswl26hjijviqq")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" + ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) + ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" + ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) + ("go-google-golang-org-appengine-1.1.0" + ,go-google-golang-org-appengine-1.1.0) + ("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" + ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" + ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0) + ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-client9-misspell-0.3.4" + ,go-github-com-client9-misspell-0.3.4) + ("go-github-com-burntsushi-toml-0.3.1" + ,go-github-com-burntsushi-toml-0.3.1) + ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-go-opencensus-io-0.22.4 + (package + (name "go-go-opencensus-io") + (version "0.22.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/census-instrumentation/opencensus-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "10skbvs4yxjm3z10yfg5cj2mdzjsna87qk1icp9xv0iwp8wzq6h0")))) + (build-system go-build-system) + (arguments '(#:import-path "go.opencensus.io")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.20.1" ,go-google-golang-org-grpc-1.20.1) + ("go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb" + ,go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb) + ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) + ("go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd" + ,go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd) + ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" + ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) + ("go-github-com-stretchr-testify-1.4.0" + ,go-github-com-stretchr-testify-1.4.0) + ("go-github-com-google-go-cmp-0.3.0" + ,go-github-com-google-go-cmp-0.3.0) + ("go-github-com-golang-protobuf-1.3.1" + ,go-github-com-golang-protobuf-1.3.1) + ("go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6" + ,go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6))) + (home-page "https://go.opencensus.io") + (synopsis "OpenCensus Libraries for Go") + (description "Package opencensus contains Go support for OpenCensus. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b + (package + (name "go-golang-org-x-lint") + (version "0.0.0-20200302205851-738671d3881b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/lint") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0jkiz4py59jjnkyxbxifpf7bsar11lbgmj5jiq2kic5k03shkn9c")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/lint")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7" + ,go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7))) + (home-page "https://golang.org/x/lint") + (synopsis "Installation") + (description "Package lint contains a linter for Go source code. +") + (license license:bsd-3))) + +(define-public go-cloud-google-com-go-0.34.0 + (package + (name "go-cloud-google-com-go") + (version "0.34.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-cloud-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1kclgclwar3r37zbvb9gg3qxbgzkb50zk3s9778zlh2773qikmai")))) + (build-system go-build-system) + (arguments '(#:import-path "cloud.google.com/go")) + (home-page "https://cloud.google.com/go") + (synopsis "Google Cloud Client Libraries for Go") + (description + "Package cloud is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +of sub-packages. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190108225652-1e06a53dbb7e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0lpqqvdccby48nixihvmn8ig1z48b950m1bxfqxn78air308qc3j")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4 + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20181221193216-37e7f081c4d4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1bb0mw6ckb1k7z8v3iil2qlqwfj408fvvp8m1cik2b46p7snyjhm")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the +ones provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d + (package + (name "go-golang-org-x-oauth2") + (version "0.0.0-20200107190931-bf48bf16ab8d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/oauth2") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1sirdib60zwmh93kf9qrx51r8544k1p9rs5mk0797wibz3m4mrdg")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/oauth2")) + (propagated-inputs + `(("go-google-golang-org-appengine-1.4.0" + ,go-google-golang-org-appengine-1.4.0) + ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" + ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) + ("go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e" + ,go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e) + ("go-cloud-google-com-go-0.34.0" ,go-cloud-google-com-go-0.34.0))) + (home-page "https://golang.org/x/oauth2") + (synopsis "OAuth2 for Go") + (description + "Package oauth2 provides support for making +OAuth2 authorized and authenticated HTTP requests, +as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +It can additionally grant authorization with Bearer JWT. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20200803210538-64077c9b5642 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200803210538-64077c9b5642") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1pdrkim9v0wbxipl586d29vz4ci9xib0f02g6yv7c0nang627pag")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-yuin-goldmark-1.1.32 + (package + (name "go-github-com-yuin-goldmark") + (version "1.1.32") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/yuin/goldmark") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03i9yq6n3yvn5v70xi6x3pn49ndy8zm4217ihwwhlw2nkwhny7a5")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/yuin/goldmark")) + (home-page "https://github.com/yuin/goldmark") + (synopsis "goldmark") + (description + "Package goldmark implements functions to convert markdown text to a desired format. +") + (license license:expat))) + +(define-public go-golang-org-x-net-0.0.0-20200625001655-4c5254603344 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20200625001655-4c5254603344") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1da0a1m488d95vggpi52dkag98n5671ml6sn80nwv6lgbmdx8qbq")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" + ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) + ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" + ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208 + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20200625203802-6e8e738ad208") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1avk27pszd5l5df6ff7j78wgla46ir1hhy2jwfl9a3c0ys602yx9")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the +ones provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20200804011535-6c149bb5ef0d + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20200804011535-6c149bb5ef0d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1l244hp5n0qff7nmvcffggjv7jm4061g63g76z967zvdqcxh23i2")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) + ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" + ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) + ("go-golang-org-x-net-0.0.0-20200625001655-4c5254603344" + ,go-golang-org-x-net-0.0.0-20200625001655-4c5254603344) + ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) + ("go-github-com-yuin-goldmark-1.1.32" + ,go-github-com-yuin-goldmark-1.1.32))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-google-golang-org-genproto-0.0.0-20200804131852-c06518451d9c + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20200804131852-c06518451d9c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wl9bhr94yf0b8lc947zr0iwm3l20irzy869xczfd6z0a1g54gsa")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.24.0" + ,go-google-golang-org-protobuf-1.24.0) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-golang-protobuf-1.4.1" + ,go-github-com-golang-protobuf-1.4.1))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-google-golang-org-api-0.30.0 + (package + (name "go-google-golang-org-api") + (version "0.30.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-api-go-client") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1vh5rrc6hvzh1rqawrwr4nyilnr3dgqx1pr2njjzdg0prfmflm5p")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/api")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.31.0" ,go-google-golang-org-grpc-1.31.0) + ("go-google-golang-org-genproto-0.0.0-20200804131852-c06518451d9c" + ,go-google-golang-org-genproto-0.0.0-20200804131852-c06518451d9c) + ("go-google-golang-org-appengine-1.6.6" + ,go-google-golang-org-appengine-1.6.6) + ("go-golang-org-x-tools-0.0.0-20200804011535-6c149bb5ef0d" + ,go-golang-org-x-tools-0.0.0-20200804011535-6c149bb5ef0d) + ("go-golang-org-x-sys-0.0.0-20200803210538-64077c9b5642" + ,go-golang-org-x-sys-0.0.0-20200803210538-64077c9b5642) + ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" + ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) + ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" + ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) + ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" + ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) + ("go-go-opencensus-io-0.22.4" ,go-go-opencensus-io-0.22.4) + ("go-github-com-googleapis-gax-go-v2-2.0.5" + ,go-github-com-googleapis-gax-go-v2-2.0.5) + ("go-github-com-google-go-cmp-0.5.1" + ,go-github-com-google-go-cmp-0.5.1) + ("go-cloud-google-com-go-0.62.0" ,go-cloud-google-com-go-0.62.0))) + (home-page "https://google.golang.org/api") + (synopsis "Google APIs Client Library for Go") + (description + "Package api is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of +sub-packages. +") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-1.24.0 + (package + (name "go-google-golang-org-protobuf") + (version "1.24.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0x3qyn3rizbs671gs7f8v50rmiwf9h7kbaradpivw9718mhbg1gn")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" + ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.1" + ,go-github-com-golang-protobuf-1.4.1))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-google-golang-org-genproto-0.0.0-20200825200019-8632dd797987 + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20200825200019-8632dd797987") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0h8s1mz8pbdiwmv2g61afa7f05zin3m6mdy2fmny6wcidz4w2i3k")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.24.0" + ,go-google-golang-org-protobuf-1.24.0) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-golang-protobuf-1.4.1" + ,go-github-com-golang-protobuf-1.4.1))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f + (package + (name "go-github-com-cncf-udpa-go") + (version "0.0.0-20191209042840-269d4d468f6f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cncf/udpa") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0i1jiaw2k3hlwwmg4hap81vb4s1p25xp9kdfww37v0fbgjariccs")))) + (build-system go-build-system) + (arguments + '(#:import-path + "github.com/cncf/udpa/go" + #:unpack-path + "github.com/cncf/udpa")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2) + ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" + ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0))) + (home-page "https://github.com/cncf/udpa") + (synopsis "Description") + (description + "This library has been deprecated in favor of @code{github.com/cncf/xds/go}. All users are recommended to switch their imports.") + (license license:asl2.0))) + +(define-public go-github-com-envoyproxy-go-control-plane-0.9.4 + (package + (name "go-github-com-envoyproxy-go-control-plane") + (version "0.9.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/envoyproxy/go-control-plane") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0m0crzx70lp7vz13v20wxb1fcfdnzp7h3mkh3bn6a8mbfz6w5asj")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) + ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" + ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) + ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" + ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) + ("go-github-com-google-go-cmp-0.2.0" + ,go-github-com-google-go-cmp-0.2.0) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2) + ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" + ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) + ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" + ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f) + ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" + ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) + (home-page "https://github.com/envoyproxy/go-control-plane") + (synopsis "control-plane") + (description + "This repository contains a Go-based implementation of an API server that +implements the discovery service APIs defined in +@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") + (license license:asl2.0))) + +(define-public go-github-com-golang-protobuf-1.3.3 + (package + (name "go-github-com-golang-protobuf") + (version "1.3.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1cyyr52yhj3fzrily3rmsbqyj8va4ld75lmry0857m39rgpv8sy1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-google-golang-org-grpc-1.31.0 + (package + (name "go-google-golang-org-grpc") + (version "1.31.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1y3lilpipmaysjk4skbzw1qa6lv05vzixzw9lg9x73xfb01q4nyz")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" + ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.3.3" + ,go-github-com-golang-protobuf-1.3.3) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-envoyproxy-go-control-plane-0.9.4" + ,go-github-com-envoyproxy-go-control-plane-0.9.4) + ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" + ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-cloud-google-com-go-0.65.0 + (package + (name "go-cloud-google-com-go") + (version "0.65.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-cloud-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0xrcg39jrw90gq8vl8pfq63sp3bkak04wh392yj5rh4lc1a4lxjq")))) + (build-system go-build-system) + (arguments '(#:import-path "cloud.google.com/go")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.31.0" ,go-google-golang-org-grpc-1.31.0) + ("go-google-golang-org-genproto-0.0.0-20200825200019-8632dd797987" + ,go-google-golang-org-genproto-0.0.0-20200825200019-8632dd797987) + ("go-google-golang-org-api-0.30.0" ,go-google-golang-org-api-0.30.0) + ("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" + ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) + ("go-golang-org-x-tools-0.0.0-20200825202427-b303f430e36d" + ,go-golang-org-x-tools-0.0.0-20200825202427-b303f430e36d) + ("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) + ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" + ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) + ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" + ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) + ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" + ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) + ("go-go-opencensus-io-0.22.4" ,go-go-opencensus-io-0.22.4) + ("go-github-com-jstemmer-go-junit-report-0.9.1" + ,go-github-com-jstemmer-go-junit-report-0.9.1) + ("go-github-com-googleapis-gax-go-v2-2.0.5" + ,go-github-com-googleapis-gax-go-v2-2.0.5) + ("go-github-com-google-pprof-0.0.0-20200708004538-1a94d8640e99" + ,go-github-com-google-pprof-0.0.0-20200708004538-1a94d8640e99) + ("go-github-com-google-martian-v3-3.0.0" + ,go-github-com-google-martian-v3-3.0.0) + ("go-github-com-google-go-cmp-0.5.1" + ,go-github-com-google-go-cmp-0.5.1) + ("go-github-com-golang-protobuf-1.4.2" + ,go-github-com-golang-protobuf-1.4.2) + ("go-github-com-golang-mock-1.4.4" ,go-github-com-golang-mock-1.4.4) + ("go-cloud-google-com-go-storage-1.10.0" + ,go-cloud-google-com-go-storage-1.10.0))) + (home-page "https://cloud.google.com/go") + (synopsis "Google Cloud Client Libraries for Go") + (description + "Package cloud is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +of sub-packages. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200323222414-85ca7c5b95cd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1504qkgbhhm4f0bhk77v2r1lj6x171ay5m79alkg78wjb5cign5l")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20200822124328-c89045814202 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20200822124328-c89045814202") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1g3wxilwbcbf2xj20y3mpxh38jka4fyhl48akfqf00vr48zmx96x")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" + ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) + ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" + ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-google-golang-org-appengine-1.6.6 + (package + (name "go-google-golang-org-appengine") + (version "1.6.6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/appengine") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "15c38h6fbv06cnkr6yknygfrpibyms2mya4w0l29kaxf42jn1qi5")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/appengine")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) + ("go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65" + ,go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65) + ("go-github-com-golang-protobuf-1.3.1" + ,go-github-com-golang-protobuf-1.3.1))) + (home-page "https://google.golang.org/appengine") + (synopsis "Go App Engine packages") + (description + "Package appengine provides basic functionality for Google App Engine. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-oauth2-0.0.0-20210402161424-2e8d93401602 + (package + (name "go-golang-org-x-oauth2") + (version "0.0.0-20210402161424-2e8d93401602") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/oauth2") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0j1crxa78gip3hxrds5jngi034j4zm4q3z7r8bqs3rjxnwcki9ig")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/oauth2")) + (propagated-inputs + `(("go-google-golang-org-appengine-1.6.6" + ,go-google-golang-org-appengine-1.6.6) + ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" + ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) + ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) + (home-page "https://golang.org/x/oauth2") + (synopsis "OAuth2 for Go") + (description + "Package oauth2 provides support for making +OAuth2 authorized and authenticated HTTP requests, +as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +It can additionally grant authorization with Bearer JWT. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20210220032951-036812b2e83c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1gl202py3s4gl6arkaxlf8qa6f0jyyg2f95m6f89qnfmr416h85b")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the +ones provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20210403161142-5e06dd20ab57 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20210403161142-5e06dd20ab57") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1acdn06771rxjg38ql9wl8dr1vf23nazjnvk6105z3hddnh14fgb")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.3.1 + (package + (name "go-github-com-golang-protobuf") + (version "1.3.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "15am4s4646qy6iv0g3kkqq52rzykqjhm4bf08dk0fy2r58knpsyl")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190603091049-60506f45cf65") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0827yz7irmnzcdhw8vg74819jaw5ahs4w4v5fvzgfvnxyb9f6zcc")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-text-0.3.2 + (package + (name "go-golang-org-x-text") + (version "0.3.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0flv9idw0jm5nm8lx25xqanbkqgfiym6619w575p7nrdh0riqwqh")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/text")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" + ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) + (home-page "https://golang.org/x/text") + (synopsis "Go Text") + (description + "text is a repository of text-related packages related to internationalization +(i18n) and localization (l10n), such as character encodings, text +transformations, and locale-specific text handling. +") + (license license:bsd-3))) + +(define-public go-google-golang-org-appengine-1.6.7 + (package + (name "go-google-golang-org-appengine") + (version "1.6.7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/appengine") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1wkipg7xxc0ha5p6c3bj0vpgq38l18441n5l6zxdhx0gzvz5z1hs")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/appengine")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) + ("go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65" + ,go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65) + ("go-github-com-golang-protobuf-1.3.1" + ,go-github-com-golang-protobuf-1.3.1))) + (home-page "https://google.golang.org/appengine") + (synopsis "Go App Engine packages") + (description + "Package appengine provides basic functionality for Google App Engine. +") + (license license:asl2.0))) + +(define-public go-github-com-golang-protobuf-1.5.1 + (package + (name "go-github-com-golang-protobuf") + (version "1.5.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1qx8gvsdx1w27vamw6wn1jns2d8pz0g9sji3l0hvs4wl1jf7p32d")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.26.0" + ,go-google-golang-org-protobuf-1.26.0) + ("go-github-com-google-go-cmp-0.5.5" + ,go-github-com-google-go-cmp-0.5.5))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-golang-org-x-mod-0.1.1-0.20191105210325-c90efee705ee + (package + (name "go-golang-org-x-mod") + (version "0.1.1-0.20191105210325-c90efee705ee") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/mod") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0i5md645rmcy5z5ij9ng428k9rz4g3k1kjy3blsq1264rn426gdf")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/mod")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" + ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) + ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" + ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) + (home-page "https://golang.org/x/mod") + (synopsis "mod") + (description + "This repository holds packages for writing tools +that work directly with Go module mechanics. +That is, it is for direct manipulation of Go modules themselves.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7 + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20200130002326-2f3ba24bd6e7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0j3nnmlwnbivf0h9x89vlp8ji3ha41v96bj33cxwmrrjnxq543ww")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" + ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) + ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" + ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) + ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" + ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) + ("go-golang-org-x-mod-0.1.1-0.20191105210325-c90efee705ee" + ,go-golang-org-x-mod-0.1.1-0.20191105210325-c90efee705ee))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5 + (package + (name "go-golang-org-x-lint") + (version "0.0.0-20201208152925-83fdc39ff7b5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/lint") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ms3rs5hvpnm9bxbr5f9743i7hn2bbmqdmvzxq6nmi0f24ypv1l3")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/lint")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7" + ,go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7))) + (home-page "https://golang.org/x/lint") + (synopsis "Installation") + (description "Package lint contains a linter for Go source code. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20210315160823-c6e025ad8005 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20210315160823-c6e025ad8005") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1dy8j3gvbkng0vy2wgdiy48871j4vchgsks2ggfxcx4jg32d2qsr")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20210316092652-d523dce5a7f4 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20210316092652-d523dce5a7f4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "01hhvh6msyg11adxhgjwzbv4jprq5ajzkxxb16ln3dqv4na9b2k1")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) + ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" + ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) + ("go-golang-org-x-sys-0.0.0-20210315160823-c6e025ad8005" + ,go-golang-org-x-sys-0.0.0-20210315160823-c6e025ad8005))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20210320140829-1e4c9ba3b0c4 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20210320140829-1e4c9ba3b0c4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0nrxjq5j058sba9s5g65l5rdw6b4f335lxa7hhcf57paklym1qgr")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-text-0.3.5 + (package + (name "go-golang-org-x-text") + (version "0.3.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "082s9d7wnh1aa2v08g3h5z4if2f8hl4y01pb788qsvab9329lj0w")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/text")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" + ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) + (home-page "https://golang.org/x/text") + (synopsis "Go Text") + (description + "text is a repository of text-related packages related to internationalization +(i18n) and localization (l10n), such as character encodings, text +transformations, and locale-specific text handling. +") + (license license:bsd-3))) + +(define-public go-github-com-yuin-goldmark-1.2.1 + (package + (name "go-github-com-yuin-goldmark") + (version "1.2.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/yuin/goldmark") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12rsnsf65drcp0jfw2jl9w589vsn3pxdk1zh3v9q908iigngrcmy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/yuin/goldmark")) + (home-page "https://github.com/yuin/goldmark") + (synopsis "goldmark") + (description + "Package goldmark implements functions to convert markdown text to a desired format. +") + (license license:expat))) + +(define-public go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20191011191535-87dc89f01550") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0z4i1m2yn3f31ci7wvcm2rxkx2yiv7a78mfzklncmsz2k97rlh2g")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" + ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) + ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" + ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190620200207-3b0461eec859") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0l00c8l0a8xnv6qdpwfzxxsr58jggacgzdrwiprrfx2xqm37b6d5")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7 + (package + (name "go-golang-org-x-xerrors") + (version "0.0.0-20190717185122-a985d3407aa7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/xerrors") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "00wzr5w8aadipgc3rkk8f11i41znskfj9ix5nhhaxyg7isrslgcj")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/xerrors")) + (home-page "https://golang.org/x/xerrors") + (synopsis #f) + (description + "Package xerrors implements functions to manipulate errors. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20191119224855-298f0cb1881e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0l4pqwib2wnfnix6nvxl0yrq87ipi7ff1rz6z5bxfzy9dki1nzmv")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7" + ,go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7) + ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" + ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) + ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" + ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898 + (package + (name "go-golang-org-x-xerrors") + (version "0.0.0-20191011141410-1b5146add898") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/xerrors") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0w2akj91krxjag0xdhsg78470888nicc5ismc2ap9jqpss6v1zih")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/xerrors")) + (home-page "https://golang.org/x/xerrors") + (synopsis #f) + (description + "Package xerrors implements functions to manipulate errors. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-mod-0.3.0 + (package + (name "go-golang-org-x-mod") + (version "0.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/mod") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ldgbx2zpprbsfn6p8pfgs4nn87gwbfcv2z0fa7n8alwsq2yw78q")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/mod")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" + ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) + ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" + ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) + ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" + ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) + (home-page "https://golang.org/x/mod") + (synopsis "mod") + (description + "This repository holds packages for writing tools +that work directly with Go module mechanics. +That is, it is for direct manipulation of Go modules themselves.") + (license license:bsd-3))) + +(define-public go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20200622213623-75b288015ac9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18vlncvvs11ds3zaaziqjlg5s2vcwi3496nn6qv7p0dp94j5pwa2")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" + ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) + ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" + ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200930185726-fdedc70b468f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1njlfhjbvi4lxvjbq8zswrb0y0q4jd2p6x51h1q6vmyzi9af6869")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20201021035429-f5854403a974 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20201021035429-f5854403a974") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1vw63zpmhi337f3gc432x3wkib4j2ia8dy7if31wxwb9dgqvy222")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) + ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" + ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) + ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" + ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9 + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20201020160332-67f06af15bc9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "093p4panc808ak5bamzz7m9nb0xxib7778jpnr6f0xkz1n4fzyw5")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the +ones provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20210119212857-b64e53b001e4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "16in6bazi0frdkzhqxyvmw7qcvzjavq21dnz9bmrqq8d4dpd2j44")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1 + (package + (name "go-golang-org-x-xerrors") + (version "0.0.0-20200804184101-5ec99f83aff1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/xerrors") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1dbzc3gmf2haazpv7cgmv97rq40g2xzwbglc17vas8dwhgwgwrzb")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/xerrors")) + (home-page "https://golang.org/x/xerrors") + (synopsis #f) + (description + "Package xerrors implements functions to manipulate errors. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.1.0 + (package + (name "go-golang-org-x-tools") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1asrm22kv5x891qkbpap8alg612k321jbs1akc0vwsan251gm507")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" + ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) + ("go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4" + ,go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4) + ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" + ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) + ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" + ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) + ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) + ("go-github-com-yuin-goldmark-1.2.1" + ,go-github-com-yuin-goldmark-1.2.1))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-1.26.0-rc.1 + (package + (name "go-google-golang-org-protobuf") + (version "1.26.0-rc.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1m2jp247qcnix42jncn0q7pwrjgbhiqllb1115hfsz40xfnfhp8j")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.5.5" + ,go-github-com-google-go-cmp-0.5.5))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.5.0 + (package + (name "go-github-com-golang-protobuf") + (version "1.5.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1craaxv34g4g8q3yrv6pr28fx9ihnk7hj5gnbmxcrhcp78423lnf")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.26.0-rc.1" + ,go-google-golang-org-protobuf-1.26.0-rc.1) + ("go-github-com-google-go-cmp-0.5.5" + ,go-github-com-google-go-cmp-0.5.5))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-github-com-google-go-cmp-0.5.5 + (package + (name "go-github-com-google-go-cmp") + (version "0.5.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12fmkdhyv5d4is8s57k78j097zb0phlgnrkqc03agiszxlid69x7")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-1.26.0 + (package + (name "go-google-golang-org-protobuf") + (version "1.26.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0xq6phaps6d0vcv13ga59gzj4306l0ki9kikhmb52h6pq0iwfqlz")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.5.5" + ,go-github-com-google-go-cmp-0.5.5) + ("go-github-com-golang-protobuf-1.5.0" + ,go-github-com-golang-protobuf-1.5.0))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-google-golang-org-genproto-0.0.0-20210402141018-6c239bbf2bb1 + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20210402141018-6c239bbf2bb1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1xih6y4dwjj939ilwc5s6w419kjnkn1hw33jsgml0nkjcnac74wc")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.26.0" + ,go-google-golang-org-protobuf-1.26.0) + ("go-google-golang-org-grpc-1.36.1" ,go-google-golang-org-grpc-1.36.1) + ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) + ("go-golang-org-x-text-0.3.5" ,go-golang-org-x-text-0.3.5) + ("go-golang-org-x-sys-0.0.0-20210320140829-1e4c9ba3b0c4" + ,go-golang-org-x-sys-0.0.0-20210320140829-1e4c9ba3b0c4) + ("go-golang-org-x-net-0.0.0-20210316092652-d523dce5a7f4" + ,go-golang-org-x-net-0.0.0-20210316092652-d523dce5a7f4) + ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" + ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) + ("go-github-com-golang-protobuf-1.5.1" + ,go-github-com-golang-protobuf-1.5.1))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad + (package + (name "go-github-com-envoyproxy-go-control-plane") + (version "0.9.9-0.20201210154907-fd9021fe5dad") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/envoyproxy/go-control-plane") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0piyk6pk36x2qr3bhys2k240pfwz3bv64fhi2l0vx1mzwiddapbm")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.23.0" + ,go-google-golang-org-protobuf-1.23.0) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" + ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) + ("go-github-com-stretchr-testify-1.5.1" + ,go-github-com-stretchr-testify-1.5.1) + ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" + ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.2" + ,go-github-com-golang-protobuf-1.4.2) + ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" + ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) + ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" + ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403) + ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" + ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) + (home-page "https://github.com/envoyproxy/go-control-plane") + (synopsis "control-plane") + (description + "This repository contains a Go-based implementation of an API server that +implements the discovery service APIs defined in +@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") + (license license:asl2.0))) + +(define-public go-google-golang-org-grpc-1.36.1 + (package + (name "go-google-golang-org-grpc") + (version "1.36.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0l3prxp18lb0pagqg4l6c9i0l6gakfxgf6vxcsv589i0xsxw8ivm")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.25.0" + ,go-google-golang-org-protobuf-1.25.0) + ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" + ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) + ("go-github-com-google-go-cmp-0.5.0" + ,go-github-com-google-go-cmp-0.5.0) + ("go-github-com-golang-protobuf-1.4.2" + ,go-github-com-golang-protobuf-1.4.2) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad" + ,go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad) + ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" + ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-google-golang-org-api-0.44.0 + (package + (name "go-google-golang-org-api") + (version "0.44.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-api-go-client") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0sh6qzc3pnyliy10afrmzpfbbbm2mwcyc6mp5422xhgp3p2x370x")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/api")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.36.1" ,go-google-golang-org-grpc-1.36.1) + ("go-google-golang-org-genproto-0.0.0-20210402141018-6c239bbf2bb1" + ,go-google-golang-org-genproto-0.0.0-20210402141018-6c239bbf2bb1) + ("go-google-golang-org-appengine-1.6.7" + ,go-google-golang-org-appengine-1.6.7) + ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) + ("go-golang-org-x-sys-0.0.0-20210403161142-5e06dd20ab57" + ,go-golang-org-x-sys-0.0.0-20210403161142-5e06dd20ab57) + ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" + ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) + ("go-golang-org-x-oauth2-0.0.0-20210402161424-2e8d93401602" + ,go-golang-org-x-oauth2-0.0.0-20210402161424-2e8d93401602) + ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" + ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) + ("go-go-opencensus-io-0.23.0" ,go-go-opencensus-io-0.23.0) + ("go-github-com-googleapis-gax-go-v2-2.0.5" + ,go-github-com-googleapis-gax-go-v2-2.0.5) + ("go-github-com-google-go-cmp-0.5.5" + ,go-github-com-google-go-cmp-0.5.5) + ("go-cloud-google-com-go-0.81.0" ,go-cloud-google-com-go-0.81.0))) + (home-page "https://google.golang.org/api") + (synopsis "Google APIs Client Library for Go") + (description + "Package api is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of +sub-packages. +") + (license license:bsd-3))) + +(define-public go-github-com-envoyproxy-go-control-plane-0.9.0 + (package + (name "go-github-com-envoyproxy-go-control-plane") + (version "0.9.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/envoyproxy/go-control-plane") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1dpvi4wnycyj6hnai78fr8aj58b27b1vcwdp3v0id5v22kvgr3xw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.23.0" ,go-google-golang-org-grpc-1.23.0) + ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" + ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) + ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" + ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2) + ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" + ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) + ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" + ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) + (home-page "https://github.com/envoyproxy/go-control-plane") + (synopsis "control-plane") + (description + "This repository contains a Go-based implementation of an API server that +implements the discovery service APIs defined in +@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") + (license license:asl2.0))) + +(define-public go-google-golang-org-grpc-1.25.1 + (package + (name "go-google-golang-org-grpc") + (version "1.25.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0a136ij9p11yj1vx892yqy40jkh7n5nfbpdvhgydcj823mx51c6f")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" + ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-github-com-google-go-cmp-0.2.0" + ,go-github-com-google-go-cmp-0.2.0) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2) + ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" + ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) + ("go-github-com-envoyproxy-go-control-plane-0.9.0" + ,go-github-com-envoyproxy-go-control-plane-0.9.0))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403 + (package + (name "go-github-com-cncf-udpa-go") + (version "0.0.0-20201120205902-5459f2c99403") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cncf/udpa") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0i3al193dsp91j7iywqrm6fr56y2sz51ci4vf19mb3j4n2x44gsi")))) + (build-system go-build-system) + (arguments + '(#:import-path + "github.com/cncf/udpa/go" + #:unpack-path + "github.com/cncf/udpa")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2) + ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" + ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0))) + (home-page "https://github.com/cncf/udpa") + (synopsis "Description") + (description + "This library has been deprecated in favor of @code{github.com/cncf/xds/go}. All users are recommended to switch their imports.") + (license license:asl2.0))) + +(define-public go-github-com-stretchr-testify-1.5.1 + (package + (name "go-github-com-stretchr-testify") + (version "1.5.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "09r89m1wy4cjv2nps1ykp00qjpi0531r07q3s34hr7m6njk4srkl")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) + ("go-github-com-stretchr-objx-0.1.0" + ,go-github-com-stretchr-objx-0.1.0) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.0" + ,go-github-com-davecgh-go-spew-1.1.0))) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +") + (license license:expat))) + +(define-public go-github-com-envoyproxy-go-control-plane-0.9.9-0.20210217033140-668b12f5399d + (package + (name "go-github-com-envoyproxy-go-control-plane") + (version "0.9.9-0.20210217033140-668b12f5399d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/envoyproxy/go-control-plane") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0vmhc8ii081x1k2qw4kji7wjyg6l25zp1y6qxi27wq8m341i4rzb")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.23.0" + ,go-google-golang-org-protobuf-1.23.0) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" + ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) + ("go-github-com-stretchr-testify-1.5.1" + ,go-github-com-stretchr-testify-1.5.1) + ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" + ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.2" + ,go-github-com-golang-protobuf-1.4.2) + ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" + ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) + ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" + ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403) + ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" + ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) + (home-page "https://github.com/envoyproxy/go-control-plane") + (synopsis "control-plane") + (description + "This repository contains a Go-based implementation of an API server that +implements the discovery service APIs defined in +@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") + (license license:asl2.0))) + +(define-public go-google-golang-org-protobuf-1.23.0 + (package + (name "go-google-golang-org-protobuf") + (version "1.23.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03yan0m1v0zmlr935p4n24fd376mznsg85zy8sywbgisls4s1bzy")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.0" + ,go-github-com-golang-protobuf-1.4.0))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.4.2 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0m5z81im4nsyfgarjhppayk4hqnrwswr3nix9mj8pff8x9jvcjqw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.23.0" + ,go-google-golang-org-protobuf-1.23.0) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-github-com-google-uuid-1.1.2 + (package + (name "go-github-com-google-uuid") + (version "1.1.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/uuid") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1rbpfa0v0ly9sdnixcxhf79swki54ikgm1zkwwkj64p1ws66syqd")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/uuid")) + (home-page "https://github.com/google/uuid") + (synopsis "uuid") + (description "Package uuid generates and inspects UUIDs. +") + (license license:bsd-3))) + +(define-public go-github-com-google-go-cmp-0.5.0 + (package + (name "go-github-com-google-go-cmp") + (version "0.5.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "04pzp583p6b32y34c6jygfxarff9qjs39rarvfh6467z24sdd9k4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-1.22.0 + (package + (name "go-google-golang-org-protobuf") + (version "1.22.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0n7lc4m7kfvj01glc0gnjy0zsnsic7cxnbvlajy0h14cxbab87pj")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.0" + ,go-github-com-golang-protobuf-1.4.0))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.4.1 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0w7ks4vffnnkp0miwgc3chrsnmya45lzvpahb2wmw0jwhdp5kdx7")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.22.0" + ,go-google-golang-org-protobuf-1.22.0) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-github-com-census-instrumentation-opencensus-proto-0.2.1 + (package + (name "go-github-com-census-instrumentation-opencensus-proto") + (version "0.2.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/census-instrumentation/opencensus-proto") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19fcx3sc99i5dsklny6r073z5j20vlwn2xqm6di1q3b1xwchzqfj")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/census-instrumentation/opencensus-proto")) + (home-page "https://github.com/census-instrumentation/opencensus-proto") + (synopsis + "OpenCensus Proto - Language Independent Interface Types For OpenCensus") + (description + "Census provides a framework to define and collect stats against metrics and to +break those stats down across user-defined dimensions.") + (license license:asl2.0))) + +(define-public go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4 + (package + (name "go-github-com-prometheus-client-model") + (version "0.0.0-20190812154241-14fe0d1b01d4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/client_model") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0zdmk6rbbx39cvfz0r59v2jg5sg9yd02b4pds5n5llgvivi99550")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/client_model")) + (propagated-inputs + `(("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" + ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0))) + (home-page "https://github.com/prometheus/client_model") + (synopsis "Deprecation note") + (description + "This repository used to contain the code that defined both +the data model and the exposition format of Prometheus metrics.") + (license license:asl2.0))) + +(define-public go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20190311212946-11955173bddd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hlkai67w167wiyivkzd1fgqrnyxkb94l2c6kr51jwcscizfyfn3")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3 + (package + (name "go-golang-org-x-lint") + (version "0.0.0-20190313153728-d0100b6bd8b3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/lint") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0b0amr9x4ji66iv9ayfx7zrfx52k1m5g66qfcxkgj80qrb1y2yn7")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/lint")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" + ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd))) + (home-page "https://golang.org/x/lint") + (synopsis "Installation") + (description "Package lint contains a linter for Go source code. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20190423024810-112230192c58 + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20190423024810-112230192c58") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "05i2k43j2d0llq768hg5pf3hb2yhfzp9la1w5wp0rsnnzblr0lfn")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the +ones provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135 + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20190524140312-2c0ae7006135") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1lsi2ssxajclj3bciz2a41v1vjv768ja3v6wnbyhxy8xphwkp4fk")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" + ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-google-golang-org-grpc-1.23.0 + (package + (name "go-google-golang-org-grpc") + (version "1.23.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1cn33r2gclmq2v1ndpf1n5bmhf2qs8mms7ii5cnl6f9ch4r2c4k3")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" + ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) + ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" + ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) + ("go-google-golang-org-appengine-1.1.0" + ,go-google-golang-org-appengine-1.1.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-google-go-cmp-0.2.0" + ,go-github-com-google-go-cmp-0.2.0) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0) + ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-client9-misspell-0.3.4" + ,go-github-com-client9-misspell-0.3.4) + ("go-github-com-burntsushi-toml-0.3.1" + ,go-github-com-burntsushi-toml-0.3.1) + ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473 + (package + (name "go-github-com-envoyproxy-go-control-plane") + (version "0.9.1-0.20191026205805-5f8ba28d4473") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/envoyproxy/go-control-plane") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1f1s764rd41vd9vgk3r14h1m6fz6pdvxj6fd83q58gxifbc4q5w4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.23.0" ,go-google-golang-org-grpc-1.23.0) + ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" + ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) + ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" + ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2) + ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" + ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) + ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" + ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) + (home-page "https://github.com/envoyproxy/go-control-plane") + (synopsis "control-plane") + (description + "This repository contains a Go-based implementation of an API server that +implements the discovery service APIs defined in +@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") + (license license:asl2.0))) + +(define-public go-github-com-envoyproxy-protoc-gen-validate-0.1.0 + (package + (name "go-github-com-envoyproxy-protoc-gen-validate") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/envoyproxy/protoc-gen-validate") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0kxd3wwh3xwqk0r684hsy281xq4y71cd11d4q2hspcjbnlbwh7cy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/envoyproxy/protoc-gen-validate")) + (home-page "https://github.com/envoyproxy/protoc-gen-validate") + (synopsis "protoc-gen-validate (PGV)") + (description + "PGV is a protoc plugin to generate polyglot message validators. While protocol buffers effectively guarantee the types of structured data, they cannot enforce semantic rules for values. This plugin adds support to protoc-generated code to validate such constraints.") + (license license:asl2.0))) + +(define-public go-github-com-google-go-cmp-0.2.0 + (package + (name "go-github-com-google-go-cmp") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fbv0x27k9sn8svafc0hjwsnckk864lv4yi7bvzrxvmd3d5hskds")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.3.2 + (package + (name "go-github-com-golang-protobuf") + (version "1.3.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1k1wb4zr0qbwgpvz9q5ws9zhlal8hq7dmq62pwxxriksayl6hzym")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4 + (package + (name "go-golang-org-x-exp") + (version "0.0.0-20190121172915-509febef88a4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/exp") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "02isrh39z8znrp5znplzy0dip2gnrl3jm1355raliyvhnhg04j6q")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/exp")) + (home-page "https://golang.org/x/exp") + (synopsis "exp") + (description + "This subrepository holds experimental and deprecated (in the @code{old} +directory) packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961 + (package + (name "go-golang-org-x-lint") + (version "0.0.0-20190227174305-5b3e6a55c961") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/lint") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "04zp5vbds9nffmjg36wjpi5vg9zmf890yf78xxasai3ni637ivfw")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/lint")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" + ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c))) + (home-page "https://golang.org/x/lint") + (synopsis "Installation") + (description "Package lint contains a linter for Go source code. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190213061140-3a22650c66bd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12q6fgdkc0742vcms67nzadgdwvi3rnb1gx3vwkljhrvlnwvz7wc")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20181108010431-42b317875d0f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0mrjhk7al7yyh76x9flvxy4jm5jyqh2fxbxagpaazxn1xdgkaif3")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the +ones provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20180724234803-3673e40ba225") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0vx7mz18p480p7fh0w5jv6mfdbsswrlac1sz4i705q7q7ygz59lm")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-google-golang-org-appengine-1.4.0 + (package + (name "go-google-golang-org-appengine") + (version "1.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/appengine") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "06zl7w4sxgdq2pl94wy9ncii6h0z3szl4xpqds0sv3b3wbdlhbnn")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/appengine")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225" + ,go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0))) + (home-page "https://google.golang.org/appengine") + (synopsis "Go App Engine packages") + (description + "Package appengine provides basic functionality for Google App Engine. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20190226205152-f727befe758c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0rpcqw6z13qd33rbasg32zb0gdhgh5lzjla63r6g651zf6hpsak0")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-google-golang-org-appengine-1.4.0" + ,go-google-golang-org-appengine-1.4.0) + ("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" + ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) + ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" + ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-cloud-google-com-go-0.26.0 + (package + (name "go-cloud-google-com-go") + (version "0.26.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-cloud-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "149v3ci17g6wd2pm18mzcncq5qpl9hwdjnz3rlbn5rfidyn46la1")))) + (build-system go-build-system) + (arguments '(#:import-path "cloud.google.com/go")) + (home-page "https://cloud.google.com/go") + (synopsis "Google Cloud Client Libraries for Go") + (description + "Package cloud is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +of sub-packages. +") + (license license:asl2.0))) + +(define-public go-github-com-burntsushi-toml-0.3.1 + (package + (name "go-github-com-burntsushi-toml") + (version "0.3.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/BurntSushi/toml") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fjdwwfzyzllgiwydknf1pwjvy49qxfsczqx5gz3y0izs7as99j6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/BurntSushi/toml")) + (home-page "https://github.com/BurntSushi/toml") + (synopsis "TOML parser and encoder for Go with reflection") + (description + "Package toml implements decoding and encoding of TOML files. +") + (license license:expat))) + +(define-public go-github-com-client9-misspell-0.3.4 + (package + (name "go-github-com-client9-misspell") + (version "0.3.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/client9/misspell") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1vwf33wsc4la25zk9nylpbp9px3svlmldkm0bha4hp56jws4q9cs")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/client9/misspell")) + (home-page "https://github.com/client9/misspell") + (synopsis "Install") + (description + "Package misspell corrects commonly misspelled English words in source files. +") + (license license:expat))) + +(define-public go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b + (package + (name "go-github-com-golang-glog") + (version "0.0.0-20160126235308-23def4e6c14b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/glog") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0jb2834rw5sykfr937fxi8hxi2zy80sj2bdn9b3jb4b26ksqng30")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/glog")) + (home-page "https://github.com/golang/glog") + (synopsis "glog") + (description + "Package glog implements logging analogous to the Google-internal C++ INFO/ERROR/V setup. +It provides functions Info, Warning, Error, Fatal, plus formatting variants such as +Infof. It also provides V-style logging controlled by the -v and -vmodule=file=2 flags. +") + (license license:asl2.0))) + +(define-public go-github-com-golang-mock-1.1.1 + (package + (name "go-github-com-golang-mock") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/mock") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ap8wb6pdl6ccmdb43advjll2ly4sz26wsc3axw0hbrjrybybzgy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/mock")) + (home-page "https://github.com/golang/mock") + (synopsis "gomock") + (description + "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It +integrates well with Go's built-in @code{testing} package, but can be used in other +contexts too.") + (license license:asl2.0))) + +(define-public go-github-com-golang-protobuf-1.2.0 + (package + (name "go-github-com-golang-protobuf") + (version "1.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0kf4b59rcbb1cchfny2dm9jyznp8ri2hsb14n8iak1q8986xa0ab")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3 + (package + (name "go-golang-org-x-lint") + (version "0.0.0-20181026193005-c67002cb31c3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/lint") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0gymbggskjmphqxqcx4s0vnlcz7mygbix0vhwcwv5r67c0bf6765")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/lint")) + (home-page "https://golang.org/x/lint") + (synopsis "Installation") + (description "Package lint contains a linter for Go source code. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d + (package + (name "go-golang-org-x-net") + (version "0.0.0-20180826012351-8a410e7b638d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hp0l8f6fir5gmgrjq0mhh5ikc0rlrm72774228800kfwqjrxxny")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be + (package + (name "go-golang-org-x-oauth2") + (version "0.0.0-20180821212333-d2e6202438be") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/oauth2") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wbn75fd10485nb93bm4kqldqifdim5xqy4v7r5sdvimvf3fyhn7")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/oauth2")) + (home-page "https://golang.org/x/oauth2") + (synopsis "OAuth2 for Go") + (description + "Package oauth2 provides support for making +OAuth2 authorized and authenticated HTTP requests, +as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +It can additionally grant authorization with Bearer JWT. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20180314180146-1d60e4601c6f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "046jlanz2lkxq1r57x9bl6s4cvfqaic6p2xybsj8mq1120jv4rs6")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the +ones provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20180830151530-49385e6e1522") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0spbldahns09fdxkxflb1x24f8k2awdlnr6k5i7ci4fqd19r1dv4")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20190114222345-bf090417da8b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1n3xp56k4k3lj06rx7587wr5gnwg0148nvwx6ch0g7ar02hh94hw")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-google-golang-org-appengine-1.1.0 + (package + (name "go-google-golang-org-appengine") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/appengine") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1pz202zszg8f35dk5pfhwgcdi3r6dx1l4yk6x6ly7nb4j45zi96x")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/appengine")) + (home-page "https://google.golang.org/appengine") + (synopsis "Go App Engine packages") + (description + "Package appengine provides basic functionality for Google App Engine. +") + (license license:asl2.0))) + +(define-public go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8 + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20180817151627-c66870c02cf8") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0siq7sv68556ygqi2d2zmvx8l1xjqdc0fylqzci5h1mq2i14bayn")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-google-golang-org-grpc-1.19.0 + (package + (name "go-google-golang-org-grpc") + (version "1.19.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1znqwpj7ix3dpzx4zch0q70sdl3z5lvbb7v3q4i8sf8kas3yv71v")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" + ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) + ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" + ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) + ("go-google-golang-org-appengine-1.1.0" + ,go-google-golang-org-appengine-1.1.0) + ("go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b" + ,go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b) + ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522" + ,go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522) + ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" + ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d" + ,go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d) + ("go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3" + ,go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0) + ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-client9-misspell-0.3.4" + ,go-github-com-client9-misspell-0.3.4) + ("go-github-com-burntsushi-toml-0.3.1" + ,go-github-com-burntsushi-toml-0.3.1) + ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099 + (package + (name "go-honnef-co-go-tools") + (version "0.0.0-20190102054323-c2f93a96b099") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/dominikh/go-tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "07lg29aiap80ca9f201jzng9vjr168cv3qmvjmbd7v5pmww9kmr8")))) + (build-system go-build-system) + (arguments '(#:import-path "honnef.co/go/tools")) + (home-page "https://honnef.co/go/tools") + (synopsis "Documentation") + (description + "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, +offers simplifications, and enforces style rules.") + (license license:expat))) + +(define-public go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55 + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20190819201941-24fa4b261c55") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "109zhaqlfd8zkbr1hk6zqbs6vcxfrk64scjwh2nswph05gr0m84d")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" + ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) + ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) + ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" + ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) + ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" + ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) + ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" + ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-google-golang-org-grpc-1.27.0 + (package + (name "go-google-golang-org-grpc") + (version "1.27.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ijrmgrxyabfn51nm3p9l81iaasq5fg237wnr6mdc4dzsfcg8kd7")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" + ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-github-com-google-go-cmp-0.2.0" + ,go-github-com-google-go-cmp-0.2.0) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2) + ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" + ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) + ("go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473" + ,go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-github-com-google-go-cmp-0.3.0 + (package + (name "go-github-com-google-go-cmp") + (version "0.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1hyxx3434zshl2m9ja78gwlkg1rx9yl6diqa7dnjb31xz5x4gbjj")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd + (package + (name "go-google-golang-org-protobuf") + (version "0.0.0-20200109180630-ec00e32a8dfd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0w6lp9w2avxcpxwzzhspr209ifhyjagvs23k0vykfdqahl1aplrh")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.3.0" + ,go-github-com-google-go-cmp-0.3.0))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.4.0-rc.1 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.0-rc.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "186rirvbfgv6hrxp27ipx2cdpv19qifdd20biqfdm01wiyclqimn")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd" + ,go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd) + ("go-github-com-google-go-cmp-0.3.1" + ,go-github-com-google-go-cmp-0.3.1))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-github-com-google-go-cmp-0.3.1 + (package + (name "go-github-com-google-go-cmp") + (version "0.3.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1caw49i0plkjxir7kdf5qhwls3krqwfmi7g4h392rdfwi3kfahx1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64 + (package + (name "go-google-golang-org-protobuf") + (version "0.0.0-20200221191635-4d8936d0db64") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0563bsvdjj6k0sgwqd5yzrgfiax7sp3lcwh608gync5sv9fx39cy")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.3.1" + ,go-github-com-google-go-cmp-0.3.1) + ("go-github-com-golang-protobuf-1.4.0-rc.1" + ,go-github-com-golang-protobuf-1.4.0-rc.1))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.0-rc.1.0.20200221234624-67d41d38c208") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ykxhg3zixmw25pd435f8h16wnz1g00jpcmmg3xl030kksgqgpp6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64" + ,go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60 + (package + (name "go-google-golang-org-protobuf") + (version "0.0.0-20200228230310-ab0ca4ff8a60") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1rinspcznfp85yz4vrlf4h38hr576virgv8lcs22bsylqga808sd")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208" + ,go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.4.0-rc.2 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.0-rc.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1hd43hjv5zl6bjbmhm5phx74bw4xajsi73m5zky2k56za4mpgzzc")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60" + ,go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967 + (package + (name "go-google-golang-org-protobuf") + (version "1.20.1-0.20200309200217-e05f789c0967") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "17wmy89hnmpkwc63rfcjp50q15s9f1rhmczg06c3z9yy41zk82w9")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.0-rc.2" + ,go-github-com-golang-protobuf-1.4.0-rc.2))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.0-rc.4.0.20200313231945-b860323f09d0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1zj6cwshx0l5n9cn2cpbikzzb79px5dmkpc4p19zy1iif5r5p0z0")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967" + ,go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-1.21.0 + (package + (name "go-google-golang-org-protobuf") + (version "1.21.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12bwln8z1lf9105gdp6ip0rx741i4yfz1520gxnp8861lh9wcl63")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0" + ,go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.4.0 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fjvl5n77abxz5qsd4mgyvjq19x43c5bfvmq62mq3m5plx6zksc8")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.21.0" + ,go-google-golang-org-protobuf-1.21.0) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543 + (package + (name "go-golang-org-x-xerrors") + (version "0.0.0-20191204190536-9bdfabe68543") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/xerrors") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1yjfi1bk9xb81lqn85nnm13zz725wazvrx3b50hx19qmwg7a4b0c")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/xerrors")) + (home-page "https://golang.org/x/xerrors") + (synopsis #f) + (description + "Package xerrors implements functions to manipulate errors. +") + (license license:bsd-3))) + +(define-public go-github-com-google-go-cmp-0.4.0 + (package + (name "go-github-com-google-go-cmp") + (version "0.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1x5pvl3fb5sbyng7i34431xycnhmx8xx94gq2n19g6p0vz68z2v2")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc + (package + (name "go-google-golang-org-protobuf") + (version "1.23.1-0.20200526195155-81db48ad09cc") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "02cpr8rqr5wmpj2fqb32mzilsdnxkh52g1jz95a3ck3gzffc7hh1")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.0" + ,go-github-com-golang-protobuf-1.4.0))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc + (package + (name "go-honnef-co-go-tools") + (version "0.0.0-20190523083050-ea95bdfd59fc") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/dominikh/go-tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1763nw7pwpzkvzfnm63dgzcgbq9hwmq5l1nffchnhh77vgkaq4ic")))) + (build-system go-build-system) + (arguments '(#:import-path "honnef.co/go/tools")) + (home-page "https://honnef.co/go/tools") + (synopsis "Documentation") + (description + "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, +offers simplifications, and enforces style rules.") + (license license:expat))) + +(define-public go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013 + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20200526211855-cb27e3aa2013") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ml73ghqcwbz7ipfk8fnxb5indcml49b5p7vp1fsyny0abyyrmxf")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" + ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) + ("go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc" + ,go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-golang-protobuf-1.4.1" + ,go-github-com-golang-protobuf-1.4.1))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-google-golang-org-protobuf-1.25.0 + (package + (name "go-google-golang-org-protobuf") + (version "1.25.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0apfl42x166dh96zfq5kvv4b4ax9xljik6bq1mnvn2240ir3mc23")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" + ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) + ("go-github-com-google-go-cmp-0.5.0" + ,go-github-com-google-go-cmp-0.5.0) + ("go-github-com-golang-protobuf-1.4.1" + ,go-github-com-golang-protobuf-1.4.1))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-google-golang-org-grpc-1.38.0 + (package + (name "go-google-golang-org-grpc") + (version "1.38.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "08lgqdvbd0i4qwsv1y37qmf8mhsy9ywzx73ixiwih7xhnalrf7xl")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.25.0" + ,go-google-golang-org-protobuf-1.25.0) + ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" + ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) + ("go-github-com-google-go-cmp-0.5.0" + ,go-github-com-google-go-cmp-0.5.0) + ("go-github-com-golang-protobuf-1.4.2" + ,go-github-com-golang-protobuf-1.4.2) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-envoyproxy-go-control-plane-0.9.9-0.20210217033140-668b12f5399d" + ,go-github-com-envoyproxy-go-control-plane-0.9.9-0.20210217033140-668b12f5399d) + ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" + ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-github-com-bketelsen-crypt-0.0.4 + (package + (name "go-github-com-bketelsen-crypt") + (version "0.0.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/bketelsen/crypt") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0fyfcvy73zskd1p1mv0cn03anxkkr5gvlawsc87znqk60hdypq3v")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/bketelsen/crypt")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.38.0" ,go-google-golang-org-grpc-1.38.0) + ("go-google-golang-org-api-0.44.0" ,go-google-golang-org-api-0.44.0) + ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" + ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9) + ("go-go-etcd-io-etcd-client-v2-2.305.0" + ,go-go-etcd-io-etcd-client-v2-2.305.0) + ("go-github-com-hashicorp-consul-api-1.1.0" + ,go-github-com-hashicorp-consul-api-1.1.0) + ("go-cloud-google-com-go-firestore-1.1.0" + ,go-cloud-google-com-go-firestore-1.1.0))) + (home-page "https://github.com/bketelsen/crypt") + (synopsis "crypt") + (description + "You can use crypt as a command line tool or as a configuration library:") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20191005200804-aed5e4c7ecf9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wsdsbl9n61l99z0cvib2xzg56fsfgky4yc5xapdw9ywx9h0zm3a")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-fsnotify-fsnotify-1.4.9 + (package + (name "go-github-com-fsnotify-fsnotify") + (version "1.4.9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/fsnotify/fsnotify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1i1r72knpbfwwql9frn9bqc3nhfc2ai5m6qllcyr6wban62lr40x")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/fsnotify/fsnotify")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9" + ,go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9))) + (home-page "https://github.com/fsnotify/fsnotify") + (synopsis "File system notifications for Go") + (description + "Package fsnotify provides a platform-independent interface for file system notifications. +") + (license license:bsd-3))) + +(define-public go-github-com-hashicorp-hcl-1.0.0 + (package + (name "go-github-com-hashicorp-hcl") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/hcl") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0q6ml0qqs0yil76mpn4mdx4lp94id8vbv575qm60jzl1ijcl5i66")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/hcl")) + (propagated-inputs + `(("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/hashicorp/hcl") + (synopsis "HCL") + (description "Package hcl decodes HCL into usable Go structures. +") + (license license:mpl2.0))) + +(define-public go-github-com-magiconair-properties-1.8.5 + (package + (name "go-github-com-magiconair-properties") + (version "1.8.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/magiconair/properties") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0v4agnkhc30fblbmhs0gq2bikhdnnmqmpp4phrnza68m04j5hxbn")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/magiconair/properties")) + (home-page "https://github.com/magiconair/properties") + (synopsis "Overview") + (description + "Package properties provides functions for reading and writing +ISO-8859-1 and UTF-8 encoded .properties files and has +support for recursive property expansion. +") + (license license:bsd-2))) + +(define-public go-github-com-mitchellh-mapstructure-1.4.1 + (package + (name "go-github-com-mitchellh-mapstructure") + (version "1.4.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mitchellh/mapstructure") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1m98wiadb6kdnzv21m8p7nk1jb30zpjh47fkb1dg251r3m7bj47v")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mitchellh/mapstructure")) + (home-page "https://github.com/mitchellh/mapstructure") + (synopsis "mapstructure") + (description + "Package mapstructure exposes functionality to convert one arbitrary +Go type into another, typically to convert a map[string]interface{} +into a native Go structure. +") + (license license:expat))) + +(define-public go-github-com-pelletier-go-toml-1.9.3 + (package + (name "go-github-com-pelletier-go-toml") + (version "1.9.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pelletier/go-toml") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0cqwnvlgs1wgdgjxlwv8j52f7d6syniadr51sjh2fya99m5wzvsn")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pelletier/go-toml")) + (home-page "https://github.com/pelletier/go-toml") + (synopsis "go-toml") + (description "Package toml is a TOML parser and manipulation library. +") + (license #f))) + +(define-public go-github-com-gopherjs-gopherjs-0.0.0-20181017120253-0766667cb4d1 + (package + (name "go-github-com-gopherjs-gopherjs") + (version "0.0.0-20181017120253-0766667cb4d1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gopherjs/gopherjs") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "13pfc9sxiwjky2lm1xb3i3lcisn8p6mgjk2d927l7r92ysph8dmw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/gopherjs/gopherjs")) + (home-page "https://github.com/gopherjs/gopherjs") + (synopsis "GopherJS - A compiler from Go to JavaScript") + (description + "GopherJS compiles Go code (@url{https://golang.org/,golang.org}) to pure JavaScript code. Its main purpose is to give you the opportunity to write front-end code in Go which will still run in all browsers.") + (license license:bsd-2))) + +(define-public go-github-com-jtolds-gls-4.20.0+incompatible + (package + (name "go-github-com-jtolds-gls") + (version "4.20.0+incompatible") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jtolio/gls") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1k7xd2q2ysv2xsh373qs801v6f359240kx0vrl0ydh7731lngvk6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/jtolds/gls")) + (home-page "https://github.com/jtolds/gls") + (synopsis "gls") + (description "Package gls implements goroutine-local storage. +") + (license license:expat))) + +(define-public go-github-com-smartystreets-assertions-0.0.0-20180927180507-b2de0cb4f26d + (package + (name "go-github-com-smartystreets-assertions") + (version "0.0.0-20180927180507-b2de0cb4f26d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/smartystreets/assertions") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1i7ldgavgl35c7gk25p7bvdr282ckng090zr4ch9mk1705akx09y")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/smartystreets/assertions")) + (home-page "https://github.com/smartystreets/assertions") + (synopsis #f) + (description + "Package assertions contains the implementations for all assertions which +are referenced in goconvey's `convey` package +(github.com/smartystreets/goconvey/convey) and gunit (github.com/smartystreets/gunit) +for use with the So(...) method. +They can also be used in traditional Go test functions and even in +applications. +") + (license license:expat))) + +(define-public go-golang-org-x-net-0.0.0-20190311183353-d8887717615a + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190311183353-d8887717615a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1wfm6ngxjyj7v5a2dqib6lw8bb2rdnf1kl48diykxjrsddn0s163")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20190328211700-ab21143f2384 + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20190328211700-ab21143f2384") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "15fk0psk53pplpyghz55bhay0kvsv5rikmn5hwgjnnyxq9vfy178")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-github-com-smartystreets-goconvey-1.6.4 + (package + (name "go-github-com-smartystreets-goconvey") + (version "1.6.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/smartystreets/goconvey") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "07zjxwszayal88z1j2bwnqrsa32vg8l4nivks5yfr9j8xfsw7n6m")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/smartystreets/goconvey")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20190328211700-ab21143f2384" + ,go-golang-org-x-tools-0.0.0-20190328211700-ab21143f2384) + ("go-github-com-smartystreets-assertions-0.0.0-20180927180507-b2de0cb4f26d" + ,go-github-com-smartystreets-assertions-0.0.0-20180927180507-b2de0cb4f26d) + ("go-github-com-jtolds-gls-4.20.0+incompatible" + ,go-github-com-jtolds-gls-4.20.0+incompatible) + ("go-github-com-gopherjs-gopherjs-0.0.0-20181017120253-0766667cb4d1" + ,go-github-com-gopherjs-gopherjs-0.0.0-20181017120253-0766667cb4d1))) + (home-page "https://github.com/smartystreets/goconvey") + (synopsis "GoConvey is awesome Go testing") + (description + "This executable provides an HTTP server that watches for file system changes +to .go files within the working directory (and all nested go packages). +Navigating to the configured host and port in a web browser will display the +latest results of running `go test` in each go package. +") + (license license:expat))) + +(define-public go-github-com-kr-fs-0.1.0 + (package + (name "go-github-com-kr-fs") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/fs") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "11zg176x9hr9q7fsk95r6q0wf214gg4czy02slax4x56n79g6a7q")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/fs")) + (home-page "https://github.com/kr/fs") + (synopsis #f) + (description "Package fs provides filesystem-related functions. +") + (license license:bsd-3))) + +(define-public go-github-com-pkg-errors-0.8.1 + (package + (name "go-github-com-pkg-errors") + (version "0.8.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pkg/errors") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0g5qcb4d4fd96midz0zdk8b9kz8xkzwfa8kr1cliqbg8sxsy5vd1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pkg/errors")) + (home-page "https://github.com/pkg/errors") + (synopsis "errors") + (description "Package errors provides simple error handling primitives. +") + (license license:bsd-2))) + +(define-public go-gopkg-in-yaml-v2-2.2.2 + (package + (name "go-gopkg-in-yaml-v2") + (version "2.2.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "01wj12jzsdqlnidpyjssmj0r4yavlqy7dwrg7adqd8dicjc4ncsa")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v2") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language. +") + (license license:asl2.0))) + +(define-public go-github-com-stretchr-testify-1.4.0 + (package + (name "go-github-com-stretchr-testify") + (version "1.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "187i5g88sxfy4vxpm7dw1gwv29pa2qaq475lxrdh5livh69wqfjb")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) + ("go-github-com-stretchr-objx-0.1.0" + ,go-github-com-stretchr-objx-0.1.0) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.0" + ,go-github-com-davecgh-go-spew-1.1.0))) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +") + (license license:expat))) + +(define-public go-github-com-pkg-sftp-1.10.1 + (package + (name "go-github-com-pkg-sftp") + (version "1.10.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pkg/sftp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0iw6lijdljwh5xw5hsy0b578cr52h6vvm7hbnzlrvciwhh4sfhhp")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pkg/sftp")) + (propagated-inputs + `(("go-golang-org-x-crypto-0.0.0-20190820162420-60c769a6c586" + ,go-golang-org-x-crypto-0.0.0-20190820162420-60c769a6c586) + ("go-github-com-stretchr-testify-1.4.0" + ,go-github-com-stretchr-testify-1.4.0) + ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) + ("go-github-com-kr-fs-0.1.0" ,go-github-com-kr-fs-0.1.0))) + (home-page "https://github.com/pkg/sftp") + (synopsis "sftp") + (description + "Package sftp implements the SSH File Transfer Protocol as described in +@url{https://tools.ietf.org/html/draft-ietf-secsh-filexfer-02,https://tools.ietf.org/html/draft-ietf-secsh-filexfer-02} +") + (license license:bsd-2))) + +(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190215142949-d0b11bdaac8a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20190308221718-c2843e01d9a2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-text-0.3.0 + (package + (name "go-golang-org-x-text") + (version "0.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/text")) + (home-page "https://golang.org/x/text") + (synopsis "Go Text") + (description + "text is a repository of text-related packages related to internationalization +(i18n) and localization (l10n), such as character encodings, text +transformations, and locale-specific text handling. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190404232315-eb5bcb51f2a3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "17k4g8krxbl84gzcs275b7gsh66dzm15fdxivjnx9xz8q84l4kby")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20190412213103-97732733099d + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190412213103-97732733099d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "118hkp01i4z1f5h6hcjm0ff2ngqhrzj1f7731n0kw8dr6hvbx0sw")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-crypto-0.0.0-20190820162420-60c769a6c586 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20190820162420-60c769a6c586") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1wy2pg38dz29vf1h48yfqf8m3jqvwnbdw8vkk3ldlj5d8fbbbmv8")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" + ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) + ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" + ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-github-com-spf13-afero-1.6.0 + (package + (name "go-github-com-spf13-afero") + (version "1.6.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/spf13/afero") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0yi8p0yxiidpcg4cagxg2iyqcaapsng89rak4qyxmgails2fqg37")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/spf13/afero")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) + ("go-golang-org-x-crypto-0.0.0-20190820162420-60c769a6c586" + ,go-golang-org-x-crypto-0.0.0-20190820162420-60c769a6c586) + ("go-github-com-pkg-sftp-1.10.1" ,go-github-com-pkg-sftp-1.10.1))) + (home-page "https://github.com/spf13/afero") + (synopsis "Overview") + (description + "This package provides a FileSystem Abstraction System for Go") + (license license:asl2.0))) + +(define-public go-github-com-spf13-cast-1.3.1 + (package + (name "go-github-com-spf13-cast") + (version "1.3.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/spf13/cast") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0lb84788glr0qzrq2ifi36rgvp96qrgywvxrr3ggq5hrbr38hgn1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/spf13/cast")) + (propagated-inputs + `(("go-github-com-stretchr-testify-1.2.2" + ,go-github-com-stretchr-testify-1.2.2) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/spf13/cast") + (synopsis "cast") + (description "Package cast provides easy and safe casting in Go. +") + (license license:expat))) + +(define-public go-github-com-davecgh-go-spew-1.1.1 + (package + (name "go-github-com-davecgh-go-spew") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/davecgh/go-spew") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/davecgh/go-spew")) + (home-page "https://github.com/davecgh/go-spew") + (synopsis "go-spew") + (description + "Go-spew implements a deep pretty printer for Go data structures to aid in +debugging. A comprehensive suite of tests with 100% test coverage is provided +to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage +report. Go-spew is licensed under the liberal ISC license, so it may be used in +open source or commercial projects.") + (license license:isc))) + +(define-public go-github-com-stretchr-testify-1.2.2 + (package + (name "go-github-com-stretchr-testify") + (version "1.2.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0dlszlshlxbmmfxj5hlwgv3r22x0y1af45gn1vd198nvvs3pnvfs")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +") + (license license:expat))) + +(define-public go-github-com-spf13-jwalterweatherman-1.1.0 + (package + (name "go-github-com-spf13-jwalterweatherman") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/spf13/jwalterweatherman") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ywmkwci5zyd88ijym6f30fj5c0k2yayxarkmnazf5ybljv50q7b")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/spf13/jwalterweatherman")) + (propagated-inputs + `(("go-github-com-stretchr-testify-1.2.2" + ,go-github-com-stretchr-testify-1.2.2) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/spf13/jwalterweatherman") + (synopsis "jWalterWeatherman") + (description + "Seamless printing to the terminal (stdout) and logging to a io.Writer +(file) thatâ\x80\x99s as easy to use as fmt.Println.") + (license license:expat))) + +(define-public go-github-com-davecgh-go-spew-1.1.0 + (package + (name "go-github-com-davecgh-go-spew") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/davecgh/go-spew") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/davecgh/go-spew")) + (home-page "https://github.com/davecgh/go-spew") + (synopsis "go-spew") + (description + "Go-spew implements a deep pretty printer for Go data structures to aid in +debugging. A comprehensive suite of tests with 100% test coverage is provided +to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage +report. Go-spew is licensed under the liberal ISC license, so it may be used in +open source or commercial projects.") + (license license:isc))) + +(define-public go-github-com-stretchr-objx-0.1.0 + (package + (name "go-github-com-stretchr-objx") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/objx") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/objx")) + (home-page "https://github.com/stretchr/objx") + (synopsis "Objx") + (description + "Objx - Go package for dealing with maps, slices, JSON and other data. +") + (license license:expat))) + +(define-public go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c + (package + (name "go-gopkg-in-yaml-v3") + (version "3.0.0-20200313102051-9f266ea9e77c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v3") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1bbai3lzb50m0x2vwsdbagrbhvfylj9k1m32hgbqwldqx4p9ay35")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v3") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language. +") + (license #f))) + +(define-public go-github-com-stretchr-testify-1.7.0 + (package + (name "go-github-com-stretchr-testify") + (version "1.7.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ixgjsvafr3513pz3r6pmgk074s2dxkll0dadvl25gkf30rkmh10")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (propagated-inputs + `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" + ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) + ("go-github-com-stretchr-objx-0.1.0" + ,go-github-com-stretchr-objx-0.1.0) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.0" + ,go-github-com-davecgh-go-spew-1.1.0))) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +") + (license license:expat))) + +(define-public go-github-com-subosito-gotenv-1.2.0 + (package + (name "go-github-com-subosito-gotenv") + (version "1.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/subosito/gotenv") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0mav91j7r4arjkpq5zcf9j74f6pww8ic53x43wy7kg3ibw31yjs5")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/subosito/gotenv")) + (home-page "https://github.com/subosito/gotenv") + (synopsis "gotenv") + (description + "Package gotenv provides functionality to dynamically load the environment variables +") + (license license:expat))) + +(define-public go-gopkg-in-ini-v1-1.62.0 + (package + (name "go-gopkg-in-ini-v1") + (version "1.62.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/ini.v1") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1dm9ydqyflasp5li22kb0w73s6kp2swii8naqfhnz64v171gmm5v")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/ini.v1" #:unpack-path "gopkg.in/ini.v1")) + (home-page "https://gopkg.in/ini.v1") + (synopsis "INI") + (description + "Package ini provides INI file read and write functionality in Go. +") + (license license:asl2.0))) + +(define-public go-github-com-spf13-viper-1.8.1 + (package + (name "go-github-com-spf13-viper") + (version "1.8.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/spf13/viper") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0jcsvd9l05pv10rma6zicp44q2mlvxj0qlhnf4zcg2pymb5i0hq6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/spf13/viper")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) + ("go-gopkg-in-ini-v1-1.62.0" ,go-gopkg-in-ini-v1-1.62.0) + ("go-github-com-subosito-gotenv-1.2.0" + ,go-github-com-subosito-gotenv-1.2.0) + ("go-github-com-stretchr-testify-1.7.0" + ,go-github-com-stretchr-testify-1.7.0) + ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) + ("go-github-com-spf13-jwalterweatherman-1.1.0" + ,go-github-com-spf13-jwalterweatherman-1.1.0) + ("go-github-com-spf13-cast-1.3.1" ,go-github-com-spf13-cast-1.3.1) + ("go-github-com-spf13-afero-1.6.0" ,go-github-com-spf13-afero-1.6.0) + ("go-github-com-smartystreets-goconvey-1.6.4" + ,go-github-com-smartystreets-goconvey-1.6.4) + ("go-github-com-pelletier-go-toml-1.9.3" + ,go-github-com-pelletier-go-toml-1.9.3) + ("go-github-com-mitchellh-mapstructure-1.4.1" + ,go-github-com-mitchellh-mapstructure-1.4.1) + ("go-github-com-magiconair-properties-1.8.5" + ,go-github-com-magiconair-properties-1.8.5) + ("go-github-com-hashicorp-hcl-1.0.0" + ,go-github-com-hashicorp-hcl-1.0.0) + ("go-github-com-fsnotify-fsnotify-1.4.9" + ,go-github-com-fsnotify-fsnotify-1.4.9) + ("go-github-com-bketelsen-crypt-0.0.4" + ,go-github-com-bketelsen-crypt-0.0.4))) + (home-page "https://github.com/spf13/viper") + (synopsis "Install") + (description "Many Go projects are built using Viper including:") + (license license:expat))) + +(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 + (package + (name "go-gopkg-in-check-v1") + (version "0.0.0-20161208181325-20d25e280405") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/check.v1") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) + (home-page "https://gopkg.in/check.v1") + (synopsis "Instructions") + (description + "Package check is a rich testing extension for Go's testing package. +") + (license license:bsd-2))) + +(define-public go-gopkg-in-yaml-v2-2.4.0 + (package + (name "go-gopkg-in-yaml-v2") + (version "2.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1pbmrpj7gcws34g8vwna4i2nhm9p6235piww36436xhyaa10cldr")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v2") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language. +") + (license license:asl2.0))) + +(define-public go-github-com-spf13-cobra-1.2.1 + (package + (name "go-github-com-spf13-cobra") + (version "1.2.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/spf13/cobra") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "091kz3xnlsgpqb90fc5nhjr4yfr8b8sjnyl0zd4wm1fgzkpw09jh")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/spf13/cobra")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) + ("go-github-com-spf13-viper-1.8.1" ,go-github-com-spf13-viper-1.8.1) + ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) + ("go-github-com-inconshreveable-mousetrap-1.0.0" + ,go-github-com-inconshreveable-mousetrap-1.0.0) + ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" + ,go-github-com-cpuguy83-go-md2man-v2-2.0.0))) + (home-page "https://github.com/spf13/cobra") + (synopsis "Table of Contents") + (description + "Package cobra is a commander providing a simple interface to create powerful modern CLI interfaces. +In addition to providing an interface, Cobra simultaneously provides a controller to organize your application code. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20210226172049-e18ecbb05110") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1vlq8mdscp7yfaa1lmyv03y5m4c2d67ydg2q1i6smkrxghn3zn3q")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) + ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" + ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) + ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" + ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20210615035016-665e8c7367d1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "11n848csibdbv7b46zjyf4l7sphg37n9sjzqfy1ds7p1jyakwmnv")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20201119102817-f84b799fce68") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1dvhqian5byzkcg1bnqzygqa6ccc6krc2q7j12pp1vhl3y7znnsg")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1 + (package + (name "go-golang-org-x-term") + (version "0.0.0-20201126162022-7de9c90e9dd1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/term") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ba252xmv6qsvf1w1gcy98mngrj0vd4inbjw0lsklqvva65nljna")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/term")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" + ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) + (home-page "https://golang.org/x/term") + (synopsis "Go terminal/console support") + (description + "Package term provides support functions for dealing with terminals, as +commonly found on UNIX systems. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20180917221912-90fa682c2a6e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-golang-org-x-text-0.3.3 + (package + (name "go-golang-org-x-text") + (version "0.3.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19pihqm3phyndmiw6i42pdv6z1rbvlqlsnhsyqf9gsnn0qnmqqlh")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/text")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" + ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) + (home-page "https://golang.org/x/text") + (synopsis "Go Text") + (description + "text is a repository of text-related packages related to internationalization +(i18n) and localization (l10n), such as character encodings, text +transformations, and locale-specific text handling. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-crypto-0.0.0-20210711020723-a769d52b0f97 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20210711020723-a769d52b0f97") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1qdv4yfdl5fbsdgvxkki1yjwwn3whns381c0za74syxdvzhhgiaf")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) + ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" + ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) + ("go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1" + ,go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1) + ("go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110" + ,go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-github-com-inconshreveable-mousetrap-1.0.0 + (package + (name "go-github-com-inconshreveable-mousetrap") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/inconshreveable/mousetrap") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1mn0kg48xkd74brf48qf5hzp0bc6g8cf5a77w895rl3qnlpfw152")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/inconshreveable/mousetrap")) + (home-page "https://github.com/inconshreveable/mousetrap") + (synopsis "mousetrap") + (description "mousetrap is a tiny library that answers a single question.") + (license license:asl2.0))) + +(define-public go-github-com-pmezard-go-difflib-1.0.0 + (package + (name "go-github-com-pmezard-go-difflib") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pmezard/go-difflib") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pmezard/go-difflib")) + (home-page "https://github.com/pmezard/go-difflib") + (synopsis "go-difflib") + (description + "Go-difflib is a partial port of python 3 difflib package. Its main goal +was to make unified and context diff available in pure Go, mostly for +testing purposes.") + (license license:bsd-3))) + +(define-public go-github-com-sergi-go-diff-1.0.0 + (package + (name "go-github-com-sergi-go-diff") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sergi/go-diff") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0swiazj8wphs2zmk1qgq75xza6m19snif94h2m6fi8dqkwqdl7c7")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/sergi/go-diff")) + (home-page "https://github.com/sergi/go-diff") + (synopsis "go-diff") + (description + "go-diff offers algorithms to perform operations required for synchronizing plain text:") + (license license:expat))) + +(define-public go-github-com-spf13-pflag-1.0.5 + (package + (name "go-github-com-spf13-pflag") + (version "1.0.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/spf13/pflag") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0gpmacngd0gpslnbkzi263f5ishigzgh6pbdv9hp092rnjl4nd31")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/spf13/pflag")) + (home-page "https://github.com/spf13/pflag") + (synopsis "Description") + (description + "Package pflag is a drop-in replacement for Go's flag package, implementing +POSIX/GNU-style --flags. +") + (license license:bsd-3))) + +(define-public go-github-com-hpcng-sif-1.6.0 + (package + (name "go-github-com-hpcng-sif") + (version "1.6.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/apptainer/sif") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0fz6h5zcaxk6v8vfx9lxny2bmwnmflvvx9jkyxydz6zlgrbn2qbb")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hpcng/sif")) + (propagated-inputs + `(("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) + ("go-github-com-sergi-go-diff-1.0.0" + ,go-github-com-sergi-go-diff-1.0.0) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-inconshreveable-mousetrap-1.0.0" + ,go-github-com-inconshreveable-mousetrap-1.0.0) + ("go-golang-org-x-crypto-0.0.0-20210711020723-a769d52b0f97" + ,go-golang-org-x-crypto-0.0.0-20210711020723-a769d52b0f97) + ("go-github-com-spf13-cobra-1.2.1" ,go-github-com-spf13-cobra-1.2.1) + ("go-github-com-sebdah-goldie-v2-2.5.3" + ,go-github-com-sebdah-goldie-v2-2.5.3) + ("go-github-com-satori-go-uuid-1.2.1-0.20180404165556-75cca531ea76" + ,go-github-com-satori-go-uuid-1.2.1-0.20180404165556-75cca531ea76))) + (home-page "https://github.com/hpcng/sif") + (synopsis "The Singularity Image Format (SIF)") + (description + "This module contains an open source implementation of the Singularity Image Format (SIF) that makes it easy to create complete and encapsulated container environments stored in a single file.") + (license license:bsd-3))) + +(define-public go-github-com-kardianos-osext-0.0.0-20190222173326-2bc1f35cddc0 + (package + (name "go-github-com-kardianos-osext") + (version "0.0.0-20190222173326-2bc1f35cddc0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kardianos/osext") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1pvrbrvmrf4mx0fxbfaphbzgqgwn8v6lkfk2vyrs0znxrs1xyc5r")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kardianos/osext")) + (home-page "https://github.com/kardianos/osext") + (synopsis "Extensions to the \"os\" package.") + (description "Extensions to the standard \"os\" package. +") + (license license:bsd-3))) + +(define-public go-github-com-creack-pty-1.1.7 + (package + (name "go-github-com-creack-pty") + (version "1.1.7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/creack/pty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1plwwlk1i9b80zv8zdplvv81shfyc9gf0flydnydsh5sr3ib5vrc")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/creack/pty")) + (home-page "https://github.com/creack/pty") + (synopsis "pty") + (description + "Package pty provides functions for working with Unix terminals. +") + (license license:expat))) + +(define-public go-github-com-kr-pty-1.1.8 + (package + (name "go-github-com-kr-pty") + (version "1.1.8") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/pty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1vcl6f90n0f8s8b4fyh0832ilybjqcypqyj233lqj1hx62fvgdbk")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/pty")) + (propagated-inputs + `(("go-github-com-creack-pty-1.1.7" ,go-github-com-creack-pty-1.1.7))) + (home-page "https://github.com/kr/pty") + (synopsis "pty") + (description + "Package pty is a wrapper for github.com/creack/pty, which provides +functions for working with Unix terminals. +") + (license license:expat))) + +(define-public go-github-com-opencontainers-go-digest-1.0.0 + (package + (name "go-github-com-opencontainers-go-digest") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/go-digest") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0i5acjajvr6hi9zb7gxwifd8w28y884cv7cx36adj8lngj647xbi")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/go-digest")) + (home-page "https://github.com/opencontainers/go-digest") + (synopsis "go-digest") + (description + "Package digest provides a generalized type to opaquely represent message +digests and their operations within the registry. The Digest type is +designed to serve as a flexible identifier in a content-addressable system. +More importantly, it provides tools and wrappers to work with +hash.Hash-based digests with little effort. +") + (license (list license:asl2.0 license:cc-by-sa4.0)))) + +(define-public go-github-com-opencontainers-image-spec-1.0.2 + (package + (name "go-github-com-opencontainers-image-spec") + (version "1.0.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/image-spec") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1wcw1z39wjx338406ga86a41f5ird0yc4ab3c70nfhkpkvjjzhkm")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/image-spec")) + (home-page "https://github.com/opencontainers/image-spec") + (synopsis "OCI Image Format Specification") + (description + "The OCI Image Format project creates and maintains the software shipping container image format spec (OCI Image Format).") + (license license:asl2.0))) + +(define-public go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417 + (package + (name "go-github-com-opencontainers-runtime-spec") + (version "1.0.3-0.20210326190908-1c3f411f0417") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/runtime-spec") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1azk8z41ga8af35c966f06vrq9y9hwz6mkm59r3py5qaamzim3qq")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) + (home-page "https://github.com/opencontainers/runtime-spec") + (synopsis "Open Container Initiative Runtime Specification") + (description + "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") + (license license:asl2.0))) + +(define-public go-github-com-opencontainers-runtime-tools-0.9.1-0.20210326182921-59cdde06764b + (package + (name "go-github-com-opencontainers-runtime-tools") + (version "0.9.1-0.20210326182921-59cdde06764b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/runtime-tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0f4zy6x1rrrg10bphwijic30m3r4mq934zbavnci6jyi41l1w2r0")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/runtime-tools")) + (home-page "https://github.com/opencontainers/runtime-tools") + (synopsis "oci-runtime-tool") + (description + "oci-runtime-tool is a collection of tools for working with the @url{https://github.com/opencontainers/runtime-spec,OCI runtime specification}. +To build from source code, runtime-tools requires Go 1.10.x or above.") + (license license:asl2.0))) + +(define-public go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20191115151921-52ab43148777") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1kakxbqrb1w2vwg7r1896z68qcx2lfvimsl8cs2niiipbgpi6imx")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-opencontainers-selinux-1.10.0 + (package + (name "go-github-com-opencontainers-selinux") + (version "1.10.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/selinux") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "118q1d9py9zhym4jmyiivasmllkdnkp1zyx4brc6n2cfmxfph6gc")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/selinux")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777" + ,go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777))) + (home-page "https://github.com/opencontainers/selinux") + (synopsis "selinux") + (description "Common SELinux package used across the container ecosystem.") + (license license:asl2.0))) + +(define-public go-github-com-adamkorcz-go-fuzz-headers-0.0.0-20210312213058-32f4d319f0d2 + (package + (name "go-github-com-adamkorcz-go-fuzz-headers") + (version "0.0.0-20210312213058-32f4d319f0d2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/AdamKorcz/go-fuzz-headers") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0r14xxw8c7pkmln0n5vlrahf1785mr7mlyklmfpa11p9kk9pmq5j")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/AdamKorcz/go-fuzz-headers")) + (home-page "https://github.com/AdamKorcz/go-fuzz-headers") + (synopsis #f) + (description #f) + (license #f))) + +(define-public go-github-com-stretchr-testify-1.3.0 + (package + (name "go-github-com-stretchr-testify") + (version "1.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wjchp2c8xbgcbbq32w3kvblk6q6yn533g78nxl6iskq6y95lxsy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (propagated-inputs + `(("go-github-com-stretchr-objx-0.1.0" + ,go-github-com-stretchr-objx-0.1.0) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.0" + ,go-github-com-davecgh-go-spew-1.1.0))) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +") + (license license:expat))) + +(define-public go-github-com-apex-logs-0.0.7 + (package + (name "go-github-com-apex-logs") + (version "0.0.7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/apex/logs") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1h12q9sb7f4yjizajfxvjllzqab1s8scgqj22prwyfbbqg1ilchv")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/apex/logs")) + (propagated-inputs + `(("go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0" + ,go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0) + ("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0))) + (home-page "https://github.com/apex/logs") + (synopsis "Example") + (description "Go client for @url{https://apex.sh/logs/,Apex Logs}.") + (license license:expat))) + +(define-public go-github-com-aphistic-golf-0.0.0-20180712155816-02c07f170c5a + (package + (name "go-github-com-aphistic-golf") + (version "0.0.0-20180712155816-02c07f170c5a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/aphistic/golf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1qixab9bb29wqbr4nc5j3g25hq1j7am93f181rkj7a4qacncx763")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/aphistic/golf")) + (home-page "https://github.com/aphistic/golf") + (synopsis "golf") + (description + "This package provides logging capabilities using the GELF (@url{https://www.graylog.org/resources/gelf-2/,https://www.graylog.org/resources/gelf-2/}) log format +") + (license license:expat))) + +(define-public go-github-com-mattn-go-isatty-0.0.5 + (package + (name "go-github-com-mattn-go-isatty") + (version "0.0.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mattn/go-isatty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "114d5xm8rfxplzd7nxz97gfngb4bhqy102szl084d1afcxsvm4aa")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mattn/go-isatty")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223" + ,go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223))) + (home-page "https://github.com/mattn/go-isatty") + (synopsis "go-isatty") + (description "Package isatty implements interface to isatty +") + (license license:expat))) + +(define-public go-github-com-mattn-go-colorable-0.1.1 + (package + (name "go-github-com-mattn-go-colorable") + (version "0.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mattn/go-colorable") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0l640974j804c1yyjfgyxqlsivz0yrzmbql4mhcw2azryigkp08p")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mattn/go-colorable")) + (propagated-inputs + `(("go-github-com-mattn-go-isatty-0.0.5" + ,go-github-com-mattn-go-isatty-0.0.5))) + (home-page "https://github.com/mattn/go-colorable") + (synopsis "go-colorable") + (description "Colorable writer for windows.") + (license license:expat))) + +(define-public go-github-com-mgutz-ansi-0.0.0-20170206155736-9520e82c474b + (package + (name "go-github-com-mgutz-ansi") + (version "0.0.0-20170206155736-9520e82c474b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mgutz/ansi") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "00bz22314j26736w1f0q4jy9d9dfaml17vn890n5zqy3cmvmww1j")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mgutz/ansi")) + (home-page "https://github.com/mgutz/ansi") + (synopsis "ansi") + (description + "Package ansi is a small, fast library to create ANSI colored strings and codes. +") + (license license:expat))) + +(define-public go-github-com-fsnotify-fsnotify-1.4.7 + (package + (name "go-github-com-fsnotify-fsnotify") + (version "1.4.7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/fsnotify/fsnotify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/fsnotify/fsnotify")) + (home-page "https://github.com/fsnotify/fsnotify") + (synopsis "File system notifications for Go") + (description + "Package fsnotify provides a platform-independent interface for file system notifications. +") + (license license:bsd-3))) + +(define-public go-github-com-hpcloud-tail-1.0.0 + (package + (name "go-github-com-hpcloud-tail") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hpcloud/tail") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1njpzc0pi1acg5zx9y6vj9xi6ksbsc5d387rd6904hy6rh2m6kn0")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hpcloud/tail")) + (home-page "https://github.com/hpcloud/tail") + (synopsis "Go package for tail-ing files") + (description + "This package provides a Go package striving to emulate the features of the BSD @code{tail} program.") + (license license:expat))) + +(define-public go-github-com-onsi-ginkgo-1.6.0 + (package + (name "go-github-com-onsi-ginkgo") + (version "1.6.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/onsi/ginkgo") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0x0gc89vgq38xhgmi2h22bhr73cf2gmk42g89nz89k8dgg9hhr25")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/onsi/ginkgo")) + (home-page "https://github.com/onsi/ginkgo") + (synopsis "Ginkgo 2.0 Release Candidate is available!") + (description "Ginkgo is a BDD-style testing framework for Golang +") + (license license:expat))) + +(define-public go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd + (package + (name "go-golang-org-x-net") + (version "0.0.0-20180906233101-161cd47e91fd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0254ld010iijygbzykib2vags1dc0wlmcmhgh4jl8iny159lhbcv")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20180909124046-d0be0721c37e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "081wyvfnlf842dqg03raxfz6lldlxpmyh1prix9lmrrm65arxb12")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-gopkg-in-fsnotify-v1-1.4.7 + (package + (name "go-gopkg-in-fsnotify-v1") + (version "1.4.7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/fsnotify.v1") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) + (build-system go-build-system) + (arguments + '(#:import-path + "gopkg.in/fsnotify.v1" + #:unpack-path + "gopkg.in/fsnotify.v1")) + (home-page "https://gopkg.in/fsnotify.v1") + (synopsis "File system notifications for Go") + (description + "Package fsnotify provides a platform-independent interface for file system notifications. +") + (license license:bsd-3))) + +(define-public go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7 + (package + (name "go-gopkg-in-tomb-v1") + (version "1.0.0-20141024135613-dd632973f1e7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/tomb.v1") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1lqmq1ag7s4b3gc3ddvr792c5xb5k6sfn0cchr3i2s7f1c231zjv")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/tomb.v1" #:unpack-path "gopkg.in/tomb.v1")) + (home-page "https://gopkg.in/tomb.v1") + (synopsis "Installation and usage") + (description + "The tomb package offers a conventional API for clean goroutine termination. +") + (license license:bsd-3))) + +(define-public go-gopkg-in-yaml-v2-2.2.1 + (package + (name "go-gopkg-in-yaml-v2") + (version "2.2.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0dwjrs2lp2gdlscs7bsrmyc5yf6mm4fvgw71bzr9mv2qrd2q73s1")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v2") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language. +") + (license license:asl2.0))) + +(define-public go-github-com-onsi-gomega-1.5.0 + (package + (name "go-github-com-onsi-gomega") + (version "1.5.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/onsi/gomega") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1n7i4hksdgv410m43v2sw14bl5vy59dkp6nlw5l76nibbh37syr9")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/onsi/gomega")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1) + ("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" + ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) + ("go-gopkg-in-fsnotify-v1-1.4.7" ,go-gopkg-in-fsnotify-v1-1.4.7) + ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e" + ,go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e) + ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" + ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) + ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" + ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) + ("go-github-com-onsi-ginkgo-1.6.0" ,go-github-com-onsi-ginkgo-1.6.0) + ("go-github-com-hpcloud-tail-1.0.0" ,go-github-com-hpcloud-tail-1.0.0) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0) + ("go-github-com-fsnotify-fsnotify-1.4.7" + ,go-github-com-fsnotify-fsnotify-1.4.7))) + (home-page "https://github.com/onsi/gomega") + (synopsis ": a BDD Testing Framework for Golang") + (description + "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library. +") + (license license:expat))) + +(define-public go-github-com-sergi-go-diff-1.0.0 + (package + (name "go-github-com-sergi-go-diff") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sergi/go-diff") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0swiazj8wphs2zmk1qgq75xza6m19snif94h2m6fi8dqkwqdl7c7")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/sergi/go-diff")) + (home-page "https://github.com/sergi/go-diff") + (synopsis "go-diff") + (description + "go-diff offers algorithms to perform operations required for synchronizing plain text:") + (license license:expat))) + +(define-public go-golang-org-x-crypto-0.0.0-20190426145343-a29dc8fdc734 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20190426145343-a29dc8fdc734") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "07f0jj4haqs0ywc1akk1qjwn5msl2j0pry1rxjkkbfcq4r6ihc1p")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" + ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) + ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" + ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-github-com-aphistic-sweet-0.2.0 + (package + (name "go-github-com-aphistic-sweet") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/aphistic/sweet") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1bb4qagfxf6byqn2yx0vq24xfvisz3ah4w6bvqclc8cklvfngw43")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/aphistic/sweet")) + (propagated-inputs + `(("go-golang-org-x-crypto-0.0.0-20190426145343-a29dc8fdc734" + ,go-golang-org-x-crypto-0.0.0-20190426145343-a29dc8fdc734) + ("go-github-com-sergi-go-diff-1.0.0" + ,go-github-com-sergi-go-diff-1.0.0) + ("go-github-com-onsi-gomega-1.5.0" ,go-github-com-onsi-gomega-1.5.0) + ("go-github-com-mgutz-ansi-0.0.0-20170206155736-9520e82c474b" + ,go-github-com-mgutz-ansi-0.0.0-20170206155736-9520e82c474b) + ("go-github-com-mattn-go-colorable-0.1.1" + ,go-github-com-mattn-go-colorable-0.1.1))) + (home-page "https://github.com/aphistic/sweet") + (synopsis "sweet") + (description + "Sweet is a pluggable test runner capable of hooking into standard Go tests. It attempts to provide access to the standard Go test tool as close as possible while adding support for test suites and plugins that can hook into test results to add additional functionality.") + (license license:expat))) + +(define-public go-github-com-jmespath-go-jmespath-0.0.0-20180206201540-c2b33e8439af + (package + (name "go-github-com-jmespath-go-jmespath") + (version "0.0.0-20180206201540-c2b33e8439af") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jmespath/go-jmespath") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1r6w7ydx8ydryxk3sfhzsk8m6f1nsik9jg3i1zhi69v4kfl4d5cz")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/jmespath/go-jmespath")) + (home-page "https://github.com/jmespath/go-jmespath") + (synopsis "go-jmespath - A JMESPath implementation in Go") + (description + "go-jmespath is a GO implementation of JMESPath, +which is a query language for JSON. It will take a JSON +document and transform it into another JSON document +through a JMESPath expression.") + (license license:asl2.0))) + +(define-public go-github-com-aws-aws-sdk-go-1.20.6 + (package + (name "go-github-com-aws-aws-sdk-go") + (version "1.20.6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/aws/aws-sdk-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "016vy5s9finyfgh08j7rvn2pnwymdgj2ydr59w57pysnri87mdwx")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/aws/aws-sdk-go")) + (propagated-inputs + `(("go-github-com-jmespath-go-jmespath-0.0.0-20180206201540-c2b33e8439af" + ,go-github-com-jmespath-go-jmespath-0.0.0-20180206201540-c2b33e8439af))) + (home-page "https://github.com/aws/aws-sdk-go") + (synopsis "AWS SDK for Go") + (description + "Package sdk is the official AWS SDK for the Go programming language. +") + (license license:asl2.0))) + +(define-public go-github-com-aybabtme-rgbterm-0.0.0-20170906152045-cc83f3b3ce59 + (package + (name "go-github-com-aybabtme-rgbterm") + (version "0.0.0-20170906152045-cc83f3b3ce59") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/aybabtme/rgbterm") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wvmxvjn64968ikvnxrflb1x8rlcwzpfl53fzbxff2axbx9lq50q")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/aybabtme/rgbterm")) + (home-page "https://github.com/aybabtme/rgbterm") + (synopsis "RGB terminal") + (description + "Package rgbterm colorizes bytes and strings using RGB colors, for a +full range of pretty terminal strings. +") + (license #f))) + +(define-public go-github-com-fatih-color-1.7.0 + (package + (name "go-github-com-fatih-color") + (version "1.7.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/fatih/color") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0v8msvg38r8d1iiq2i5r4xyfx0invhc941kjrsg5gzwvagv55inv")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/fatih/color")) + (home-page "https://github.com/fatih/color") + (synopsis "color") + (description + "Package color is an ANSI color package to output colorized or SGR defined +output to the standard output. The API can be used in several way, pick one +that suits you. +") + (license license:expat))) + +(define-public go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515 + (package + (name "go-github-com-kr-logfmt") + (version "0.0.0-20140226030751-b84e30acd515") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/logfmt") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "02ldzxgznrfdzvghfraslhgp19la1fczcbzh7wm2zdc6lmpd1qq9")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/logfmt")) + (home-page "https://github.com/kr/logfmt") + (synopsis #f) + (description + "Package implements the decoding of logfmt key-value pairs. +") + (license license:expat))) + +(define-public go-github-com-go-logfmt-logfmt-0.4.0 + (package + (name "go-github-com-go-logfmt-logfmt") + (version "0.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/go-logfmt/logfmt") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "06smxc112xmixz78nyvk3b2hmc7wasf2sl5vxj1xz62kqcq9lzm9")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/go-logfmt/logfmt")) + (propagated-inputs + `(("go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515" + ,go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515))) + (home-page "https://github.com/go-logfmt/logfmt") + (synopsis "logfmt") + (description + "Package logfmt implements utilities to marshal and unmarshal data in the +logfmt format. The logfmt format records key/value pairs in a way that +balances readability for humans and simplicity of computer parsing. It is +most commonly used as a more human friendly alternative to JSON for +structured logging. +") + (license license:expat))) + +(define-public go-github-com-golang-protobuf-1.3.1 + (package + (name "go-github-com-golang-protobuf") + (version "1.3.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "15am4s4646qy6iv0g3kkqq52rzykqjhm4bf08dk0fy2r58knpsyl")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-github-com-google-uuid-1.1.1 + (package + (name "go-github-com-google-uuid") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/uuid") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hfxcf9frkb57k6q0rdkrmnfs78ms21r1qfk9fhlqga2yh5xg8zb")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/uuid")) + (home-page "https://github.com/google/uuid") + (synopsis "uuid") + (description "Package uuid generates and inspects UUIDs. +") + (license license:bsd-3))) + +(define-public go-github-com-jpillora-backoff-0.0.0-20180909062703-3050d21c67d7 + (package + (name "go-github-com-jpillora-backoff") + (version "0.0.0-20180909062703-3050d21c67d7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jpillora/backoff") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1nxapdx9xg5gwiscfhq7m0w14hj4gaxb4avmgf1mx9zd3jnw9jxv")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/jpillora/backoff")) + (home-page "https://github.com/jpillora/backoff") + (synopsis "Backoff") + (description + "Package backoff provides an exponential-backoff implementation. +") + (license license:expat))) + +(define-public go-github-com-kr-pretty-0.2.0 + (package + (name "go-github-com-kr-pretty") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/pretty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ywbfzz1h3a3qd8rpkiqwi1dm4w8ls9ijb4x1b7567grns9f0vnp")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/pretty")) + (propagated-inputs + `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) + (home-page "https://github.com/kr/pretty") + (synopsis #f) + (description + "Package pretty provides pretty-printing for Go values. This is +useful during debugging, to avoid wrapping long output lines in +the terminal. +") + (license license:expat))) + +(define-public go-github-com-mattn-go-colorable-0.1.2 + (package + (name "go-github-com-mattn-go-colorable") + (version "0.1.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mattn/go-colorable") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0512jm3wmzkkn7d99x9wflyqf48n5ri3npy1fqkq6l6adc5mni3n")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mattn/go-colorable")) + (propagated-inputs + `(("go-github-com-mattn-go-isatty-0.0.8" + ,go-github-com-mattn-go-isatty-0.0.8))) + (home-page "https://github.com/mattn/go-colorable") + (synopsis "go-colorable") + (description "Colorable writer for windows.") + (license license:expat))) + +(define-public go-github-com-pkg-errors-0.8.1 + (package + (name "go-github-com-pkg-errors") + (version "0.8.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pkg/errors") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0g5qcb4d4fd96midz0zdk8b9kz8xkzwfa8kr1cliqbg8sxsy5vd1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pkg/errors")) + (home-page "https://github.com/pkg/errors") + (synopsis "errors") + (description "Package errors provides simple error handling primitives. +") + (license license:bsd-2))) + +(define-public go-github-com-rogpeppe-fastuuid-1.1.0 + (package + (name "go-github-com-rogpeppe-fastuuid") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/rogpeppe/fastuuid") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1jlif5pxyz3md02ij93kd2y2j1zz0ajc9k8azvn83vv6l3r5c1zg")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/rogpeppe/fastuuid")) + (home-page "https://github.com/rogpeppe/fastuuid") + (synopsis "fastuuid") + (description + "Package fastuuid provides fast UUID generation of 192 bit +universally unique identifiers. +") + (license license:bsd-3))) + +(define-public go-github-com-smartystreets-go-aws-auth-0.0.0-20180515143844-0c1422d1fdb9 + (package + (name "go-github-com-smartystreets-go-aws-auth") + (version "0.0.0-20180515143844-0c1422d1fdb9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/smartystreets-archives/go-aws-auth") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0krfdpgn3gfii1z9fi8ydfw0wwfqyvp6w3rji7w92m528zkjl93d")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/smartystreets/go-aws-auth")) + (home-page "https://github.com/smartystreets/go-aws-auth") + (synopsis "go-aws-auth") + (description + "Package awsauth implements AWS request signing using Signed Signature Version 2, +Signed Signature Version 3, and Signed Signature Version 4. Supports S3 and STS. +") + (license license:expat))) + +(define-public go-github-com-smartystreets-assertions-1.0.0 + (package + (name "go-github-com-smartystreets-assertions") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/smartystreets/assertions") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1188hs39zvil41sdnxs83h1hp319lfyc5n2rvd1xnhz1dh5qjjh4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/smartystreets/assertions")) + (home-page "https://github.com/smartystreets/assertions") + (synopsis #f) + (description + "Package assertions contains the implementations for all assertions which +are referenced in goconvey's `convey` package +(github.com/smartystreets/goconvey/convey) and gunit (github.com/smartystreets/gunit) +for use with the So(...) method. +They can also be used in traditional Go test functions and even in +applications. +") + (license license:expat))) + +(define-public go-github-com-smartystreets-gunit-1.0.0 + (package + (name "go-github-com-smartystreets-gunit") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/smartystreets/gunit") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "11d09rl5qqpj36a311pjj8w5jkj83d5b8gdcsx8f1zn4j924sm5d")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/smartystreets/gunit")) + (propagated-inputs + `(("go-github-com-smartystreets-assertions-1.0.0" + ,go-github-com-smartystreets-assertions-1.0.0))) + (home-page "https://github.com/smartystreets/gunit") + (synopsis "gunit") + (description + "Package gunit provides \"testing\" package hooks and convenience +functions for writing tests in an xUnit style. +See the README file and the examples folder for examples. +") + (license license:expat))) + +(define-public go-github-com-stretchr-testify-1.4.0 + (package + (name "go-github-com-stretchr-testify") + (version "1.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "187i5g88sxfy4vxpm7dw1gwv29pa2qaq475lxrdh5livh69wqfjb")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) + ("go-github-com-stretchr-objx-0.1.0" + ,go-github-com-stretchr-objx-0.1.0) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.0" + ,go-github-com-davecgh-go-spew-1.1.0))) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +") + (license license:expat))) + +(define-public go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0 + (package + (name "go-github-com-tj-assert") + (version "0.0.0-20171129193455-018094318fb0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/tj/assert") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "15ika7izp5hkd10dm30apwfvpm0d1yl2rnxs6896q0svz9zvi2z3")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/tj/assert")) + (home-page "https://github.com/tj/assert") + (synopsis "assert") + (description + "Package assert implements the same assertions as the `assert` package but +stops test execution when a test fails. +") + (license license:expat))) + +(define-public go-github-com-tj-go-elastic-0.0.0-20171221160941-36157cbbebc2 + (package + (name "go-github-com-tj-go-elastic") + (version "0.0.0-20171221160941-36157cbbebc2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/tj/go-elastic") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1r94vc4hbfvqvjz74n4mvsw4dy3vbyzlivb90kyn8vn76a4wqk69")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/tj/go-elastic")) + (home-page "https://github.com/tj/go-elastic") + (synopsis "go-elastic") + (description + "Package elastic provides an Elasticsearch client with AWS sigv4 support. +") + (license license:expat))) + +(define-public go-github-com-tj-go-kinesis-0.0.0-20171128231115-08b17f58cb1b + (package + (name "go-github-com-tj-go-kinesis") + (version "0.0.0-20171128231115-08b17f58cb1b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/tj/go-kinesis") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "108c6p5j6rhhc2cnc2v5368yfsw73y6lzlvz02vpvvjph8rhmld4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/tj/go-kinesis")) + (home-page "https://github.com/tj/go-kinesis") + (synopsis "go-kinesis") + (description + "Package kinesis implements a batch producer built on top of the official AWS SDK. +") + (license license:expat))) + +(define-public go-github-com-tj-go-spin-1.1.0 + (package + (name "go-github-com-tj-go-spin") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/tj/go-spin") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "11xr67991m5pwsy1dira3iwd0sr55vmn1cyjwmlqziw4bwpym64s")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/tj/go-spin")) + (home-page "https://github.com/tj/go-spin") + (synopsis #f) + (description #f) + (license #f))) + +(define-public go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190620200207-3b0461eec859") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0l00c8l0a8xnv6qdpwfzxxsr58jggacgzdrwiprrfx2xqm37b6d5")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20180917221912-90fa682c2a6e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-golang-org-x-text-0.3.2 + (package + (name "go-golang-org-x-text") + (version "0.3.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0flv9idw0jm5nm8lx25xqanbkqgfiym6619w575p7nrdh0riqwqh")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/text")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" + ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) + (home-page "https://golang.org/x/text") + (synopsis "Go Text") + (description + "text is a repository of text-related packages related to internationalization +(i18n) and localization (l10n), such as character encodings, text +transformations, and locale-specific text handling. +") + (license license:bsd-3))) + +(define-public go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15 + (package + (name "go-gopkg-in-check-v1") + (version "1.0.0-20190902080502-41f04d3bba15") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/check.v1") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0vfk9czmlxmp6wndq8k17rhnjxal764mxfhrccza7nwlia760pjy")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) + (home-page "https://gopkg.in/check.v1") + (synopsis "Instructions") + (description + "Package check is a rich testing extension for Go's testing package. +") + (license license:bsd-2))) + +(define-public go-github-com-apex-log-1.4.0 + (package + (name "go-github-com-apex-log") + (version "1.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/apex/log") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0711096f04dyjk2vgj5b50491fl36wciwbq80xwvns5wwkqdg2z5")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/apex/log")) + (propagated-inputs + `(("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" + ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) + ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) + ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" + ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) + ("go-github-com-tj-go-spin-1.1.0" ,go-github-com-tj-go-spin-1.1.0) + ("go-github-com-tj-go-kinesis-0.0.0-20171128231115-08b17f58cb1b" + ,go-github-com-tj-go-kinesis-0.0.0-20171128231115-08b17f58cb1b) + ("go-github-com-tj-go-elastic-0.0.0-20171221160941-36157cbbebc2" + ,go-github-com-tj-go-elastic-0.0.0-20171221160941-36157cbbebc2) + ("go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0" + ,go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0) + ("go-github-com-stretchr-testify-1.4.0" + ,go-github-com-stretchr-testify-1.4.0) + ("go-github-com-smartystreets-gunit-1.0.0" + ,go-github-com-smartystreets-gunit-1.0.0) + ("go-github-com-smartystreets-go-aws-auth-0.0.0-20180515143844-0c1422d1fdb9" + ,go-github-com-smartystreets-go-aws-auth-0.0.0-20180515143844-0c1422d1fdb9) + ("go-github-com-rogpeppe-fastuuid-1.1.0" + ,go-github-com-rogpeppe-fastuuid-1.1.0) + ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) + ("go-github-com-mattn-go-colorable-0.1.2" + ,go-github-com-mattn-go-colorable-0.1.2) + ("go-github-com-kr-pretty-0.2.0" ,go-github-com-kr-pretty-0.2.0) + ("go-github-com-jpillora-backoff-0.0.0-20180909062703-3050d21c67d7" + ,go-github-com-jpillora-backoff-0.0.0-20180909062703-3050d21c67d7) + ("go-github-com-google-uuid-1.1.1" ,go-github-com-google-uuid-1.1.1) + ("go-github-com-golang-protobuf-1.3.1" + ,go-github-com-golang-protobuf-1.3.1) + ("go-github-com-go-logfmt-logfmt-0.4.0" + ,go-github-com-go-logfmt-logfmt-0.4.0) + ("go-github-com-fatih-color-1.7.0" ,go-github-com-fatih-color-1.7.0) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1) + ("go-github-com-aybabtme-rgbterm-0.0.0-20170906152045-cc83f3b3ce59" + ,go-github-com-aybabtme-rgbterm-0.0.0-20170906152045-cc83f3b3ce59) + ("go-github-com-aws-aws-sdk-go-1.20.6" + ,go-github-com-aws-aws-sdk-go-1.20.6) + ("go-github-com-aphistic-sweet-0.2.0" + ,go-github-com-aphistic-sweet-0.2.0) + ("go-github-com-aphistic-golf-0.0.0-20180712155816-02c07f170c5a" + ,go-github-com-aphistic-golf-0.0.0-20180712155816-02c07f170c5a) + ("go-github-com-apex-logs-0.0.7" ,go-github-com-apex-logs-0.0.7))) + (home-page "https://github.com/apex/log") + (synopsis "Handlers") + (description + "Package log implements a simple structured logging API designed with few assumptions. Designed for +centralized logging solutions such as Kinesis which require encoding and decoding before fanning-out +to handlers. +") + (license license:expat))) + +(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0 + (package + (name "go-github-com-cpuguy83-go-md2man-v2") + (version "2.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cpuguy83/go-md2man") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) + (propagated-inputs + `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" + ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) + ("go-github-com-russross-blackfriday-v2-2.0.1" + ,go-github-com-russross-blackfriday-v2-2.0.1) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0))) + (home-page "https://github.com/cpuguy83/go-md2man") + (synopsis "go-md2man") + (description "Converts markdown into roff (man pages).") + (license license:expat))) + +(define-public go-github-com-cyphar-filepath-securejoin-0.2.2 + (package + (name "go-github-com-cyphar-filepath-securejoin") + (version "0.2.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cyphar/filepath-securejoin") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0id32zjb92wm569m29nfrzz5mw9z1glr3klayr6j134pp4h1sgq4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/cyphar/filepath-securejoin")) + (home-page "https://github.com/cyphar/filepath-securejoin") + (synopsis #f) + (description + "Package securejoin is an implementation of the hopefully-soon-to-be-included +SecureJoin helper that is meant to be part of the \"path/filepath\" package. +The purpose of this project is to provide a PoC implementation to make the +SecureJoin proposal (@url{https://github.com/golang/go/issues/20126,https://github.com/golang/go/issues/20126}) more +tangible. +") + (license license:bsd-3))) + +(define-public go-github-com-docker-go-units-0.4.0 + (package + (name "go-github-com-docker-go-units") + (version "0.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/docker/go-units") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0k8gja8ql4pqg5rzmqvka42vjfs6rzablak87whcnqba6qxpimvz")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/docker/go-units")) + (home-page "https://github.com/docker/go-units") + (synopsis "Introduction") + (description + "Package units provides helper function to parse and print size and time units +in human-readable format. +") + (license license:asl2.0))) + +(define-public go-google-golang-org-protobuf-1.23.0 + (package + (name "go-google-golang-org-protobuf") + (version "1.23.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03yan0m1v0zmlr935p4n24fd376mznsg85zy8sywbgisls4s1bzy")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.0" + ,go-github-com-golang-protobuf-1.4.0))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.4.2 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0m5z81im4nsyfgarjhppayk4hqnrwswr3nix9mj8pff8x9jvcjqw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.23.0" + ,go-google-golang-org-protobuf-1.23.0) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-github-com-google-go-cmp-0.5.0 + (package + (name "go-github-com-google-go-cmp") + (version "0.5.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "04pzp583p6b32y34c6jygfxarff9qjs39rarvfh6467z24sdd9k4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") + (license license:bsd-3))) + +(define-public go-github-com-klauspost-compress-1.11.3 + (package + (name "go-github-com-klauspost-compress") + (version "1.11.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/klauspost/compress") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "04wpilw6072fh2wd492ma1nw4br7bvz466mj0vi2m1g4w6d0z88z")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/klauspost/compress")) + (home-page "https://github.com/klauspost/compress") + (synopsis "compress") + (description "This package provides various compression algorithms.") + (license #f))) + +(define-public go-github-com-klauspost-pgzip-1.2.4 + (package + (name "go-github-com-klauspost-pgzip") + (version "1.2.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/klauspost/pgzip") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0mnhfdn0isbkra455jynqjbmrwymx09shlbzbyvgfycih3nbrif0")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/klauspost/pgzip")) + (home-page "https://github.com/klauspost/pgzip") + (synopsis "pgzip") + (description + "Package pgzip implements reading and writing of gzip format compressed files, +as specified in @url{https://rfc-editor.org/rfc/rfc1952.html,RFC 1952}. +") + (license license:expat))) + +(define-public go-github-com-creack-pty-1.1.9 + (package + (name "go-github-com-creack-pty") + (version "1.1.9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/creack/pty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1v52599qq76dwq742mffakzj6mxqqccv2szn3hjicjld56nmd2d3")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/creack/pty")) + (home-page "https://github.com/creack/pty") + (synopsis "pty") + (description + "Package pty provides functions for working with Unix terminals. +") + (license license:expat))) + +(define-public go-github-com-kr-text-0.2.0 + (package + (name "go-github-com-kr-text") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hf58ypz6rxsw6nx3i856whir9lvy4sdx946wbw1nfaf2rdmr9vx")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/text")) + (propagated-inputs + `(("go-github-com-creack-pty-1.1.9" ,go-github-com-creack-pty-1.1.9))) + (home-page "https://github.com/kr/text") + (synopsis #f) + (description + "Package text provides rudimentary functions for manipulating text in +paragraphs. +") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20200116001909-b77594299b42 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200116001909-b77594299b42") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0isfm6kmh4fjhh6m7mrb3zvdjka2y31c5habr5kydl7rg0lwkabv")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-mattn-go-isatty-0.0.12 + (package + (name "go-github-com-mattn-go-isatty") + (version "0.0.12") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mattn/go-isatty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1dfsh27d52wmz0nmmzm2382pfrs2fcijvh6cgir7jbb4pnigr5w4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mattn/go-isatty")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20200116001909-b77594299b42" + ,go-golang-org-x-sys-0.0.0-20200116001909-b77594299b42))) + (home-page "https://github.com/mattn/go-isatty") + (synopsis "go-isatty") + (description "Package isatty implements interface to isatty +") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20200223170610-d5e6a3e2c0ae + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200223170610-d5e6a3e2c0ae") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0lz7vm5dz2p14fzq2j4m1l9p392cl0fa73aaf45gln07ylfajk4n")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-mattn-go-colorable-0.1.6 + (package + (name "go-github-com-mattn-go-colorable") + (version "0.1.6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mattn/go-colorable") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0zv9ix7g0qf71jdhv7gbab9hjfkgbxl22kwhpz9ck1y6m4g1zxaw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mattn/go-colorable")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20200223170610-d5e6a3e2c0ae" + ,go-golang-org-x-sys-0.0.0-20200223170610-d5e6a3e2c0ae) + ("go-github-com-mattn-go-isatty-0.0.12" + ,go-github-com-mattn-go-isatty-0.0.12))) + (home-page "https://github.com/mattn/go-colorable") + (synopsis "go-colorable") + (description "Colorable writer for windows.") + (license license:expat))) + +(define-public go-github-com-mohae-deepcopy-0.0.0-20170929034955-c48cc78d4826 + (package + (name "go-github-com-mohae-deepcopy") + (version "0.0.0-20170929034955-c48cc78d4826") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mohae/deepcopy") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0jdhsz0hsbn0k45rmvm39knbvs024j24ay2q65k5ih8ql8m2c0sd")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mohae/deepcopy")) + (home-page "https://github.com/mohae/deepcopy") + (synopsis "deepCopy") + (description + "deepcopy makes deep copies of things. A standard copy will copy the +pointers: deep copy copies the values pointed to. Unexported field +values are not copied. +") + (license license:expat))) + +(define-public go-github-com-kr-pty-1.1.1 + (package + (name "go-github-com-kr-pty") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/pty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0383f0mb9kqjvncqrfpidsf8y6ns5zlrc91c6a74xpyxjwvzl2y6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/pty")) + (home-page "https://github.com/kr/pty") + (synopsis "pty") + (description + "Package pty is a wrapper for github.com/creack/pty, which provides +functions for working with Unix terminals. +") + (license license:expat))) + +(define-public go-github-com-kr-text-0.1.0 + (package + (name "go-github-com-kr-text") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1gm5bsl01apvc84bw06hasawyqm4q84vx1pm32wr9jnd7a8vjgj1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/text")) + (propagated-inputs + `(("go-github-com-kr-pty-1.1.1" ,go-github-com-kr-pty-1.1.1))) + (home-page "https://github.com/kr/text") + (synopsis #f) + (description + "Package text provides rudimentary functions for manipulating text in +paragraphs. +") + (license license:expat))) + +(define-public go-github-com-niemeyer-pretty-0.0.0-20200227124842-a10e7caefd8e + (package + (name "go-github-com-niemeyer-pretty") + (version "0.0.0-20200227124842-a10e7caefd8e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/niemeyer/pretty") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1jmazh4xzaa3v6g46hz60q2z7nmqs9l9cxdzmmscn3kbcs2znq4v")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/niemeyer/pretty")) + (propagated-inputs + `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) + (home-page "https://github.com/niemeyer/pretty") + (synopsis #f) + (description + "Package pretty provides pretty-printing for Go values. This is +useful during debugging, to avoid wrapping long output lines in +the terminal. +") + (license license:expat))) + +(define-public go-github-com-opencontainers-go-digest-1.0.0 + (package + (name "go-github-com-opencontainers-go-digest") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/go-digest") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0i5acjajvr6hi9zb7gxwifd8w28y884cv7cx36adj8lngj647xbi")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/go-digest")) + (home-page "https://github.com/opencontainers/go-digest") + (synopsis "go-digest") + (description + "Package digest provides a generalized type to opaquely represent message +digests and their operations within the registry. The Digest type is +designed to serve as a flexible identifier in a content-addressable system. +More importantly, it provides tools and wrappers to work with +hash.Hash-based digests with little effort. +") + (license (list license:asl2.0 license:cc-by-sa4.0)))) + +(define-public go-github-com-opencontainers-image-spec-1.0.1 + (package + (name "go-github-com-opencontainers-image-spec") + (version "1.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/image-spec") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03dvbj3dln8c55v9gp79mgmz2yi2ws3r08iyz2fk41y3i22iaw1q")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/image-spec")) + (home-page "https://github.com/opencontainers/image-spec") + (synopsis "OCI Image Format Specification") + (description + "The OCI Image Format project creates and maintains the software shipping container image format spec (OCI Image Format).") + (license license:asl2.0))) + +(define-public go-github-com-opencontainers-runc-1.0.0-rc90 + (package + (name "go-github-com-opencontainers-runc") + (version "1.0.0-rc90") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/runc") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0pi3rvj585997m4z9ljkxz2z9yxf9p2jr0pmqbqrc7bc95f5hagk")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/runc")) + (home-page "https://github.com/opencontainers/runc") + (synopsis "runc") + (description + "@code{runc} is a CLI tool for spawning and running containers according to the OCI specification.") + (license license:asl2.0))) + +(define-public go-github-com-opencontainers-runtime-spec-1.0.2 + (package + (name "go-github-com-opencontainers-runtime-spec") + (version "1.0.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/runtime-spec") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19w981vcmd5lp2hy0630x6ayb8zz17n2vxqm2py5mg945xflcizg")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) + (home-page "https://github.com/opencontainers/runtime-spec") + (synopsis "Open Container Initiative Runtime Specification") + (description + "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") + (license license:asl2.0))) + +(define-public go-github-com-pkg-errors-0.9.1 + (package + (name "go-github-com-pkg-errors") + (version "0.9.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pkg/errors") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1761pybhc2kqr6v5fm8faj08x9bql8427yqg6vnfv6nhrasx1mwq")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pkg/errors")) + (home-page "https://github.com/pkg/errors") + (synopsis "errors") + (description "Package errors provides simple error handling primitives. +") + (license license:bsd-2))) + +(define-public go-github-com-rootless-containers-proto-0.1.0 + (package + (name "go-github-com-rootless-containers-proto") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/rootless-containers/proto") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1yik3b2fxpdkhplni8saabpvf43wnnz4wh6fapak29mkj3lx3mfh")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/rootless-containers/proto")) + (home-page "https://github.com/rootless-containers/proto") + (synopsis #f) + (description + "This project contains the @url{https://developers.google.com/protocol-buffers/,protobuf} definition of the +@code{user.rootlesscontainers} extended attribute. The main purpose of this +attribute is to allow for a interoperable and standardised way of emulating +persistent syscalls in a @url{https://rootlesscontaine.rs/,rootless container} (syscalls +such as @code{chown(2)} which would ordinarily fail).") + (license license:asl2.0))) + +(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.3 + (package + (name "go-github-com-konsorten-go-windows-terminal-sequences") + (version "1.0.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/konsorten/go-windows-terminal-sequences") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1yrsd4s8vhjnxhwbigirymz89dn6qfjnhn28i33vvvdgf96j6ypl")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) + (home-page "https://github.com/konsorten/go-windows-terminal-sequences") + (synopsis "Windows Terminal Sequences") + (description + "This library allow for enabling Windows terminal color support for Go.") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190422165155-953cdadca894") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0gkha4whk8xkcv3isigbs250akag99isxnd3v9xmy0kl3g88hxy1")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-sirupsen-logrus-1.6.0 + (package + (name "go-github-com-sirupsen-logrus") + (version "1.6.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sirupsen/logrus") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1zf9is1yxxnna0d1pyag2m9ziy3l27zb2j92p9msm1gx5jjrvzzj")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/sirupsen/logrus")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894" + ,go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894) + ("go-github-com-stretchr-testify-1.2.2" + ,go-github-com-stretchr-testify-1.2.2) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.3" + ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.3) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/sirupsen/logrus") + (synopsis "Logrus") + (description + "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. +") + (license license:expat))) + +(define-public go-github-com-davecgh-go-spew-1.1.0 + (package + (name "go-github-com-davecgh-go-spew") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/davecgh/go-spew") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/davecgh/go-spew")) + (home-page "https://github.com/davecgh/go-spew") + (synopsis "go-spew") + (description + "Go-spew implements a deep pretty printer for Go data structures to aid in +debugging. A comprehensive suite of tests with 100% test coverage is provided +to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage +report. Go-spew is licensed under the liberal ISC license, so it may be used in +open source or commercial projects.") + (license license:isc))) + +(define-public go-github-com-stretchr-objx-0.1.0 + (package + (name "go-github-com-stretchr-objx") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/objx") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/objx")) + (home-page "https://github.com/stretchr/objx") + (synopsis "Objx") + (description + "Objx - Go package for dealing with maps, slices, JSON and other data. +") + (license license:expat))) + +(define-public go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c + (package + (name "go-gopkg-in-yaml-v3") + (version "3.0.0-20200313102051-9f266ea9e77c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v3") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1bbai3lzb50m0x2vwsdbagrbhvfylj9k1m32hgbqwldqx4p9ay35")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v3") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language. +") + (license #f))) + +(define-public go-github-com-stretchr-testify-1.6.1 + (package + (name "go-github-com-stretchr-testify") + (version "1.6.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1yhiqqzjvi63pf01rgzx68gqkkvjx03fvl5wk30br5l6s81s090l")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (propagated-inputs + `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" + ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) + ("go-github-com-stretchr-objx-0.1.0" + ,go-github-com-stretchr-objx-0.1.0) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.0" + ,go-github-com-davecgh-go-spew-1.1.0))) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +") + (license license:expat))) + +(define-public go-gopkg-in-yaml-v3-3.0.0-20200605160147-a5ece683394c + (package + (name "go-gopkg-in-yaml-v3") + (version "3.0.0-20200605160147-a5ece683394c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v3") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03cm7c3p5fh0aa8vnxv5010dgqqr268ivb480ix1salxx3396w68")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v3") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language. +") + (license #f))) + +(define-public go-github-com-tj-assert-0.0.3 + (package + (name "go-github-com-tj-assert") + (version "0.0.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/tj/assert") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1j5swk3fjq1h5fpqkipddz2ccnbidr7qrpm5dpdaflg9q5jnc673")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/tj/assert")) + (propagated-inputs + `(("go-gopkg-in-yaml-v3-3.0.0-20200605160147-a5ece683394c" + ,go-gopkg-in-yaml-v3-3.0.0-20200605160147-a5ece683394c) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/tj/assert") + (synopsis "assert") + (description + "Package assert implements the same assertions as the `assert` package but +stops test execution when a test fails. +") + (license license:expat))) + +(define-public go-github-com-russross-blackfriday-v2-2.0.1 + (package + (name "go-github-com-russross-blackfriday-v2") + (version "2.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/russross/blackfriday") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0nlz7isdd4rgnwzs68499hlwicxz34j2k2a0b8jy0y7ycd2bcr5j")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/russross/blackfriday/v2")) + (home-page "https://github.com/russross/blackfriday") + (synopsis "Blackfriday") + (description "Package blackfriday is a markdown processor. +") + (license license:bsd-2))) + +(define-public go-github-com-shurcool-sanitized-anchor-name-1.0.0 + (package + (name "go-github-com-shurcool-sanitized-anchor-name") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/shurcooL/sanitized_anchor_name") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1gv9p2nr46z80dnfjsklc6zxbgk96349sdsxjz05f3z6wb6m5l8f")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/shurcooL/sanitized_anchor_name")) + (home-page "https://github.com/shurcooL/sanitized_anchor_name") + (synopsis "sanitized_anchor_name") + (description + "Package sanitized_anchor_name provides a func to create sanitized anchor names. +") + (license license:expat))) + +(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d + (package + (name "go-github-com-cpuguy83-go-md2man-v2") + (version "2.0.0-20190314233015-f79a8a8ca69d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cpuguy83/go-md2man") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) + (propagated-inputs + `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" + ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) + ("go-github-com-russross-blackfriday-v2-2.0.1" + ,go-github-com-russross-blackfriday-v2-2.0.1) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0))) + (home-page "https://github.com/cpuguy83/go-md2man") + (synopsis "go-md2man") + (description "Converts markdown into roff (man pages).") + (license license:expat))) + +(define-public go-gopkg-in-yaml-v2-2.2.2 + (package + (name "go-gopkg-in-yaml-v2") + (version "2.2.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "01wj12jzsdqlnidpyjssmj0r4yavlqy7dwrg7adqd8dicjc4ncsa")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v2") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language. +") + (license license:asl2.0))) + +(define-public go-github-com-urfave-cli-1.22.4 + (package + (name "go-github-com-urfave-cli") + (version "1.22.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/urfave/cli") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1s7frsmiih4wh8vpx9z3ck4667c6vpjrmba7b9ymnv1p9khyg8wc")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/urfave/cli")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) + ("go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d" + ,go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d) + ("go-github-com-burntsushi-toml-0.3.1" + ,go-github-com-burntsushi-toml-0.3.1))) + (home-page "https://github.com/urfave/cli") + (synopsis "cli") + (description + "Package cli provides a minimal framework for creating and organizing command line +Go applications. cli is designed to be easy to understand and write, the most simple +cli application can be written as follows: +") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190222072716-a9d3bda3a223") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1w45zc13xrjzl19s1sx74r5mg3lf2z2nm13wygcdq5r5pyjlhdz9")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-mattn-go-isatty-0.0.8 + (package + (name "go-github-com-mattn-go-isatty") + (version "0.0.8") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mattn/go-isatty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0rqfh1rj6f5wm8p2ky7inm8g10152p7w6n2cli17kf9gad797i8h")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mattn/go-isatty")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223" + ,go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223))) + (home-page "https://github.com/mattn/go-isatty") + (synopsis "go-isatty") + (description "Package isatty implements interface to isatty +") + (license license:expat))) + +(define-public go-github-com-mattn-go-colorable-0.1.4 + (package + (name "go-github-com-mattn-go-colorable") + (version "0.1.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mattn/go-colorable") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1yxcz08kminqr1221zxpibnbzfcgs3fafin0z9zqb3gqvf74jywz")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mattn/go-colorable")) + (propagated-inputs + `(("go-github-com-mattn-go-isatty-0.0.8" + ,go-github-com-mattn-go-isatty-0.0.8))) + (home-page "https://github.com/mattn/go-colorable") + (synopsis "go-colorable") + (description "Colorable writer for windows.") + (license license:expat))) + +(define-public go-github-com-mattn-go-isatty-0.0.11 + (package + (name "go-github-com-mattn-go-isatty") + (version "0.0.11") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mattn/go-isatty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0h671sv7hfprja495kavazkalkx7xzaqksjh13brcnwq67ijrali")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mattn/go-isatty")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037" + ,go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037))) + (home-page "https://github.com/mattn/go-isatty") + (synopsis "go-isatty") + (description "Package isatty implements interface to isatty +") + (license license:expat))) + +(define-public go-github-com-fatih-color-1.9.0 + (package + (name "go-github-com-fatih-color") + (version "1.9.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/fatih/color") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "086z8ssmr1fn9ba4mqnw7pnccfpys6l5yfhvycv1gdrsk7n27mvs")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/fatih/color")) + (propagated-inputs + `(("go-github-com-mattn-go-isatty-0.0.11" + ,go-github-com-mattn-go-isatty-0.0.11) + ("go-github-com-mattn-go-colorable-0.1.4" + ,go-github-com-mattn-go-colorable-0.1.4))) + (home-page "https://github.com/fatih/color") + (synopsis "color") + (description + "Package color is an ANSI color package to output colorized or SGR defined +output to the standard output. The API can be used in several way, pick one +that suits you. +") + (license license:expat))) + +(define-public go-github-com-davecgh-go-spew-1.1.1 + (package + (name "go-github-com-davecgh-go-spew") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/davecgh/go-spew") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/davecgh/go-spew")) + (home-page "https://github.com/davecgh/go-spew") + (synopsis "go-spew") + (description + "Go-spew implements a deep pretty printer for Go data structures to aid in +debugging. A comprehensive suite of tests with 100% test coverage is provided +to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage +report. Go-spew is licensed under the liberal ISC license, so it may be used in +open source or commercial projects.") + (license license:isc))) + +(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.1 + (package + (name "go-github-com-konsorten-go-windows-terminal-sequences") + (version "1.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/konsorten/go-windows-terminal-sequences") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1lchgf27n276vma6iyxa0v1xds68n2g8lih5lavqnx5x6q5pw2ip")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) + (home-page "https://github.com/konsorten/go-windows-terminal-sequences") + (synopsis "Windows Terminal Sequences") + (description + "This library allow for enabling Windows terminal color support for Go.") + (license license:expat))) + +(define-public go-github-com-pmezard-go-difflib-1.0.0 + (package + (name "go-github-com-pmezard-go-difflib") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pmezard/go-difflib") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pmezard/go-difflib")) + (home-page "https://github.com/pmezard/go-difflib") + (synopsis "go-difflib") + (description + "Go-difflib is a partial port of python 3 difflib package. Its main goal +was to make unified and context diff available in pure Go, mostly for +testing purposes.") + (license license:bsd-3))) + +(define-public go-github-com-stretchr-objx-0.1.1 + (package + (name "go-github-com-stretchr-objx") + (version "0.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/objx") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0iph0qmpyqg4kwv8jsx6a56a7hhqq8swrazv40ycxk9rzr0s8yls")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/objx")) + (home-page "https://github.com/stretchr/objx") + (synopsis "Objx") + (description + "Objx - Go package for dealing with maps, slices, JSON and other data. +") + (license license:expat))) + +(define-public go-github-com-stretchr-testify-1.2.2 + (package + (name "go-github-com-stretchr-testify") + (version "1.2.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0dlszlshlxbmmfxj5hlwgv3r22x0y1af45gn1vd198nvvs3pnvfs")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +") + (license license:expat))) + +(define-public go-golang-org-x-crypto-0.0.0-20180904163835-0709b304e793 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20180904163835-0709b304e793") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0i05s09y5pavmfh71fgih7syxg58x7a4krgd8am6d3mnahnmab5c")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20180905080454-ebe1bf3edb33") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0rkspxyjxdmc9f4n09hgkwj8jjd8z5p8mc9z8vwqwqcwrqv4sg7c")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-sirupsen-logrus-1.3.0 + (package + (name "go-github-com-sirupsen-logrus") + (version "1.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sirupsen/logrus") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ib7k8cwxn53dyxd3af1g81z018n77n6q64pm4miznirf7c2c9gk")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/sirupsen/logrus")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33" + ,go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33) + ("go-golang-org-x-crypto-0.0.0-20180904163835-0709b304e793" + ,go-golang-org-x-crypto-0.0.0-20180904163835-0709b304e793) + ("go-github-com-stretchr-testify-1.2.2" + ,go-github-com-stretchr-testify-1.2.2) + ("go-github-com-stretchr-objx-0.1.1" + ,go-github-com-stretchr-objx-0.1.1) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.1" + ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.1) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/sirupsen/logrus") + (synopsis "Logrus") + (description + "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. +") + (license license:expat))) + +(define-public go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20191011191535-87dc89f01550") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0z4i1m2yn3f31ci7wvcm2rxkx2yiv7a78mfzklncmsz2k97rlh2g")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" + ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) + ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" + ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20191026070338-33540a1f6037") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0fjcv0vzvi6za0b4xmnk3932pr9f9gczzf03y0kgq3ry9rqg169y")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-vbatts-go-mtree-0.5.0 + (package + (name "go-github-com-vbatts-go-mtree") + (version "0.5.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/vbatts/go-mtree") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0p42aliw6ngp7zgg5y9mi18z1ka9n0vblbrp5flp93i7qfmc5y0k")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/vbatts/go-mtree")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037" + ,go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037) + ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" + ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550) + ("go-github-com-sirupsen-logrus-1.3.0" + ,go-github-com-sirupsen-logrus-1.3.0) + ("go-github-com-fatih-color-1.9.0" ,go-github-com-fatih-color-1.9.0) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/vbatts/go-mtree") + (synopsis "go-mtree") + (description + "@code{mtree} is a filesystem hierarchy validation tooling and format. +This is a library and simple cli tool for @url{https://www.freebsd.org/cgi/man.cgi?mtree%288%29=,mtree(8)} support.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190404232315-eb5bcb51f2a3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "17k4g8krxbl84gzcs275b7gsh66dzm15fdxivjnx9xz8q84l4kby")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20190412213103-97732733099d + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190412213103-97732733099d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "118hkp01i4z1f5h6hcjm0ff2ngqhrzj1f7731n0kw8dr6hvbx0sw")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-crypto-0.0.0-20200604202706-70a84ac30bf9 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20200604202706-70a84ac30bf9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0zr8np92g3qx7cdgaz4b2z5wnlym9lqyhrvs3xvv1fbsapd2z6i3")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" + ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) + ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" + ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20200622214017-ed371f2e16b4 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200622214017-ed371f2e16b4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "107wfy2fj6z5zps1v72j8drfrfvss1158drb0yqhz5awlbvgrpj7")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-1.22.0 + (package + (name "go-google-golang-org-protobuf") + (version "1.22.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0n7lc4m7kfvj01glc0gnjy0zsnsic7cxnbvlajy0h14cxbab87pj")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.0" + ,go-github-com-golang-protobuf-1.4.0))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.4.1 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0w7ks4vffnnkp0miwgc3chrsnmya45lzvpahb2wmw0jwhdp5kdx7")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.22.0" + ,go-google-golang-org-protobuf-1.22.0) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-github-com-census-instrumentation-opencensus-proto-0.2.1 + (package + (name "go-github-com-census-instrumentation-opencensus-proto") + (version "0.2.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/census-instrumentation/opencensus-proto") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19fcx3sc99i5dsklny6r073z5j20vlwn2xqm6di1q3b1xwchzqfj")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/census-instrumentation/opencensus-proto")) + (home-page "https://github.com/census-instrumentation/opencensus-proto") + (synopsis + "OpenCensus Proto - Language Independent Interface Types For OpenCensus") + (description + "Census provides a framework to define and collect stats against metrics and to +break those stats down across user-defined dimensions.") + (license license:asl2.0))) + +(define-public go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4 + (package + (name "go-github-com-prometheus-client-model") + (version "0.0.0-20190812154241-14fe0d1b01d4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/client_model") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0zdmk6rbbx39cvfz0r59v2jg5sg9yd02b4pds5n5llgvivi99550")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/client_model")) + (propagated-inputs + `(("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" + ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0))) + (home-page "https://github.com/prometheus/client_model") + (synopsis "Deprecation note") + (description + "This repository used to contain the code that defined both +the data model and the exposition format of Prometheus metrics.") + (license license:asl2.0))) + +(define-public go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20190311212946-11955173bddd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hlkai67w167wiyivkzd1fgqrnyxkb94l2c6kr51jwcscizfyfn3")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3 + (package + (name "go-golang-org-x-lint") + (version "0.0.0-20190313153728-d0100b6bd8b3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/lint") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0b0amr9x4ji66iv9ayfx7zrfx52k1m5g66qfcxkgj80qrb1y2yn7")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/lint")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" + ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd))) + (home-page "https://golang.org/x/lint") + (synopsis "Installation") + (description "Package lint contains a linter for Go source code. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20190423024810-112230192c58 + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20190423024810-112230192c58") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "05i2k43j2d0llq768hg5pf3hb2yhfzp9la1w5wp0rsnnzblr0lfn")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the +ones provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135 + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20190524140312-2c0ae7006135") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1lsi2ssxajclj3bciz2a41v1vjv768ja3v6wnbyhxy8xphwkp4fk")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" + ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-google-golang-org-grpc-1.23.0 + (package + (name "go-google-golang-org-grpc") + (version "1.23.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1cn33r2gclmq2v1ndpf1n5bmhf2qs8mms7ii5cnl6f9ch4r2c4k3")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" + ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) + ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" + ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) + ("go-google-golang-org-appengine-1.1.0" + ,go-google-golang-org-appengine-1.1.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-google-go-cmp-0.2.0" + ,go-github-com-google-go-cmp-0.2.0) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0) + ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-client9-misspell-0.3.4" + ,go-github-com-client9-misspell-0.3.4) + ("go-github-com-burntsushi-toml-0.3.1" + ,go-github-com-burntsushi-toml-0.3.1) + ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473 + (package + (name "go-github-com-envoyproxy-go-control-plane") + (version "0.9.1-0.20191026205805-5f8ba28d4473") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/envoyproxy/go-control-plane") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1f1s764rd41vd9vgk3r14h1m6fz6pdvxj6fd83q58gxifbc4q5w4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.23.0" ,go-google-golang-org-grpc-1.23.0) + ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" + ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) + ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" + ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2) + ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" + ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) + ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" + ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) + (home-page "https://github.com/envoyproxy/go-control-plane") + (synopsis "control-plane") + (description + "This repository contains a Go-based implementation of an API server that +implements the discovery service APIs defined in +@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") + (license license:asl2.0))) + +(define-public go-github-com-envoyproxy-protoc-gen-validate-0.1.0 + (package + (name "go-github-com-envoyproxy-protoc-gen-validate") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/envoyproxy/protoc-gen-validate") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0kxd3wwh3xwqk0r684hsy281xq4y71cd11d4q2hspcjbnlbwh7cy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/envoyproxy/protoc-gen-validate")) + (home-page "https://github.com/envoyproxy/protoc-gen-validate") + (synopsis "protoc-gen-validate (PGV)") + (description + "PGV is a protoc plugin to generate polyglot message validators. While protocol buffers effectively guarantee the types of structured data, they cannot enforce semantic rules for values. This plugin adds support to protoc-generated code to validate such constraints.") + (license license:asl2.0))) + +(define-public go-github-com-google-go-cmp-0.2.0 + (package + (name "go-github-com-google-go-cmp") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fbv0x27k9sn8svafc0hjwsnckk864lv4yi7bvzrxvmd3d5hskds")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") + (license license:bsd-3))) + +(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20190308221718-c2843e01d9a2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20190311183353-d8887717615a + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190311183353-d8887717615a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1wfm6ngxjyj7v5a2dqib6lw8bb2rdnf1kl48diykxjrsddn0s163")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190215142949-d0b11bdaac8a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.3.2 + (package + (name "go-github-com-golang-protobuf") + (version "1.3.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1k1wb4zr0qbwgpvz9q5ws9zhlal8hq7dmq62pwxxriksayl6hzym")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4 + (package + (name "go-golang-org-x-exp") + (version "0.0.0-20190121172915-509febef88a4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/exp") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "02isrh39z8znrp5znplzy0dip2gnrl3jm1355raliyvhnhg04j6q")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/exp")) + (home-page "https://golang.org/x/exp") + (synopsis "exp") + (description + "This subrepository holds experimental and deprecated (in the @code{old} +directory) packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961 + (package + (name "go-golang-org-x-lint") + (version "0.0.0-20190227174305-5b3e6a55c961") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/lint") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "04zp5vbds9nffmjg36wjpi5vg9zmf890yf78xxasai3ni637ivfw")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/lint")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" + ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c))) + (home-page "https://golang.org/x/lint") + (synopsis "Installation") + (description "Package lint contains a linter for Go source code. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190213061140-3a22650c66bd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12q6fgdkc0742vcms67nzadgdwvi3rnb1gx3vwkljhrvlnwvz7wc")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20181108010431-42b317875d0f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0mrjhk7al7yyh76x9flvxy4jm5jyqh2fxbxagpaazxn1xdgkaif3")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the +ones provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20180724234803-3673e40ba225") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0vx7mz18p480p7fh0w5jv6mfdbsswrlac1sz4i705q7q7ygz59lm")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-google-golang-org-appengine-1.4.0 + (package + (name "go-google-golang-org-appengine") + (version "1.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/appengine") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "06zl7w4sxgdq2pl94wy9ncii6h0z3szl4xpqds0sv3b3wbdlhbnn")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/appengine")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225" + ,go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0))) + (home-page "https://google.golang.org/appengine") + (synopsis "Go App Engine packages") + (description + "Package appengine provides basic functionality for Google App Engine. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20190226205152-f727befe758c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0rpcqw6z13qd33rbasg32zb0gdhgh5lzjla63r6g651zf6hpsak0")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-google-golang-org-appengine-1.4.0" + ,go-google-golang-org-appengine-1.4.0) + ("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" + ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) + ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" + ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-cloud-google-com-go-0.26.0 + (package + (name "go-cloud-google-com-go") + (version "0.26.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-cloud-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "149v3ci17g6wd2pm18mzcncq5qpl9hwdjnz3rlbn5rfidyn46la1")))) + (build-system go-build-system) + (arguments '(#:import-path "cloud.google.com/go")) + (home-page "https://cloud.google.com/go") + (synopsis "Google Cloud Client Libraries for Go") + (description + "Package cloud is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +of sub-packages. +") + (license license:asl2.0))) + +(define-public go-github-com-burntsushi-toml-0.3.1 + (package + (name "go-github-com-burntsushi-toml") + (version "0.3.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/BurntSushi/toml") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fjdwwfzyzllgiwydknf1pwjvy49qxfsczqx5gz3y0izs7as99j6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/BurntSushi/toml")) + (home-page "https://github.com/BurntSushi/toml") + (synopsis "TOML parser and encoder for Go with reflection") + (description + "Package toml implements decoding and encoding of TOML files. +") + (license license:expat))) + +(define-public go-github-com-client9-misspell-0.3.4 + (package + (name "go-github-com-client9-misspell") + (version "0.3.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/client9/misspell") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1vwf33wsc4la25zk9nylpbp9px3svlmldkm0bha4hp56jws4q9cs")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/client9/misspell")) + (home-page "https://github.com/client9/misspell") + (synopsis "Install") + (description + "Package misspell corrects commonly misspelled English words in source files. +") + (license license:expat))) + +(define-public go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b + (package + (name "go-github-com-golang-glog") + (version "0.0.0-20160126235308-23def4e6c14b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/glog") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0jb2834rw5sykfr937fxi8hxi2zy80sj2bdn9b3jb4b26ksqng30")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/glog")) + (home-page "https://github.com/golang/glog") + (synopsis "glog") + (description + "Package glog implements logging analogous to the Google-internal C++ INFO/ERROR/V setup. +It provides functions Info, Warning, Error, Fatal, plus formatting variants such as +Infof. It also provides V-style logging controlled by the -v and -vmodule=file=2 flags. +") + (license license:asl2.0))) + +(define-public go-github-com-golang-mock-1.1.1 + (package + (name "go-github-com-golang-mock") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/mock") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ap8wb6pdl6ccmdb43advjll2ly4sz26wsc3axw0hbrjrybybzgy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/mock")) + (home-page "https://github.com/golang/mock") + (synopsis "gomock") + (description + "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It +integrates well with Go's built-in @code{testing} package, but can be used in other +contexts too.") + (license license:asl2.0))) + +(define-public go-github-com-golang-protobuf-1.2.0 + (package + (name "go-github-com-golang-protobuf") + (version "1.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0kf4b59rcbb1cchfny2dm9jyznp8ri2hsb14n8iak1q8986xa0ab")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3 + (package + (name "go-golang-org-x-lint") + (version "0.0.0-20181026193005-c67002cb31c3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/lint") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0gymbggskjmphqxqcx4s0vnlcz7mygbix0vhwcwv5r67c0bf6765")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/lint")) + (home-page "https://golang.org/x/lint") + (synopsis "Installation") + (description "Package lint contains a linter for Go source code. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d + (package + (name "go-golang-org-x-net") + (version "0.0.0-20180826012351-8a410e7b638d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hp0l8f6fir5gmgrjq0mhh5ikc0rlrm72774228800kfwqjrxxny")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be + (package + (name "go-golang-org-x-oauth2") + (version "0.0.0-20180821212333-d2e6202438be") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/oauth2") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wbn75fd10485nb93bm4kqldqifdim5xqy4v7r5sdvimvf3fyhn7")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/oauth2")) + (home-page "https://golang.org/x/oauth2") + (synopsis "OAuth2 for Go") + (description + "Package oauth2 provides support for making +OAuth2 authorized and authenticated HTTP requests, +as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +It can additionally grant authorization with Bearer JWT. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20180314180146-1d60e4601c6f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "046jlanz2lkxq1r57x9bl6s4cvfqaic6p2xybsj8mq1120jv4rs6")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the +ones provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20180830151530-49385e6e1522") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0spbldahns09fdxkxflb1x24f8k2awdlnr6k5i7ci4fqd19r1dv4")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-text-0.3.0 + (package + (name "go-golang-org-x-text") + (version "0.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/text")) + (home-page "https://golang.org/x/text") + (synopsis "Go Text") + (description + "text is a repository of text-related packages related to internationalization +(i18n) and localization (l10n), such as character encodings, text +transformations, and locale-specific text handling. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20190114222345-bf090417da8b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1n3xp56k4k3lj06rx7587wr5gnwg0148nvwx6ch0g7ar02hh94hw")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-google-golang-org-appengine-1.1.0 + (package + (name "go-google-golang-org-appengine") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/appengine") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1pz202zszg8f35dk5pfhwgcdi3r6dx1l4yk6x6ly7nb4j45zi96x")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/appengine")) + (home-page "https://google.golang.org/appengine") + (synopsis "Go App Engine packages") + (description + "Package appengine provides basic functionality for Google App Engine. +") + (license license:asl2.0))) + +(define-public go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8 + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20180817151627-c66870c02cf8") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0siq7sv68556ygqi2d2zmvx8l1xjqdc0fylqzci5h1mq2i14bayn")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-google-golang-org-grpc-1.19.0 + (package + (name "go-google-golang-org-grpc") + (version "1.19.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1znqwpj7ix3dpzx4zch0q70sdl3z5lvbb7v3q4i8sf8kas3yv71v")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" + ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) + ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" + ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) + ("go-google-golang-org-appengine-1.1.0" + ,go-google-golang-org-appengine-1.1.0) + ("go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b" + ,go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b) + ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522" + ,go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522) + ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" + ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d" + ,go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d) + ("go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3" + ,go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0) + ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-client9-misspell-0.3.4" + ,go-github-com-client9-misspell-0.3.4) + ("go-github-com-burntsushi-toml-0.3.1" + ,go-github-com-burntsushi-toml-0.3.1) + ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099 + (package + (name "go-honnef-co-go-tools") + (version "0.0.0-20190102054323-c2f93a96b099") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/dominikh/go-tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "07lg29aiap80ca9f201jzng9vjr168cv3qmvjmbd7v5pmww9kmr8")))) + (build-system go-build-system) + (arguments '(#:import-path "honnef.co/go/tools")) + (home-page "https://honnef.co/go/tools") + (synopsis "Documentation") + (description + "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, +offers simplifications, and enforces style rules.") + (license license:expat))) + +(define-public go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55 + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20190819201941-24fa4b261c55") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "109zhaqlfd8zkbr1hk6zqbs6vcxfrk64scjwh2nswph05gr0m84d")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" + ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) + ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) + ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" + ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) + ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" + ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) + ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" + ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-google-golang-org-grpc-1.27.0 + (package + (name "go-google-golang-org-grpc") + (version "1.27.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ijrmgrxyabfn51nm3p9l81iaasq5fg237wnr6mdc4dzsfcg8kd7")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" + ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-github-com-google-go-cmp-0.2.0" + ,go-github-com-google-go-cmp-0.2.0) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2) + ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" + ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) + ("go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473" + ,go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-github-com-google-go-cmp-0.3.0 + (package + (name "go-github-com-google-go-cmp") + (version "0.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1hyxx3434zshl2m9ja78gwlkg1rx9yl6diqa7dnjb31xz5x4gbjj")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd + (package + (name "go-google-golang-org-protobuf") + (version "0.0.0-20200109180630-ec00e32a8dfd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0w6lp9w2avxcpxwzzhspr209ifhyjagvs23k0vykfdqahl1aplrh")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.3.0" + ,go-github-com-google-go-cmp-0.3.0))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.4.0-rc.1 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.0-rc.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "186rirvbfgv6hrxp27ipx2cdpv19qifdd20biqfdm01wiyclqimn")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd" + ,go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd) + ("go-github-com-google-go-cmp-0.3.1" + ,go-github-com-google-go-cmp-0.3.1))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-github-com-google-go-cmp-0.3.1 + (package + (name "go-github-com-google-go-cmp") + (version "0.3.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1caw49i0plkjxir7kdf5qhwls3krqwfmi7g4h392rdfwi3kfahx1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64 + (package + (name "go-google-golang-org-protobuf") + (version "0.0.0-20200221191635-4d8936d0db64") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0563bsvdjj6k0sgwqd5yzrgfiax7sp3lcwh608gync5sv9fx39cy")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.3.1" + ,go-github-com-google-go-cmp-0.3.1) + ("go-github-com-golang-protobuf-1.4.0-rc.1" + ,go-github-com-golang-protobuf-1.4.0-rc.1))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.0-rc.1.0.20200221234624-67d41d38c208") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ykxhg3zixmw25pd435f8h16wnz1g00jpcmmg3xl030kksgqgpp6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64" + ,go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60 + (package + (name "go-google-golang-org-protobuf") + (version "0.0.0-20200228230310-ab0ca4ff8a60") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1rinspcznfp85yz4vrlf4h38hr576virgv8lcs22bsylqga808sd")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208" + ,go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.4.0-rc.2 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.0-rc.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1hd43hjv5zl6bjbmhm5phx74bw4xajsi73m5zky2k56za4mpgzzc")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60" + ,go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967 + (package + (name "go-google-golang-org-protobuf") + (version "1.20.1-0.20200309200217-e05f789c0967") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "17wmy89hnmpkwc63rfcjp50q15s9f1rhmczg06c3z9yy41zk82w9")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.0-rc.2" + ,go-github-com-golang-protobuf-1.4.0-rc.2))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.0-rc.4.0.20200313231945-b860323f09d0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1zj6cwshx0l5n9cn2cpbikzzb79px5dmkpc4p19zy1iif5r5p0z0")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967" + ,go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-1.21.0 + (package + (name "go-google-golang-org-protobuf") + (version "1.21.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12bwln8z1lf9105gdp6ip0rx741i4yfz1520gxnp8861lh9wcl63")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0" + ,go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.4.0 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fjvl5n77abxz5qsd4mgyvjq19x43c5bfvmq62mq3m5plx6zksc8")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.21.0" + ,go-google-golang-org-protobuf-1.21.0) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543 + (package + (name "go-golang-org-x-xerrors") + (version "0.0.0-20191204190536-9bdfabe68543") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/xerrors") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1yjfi1bk9xb81lqn85nnm13zz725wazvrx3b50hx19qmwg7a4b0c")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/xerrors")) + (home-page "https://golang.org/x/xerrors") + (synopsis #f) + (description + "Package xerrors implements functions to manipulate errors. +") + (license license:bsd-3))) + +(define-public go-github-com-google-go-cmp-0.4.0 + (package + (name "go-github-com-google-go-cmp") + (version "0.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1x5pvl3fb5sbyng7i34431xycnhmx8xx94gq2n19g6p0vz68z2v2")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc + (package + (name "go-google-golang-org-protobuf") + (version "1.23.1-0.20200526195155-81db48ad09cc") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "02cpr8rqr5wmpj2fqb32mzilsdnxkh52g1jz95a3ck3gzffc7hh1")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.0" + ,go-github-com-golang-protobuf-1.4.0))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc + (package + (name "go-honnef-co-go-tools") + (version "0.0.0-20190523083050-ea95bdfd59fc") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/dominikh/go-tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1763nw7pwpzkvzfnm63dgzcgbq9hwmq5l1nffchnhh77vgkaq4ic")))) + (build-system go-build-system) + (arguments '(#:import-path "honnef.co/go/tools")) + (home-page "https://honnef.co/go/tools") + (synopsis "Documentation") + (description + "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, +offers simplifications, and enforces style rules.") + (license license:expat))) + +(define-public go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013 + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20200526211855-cb27e3aa2013") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ml73ghqcwbz7ipfk8fnxb5indcml49b5p7vp1fsyny0abyyrmxf")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" + ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) + ("go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc" + ,go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-golang-protobuf-1.4.1" + ,go-github-com-golang-protobuf-1.4.1))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-google-golang-org-protobuf-1.24.0 + (package + (name "go-google-golang-org-protobuf") + (version "1.24.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0x3qyn3rizbs671gs7f8v50rmiwf9h7kbaradpivw9718mhbg1gn")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" + ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.1" + ,go-github-com-golang-protobuf-1.4.1))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-gopkg-in-check-v1-1.0.0-20200227125254-8fa46927fb4f + (package + (name "go-gopkg-in-check-v1") + (version "1.0.0-20200227125254-8fa46927fb4f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/check.v1") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0fx03x0nx9mjwnqphnx852q9p76qg7cazrachvgr1bj357lplrcw")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) + (home-page "https://gopkg.in/check.v1") + (synopsis "Instructions") + (description + "Package check is a rich testing extension for Go's testing package. +") + (license license:bsd-2))) + +(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 + (package + (name "go-gopkg-in-check-v1") + (version "0.0.0-20161208181325-20d25e280405") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/check.v1") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) + (home-page "https://gopkg.in/check.v1") + (synopsis "Instructions") + (description + "Package check is a rich testing extension for Go's testing package. +") + (license license:bsd-2))) + +(define-public go-gopkg-in-yaml-v3-3.0.0-20200615113413-eeeca48fe776 + (package + (name "go-gopkg-in-yaml-v3") + (version "3.0.0-20200615113413-eeeca48fe776") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v3") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "06m3kx5mp6vwfcpjl04c39r1dpbakg2la9ql1jw3zvpi6jk7iwbk")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v3") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language. +") + (license #f))) + +(define-public go-github-com-opencontainers-umoci-0.4.7 + (package + (name "go-github-com-opencontainers-umoci") + (version "0.4.7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/umoci") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0in8kyi4jprvbm3zsl3risbjj8b0ma62yl3rq8rcvcgypx0mn7d4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/umoci")) + (propagated-inputs + `(("go-gopkg-in-yaml-v3-3.0.0-20200615113413-eeeca48fe776" + ,go-gopkg-in-yaml-v3-3.0.0-20200615113413-eeeca48fe776) + ("go-gopkg-in-check-v1-1.0.0-20200227125254-8fa46927fb4f" + ,go-gopkg-in-check-v1-1.0.0-20200227125254-8fa46927fb4f) + ("go-google-golang-org-protobuf-1.24.0" + ,go-google-golang-org-protobuf-1.24.0) + ("go-golang-org-x-sys-0.0.0-20200622214017-ed371f2e16b4" + ,go-golang-org-x-sys-0.0.0-20200622214017-ed371f2e16b4) + ("go-golang-org-x-crypto-0.0.0-20200604202706-70a84ac30bf9" + ,go-golang-org-x-crypto-0.0.0-20200604202706-70a84ac30bf9) + ("go-github-com-vbatts-go-mtree-0.5.0" + ,go-github-com-vbatts-go-mtree-0.5.0) + ("go-github-com-urfave-cli-1.22.4" ,go-github-com-urfave-cli-1.22.4) + ("go-github-com-tj-assert-0.0.3" ,go-github-com-tj-assert-0.0.3) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-sirupsen-logrus-1.6.0" + ,go-github-com-sirupsen-logrus-1.6.0) + ("go-github-com-rootless-containers-proto-0.1.0" + ,go-github-com-rootless-containers-proto-0.1.0) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-runtime-spec-1.0.2" + ,go-github-com-opencontainers-runtime-spec-1.0.2) + ("go-github-com-opencontainers-runc-1.0.0-rc90" + ,go-github-com-opencontainers-runc-1.0.0-rc90) + ("go-github-com-opencontainers-image-spec-1.0.1" + ,go-github-com-opencontainers-image-spec-1.0.1) + ("go-github-com-opencontainers-go-digest-1.0.0" + ,go-github-com-opencontainers-go-digest-1.0.0) + ("go-github-com-niemeyer-pretty-0.0.0-20200227124842-a10e7caefd8e" + ,go-github-com-niemeyer-pretty-0.0.0-20200227124842-a10e7caefd8e) + ("go-github-com-mohae-deepcopy-0.0.0-20170929034955-c48cc78d4826" + ,go-github-com-mohae-deepcopy-0.0.0-20170929034955-c48cc78d4826) + ("go-github-com-mattn-go-colorable-0.1.6" + ,go-github-com-mattn-go-colorable-0.1.6) + ("go-github-com-kr-text-0.2.0" ,go-github-com-kr-text-0.2.0) + ("go-github-com-klauspost-pgzip-1.2.4" + ,go-github-com-klauspost-pgzip-1.2.4) + ("go-github-com-klauspost-compress-1.11.3" + ,go-github-com-klauspost-compress-1.11.3) + ("go-github-com-google-go-cmp-0.5.0" + ,go-github-com-google-go-cmp-0.5.0) + ("go-github-com-golang-protobuf-1.4.2" + ,go-github-com-golang-protobuf-1.4.2) + ("go-github-com-docker-go-units-0.4.0" + ,go-github-com-docker-go-units-0.4.0) + ("go-github-com-cyphar-filepath-securejoin-0.2.2" + ,go-github-com-cyphar-filepath-securejoin-0.2.2) + ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" + ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) + ("go-github-com-apex-log-1.4.0" ,go-github-com-apex-log-1.4.0) + ("go-github-com-adamkorcz-go-fuzz-headers-0.0.0-20210312213058-32f4d319f0d2" + ,go-github-com-adamkorcz-go-fuzz-headers-0.0.0-20210312213058-32f4d319f0d2))) + (home-page "https://github.com/opencontainers/umoci") + (synopsis "Install") + (description + "@strong{u}moci @strong{m}odifies @strong{O}pen @strong{C}ontainer @strong{i}mages.") + (license license:asl2.0))) + +(define-public go-github-com-pelletier-go-toml-1.9.3 + (package + (name "go-github-com-pelletier-go-toml") + (version "1.9.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pelletier/go-toml") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0cqwnvlgs1wgdgjxlwv8j52f7d6syniadr51sjh2fya99m5wzvsn")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pelletier/go-toml")) + (home-page "https://github.com/pelletier/go-toml") + (synopsis "go-toml") + (description "Package toml is a TOML parser and manipulation library. +") + (license #f))) + +(define-public go-github-com-pkg-errors-0.9.1 + (package + (name "go-github-com-pkg-errors") + (version "0.9.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pkg/errors") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1761pybhc2kqr6v5fm8faj08x9bql8427yqg6vnfv6nhrasx1mwq")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pkg/errors")) + (home-page "https://github.com/pkg/errors") + (synopsis "errors") + (description "Package errors provides simple error handling primitives. +") + (license license:bsd-2))) + +(define-public go-github-com-russross-blackfriday-v2-2.1.0 + (package + (name "go-github-com-russross-blackfriday-v2") + (version "2.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/russross/blackfriday") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0d1rg1drrfmabilqjjayklsz5d0n3hkf979sr3wsrw92bfbkivs7")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/russross/blackfriday/v2")) + (home-page "https://github.com/russross/blackfriday") + (synopsis "Blackfriday") + (description "Package blackfriday is a markdown processor. +") + (license license:bsd-2))) + +(define-public go-github-com-satori-go-uuid-1.2.1-0.20180404165556-75cca531ea76 + (package + (name "go-github-com-satori-go-uuid") + (version "1.2.1-0.20180404165556-75cca531ea76") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/satori/go.uuid") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0fi1rc2zl0vyyah6iy8cvsjyxipp6pnzb19x40qkq3j1qlra20qy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/satori/go.uuid")) + (home-page "https://github.com/satori/go.uuid") + (synopsis "UUID package for Go language") + (description + "Package uuid provides implementation of Universally Unique Identifier (UUID). +Supported versions are 1, 3, 4 and 5 (as specified in @url{https://rfc-editor.org/rfc/rfc4122.html,RFC 4122}) and +version 2 (as specified in DCE 1.1). +") + (license license:expat))) + +(define-public go-github-com-blang-semver-3.5.1+incompatible + (package + (name "go-github-com-blang-semver") + (version "3.5.1+incompatible") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/blang/semver") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "13ws259bwcibkclbr82ilhk6zadm63kxklxhk12wayklj8ghhsmy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/blang/semver")) + (home-page "https://github.com/blang/semver") + (synopsis "semver for golang") + (description + "semver is a @url{http://semver.org/,Semantic Versioning} library written in golang. It fully covers spec version @code{2.0.0}.") + (license license:expat))) + +(define-public go-github-com-hashicorp-errwrap-1.0.0 + (package + (name "go-github-com-hashicorp-errwrap") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/errwrap") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0slfb6w3b61xz04r32bi0a1bygc82rjzhqkxj2si2074wynqnr1c")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/errwrap")) + (home-page "https://github.com/hashicorp/errwrap") + (synopsis "errwrap") + (description + "Package errwrap implements methods to formalize error wrapping in Go. +") + (license license:mpl2.0))) + +(define-public go-github-com-hashicorp-go-multierror-1.1.0 + (package + (name "go-github-com-hashicorp-go-multierror") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/go-multierror") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0pmjpzpra7lqgikxzwlcp5mh01b46j2vhyxkixz0v86fr9kf0k3k")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/go-multierror")) + (propagated-inputs + `(("go-github-com-hashicorp-errwrap-1.0.0" + ,go-github-com-hashicorp-errwrap-1.0.0))) + (home-page "https://github.com/hashicorp/go-multierror") + (synopsis "go-multierror") + (description + "@code{go-multierror} is a package for Go that provides a mechanism for +representing a list of @code{error} values as a single @code{error}.") + (license license:mpl2.0))) + +(define-public go-github-com-opencontainers-runtime-spec-1.0.3-0.20200710190001-3e4195d92445 + (package + (name "go-github-com-opencontainers-runtime-spec") + (version "1.0.3-0.20200710190001-3e4195d92445") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/runtime-spec") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "04kfdbap80r89rn7f7xcmkyy0qbpd18dgk65bzapy0x0calpgrlk")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) + (home-page "https://github.com/opencontainers/runtime-spec") + (synopsis "Open Container Initiative Runtime Specification") + (description + "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") + (license license:asl2.0))) + +(define-public go-github-com-opencontainers-runtime-tools-0.9.0 + (package + (name "go-github-com-opencontainers-runtime-tools") + (version "0.9.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/runtime-tools") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1pli3jb1rq9lkzzz83f7jw788vijg7x6ly3vgasdlwri7kiph1sa")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/runtime-tools")) + (home-page "https://github.com/opencontainers/runtime-tools") + (synopsis "oci-runtime-tool") + (description + "oci-runtime-tool is a collection of tools for working with the @url{https://github.com/opencontainers/runtime-spec,OCI runtime specification}. +To build from source code, runtime-tools requires Go 1.10.x or above.") + (license license:asl2.0))) + +(define-public go-github-com-pkg-errors-0.9.1 + (package + (name "go-github-com-pkg-errors") + (version "0.9.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pkg/errors") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1761pybhc2kqr6v5fm8faj08x9bql8427yqg6vnfv6nhrasx1mwq")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pkg/errors")) + (home-page "https://github.com/pkg/errors") + (synopsis "errors") + (description "Package errors provides simple error handling primitives. +") + (license license:bsd-2))) + +(define-public go-github-com-willf-bitset-1.1.11-0.20200630133818-d5bec3311243 + (package + (name "go-github-com-willf-bitset") + (version "1.1.11-0.20200630133818-d5bec3311243") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/bits-and-blooms/bitset") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "05nyd0vhp2h9hbqlv2s9l2py6mr8hpz2zyfj09an1q7wd8vph4ja")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/willf/bitset")) + (home-page "https://github.com/willf/bitset") + (synopsis "bitset") + (description + "Package bitset implements bitsets, a mapping +between non-negative integers and boolean values. It should be more +efficient than map[uint] bool. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20191115151921-52ab43148777") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1kakxbqrb1w2vwg7r1896z68qcx2lfvimsl8cs2niiipbgpi6imx")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-opencontainers-selinux-1.6.0 + (package + (name "go-github-com-opencontainers-selinux") + (version "1.6.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/selinux") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ja41zfgrkhk5khixjnxpi1b85xfcxlkhq2q9b7ma6xjfdhg8bq2")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/selinux")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777" + ,go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777) + ("go-github-com-willf-bitset-1.1.11-0.20200630133818-d5bec3311243" + ,go-github-com-willf-bitset-1.1.11-0.20200630133818-d5bec3311243) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) + (home-page "https://github.com/opencontainers/selinux") + (synopsis "selinux") + (description "Common SELinux package used across the container ecosystem.") + (license license:asl2.0))) + +(define-public go-github-com-seccomp-libseccomp-golang-0.9.1 + (package + (name "go-github-com-seccomp-libseccomp-golang") + (version "0.9.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/seccomp/libseccomp-golang") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "022c8prvxz0shrifams7lq4xidvkcqg9xi87wjjcpmbikqi72cna")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/seccomp/libseccomp-golang")) + (home-page "https://github.com/seccomp/libseccomp-golang") + (synopsis #f) + (description + "Package seccomp provides bindings for libseccomp, a library wrapping the Linux +seccomp syscall. Seccomp enables an application to restrict system call use +for itself and its children. +") + (license license:bsd-2))) + +(define-public go-github-com-davecgh-go-spew-1.1.1 + (package + (name "go-github-com-davecgh-go-spew") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/davecgh/go-spew") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/davecgh/go-spew")) + (home-page "https://github.com/davecgh/go-spew") + (synopsis "go-spew") + (description + "Go-spew implements a deep pretty printer for Go data structures to aid in +debugging. A comprehensive suite of tests with 100% test coverage is provided +to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage +report. Go-spew is licensed under the liberal ISC license, so it may be used in +open source or commercial projects.") + (license license:isc))) + +(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.3 + (package + (name "go-github-com-konsorten-go-windows-terminal-sequences") + (version "1.0.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/konsorten/go-windows-terminal-sequences") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1yrsd4s8vhjnxhwbigirymz89dn6qfjnhn28i33vvvdgf96j6ypl")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) + (home-page "https://github.com/konsorten/go-windows-terminal-sequences") + (synopsis "Windows Terminal Sequences") + (description + "This library allow for enabling Windows terminal color support for Go.") + (license license:expat))) + +(define-public go-github-com-stretchr-testify-1.2.2 + (package + (name "go-github-com-stretchr-testify") + (version "1.2.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0dlszlshlxbmmfxj5hlwgv3r22x0y1af45gn1vd198nvvs3pnvfs")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190422165155-953cdadca894") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0gkha4whk8xkcv3isigbs250akag99isxnd3v9xmy0kl3g88hxy1")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-sirupsen-logrus-1.6.0 + (package + (name "go-github-com-sirupsen-logrus") + (version "1.6.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sirupsen/logrus") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1zf9is1yxxnna0d1pyag2m9ziy3l27zb2j92p9msm1gx5jjrvzzj")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/sirupsen/logrus")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894" + ,go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894) + ("go-github-com-stretchr-testify-1.2.2" + ,go-github-com-stretchr-testify-1.2.2) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.3" + ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.3) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/sirupsen/logrus") + (synopsis "Logrus") + (description + "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. +") + (license license:expat))) + +(define-public go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2 + (package + (name "go-github-com-syndtr-gocapability") + (version "0.0.0-20180916011248-d98352740cb2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/syndtr/gocapability") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "065y16562ynixxzj7iys4f4spb7knilbj3h833qlhds381j8hn93")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/syndtr/gocapability")) + (home-page "https://github.com/syndtr/gocapability") + (synopsis #f) + (description #f) + (license license:bsd-2))) + +(define-public go-github-com-davecgh-go-spew-1.1.0 + (package + (name "go-github-com-davecgh-go-spew") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/davecgh/go-spew") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/davecgh/go-spew")) + (home-page "https://github.com/davecgh/go-spew") + (synopsis "go-spew") + (description + "Go-spew implements a deep pretty printer for Go data structures to aid in +debugging. A comprehensive suite of tests with 100% test coverage is provided +to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage +report. Go-spew is licensed under the liberal ISC license, so it may be used in +open source or commercial projects.") + (license license:isc))) + +(define-public go-github-com-pmezard-go-difflib-1.0.0 + (package + (name "go-github-com-pmezard-go-difflib") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pmezard/go-difflib") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pmezard/go-difflib")) + (home-page "https://github.com/pmezard/go-difflib") + (synopsis "go-difflib") + (description + "Go-difflib is a partial port of python 3 difflib package. Its main goal +was to make unified and context diff available in pure Go, mostly for +testing purposes.") + (license license:bsd-3))) + +(define-public go-github-com-stretchr-objx-0.1.0 + (package + (name "go-github-com-stretchr-objx") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/objx") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/objx")) + (home-page "https://github.com/stretchr/objx") + (synopsis "Objx") + (description + "Objx - Go package for dealing with maps, slices, JSON and other data. +") + (license license:expat))) + +(define-public go-github-com-stretchr-testify-1.3.0 + (package + (name "go-github-com-stretchr-testify") + (version "1.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wjchp2c8xbgcbbq32w3kvblk6q6yn533g78nxl6iskq6y95lxsy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (propagated-inputs + `(("go-github-com-stretchr-objx-0.1.0" + ,go-github-com-stretchr-objx-0.1.0) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.0" + ,go-github-com-davecgh-go-spew-1.1.0))) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +") + (license license:expat))) + +(define-public go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f + (package + (name "go-github-com-xeipuuv-gojsonpointer") + (version "0.0.0-20180127040702-4e3ac2762d5f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/xeipuuv/gojsonpointer") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "13y6iq2nzf9z4ls66bfgnnamj2m3438absmbpqry64bpwjfbsi9q")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/xeipuuv/gojsonpointer")) + (home-page "https://github.com/xeipuuv/gojsonpointer") + (synopsis "gojsonpointer") + (description "An implementation of JSON Pointer - Go language") + (license license:asl2.0))) + +(define-public go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415 + (package + (name "go-github-com-xeipuuv-gojsonreference") + (version "0.0.0-20180127040603-bd5ef7bd5415") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/xeipuuv/gojsonreference") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1xby79padc7bmyb8rfbad8wfnfdzpnh51b1n8c0kibch0kwc1db5")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/xeipuuv/gojsonreference")) + (home-page "https://github.com/xeipuuv/gojsonreference") + (synopsis "gojsonreference") + (description "An implementation of JSON Reference - Go language") + (license license:asl2.0))) + +(define-public go-github-com-xeipuuv-gojsonschema-1.2.0 + (package + (name "go-github-com-xeipuuv-gojsonschema") + (version "1.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/xeipuuv/gojsonschema") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1mqiq0r8qw4qlfp3ls8073r6514rmzwrmdn4j33rppk3zh942i6l")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/xeipuuv/gojsonschema")) + (propagated-inputs + `(("go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415" + ,go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415) + ("go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f" + ,go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f) + ("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0))) + (home-page "https://github.com/xeipuuv/gojsonschema") + (synopsis "gojsonschema") + (description + "An implementation of JSON Schema for the Go programming language. Supports draft-04, draft-06 and draft-07.") + (license license:asl2.0))) + +(define-public go-golang-org-x-sys-0.0.0-20200720211630-cb9d2d5c5666 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200720211630-cb9d2d5c5666") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18b1179cvv3rfn3hhysiqwcn2c15a1kzff74q4494rz69k0j7w4q")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-seccomp-containers-golang-0.6.0 + (package + (name "go-github-com-seccomp-containers-golang") + (version "0.6.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/seccomp/containers-golang") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0clrwdnmr131a65h66br57bsnr17i1s3kq9cc7ljrdaym57y6cfz")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/seccomp/containers-golang")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20200720211630-cb9d2d5c5666" + ,go-golang-org-x-sys-0.0.0-20200720211630-cb9d2d5c5666) + ("go-github-com-xeipuuv-gojsonschema-1.2.0" + ,go-github-com-xeipuuv-gojsonschema-1.2.0) + ("go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2" + ,go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2) + ("go-github-com-sirupsen-logrus-1.6.0" + ,go-github-com-sirupsen-logrus-1.6.0) + ("go-github-com-seccomp-libseccomp-golang-0.9.1" + ,go-github-com-seccomp-libseccomp-golang-0.9.1) + ("go-github-com-opencontainers-selinux-1.6.0" + ,go-github-com-opencontainers-selinux-1.6.0) + ("go-github-com-opencontainers-runtime-tools-0.9.0" + ,go-github-com-opencontainers-runtime-tools-0.9.0) + ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200710190001-3e4195d92445" + ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200710190001-3e4195d92445) + ("go-github-com-hashicorp-go-multierror-1.1.0" + ,go-github-com-hashicorp-go-multierror-1.1.0) + ("go-github-com-blang-semver-3.5.1+incompatible" + ,go-github-com-blang-semver-3.5.1+incompatible))) + (home-page "https://github.com/seccomp/containers-golang") + (synopsis "containers-golang") + (description + "@code{containers-golang} is a set of Go libraries used by container runtimes to generate and load seccomp mappings into the kernel.") + (license license:asl2.0))) + +(define-public go-github-com-seccomp-libseccomp-golang-0.9.1 + (package + (name "go-github-com-seccomp-libseccomp-golang") + (version "0.9.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/seccomp/libseccomp-golang") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "022c8prvxz0shrifams7lq4xidvkcqg9xi87wjjcpmbikqi72cna")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/seccomp/libseccomp-golang")) + (home-page "https://github.com/seccomp/libseccomp-golang") + (synopsis #f) + (description + "Package seccomp provides bindings for libseccomp, a library wrapping the Linux +seccomp syscall. Seccomp enables an application to restrict system call use +for itself and its children. +") + (license license:bsd-2))) + +(define-public go-github-com-russross-blackfriday-v2-2.0.1 + (package + (name "go-github-com-russross-blackfriday-v2") + (version "2.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/russross/blackfriday") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0nlz7isdd4rgnwzs68499hlwicxz34j2k2a0b8jy0y7ycd2bcr5j")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/russross/blackfriday/v2")) + (home-page "https://github.com/russross/blackfriday") + (synopsis "Blackfriday") + (description "Package blackfriday is a markdown processor. +") + (license license:bsd-2))) + +(define-public go-github-com-shurcool-sanitized-anchor-name-1.0.0 + (package + (name "go-github-com-shurcool-sanitized-anchor-name") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/shurcooL/sanitized_anchor_name") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1gv9p2nr46z80dnfjsklc6zxbgk96349sdsxjz05f3z6wb6m5l8f")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/shurcooL/sanitized_anchor_name")) + (home-page "https://github.com/shurcooL/sanitized_anchor_name") + (synopsis "sanitized_anchor_name") + (description + "Package sanitized_anchor_name provides a func to create sanitized anchor names. +") + (license license:expat))) + +(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0 + (package + (name "go-github-com-cpuguy83-go-md2man-v2") + (version "2.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cpuguy83/go-md2man") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) + (propagated-inputs + `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" + ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) + ("go-github-com-russross-blackfriday-v2-2.0.1" + ,go-github-com-russross-blackfriday-v2-2.0.1) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0))) + (home-page "https://github.com/cpuguy83/go-md2man") + (synopsis "go-md2man") + (description "Converts markdown into roff (man pages).") + (license license:expat))) + +(define-public go-github-com-inconshreveable-mousetrap-1.0.0 + (package + (name "go-github-com-inconshreveable-mousetrap") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/inconshreveable/mousetrap") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1mn0kg48xkd74brf48qf5hzp0bc6g8cf5a77w895rl3qnlpfw152")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/inconshreveable/mousetrap")) + (home-page "https://github.com/inconshreveable/mousetrap") + (synopsis "mousetrap") + (description "mousetrap is a tiny library that answers a single question.") + (license license:asl2.0))) + +(define-public go-github-com-hashicorp-go-cleanhttp-0.5.1 + (package + (name "go-github-com-hashicorp-go-cleanhttp") + (version "0.5.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/go-cleanhttp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "07kx3fhryqmaw3czacmm11qwx63js2q8cfq967vphk7xg9q377kk")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/go-cleanhttp")) + (home-page "https://github.com/hashicorp/go-cleanhttp") + (synopsis "cleanhttp") + (description + "Package cleanhttp offers convenience utilities for acquiring \"clean\" +http.Transport and http.Client structs. +") + (license license:mpl2.0))) + +(define-public go-github-com-mitchellh-go-homedir-1.0.0 + (package + (name "go-github-com-mitchellh-go-homedir") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mitchellh/go-homedir") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0f0z0aa4wivk4z1y503dmnw0k0g0g403dly8i4q263gfshs82sbq")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mitchellh/go-homedir")) + (home-page "https://github.com/mitchellh/go-homedir") + (synopsis "go-homedir") + (description + "This is a Go library for detecting the user's home directory without +the use of cgo, so the library can be used in cross-compilation environments.") + (license license:expat))) + +(define-public go-github-com-hashicorp-go-rootcerts-1.0.0 + (package + (name "go-github-com-hashicorp-go-rootcerts") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/go-rootcerts") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wply5zhj1rcybr932zbwm1i18q5wr7kgkhnz6bw6mk1n9yr8lfj")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/go-rootcerts")) + (propagated-inputs + `(("go-github-com-mitchellh-go-homedir-1.0.0" + ,go-github-com-mitchellh-go-homedir-1.0.0))) + (home-page "https://github.com/hashicorp/go-rootcerts") + (synopsis "rootcerts") + (description + "Package rootcerts contains functions to aid in loading CA certificates for +TLS connections. +") + (license license:mpl2.0))) + +(define-public go-github-com-armon-circbuf-0.0.0-20150827004946-bbbad097214e + (package + (name "go-github-com-armon-circbuf") + (version "0.0.0-20150827004946-bbbad097214e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/armon/circbuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1idpr0lzb2px2p3wgfq2276yl7jpaz43df6n91kf790404s4zmk3")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/armon/circbuf")) + (home-page "https://github.com/armon/circbuf") + (synopsis "circbuf") + (description + "This repository provides the @code{circbuf} package. This provides a @code{Buffer} object +which is a circular (or ring) buffer. It has a fixed size, but can be written +to infinitely. Only the last @code{size} bytes are ever retained. The buffer implements +the @code{io.Writer} interface.") + (license license:expat))) + +(define-public go-github-com-hashicorp-go-syslog-1.0.0 + (package + (name "go-github-com-hashicorp-go-syslog") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/go-syslog") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "09vccqggz212cg0jir6vv708d6mx0f9w5bxrcdah3h6chgmal6v1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/go-syslog")) + (home-page "https://github.com/hashicorp/go-syslog") + (synopsis "go-syslog") + (description + "This repository provides a very simple @code{gsyslog} package. The point of this +package is to allow safe importing of syslog without introducing cross-compilation +issues. The stdlib @code{log/syslog} cannot be imported on Windows systems, and without +conditional compilation this adds complications.") + (license license:expat))) + +(define-public go-github-com-hashicorp-go-uuid-1.0.1 + (package + (name "go-github-com-hashicorp-go-uuid") + (version "1.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/go-uuid") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0jvb88m0rq41bwgirsadgw7mnayl27av3gd2vqa3xvxp3fy0hp5k")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/go-uuid")) + (home-page "https://github.com/hashicorp/go-uuid") + (synopsis "uuid") + (description + "Generates UUID-format strings using high quality, bytes. It is @strong{not} intended to be RFC compliant, merely to use a well-understood string representation of a 128-bit value. It can also parse UUID-format strings into their component bytes.") + (license license:mpl2.0))) + +(define-public go-github-com-hashicorp-logutils-1.0.0 + (package + (name "go-github-com-hashicorp-logutils") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/logutils") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "076wf4sh5p3f953ndqk1cc0x7jhmlqrxak9953rz79rcdw77rjvv")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/logutils")) + (home-page "https://github.com/hashicorp/logutils") + (synopsis "logutils") + (description + "Package logutils augments the standard log package with levels. +") + (license license:mpl2.0))) + +(define-public go-github-com-hashicorp-go-net-0.0.1 + (package + (name "go-github-com-hashicorp-go-net") + (version "0.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/go.net") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "06arwi95xp5rxyz7rndvhc3wlwg0jn9a5z6djf3yyg5h9zfab9i4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/go.net")) + (home-page "https://github.com/hashicorp/go.net") + (synopsis #f) + (description #f) + (license license:bsd-3))) + +(define-public go-github-com-hashicorp-mdns-1.0.0 + (package + (name "go-github-com-hashicorp-mdns") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/mdns") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0qr4l91hhi97s8a1isnrw3s4q8pjzacqiks870vnwh15v7ig3axd")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/mdns")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20181026203630-95b1ffbd15a5" + ,go-golang-org-x-sys-0.0.0-20181026203630-95b1ffbd15a5) + ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" + ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) + ("go-golang-org-x-net-0.0.0-20181023162649-9b4f9f5ad519" + ,go-golang-org-x-net-0.0.0-20181023162649-9b4f9f5ad519) + ("go-golang-org-x-crypto-0.0.0-20181029021203-45a5f77698d3" + ,go-golang-org-x-crypto-0.0.0-20181029021203-45a5f77698d3) + ("go-github-com-miekg-dns-1.0.14" ,go-github-com-miekg-dns-1.0.14) + ("go-github-com-hashicorp-go-net-0.0.1" + ,go-github-com-hashicorp-go-net-0.0.1))) + (home-page "https://github.com/hashicorp/mdns") + (synopsis "mdns") + (description + "Simple mDNS client/server library in Golang. mDNS or Multicast DNS can be +used to discover services on the local network without the use of an authoritative +DNS server. This enables peer-to-peer discovery. It is important to note that many +networks restrict the use of multicasting, which prevents mDNS from functioning. +Notably, multicast cannot be used in any sort of cloud, or shared infrastructure +environment. However it works well in most office, home, or private infrastructure +environments.") + (license license:expat))) + +(define-public go-github-com-armon-go-metrics-0.0.0-20180917152333-f0300d1749da + (package + (name "go-github-com-armon-go-metrics") + (version "0.0.0-20180917152333-f0300d1749da") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/armon/go-metrics") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "13l7c35ps0r27vxfil2w0xhhc7w5rh00awvlmn4cz0a937b9ffpv")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/armon/go-metrics")) + (home-page "https://github.com/armon/go-metrics") + (synopsis "go-metrics") + (description + "This library provides a @code{metrics} package which can be used to instrument code, +expose application metrics, and profile runtime performance in a flexible manner.") + (license license:expat))) + +(define-public go-github-com-hashicorp-go-uuid-1.0.0 + (package + (name "go-github-com-hashicorp-go-uuid") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/go-uuid") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1jflywlani7583qm4ysph40hsgx3n66n5zr2k84i057fmwa1ypfy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/go-uuid")) + (home-page "https://github.com/hashicorp/go-uuid") + (synopsis "uuid") + (description + "Generates UUID-format strings using high quality, bytes. It is @strong{not} intended to be RFC compliant, merely to use a well-understood string representation of a 128-bit value. It can also parse UUID-format strings into their component bytes.") + (license license:mpl2.0))) + +(define-public go-github-com-hashicorp-go-immutable-radix-1.0.0 + (package + (name "go-github-com-hashicorp-go-immutable-radix") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/go-immutable-radix") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1v3nmsnk1s8bzpclrhirz7iq0g5xxbw9q5gvrg9ss6w9crs72qr6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/go-immutable-radix")) + (propagated-inputs + `(("go-github-com-hashicorp-golang-lru-0.5.0" + ,go-github-com-hashicorp-golang-lru-0.5.0) + ("go-github-com-hashicorp-go-uuid-1.0.0" + ,go-github-com-hashicorp-go-uuid-1.0.0))) + (home-page "https://github.com/hashicorp/go-immutable-radix") + (synopsis "go-immutable-radix") + (description + "This package provides the @code{iradix} package that implements an immutable @url{http://en.wikipedia.org/wiki/Radix_tree,radix tree}. +The package only provides a single @code{Tree} implementation, optimized for sparse nodes.") + (license license:mpl2.0))) + +(define-public go-github-com-hashicorp-go-msgpack-0.5.3 + (package + (name "go-github-com-hashicorp-go-msgpack") + (version "0.5.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/go-msgpack") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "00jv0ajqd58pkb2yyhlrjp0rv1mvb1ijx3yqjyikcmzvk9jb4h5m")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/go-msgpack")) + (home-page "https://github.com/hashicorp/go-msgpack") + (synopsis "go-codec") + (description "This repository contains the @code{go-codec} library.") + (license license:expat))) + +(define-public go-github-com-hashicorp-go-sockaddr-1.0.0 + (package + (name "go-github-com-hashicorp-go-sockaddr") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/go-sockaddr") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1yn1xq8ysn0lszmkygz3a9lgpswbz1p91jv7q8l20s4749a22xgi")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/go-sockaddr")) + (home-page "https://github.com/hashicorp/go-sockaddr") + (synopsis "go-sockaddr") + (description + "Package sockaddr is a Go implementation of the UNIX socket family data types and +related helper functions. +") + (license license:mpl2.0))) + +(define-public go-github-com-miekg-dns-1.0.14 + (package + (name "go-github-com-miekg-dns") + (version "1.0.14") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/miekg/dns") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1qgli6yp59bv6vc6zag84cwxmcxgnyxm1q2f301yyijk3wy5b2ak")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/miekg/dns")) + (home-page "https://github.com/miekg/dns") + (synopsis "Alternative (more granular) approach to a DNS library") + (description + "Package dns implements a full featured interface to the Domain Name System. +Both server- and client-side programming is supported. The package allows +complete control over what is sent out to the DNS. The API follows the +less-is-more principle, by presenting a small, clean interface. +") + (license license:bsd-3))) + +(define-public go-github-com-sean--seed-0.0.0-20170313163322-e2103e2c3529 + (package + (name "go-github-com-sean--seed") + (version "0.0.0-20170313163322-e2103e2c3529") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sean-/seed") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0glir8jxi1w7aga2jwdb63pp1h8q4whknili7xixsqzwyy716125")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/sean-/seed")) + (home-page "https://github.com/sean-/seed") + (synopsis "- Quickly Seed Go's Random Number Generator") + (description + "Boiler-plate to securely @url{https://en.wikipedia.org/wiki/Random_seed,seed} Go's +random number generator (if possible). This library isn't anything fancy, it's +just a canonical way of seeding Go's random number generator. Cribbed from +@url{https://github.com/hashicorp/nomad/commit/f89a993ec6b91636a3384dd568898245fbc273a1,(code Nomad)} +before it was moved into +@url{https://github.com/hashicorp/consul/commit/d695bcaae6e31ee307c11fdf55bb0bf46ea9fcf4,(code Consul)} +and made into a helper function, and now further modularized to be a super +lightweight and reusable library.") + (license #f))) + +(define-public go-golang-org-x-crypto-0.0.0-20181029021203-45a5f77698d3 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20181029021203-45a5f77698d3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0636jjj89wkzqchajwwzgcn4aafc334p70nawh9jzavg2mkx0ch4")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20181023162649-9b4f9f5ad519 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20181023162649-9b4f9f5ad519") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "06hvxy113h76f31gv1mq6vdr6xja1zv0fdig686l2b4y2b6swych")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20181026203630-95b1ffbd15a5 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20181026203630-95b1ffbd15a5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "06c3lf93wzf5kkfmzmgn75x4c0a7159vrwjrqh6zh9zxzqq5whpq")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-hashicorp-memberlist-0.1.3 + (package + (name "go-github-com-hashicorp-memberlist") + (version "0.1.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/memberlist") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0k1spq7dagvqj3baqw2dhxx1zxrb02y6m3apzr3a7gyirii890g3")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/memberlist")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20181026203630-95b1ffbd15a5" + ,go-golang-org-x-sys-0.0.0-20181026203630-95b1ffbd15a5) + ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" + ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) + ("go-golang-org-x-net-0.0.0-20181023162649-9b4f9f5ad519" + ,go-golang-org-x-net-0.0.0-20181023162649-9b4f9f5ad519) + ("go-golang-org-x-crypto-0.0.0-20181029021203-45a5f77698d3" + ,go-golang-org-x-crypto-0.0.0-20181029021203-45a5f77698d3) + ("go-github-com-stretchr-testify-1.2.2" + ,go-github-com-stretchr-testify-1.2.2) + ("go-github-com-sean--seed-0.0.0-20170313163322-e2103e2c3529" + ,go-github-com-sean--seed-0.0.0-20170313163322-e2103e2c3529) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-pascaldekloe-goe-0.0.0-20180627143212-57f6aae5913c" + ,go-github-com-pascaldekloe-goe-0.0.0-20180627143212-57f6aae5913c) + ("go-github-com-miekg-dns-1.0.14" ,go-github-com-miekg-dns-1.0.14) + ("go-github-com-hashicorp-go-sockaddr-1.0.0" + ,go-github-com-hashicorp-go-sockaddr-1.0.0) + ("go-github-com-hashicorp-go-multierror-1.0.0" + ,go-github-com-hashicorp-go-multierror-1.0.0) + ("go-github-com-hashicorp-go-msgpack-0.5.3" + ,go-github-com-hashicorp-go-msgpack-0.5.3) + ("go-github-com-hashicorp-go-immutable-radix-1.0.0" + ,go-github-com-hashicorp-go-immutable-radix-1.0.0) + ("go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c" + ,go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1) + ("go-github-com-armon-go-metrics-0.0.0-20180917152333-f0300d1749da" + ,go-github-com-armon-go-metrics-0.0.0-20180917152333-f0300d1749da))) + (home-page "https://github.com/hashicorp/memberlist") + (synopsis "memberlist") + (description + "memberlist is a library that manages cluster +membership and member failure detection using a gossip based protocol. +") + (license license:mpl2.0))) + +(define-public go-github-com-armon-go-radix-0.0.0-20180808171621-7fddfc383310 + (package + (name "go-github-com-armon-go-radix") + (version "0.0.0-20180808171621-7fddfc383310") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/armon/go-radix") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0y8chspn14n9xpsfb9gxnnf819rfpriaz64v81p7873a42kkhxb4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/armon/go-radix")) + (home-page "https://github.com/armon/go-radix") + (synopsis "go-radix") + (description + "This package provides the @code{radix} package that implements a @url{http://en.wikipedia.org/wiki/Radix_tree,radix tree}. +The package only provides a single @code{Tree} implementation, optimized for sparse nodes.") + (license license:expat))) + +(define-public go-github-com-bgentry-speakeasy-0.1.0 + (package + (name "go-github-com-bgentry-speakeasy") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/bgentry/speakeasy") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "02dfrj0wyphd3db9zn2mixqxwiz1ivnyc5xc7gkz58l5l27nzp8s")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/bgentry/speakeasy")) + (home-page "https://github.com/bgentry/speakeasy") + (synopsis "Speakeasy") + (description + "This package provides cross-platform Go (#golang) helpers for taking user input +from the terminal while not echoing the input back (similar to @code{getpasswd}). The +package uses syscalls to avoid any dependence on cgo, and is therefore +compatible with cross-compiling.") + (license license:expat))) + +(define-public go-github-com-fatih-color-1.7.0 + (package + (name "go-github-com-fatih-color") + (version "1.7.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/fatih/color") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0v8msvg38r8d1iiq2i5r4xyfx0invhc941kjrsg5gzwvagv55inv")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/fatih/color")) + (home-page "https://github.com/fatih/color") + (synopsis "color") + (description + "Package color is an ANSI color package to output colorized or SGR defined +output to the standard output. The API can be used in several way, pick one +that suits you. +") + (license license:expat))) + +(define-public go-github-com-hashicorp-errwrap-1.0.0 + (package + (name "go-github-com-hashicorp-errwrap") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/errwrap") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0slfb6w3b61xz04r32bi0a1bygc82rjzhqkxj2si2074wynqnr1c")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/errwrap")) + (home-page "https://github.com/hashicorp/errwrap") + (synopsis "errwrap") + (description + "Package errwrap implements methods to formalize error wrapping in Go. +") + (license license:mpl2.0))) + +(define-public go-github-com-hashicorp-go-multierror-1.0.0 + (package + (name "go-github-com-hashicorp-go-multierror") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/go-multierror") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "00nyn8llqzbfm8aflr9kwsvpzi4kv8v45c141v88xskxp5xf6z49")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/go-multierror")) + (propagated-inputs + `(("go-github-com-hashicorp-errwrap-1.0.0" + ,go-github-com-hashicorp-errwrap-1.0.0))) + (home-page "https://github.com/hashicorp/go-multierror") + (synopsis "go-multierror") + (description + "@code{go-multierror} is a package for Go that provides a mechanism for +representing a list of @code{error} values as a single @code{error}.") + (license license:mpl2.0))) + +(define-public go-github-com-mattn-go-colorable-0.0.9 + (package + (name "go-github-com-mattn-go-colorable") + (version "0.0.9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mattn/go-colorable") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1nwjmsppsjicr7anq8na6md7b1z84l9ppnlr045hhxjvbkqwalvx")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mattn/go-colorable")) + (home-page "https://github.com/mattn/go-colorable") + (synopsis "go-colorable") + (description "Colorable writer for windows.") + (license license:expat))) + +(define-public go-github-com-mattn-go-isatty-0.0.3 + (package + (name "go-github-com-mattn-go-isatty") + (version "0.0.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mattn/go-isatty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "06w45aqz2a6yrk25axbly2k5wmsccv8cspb94bfmz4izvw8h927n")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mattn/go-isatty")) + (home-page "https://github.com/mattn/go-isatty") + (synopsis "go-isatty") + (description "Package isatty implements interface to isatty +") + (license license:expat))) + +(define-public go-github-com-posener-complete-1.1.1 + (package + (name "go-github-com-posener-complete") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/posener/complete") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1nbdiybjizbaxbf5q0xwbq0cjqw4bl6jggvsjzrpif0w86fcjda2")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/posener/complete")) + (home-page "https://github.com/posener/complete") + (synopsis "complete") + (description + "Package complete provides a tool for bash writing bash completion in go, and bash completion for the go command line. +") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20180823144017-11551d06cbcc + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20180823144017-11551d06cbcc") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0j34525b9smcyjqmxvvqgcfn87kkx3b2izidmjp2cmhjxzjrgpwm")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-mitchellh-cli-1.0.0 + (package + (name "go-github-com-mitchellh-cli") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mitchellh/cli") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1i9kmr7rcf10d2hji8h4247hmc0nbairv7a0q51393aw2h1bnwg2")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mitchellh/cli")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20180823144017-11551d06cbcc" + ,go-golang-org-x-sys-0.0.0-20180823144017-11551d06cbcc) + ("go-github-com-posener-complete-1.1.1" + ,go-github-com-posener-complete-1.1.1) + ("go-github-com-mattn-go-isatty-0.0.3" + ,go-github-com-mattn-go-isatty-0.0.3) + ("go-github-com-mattn-go-colorable-0.0.9" + ,go-github-com-mattn-go-colorable-0.0.9) + ("go-github-com-hashicorp-go-multierror-1.0.0" + ,go-github-com-hashicorp-go-multierror-1.0.0) + ("go-github-com-fatih-color-1.7.0" ,go-github-com-fatih-color-1.7.0) + ("go-github-com-bgentry-speakeasy-0.1.0" + ,go-github-com-bgentry-speakeasy-0.1.0) + ("go-github-com-armon-go-radix-0.0.0-20180808171621-7fddfc383310" + ,go-github-com-armon-go-radix-0.0.0-20180808171621-7fddfc383310))) + (home-page "https://github.com/mitchellh/cli") + (synopsis "Go CLI Library") + (description + "cli is a library for implementing powerful command-line interfaces in Go. +cli is the library that powers the CLI for +@url{https://github.com/mitchellh/packer,Packer}, +@url{https://github.com/hashicorp/serf,Serf}, +@url{https://github.com/hashicorp/consul,Consul}, +@url{https://github.com/hashicorp/vault,Vault}, +@url{https://github.com/hashicorp/terraform,Terraform}, and +@url{https://github.com/hashicorp/nomad,Nomad}.") + (license license:mpl2.0))) + +(define-public go-github-com-mitchellh-gox-0.4.0 + (package + (name "go-github-com-mitchellh-gox") + (version "0.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mitchellh/gox") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1q4fdkw904mrmh1q5z8pfd3r0gcn5dm776kldqawddy93iiwnp8r")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mitchellh/gox")) + (home-page "https://github.com/mitchellh/gox") + (synopsis "Gox - Simple Go Cross Compilation") + (description + "Gox is a simple, no-frills tool for Go cross compilation that behaves a +lot like standard @code{go build}. Gox will parallelize builds for multiple +platforms. Gox will also build the cross-compilation toolchain for you.") + (license license:mpl2.0))) + +(define-public go-github-com-mitchellh-iochan-1.0.0 + (package + (name "go-github-com-mitchellh-iochan") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mitchellh/iochan") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "058n9bbf536f2nw3pbs7pysrg9cqvgkb28z2zf5wjyrzrknyk53g")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mitchellh/iochan")) + (home-page "https://github.com/mitchellh/iochan") + (synopsis "iochan") + (description + "iochan is a Go library for treating @code{io} readers and writers like channels. +This is useful when sometimes you wish to use @code{io.Reader} and such in @code{select} +statements.") + (license license:expat))) + +(define-public go-github-com-mitchellh-mapstructure-0.0.0-20160808181253-ca63d7c062ee + (package + (name "go-github-com-mitchellh-mapstructure") + (version "0.0.0-20160808181253-ca63d7c062ee") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mitchellh/mapstructure") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1yjwhgi57l5fxlmpdchipdd4jasdn1sa8ccl2f2486v06rv6z7gr")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mitchellh/mapstructure")) + (home-page "https://github.com/mitchellh/mapstructure") + (synopsis "mapstructure") + (description + "Package mapstructure exposes functionality to convert one arbitrary +Go type into another, typically to convert a map[string]interface{} +into a native Go structure. +") + (license license:expat))) + +(define-public go-github-com-ryanuber-columnize-0.0.0-20160712163229-9b3edd62028f + (package + (name "go-github-com-ryanuber-columnize") + (version "0.0.0-20160712163229-9b3edd62028f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/ryanuber/columnize") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ya1idkbb0a9fjlhkcnh5a9yvpwzwfmbyg7d56lpplwr9rqi1da4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/ryanuber/columnize")) + (home-page "https://github.com/ryanuber/columnize") + (synopsis "Columnize") + (description "Easy column-formatted output for golang") + (license license:expat))) + +(define-public go-golang-org-x-net-0.0.0-20181201002055-351d144fa1fc + (package + (name "go-golang-org-x-net") + (version "0.0.0-20181201002055-351d144fa1fc") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1c5x25qjyz83y92bq0lll5kmznyi3m02wd4c54scgf0866gy938k")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-github-com-hashicorp-serf-0.8.2 + (package + (name "go-github-com-hashicorp-serf") + (version "0.8.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/serf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0nrslghvdjhaczr2xp9mn8xgcx1dxl4jgpbk0l61ssmxahpx4iyc")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/serf")) + (propagated-inputs + `(("go-golang-org-x-net-0.0.0-20181201002055-351d144fa1fc" + ,go-golang-org-x-net-0.0.0-20181201002055-351d144fa1fc) + ("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0) + ("go-github-com-ryanuber-columnize-0.0.0-20160712163229-9b3edd62028f" + ,go-github-com-ryanuber-columnize-0.0.0-20160712163229-9b3edd62028f) + ("go-github-com-mitchellh-mapstructure-0.0.0-20160808181253-ca63d7c062ee" + ,go-github-com-mitchellh-mapstructure-0.0.0-20160808181253-ca63d7c062ee) + ("go-github-com-mitchellh-iochan-1.0.0" + ,go-github-com-mitchellh-iochan-1.0.0) + ("go-github-com-mitchellh-gox-0.4.0" + ,go-github-com-mitchellh-gox-0.4.0) + ("go-github-com-mitchellh-cli-1.0.0" + ,go-github-com-mitchellh-cli-1.0.0) + ("go-github-com-hashicorp-memberlist-0.1.3" + ,go-github-com-hashicorp-memberlist-0.1.3) + ("go-github-com-hashicorp-mdns-1.0.0" + ,go-github-com-hashicorp-mdns-1.0.0) + ("go-github-com-hashicorp-logutils-1.0.0" + ,go-github-com-hashicorp-logutils-1.0.0) + ("go-github-com-hashicorp-go-uuid-1.0.1" + ,go-github-com-hashicorp-go-uuid-1.0.1) + ("go-github-com-hashicorp-go-syslog-1.0.0" + ,go-github-com-hashicorp-go-syslog-1.0.0) + ("go-github-com-hashicorp-go-msgpack-0.5.3" + ,go-github-com-hashicorp-go-msgpack-0.5.3) + ("go-github-com-armon-go-metrics-0.0.0-20180917152333-f0300d1749da" + ,go-github-com-armon-go-metrics-0.0.0-20180917152333-f0300d1749da) + ("go-github-com-armon-circbuf-0.0.0-20150827004946-bbbad097214e" + ,go-github-com-armon-circbuf-0.0.0-20150827004946-bbbad097214e))) + (home-page "https://github.com/hashicorp/serf") + (synopsis "Serf") + (description + "Serf is a decentralized solution for service discovery and orchestration +that is lightweight, highly available, and fault tolerant.") + (license license:mpl2.0))) + +(define-public go-github-com-mitchellh-mapstructure-1.1.2 + (package + (name "go-github-com-mitchellh-mapstructure") + (version "1.1.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mitchellh/mapstructure") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03bpv28jz9zhn4947saqwi328ydj7f6g6pf1m2d4m5zdh5jlfkrr")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mitchellh/mapstructure")) + (home-page "https://github.com/mitchellh/mapstructure") + (synopsis "mapstructure") + (description + "Package mapstructure exposes functionality to convert one arbitrary +Go type into another, typically to convert a map[string]interface{} +into a native Go structure. +") + (license license:expat))) + +(define-public go-github-com-pascaldekloe-goe-0.0.0-20180627143212-57f6aae5913c + (package + (name "go-github-com-pascaldekloe-goe") + (version "0.0.0-20180627143212-57f6aae5913c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pascaldekloe/goe") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1dqd3mfb4z2vmv6pg6fhgvfc53vhndk24wcl9lj1rz02n6m279fq")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pascaldekloe/goe")) + (home-page "https://github.com/pascaldekloe/goe") + (synopsis "Go Enterprise") + (description + "Common enterprise features for the Go programming language (golang).") + (license license:cc0))) + +(define-public go-github-com-stretchr-testify-1.3.0 + (package + (name "go-github-com-stretchr-testify") + (version "1.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wjchp2c8xbgcbbq32w3kvblk6q6yn533g78nxl6iskq6y95lxsy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (propagated-inputs + `(("go-github-com-stretchr-objx-0.1.0" + ,go-github-com-stretchr-objx-0.1.0) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.0" + ,go-github-com-davecgh-go-spew-1.1.0))) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +") + (license license:expat))) + +(define-public go-github-com-hashicorp-consul-api-1.1.0 + (package + (name "go-github-com-hashicorp-consul-api") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/consul") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0xm3gl8i7pgsbsc2397bwh9hp2dwnk4cmw5y05acqn3zpyp84sbv")))) + (build-system go-build-system) + (arguments + '(#:import-path + "github.com/hashicorp/consul/api" + #:unpack-path + "github.com/hashicorp/consul")) + (propagated-inputs + `(("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0) + ("go-github-com-pascaldekloe-goe-0.0.0-20180627143212-57f6aae5913c" + ,go-github-com-pascaldekloe-goe-0.0.0-20180627143212-57f6aae5913c) + ("go-github-com-mitchellh-mapstructure-1.1.2" + ,go-github-com-mitchellh-mapstructure-1.1.2) + ("go-github-com-hashicorp-serf-0.8.2" + ,go-github-com-hashicorp-serf-0.8.2) + ("go-github-com-hashicorp-go-uuid-1.0.1" + ,go-github-com-hashicorp-go-uuid-1.0.1) + ("go-github-com-hashicorp-go-rootcerts-1.0.0" + ,go-github-com-hashicorp-go-rootcerts-1.0.0) + ("go-github-com-hashicorp-go-cleanhttp-0.5.1" + ,go-github-com-hashicorp-go-cleanhttp-0.5.1))) + (home-page "https://github.com/hashicorp/consul") + (synopsis "Consul API client") + (description + "This package provides the @code{api} package which attempts to +provide programmatic access to the full Consul API.") + (license license:mpl2.0))) + +(define-public go-github-com-golang-mock-1.5.0 + (package + (name "go-github-com-golang-mock") + (version "1.5.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/mock") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12l7p08pwwk3xn70w7rlm28nz6jf4szlzgjxjfmbssyirxxxy8v1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/mock")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" + ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) + ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0))) + (home-page "https://github.com/golang/mock") + (synopsis "gomock") + (description + "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It +integrates well with Go's built-in @code{testing} package, but can be used in other +contexts too.") + (license license:asl2.0))) + +(define-public go-github-com-google-pprof-0.0.0-20210226084205-cbba55b83ad5 + (package + (name "go-github-com-google-pprof") + (version "0.0.0-20210226084205-cbba55b83ad5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/pprof") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0drr44nqq0s3jillcrl8qa7sklxybs083lvashdh2ad62hrs31l7")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/pprof")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" + ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) + ("go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639" + ,go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639) + ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" + ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) + ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" + ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) + ("go-github-com-chzyer-logex-1.1.10" + ,go-github-com-chzyer-logex-1.1.10))) + (home-page "https://github.com/google/pprof") + (synopsis "Introduction") + (description + "pprof is a tool for collection, manipulation and visualization +of performance profiles. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20210226172049-e18ecbb05110") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1vlq8mdscp7yfaa1lmyv03y5m4c2d67ydg2q1i6smkrxghn3zn3q")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) + ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" + ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) + ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" + ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-github-com-google-pprof-0.0.0-20210122040257-d980be63207e + (package + (name "go-github-com-google-pprof") + (version "0.0.0-20210122040257-d980be63207e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/pprof") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0vg5z6rp5kfd324w8j12hlx9zv049vxljpc6dyqkj2k9vzzzqkw8")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/pprof")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" + ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) + ("go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639" + ,go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639) + ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" + ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) + ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" + ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) + ("go-github-com-chzyer-logex-1.1.10" + ,go-github-com-chzyer-logex-1.1.10))) + (home-page "https://github.com/google/pprof") + (synopsis "Introduction") + (description + "pprof is a tool for collection, manipulation and visualization +of performance profiles. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-mod-0.4.1 + (package + (name "go-golang-org-x-mod") + (version "0.4.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/mod") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0q4p41223d1xh4jmw9vmywjfi0jzn56gbidrwv5x1bzmx2qmj01n")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/mod")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" + ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) + ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" + ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) + ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" + ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) + (home-page "https://golang.org/x/mod") + (synopsis "mod") + (description + "This repository holds packages for writing tools +that work directly with Go module mechanics. +That is, it is for direct manipulation of Go modules themselves.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20210119194325-5f4716e94777 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20210119194325-5f4716e94777") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1xh4hk0fhkzq096z9qbzqfswmmgg4kvb44qvazpandvlpwm4jds2")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) + ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" + ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) + ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" + ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-oauth2-0.0.0-20210218202405-ba52d332ba99 + (package + (name "go-golang-org-x-oauth2") + (version "0.0.0-20210218202405-ba52d332ba99") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/oauth2") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0fdm3fljk3k4xbpzaywccayrhgqdfl79vl18k4z1zw2pl654bqbg")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/oauth2")) + (propagated-inputs + `(("go-google-golang-org-appengine-1.6.6" + ,go-google-golang-org-appengine-1.6.6) + ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" + ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) + ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) + (home-page "https://golang.org/x/oauth2") + (synopsis "OAuth2 for Go") + (description + "Package oauth2 provides support for making +OAuth2 authorized and authenticated HTTP requests, +as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +It can additionally grant authorization with Bearer JWT. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20210220050731-9a76102bfb43 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20210220050731-9a76102bfb43") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "07qn19yla2w604p3dc8h1c75xj2pxc4fajvg0mf0d4c72d5qiss4")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-google-pprof-0.0.0-20201203190320-1bf35d6f28c2 + (package + (name "go-github-com-google-pprof") + (version "0.0.0-20201203190320-1bf35d6f28c2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/pprof") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "140n5hjk2faanrf6v5h1559g755rgavynz1r99s1n15bmgibysvp")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/pprof")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" + ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) + ("go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639" + ,go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639) + ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" + ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) + ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" + ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) + ("go-github-com-chzyer-logex-1.1.10" + ,go-github-com-chzyer-logex-1.1.10))) + (home-page "https://github.com/google/pprof") + (synopsis "Introduction") + (description + "pprof is a tool for collection, manipulation and visualization +of performance profiles. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-mod-0.4.0 + (package + (name "go-golang-org-x-mod") + (version "0.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/mod") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ri003765yxawq6s8jbkbiaijihwrg980c4qwqsaa5x0sq2psrg1")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/mod")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" + ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) + ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" + ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) + ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" + ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) + (home-page "https://golang.org/x/mod") + (synopsis "mod") + (description + "This repository holds packages for writing tools +that work directly with Go module mechanics. +That is, it is for direct manipulation of Go modules themselves.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20201209123823-ac852fbbde11 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20201209123823-ac852fbbde11") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1zmp2fxgf7792xx15qhzcsfs8k0qv7q3m6jlcj6qvdngfzyvna64")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) + ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" + ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) + ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" + ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20201208233053-a543418bbed2 + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20201208233053-a543418bbed2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0r87p89pm2h75yajsz0g2vvy2q3z9gknc0fmsdm5rh427f1qazfr")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" + ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) + ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" + ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) + ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" + ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) + ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) + ("go-github-com-yuin-goldmark-1.2.1" + ,go-github-com-yuin-goldmark-1.2.1))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-github-com-google-martian-v3-3.1.0 + (package + (name "go-github-com-google-martian-v3") + (version "3.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/martian") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1pr9akggfzj2vw11l7ry4sij0hqslpc3gwx4ynbzyvbjhvh64sbc")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/martian/v3")) + (propagated-inputs + `(("go-golang-org-x-net-0.0.0-20190628185345-da137c7871d7" + ,go-golang-org-x-net-0.0.0-20190628185345-da137c7871d7))) + (home-page "https://github.com/google/martian") + (synopsis "Martian Proxy") + (description + "Package martian provides an HTTP/1.1 proxy with an API for configurable +request and response modifiers. +") + (license license:asl2.0))) + +(define-public go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639 + (package + (name "go-github-com-ianlancetaylor-demangle") + (version "0.0.0-20200824232613-28f6c0f3b639") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/ianlancetaylor/demangle") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0rsq3622gd40f1x1l7caidsxrmzg1993ich2higwd94fqbxs1r83")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/ianlancetaylor/demangle")) + (home-page "https://github.com/ianlancetaylor/demangle") + (synopsis "github.com/ianlancetaylor/demangle") + (description + "Package demangle defines functions that demangle GCC/LLVM +C++ and Rust symbol names. +This package recognizes names that were mangled according to the C++ ABI +defined at @url{http://codesourcery.com/cxx-abi/,http://codesourcery.com/cxx-abi/} and the Rust ABI +defined at +@url{https://rust-lang.github.io/rfcs/2603-rust-symbol-name-mangling-v0.html,https://rust-lang.github.io/rfcs/2603-rust-symbol-name-mangling-v0.html} +") + (license license:bsd-3))) + +(define-public go-github-com-google-pprof-0.0.0-20201023163331-3e6fc7fc9c4c + (package + (name "go-github-com-google-pprof") + (version "0.0.0-20201023163331-3e6fc7fc9c4c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/pprof") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1xmy4579gx45lqsy1cgddnc7nmaqfpiwd2kc5dhf8i0wjjvf18hq")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/pprof")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" + ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) + ("go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639" + ,go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639) + ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" + ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) + ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" + ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) + ("go-github-com-chzyer-logex-1.1.10" + ,go-github-com-chzyer-logex-1.1.10))) + (home-page "https://github.com/google/pprof") + (synopsis "Introduction") + (description + "pprof is a tool for collection, manipulation and visualization +of performance profiles. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-net-0.0.0-20201031054903-ff519b6c9102 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20201031054903-ff519b6c9102") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "162ssgcc0kgj42ajaki0q3j5lwmixqqwkdqcmz41xg1k8wjm7riw")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) + ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" + ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) + ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" + ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-text-0.3.4 + (package + (name "go-golang-org-x-text") + (version "0.3.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "11jdvix83xcl5xnb039y4zrz4x5skzsps0w1jryp6wrar53cydvz")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/text")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" + ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) + (home-page "https://golang.org/x/text") + (synopsis "Go Text") + (description + "text is a repository of text-related packages related to internationalization +(i18n) and localization (l10n), such as character encodings, text +transformations, and locale-specific text handling. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20201110124207-079ba7bd75cd + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20201110124207-079ba7bd75cd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0g4d7cx480rbnpg16qqc4yycd50lpp2mi2qzvzr6hdny91v7sa05")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" + ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) + ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" + ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) + ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" + ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) + ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) + ("go-github-com-yuin-goldmark-1.2.1" + ,go-github-com-yuin-goldmark-1.2.1))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-github-com-google-go-cmp-0.5.2 + (package + (name "go-github-com-google-go-cmp") + (version "0.5.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0qchy411jm9q2l9mf7x3ry2ycaqp9xdhf2nx14qrpzcxfigv2705")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") + (license license:bsd-3))) + +(define-public go-golang-org-x-oauth2-0.0.0-20200902213428-5d25da1a8d43 + (package + (name "go-golang-org-x-oauth2") + (version "0.0.0-20200902213428-5d25da1a8d43") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/oauth2") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "14jx8sxshbvnx4fggn12mlmz000zcrd1a73n1455b1wgg1xfzq3n")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/oauth2")) + (propagated-inputs + `(("go-google-golang-org-appengine-1.6.6" + ,go-google-golang-org-appengine-1.6.6) + ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" + ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) + ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) + (home-page "https://golang.org/x/oauth2") + (synopsis "OAuth2 for Go") + (description + "Package oauth2 provides support for making +OAuth2 authorized and authenticated HTTP requests, +as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +It can additionally grant authorization with Bearer JWT. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20200905004654-be1d3432aa8f + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200905004654-be1d3432aa8f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1kd3szjsazhpgidv5xjv0s26fm4wvv2cr7j4zk8nblnqkic58as2")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20200904185747-39188db58858 + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20200904185747-39188db58858") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ydyylwqzjwijy4rdp2fmvnfh3s27896dx6g74r2wa6vbhisszvk")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" + ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) + ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" + ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) + ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" + ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) + ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) + ("go-github-com-yuin-goldmark-1.2.1" + ,go-github-com-yuin-goldmark-1.2.1))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-google-golang-org-genproto-0.0.0-20200904004341-0bd0a958aa1d + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20200904004341-0bd0a958aa1d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "01xp4ic4jvdv7n984cjgrgqbpbi9m4bj2xnfrs1s1zn1adx0jivs")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.24.0" + ,go-google-golang-org-protobuf-1.24.0) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-golang-protobuf-1.4.1" + ,go-github-com-golang-protobuf-1.4.1))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-google-golang-org-grpc-1.31.1 + (package + (name "go-google-golang-org-grpc") + (version "1.31.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18565vf9i2zc69znd9b8a2iz0kgv5cms0g0ppj93hnhri8rjqagk")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" + ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.3.3" + ,go-github-com-golang-protobuf-1.3.3) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-envoyproxy-go-control-plane-0.9.4" + ,go-github-com-envoyproxy-go-control-plane-0.9.4) + ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" + ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-google-golang-org-api-0.35.0 + (package + (name "go-google-golang-org-api") + (version "0.35.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-api-go-client") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0fgn21lmrlkw44sl0ivjicygwksibb1pclzp3zyh3ivn7ylvk2jd")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/api")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.31.1" ,go-google-golang-org-grpc-1.31.1) + ("go-google-golang-org-genproto-0.0.0-20200904004341-0bd0a958aa1d" + ,go-google-golang-org-genproto-0.0.0-20200904004341-0bd0a958aa1d) + ("go-google-golang-org-appengine-1.6.6" + ,go-google-golang-org-appengine-1.6.6) + ("go-golang-org-x-tools-0.0.0-20200904185747-39188db58858" + ,go-golang-org-x-tools-0.0.0-20200904185747-39188db58858) + ("go-golang-org-x-sys-0.0.0-20200905004654-be1d3432aa8f" + ,go-golang-org-x-sys-0.0.0-20200905004654-be1d3432aa8f) + ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" + ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) + ("go-golang-org-x-oauth2-0.0.0-20200902213428-5d25da1a8d43" + ,go-golang-org-x-oauth2-0.0.0-20200902213428-5d25da1a8d43) + ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" + ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) + ("go-go-opencensus-io-0.22.4" ,go-go-opencensus-io-0.22.4) + ("go-github-com-googleapis-gax-go-v2-2.0.5" + ,go-github-com-googleapis-gax-go-v2-2.0.5) + ("go-github-com-google-go-cmp-0.5.2" + ,go-github-com-google-go-cmp-0.5.2) + ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) + (home-page "https://google.golang.org/api") + (synopsis "Google APIs Client Library for Go") + (description + "Package api is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of +sub-packages. +") + (license license:bsd-3))) + +(define-public go-google-golang-org-genproto-0.0.0-20201109203340-2640f1f9cdfb + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20201109203340-2640f1f9cdfb") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "00mwybjbdpvmlkvmwsjvdb2z8lzzx2a340y4pf3bxqamalhdka0w")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.24.0" + ,go-google-golang-org-protobuf-1.24.0) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-golang-protobuf-1.4.1" + ,go-github-com-golang-protobuf-1.4.1))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-cloud-google-com-go-0.72.0 + (package + (name "go-cloud-google-com-go") + (version "0.72.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-cloud-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1x4gy466jrzab9l02dwd3lvy2dwy84j34zpjkm5xnxh45za6hpxn")))) + (build-system go-build-system) + (arguments '(#:import-path "cloud.google.com/go")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) + ("go-google-golang-org-genproto-0.0.0-20201109203340-2640f1f9cdfb" + ,go-google-golang-org-genproto-0.0.0-20201109203340-2640f1f9cdfb) + ("go-google-golang-org-api-0.35.0" ,go-google-golang-org-api-0.35.0) + ("go-golang-org-x-tools-0.0.0-20201110124207-079ba7bd75cd" + ,go-golang-org-x-tools-0.0.0-20201110124207-079ba7bd75cd) + ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) + ("go-golang-org-x-oauth2-0.0.0-20200902213428-5d25da1a8d43" + ,go-golang-org-x-oauth2-0.0.0-20200902213428-5d25da1a8d43) + ("go-golang-org-x-net-0.0.0-20201031054903-ff519b6c9102" + ,go-golang-org-x-net-0.0.0-20201031054903-ff519b6c9102) + ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" + ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) + ("go-go-opencensus-io-0.22.5" ,go-go-opencensus-io-0.22.5) + ("go-github-com-jstemmer-go-junit-report-0.9.1" + ,go-github-com-jstemmer-go-junit-report-0.9.1) + ("go-github-com-googleapis-gax-go-v2-2.0.5" + ,go-github-com-googleapis-gax-go-v2-2.0.5) + ("go-github-com-google-pprof-0.0.0-20201023163331-3e6fc7fc9c4c" + ,go-github-com-google-pprof-0.0.0-20201023163331-3e6fc7fc9c4c) + ("go-github-com-google-martian-v3-3.1.0" + ,go-github-com-google-martian-v3-3.1.0) + ("go-github-com-google-go-cmp-0.5.2" + ,go-github-com-google-go-cmp-0.5.2) + ("go-github-com-golang-protobuf-1.4.3" + ,go-github-com-golang-protobuf-1.4.3) + ("go-github-com-golang-mock-1.4.4" ,go-github-com-golang-mock-1.4.4) + ("go-cloud-google-com-go-storage-1.10.0" + ,go-cloud-google-com-go-storage-1.10.0))) + (home-page "https://cloud.google.com/go") + (synopsis "Google Cloud Client Libraries for Go") + (description + "Package cloud is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +of sub-packages. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-oauth2-0.0.0-20201109201403-9fd604954f58 + (package + (name "go-golang-org-x-oauth2") + (version "0.0.0-20201109201403-9fd604954f58") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/oauth2") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "06dj14f6jrgpqmf3v3z74zhcin3yj7yp8mzxljm3a3ihq984kz8v")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/oauth2")) + (propagated-inputs + `(("go-google-golang-org-appengine-1.6.6" + ,go-google-golang-org-appengine-1.6.6) + ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" + ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) + ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) + (home-page "https://golang.org/x/oauth2") + (synopsis "OAuth2 for Go") + (description + "Package oauth2 provides support for making +OAuth2 authorized and authenticated HTTP requests, +as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +It can additionally grant authorization with Bearer JWT. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20201201145000-ef89a241ccb3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0a8myxx2mvdr77a003gpy5jmdzbxbnrf5zppmpl4za4sspxlmwif")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20201201161351-ac6f37ff4c2a + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20201201161351-ac6f37ff4c2a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0akq0z86x51rh556fs7icjmmmgdyaa7rq7cmqlngrmvjb79wnwpl")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" + ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) + ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" + ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) + ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" + ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) + ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) + ("go-github-com-yuin-goldmark-1.2.1" + ,go-github-com-yuin-goldmark-1.2.1))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-google-golang-org-genproto-0.0.0-20201201144952-b05cb90ed32e + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20201201144952-b05cb90ed32e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1n9jlhnn5fg7a41ahdril7wgfli43kxplnpxbdbhrkknjra7xdjd")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.24.0" + ,go-google-golang-org-protobuf-1.24.0) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-golang-protobuf-1.4.1" + ,go-github-com-golang-protobuf-1.4.1))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-google-golang-org-api-0.36.0 + (package + (name "go-google-golang-org-api") + (version "0.36.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-api-go-client") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1x6wlavrqi2r6ss3h2kg94p2lfj0z019kc85zm1pajpf0k23fxp7")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/api")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) + ("go-google-golang-org-genproto-0.0.0-20201201144952-b05cb90ed32e" + ,go-google-golang-org-genproto-0.0.0-20201201144952-b05cb90ed32e) + ("go-google-golang-org-appengine-1.6.7" + ,go-google-golang-org-appengine-1.6.7) + ("go-golang-org-x-tools-0.0.0-20201201161351-ac6f37ff4c2a" + ,go-golang-org-x-tools-0.0.0-20201201161351-ac6f37ff4c2a) + ("go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3" + ,go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3) + ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" + ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) + ("go-golang-org-x-oauth2-0.0.0-20201109201403-9fd604954f58" + ,go-golang-org-x-oauth2-0.0.0-20201109201403-9fd604954f58) + ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" + ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) + ("go-go-opencensus-io-0.22.5" ,go-go-opencensus-io-0.22.5) + ("go-github-com-googleapis-gax-go-v2-2.0.5" + ,go-github-com-googleapis-gax-go-v2-2.0.5) + ("go-github-com-google-go-cmp-0.5.4" + ,go-github-com-google-go-cmp-0.5.4) + ("go-cloud-google-com-go-0.72.0" ,go-cloud-google-com-go-0.72.0))) + (home-page "https://google.golang.org/api") + (synopsis "Google APIs Client Library for Go") + (description + "Package api is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of +sub-packages. +") + (license license:bsd-3))) + +(define-public go-google-golang-org-genproto-0.0.0-20201210142538-e3217bee35cc + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20201210142538-e3217bee35cc") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1bzfa58dw7jmkrp46hikbsq1yyk2r29a1gn51sqlilbvf7lq96p9")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.24.0" + ,go-google-golang-org-protobuf-1.24.0) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-golang-protobuf-1.4.1" + ,go-github-com-golang-protobuf-1.4.1))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-cloud-google-com-go-0.74.0 + (package + (name "go-cloud-google-com-go") + (version "0.74.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-cloud-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "09j1qppf2gf14bn06hsyrj9jaxz9vlbs9d7yrxrdvh2234qsbggy")))) + (build-system go-build-system) + (arguments '(#:import-path "cloud.google.com/go")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.34.0" ,go-google-golang-org-grpc-1.34.0) + ("go-google-golang-org-genproto-0.0.0-20201210142538-e3217bee35cc" + ,go-google-golang-org-genproto-0.0.0-20201210142538-e3217bee35cc) + ("go-google-golang-org-api-0.36.0" ,go-google-golang-org-api-0.36.0) + ("go-golang-org-x-tools-0.0.0-20201208233053-a543418bbed2" + ,go-golang-org-x-tools-0.0.0-20201208233053-a543418bbed2) + ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) + ("go-golang-org-x-oauth2-0.0.0-20201208152858-08078c50e5b5" + ,go-golang-org-x-oauth2-0.0.0-20201208152858-08078c50e5b5) + ("go-golang-org-x-net-0.0.0-20201209123823-ac852fbbde11" + ,go-golang-org-x-net-0.0.0-20201209123823-ac852fbbde11) + ("go-golang-org-x-mod-0.4.0" ,go-golang-org-x-mod-0.4.0) + ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" + ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) + ("go-go-opencensus-io-0.22.5" ,go-go-opencensus-io-0.22.5) + ("go-github-com-jstemmer-go-junit-report-0.9.1" + ,go-github-com-jstemmer-go-junit-report-0.9.1) + ("go-github-com-googleapis-gax-go-v2-2.0.5" + ,go-github-com-googleapis-gax-go-v2-2.0.5) + ("go-github-com-google-pprof-0.0.0-20201203190320-1bf35d6f28c2" + ,go-github-com-google-pprof-0.0.0-20201203190320-1bf35d6f28c2) + ("go-github-com-google-martian-v3-3.1.0" + ,go-github-com-google-martian-v3-3.1.0) + ("go-github-com-google-go-cmp-0.5.4" + ,go-github-com-google-go-cmp-0.5.4) + ("go-github-com-golang-protobuf-1.4.3" + ,go-github-com-golang-protobuf-1.4.3) + ("go-github-com-golang-mock-1.4.4" ,go-github-com-golang-mock-1.4.4) + ("go-cloud-google-com-go-storage-1.10.0" + ,go-cloud-google-com-go-storage-1.10.0))) + (home-page "https://cloud.google.com/go") + (synopsis "Google Cloud Client Libraries for Go") + (description + "Package cloud is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +of sub-packages. +") + (license license:asl2.0))) + +(define-public go-github-com-google-go-cmp-0.5.4 + (package + (name "go-github-com-google-go-cmp") + (version "0.5.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ld9pwb6l22g75g1zpa691l7q9ki7pjgpcqhwgdfr3va1zisr5ci")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") + (license license:bsd-3))) + +(define-public go-go-opencensus-io-0.22.5 + (package + (name "go-go-opencensus-io") + (version "0.22.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/census-instrumentation/opencensus-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18s1d7bk28i8gbs6i587ccd31qp3f8gibgd14dpkzs05gyvlccy6")))) + (build-system go-build-system) + (arguments '(#:import-path "go.opencensus.io")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.20.1" ,go-google-golang-org-grpc-1.20.1) + ("go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb" + ,go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb) + ("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) + ("go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd" + ,go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd) + ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" + ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) + ("go-github-com-stretchr-testify-1.4.0" + ,go-github-com-stretchr-testify-1.4.0) + ("go-github-com-google-go-cmp-0.3.0" + ,go-github-com-google-go-cmp-0.3.0) + ("go-github-com-golang-protobuf-1.3.1" + ,go-github-com-golang-protobuf-1.3.1) + ("go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6" + ,go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6))) + (home-page "https://go.opencensus.io") + (synopsis "OpenCensus Libraries for Go") + (description "Package opencensus contains Go support for OpenCensus. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-oauth2-0.0.0-20201208152858-08078c50e5b5 + (package + (name "go-golang-org-x-oauth2") + (version "0.0.0-20201208152858-08078c50e5b5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/oauth2") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0zynwxw47nhwhs6n1c87c9np43lwl9m9z2w2cmdvjwhsisa93b75")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/oauth2")) + (propagated-inputs + `(("go-google-golang-org-appengine-1.6.6" + ,go-google-golang-org-appengine-1.6.6) + ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" + ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) + ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) + (home-page "https://golang.org/x/oauth2") + (synopsis "OAuth2 for Go") + (description + "Package oauth2 provides support for making +OAuth2 authorized and authenticated HTTP requests, +as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +It can additionally grant authorization with Bearer JWT. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20201207232520-09787c993a3a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1nv4mwi9njkkyc7lwmxrjr8ggfh2cf1c67a9bq85dnss81vpj61y")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the +ones provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20210104204734-6f8348627aad + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20210104204734-6f8348627aad") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0pmz8dwjf4gxr1gwnp4iahh3yh09apcf40kvvybycsx4rfjc2gbl")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20210105154028-b0ab187a4818 + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20210105154028-b0ab187a4818") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "157w706lz7j4s7cwgh7j7mf8v1sah5hm4dlmp8isf6vhnqpixdp7")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" + ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) + ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" + ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) + ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" + ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) + ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) + ("go-github-com-yuin-goldmark-1.2.1" + ,go-github-com-yuin-goldmark-1.2.1))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-google-golang-org-genproto-0.0.0-20201214200347-8c77b98c765d + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20201214200347-8c77b98c765d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1bdpss5xmla0gjz66mdk8bqpsdb5i1xz65g30k9cs2h7vrqlwzn4")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.24.0" + ,go-google-golang-org-protobuf-1.24.0) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-golang-protobuf-1.4.1" + ,go-github-com-golang-protobuf-1.4.1))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-github-com-cncf-udpa-go-0.0.0-20200629203442-efcf912fb354 + (package + (name "go-github-com-cncf-udpa-go") + (version "0.0.0-20200629203442-efcf912fb354") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cncf/udpa") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18b1v01h3id5d7v5gqabc4qsaja17r45rn3fvv38nrfx9l4smv0x")))) + (build-system go-build-system) + (arguments + '(#:import-path + "github.com/cncf/udpa/go" + #:unpack-path + "github.com/cncf/udpa")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2) + ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" + ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0))) + (home-page "https://github.com/cncf/udpa") + (synopsis "Description") + (description + "This library has been deprecated in favor of @code{github.com/cncf/xds/go}. All users are recommended to switch their imports.") + (license license:asl2.0))) + +(define-public go-github-com-envoyproxy-go-control-plane-0.9.7 + (package + (name "go-github-com-envoyproxy-go-control-plane") + (version "0.9.7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/envoyproxy/go-control-plane") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0nx5ybyadkjqr29hndn6amhbcqpi1rkfv12bxp0rk3ay045zxsh8")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.23.0" + ,go-google-golang-org-protobuf-1.23.0) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" + ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) + ("go-github-com-stretchr-testify-1.5.1" + ,go-github-com-stretchr-testify-1.5.1) + ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" + ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.2" + ,go-github-com-golang-protobuf-1.4.2) + ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" + ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) + ("go-github-com-cncf-udpa-go-0.0.0-20200629203442-efcf912fb354" + ,go-github-com-cncf-udpa-go-0.0.0-20200629203442-efcf912fb354) + ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" + ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) + (home-page "https://github.com/envoyproxy/go-control-plane") + (synopsis "control-plane") + (description + "This repository contains a Go-based implementation of an API server that +implements the discovery service APIs defined in +@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") + (license license:asl2.0))) + +(define-public go-google-golang-org-grpc-1.34.0 + (package + (name "go-google-golang-org-grpc") + (version "1.34.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0s8y19qvv0zfy2irq8vv12h65v7pw18k6yqfix1j2370yxmsajgm")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.25.0" + ,go-google-golang-org-protobuf-1.25.0) + ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" + ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) + ("go-github-com-google-go-cmp-0.5.0" + ,go-github-com-google-go-cmp-0.5.0) + ("go-github-com-golang-protobuf-1.4.2" + ,go-github-com-golang-protobuf-1.4.2) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-envoyproxy-go-control-plane-0.9.7" + ,go-github-com-envoyproxy-go-control-plane-0.9.7) + ("go-github-com-cncf-udpa-go-0.0.0-20200629203442-efcf912fb354" + ,go-github-com-cncf-udpa-go-0.0.0-20200629203442-efcf912fb354))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-google-golang-org-api-0.40.0 + (package + (name "go-google-golang-org-api") + (version "0.40.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-api-go-client") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0vs0bnzljg5iib8x01sy49ndgsz3cl1sq53pvy3h6kzp7may0bpc")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/api")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.34.0" ,go-google-golang-org-grpc-1.34.0) + ("go-google-golang-org-genproto-0.0.0-20201214200347-8c77b98c765d" + ,go-google-golang-org-genproto-0.0.0-20201214200347-8c77b98c765d) + ("go-google-golang-org-appengine-1.6.7" + ,go-google-golang-org-appengine-1.6.7) + ("go-golang-org-x-tools-0.0.0-20210105154028-b0ab187a4818" + ,go-golang-org-x-tools-0.0.0-20210105154028-b0ab187a4818) + ("go-golang-org-x-sys-0.0.0-20210104204734-6f8348627aad" + ,go-golang-org-x-sys-0.0.0-20210104204734-6f8348627aad) + ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" + ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) + ("go-golang-org-x-oauth2-0.0.0-20201208152858-08078c50e5b5" + ,go-golang-org-x-oauth2-0.0.0-20201208152858-08078c50e5b5) + ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" + ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) + ("go-go-opencensus-io-0.22.5" ,go-go-opencensus-io-0.22.5) + ("go-github-com-googleapis-gax-go-v2-2.0.5" + ,go-github-com-googleapis-gax-go-v2-2.0.5) + ("go-github-com-google-go-cmp-0.5.4" + ,go-github-com-google-go-cmp-0.5.4) + ("go-cloud-google-com-go-0.74.0" ,go-cloud-google-com-go-0.74.0))) + (home-page "https://google.golang.org/api") + (synopsis "Google APIs Client Library for Go") + (description + "Package api is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of +sub-packages. +") + (license license:bsd-3))) + +(define-public go-google-golang-org-genproto-0.0.0-20210222152913-aa3ee6e6a81c + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20210222152913-aa3ee6e6a81c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "06wa7v3s558rwxsqd1kqz5xy10kigzx50ciqh3zdxsbvxqvjwxrx")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.24.0" + ,go-google-golang-org-protobuf-1.24.0) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-golang-protobuf-1.4.1" + ,go-github-com-golang-protobuf-1.4.1))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-google-golang-org-grpc-1.35.0 + (package + (name "go-google-golang-org-grpc") + (version "1.35.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "15ij5acp9h8dxq0brc0jljj98badri23zpm4yvmsn6gnnxaykl72")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.25.0" + ,go-google-golang-org-protobuf-1.25.0) + ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" + ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) + ("go-github-com-google-go-cmp-0.5.0" + ,go-github-com-google-go-cmp-0.5.0) + ("go-github-com-golang-protobuf-1.4.2" + ,go-github-com-golang-protobuf-1.4.2) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad" + ,go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad) + ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" + ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-cloud-google-com-go-0.78.0 + (package + (name "go-cloud-google-com-go") + (version "0.78.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-cloud-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "11wldladkcz41ivsfnbrqy2hg5wp55d72hnr2wki0zvnhbzsj376")))) + (build-system go-build-system) + (arguments '(#:import-path "cloud.google.com/go")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.35.0" ,go-google-golang-org-grpc-1.35.0) + ("go-google-golang-org-genproto-0.0.0-20210222152913-aa3ee6e6a81c" + ,go-google-golang-org-genproto-0.0.0-20210222152913-aa3ee6e6a81c) + ("go-google-golang-org-api-0.40.0" ,go-google-golang-org-api-0.40.0) + ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) + ("go-golang-org-x-text-0.3.5" ,go-golang-org-x-text-0.3.5) + ("go-golang-org-x-sys-0.0.0-20210220050731-9a76102bfb43" + ,go-golang-org-x-sys-0.0.0-20210220050731-9a76102bfb43) + ("go-golang-org-x-oauth2-0.0.0-20210218202405-ba52d332ba99" + ,go-golang-org-x-oauth2-0.0.0-20210218202405-ba52d332ba99) + ("go-golang-org-x-net-0.0.0-20210119194325-5f4716e94777" + ,go-golang-org-x-net-0.0.0-20210119194325-5f4716e94777) + ("go-golang-org-x-mod-0.4.1" ,go-golang-org-x-mod-0.4.1) + ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" + ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) + ("go-go-opencensus-io-0.22.5" ,go-go-opencensus-io-0.22.5) + ("go-github-com-jstemmer-go-junit-report-0.9.1" + ,go-github-com-jstemmer-go-junit-report-0.9.1) + ("go-github-com-googleapis-gax-go-v2-2.0.5" + ,go-github-com-googleapis-gax-go-v2-2.0.5) + ("go-github-com-google-pprof-0.0.0-20210122040257-d980be63207e" + ,go-github-com-google-pprof-0.0.0-20210122040257-d980be63207e) + ("go-github-com-google-martian-v3-3.1.0" + ,go-github-com-google-martian-v3-3.1.0) + ("go-github-com-google-go-cmp-0.5.4" + ,go-github-com-google-go-cmp-0.5.4) + ("go-github-com-golang-protobuf-1.4.3" + ,go-github-com-golang-protobuf-1.4.3) + ("go-github-com-golang-mock-1.4.4" ,go-github-com-golang-mock-1.4.4) + ("go-cloud-google-com-go-storage-1.10.0" + ,go-cloud-google-com-go-storage-1.10.0))) + (home-page "https://cloud.google.com/go") + (synopsis "Google Cloud Client Libraries for Go") + (description + "Package cloud is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +of sub-packages. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-oauth2-0.0.0-20210220000619-9bb904979d93 + (package + (name "go-golang-org-x-oauth2") + (version "0.0.0-20210220000619-9bb904979d93") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/oauth2") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1rhndpvpvfy5bsaxi974cznlq4hbamhmy6l06ppp9phh12pvn11p")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/oauth2")) + (propagated-inputs + `(("go-google-golang-org-appengine-1.6.6" + ,go-google-golang-org-appengine-1.6.6) + ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" + ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) + ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) + (home-page "https://golang.org/x/oauth2") + (synopsis "OAuth2 for Go") + (description + "Package oauth2 provides support for making +OAuth2 authorized and authenticated HTTP requests, +as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +It can additionally grant authorization with Bearer JWT. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20210305230114-8fe3ee5dd75b + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20210305230114-8fe3ee5dd75b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1x7fn66vplxkac6lbwqv649wwnx7kz0bqdzgr98z7yx7cfdxd7rj")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-google-golang-org-genproto-0.0.0-20210303154014-9728d6b83eeb + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20210303154014-9728d6b83eeb") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1abic7gjp07d1s6imjfn00s316xdirss3zvcric74gr9varr02xn")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.24.0" + ,go-google-golang-org-protobuf-1.24.0) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-golang-protobuf-1.4.1" + ,go-github-com-golang-protobuf-1.4.1))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-google-golang-org-api-0.41.0 + (package + (name "go-google-golang-org-api") + (version "0.41.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-api-go-client") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0yzz534xzl2km3vxr18h204yvnrzqlss02fagg2ign0sy3qnlkhx")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/api")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.36.0" ,go-google-golang-org-grpc-1.36.0) + ("go-google-golang-org-genproto-0.0.0-20210303154014-9728d6b83eeb" + ,go-google-golang-org-genproto-0.0.0-20210303154014-9728d6b83eeb) + ("go-google-golang-org-appengine-1.6.7" + ,go-google-golang-org-appengine-1.6.7) + ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) + ("go-golang-org-x-sys-0.0.0-20210305230114-8fe3ee5dd75b" + ,go-golang-org-x-sys-0.0.0-20210305230114-8fe3ee5dd75b) + ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" + ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) + ("go-golang-org-x-oauth2-0.0.0-20210220000619-9bb904979d93" + ,go-golang-org-x-oauth2-0.0.0-20210220000619-9bb904979d93) + ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" + ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) + ("go-go-opencensus-io-0.23.0" ,go-go-opencensus-io-0.23.0) + ("go-github-com-googleapis-gax-go-v2-2.0.5" + ,go-github-com-googleapis-gax-go-v2-2.0.5) + ("go-github-com-google-go-cmp-0.5.5" + ,go-github-com-google-go-cmp-0.5.5) + ("go-cloud-google-com-go-0.78.0" ,go-cloud-google-com-go-0.78.0))) + (home-page "https://google.golang.org/api") + (synopsis "Google APIs Client Library for Go") + (description + "Package api is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of +sub-packages. +") + (license license:bsd-3))) + +(define-public go-google-golang-org-genproto-0.0.0-20210310155132-4ce2db91004e + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20210310155132-4ce2db91004e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0r5f024c4piqna27pvc28m0h44ms9rhcbihf1zn5l8prf4vvrdw9")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.24.0" + ,go-google-golang-org-protobuf-1.24.0) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-golang-protobuf-1.4.1" + ,go-github-com-golang-protobuf-1.4.1))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-cloud-google-com-go-0.79.0 + (package + (name "go-cloud-google-com-go") + (version "0.79.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-cloud-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "031jrfgyys0slh154593d4swj6iqrjvs9dxwmab99dl6zfws77jv")))) + (build-system go-build-system) + (arguments '(#:import-path "cloud.google.com/go")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.36.0" ,go-google-golang-org-grpc-1.36.0) + ("go-google-golang-org-genproto-0.0.0-20210310155132-4ce2db91004e" + ,go-google-golang-org-genproto-0.0.0-20210310155132-4ce2db91004e) + ("go-google-golang-org-api-0.41.0" ,go-google-golang-org-api-0.41.0) + ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) + ("go-golang-org-x-text-0.3.5" ,go-golang-org-x-text-0.3.5) + ("go-golang-org-x-oauth2-0.0.0-20210220000619-9bb904979d93" + ,go-golang-org-x-oauth2-0.0.0-20210220000619-9bb904979d93) + ("go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110" + ,go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110) + ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" + ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) + ("go-go-opencensus-io-0.23.0" ,go-go-opencensus-io-0.23.0) + ("go-github-com-jstemmer-go-junit-report-0.9.1" + ,go-github-com-jstemmer-go-junit-report-0.9.1) + ("go-github-com-googleapis-gax-go-v2-2.0.5" + ,go-github-com-googleapis-gax-go-v2-2.0.5) + ("go-github-com-google-pprof-0.0.0-20210226084205-cbba55b83ad5" + ,go-github-com-google-pprof-0.0.0-20210226084205-cbba55b83ad5) + ("go-github-com-google-martian-v3-3.1.0" + ,go-github-com-google-martian-v3-3.1.0) + ("go-github-com-google-go-cmp-0.5.5" + ,go-github-com-google-go-cmp-0.5.5) + ("go-github-com-golang-protobuf-1.4.3" + ,go-github-com-golang-protobuf-1.4.3) + ("go-github-com-golang-mock-1.5.0" ,go-github-com-golang-mock-1.5.0) + ("go-cloud-google-com-go-storage-1.10.0" + ,go-cloud-google-com-go-storage-1.10.0))) + (home-page "https://cloud.google.com/go") + (synopsis "Google Cloud Client Libraries for Go") + (description + "Package cloud is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +of sub-packages. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-oauth2-0.0.0-20210313182246-cd4f82c27b84 + (package + (name "go-golang-org-x-oauth2") + (version "0.0.0-20210313182246-cd4f82c27b84") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/oauth2") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1jf68sh1957ji1lv1zrrhsbm6jr3508pw159pfzgyw6hbzsg5amv")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/oauth2")) + (propagated-inputs + `(("go-google-golang-org-appengine-1.6.6" + ,go-google-golang-org-appengine-1.6.6) + ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" + ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) + ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) + (home-page "https://golang.org/x/oauth2") + (synopsis "OAuth2 for Go") + (description + "Package oauth2 provides support for making +OAuth2 authorized and authenticated HTTP requests, +as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +It can additionally grant authorization with Bearer JWT. +") + (license license:bsd-3))) + +(define-public go-google-golang-org-genproto-0.0.0-20210319143718-93e7006c17a6 + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20210319143718-93e7006c17a6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0l143m8rn7zmbfb2rpdawhxs8qjbdpn61hqynf47j5hwsbjci2xs")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.24.0" + ,go-google-golang-org-protobuf-1.24.0) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-golang-protobuf-1.4.1" + ,go-github-com-golang-protobuf-1.4.1))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-google-golang-org-grpc-1.36.0 + (package + (name "go-google-golang-org-grpc") + (version "1.36.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1m4xsfv3ysc84cwqxqqr61fs3d2w04f0q5xbdjijhczjixcxwh5i")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.25.0" + ,go-google-golang-org-protobuf-1.25.0) + ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" + ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) + ("go-github-com-google-go-cmp-0.5.0" + ,go-github-com-google-go-cmp-0.5.0) + ("go-github-com-golang-protobuf-1.4.2" + ,go-github-com-golang-protobuf-1.4.2) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad" + ,go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad) + ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" + ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-google-golang-org-api-0.43.0 + (package + (name "go-google-golang-org-api") + (version "0.43.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-api-go-client") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wxxbihigjn49warampi7gqfslbnp9nrj5zmk8p3ssq429jpvsib")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/api")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.36.0" ,go-google-golang-org-grpc-1.36.0) + ("go-google-golang-org-genproto-0.0.0-20210319143718-93e7006c17a6" + ,go-google-golang-org-genproto-0.0.0-20210319143718-93e7006c17a6) + ("go-google-golang-org-appengine-1.6.7" + ,go-google-golang-org-appengine-1.6.7) + ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) + ("go-golang-org-x-sys-0.0.0-20210320140829-1e4c9ba3b0c4" + ,go-golang-org-x-sys-0.0.0-20210320140829-1e4c9ba3b0c4) + ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" + ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) + ("go-golang-org-x-oauth2-0.0.0-20210313182246-cd4f82c27b84" + ,go-golang-org-x-oauth2-0.0.0-20210313182246-cd4f82c27b84) + ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" + ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) + ("go-go-opencensus-io-0.23.0" ,go-go-opencensus-io-0.23.0) + ("go-github-com-googleapis-gax-go-v2-2.0.5" + ,go-github-com-googleapis-gax-go-v2-2.0.5) + ("go-github-com-google-go-cmp-0.5.5" + ,go-github-com-google-go-cmp-0.5.5) + ("go-cloud-google-com-go-0.79.0" ,go-cloud-google-com-go-0.79.0))) + (home-page "https://google.golang.org/api") + (synopsis "Google APIs Client Library for Go") + (description + "Package api is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of +sub-packages. +") + (license license:bsd-3))) + +(define-public go-cloud-google-com-go-0.81.0 + (package + (name "go-cloud-google-com-go") + (version "0.81.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-cloud-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "15jgynqb5pbxqbj3a7ii970yn4srsw1dbxzxnhpkfkmplalpgyh3")))) + (build-system go-build-system) + (arguments '(#:import-path "cloud.google.com/go")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.36.1" ,go-google-golang-org-grpc-1.36.1) + ("go-google-golang-org-genproto-0.0.0-20210402141018-6c239bbf2bb1" + ,go-google-golang-org-genproto-0.0.0-20210402141018-6c239bbf2bb1) + ("go-google-golang-org-api-0.43.0" ,go-google-golang-org-api-0.43.0) + ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) + ("go-golang-org-x-text-0.3.5" ,go-golang-org-x-text-0.3.5) + ("go-golang-org-x-oauth2-0.0.0-20210313182246-cd4f82c27b84" + ,go-golang-org-x-oauth2-0.0.0-20210313182246-cd4f82c27b84) + ("go-golang-org-x-net-0.0.0-20210316092652-d523dce5a7f4" + ,go-golang-org-x-net-0.0.0-20210316092652-d523dce5a7f4) + ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" + ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) + ("go-go-opencensus-io-0.23.0" ,go-go-opencensus-io-0.23.0) + ("go-github-com-jstemmer-go-junit-report-0.9.1" + ,go-github-com-jstemmer-go-junit-report-0.9.1) + ("go-github-com-googleapis-gax-go-v2-2.0.5" + ,go-github-com-googleapis-gax-go-v2-2.0.5) + ("go-github-com-google-pprof-0.0.0-20210226084205-cbba55b83ad5" + ,go-github-com-google-pprof-0.0.0-20210226084205-cbba55b83ad5) + ("go-github-com-google-martian-v3-3.1.0" + ,go-github-com-google-martian-v3-3.1.0) + ("go-github-com-google-go-cmp-0.5.5" + ,go-github-com-google-go-cmp-0.5.5) + ("go-github-com-golang-protobuf-1.5.1" + ,go-github-com-golang-protobuf-1.5.1) + ("go-github-com-golang-mock-1.5.0" ,go-github-com-golang-mock-1.5.0) + ("go-cloud-google-com-go-storage-1.10.0" + ,go-cloud-google-com-go-storage-1.10.0))) + (home-page "https://cloud.google.com/go") + (synopsis "Google Cloud Client Libraries for Go") + (description + "Package cloud is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +of sub-packages. +") + (license license:asl2.0))) + +(define-public go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e + (package + (name "go-github-com-golang-groupcache") + (version "0.0.0-20200121045136-8c9f03a8e57e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/groupcache") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0vjjr79r32icjzlb05wn02k59av7jx0rn1jijml8r4whlg7dnkfh")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/groupcache")) + (home-page "https://github.com/golang/groupcache") + (synopsis "groupcache") + (description + "Package groupcache provides a data loading mechanism with caching +and de-duplication that works across a set of peer processes. +") + (license license:asl2.0))) + +(define-public go-github-com-golang-protobuf-1.4.3 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1kf1d7xmyjvy0z6j5czp6nqyvj9zrk6liv6znif08927xqfrzyln")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.23.0" + ,go-google-golang-org-protobuf-1.23.0) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-github-com-google-go-cmp-0.5.3 + (package + (name "go-github-com-google-go-cmp") + (version "0.5.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "011gdkmyk3w7qkcwljhqak4h5npn4n7fwgx1fwpyx9c7wizvgkm5")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") + (license license:bsd-3))) + +(define-public go-github-com-stretchr-testify-1.6.1 + (package + (name "go-github-com-stretchr-testify") + (version "1.6.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1yhiqqzjvi63pf01rgzx68gqkkvjx03fvl5wk30br5l6s81s090l")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (propagated-inputs + `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" + ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) + ("go-github-com-stretchr-objx-0.1.0" + ,go-github-com-stretchr-objx-0.1.0) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.0" + ,go-github-com-davecgh-go-spew-1.1.0))) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +") + (license license:expat))) + +(define-public go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b + (package + (name "go-golang-org-x-net") + (version "0.0.0-20201110031124-69a78807bb2b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "176z5k6jbhr9vf0am2avl1lyqwym3q0mri98yb8r572z33qmcw1d")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) + ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" + ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) + ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" + ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-google-golang-org-grpc-1.33.2 + (package + (name "go-google-golang-org-grpc") + (version "1.33.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03yz4nlf4kqbnpw48f0mvcb2f5zzy0vjd5i2iw0hrjspd0238fzk")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.25.0" + ,go-google-golang-org-protobuf-1.25.0) + ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" + ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) + ("go-github-com-google-go-cmp-0.5.0" + ,go-github-com-google-go-cmp-0.5.0) + ("go-github-com-golang-protobuf-1.4.1" + ,go-github-com-golang-protobuf-1.4.1) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-envoyproxy-go-control-plane-0.9.4" + ,go-github-com-envoyproxy-go-control-plane-0.9.4) + ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" + ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-go-opencensus-io-0.23.0 + (package + (name "go-go-opencensus-io") + (version "0.23.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/census-instrumentation/opencensus-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0gw4f7inf8y2ik00yfb36xganiq9rl4w2d1a41bsjqsh83ajz2km")))) + (build-system go-build-system) + (arguments '(#:import-path "go.opencensus.io")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) + ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" + ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-google-go-cmp-0.5.3" + ,go-github-com-google-go-cmp-0.5.3) + ("go-github-com-golang-protobuf-1.4.3" + ,go-github-com-golang-protobuf-1.4.3) + ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" + ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e))) + (home-page "https://go.opencensus.io") + (synopsis "OpenCensus Libraries for Go") + (description "Package opencensus contains Go support for OpenCensus. +") + (license license:asl2.0))) + +(define-public go-github-com-golang-mock-1.4.4 + (package + (name "go-github-com-golang-mock") + (version "1.4.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/mock") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1lj0dvd6div4jaq1s0afpwqaq9ah8cxhkq93wii2ably1xmp2l0a")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/mock")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262" + ,go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262))) + (home-page "https://github.com/golang/mock") + (synopsis "gomock") + (description + "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It +integrates well with Go's built-in @code{testing} package, but can be used in other +contexts too.") + (license license:asl2.0))) + +(define-public go-golang-org-x-tools-0.0.0-20200825202427-b303f430e36d + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20200825202427-b303f430e36d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0zzf6ifzjvkwin6m97jp2dndbfac0sbdr84ki79j9srhpqdigl75")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) + ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" + ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) + ("go-golang-org-x-net-0.0.0-20200625001655-4c5254603344" + ,go-golang-org-x-net-0.0.0-20200625001655-4c5254603344) + ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) + ("go-github-com-yuin-goldmark-1.1.32" + ,go-github-com-yuin-goldmark-1.1.32))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20190628185345-da137c7871d7 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190628185345-da137c7871d7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1qsiyr3irmb6ii06hivm9p2c7wqyxczms1a9v1ss5698yjr3fg47")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-github-com-google-martian-v3-3.0.0 + (package + (name "go-github-com-google-martian-v3") + (version "3.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/martian") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ngvs4l6a06s8scnliq9i5pwvwpzfpa5wf9skg0gcvysli1rm3fm")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/martian/v3")) + (propagated-inputs + `(("go-golang-org-x-net-0.0.0-20190628185345-da137c7871d7" + ,go-golang-org-x-net-0.0.0-20190628185345-da137c7871d7))) + (home-page "https://github.com/google/martian") + (synopsis "Martian Proxy") + (description + "Package martian provides an HTTP/1.1 proxy with an API for configurable +request and response modifiers. +") + (license license:asl2.0))) + +(define-public go-github-com-google-pprof-0.0.0-20200708004538-1a94d8640e99 + (package + (name "go-github-com-google-pprof") + (version "0.0.0-20200708004538-1a94d8640e99") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/pprof") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0isfwwan9vimwsfjml0phwrqv6kb83mkmk063dcb81k09gzzs3wy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/pprof")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" + ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) + ("go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6" + ,go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6) + ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" + ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) + ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" + ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) + ("go-github-com-chzyer-logex-1.1.10" + ,go-github-com-chzyer-logex-1.1.10))) + (home-page "https://github.com/google/pprof") + (synopsis "Introduction") + (description + "pprof is a tool for collection, manipulation and visualization +of performance profiles. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-net-0.0.0-20200707034311-ab3426394381 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20200707034311-ab3426394381") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1wr7rnnqp210yykkypinb8ciszx28aq5a3l3dvsv6swzxxngs8zn")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" + ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) + ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" + ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20200729194436-6467de6f59a7 + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20200729194436-6467de6f59a7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "14zpkr5idlx2zbm5dp7gk4afppy7k3j4y68s1qvpgi70yazaxzkd")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) + ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" + ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) + ("go-golang-org-x-net-0.0.0-20200625001655-4c5254603344" + ,go-golang-org-x-net-0.0.0-20200625001655-4c5254603344) + ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) + ("go-github-com-yuin-goldmark-1.1.32" + ,go-github-com-yuin-goldmark-1.1.32))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262 + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20190425150028-36563e24a262") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0lasi96f6a1h11gkm8kl33x03pmxp369wrqq2dg7x7xv9nq76d6g")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" + ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-golang-org-x-text-0.0.0-20170915032832-14c0d48ead0c + (package + (name "go-golang-org-x-text") + (version "0.0.0-20170915032832-14c0d48ead0c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/text") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0y0nrj4hw7vby6m3iqklbf4v7njqlsx7s4pwfkwmvh1ryn1kb7d6")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/text")) + (home-page "https://golang.org/x/text") + (synopsis "Go Text") + (description + "text is a repository of text-related packages related to internationalization +(i18n) and localization (l10n), such as character encodings, text +transformations, and locale-specific text handling. +") + (license license:bsd-3))) + +(define-public go-rsc-io-sampler-1.3.0 + (package + (name "go-rsc-io-sampler") + (version "1.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/rsc/sampler") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0byxk2ynba50py805kcvbvjzh59l1r308i1xgyzpw6lff4xx9xjh")))) + (build-system go-build-system) + (arguments '(#:import-path "rsc.io/sampler")) + (propagated-inputs + `(("go-golang-org-x-text-0.0.0-20170915032832-14c0d48ead0c" + ,go-golang-org-x-text-0.0.0-20170915032832-14c0d48ead0c))) + (home-page "https://rsc.io/sampler") + (synopsis #f) + (description "Package sampler shows simple texts. +") + (license license:bsd-3))) + +(define-public go-rsc-io-quote-v3-3.1.0 + (package + (name "go-rsc-io-quote-v3") + (version "3.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/rsc/quote") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0nvv97hwwrl1mx5gzsbdm1ndnwpg3m7i2jb10ig9wily7zmvki0i")))) + (build-system go-build-system) + (arguments + '(#:import-path "rsc.io/quote/v3" #:unpack-path "rsc.io/quote/v3")) + (propagated-inputs `(("go-rsc-io-sampler-1.3.0" ,go-rsc-io-sampler-1.3.0))) + (home-page "https://rsc.io/quote/v3") + (synopsis #f) + (description "Package quote collects pithy sayings. +") + (license license:bsd-3))) + +(define-public go-github-com-golang-mock-1.4.3 + (package + (name "go-github-com-golang-mock") + (version "1.4.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/mock") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1p37xnja1dgq5ykx24n7wincwz2gahjh71b95p8vpw7ss2g8j8wx")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/mock")) + (propagated-inputs + `(("go-rsc-io-quote-v3-3.1.0" ,go-rsc-io-quote-v3-3.1.0) + ("go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262" + ,go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262))) + (home-page "https://github.com/golang/mock") + (synopsis "gomock") + (description + "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It +integrates well with Go's built-in @code{testing} package, but can be used in other +contexts too.") + (license license:asl2.0))) + +(define-public go-github-com-golang-protobuf-1.3.5 + (package + (name "go-github-com-golang-protobuf") + (version "1.3.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1gkd1942vk9n8kfzdwy1iil6wgvlwjq7a3y5jc49ck4lz9rhmgkq")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-github-com-chzyer-logex-1.1.10 + (package + (name "go-github-com-chzyer-logex") + (version "1.1.10") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/chzyer/logex") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "08pbjj3wx9acavlwyr055isa8a5hnmllgdv5k6ra60l5y1brmlq4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/chzyer/logex")) + (home-page "https://github.com/chzyer/logex") + (synopsis #f) + (description #f) + (license #f))) + +(define-public go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e + (package + (name "go-github-com-chzyer-readline") + (version "0.0.0-20180603132655-2972be24d48e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/chzyer/readline") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "104q8dazj8yf6b089jjr82fy9h1g80zyyzvp3g8b44a7d8ngjj6r")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/chzyer/readline")) + (home-page "https://github.com/chzyer/readline") + (synopsis "Guide") + (description + "Readline is a pure go implementation for GNU-Readline kind library. +") + (license license:expat))) + +(define-public go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1 + (package + (name "go-github-com-chzyer-test") + (version "0.0.0-20180213035817-a1ea475d72b1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/chzyer/test") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0rns2aqk22i9xsgyap0pq8wi4cfaxsri4d9q6xxhhyma8jjsnj2k")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/chzyer/test")) + (home-page "https://github.com/chzyer/test") + (synopsis "test") + (description #f) + (license license:expat))) + +(define-public go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6 + (package + (name "go-github-com-ianlancetaylor-demangle") + (version "0.0.0-20181102032728-5e5cf60278f6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/ianlancetaylor/demangle") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fhjk11cip9c3jyj1byz9z77n6n2rlxmyz0xjx1zpn1da3cvri75")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/ianlancetaylor/demangle")) + (home-page "https://github.com/ianlancetaylor/demangle") + (synopsis "github.com/ianlancetaylor/demangle") + (description + "Package demangle defines functions that demangle GCC/LLVM +C++ and Rust symbol names. +This package recognizes names that were mangled according to the C++ ABI +defined at @url{http://codesourcery.com/cxx-abi/,http://codesourcery.com/cxx-abi/} and the Rust ABI +defined at +@url{https://rust-lang.github.io/rfcs/2603-rust-symbol-name-mangling-v0.html,https://rust-lang.github.io/rfcs/2603-rust-symbol-name-mangling-v0.html} +") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20191204072324-ce4227a45e2e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1s43wvqfml6ml5ks7iv2bis9d664g77mq86v7mfmjhn56x856g35")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-google-pprof-0.0.0-20200229191704-1ebb73c60ed3 + (package + (name "go-github-com-google-pprof") + (version "0.0.0-20200229191704-1ebb73c60ed3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/pprof") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1gdi9p4j1zfm5xlm488i5l0q3kk4q6hsmbmlk6p729i0di2n3ifa")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/pprof")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" + ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) + ("go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6" + ,go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6) + ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" + ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) + ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" + ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) + ("go-github-com-chzyer-logex-1.1.10" + ,go-github-com-chzyer-logex-1.1.10))) + (home-page "https://github.com/google/pprof") + (synopsis "Introduction") + (description + "pprof is a tool for collection, manipulation and visualization +of performance profiles. +") + (license license:asl2.0))) + +(define-public go-github-com-jstemmer-go-junit-report-0.9.1 + (package + (name "go-github-com-jstemmer-go-junit-report") + (version "0.9.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jstemmer/go-junit-report") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1knip80yir1cdsjlb3rzy0a4w3kl4ljpiciaz6hjzwqlfhnv7bkw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/jstemmer/go-junit-report")) + (home-page "https://github.com/jstemmer/go-junit-report") + (synopsis "go-junit-report") + (description + "Converts @code{go test} output to an xml report, suitable for applications that +expect junit xml reports (e.g. @url{http://jenkins-ci.org,Jenkins}).") + (license license:expat))) + +(define-public go-golang-org-x-net-0.0.0-20200324143707-d3edc9973b7e + (package + (name "go-golang-org-x-net") + (version "0.0.0-20200324143707-d3edc9973b7e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12zbjwcsh9b0lwycqlkrnbyg5a6a9dzgj8hhgq399bdda5bd97y7")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" + ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-github-com-golang-mock-1.2.0 + (package + (name "go-github-com-golang-mock") + (version "1.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/mock") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12ddj2g8ab87id6n2n67vnbhq6p8dvgsq1pzpqfriym4dk8w54fg")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/mock")) + (home-page "https://github.com/golang/mock") + (synopsis "gomock") + (description + "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It +integrates well with Go's built-in @code{testing} package, but can be used in other +contexts too.") + (license license:asl2.0))) + +(define-public go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c + (package + (name "go-github-com-google-btree") + (version "0.0.0-20180813153112-4030bb1f1f0c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/btree") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ba430m9fbnagacp57krgidsyrgp3ycw5r7dj71brgp5r52g82p6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/btree")) + (home-page "https://github.com/google/btree") + (synopsis "BTree implementation for Go") + (description + "Package btree implements in-memory B-Trees of arbitrary degree. +") + (license license:asl2.0))) + +(define-public go-github-com-google-martian-2.1.0+incompatible + (package + (name "go-github-com-google-martian") + (version "2.1.0+incompatible") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/martian") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "197hil6vrjk50b9wvwyzf61csid83whsjj6ik8mc9r2lryxlyyrp")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/martian")) + (home-page "https://github.com/google/martian") + (synopsis "Martian Proxy") + (description + "Package martian provides an HTTP/1.1 proxy with an API for configurable +request and response modifiers. +") + (license license:asl2.0))) + +(define-public go-github-com-google-pprof-0.0.0-20181206194817-3ea8567a2e57 + (package + (name "go-github-com-google-pprof") + (version "0.0.0-20181206194817-3ea8567a2e57") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/pprof") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "09rhjn3ms0a72dw0yzbp237p7yhqma772zspddn6mgkh3gi3kn4c")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/pprof")) + (home-page "https://github.com/google/pprof") + (synopsis "Introduction") + (description + "pprof is a tool for collection, manipulation and visualization +of performance profiles. +") + (license license:asl2.0))) + +(define-public go-github-com-googleapis-gax-go-v2-2.0.4 + (package + (name "go-github-com-googleapis-gax-go-v2") + (version "2.0.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/gax-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1iwnm6ky1x53lgs44mw3hpdkjzrm5qd0kfs50m0qcq2ml5m1cwdm")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/googleapis/gax-go/v2")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.19.0" + ,go-google-golang-org-grpc-1.19.0))) + (home-page "https://github.com/googleapis/gax-go") + (synopsis #f) + (description + "Package gax contains a set of modules which aid the development of APIs +for clients and servers based on gRPC and Google API conventions. +") + (license license:bsd-3))) + +(define-public go-github-com-jstemmer-go-junit-report-0.0.0-20190106144839-af01ea7f8024 + (package + (name "go-github-com-jstemmer-go-junit-report") + (version "0.0.0-20190106144839-af01ea7f8024") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jstemmer/go-junit-report") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1lp3n94ris12hac02wi31f3whs88lcrzwgdg43a5j6cafg9p1d0s")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/jstemmer/go-junit-report")) + (home-page "https://github.com/jstemmer/go-junit-report") + (synopsis "go-junit-report") + (description + "Converts @code{go test} output to an xml report, suitable for applications that +expect junit xml reports (e.g. @url{http://jenkins-ci.org,Jenkins}).") + (license license:expat))) + +(define-public go-golang-org-x-text-0.3.1-0.20180807135948-17ff2d5776d2 + (package + (name "go-golang-org-x-text") + (version "0.3.1-0.20180807135948-17ff2d5776d2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/text") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1rrh2mnmyxr45nsvy42zq3w3ly6gw6rl993knwvf1w71kyv0jjnj")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/text")) + (home-page "https://golang.org/x/text") + (synopsis "Go Text") + (description + "text is a repository of text-related packages related to internationalization +(i18n) and localization (l10n), such as character encodings, text +transformations, and locale-specific text handling. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-time-0.0.0-20181108054448-85acf8d2951c + (package + (name "go-golang-org-x-time") + (version "0.0.0-20181108054448-85acf8d2951c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/time") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0yqnxsrarjk4qkda8kcxzmk7y90kkkxzx9iwryzrk7bzs87ky3xc")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/time")) + (home-page "https://golang.org/x/time") + (synopsis "Go Time") + (description "This repository provides supplementary Go time packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f + (package + (name "go-golang-org-x-lint") + (version "0.0.0-20190301231843-5614ed5bae6f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/lint") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0fzn0zjv0x92xvfdq3a0v9w5sgkhr7hxkfy9zaqi8i57807z8bnx")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/lint")) + (home-page "https://golang.org/x/lint") + (synopsis "Installation") + (description "Package lint contains a linter for Go source code. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421 + (package + (name "go-golang-org-x-oauth2") + (version "0.0.0-20190226205417-e64efc72b421") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/oauth2") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0djvwz2avx7knsjbl434vw1wqbrg53xp1kh599gfixn5icrggz4m")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/oauth2")) + (propagated-inputs + `(("go-google-golang-org-appengine-1.4.0" + ,go-google-golang-org-appengine-1.4.0) + ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" + ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) + ("go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e" + ,go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e) + ("go-cloud-google-com-go-0.34.0" ,go-cloud-google-com-go-0.34.0))) + (home-page "https://golang.org/x/oauth2") + (synopsis "OAuth2 for Go") + (description + "Package oauth2 provides support for making +OAuth2 authorized and authenticated HTTP requests, +as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +It can additionally grant authorization with Bearer JWT. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138 + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20190312170243-e65039ee4138") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0c094599cf70wdrms49a3879qkq122pqlp2av444gs2pvc8apdcx")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-google-golang-org-api-0.4.0 + (package + (name "go-google-golang-org-api") + (version "0.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-api-go-client") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1hzgrw5wasmcjlqpxsmryddzzw4cwyzf2vx14i9z51v1plwssijm")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/api")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" + ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) + ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) + ("go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19" + ,go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19) + ("go-google-golang-org-appengine-1.4.0" + ,go-google-golang-org-appengine-1.4.0) + ("go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138" + ,go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138) + ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" + ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) + ("go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421" + ,go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421) + ("go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f" + ,go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f) + ("go-go-opencensus-io-0.21.0" ,go-go-opencensus-io-0.21.0) + ("go-github-com-google-go-cmp-0.2.0" + ,go-github-com-google-go-cmp-0.2.0))) + (home-page "https://google.golang.org/api") + (synopsis "Google APIs Client Library for Go") + (description + "Package api is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of +sub-packages. +") + (license license:bsd-3))) + +(define-public go-google-golang-org-genproto-0.0.0-20190418145605-e7d98fc518a7 + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20190418145605-e7d98fc518a7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1cnavkyawwvfc5yl097ygnfy1ac69v4zc02gdfnq1bvgcvgmvnbi")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" + ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) + ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) + ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" + ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) + ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" + ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) + ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" + ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd) + ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" + ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) + ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" + ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-honnef-co-go-tools-0.0.0-20190106161140-3f1c8253044a + (package + (name "go-honnef-co-go-tools") + (version "0.0.0-20190106161140-3f1c8253044a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/dominikh/go-tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0d3vgh0fgfj1z7i648g1s6x2pwxd07sxfjwg1xn3yagr9h06jh3h")))) + (build-system go-build-system) + (arguments '(#:import-path "honnef.co/go/tools")) + (home-page "https://honnef.co/go/tools") + (synopsis "Documentation") + (description + "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, +offers simplifications, and enforces style rules.") + (license license:expat))) + +(define-public go-cloud-google-com-go-0.38.0 + (package + (name "go-cloud-google-com-go") + (version "0.38.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-cloud-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0n6n13b7lri2fmc4bn4ifszyawj31dpbzvyv0xafsf81440z8cyh")))) + (build-system go-build-system) + (arguments '(#:import-path "cloud.google.com/go")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190106161140-3f1c8253044a" + ,go-honnef-co-go-tools-0.0.0-20190106161140-3f1c8253044a) + ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) + ("go-google-golang-org-genproto-0.0.0-20190418145605-e7d98fc518a7" + ,go-google-golang-org-genproto-0.0.0-20190418145605-e7d98fc518a7) + ("go-google-golang-org-api-0.4.0" ,go-google-golang-org-api-0.4.0) + ("go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138" + ,go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138) + ("go-golang-org-x-time-0.0.0-20181108054448-85acf8d2951c" + ,go-golang-org-x-time-0.0.0-20181108054448-85acf8d2951c) + ("go-golang-org-x-text-0.3.1-0.20180807135948-17ff2d5776d2" + ,go-golang-org-x-text-0.3.1-0.20180807135948-17ff2d5776d2) + ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" + ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) + ("go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421" + ,go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421) + ("go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f" + ,go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f) + ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" + ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) + ("go-go-opencensus-io-0.21.0" ,go-go-opencensus-io-0.21.0) + ("go-github-com-jstemmer-go-junit-report-0.0.0-20190106144839-af01ea7f8024" + ,go-github-com-jstemmer-go-junit-report-0.0.0-20190106144839-af01ea7f8024) + ("go-github-com-googleapis-gax-go-v2-2.0.4" + ,go-github-com-googleapis-gax-go-v2-2.0.4) + ("go-github-com-google-pprof-0.0.0-20181206194817-3ea8567a2e57" + ,go-github-com-google-pprof-0.0.0-20181206194817-3ea8567a2e57) + ("go-github-com-google-martian-2.1.0+incompatible" + ,go-github-com-google-martian-2.1.0+incompatible) + ("go-github-com-google-go-cmp-0.2.0" + ,go-github-com-google-go-cmp-0.2.0) + ("go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c" + ,go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0) + ("go-github-com-golang-mock-1.2.0" ,go-github-com-golang-mock-1.2.0))) + (home-page "https://cloud.google.com/go") + (synopsis "Google Cloud Client Libraries for Go") + (description + "Package cloud is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +of sub-packages. +") + (license license:asl2.0))) + +(define-public go-github-com-hashicorp-golang-lru-0.5.1 + (package + (name "go-github-com-hashicorp-golang-lru") + (version "0.5.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/golang-lru") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "13f870cvk161bzjj6x41l45r5x9i1z9r2ymwmvm7768kg08zznpy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/golang-lru")) + (home-page "https://github.com/hashicorp/golang-lru") + (synopsis "golang-lru") + (description + "Package lru provides three different LRU caches of varying sophistication. +") + (license license:mpl2.0))) + +(define-public go-github-com-hashicorp-golang-lru-0.5.0 + (package + (name "go-github-com-hashicorp-golang-lru") + (version "0.5.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/golang-lru") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12k2cp2k615fjvfa5hyb9k2alian77wivds8s65diwshwv41939f")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/golang-lru")) + (home-page "https://github.com/hashicorp/golang-lru") + (synopsis "golang-lru") + (description + "Package lru provides three different LRU caches of varying sophistication. +") + (license license:mpl2.0))) + +(define-public go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19 + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20190307195333-5fe7a883aa19") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0qjkwig0r42q0j2qv57s4ahsgmmp41dz3ih3rnaqg0619n5w7lbs")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" + ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) + ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) + ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" + ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) + ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" + ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) + ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" + ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd) + ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" + ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) + ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" + ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-go-opencensus-io-0.21.0 + (package + (name "go-go-opencensus-io") + (version "0.21.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/census-instrumentation/opencensus-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "14s0a12xdzjvad0dgksgv8m3hh7nc585abvjkvyk6r67a29lxj6x")))) + (build-system go-build-system) + (arguments '(#:import-path "go.opencensus.io")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) + ("go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19" + ,go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-github-com-hashicorp-golang-lru-0.5.0" + ,go-github-com-hashicorp-golang-lru-0.5.0) + ("go-github-com-google-go-cmp-0.2.0" + ,go-github-com-google-go-cmp-0.2.0) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0))) + (home-page "https://go.opencensus.io") + (synopsis "OpenCensus Libraries for Go") + (description "Package opencensus contains Go support for OpenCensus. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422 + (package + (name "go-golang-org-x-lint") + (version "0.0.0-20190409202823-959b441ac422") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/lint") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1mgcv5f00pkzsbwnq2y7vqvd1b4lr5a3s47cphh2qv4indfk7pck")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/lint")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" + ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd))) + (home-page "https://golang.org/x/lint") + (synopsis "Installation") + (description "Package lint contains a linter for Go source code. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20190503192946-f4e77d36d62c + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190503192946-f4e77d36d62c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0avjnglqqg9ya0cbhp23m4namykii219kxjywxn4cd7pfcc5arha")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45 + (package + (name "go-golang-org-x-oauth2") + (version "0.0.0-20190604053449-0f29369cfe45") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/oauth2") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "06jwpvx0x2gjn2y959drbcir5kd7vg87k0r1216abk6rrdzzrzi2")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/oauth2")) + (propagated-inputs + `(("go-google-golang-org-appengine-1.4.0" + ,go-google-golang-org-appengine-1.4.0) + ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" + ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) + ("go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e" + ,go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e) + ("go-cloud-google-com-go-0.34.0" ,go-cloud-google-com-go-0.34.0))) + (home-page "https://golang.org/x/oauth2") + (synopsis "OAuth2 for Go") + (description + "Package oauth2 provides support for making +OAuth2 authorized and authenticated HTTP requests, +as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +It can additionally grant authorization with Bearer JWT. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190507160741-ecd444e8653b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1vhld4948mzfnlgf20id29mv1bwpk9a3xlbw1mbjzxzxxdv1jds2")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-google-golang-org-appengine-1.5.0 + (package + (name "go-google-golang-org-appengine") + (version "1.5.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/appengine") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0l7mkdnwhidv8m686x432vmx8z5nqcrr9f46ddgvrxbh4wvyfcll")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/appengine")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225" + ,go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0))) + (home-page "https://google.golang.org/appengine") + (synopsis "Go App Engine packages") + (description + "Package appengine provides basic functionality for Google App Engine. +") + (license license:asl2.0))) + +(define-public go-google-golang-org-api-0.20.0 + (package + (name "go-google-golang-org-api") + (version "0.20.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-api-go-client") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "13syr1x33k6mrn5w6l4sgdbzn368w3m60vf6kk2j10fwa45125rg")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/api")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" + ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" + ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) + ("go-google-golang-org-appengine-1.5.0" + ,go-google-golang-org-appengine-1.5.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) + ("go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b" + ,go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b) + ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" + ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) + ("go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45" + ,go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45) + ("go-golang-org-x-net-0.0.0-20190503192946-f4e77d36d62c" + ,go-golang-org-x-net-0.0.0-20190503192946-f4e77d36d62c) + ("go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422" + ,go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422) + ("go-go-opencensus-io-0.21.0" ,go-go-opencensus-io-0.21.0) + ("go-github-com-hashicorp-golang-lru-0.5.1" + ,go-github-com-hashicorp-golang-lru-0.5.1) + ("go-github-com-googleapis-gax-go-v2-2.0.5" + ,go-github-com-googleapis-gax-go-v2-2.0.5) + ("go-github-com-google-go-cmp-0.3.0" + ,go-github-com-google-go-cmp-0.3.0) + ("go-cloud-google-com-go-0.38.0" ,go-cloud-google-com-go-0.38.0))) + (home-page "https://google.golang.org/api") + (synopsis "Google APIs Client Library for Go") + (description + "Package api is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of +sub-packages. +") + (license license:bsd-3))) + +(define-public go-github-com-google-renameio-0.1.0 + (package + (name "go-github-com-google-renameio") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/renameio") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ki2x5a9nrj17sn092d6n4zr29lfg5ydv4xz5cp58z6cw8ip43jx")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/renameio")) + (home-page "https://github.com/google/renameio") + (synopsis "Atomicity vs durability") + (description + "Package renameio provides a way to atomically create or replace a file or +symbolic link. +") + (license license:asl2.0))) + +(define-public go-github-com-kisielk-gotool-1.0.0 + (package + (name "go-github-com-kisielk-gotool") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kisielk/gotool") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "14af2pa0ssyp8bp2mvdw184s5wcysk6akil3wzxmr05wwy951iwn")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kisielk/gotool")) + (home-page "https://github.com/kisielk/gotool") + (synopsis "gotool") + (description + "Package gotool contains utility functions used to implement the standard +\"cmd/go\" tool, provided as a convenience to developers who want to write +tools with similar semantics. +") + (license license:expat))) + +(define-public go-github-com-kr-pty-1.1.1 + (package + (name "go-github-com-kr-pty") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/pty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0383f0mb9kqjvncqrfpidsf8y6ns5zlrc91c6a74xpyxjwvzl2y6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/pty")) + (home-page "https://github.com/kr/pty") + (synopsis "pty") + (description + "Package pty is a wrapper for github.com/creack/pty, which provides +functions for working with Unix terminals. +") + (license license:expat))) + +(define-public go-github-com-kr-text-0.1.0 + (package + (name "go-github-com-kr-text") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1gm5bsl01apvc84bw06hasawyqm4q84vx1pm32wr9jnd7a8vjgj1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/text")) + (propagated-inputs + `(("go-github-com-kr-pty-1.1.1" ,go-github-com-kr-pty-1.1.1))) + (home-page "https://github.com/kr/text") + (synopsis #f) + (description + "Package text provides rudimentary functions for manipulating text in +paragraphs. +") + (license license:expat))) + +(define-public go-github-com-kr-pretty-0.1.0 + (package + (name "go-github-com-kr-pretty") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/pretty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18m4pwg2abd0j9cn5v3k2ksk9ig4vlwxmlw9rrglanziv9l967qp")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/pretty")) + (propagated-inputs + `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) + (home-page "https://github.com/kr/pretty") + (synopsis #f) + (description + "Package pretty provides pretty-printing for Go values. This is +useful during debugging, to avoid wrapping long output lines in +the terminal. +") + (license license:expat))) + +(define-public go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127 + (package + (name "go-gopkg-in-check-v1") + (version "1.0.0-20180628173108-788fd7840127") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/check.v1") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0v3bim0j375z81zrpr5qv42knqs0y2qv2vkjiqi5axvb78slki1a")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) + (home-page "https://gopkg.in/check.v1") + (synopsis "Instructions") + (description + "Package check is a rich testing extension for Go's testing package. +") + (license license:bsd-2))) + +(define-public go-gopkg-in-errgo-v2-2.1.0 + (package + (name "go-gopkg-in-errgo-v2") + (version "2.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/errgo.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "065mbihiy7q67wnql0bzl9y1kkvck5ivra68254zbih52jxwrgr2")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/errgo.v2" #:unpack-path "gopkg.in/errgo.v2")) + (propagated-inputs + `(("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" + ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) + ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0))) + (home-page "https://gopkg.in/errgo.v2") + (synopsis #f) + (description + "Package errgo provides some primitives for error creation and handling.") + (license license:bsd-3))) + +(define-public go-github-com-rogpeppe-go-internal-1.3.0 + (package + (name "go-github-com-rogpeppe-go-internal") + (version "1.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/rogpeppe/go-internal") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0mcdh1licgnnahwml9y2iq6xy5x9xmjw5frcnds2s3wpjyqrl216")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/rogpeppe/go-internal")) + (propagated-inputs + `(("go-gopkg-in-errgo-v2-2.1.0" ,go-gopkg-in-errgo-v2-2.1.0))) + (home-page "https://github.com/rogpeppe/go-internal") + (synopsis #f) + (description + "This repository factors out an opinionated selection of internal packages and functionality from the Go standard +library. Currently this consists mostly of packages and testing code from within the Go tool implementation.") + (license license:bsd-3))) + +(define-public go-golang-org-x-crypto-0.0.0-20190510104115-cbcb75029529 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20190510104115-cbcb75029529") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12831ga1gq04a3jbbcmww7kaqfdfgp7cdv2fj9aqidz8h52ajdmh")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" + ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) + ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" + ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-mod-0.0.0-20190513183733-4bf6d317e70e + (package + (name "go-golang-org-x-mod") + (version "0.0.0-20190513183733-4bf6d317e70e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/mod") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19lg1ly3j31anx92p0hynic1gjk417wwxphfdrb2cq1c19kj3r17")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/mod")) + (propagated-inputs + `(("go-golang-org-x-crypto-0.0.0-20190510104115-cbcb75029529" + ,go-golang-org-x-crypto-0.0.0-20190510104115-cbcb75029529))) + (home-page "https://golang.org/x/mod") + (synopsis "mod") + (description + "This repository holds packages for writing tools +that work directly with Go module mechanics. +That is, it is for direct manipulation of Go modules themselves.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20191130070609-6e064ea0cf2d + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20191130070609-6e064ea0cf2d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1nbki367xspsa37j6276f5q2gv31vfjpb52axn3p3ymz548my75d")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7" + ,go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7) + ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" + ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) + ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" + ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-honnef-co-go-tools-0.0.1-2020.1.3 + (package + (name "go-honnef-co-go-tools") + (version "0.0.1-2020.1.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/dominikh/go-tools") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0pvi1mzhy6zgx4zfgdypbl4zhvgg11hl5qv7blf2qs0a96j2djhf")))) + (build-system go-build-system) + (arguments '(#:import-path "honnef.co/go/tools")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20191130070609-6e064ea0cf2d" + ,go-golang-org-x-tools-0.0.0-20191130070609-6e064ea0cf2d) + ("go-golang-org-x-mod-0.0.0-20190513183733-4bf6d317e70e" + ,go-golang-org-x-mod-0.0.0-20190513183733-4bf6d317e70e) + ("go-github-com-rogpeppe-go-internal-1.3.0" + ,go-github-com-rogpeppe-go-internal-1.3.0) + ("go-github-com-kisielk-gotool-1.0.0" + ,go-github-com-kisielk-gotool-1.0.0) + ("go-github-com-google-renameio-0.1.0" + ,go-github-com-google-renameio-0.1.0) + ("go-github-com-burntsushi-toml-0.3.1" + ,go-github-com-burntsushi-toml-0.3.1))) + (home-page "https://honnef.co/go/tools") + (synopsis "Documentation") + (description + "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, +offers simplifications, and enforces style rules.") + (license license:expat))) + +(define-public go-cloud-google-com-go-0.56.0 + (package + (name "go-cloud-google-com-go") + (version "0.56.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-cloud-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1bpx84q7byxr5rp197qcg3pl56acs8v1q555frxgcqygxwjacszf")))) + (build-system go-build-system) + (arguments '(#:import-path "cloud.google.com/go")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.1-2020.1.3" + ,go-honnef-co-go-tools-0.0.1-2020.1.3) + ("go-google-golang-org-grpc-1.28.0" ,go-google-golang-org-grpc-1.28.0) + ("go-google-golang-org-genproto-0.0.0-20200331122359-1ee6d9798940" + ,go-google-golang-org-genproto-0.0.0-20200331122359-1ee6d9798940) + ("go-google-golang-org-api-0.20.0" ,go-google-golang-org-api-0.20.0) + ("go-golang-org-x-tools-0.0.0-20200331025713-a30bf2db82d4" + ,go-golang-org-x-tools-0.0.0-20200331025713-a30bf2db82d4) + ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) + ("go-golang-org-x-sys-0.0.0-20200331124033-c3d80250170d" + ,go-golang-org-x-sys-0.0.0-20200331124033-c3d80250170d) + ("go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a" + ,go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a) + ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" + ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) + ("go-golang-org-x-net-0.0.0-20200324143707-d3edc9973b7e" + ,go-golang-org-x-net-0.0.0-20200324143707-d3edc9973b7e) + ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" + ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) + ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) + ("go-github-com-jstemmer-go-junit-report-0.9.1" + ,go-github-com-jstemmer-go-junit-report-0.9.1) + ("go-github-com-googleapis-gax-go-v2-2.0.5" + ,go-github-com-googleapis-gax-go-v2-2.0.5) + ("go-github-com-google-pprof-0.0.0-20200229191704-1ebb73c60ed3" + ,go-github-com-google-pprof-0.0.0-20200229191704-1ebb73c60ed3) + ("go-github-com-google-martian-2.1.0+incompatible" + ,go-github-com-google-martian-2.1.0+incompatible) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.3.5" + ,go-github-com-golang-protobuf-1.3.5) + ("go-github-com-golang-mock-1.4.3" ,go-github-com-golang-mock-1.4.3) + ("go-cloud-google-com-go-storage-1.6.0" + ,go-cloud-google-com-go-storage-1.6.0) + ("go-cloud-google-com-go-pubsub-1.2.0" + ,go-cloud-google-com-go-pubsub-1.2.0) + ("go-cloud-google-com-go-datastore-1.1.0" + ,go-cloud-google-com-go-datastore-1.1.0) + ("go-cloud-google-com-go-bigquery-1.4.0" + ,go-cloud-google-com-go-bigquery-1.4.0))) + (home-page "https://cloud.google.com/go") + (synopsis "Google Cloud Client Libraries for Go") + (description + "Package cloud is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +of sub-packages. +") + (license license:asl2.0))) + +(define-public go-go-opencensus-io-0.22.3 + (package + (name "go-go-opencensus-io") + (version "0.22.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/census-instrumentation/opencensus-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0xj16iq5jp26hi2py7lsd8cvqh651fgn39y05gzvjdi88d9xd3nw")))) + (build-system go-build-system) + (arguments '(#:import-path "go.opencensus.io")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.20.1" ,go-google-golang-org-grpc-1.20.1) + ("go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb" + ,go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb) + ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) + ("go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd" + ,go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd) + ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" + ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) + ("go-github-com-stretchr-testify-1.4.0" + ,go-github-com-stretchr-testify-1.4.0) + ("go-github-com-google-go-cmp-0.3.0" + ,go-github-com-google-go-cmp-0.3.0) + ("go-github-com-golang-protobuf-1.3.1" + ,go-github-com-golang-protobuf-1.3.1) + ("go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6" + ,go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6))) + (home-page "https://go.opencensus.io") + (synopsis "OpenCensus Libraries for Go") + (description "Package opencensus contains Go support for OpenCensus. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20200317015054-43a5402ce75a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0j6zrrb81qjr1926kkwmn0di9a0jn8qyjd9dw614rfkihxgq1vsm")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the +ones provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20200331124033-c3d80250170d + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200331124033-c3d80250170d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1nswjhkg7yixla0b3d8xwzf94rawwyjrxipay3ffdvm426n0ld42")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-yuin-goldmark-1.1.25 + (package + (name "go-github-com-yuin-goldmark") + (version "1.1.25") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/yuin/goldmark") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0cr3mk8pr7vsyisgrvln5ailnnn9xhardcy8mkshybk5c3n1kw5k")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/yuin/goldmark")) + (home-page "https://github.com/yuin/goldmark") + (synopsis "goldmark") + (description + "Package goldmark implements functions to convert markdown text to a desired format. +") + (license license:expat))) + +(define-public go-golang-org-x-mod-0.2.0 + (package + (name "go-golang-org-x-mod") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/mod") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fp6885dclq77mh73v7i54v2b9llpv4di193zc8vmsbbkkc483cl")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/mod")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" + ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) + ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" + ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) + ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" + ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) + (home-page "https://golang.org/x/mod") + (synopsis "mod") + (description + "This repository holds packages for writing tools +that work directly with Go module mechanics. +That is, it is for direct manipulation of Go modules themselves.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b + (package + (name "go-golang-org-x-net") + (version "0.0.0-20200226121028-0de0cce0169b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1db7s5kbzyh2zd5lpv05n7hp8wbwdvgk0wpiwrlnig94mkr0y5aq")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20190911185100-cd5d95a43a6e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1nqkyz2y1qvqcma52ijh02s8aiqmkfb95j08f6zcjhbga3ds6hds")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the +ones provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20200331025713-a30bf2db82d4 + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20200331025713-a30bf2db82d4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1rb488ydwi24zmd1zvsv8k8srs3q6xnqqfdar538hssqgljyvp7l")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) + ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" + ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) + ("go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b" + ,go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b) + ("go-golang-org-x-mod-0.2.0" ,go-golang-org-x-mod-0.2.0) + ("go-github-com-yuin-goldmark-1.1.25" + ,go-github-com-yuin-goldmark-1.1.25))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-google-golang-org-appengine-1.6.5 + (package + (name "go-google-golang-org-appengine") + (version "1.6.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/appengine") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "05hbq4cs7bqw0zl17bx8rzdkszid3nyl92100scg3jjrg70dhm7w")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/appengine")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) + ("go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65" + ,go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65) + ("go-github-com-golang-protobuf-1.3.1" + ,go-github-com-golang-protobuf-1.3.1))) + (home-page "https://google.golang.org/appengine") + (synopsis "Go App Engine packages") + (description + "Package appengine provides basic functionality for Google App Engine. +") + (license license:asl2.0))) + +(define-public go-google-golang-org-genproto-0.0.0-20200331122359-1ee6d9798940 + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20200331122359-1ee6d9798940") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1zsp55d7xjc0b3yw5jjpvbsc0gkji1c1j2vxmcwm89dh26rz4jwd")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" + ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-golang-protobuf-1.3.3" + ,go-github-com-golang-protobuf-1.3.3))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-google-golang-org-grpc-1.28.0 + (package + (name "go-google-golang-org-grpc") + (version "1.28.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1m36rg3w2mf4r3383yf0r1pjrz890mdw506h1lpm6bkc8w3kyqz3")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" + ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-github-com-google-go-cmp-0.2.0" + ,go-github-com-google-go-cmp-0.2.0) + ("go-github-com-golang-protobuf-1.3.3" + ,go-github-com-golang-protobuf-1.3.3) + ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" + ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) + ("go-github-com-envoyproxy-go-control-plane-0.9.4" + ,go-github-com-envoyproxy-go-control-plane-0.9.4))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-google-golang-org-api-0.29.0 + (package + (name "go-google-golang-org-api") + (version "0.29.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-api-go-client") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1y6izqcc6krill33pb57fbgbs7ni3jxyf3knm5jkl4qydsj9303h")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/api")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.28.0" ,go-google-golang-org-grpc-1.28.0) + ("go-google-golang-org-genproto-0.0.0-20200331122359-1ee6d9798940" + ,go-google-golang-org-genproto-0.0.0-20200331122359-1ee6d9798940) + ("go-google-golang-org-appengine-1.6.5" + ,go-google-golang-org-appengine-1.6.5) + ("go-golang-org-x-tools-0.0.0-20200331025713-a30bf2db82d4" + ,go-golang-org-x-tools-0.0.0-20200331025713-a30bf2db82d4) + ("go-golang-org-x-sys-0.0.0-20200331124033-c3d80250170d" + ,go-golang-org-x-sys-0.0.0-20200331124033-c3d80250170d) + ("go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a" + ,go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a) + ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" + ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) + ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" + ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) + ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) + ("go-github-com-googleapis-gax-go-v2-2.0.5" + ,go-github-com-googleapis-gax-go-v2-2.0.5) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-cloud-google-com-go-0.56.0" ,go-cloud-google-com-go-0.56.0))) + (home-page "https://google.golang.org/api") + (synopsis "Google APIs Client Library for Go") + (description + "Package api is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of +sub-packages. +") + (license license:bsd-3))) + +(define-public go-google-golang-org-genproto-0.0.0-20200729003335-053ba62fc06f + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20200729003335-053ba62fc06f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1h34qgr4lqy1l0niay3gzqh6pc63y2xh1mmp8757y8jsrdz1s5fv")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.24.0" + ,go-google-golang-org-protobuf-1.24.0) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-golang-protobuf-1.4.1" + ,go-github-com-golang-protobuf-1.4.1))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-google-golang-org-grpc-1.30.0 + (package + (name "go-google-golang-org-grpc") + (version "1.30.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "05pb9xrxd7kpbi8zzby90f87b6sxq65nmpgqx5h3255whmmpzbi9")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" + ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.3.3" + ,go-github-com-golang-protobuf-1.3.3) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-envoyproxy-go-control-plane-0.9.4" + ,go-github-com-envoyproxy-go-control-plane-0.9.4) + ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" + ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-cloud-google-com-go-0.62.0 + (package + (name "go-cloud-google-com-go") + (version "0.62.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-cloud-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "00x1nlq4fvvxrwx24firscav511qwck3zl6ghs9p6zzzixla8r5h")))) + (build-system go-build-system) + (arguments '(#:import-path "cloud.google.com/go")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.25.0" + ,go-google-golang-org-protobuf-1.25.0) + ("go-google-golang-org-grpc-1.30.0" ,go-google-golang-org-grpc-1.30.0) + ("go-google-golang-org-genproto-0.0.0-20200729003335-053ba62fc06f" + ,go-google-golang-org-genproto-0.0.0-20200729003335-053ba62fc06f) + ("go-google-golang-org-api-0.29.0" ,go-google-golang-org-api-0.29.0) + ("go-golang-org-x-tools-0.0.0-20200729194436-6467de6f59a7" + ,go-golang-org-x-tools-0.0.0-20200729194436-6467de6f59a7) + ("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) + ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" + ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) + ("go-golang-org-x-net-0.0.0-20200707034311-ab3426394381" + ,go-golang-org-x-net-0.0.0-20200707034311-ab3426394381) + ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" + ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) + ("go-go-opencensus-io-0.22.4" ,go-go-opencensus-io-0.22.4) + ("go-github-com-jstemmer-go-junit-report-0.9.1" + ,go-github-com-jstemmer-go-junit-report-0.9.1) + ("go-github-com-googleapis-gax-go-v2-2.0.5" + ,go-github-com-googleapis-gax-go-v2-2.0.5) + ("go-github-com-google-pprof-0.0.0-20200708004538-1a94d8640e99" + ,go-github-com-google-pprof-0.0.0-20200708004538-1a94d8640e99) + ("go-github-com-google-martian-v3-3.0.0" + ,go-github-com-google-martian-v3-3.0.0) + ("go-github-com-google-go-cmp-0.5.1" + ,go-github-com-google-go-cmp-0.5.1) + ("go-github-com-golang-protobuf-1.4.2" + ,go-github-com-golang-protobuf-1.4.2) + ("go-github-com-golang-mock-1.4.3" ,go-github-com-golang-mock-1.4.3) + ("go-cloud-google-com-go-storage-1.10.0" + ,go-cloud-google-com-go-storage-1.10.0))) + (home-page "https://cloud.google.com/go") + (synopsis "Google Cloud Client Libraries for Go") + (description + "Package cloud is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +of sub-packages. +") + (license license:asl2.0))) + +(define-public go-github-com-google-go-cmp-0.5.1 + (package + (name "go-github-com-google-go-cmp") + (version "0.5.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1wjdid59brciv09agxgmqac5k9ywg63nhzb0yi9anmqpl38gps0p")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") + (license license:bsd-3))) + +(define-public go-github-com-googleapis-gax-go-v2-2.0.5 + (package + (name "go-github-com-googleapis-gax-go-v2") + (version "2.0.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/gax-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1lxawwngv6miaqd25s3ba0didfzylbwisd2nz7r4gmbmin6jsjrx")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/googleapis/gax-go/v2")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.19.0" + ,go-google-golang-org-grpc-1.19.0))) + (home-page "https://github.com/googleapis/gax-go") + (synopsis #f) + (description + "Package gax contains a set of modules which aid the development of APIs +for clients and servers based on gRPC and Google API conventions. +") + (license license:bsd-3))) + +(define-public go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6 + (package + (name "go-github-com-golang-groupcache") + (version "0.0.0-20190702054246-869f871628b6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/groupcache") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0r4nk8129bvx50qb4xzjaay39b2h6k7cbdqqzdlanmc82ygczsbw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/groupcache")) + (home-page "https://github.com/golang/groupcache") + (synopsis "groupcache") + (description + "Package groupcache provides a data loading mechanism with caching +and de-duplication that works across a set of peer processes. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190502145724-3ef323f4f1fd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "15iw4gjvrnrx98rlny1qcaprp3577rh2b77byb38dr6m3q42rvc6")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6 + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20190227155943-e225da77a7e6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0bh3583smcfw6jw3w6lp0za93rz7hpxfdz8vhxng75b7a6vdlw4p")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the +ones provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20190425155659-357c62f0e4bb") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1h1a0wys83cc86s4w2hqmz78ixijw8f7qchmiwdv5xjvpg0i27c2")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" + ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) + ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) + ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" + ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) + ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" + ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) + ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" + ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd) + ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" + ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) + ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" + ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-google-golang-org-grpc-1.20.1 + (package + (name "go-google-golang-org-grpc") + (version "1.20.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0rj3fs6jillapiwnpkfn3v2jbl7a3zsb0lys4srswl26hjijviqq")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" + ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) + ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" + ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) + ("go-google-golang-org-appengine-1.1.0" + ,go-google-golang-org-appengine-1.1.0) + ("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" + ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" + ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0) + ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-client9-misspell-0.3.4" + ,go-github-com-client9-misspell-0.3.4) + ("go-github-com-burntsushi-toml-0.3.1" + ,go-github-com-burntsushi-toml-0.3.1) + ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-go-opencensus-io-0.22.4 + (package + (name "go-go-opencensus-io") + (version "0.22.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/census-instrumentation/opencensus-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "10skbvs4yxjm3z10yfg5cj2mdzjsna87qk1icp9xv0iwp8wzq6h0")))) + (build-system go-build-system) + (arguments '(#:import-path "go.opencensus.io")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.20.1" ,go-google-golang-org-grpc-1.20.1) + ("go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb" + ,go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb) + ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) + ("go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd" + ,go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd) + ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" + ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) + ("go-github-com-stretchr-testify-1.4.0" + ,go-github-com-stretchr-testify-1.4.0) + ("go-github-com-google-go-cmp-0.3.0" + ,go-github-com-google-go-cmp-0.3.0) + ("go-github-com-golang-protobuf-1.3.1" + ,go-github-com-golang-protobuf-1.3.1) + ("go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6" + ,go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6))) + (home-page "https://go.opencensus.io") + (synopsis "OpenCensus Libraries for Go") + (description "Package opencensus contains Go support for OpenCensus. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b + (package + (name "go-golang-org-x-lint") + (version "0.0.0-20200302205851-738671d3881b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/lint") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0jkiz4py59jjnkyxbxifpf7bsar11lbgmj5jiq2kic5k03shkn9c")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/lint")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7" + ,go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7))) + (home-page "https://golang.org/x/lint") + (synopsis "Installation") + (description "Package lint contains a linter for Go source code. +") + (license license:bsd-3))) + +(define-public go-cloud-google-com-go-0.34.0 + (package + (name "go-cloud-google-com-go") + (version "0.34.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-cloud-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1kclgclwar3r37zbvb9gg3qxbgzkb50zk3s9778zlh2773qikmai")))) + (build-system go-build-system) + (arguments '(#:import-path "cloud.google.com/go")) + (home-page "https://cloud.google.com/go") + (synopsis "Google Cloud Client Libraries for Go") + (description + "Package cloud is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +of sub-packages. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190108225652-1e06a53dbb7e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0lpqqvdccby48nixihvmn8ig1z48b950m1bxfqxn78air308qc3j")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4 + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20181221193216-37e7f081c4d4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1bb0mw6ckb1k7z8v3iil2qlqwfj408fvvp8m1cik2b46p7snyjhm")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the +ones provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d + (package + (name "go-golang-org-x-oauth2") + (version "0.0.0-20200107190931-bf48bf16ab8d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/oauth2") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1sirdib60zwmh93kf9qrx51r8544k1p9rs5mk0797wibz3m4mrdg")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/oauth2")) + (propagated-inputs + `(("go-google-golang-org-appengine-1.4.0" + ,go-google-golang-org-appengine-1.4.0) + ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" + ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) + ("go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e" + ,go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e) + ("go-cloud-google-com-go-0.34.0" ,go-cloud-google-com-go-0.34.0))) + (home-page "https://golang.org/x/oauth2") + (synopsis "OAuth2 for Go") + (description + "Package oauth2 provides support for making +OAuth2 authorized and authenticated HTTP requests, +as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +It can additionally grant authorization with Bearer JWT. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20200803210538-64077c9b5642 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200803210538-64077c9b5642") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1pdrkim9v0wbxipl586d29vz4ci9xib0f02g6yv7c0nang627pag")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-yuin-goldmark-1.1.32 + (package + (name "go-github-com-yuin-goldmark") + (version "1.1.32") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/yuin/goldmark") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03i9yq6n3yvn5v70xi6x3pn49ndy8zm4217ihwwhlw2nkwhny7a5")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/yuin/goldmark")) + (home-page "https://github.com/yuin/goldmark") + (synopsis "goldmark") + (description + "Package goldmark implements functions to convert markdown text to a desired format. +") + (license license:expat))) + +(define-public go-golang-org-x-net-0.0.0-20200625001655-4c5254603344 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20200625001655-4c5254603344") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1da0a1m488d95vggpi52dkag98n5671ml6sn80nwv6lgbmdx8qbq")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" + ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) + ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" + ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208 + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20200625203802-6e8e738ad208") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1avk27pszd5l5df6ff7j78wgla46ir1hhy2jwfl9a3c0ys602yx9")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the +ones provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20200804011535-6c149bb5ef0d + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20200804011535-6c149bb5ef0d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1l244hp5n0qff7nmvcffggjv7jm4061g63g76z967zvdqcxh23i2")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) + ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" + ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) + ("go-golang-org-x-net-0.0.0-20200625001655-4c5254603344" + ,go-golang-org-x-net-0.0.0-20200625001655-4c5254603344) + ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) + ("go-github-com-yuin-goldmark-1.1.32" + ,go-github-com-yuin-goldmark-1.1.32))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-google-golang-org-genproto-0.0.0-20200804131852-c06518451d9c + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20200804131852-c06518451d9c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wl9bhr94yf0b8lc947zr0iwm3l20irzy869xczfd6z0a1g54gsa")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.24.0" + ,go-google-golang-org-protobuf-1.24.0) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-golang-protobuf-1.4.1" + ,go-github-com-golang-protobuf-1.4.1))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-google-golang-org-api-0.30.0 + (package + (name "go-google-golang-org-api") + (version "0.30.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-api-go-client") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1vh5rrc6hvzh1rqawrwr4nyilnr3dgqx1pr2njjzdg0prfmflm5p")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/api")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.31.0" ,go-google-golang-org-grpc-1.31.0) + ("go-google-golang-org-genproto-0.0.0-20200804131852-c06518451d9c" + ,go-google-golang-org-genproto-0.0.0-20200804131852-c06518451d9c) + ("go-google-golang-org-appengine-1.6.6" + ,go-google-golang-org-appengine-1.6.6) + ("go-golang-org-x-tools-0.0.0-20200804011535-6c149bb5ef0d" + ,go-golang-org-x-tools-0.0.0-20200804011535-6c149bb5ef0d) + ("go-golang-org-x-sys-0.0.0-20200803210538-64077c9b5642" + ,go-golang-org-x-sys-0.0.0-20200803210538-64077c9b5642) + ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" + ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) + ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" + ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) + ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" + ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) + ("go-go-opencensus-io-0.22.4" ,go-go-opencensus-io-0.22.4) + ("go-github-com-googleapis-gax-go-v2-2.0.5" + ,go-github-com-googleapis-gax-go-v2-2.0.5) + ("go-github-com-google-go-cmp-0.5.1" + ,go-github-com-google-go-cmp-0.5.1) + ("go-cloud-google-com-go-0.62.0" ,go-cloud-google-com-go-0.62.0))) + (home-page "https://google.golang.org/api") + (synopsis "Google APIs Client Library for Go") + (description + "Package api is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of +sub-packages. +") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-1.24.0 + (package + (name "go-google-golang-org-protobuf") + (version "1.24.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0x3qyn3rizbs671gs7f8v50rmiwf9h7kbaradpivw9718mhbg1gn")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" + ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.1" + ,go-github-com-golang-protobuf-1.4.1))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-google-golang-org-genproto-0.0.0-20200825200019-8632dd797987 + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20200825200019-8632dd797987") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0h8s1mz8pbdiwmv2g61afa7f05zin3m6mdy2fmny6wcidz4w2i3k")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.24.0" + ,go-google-golang-org-protobuf-1.24.0) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-golang-protobuf-1.4.1" + ,go-github-com-golang-protobuf-1.4.1))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f + (package + (name "go-github-com-cncf-udpa-go") + (version "0.0.0-20191209042840-269d4d468f6f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cncf/udpa") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0i1jiaw2k3hlwwmg4hap81vb4s1p25xp9kdfww37v0fbgjariccs")))) + (build-system go-build-system) + (arguments + '(#:import-path + "github.com/cncf/udpa/go" + #:unpack-path + "github.com/cncf/udpa")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2) + ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" + ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0))) + (home-page "https://github.com/cncf/udpa") + (synopsis "Description") + (description + "This library has been deprecated in favor of @code{github.com/cncf/xds/go}. All users are recommended to switch their imports.") + (license license:asl2.0))) + +(define-public go-github-com-envoyproxy-go-control-plane-0.9.4 + (package + (name "go-github-com-envoyproxy-go-control-plane") + (version "0.9.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/envoyproxy/go-control-plane") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0m0crzx70lp7vz13v20wxb1fcfdnzp7h3mkh3bn6a8mbfz6w5asj")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) + ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" + ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) + ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" + ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) + ("go-github-com-google-go-cmp-0.2.0" + ,go-github-com-google-go-cmp-0.2.0) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2) + ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" + ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) + ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" + ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f) + ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" + ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) + (home-page "https://github.com/envoyproxy/go-control-plane") + (synopsis "control-plane") + (description + "This repository contains a Go-based implementation of an API server that +implements the discovery service APIs defined in +@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") + (license license:asl2.0))) + +(define-public go-github-com-golang-protobuf-1.3.3 + (package + (name "go-github-com-golang-protobuf") + (version "1.3.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1cyyr52yhj3fzrily3rmsbqyj8va4ld75lmry0857m39rgpv8sy1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-google-golang-org-grpc-1.31.0 + (package + (name "go-google-golang-org-grpc") + (version "1.31.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1y3lilpipmaysjk4skbzw1qa6lv05vzixzw9lg9x73xfb01q4nyz")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" + ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.3.3" + ,go-github-com-golang-protobuf-1.3.3) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-envoyproxy-go-control-plane-0.9.4" + ,go-github-com-envoyproxy-go-control-plane-0.9.4) + ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" + ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-cloud-google-com-go-0.65.0 + (package + (name "go-cloud-google-com-go") + (version "0.65.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-cloud-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0xrcg39jrw90gq8vl8pfq63sp3bkak04wh392yj5rh4lc1a4lxjq")))) + (build-system go-build-system) + (arguments '(#:import-path "cloud.google.com/go")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.31.0" ,go-google-golang-org-grpc-1.31.0) + ("go-google-golang-org-genproto-0.0.0-20200825200019-8632dd797987" + ,go-google-golang-org-genproto-0.0.0-20200825200019-8632dd797987) + ("go-google-golang-org-api-0.30.0" ,go-google-golang-org-api-0.30.0) + ("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" + ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) + ("go-golang-org-x-tools-0.0.0-20200825202427-b303f430e36d" + ,go-golang-org-x-tools-0.0.0-20200825202427-b303f430e36d) + ("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) + ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" + ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) + ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" + ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) + ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" + ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) + ("go-go-opencensus-io-0.22.4" ,go-go-opencensus-io-0.22.4) + ("go-github-com-jstemmer-go-junit-report-0.9.1" + ,go-github-com-jstemmer-go-junit-report-0.9.1) + ("go-github-com-googleapis-gax-go-v2-2.0.5" + ,go-github-com-googleapis-gax-go-v2-2.0.5) + ("go-github-com-google-pprof-0.0.0-20200708004538-1a94d8640e99" + ,go-github-com-google-pprof-0.0.0-20200708004538-1a94d8640e99) + ("go-github-com-google-martian-v3-3.0.0" + ,go-github-com-google-martian-v3-3.0.0) + ("go-github-com-google-go-cmp-0.5.1" + ,go-github-com-google-go-cmp-0.5.1) + ("go-github-com-golang-protobuf-1.4.2" + ,go-github-com-golang-protobuf-1.4.2) + ("go-github-com-golang-mock-1.4.4" ,go-github-com-golang-mock-1.4.4) + ("go-cloud-google-com-go-storage-1.10.0" + ,go-cloud-google-com-go-storage-1.10.0))) + (home-page "https://cloud.google.com/go") + (synopsis "Google Cloud Client Libraries for Go") + (description + "Package cloud is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +of sub-packages. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200323222414-85ca7c5b95cd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1504qkgbhhm4f0bhk77v2r1lj6x171ay5m79alkg78wjb5cign5l")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20200822124328-c89045814202 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20200822124328-c89045814202") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1g3wxilwbcbf2xj20y3mpxh38jka4fyhl48akfqf00vr48zmx96x")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" + ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) + ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" + ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-google-golang-org-appengine-1.6.6 + (package + (name "go-google-golang-org-appengine") + (version "1.6.6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/appengine") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "15c38h6fbv06cnkr6yknygfrpibyms2mya4w0l29kaxf42jn1qi5")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/appengine")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) + ("go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65" + ,go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65) + ("go-github-com-golang-protobuf-1.3.1" + ,go-github-com-golang-protobuf-1.3.1))) + (home-page "https://google.golang.org/appengine") + (synopsis "Go App Engine packages") + (description + "Package appengine provides basic functionality for Google App Engine. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-oauth2-0.0.0-20210402161424-2e8d93401602 + (package + (name "go-golang-org-x-oauth2") + (version "0.0.0-20210402161424-2e8d93401602") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/oauth2") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0j1crxa78gip3hxrds5jngi034j4zm4q3z7r8bqs3rjxnwcki9ig")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/oauth2")) + (propagated-inputs + `(("go-google-golang-org-appengine-1.6.6" + ,go-google-golang-org-appengine-1.6.6) + ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" + ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) + ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) + (home-page "https://golang.org/x/oauth2") + (synopsis "OAuth2 for Go") + (description + "Package oauth2 provides support for making +OAuth2 authorized and authenticated HTTP requests, +as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +It can additionally grant authorization with Bearer JWT. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20210220032951-036812b2e83c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1gl202py3s4gl6arkaxlf8qa6f0jyyg2f95m6f89qnfmr416h85b")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the +ones provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20210403161142-5e06dd20ab57 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20210403161142-5e06dd20ab57") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1acdn06771rxjg38ql9wl8dr1vf23nazjnvk6105z3hddnh14fgb")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.3.1 + (package + (name "go-github-com-golang-protobuf") + (version "1.3.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "15am4s4646qy6iv0g3kkqq52rzykqjhm4bf08dk0fy2r58knpsyl")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190603091049-60506f45cf65") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0827yz7irmnzcdhw8vg74819jaw5ahs4w4v5fvzgfvnxyb9f6zcc")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-text-0.3.2 + (package + (name "go-golang-org-x-text") + (version "0.3.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0flv9idw0jm5nm8lx25xqanbkqgfiym6619w575p7nrdh0riqwqh")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/text")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" + ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) + (home-page "https://golang.org/x/text") + (synopsis "Go Text") + (description + "text is a repository of text-related packages related to internationalization +(i18n) and localization (l10n), such as character encodings, text +transformations, and locale-specific text handling. +") + (license license:bsd-3))) + +(define-public go-google-golang-org-appengine-1.6.7 + (package + (name "go-google-golang-org-appengine") + (version "1.6.7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/appengine") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1wkipg7xxc0ha5p6c3bj0vpgq38l18441n5l6zxdhx0gzvz5z1hs")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/appengine")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) + ("go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65" + ,go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65) + ("go-github-com-golang-protobuf-1.3.1" + ,go-github-com-golang-protobuf-1.3.1))) + (home-page "https://google.golang.org/appengine") + (synopsis "Go App Engine packages") + (description + "Package appengine provides basic functionality for Google App Engine. +") + (license license:asl2.0))) + +(define-public go-github-com-golang-protobuf-1.5.1 + (package + (name "go-github-com-golang-protobuf") + (version "1.5.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1qx8gvsdx1w27vamw6wn1jns2d8pz0g9sji3l0hvs4wl1jf7p32d")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.26.0" + ,go-google-golang-org-protobuf-1.26.0) + ("go-github-com-google-go-cmp-0.5.5" + ,go-github-com-google-go-cmp-0.5.5))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-golang-org-x-mod-0.1.1-0.20191105210325-c90efee705ee + (package + (name "go-golang-org-x-mod") + (version "0.1.1-0.20191105210325-c90efee705ee") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/mod") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0i5md645rmcy5z5ij9ng428k9rz4g3k1kjy3blsq1264rn426gdf")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/mod")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" + ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) + ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" + ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) + (home-page "https://golang.org/x/mod") + (synopsis "mod") + (description + "This repository holds packages for writing tools +that work directly with Go module mechanics. +That is, it is for direct manipulation of Go modules themselves.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7 + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20200130002326-2f3ba24bd6e7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0j3nnmlwnbivf0h9x89vlp8ji3ha41v96bj33cxwmrrjnxq543ww")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" + ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) + ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" + ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) + ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" + ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) + ("go-golang-org-x-mod-0.1.1-0.20191105210325-c90efee705ee" + ,go-golang-org-x-mod-0.1.1-0.20191105210325-c90efee705ee))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5 + (package + (name "go-golang-org-x-lint") + (version "0.0.0-20201208152925-83fdc39ff7b5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/lint") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ms3rs5hvpnm9bxbr5f9743i7hn2bbmqdmvzxq6nmi0f24ypv1l3")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/lint")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7" + ,go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7))) + (home-page "https://golang.org/x/lint") + (synopsis "Installation") + (description "Package lint contains a linter for Go source code. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20210315160823-c6e025ad8005 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20210315160823-c6e025ad8005") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1dy8j3gvbkng0vy2wgdiy48871j4vchgsks2ggfxcx4jg32d2qsr")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20201119102817-f84b799fce68") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1dvhqian5byzkcg1bnqzygqa6ccc6krc2q7j12pp1vhl3y7znnsg")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1 + (package + (name "go-golang-org-x-term") + (version "0.0.0-20201126162022-7de9c90e9dd1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/term") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ba252xmv6qsvf1w1gcy98mngrj0vd4inbjw0lsklqvva65nljna")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/term")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" + ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) + (home-page "https://golang.org/x/term") + (synopsis "Go terminal/console support") + (description + "Package term provides support functions for dealing with terminals, as +commonly found on UNIX systems. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20210316092652-d523dce5a7f4 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20210316092652-d523dce5a7f4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "01hhvh6msyg11adxhgjwzbv4jprq5ajzkxxb16ln3dqv4na9b2k1")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) + ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" + ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) + ("go-golang-org-x-sys-0.0.0-20210315160823-c6e025ad8005" + ,go-golang-org-x-sys-0.0.0-20210315160823-c6e025ad8005))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20210320140829-1e4c9ba3b0c4 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20210320140829-1e4c9ba3b0c4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0nrxjq5j058sba9s5g65l5rdw6b4f335lxa7hhcf57paklym1qgr")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-text-0.3.5 + (package + (name "go-golang-org-x-text") + (version "0.3.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "082s9d7wnh1aa2v08g3h5z4if2f8hl4y01pb788qsvab9329lj0w")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/text")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" + ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) + (home-page "https://golang.org/x/text") + (synopsis "Go Text") + (description + "text is a repository of text-related packages related to internationalization +(i18n) and localization (l10n), such as character encodings, text +transformations, and locale-specific text handling. +") + (license license:bsd-3))) + +(define-public go-github-com-yuin-goldmark-1.2.1 + (package + (name "go-github-com-yuin-goldmark") + (version "1.2.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/yuin/goldmark") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12rsnsf65drcp0jfw2jl9w589vsn3pxdk1zh3v9q908iigngrcmy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/yuin/goldmark")) + (home-page "https://github.com/yuin/goldmark") + (synopsis "goldmark") + (description + "Package goldmark implements functions to convert markdown text to a desired format. +") + (license license:expat))) + +(define-public go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20191011191535-87dc89f01550") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0z4i1m2yn3f31ci7wvcm2rxkx2yiv7a78mfzklncmsz2k97rlh2g")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" + ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) + ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" + ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190620200207-3b0461eec859") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0l00c8l0a8xnv6qdpwfzxxsr58jggacgzdrwiprrfx2xqm37b6d5")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7 + (package + (name "go-golang-org-x-xerrors") + (version "0.0.0-20190717185122-a985d3407aa7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/xerrors") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "00wzr5w8aadipgc3rkk8f11i41znskfj9ix5nhhaxyg7isrslgcj")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/xerrors")) + (home-page "https://golang.org/x/xerrors") + (synopsis #f) + (description + "Package xerrors implements functions to manipulate errors. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20191119224855-298f0cb1881e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0l4pqwib2wnfnix6nvxl0yrq87ipi7ff1rz6z5bxfzy9dki1nzmv")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7" + ,go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7) + ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" + ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) + ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" + ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898 + (package + (name "go-golang-org-x-xerrors") + (version "0.0.0-20191011141410-1b5146add898") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/xerrors") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0w2akj91krxjag0xdhsg78470888nicc5ismc2ap9jqpss6v1zih")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/xerrors")) + (home-page "https://golang.org/x/xerrors") + (synopsis #f) + (description + "Package xerrors implements functions to manipulate errors. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-mod-0.3.0 + (package + (name "go-golang-org-x-mod") + (version "0.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/mod") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ldgbx2zpprbsfn6p8pfgs4nn87gwbfcv2z0fa7n8alwsq2yw78q")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/mod")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" + ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) + ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" + ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) + ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" + ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) + (home-page "https://golang.org/x/mod") + (synopsis "mod") + (description + "This repository holds packages for writing tools +that work directly with Go module mechanics. +That is, it is for direct manipulation of Go modules themselves.") + (license license:bsd-3))) + +(define-public go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20200622213623-75b288015ac9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18vlncvvs11ds3zaaziqjlg5s2vcwi3496nn6qv7p0dp94j5pwa2")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" + ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) + ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" + ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200930185726-fdedc70b468f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1njlfhjbvi4lxvjbq8zswrb0y0q4jd2p6x51h1q6vmyzi9af6869")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20201021035429-f5854403a974 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20201021035429-f5854403a974") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1vw63zpmhi337f3gc432x3wkib4j2ia8dy7if31wxwb9dgqvy222")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) + ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" + ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) + ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" + ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9 + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20201020160332-67f06af15bc9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "093p4panc808ak5bamzz7m9nb0xxib7778jpnr6f0xkz1n4fzyw5")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the +ones provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20210119212857-b64e53b001e4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "16in6bazi0frdkzhqxyvmw7qcvzjavq21dnz9bmrqq8d4dpd2j44")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1 + (package + (name "go-golang-org-x-xerrors") + (version "0.0.0-20200804184101-5ec99f83aff1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/xerrors") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1dbzc3gmf2haazpv7cgmv97rq40g2xzwbglc17vas8dwhgwgwrzb")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/xerrors")) + (home-page "https://golang.org/x/xerrors") + (synopsis #f) + (description + "Package xerrors implements functions to manipulate errors. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.1.0 + (package + (name "go-golang-org-x-tools") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1asrm22kv5x891qkbpap8alg612k321jbs1akc0vwsan251gm507")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" + ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) + ("go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4" + ,go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4) + ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" + ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) + ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" + ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) + ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) + ("go-github-com-yuin-goldmark-1.2.1" + ,go-github-com-yuin-goldmark-1.2.1))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-1.26.0-rc.1 + (package + (name "go-google-golang-org-protobuf") + (version "1.26.0-rc.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1m2jp247qcnix42jncn0q7pwrjgbhiqllb1115hfsz40xfnfhp8j")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.5.5" + ,go-github-com-google-go-cmp-0.5.5))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.5.0 + (package + (name "go-github-com-golang-protobuf") + (version "1.5.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1craaxv34g4g8q3yrv6pr28fx9ihnk7hj5gnbmxcrhcp78423lnf")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.26.0-rc.1" + ,go-google-golang-org-protobuf-1.26.0-rc.1) + ("go-github-com-google-go-cmp-0.5.5" + ,go-github-com-google-go-cmp-0.5.5))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-github-com-google-go-cmp-0.5.5 + (package + (name "go-github-com-google-go-cmp") + (version "0.5.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12fmkdhyv5d4is8s57k78j097zb0phlgnrkqc03agiszxlid69x7")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-1.26.0 + (package + (name "go-google-golang-org-protobuf") + (version "1.26.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0xq6phaps6d0vcv13ga59gzj4306l0ki9kikhmb52h6pq0iwfqlz")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.5.5" + ,go-github-com-google-go-cmp-0.5.5) + ("go-github-com-golang-protobuf-1.5.0" + ,go-github-com-golang-protobuf-1.5.0))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-google-golang-org-genproto-0.0.0-20210402141018-6c239bbf2bb1 + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20210402141018-6c239bbf2bb1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1xih6y4dwjj939ilwc5s6w419kjnkn1hw33jsgml0nkjcnac74wc")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.26.0" + ,go-google-golang-org-protobuf-1.26.0) + ("go-google-golang-org-grpc-1.36.1" ,go-google-golang-org-grpc-1.36.1) + ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) + ("go-golang-org-x-text-0.3.5" ,go-golang-org-x-text-0.3.5) + ("go-golang-org-x-sys-0.0.0-20210320140829-1e4c9ba3b0c4" + ,go-golang-org-x-sys-0.0.0-20210320140829-1e4c9ba3b0c4) + ("go-golang-org-x-net-0.0.0-20210316092652-d523dce5a7f4" + ,go-golang-org-x-net-0.0.0-20210316092652-d523dce5a7f4) + ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" + ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) + ("go-github-com-golang-protobuf-1.5.1" + ,go-github-com-golang-protobuf-1.5.1))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad + (package + (name "go-github-com-envoyproxy-go-control-plane") + (version "0.9.9-0.20201210154907-fd9021fe5dad") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/envoyproxy/go-control-plane") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0piyk6pk36x2qr3bhys2k240pfwz3bv64fhi2l0vx1mzwiddapbm")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.23.0" + ,go-google-golang-org-protobuf-1.23.0) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" + ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) + ("go-github-com-stretchr-testify-1.5.1" + ,go-github-com-stretchr-testify-1.5.1) + ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" + ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.2" + ,go-github-com-golang-protobuf-1.4.2) + ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" + ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) + ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" + ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403) + ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" + ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) + (home-page "https://github.com/envoyproxy/go-control-plane") + (synopsis "control-plane") + (description + "This repository contains a Go-based implementation of an API server that +implements the discovery service APIs defined in +@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") + (license license:asl2.0))) + +(define-public go-google-golang-org-grpc-1.36.1 + (package + (name "go-google-golang-org-grpc") + (version "1.36.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0l3prxp18lb0pagqg4l6c9i0l6gakfxgf6vxcsv589i0xsxw8ivm")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.25.0" + ,go-google-golang-org-protobuf-1.25.0) + ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" + ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) + ("go-github-com-google-go-cmp-0.5.0" + ,go-github-com-google-go-cmp-0.5.0) + ("go-github-com-golang-protobuf-1.4.2" + ,go-github-com-golang-protobuf-1.4.2) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad" + ,go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad) + ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" + ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-google-golang-org-api-0.44.0 + (package + (name "go-google-golang-org-api") + (version "0.44.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-api-go-client") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0sh6qzc3pnyliy10afrmzpfbbbm2mwcyc6mp5422xhgp3p2x370x")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/api")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.36.1" ,go-google-golang-org-grpc-1.36.1) + ("go-google-golang-org-genproto-0.0.0-20210402141018-6c239bbf2bb1" + ,go-google-golang-org-genproto-0.0.0-20210402141018-6c239bbf2bb1) + ("go-google-golang-org-appengine-1.6.7" + ,go-google-golang-org-appengine-1.6.7) + ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) + ("go-golang-org-x-sys-0.0.0-20210403161142-5e06dd20ab57" + ,go-golang-org-x-sys-0.0.0-20210403161142-5e06dd20ab57) + ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" + ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) + ("go-golang-org-x-oauth2-0.0.0-20210402161424-2e8d93401602" + ,go-golang-org-x-oauth2-0.0.0-20210402161424-2e8d93401602) + ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" + ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) + ("go-go-opencensus-io-0.23.0" ,go-go-opencensus-io-0.23.0) + ("go-github-com-googleapis-gax-go-v2-2.0.5" + ,go-github-com-googleapis-gax-go-v2-2.0.5) + ("go-github-com-google-go-cmp-0.5.5" + ,go-github-com-google-go-cmp-0.5.5) + ("go-cloud-google-com-go-0.81.0" ,go-cloud-google-com-go-0.81.0))) + (home-page "https://google.golang.org/api") + (synopsis "Google APIs Client Library for Go") + (description + "Package api is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of +sub-packages. +") + (license license:bsd-3))) + +(define-public go-github-com-envoyproxy-go-control-plane-0.9.0 + (package + (name "go-github-com-envoyproxy-go-control-plane") + (version "0.9.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/envoyproxy/go-control-plane") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1dpvi4wnycyj6hnai78fr8aj58b27b1vcwdp3v0id5v22kvgr3xw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.23.0" ,go-google-golang-org-grpc-1.23.0) + ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" + ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) + ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" + ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2) + ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" + ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) + ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" + ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) + (home-page "https://github.com/envoyproxy/go-control-plane") + (synopsis "control-plane") + (description + "This repository contains a Go-based implementation of an API server that +implements the discovery service APIs defined in +@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") + (license license:asl2.0))) + +(define-public go-google-golang-org-grpc-1.25.1 + (package + (name "go-google-golang-org-grpc") + (version "1.25.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0a136ij9p11yj1vx892yqy40jkh7n5nfbpdvhgydcj823mx51c6f")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" + ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-github-com-google-go-cmp-0.2.0" + ,go-github-com-google-go-cmp-0.2.0) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2) + ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" + ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) + ("go-github-com-envoyproxy-go-control-plane-0.9.0" + ,go-github-com-envoyproxy-go-control-plane-0.9.0))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403 + (package + (name "go-github-com-cncf-udpa-go") + (version "0.0.0-20201120205902-5459f2c99403") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cncf/udpa") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0i3al193dsp91j7iywqrm6fr56y2sz51ci4vf19mb3j4n2x44gsi")))) + (build-system go-build-system) + (arguments + '(#:import-path + "github.com/cncf/udpa/go" + #:unpack-path + "github.com/cncf/udpa")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2) + ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" + ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0))) + (home-page "https://github.com/cncf/udpa") + (synopsis "Description") + (description + "This library has been deprecated in favor of @code{github.com/cncf/xds/go}. All users are recommended to switch their imports.") + (license license:asl2.0))) + +(define-public go-github-com-stretchr-testify-1.5.1 + (package + (name "go-github-com-stretchr-testify") + (version "1.5.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "09r89m1wy4cjv2nps1ykp00qjpi0531r07q3s34hr7m6njk4srkl")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) + ("go-github-com-stretchr-objx-0.1.0" + ,go-github-com-stretchr-objx-0.1.0) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.0" + ,go-github-com-davecgh-go-spew-1.1.0))) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +") + (license license:expat))) + +(define-public go-github-com-envoyproxy-go-control-plane-0.9.9-0.20210217033140-668b12f5399d + (package + (name "go-github-com-envoyproxy-go-control-plane") + (version "0.9.9-0.20210217033140-668b12f5399d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/envoyproxy/go-control-plane") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0vmhc8ii081x1k2qw4kji7wjyg6l25zp1y6qxi27wq8m341i4rzb")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.23.0" + ,go-google-golang-org-protobuf-1.23.0) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" + ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) + ("go-github-com-stretchr-testify-1.5.1" + ,go-github-com-stretchr-testify-1.5.1) + ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" + ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.2" + ,go-github-com-golang-protobuf-1.4.2) + ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" + ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) + ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" + ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403) + ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" + ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) + (home-page "https://github.com/envoyproxy/go-control-plane") + (synopsis "control-plane") + (description + "This repository contains a Go-based implementation of an API server that +implements the discovery service APIs defined in +@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") + (license license:asl2.0))) + +(define-public go-google-golang-org-protobuf-1.23.0 + (package + (name "go-google-golang-org-protobuf") + (version "1.23.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03yan0m1v0zmlr935p4n24fd376mznsg85zy8sywbgisls4s1bzy")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.0" + ,go-github-com-golang-protobuf-1.4.0))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.4.2 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0m5z81im4nsyfgarjhppayk4hqnrwswr3nix9mj8pff8x9jvcjqw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.23.0" + ,go-google-golang-org-protobuf-1.23.0) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-github-com-google-uuid-1.1.2 + (package + (name "go-github-com-google-uuid") + (version "1.1.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/uuid") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1rbpfa0v0ly9sdnixcxhf79swki54ikgm1zkwwkj64p1ws66syqd")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/uuid")) + (home-page "https://github.com/google/uuid") + (synopsis "uuid") + (description "Package uuid generates and inspects UUIDs. +") + (license license:bsd-3))) + +(define-public go-github-com-google-go-cmp-0.5.0 + (package + (name "go-github-com-google-go-cmp") + (version "0.5.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "04pzp583p6b32y34c6jygfxarff9qjs39rarvfh6467z24sdd9k4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-1.22.0 + (package + (name "go-google-golang-org-protobuf") + (version "1.22.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0n7lc4m7kfvj01glc0gnjy0zsnsic7cxnbvlajy0h14cxbab87pj")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.0" + ,go-github-com-golang-protobuf-1.4.0))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.4.1 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0w7ks4vffnnkp0miwgc3chrsnmya45lzvpahb2wmw0jwhdp5kdx7")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.22.0" + ,go-google-golang-org-protobuf-1.22.0) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-github-com-census-instrumentation-opencensus-proto-0.2.1 + (package + (name "go-github-com-census-instrumentation-opencensus-proto") + (version "0.2.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/census-instrumentation/opencensus-proto") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19fcx3sc99i5dsklny6r073z5j20vlwn2xqm6di1q3b1xwchzqfj")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/census-instrumentation/opencensus-proto")) + (home-page "https://github.com/census-instrumentation/opencensus-proto") + (synopsis + "OpenCensus Proto - Language Independent Interface Types For OpenCensus") + (description + "Census provides a framework to define and collect stats against metrics and to +break those stats down across user-defined dimensions.") + (license license:asl2.0))) + +(define-public go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4 + (package + (name "go-github-com-prometheus-client-model") + (version "0.0.0-20190812154241-14fe0d1b01d4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/client_model") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0zdmk6rbbx39cvfz0r59v2jg5sg9yd02b4pds5n5llgvivi99550")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/client_model")) + (propagated-inputs + `(("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" + ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0))) + (home-page "https://github.com/prometheus/client_model") + (synopsis "Deprecation note") + (description + "This repository used to contain the code that defined both +the data model and the exposition format of Prometheus metrics.") + (license license:asl2.0))) + +(define-public go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20190311212946-11955173bddd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hlkai67w167wiyivkzd1fgqrnyxkb94l2c6kr51jwcscizfyfn3")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3 + (package + (name "go-golang-org-x-lint") + (version "0.0.0-20190313153728-d0100b6bd8b3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/lint") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0b0amr9x4ji66iv9ayfx7zrfx52k1m5g66qfcxkgj80qrb1y2yn7")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/lint")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" + ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd))) + (home-page "https://golang.org/x/lint") + (synopsis "Installation") + (description "Package lint contains a linter for Go source code. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20190423024810-112230192c58 + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20190423024810-112230192c58") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "05i2k43j2d0llq768hg5pf3hb2yhfzp9la1w5wp0rsnnzblr0lfn")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the +ones provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135 + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20190524140312-2c0ae7006135") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1lsi2ssxajclj3bciz2a41v1vjv768ja3v6wnbyhxy8xphwkp4fk")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" + ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-google-golang-org-grpc-1.23.0 + (package + (name "go-google-golang-org-grpc") + (version "1.23.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1cn33r2gclmq2v1ndpf1n5bmhf2qs8mms7ii5cnl6f9ch4r2c4k3")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" + ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) + ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" + ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) + ("go-google-golang-org-appengine-1.1.0" + ,go-google-golang-org-appengine-1.1.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-google-go-cmp-0.2.0" + ,go-github-com-google-go-cmp-0.2.0) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0) + ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-client9-misspell-0.3.4" + ,go-github-com-client9-misspell-0.3.4) + ("go-github-com-burntsushi-toml-0.3.1" + ,go-github-com-burntsushi-toml-0.3.1) + ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473 + (package + (name "go-github-com-envoyproxy-go-control-plane") + (version "0.9.1-0.20191026205805-5f8ba28d4473") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/envoyproxy/go-control-plane") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1f1s764rd41vd9vgk3r14h1m6fz6pdvxj6fd83q58gxifbc4q5w4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.23.0" ,go-google-golang-org-grpc-1.23.0) + ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" + ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) + ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" + ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2) + ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" + ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) + ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" + ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) + (home-page "https://github.com/envoyproxy/go-control-plane") + (synopsis "control-plane") + (description + "This repository contains a Go-based implementation of an API server that +implements the discovery service APIs defined in +@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") + (license license:asl2.0))) + +(define-public go-github-com-envoyproxy-protoc-gen-validate-0.1.0 + (package + (name "go-github-com-envoyproxy-protoc-gen-validate") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/envoyproxy/protoc-gen-validate") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0kxd3wwh3xwqk0r684hsy281xq4y71cd11d4q2hspcjbnlbwh7cy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/envoyproxy/protoc-gen-validate")) + (home-page "https://github.com/envoyproxy/protoc-gen-validate") + (synopsis "protoc-gen-validate (PGV)") + (description + "PGV is a protoc plugin to generate polyglot message validators. While protocol buffers effectively guarantee the types of structured data, they cannot enforce semantic rules for values. This plugin adds support to protoc-generated code to validate such constraints.") + (license license:asl2.0))) + +(define-public go-github-com-google-go-cmp-0.2.0 + (package + (name "go-github-com-google-go-cmp") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fbv0x27k9sn8svafc0hjwsnckk864lv4yi7bvzrxvmd3d5hskds")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.3.2 + (package + (name "go-github-com-golang-protobuf") + (version "1.3.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1k1wb4zr0qbwgpvz9q5ws9zhlal8hq7dmq62pwxxriksayl6hzym")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4 + (package + (name "go-golang-org-x-exp") + (version "0.0.0-20190121172915-509febef88a4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/exp") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "02isrh39z8znrp5znplzy0dip2gnrl3jm1355raliyvhnhg04j6q")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/exp")) + (home-page "https://golang.org/x/exp") + (synopsis "exp") + (description + "This subrepository holds experimental and deprecated (in the @code{old} +directory) packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961 + (package + (name "go-golang-org-x-lint") + (version "0.0.0-20190227174305-5b3e6a55c961") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/lint") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "04zp5vbds9nffmjg36wjpi5vg9zmf890yf78xxasai3ni637ivfw")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/lint")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" + ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c))) + (home-page "https://golang.org/x/lint") + (synopsis "Installation") + (description "Package lint contains a linter for Go source code. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190213061140-3a22650c66bd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12q6fgdkc0742vcms67nzadgdwvi3rnb1gx3vwkljhrvlnwvz7wc")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20181108010431-42b317875d0f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0mrjhk7al7yyh76x9flvxy4jm5jyqh2fxbxagpaazxn1xdgkaif3")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the +ones provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20180724234803-3673e40ba225") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0vx7mz18p480p7fh0w5jv6mfdbsswrlac1sz4i705q7q7ygz59lm")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-google-golang-org-appengine-1.4.0 + (package + (name "go-google-golang-org-appengine") + (version "1.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/appengine") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "06zl7w4sxgdq2pl94wy9ncii6h0z3szl4xpqds0sv3b3wbdlhbnn")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/appengine")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225" + ,go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0))) + (home-page "https://google.golang.org/appengine") + (synopsis "Go App Engine packages") + (description + "Package appengine provides basic functionality for Google App Engine. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20190226205152-f727befe758c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0rpcqw6z13qd33rbasg32zb0gdhgh5lzjla63r6g651zf6hpsak0")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-google-golang-org-appengine-1.4.0" + ,go-google-golang-org-appengine-1.4.0) + ("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" + ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) + ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" + ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-cloud-google-com-go-0.26.0 + (package + (name "go-cloud-google-com-go") + (version "0.26.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-cloud-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "149v3ci17g6wd2pm18mzcncq5qpl9hwdjnz3rlbn5rfidyn46la1")))) + (build-system go-build-system) + (arguments '(#:import-path "cloud.google.com/go")) + (home-page "https://cloud.google.com/go") + (synopsis "Google Cloud Client Libraries for Go") + (description + "Package cloud is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +of sub-packages. +") + (license license:asl2.0))) + +(define-public go-github-com-burntsushi-toml-0.3.1 + (package + (name "go-github-com-burntsushi-toml") + (version "0.3.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/BurntSushi/toml") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fjdwwfzyzllgiwydknf1pwjvy49qxfsczqx5gz3y0izs7as99j6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/BurntSushi/toml")) + (home-page "https://github.com/BurntSushi/toml") + (synopsis "TOML parser and encoder for Go with reflection") + (description + "Package toml implements decoding and encoding of TOML files. +") + (license license:expat))) + +(define-public go-github-com-client9-misspell-0.3.4 + (package + (name "go-github-com-client9-misspell") + (version "0.3.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/client9/misspell") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1vwf33wsc4la25zk9nylpbp9px3svlmldkm0bha4hp56jws4q9cs")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/client9/misspell")) + (home-page "https://github.com/client9/misspell") + (synopsis "Install") + (description + "Package misspell corrects commonly misspelled English words in source files. +") + (license license:expat))) + +(define-public go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b + (package + (name "go-github-com-golang-glog") + (version "0.0.0-20160126235308-23def4e6c14b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/glog") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0jb2834rw5sykfr937fxi8hxi2zy80sj2bdn9b3jb4b26ksqng30")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/glog")) + (home-page "https://github.com/golang/glog") + (synopsis "glog") + (description + "Package glog implements logging analogous to the Google-internal C++ INFO/ERROR/V setup. +It provides functions Info, Warning, Error, Fatal, plus formatting variants such as +Infof. It also provides V-style logging controlled by the -v and -vmodule=file=2 flags. +") + (license license:asl2.0))) + +(define-public go-github-com-golang-mock-1.1.1 + (package + (name "go-github-com-golang-mock") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/mock") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ap8wb6pdl6ccmdb43advjll2ly4sz26wsc3axw0hbrjrybybzgy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/mock")) + (home-page "https://github.com/golang/mock") + (synopsis "gomock") + (description + "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It +integrates well with Go's built-in @code{testing} package, but can be used in other +contexts too.") + (license license:asl2.0))) + +(define-public go-github-com-golang-protobuf-1.2.0 + (package + (name "go-github-com-golang-protobuf") + (version "1.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0kf4b59rcbb1cchfny2dm9jyznp8ri2hsb14n8iak1q8986xa0ab")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3 + (package + (name "go-golang-org-x-lint") + (version "0.0.0-20181026193005-c67002cb31c3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/lint") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0gymbggskjmphqxqcx4s0vnlcz7mygbix0vhwcwv5r67c0bf6765")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/lint")) + (home-page "https://golang.org/x/lint") + (synopsis "Installation") + (description "Package lint contains a linter for Go source code. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d + (package + (name "go-golang-org-x-net") + (version "0.0.0-20180826012351-8a410e7b638d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hp0l8f6fir5gmgrjq0mhh5ikc0rlrm72774228800kfwqjrxxny")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be + (package + (name "go-golang-org-x-oauth2") + (version "0.0.0-20180821212333-d2e6202438be") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/oauth2") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wbn75fd10485nb93bm4kqldqifdim5xqy4v7r5sdvimvf3fyhn7")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/oauth2")) + (home-page "https://golang.org/x/oauth2") + (synopsis "OAuth2 for Go") + (description + "Package oauth2 provides support for making +OAuth2 authorized and authenticated HTTP requests, +as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +It can additionally grant authorization with Bearer JWT. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20180314180146-1d60e4601c6f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "046jlanz2lkxq1r57x9bl6s4cvfqaic6p2xybsj8mq1120jv4rs6")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the +ones provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20180830151530-49385e6e1522") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0spbldahns09fdxkxflb1x24f8k2awdlnr6k5i7ci4fqd19r1dv4")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20190114222345-bf090417da8b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1n3xp56k4k3lj06rx7587wr5gnwg0148nvwx6ch0g7ar02hh94hw")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-google-golang-org-appengine-1.1.0 + (package + (name "go-google-golang-org-appengine") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/appengine") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1pz202zszg8f35dk5pfhwgcdi3r6dx1l4yk6x6ly7nb4j45zi96x")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/appengine")) + (home-page "https://google.golang.org/appengine") + (synopsis "Go App Engine packages") + (description + "Package appengine provides basic functionality for Google App Engine. +") + (license license:asl2.0))) + +(define-public go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8 + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20180817151627-c66870c02cf8") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0siq7sv68556ygqi2d2zmvx8l1xjqdc0fylqzci5h1mq2i14bayn")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-google-golang-org-grpc-1.19.0 + (package + (name "go-google-golang-org-grpc") + (version "1.19.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1znqwpj7ix3dpzx4zch0q70sdl3z5lvbb7v3q4i8sf8kas3yv71v")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" + ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) + ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" + ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) + ("go-google-golang-org-appengine-1.1.0" + ,go-google-golang-org-appengine-1.1.0) + ("go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b" + ,go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b) + ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522" + ,go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522) + ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" + ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d" + ,go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d) + ("go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3" + ,go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0) + ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-client9-misspell-0.3.4" + ,go-github-com-client9-misspell-0.3.4) + ("go-github-com-burntsushi-toml-0.3.1" + ,go-github-com-burntsushi-toml-0.3.1) + ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099 + (package + (name "go-honnef-co-go-tools") + (version "0.0.0-20190102054323-c2f93a96b099") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/dominikh/go-tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "07lg29aiap80ca9f201jzng9vjr168cv3qmvjmbd7v5pmww9kmr8")))) + (build-system go-build-system) + (arguments '(#:import-path "honnef.co/go/tools")) + (home-page "https://honnef.co/go/tools") + (synopsis "Documentation") + (description + "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, +offers simplifications, and enforces style rules.") + (license license:expat))) + +(define-public go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55 + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20190819201941-24fa4b261c55") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "109zhaqlfd8zkbr1hk6zqbs6vcxfrk64scjwh2nswph05gr0m84d")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" + ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) + ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) + ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" + ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) + ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" + ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) + ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" + ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-google-golang-org-grpc-1.27.0 + (package + (name "go-google-golang-org-grpc") + (version "1.27.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ijrmgrxyabfn51nm3p9l81iaasq5fg237wnr6mdc4dzsfcg8kd7")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" + ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-github-com-google-go-cmp-0.2.0" + ,go-github-com-google-go-cmp-0.2.0) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2) + ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" + ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) + ("go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473" + ,go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-github-com-google-go-cmp-0.3.0 + (package + (name "go-github-com-google-go-cmp") + (version "0.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1hyxx3434zshl2m9ja78gwlkg1rx9yl6diqa7dnjb31xz5x4gbjj")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd + (package + (name "go-google-golang-org-protobuf") + (version "0.0.0-20200109180630-ec00e32a8dfd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0w6lp9w2avxcpxwzzhspr209ifhyjagvs23k0vykfdqahl1aplrh")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.3.0" + ,go-github-com-google-go-cmp-0.3.0))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.4.0-rc.1 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.0-rc.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "186rirvbfgv6hrxp27ipx2cdpv19qifdd20biqfdm01wiyclqimn")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd" + ,go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd) + ("go-github-com-google-go-cmp-0.3.1" + ,go-github-com-google-go-cmp-0.3.1))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-github-com-google-go-cmp-0.3.1 + (package + (name "go-github-com-google-go-cmp") + (version "0.3.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1caw49i0plkjxir7kdf5qhwls3krqwfmi7g4h392rdfwi3kfahx1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64 + (package + (name "go-google-golang-org-protobuf") + (version "0.0.0-20200221191635-4d8936d0db64") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0563bsvdjj6k0sgwqd5yzrgfiax7sp3lcwh608gync5sv9fx39cy")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.3.1" + ,go-github-com-google-go-cmp-0.3.1) + ("go-github-com-golang-protobuf-1.4.0-rc.1" + ,go-github-com-golang-protobuf-1.4.0-rc.1))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.0-rc.1.0.20200221234624-67d41d38c208") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ykxhg3zixmw25pd435f8h16wnz1g00jpcmmg3xl030kksgqgpp6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64" + ,go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60 + (package + (name "go-google-golang-org-protobuf") + (version "0.0.0-20200228230310-ab0ca4ff8a60") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1rinspcznfp85yz4vrlf4h38hr576virgv8lcs22bsylqga808sd")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208" + ,go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.4.0-rc.2 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.0-rc.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1hd43hjv5zl6bjbmhm5phx74bw4xajsi73m5zky2k56za4mpgzzc")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60" + ,go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967 + (package + (name "go-google-golang-org-protobuf") + (version "1.20.1-0.20200309200217-e05f789c0967") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "17wmy89hnmpkwc63rfcjp50q15s9f1rhmczg06c3z9yy41zk82w9")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.0-rc.2" + ,go-github-com-golang-protobuf-1.4.0-rc.2))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.0-rc.4.0.20200313231945-b860323f09d0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1zj6cwshx0l5n9cn2cpbikzzb79px5dmkpc4p19zy1iif5r5p0z0")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967" + ,go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-1.21.0 + (package + (name "go-google-golang-org-protobuf") + (version "1.21.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12bwln8z1lf9105gdp6ip0rx741i4yfz1520gxnp8861lh9wcl63")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0" + ,go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.4.0 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fjvl5n77abxz5qsd4mgyvjq19x43c5bfvmq62mq3m5plx6zksc8")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.21.0" + ,go-google-golang-org-protobuf-1.21.0) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543 + (package + (name "go-golang-org-x-xerrors") + (version "0.0.0-20191204190536-9bdfabe68543") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/xerrors") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1yjfi1bk9xb81lqn85nnm13zz725wazvrx3b50hx19qmwg7a4b0c")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/xerrors")) + (home-page "https://golang.org/x/xerrors") + (synopsis #f) + (description + "Package xerrors implements functions to manipulate errors. +") + (license license:bsd-3))) + +(define-public go-github-com-google-go-cmp-0.4.0 + (package + (name "go-github-com-google-go-cmp") + (version "0.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1x5pvl3fb5sbyng7i34431xycnhmx8xx94gq2n19g6p0vz68z2v2")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc + (package + (name "go-google-golang-org-protobuf") + (version "1.23.1-0.20200526195155-81db48ad09cc") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "02cpr8rqr5wmpj2fqb32mzilsdnxkh52g1jz95a3ck3gzffc7hh1")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.0" + ,go-github-com-golang-protobuf-1.4.0))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc + (package + (name "go-honnef-co-go-tools") + (version "0.0.0-20190523083050-ea95bdfd59fc") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/dominikh/go-tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1763nw7pwpzkvzfnm63dgzcgbq9hwmq5l1nffchnhh77vgkaq4ic")))) + (build-system go-build-system) + (arguments '(#:import-path "honnef.co/go/tools")) + (home-page "https://honnef.co/go/tools") + (synopsis "Documentation") + (description + "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, +offers simplifications, and enforces style rules.") + (license license:expat))) + +(define-public go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013 + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20200526211855-cb27e3aa2013") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ml73ghqcwbz7ipfk8fnxb5indcml49b5p7vp1fsyny0abyyrmxf")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" + ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) + ("go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc" + ,go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-golang-protobuf-1.4.1" + ,go-github-com-golang-protobuf-1.4.1))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-google-golang-org-protobuf-1.25.0 + (package + (name "go-google-golang-org-protobuf") + (version "1.25.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0apfl42x166dh96zfq5kvv4b4ax9xljik6bq1mnvn2240ir3mc23")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" + ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) + ("go-github-com-google-go-cmp-0.5.0" + ,go-github-com-google-go-cmp-0.5.0) + ("go-github-com-golang-protobuf-1.4.1" + ,go-github-com-golang-protobuf-1.4.1))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-google-golang-org-grpc-1.38.0 + (package + (name "go-google-golang-org-grpc") + (version "1.38.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "08lgqdvbd0i4qwsv1y37qmf8mhsy9ywzx73ixiwih7xhnalrf7xl")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.25.0" + ,go-google-golang-org-protobuf-1.25.0) + ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" + ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) + ("go-github-com-google-go-cmp-0.5.0" + ,go-github-com-google-go-cmp-0.5.0) + ("go-github-com-golang-protobuf-1.4.2" + ,go-github-com-golang-protobuf-1.4.2) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-envoyproxy-go-control-plane-0.9.9-0.20210217033140-668b12f5399d" + ,go-github-com-envoyproxy-go-control-plane-0.9.9-0.20210217033140-668b12f5399d) + ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" + ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-github-com-bketelsen-crypt-0.0.4 + (package + (name "go-github-com-bketelsen-crypt") + (version "0.0.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/bketelsen/crypt") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0fyfcvy73zskd1p1mv0cn03anxkkr5gvlawsc87znqk60hdypq3v")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/bketelsen/crypt")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.38.0" ,go-google-golang-org-grpc-1.38.0) + ("go-google-golang-org-api-0.44.0" ,go-google-golang-org-api-0.44.0) + ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" + ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9) + ("go-go-etcd-io-etcd-client-v2-2.305.0" + ,go-go-etcd-io-etcd-client-v2-2.305.0) + ("go-github-com-hashicorp-consul-api-1.1.0" + ,go-github-com-hashicorp-consul-api-1.1.0) + ("go-cloud-google-com-go-firestore-1.1.0" + ,go-cloud-google-com-go-firestore-1.1.0))) + (home-page "https://github.com/bketelsen/crypt") + (synopsis "crypt") + (description + "You can use crypt as a command line tool or as a configuration library:") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20191005200804-aed5e4c7ecf9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wsdsbl9n61l99z0cvib2xzg56fsfgky4yc5xapdw9ywx9h0zm3a")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-fsnotify-fsnotify-1.4.9 + (package + (name "go-github-com-fsnotify-fsnotify") + (version "1.4.9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/fsnotify/fsnotify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1i1r72knpbfwwql9frn9bqc3nhfc2ai5m6qllcyr6wban62lr40x")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/fsnotify/fsnotify")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9" + ,go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9))) + (home-page "https://github.com/fsnotify/fsnotify") + (synopsis "File system notifications for Go") + (description + "Package fsnotify provides a platform-independent interface for file system notifications. +") + (license license:bsd-3))) + +(define-public go-github-com-hashicorp-hcl-1.0.0 + (package + (name "go-github-com-hashicorp-hcl") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/hcl") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0q6ml0qqs0yil76mpn4mdx4lp94id8vbv575qm60jzl1ijcl5i66")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/hcl")) + (propagated-inputs + `(("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/hashicorp/hcl") + (synopsis "HCL") + (description "Package hcl decodes HCL into usable Go structures. +") + (license license:mpl2.0))) + +(define-public go-github-com-magiconair-properties-1.8.5 + (package + (name "go-github-com-magiconair-properties") + (version "1.8.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/magiconair/properties") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0v4agnkhc30fblbmhs0gq2bikhdnnmqmpp4phrnza68m04j5hxbn")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/magiconair/properties")) + (home-page "https://github.com/magiconair/properties") + (synopsis "Overview") + (description + "Package properties provides functions for reading and writing +ISO-8859-1 and UTF-8 encoded .properties files and has +support for recursive property expansion. +") + (license license:bsd-2))) + +(define-public go-github-com-mitchellh-mapstructure-1.4.1 + (package + (name "go-github-com-mitchellh-mapstructure") + (version "1.4.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mitchellh/mapstructure") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1m98wiadb6kdnzv21m8p7nk1jb30zpjh47fkb1dg251r3m7bj47v")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mitchellh/mapstructure")) + (home-page "https://github.com/mitchellh/mapstructure") + (synopsis "mapstructure") + (description + "Package mapstructure exposes functionality to convert one arbitrary +Go type into another, typically to convert a map[string]interface{} +into a native Go structure. +") + (license license:expat))) + +(define-public go-github-com-pelletier-go-toml-1.9.3 + (package + (name "go-github-com-pelletier-go-toml") + (version "1.9.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pelletier/go-toml") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0cqwnvlgs1wgdgjxlwv8j52f7d6syniadr51sjh2fya99m5wzvsn")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pelletier/go-toml")) + (home-page "https://github.com/pelletier/go-toml") + (synopsis "go-toml") + (description "Package toml is a TOML parser and manipulation library. +") + (license #f))) + +(define-public go-github-com-gopherjs-gopherjs-0.0.0-20181017120253-0766667cb4d1 + (package + (name "go-github-com-gopherjs-gopherjs") + (version "0.0.0-20181017120253-0766667cb4d1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gopherjs/gopherjs") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "13pfc9sxiwjky2lm1xb3i3lcisn8p6mgjk2d927l7r92ysph8dmw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/gopherjs/gopherjs")) + (home-page "https://github.com/gopherjs/gopherjs") + (synopsis "GopherJS - A compiler from Go to JavaScript") + (description + "GopherJS compiles Go code (@url{https://golang.org/,golang.org}) to pure JavaScript code. Its main purpose is to give you the opportunity to write front-end code in Go which will still run in all browsers.") + (license license:bsd-2))) + +(define-public go-github-com-jtolds-gls-4.20.0+incompatible + (package + (name "go-github-com-jtolds-gls") + (version "4.20.0+incompatible") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jtolio/gls") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1k7xd2q2ysv2xsh373qs801v6f359240kx0vrl0ydh7731lngvk6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/jtolds/gls")) + (home-page "https://github.com/jtolds/gls") + (synopsis "gls") + (description "Package gls implements goroutine-local storage. +") + (license license:expat))) + +(define-public go-github-com-smartystreets-assertions-0.0.0-20180927180507-b2de0cb4f26d + (package + (name "go-github-com-smartystreets-assertions") + (version "0.0.0-20180927180507-b2de0cb4f26d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/smartystreets/assertions") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1i7ldgavgl35c7gk25p7bvdr282ckng090zr4ch9mk1705akx09y")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/smartystreets/assertions")) + (home-page "https://github.com/smartystreets/assertions") + (synopsis #f) + (description + "Package assertions contains the implementations for all assertions which +are referenced in goconvey's `convey` package +(github.com/smartystreets/goconvey/convey) and gunit (github.com/smartystreets/gunit) +for use with the So(...) method. +They can also be used in traditional Go test functions and even in +applications. +") + (license license:expat))) + +(define-public go-golang-org-x-net-0.0.0-20190311183353-d8887717615a + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190311183353-d8887717615a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1wfm6ngxjyj7v5a2dqib6lw8bb2rdnf1kl48diykxjrsddn0s163")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20190328211700-ab21143f2384 + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20190328211700-ab21143f2384") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "15fk0psk53pplpyghz55bhay0kvsv5rikmn5hwgjnnyxq9vfy178")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-github-com-smartystreets-goconvey-1.6.4 + (package + (name "go-github-com-smartystreets-goconvey") + (version "1.6.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/smartystreets/goconvey") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "07zjxwszayal88z1j2bwnqrsa32vg8l4nivks5yfr9j8xfsw7n6m")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/smartystreets/goconvey")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20190328211700-ab21143f2384" + ,go-golang-org-x-tools-0.0.0-20190328211700-ab21143f2384) + ("go-github-com-smartystreets-assertions-0.0.0-20180927180507-b2de0cb4f26d" + ,go-github-com-smartystreets-assertions-0.0.0-20180927180507-b2de0cb4f26d) + ("go-github-com-jtolds-gls-4.20.0+incompatible" + ,go-github-com-jtolds-gls-4.20.0+incompatible) + ("go-github-com-gopherjs-gopherjs-0.0.0-20181017120253-0766667cb4d1" + ,go-github-com-gopherjs-gopherjs-0.0.0-20181017120253-0766667cb4d1))) + (home-page "https://github.com/smartystreets/goconvey") + (synopsis "GoConvey is awesome Go testing") + (description + "This executable provides an HTTP server that watches for file system changes +to .go files within the working directory (and all nested go packages). +Navigating to the configured host and port in a web browser will display the +latest results of running `go test` in each go package. +") + (license license:expat))) + +(define-public go-github-com-kr-fs-0.1.0 + (package + (name "go-github-com-kr-fs") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/fs") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "11zg176x9hr9q7fsk95r6q0wf214gg4czy02slax4x56n79g6a7q")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/fs")) + (home-page "https://github.com/kr/fs") + (synopsis #f) + (description "Package fs provides filesystem-related functions. +") + (license license:bsd-3))) + +(define-public go-github-com-pkg-errors-0.8.1 + (package + (name "go-github-com-pkg-errors") + (version "0.8.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pkg/errors") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0g5qcb4d4fd96midz0zdk8b9kz8xkzwfa8kr1cliqbg8sxsy5vd1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pkg/errors")) + (home-page "https://github.com/pkg/errors") + (synopsis "errors") + (description "Package errors provides simple error handling primitives. +") + (license license:bsd-2))) + +(define-public go-gopkg-in-yaml-v2-2.2.2 + (package + (name "go-gopkg-in-yaml-v2") + (version "2.2.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "01wj12jzsdqlnidpyjssmj0r4yavlqy7dwrg7adqd8dicjc4ncsa")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v2") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language. +") + (license license:asl2.0))) + +(define-public go-github-com-stretchr-testify-1.4.0 + (package + (name "go-github-com-stretchr-testify") + (version "1.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "187i5g88sxfy4vxpm7dw1gwv29pa2qaq475lxrdh5livh69wqfjb")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) + ("go-github-com-stretchr-objx-0.1.0" + ,go-github-com-stretchr-objx-0.1.0) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.0" + ,go-github-com-davecgh-go-spew-1.1.0))) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +") + (license license:expat))) + +(define-public go-github-com-pkg-sftp-1.10.1 + (package + (name "go-github-com-pkg-sftp") + (version "1.10.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pkg/sftp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0iw6lijdljwh5xw5hsy0b578cr52h6vvm7hbnzlrvciwhh4sfhhp")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pkg/sftp")) + (propagated-inputs + `(("go-golang-org-x-crypto-0.0.0-20190820162420-60c769a6c586" + ,go-golang-org-x-crypto-0.0.0-20190820162420-60c769a6c586) + ("go-github-com-stretchr-testify-1.4.0" + ,go-github-com-stretchr-testify-1.4.0) + ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) + ("go-github-com-kr-fs-0.1.0" ,go-github-com-kr-fs-0.1.0))) + (home-page "https://github.com/pkg/sftp") + (synopsis "sftp") + (description + "Package sftp implements the SSH File Transfer Protocol as described in +@url{https://tools.ietf.org/html/draft-ietf-secsh-filexfer-02,https://tools.ietf.org/html/draft-ietf-secsh-filexfer-02} +") + (license license:bsd-2))) + +(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190215142949-d0b11bdaac8a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20190308221718-c2843e01d9a2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-text-0.3.0 + (package + (name "go-golang-org-x-text") + (version "0.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/text")) + (home-page "https://golang.org/x/text") + (synopsis "Go Text") + (description + "text is a repository of text-related packages related to internationalization +(i18n) and localization (l10n), such as character encodings, text +transformations, and locale-specific text handling. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190404232315-eb5bcb51f2a3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "17k4g8krxbl84gzcs275b7gsh66dzm15fdxivjnx9xz8q84l4kby")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20190412213103-97732733099d + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190412213103-97732733099d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "118hkp01i4z1f5h6hcjm0ff2ngqhrzj1f7731n0kw8dr6hvbx0sw")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-crypto-0.0.0-20190820162420-60c769a6c586 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20190820162420-60c769a6c586") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1wy2pg38dz29vf1h48yfqf8m3jqvwnbdw8vkk3ldlj5d8fbbbmv8")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" + ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) + ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" + ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20180917221912-90fa682c2a6e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-golang-org-x-text-0.3.3 + (package + (name "go-golang-org-x-text") + (version "0.3.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19pihqm3phyndmiw6i42pdv6z1rbvlqlsnhsyqf9gsnn0qnmqqlh")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/text")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" + ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) + (home-page "https://golang.org/x/text") + (synopsis "Go Text") + (description + "text is a repository of text-related packages related to internationalization +(i18n) and localization (l10n), such as character encodings, text +transformations, and locale-specific text handling. +") + (license license:bsd-3))) + +(define-public go-github-com-spf13-afero-1.6.0 + (package + (name "go-github-com-spf13-afero") + (version "1.6.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/spf13/afero") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0yi8p0yxiidpcg4cagxg2iyqcaapsng89rak4qyxmgails2fqg37")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/spf13/afero")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) + ("go-golang-org-x-crypto-0.0.0-20190820162420-60c769a6c586" + ,go-golang-org-x-crypto-0.0.0-20190820162420-60c769a6c586) + ("go-github-com-pkg-sftp-1.10.1" ,go-github-com-pkg-sftp-1.10.1))) + (home-page "https://github.com/spf13/afero") + (synopsis "Overview") + (description + "This package provides a FileSystem Abstraction System for Go") + (license license:asl2.0))) + +(define-public go-github-com-spf13-cast-1.3.1 + (package + (name "go-github-com-spf13-cast") + (version "1.3.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/spf13/cast") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0lb84788glr0qzrq2ifi36rgvp96qrgywvxrr3ggq5hrbr38hgn1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/spf13/cast")) + (propagated-inputs + `(("go-github-com-stretchr-testify-1.2.2" + ,go-github-com-stretchr-testify-1.2.2) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/spf13/cast") + (synopsis "cast") + (description "Package cast provides easy and safe casting in Go. +") + (license license:expat))) + +(define-public go-github-com-davecgh-go-spew-1.1.1 + (package + (name "go-github-com-davecgh-go-spew") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/davecgh/go-spew") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/davecgh/go-spew")) + (home-page "https://github.com/davecgh/go-spew") + (synopsis "go-spew") + (description + "Go-spew implements a deep pretty printer for Go data structures to aid in +debugging. A comprehensive suite of tests with 100% test coverage is provided +to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage +report. Go-spew is licensed under the liberal ISC license, so it may be used in +open source or commercial projects.") + (license license:isc))) + +(define-public go-github-com-stretchr-testify-1.2.2 + (package + (name "go-github-com-stretchr-testify") + (version "1.2.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0dlszlshlxbmmfxj5hlwgv3r22x0y1af45gn1vd198nvvs3pnvfs")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +") + (license license:expat))) + +(define-public go-github-com-spf13-jwalterweatherman-1.1.0 + (package + (name "go-github-com-spf13-jwalterweatherman") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/spf13/jwalterweatherman") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ywmkwci5zyd88ijym6f30fj5c0k2yayxarkmnazf5ybljv50q7b")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/spf13/jwalterweatherman")) + (propagated-inputs + `(("go-github-com-stretchr-testify-1.2.2" + ,go-github-com-stretchr-testify-1.2.2) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/spf13/jwalterweatherman") + (synopsis "jWalterWeatherman") + (description + "Seamless printing to the terminal (stdout) and logging to a io.Writer +(file) thatâ\x80\x99s as easy to use as fmt.Println.") + (license license:expat))) + +(define-public go-github-com-spf13-pflag-1.0.5 + (package + (name "go-github-com-spf13-pflag") + (version "1.0.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/spf13/pflag") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0gpmacngd0gpslnbkzi263f5ishigzgh6pbdv9hp092rnjl4nd31")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/spf13/pflag")) + (home-page "https://github.com/spf13/pflag") + (synopsis "Description") + (description + "Package pflag is a drop-in replacement for Go's flag package, implementing +POSIX/GNU-style --flags. +") + (license license:bsd-3))) + +(define-public go-github-com-davecgh-go-spew-1.1.0 + (package + (name "go-github-com-davecgh-go-spew") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/davecgh/go-spew") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/davecgh/go-spew")) + (home-page "https://github.com/davecgh/go-spew") + (synopsis "go-spew") + (description + "Go-spew implements a deep pretty printer for Go data structures to aid in +debugging. A comprehensive suite of tests with 100% test coverage is provided +to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage +report. Go-spew is licensed under the liberal ISC license, so it may be used in +open source or commercial projects.") + (license license:isc))) + +(define-public go-github-com-pmezard-go-difflib-1.0.0 + (package + (name "go-github-com-pmezard-go-difflib") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pmezard/go-difflib") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pmezard/go-difflib")) + (home-page "https://github.com/pmezard/go-difflib") + (synopsis "go-difflib") + (description + "Go-difflib is a partial port of python 3 difflib package. Its main goal +was to make unified and context diff available in pure Go, mostly for +testing purposes.") + (license license:bsd-3))) + +(define-public go-github-com-stretchr-objx-0.1.0 + (package + (name "go-github-com-stretchr-objx") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/objx") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/objx")) + (home-page "https://github.com/stretchr/objx") + (synopsis "Objx") + (description + "Objx - Go package for dealing with maps, slices, JSON and other data. +") + (license license:expat))) + +(define-public go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c + (package + (name "go-gopkg-in-yaml-v3") + (version "3.0.0-20200313102051-9f266ea9e77c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v3") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1bbai3lzb50m0x2vwsdbagrbhvfylj9k1m32hgbqwldqx4p9ay35")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v3") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language. +") + (license #f))) + +(define-public go-github-com-stretchr-testify-1.7.0 + (package + (name "go-github-com-stretchr-testify") + (version "1.7.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ixgjsvafr3513pz3r6pmgk074s2dxkll0dadvl25gkf30rkmh10")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (propagated-inputs + `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" + ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) + ("go-github-com-stretchr-objx-0.1.0" + ,go-github-com-stretchr-objx-0.1.0) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.0" + ,go-github-com-davecgh-go-spew-1.1.0))) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +") + (license license:expat))) + +(define-public go-github-com-subosito-gotenv-1.2.0 + (package + (name "go-github-com-subosito-gotenv") + (version "1.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/subosito/gotenv") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0mav91j7r4arjkpq5zcf9j74f6pww8ic53x43wy7kg3ibw31yjs5")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/subosito/gotenv")) + (home-page "https://github.com/subosito/gotenv") + (synopsis "gotenv") + (description + "Package gotenv provides functionality to dynamically load the environment variables +") + (license license:expat))) + +(define-public go-gopkg-in-ini-v1-1.62.0 + (package + (name "go-gopkg-in-ini-v1") + (version "1.62.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/ini.v1") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1dm9ydqyflasp5li22kb0w73s6kp2swii8naqfhnz64v171gmm5v")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/ini.v1" #:unpack-path "gopkg.in/ini.v1")) + (home-page "https://gopkg.in/ini.v1") + (synopsis "INI") + (description + "Package ini provides INI file read and write functionality in Go. +") + (license license:asl2.0))) + +(define-public go-github-com-spf13-viper-1.8.1 + (package + (name "go-github-com-spf13-viper") + (version "1.8.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/spf13/viper") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0jcsvd9l05pv10rma6zicp44q2mlvxj0qlhnf4zcg2pymb5i0hq6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/spf13/viper")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) + ("go-gopkg-in-ini-v1-1.62.0" ,go-gopkg-in-ini-v1-1.62.0) + ("go-github-com-subosito-gotenv-1.2.0" + ,go-github-com-subosito-gotenv-1.2.0) + ("go-github-com-stretchr-testify-1.7.0" + ,go-github-com-stretchr-testify-1.7.0) + ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) + ("go-github-com-spf13-jwalterweatherman-1.1.0" + ,go-github-com-spf13-jwalterweatherman-1.1.0) + ("go-github-com-spf13-cast-1.3.1" ,go-github-com-spf13-cast-1.3.1) + ("go-github-com-spf13-afero-1.6.0" ,go-github-com-spf13-afero-1.6.0) + ("go-github-com-smartystreets-goconvey-1.6.4" + ,go-github-com-smartystreets-goconvey-1.6.4) + ("go-github-com-pelletier-go-toml-1.9.3" + ,go-github-com-pelletier-go-toml-1.9.3) + ("go-github-com-mitchellh-mapstructure-1.4.1" + ,go-github-com-mitchellh-mapstructure-1.4.1) + ("go-github-com-magiconair-properties-1.8.5" + ,go-github-com-magiconair-properties-1.8.5) + ("go-github-com-hashicorp-hcl-1.0.0" + ,go-github-com-hashicorp-hcl-1.0.0) + ("go-github-com-fsnotify-fsnotify-1.4.9" + ,go-github-com-fsnotify-fsnotify-1.4.9) + ("go-github-com-bketelsen-crypt-0.0.4" + ,go-github-com-bketelsen-crypt-0.0.4))) + (home-page "https://github.com/spf13/viper") + (synopsis "Install") + (description "Many Go projects are built using Viper including:") + (license license:expat))) + +(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 + (package + (name "go-gopkg-in-check-v1") + (version "0.0.0-20161208181325-20d25e280405") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/check.v1") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) + (home-page "https://gopkg.in/check.v1") + (synopsis "Instructions") + (description + "Package check is a rich testing extension for Go's testing package. +") + (license license:bsd-2))) + +(define-public go-gopkg-in-yaml-v2-2.4.0 + (package + (name "go-gopkg-in-yaml-v2") + (version "2.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1pbmrpj7gcws34g8vwna4i2nhm9p6235piww36436xhyaa10cldr")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v2") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language. +") + (license license:asl2.0))) + +(define-public go-github-com-spf13-cobra-1.2.1 + (package + (name "go-github-com-spf13-cobra") + (version "1.2.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/spf13/cobra") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "091kz3xnlsgpqb90fc5nhjr4yfr8b8sjnyl0zd4wm1fgzkpw09jh")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/spf13/cobra")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) + ("go-github-com-spf13-viper-1.8.1" ,go-github-com-spf13-viper-1.8.1) + ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) + ("go-github-com-inconshreveable-mousetrap-1.0.0" + ,go-github-com-inconshreveable-mousetrap-1.0.0) + ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" + ,go-github-com-cpuguy83-go-md2man-v2-2.0.0))) + (home-page "https://github.com/spf13/cobra") + (synopsis "Table of Contents") + (description + "Package cobra is a commander providing a simple interface to create powerful modern CLI interfaces. +In addition to providing an interface, Cobra simultaneously provides a controller to organize your application code. +") + (license license:asl2.0))) + +(define-public go-github-com-spf13-pflag-1.0.5 + (package + (name "go-github-com-spf13-pflag") + (version "1.0.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/spf13/pflag") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0gpmacngd0gpslnbkzi263f5ishigzgh6pbdv9hp092rnjl4nd31")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/spf13/pflag")) + (home-page "https://github.com/spf13/pflag") + (synopsis "Description") + (description + "Package pflag is a drop-in replacement for Go's flag package, implementing +POSIX/GNU-style --flags. +") + (license license:bsd-3))) + +(define-public go-github-com-sylabs-json-resp-0.8.0 + (package + (name "go-github-com-sylabs-json-resp") + (version "0.8.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sylabs/json-resp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ygr4mavaj1pp78hkkphhn3ydd923n3klwnx8x7v4ajqzx4cx4id")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/sylabs/json-resp")) + (home-page "https://github.com/sylabs/json-resp") + (synopsis "JSON Response") + (description + "The @code{json-resp} package contains a small set of functions that are used to marshall and unmarshall response data and errors in JSON format.") + (license license:bsd-3))) + +(define-public go-github-com-go-log-log-0.2.0 + (package + (name "go-github-com-go-log-log") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/go-log/log") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1idnqv4yvkmdh3wcsgvhcpak9z6ix8dsifdjq5kfbbnskdq5rmvg")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/go-log/log")) + (home-page "https://github.com/go-log/log") + (synopsis "Log") + (description "Package log provides a log interface +") + (license license:expat))) + +(define-public go-github-com-gorilla-websocket-1.4.2 + (package + (name "go-github-com-gorilla-websocket") + (version "1.4.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gorilla/websocket") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0mkm9w6kjkrlzab5wh8p4qxkc0icqawjbvr01d2nk6ykylrln40s")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/gorilla/websocket")) + (home-page "https://github.com/gorilla/websocket") + (synopsis "Gorilla WebSocket") + (description + "Package websocket implements the WebSocket protocol defined in @url{https://rfc-editor.org/rfc/rfc6455.html,RFC 6455}. +") + (license license:bsd-2))) + +(define-public go-github-com-sylabs-json-resp-0.8.0 + (package + (name "go-github-com-sylabs-json-resp") + (version "0.8.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sylabs/json-resp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ygr4mavaj1pp78hkkphhn3ydd923n3klwnx8x7v4ajqzx4cx4id")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/sylabs/json-resp")) + (home-page "https://github.com/sylabs/json-resp") + (synopsis "JSON Response") + (description + "The @code{json-resp} package contains a small set of functions that are used to marshall and unmarshall response data and errors in JSON format.") + (license license:bsd-3))) + +(define-public go-github-com-sylabs-scs-build-client-0.2.1 + (package + (name "go-github-com-sylabs-scs-build-client") + (version "0.2.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sylabs/scs-build-client") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1brn8w73978hvgrzqm0lsxflb5vp7g5b32bmgfb1diymd2ajlqhv")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/sylabs/scs-build-client")) + (propagated-inputs + `(("go-github-com-sylabs-json-resp-0.8.0" + ,go-github-com-sylabs-json-resp-0.8.0) + ("go-github-com-gorilla-websocket-1.4.2" + ,go-github-com-gorilla-websocket-1.4.2) + ("go-github-com-go-log-log-0.2.0" ,go-github-com-go-log-log-0.2.0))) + (home-page "https://github.com/sylabs/scs-build-client") + (synopsis "SCS Build Client") + (description + "This project provides a Go client for the Singularity Container Services (SCS) Build Service.") + (license license:bsd-3))) + +(define-public go-github-com-sylabs-json-resp-0.7.1 + (package + (name "go-github-com-sylabs-json-resp") + (version "0.7.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sylabs/json-resp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fj07wgc9s8xmy04hdgmb87r4fl968y6kxgxyh0lx3b1mf9xa2dw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/sylabs/json-resp")) + (home-page "https://github.com/sylabs/json-resp") + (synopsis "JSON Response") + (description + "The @code{json-resp} package contains a small set of functions that are used to marshall and unmarshall response data and errors in JSON format.") + (license license:bsd-3))) + +(define-public go-github-com-sylabs-scs-key-client-0.6.2 + (package + (name "go-github-com-sylabs-scs-key-client") + (version "0.6.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sylabs/scs-key-client") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18giffs0ybfr5zw64xlqf9isr3apgh2r3s2fwf0n8d7n21yjg151")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/sylabs/scs-key-client")) + (propagated-inputs + `(("go-github-com-sylabs-json-resp-0.7.1" + ,go-github-com-sylabs-json-resp-0.7.1))) + (home-page "https://github.com/sylabs/scs-key-client") + (synopsis "SCS Key Client") + (description + "This project provides a Go client for the Singularity Container Services (SCS) Key Service.") + (license license:bsd-3))) + +(define-public go-github-com-blang-semver-v4-4.0.0 + (package + (name "go-github-com-blang-semver-v4") + (version "4.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/blang/semver") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "14h9ys4n4kx9cbj42lkdf4i5k3nkll6sd62jcvl7cs565v6fiknz")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/blang/semver/v4")) + (home-page "https://github.com/blang/semver") + (synopsis #f) + (description #f) + (license license:expat))) + +(define-public go-github-com-go-log-log-0.2.0 + (package + (name "go-github-com-go-log-log") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/go-log/log") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1idnqv4yvkmdh3wcsgvhcpak9z6ix8dsifdjq5kfbbnskdq5rmvg")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/go-log/log")) + (home-page "https://github.com/go-log/log") + (synopsis "Log") + (description "Package log provides a log interface +") + (license license:expat))) + +(define-public go-github-com-davecgh-go-spew-1.1.0 + (package + (name "go-github-com-davecgh-go-spew") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/davecgh/go-spew") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/davecgh/go-spew")) + (home-page "https://github.com/davecgh/go-spew") + (synopsis "go-spew") + (description + "Go-spew implements a deep pretty printer for Go data structures to aid in +debugging. A comprehensive suite of tests with 100% test coverage is provided +to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage +report. Go-spew is licensed under the liberal ISC license, so it may be used in +open source or commercial projects.") + (license license:isc))) + +(define-public go-github-com-pmezard-go-difflib-1.0.0 + (package + (name "go-github-com-pmezard-go-difflib") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pmezard/go-difflib") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pmezard/go-difflib")) + (home-page "https://github.com/pmezard/go-difflib") + (synopsis "go-difflib") + (description + "Go-difflib is a partial port of python 3 difflib package. Its main goal +was to make unified and context diff available in pure Go, mostly for +testing purposes.") + (license license:bsd-3))) + +(define-public go-github-com-stretchr-objx-0.1.0 + (package + (name "go-github-com-stretchr-objx") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/objx") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/objx")) + (home-page "https://github.com/stretchr/objx") + (synopsis "Objx") + (description + "Objx - Go package for dealing with maps, slices, JSON and other data. +") + (license license:expat))) + +(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 + (package + (name "go-gopkg-in-check-v1") + (version "0.0.0-20161208181325-20d25e280405") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/check.v1") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) + (home-page "https://gopkg.in/check.v1") + (synopsis "Instructions") + (description + "Package check is a rich testing extension for Go's testing package. +") + (license license:bsd-2))) + +(define-public go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c + (package + (name "go-gopkg-in-yaml-v3") + (version "3.0.0-20200313102051-9f266ea9e77c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v3") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1bbai3lzb50m0x2vwsdbagrbhvfylj9k1m32hgbqwldqx4p9ay35")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v3") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language. +") + (license #f))) + +(define-public go-github-com-stretchr-testify-1.7.0 + (package + (name "go-github-com-stretchr-testify") + (version "1.7.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ixgjsvafr3513pz3r6pmgk074s2dxkll0dadvl25gkf30rkmh10")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (propagated-inputs + `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" + ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) + ("go-github-com-stretchr-objx-0.1.0" + ,go-github-com-stretchr-objx-0.1.0) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.0" + ,go-github-com-davecgh-go-spew-1.1.0))) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +") + (license license:expat))) + +(define-public go-github-com-sylabs-json-resp-0.7.1 + (package + (name "go-github-com-sylabs-json-resp") + (version "0.7.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sylabs/json-resp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fj07wgc9s8xmy04hdgmb87r4fl968y6kxgxyh0lx3b1mf9xa2dw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/sylabs/json-resp")) + (home-page "https://github.com/sylabs/json-resp") + (synopsis "JSON Response") + (description + "The @code{json-resp} package contains a small set of functions that are used to marshall and unmarshall response data and errors in JSON format.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20200317015054-43a5402ce75a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0j6zrrb81qjr1926kkwmn0di9a0jn8qyjd9dw614rfkihxgq1vsm")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the +ones provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-github-com-sylabs-scs-library-client-1.0.5 + (package + (name "go-github-com-sylabs-scs-library-client") + (version "1.0.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sylabs/scs-library-client") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1dr8x33gaqm7a6q2hha2v2dyqlnhjig9kmmgarrr0a16z2rpdv0l")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/sylabs/scs-library-client")) + (propagated-inputs + `(("go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a" + ,go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a) + ("go-github-com-sylabs-json-resp-0.7.1" + ,go-github-com-sylabs-json-resp-0.7.1) + ("go-github-com-stretchr-testify-1.7.0" + ,go-github-com-stretchr-testify-1.7.0) + ("go-github-com-go-log-log-0.2.0" ,go-github-com-go-log-log-0.2.0) + ("go-github-com-blang-semver-v4-4.0.0" + ,go-github-com-blang-semver-v4-4.0.0))) + (home-page "https://github.com/sylabs/scs-library-client") + (synopsis "SCS Library Client") + (description + "This project provides a Go client for the Singularity Container Services (SCS) Library Service.") + (license license:bsd-3))) + +(define-public go-github-com-burntsushi-toml-0.3.1 + (package + (name "go-github-com-burntsushi-toml") + (version "0.3.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/BurntSushi/toml") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fjdwwfzyzllgiwydknf1pwjvy49qxfsczqx5gz3y0izs7as99j6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/BurntSushi/toml")) + (home-page "https://github.com/BurntSushi/toml") + (synopsis "TOML parser and encoder for Go with reflection") + (description + "Package toml implements decoding and encoding of TOML files. +") + (license license:expat))) + +(define-public go-github-com-pmezard-go-difflib-1.0.0 + (package + (name "go-github-com-pmezard-go-difflib") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pmezard/go-difflib") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pmezard/go-difflib")) + (home-page "https://github.com/pmezard/go-difflib") + (synopsis "go-difflib") + (description + "Go-difflib is a partial port of python 3 difflib package. Its main goal +was to make unified and context diff available in pure Go, mostly for +testing purposes.") + (license license:bsd-3))) + +(define-public go-github-com-russross-blackfriday-v2-2.0.1 + (package + (name "go-github-com-russross-blackfriday-v2") + (version "2.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/russross/blackfriday") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0nlz7isdd4rgnwzs68499hlwicxz34j2k2a0b8jy0y7ycd2bcr5j")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/russross/blackfriday/v2")) + (home-page "https://github.com/russross/blackfriday") + (synopsis "Blackfriday") + (description "Package blackfriday is a markdown processor. +") + (license license:bsd-2))) + +(define-public go-github-com-shurcool-sanitized-anchor-name-1.0.0 + (package + (name "go-github-com-shurcool-sanitized-anchor-name") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/shurcooL/sanitized_anchor_name") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1gv9p2nr46z80dnfjsklc6zxbgk96349sdsxjz05f3z6wb6m5l8f")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/shurcooL/sanitized_anchor_name")) + (home-page "https://github.com/shurcooL/sanitized_anchor_name") + (synopsis "sanitized_anchor_name") + (description + "Package sanitized_anchor_name provides a func to create sanitized anchor names. +") + (license license:expat))) + +(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d + (package + (name "go-github-com-cpuguy83-go-md2man-v2") + (version "2.0.0-20190314233015-f79a8a8ca69d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cpuguy83/go-md2man") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) + (propagated-inputs + `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" + ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) + ("go-github-com-russross-blackfriday-v2-2.0.1" + ,go-github-com-russross-blackfriday-v2-2.0.1) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0))) + (home-page "https://github.com/cpuguy83/go-md2man") + (synopsis "go-md2man") + (description "Converts markdown into roff (man pages).") + (license license:expat))) + +(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 + (package + (name "go-gopkg-in-check-v1") + (version "0.0.0-20161208181325-20d25e280405") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/check.v1") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) + (home-page "https://gopkg.in/check.v1") + (synopsis "Instructions") + (description + "Package check is a rich testing extension for Go's testing package. +") + (license license:bsd-2))) + +(define-public go-gopkg-in-yaml-v2-2.2.2 + (package + (name "go-gopkg-in-yaml-v2") + (version "2.2.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "01wj12jzsdqlnidpyjssmj0r4yavlqy7dwrg7adqd8dicjc4ncsa")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v2") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language. +") + (license license:asl2.0))) + +(define-public go-github-com-urfave-cli-1.22.5 + (package + (name "go-github-com-urfave-cli") + (version "1.22.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/urfave/cli") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1n8lk58j7bdsp47yh5bcpsw38lhkbyzcy3203ffkawc2rvkf1pp7")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/urfave/cli")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) + ("go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d" + ,go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d) + ("go-github-com-burntsushi-toml-0.3.1" + ,go-github-com-burntsushi-toml-0.3.1))) + (home-page "https://github.com/urfave/cli") + (synopsis "cli") + (description + "Package cli provides a minimal framework for creating and organizing command line +Go applications. cli is designed to be easy to understand and write, the most simple +cli application can be written as follows: +") + (license license:expat))) + +(define-public go-github-com-vividcortex-ewma-1.1.1 + (package + (name "go-github-com-vividcortex-ewma") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/VividCortex/ewma") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "14v2dy5gqchjn7k0sd6cx59ms42v681r6xz7cb1kspp4b28a74rw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/VividCortex/ewma")) + (home-page "https://github.com/VividCortex/ewma") + (synopsis "EWMA") + (description + "Package ewma implements exponentially weighted moving averages. +") + (license license:expat))) + +(define-public go-github-com-acarl005-stripansi-0.0.0-20180116102854-5a71ef0e047d + (package + (name "go-github-com-acarl005-stripansi") + (version "0.0.0-20180116102854-5a71ef0e047d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/acarl005/stripansi") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "02sxiishdixm791jqbkmhdcvc712l0fb8rqmibxzgc61h0qs6rs3")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/acarl005/stripansi")) + (home-page "https://github.com/acarl005/stripansi") + (synopsis "Strip ANSI") + (description "This Go package removes ANSI escape codes from strings.") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190215142949-d0b11bdaac8a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20190308221718-c2843e01d9a2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-text-0.3.0 + (package + (name "go-golang-org-x-text") + (version "0.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/text")) + (home-page "https://golang.org/x/text") + (synopsis "Go Text") + (description + "text is a repository of text-related packages related to internationalization +(i18n) and localization (l10n), such as character encodings, text +transformations, and locale-specific text handling. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190404232315-eb5bcb51f2a3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "17k4g8krxbl84gzcs275b7gsh66dzm15fdxivjnx9xz8q84l4kby")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20190412213103-97732733099d + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190412213103-97732733099d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "118hkp01i4z1f5h6hcjm0ff2ngqhrzj1f7731n0kw8dr6hvbx0sw")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-crypto-0.0.0-20200214034016-1d94cc7ab1c6 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20200214034016-1d94cc7ab1c6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1mkd0gc2p16nddr5b8a5rqkalnhik3cymnqy4wy53zvd7isg6r3x")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" + ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) + ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" + ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20200217220822-9197077df867 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200217220822-9197077df867") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1270yyiqzlgrsygp2j0qavh4agm4xjv3ljfpk4wgqgmg4ph1lmx1")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-vbauerster-mpb-v4-4.12.2 + (package + (name "go-github-com-vbauerster-mpb-v4") + (version "4.12.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/vbauerster/mpb") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "13zq6zs5pv1gay3zzkwzc310rvsy1rf43lgq2l23nsyfkw1fx8fp")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/vbauerster/mpb/v4")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20200217220822-9197077df867" + ,go-golang-org-x-sys-0.0.0-20200217220822-9197077df867) + ("go-golang-org-x-crypto-0.0.0-20200214034016-1d94cc7ab1c6" + ,go-golang-org-x-crypto-0.0.0-20200214034016-1d94cc7ab1c6) + ("go-github-com-acarl005-stripansi-0.0.0-20180116102854-5a71ef0e047d" + ,go-github-com-acarl005-stripansi-0.0.0-20180116102854-5a71ef0e047d) + ("go-github-com-vividcortex-ewma-1.1.1" + ,go-github-com-vividcortex-ewma-1.1.1))) + (home-page "https://github.com/vbauerster/mpb") + (synopsis "Multi Progress Bar") + (description + "Package mpb is a library for rendering progress bars in terminal applications. +") + (license license:unlicense))) + +(define-public go-github-com-vividcortex-ewma-1.2.0 + (package + (name "go-github-com-vividcortex-ewma") + (version "1.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/VividCortex/ewma") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0whx516l9nm4n41spagb605ry7kfnz1qha96mcshnfjlahhnnylq")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/VividCortex/ewma")) + (home-page "https://github.com/VividCortex/ewma") + (synopsis "EWMA") + (description + "Package ewma implements exponentially weighted moving averages. +") + (license license:expat))) + +(define-public go-github-com-acarl005-stripansi-0.0.0-20180116102854-5a71ef0e047d + (package + (name "go-github-com-acarl005-stripansi") + (version "0.0.0-20180116102854-5a71ef0e047d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/acarl005/stripansi") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "02sxiishdixm791jqbkmhdcvc712l0fb8rqmibxzgc61h0qs6rs3")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/acarl005/stripansi")) + (home-page "https://github.com/acarl005/stripansi") + (synopsis "Strip ANSI") + (description "This Go package removes ANSI escape codes from strings.") + (license license:expat))) + +(define-public go-github-com-rivo-uniseg-0.1.0 + (package + (name "go-github-com-rivo-uniseg") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/rivo/uniseg") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0flpc1px1l6b1lxzhdxi0mvpkkjchppvgxshxxnlmm40s76i9ww5")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/rivo/uniseg")) + (home-page "https://github.com/rivo/uniseg") + (synopsis "Unicode Text Segmentation for Go") + (description + "Package uniseg implements Unicode Text Segmentation according to Unicode +Standard Annex #29 (@url{http://unicode.org/reports/tr29/,http://unicode.org/reports/tr29/}). +") + (license license:expat))) + +(define-public go-github-com-mattn-go-runewidth-0.0.12 + (package + (name "go-github-com-mattn-go-runewidth") + (version "0.0.12") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mattn/go-runewidth") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "10m8k25anr79mirr9azap3c3a7wxn67qk774xd8hhqa1ffbicxib")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mattn/go-runewidth")) + (propagated-inputs + `(("go-github-com-rivo-uniseg-0.1.0" ,go-github-com-rivo-uniseg-0.1.0))) + (home-page "https://github.com/mattn/go-runewidth") + (synopsis "go-runewidth") + (description + "This package provides functions to get fixed width of the character or string.") + (license license:expat))) + +(define-public go-github-com-rivo-uniseg-0.2.0 + (package + (name "go-github-com-rivo-uniseg") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/rivo/uniseg") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0j7h22vfmjj562vr8gpsyrkrwp1pq9ayh5fylv24skxb467g9f0q")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/rivo/uniseg")) + (home-page "https://github.com/rivo/uniseg") + (synopsis "Unicode Text Segmentation for Go") + (description + "Package uniseg implements Unicode Text Segmentation according to Unicode +Standard Annex #29 (@url{http://unicode.org/reports/tr29/,http://unicode.org/reports/tr29/}). +") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20210514084401-e8d321eab015 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20210514084401-e8d321eab015") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0r4kz2mdfrr0853qmbaiqpj5mqscfjy6za6kqmrw7lv9h7xwqbc4")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-vbauerster-mpb-v6-6.0.4 + (package + (name "go-github-com-vbauerster-mpb-v6") + (version "6.0.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/vbauerster/mpb") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0b3p380pbhlp9qiv794ppwjwsl2k37hzp6k5ic4jx4wmdqlxzbyp")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/vbauerster/mpb/v6")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20210514084401-e8d321eab015" + ,go-golang-org-x-sys-0.0.0-20210514084401-e8d321eab015) + ("go-github-com-rivo-uniseg-0.2.0" ,go-github-com-rivo-uniseg-0.2.0) + ("go-github-com-mattn-go-runewidth-0.0.12" + ,go-github-com-mattn-go-runewidth-0.0.12) + ("go-github-com-acarl005-stripansi-0.0.0-20180116102854-5a71ef0e047d" + ,go-github-com-acarl005-stripansi-0.0.0-20180116102854-5a71ef0e047d) + ("go-github-com-vividcortex-ewma-1.2.0" + ,go-github-com-vividcortex-ewma-1.2.0))) + (home-page "https://github.com/vbauerster/mpb") + (synopsis "Multi Progress Bar") + (description + "Package mpb is a library for rendering progress bars in terminal applications. +") + (license license:unlicense))) + +(define-public go-github-com-xeipuuv-gojsonpointer-0.0.0-20190905194746-02993c407bfb + (package + (name "go-github-com-xeipuuv-gojsonpointer") + (version "0.0.0-20190905194746-02993c407bfb") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/xeipuuv/gojsonpointer") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0y7gmpgsm8c12ax4a0ij9srmd9d424iq224n172ckwfqf37amvzy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/xeipuuv/gojsonpointer")) + (home-page "https://github.com/xeipuuv/gojsonpointer") + (synopsis "gojsonpointer") + (description "An implementation of JSON Pointer - Go language") + (license license:asl2.0))) + +(define-public go-github-com-yvasiyarov-go-metrics-0.0.0-20150112132944-c25f46c4b940 + (package + (name "go-github-com-yvasiyarov-go-metrics") + (version "0.0.0-20150112132944-c25f46c4b940") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/yvasiyarov/go-metrics") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0p1hx4ml4gzgyj8n0fg5lv8bq092zwg00n59lq8v8sphjc1h8i8d")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/yvasiyarov/go-metrics")) + (home-page "https://github.com/yvasiyarov/go-metrics") + (synopsis "go-metrics") + (description "Go port of Coda Hale's Metrics library +") + (license #f))) + +(define-public go-github-com-yvasiyarov-gorelic-0.0.6 + (package + (name "go-github-com-yvasiyarov-gorelic") + (version "0.0.6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/yvasiyarov/gorelic") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0210d8z7l945611b5ynzjhnypqfdyr490ndrap13s4k5z1jgqjnb")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/yvasiyarov/gorelic")) + (home-page "https://github.com/yvasiyarov/gorelic") + (synopsis "GoRelic is deprecated in favour of") + (description + "Package gorelic is an New Relic agent implementation for Go runtime. It collect a lot of metrics about Go scheduler, garbage collector and memory allocator and send them to NewRelic. +") + (license license:bsd-2))) + +(define-public go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20160601141957-9c099fbc30e9 + (package + (name "go-github-com-yvasiyarov-newrelic-platform-go") + (version "0.0.0-20160601141957-9c099fbc30e9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/yvasiyarov/newrelic_platform_go") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0n6jap27qc7b7c37ck1gv9biq5nfl7y06jk0cqgc517yfnb4f07x")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/yvasiyarov/newrelic_platform_go")) + (home-page "https://github.com/yvasiyarov/newrelic_platform_go") + (synopsis "New Relic Platform Agent SDK for Go(golang)") + (description + "Package newrelic_platform_go is New Relic Platform Agent SDK for Go language. +") + (license license:bsd-2))) + +(define-public go-golang-org-x-sys-0.0.0-20210423082822-04245dca01da + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20210423082822-04245dca01da") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "11is2c5cpxk0gf2mxza2wpzfcf71fxb9b3in77f6w2q0pr68ykzx")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20211112202133-69e39bad7dc2 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20211112202133-69e39bad7dc2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0yvg72fb037yh4xvjyfgrr8nsbz7nfiiksvq0a5922z255anamy6")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.6" ,go-golang-org-x-text-0.3.6) + ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" + ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) + ("go-golang-org-x-sys-0.0.0-20210423082822-04245dca01da" + ,go-golang-org-x-sys-0.0.0-20210423082822-04245dca01da))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20210615035016-665e8c7367d1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "11n848csibdbv7b46zjyf4l7sphg37n9sjzqfy1ds7p1jyakwmnv")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20201119102817-f84b799fce68") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1dvhqian5byzkcg1bnqzygqa6ccc6krc2q7j12pp1vhl3y7znnsg")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1 + (package + (name "go-golang-org-x-term") + (version "0.0.0-20201126162022-7de9c90e9dd1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/term") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ba252xmv6qsvf1w1gcy98mngrj0vd4inbjw0lsklqvva65nljna")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/term")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" + ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) + (home-page "https://golang.org/x/term") + (synopsis "Go terminal/console support") + (description + "Package term provides support functions for dealing with terminals, as +commonly found on UNIX systems. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20180917221912-90fa682c2a6e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-golang-org-x-text-0.3.6 + (package + (name "go-golang-org-x-text") + (version "0.3.6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wzhvdb059vrp2cczqw422ajrb9sbs4l3qd020hlngj33qfhxah0")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/text")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" + ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) + (home-page "https://golang.org/x/text") + (synopsis "Go Text") + (description + "text is a repository of text-related packages related to internationalization +(i18n) and localization (l10n), such as character encodings, text +transformations, and locale-specific text handling. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-crypto-0.0.0-20211117183948-ae814b36b871 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20211117183948-ae814b36b871") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "01d5llpsijgbgm8px6mhaknqwh8g707zc5i5744gcndr8w0649sk")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.6" ,go-golang-org-x-text-0.3.6) + ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" + ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) + ("go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1" + ,go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1) + ("go-golang-org-x-net-0.0.0-20211112202133-69e39bad7dc2" + ,go-golang-org-x-net-0.0.0-20211112202133-69e39bad7dc2))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20211004093028-2c5d950f24ef + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20211004093028-2c5d950f24ef") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "13ac9v54zgxrya9n2dvbmyafhd0rbmnkfb5zrcp96z8vzd9q8zfz")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 + (package + (name "go-gopkg-in-check-v1") + (version "0.0.0-20161208181325-20d25e280405") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/check.v1") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) + (home-page "https://gopkg.in/check.v1") + (synopsis "Instructions") + (description + "Package check is a rich testing extension for Go's testing package. +") + (license license:bsd-2))) + +(define-public go-gopkg-in-yaml-v2-2.4.0 + (package + (name "go-gopkg-in-yaml-v2") + (version "2.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1pbmrpj7gcws34g8vwna4i2nhm9p6235piww36436xhyaa10cldr")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v2") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543 + (package + (name "go-golang-org-x-xerrors") + (version "0.0.0-20191204190536-9bdfabe68543") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/xerrors") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1yjfi1bk9xb81lqn85nnm13zz725wazvrx3b50hx19qmwg7a4b0c")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/xerrors")) + (home-page "https://golang.org/x/xerrors") + (synopsis #f) + (description + "Package xerrors implements functions to manipulate errors. +") + (license license:bsd-3))) + +(define-public go-github-com-google-go-cmp-0.4.0 + (package + (name "go-github-com-google-go-cmp") + (version "0.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1x5pvl3fb5sbyng7i34431xycnhmx8xx94gq2n19g6p0vz68z2v2")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") + (license license:bsd-3))) + +(define-public go-github-com-pkg-errors-0.8.1 + (package + (name "go-github-com-pkg-errors") + (version "0.8.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pkg/errors") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0g5qcb4d4fd96midz0zdk8b9kz8xkzwfa8kr1cliqbg8sxsy5vd1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pkg/errors")) + (home-page "https://github.com/pkg/errors") + (synopsis "errors") + (description "Package errors provides simple error handling primitives. +") + (license license:bsd-2))) + +(define-public go-github-com-spf13-pflag-1.0.3 + (package + (name "go-github-com-spf13-pflag") + (version "1.0.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/spf13/pflag") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1cj3cjm7d3zk0mf1xdybh0jywkbbw7a6yr3y22x9sis31scprswd")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/spf13/pflag")) + (home-page "https://github.com/spf13/pflag") + (synopsis "Description") + (description + "Package pflag is a drop-in replacement for Go's flag package, implementing +POSIX/GNU-style --flags. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190215142949-d0b11bdaac8a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20190308221718-c2843e01d9a2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-text-0.3.0 + (package + (name "go-golang-org-x-text") + (version "0.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/text")) + (home-page "https://golang.org/x/text") + (synopsis "Go Text") + (description + "text is a repository of text-related packages related to internationalization +(i18n) and localization (l10n), such as character encodings, text +transformations, and locale-specific text handling. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20190311183353-d8887717615a + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190311183353-d8887717615a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1wfm6ngxjyj7v5a2dqib6lw8bb2rdnf1kl48diykxjrsddn0s163")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20190423024810-112230192c58 + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20190423024810-112230192c58") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "05i2k43j2d0llq768hg5pf3hb2yhfzp9la1w5wp0rsnnzblr0lfn")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the +ones provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20190624222133-a101b041ded4 + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20190624222133-a101b041ded4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1pm50dybm5wixjjspvfpafjmiy81b1zp08h13gxc5cylrfgncrfl")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" + ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-gotest-tools-v3-3.0.3 + (package + (name "go-gotest-tools-v3") + (version "3.0.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gotestyourself/gotest.tools") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1h316233n33lkfhbak8ljdj5i8df6hcwwm48n200svf22x3d95ww")))) + (build-system go-build-system) + (arguments + '(#:import-path "gotest.tools/v3" #:unpack-path "gotest.tools/v3")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20190624222133-a101b041ded4" + ,go-golang-org-x-tools-0.0.0-20190624222133-a101b041ded4) + ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) + ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0))) + (home-page "https://gotest.tools/v3") + (synopsis "gotest.tools") + (description + "Package gotesttools is a collection of packages to augment `testing` and +support common patterns. +") + (license license:asl2.0))) + +(define-public go-github-com-microsoft-go-winio-0.4.17 + (package + (name "go-github-com-microsoft-go-winio") + (version "0.4.17") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/microsoft/go-winio") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0gmgiak4x4gdyr17zm4b9vvharflk9pz5aj5jayh9hq50133b2f9")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/Microsoft/go-winio")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" + ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) + ("go-github-com-sirupsen-logrus-1.7.0" + ,go-github-com-sirupsen-logrus-1.7.0) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) + (home-page "https://github.com/Microsoft/go-winio") + (synopsis "go-winio") + (description + "This repository contains utilities for efficiently performing Win32 IO operations in +Go. Currently, this is focused on accessing named pipes and other file handles, and +for using named pipes as a net transport.") + (license license:expat))) + +(define-public go-github-com-cenkalti-backoff-v4-4.1.1 + (package + (name "go-github-com-cenkalti-backoff-v4") + (version "4.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cenkalti/backoff") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "08c28226q612i1pv83161y57qh16631vpc51ai9f76qfrzsy946z")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/cenkalti/backoff/v4")) + (home-page "https://github.com/cenkalti/backoff") + (synopsis "Exponential Backoff") + (description + "Package backoff implements backoff algorithms for retrying operations. +") + (license license:expat))) + +(define-public go-github-com-containerd-containerd-1.4.9 + (package + (name "go-github-com-containerd-containerd") + (version "1.4.9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/containerd") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ykikks6ihgg899ibk9m9m0hqrbss0cx7l7z4yjb873b10bacj52")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/containerd")) + (home-page "https://github.com/containerd/containerd") + (synopsis "Now Recruiting") + (description + "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") + (license license:asl2.0))) + +(define-public go-github-com-microsoft-hcsshim-0.8.23 + (package + (name "go-github-com-microsoft-hcsshim") + (version "0.8.23") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/microsoft/hcsshim") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19gmwvq72vrlw6wvnmz4rjmg6r34c1nbqk71mj4bqq08rpi3i89r")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/Microsoft/hcsshim")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) + ("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) + ("go-golang-org-x-sys-0.0.0-20210324051608-47abb6519492" + ,go-golang-org-x-sys-0.0.0-20210324051608-47abb6519492) + ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" + ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) + ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) + ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) + ("go-github-com-sirupsen-logrus-1.8.1" + ,go-github-com-sirupsen-logrus-1.8.1) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" + ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) + ("go-github-com-gogo-protobuf-1.3.2" + ,go-github-com-gogo-protobuf-1.3.2) + ("go-github-com-containerd-typeurl-1.0.2" + ,go-github-com-containerd-typeurl-1.0.2) + ("go-github-com-containerd-ttrpc-1.1.0" + ,go-github-com-containerd-ttrpc-1.1.0) + ("go-github-com-containerd-go-runc-1.0.0" + ,go-github-com-containerd-go-runc-1.0.0) + ("go-github-com-containerd-fifo-1.0.0" + ,go-github-com-containerd-fifo-1.0.0) + ("go-github-com-containerd-continuity-0.1.0" + ,go-github-com-containerd-continuity-0.1.0) + ("go-github-com-containerd-containerd-1.4.9" + ,go-github-com-containerd-containerd-1.4.9) + ("go-github-com-containerd-console-1.0.2" + ,go-github-com-containerd-console-1.0.2) + ("go-github-com-containerd-cgroups-1.0.1" + ,go-github-com-containerd-cgroups-1.0.1) + ("go-github-com-cenkalti-backoff-v4-4.1.1" + ,go-github-com-cenkalti-backoff-v4-4.1.1) + ("go-github-com-microsoft-go-winio-0.4.17" + ,go-github-com-microsoft-go-winio-0.4.17))) + (home-page "https://github.com/Microsoft/hcsshim") + (synopsis "hcsshim") + (description + "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") + (license license:expat))) + +(define-public go-github-com-containerd-aufs-1.0.0 + (package + (name "go-github-com-containerd-aufs") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/aufs") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0jyyyf6sr910m602axmp4h4j1l2n680cpp60z09pvprz55zi4ba0")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/aufs")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" + ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" + ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) + ("go-github-com-containerd-containerd-1.5.0-beta.3" + ,go-github-com-containerd-containerd-1.5.0-beta.3))) + (home-page "https://github.com/containerd/aufs") + (synopsis "aufs snapshotter") + (description + "AUFS implementation of the snapshot interface for containerd.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-btrfs-1.0.0 + (package + (name "go-github-com-containerd-btrfs") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/btrfs") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1yf38gg41y1v12m0cl81r9q7d13170a4npzqxhbz7qn32zr23kzn")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/btrfs")) + (propagated-inputs + `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) + (home-page "https://github.com/containerd/btrfs") + (synopsis "go-btrfs") + (description + "Package btrfs provides bindings for working with btrfs partitions from Go. +") + (license license:asl2.0))) + +(define-public go-github-com-cilium-ebpf-0.4.0 + (package + (name "go-github-com-cilium-ebpf") + (version "0.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cilium/ebpf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1j33vfz8mxnqadkd17l0y3ll71gph3ndm8hwrwbwnf5px7bfv9yl")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/cilium/ebpf")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" + ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) + ("go-github-com-google-go-cmp-0.5.4" + ,go-github-com-google-go-cmp-0.5.4) + ("go-github-com-frankban-quicktest-1.11.3" + ,go-github-com-frankban-quicktest-1.11.3))) + (home-page "https://github.com/cilium/ebpf") + (synopsis "eBPF") + (description "Package ebpf is a toolkit for working with eBPF programs. +") + (license license:expat))) + +(define-public go-github-com-containerd-cgroups-1.0.1 + (package + (name "go-github-com-containerd-cgroups") + (version "1.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/cgroups") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1p992w942xba9z77nhhbc6nk5q09c3zxxhq9n7fm5alx3a8fwbpl")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/cgroups")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" + ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) + ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-sirupsen-logrus-1.7.0" + ,go-github-com-sirupsen-logrus-1.7.0) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-runtime-spec-1.0.2" + ,go-github-com-opencontainers-runtime-spec-1.0.2) + ("go-github-com-gogo-protobuf-1.3.2" + ,go-github-com-gogo-protobuf-1.3.2) + ("go-github-com-godbus-dbus-v5-5.0.3" + ,go-github-com-godbus-dbus-v5-5.0.3) + ("go-github-com-docker-go-units-0.4.0" + ,go-github-com-docker-go-units-0.4.0) + ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" + ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) + ("go-github-com-coreos-go-systemd-v22-22.1.0" + ,go-github-com-coreos-go-systemd-v22-22.1.0) + ("go-github-com-cilium-ebpf-0.4.0" ,go-github-com-cilium-ebpf-0.4.0))) + (home-page "https://github.com/containerd/cgroups") + (synopsis "cgroups") + (description + "Go package for creating, managing, inspecting, and destroying cgroups. +The resources format for settings on the cgroup uses the OCI runtime-spec found +@url{https://github.com/opencontainers/runtime-spec,here}.") + (license license:asl2.0))) + +(define-public go-github-com-mitchellh-go-homedir-1.1.0 + (package + (name "go-github-com-mitchellh-go-homedir") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mitchellh/go-homedir") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ydzkipf28hwj2bfxqmwlww47khyk6d152xax4bnyh60f4lq3nx1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mitchellh/go-homedir")) + (home-page "https://github.com/mitchellh/go-homedir") + (synopsis "go-homedir") + (description + "This is a Go library for detecting the user's home directory without +the use of cgo, so the library can be used in cross-compilation environments.") + (license license:expat))) + +(define-public go-github-com-armon-consul-api-0.0.0-20180202201655-eb2c6b5be1b6 + (package + (name "go-github-com-armon-consul-api") + (version "0.0.0-20180202201655-eb2c6b5be1b6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/armon/consul-api") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1j6fdr1sg36qy4n4xjl7brq739fpm5npq98cmvklzjc9qrx98nk9")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/armon/consul-api")) + (home-page "https://github.com/armon/consul-api") + (synopsis "consul-api") + (description + " Please use @url{https://github.com/hashicorp/consul/tree/master/api,consul api package} instead. +Godocs for that package @url{http://godoc.org/github.com/hashicorp/consul/api,are here}.") + (license license:mpl2.0))) + +(define-public go-github-com-coreos-bbolt-1.3.2 + (package + (name "go-github-com-coreos-bbolt") + (version "1.3.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/etcd-io/bbolt") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "13d5l6p6c5wvkr6vn9hkhz9c593qifn7fgx0hg4d6jcvg1y0bnm2")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/coreos/bbolt")) + (home-page "https://github.com/coreos/bbolt") + (synopsis "bbolt") + (description + "package bbolt implements a low-level key/value store in pure Go. It supports +fully serializable transactions, ACID semantics, and lock-free MVCC with +multiple readers and a single writer. Bolt can be used for projects that +want a simple data store without the need to add large dependencies such as +Postgres or MySQL. +") + (license license:expat))) + +(define-public go-github-com-coreos-etcd-3.3.10+incompatible + (package + (name "go-github-com-coreos-etcd") + (version "3.3.10+incompatible") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/etcd-io/etcd") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1x2ii1hj8jraba8rbxz6dmc03y3sjxdnzipdvg6fywnlq1f3l3wl")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/coreos/etcd")) + (home-page "https://github.com/coreos/etcd") + (synopsis "etcd") + (description + "Package main is a simple wrapper of the real etcd entrypoint package +(located at github.com/coreos/etcd/etcdmain) to ensure that etcd is still +\"go getable\"; e.g. `go get github.com/coreos/etcd` works as expected and +builds a binary in $GOBIN/etcd +") + (license license:asl2.0))) + +(define-public go-github-com-golang-groupcache-0.0.0-20190129154638-5b532d6fd5ef + (package + (name "go-github-com-golang-groupcache") + (version "0.0.0-20190129154638-5b532d6fd5ef") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/groupcache") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ls2i4ixyd4r2556j7c5jmlligjb35gfvxknrdn2abjmcahgqd6h")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/groupcache")) + (home-page "https://github.com/golang/groupcache") + (synopsis "groupcache") + (description + "Package groupcache provides a data loading mechanism with caching +and de-duplication that works across a set of peer processes. +") + (license license:asl2.0))) + +(define-public go-github-com-gorilla-websocket-1.4.0 + (package + (name "go-github-com-gorilla-websocket") + (version "1.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gorilla/websocket") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "00i4vb31nsfkzzk7swvx3i75r2d960js3dri1875vypk3v2s0pzk")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/gorilla/websocket")) + (home-page "https://github.com/gorilla/websocket") + (synopsis "Gorilla WebSocket") + (description + "Package websocket implements the WebSocket protocol defined in @url{https://rfc-editor.org/rfc/rfc6455.html,RFC 6455}. +") + (license license:bsd-2))) + +(define-public go-github-com-grpc-ecosystem-go-grpc-middleware-1.0.0 + (package + (name "go-github-com-grpc-ecosystem-go-grpc-middleware") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc-ecosystem/go-grpc-middleware") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0lwgxih021xfhfb1xb9la5f98bpgpaiz63sbllx77qwwl2rmhrsp")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/grpc-ecosystem/go-grpc-middleware")) + (home-page "https://github.com/grpc-ecosystem/go-grpc-middleware") + (synopsis "Go gRPC Middleware") + (description + "`grpc_middleware` is a collection of gRPC middleware packages: interceptors, helpers and tools. +") + (license license:asl2.0))) + +(define-public go-github-com-grpc-ecosystem-grpc-gateway-1.9.0 + (package + (name "go-github-com-grpc-ecosystem-grpc-gateway") + (version "1.9.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc-ecosystem/grpc-gateway") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1r4y48c76yxc2hpqszfjirvh7zxjb6z72qmk95li12ar79dhv3dy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/grpc-ecosystem/grpc-gateway")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.0.0-20170812160011-eb3733d160e7" + ,go-gopkg-in-yaml-v2-2.0.0-20170812160011-eb3733d160e7) + ("go-gopkg-in-resty-v1-1.12.0" ,go-gopkg-in-resty-v1-1.12.0) + ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" + ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) + ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) + ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" + ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) + ("go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8" + ,go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8) + ("go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3" + ,go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3) + ("go-github-com-rogpeppe-fastuuid-0.0.0-20150106093220-6724a57986af" + ,go-github-com-rogpeppe-fastuuid-0.0.0-20150106093220-6724a57986af) + ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-ghodss-yaml-1.0.0" ,go-github-com-ghodss-yaml-1.0.0))) + (home-page "https://github.com/grpc-ecosystem/grpc-gateway") + (synopsis "grpc-gateway") + (description + "The grpc-gateway is a plugin of the Google protocol buffers compiler +@url{https://github.com/protocolbuffers/protobuf,protoc}. +It reads protobuf service definitions and generates a reverse-proxy server which +translates a RESTful HTTP API into gRPC. This server is generated according to the +@url{https://github.com/googleapis/googleapis/raw/master/google/api/http.proto#L46,(code google.api.http)} +annotations in your service definitions.") + (license license:bsd-3))) + +(define-public go-github-com-magiconair-properties-1.8.0 + (package + (name "go-github-com-magiconair-properties") + (version "1.8.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/magiconair/properties") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1a10362wv8a8qwb818wygn2z48lgzch940hvpv81hv8gc747ajxn")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/magiconair/properties")) + (home-page "https://github.com/magiconair/properties") + (synopsis "Overview") + (description + "Package properties provides functions for reading and writing +ISO-8859-1 and UTF-8 encoded .properties files and has +support for recursive property expansion. +") + (license license:bsd-2))) + +(define-public go-github-com-pelletier-go-toml-1.2.0 + (package + (name "go-github-com-pelletier-go-toml") + (version "1.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pelletier/go-toml") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fjzpcjng60mc3a4b2ql5a00d5gah84wj740dabv9kq67mpg8fxy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pelletier/go-toml")) + (home-page "https://github.com/pelletier/go-toml") + (synopsis "go-toml") + (description "Package toml is a TOML parser and manipulation library. +") + (license #f))) + +(define-public go-github-com-prometheus-common-0.4.0 + (package + (name "go-github-com-prometheus-common") + (version "0.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/common") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "00008pczafy982m59n1j31pnp41f4grbc2c40jccp52xg3m5klmr")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/common")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1) + ("go-gopkg-in-alecthomas-kingpin-v2-2.2.6" + ,go-gopkg-in-alecthomas-kingpin-v2-2.2.6) + ("go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5" + ,go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5) + ("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" + ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) + ("go-golang-org-x-net-0.0.0-20181114220301-adae6a3d119a" + ,go-golang-org-x-net-0.0.0-20181114220301-adae6a3d119a) + ("go-github-com-sirupsen-logrus-1.2.0" + ,go-github-com-sirupsen-logrus-1.2.0) + ("go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d" + ,go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d) + ("go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910" + ,go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910) + ("go-github-com-prometheus-client-golang-0.9.1" + ,go-github-com-prometheus-client-golang-0.9.1) + ("go-github-com-pkg-errors-0.8.0" ,go-github-com-pkg-errors-0.8.0) + ("go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223" + ,go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223) + ("go-github-com-matttproud-golang-protobuf-extensions-1.0.1" + ,go-github-com-matttproud-golang-protobuf-extensions-1.0.1) + ("go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515" + ,go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515) + ("go-github-com-julienschmidt-httprouter-1.2.0" + ,go-github-com-julienschmidt-httprouter-1.2.0) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0) + ("go-github-com-gogo-protobuf-1.1.1" + ,go-github-com-gogo-protobuf-1.1.1) + ("go-github-com-go-stack-stack-1.8.0" + ,go-github-com-go-stack-stack-1.8.0) + ("go-github-com-go-logfmt-logfmt-0.3.0" + ,go-github-com-go-logfmt-logfmt-0.3.0) + ("go-github-com-go-kit-kit-0.8.0" ,go-github-com-go-kit-kit-0.8.0) + ("go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973" + ,go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973) + ("go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf" + ,go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf) + ("go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc" + ,go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc))) + (home-page "https://github.com/prometheus/common") + (synopsis "Common") + (description + "This repository contains Go libraries that are shared across Prometheus +components and libraries. They are considered internal to Prometheus, without +any stability guarantees for external usage.") + (license license:asl2.0))) + +(define-public go-github-com-prometheus-procfs-0.0.0-20190507164030-5867b95ac084 + (package + (name "go-github-com-prometheus-procfs") + (version "0.0.0-20190507164030-5867b95ac084") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/procfs") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1rahdk62ajj4zpfb3mgzjqip773la9fb0m87m7s9a0b39l3fmzvr")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/procfs")) + (propagated-inputs + `(("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" + ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4))) + (home-page "https://github.com/prometheus/procfs") + (synopsis "procfs") + (description + "Package procfs provides functions to retrieve system, kernel and process +metrics from the pseudo-filesystem proc. +") + (license license:asl2.0))) + +(define-public go-github-com-oneofone-xxhash-1.2.2 + (package + (name "go-github-com-oneofone-xxhash") + (version "1.2.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/OneOfOne/xxhash") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1mjfhrwhvxa48rycjnqpqzm521i38h1hdyz6pdwmhd7xb8j6gwi6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/OneOfOne/xxhash")) + (home-page "https://github.com/OneOfOne/xxhash") + (synopsis "xxhash") + (description + "This is a native Go implementation of the excellent @url{https://github.com/Cyan4973/xxHash,xxhash}* algorithm, an extremely fast non-cryptographic Hash algorithm, working at speeds close to RAM limits.") + (license license:asl2.0))) + +(define-public go-github-com-spaolacci-murmur3-0.0.0-20180118202830-f09979ecbc72 + (package + (name "go-github-com-spaolacci-murmur3") + (version "0.0.0-20180118202830-f09979ecbc72") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/spaolacci/murmur3") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1lv3zyz3jy2d76bhvvs8svygx66606iygdvwy5cwc0p5z8yghq25")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/spaolacci/murmur3")) + (home-page "https://github.com/spaolacci/murmur3") + (synopsis "murmur3") + (description + "Package murmur3 implements Austin Appleby's non-cryptographic MurmurHash3. +") + (license license:bsd-3))) + +(define-public go-github-com-cespare-xxhash-1.1.0 + (package + (name "go-github-com-cespare-xxhash") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cespare/xxhash") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1qyzlcdcayavfazvi03izx83fvip8h36kis44zr2sg7xf6sx6l4x")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/cespare/xxhash")) + (propagated-inputs + `(("go-github-com-spaolacci-murmur3-0.0.0-20180118202830-f09979ecbc72" + ,go-github-com-spaolacci-murmur3-0.0.0-20180118202830-f09979ecbc72) + ("go-github-com-oneofone-xxhash-1.2.2" + ,go-github-com-oneofone-xxhash-1.2.2))) + (home-page "https://github.com/cespare/xxhash") + (synopsis "xxhash") + (description + "Package xxhash implements the 64-bit variant of xxHash (XXH64) as described +at @url{http://cyan4973.github.io/xxHash/,http://cyan4973.github.io/xxHash/}. +") + (license license:expat))) + +(define-public go-github-com-dgryski-go-sip13-0.0.0-20181026042036-e10d5fee7954 + (package + (name "go-github-com-dgryski-go-sip13") + (version "0.0.0-20181026042036-e10d5fee7954") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/dgryski/go-sip13") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "15fyibfas209ljz3f7g07kdmfbl3hhyd9n5n7aq5n5p9m5mn41d6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/dgryski/go-sip13")) + (home-page "https://github.com/dgryski/go-sip13") + (synopsis #f) + (description #f) + (license license:expat))) + +(define-public go-github-com-oklog-ulid-1.3.1 + (package + (name "go-github-com-oklog-ulid") + (version "1.3.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/oklog/ulid") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hybwyid820n80axrk863k2py93hbqlq6hxhf84ppmz0qd0ys0gq")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/oklog/ulid")) + (home-page "https://github.com/oklog/ulid") + (synopsis "Universally Unique Lexicographically Sortable Identifier") + (description + "This package provides a Go port of @url{https://github.com/alizain/ulid,alizain/ulid} with binary format implemented.") + (license license:asl2.0))) + +(define-public go-github-com-prometheus-common-0.0.0-20181113130724-41aa239b4cce + (package + (name "go-github-com-prometheus-common") + (version "0.0.0-20181113130724-41aa239b4cce") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/common") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0spy10lwanqa5ynks9cagphkq74zz4b3jm4w59vvizdcw4fhd7s6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/common")) + (home-page "https://github.com/prometheus/common") + (synopsis "Common") + (description + "This repository contains Go libraries that are shared across Prometheus +components and libraries. They are considered internal to Prometheus, without +any stability guarantees for external usage.") + (license license:asl2.0))) + +(define-public go-github-com-prometheus-tsdb-0.7.1 + (package + (name "go-github-com-prometheus-tsdb") + (version "0.7.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus-junkyard/tsdb") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1c1da8i5byvhh4fp3vqjfb65aaksjskn3ggb8wg9hcfzjrhgpz04")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/tsdb")) + (propagated-inputs + `(("go-gopkg-in-alecthomas-kingpin-v2-2.2.6" + ,go-gopkg-in-alecthomas-kingpin-v2-2.2.6) + ("go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8" + ,go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8) + ("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" + ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) + ("go-github-com-stretchr-testify-1.2.2" + ,go-github-com-stretchr-testify-1.2.2) + ("go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d" + ,go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d) + ("go-github-com-prometheus-common-0.0.0-20181113130724-41aa239b4cce" + ,go-github-com-prometheus-common-0.0.0-20181113130724-41aa239b4cce) + ("go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910" + ,go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910) + ("go-github-com-prometheus-client-golang-0.9.1" + ,go-github-com-prometheus-client-golang-0.9.1) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-pkg-errors-0.8.0" ,go-github-com-pkg-errors-0.8.0) + ("go-github-com-oklog-ulid-1.3.1" ,go-github-com-oklog-ulid-1.3.1) + ("go-github-com-matttproud-golang-protobuf-extensions-1.0.1" + ,go-github-com-matttproud-golang-protobuf-extensions-1.0.1) + ("go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515" + ,go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0) + ("go-github-com-gogo-protobuf-1.1.1" + ,go-github-com-gogo-protobuf-1.1.1) + ("go-github-com-go-stack-stack-1.8.0" + ,go-github-com-go-stack-stack-1.8.0) + ("go-github-com-go-logfmt-logfmt-0.3.0" + ,go-github-com-go-logfmt-logfmt-0.3.0) + ("go-github-com-go-kit-kit-0.8.0" ,go-github-com-go-kit-kit-0.8.0) + ("go-github-com-dgryski-go-sip13-0.0.0-20181026042036-e10d5fee7954" + ,go-github-com-dgryski-go-sip13-0.0.0-20181026042036-e10d5fee7954) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1) + ("go-github-com-cespare-xxhash-1.1.0" + ,go-github-com-cespare-xxhash-1.1.0) + ("go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973" + ,go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973) + ("go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf" + ,go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf) + ("go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc" + ,go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc))) + (home-page "https://github.com/prometheus/tsdb") + (synopsis "TSDB") + (description + "Package tsdb implements a time series storage for float64 sample data. +") + (license license:asl2.0))) + +(define-public go-github-com-prometheus-client-golang-0.9.3 + (package + (name "go-github-com-prometheus-client-golang") + (version "0.9.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/client_golang") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1608rm1y2p3iv8k2x7wyc6hshvpbfkv2k77hy0x870syms1g3g1p")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/client_golang")) + (propagated-inputs + `(("go-github-com-prometheus-tsdb-0.7.1" + ,go-github-com-prometheus-tsdb-0.7.1) + ("go-github-com-prometheus-procfs-0.0.0-20190507164030-5867b95ac084" + ,go-github-com-prometheus-procfs-0.0.0-20190507164030-5867b95ac084) + ("go-github-com-prometheus-common-0.4.0" + ,go-github-com-prometheus-common-0.4.0) + ("go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90" + ,go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90) + ("go-github-com-golang-protobuf-1.3.1" + ,go-github-com-golang-protobuf-1.3.1) + ("go-github-com-go-logfmt-logfmt-0.4.0" + ,go-github-com-go-logfmt-logfmt-0.4.0) + ("go-github-com-beorn7-perks-1.0.0" + ,go-github-com-beorn7-perks-1.0.0))) + (home-page "https://github.com/prometheus/client_golang") + (synopsis "Prometheus Go client library") + (description + "This is the @url{http://golang.org,Go} client library for +@url{http://prometheus.io,Prometheus}. It has two separate parts, one for +instrumenting application code, and one for creating clients that talk to the +Prometheus HTTP API.") + (license license:asl2.0))) + +(define-public go-github-com-spf13-afero-1.1.2 + (package + (name "go-github-com-spf13-afero") + (version "1.1.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/spf13/afero") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0miv4faf5ihjfifb1zv6aia6f6ik7h1s4954kcb8n6ixzhx9ck6k")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/spf13/afero")) + (home-page "https://github.com/spf13/afero") + (synopsis "Overview") + (description + "This package provides a FileSystem Abstraction System for Go") + (license license:asl2.0))) + +(define-public go-github-com-spf13-cast-1.3.0 + (package + (name "go-github-com-spf13-cast") + (version "1.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/spf13/cast") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0xq1ffqj8y8h7dcnm0m9lfrh0ga7pssnn2c1dnr09chqbpn4bdc5")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/spf13/cast")) + (propagated-inputs + `(("go-github-com-stretchr-testify-1.2.2" + ,go-github-com-stretchr-testify-1.2.2) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/spf13/cast") + (synopsis "cast") + (description "Package cast provides easy and safe casting in Go. +") + (license license:expat))) + +(define-public go-github-com-spf13-jwalterweatherman-1.0.0 + (package + (name "go-github-com-spf13-jwalterweatherman") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/spf13/jwalterweatherman") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "093fmmvavv84pv4q84hav7ph3fmrq87bvspjj899q0qsx37yvdr8")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/spf13/jwalterweatherman")) + (home-page "https://github.com/spf13/jwalterweatherman") + (synopsis "jWalterWeatherman") + (description + "Seamless printing to the terminal (stdout) and logging to a io.Writer +(file) thatâ\x80\x99s as easy to use as fmt.Println.") + (license license:expat))) + +(define-public go-github-com-ugorji-go-1.1.4 + (package + (name "go-github-com-ugorji-go") + (version "1.1.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/ugorji/go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ma2qvn5wqvjidpdz74x832a813qnr1cxbx6n6n125ak9b3wbn5w")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/ugorji/go")) + (home-page "https://github.com/ugorji/go") + (synopsis "go-codec") + (description + "This repository contains the @code{go-codec} library, the @code{codecgen} tool and +benchmarks for comparing against other libraries.") + (license license:expat))) + +(define-public go-github-com-xordataexchange-crypt-0.0.3-0.20170626215501-b2862e3d0a77 + (package + (name "go-github-com-xordataexchange-crypt") + (version "0.0.3-0.20170626215501-b2862e3d0a77") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/xordataexchange/crypt") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "04q3856anpzl4gdfgmg7pbp9cx231nkz3ymq2xp27rnmmwhfxr8y")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/xordataexchange/crypt")) + (home-page "https://github.com/xordataexchange/crypt") + (synopsis "crypt") + (description + "You can use crypt as a command line tool or as a configuration library:") + (license license:expat))) + +(define-public go-go-etcd-io-bbolt-1.3.2 + (package + (name "go-go-etcd-io-bbolt") + (version "1.3.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/etcd-io/bbolt") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "13d5l6p6c5wvkr6vn9hkhz9c593qifn7fgx0hg4d6jcvg1y0bnm2")))) + (build-system go-build-system) + (arguments '(#:import-path "go.etcd.io/bbolt")) + (home-page "https://go.etcd.io/bbolt") + (synopsis "bbolt") + (description + "package bbolt implements a low-level key/value store in pure Go. It supports +fully serializable transactions, ACID semantics, and lock-free MVCC with +multiple readers and a single writer. Bolt can be used for projects that +want a simple data store without the need to add large dependencies such as +Postgres or MySQL. +") + (license license:expat))) + +(define-public go-golang-org-x-time-0.0.0-20190308202827-9d24e82272b4 + (package + (name "go-golang-org-x-time") + (version "0.0.0-20190308202827-9d24e82272b4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/time") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1f5nkr4vys2vbd8wrwyiq2f5wcaahhpxmia85d1gshcbqjqf8dkb")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/time")) + (home-page "https://golang.org/x/time") + (synopsis "Go Time") + (description "This repository provides supplementary Go time packages.") + (license license:bsd-3))) + +(define-public go-github-com-spf13-viper-1.4.0 + (package + (name "go-github-com-spf13-viper") + (version "1.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/spf13/viper") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1zpzxvn13wpvbblbbn73svaq39zgxfjqhci9d68g3qf309pcfy19")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/spf13/viper")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) + ("go-google-golang-org-grpc-1.21.0" ,go-google-golang-org-grpc-1.21.0) + ("go-golang-org-x-time-0.0.0-20190308202827-9d24e82272b4" + ,go-golang-org-x-time-0.0.0-20190308202827-9d24e82272b4) + ("go-golang-org-x-net-0.0.0-20190522155817-f3200d17e092" + ,go-golang-org-x-net-0.0.0-20190522155817-f3200d17e092) + ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) + ("go-go-uber-org-multierr-1.1.0" ,go-go-uber-org-multierr-1.1.0) + ("go-go-uber-org-atomic-1.4.0" ,go-go-uber-org-atomic-1.4.0) + ("go-go-etcd-io-bbolt-1.3.2" ,go-go-etcd-io-bbolt-1.3.2) + ("go-github-com-xordataexchange-crypt-0.0.3-0.20170626215501-b2862e3d0a77" + ,go-github-com-xordataexchange-crypt-0.0.3-0.20170626215501-b2862e3d0a77) + ("go-github-com-xiang90-probing-0.0.0-20190116061207-43a291ad63a2" + ,go-github-com-xiang90-probing-0.0.0-20190116061207-43a291ad63a2) + ("go-github-com-ugorji-go-1.1.4" ,go-github-com-ugorji-go-1.1.4) + ("go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5" + ,go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5) + ("go-github-com-stretchr-testify-1.2.2" + ,go-github-com-stretchr-testify-1.2.2) + ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) + ("go-github-com-spf13-jwalterweatherman-1.0.0" + ,go-github-com-spf13-jwalterweatherman-1.0.0) + ("go-github-com-spf13-cast-1.3.0" ,go-github-com-spf13-cast-1.3.0) + ("go-github-com-spf13-afero-1.1.2" ,go-github-com-spf13-afero-1.1.2) + ("go-github-com-soheilhy-cmux-0.1.4" + ,go-github-com-soheilhy-cmux-0.1.4) + ("go-github-com-prometheus-client-golang-0.9.3" + ,go-github-com-prometheus-client-golang-0.9.3) + ("go-github-com-pelletier-go-toml-1.2.0" + ,go-github-com-pelletier-go-toml-1.2.0) + ("go-github-com-mitchellh-mapstructure-1.1.2" + ,go-github-com-mitchellh-mapstructure-1.1.2) + ("go-github-com-magiconair-properties-1.8.0" + ,go-github-com-magiconair-properties-1.8.0) + ("go-github-com-jonboulle-clockwork-0.1.0" + ,go-github-com-jonboulle-clockwork-0.1.0) + ("go-github-com-hashicorp-hcl-1.0.0" + ,go-github-com-hashicorp-hcl-1.0.0) + ("go-github-com-grpc-ecosystem-grpc-gateway-1.9.0" + ,go-github-com-grpc-ecosystem-grpc-gateway-1.9.0) + ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" + ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) + ("go-github-com-grpc-ecosystem-go-grpc-middleware-1.0.0" + ,go-github-com-grpc-ecosystem-go-grpc-middleware-1.0.0) + ("go-github-com-gorilla-websocket-1.4.0" + ,go-github-com-gorilla-websocket-1.4.0) + ("go-github-com-google-btree-1.0.0" ,go-github-com-google-btree-1.0.0) + ("go-github-com-golang-groupcache-0.0.0-20190129154638-5b532d6fd5ef" + ,go-github-com-golang-groupcache-0.0.0-20190129154638-5b532d6fd5ef) + ("go-github-com-gogo-protobuf-1.2.1" + ,go-github-com-gogo-protobuf-1.2.1) + ("go-github-com-fsnotify-fsnotify-1.4.7" + ,go-github-com-fsnotify-fsnotify-1.4.7) + ("go-github-com-dgrijalva-jwt-go-3.2.0+incompatible" + ,go-github-com-dgrijalva-jwt-go-3.2.0+incompatible) + ("go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f" + ,go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f) + ("go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e" + ,go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e) + ("go-github-com-coreos-go-semver-0.2.0" + ,go-github-com-coreos-go-semver-0.2.0) + ("go-github-com-coreos-etcd-3.3.10+incompatible" + ,go-github-com-coreos-etcd-3.3.10+incompatible) + ("go-github-com-coreos-bbolt-1.3.2" ,go-github-com-coreos-bbolt-1.3.2) + ("go-github-com-armon-consul-api-0.0.0-20180202201655-eb2c6b5be1b6" + ,go-github-com-armon-consul-api-0.0.0-20180202201655-eb2c6b5be1b6))) + (home-page "https://github.com/spf13/viper") + (synopsis "Install") + (description "Many Go projects are built using Viper including:") + (license license:expat))) + +(define-public go-github-com-spf13-cobra-1.0.0 + (package + (name "go-github-com-spf13-cobra") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/spf13/cobra") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0vbppqqhby302a5ayn0296jqr71qkcd4c9am7wzsk6z71fwdsa7h")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/spf13/cobra")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) + ("go-github-com-spf13-viper-1.4.0" ,go-github-com-spf13-viper-1.4.0) + ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) + ("go-github-com-mitchellh-go-homedir-1.1.0" + ,go-github-com-mitchellh-go-homedir-1.1.0) + ("go-github-com-inconshreveable-mousetrap-1.0.0" + ,go-github-com-inconshreveable-mousetrap-1.0.0) + ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" + ,go-github-com-cpuguy83-go-md2man-v2-2.0.0))) + (home-page "https://github.com/spf13/cobra") + (synopsis "Table of Contents") + (description + "Package cobra is a commander providing a simple interface to create powerful modern CLI interfaces. +In addition to providing an interface, Cobra simultaneously provides a controller to organize your application code. +") + (license license:asl2.0))) + +(define-public go-github-com-containerd-continuity-0.1.0 + (package + (name "go-github-com-containerd-continuity") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/continuity") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1h756l1xc31sc4zc1d3hmh64kl9qm5vpbbw0c93hrasn51ki96yz")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/continuity")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" + ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) + ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" + ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) + ("go-github-com-spf13-cobra-1.0.0" ,go-github-com-spf13-cobra-1.0.0) + ("go-github-com-sirupsen-logrus-1.7.0" + ,go-github-com-sirupsen-logrus-1.7.0) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-go-digest-1.0.0" + ,go-github-com-opencontainers-go-digest-1.0.0) + ("go-github-com-golang-protobuf-1.3.5" + ,go-github-com-golang-protobuf-1.3.5) + ("go-github-com-dustin-go-humanize-1.0.0" + ,go-github-com-dustin-go-humanize-1.0.0) + ("go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898" + ,go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898))) + (home-page "https://github.com/containerd/continuity") + (synopsis "continuity") + (description + "This package provides a transport-agnostic, filesystem metadata manifest system") + (license license:asl2.0))) + +(define-public go-github-com-containerd-fifo-1.0.0 + (package + (name "go-github-com-containerd-fifo") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/fifo") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1l6jy9b4mjcj7pbz1n79zmipni1dz60rf5n66vn5p2ggavbq7h1q")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/fifo")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" + ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) + (home-page "https://github.com/containerd/fifo") + (synopsis "fifo") + (description "Go package for handling fifos in a sane way.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-go-cni-1.0.2 + (package + (name "go-github-com-containerd-go-cni") + (version "1.0.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/go-cni") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1hqwy402qy04slz2vj05s517mhdbmmkdjs6nhfnk184a730whgv6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/go-cni")) + (propagated-inputs + `(("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-onsi-gomega-1.7.1" ,go-github-com-onsi-gomega-1.7.1) + ("go-github-com-onsi-ginkgo-1.10.3" ,go-github-com-onsi-ginkgo-1.10.3) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1) + ("go-github-com-containernetworking-cni-0.8.0" + ,go-github-com-containernetworking-cni-0.8.0))) + (home-page "https://github.com/containerd/go-cni") + (synopsis "go-cni") + (description + "This package provides a generic CNI library to provide APIs for CNI plugin interactions. The library provides APIs to:") + (license license:asl2.0))) + +(define-public go-github-com-containerd-go-runc-1.0.0 + (package + (name "go-github-com-containerd-go-runc") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/go-runc") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0xk30dzzxmd83bnfyilplizlxh1pg1gqz2jrq9wz9rqqkxazc03n")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/go-runc")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f" + ,go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f) + ("go-github-com-sirupsen-logrus-1.7.0" + ,go-github-com-sirupsen-logrus-1.7.0) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-runtime-spec-1.0.2" + ,go-github-com-opencontainers-runtime-spec-1.0.2) + ("go-github-com-containerd-console-1.0.1" + ,go-github-com-containerd-console-1.0.1))) + (home-page "https://github.com/containerd/go-runc") + (synopsis "go-runc") + (description + "This is a package for consuming the @url{https://github.com/opencontainers/runc,runc} binary in your Go applications. +It tries to expose all the settings and features of the runc CLI. If there is something missing then add it, its opensource!") + (license license:asl2.0))) + +(define-public go-github-com-containerd-zfs-0.0.0-20210315114300-dde8f0fda960 + (package + (name "go-github-com-containerd-zfs") + (version "0.0.0-20210315114300-dde8f0fda960") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/zfs") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ag5p2vqzdavq66wb1z42yw5jzrncsi97g8qk2x9nq51z1nj8rdi")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/zfs")) + (propagated-inputs + `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible" + ,go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible) + ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" + ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) + ("go-github-com-containerd-containerd-1.5.0-beta.3" + ,go-github-com-containerd-containerd-1.5.0-beta.3))) + (home-page "https://github.com/containerd/zfs") + (synopsis "ZFS snapshotter plugin") + (description "ZFS snapshotter plugin for containerd.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-containerd-1.5.0-beta.4 + (package + (name "go-github-com-containerd-containerd") + (version "1.5.0-beta.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/containerd") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "039c26mjq8qs1s4kbx76fc99wnmnx165bqn16b2b9gyvxcphs7iv")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/containerd")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) + ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) + ("go-github-com-golang-protobuf-1.3.5" + ,go-github-com-golang-protobuf-1.3.5) + ("go-github-com-gogo-googleapis-1.3.2" + ,go-github-com-gogo-googleapis-1.3.2) + ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" + ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) + ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) + ("go-k8s-io-cri-api-0.20.1" ,go-k8s-io-cri-api-0.20.1) + ("go-k8s-io-component-base-0.20.1" ,go-k8s-io-component-base-0.20.1) + ("go-k8s-io-client-go-0.20.1" ,go-k8s-io-client-go-0.20.1) + ("go-k8s-io-apiserver-0.20.1" ,go-k8s-io-apiserver-0.20.1) + ("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) + ("go-k8s-io-api-0.20.1" ,go-k8s-io-api-0.20.1) + ("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) + ("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" + ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) + ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" + ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) + ("go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b" + ,go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b) + ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) + ("go-github-com-tchap-go-patricia-2.2.6+incompatible" + ,go-github-com-tchap-go-patricia-2.2.6+incompatible) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-sirupsen-logrus-1.7.0" + ,go-github-com-sirupsen-logrus-1.7.0) + ("go-github-com-prometheus-client-golang-1.7.1" + ,go-github-com-prometheus-client-golang-1.7.1) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-selinux-1.8.0" + ,go-github-com-opencontainers-selinux-1.8.0) + ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" + ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) + ("go-github-com-opencontainers-runc-1.0.0-rc93" + ,go-github-com-opencontainers-runc-1.0.0-rc93) + ("go-github-com-opencontainers-image-spec-1.0.1" + ,go-github-com-opencontainers-image-spec-1.0.1) + ("go-github-com-opencontainers-go-digest-1.0.0" + ,go-github-com-opencontainers-go-digest-1.0.0) + ("go-github-com-moby-sys-symlink-0.1.0" + ,go-github-com-moby-sys-symlink-0.1.0) + ("go-github-com-moby-sys-mountinfo-0.4.1" + ,go-github-com-moby-sys-mountinfo-0.4.1) + ("go-github-com-klauspost-compress-1.11.3" + ,go-github-com-klauspost-compress-1.11.3) + ("go-github-com-imdario-mergo-0.3.11" + ,go-github-com-imdario-mergo-0.3.11) + ("go-github-com-hashicorp-go-multierror-1.0.0" + ,go-github-com-hashicorp-go-multierror-1.0.0) + ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" + ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) + ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) + ("go-github-com-google-go-cmp-0.5.4" + ,go-github-com-google-go-cmp-0.5.4) + ("go-github-com-gogo-protobuf-1.3.2" + ,go-github-com-gogo-protobuf-1.3.2) + ("go-github-com-fsnotify-fsnotify-1.4.9" + ,go-github-com-fsnotify-fsnotify-1.4.9) + ("go-github-com-emicklei-go-restful-2.9.5+incompatible" + ,go-github-com-emicklei-go-restful-2.9.5+incompatible) + ("go-github-com-docker-go-units-0.4.0" + ,go-github-com-docker-go-units-0.4.0) + ("go-github-com-docker-go-metrics-0.0.1" + ,go-github-com-docker-go-metrics-0.0.1) + ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" + ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1) + ("go-github-com-coreos-go-systemd-v22-22.1.0" + ,go-github-com-coreos-go-systemd-v22-22.1.0) + ("go-github-com-containernetworking-plugins-0.8.6" + ,go-github-com-containernetworking-plugins-0.8.6) + ("go-github-com-containerd-zfs-0.0.0-20210315114300-dde8f0fda960" + ,go-github-com-containerd-zfs-0.0.0-20210315114300-dde8f0fda960) + ("go-github-com-containerd-typeurl-1.0.1" + ,go-github-com-containerd-typeurl-1.0.1) + ("go-github-com-containerd-ttrpc-1.0.2" + ,go-github-com-containerd-ttrpc-1.0.2) + ("go-github-com-containerd-nri-0.0.0-20210316161719-dbaa18c31c14" + ,go-github-com-containerd-nri-0.0.0-20210316161719-dbaa18c31c14) + ("go-github-com-containerd-imgcrypt-1.1.1-0.20210312161619-7ed62a527887" + ,go-github-com-containerd-imgcrypt-1.1.1-0.20210312161619-7ed62a527887) + ("go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0" + ,go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0) + ("go-github-com-containerd-go-cni-1.0.1" + ,go-github-com-containerd-go-cni-1.0.1) + ("go-github-com-containerd-fifo-0.0.0-20210316144830-115abcc95a1d" + ,go-github-com-containerd-fifo-0.0.0-20210316144830-115abcc95a1d) + ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" + ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) + ("go-github-com-containerd-console-1.0.1" + ,go-github-com-containerd-console-1.0.1) + ("go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68" + ,go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68) + ("go-github-com-containerd-btrfs-0.0.0-20210316141732-918d888fb676" + ,go-github-com-containerd-btrfs-0.0.0-20210316141732-918d888fb676) + ("go-github-com-containerd-aufs-0.0.0-20210316121734-20793ff83c97" + ,go-github-com-containerd-aufs-0.0.0-20210316121734-20793ff83c97) + ("go-github-com-microsoft-hcsshim-0.8.15" + ,go-github-com-microsoft-hcsshim-0.8.15) + ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" + ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3) + ("go-github-com-burntsushi-toml-0.3.1" + ,go-github-com-burntsushi-toml-0.3.1))) + (home-page "https://github.com/containerd/containerd") + (synopsis "Now Recruiting") + (description + "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") + (license license:asl2.0))) + +(define-public go-golang-org-x-sys-0.0.0-20210324051608-47abb6519492 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20210324051608-47abb6519492") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19g0pa8lazad5kcq396ggg9x1d6sx39rw9brz3hklx71gg1jd3ja")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-microsoft-hcsshim-0.8.16 + (package + (name "go-github-com-microsoft-hcsshim") + (version "0.8.16") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/microsoft/hcsshim") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "15bxkqq4zavwspx3ga8j3vx9jrc7l0jazsa6cs6im9liy6xhkbd6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/Microsoft/hcsshim")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) + ("go-golang-org-x-sys-0.0.0-20210324051608-47abb6519492" + ,go-golang-org-x-sys-0.0.0-20210324051608-47abb6519492) + ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" + ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) + ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) + ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) + ("go-github-com-sirupsen-logrus-1.7.0" + ,go-github-com-sirupsen-logrus-1.7.0) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" + ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) + ("go-github-com-gogo-protobuf-1.3.2" + ,go-github-com-gogo-protobuf-1.3.2) + ("go-github-com-containerd-typeurl-1.0.1" + ,go-github-com-containerd-typeurl-1.0.1) + ("go-github-com-containerd-ttrpc-1.0.2" + ,go-github-com-containerd-ttrpc-1.0.2) + ("go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0" + ,go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0) + ("go-github-com-containerd-containerd-1.5.0-beta.4" + ,go-github-com-containerd-containerd-1.5.0-beta.4) + ("go-github-com-containerd-console-1.0.1" + ,go-github-com-containerd-console-1.0.1) + ("go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68" + ,go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68) + ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" + ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3))) + (home-page "https://github.com/Microsoft/hcsshim") + (synopsis "hcsshim") + (description + "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") + (license license:expat))) + +(define-public go-github-com-microsoft-go-winio-0.4.17-0.20210324224401-5516f17a5958 + (package + (name "go-github-com-microsoft-go-winio") + (version "0.4.17-0.20210324224401-5516f17a5958") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/microsoft/go-winio") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0gmgiak4x4gdyr17zm4b9vvharflk9pz5aj5jayh9hq50133b2f9")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/Microsoft/go-winio")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" + ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) + ("go-github-com-sirupsen-logrus-1.7.0" + ,go-github-com-sirupsen-logrus-1.7.0) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) + (home-page "https://github.com/Microsoft/go-winio") + (synopsis "go-winio") + (description + "This repository contains utilities for efficiently performing Win32 IO operations in +Go. Currently, this is focused on accessing named pipes and other file handles, and +for using named pipes as a net transport.") + (license license:expat))) + +(define-public go-github-com-containerd-aufs-0.0.0-20210316121734-20793ff83c97 + (package + (name "go-github-com-containerd-aufs") + (version "0.0.0-20210316121734-20793ff83c97") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/aufs") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ipr8pafb2xpkchfvnxjcfx9pb48mjr9k8krj9gnagssxhynbkd5")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/aufs")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" + ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" + ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) + ("go-github-com-containerd-containerd-1.5.0-beta.3" + ,go-github-com-containerd-containerd-1.5.0-beta.3))) + (home-page "https://github.com/containerd/aufs") + (synopsis "aufs snapshotter") + (description + "AUFS implementation of the snapshot interface for containerd.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-btrfs-0.0.0-20210316141732-918d888fb676 + (package + (name "go-github-com-containerd-btrfs") + (version "0.0.0-20210316141732-918d888fb676") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/btrfs") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1yf38gg41y1v12m0cl81r9q7d13170a4npzqxhbz7qn32zr23kzn")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/btrfs")) + (propagated-inputs + `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) + (home-page "https://github.com/containerd/btrfs") + (synopsis "go-btrfs") + (description + "Package btrfs provides bindings for working with btrfs partitions from Go. +") + (license license:asl2.0))) + +(define-public go-github-com-containerd-fifo-0.0.0-20210316144830-115abcc95a1d + (package + (name "go-github-com-containerd-fifo") + (version "0.0.0-20210316144830-115abcc95a1d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/fifo") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hqna43p8r6g3xv8g8n985hq1nzipsvjiwm70xpbzbgynh4ym6z5")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/fifo")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" + ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) + (home-page "https://github.com/containerd/fifo") + (synopsis "fifo") + (description "Go package for handling fifos in a sane way.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0 + (package + (name "go-github-com-containerd-go-runc") + (version "0.0.0-20201020171139-16b287bc67d0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/go-runc") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0xk30dzzxmd83bnfyilplizlxh1pg1gqz2jrq9wz9rqqkxazc03n")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/go-runc")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f" + ,go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f) + ("go-github-com-sirupsen-logrus-1.7.0" + ,go-github-com-sirupsen-logrus-1.7.0) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-runtime-spec-1.0.2" + ,go-github-com-opencontainers-runtime-spec-1.0.2) + ("go-github-com-containerd-console-1.0.1" + ,go-github-com-containerd-console-1.0.1))) + (home-page "https://github.com/containerd/go-runc") + (synopsis "go-runc") + (description + "This is a package for consuming the @url{https://github.com/opencontainers/runc,runc} binary in your Go applications. +It tries to expose all the settings and features of the runc CLI. If there is something missing then add it, its opensource!") + (license license:asl2.0))) + +(define-public go-github-com-containerd-imgcrypt-1.1.1-0.20210312161619-7ed62a527887 + (package + (name "go-github-com-containerd-imgcrypt") + (version "1.1.1-0.20210312161619-7ed62a527887") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/imgcrypt") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "16pgcc0w8m2cxhfjzmmd2h3n6mxzc1nlghrhgjlx0lf4q96hv904")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/imgcrypt")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) + ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" + ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) + ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) + ("go-github-com-sirupsen-logrus-1.7.0" + ,go-github-com-sirupsen-logrus-1.7.0) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" + ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) + ("go-github-com-opencontainers-image-spec-1.0.1" + ,go-github-com-opencontainers-image-spec-1.0.1) + ("go-github-com-opencontainers-go-digest-1.0.0" + ,go-github-com-opencontainers-go-digest-1.0.0) + ("go-github-com-gogo-protobuf-1.3.2" + ,go-github-com-gogo-protobuf-1.3.2) + ("go-github-com-containers-ocicrypt-1.1.0" + ,go-github-com-containers-ocicrypt-1.1.0) + ("go-github-com-containerd-typeurl-1.0.1" + ,go-github-com-containerd-typeurl-1.0.1) + ("go-github-com-containerd-containerd-1.5.0-beta.3" + ,go-github-com-containerd-containerd-1.5.0-beta.3) + ("go-github-com-containerd-console-1.0.1" + ,go-github-com-containerd-console-1.0.1) + ("go-github-com-microsoft-hcsshim-0.8.15" + ,go-github-com-microsoft-hcsshim-0.8.15) + ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" + ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3))) + (home-page "https://github.com/containerd/imgcrypt") + (synopsis "imgcrypt image encryption library and command line tool") + (description + "Project @code{imgcrypt} is a non-core subproject of containerd.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-nri-0.0.0-20210316161719-dbaa18c31c14 + (package + (name "go-github-com-containerd-nri") + (version "0.0.0-20210316161719-dbaa18c31c14") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/nri") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0kyrvagbga6yib7il0m4zvqz977a4wsv5lgjd3ix53xmr4h7fgm7")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/nri")) + (propagated-inputs + `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-containerd-containerd-1.5.0-beta.3" + ,go-github-com-containerd-containerd-1.5.0-beta.3))) + (home-page "https://github.com/containerd/nri") + (synopsis "nri - Node Resource Interface") + (description + "This project is a WIP for a new, CNI like, interface for managing resources on a node for Pods and Containers.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-zfs-0.0.0-20210324211415-d5c4544f0433 + (package + (name "go-github-com-containerd-zfs") + (version "0.0.0-20210324211415-d5c4544f0433") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/zfs") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1wsqwqv2pyn05asgpm9clgpwq9b8b0fjk4khzkjvscrf5j4v1rx4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/zfs")) + (propagated-inputs + `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible" + ,go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible) + ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" + ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) + ("go-github-com-containerd-containerd-1.5.0-beta.3" + ,go-github-com-containerd-containerd-1.5.0-beta.3))) + (home-page "https://github.com/containerd/zfs") + (synopsis "ZFS snapshotter plugin") + (description "ZFS snapshotter plugin for containerd.") + (license license:asl2.0))) + +(define-public go-k8s-io-apiserver-0.20.4 + (package + (name "go-k8s-io-apiserver") + (version "0.20.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes/apiserver") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1gffl7z6bvi46v0fvphbak4waddsgf4pd5w16khgrzl1sv9skn61")))) + (build-system go-build-system) + (arguments '(#:import-path "k8s.io/apiserver")) + (propagated-inputs + `(("go-k8s-io-component-base-0.20.4" ,go-k8s-io-component-base-0.20.4) + ("go-k8s-io-client-go-0.20.4" ,go-k8s-io-client-go-0.20.4) + ("go-k8s-io-apimachinery-0.20.4" ,go-k8s-io-apimachinery-0.20.4) + ("go-k8s-io-api-0.20.4" ,go-k8s-io-api-0.20.4) + ("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) + ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.2" + ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.2) + ("go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.14" + ,go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.14) + ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" + ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) + ("go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd" + ,go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd) + ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) + ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) + ("go-gopkg-in-square-go-jose-v2-2.2.2" + ,go-gopkg-in-square-go-jose-v2-2.2.2) + ("go-gopkg-in-natefinch-lumberjack-v2-2.0.0" + ,go-gopkg-in-natefinch-lumberjack-v2-2.0.0) + ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) + ("go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a" + ,go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a) + ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" + ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) + ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" + ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) + ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" + ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) + ("go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0" + ,go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0) + ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) + ("go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489" + ,go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489) + ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) + ("go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5" + ,go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) + ("go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021" + ,go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822" + ,go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822) + ("go-github-com-mailru-easyjson-0.7.0" + ,go-github-com-mailru-easyjson-0.7.0) + ("go-github-com-hashicorp-golang-lru-0.5.1" + ,go-github-com-hashicorp-golang-lru-0.5.1) + ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" + ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) + ("go-github-com-gorilla-websocket-1.4.2" + ,go-github-com-gorilla-websocket-1.4.2) + ("go-github-com-googleapis-gnostic-0.4.1" + ,go-github-com-googleapis-gnostic-0.4.1) + ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) + ("go-github-com-google-gofuzz-1.1.0" + ,go-github-com-google-gofuzz-1.1.0) + ("go-github-com-google-go-cmp-0.5.2" + ,go-github-com-google-go-cmp-0.5.2) + ("go-github-com-gogo-protobuf-1.3.1" + ,go-github-com-gogo-protobuf-1.3.1) + ("go-github-com-go-openapi-spec-0.19.3" + ,go-github-com-go-openapi-spec-0.19.3) + ("go-github-com-evanphx-json-patch-4.9.0+incompatible" + ,go-github-com-evanphx-json-patch-4.9.0+incompatible) + ("go-github-com-emicklei-go-restful-2.9.5+incompatible" + ,go-github-com-emicklei-go-restful-2.9.5+incompatible) + ("go-github-com-dustin-go-humanize-1.0.0" + ,go-github-com-dustin-go-humanize-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1) + ("go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f" + ,go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f) + ("go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e" + ,go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e) + ("go-github-com-coreos-go-semver-0.3.0" + ,go-github-com-coreos-go-semver-0.3.0) + ("go-github-com-coreos-go-oidc-2.1.0+incompatible" + ,go-github-com-coreos-go-oidc-2.1.0+incompatible))) + (home-page "https://k8s.io/apiserver") + (synopsis "apiserver") + (description + "Generic library for building a Kubernetes aggregated API server.") + (license license:asl2.0))) + +(define-public go-k8s-io-api-0.20.4 + (package + (name "go-k8s-io-api") + (version "0.20.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes/api") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hjckd94vpsr690kwx7dad8qlb8xjg2bz5ms315s9h6wc5cqwvgy")))) + (build-system go-build-system) + (arguments '(#:import-path "k8s.io/api")) + (propagated-inputs + `(("go-k8s-io-apimachinery-0.20.4" ,go-k8s-io-apimachinery-0.20.4) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-gogo-protobuf-1.3.1" + ,go-github-com-gogo-protobuf-1.3.1))) + (home-page "https://k8s.io/api") + (synopsis "api") + (description + "Schema of the external API types that are served by the Kubernetes API server.") + (license license:asl2.0))) + +(define-public go-k8s-io-apimachinery-0.20.4 + (package + (name "go-k8s-io-apimachinery") + (version "0.20.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes/apimachinery") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "15qc12lbzpd4lgajy0rv24b3ky4hhg5y1l37qxdfiakhz91didfw")))) + (build-system go-build-system) + (arguments '(#:import-path "k8s.io/apimachinery")) + (propagated-inputs + `(("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) + ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.2" + ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.2) + ("go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd" + ,go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd) + ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) + ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) + ("go-gopkg-in-inf-v0-0.9.1" ,go-gopkg-in-inf-v0-0.9.1) + ("go-google-golang-org-protobuf-1.25.0" + ,go-google-golang-org-protobuf-1.25.0) + ("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" + ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) + ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) + ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" + ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) + ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" + ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-onsi-gomega-1.7.0" ,go-github-com-onsi-gomega-1.7.0) + ("go-github-com-onsi-ginkgo-1.11.0" ,go-github-com-onsi-ginkgo-1.11.0) + ("go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f" + ,go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f) + ("go-github-com-modern-go-reflect2-1.0.1" + ,go-github-com-modern-go-reflect2-1.0.1) + ("go-github-com-json-iterator-go-1.1.10" + ,go-github-com-json-iterator-go-1.1.10) + ("go-github-com-hashicorp-golang-lru-0.5.1" + ,go-github-com-hashicorp-golang-lru-0.5.1) + ("go-github-com-googleapis-gnostic-0.4.1" + ,go-github-com-googleapis-gnostic-0.4.1) + ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) + ("go-github-com-google-gofuzz-1.1.0" + ,go-github-com-google-gofuzz-1.1.0) + ("go-github-com-google-go-cmp-0.5.2" + ,go-github-com-google-go-cmp-0.5.2) + ("go-github-com-golang-protobuf-1.4.3" + ,go-github-com-golang-protobuf-1.4.3) + ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" + ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) + ("go-github-com-gogo-protobuf-1.3.1" + ,go-github-com-gogo-protobuf-1.3.1) + ("go-github-com-fsnotify-fsnotify-1.4.9" + ,go-github-com-fsnotify-fsnotify-1.4.9) + ("go-github-com-evanphx-json-patch-4.9.0+incompatible" + ,go-github-com-evanphx-json-patch-4.9.0+incompatible) + ("go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153" + ,go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153) + ("go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96" + ,go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://k8s.io/apimachinery") + (synopsis "apimachinery") + (description + "Scheme, typing, encoding, decoding, and conversion packages for Kubernetes and Kubernetes-like API objects.") + (license license:asl2.0))) + +(define-public go-k8s-io-client-go-0.20.4 + (package + (name "go-k8s-io-client-go") + (version "0.20.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes/client-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0g8x2d59qm6068rql63c0mdhcjz9jsyyf7a5fdg1hyf88dvigfcx")))) + (build-system go-build-system) + (arguments '(#:import-path "k8s.io/client-go")) + (propagated-inputs + `(("go-k8s-io-apimachinery-0.20.4" ,go-k8s-io-apimachinery-0.20.4) + ("go-k8s-io-api-0.20.4" ,go-k8s-io-api-0.20.4) + ("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) + ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" + ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) + ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) + ("go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e" + ,go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e) + ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" + ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) + ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" + ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) + ("go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0" + ,go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) + ("go-github-com-peterbourgon-diskv-2.0.1+incompatible" + ,go-github-com-peterbourgon-diskv-2.0.1+incompatible) + ("go-github-com-imdario-mergo-0.3.5" + ,go-github-com-imdario-mergo-0.3.5) + ("go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7" + ,go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7) + ("go-github-com-googleapis-gnostic-0.4.1" + ,go-github-com-googleapis-gnostic-0.4.1) + ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) + ("go-github-com-google-gofuzz-1.1.0" + ,go-github-com-google-gofuzz-1.1.0) + ("go-github-com-google-go-cmp-0.5.2" + ,go-github-com-google-go-cmp-0.5.2) + ("go-github-com-golang-protobuf-1.4.3" + ,go-github-com-golang-protobuf-1.4.3) + ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" + ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) + ("go-github-com-gogo-protobuf-1.3.1" + ,go-github-com-gogo-protobuf-1.3.1) + ("go-github-com-evanphx-json-patch-4.9.0+incompatible" + ,go-github-com-evanphx-json-patch-4.9.0+incompatible) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1) + ("go-github-com-azure-go-autorest-autorest-adal-0.9.5" + ,go-github-com-azure-go-autorest-autorest-adal-0.9.5) + ("go-github-com-azure-go-autorest-autorest-0.11.1" + ,go-github-com-azure-go-autorest-autorest-0.11.1) + ("go-cloud-google-com-go-0.54.0" ,go-cloud-google-com-go-0.54.0))) + (home-page "https://k8s.io/client-go") + (synopsis "client-go") + (description + "Go clients for talking to a @url{http://kubernetes.io/,kubernetes} cluster.") + (license license:asl2.0))) + +(define-public go-k8s-io-component-base-0.20.4 + (package + (name "go-k8s-io-component-base") + (version "0.20.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes/component-base") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "02b782p63h8z3pg64i1kfgkmxwslxpyl6afkhd1agbig9zd6g7w8")))) + (build-system go-build-system) + (arguments '(#:import-path "k8s.io/component-base")) + (propagated-inputs + `(("go-k8s-io-client-go-0.20.4" ,go-k8s-io-client-go-0.20.4) + ("go-k8s-io-apimachinery-0.20.4" ,go-k8s-io-apimachinery-0.20.4) + ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" + ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) + ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) + ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) + ("go-go-uber-org-multierr-1.1.0" ,go-go-uber-org-multierr-1.1.0) + ("go-go-uber-org-atomic-1.4.0" ,go-go-uber-org-atomic-1.4.0) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) + ("go-github-com-sirupsen-logrus-1.6.0" + ,go-github-com-sirupsen-logrus-1.6.0) + ("go-github-com-prometheus-procfs-0.2.0" + ,go-github-com-prometheus-procfs-0.2.0) + ("go-github-com-prometheus-common-0.10.0" + ,go-github-com-prometheus-common-0.10.0) + ("go-github-com-prometheus-client-model-0.2.0" + ,go-github-com-prometheus-client-model-0.2.0) + ("go-github-com-prometheus-client-golang-1.7.1" + ,go-github-com-prometheus-client-golang-1.7.1) + ("go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd" + ,go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd) + ("go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369" + ,go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369) + ("go-github-com-google-go-cmp-0.5.2" + ,go-github-com-google-go-cmp-0.5.2) + ("go-github-com-go-logr-logr-0.2.0" ,go-github-com-go-logr-logr-0.2.0) + ("go-github-com-blang-semver-3.5.1+incompatible" + ,go-github-com-blang-semver-3.5.1+incompatible))) + (home-page "https://k8s.io/component-base") + (synopsis "component-base") + (description + "Implement KEP 32: @url{https://github.com/kubernetes/enhancements/blob/master/keps/sig-cluster-lifecycle/wgs/783-component-base/README.md,https://github.com/kubernetes/enhancements/blob/master/keps/sig-cluster-lifecycle/wgs/783-component-base/README.md}") + (license license:asl2.0))) + +(define-public go-k8s-io-cri-api-0.20.4 + (package + (name "go-k8s-io-cri-api") + (version "0.20.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes/cri-api") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1r98d0kv42sijdg3404xx2g5jj0zixvfagkky2zla12p68ajm4xr")))) + (build-system go-build-system) + (arguments '(#:import-path "k8s.io/cri-api")) + (propagated-inputs + `(("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" + ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) + ("go-google-golang-org-protobuf-1.25.0" + ,go-google-golang-org-protobuf-1.25.0) + ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) + ("go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a" + ,go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a) + ("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" + ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) + ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) + ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" + ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) + ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" + ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-kr-pretty-0.2.0" ,go-github-com-kr-pretty-0.2.0) + ("go-github-com-google-go-cmp-0.5.2" + ,go-github-com-google-go-cmp-0.5.2) + ("go-github-com-golang-protobuf-1.4.3" + ,go-github-com-golang-protobuf-1.4.3) + ("go-github-com-gogo-protobuf-1.3.1" + ,go-github-com-gogo-protobuf-1.3.1) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://k8s.io/cri-api") + (synopsis "Purpose") + (description + "This repository contains the definitions for the Container Runtime Interface (CRI). +CRI is a plugin interface which enables kubelet to use a wide variety of container runtimes, +without the need to recompile. CRI consists of a protocol buffers and gRPC API.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-containerd-1.5.0-rc.0 + (package + (name "go-github-com-containerd-containerd") + (version "1.5.0-rc.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/containerd") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "148z6782bj0vy3vzbhg2xf53g14llvxfsmdsqkz6x5n49rm6xr4i")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/containerd")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) + ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) + ("go-github-com-golang-protobuf-1.3.5" + ,go-github-com-golang-protobuf-1.3.5) + ("go-github-com-gogo-googleapis-1.3.2" + ,go-github-com-gogo-googleapis-1.3.2) + ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" + ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) + ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) + ("go-k8s-io-cri-api-0.20.4" ,go-k8s-io-cri-api-0.20.4) + ("go-k8s-io-component-base-0.20.4" ,go-k8s-io-component-base-0.20.4) + ("go-k8s-io-client-go-0.20.4" ,go-k8s-io-client-go-0.20.4) + ("go-k8s-io-apiserver-0.20.4" ,go-k8s-io-apiserver-0.20.4) + ("go-k8s-io-apimachinery-0.20.4" ,go-k8s-io-apimachinery-0.20.4) + ("go-k8s-io-api-0.20.4" ,go-k8s-io-api-0.20.4) + ("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) + ("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" + ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) + ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" + ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) + ("go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b" + ,go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b) + ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) + ("go-github-com-tchap-go-patricia-2.2.6+incompatible" + ,go-github-com-tchap-go-patricia-2.2.6+incompatible) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-sirupsen-logrus-1.7.0" + ,go-github-com-sirupsen-logrus-1.7.0) + ("go-github-com-prometheus-client-golang-1.7.1" + ,go-github-com-prometheus-client-golang-1.7.1) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-pelletier-go-toml-1.8.1" + ,go-github-com-pelletier-go-toml-1.8.1) + ("go-github-com-opencontainers-selinux-1.8.0" + ,go-github-com-opencontainers-selinux-1.8.0) + ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" + ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) + ("go-github-com-opencontainers-runc-1.0.0-rc93" + ,go-github-com-opencontainers-runc-1.0.0-rc93) + ("go-github-com-opencontainers-image-spec-1.0.1" + ,go-github-com-opencontainers-image-spec-1.0.1) + ("go-github-com-opencontainers-go-digest-1.0.0" + ,go-github-com-opencontainers-go-digest-1.0.0) + ("go-github-com-moby-sys-symlink-0.1.0" + ,go-github-com-moby-sys-symlink-0.1.0) + ("go-github-com-moby-sys-mountinfo-0.4.1" + ,go-github-com-moby-sys-mountinfo-0.4.1) + ("go-github-com-klauspost-compress-1.11.13" + ,go-github-com-klauspost-compress-1.11.13) + ("go-github-com-imdario-mergo-0.3.11" + ,go-github-com-imdario-mergo-0.3.11) + ("go-github-com-hashicorp-go-multierror-1.0.0" + ,go-github-com-hashicorp-go-multierror-1.0.0) + ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" + ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) + ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) + ("go-github-com-google-go-cmp-0.5.4" + ,go-github-com-google-go-cmp-0.5.4) + ("go-github-com-gogo-protobuf-1.3.2" + ,go-github-com-gogo-protobuf-1.3.2) + ("go-github-com-fsnotify-fsnotify-1.4.9" + ,go-github-com-fsnotify-fsnotify-1.4.9) + ("go-github-com-emicklei-go-restful-2.9.5+incompatible" + ,go-github-com-emicklei-go-restful-2.9.5+incompatible) + ("go-github-com-docker-go-units-0.4.0" + ,go-github-com-docker-go-units-0.4.0) + ("go-github-com-docker-go-metrics-0.0.1" + ,go-github-com-docker-go-metrics-0.0.1) + ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" + ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1) + ("go-github-com-coreos-go-systemd-v22-22.1.0" + ,go-github-com-coreos-go-systemd-v22-22.1.0) + ("go-github-com-containernetworking-plugins-0.8.6" + ,go-github-com-containernetworking-plugins-0.8.6) + ("go-github-com-containerd-zfs-0.0.0-20210324211415-d5c4544f0433" + ,go-github-com-containerd-zfs-0.0.0-20210324211415-d5c4544f0433) + ("go-github-com-containerd-typeurl-1.0.1" + ,go-github-com-containerd-typeurl-1.0.1) + ("go-github-com-containerd-ttrpc-1.0.2" + ,go-github-com-containerd-ttrpc-1.0.2) + ("go-github-com-containerd-nri-0.0.0-20210316161719-dbaa18c31c14" + ,go-github-com-containerd-nri-0.0.0-20210316161719-dbaa18c31c14) + ("go-github-com-containerd-imgcrypt-1.1.1-0.20210312161619-7ed62a527887" + ,go-github-com-containerd-imgcrypt-1.1.1-0.20210312161619-7ed62a527887) + ("go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0" + ,go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0) + ("go-github-com-containerd-go-cni-1.0.1" + ,go-github-com-containerd-go-cni-1.0.1) + ("go-github-com-containerd-fifo-0.0.0-20210316144830-115abcc95a1d" + ,go-github-com-containerd-fifo-0.0.0-20210316144830-115abcc95a1d) + ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" + ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) + ("go-github-com-containerd-console-1.0.1" + ,go-github-com-containerd-console-1.0.1) + ("go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68" + ,go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68) + ("go-github-com-containerd-btrfs-0.0.0-20210316141732-918d888fb676" + ,go-github-com-containerd-btrfs-0.0.0-20210316141732-918d888fb676) + ("go-github-com-containerd-aufs-0.0.0-20210316121734-20793ff83c97" + ,go-github-com-containerd-aufs-0.0.0-20210316121734-20793ff83c97) + ("go-github-com-microsoft-hcsshim-0.8.15" + ,go-github-com-microsoft-hcsshim-0.8.15) + ("go-github-com-microsoft-go-winio-0.4.17-0.20210324224401-5516f17a5958" + ,go-github-com-microsoft-go-winio-0.4.17-0.20210324224401-5516f17a5958))) + (home-page "https://github.com/containerd/containerd") + (synopsis "Now Recruiting") + (description + "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") + (license license:asl2.0))) + +(define-public go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20210322153248-0c34fe9e7dc2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "021szs1czc0xg4chpays7i05dvkax9s8mns314ab01r887kchqxq")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" + ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) + ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" + ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68) + ("go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110" + ,go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-github-com-containers-ocicrypt-1.1.1 + (package + (name "go-github-com-containers-ocicrypt") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containers/ocicrypt") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1l0bfk244sxnakg3my529jsw532pffkmiyk5y1iqblz4mkjfphc8")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containers/ocicrypt")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) + ("go-gopkg-in-square-go-jose-v2-2.5.1" + ,go-gopkg-in-square-go-jose-v2-2.5.1) + ("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) + ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" + ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) + ("go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2" + ,go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2) + ("go-go-mozilla-org-pkcs7-0.0.0-20200128120323-432b2356ecb1" + ,go-go-mozilla-org-pkcs7-0.0.0-20200128120323-432b2356ecb1) + ("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0) + ("go-github-com-stefanberger-go-pkcs11uri-0.0.0-20201008174630-78d3cae3a980" + ,go-github-com-stefanberger-go-pkcs11uri-0.0.0-20201008174630-78d3cae3a980) + ("go-github-com-sirupsen-logrus-1.7.0" + ,go-github-com-sirupsen-logrus-1.7.0) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-image-spec-1.0.1" + ,go-github-com-opencontainers-image-spec-1.0.1) + ("go-github-com-opencontainers-go-digest-1.0.0" + ,go-github-com-opencontainers-go-digest-1.0.0) + ("go-github-com-miekg-pkcs11-1.0.3" ,go-github-com-miekg-pkcs11-1.0.3) + ("go-github-com-google-go-cmp-0.5.2" + ,go-github-com-google-go-cmp-0.5.2) + ("go-github-com-golang-protobuf-1.4.3" + ,go-github-com-golang-protobuf-1.4.3))) + (home-page "https://github.com/containers/ocicrypt") + (synopsis "OCIcrypt Library") + (description + "The @code{ocicrypt} library is the OCI image spec implementation of container image encryption. More details of the spec can be seen in the @url{https://github.com/opencontainers/image-spec/pull/775,OCI repository}. The purpose of this library is to encode spec structures and consts in code, as well as provide a consistent implementation of image encryption across container runtimes and build tools.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-imgcrypt-1.1.1 + (package + (name "go-github-com-containerd-imgcrypt") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/imgcrypt") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "177fs3p2xzwjsffcxqqllx6wi6ghfyqbvfgn95v3q7a2993yqk4k")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/imgcrypt")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) + ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" + ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) + ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) + ("go-github-com-sirupsen-logrus-1.7.0" + ,go-github-com-sirupsen-logrus-1.7.0) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" + ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) + ("go-github-com-opencontainers-image-spec-1.0.1" + ,go-github-com-opencontainers-image-spec-1.0.1) + ("go-github-com-opencontainers-go-digest-1.0.0" + ,go-github-com-opencontainers-go-digest-1.0.0) + ("go-github-com-gogo-protobuf-1.3.2" + ,go-github-com-gogo-protobuf-1.3.2) + ("go-github-com-containers-ocicrypt-1.1.1" + ,go-github-com-containers-ocicrypt-1.1.1) + ("go-github-com-containerd-typeurl-1.0.1" + ,go-github-com-containerd-typeurl-1.0.1) + ("go-github-com-containerd-containerd-1.5.0-rc.0" + ,go-github-com-containerd-containerd-1.5.0-rc.0) + ("go-github-com-containerd-console-1.0.2" + ,go-github-com-containerd-console-1.0.2) + ("go-github-com-microsoft-hcsshim-0.8.16" + ,go-github-com-microsoft-hcsshim-0.8.16) + ("go-github-com-microsoft-go-winio-0.4.17-0.20210324224401-5516f17a5958" + ,go-github-com-microsoft-go-winio-0.4.17-0.20210324224401-5516f17a5958))) + (home-page "https://github.com/containerd/imgcrypt") + (synopsis "imgcrypt image encryption library and command line tool") + (description + "Project @code{imgcrypt} is a non-core subproject of containerd.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-nri-0.1.0 + (package + (name "go-github-com-containerd-nri") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/nri") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hqji5qa0n0fdyv9sjdl7mv3bb4fnq9i79pdzlw6m1nigrnb18qp")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/nri")) + (propagated-inputs + `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-containerd-containerd-1.5.0-beta.3" + ,go-github-com-containerd-containerd-1.5.0-beta.3))) + (home-page "https://github.com/containerd/nri") + (synopsis "nri - Node Resource Interface") + (description + "This project is a WIP for a new, CNI like, interface for managing resources on a node for Pods and Containers.") + (license license:asl2.0))) + +(define-public go-google-golang-org-genproto-0.0.0-20200224152610-e50cd9704f63 + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20200224152610-e50cd9704f63") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1392q1dfg4kkfg86w05gsszdlkd0hf424rvich1xzjqbm3ad3lin")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" + ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-golang-protobuf-1.3.3" + ,go-github-com-golang-protobuf-1.3.3))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-ttrpc-1.1.0 + (package + (name "go-github-com-containerd-ttrpc") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/ttrpc") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "13grp3ivmkdyhwpzhnva2w4lv035c4i1m0a2bdci4z44mif86gns")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/ttrpc")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.27.1" + ,go-google-golang-org-protobuf-1.27.1) + ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) + ("go-google-golang-org-genproto-0.0.0-20200224152610-e50cd9704f63" + ,go-google-golang-org-genproto-0.0.0-20200224152610-e50cd9704f63) + ("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" + ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) + ("go-github-com-sirupsen-logrus-1.8.1" + ,go-github-com-sirupsen-logrus-1.8.1) + ("go-github-com-prometheus-procfs-0.6.0" + ,go-github-com-prometheus-procfs-0.6.0) + ("go-github-com-gogo-protobuf-1.3.2" + ,go-github-com-gogo-protobuf-1.3.2))) + (home-page "https://github.com/containerd/ttrpc") + (synopsis "ttrpc") + (description "GRPC for low-memory environments.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-typeurl-1.0.2 + (package + (name "go-github-com-containerd-typeurl") + (version "1.0.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/typeurl") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wvfxlxgkln11d9s6rxay965c715bnpk203klbsq8m8qpjqrz620")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/typeurl")) + (propagated-inputs + `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-gogo-protobuf-1.3.2" + ,go-github-com-gogo-protobuf-1.3.2))) + (home-page "https://github.com/containerd/typeurl") + (synopsis "typeurl") + (description + "This package provides a Go package for managing the registration, marshaling, and unmarshaling of encoded types.") + (license license:asl2.0))) + +(define-public go-github-com-microsoft-hcsshim-0.8.15 + (package + (name "go-github-com-microsoft-hcsshim") + (version "0.8.15") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/microsoft/hcsshim") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1119qf7nklpnn9li61m8jrd5wvifhiz7qh7sfjjy04rfvbvlsi6c")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/Microsoft/hcsshim")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.30.0" ,go-google-golang-org-grpc-1.30.0) + ("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" + ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) + ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" + ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) + ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) + ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) + ("go-github-com-sirupsen-logrus-1.7.0" + ,go-github-com-sirupsen-logrus-1.7.0) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" + ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) + ("go-github-com-gogo-protobuf-1.3.2" + ,go-github-com-gogo-protobuf-1.3.2) + ("go-github-com-containerd-typeurl-1.0.1" + ,go-github-com-containerd-typeurl-1.0.1) + ("go-github-com-containerd-ttrpc-1.0.2" + ,go-github-com-containerd-ttrpc-1.0.2) + ("go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328" + ,go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328) + ("go-github-com-containerd-containerd-1.5.0-beta.1" + ,go-github-com-containerd-containerd-1.5.0-beta.1) + ("go-github-com-containerd-console-1.0.1" + ,go-github-com-containerd-console-1.0.1) + ("go-github-com-containerd-cgroups-0.0.0-20200824123100-0b889c03f102" + ,go-github-com-containerd-cgroups-0.0.0-20200824123100-0b889c03f102) + ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" + ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3))) + (home-page "https://github.com/Microsoft/hcsshim") + (synopsis "hcsshim") + (description + "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") + (license license:expat))) + +(define-public go-github-com-containerd-containerd-1.4.1 + (package + (name "go-github-com-containerd-containerd") + (version "1.4.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/containerd") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1k6dqaidnldf7kpxdszf0wn6xb8m6vaizm2aza81fri1q0051213")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/containerd")) + (home-page "https://github.com/containerd/containerd") + (synopsis "Now Recruiting") + (description + "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") + (license license:asl2.0))) + +(define-public go-golang-org-x-sys-0.0.0-20200622214017-ed371f2e16b4 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200622214017-ed371f2e16b4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "107wfy2fj6z5zps1v72j8drfrfvss1158drb0yqhz5awlbvgrpj7")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-containerd-aufs-0.0.0-20201003224125-76a6863f2989 + (package + (name "go-github-com-containerd-aufs") + (version "0.0.0-20201003224125-76a6863f2989") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/aufs") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0nsiyqjrgf3vvv6hpiljknpbkzlla1czpkq69i607f7p5jd8bgaq")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/aufs")) + (propagated-inputs + `(("go-gotest-tools-v3-3.0.2" ,go-gotest-tools-v3-3.0.2) + ("go-golang-org-x-sys-0.0.0-20200622214017-ed371f2e16b4" + ,go-golang-org-x-sys-0.0.0-20200622214017-ed371f2e16b4) + ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-image-spec-1.0.1" + ,go-github-com-opencontainers-image-spec-1.0.1) + ("go-github-com-google-go-cmp-0.3.1" + ,go-github-com-google-go-cmp-0.3.1) + ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" + ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) + ("go-github-com-containerd-typeurl-1.0.1" + ,go-github-com-containerd-typeurl-1.0.1) + ("go-github-com-containerd-ttrpc-1.0.1" + ,go-github-com-containerd-ttrpc-1.0.1) + ("go-github-com-containerd-continuity-0.0.0-20200710164510-efbc4488d8fe" + ,go-github-com-containerd-continuity-0.0.0-20200710164510-efbc4488d8fe) + ("go-github-com-containerd-containerd-1.4.1" + ,go-github-com-containerd-containerd-1.4.1) + ("go-github-com-microsoft-hcsshim-0.8.9" + ,go-github-com-microsoft-hcsshim-0.8.9))) + (home-page "https://github.com/containerd/aufs") + (synopsis "aufs snapshotter") + (description + "AUFS implementation of the snapshot interface for containerd.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68 + (package + (name "go-github-com-containerd-cgroups") + (version "0.0.0-20210114181951-8a68de567b68") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/cgroups") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0v70kxazvsizx33w9nz341hg14acg2vnbfcpx9yknmsjqdwgqnhs")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/cgroups")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9" + ,go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9) + ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) + ("go-github-com-stretchr-testify-1.2.2" + ,go-github-com-stretchr-testify-1.2.2) + ("go-github-com-sirupsen-logrus-1.7.0" + ,go-github-com-sirupsen-logrus-1.7.0) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-runtime-spec-1.0.2" + ,go-github-com-opencontainers-runtime-spec-1.0.2) + ("go-github-com-gogo-protobuf-1.3.1" + ,go-github-com-gogo-protobuf-1.3.1) + ("go-github-com-godbus-dbus-v5-5.0.3" + ,go-github-com-godbus-dbus-v5-5.0.3) + ("go-github-com-docker-go-units-0.4.0" + ,go-github-com-docker-go-units-0.4.0) + ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" + ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) + ("go-github-com-coreos-go-systemd-v22-22.1.0" + ,go-github-com-coreos-go-systemd-v22-22.1.0) + ("go-github-com-cilium-ebpf-0.2.0" ,go-github-com-cilium-ebpf-0.2.0))) + (home-page "https://github.com/containerd/cgroups") + (synopsis "cgroups") + (description + "Go package for creating, managing, inspecting, and destroying cgroups. +The resources format for settings on the cgroup uses the OCI runtime-spec found +@url{https://github.com/opencontainers/runtime-spec,here}.") + (license license:asl2.0))) + +(define-public go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3 + (package + (name "go-github-com-microsoft-go-winio") + (version "0.4.17-0.20210211115548-6eac466e5fa3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/microsoft/go-winio") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0w8fmybsl0v5azwi66qa299gwh0mlp907mrg4yaiya7s0cjmjx0d")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/Microsoft/go-winio")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" + ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) + ("go-github-com-sirupsen-logrus-1.7.0" + ,go-github-com-sirupsen-logrus-1.7.0) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) + (home-page "https://github.com/Microsoft/go-winio") + (synopsis "go-winio") + (description + "This repository contains utilities for efficiently performing Win32 IO operations in +Go. Currently, this is focused on accessing named pipes and other file handles, and +for using named pipes as a net transport.") + (license license:expat))) + +(define-public go-github-com-microsoft-hcsshim-test-0.0.0-20210227013316-43a75bb4edd3 + (package + (name "go-github-com-microsoft-hcsshim-test") + (version "0.0.0-20210227013316-43a75bb4edd3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/microsoft/hcsshim") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1j899w4hdw1mk6rfyy9qsm902iavgc49ykbjdsb02m6wszq1z0wy")))) + (build-system go-build-system) + (arguments + '(#:import-path + "github.com/Microsoft/hcsshim/test" + #:unpack-path + "github.com/Microsoft/hcsshim")) + (propagated-inputs + `(("go-k8s-io-cri-api-0.20.1" ,go-k8s-io-cri-api-0.20.1) + ("go-google-golang-org-grpc-1.30.0" ,go-google-golang-org-grpc-1.30.0) + ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" + ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) + ("go-github-com-sirupsen-logrus-1.7.0" + ,go-github-com-sirupsen-logrus-1.7.0) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39" + ,go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39) + ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" + ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) + ("go-github-com-gogo-protobuf-1.3.2" + ,go-github-com-gogo-protobuf-1.3.2) + ("go-github-com-containerd-typeurl-1.0.1" + ,go-github-com-containerd-typeurl-1.0.1) + ("go-github-com-containerd-ttrpc-1.0.2" + ,go-github-com-containerd-ttrpc-1.0.2) + ("go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328" + ,go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328) + ("go-github-com-containerd-containerd-1.5.0-beta.1" + ,go-github-com-containerd-containerd-1.5.0-beta.1) + ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" + ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3))) + (home-page "https://github.com/Microsoft/hcsshim") + (synopsis #f) + (description #f) + (license license:expat))) + +(define-public go-github-com-microsoft-go-winio-0.4.16 + (package + (name "go-github-com-microsoft-go-winio") + (version "0.4.16") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/microsoft/go-winio") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0snwbwdjs34x0my9ri77cvrbnahdiyjh2jlkzf12fy48p7fyk7pq")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/Microsoft/go-winio")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3" + ,go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3) + ("go-github-com-sirupsen-logrus-1.4.1" + ,go-github-com-sirupsen-logrus-1.4.1) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) + (home-page "https://github.com/Microsoft/go-winio") + (synopsis "go-winio") + (description + "This repository contains utilities for efficiently performing Win32 IO operations in +Go. Currently, this is focused on accessing named pipes and other file handles, and +for using named pipes as a net transport.") + (license license:expat))) + +(define-public go-github-com-azure-azure-sdk-for-go-16.2.1+incompatible + (package + (name "go-github-com-azure-azure-sdk-for-go") + (version "16.2.1+incompatible") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/Azure/azure-sdk-for-go") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1hwrspsyfs003h4f8zl8b41g3a6jpkqawqrykd1mjw9p6hs1c6k8")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/Azure/azure-sdk-for-go")) + (home-page "https://github.com/Azure/azure-sdk-for-go") + (synopsis "Azure SDK for Go") + (description + "Package sdk provides Go packages for managing and using Azure services. +") + (license license:expat))) + +(define-public go-github-com-azure-go-autorest-10.8.1+incompatible + (package + (name "go-github-com-azure-go-autorest") + (version "10.8.1+incompatible") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/Azure/go-autorest") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "122zfifj93vkix8ggkdh0dz5rmzxh4bql4nry1hws2czmzgxlkdm")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/Azure/go-autorest")) + (home-page "https://github.com/Azure/go-autorest") + (synopsis "go-autorest") + (description + "Package go-autorest provides an HTTP request client for use with Autorest-generated API client packages. +") + (license license:asl2.0))) + +(define-public go-github-com-go-ini-ini-1.25.4 + (package + (name "go-github-com-go-ini-ini") + (version "1.25.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/go-ini/ini") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0b6cql5ripbiyrm18d6bfd1rfjnwcbskppw3d0vb80l0wy72d0c6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/go-ini/ini")) + (home-page "https://github.com/go-ini/ini") + (synopsis "INI") + (description + "Package ini provides INI file read and write functionality in Go. +") + (license license:asl2.0))) + +(define-public go-github-com-jmespath-go-jmespath-0.0.0-20160202185014-0b12d6b521d8 + (package + (name "go-github-com-jmespath-go-jmespath") + (version "0.0.0-20160202185014-0b12d6b521d8") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jmespath/go-jmespath") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1vv6hph8j6xgv7gwl9vvhlsaaqsm22sxxqmgmldi4v11783pc1ld")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/jmespath/go-jmespath")) + (home-page "https://github.com/jmespath/go-jmespath") + (synopsis "go-jmespath - A JMESPath implementation in Go") + (description + "go-jmespath is a GO implementation of JMESPath, +which is a query language for JSON. It will take a JSON +document and transform it into another JSON document +through a JMESPath expression.") + (license license:asl2.0))) + +(define-public go-github-com-aws-aws-sdk-go-1.15.11 + (package + (name "go-github-com-aws-aws-sdk-go") + (version "1.15.11") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/aws/aws-sdk-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0w960w39k3nyc17p1lvd41cls39qwg7kzfm57vfbdb4h1m5sck99")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/aws/aws-sdk-go")) + (propagated-inputs + `(("go-github-com-jmespath-go-jmespath-0.0.0-20160202185014-0b12d6b521d8" + ,go-github-com-jmespath-go-jmespath-0.0.0-20160202185014-0b12d6b521d8) + ("go-github-com-go-ini-ini-1.25.4" ,go-github-com-go-ini-ini-1.25.4))) + (home-page "https://github.com/aws/aws-sdk-go") + (synopsis "AWS SDK for Go") + (description + "Package sdk is the official AWS SDK for the Go programming language. +") + (license license:asl2.0))) + +(define-public go-github-com-beorn7-perks-0.0.0-20160804104726-4c0e84591b9a + (package + (name "go-github-com-beorn7-perks") + (version "0.0.0-20160804104726-4c0e84591b9a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/beorn7/perks") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1hrybsql68xw57brzj805xx2mghydpdiysv3gbhr7f5wlxj2514y")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/beorn7/perks")) + (home-page "https://github.com/beorn7/perks") + (synopsis "Perks for Go (golang.org)") + (description + "Perks contains the Go package quantile that computes approximate quantiles over +an unbounded data stream within low memory and CPU bounds.") + (license license:expat))) + +(define-public go-github-com-bmizerany-assert-0.0.0-20160611221934-b7ed37b82869 + (package + (name "go-github-com-bmizerany-assert") + (version "0.0.0-20160611221934-b7ed37b82869") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/bmizerany/assert") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18hy1wyl9zdi7sgxafrn3m7fadh6in0rhhb8l0cvkxqzdl0jcw2s")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/bmizerany/assert")) + (home-page "https://github.com/bmizerany/assert") + (synopsis #f) + (description #f) + (license #f))) + +(define-public go-github-com-bshuster-repo-logrus-logstash-hook-0.4.1 + (package + (name "go-github-com-bshuster-repo-logrus-logstash-hook") + (version "0.4.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/bshuster-repo/logrus-logstash-hook") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1kkjzav4i3l2ahgpirysr0cqh60vdq517lpj00cc9z32zfrsw87k")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/bshuster-repo/logrus-logstash-hook")) + (home-page "https://github.com/bshuster-repo/logrus-logstash-hook") + (synopsis "Logstash hook for logrus") + (description + "Use this hook to send the logs to @url{https://www.elastic.co/products/logstash,Logstash}.") + (license license:expat))) + +(define-public go-github-com-dgrijalva-jwt-go-0.0.0-20170104182250-a601269ab70c + (package + (name "go-github-com-dgrijalva-jwt-go") + (version "0.0.0-20170104182250-a601269ab70c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/dgrijalva/jwt-go") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1c2dhmj95wh9cs099cr43qghgmp6bqx0mq44vha2dqq5jkbazwfv")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/dgrijalva/jwt-go")) + (home-page "https://github.com/dgrijalva/jwt-go") + (synopsis "jwt-go") + (description + "Package jwt is a Go implementation of JSON Web Tokens: @url{http://self-issued.info/docs/draft-jones-json-web-token.html,http://self-issued.info/docs/draft-jones-json-web-token.html} +") + (license license:expat))) + +(define-public go-github-com-docker-go-metrics-0.0.0-20180209012529-399ea8c73916 + (package + (name "go-github-com-docker-go-metrics") + (version "0.0.0-20180209012529-399ea8c73916") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/docker/go-metrics") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0najfy92fq05b330cnjk5b326yi7dnnmvzfk6g5lsa1fci78yzw4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/docker/go-metrics")) + (home-page "https://github.com/docker/go-metrics") + (synopsis "go-metrics") + (description + "This package is small wrapper around the prometheus go client to help enforce convention and best practices for metrics collection in Docker projects.") + (license (list license:asl2.0 license:cc-by-sa4.0)))) + +(define-public go-github-com-garyburd-redigo-0.0.0-20150301180006-535138d7bcd7 + (package + (name "go-github-com-garyburd-redigo") + (version "0.0.0-20150301180006-535138d7bcd7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/garyburd/redigo") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1m7nc1gvv5yqnq8ii75f33485il6y6prf8gxl97dimsw94qccc5v")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/garyburd/redigo")) + (home-page "https://github.com/garyburd/redigo") + (synopsis #f) + (description + "Future development of Redigo is at +@url{https://github.com/gomodule/redigo,github.com/gomodule/redigo}. Please submit +issues at gomodule/redigo. The repository at github.com/garyburd/redigo is a +read-only snapshot.") + (license license:asl2.0))) + +(define-public go-github-com-gorilla-handlers-0.0.0-20150720190736-60c7bfde3e33 + (package + (name "go-github-com-gorilla-handlers") + (version "0.0.0-20150720190736-60c7bfde3e33") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gorilla/handlers") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0zvpxvybdn8yqpk2cxs134ip9wxmw6c1s0kw9nahf7qw1kfyzycm")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/gorilla/handlers")) + (home-page "https://github.com/gorilla/handlers") + (synopsis "gorilla/handlers") + (description + "Package handlers is a collection of handlers (aka \"HTTP middleware\") for use +with Go's net/http package (or any framework supporting http.Handler). +") + (license license:bsd-2))) + +(define-public go-github-com-gorilla-mux-1.7.2 + (package + (name "go-github-com-gorilla-mux") + (version "1.7.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gorilla/mux") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1gjcbgpdl3snc38i8sj8k6sqbv3inyrxqyggbqvr4jfx2phv2zy6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/gorilla/mux")) + (home-page "https://github.com/gorilla/mux") + (synopsis "gorilla/mux") + (description "Package mux implements a request router and dispatcher. +") + (license license:bsd-3))) + +(define-public go-github-com-jmespath-go-jmespath-0.0.0-20160803190731-bd40a432e4c7 + (package + (name "go-github-com-jmespath-go-jmespath") + (version "0.0.0-20160803190731-bd40a432e4c7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jmespath/go-jmespath") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1kgzwiyqn24ba9kgpjxlq1h746gnyby0psbjj9mp2yx0h1i0kc4z")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/jmespath/go-jmespath")) + (home-page "https://github.com/jmespath/go-jmespath") + (synopsis "go-jmespath - A JMESPath implementation in Go") + (description + "go-jmespath is a GO implementation of JMESPath, +which is a query language for JSON. It will take a JSON +document and transform it into another JSON document +through a JMESPath expression.") + (license license:asl2.0))) + +(define-public go-github-com-marstr-guid-1.1.0 + (package + (name "go-github-com-marstr-guid") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/marstr/guid") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "081qrar6wwpmb2pq3swv4byh73r9riyhl2dwv0902d8jg3kwricm")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/marstr/guid")) + (home-page "https://github.com/marstr/guid") + (synopsis "Guid") + (description + "Globally unique identifiers offer a quick means of generating non-colliding values across a distributed system. For this implemenation, @url{http://ietf.org/rfc/rfc4122.txt,RFC 4122} governs the desired behavior.") + (license license:expat))) + +(define-public go-github-com-opencontainers-go-digest-0.0.0-20170106003457-a6d0ee40d420 + (package + (name "go-github-com-opencontainers-go-digest") + (version "0.0.0-20170106003457-a6d0ee40d420") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/go-digest") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1paz3na2xkhi10p5bk7f7gbh5yykfgr9f9i2gcc13rb461yq6fmg")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/go-digest")) + (home-page "https://github.com/opencontainers/go-digest") + (synopsis "go-digest") + (description + "Package digest provides a generalized type to opaquely represent message +digests and their operations within the registry. The Digest type is +designed to serve as a flexible identifier in a content-addressable system. +More importantly, it provides tools and wrappers to work with +hash.Hash-based digests with little effort. +") + (license (list license:asl2.0 license:cc-by-sa4.0)))) + +(define-public go-github-com-opencontainers-image-spec-1.0.0 + (package + (name "go-github-com-opencontainers-image-spec") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/image-spec") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "04ax2pylpwzsa5pw6wk94shdpdmfyqf70ys0idhpxsygzc2m5l23")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/image-spec")) + (home-page "https://github.com/opencontainers/image-spec") + (synopsis "OCI Image Format Specification") + (description + "The OCI Image Format project creates and maintains the software shipping container image format spec (OCI Image Format).") + (license license:asl2.0))) + +(define-public go-github-com-prometheus-client-golang-0.0.0-20180209125602-c332b6f63c06 + (package + (name "go-github-com-prometheus-client-golang") + (version "0.0.0-20180209125602-c332b6f63c06") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/client_golang") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "068r759wnh1lxcjhj89z4bqbpl7ydcx2drn2967ygw80nyab30pq")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/client_golang")) + (home-page "https://github.com/prometheus/client_golang") + (synopsis "Prometheus Go client library") + (description + "This is the @url{http://golang.org,Go} client library for +@url{http://prometheus.io,Prometheus}. It has two separate parts, one for +instrumenting application code, and one for creating clients that talk to the +Prometheus HTTP API.") + (license license:asl2.0))) + +(define-public go-github-com-prometheus-client-model-0.0.0-20171117100541-99fa1f4be8e5 + (package + (name "go-github-com-prometheus-client-model") + (version "0.0.0-20171117100541-99fa1f4be8e5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/client_model") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19y4ywsivhpxj7ikf2j0gm9k3cmyw37qcbfi78n526jxcc7kw998")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/client_model")) + (home-page "https://github.com/prometheus/client_model") + (synopsis "Deprecation note") + (description + "This repository used to contain the code that defined both +the data model and the exposition format of Prometheus metrics.") + (license license:asl2.0))) + +(define-public go-github-com-prometheus-common-0.0.0-20180110214958-89604d197083 + (package + (name "go-github-com-prometheus-common") + (version "0.0.0-20180110214958-89604d197083") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/common") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "169rdlaf2mk9z4fydz7ajmngyhmf3q1lk96yhvx46bn986x5xkyn")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/common")) + (home-page "https://github.com/prometheus/common") + (synopsis "Common") + (description + "This repository contains Go libraries that are shared across Prometheus +components and libraries. They are considered internal to Prometheus, without +any stability guarantees for external usage.") + (license license:asl2.0))) + +(define-public go-github-com-smartystreets-goconvey-0.0.0-20190330032615-68dc04aab96a + (package + (name "go-github-com-smartystreets-goconvey") + (version "0.0.0-20190330032615-68dc04aab96a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/smartystreets/goconvey") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1kas5v95fzhr88hg4rjy0vp03y4pzvy3pwwgkfz2yhn5nlj29nk6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/smartystreets/goconvey")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20190328211700-ab21143f2384" + ,go-golang-org-x-tools-0.0.0-20190328211700-ab21143f2384) + ("go-github-com-smartystreets-assertions-0.0.0-20180927180507-b2de0cb4f26d" + ,go-github-com-smartystreets-assertions-0.0.0-20180927180507-b2de0cb4f26d) + ("go-github-com-jtolds-gls-4.20.0+incompatible" + ,go-github-com-jtolds-gls-4.20.0+incompatible) + ("go-github-com-gopherjs-gopherjs-0.0.0-20181017120253-0766667cb4d1" + ,go-github-com-gopherjs-gopherjs-0.0.0-20181017120253-0766667cb4d1))) + (home-page "https://github.com/smartystreets/goconvey") + (synopsis "GoConvey is awesome Go testing") + (description + "This executable provides an HTTP server that watches for file system changes +to .go files within the working directory (and all nested go packages). +Navigating to the configured host and port in a web browser will display the +latest results of running `go test` in each go package. +") + (license license:expat))) + +(define-public go-golang-org-x-net-0.0.0-20190619014844-b5b0513f8c1b + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190619014844-b5b0513f8c1b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0sr4gbiq09izkmm6hcmfnia6lz6ngzzqjbwlrzh7jifbzyck53wz")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20190602015325-4c4f7f33c9ed + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190602015325-4c4f7f33c9ed") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "191001bxqyc3xfs46nnqmm7jdk0r73vk7a4zqngfl7zwjv9smwsq")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-docker-distribution-0.0.0-20190905152932-14b96e55d84c + (package + (name "go-github-com-docker-distribution") + (version "0.0.0-20190905152932-14b96e55d84c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/distribution/distribution") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0jd7ccjy7ahznsh6hf9dhqbgn9glwc0db9g5nv8n6sys5d1jdni9")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/docker/distribution")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) + ("go-gopkg-in-check-v1-1.0.0-20141024133853-64131543e789" + ,go-gopkg-in-check-v1-1.0.0-20141024133853-64131543e789) + ("go-google-golang-org-grpc-0.0.0-20160317175043-d3ddb4469d5a" + ,go-google-golang-org-grpc-0.0.0-20160317175043-d3ddb4469d5a) + ("go-google-golang-org-cloud-0.0.0-20151119220103-975617b05ea8" + ,go-google-golang-org-cloud-0.0.0-20151119220103-975617b05ea8) + ("go-google-golang-org-api-0.0.0-20160322025152-9bf6e6e569ff" + ,go-google-golang-org-api-0.0.0-20160322025152-9bf6e6e569ff) + ("go-golang-org-x-sys-0.0.0-20190602015325-4c4f7f33c9ed" + ,go-golang-org-x-sys-0.0.0-20190602015325-4c4f7f33c9ed) + ("go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45" + ,go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45) + ("go-golang-org-x-net-0.0.0-20190619014844-b5b0513f8c1b" + ,go-golang-org-x-net-0.0.0-20190619014844-b5b0513f8c1b) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2) + ("go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20140908184405-b21fdbd4370f" + ,go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20140908184405-b21fdbd4370f) + ("go-github-com-yvasiyarov-gorelic-0.0.0-20141212073537-a9bba5b9ab50" + ,go-github-com-yvasiyarov-gorelic-0.0.0-20141212073537-a9bba5b9ab50) + ("go-github-com-yvasiyarov-go-metrics-0.0.0-20140926110328-57bccd1ccd43" + ,go-github-com-yvasiyarov-go-metrics-0.0.0-20140926110328-57bccd1ccd43) + ("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0) + ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) + ("go-github-com-spf13-cobra-0.0.3" ,go-github-com-spf13-cobra-0.0.3) + ("go-github-com-smartystreets-goconvey-0.0.0-20190330032615-68dc04aab96a" + ,go-github-com-smartystreets-goconvey-0.0.0-20190330032615-68dc04aab96a) + ("go-github-com-sirupsen-logrus-1.4.2" + ,go-github-com-sirupsen-logrus-1.4.2) + ("go-github-com-satori-go-uuid-1.2.0" + ,go-github-com-satori-go-uuid-1.2.0) + ("go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7" + ,go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7) + ("go-github-com-prometheus-common-0.0.0-20180110214958-89604d197083" + ,go-github-com-prometheus-common-0.0.0-20180110214958-89604d197083) + ("go-github-com-prometheus-client-model-0.0.0-20171117100541-99fa1f4be8e5" + ,go-github-com-prometheus-client-model-0.0.0-20171117100541-99fa1f4be8e5) + ("go-github-com-prometheus-client-golang-0.0.0-20180209125602-c332b6f63c06" + ,go-github-com-prometheus-client-golang-0.0.0-20180209125602-c332b6f63c06) + ("go-github-com-opencontainers-image-spec-1.0.0" + ,go-github-com-opencontainers-image-spec-1.0.0) + ("go-github-com-opencontainers-go-digest-0.0.0-20170106003457-a6d0ee40d420" + ,go-github-com-opencontainers-go-digest-0.0.0-20170106003457-a6d0ee40d420) + ("go-github-com-ncw-swift-1.0.47" ,go-github-com-ncw-swift-1.0.47) + ("go-github-com-mitchellh-osext-0.0.0-20151018003038-5e2d6d41470f" + ,go-github-com-mitchellh-osext-0.0.0-20151018003038-5e2d6d41470f) + ("go-github-com-mitchellh-mapstructure-1.1.2" + ,go-github-com-mitchellh-mapstructure-1.1.2) + ("go-github-com-matttproud-golang-protobuf-extensions-1.0.1" + ,go-github-com-matttproud-golang-protobuf-extensions-1.0.1) + ("go-github-com-marstr-guid-1.1.0" ,go-github-com-marstr-guid-1.1.0) + ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) + ("go-github-com-jmespath-go-jmespath-0.0.0-20160803190731-bd40a432e4c7" + ,go-github-com-jmespath-go-jmespath-0.0.0-20160803190731-bd40a432e4c7) + ("go-github-com-inconshreveable-mousetrap-1.0.0" + ,go-github-com-inconshreveable-mousetrap-1.0.0) + ("go-github-com-gorilla-mux-1.7.2" ,go-github-com-gorilla-mux-1.7.2) + ("go-github-com-gorilla-handlers-0.0.0-20150720190736-60c7bfde3e33" + ,go-github-com-gorilla-handlers-0.0.0-20150720190736-60c7bfde3e33) + ("go-github-com-garyburd-redigo-0.0.0-20150301180006-535138d7bcd7" + ,go-github-com-garyburd-redigo-0.0.0-20150301180006-535138d7bcd7) + ("go-github-com-docker-libtrust-0.0.0-20150114040149-fa567046d9b1" + ,go-github-com-docker-libtrust-0.0.0-20150114040149-fa567046d9b1) + ("go-github-com-docker-go-metrics-0.0.0-20180209012529-399ea8c73916" + ,go-github-com-docker-go-metrics-0.0.0-20180209012529-399ea8c73916) + ("go-github-com-dnaeon-go-vcr-1.0.1" + ,go-github-com-dnaeon-go-vcr-1.0.1) + ("go-github-com-dgrijalva-jwt-go-0.0.0-20170104182250-a601269ab70c" + ,go-github-com-dgrijalva-jwt-go-0.0.0-20170104182250-a601269ab70c) + ("go-github-com-denverdino-aliyungo-0.0.0-20190125010748-a747050bb1ba" + ,go-github-com-denverdino-aliyungo-0.0.0-20190125010748-a747050bb1ba) + ("go-github-com-bugsnag-panicwrap-0.0.0-20151223152923-e2c28503fcd0" + ,go-github-com-bugsnag-panicwrap-0.0.0-20151223152923-e2c28503fcd0) + ("go-github-com-bugsnag-osext-0.0.0-20130617224835-0dd3f918b21b" + ,go-github-com-bugsnag-osext-0.0.0-20130617224835-0dd3f918b21b) + ("go-github-com-bugsnag-bugsnag-go-0.0.0-20141110184014-b1d153021fcd" + ,go-github-com-bugsnag-bugsnag-go-0.0.0-20141110184014-b1d153021fcd) + ("go-github-com-bshuster-repo-logrus-logstash-hook-0.4.1" + ,go-github-com-bshuster-repo-logrus-logstash-hook-0.4.1) + ("go-github-com-bmizerany-assert-0.0.0-20160611221934-b7ed37b82869" + ,go-github-com-bmizerany-assert-0.0.0-20160611221934-b7ed37b82869) + ("go-github-com-bitly-go-simplejson-0.5.0" + ,go-github-com-bitly-go-simplejson-0.5.0) + ("go-github-com-beorn7-perks-0.0.0-20160804104726-4c0e84591b9a" + ,go-github-com-beorn7-perks-0.0.0-20160804104726-4c0e84591b9a) + ("go-github-com-aws-aws-sdk-go-1.15.11" + ,go-github-com-aws-aws-sdk-go-1.15.11) + ("go-github-com-shopify-logrus-bugsnag-0.0.0-20171204204709-577dee27f20d" + ,go-github-com-shopify-logrus-bugsnag-0.0.0-20171204204709-577dee27f20d) + ("go-github-com-azure-go-autorest-10.8.1+incompatible" + ,go-github-com-azure-go-autorest-10.8.1+incompatible) + ("go-github-com-azure-azure-sdk-for-go-16.2.1+incompatible" + ,go-github-com-azure-azure-sdk-for-go-16.2.1+incompatible))) + (home-page "https://github.com/docker/distribution") + (synopsis "Distribution") + (description + "Package distribution will define the interfaces for the components of +docker distribution. The goal is to allow users to reliably package, ship +and store content related to docker images. +") + (license license:asl2.0))) + +(define-public go-github-com-gogo-protobuf-1.2.2-0.20190723190241-65acae22fc9d + (package + (name "go-github-com-gogo-protobuf") + (version "1.2.2-0.20190723190241-65acae22fc9d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gogo/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0700alky9z0g9akhrzn20wf4jr1600d0clhs32sm8chnlbvidy46")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/gogo/protobuf")) + (propagated-inputs + `(("go-github-com-kisielk-gotool-1.0.0" + ,go-github-com-kisielk-gotool-1.0.0) + ("go-github-com-kisielk-errcheck-1.2.0" + ,go-github-com-kisielk-errcheck-1.2.0))) + (home-page "https://github.com/gogo/protobuf") + (synopsis "Protocol Buffers for Go with Gadgets") + (description + "gogoprotobuf is a fork of @url{https://github.com/golang/protobuf,golang/protobuf} with extra code generation features.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20190813064441-fde4db37ae7a + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190813064441-fde4db37ae7a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "16k4w4pzziq1kln18k5fg01qgk4hpzb5xsm7175kaky6d6gwyhg3")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-k8s-io-cri-api-0.17.3 + (package + (name "go-k8s-io-cri-api") + (version "0.17.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes/cri-api") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "047wg80q4cb9qikpj0zp2kzcgp599cdqwiqlravfy86bga4r3fgf")))) + (build-system go-build-system) + (arguments '(#:import-path "k8s.io/cri-api")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190813064441-fde4db37ae7a" + ,go-golang-org-x-sys-0.0.0-20190813064441-fde4db37ae7a) + ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) + ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" + ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) + ("go-google-golang-org-grpc-1.23.1" ,go-google-golang-org-grpc-1.23.1) + ("go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873" + ,go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873) + ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) + ("go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9" + ,go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9) + ("go-github-com-stretchr-testify-1.4.0" + ,go-github-com-stretchr-testify-1.4.0) + ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2) + ("go-github-com-gogo-protobuf-1.2.2-0.20190723190241-65acae22fc9d" + ,go-github-com-gogo-protobuf-1.2.2-0.20190723190241-65acae22fc9d) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://k8s.io/cri-api") + (synopsis "Purpose") + (description + "This repository contains the definitions for the Container Runtime Interface (CRI). +CRI is a plugin interface which enables kubelet to use a wide variety of container runtimes, +without the need to recompile. CRI consists of a protocol buffers and gRPC API.") + (license license:asl2.0))) + +(define-public go-github-com-microsoft-hcsshim-test-0.0.0-20201218223536-d3e5debf77da + (package + (name "go-github-com-microsoft-hcsshim-test") + (version "0.0.0-20201218223536-d3e5debf77da") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/microsoft/hcsshim") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0k57knv8zrf32hp7rpv1km9j772w6752pfvdbpd3l711ism48c84")))) + (build-system go-build-system) + (arguments + '(#:import-path + "github.com/Microsoft/hcsshim/test" + #:unpack-path + "github.com/Microsoft/hcsshim")) + (propagated-inputs + `(("go-k8s-io-cri-api-0.17.3" ,go-k8s-io-cri-api-0.17.3) + ("go-google-golang-org-grpc-1.23.1" ,go-google-golang-org-grpc-1.23.1) + ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" + ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) + ("go-go-etcd-io-bbolt-1.3.3" ,go-go-etcd-io-bbolt-1.3.3) + ("go-github-com-xeipuuv-gojsonschema-0.0.0-20180618132009-1d523034197f" + ,go-github-com-xeipuuv-gojsonschema-0.0.0-20180618132009-1d523034197f) + ("go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415" + ,go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415) + ("go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f" + ,go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f) + ("go-github-com-syndtr-gocapability-0.0.0-20170704070218-db04d3cc01c8" + ,go-github-com-syndtr-gocapability-0.0.0-20170704070218-db04d3cc01c8) + ("go-github-com-sirupsen-logrus-1.4.2" + ,go-github-com-sirupsen-logrus-1.4.2) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39" + ,go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39) + ("go-github-com-opencontainers-runtime-spec-1.0.2" + ,go-github-com-opencontainers-runtime-spec-1.0.2) + ("go-github-com-imdario-mergo-0.3.8" + ,go-github-com-imdario-mergo-0.3.8) + ("go-github-com-hashicorp-go-multierror-0.0.0-20161216184304-ed905158d874" + ,go-github-com-hashicorp-go-multierror-0.0.0-20161216184304-ed905158d874) + ("go-github-com-hashicorp-errwrap-0.0.0-20141028054710-7554cd9344ce" + ,go-github-com-hashicorp-errwrap-0.0.0-20141028054710-7554cd9344ce) + ("go-github-com-gogo-protobuf-1.3.1" + ,go-github-com-gogo-protobuf-1.3.1) + ("go-github-com-gogo-googleapis-1.2.0" + ,go-github-com-gogo-googleapis-1.2.0) + ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" + ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) + ("go-github-com-docker-distribution-0.0.0-20190905152932-14b96e55d84c" + ,go-github-com-docker-distribution-0.0.0-20190905152932-14b96e55d84c) + ("go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd" + ,go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd) + ("go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de" + ,go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de) + ("go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3" + ,go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3) + ("go-github-com-containerd-containerd-1.3.2" + ,go-github-com-containerd-containerd-1.3.2) + ("go-github-com-blang-semver-3.1.0+incompatible" + ,go-github-com-blang-semver-3.1.0+incompatible) + ("go-github-com-microsoft-go-winio-0.4.16-0.20201130162521-d1ffc52c7331" + ,go-github-com-microsoft-go-winio-0.4.16-0.20201130162521-d1ffc52c7331))) + (home-page "https://github.com/Microsoft/hcsshim") + (synopsis #f) + (description #f) + (license license:expat))) + +(define-public go-github-com-containerd-aufs-0.0.0-20200908144142-dab0cbea06f4 + (package + (name "go-github-com-containerd-aufs") + (version "0.0.0-20200908144142-dab0cbea06f4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/aufs") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "060iqypyrdmww0ykip1zqi5f2fl1il55vndgdn5aq5zj6530mgsn")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/aufs")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) + ("go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449" + ,go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449) + ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" + ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) + ("go-go-etcd-io-bbolt-1.3.3" ,go-go-etcd-io-bbolt-1.3.3) + ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) + ("go-github-com-opencontainers-runc-1.0.0-rc9" + ,go-github-com-opencontainers-runc-1.0.0-rc9) + ("go-github-com-opencontainers-image-spec-1.0.1" + ,go-github-com-opencontainers-image-spec-1.0.1) + ("go-github-com-opencontainers-go-digest-1.0.0-rc1" + ,go-github-com-opencontainers-go-digest-1.0.0-rc1) + ("go-github-com-google-go-cmp-0.3.1" + ,go-github-com-google-go-cmp-0.3.1) + ("go-github-com-gogo-protobuf-1.3.1" + ,go-github-com-gogo-protobuf-1.3.1) + ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" + ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) + ("go-github-com-containerd-typeurl-0.0.0-20190911142611-5eb25027c9fd" + ,go-github-com-containerd-typeurl-0.0.0-20190911142611-5eb25027c9fd) + ("go-github-com-containerd-ttrpc-0.0.0-20191028202541-4f1b8fe65a5c" + ,go-github-com-containerd-ttrpc-0.0.0-20191028202541-4f1b8fe65a5c) + ("go-github-com-containerd-continuity-0.0.0-20191127005431-f65d91d395eb" + ,go-github-com-containerd-continuity-0.0.0-20191127005431-f65d91d395eb) + ("go-github-com-containerd-containerd-1.3.1-0.20191213020239-082f7e3aed57" + ,go-github-com-containerd-containerd-1.3.1-0.20191213020239-082f7e3aed57) + ("go-github-com-microsoft-hcsshim-0.8.7" + ,go-github-com-microsoft-hcsshim-0.8.7))) + (home-page "https://github.com/containerd/aufs") + (synopsis "aufs snapshotter") + (description + "AUFS implementation of the snapshot interface for containerd.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-btrfs-0.0.0-20201111183144-404b9149801e + (package + (name "go-github-com-containerd-btrfs") + (version "0.0.0-20201111183144-404b9149801e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/btrfs") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "10aakvy9njaly2mfwi1cvys8dxjn27mnd7wnpnmxh8pxb7g2svag")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/btrfs")) + (propagated-inputs + `(("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) + (home-page "https://github.com/containerd/btrfs") + (synopsis "go-btrfs") + (description + "Package btrfs provides bindings for working with btrfs partitions from Go. +") + (license license:asl2.0))) + +(define-public go-github-com-containerd-cgroups-0.0.0-20200824123100-0b889c03f102 + (package + (name "go-github-com-containerd-cgroups") + (version "0.0.0-20200824123100-0b889c03f102") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/cgroups") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1zjmphy2df9y20hzrmwxfpyyvz8vb5lazr4pjyx3c5a5x0j4rv8d")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/cgroups")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9" + ,go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9) + ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) + ("go-github-com-stretchr-testify-1.2.2" + ,go-github-com-stretchr-testify-1.2.2) + ("go-github-com-sirupsen-logrus-1.6.0" + ,go-github-com-sirupsen-logrus-1.6.0) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-runtime-spec-1.0.2" + ,go-github-com-opencontainers-runtime-spec-1.0.2) + ("go-github-com-gogo-protobuf-1.3.1" + ,go-github-com-gogo-protobuf-1.3.1) + ("go-github-com-godbus-dbus-v5-5.0.3" + ,go-github-com-godbus-dbus-v5-5.0.3) + ("go-github-com-docker-go-units-0.4.0" + ,go-github-com-docker-go-units-0.4.0) + ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" + ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) + ("go-github-com-coreos-go-systemd-v22-22.0.0" + ,go-github-com-coreos-go-systemd-v22-22.0.0) + ("go-github-com-cilium-ebpf-0.0.0-20200702112145-1c8d4c9ef775" + ,go-github-com-cilium-ebpf-0.0.0-20200702112145-1c8d4c9ef775))) + (home-page "https://github.com/containerd/cgroups") + (synopsis "cgroups") + (description + "Go package for creating, managing, inspecting, and destroying cgroups. +The resources format for settings on the cgroup uses the OCI runtime-spec found +@url{https://github.com/opencontainers/runtime-spec,here}.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-continuity-0.0.0-20201208142359-180525291bb7 + (package + (name "go-github-com-containerd-continuity") + (version "0.0.0-20201208142359-180525291bb7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/continuity") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1di4pspqfwfafdni0in84kzyn8h1fhqb6vh4i0g5skqmrc4sxf4h")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/continuity")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3" + ,go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3) + ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" + ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) + ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" + ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) + ("go-github-com-stretchr-testify-1.4.0" + ,go-github-com-stretchr-testify-1.4.0) + ("go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95" + ,go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95) + ("go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee" + ,go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee) + ("go-github-com-sirupsen-logrus-1.6.0" + ,go-github-com-sirupsen-logrus-1.6.0) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-go-digest-1.0.0" + ,go-github-com-opencontainers-go-digest-1.0.0) + ("go-github-com-inconshreveable-mousetrap-1.0.0" + ,go-github-com-inconshreveable-mousetrap-1.0.0) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0) + ("go-github-com-dustin-go-humanize-1.0.0" + ,go-github-com-dustin-go-humanize-1.0.0) + ("go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898" + ,go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898))) + (home-page "https://github.com/containerd/continuity") + (synopsis "continuity") + (description + "This package provides a transport-agnostic, filesystem metadata manifest system") + (license license:asl2.0))) + +(define-public go-github-com-containerd-fifo-0.0.0-20201026212402-0724c46b320c + (package + (name "go-github-com-containerd-fifo") + (version "0.0.0-20201026212402-0724c46b320c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/fifo") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "11d9j0isblnnqf78ygvwjyijjxn6zdzf7p803v0jv2py4d0pkvj8")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/fifo")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449" + ,go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449) + ("go-github-com-stretchr-testify-1.4.0" + ,go-github-com-stretchr-testify-1.4.0) + ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) + (home-page "https://github.com/containerd/fifo") + (synopsis "fifo") + (description "Go package for handling fifos in a sane way.") + (license license:asl2.0))) + +(define-public go-github-com-containernetworking-cni-0.8.0 + (package + (name "go-github-com-containernetworking-cni") + (version "0.8.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containernetworking/cni") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "16i59dhiq7pc7qs32cdk4yv4w9rjx4vvlw7fb6a6jhq6hxxjrgiw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containernetworking/cni")) + (home-page "https://github.com/containernetworking/cni") + (synopsis "CNI - the Container Network Interface") + (description + "CNI (), a @url{https://cncf.io,Cloud Native Computing Foundation} project, consists of a specification and libraries for writing plugins to configure network interfaces in Linux containers, along with a number of supported plugins. +CNI concerns itself only with network connectivity of containers and removing allocated resources when the container is deleted. +Because of this focus, CNI has a wide range of support and the specification is simple to implement.") + (license license:asl2.0))) + +(define-public go-github-com-onsi-ginkgo-1.10.3 + (package + (name "go-github-com-onsi-ginkgo") + (version "1.10.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/onsi/ginkgo") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "00a40by9f5ylycnar8h3p9b4z5rcsvfvg4j3v5s5mchdqrqjv1pc")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/onsi/ginkgo")) + (home-page "https://github.com/onsi/ginkgo") + (synopsis "Ginkgo 2.0 Release Candidate is available!") + (description "Ginkgo is a BDD-style testing framework for Golang +") + (license license:expat))) + +(define-public go-github-com-stretchr-objx-0.0.0-20180129172003-8a3f7159479f + (package + (name "go-github-com-stretchr-objx") + (version "0.0.0-20180129172003-8a3f7159479f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/objx") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0rbz4x4jbq9vp3zxmv0c2wh1vbg48lmc8ncdgz7zxk7241fc31ki")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/objx")) + (home-page "https://github.com/stretchr/objx") + (synopsis "Objx") + (description + "Objx - Go package for dealing with maps, slices, JSON and other data. +") + (license license:expat))) + +(define-public go-github-com-stretchr-testify-0.0.0-20180303142811-b89eecf5ca5d + (package + (name "go-github-com-stretchr-testify") + (version "0.0.0-20180303142811-b89eecf5ca5d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0g946ii8qjaynvidj648z8izl91i6yhy0ir6g3qsrn136im3r8wk")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +") + (license license:expat))) + +(define-public go-github-com-containerd-go-cni-1.0.1 + (package + (name "go-github-com-containerd-go-cni") + (version "1.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/go-cni") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0sdlwa4d0kzpm3vg9jy6fxqqcfjq8innv1zjcyp8n9qy8vj9b24y")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/go-cni")) + (propagated-inputs + `(("go-github-com-stretchr-testify-0.0.0-20180303142811-b89eecf5ca5d" + ,go-github-com-stretchr-testify-0.0.0-20180303142811-b89eecf5ca5d) + ("go-github-com-stretchr-objx-0.0.0-20180129172003-8a3f7159479f" + ,go-github-com-stretchr-objx-0.0.0-20180129172003-8a3f7159479f) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-onsi-gomega-1.7.1" ,go-github-com-onsi-gomega-1.7.1) + ("go-github-com-onsi-ginkgo-1.10.3" ,go-github-com-onsi-ginkgo-1.10.3) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1) + ("go-github-com-containernetworking-cni-0.8.0" + ,go-github-com-containernetworking-cni-0.8.0))) + (home-page "https://github.com/containerd/go-cni") + (synopsis "go-cni") + (description + "This package provides a generic CNI library to provide APIs for CNI plugin interactions. The library provides APIs to:") + (license license:asl2.0))) + +(define-public go-github-com-containerd-console-0.0.0-20191206165004-02ecf6a7291e + (package + (name "go-github-com-containerd-console") + (version "0.0.0-20191206165004-02ecf6a7291e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/console") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1b3yq446gv8da4fajknbjxr5syz1ypz0nii9sqw066hx8kmqzgqh")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/console")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e" + ,go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e) + ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) + (home-page "https://github.com/containerd/console") + (synopsis "console") + (description + "Golang package for dealing with consoles. Light on deps and a simple API.") + (license license:asl2.0))) + +(define-public go-github-com-opencontainers-runtime-spec-1.0.1 + (package + (name "go-github-com-opencontainers-runtime-spec") + (version "1.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/runtime-spec") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "00qb0q7ndxsll12ilp5a8pqfi4i1jqrlqzv0yf7sn52lkrdrw5f4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) + (home-page "https://github.com/opencontainers/runtime-spec") + (synopsis "Open Container Initiative Runtime Specification") + (description + "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328 + (package + (name "go-github-com-containerd-go-runc") + (version "0.0.0-20200220073739-7016d3ce2328") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/go-runc") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1mx2lvfkxw9kiyhi18g3c6hcpb9r2115zjzyvz6rkdqr08xrij9k")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/go-runc")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449" + ,go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449) + ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) + ("go-github-com-opencontainers-runtime-spec-1.0.1" + ,go-github-com-opencontainers-runtime-spec-1.0.1) + ("go-github-com-containerd-console-0.0.0-20191206165004-02ecf6a7291e" + ,go-github-com-containerd-console-0.0.0-20191206165004-02ecf6a7291e))) + (home-page "https://github.com/containerd/go-runc") + (synopsis "go-runc") + (description + "This is a package for consuming the @url{https://github.com/opencontainers/runc,runc} binary in your Go applications. +It tries to expose all the settings and features of the runc CLI. If there is something missing then add it, its opensource!") + (license license:asl2.0))) + +(define-public go-github-com-microsoft-go-winio-0.4.14 + (package + (name "go-github-com-microsoft-go-winio") + (version "0.4.14") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/microsoft/go-winio") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0n34wi9l9ks2z3cz97j30ljfmqppwf1zxr16hwbnswyrk54fcxm3")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/Microsoft/go-winio")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b" + ,go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b) + ("go-github-com-sirupsen-logrus-1.4.1" + ,go-github-com-sirupsen-logrus-1.4.1) + ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) + (home-page "https://github.com/Microsoft/go-winio") + (synopsis "go-winio") + (description + "This repository contains utilities for efficiently performing Win32 IO operations in +Go. Currently, this is focused on accessing named pipes and other file handles, and +for using named pipes as a net transport.") + (license license:expat))) + +(define-public go-github-com-microsoft-hcsshim-0.8.7-0.20190325164909-8abdbb8205e4 + (package + (name "go-github-com-microsoft-hcsshim") + (version "0.8.7-0.20190325164909-8abdbb8205e4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/microsoft/hcsshim") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0029085clghvprb3bs2m9q7xk4njx5fg2gr5wm3a0y8kqx0awv45")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/Microsoft/hcsshim")) + (home-page "https://github.com/Microsoft/hcsshim") + (synopsis "hcsshim") + (description + "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") + (license license:expat))) + +(define-public go-github-com-containerd-cgroups-0.0.0-20190717030353-c4b9ac5c7601 + (package + (name "go-github-com-containerd-cgroups") + (version "0.0.0-20190717030353-c4b9ac5c7601") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/cgroups") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fpai6nsm7qd5zfd8ykq8j4ngbqcy5v2isw16j086j0qabyw2iiw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/cgroups")) + (home-page "https://github.com/containerd/cgroups") + (synopsis "cgroups") + (description + "Go package for creating, managing, inspecting, and destroying cgroups. +The resources format for settings on the cgroup uses the OCI runtime-spec found +@url{https://github.com/opencontainers/runtime-spec,here}.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-console-0.0.0-20181022165439-0650fd9eeb50 + (package + (name "go-github-com-containerd-console") + (version "0.0.0-20181022165439-0650fd9eeb50") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/console") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0cs11g3gjan15rnbgryf60725sw2hf83fb6y2hwn1rgcm0jab1b8")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/console")) + (home-page "https://github.com/containerd/console") + (synopsis "console") + (description + "Golang package for dealing with consoles. Light on deps and a simple API.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-containerd-1.3.0 + (package + (name "go-github-com-containerd-containerd") + (version "1.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/containerd") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "05mr33l0rhkj49n6wf9lk95ijqvqwhp68ll879rpad1ypfv2f8as")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/containerd")) + (home-page "https://github.com/containerd/containerd") + (synopsis "Now Recruiting") + (description + "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-continuity-0.0.0-20190815185530-f2a389ac0a02 + (package + (name "go-github-com-containerd-continuity") + (version "0.0.0-20190815185530-f2a389ac0a02") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/continuity") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0h8a7npx46sjak0dyypkgg0h5dkq6dqpa4gx1v22ik62rmw0jy8r")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/continuity")) + (home-page "https://github.com/containerd/continuity") + (synopsis "continuity") + (description + "This package provides a transport-agnostic, filesystem metadata manifest system") + (license license:asl2.0))) + +(define-public go-github-com-containerd-fifo-0.0.0-20180307165137-3d5202aec260 + (package + (name "go-github-com-containerd-fifo") + (version "0.0.0-20180307165137-3d5202aec260") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/fifo") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "11jp12vgfj0xg9m2w5cfay72fwrxb6w8za7rkcqw8yy8hypiqqxq")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/fifo")) + (home-page "https://github.com/containerd/fifo") + (synopsis "fifo") + (description "Go package for handling fifos in a sane way.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-go-runc-0.0.0-20190911050354-e029b79d8cda + (package + (name "go-github-com-containerd-go-runc") + (version "0.0.0-20190911050354-e029b79d8cda") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/go-runc") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0zwb6bfnfmj09rnz1z3xx1y2pm4wrhyp2ls7vmf7p62j5zyvdpkw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/go-runc")) + (home-page "https://github.com/containerd/go-runc") + (synopsis "go-runc") + (description + "This is a package for consuming the @url{https://github.com/opencontainers/runc,runc} binary in your Go applications. +It tries to expose all the settings and features of the runc CLI. If there is something missing then add it, its opensource!") + (license license:asl2.0))) + +(define-public go-github-com-containerd-ttrpc-0.0.0-20190828172938-92c8520ef9f8 + (package + (name "go-github-com-containerd-ttrpc") + (version "0.0.0-20190828172938-92c8520ef9f8") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/ttrpc") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1kzclhmicw2xkiqsg6npx0xzs5jx36mqmyd0gj5dzv88i7p4b8dx")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/ttrpc")) + (home-page "https://github.com/containerd/ttrpc") + (synopsis "ttrpc") + (description "GRPC for low-memory environments.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-containerd-1.2.10 + (package + (name "go-github-com-containerd-containerd") + (version "1.2.10") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/containerd") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1kddhkd93wkrimk0yjcqiavdrqc818nd39rf3wrgxyilx1mfnrwb")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/containerd")) + (home-page "https://github.com/containerd/containerd") + (synopsis "Now Recruiting") + (description + "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") + (license license:asl2.0))) + +(define-public go-github-com-fullsailor-pkcs7-0.0.0-20190404230743-d7302db945fa + (package + (name "go-github-com-fullsailor-pkcs7") + (version "0.0.0-20190404230743-d7302db945fa") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/fullsailor/pkcs7") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "13d7dpj85j36pxwg1kn7b23rm54va5p9v3vdcx27pma2jjlsxsm1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/fullsailor/pkcs7")) + (home-page "https://github.com/fullsailor/pkcs7") + (synopsis "pkcs7") + (description + "Package pkcs7 implements parsing and generation of some PKCS#7 structures. +") + (license license:expat))) + +(define-public go-golang-org-x-crypto-0.0.0-20190701094942-4def268fd1a4 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20190701094942-4def268fd1a4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1bfsnari529gw34cz0zqk3d9mrkcj1ay35kangri8kbgll0ss5a6")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" + ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) + ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" + ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-gopkg-in-square-go-jose-v2-2.3.1 + (package + (name "go-gopkg-in-square-go-jose-v2") + (version "2.3.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/square/go-jose.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "11r93g9xrcjqj7qvq8sbd5hy5rnbpmim0vdsp6rbav8gl7wimaa3")))) + (build-system go-build-system) + (arguments + '(#:import-path + "gopkg.in/square/go-jose.v2" + #:unpack-path + "gopkg.in/square/go-jose.v2")) + (home-page "https://gopkg.in/square/go-jose.v2") + (synopsis "Go JOSE") + (description + "Package jose aims to provide an implementation of the Javascript Object Signing +and Encryption set of standards. It implements encryption and signing based on +the JSON Web Encryption and JSON Web Signature standards, with optional JSON +Web Token support available in a sub-package. The library supports both the +compact and full serialization formats, and has optional support for multiple +recipients. +") + (license license:asl2.0))) + +(define-public go-github-com-containers-ocicrypt-1.0.1 + (package + (name "go-github-com-containers-ocicrypt") + (version "1.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containers/ocicrypt") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0q27vzgdsimypkpi7iv0rl1xz571554adphyl0j8b5qa8wrf0n7v")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containers/ocicrypt")) + (propagated-inputs + `(("go-gotest-tools-2.2.0+incompatible" + ,go-gotest-tools-2.2.0+incompatible) + ("go-gopkg-in-square-go-jose-v2-2.3.1" + ,go-gopkg-in-square-go-jose-v2-2.3.1) + ("go-google-golang-org-grpc-1.24.0" ,go-google-golang-org-grpc-1.24.0) + ("go-golang-org-x-crypto-0.0.0-20190701094942-4def268fd1a4" + ,go-golang-org-x-crypto-0.0.0-20190701094942-4def268fd1a4) + ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) + ("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0) + ("go-github-com-sirupsen-logrus-1.4.2" + ,go-github-com-sirupsen-logrus-1.4.2) + ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) + ("go-github-com-opencontainers-image-spec-1.0.1" + ,go-github-com-opencontainers-image-spec-1.0.1) + ("go-github-com-opencontainers-go-digest-1.0.0-rc1" + ,go-github-com-opencontainers-go-digest-1.0.0-rc1) + ("go-github-com-fullsailor-pkcs7-0.0.0-20190404230743-d7302db945fa" + ,go-github-com-fullsailor-pkcs7-0.0.0-20190404230743-d7302db945fa) + ("go-github-com-containerd-containerd-1.2.10" + ,go-github-com-containerd-containerd-1.2.10))) + (home-page "https://github.com/containers/ocicrypt") + (synopsis "OCIcrypt Library") + (description + "The @code{ocicrypt} library is the OCI image spec implementation of container image encryption. More details of the spec can be seen in the @url{https://github.com/opencontainers/image-spec/pull/775,OCI repository}. The purpose of this library is to encode spec structures and consts in code, as well as provide a consistent implementation of image encryption across container runtimes and build tools.") + (license license:asl2.0))) + +(define-public go-github-com-coreos-go-systemd-0.0.0-20161114122254-48702e0da86b + (package + (name "go-github-com-coreos-go-systemd") + (version "0.0.0-20161114122254-48702e0da86b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/coreos/go-systemd") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "04zl9ns4j3lpjykf32rv5cb6sj9x5ci8yi90vab1bl27vnqjgdkh")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/coreos/go-systemd")) + (home-page "https://github.com/coreos/go-systemd") + (synopsis "go-systemd") + (description "Go bindings to systemd. The project has several packages:") + (license license:asl2.0))) + +(define-public go-github-com-docker-distribution-2.7.1-0.20190205005809-0d3efadf0154+incompatible + (package + (name "go-github-com-docker-distribution") + (version "2.7.1-0.20190205005809-0d3efadf0154+incompatible") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/distribution/distribution") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1wayhmcxr6l281fqkbw1gh0ymhxlznf4jj1rcldhwrc64l2zjh8l")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/docker/distribution")) + (home-page "https://github.com/docker/distribution") + (synopsis "Distribution") + (description + "Package distribution will define the interfaces for the components of +docker distribution. The goal is to allow users to reliably package, ship +and store content related to docker images. +") + (license license:asl2.0))) + +(define-public go-github-com-docker-go-events-0.0.0-20170721190031-9461782956ad + (package + (name "go-github-com-docker-go-events") + (version "0.0.0-20170721190031-9461782956ad") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/docker/go-events") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0vn0kd0w253jwdk86gv1h6s8p6bzxiyif74xdzlb39zr6fdrr145")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/docker/go-events")) + (home-page "https://github.com/docker/go-events") + (synopsis "Docker Events Package") + (description + "The Docker @code{events} package implements a composable event distribution package +for Go.") + (license license:asl2.0))) + +(define-public go-github-com-godbus-dbus-0.0.0-20151105175453-c7fdd8b5cd55 + (package + (name "go-github-com-godbus-dbus") + (version "0.0.0-20151105175453-c7fdd8b5cd55") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/godbus/dbus") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "09zazkiny2im24xaiac5kbyhhnbqdbhwi9z9n7fj6rhpg8msiq9n")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/godbus/dbus")) + (home-page "https://github.com/godbus/dbus") + (synopsis "dbus") + (description + "Package dbus implements bindings to the D-Bus message bus system. +") + (license license:bsd-2))) + +(define-public go-github-com-gogo-googleapis-1.2.0 + (package + (name "go-github-com-gogo-googleapis") + (version "1.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gogo/googleapis") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1a82n0xp0v8lgjxzl3aa595r0rmy7afgyn2l3kv6z9kzw339i0jp")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/gogo/googleapis")) + (propagated-inputs + `(("go-github-com-gogo-protobuf-1.2.1" + ,go-github-com-gogo-protobuf-1.2.1))) + (home-page "https://github.com/gogo/googleapis") + (synopsis "Google APIs generated by gogoprotobuf") + (description + "The @url{https://github.com/gogo/grpc-example,grpc-example} includes an example usage of this repository.") + (license license:asl2.0))) + +(define-public go-github-com-imdario-mergo-0.3.8 + (package + (name "go-github-com-imdario-mergo") + (version "0.3.8") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/imdario/mergo") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "15xwyrnwng11ib0fxi7clwick2r0njwn0gs3va2g5m1ad418ry57")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/imdario/mergo")) + (home-page "https://github.com/imdario/mergo") + (synopsis "Mergo") + (description + "This package provides a helper to merge structs and maps in Golang. Useful for configuration default values, avoiding messy if-statements. +") + (license license:bsd-3))) + +(define-public go-github-com-opencontainers-go-digest-1.0.0-rc1.0.20180430190053-c9281466c8b2 + (package + (name "go-github-com-opencontainers-go-digest") + (version "1.0.0-rc1.0.20180430190053-c9281466c8b2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/go-digest") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1djdazssy27xn91pjhx3dgb0f11bnlzzbwkh7f8zwnpz011anasi")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/go-digest")) + (home-page "https://github.com/opencontainers/go-digest") + (synopsis "go-digest") + (description + "Package digest provides a generalized type to opaquely represent message +digests and their operations within the registry. The Digest type is +designed to serve as a flexible identifier in a content-addressable system. +More importantly, it provides tools and wrappers to work with +hash.Hash-based digests with little effort. +") + (license (list license:asl2.0 license:cc-by-sa4.0)))) + +(define-public go-github-com-opencontainers-runc-1.0.0-rc8.0.20190926000215-3e425f80a8c9 + (package + (name "go-github-com-opencontainers-runc") + (version "1.0.0-rc8.0.20190926000215-3e425f80a8c9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/runc") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18psc830b2rkwml1x6vxngam5b5wi3pj14mw817rshpzy87prspj")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/runc")) + (home-page "https://github.com/opencontainers/runc") + (synopsis "runc") + (description + "@code{runc} is a CLI tool for spawning and running containers according to the OCI specification.") + (license license:asl2.0))) + +(define-public go-github-com-opencontainers-runtime-spec-1.0.2-0.20190207185410-29686dbc5559 + (package + (name "go-github-com-opencontainers-runtime-spec") + (version "1.0.2-0.20190207185410-29686dbc5559") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/runtime-spec") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0i8q3520jk4yl9rsxs8mn5vsi9i0gd3drysbhciaqwm5l8c30h65")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) + (home-page "https://github.com/opencontainers/runtime-spec") + (synopsis "Open Container Initiative Runtime Specification") + (description + "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") + (license license:asl2.0))) + +(define-public go-github-com-prometheus-procfs-0.0.8 + (package + (name "go-github-com-prometheus-procfs") + (version "0.0.8") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/procfs") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "076wblhz8fjdc73fmz1lg0hafbwg1xv8hszm78lbg9anjpfgacvq")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/procfs")) + (propagated-inputs + `(("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" + ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) + ("go-github-com-google-go-cmp-0.3.1" + ,go-github-com-google-go-cmp-0.3.1))) + (home-page "https://github.com/prometheus/procfs") + (synopsis "procfs") + (description + "Package procfs provides functions to retrieve system, kernel and process +metrics from the pseudo-filesystem proc. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-net-0.0.0-20190522155817-f3200d17e092 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190522155817-f3200d17e092") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1mskh7p80dd8j1ffy16917d3cyy7lfh1gb56n4rq9g1bwckz4lwy")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20190812073006-9eafafc0a87e + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190812073006-9eafafc0a87e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0g5wcpiafz47066993mgz77gka9qzww6w6crxpnyir0459j7z07r")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-google-golang-org-grpc-1.24.0 + (package + (name "go-google-golang-org-grpc") + (version "1.24.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0h8mwv74vzcfb7p4ai247x094skxca71vjp4wpj2wzmri0x9p4v6")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" + ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) + ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" + ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) + ("go-google-golang-org-appengine-1.1.0" + ,go-google-golang-org-appengine-1.1.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-google-go-cmp-0.2.0" + ,go-github-com-google-go-cmp-0.2.0) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2) + ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-client9-misspell-0.3.4" + ,go-github-com-client9-misspell-0.3.4) + ("go-github-com-burntsushi-toml-0.3.1" + ,go-github-com-burntsushi-toml-0.3.1) + ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-github-com-containerd-imgcrypt-1.0.1 + (package + (name "go-github-com-containerd-imgcrypt") + (version "1.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/imgcrypt") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0y0gbnp8imckw6rv3sjf3sycp8rc9lyhv0pp0x3q3yksvqmbqh5v")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/imgcrypt")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.24.0" ,go-google-golang-org-grpc-1.24.0) + ("go-golang-org-x-sys-0.0.0-20190812073006-9eafafc0a87e" + ,go-golang-org-x-sys-0.0.0-20190812073006-9eafafc0a87e) + ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" + ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) + ("go-golang-org-x-net-0.0.0-20190522155817-f3200d17e092" + ,go-golang-org-x-net-0.0.0-20190522155817-f3200d17e092) + ("go-go-etcd-io-bbolt-1.3.3" ,go-go-etcd-io-bbolt-1.3.3) + ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) + ("go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2" + ,go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2) + ("go-github-com-sirupsen-logrus-1.4.2" + ,go-github-com-sirupsen-logrus-1.4.2) + ("go-github-com-prometheus-procfs-0.0.8" + ,go-github-com-prometheus-procfs-0.0.8) + ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) + ("go-github-com-opencontainers-runtime-spec-1.0.2-0.20190207185410-29686dbc5559" + ,go-github-com-opencontainers-runtime-spec-1.0.2-0.20190207185410-29686dbc5559) + ("go-github-com-opencontainers-runc-1.0.0-rc8.0.20190926000215-3e425f80a8c9" + ,go-github-com-opencontainers-runc-1.0.0-rc8.0.20190926000215-3e425f80a8c9) + ("go-github-com-opencontainers-image-spec-1.0.1" + ,go-github-com-opencontainers-image-spec-1.0.1) + ("go-github-com-opencontainers-go-digest-1.0.0-rc1.0.20180430190053-c9281466c8b2" + ,go-github-com-opencontainers-go-digest-1.0.0-rc1.0.20180430190053-c9281466c8b2) + ("go-github-com-imdario-mergo-0.3.8" + ,go-github-com-imdario-mergo-0.3.8) + ("go-github-com-gogo-protobuf-1.2.1" + ,go-github-com-gogo-protobuf-1.2.1) + ("go-github-com-gogo-googleapis-1.2.0" + ,go-github-com-gogo-googleapis-1.2.0) + ("go-github-com-godbus-dbus-0.0.0-20151105175453-c7fdd8b5cd55" + ,go-github-com-godbus-dbus-0.0.0-20151105175453-c7fdd8b5cd55) + ("go-github-com-docker-go-units-0.4.0" + ,go-github-com-docker-go-units-0.4.0) + ("go-github-com-docker-go-events-0.0.0-20170721190031-9461782956ad" + ,go-github-com-docker-go-events-0.0.0-20170721190031-9461782956ad) + ("go-github-com-docker-distribution-2.7.1-0.20190205005809-0d3efadf0154+incompatible" + ,go-github-com-docker-distribution-2.7.1-0.20190205005809-0d3efadf0154+incompatible) + ("go-github-com-coreos-go-systemd-0.0.0-20161114122254-48702e0da86b" + ,go-github-com-coreos-go-systemd-0.0.0-20161114122254-48702e0da86b) + ("go-github-com-containers-ocicrypt-1.0.1" + ,go-github-com-containers-ocicrypt-1.0.1) + ("go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd" + ,go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd) + ("go-github-com-containerd-ttrpc-0.0.0-20190828172938-92c8520ef9f8" + ,go-github-com-containerd-ttrpc-0.0.0-20190828172938-92c8520ef9f8) + ("go-github-com-containerd-go-runc-0.0.0-20190911050354-e029b79d8cda" + ,go-github-com-containerd-go-runc-0.0.0-20190911050354-e029b79d8cda) + ("go-github-com-containerd-fifo-0.0.0-20180307165137-3d5202aec260" + ,go-github-com-containerd-fifo-0.0.0-20180307165137-3d5202aec260) + ("go-github-com-containerd-continuity-0.0.0-20190815185530-f2a389ac0a02" + ,go-github-com-containerd-continuity-0.0.0-20190815185530-f2a389ac0a02) + ("go-github-com-containerd-containerd-1.3.0" + ,go-github-com-containerd-containerd-1.3.0) + ("go-github-com-containerd-console-0.0.0-20181022165439-0650fd9eeb50" + ,go-github-com-containerd-console-0.0.0-20181022165439-0650fd9eeb50) + ("go-github-com-containerd-cgroups-0.0.0-20190717030353-c4b9ac5c7601" + ,go-github-com-containerd-cgroups-0.0.0-20190717030353-c4b9ac5c7601) + ("go-github-com-microsoft-hcsshim-0.8.7-0.20190325164909-8abdbb8205e4" + ,go-github-com-microsoft-hcsshim-0.8.7-0.20190325164909-8abdbb8205e4) + ("go-github-com-microsoft-go-winio-0.4.14" + ,go-github-com-microsoft-go-winio-0.4.14))) + (home-page "https://github.com/containerd/imgcrypt") + (synopsis "imgcrypt image encryption library and command line tool") + (description + "Project @code{imgcrypt} is a non-core subproject of containerd.") + (license license:asl2.0))) + +(define-public go-github-com-blang-semver-3.1.0+incompatible + (package + (name "go-github-com-blang-semver") + (version "3.1.0+incompatible") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/blang/semver") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1s80qlij6j6wrh0fhm0l11hbf3qjra67nca5bl7izyfjj4621fcd")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/blang/semver")) + (home-page "https://github.com/blang/semver") + (synopsis "semver for golang") + (description + "semver is a @url{http://semver.org/,Semantic Versioning} library written in golang. It fully covers spec version @code{2.0.0}.") + (license license:expat))) + +(define-public go-github-com-containerd-containerd-1.3.0-beta.2.0.20190828155532-0293cbd26c69 + (package + (name "go-github-com-containerd-containerd") + (version "1.3.0-beta.2.0.20190828155532-0293cbd26c69") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/containerd") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1jhb4a7fczf817d9dwj0a02wfscv46hkymrqh1dcsgpdsp80igkw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/containerd")) + (home-page "https://github.com/containerd/containerd") + (synopsis "Now Recruiting") + (description + "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") + (license license:asl2.0))) + +(define-public go-github-com-hashicorp-errwrap-0.0.0-20141028054710-7554cd9344ce + (package + (name "go-github-com-hashicorp-errwrap") + (version "0.0.0-20141028054710-7554cd9344ce") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/errwrap") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0kmv0p605di6jc8i1778qzass18m0mv9ks9vxxrfsiwcp4la82jf")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/errwrap")) + (home-page "https://github.com/hashicorp/errwrap") + (synopsis "errwrap") + (description + "Package errwrap implements methods to formalize error wrapping in Go. +") + (license license:mpl2.0))) + +(define-public go-github-com-hashicorp-go-multierror-0.0.0-20161216184304-ed905158d874 + (package + (name "go-github-com-hashicorp-go-multierror") + (version "0.0.0-20161216184304-ed905158d874") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/go-multierror") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1bldhx9dmx9q4gjsag3g1xswq1jsf394rs69fdbmgnkj75j3sp70")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/go-multierror")) + (home-page "https://github.com/hashicorp/go-multierror") + (synopsis "go-multierror") + (description + "@code{go-multierror} is a package for Go that provides a mechanism for +representing a list of @code{error} values as a single @code{error}.") + (license license:mpl2.0))) + +(define-public go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39 + (package + (name "go-github-com-opencontainers-runtime-tools") + (version "0.0.0-20181011054405-1d69bd0f9c39") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/runtime-tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1wgisl2v8i1hvy3bf8f16v7rarx2ynyasb0jx4kffp5n5hz2hfcl")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/runtime-tools")) + (home-page "https://github.com/opencontainers/runtime-tools") + (synopsis "oci-runtime-tool") + (description + "oci-runtime-tool is a collection of tools for working with the @url{https://github.com/opencontainers/runtime-spec,OCI runtime specification}. +To build from source code, runtime-tools requires Go 1.10.x or above.") + (license license:asl2.0))) + +(define-public go-github-com-prometheus-procfs-0.0.5 + (package + (name "go-github-com-prometheus-procfs") + (version "0.0.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/procfs") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1nqn8ip9f4f6kqrvand4lxhcxrkk19dwf8s3nh336i9wr2jfhbwa")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/procfs")) + (propagated-inputs + `(("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" + ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) + ("go-github-com-google-go-cmp-0.3.0" + ,go-github-com-google-go-cmp-0.3.0))) + (home-page "https://github.com/prometheus/procfs") + (synopsis "procfs") + (description + "Package procfs provides functions to retrieve system, kernel and process +metrics from the pseudo-filesystem proc. +") + (license license:asl2.0))) + +(define-public go-github-com-syndtr-gocapability-0.0.0-20170704070218-db04d3cc01c8 + (package + (name "go-github-com-syndtr-gocapability") + (version "0.0.0-20170704070218-db04d3cc01c8") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/syndtr/gocapability") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0jwica5kqax70rd4gbc2yjdz54401s4mr6clyn60gcmnxc0wynds")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/syndtr/gocapability")) + (home-page "https://github.com/syndtr/gocapability") + (synopsis #f) + (description #f) + (license license:bsd-2))) + +(define-public go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f + (package + (name "go-github-com-xeipuuv-gojsonpointer") + (version "0.0.0-20180127040702-4e3ac2762d5f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/xeipuuv/gojsonpointer") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "13y6iq2nzf9z4ls66bfgnnamj2m3438absmbpqry64bpwjfbsi9q")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/xeipuuv/gojsonpointer")) + (home-page "https://github.com/xeipuuv/gojsonpointer") + (synopsis "gojsonpointer") + (description "An implementation of JSON Pointer - Go language") + (license license:asl2.0))) + +(define-public go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415 + (package + (name "go-github-com-xeipuuv-gojsonreference") + (version "0.0.0-20180127040603-bd5ef7bd5415") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/xeipuuv/gojsonreference") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1xby79padc7bmyb8rfbad8wfnfdzpnh51b1n8c0kibch0kwc1db5")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/xeipuuv/gojsonreference")) + (home-page "https://github.com/xeipuuv/gojsonreference") + (synopsis "gojsonreference") + (description "An implementation of JSON Reference - Go language") + (license license:asl2.0))) + +(define-public go-github-com-xeipuuv-gojsonschema-0.0.0-20180618132009-1d523034197f + (package + (name "go-github-com-xeipuuv-gojsonschema") + (version "0.0.0-20180618132009-1d523034197f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/xeipuuv/gojsonschema") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1z8c6x8sfh6d1ib2lm2jps7r139qip6h3zik3fxhy1yr1380qbzp")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/xeipuuv/gojsonschema")) + (home-page "https://github.com/xeipuuv/gojsonschema") + (synopsis "gojsonschema") + (description + "An implementation of JSON Schema for the Go programming language. Supports draft-04, draft-06 and draft-07.") + (license license:asl2.0))) + +(define-public go-k8s-io-kubernetes-1.13.0 + (package + (name "go-k8s-io-kubernetes") + (version "1.13.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes/kubernetes") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12cvw8b7l319p8nc2imc2wck7zz7vzrwcjyxq5djqj7l5rbcwmzs")))) + (build-system go-build-system) + (arguments '(#:import-path "k8s.io/kubernetes")) + (home-page "https://k8s.io/kubernetes") + (synopsis "Kubernetes (K8s)") + (description + "Kubernetes, also known as K8s, is an open source system for managing @url{https://kubernetes.io/docs/concepts/overview/what-is-kubernetes/,containerized applications} +across multiple hosts. It provides basic mechanisms for deployment, maintenance, +and scaling of applications.") + (license license:asl2.0))) + +(define-public go-github-com-microsoft-hcsshim-0.8.7 + (package + (name "go-github-com-microsoft-hcsshim") + (version "0.8.7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/microsoft/hcsshim") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1c6ix202ll48n7x00xxb7gzgm3srm9zwwbx2503l6vz3sqclh9xm")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/Microsoft/hcsshim")) + (propagated-inputs + `(("go-k8s-io-kubernetes-1.13.0" ,go-k8s-io-kubernetes-1.13.0) + ("go-gotest-tools-2.2.0+incompatible" + ,go-gotest-tools-2.2.0+incompatible) + ("go-google-golang-org-grpc-1.20.1" ,go-google-golang-org-grpc-1.20.1) + ("go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3" + ,go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3) + ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" + ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) + ("go-go-opencensus-io-0.22.0" ,go-go-opencensus-io-0.22.0) + ("go-github-com-xeipuuv-gojsonschema-0.0.0-20180618132009-1d523034197f" + ,go-github-com-xeipuuv-gojsonschema-0.0.0-20180618132009-1d523034197f) + ("go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415" + ,go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415) + ("go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f" + ,go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f) + ("go-github-com-urfave-cli-0.0.0-20171014202726-7bc6a0acffa5" + ,go-github-com-urfave-cli-0.0.0-20171014202726-7bc6a0acffa5) + ("go-github-com-syndtr-gocapability-0.0.0-20170704070218-db04d3cc01c8" + ,go-github-com-syndtr-gocapability-0.0.0-20170704070218-db04d3cc01c8) + ("go-github-com-sirupsen-logrus-1.4.1" + ,go-github-com-sirupsen-logrus-1.4.1) + ("go-github-com-prometheus-procfs-0.0.5" + ,go-github-com-prometheus-procfs-0.0.5) + ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) + ("go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39" + ,go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39) + ("go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700" + ,go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700) + ("go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f" + ,go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f) + ("go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2" + ,go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2) + ("go-github-com-hashicorp-go-multierror-0.0.0-20161216184304-ed905158d874" + ,go-github-com-hashicorp-go-multierror-0.0.0-20161216184304-ed905158d874) + ("go-github-com-hashicorp-errwrap-0.0.0-20141028054710-7554cd9344ce" + ,go-github-com-hashicorp-errwrap-0.0.0-20141028054710-7554cd9344ce) + ("go-github-com-gogo-protobuf-1.2.1" + ,go-github-com-gogo-protobuf-1.2.1) + ("go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd" + ,go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd) + ("go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de" + ,go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de) + ("go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3" + ,go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3) + ("go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448" + ,go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448) + ("go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc" + ,go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc) + ("go-github-com-containerd-containerd-1.3.0-beta.2.0.20190828155532-0293cbd26c69" + ,go-github-com-containerd-containerd-1.3.0-beta.2.0.20190828155532-0293cbd26c69) + ("go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1" + ,go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1) + ("go-github-com-containerd-cgroups-0.0.0-20190919134610-bf292b21730f" + ,go-github-com-containerd-cgroups-0.0.0-20190919134610-bf292b21730f) + ("go-github-com-blang-semver-3.1.0+incompatible" + ,go-github-com-blang-semver-3.1.0+incompatible) + ("go-github-com-microsoft-go-winio-0.4.15-0.20190919025122-fc70bd9a86b5" + ,go-github-com-microsoft-go-winio-0.4.15-0.20190919025122-fc70bd9a86b5))) + (home-page "https://github.com/Microsoft/hcsshim") + (synopsis "hcsshim") + (description + "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") + (license license:expat))) + +(define-public go-github-com-containerd-containerd-1.3.1-0.20191213020239-082f7e3aed57 + (package + (name "go-github-com-containerd-containerd") + (version "1.3.1-0.20191213020239-082f7e3aed57") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/containerd") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1piaha1adhzhj150l7zhskn5fgl4r2cyvwhrrm8bbm3vnvhmgw7v")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/containerd")) + (home-page "https://github.com/containerd/containerd") + (synopsis "Now Recruiting") + (description + "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-continuity-0.0.0-20191127005431-f65d91d395eb + (package + (name "go-github-com-containerd-continuity") + (version "0.0.0-20191127005431-f65d91d395eb") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/continuity") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "15yh5idl3if8a982gsnq9q72021a7jcs9bdcrqaxbl4dwdqcszki")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/continuity")) + (home-page "https://github.com/containerd/continuity") + (synopsis "continuity") + (description + "This package provides a transport-agnostic, filesystem metadata manifest system") + (license license:asl2.0))) + +(define-public go-golang-org-x-sys-0.0.0-20190522044717-8097e1b27ff5 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190522044717-8097e1b27ff5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1rgflfvh365x5lwdyqdd9qk8hh3ycr88a2488bgqgvfhp5ri5p6x")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-google-golang-org-genproto-0.0.0-20190522204451-c2c4e71fbf69 + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20190522204451-c2c4e71fbf69") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1y44pmyy92pg822fhw80pnciifx1ah0g73i2l0ixickd24wyznnm")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" + ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) + ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) + ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" + ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) + ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" + ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) + ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" + ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) + ("go-github-com-golang-protobuf-1.3.1" + ,go-github-com-golang-protobuf-1.3.1))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-google-golang-org-grpc-1.21.0 + (package + (name "go-google-golang-org-grpc") + (version "1.21.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0zxjlxnvjqfn6zfx7gbmqhadx0j788vxfn95g1ngbmjkgppzsnfp")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" + ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) + ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" + ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) + ("go-google-golang-org-appengine-1.1.0" + ,go-google-golang-org-appengine-1.1.0) + ("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" + ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" + ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-google-go-cmp-0.2.0" + ,go-github-com-google-go-cmp-0.2.0) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0) + ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-client9-misspell-0.3.4" + ,go-github-com-client9-misspell-0.3.4) + ("go-github-com-burntsushi-toml-0.3.1" + ,go-github-com-burntsushi-toml-0.3.1) + ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-github-com-containerd-ttrpc-0.0.0-20191028202541-4f1b8fe65a5c + (package + (name "go-github-com-containerd-ttrpc") + (version "0.0.0-20191028202541-4f1b8fe65a5c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/ttrpc") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19fhm39jagk2sfgi9g5zdqx4rynziwxhaap03x4mdj8kczlz21x8")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/ttrpc")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.21.0" ,go-google-golang-org-grpc-1.21.0) + ("go-google-golang-org-genproto-0.0.0-20190522204451-c2c4e71fbf69" + ,go-google-golang-org-genproto-0.0.0-20190522204451-c2c4e71fbf69) + ("go-golang-org-x-sys-0.0.0-20190522044717-8097e1b27ff5" + ,go-golang-org-x-sys-0.0.0-20190522044717-8097e1b27ff5) + ("go-github-com-sirupsen-logrus-1.4.2" + ,go-github-com-sirupsen-logrus-1.4.2) + ("go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1" + ,go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1) + ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) + ("go-github-com-gogo-protobuf-1.2.1" + ,go-github-com-gogo-protobuf-1.2.1))) + (home-page "https://github.com/containerd/ttrpc") + (synopsis "ttrpc") + (description "GRPC for low-memory environments.") + (license license:asl2.0))) + +(define-public go-github-com-gogo-protobuf-1.3.0 + (package + (name "go-github-com-gogo-protobuf") + (version "1.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gogo/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0slfyrmbpdcppf0z3waar90bpszdhi2gv705ys1b0zx5x6ax8f1a")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/gogo/protobuf")) + (propagated-inputs + `(("go-github-com-kisielk-gotool-1.0.0" + ,go-github-com-kisielk-gotool-1.0.0) + ("go-github-com-kisielk-errcheck-1.2.0" + ,go-github-com-kisielk-errcheck-1.2.0))) + (home-page "https://github.com/gogo/protobuf") + (synopsis "Protocol Buffers for Go with Gadgets") + (description + "gogoprotobuf is a fork of @url{https://github.com/golang/protobuf,golang/protobuf} with extra code generation features.") + (license license:bsd-3))) + +(define-public go-github-com-containerd-typeurl-0.0.0-20190911142611-5eb25027c9fd + (package + (name "go-github-com-containerd-typeurl") + (version "0.0.0-20190911142611-5eb25027c9fd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/typeurl") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fyc2962b9sqgqycnlkxls6n0d701nszl84bayxrdv3r1491jn9v")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/typeurl")) + (propagated-inputs + `(("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) + ("go-github-com-gogo-protobuf-1.3.0" + ,go-github-com-gogo-protobuf-1.3.0))) + (home-page "https://github.com/containerd/typeurl") + (synopsis "typeurl") + (description + "This package provides a Go package for managing the registration, marshaling, and unmarshaling of encoded types.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-zfs-0.0.0-20200918131355-0a33824f23a2 + (package + (name "go-github-com-containerd-zfs") + (version "0.0.0-20200918131355-0a33824f23a2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/zfs") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "112bj6mxc3r2ncybblf3w1fgqa6w0070f6a8vlqcml1g00ljhsz6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/zfs")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) + ("go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449" + ,go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449) + ("go-go-etcd-io-bbolt-1.3.3" ,go-go-etcd-io-bbolt-1.3.3) + ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) + ("go-github-com-opencontainers-runc-1.0.0-rc9" + ,go-github-com-opencontainers-runc-1.0.0-rc9) + ("go-github-com-opencontainers-image-spec-1.0.1" + ,go-github-com-opencontainers-image-spec-1.0.1) + ("go-github-com-opencontainers-go-digest-1.0.0-rc1" + ,go-github-com-opencontainers-go-digest-1.0.0-rc1) + ("go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible" + ,go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible) + ("go-github-com-google-uuid-1.1.1" ,go-github-com-google-uuid-1.1.1) + ("go-github-com-google-go-cmp-0.3.1" + ,go-github-com-google-go-cmp-0.3.1) + ("go-github-com-gogo-protobuf-1.3.1" + ,go-github-com-gogo-protobuf-1.3.1) + ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" + ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) + ("go-github-com-containerd-typeurl-0.0.0-20190911142611-5eb25027c9fd" + ,go-github-com-containerd-typeurl-0.0.0-20190911142611-5eb25027c9fd) + ("go-github-com-containerd-ttrpc-0.0.0-20191028202541-4f1b8fe65a5c" + ,go-github-com-containerd-ttrpc-0.0.0-20191028202541-4f1b8fe65a5c) + ("go-github-com-containerd-continuity-0.0.0-20191127005431-f65d91d395eb" + ,go-github-com-containerd-continuity-0.0.0-20191127005431-f65d91d395eb) + ("go-github-com-containerd-containerd-1.3.1-0.20191213020239-082f7e3aed57" + ,go-github-com-containerd-containerd-1.3.1-0.20191213020239-082f7e3aed57) + ("go-github-com-microsoft-hcsshim-0.8.7" + ,go-github-com-microsoft-hcsshim-0.8.7))) + (home-page "https://github.com/containerd/zfs") + (synopsis "ZFS snapshotter plugin") + (description "ZFS snapshotter plugin for containerd.") + (license license:asl2.0))) + +(define-public go-golang-org-x-sys-0.0.0-20201202213521-69691e467435 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20201202213521-69691e467435") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0lndxdnazszfj1jl87cpz31vd12jrjm1wj0zw1c2p8yg64cfkhna")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-containerd-containerd-1.5.0-beta.1 + (package + (name "go-github-com-containerd-containerd") + (version "1.5.0-beta.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/containerd") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1jki3jwmbfk4mp2qhz4ppd6vgnicalszzv5ffibasa4qj5v19wcd")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/containerd")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) + ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) + ("go-github-com-golang-protobuf-1.3.5" + ,go-github-com-golang-protobuf-1.3.5) + ("go-github-com-gogo-googleapis-1.3.2" + ,go-github-com-gogo-googleapis-1.3.2) + ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" + ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) + ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) + ("go-k8s-io-cri-api-0.20.1" ,go-k8s-io-cri-api-0.20.1) + ("go-k8s-io-component-base-0.20.1" ,go-k8s-io-component-base-0.20.1) + ("go-k8s-io-client-go-0.20.1" ,go-k8s-io-client-go-0.20.1) + ("go-k8s-io-apiserver-0.20.1" ,go-k8s-io-apiserver-0.20.1) + ("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) + ("go-k8s-io-api-0.20.1" ,go-k8s-io-api-0.20.1) + ("go-gotest-tools-v3-3.0.2" ,go-gotest-tools-v3-3.0.2) + ("go-golang-org-x-sys-0.0.0-20201202213521-69691e467435" + ,go-golang-org-x-sys-0.0.0-20201202213521-69691e467435) + ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" + ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) + ("go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b" + ,go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b) + ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) + ("go-github-com-tchap-go-patricia-2.2.6+incompatible" + ,go-github-com-tchap-go-patricia-2.2.6+incompatible) + ("go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635" + ,go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-sirupsen-logrus-1.7.0" + ,go-github-com-sirupsen-logrus-1.7.0) + ("go-github-com-prometheus-client-golang-1.7.1" + ,go-github-com-prometheus-client-golang-1.7.1) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-selinux-1.8.0" + ,go-github-com-opencontainers-selinux-1.8.0) + ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" + ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) + ("go-github-com-opencontainers-runc-1.0.0-rc93" + ,go-github-com-opencontainers-runc-1.0.0-rc93) + ("go-github-com-opencontainers-image-spec-1.0.1" + ,go-github-com-opencontainers-image-spec-1.0.1) + ("go-github-com-opencontainers-go-digest-1.0.0" + ,go-github-com-opencontainers-go-digest-1.0.0) + ("go-github-com-moby-sys-symlink-0.1.0" + ,go-github-com-moby-sys-symlink-0.1.0) + ("go-github-com-moby-sys-mountinfo-0.4.0" + ,go-github-com-moby-sys-mountinfo-0.4.0) + ("go-github-com-klauspost-compress-1.11.3" + ,go-github-com-klauspost-compress-1.11.3) + ("go-github-com-imdario-mergo-0.3.10" + ,go-github-com-imdario-mergo-0.3.10) + ("go-github-com-hashicorp-go-multierror-1.0.0" + ,go-github-com-hashicorp-go-multierror-1.0.0) + ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" + ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) + ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) + ("go-github-com-google-go-cmp-0.5.2" + ,go-github-com-google-go-cmp-0.5.2) + ("go-github-com-gogo-protobuf-1.3.2" + ,go-github-com-gogo-protobuf-1.3.2) + ("go-github-com-fsnotify-fsnotify-1.4.9" + ,go-github-com-fsnotify-fsnotify-1.4.9) + ("go-github-com-emicklei-go-restful-2.9.5+incompatible" + ,go-github-com-emicklei-go-restful-2.9.5+incompatible) + ("go-github-com-docker-go-units-0.4.0" + ,go-github-com-docker-go-units-0.4.0) + ("go-github-com-docker-go-metrics-0.0.1" + ,go-github-com-docker-go-metrics-0.0.1) + ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" + ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1) + ("go-github-com-coreos-go-systemd-v22-22.1.0" + ,go-github-com-coreos-go-systemd-v22-22.1.0) + ("go-github-com-containernetworking-plugins-0.8.6" + ,go-github-com-containernetworking-plugins-0.8.6) + ("go-github-com-containerd-zfs-0.0.0-20200918131355-0a33824f23a2" + ,go-github-com-containerd-zfs-0.0.0-20200918131355-0a33824f23a2) + ("go-github-com-containerd-typeurl-1.0.1" + ,go-github-com-containerd-typeurl-1.0.1) + ("go-github-com-containerd-ttrpc-1.0.2" + ,go-github-com-containerd-ttrpc-1.0.2) + ("go-github-com-containerd-nri-0.0.0-20201007170849-eb1350a75164" + ,go-github-com-containerd-nri-0.0.0-20201007170849-eb1350a75164) + ("go-github-com-containerd-imgcrypt-1.0.1" + ,go-github-com-containerd-imgcrypt-1.0.1) + ("go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328" + ,go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328) + ("go-github-com-containerd-go-cni-1.0.1" + ,go-github-com-containerd-go-cni-1.0.1) + ("go-github-com-containerd-fifo-0.0.0-20201026212402-0724c46b320c" + ,go-github-com-containerd-fifo-0.0.0-20201026212402-0724c46b320c) + ("go-github-com-containerd-continuity-0.0.0-20201208142359-180525291bb7" + ,go-github-com-containerd-continuity-0.0.0-20201208142359-180525291bb7) + ("go-github-com-containerd-console-1.0.1" + ,go-github-com-containerd-console-1.0.1) + ("go-github-com-containerd-cgroups-0.0.0-20200824123100-0b889c03f102" + ,go-github-com-containerd-cgroups-0.0.0-20200824123100-0b889c03f102) + ("go-github-com-containerd-btrfs-0.0.0-20201111183144-404b9149801e" + ,go-github-com-containerd-btrfs-0.0.0-20201111183144-404b9149801e) + ("go-github-com-containerd-aufs-0.0.0-20200908144142-dab0cbea06f4" + ,go-github-com-containerd-aufs-0.0.0-20200908144142-dab0cbea06f4) + ("go-github-com-microsoft-hcsshim-test-0.0.0-20201218223536-d3e5debf77da" + ,go-github-com-microsoft-hcsshim-test-0.0.0-20201218223536-d3e5debf77da) + ("go-github-com-microsoft-hcsshim-0.8.14" + ,go-github-com-microsoft-hcsshim-0.8.14) + ("go-github-com-microsoft-go-winio-0.4.16" + ,go-github-com-microsoft-go-winio-0.4.16) + ("go-github-com-burntsushi-toml-0.3.1" + ,go-github-com-burntsushi-toml-0.3.1))) + (home-page "https://github.com/containerd/containerd") + (synopsis "Now Recruiting") + (description + "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") + (license license:asl2.0))) + +(define-public go-github-com-miekg-pkcs11-1.0.3 + (package + (name "go-github-com-miekg-pkcs11") + (version "1.0.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/miekg/pkcs11") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0rmmgssb6y28x54si5h63gwbdsjjxf5n9xvm3zqdfsf9l10gx2m6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/miekg/pkcs11")) + (home-page "https://github.com/miekg/pkcs11") + (synopsis "PKCS#11") + (description + "Package pkcs11 is a wrapper around the PKCS#11 cryptographic library. +") + (license license:bsd-3))) + +(define-public go-github-com-stefanberger-go-pkcs11uri-0.0.0-20201008174630-78d3cae3a980 + (package + (name "go-github-com-stefanberger-go-pkcs11uri") + (version "0.0.0-20201008174630-78d3cae3a980") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stefanberger/go-pkcs11uri") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "09bnd1fn2v5y5ngsxz751a0x9fsqn8idlfrwyymfv9l57wvmrd2l")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stefanberger/go-pkcs11uri")) + (home-page "https://github.com/stefanberger/go-pkcs11uri") + (synopsis "go-pkcs11uri") + (description + "Welcome to the go-pkcs11uri library. The implementation follows @url{https://tools.ietf.org/html/rfc7512,RFC 7512} and this @url{https://www.rfc-editor.org/errata/rfc7512,errata}.") + (license license:asl2.0))) + +(define-public go-go-mozilla-org-pkcs7-0.0.0-20200128120323-432b2356ecb1 + (package + (name "go-go-mozilla-org-pkcs7") + (version "0.0.0-20200128120323-432b2356ecb1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mozilla-services/pkcs7") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0yncaq6i1x6apykvng92yyqkj5kmzl4c43lmcalr5lq7ks009p40")))) + (build-system go-build-system) + (arguments '(#:import-path "go.mozilla.org/pkcs7")) + (home-page "https://go.mozilla.org/pkcs7") + (synopsis "pkcs7") + (description + "Package pkcs7 implements parsing and generation of some PKCS#7 structures. +") + (license license:expat))) + +(define-public go-golang-org-x-crypto-0.0.0-20200728195943-123391ffb6de + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20200728195943-123391ffb6de") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1a3wnn8yjvckh3smyqzwd2k2gvl3i8dk68pvcap0wha8hmga1vf3")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" + ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) + ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" + ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20200817155316-9781c653f443 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200817155316-9781c653f443") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fkwiydhhmn6cxmd9jb4rj2wp06yxmqc3903b7zawsxm9jpslicm")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-gopkg-in-square-go-jose-v2-2.5.1 + (package + (name "go-gopkg-in-square-go-jose-v2") + (version "2.5.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/square/go-jose.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0z0hbmb5yyvnjkyiyn259wkbqbjxs2pzx87jz472shn2bgggxa4n")))) + (build-system go-build-system) + (arguments + '(#:import-path + "gopkg.in/square/go-jose.v2" + #:unpack-path + "gopkg.in/square/go-jose.v2")) + (home-page "https://gopkg.in/square/go-jose.v2") + (synopsis "Go JOSE") + (description + "Package jose aims to provide an implementation of the Javascript Object Signing +and Encryption set of standards. It implements encryption and signing based on +the JSON Web Encryption and JSON Web Signature standards, with optional JSON +Web Token support available in a sub-package. The library supports both the +compact and full serialization formats, and has optional support for multiple +recipients. +") + (license license:asl2.0))) + +(define-public go-github-com-containers-ocicrypt-1.1.0 + (package + (name "go-github-com-containers-ocicrypt") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containers/ocicrypt") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "13avih8ml00idn6qy96ash3jxkimqxpkz4cy4kgryc8jx303nv6i")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containers/ocicrypt")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.3.0" ,go-gopkg-in-yaml-v2-2.3.0) + ("go-gopkg-in-square-go-jose-v2-2.5.1" + ,go-gopkg-in-square-go-jose-v2-2.5.1) + ("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) + ("go-golang-org-x-sys-0.0.0-20200817155316-9781c653f443" + ,go-golang-org-x-sys-0.0.0-20200817155316-9781c653f443) + ("go-golang-org-x-crypto-0.0.0-20200728195943-123391ffb6de" + ,go-golang-org-x-crypto-0.0.0-20200728195943-123391ffb6de) + ("go-go-mozilla-org-pkcs7-0.0.0-20200128120323-432b2356ecb1" + ,go-go-mozilla-org-pkcs7-0.0.0-20200128120323-432b2356ecb1) + ("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0) + ("go-github-com-stefanberger-go-pkcs11uri-0.0.0-20201008174630-78d3cae3a980" + ,go-github-com-stefanberger-go-pkcs11uri-0.0.0-20201008174630-78d3cae3a980) + ("go-github-com-sirupsen-logrus-1.7.0" + ,go-github-com-sirupsen-logrus-1.7.0) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-image-spec-1.0.1" + ,go-github-com-opencontainers-image-spec-1.0.1) + ("go-github-com-opencontainers-go-digest-1.0.0" + ,go-github-com-opencontainers-go-digest-1.0.0) + ("go-github-com-miekg-pkcs11-1.0.3" ,go-github-com-miekg-pkcs11-1.0.3) + ("go-github-com-google-go-cmp-0.5.2" + ,go-github-com-google-go-cmp-0.5.2) + ("go-github-com-golang-protobuf-1.4.3" + ,go-github-com-golang-protobuf-1.4.3))) + (home-page "https://github.com/containers/ocicrypt") + (synopsis "OCIcrypt Library") + (description + "The @code{ocicrypt} library is the OCI image spec implementation of container image encryption. More details of the spec can be seen in the @url{https://github.com/opencontainers/image-spec/pull/775,OCI repository}. The purpose of this library is to encode spec structures and consts in code, as well as provide a consistent implementation of image encryption across container runtimes and build tools.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-imgcrypt-1.0.4-0.20210301171431-0ae5c75f59ba + (package + (name "go-github-com-containerd-imgcrypt") + (version "1.0.4-0.20210301171431-0ae5c75f59ba") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/imgcrypt") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0vkwgcxh3mpsn6wp231c9ad3sx6gmnc9948nn3vvbw8bsmjd4i77")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/imgcrypt")) + (propagated-inputs + `(("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) + ("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) + ("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) + ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" + ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) + ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) + ("go-github-com-sirupsen-logrus-1.7.0" + ,go-github-com-sirupsen-logrus-1.7.0) + ("go-github-com-prometheus-procfs-0.6.0" + ,go-github-com-prometheus-procfs-0.6.0) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" + ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) + ("go-github-com-opencontainers-image-spec-1.0.1" + ,go-github-com-opencontainers-image-spec-1.0.1) + ("go-github-com-opencontainers-go-digest-1.0.0" + ,go-github-com-opencontainers-go-digest-1.0.0) + ("go-github-com-imdario-mergo-0.3.11" + ,go-github-com-imdario-mergo-0.3.11) + ("go-github-com-gogo-protobuf-1.3.2" + ,go-github-com-gogo-protobuf-1.3.2) + ("go-github-com-containers-ocicrypt-1.1.0" + ,go-github-com-containers-ocicrypt-1.1.0) + ("go-github-com-containerd-typeurl-1.0.1" + ,go-github-com-containerd-typeurl-1.0.1) + ("go-github-com-containerd-containerd-1.5.0-beta.1" + ,go-github-com-containerd-containerd-1.5.0-beta.1) + ("go-github-com-containerd-console-1.0.1" + ,go-github-com-containerd-console-1.0.1) + ("go-github-com-microsoft-hcsshim-test-0.0.0-20210227013316-43a75bb4edd3" + ,go-github-com-microsoft-hcsshim-test-0.0.0-20210227013316-43a75bb4edd3) + ("go-github-com-microsoft-hcsshim-0.8.14" + ,go-github-com-microsoft-hcsshim-0.8.14) + ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" + ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3))) + (home-page "https://github.com/containerd/imgcrypt") + (synopsis "imgcrypt image encryption library and command line tool") + (description + "Project @code{imgcrypt} is a non-core subproject of containerd.") + (license license:asl2.0))) + +(define-public go-github-com-microsoft-go-winio-0.4.15-0.20190919025122-fc70bd9a86b5 + (package + (name "go-github-com-microsoft-go-winio") + (version "0.4.15-0.20190919025122-fc70bd9a86b5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/microsoft/go-winio") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "015ra2h3qfaq436d0g7akahgz7bikyvljq48m0l2d2f4k3wki86p")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/Microsoft/go-winio")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3" + ,go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3) + ("go-github-com-sirupsen-logrus-1.4.1" + ,go-github-com-sirupsen-logrus-1.4.1) + ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) + (home-page "https://github.com/Microsoft/go-winio") + (synopsis "go-winio") + (description + "This repository contains utilities for efficiently performing Win32 IO operations in +Go. Currently, this is focused on accessing named pipes and other file handles, and +for using named pipes as a net transport.") + (license license:expat))) + +(define-public go-github-com-godbus-dbus-0.0.0-20190422162347-ade71ed3457e + (package + (name "go-github-com-godbus-dbus") + (version "0.0.0-20190422162347-ade71ed3457e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/godbus/dbus") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12ga9izv32j1zjij1p9f2sdnxjy3v80lw964518dvzirxpvwfszn")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/godbus/dbus")) + (home-page "https://github.com/godbus/dbus") + (synopsis "dbus") + (description + "Package dbus implements bindings to the D-Bus message bus system. +") + (license license:bsd-2))) + +(define-public go-golang-org-x-sys-0.0.0-20190514135907-3a4b5fb9f71f + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190514135907-3a4b5fb9f71f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "122ry2lw2525mqlnw2zc006y1flvj3yhj8rnpxqdwxp71jc3kqii")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-containerd-cgroups-0.0.0-20190919134610-bf292b21730f + (package + (name "go-github-com-containerd-cgroups") + (version "0.0.0-20190919134610-bf292b21730f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/cgroups") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1vvk1vrwm9spilyl4r1r8626sg0zvnx3s3zmzigzinpkzzvbdqpw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/cgroups")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190514135907-3a4b5fb9f71f" + ,go-golang-org-x-sys-0.0.0-20190514135907-3a4b5fb9f71f) + ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) + ("go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700" + ,go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700) + ("go-github-com-gogo-protobuf-1.2.1" + ,go-github-com-gogo-protobuf-1.2.1) + ("go-github-com-godbus-dbus-0.0.0-20190422162347-ade71ed3457e" + ,go-github-com-godbus-dbus-0.0.0-20190422162347-ade71ed3457e) + ("go-github-com-docker-go-units-0.4.0" + ,go-github-com-docker-go-units-0.4.0) + ("go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e" + ,go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e))) + (home-page "https://github.com/containerd/cgroups") + (synopsis "cgroups") + (description + "Go package for creating, managing, inspecting, and destroying cgroups. +The resources format for settings on the cgroup uses the OCI runtime-spec found +@url{https://github.com/opencontainers/runtime-spec,here}.") + (license license:asl2.0))) + +(define-public go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700 + (package + (name "go-github-com-opencontainers-runtime-spec") + (version "0.1.2-0.20190507144316-5b71a03e2700") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/runtime-spec") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1dx0bp4f885vx6l4b5b7h19j6sm0jn9s2qxarfd917f4wp8l0cpl")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) + (home-page "https://github.com/opencontainers/runtime-spec") + (synopsis "Open Container Initiative Runtime Specification") + (description + "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") + (license license:asl2.0))) + +(define-public go-github-com-urfave-cli-0.0.0-20171014202726-7bc6a0acffa5 + (package + (name "go-github-com-urfave-cli") + (version "0.0.0-20171014202726-7bc6a0acffa5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/urfave/cli") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "13li8phkaznh81qxs9vg0r8294ph014rwca4cqf7gxhvyjlaigwp")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/urfave/cli")) + (home-page "https://github.com/urfave/cli") + (synopsis "cli") + (description + "Package cli provides a minimal framework for creating and organizing command line +Go applications. cli is designed to be easy to understand and write, the most simple +cli application can be written as follows: +") + (license license:expat))) + +(define-public go-github-com-microsoft-hcsshim-0.8.9 + (package + (name "go-github-com-microsoft-hcsshim") + (version "0.8.9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/microsoft/hcsshim") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1imyqhh51311fdmp81ffasf7z52rbqhblbhx6477d9w20p74866b")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/Microsoft/hcsshim")) + (propagated-inputs + `(("go-gotest-tools-2.2.0+incompatible" + ,go-gotest-tools-2.2.0+incompatible) + ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) + ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" + ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) + ("go-google-golang-org-grpc-1.23.1" ,go-google-golang-org-grpc-1.23.1) + ("go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873" + ,go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873) + ("go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3" + ,go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3) + ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" + ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) + ("go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9" + ,go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9) + ("go-go-opencensus-io-0.22.0" ,go-go-opencensus-io-0.22.0) + ("go-github-com-urfave-cli-0.0.0-20171014202726-7bc6a0acffa5" + ,go-github-com-urfave-cli-0.0.0-20171014202726-7bc6a0acffa5) + ("go-github-com-stretchr-testify-1.4.0" + ,go-github-com-stretchr-testify-1.4.0) + ("go-github-com-sirupsen-logrus-1.4.2" + ,go-github-com-sirupsen-logrus-1.4.2) + ("go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7" + ,go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7) + ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) + ("go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700" + ,go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700) + ("go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f" + ,go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f) + ("go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2" + ,go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2) + ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2) + ("go-github-com-gogo-protobuf-1.3.1" + ,go-github-com-gogo-protobuf-1.3.1) + ("go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd" + ,go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd) + ("go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de" + ,go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de) + ("go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3" + ,go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3) + ("go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448" + ,go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448) + ("go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc" + ,go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc) + ("go-github-com-containerd-containerd-1.3.2" + ,go-github-com-containerd-containerd-1.3.2) + ("go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1" + ,go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1) + ("go-github-com-containerd-cgroups-0.0.0-20190919134610-bf292b21730f" + ,go-github-com-containerd-cgroups-0.0.0-20190919134610-bf292b21730f) + ("go-github-com-microsoft-go-winio-0.4.15-0.20190919025122-fc70bd9a86b5" + ,go-github-com-microsoft-go-winio-0.4.15-0.20190919025122-fc70bd9a86b5))) + (home-page "https://github.com/Microsoft/hcsshim") + (synopsis "hcsshim") + (description + "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") + (license license:expat))) + +(define-public go-github-com-cilium-ebpf-0.0.0-20200702112145-1c8d4c9ef775 + (package + (name "go-github-com-cilium-ebpf") + (version "0.0.0-20200702112145-1c8d4c9ef775") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cilium/ebpf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1la90b88a1li5hmlqxfx9lgxlyzqb2pd4c2dxmz4s5gg2gz8a5x5")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/cilium/ebpf")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9" + ,go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9))) + (home-page "https://github.com/cilium/ebpf") + (synopsis "eBPF") + (description "Package ebpf is a toolkit for working with eBPF programs. +") + (license license:expat))) + +(define-public go-github-com-containerd-cgroups-0.0.0-20200710171044-318312a37340 + (package + (name "go-github-com-containerd-cgroups") + (version "0.0.0-20200710171044-318312a37340") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/cgroups") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1kizbm55pmlnly2dggymp84a0d9pn4fh7jf31h6wqm385zrs14zp")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/cgroups")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9" + ,go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9) + ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) + ("go-github-com-stretchr-testify-1.2.2" + ,go-github-com-stretchr-testify-1.2.2) + ("go-github-com-sirupsen-logrus-1.6.0" + ,go-github-com-sirupsen-logrus-1.6.0) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-runtime-spec-1.0.2" + ,go-github-com-opencontainers-runtime-spec-1.0.2) + ("go-github-com-gogo-protobuf-1.3.1" + ,go-github-com-gogo-protobuf-1.3.1) + ("go-github-com-godbus-dbus-v5-5.0.3" + ,go-github-com-godbus-dbus-v5-5.0.3) + ("go-github-com-docker-go-units-0.4.0" + ,go-github-com-docker-go-units-0.4.0) + ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" + ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) + ("go-github-com-coreos-go-systemd-v22-22.0.0" + ,go-github-com-coreos-go-systemd-v22-22.0.0) + ("go-github-com-cilium-ebpf-0.0.0-20200702112145-1c8d4c9ef775" + ,go-github-com-cilium-ebpf-0.0.0-20200702112145-1c8d4c9ef775))) + (home-page "https://github.com/containerd/cgroups") + (synopsis "cgroups") + (description + "Go package for creating, managing, inspecting, and destroying cgroups. +The resources format for settings on the cgroup uses the OCI runtime-spec found +@url{https://github.com/opencontainers/runtime-spec,here}.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-containerd-1.4.0-beta.2.0.20200729163537-40b22ef07410 + (package + (name "go-github-com-containerd-containerd") + (version "1.4.0-beta.2.0.20200729163537-40b22ef07410") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/containerd") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ky7ny5b0rvkr6a58pdlcm35kc9wls6jvl7cdk8py4a16y1f2lx9")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/containerd")) + (home-page "https://github.com/containerd/containerd") + (synopsis "Now Recruiting") + (description + "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") + (license license:asl2.0))) + +(define-public go-github-com-onsi-ginkgo-1.10.1 + (package + (name "go-github-com-onsi-ginkgo") + (version "1.10.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/onsi/ginkgo") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "033a42h1wzmji57p86igg9whvsbp6nvfdsypskw738ys903n3z4d")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/onsi/ginkgo")) + (home-page "https://github.com/onsi/ginkgo") + (synopsis "Ginkgo 2.0 Release Candidate is available!") + (description "Ginkgo is a BDD-style testing framework for Golang +") + (license license:expat))) + +(define-public go-github-com-opencontainers-go-digest-1.0.0-rc1 + (package + (name "go-github-com-opencontainers-go-digest") + (version "1.0.0-rc1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/go-digest") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "01gc7fpn8ax429024p2fcx3yb18axwz5bjf2hqxlii1jbsgw4bh9")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/go-digest")) + (home-page "https://github.com/opencontainers/go-digest") + (synopsis "go-digest") + (description + "Package digest provides a generalized type to opaquely represent message +digests and their operations within the registry. The Digest type is +designed to serve as a flexible identifier in a content-addressable system. +More importantly, it provides tools and wrappers to work with +hash.Hash-based digests with little effort. +") + (license (list license:asl2.0 license:cc-by-sa4.0)))) + +(define-public go-github-com-pkg-errors-0.8.1-0.20171018195549-f15c970de5b7 + (package + (name "go-github-com-pkg-errors") + (version "0.8.1-0.20171018195549-f15c970de5b7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pkg/errors") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18jihrffhfsjvz3rkanlhq9xjcdxkqilmflnijc64s7y7lijlbfm")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pkg/errors")) + (home-page "https://github.com/pkg/errors") + (synopsis "errors") + (description "Package errors provides simple error handling primitives. +") + (license license:bsd-2))) + +(define-public go-github-com-sirupsen-logrus-1.0.4-0.20170822132746-89742aefa4b2 + (package + (name "go-github-com-sirupsen-logrus") + (version "1.0.4-0.20170822132746-89742aefa4b2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sirupsen/logrus") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hk7fabx59msg2y0iik6xvfp80s73ybrwlcshbm9ds91iqbkcxi6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/sirupsen/logrus")) + (home-page "https://github.com/sirupsen/logrus") + (synopsis "Logrus") + (description + "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. +") + (license license:expat))) + +(define-public go-golang-org-x-crypto-0.0.0-20171113213409-9f005a07e0d3 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20171113213409-9f005a07e0d3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1mhmr6ljzl3iafsz4qy8vval7rmr828wh59dlqqqjqx6sqmcs1dv")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-github-com-containerd-continuity-0.0.0-20200710164510-efbc4488d8fe + (package + (name "go-github-com-containerd-continuity") + (version "0.0.0-20200710164510-efbc4488d8fe") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/continuity") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0d638nj7z7y8z19zdwbysamqh5m3kiwvnqny7av6bxax9gg6c3h8")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/continuity")) + (propagated-inputs + `(("go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2" + ,go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2) + ("go-gopkg-in-airbrake-gobrake-v2-2.0.9" + ,go-gopkg-in-airbrake-gobrake-v2-2.0.9) + ("go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e" + ,go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e) + ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" + ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) + ("go-golang-org-x-crypto-0.0.0-20171113213409-9f005a07e0d3" + ,go-golang-org-x-crypto-0.0.0-20171113213409-9f005a07e0d3) + ("go-github-com-stretchr-testify-1.4.0" + ,go-github-com-stretchr-testify-1.4.0) + ("go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95" + ,go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95) + ("go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee" + ,go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee) + ("go-github-com-sirupsen-logrus-1.0.4-0.20170822132746-89742aefa4b2" + ,go-github-com-sirupsen-logrus-1.0.4-0.20170822132746-89742aefa4b2) + ("go-github-com-pkg-errors-0.8.1-0.20171018195549-f15c970de5b7" + ,go-github-com-pkg-errors-0.8.1-0.20171018195549-f15c970de5b7) + ("go-github-com-opencontainers-go-digest-1.0.0-rc1" + ,go-github-com-opencontainers-go-digest-1.0.0-rc1) + ("go-github-com-onsi-gomega-1.7.0" ,go-github-com-onsi-gomega-1.7.0) + ("go-github-com-onsi-ginkgo-1.10.1" ,go-github-com-onsi-ginkgo-1.10.1) + ("go-github-com-inconshreveable-mousetrap-1.0.0" + ,go-github-com-inconshreveable-mousetrap-1.0.0) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0) + ("go-github-com-dustin-go-humanize-0.0.0-20171111073723-bb3d318650d4" + ,go-github-com-dustin-go-humanize-0.0.0-20171111073723-bb3d318650d4) + ("go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898" + ,go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898))) + (home-page "https://github.com/containerd/continuity") + (synopsis "continuity") + (description + "This package provides a transport-agnostic, filesystem metadata manifest system") + (license license:asl2.0))) + +(define-public go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20191210023423-ac6580df4449") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "14gvx65w5lddi20s4wypbbvbg9ni3m8777jhp9nqxhixc61k3dyi")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-containerd-fifo-0.0.0-20200410184934-f15a3290365b + (package + (name "go-github-com-containerd-fifo") + (version "0.0.0-20200410184934-f15a3290365b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/fifo") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1i3pylxr2a4b9gaifjrhfa21n147vvq2z9iqwzz9id532xv9mr48")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/fifo")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449" + ,go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449) + ("go-github-com-stretchr-testify-1.4.0" + ,go-github-com-stretchr-testify-1.4.0) + ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) + (home-page "https://github.com/containerd/fifo") + (synopsis "fifo") + (description "Go package for handling fifos in a sane way.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-ttrpc-1.0.1 + (package + (name "go-github-com-containerd-ttrpc") + (version "1.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/ttrpc") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "02ilz14f1k9zip7caqfjwvfg2nwa7bs6880pi6fxbri1wy6ar45q")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/ttrpc")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.26.0" ,go-google-golang-org-grpc-1.26.0) + ("go-google-golang-org-genproto-0.0.0-20200117163144-32f20d992d24" + ,go-google-golang-org-genproto-0.0.0-20200117163144-32f20d992d24) + ("go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479" + ,go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479) + ("go-github-com-sirupsen-logrus-1.4.2" + ,go-github-com-sirupsen-logrus-1.4.2) + ("go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1" + ,go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.2" + ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.2) + ("go-github-com-gogo-protobuf-1.3.1" + ,go-github-com-gogo-protobuf-1.3.1))) + (home-page "https://github.com/containerd/ttrpc") + (synopsis "ttrpc") + (description "GRPC for low-memory environments.") + (license license:asl2.0))) + +(define-public go-github-com-gogo-googleapis-1.4.0 + (package + (name "go-github-com-gogo-googleapis") + (version "1.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gogo/googleapis") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1kka9qmra1klfkjza0s5papqvsi65f2d349dl8k1lvfq487iv9r4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/gogo/googleapis")) + (propagated-inputs + `(("go-github-com-gogo-protobuf-1.3.1" + ,go-github-com-gogo-protobuf-1.3.1))) + (home-page "https://github.com/gogo/googleapis") + (synopsis "Google APIs generated by gogoprotobuf") + (description + "The @url{https://github.com/gogo/grpc-example,grpc-example} includes an example usage of this repository.") + (license license:asl2.0))) + +(define-public go-github-com-imdario-mergo-0.3.10 + (package + (name "go-github-com-imdario-mergo") + (version "0.3.10") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/imdario/mergo") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "09h765p8yby9r8s0a3hv5kl8n2i382mda76wmvk48w1cc1w9s92p")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/imdario/mergo")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.3.0" ,go-gopkg-in-yaml-v2-2.3.0))) + (home-page "https://github.com/imdario/mergo") + (synopsis "Mergo") + (description + "This package provides a helper to merge structs and maps in Golang. Useful for configuration default values, avoiding messy if-statements. +") + (license license:bsd-3))) + +(define-public go-github-com-opencontainers-runc-0.1.1 + (package + (name "go-github-com-opencontainers-runc") + (version "0.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/runc") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "09fm7f1k4lvx8v3crqb0cli1x2brlz8ka7f7qa8d2sb6ln58h7w7")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/runc")) + (home-page "https://github.com/opencontainers/runc") + (synopsis "runc") + (description + "@code{runc} is a CLI tool for spawning and running containers according to the OCI specification.") + (license license:asl2.0))) + +(define-public go-github-com-willf-bitset-1.1.11-0.20200630133818-d5bec3311243 + (package + (name "go-github-com-willf-bitset") + (version "1.1.11-0.20200630133818-d5bec3311243") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/bits-and-blooms/bitset") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "05nyd0vhp2h9hbqlv2s9l2py6mr8hpz2zyfj09an1q7wd8vph4ja")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/willf/bitset")) + (home-page "https://github.com/willf/bitset") + (synopsis "bitset") + (description + "Package bitset implements bitsets, a mapping +between non-negative integers and boolean values. It should be more +efficient than map[uint] bool. +") + (license license:bsd-3))) + +(define-public go-github-com-opencontainers-selinux-1.6.0 + (package + (name "go-github-com-opencontainers-selinux") + (version "1.6.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/selinux") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ja41zfgrkhk5khixjnxpi1b85xfcxlkhq2q9b7ma6xjfdhg8bq2")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/selinux")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777" + ,go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777) + ("go-github-com-willf-bitset-1.1.11-0.20200630133818-d5bec3311243" + ,go-github-com-willf-bitset-1.1.11-0.20200630133818-d5bec3311243) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) + (home-page "https://github.com/opencontainers/selinux") + (synopsis "selinux") + (description "Common SELinux package used across the container ecosystem.") + (license license:asl2.0))) + +(define-public go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2 + (package + (name "go-github-com-syndtr-gocapability") + (version "0.0.0-20180916011248-d98352740cb2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/syndtr/gocapability") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "065y16562ynixxzj7iys4f4spb7knilbj3h833qlhds381j8hn93")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/syndtr/gocapability")) + (home-page "https://github.com/syndtr/gocapability") + (synopsis #f) + (description #f) + (license license:bsd-2))) + +(define-public go-github-com-containerd-nri-0.0.0-20201007170849-eb1350a75164 + (package + (name "go-github-com-containerd-nri") + (version "0.0.0-20201007170849-eb1350a75164") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/nri") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1yhrxl36fswgxv7ny3p9xi99jsbwyk920gmzkjyfyk6nqs0hqbkg")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/nri")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.30.0" ,go-google-golang-org-grpc-1.30.0) + ("go-golang-org-x-sys-0.0.0-20200728102440-3e129f6d46b1" + ,go-golang-org-x-sys-0.0.0-20200728102440-3e129f6d46b1) + ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" + ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) + ("go-golang-org-x-net-0.0.0-20200707034311-ab3426394381" + ,go-golang-org-x-net-0.0.0-20200707034311-ab3426394381) + ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) + ("go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2" + ,go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-selinux-1.6.0" + ,go-github-com-opencontainers-selinux-1.6.0) + ("go-github-com-opencontainers-runc-0.1.1" + ,go-github-com-opencontainers-runc-0.1.1) + ("go-github-com-opencontainers-image-spec-1.0.1" + ,go-github-com-opencontainers-image-spec-1.0.1) + ("go-github-com-opencontainers-go-digest-1.0.0" + ,go-github-com-opencontainers-go-digest-1.0.0) + ("go-github-com-imdario-mergo-0.3.10" + ,go-github-com-imdario-mergo-0.3.10) + ("go-github-com-google-uuid-1.1.1" ,go-github-com-google-uuid-1.1.1) + ("go-github-com-google-go-cmp-0.5.1" + ,go-github-com-google-go-cmp-0.5.1) + ("go-github-com-gogo-googleapis-1.4.0" + ,go-github-com-gogo-googleapis-1.4.0) + ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" + ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) + ("go-github-com-docker-distribution-2.7.1+incompatible" + ,go-github-com-docker-distribution-2.7.1+incompatible) + ("go-github-com-containerd-typeurl-1.0.1" + ,go-github-com-containerd-typeurl-1.0.1) + ("go-github-com-containerd-ttrpc-1.0.1" + ,go-github-com-containerd-ttrpc-1.0.1) + ("go-github-com-containerd-fifo-0.0.0-20200410184934-f15a3290365b" + ,go-github-com-containerd-fifo-0.0.0-20200410184934-f15a3290365b) + ("go-github-com-containerd-continuity-0.0.0-20200710164510-efbc4488d8fe" + ,go-github-com-containerd-continuity-0.0.0-20200710164510-efbc4488d8fe) + ("go-github-com-containerd-containerd-1.4.0-beta.2.0.20200729163537-40b22ef07410" + ,go-github-com-containerd-containerd-1.4.0-beta.2.0.20200729163537-40b22ef07410) + ("go-github-com-containerd-cgroups-0.0.0-20200710171044-318312a37340" + ,go-github-com-containerd-cgroups-0.0.0-20200710171044-318312a37340) + ("go-github-com-microsoft-hcsshim-0.8.9" + ,go-github-com-microsoft-hcsshim-0.8.9))) + (home-page "https://github.com/containerd/nri") + (synopsis "nri - Node Resource Interface") + (description + "This project is a WIP for a new, CNI like, interface for managing resources on a node for Pods and Containers.") + (license license:asl2.0))) + +(define-public go-github-com-sirupsen-logrus-1.4.1 + (package + (name "go-github-com-sirupsen-logrus") + (version "1.4.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sirupsen/logrus") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1m7ny9jkb98cxqhsp13xa5hnqh1s9f25x04q6arsala4zswsw33c")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/sirupsen/logrus")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33" + ,go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33) + ("go-github-com-stretchr-testify-1.2.2" + ,go-github-com-stretchr-testify-1.2.2) + ("go-github-com-stretchr-objx-0.1.1" + ,go-github-com-stretchr-objx-0.1.1) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.1" + ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.1) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/sirupsen/logrus") + (synopsis "Logrus") + (description + "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. +") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190916202348-b4ddaad3f8a3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "05pa68kqxhpjk71b4cbm8vyzh6527b3ig6war2jr1g4aj3b7f1ak")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-microsoft-go-winio-0.4.16-0.20201130162521-d1ffc52c7331 + (package + (name "go-github-com-microsoft-go-winio") + (version "0.4.16-0.20201130162521-d1ffc52c7331") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/microsoft/go-winio") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0snwbwdjs34x0my9ri77cvrbnahdiyjh2jlkzf12fy48p7fyk7pq")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/Microsoft/go-winio")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3" + ,go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3) + ("go-github-com-sirupsen-logrus-1.4.1" + ,go-github-com-sirupsen-logrus-1.4.1) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) + (home-page "https://github.com/Microsoft/go-winio") + (synopsis "go-winio") + (description + "This repository contains utilities for efficiently performing Win32 IO operations in +Go. Currently, this is focused on accessing named pipes and other file handles, and +for using named pipes as a net transport.") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20191022100944-742c48ecaeb7 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20191022100944-742c48ecaeb7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1saf59bplvvb753my15ijxcy4a1jwfg53cmkgb6wkln2x4fgnhkp")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-cilium-ebpf-0.0.0-20200110133405-4032b1d8aae3 + (package + (name "go-github-com-cilium-ebpf") + (version "0.0.0-20200110133405-4032b1d8aae3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cilium/ebpf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "107x63zl8dlw2izn5xw8pnflgq19srpa46bgvjs8q4d61i02q1fr")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/cilium/ebpf")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191022100944-742c48ecaeb7" + ,go-golang-org-x-sys-0.0.0-20191022100944-742c48ecaeb7) + ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) + (home-page "https://github.com/cilium/ebpf") + (synopsis "eBPF") + (description "Package ebpf is a toolkit for working with eBPF programs. +") + (license license:expat))) + +(define-public go-github-com-coreos-go-systemd-v22-22.0.0 + (package + (name "go-github-com-coreos-go-systemd-v22") + (version "22.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/coreos/go-systemd") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0p4sb2fxxm2j1xny2l4fkq4kwj74plvh600gih8nyniqzannhrdx")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/coreos/go-systemd/v22")) + (propagated-inputs + `(("go-github-com-godbus-dbus-v5-5.0.3" + ,go-github-com-godbus-dbus-v5-5.0.3))) + (home-page "https://github.com/coreos/go-systemd") + (synopsis "go-systemd") + (description "Go bindings to systemd. The project has several packages:") + (license license:asl2.0))) + +(define-public go-github-com-containerd-cgroups-0.0.0-20200531161412-0dbf7f05ba59 + (package + (name "go-github-com-containerd-cgroups") + (version "0.0.0-20200531161412-0dbf7f05ba59") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/cgroups") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "10abzkjf77s8pv4mpyvy2jbl8wckhk3j7ykgs01sclal21v8p251")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/cgroups")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479" + ,go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479) + ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) + ("go-github-com-stretchr-testify-1.2.2" + ,go-github-com-stretchr-testify-1.2.2) + ("go-github-com-sirupsen-logrus-1.4.2" + ,go-github-com-sirupsen-logrus-1.4.2) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-runtime-spec-1.0.2" + ,go-github-com-opencontainers-runtime-spec-1.0.2) + ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.2" + ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.2) + ("go-github-com-gogo-protobuf-1.3.1" + ,go-github-com-gogo-protobuf-1.3.1) + ("go-github-com-godbus-dbus-v5-5.0.3" + ,go-github-com-godbus-dbus-v5-5.0.3) + ("go-github-com-docker-go-units-0.4.0" + ,go-github-com-docker-go-units-0.4.0) + ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" + ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) + ("go-github-com-coreos-go-systemd-v22-22.0.0" + ,go-github-com-coreos-go-systemd-v22-22.0.0) + ("go-github-com-cilium-ebpf-0.0.0-20200110133405-4032b1d8aae3" + ,go-github-com-cilium-ebpf-0.0.0-20200110133405-4032b1d8aae3))) + (home-page "https://github.com/containerd/cgroups") + (synopsis "cgroups") + (description + "Go package for creating, managing, inspecting, and destroying cgroups. +The resources format for settings on the cgroup uses the OCI runtime-spec found +@url{https://github.com/opencontainers/runtime-spec,here}.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1 + (package + (name "go-github-com-containerd-console") + (version "0.0.0-20180822173158-c12b1e7919c1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/console") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ylrnmdhn9a2f8w8fsdgsvwnz5j0whhyhppjnhqc4lh8h9p9dpi9")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/console")) + (home-page "https://github.com/containerd/console") + (synopsis "console") + (description + "Golang package for dealing with consoles. Light on deps and a simple API.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-containerd-1.3.2 + (package + (name "go-github-com-containerd-containerd") + (version "1.3.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/containerd") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0qz6ss7a6f2r7gl7aar39pr5ry9l7nh7dn3kclr18nwdv01gmrvc")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/containerd")) + (home-page "https://github.com/containerd/containerd") + (synopsis "Now Recruiting") + (description + "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc + (package + (name "go-github-com-containerd-continuity") + (version "0.0.0-20190426062206-aaeac12a7ffc") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/continuity") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "05caqvxxb831xfvqnga692k98cy8xzkllqg1ibra0fb0ljnhbmca")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/continuity")) + (home-page "https://github.com/containerd/continuity") + (synopsis "continuity") + (description + "This package provides a transport-agnostic, filesystem metadata manifest system") + (license license:asl2.0))) + +(define-public go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448 + (package + (name "go-github-com-containerd-fifo") + (version "0.0.0-20190226154929-a9fb20d87448") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/fifo") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0c0sgfnafjnws4jgziczs6wxh0adjdrp6yyd88b7xy0hv13fsnqa")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/fifo")) + (home-page "https://github.com/containerd/fifo") + (synopsis "fifo") + (description "Go package for handling fifos in a sane way.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3 + (package + (name "go-github-com-containerd-go-runc") + (version "0.0.0-20180907222934-5a6d9f37cfa3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/go-runc") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "07qpxcjy64m238igpmj8g9z7qhf06k5xy1jcgpgvf5n912g4k3vd")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/go-runc")) + (home-page "https://github.com/containerd/go-runc") + (synopsis "go-runc") + (description + "This is a package for consuming the @url{https://github.com/opencontainers/runc,runc} binary in your Go applications. +It tries to expose all the settings and features of the runc CLI. If there is something missing then add it, its opensource!") + (license license:asl2.0))) + +(define-public go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de + (package + (name "go-github-com-containerd-ttrpc") + (version "0.0.0-20190828154514-0e0f228740de") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/ttrpc") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1kzclhmicw2xkiqsg6npx0xzs5jx36mqmyd0gj5dzv88i7p4b8dx")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/ttrpc")) + (home-page "https://github.com/containerd/ttrpc") + (synopsis "ttrpc") + (description "GRPC for low-memory environments.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd + (package + (name "go-github-com-containerd-typeurl") + (version "0.0.0-20180627222232-a93fcdb778cd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/typeurl") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0aqnf5rzc5pldln0czhxlr0fqaf5553ab7wzsq85p90lg1ryqnd6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/typeurl")) + (home-page "https://github.com/containerd/typeurl") + (synopsis "typeurl") + (description + "This package provides a Go package for managing the registration, marshaling, and unmarshaling of encoded types.") + (license license:asl2.0))) + +(define-public go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2 + (package + (name "go-github-com-opencontainers-go-digest") + (version "0.0.0-20180430190053-c9281466c8b2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/go-digest") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1djdazssy27xn91pjhx3dgb0f11bnlzzbwkh7f8zwnpz011anasi")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/go-digest")) + (home-page "https://github.com/opencontainers/go-digest") + (synopsis "go-digest") + (description + "Package digest provides a generalized type to opaquely represent message +digests and their operations within the registry. The Digest type is +designed to serve as a flexible identifier in a content-addressable system. +More importantly, it provides tools and wrappers to work with +hash.Hash-based digests with little effort. +") + (license (list license:asl2.0 license:cc-by-sa4.0)))) + +(define-public go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f + (package + (name "go-github-com-opencontainers-runc") + (version "0.0.0-20190115041553-12f6a991201f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/runc") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0lr4q440pliilq2njyj5glfpma89r9l1cl687niwkp2pzb32dm45")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/runc")) + (home-page "https://github.com/opencontainers/runc") + (synopsis "runc") + (description + "@code{runc} is a CLI tool for spawning and running containers according to the OCI specification.") + (license license:asl2.0))) + +(define-public go-github-com-opencontainers-runtime-spec-1.0.2 + (package + (name "go-github-com-opencontainers-runtime-spec") + (version "1.0.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/runtime-spec") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19w981vcmd5lp2hy0630x6ayb8zz17n2vxqm2py5mg945xflcizg")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) + (home-page "https://github.com/opencontainers/runtime-spec") + (synopsis "Open Container Initiative Runtime Specification") + (description + "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") + (license license:asl2.0))) + +(define-public go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7 + (package + (name "go-github-com-prometheus-procfs") + (version "0.0.0-20180125133057-cb4147076ac7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/procfs") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0zhlrik0f9q1lj6cisgnxgbz4darbcix52hm5abi24l2ahchf5ca")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/procfs")) + (home-page "https://github.com/prometheus/procfs") + (synopsis "procfs") + (description + "Package procfs provides functions to retrieve system, kernel and process +metrics from the pseudo-filesystem proc. +") + (license license:asl2.0))) + +(define-public go-github-com-urfave-cli-1.22.2 + (package + (name "go-github-com-urfave-cli") + (version "1.22.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/urfave/cli") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "10mcnvi5qmn00vpyk6si8gjka7p654wr9hac4zc9w5h3ickhvbdc")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/urfave/cli")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) + ("go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d" + ,go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d) + ("go-github-com-burntsushi-toml-0.3.1" + ,go-github-com-burntsushi-toml-0.3.1))) + (home-page "https://github.com/urfave/cli") + (synopsis "cli") + (description + "Package cli provides a minimal framework for creating and organizing command line +Go applications. cli is designed to be easy to understand and write, the most simple +cli application can be written as follows: +") + (license license:expat))) + +(define-public go-golang-org-x-net-0.0.0-20190501004415-9ce7a6920f09 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190501004415-9ce7a6920f09") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1kbs85jsqbv4v89ii2zam4b8dhmllhsrf46njmi09x0w6s0b9cbk")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-go-opencensus-io-0.22.0 + (package + (name "go-go-opencensus-io") + (version "0.22.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/census-instrumentation/opencensus-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "05jr8gkr2w34i5wwki4zhl5ch0qrgi7cdgag5iy5gpxplhbrvbg9")))) + (build-system go-build-system) + (arguments '(#:import-path "go.opencensus.io")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.20.1" ,go-google-golang-org-grpc-1.20.1) + ("go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb" + ,go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb) + ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) + ("go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd" + ,go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd) + ("go-golang-org-x-net-0.0.0-20190501004415-9ce7a6920f09" + ,go-golang-org-x-net-0.0.0-20190501004415-9ce7a6920f09) + ("go-github-com-hashicorp-golang-lru-0.5.1" + ,go-github-com-hashicorp-golang-lru-0.5.1) + ("go-github-com-google-go-cmp-0.3.0" + ,go-github-com-google-go-cmp-0.3.0) + ("go-github-com-golang-protobuf-1.3.1" + ,go-github-com-golang-protobuf-1.3.1))) + (home-page "https://go.opencensus.io") + (synopsis "OpenCensus Libraries for Go") + (description "Package opencensus contains Go support for OpenCensus. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20191004110552-13f9640d40b9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ba2767lvklnmfvb9jkwvd4m7z6326gaiz3rgylh795g88hy34g1")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873 + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20190502173448-54afdca5d873") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1vm1vggl874jd4wi6qyl7aggc6s6kdsazk4vj0cs2dfcw2xnw8ag")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" + ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) + ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) + ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" + ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) + ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" + ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) + ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" + ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd) + ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" + ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) + ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" + ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-google-golang-org-grpc-1.23.1 + (package + (name "go-google-golang-org-grpc") + (version "1.23.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1d8gjjhrqbiq8pb56lb4x10hb752k7k06wspjvh7v0vpzmf25981")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" + ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) + ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" + ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) + ("go-google-golang-org-appengine-1.1.0" + ,go-google-golang-org-appengine-1.1.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-google-go-cmp-0.2.0" + ,go-github-com-google-go-cmp-0.2.0) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0) + ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-client9-misspell-0.3.4" + ,go-github-com-client9-misspell-0.3.4) + ("go-github-com-burntsushi-toml-0.3.1" + ,go-github-com-burntsushi-toml-0.3.1) + ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-github-com-microsoft-hcsshim-0.8.14 + (package + (name "go-github-com-microsoft-hcsshim") + (version "0.8.14") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/microsoft/hcsshim") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0k57knv8zrf32hp7rpv1km9j772w6752pfvdbpd3l711ism48c84")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/Microsoft/hcsshim")) + (propagated-inputs + `(("go-gotest-tools-2.2.0+incompatible" + ,go-gotest-tools-2.2.0+incompatible) + ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) + ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" + ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) + ("go-google-golang-org-grpc-1.23.1" ,go-google-golang-org-grpc-1.23.1) + ("go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873" + ,go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873) + ("go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3" + ,go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3) + ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" + ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) + ("go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9" + ,go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9) + ("go-go-opencensus-io-0.22.0" ,go-go-opencensus-io-0.22.0) + ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) + ("go-github-com-stretchr-testify-1.4.0" + ,go-github-com-stretchr-testify-1.4.0) + ("go-github-com-sirupsen-logrus-1.4.2" + ,go-github-com-sirupsen-logrus-1.4.2) + ("go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7" + ,go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-runtime-spec-1.0.2" + ,go-github-com-opencontainers-runtime-spec-1.0.2) + ("go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f" + ,go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f) + ("go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2" + ,go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2) + ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2) + ("go-github-com-gogo-protobuf-1.3.1" + ,go-github-com-gogo-protobuf-1.3.1) + ("go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd" + ,go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd) + ("go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de" + ,go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de) + ("go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3" + ,go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3) + ("go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448" + ,go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448) + ("go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc" + ,go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc) + ("go-github-com-containerd-containerd-1.3.2" + ,go-github-com-containerd-containerd-1.3.2) + ("go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1" + ,go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1) + ("go-github-com-containerd-cgroups-0.0.0-20200531161412-0dbf7f05ba59" + ,go-github-com-containerd-cgroups-0.0.0-20200531161412-0dbf7f05ba59) + ("go-github-com-microsoft-go-winio-0.4.16-0.20201130162521-d1ffc52c7331" + ,go-github-com-microsoft-go-winio-0.4.16-0.20201130162521-d1ffc52c7331))) + (home-page "https://github.com/Microsoft/hcsshim") + (synopsis "hcsshim") + (description + "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") + (license license:expat))) + +(define-public go-github-com-containerd-containerd-1.4.3 + (package + (name "go-github-com-containerd-containerd") + (version "1.4.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/containerd") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "09xvhjg5f8h90w1y94kqqnqzhbhd62dcdd9wb9sdqakisjk6zrl0")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/containerd")) + (home-page "https://github.com/containerd/containerd") + (synopsis "Now Recruiting") + (description + "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") + (license license:asl2.0))) + +(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.2 + (package + (name "go-github-com-konsorten-go-windows-terminal-sequences") + (version "1.0.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/konsorten/go-windows-terminal-sequences") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "09mn209ika7ciy87xf2x31dq5fnqw39jidgaljvmqxwk7ff1hnx7")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) + (home-page "https://github.com/konsorten/go-windows-terminal-sequences") + (synopsis "Windows Terminal Sequences") + (description + "This library allow for enabling Windows terminal color support for Go.") + (license license:expat))) + +(define-public go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1 + (package + (name "go-github-com-prometheus-procfs") + (version "0.0.0-20190522114515-bc1a522cf7b1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/procfs") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "13ws66kd65zbhk31zmax9qgmh22fzjcgs5ihy4fm1d775w6bmdzx")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/procfs")) + (propagated-inputs + `(("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" + ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4))) + (home-page "https://github.com/prometheus/procfs") + (synopsis "procfs") + (description + "Package procfs provides functions to retrieve system, kernel and process +metrics from the pseudo-filesystem proc. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200120151820-655fe14d7479") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "133yxmdcny5b0r8775m52sj7zja36riv0x2437k7jccywqi8nx32")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-google-golang-org-genproto-0.0.0-20200117163144-32f20d992d24 + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20200117163144-32f20d992d24") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1kl696jd8fykykjjbngqpgqsngajwbbrvrpl1q0804l6hz8qk858")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" + ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) + ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) + ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" + ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) + ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" + ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) + ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" + ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-ttrpc-1.0.2 + (package + (name "go-github-com-containerd-ttrpc") + (version "1.0.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/ttrpc") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0plkm3yrr20vccfl0x8dxys3iphjwnmi285in0pivff6p9djf3yz")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/ttrpc")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.26.0" ,go-google-golang-org-grpc-1.26.0) + ("go-google-golang-org-genproto-0.0.0-20200117163144-32f20d992d24" + ,go-google-golang-org-genproto-0.0.0-20200117163144-32f20d992d24) + ("go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479" + ,go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479) + ("go-github-com-sirupsen-logrus-1.4.2" + ,go-github-com-sirupsen-logrus-1.4.2) + ("go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1" + ,go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.2" + ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.2) + ("go-github-com-gogo-protobuf-1.3.1" + ,go-github-com-gogo-protobuf-1.3.1))) + (home-page "https://github.com/containerd/ttrpc") + (synopsis "ttrpc") + (description "GRPC for low-memory environments.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-typeurl-1.0.1 + (package + (name "go-github-com-containerd-typeurl") + (version "1.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/typeurl") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "09cgrchrw5d36zq0mc321l5qr2gfbdm1z1a3hhkhqr4qay6vglqn")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/typeurl")) + (propagated-inputs + `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-gogo-protobuf-1.3.1" + ,go-github-com-gogo-protobuf-1.3.1))) + (home-page "https://github.com/containerd/typeurl") + (synopsis "typeurl") + (description + "This package provides a Go package for managing the registration, marshaling, and unmarshaling of encoded types.") + (license license:asl2.0))) + +(define-public go-github-com-opencontainers-runc-1.0.0-rc9 + (package + (name "go-github-com-opencontainers-runc") + (version "1.0.0-rc9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/runc") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ss5b46cbbckyqlwgj8dbd5l59c5y0kp679hcpc0ybaj53pmwxj7")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/runc")) + (home-page "https://github.com/opencontainers/runc") + (synopsis "runc") + (description + "@code{runc} is a CLI tool for spawning and running containers according to the OCI specification.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-zfs-0.0.0-20210301145711-11e8f1707f62 + (package + (name "go-github-com-containerd-zfs") + (version "0.0.0-20210301145711-11e8f1707f62") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/zfs") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1919ax45a07v2y56xq5c0xihkn2c5zgyqv68rzx3x5cc20n2p8yg")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/zfs")) + (propagated-inputs + `(("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) + ("go-go-etcd-io-bbolt-1.3.3" ,go-go-etcd-io-bbolt-1.3.3) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-runc-1.0.0-rc9" + ,go-github-com-opencontainers-runc-1.0.0-rc9) + ("go-github-com-opencontainers-image-spec-1.0.1" + ,go-github-com-opencontainers-image-spec-1.0.1) + ("go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible" + ,go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible) + ("go-github-com-google-uuid-1.1.1" ,go-github-com-google-uuid-1.1.1) + ("go-github-com-gogo-protobuf-1.3.1" + ,go-github-com-gogo-protobuf-1.3.1) + ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" + ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) + ("go-github-com-containerd-typeurl-1.0.1" + ,go-github-com-containerd-typeurl-1.0.1) + ("go-github-com-containerd-ttrpc-1.0.2" + ,go-github-com-containerd-ttrpc-1.0.2) + ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" + ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) + ("go-github-com-containerd-containerd-1.4.3" + ,go-github-com-containerd-containerd-1.4.3) + ("go-github-com-microsoft-hcsshim-0.8.14" + ,go-github-com-microsoft-hcsshim-0.8.14))) + (home-page "https://github.com/containerd/zfs") + (synopsis "ZFS snapshotter plugin") + (description "ZFS snapshotter plugin for containerd.") + (license license:asl2.0))) + +(define-public go-github-com-containernetworking-cni-0.7.1 + (package + (name "go-github-com-containernetworking-cni") + (version "0.7.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containernetworking/cni") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "02qn1br8164d99978acalisy1sx294g1axnii4yh1wji0fc735xz")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containernetworking/cni")) + (home-page "https://github.com/containernetworking/cni") + (synopsis "CNI - the Container Network Interface") + (description + "CNI (), a @url{https://cncf.io,Cloud Native Computing Foundation} project, consists of a specification and libraries for writing plugins to configure network interfaces in Linux containers, along with a number of supported plugins. +CNI concerns itself only with network connectivity of containers and removing allocated resources when the container is deleted. +Because of this focus, CNI has a wide range of support and the specification is simple to implement.") + (license license:asl2.0))) + +(define-public go-github-com-coreos-go-iptables-0.4.5 + (package + (name "go-github-com-coreos-go-iptables") + (version "0.4.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/coreos/go-iptables") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "04iqh4hvvrrvjsfjyaa5bdyqklwzrzzy8yiyvja90hvv121f7975")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/coreos/go-iptables")) + (home-page "https://github.com/coreos/go-iptables") + (synopsis "go-iptables") + (description "Go bindings for iptables utility.") + (license license:asl2.0))) + +(define-public go-github-com-onsi-ginkgo-0.0.0-20151202141238-7f8ab55aaf3b + (package + (name "go-github-com-onsi-ginkgo") + (version "0.0.0-20151202141238-7f8ab55aaf3b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/onsi/ginkgo") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0nas6wqdym4jx42kw9wj80b58r69k9qhnvglz009lj34g5gba7rw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/onsi/ginkgo")) + (home-page "https://github.com/onsi/ginkgo") + (synopsis "Ginkgo 2.0 Release Candidate is available!") + (description "Ginkgo is a BDD-style testing framework for Golang +") + (license license:expat))) + +(define-public go-github-com-onsi-gomega-0.0.0-20151007035656-2152b45fa28a + (package + (name "go-github-com-onsi-gomega") + (version "0.0.0-20151007035656-2152b45fa28a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/onsi/gomega") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0amjlkawp84mmdqjgdamf93p1546cla6h4wwrx7hf5r862r2qcw2")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/onsi/gomega")) + (home-page "https://github.com/onsi/gomega") + (synopsis ": a BDD Testing Framework for Golang") + (description + "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library. +") + (license license:expat))) + +(define-public go-github-com-vishvananda-netlink-0.0.0-20181108222139-023a6dafdcdf + (package + (name "go-github-com-vishvananda-netlink") + (version "0.0.0-20181108222139-023a6dafdcdf") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/vishvananda/netlink") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1i5q8r8rg7lxzvq2vhbf25lrkzdlgficfv0bxg9rf7cgg6z819sn")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/vishvananda/netlink")) + (home-page "https://github.com/vishvananda/netlink") + (synopsis "netlink - netlink library for go") + (description + "Package netlink provides a simple library for netlink. Netlink is +the interface a user-space program in linux uses to communicate with +the kernel. It can be used to add and remove interfaces, set up ip +addresses and routes, and confiugre ipsec. Netlink communication +requires elevated privileges, so in most cases this code needs to +be run as root. The low level primitives for netlink are contained +in the nl subpackage. This package attempts to provide a high-level +interface that is loosly modeled on the iproute2 cli. +") + (license license:asl2.0))) + +(define-public go-github-com-vishvananda-netns-0.0.0-20180720170159-13995c7128cc + (package + (name "go-github-com-vishvananda-netns") + (version "0.0.0-20180720170159-13995c7128cc") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/vishvananda/netns") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1zk6w8158qi4niva5rijchbv9ixgmijsgqshh54wdaav4xrhjshn")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/vishvananda/netns")) + (home-page "https://github.com/vishvananda/netns") + (synopsis "netns - network namespaces in go") + (description + "Package netns allows ultra-simple network namespace handling. NsHandles +can be retrieved and set. Note that the current namespace is thread +local so actions that set and reset namespaces should use LockOSThread +to make sure the namespace doesn't change due to a goroutine switch. +It is best to close NsHandles when you are done with them. This can be +accomplished via a `defer ns.Close()` on the handle. Changing namespaces +requires elevated privileges, so in most cases this code needs to be run +as root. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-crypto-0.0.0-20181009213950-7c1a557ab941 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20181009213950-7c1a557ab941") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1f1q9mby8m7ws3gbj90v0prhnf4g2sgf74azmw31kzwd6azlar3m")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20181011144130-49bb7cea24b1 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20181011144130-49bb7cea24b1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "111q4qm3hcjvzvyv9y5rz8ydnyg48rckcygxqy6gv63q618wz6gn")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-github-com-containernetworking-plugins-0.8.6 + (package + (name "go-github-com-containernetworking-plugins") + (version "0.8.6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containernetworking/plugins") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0f1cqxjf26sy1c4aw6y7pyd9lrz0vknby4q5j6xj77a1pab9073m")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containernetworking/plugins")) + (propagated-inputs + `(("go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2" + ,go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2) + ("go-gopkg-in-airbrake-gobrake-v2-2.0.9" + ,go-gopkg-in-airbrake-gobrake-v2-2.0.9) + ("go-golang-org-x-sys-0.0.0-20190616124812-15dcb6c0061f" + ,go-golang-org-x-sys-0.0.0-20190616124812-15dcb6c0061f) + ("go-golang-org-x-net-0.0.0-20181011144130-49bb7cea24b1" + ,go-golang-org-x-net-0.0.0-20181011144130-49bb7cea24b1) + ("go-golang-org-x-crypto-0.0.0-20181009213950-7c1a557ab941" + ,go-golang-org-x-crypto-0.0.0-20181009213950-7c1a557ab941) + ("go-github-com-vishvananda-netns-0.0.0-20180720170159-13995c7128cc" + ,go-github-com-vishvananda-netns-0.0.0-20180720170159-13995c7128cc) + ("go-github-com-vishvananda-netlink-0.0.0-20181108222139-023a6dafdcdf" + ,go-github-com-vishvananda-netlink-0.0.0-20181108222139-023a6dafdcdf) + ("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0) + ("go-github-com-sirupsen-logrus-1.0.6" + ,go-github-com-sirupsen-logrus-1.0.6) + ("go-github-com-safchain-ethtool-0.0.0-20190326074333-42ed695e3de8" + ,go-github-com-safchain-ethtool-0.0.0-20190326074333-42ed695e3de8) + ("go-github-com-onsi-gomega-0.0.0-20151007035656-2152b45fa28a" + ,go-github-com-onsi-gomega-0.0.0-20151007035656-2152b45fa28a) + ("go-github-com-onsi-ginkgo-0.0.0-20151202141238-7f8ab55aaf3b" + ,go-github-com-onsi-ginkgo-0.0.0-20151202141238-7f8ab55aaf3b) + ("go-github-com-mattn-go-shellwords-1.0.3" + ,go-github-com-mattn-go-shellwords-1.0.3) + ("go-github-com-j-keck-arping-0.0.0-20160618110441-2cf9dc699c56" + ,go-github-com-j-keck-arping-0.0.0-20160618110441-2cf9dc699c56) + ("go-github-com-golang-protobuf-1.3.1" + ,go-github-com-golang-protobuf-1.3.1) + ("go-github-com-godbus-dbus-0.0.0-20180201030542-885f9cc04c9c" + ,go-github-com-godbus-dbus-0.0.0-20180201030542-885f9cc04c9c) + ("go-github-com-d2g-hardwareaddr-0.0.0-20190221164911-e7d9fbe030e4" + ,go-github-com-d2g-hardwareaddr-0.0.0-20190221164911-e7d9fbe030e4) + ("go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5" + ,go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5) + ("go-github-com-d2g-dhcp4client-1.0.0" + ,go-github-com-d2g-dhcp4client-1.0.0) + ("go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c" + ,go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c) + ("go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7" + ,go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7) + ("go-github-com-coreos-go-iptables-0.4.5" + ,go-github-com-coreos-go-iptables-0.4.5) + ("go-github-com-containernetworking-cni-0.7.1" + ,go-github-com-containernetworking-cni-0.7.1) + ("go-github-com-buger-jsonparser-0.0.0-20180808090653-f4dd9f5a6b44" + ,go-github-com-buger-jsonparser-0.0.0-20180808090653-f4dd9f5a6b44) + ("go-github-com-alexflint-go-filemutex-0.0.0-20171022225611-72bdc8eae2ae" + ,go-github-com-alexflint-go-filemutex-0.0.0-20171022225611-72bdc8eae2ae) + ("go-github-com-microsoft-hcsshim-0.8.6" + ,go-github-com-microsoft-hcsshim-0.8.6) + ("go-github-com-microsoft-go-winio-0.4.11" + ,go-github-com-microsoft-go-winio-0.4.11))) + (home-page "https://github.com/containernetworking/plugins") + (synopsis "Plugins") + (description + "Some CNI network plugins, maintained by the containernetworking team. For more information, see the @url{https://www.cni.dev,CNI website}.") + (license license:asl2.0))) + +(define-public go-github-com-imdario-mergo-0.3.11 + (package + (name "go-github-com-imdario-mergo") + (version "0.3.11") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/imdario/mergo") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "07iay9j3ry7qrflvn9bgyyggvwacl1s1in1cnbmsp1020ydkph8k")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/imdario/mergo")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.3.0" ,go-gopkg-in-yaml-v2-2.3.0))) + (home-page "https://github.com/imdario/mergo") + (synopsis "Mergo") + (description + "This package provides a helper to merge structs and maps in Golang. Useful for configuration default values, avoiding messy if-statements. +") + (license license:bsd-3))) + +(define-public go-github-com-klauspost-compress-1.11.3 + (package + (name "go-github-com-klauspost-compress") + (version "1.11.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/klauspost/compress") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "04wpilw6072fh2wd492ma1nw4br7bvz466mj0vi2m1g4w6d0z88z")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/klauspost/compress")) + (home-page "https://github.com/klauspost/compress") + (synopsis "compress") + (description "This package provides various compression algorithms.") + (license #f))) + +(define-public go-github-com-checkpoint-restore-go-criu-v4-4.1.0 + (package + (name "go-github-com-checkpoint-restore-go-criu-v4") + (version "4.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/checkpoint-restore/go-criu") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hfgjck015df5h44hczl3x4gg430saczgkl619cp0l6cpaxga5yi")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/checkpoint-restore/go-criu/v4")) + (propagated-inputs + `(("go-github-com-golang-protobuf-1.3.5" + ,go-github-com-golang-protobuf-1.3.5))) + (home-page "https://github.com/checkpoint-restore/go-criu") + (synopsis "go-criu -- Go bindings for") + (description + "This repository provides Go bindings for CRIU. The code is based on the Go based PHaul +implementation from the CRIU repository. For easier inclusion into other Go projects the +CRIU Go bindings have been moved to this repository.") + (license license:asl2.0))) + +(define-public go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200124204421-9fbb57f87de9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0qaz2jjkrxzgkapmjqingdwamrgq2aiblxvzzgrcsv2qhkj0wdps")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-cilium-ebpf-0.2.0 + (package + (name "go-github-com-cilium-ebpf") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cilium/ebpf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0f7my8n5v2c5cmgrcikgi0naamglr7c4khgxkbb1k5wl8mm9465a")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/cilium/ebpf")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9" + ,go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9) + ("go-github-com-google-go-cmp-0.5.2" + ,go-github-com-google-go-cmp-0.5.2))) + (home-page "https://github.com/cilium/ebpf") + (synopsis "eBPF") + (description "Package ebpf is a toolkit for working with eBPF programs. +") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200916030750-2334cc1a136f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1lc7d513gwwpr6r7f55743684n1qsgn9vmg6b79x0hsp1x90z4mr")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-containerd-console-1.0.1 + (package + (name "go-github-com-containerd-console") + (version "1.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/console") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0s837wj6h80fykk2pdmaji75rw9c3863by0gh0cq51hh0lgyjpvg")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/console")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f" + ,go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) + (home-page "https://github.com/containerd/console") + (synopsis "console") + (description + "Golang package for dealing with consoles. Light on deps and a simple API.") + (license license:asl2.0))) + +(define-public go-github-com-coreos-go-systemd-v22-22.1.0 + (package + (name "go-github-com-coreos-go-systemd-v22") + (version "22.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/coreos/go-systemd") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "127dj1iwp69yj74nwh9ckgc0mkk1mv4yzbxmbdxix1r7j6q35z3j")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/coreos/go-systemd/v22")) + (propagated-inputs + `(("go-github-com-godbus-dbus-v5-5.0.3" + ,go-github-com-godbus-dbus-v5-5.0.3))) + (home-page "https://github.com/coreos/go-systemd") + (synopsis "go-systemd") + (description "Go bindings to systemd. The project has several packages:") + (license license:asl2.0))) + +(define-public go-github-com-godbus-dbus-v5-5.0.3 + (package + (name "go-github-com-godbus-dbus-v5") + (version "5.0.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/godbus/dbus") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1bkc904073k807yxg6mvqaxrr6ammmhginr9p54jfb55mz3hfw3s")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/godbus/dbus/v5")) + (home-page "https://github.com/godbus/dbus") + (synopsis "dbus") + (description + "Package dbus implements bindings to the D-Bus message bus system. +") + (license license:bsd-2))) + +(define-public go-github-com-opencontainers-runc-1.0.0-rc93 + (package + (name "go-github-com-opencontainers-runc") + (version "1.0.0-rc93") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/runc") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "008d5wkznic80n5q1vwx727qn5ifalc7cydq68hc1gk9wrhna4v4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/runc")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" + ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68) + ("go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b" + ,go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b) + ("go-github-com-willf-bitset-1.1.11" + ,go-github-com-willf-bitset-1.1.11) + ("go-github-com-vishvananda-netlink-1.1.0" + ,go-github-com-vishvananda-netlink-1.1.0) + ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) + ("go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635" + ,go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635) + ("go-github-com-sirupsen-logrus-1.7.0" + ,go-github-com-sirupsen-logrus-1.7.0) + ("go-github-com-seccomp-libseccomp-golang-0.9.1" + ,go-github-com-seccomp-libseccomp-golang-0.9.1) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-selinux-1.8.0" + ,go-github-com-opencontainers-selinux-1.8.0) + ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" + ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) + ("go-github-com-mrunalp-fileutils-0.5.0" + ,go-github-com-mrunalp-fileutils-0.5.0) + ("go-github-com-moby-sys-mountinfo-0.4.0" + ,go-github-com-moby-sys-mountinfo-0.4.0) + ("go-github-com-golang-protobuf-1.4.3" + ,go-github-com-golang-protobuf-1.4.3) + ("go-github-com-godbus-dbus-v5-5.0.3" + ,go-github-com-godbus-dbus-v5-5.0.3) + ("go-github-com-docker-go-units-0.4.0" + ,go-github-com-docker-go-units-0.4.0) + ("go-github-com-cyphar-filepath-securejoin-0.2.2" + ,go-github-com-cyphar-filepath-securejoin-0.2.2) + ("go-github-com-coreos-go-systemd-v22-22.1.0" + ,go-github-com-coreos-go-systemd-v22-22.1.0) + ("go-github-com-containerd-console-1.0.1" + ,go-github-com-containerd-console-1.0.1) + ("go-github-com-cilium-ebpf-0.2.0" ,go-github-com-cilium-ebpf-0.2.0) + ("go-github-com-checkpoint-restore-go-criu-v4-4.1.0" + ,go-github-com-checkpoint-restore-go-criu-v4-4.1.0))) + (home-page "https://github.com/opencontainers/runc") + (synopsis "runc") + (description + "@code{runc} is a CLI tool for spawning and running containers according to the OCI specification.") + (license license:asl2.0))) + +(define-public go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d + (package + (name "go-github-com-opencontainers-runtime-spec") + (version "1.0.3-0.20200929063507-e6143ca7d51d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/runtime-spec") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "06yk9kjif5mgi46d0hcgqcikdcplf3yflqbj8h6ljxshp6jzc49w")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) + (home-page "https://github.com/opencontainers/runtime-spec") + (synopsis "Open Container Initiative Runtime Specification") + (description + "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") + (license license:asl2.0))) + +(define-public go-github-com-willf-bitset-1.1.11 + (package + (name "go-github-com-willf-bitset") + (version "1.1.11") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/bits-and-blooms/bitset") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1v7wnikdxiyhwdxnsj2wcrsrsi1kb2ssmarvbrda90vmxzafjl7d")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/willf/bitset")) + (home-page "https://github.com/willf/bitset") + (synopsis "bitset") + (description + "Package bitset implements bitsets, a mapping +between non-negative integers and boolean values. It should be more +efficient than map[uint] bool. +") + (license license:bsd-3))) + +(define-public go-github-com-opencontainers-selinux-1.8.0 + (package + (name "go-github-com-opencontainers-selinux") + (version "1.8.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/selinux") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "08aakiva619hk4lgfvyi6kpjgw7hfirs0jlc2jdgzcv7p0gfhbmx")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/selinux")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777" + ,go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777) + ("go-github-com-willf-bitset-1.1.11" + ,go-github-com-willf-bitset-1.1.11) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) + (home-page "https://github.com/opencontainers/selinux") + (synopsis "selinux") + (description "Common SELinux package used across the container ecosystem.") + (license license:asl2.0))) + +(define-public go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.14 + (package + (name "go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client") + (version "0.0.14") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes-sigs/apiserver-network-proxy") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0px41x5apgcssmwmx75cwm000s8b8pgd84dxn56maxx223dzz9vm")))) + (build-system go-build-system) + (arguments + '(#:import-path + "sigs.k8s.io/apiserver-network-proxy/konnectivity-client")) + (propagated-inputs + `(("go-k8s-io-klog-v2-2.0.0" ,go-k8s-io-klog-v2-2.0.0) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-github-com-golang-protobuf-1.4.0" + ,go-github-com-golang-protobuf-1.4.0))) + (home-page + "https://sigs.k8s.io/apiserver-network-proxy/konnectivity-client") + (synopsis #f) + (description #f) + (license license:asl2.0))) + +(define-public go-k8s-io-apiserver-0.20.1 + (package + (name "go-k8s-io-apiserver") + (version "0.20.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes/apiserver") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03k8kjisscj59i410kk2bz0qfpxa2d2vbwxiwyn93k7a2avbn7cs")))) + (build-system go-build-system) + (arguments '(#:import-path "k8s.io/apiserver")) + (propagated-inputs + `(("go-k8s-io-component-base-0.20.1" ,go-k8s-io-component-base-0.20.1) + ("go-k8s-io-client-go-0.20.1" ,go-k8s-io-client-go-0.20.1) + ("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) + ("go-k8s-io-api-0.20.1" ,go-k8s-io-api-0.20.1) + ("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) + ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.2" + ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.2) + ("go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.14" + ,go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.14) + ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" + ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) + ("go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd" + ,go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd) + ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) + ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) + ("go-gopkg-in-square-go-jose-v2-2.2.2" + ,go-gopkg-in-square-go-jose-v2-2.2.2) + ("go-gopkg-in-natefinch-lumberjack-v2-2.0.0" + ,go-gopkg-in-natefinch-lumberjack-v2-2.0.0) + ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) + ("go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a" + ,go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a) + ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" + ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) + ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" + ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) + ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" + ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) + ("go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0" + ,go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0) + ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) + ("go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489" + ,go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489) + ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) + ("go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5" + ,go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) + ("go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021" + ,go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822" + ,go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822) + ("go-github-com-mailru-easyjson-0.7.0" + ,go-github-com-mailru-easyjson-0.7.0) + ("go-github-com-hashicorp-golang-lru-0.5.1" + ,go-github-com-hashicorp-golang-lru-0.5.1) + ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" + ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) + ("go-github-com-gorilla-websocket-1.4.2" + ,go-github-com-gorilla-websocket-1.4.2) + ("go-github-com-googleapis-gnostic-0.4.1" + ,go-github-com-googleapis-gnostic-0.4.1) + ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) + ("go-github-com-google-gofuzz-1.1.0" + ,go-github-com-google-gofuzz-1.1.0) + ("go-github-com-google-go-cmp-0.5.2" + ,go-github-com-google-go-cmp-0.5.2) + ("go-github-com-gogo-protobuf-1.3.1" + ,go-github-com-gogo-protobuf-1.3.1) + ("go-github-com-go-openapi-spec-0.19.3" + ,go-github-com-go-openapi-spec-0.19.3) + ("go-github-com-evanphx-json-patch-4.9.0+incompatible" + ,go-github-com-evanphx-json-patch-4.9.0+incompatible) + ("go-github-com-emicklei-go-restful-2.9.5+incompatible" + ,go-github-com-emicklei-go-restful-2.9.5+incompatible) + ("go-github-com-dustin-go-humanize-1.0.0" + ,go-github-com-dustin-go-humanize-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1) + ("go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f" + ,go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f) + ("go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e" + ,go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e) + ("go-github-com-coreos-go-semver-0.3.0" + ,go-github-com-coreos-go-semver-0.3.0) + ("go-github-com-coreos-go-oidc-2.1.0+incompatible" + ,go-github-com-coreos-go-oidc-2.1.0+incompatible))) + (home-page "https://k8s.io/apiserver") + (synopsis "apiserver") + (description + "Generic library for building a Kubernetes aggregated API server.") + (license license:asl2.0))) + +(define-public go-k8s-io-api-0.20.1 + (package + (name "go-k8s-io-api") + (version "0.20.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes/api") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "051nl7g66k0jkc9rmfbvwdsmqkn36nq71kvnfym3lhnjcgg53k0l")))) + (build-system go-build-system) + (arguments '(#:import-path "k8s.io/api")) + (propagated-inputs + `(("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-gogo-protobuf-1.3.1" + ,go-github-com-gogo-protobuf-1.3.1))) + (home-page "https://k8s.io/api") + (synopsis "api") + (description + "Schema of the external API types that are served by the Kubernetes API server.") + (license license:asl2.0))) + +(define-public go-k8s-io-apimachinery-0.20.1 + (package + (name "go-k8s-io-apimachinery") + (version "0.20.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes/apimachinery") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "15qc12lbzpd4lgajy0rv24b3ky4hhg5y1l37qxdfiakhz91didfw")))) + (build-system go-build-system) + (arguments '(#:import-path "k8s.io/apimachinery")) + (propagated-inputs + `(("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) + ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.2" + ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.2) + ("go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd" + ,go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd) + ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) + ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) + ("go-gopkg-in-inf-v0-0.9.1" ,go-gopkg-in-inf-v0-0.9.1) + ("go-google-golang-org-protobuf-1.25.0" + ,go-google-golang-org-protobuf-1.25.0) + ("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" + ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) + ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) + ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" + ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) + ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" + ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-onsi-gomega-1.7.0" ,go-github-com-onsi-gomega-1.7.0) + ("go-github-com-onsi-ginkgo-1.11.0" ,go-github-com-onsi-ginkgo-1.11.0) + ("go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f" + ,go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f) + ("go-github-com-modern-go-reflect2-1.0.1" + ,go-github-com-modern-go-reflect2-1.0.1) + ("go-github-com-json-iterator-go-1.1.10" + ,go-github-com-json-iterator-go-1.1.10) + ("go-github-com-hashicorp-golang-lru-0.5.1" + ,go-github-com-hashicorp-golang-lru-0.5.1) + ("go-github-com-googleapis-gnostic-0.4.1" + ,go-github-com-googleapis-gnostic-0.4.1) + ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) + ("go-github-com-google-gofuzz-1.1.0" + ,go-github-com-google-gofuzz-1.1.0) + ("go-github-com-google-go-cmp-0.5.2" + ,go-github-com-google-go-cmp-0.5.2) + ("go-github-com-golang-protobuf-1.4.3" + ,go-github-com-golang-protobuf-1.4.3) + ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" + ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) + ("go-github-com-gogo-protobuf-1.3.1" + ,go-github-com-gogo-protobuf-1.3.1) + ("go-github-com-fsnotify-fsnotify-1.4.9" + ,go-github-com-fsnotify-fsnotify-1.4.9) + ("go-github-com-evanphx-json-patch-4.9.0+incompatible" + ,go-github-com-evanphx-json-patch-4.9.0+incompatible) + ("go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153" + ,go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153) + ("go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96" + ,go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://k8s.io/apimachinery") + (synopsis "apimachinery") + (description + "Scheme, typing, encoding, decoding, and conversion packages for Kubernetes and Kubernetes-like API objects.") + (license license:asl2.0))) + +(define-public go-k8s-io-client-go-0.20.1 + (package + (name "go-k8s-io-client-go") + (version "0.20.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes/client-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "02jrzwwcrdlya91fga2wvf8dsl1yka3kky194dm6l9pmd754qwzs")))) + (build-system go-build-system) + (arguments '(#:import-path "k8s.io/client-go")) + (propagated-inputs + `(("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) + ("go-k8s-io-api-0.20.1" ,go-k8s-io-api-0.20.1) + ("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) + ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" + ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) + ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) + ("go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e" + ,go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e) + ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" + ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) + ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" + ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) + ("go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0" + ,go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) + ("go-github-com-peterbourgon-diskv-2.0.1+incompatible" + ,go-github-com-peterbourgon-diskv-2.0.1+incompatible) + ("go-github-com-imdario-mergo-0.3.5" + ,go-github-com-imdario-mergo-0.3.5) + ("go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7" + ,go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7) + ("go-github-com-googleapis-gnostic-0.4.1" + ,go-github-com-googleapis-gnostic-0.4.1) + ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) + ("go-github-com-google-gofuzz-1.1.0" + ,go-github-com-google-gofuzz-1.1.0) + ("go-github-com-google-go-cmp-0.5.2" + ,go-github-com-google-go-cmp-0.5.2) + ("go-github-com-golang-protobuf-1.4.3" + ,go-github-com-golang-protobuf-1.4.3) + ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" + ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) + ("go-github-com-gogo-protobuf-1.3.1" + ,go-github-com-gogo-protobuf-1.3.1) + ("go-github-com-evanphx-json-patch-4.9.0+incompatible" + ,go-github-com-evanphx-json-patch-4.9.0+incompatible) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1) + ("go-github-com-azure-go-autorest-autorest-adal-0.9.5" + ,go-github-com-azure-go-autorest-autorest-adal-0.9.5) + ("go-github-com-azure-go-autorest-autorest-0.11.1" + ,go-github-com-azure-go-autorest-autorest-0.11.1) + ("go-cloud-google-com-go-0.54.0" ,go-cloud-google-com-go-0.54.0))) + (home-page "https://k8s.io/client-go") + (synopsis "client-go") + (description + "Go clients for talking to a @url{http://kubernetes.io/,kubernetes} cluster.") + (license license:asl2.0))) + +(define-public go-k8s-io-component-base-0.20.1 + (package + (name "go-k8s-io-component-base") + (version "0.20.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes/component-base") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "05x3mv1lxh7s6ckfh1s9wwmb0n9rg14a9637ai9bhxdfps47sz0v")))) + (build-system go-build-system) + (arguments '(#:import-path "k8s.io/component-base")) + (propagated-inputs + `(("go-k8s-io-client-go-0.20.1" ,go-k8s-io-client-go-0.20.1) + ("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) + ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" + ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) + ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) + ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) + ("go-go-uber-org-multierr-1.1.0" ,go-go-uber-org-multierr-1.1.0) + ("go-go-uber-org-atomic-1.4.0" ,go-go-uber-org-atomic-1.4.0) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) + ("go-github-com-sirupsen-logrus-1.6.0" + ,go-github-com-sirupsen-logrus-1.6.0) + ("go-github-com-prometheus-procfs-0.2.0" + ,go-github-com-prometheus-procfs-0.2.0) + ("go-github-com-prometheus-common-0.10.0" + ,go-github-com-prometheus-common-0.10.0) + ("go-github-com-prometheus-client-model-0.2.0" + ,go-github-com-prometheus-client-model-0.2.0) + ("go-github-com-prometheus-client-golang-1.7.1" + ,go-github-com-prometheus-client-golang-1.7.1) + ("go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd" + ,go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd) + ("go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369" + ,go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369) + ("go-github-com-google-go-cmp-0.5.2" + ,go-github-com-google-go-cmp-0.5.2) + ("go-github-com-go-logr-logr-0.2.0" ,go-github-com-go-logr-logr-0.2.0) + ("go-github-com-blang-semver-3.5.1+incompatible" + ,go-github-com-blang-semver-3.5.1+incompatible))) + (home-page "https://k8s.io/component-base") + (synopsis "component-base") + (description + "Implement KEP 32: @url{https://github.com/kubernetes/enhancements/blob/master/keps/sig-cluster-lifecycle/wgs/783-component-base/README.md,https://github.com/kubernetes/enhancements/blob/master/keps/sig-cluster-lifecycle/wgs/783-component-base/README.md}") + (license license:asl2.0))) + +(define-public go-k8s-io-cri-api-0.20.1 + (package + (name "go-k8s-io-cri-api") + (version "0.20.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes/cri-api") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1r98d0kv42sijdg3404xx2g5jj0zixvfagkky2zla12p68ajm4xr")))) + (build-system go-build-system) + (arguments '(#:import-path "k8s.io/cri-api")) + (propagated-inputs + `(("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" + ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) + ("go-google-golang-org-protobuf-1.25.0" + ,go-google-golang-org-protobuf-1.25.0) + ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) + ("go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a" + ,go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a) + ("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" + ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) + ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) + ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" + ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) + ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" + ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-kr-pretty-0.2.0" ,go-github-com-kr-pretty-0.2.0) + ("go-github-com-google-go-cmp-0.5.2" + ,go-github-com-google-go-cmp-0.5.2) + ("go-github-com-golang-protobuf-1.4.3" + ,go-github-com-golang-protobuf-1.4.3) + ("go-github-com-gogo-protobuf-1.3.1" + ,go-github-com-gogo-protobuf-1.3.1) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://k8s.io/cri-api") + (synopsis "Purpose") + (description + "This repository contains the definitions for the Container Runtime Interface (CRI). +CRI is a plugin interface which enables kubelet to use a wide variety of container runtimes, +without the need to recompile. CRI consists of a protocol buffers and gRPC API.") + (license license:asl2.0))) + +(define-public go-github-com-containerd-containerd-1.5.0-beta.3 + (package + (name "go-github-com-containerd-containerd") + (version "1.5.0-beta.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/containerd") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0fbd4llrwg5hi5adfkmfndma5y129yl9wwz3c3fjn7cfhc64hlqf")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/containerd")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) + ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) + ("go-github-com-golang-protobuf-1.3.5" + ,go-github-com-golang-protobuf-1.3.5) + ("go-github-com-gogo-googleapis-1.3.2" + ,go-github-com-gogo-googleapis-1.3.2) + ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" + ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) + ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) + ("go-k8s-io-cri-api-0.20.1" ,go-k8s-io-cri-api-0.20.1) + ("go-k8s-io-component-base-0.20.1" ,go-k8s-io-component-base-0.20.1) + ("go-k8s-io-client-go-0.20.1" ,go-k8s-io-client-go-0.20.1) + ("go-k8s-io-apiserver-0.20.1" ,go-k8s-io-apiserver-0.20.1) + ("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) + ("go-k8s-io-api-0.20.1" ,go-k8s-io-api-0.20.1) + ("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) + ("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" + ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) + ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" + ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) + ("go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b" + ,go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b) + ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) + ("go-github-com-tchap-go-patricia-2.2.6+incompatible" + ,go-github-com-tchap-go-patricia-2.2.6+incompatible) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-sirupsen-logrus-1.7.0" + ,go-github-com-sirupsen-logrus-1.7.0) + ("go-github-com-prometheus-client-golang-1.7.1" + ,go-github-com-prometheus-client-golang-1.7.1) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-selinux-1.8.0" + ,go-github-com-opencontainers-selinux-1.8.0) + ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" + ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) + ("go-github-com-opencontainers-runc-1.0.0-rc93" + ,go-github-com-opencontainers-runc-1.0.0-rc93) + ("go-github-com-opencontainers-image-spec-1.0.1" + ,go-github-com-opencontainers-image-spec-1.0.1) + ("go-github-com-opencontainers-go-digest-1.0.0" + ,go-github-com-opencontainers-go-digest-1.0.0) + ("go-github-com-moby-sys-symlink-0.1.0" + ,go-github-com-moby-sys-symlink-0.1.0) + ("go-github-com-moby-sys-mountinfo-0.4.0" + ,go-github-com-moby-sys-mountinfo-0.4.0) + ("go-github-com-klauspost-compress-1.11.3" + ,go-github-com-klauspost-compress-1.11.3) + ("go-github-com-imdario-mergo-0.3.11" + ,go-github-com-imdario-mergo-0.3.11) + ("go-github-com-hashicorp-go-multierror-1.0.0" + ,go-github-com-hashicorp-go-multierror-1.0.0) + ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" + ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) + ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) + ("go-github-com-google-go-cmp-0.5.4" + ,go-github-com-google-go-cmp-0.5.4) + ("go-github-com-gogo-protobuf-1.3.2" + ,go-github-com-gogo-protobuf-1.3.2) + ("go-github-com-fsnotify-fsnotify-1.4.9" + ,go-github-com-fsnotify-fsnotify-1.4.9) + ("go-github-com-emicklei-go-restful-2.9.5+incompatible" + ,go-github-com-emicklei-go-restful-2.9.5+incompatible) + ("go-github-com-docker-go-units-0.4.0" + ,go-github-com-docker-go-units-0.4.0) + ("go-github-com-docker-go-metrics-0.0.1" + ,go-github-com-docker-go-metrics-0.0.1) + ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" + ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1) + ("go-github-com-coreos-go-systemd-v22-22.1.0" + ,go-github-com-coreos-go-systemd-v22-22.1.0) + ("go-github-com-containernetworking-plugins-0.8.6" + ,go-github-com-containernetworking-plugins-0.8.6) + ("go-github-com-containerd-zfs-0.0.0-20210301145711-11e8f1707f62" + ,go-github-com-containerd-zfs-0.0.0-20210301145711-11e8f1707f62) + ("go-github-com-containerd-typeurl-1.0.1" + ,go-github-com-containerd-typeurl-1.0.1) + ("go-github-com-containerd-ttrpc-1.0.2" + ,go-github-com-containerd-ttrpc-1.0.2) + ("go-github-com-containerd-nri-0.0.0-20201007170849-eb1350a75164" + ,go-github-com-containerd-nri-0.0.0-20201007170849-eb1350a75164) + ("go-github-com-containerd-imgcrypt-1.0.4-0.20210301171431-0ae5c75f59ba" + ,go-github-com-containerd-imgcrypt-1.0.4-0.20210301171431-0ae5c75f59ba) + ("go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328" + ,go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328) + ("go-github-com-containerd-go-cni-1.0.1" + ,go-github-com-containerd-go-cni-1.0.1) + ("go-github-com-containerd-fifo-0.0.0-20201026212402-0724c46b320c" + ,go-github-com-containerd-fifo-0.0.0-20201026212402-0724c46b320c) + ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" + ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) + ("go-github-com-containerd-console-1.0.1" + ,go-github-com-containerd-console-1.0.1) + ("go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68" + ,go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68) + ("go-github-com-containerd-btrfs-0.0.0-20201111183144-404b9149801e" + ,go-github-com-containerd-btrfs-0.0.0-20201111183144-404b9149801e) + ("go-github-com-containerd-aufs-0.0.0-20201003224125-76a6863f2989" + ,go-github-com-containerd-aufs-0.0.0-20201003224125-76a6863f2989) + ("go-github-com-microsoft-hcsshim-test-0.0.0-20210227013316-43a75bb4edd3" + ,go-github-com-microsoft-hcsshim-test-0.0.0-20210227013316-43a75bb4edd3) + ("go-github-com-microsoft-hcsshim-0.8.15" + ,go-github-com-microsoft-hcsshim-0.8.15) + ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" + ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3) + ("go-github-com-burntsushi-toml-0.3.1" + ,go-github-com-burntsushi-toml-0.3.1))) + (home-page "https://github.com/containerd/containerd") + (synopsis "Now Recruiting") + (description + "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") + (license license:asl2.0))) + +(define-public go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898 + (package + (name "go-bazil-org-fuse") + (version "0.0.0-20160811212531-371fbbdaa898") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/bazil/fuse") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1x5p301py7mcxgwklfm6pqqkzssln0nfzllng49pnk60m03ilp4w")))) + (build-system go-build-system) + (arguments '(#:import-path "bazil.org/fuse")) + (home-page "https://bazil.org/fuse") + (synopsis "bazil.org/fuse -- Filesystems in Go") + (description + "Package fuse enables writing FUSE file systems on Linux and FreeBSD. +") + (license #f))) + +(define-public go-github-com-sirupsen-logrus-1.7.0 + (package + (name "go-github-com-sirupsen-logrus") + (version "1.7.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sirupsen/logrus") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1a59pw7zimvm8k423iq9l4f4qjj1ia1xc6pkmhwl2mxc46y2n442")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/sirupsen/logrus")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037" + ,go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037) + ("go-github-com-stretchr-testify-1.2.2" + ,go-github-com-stretchr-testify-1.2.2) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/sirupsen/logrus") + (synopsis "Logrus") + (description + "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. +") + (license license:expat))) + +(define-public go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee + (package + (name "go-github-com-spf13-cobra") + (version "0.0.2-0.20171109065643-2da4a54c5cee") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/spf13/cobra") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18qbrp774fx6dyibjcy9snld705gslq6z2sql1biyjahxkm1vpfy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/spf13/cobra")) + (home-page "https://github.com/spf13/cobra") + (synopsis "Table of Contents") + (description + "Package cobra is a commander providing a simple interface to create powerful modern CLI interfaces. +In addition to providing an interface, Cobra simultaneously provides a controller to organize your application code. +") + (license license:asl2.0))) + +(define-public go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95 + (package + (name "go-github-com-spf13-pflag") + (version "1.0.1-0.20171106142849-4c012f6dcd95") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/spf13/pflag") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0plmm67lkm25ir0lczwh7hmanyilrs1vxmbp8a0dyr282ji1dqm5")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/spf13/pflag")) + (home-page "https://github.com/spf13/pflag") + (synopsis "Description") + (description + "Package pflag is a drop-in replacement for Go's flag package, implementing +POSIX/GNU-style --flags. +") + (license license:bsd-3))) + +(define-public go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e + (package + (name "go-github-com-containerd-continuity") + (version "0.0.0-20210208174643-50096c924a4e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/continuity") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1drmxbb2l4z12b19dq3vvh1ss7b4z8fq1n5g6c8ln13mjgz6cq48")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/continuity")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3" + ,go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3) + ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" + ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) + ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" + ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) + ("go-github-com-stretchr-testify-1.4.0" + ,go-github-com-stretchr-testify-1.4.0) + ("go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95" + ,go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95) + ("go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee" + ,go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee) + ("go-github-com-sirupsen-logrus-1.7.0" + ,go-github-com-sirupsen-logrus-1.7.0) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-go-digest-1.0.0" + ,go-github-com-opencontainers-go-digest-1.0.0) + ("go-github-com-inconshreveable-mousetrap-1.0.0" + ,go-github-com-inconshreveable-mousetrap-1.0.0) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0) + ("go-github-com-dustin-go-humanize-1.0.0" + ,go-github-com-dustin-go-humanize-1.0.0) + ("go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898" + ,go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898))) + (home-page "https://github.com/containerd/continuity") + (synopsis "continuity") + (description + "This package provides a transport-agnostic, filesystem metadata manifest system") + (license license:asl2.0))) + +(define-public go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible + (package + (name "go-github-com-mistifyio-go-zfs") + (version "2.1.2-0.20190413222219-f784269be439+incompatible") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mistifyio/go-zfs") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0x6ncjaqjm06c615kbwkqbd5wcdg9nmrbl7wm4w185s6kq6l8fpw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mistifyio/go-zfs")) + (home-page "https://github.com/mistifyio/go-zfs") + (synopsis "Go Wrapper for ZFS") + (description + "Package zfs provides wrappers around the ZFS command line tools. +") + (license license:asl2.0))) + +(define-public go-github-com-containerd-zfs-1.0.0 + (package + (name "go-github-com-containerd-zfs") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/zfs") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "10shqmcdxlxxi90kwgs5cljz12589yz5cm78aimv9m4cgwiv3wl3")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/zfs")) + (propagated-inputs + `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible" + ,go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible) + ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" + ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) + ("go-github-com-containerd-containerd-1.5.0-beta.3" + ,go-github-com-containerd-containerd-1.5.0-beta.3))) + (home-page "https://github.com/containerd/zfs") + (synopsis "ZFS snapshotter plugin") + (description "ZFS snapshotter plugin for containerd.") + (license license:asl2.0))) + +(define-public go-github-com-microsoft-go-winio-0.4.11 + (package + (name "go-github-com-microsoft-go-winio") + (version "0.4.11") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/microsoft/go-winio") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "14y1gryr3pb3zy09v2g8dh89m363rfd9sch0wgbabh531hfx72vn")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/Microsoft/go-winio")) + (home-page "https://github.com/Microsoft/go-winio") + (synopsis "go-winio") + (description + "This repository contains utilities for efficiently performing Win32 IO operations in +Go. Currently, this is focused on accessing named pipes and other file handles, and +for using named pipes as a net transport.") + (license license:expat))) + +(define-public go-github-com-microsoft-hcsshim-0.8.6 + (package + (name "go-github-com-microsoft-hcsshim") + (version "0.8.6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/microsoft/hcsshim") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "05arx8y4b6rvhjcnwizhc8svzab3ld0njkgj8vijgs27az84z6pw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/Microsoft/hcsshim")) + (home-page "https://github.com/Microsoft/hcsshim") + (synopsis "hcsshim") + (description + "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") + (license license:expat))) + +(define-public go-github-com-alexflint-go-filemutex-0.0.0-20171022225611-72bdc8eae2ae + (package + (name "go-github-com-alexflint-go-filemutex") + (version "0.0.0-20171022225611-72bdc8eae2ae") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/alexflint/go-filemutex") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "082y6y9zv40q3kaqvsv6fyaw2fc42j0sn9z0dl9rbiz4szixj3c4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/alexflint/go-filemutex")) + (home-page "https://github.com/alexflint/go-filemutex") + (synopsis "FileMutex") + (description + "FileMutex is similar to @code{sync.RWMutex}, but also synchronizes across processes. +On Linux, OSX, and other POSIX systems it uses the flock system call. On windows +it uses the LockFileEx and UnlockFileEx system calls.") + (license license:expat))) + +(define-public go-github-com-buger-jsonparser-0.0.0-20180808090653-f4dd9f5a6b44 + (package + (name "go-github-com-buger-jsonparser") + (version "0.0.0-20180808090653-f4dd9f5a6b44") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/buger/jsonparser") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12qa2n33s7yz88ywpr3k9kg3b4gm6rqgnv28iyikyxw8h5jascz5")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/buger/jsonparser")) + (home-page "https://github.com/buger/jsonparser") + (synopsis + "Alternative JSON parser for Go (10x times faster standard library)") + (description + "It does not require you to know the structure of the payload (eg. create structs), and allows accessing fields by providing the path to them. It is up to @strong{10 times faster} than standard @code{encoding/json} package (depending on payload size and usage), @strong{allocates no memory}. See benchmarks below.") + (license license:expat))) + +(define-public go-github-com-containernetworking-cni-0.8.1 + (package + (name "go-github-com-containernetworking-cni") + (version "0.8.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containernetworking/cni") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ydzsiq6kfwjghf5dd4ld2rv3cxgbjq6c1523jxmib1phwf0s75z")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containernetworking/cni")) + (home-page "https://github.com/containernetworking/cni") + (synopsis "CNI - the Container Network Interface") + (description + "CNI (), a @url{https://cncf.io,Cloud Native Computing Foundation} project, consists of a specification and libraries for writing plugins to configure network interfaces in Linux containers, along with a number of supported plugins. +CNI concerns itself only with network connectivity of containers and removing allocated resources when the container is deleted. +Because of this focus, CNI has a wide range of support and the specification is simple to implement.") + (license license:asl2.0))) + +(define-public go-github-com-coreos-go-iptables-0.5.0 + (package + (name "go-github-com-coreos-go-iptables") + (version "0.5.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/coreos/go-iptables") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0syxjad9b3d19sjy7cy7zjpx5bx60yvbhidz8r9cdv43iqadxmp7")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/coreos/go-iptables")) + (home-page "https://github.com/coreos/go-iptables") + (synopsis "go-iptables") + (description "Go bindings for iptables utility.") + (license license:asl2.0))) + +(define-public go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c + (package + (name "go-github-com-d2g-dhcp4") + (version "0.0.0-20170904100407-a1d1b6c41b1c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/d2g/dhcp4") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "191hzw6yqzkm042h6miyycq3g0zrhqjhhpl27f8vhwzp4wanasiz")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/d2g/dhcp4")) + (home-page "https://github.com/d2g/dhcp4") + (synopsis "DHCP4 - A DHCP library written in Go.") + (description + "Warning: This library is still being developed. Function calls will change.") + (license license:bsd-3))) + +(define-public go-github-com-d2g-dhcp4client-1.0.0 + (package + (name "go-github-com-d2g-dhcp4client") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/d2g/dhcp4client") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1n4qrn7xsgvnshmddq56hr8g2si5vfmxi0wnp0w71lmdfsxvvx0q")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/d2g/dhcp4client")) + (home-page "https://github.com/d2g/dhcp4client") + (synopsis "dhcp4client") + (description "DHCP Client") + (license license:mpl2.0))) + +(define-public go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5 + (package + (name "go-github-com-d2g-dhcp4server") + (version "0.0.0-20181031114812-7d4a0a7f59a5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/d2g/dhcp4server") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03ibq32flr74pxfly1yca9qicb6f15xgl159jjg3svgnzfjpblwl")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/d2g/dhcp4server")) + (home-page "https://github.com/d2g/dhcp4server") + (synopsis "dhcp4server") + (description "DHCP Server") + (license license:mpl2.0))) + +(define-public go-github-com-d2g-hardwareaddr-0.0.0-20190221164911-e7d9fbe030e4 + (package + (name "go-github-com-d2g-hardwareaddr") + (version "0.0.0-20190221164911-e7d9fbe030e4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/d2g/hardwareaddr") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "09nm5py9xbb9klwhzqkf6786i3b59ynba78xkrv9jx4ari7ibh8q")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/d2g/hardwareaddr")) + (home-page "https://github.com/d2g/hardwareaddr") + (synopsis "hardwareaddr") + (description "Generate Hardware Addresses") + (license license:mpl2.0))) + +(define-public go-github-com-godbus-dbus-0.0.0-20180201030542-885f9cc04c9c + (package + (name "go-github-com-godbus-dbus") + (version "0.0.0-20180201030542-885f9cc04c9c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/godbus/dbus") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wjpaj4vr5lvpnwc5faf3qizd7zd2v9yq0fm0558wap1hiyqb8x8")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/godbus/dbus")) + (home-page "https://github.com/godbus/dbus") + (synopsis "dbus") + (description + "Package dbus implements bindings to the D-Bus message bus system. +") + (license license:bsd-2))) + +(define-public go-github-com-j-keck-arping-0.0.0-20160618110441-2cf9dc699c56 + (package + (name "go-github-com-j-keck-arping") + (version "0.0.0-20160618110441-2cf9dc699c56") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/j-keck/arping") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1bid8mpx3j4546ni0a6q5xyz7hb854g95qnxqmg5jzs9vrcird3c")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/j-keck/arping")) + (home-page "https://github.com/j-keck/arping") + (synopsis "arping") + (description + "Package arping is a native go library to ping a host per arp datagram, or query a host mac address +") + (license license:expat))) + +(define-public go-github-com-mattn-go-shellwords-1.0.3 + (package + (name "go-github-com-mattn-go-shellwords") + (version "1.0.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mattn/go-shellwords") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1pg7pl25wvpl2dbpyrv9p1r7prnqimxlf6136vn0dfm54j2x4mnr")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mattn/go-shellwords")) + (home-page "https://github.com/mattn/go-shellwords") + (synopsis "go-shellwords") + (description "Parse line as shell words.") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20190904154756-749cb33beabd + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190904154756-749cb33beabd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0dm3257q3rv2kyn5lmqqim2fqg634v6rhrqq4glvbk4wx4l3v337")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-nxadm-tail-1.4.4 + (package + (name "go-github-com-nxadm-tail") + (version "1.4.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/nxadm/tail") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1czmwqii0fc8v3ar5bwqpfanprkxg19waly405zlvcflzvj53wwc")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/nxadm/tail")) + (propagated-inputs + `(("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" + ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) + ("go-golang-org-x-sys-0.0.0-20190904154756-749cb33beabd" + ,go-golang-org-x-sys-0.0.0-20190904154756-749cb33beabd) + ("go-github-com-fsnotify-fsnotify-1.4.7" + ,go-github-com-fsnotify-fsnotify-1.4.7))) + (home-page "https://github.com/nxadm/tail") + (synopsis "tail functionality in Go") + (description + "nxadm/tail provides a Go library that emulates the features of the BSD `tail` +program. The library comes with full support for truncation/move detection as +it is designed to work with log rotation tools. The library works on all +operating systems supported by Go, including POSIX systems like Linux and +*BSD, and MS Windows. Go 1.9 is the oldest compiler release supported. +") + (license license:expat))) + +(define-public go-github-com-onsi-gomega-1.7.1 + (package + (name "go-github-com-onsi-gomega") + (version "1.7.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/onsi/gomega") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "06p3x0910cdaa64l7d44s728d4j3yhps315dlcvrbjzhljjj7mam")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/onsi/gomega")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.4" ,go-gopkg-in-yaml-v2-2.2.4) + ("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" + ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) + ("go-gopkg-in-fsnotify-v1-1.4.7" ,go-gopkg-in-fsnotify-v1-1.4.7) + ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e" + ,go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e) + ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" + ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) + ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" + ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) + ("go-github-com-onsi-ginkgo-1.6.0" ,go-github-com-onsi-ginkgo-1.6.0) + ("go-github-com-hpcloud-tail-1.0.0" ,go-github-com-hpcloud-tail-1.0.0) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0) + ("go-github-com-fsnotify-fsnotify-1.4.7" + ,go-github-com-fsnotify-fsnotify-1.4.7))) + (home-page "https://github.com/onsi/gomega") + (synopsis ": a BDD Testing Framework for Golang") + (description + "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library. +") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20191120155948-bd437916bb0e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1i8x26frmlin55k69k936zd1rp5sqnq14y5ms4rkxbfzhasdm2rx")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-onsi-ginkgo-1.12.1 + (package + (name "go-github-com-onsi-ginkgo") + (version "1.12.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/onsi/ginkgo") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0xs9724l2b0bwjwrvw5cs3akxaw0n1j5kyxrb1ggfsdjz0zmjcxh")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/onsi/ginkgo")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e" + ,go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e) + ("go-github-com-onsi-gomega-1.7.1" ,go-github-com-onsi-gomega-1.7.1) + ("go-github-com-nxadm-tail-1.4.4" ,go-github-com-nxadm-tail-1.4.4))) + (home-page "https://github.com/onsi/ginkgo") + (synopsis "Ginkgo 2.0 Release Candidate is available!") + (description "Ginkgo is a BDD-style testing framework for Golang +") + (license license:expat))) + +(define-public go-golang-org-x-net-0.0.0-20201006153459-a7d1128ccaa0 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20201006153459-a7d1128ccaa0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1iqqq7s95b2a29bspfxv68qnby8vwjvy9f8gl2262p6f9hhp21d2")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) + ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" + ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) + ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" + ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-github-com-onsi-gomega-1.10.3 + (package + (name "go-github-com-onsi-gomega") + (version "1.10.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/onsi/gomega") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1jvp5wlny86ncsqak5rz70qfn61y3ajc64w0hrj4840zgh90zb06")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/onsi/gomega")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.3.0" ,go-gopkg-in-yaml-v2-2.3.0) + ("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) + ("go-golang-org-x-net-0.0.0-20201006153459-a7d1128ccaa0" + ,go-golang-org-x-net-0.0.0-20201006153459-a7d1128ccaa0) + ("go-github-com-onsi-ginkgo-1.12.1" ,go-github-com-onsi-ginkgo-1.12.1) + ("go-github-com-golang-protobuf-1.4.2" + ,go-github-com-golang-protobuf-1.4.2))) + (home-page "https://github.com/onsi/gomega") + (synopsis ": a BDD Testing Framework for Golang") + (description + "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library. +") + (license license:expat))) + +(define-public go-github-com-safchain-ethtool-0.0.0-20190326074333-42ed695e3de8 + (package + (name "go-github-com-safchain-ethtool") + (version "0.0.0-20190326074333-42ed695e3de8") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/safchain/ethtool") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0n5hkrzc1bh46nidcssx4539kvcmgj501v3kzh2pljpg27509daj")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/safchain/ethtool")) + (home-page "https://github.com/safchain/ethtool") + (synopsis "ethtool go package") + (description + "Package ethtool aims to provide a library giving a simple access to the +Linux SIOCETHTOOL ioctl operations. It can be used to retrieve informations +from a network device like statistics, driver related informations or +even the peer of a VETH interface. +") + (license license:asl2.0))) + +(define-public go-github-com-sirupsen-logrus-1.0.6 + (package + (name "go-github-com-sirupsen-logrus") + (version "1.0.6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sirupsen/logrus") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "029irw2lsbqi944gdrbkwdw0m2794sqni4g21gsnmz142hbzds8c")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/sirupsen/logrus")) + (home-page "https://github.com/sirupsen/logrus") + (synopsis "Logrus") + (description + "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. +") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20200217220822-9197077df867 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200217220822-9197077df867") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1270yyiqzlgrsygp2j0qavh4agm4xjv3ljfpk4wgqgmg4ph1lmx1")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-vishvananda-netns-0.0.0-20200728191858-db3c7e526aae + (package + (name "go-github-com-vishvananda-netns") + (version "0.0.0-20200728191858-db3c7e526aae") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/vishvananda/netns") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1gx41r06by67q5yyyvjpr0cyqqs2pcksfaqxy0s36cx4vpjn5x9r")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/vishvananda/netns")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20200217220822-9197077df867" + ,go-golang-org-x-sys-0.0.0-20200217220822-9197077df867))) + (home-page "https://github.com/vishvananda/netns") + (synopsis "netns - network namespaces in go") + (description + "Package netns allows ultra-simple network namespace handling. NsHandles +can be retrieved and set. Note that the current namespace is thread +local so actions that set and reset namespaces should use LockOSThread +to make sure the namespace doesn't change due to a goroutine switch. +It is best to close NsHandles when you are done with them. This can be +accomplished via a `defer ns.Close()` on the handle. Changing namespaces +requires elevated privileges, so in most cases this code needs to be run +as root. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-sys-0.0.0-20200728102440-3e129f6d46b1 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200728102440-3e129f6d46b1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "02wcaghvpysqijiqsiimk52vma7lx99g5kvdid2r1qsf9hmwgvy2")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-vishvananda-netlink-1.1.1-0.20201029203352-d40f9887b852 + (package + (name "go-github-com-vishvananda-netlink") + (version "1.1.1-0.20201029203352-d40f9887b852") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/vishvananda/netlink") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1aq13npm7vd153vxrk1vhsg36r2g9hrh21cvk422ssrf57qy2fsj")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/vishvananda/netlink")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20200728102440-3e129f6d46b1" + ,go-golang-org-x-sys-0.0.0-20200728102440-3e129f6d46b1) + ("go-github-com-vishvananda-netns-0.0.0-20200728191858-db3c7e526aae" + ,go-github-com-vishvananda-netns-0.0.0-20200728191858-db3c7e526aae))) + (home-page "https://github.com/vishvananda/netlink") + (synopsis "netlink - netlink library for go") + (description + "Package netlink provides a simple library for netlink. Netlink is +the interface a user-space program in linux uses to communicate with +the kernel. It can be used to add and remove interfaces, set up ip +addresses and routes, and confiugre ipsec. Netlink communication +requires elevated privileges, so in most cases this code needs to +be run as root. The low level primitives for netlink are contained +in the nl subpackage. This package attempts to provide a high-level +interface that is loosly modeled on the iproute2 cli. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-sys-0.0.0-20201117170446-d9b008d0a637 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20201117170446-d9b008d0a637") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "06pp1nrhzx6nm6rwwzm0xzf8bs3r1mfsrkclyhlhnr7x5r0a0ppi")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-gopkg-in-airbrake-gobrake-v2-2.0.9 + (package + (name "go-gopkg-in-airbrake-gobrake-v2") + (version "2.0.9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/airbrake/gobrake.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1x06f7n7qlyzqgyz0sdfcidf3w4ldn6zs6qx2mhibggk2z4whcjw")))) + (build-system go-build-system) + (arguments + '(#:import-path + "gopkg.in/airbrake/gobrake.v2" + #:unpack-path + "gopkg.in/airbrake/gobrake.v2")) + (home-page "https://gopkg.in/airbrake/gobrake.v2") + (synopsis "Airbrake Golang Notifier") + (description + "You can use @url{https://github.com/airbrake/glog,glog fork} to send your logs to Airbrake.") + (license license:bsd-3))) + +(define-public go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2 + (package + (name "go-gopkg-in-gemnasium-logrus-airbrake-hook-v2") + (version "2.1.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/gemnasium/logrus-airbrake-hook.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0sbg0dn6cysmf8f2bi209jwl4jnpiwp4rdghnxlzirw3c32ms5y5")))) + (build-system go-build-system) + (arguments + '(#:import-path + "gopkg.in/gemnasium/logrus-airbrake-hook.v2" + #:unpack-path + "gopkg.in/gemnasium/logrus-airbrake-hook.v2")) + (home-page "https://gopkg.in/gemnasium/logrus-airbrake-hook.v2") + (synopsis "Airbrake Hook for Logrus") + (description + "Use this hook to send your errors to @url{https://airbrake.io/,Airbrake}. +This hook is using the @url{https://github.com/airbrake/gobrake,official airbrake go package}, and will hit the api V3. +The hook is synchronous and will send the error for @code{log.Error}, @code{log.Fatal} and @code{log.Panic} levels.") + (license license:expat))) + +(define-public go-github-com-containernetworking-plugins-0.9.1 + (package + (name "go-github-com-containernetworking-plugins") + (version "0.9.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containernetworking/plugins") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "17rafngfa9b0ybs3j4lvjjqdva6jkamhnbb1n0qnv685g0asvqwz")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containernetworking/plugins")) + (propagated-inputs + `(("go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2" + ,go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2) + ("go-gopkg-in-airbrake-gobrake-v2-2.0.9" + ,go-gopkg-in-airbrake-gobrake-v2-2.0.9) + ("go-golang-org-x-sys-0.0.0-20201117170446-d9b008d0a637" + ,go-golang-org-x-sys-0.0.0-20201117170446-d9b008d0a637) + ("go-github-com-vishvananda-netlink-1.1.1-0.20201029203352-d40f9887b852" + ,go-github-com-vishvananda-netlink-1.1.1-0.20201029203352-d40f9887b852) + ("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0) + ("go-github-com-sirupsen-logrus-1.0.6" + ,go-github-com-sirupsen-logrus-1.0.6) + ("go-github-com-safchain-ethtool-0.0.0-20190326074333-42ed695e3de8" + ,go-github-com-safchain-ethtool-0.0.0-20190326074333-42ed695e3de8) + ("go-github-com-onsi-gomega-1.10.3" ,go-github-com-onsi-gomega-1.10.3) + ("go-github-com-onsi-ginkgo-1.12.1" ,go-github-com-onsi-ginkgo-1.12.1) + ("go-github-com-mattn-go-shellwords-1.0.3" + ,go-github-com-mattn-go-shellwords-1.0.3) + ("go-github-com-j-keck-arping-0.0.0-20160618110441-2cf9dc699c56" + ,go-github-com-j-keck-arping-0.0.0-20160618110441-2cf9dc699c56) + ("go-github-com-godbus-dbus-0.0.0-20180201030542-885f9cc04c9c" + ,go-github-com-godbus-dbus-0.0.0-20180201030542-885f9cc04c9c) + ("go-github-com-d2g-hardwareaddr-0.0.0-20190221164911-e7d9fbe030e4" + ,go-github-com-d2g-hardwareaddr-0.0.0-20190221164911-e7d9fbe030e4) + ("go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5" + ,go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5) + ("go-github-com-d2g-dhcp4client-1.0.0" + ,go-github-com-d2g-dhcp4client-1.0.0) + ("go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c" + ,go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c) + ("go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7" + ,go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7) + ("go-github-com-coreos-go-iptables-0.5.0" + ,go-github-com-coreos-go-iptables-0.5.0) + ("go-github-com-containernetworking-cni-0.8.1" + ,go-github-com-containernetworking-cni-0.8.1) + ("go-github-com-buger-jsonparser-0.0.0-20180808090653-f4dd9f5a6b44" + ,go-github-com-buger-jsonparser-0.0.0-20180808090653-f4dd9f5a6b44) + ("go-github-com-alexflint-go-filemutex-0.0.0-20171022225611-72bdc8eae2ae" + ,go-github-com-alexflint-go-filemutex-0.0.0-20171022225611-72bdc8eae2ae) + ("go-github-com-microsoft-hcsshim-0.8.6" + ,go-github-com-microsoft-hcsshim-0.8.6) + ("go-github-com-microsoft-go-winio-0.4.11" + ,go-github-com-microsoft-go-winio-0.4.11))) + (home-page "https://github.com/containernetworking/plugins") + (synopsis "Plugins") + (description + "Some CNI network plugins, maintained by the containernetworking team. For more information, see the @url{https://www.cni.dev,CNI website}.") + (license license:asl2.0))) + +(define-public go-github-com-google-uuid-1.2.0 + (package + (name "go-github-com-google-uuid") + (version "1.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/uuid") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "08wqig98w23cg2ngjijhgm6s0mdayb95awa3cn3bs69lg20gryac")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/uuid")) + (home-page "https://github.com/google/uuid") + (synopsis "uuid") + (description "Package uuid generates and inspects UUIDs. +") + (license license:bsd-3))) + +(define-public go-gopkg-in-yaml-v2-2.3.0 + (package + (name "go-gopkg-in-yaml-v2") + (version "2.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1md0hlyd9s6myv3663i9l59y74n4xjazifmmyxn43g86fgkc5lzj")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v2") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language. +") + (license license:asl2.0))) + +(define-public go-github-com-imdario-mergo-0.3.12 + (package + (name "go-github-com-imdario-mergo") + (version "0.3.12") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/imdario/mergo") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "15s6807vcm7xq4l6my7rnw1i7x57712jvdidjli5bip79jfaxw90")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/imdario/mergo")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.3.0" ,go-gopkg-in-yaml-v2-2.3.0))) + (home-page "https://github.com/imdario/mergo") + (synopsis "Mergo") + (description + "This package provides a helper to merge structs and maps in Golang. Useful for configuration default values, avoiding messy if-statements. +") + (license license:bsd-3))) + +(define-public go-github-com-opencontainers-image-spec-1.0.1 + (package + (name "go-github-com-opencontainers-image-spec") + (version "1.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/image-spec") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03dvbj3dln8c55v9gp79mgmz2yi2ws3r08iyz2fk41y3i22iaw1q")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/image-spec")) + (home-page "https://github.com/opencontainers/image-spec") + (synopsis "OCI Image Format Specification") + (description + "The OCI Image Format project creates and maintains the software shipping container image format spec (OCI Image Format).") + (license license:asl2.0))) + +(define-public go-github-com-checkpoint-restore-go-criu-v5-5.0.0 + (package + (name "go-github-com-checkpoint-restore-go-criu-v5") + (version "5.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/checkpoint-restore/go-criu") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "07dal5a9y43azkkh61jf6s81h7anbl17drkh2mal9mzcsi8wa2z8")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/checkpoint-restore/go-criu/v5")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.23.0" + ,go-google-golang-org-protobuf-1.23.0) + ("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" + ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) + ("go-github-com-golang-protobuf-1.4.3" + ,go-github-com-golang-protobuf-1.4.3))) + (home-page "https://github.com/checkpoint-restore/go-criu") + (synopsis "go-criu -- Go bindings for CRIU") + (description + "This repository provides Go bindings for @url{https://criu.org/,CRIU}. The code is based on the Go-based PHaul +implementation from the CRIU repository. For easier inclusion into other Go projects the +CRIU Go bindings have been moved to this repository.") + (license license:asl2.0))) + +(define-public go-github-com-kr-pretty-0.2.1 + (package + (name "go-github-com-kr-pretty") + (version "0.2.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/pretty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0vzfz06y9q8gs2nxx0kys0591vzp78k0fvpb8digi5n15h3b25hy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/pretty")) + (propagated-inputs + `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) + (home-page "https://github.com/kr/pretty") + (synopsis #f) + (description + "Package pretty provides pretty-printing for Go values. This is +useful during debugging, to avoid wrapping long output lines in +the terminal. +") + (license license:expat))) + +(define-public go-github-com-frankban-quicktest-1.11.3 + (package + (name "go-github-com-frankban-quicktest") + (version "1.11.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/frankban/quicktest") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0d5njmwkfq2809vlimnlvy8ir6kln0c4cgdwr680fwsclpbr43qs")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/frankban/quicktest")) + (propagated-inputs + `(("go-github-com-kr-pretty-0.2.1" ,go-github-com-kr-pretty-0.2.1) + ("go-github-com-google-go-cmp-0.5.4" + ,go-github-com-google-go-cmp-0.5.4))) + (home-page "https://github.com/frankban/quicktest") + (synopsis "quicktest") + (description + "Package quicktest provides a collection of Go helpers for writing tests. +") + (license license:expat))) + +(define-public go-github-com-cilium-ebpf-0.6.2 + (package + (name "go-github-com-cilium-ebpf") + (version "0.6.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cilium/ebpf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0x64sg0kyc8bbsp75dpv8g2jfmpdldsshf9ni49jh6rgsnnqhpf8")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/cilium/ebpf")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" + ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) + ("go-github-com-google-go-cmp-0.5.4" + ,go-github-com-google-go-cmp-0.5.4) + ("go-github-com-frankban-quicktest-1.11.3" + ,go-github-com-frankban-quicktest-1.11.3))) + (home-page "https://github.com/cilium/ebpf") + (synopsis "eBPF") + (description "Package ebpf is a toolkit for working with eBPF programs. +") + (license license:expat))) + +(define-public go-github-com-containerd-console-1.0.2 + (package + (name "go-github-com-containerd-console") + (version "1.0.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/console") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0rxwgq578hphs2ldx1gg6c9fq1qm8rgqfx3vgi2sbrsmxn6m2438")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/console")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" + ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) + (home-page "https://github.com/containerd/console") + (synopsis "console") + (description + "Golang package for dealing with consoles. Light on deps and a simple API.") + (license license:asl2.0))) + +(define-public go-github-com-coreos-go-systemd-v22-22.3.2 + (package + (name "go-github-com-coreos-go-systemd-v22") + (version "22.3.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/coreos/go-systemd") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ndi86b8va84ha93njqgafypz4di7yxfd5r5kf1r0s3y3ghcjajq")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/coreos/go-systemd/v22")) + (propagated-inputs + `(("go-github-com-godbus-dbus-v5-5.0.4" + ,go-github-com-godbus-dbus-v5-5.0.4))) + (home-page "https://github.com/coreos/go-systemd") + (synopsis "go-systemd") + (description "Go bindings to systemd. The project has several packages:") + (license license:asl2.0))) + +(define-public go-github-com-cyphar-filepath-securejoin-0.2.2 + (package + (name "go-github-com-cyphar-filepath-securejoin") + (version "0.2.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cyphar/filepath-securejoin") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0id32zjb92wm569m29nfrzz5mw9z1glr3klayr6j134pp4h1sgq4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/cyphar/filepath-securejoin")) + (home-page "https://github.com/cyphar/filepath-securejoin") + (synopsis #f) + (description + "Package securejoin is an implementation of the hopefully-soon-to-be-included +SecureJoin helper that is meant to be part of the \"path/filepath\" package. +The purpose of this project is to provide a PoC implementation to make the +SecureJoin proposal (@url{https://github.com/golang/go/issues/20126,https://github.com/golang/go/issues/20126}) more +tangible. +") + (license license:bsd-3))) + +(define-public go-github-com-godbus-dbus-v5-5.0.4 + (package + (name "go-github-com-godbus-dbus-v5") + (version "5.0.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/godbus/dbus") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0znax8kskb5gmp5fj75w56bc9p7b22wrdswzlh4d04sprlc471yi")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/godbus/dbus/v5")) + (home-page "https://github.com/godbus/dbus") + (synopsis "dbus") + (description + "Package dbus implements bindings to the D-Bus message bus system. +") + (license license:bsd-2))) + +(define-public go-github-com-mrunalp-fileutils-0.5.0 + (package + (name "go-github-com-mrunalp-fileutils") + (version "0.5.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mrunalp/fileutils") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1zrs959gf4zgi6ijwkdn4dcqk0svfblpaikkqy63q30rqz4swm0x")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mrunalp/fileutils")) + (home-page "https://github.com/mrunalp/fileutils") + (synopsis "fileutils") + (description "Collection of utilities for file manipulation in golang") + (license license:asl2.0))) + +(define-public go-github-com-seccomp-libseccomp-golang-0.9.1 + (package + (name "go-github-com-seccomp-libseccomp-golang") + (version "0.9.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/seccomp/libseccomp-golang") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "022c8prvxz0shrifams7lq4xidvkcqg9xi87wjjcpmbikqi72cna")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/seccomp/libseccomp-golang")) + (home-page "https://github.com/seccomp/libseccomp-golang") + (synopsis #f) + (description + "Package seccomp provides bindings for libseccomp, a library wrapping the Linux +seccomp syscall. Seccomp enables an application to restrict system call use +for itself and its children. +") + (license license:bsd-2))) + +(define-public go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635 + (package + (name "go-github-com-syndtr-gocapability") + (version "0.0.0-20200815063812-42c35b437635") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/syndtr/gocapability") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "00zi0k190ydlm9drnafvj9p4cf6axm858wr71pbmq1p3r94iqws4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/syndtr/gocapability")) + (home-page "https://github.com/syndtr/gocapability") + (synopsis #f) + (description #f) + (license license:bsd-2))) + +(define-public go-github-com-vishvananda-netns-0.0.0-20191106174202-0a2b9b5464df + (package + (name "go-github-com-vishvananda-netns") + (version "0.0.0-20191106174202-0a2b9b5464df") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/vishvananda/netns") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1k1zb7pzc4r4wicq7ncspf6zsvq298lvpsq963ibj813shg657xw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/vishvananda/netns")) + (home-page "https://github.com/vishvananda/netns") + (synopsis "netns - network namespaces in go") + (description + "Package netns allows ultra-simple network namespace handling. NsHandles +can be retrieved and set. Note that the current namespace is thread +local so actions that set and reset namespaces should use LockOSThread +to make sure the namespace doesn't change due to a goroutine switch. +It is best to close NsHandles when you are done with them. This can be +accomplished via a `defer ns.Close()` on the handle. Changing namespaces +requires elevated privileges, so in most cases this code needs to be run +as root. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-sys-0.0.0-20190606203320-7fc4e5ec1444 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190606203320-7fc4e5ec1444") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18rv3m1kksv3758aqiaac2l6j334g0bapic6ibsj999agcn7y9fg")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-vishvananda-netlink-1.1.0 + (package + (name "go-github-com-vishvananda-netlink") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/vishvananda/netlink") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1vhl30p1gx636a088ls4h6a0l8jjyfvz79fr5w0qzdrg4qg9h08h")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/vishvananda/netlink")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190606203320-7fc4e5ec1444" + ,go-golang-org-x-sys-0.0.0-20190606203320-7fc4e5ec1444) + ("go-github-com-vishvananda-netns-0.0.0-20191106174202-0a2b9b5464df" + ,go-github-com-vishvananda-netns-0.0.0-20191106174202-0a2b9b5464df))) + (home-page "https://github.com/vishvananda/netlink") + (synopsis "netlink - netlink library for go") + (description + "Package netlink provides a simple library for netlink. Netlink is +the interface a user-space program in linux uses to communicate with +the kernel. It can be used to add and remove interfaces, set up ip +addresses and routes, and confiugre ipsec. Netlink communication +requires elevated privileges, so in most cases this code needs to +be run as root. The low level primitives for netlink are contained +in the nl subpackage. This package attempts to provide a high-level +interface that is loosly modeled on the iproute2 cli. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b + (package + (name "go-golang-org-x-net") + (version "0.0.0-20201224014010-6772e930b67b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0zlr39dxbg0fxfdrc20c4x0pw43n9kz749ssml97cdzqy116p5qa")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) + ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" + ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) + ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" + ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-github-com-opencontainers-runc-1.0.2 + (package + (name "go-github-com-opencontainers-runc") + (version "1.0.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/runc") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1bpckghjah0rczciw1a1ab8z718lb2d3k4mjm4zb45lpm3njmrcp")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/runc")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.26.0" + ,go-google-golang-org-protobuf-1.26.0) + ("go-golang-org-x-sys-0.0.0-20210426230700-d19ff857e887" + ,go-golang-org-x-sys-0.0.0-20210426230700-d19ff857e887) + ("go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b" + ,go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b) + ("go-github-com-vishvananda-netlink-1.1.0" + ,go-github-com-vishvananda-netlink-1.1.0) + ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) + ("go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635" + ,go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635) + ("go-github-com-sirupsen-logrus-1.8.1" + ,go-github-com-sirupsen-logrus-1.8.1) + ("go-github-com-seccomp-libseccomp-golang-0.9.1" + ,go-github-com-seccomp-libseccomp-golang-0.9.1) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-selinux-1.8.2" + ,go-github-com-opencontainers-selinux-1.8.2) + ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417" + ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417) + ("go-github-com-mrunalp-fileutils-0.5.0" + ,go-github-com-mrunalp-fileutils-0.5.0) + ("go-github-com-moby-sys-mountinfo-0.4.1" + ,go-github-com-moby-sys-mountinfo-0.4.1) + ("go-github-com-godbus-dbus-v5-5.0.4" + ,go-github-com-godbus-dbus-v5-5.0.4) + ("go-github-com-docker-go-units-0.4.0" + ,go-github-com-docker-go-units-0.4.0) + ("go-github-com-cyphar-filepath-securejoin-0.2.2" + ,go-github-com-cyphar-filepath-securejoin-0.2.2) + ("go-github-com-coreos-go-systemd-v22-22.3.2" + ,go-github-com-coreos-go-systemd-v22-22.3.2) + ("go-github-com-containerd-console-1.0.2" + ,go-github-com-containerd-console-1.0.2) + ("go-github-com-cilium-ebpf-0.6.2" ,go-github-com-cilium-ebpf-0.6.2) + ("go-github-com-checkpoint-restore-go-criu-v5-5.0.0" + ,go-github-com-checkpoint-restore-go-criu-v5-5.0.0) + ("go-github-com-bits-and-blooms-bitset-1.2.0" + ,go-github-com-bits-and-blooms-bitset-1.2.0))) + (home-page "https://github.com/opencontainers/runc") + (synopsis "runc") + (description + "@code{runc} is a CLI tool for spawning and running containers according to the OCI specification.") + (license license:asl2.0))) + +(define-public go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417 + (package + (name "go-github-com-opencontainers-runtime-spec") + (version "1.0.3-0.20210326190908-1c3f411f0417") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/runtime-spec") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1azk8z41ga8af35c966f06vrq9y9hwz6mkm59r3py5qaamzim3qq")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) + (home-page "https://github.com/opencontainers/runtime-spec") + (synopsis "Open Container Initiative Runtime Specification") + (description + "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") + (license license:asl2.0))) + +(define-public go-github-com-bits-and-blooms-bitset-1.2.0 + (package + (name "go-github-com-bits-and-blooms-bitset") + (version "1.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/bits-and-blooms/bitset") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0r9f7lvz6znl7yr6njg77m8hj472yhdshf1qaybwyw7j8as6c4r3")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/bits-and-blooms/bitset")) + (home-page "https://github.com/bits-and-blooms/bitset") + (synopsis "bitset") + (description + "Package bitset implements bitsets, a mapping +between non-negative integers and boolean values. It should be more +efficient than map[uint] bool. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20191115151921-52ab43148777") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1kakxbqrb1w2vwg7r1896z68qcx2lfvimsl8cs2niiipbgpi6imx")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-opencontainers-selinux-1.8.2 + (package + (name "go-github-com-opencontainers-selinux") + (version "1.8.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/selinux") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1dl1h8nzpyhsfki1dcjphm5h4n52qwilahyl6qlnwgzcc76pwizq")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/selinux")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777" + ,go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-bits-and-blooms-bitset-1.2.0" + ,go-github-com-bits-and-blooms-bitset-1.2.0))) + (home-page "https://github.com/opencontainers/selinux") + (synopsis "selinux") + (description "Common SELinux package used across the container ecosystem.") + (license license:asl2.0))) + +(define-public go-github-com-pelletier-go-toml-1.8.1 + (package + (name "go-github-com-pelletier-go-toml") + (version "1.8.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pelletier/go-toml") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1pi1r9ds0vxjza4qrbk52y98wxrzh1ghwzc9c2v1w6i02pdwdcz9")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pelletier/go-toml")) + (propagated-inputs + `(("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/pelletier/go-toml") + (synopsis "go-toml") + (description "Package toml is a TOML parser and manipulation library. +") + (license #f))) + +(define-public go-github-com-satori-go-uuid-1.2.0 + (package + (name "go-github-com-satori-go-uuid") + (version "1.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/satori/go.uuid") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1j4s5pfg2ldm35y8ls8jah4dya2grfnx2drb4jcbjsyrp4cm5yfb")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/satori/go.uuid")) + (home-page "https://github.com/satori/go.uuid") + (synopsis "UUID package for Go language") + (description + "Package uuid provides implementation of Universally Unique Identifier (UUID). +Supported versions are 1, 3, 4 and 5 (as specified in @url{https://rfc-editor.org/rfc/rfc4122.html,RFC 4122}) and +version 2 (as specified in DCE 1.1). +") + (license license:expat))) + +(define-public go-github-com-tchap-go-patricia-2.2.6+incompatible + (package + (name "go-github-com-tchap-go-patricia") + (version "2.2.6+incompatible") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/tchap/go-patricia") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1yy1s3pnll52iyzphwi50drvz36lx628vn3xfy5ld29fxqngrckb")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/tchap/go-patricia")) + (home-page "https://github.com/tchap/go-patricia") + (synopsis "go-patricia") + (description + "@strong{Documentation}: @url{http://godoc.org/github.com/tchap/go-patricia/patricia,GoDoc} +@strong{Test Coverage}: @url{https://coveralls.io/r/tchap/go-patricia,(img (@ (src https://coveralls.io/repos/tchap/go-patricia/badge.png) (alt CoverageStatus)))}") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20210426230700-d19ff857e887 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20210426230700-d19ff857e887") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12m35a34dfm99agcv2ln9zvvyczigaxfwqbzqirvwn1lw4784whn")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-gotest-tools-v3-3.0.3 + (package + (name "go-gotest-tools-v3") + (version "3.0.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gotestyourself/gotest.tools") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1h316233n33lkfhbak8ljdj5i8df6hcwwm48n200svf22x3d95ww")))) + (build-system go-build-system) + (arguments + '(#:import-path "gotest.tools/v3" #:unpack-path "gotest.tools/v3")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20190624222133-a101b041ded4" + ,go-golang-org-x-tools-0.0.0-20190624222133-a101b041ded4) + ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) + ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0))) + (home-page "https://gotest.tools/v3") + (synopsis "gotest.tools") + (description + "Package gotesttools is a collection of packages to augment `testing` and +support common patterns. +") + (license license:asl2.0))) + +(define-public go-github-com-coreos-go-oidc-2.1.0+incompatible + (package + (name "go-github-com-coreos-go-oidc") + (version "2.1.0+incompatible") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/coreos/go-oidc") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0y9vxack1whvxy766jrc6xhh2rfkvnznwxi356si2kabzjv2lp6h")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/coreos/go-oidc")) + (home-page "https://github.com/coreos/go-oidc") + (synopsis "go-oidc") + (description + "Package oidc implements OpenID Connect client logic for the golang.org/x/oauth2 package. +") + (license license:asl2.0))) + +(define-public go-github-com-coreos-go-semver-0.3.0 + (package + (name "go-github-com-coreos-go-semver") + (version "0.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/coreos/go-semver") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0770h1mpig2j5sbiha3abnwaw8p6dg9i87r8pc7cf6m4kwml3sc9")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/coreos/go-semver")) + (home-page "https://github.com/coreos/go-semver") + (synopsis "go-semver - Semantic Versioning Library") + (description + "go-semver is a @url{http://semver.org/,semantic versioning} library for Go. It lets you parse +and compare two semantic version strings.") + (license license:asl2.0))) + +(define-public go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e + (package + (name "go-github-com-coreos-go-systemd") + (version "0.0.0-20190321100706-95778dfbb74e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/coreos/go-systemd") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1s3bg9p78wkixn2bqb2p23wbsqfg949ml6crw2b498s71mwh8rcf")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/coreos/go-systemd")) + (home-page "https://github.com/coreos/go-systemd") + (synopsis "go-systemd") + (description "Go bindings to systemd. The project has several packages:") + (license license:asl2.0))) + +(define-public go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f + (package + (name "go-github-com-coreos-pkg") + (version "0.0.0-20180928190104-399ea9e2e55f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/coreos/pkg") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0nxbn0m7lr4dg0yrwnvlkfiyg3ndv8vdpssjx7b714nivpc6ar0y")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/coreos/pkg")) + (home-page "https://github.com/coreos/pkg") + (synopsis #f) + (description "a collection of go utility packages") + (license license:asl2.0))) + +(define-public go-github-com-dustin-go-humanize-1.0.0 + (package + (name "go-github-com-dustin-go-humanize") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/dustin/go-humanize") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1kqf1kavdyvjk7f8kx62pnm7fbypn9z1vbf8v2qdh3y7z7a0cbl3")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/dustin/go-humanize")) + (home-page "https://github.com/dustin/go-humanize") + (synopsis "Humane Units") + (description + "Package humanize converts boring ugly numbers to human-friendly strings and back. +") + (license license:expat))) + +(define-public go-github-com-emicklei-go-restful-2.9.5+incompatible + (package + (name "go-github-com-emicklei-go-restful") + (version "2.9.5+incompatible") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/emicklei/go-restful") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0258y7q2krih98zznc4jsym9mf689afn6nsnsif1jhshrj653k36")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/emicklei/go-restful")) + (home-page "https://github.com/emicklei/go-restful") + (synopsis "go-restful") + (description + "Package restful , a lean package for creating REST-style WebServices without magic. +") + (license license:expat))) + +(define-public go-github-com-gorilla-websocket-1.4.2 + (package + (name "go-github-com-gorilla-websocket") + (version "1.4.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gorilla/websocket") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0mkm9w6kjkrlzab5wh8p4qxkc0icqawjbvr01d2nk6ykylrln40s")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/gorilla/websocket")) + (home-page "https://github.com/gorilla/websocket") + (synopsis "Gorilla WebSocket") + (description + "Package websocket implements the WebSocket protocol defined in @url{https://rfc-editor.org/rfc/rfc6455.html,RFC 6455}. +") + (license license:bsd-2))) + +(define-public go-github-com-mailru-easyjson-0.7.0 + (package + (name "go-github-com-mailru-easyjson") + (version "0.7.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mailru/easyjson") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "13zv5fvjp3nr65lhqhiw6i6mlmqvyls882rlmcas0ab35alsxni8")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mailru/easyjson")) + (home-page "https://github.com/mailru/easyjson") + (synopsis "easyjson") + (description + "Package easyjson contains marshaler/unmarshaler interfaces and helper functions. +") + (license license:expat))) + +(define-public go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822 + (package + (name "go-github-com-munnerz-goautoneg") + (version "0.0.0-20191010083416-a7dc8b61c822") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/munnerz/goautoneg") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1m4v6bw6yf1g0kvpc46isjp0qfhx2y8gnvlnyjf637jy64613mgg")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/munnerz/goautoneg")) + (home-page "https://github.com/munnerz/goautoneg") + (synopsis #f) + (description #f) + (license license:bsd-3))) + +(define-public go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021 + (package + (name "go-github-com-pquerna-cachecontrol") + (version "0.0.0-20171018203845-0dec1b30a021") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pquerna/cachecontrol") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "14yyfhrv60rvb983rqm7s916nwvn9kcmbvnrcna2md0s3mkzs3yh")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pquerna/cachecontrol")) + (home-page "https://github.com/pquerna/cachecontrol") + (synopsis "cachecontrol: HTTP Caching Parser and Interpretation") + (description + "Package cachecontrol implements the logic for HTTP Caching +") + (license license:asl2.0))) + +(define-public go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5 + (package + (name "go-github-com-tmc-grpc-websocket-proxy") + (version "0.0.0-20190109142713-0ad062ec5ee5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/tmc/grpc-websocket-proxy") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1anw4v9wspnw9xf2z5r9w0sszwjklyanl0l85wgg6nxak9gnrqp4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/tmc/grpc-websocket-proxy")) + (home-page "https://github.com/tmc/grpc-websocket-proxy") + (synopsis "grpc-websocket-proxy") + (description + "Wrap your grpc-gateway mux with this helper to expose streaming endpoints over websockets.") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20200202164722-d101bd2416d5 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200202164722-d101bd2416d5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ksxf37b0ym21n8j29m3wgbaiw1kcjw3hgf88kipc1ry2j13l98p")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-go-etcd-io-bbolt-1.3.5 + (package + (name "go-go-etcd-io-bbolt") + (version "1.3.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/etcd-io/bbolt") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1h64gipvcg7060byv5wjlf524kqwj12p3v08kfh4ygv46vpm8p2r")))) + (build-system go-build-system) + (arguments '(#:import-path "go.etcd.io/bbolt")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20200202164722-d101bd2416d5" + ,go-golang-org-x-sys-0.0.0-20200202164722-d101bd2416d5))) + (home-page "https://go.etcd.io/bbolt") + (synopsis "bbolt") + (description + "package bbolt implements a low-level key/value store in pure Go. It supports +fully serializable transactions, ACID semantics, and lock-free MVCC with +multiple readers and a single writer. Bolt can be used for projects that +want a simple data store without the need to add large dependencies such as +Postgres or MySQL. +") + (license license:expat))) + +(define-public go-github-com-cockroachdb-datadriven-0.0.0-20190809214429-80d97fb3cbaa + (package + (name "go-github-com-cockroachdb-datadriven") + (version "0.0.0-20190809214429-80d97fb3cbaa") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cockroachdb/datadriven") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0rvavka9zhri6r50n8fy98247fl5vycb1hffjrhshsicjv1frmlp")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/cockroachdb/datadriven")) + (home-page "https://github.com/cockroachdb/datadriven") + (synopsis "Data-Driven Tests for Go") + (description + "This repository implements an extension of @url{https://github.com/golang/go/wiki/TableDrivenTests,Table-Driven Testing}. Instead of +building and iterating over a table in the test code, the input is further +separated into files (or inline strings). For certain classes of tests, this +can significantly reduce the friction involved in writing and reading these +tests.") + (license license:asl2.0))) + +(define-public go-github-com-coreos-go-semver-0.2.0 + (package + (name "go-github-com-coreos-go-semver") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/coreos/go-semver") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1gghi5bnqj50hfxhqc1cxmynqmh2yk9ii7ab9gsm75y5cp94ymk0")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/coreos/go-semver")) + (home-page "https://github.com/coreos/go-semver") + (synopsis "go-semver - Semantic Versioning Library") + (description + "go-semver is a @url{http://semver.org/,semantic versioning} library for Go. It lets you parse +and compare two semantic version strings.") + (license license:asl2.0))) + +(define-public go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7 + (package + (name "go-github-com-coreos-go-systemd") + (version "0.0.0-20180511133405-39ca1b05acc7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/coreos/go-systemd") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1kzqrrzqspa5qm7kwslxl3m16lqzns23c24rv474ajzwmj3ixmx1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/coreos/go-systemd")) + (home-page "https://github.com/coreos/go-systemd") + (synopsis "go-systemd") + (description "Go bindings to systemd. The project has several packages:") + (license license:asl2.0))) + +(define-public go-github-com-coreos-pkg-0.0.0-20160727233714-3ac0863d7acf + (package + (name "go-github-com-coreos-pkg") + (version "0.0.0-20160727233714-3ac0863d7acf") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/coreos/pkg") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0l5ans1ls2gknkrnhymgc0zbgg5nqjbjbqc51r611adcr0m6gg8l")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/coreos/pkg")) + (home-page "https://github.com/coreos/pkg") + (synopsis #f) + (description "a collection of go utility packages") + (license license:asl2.0))) + +(define-public go-github-com-creack-pty-1.1.7 + (package + (name "go-github-com-creack-pty") + (version "1.1.7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/creack/pty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1plwwlk1i9b80zv8zdplvv81shfyc9gf0flydnydsh5sr3ib5vrc")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/creack/pty")) + (home-page "https://github.com/creack/pty") + (synopsis "pty") + (description + "Package pty provides functions for working with Unix terminals. +") + (license license:expat))) + +(define-public go-github-com-dgrijalva-jwt-go-3.2.0+incompatible + (package + (name "go-github-com-dgrijalva-jwt-go") + (version "3.2.0+incompatible") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/dgrijalva/jwt-go") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "08m27vlms74pfy5z79w67f9lk9zkx6a9jd68k3c4msxy75ry36mp")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/dgrijalva/jwt-go")) + (home-page "https://github.com/dgrijalva/jwt-go") + (synopsis "jwt-go") + (description + "Package jwt is a Go implementation of JSON Web Tokens: @url{http://self-issued.info/docs/draft-jones-json-web-token.html,http://self-issued.info/docs/draft-jones-json-web-token.html} +") + (license license:expat))) + +(define-public go-github-com-dustin-go-humanize-0.0.0-20171111073723-bb3d318650d4 + (package + (name "go-github-com-dustin-go-humanize") + (version "0.0.0-20171111073723-bb3d318650d4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/dustin/go-humanize") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1lqd8ix3cb164j5iazjby2jpa6bdsflhy0h9mi4yldvvcvrc194c")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/dustin/go-humanize")) + (home-page "https://github.com/dustin/go-humanize") + (synopsis "Humane Units") + (description + "Package humanize converts boring ugly numbers to human-friendly strings and back. +") + (license license:expat))) + +(define-public go-golang-org-x-tools-0.0.0-20180221164845-07fd8470d635 + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20180221164845-07fd8470d635") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "193g0a1zxb9ikph7r2klc6rdqxqzfmmr8d5bcibyhsm2l63s17mx")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-github-com-kisielk-errcheck-1.1.0 + (package + (name "go-github-com-kisielk-errcheck") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kisielk/errcheck") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19vd4rxmqbk5lpiav3pf7df3yjlz0l0dwx9mn0gjq5f998iyhy6y")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kisielk/errcheck")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20180221164845-07fd8470d635" + ,go-golang-org-x-tools-0.0.0-20180221164845-07fd8470d635) + ("go-github-com-kisielk-gotool-1.0.0" + ,go-github-com-kisielk-gotool-1.0.0))) + (home-page "https://github.com/kisielk/errcheck") + (synopsis "errcheck") + (description + "errcheck is a program for checking for unchecked errors in go programs.") + (license license:expat))) + +(define-public go-github-com-gogo-protobuf-1.2.1 + (package + (name "go-github-com-gogo-protobuf") + (version "1.2.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gogo/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "06yqa6h0kw3gr5pc3qmas7f7435a96zf7iw7p0l00r2hqf6fqq6m")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/gogo/protobuf")) + (propagated-inputs + `(("go-github-com-kisielk-errcheck-1.1.0" + ,go-github-com-kisielk-errcheck-1.1.0))) + (home-page "https://github.com/gogo/protobuf") + (synopsis "Protocol Buffers for Go with Gadgets") + (description + "gogoprotobuf is a fork of @url{https://github.com/golang/protobuf,golang/protobuf} with extra code generation features.") + (license license:bsd-3))) + +(define-public go-github-com-golang-groupcache-0.0.0-20160516000752-02826c3e7903 + (package + (name "go-github-com-golang-groupcache") + (version "0.0.0-20160516000752-02826c3e7903") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/groupcache") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0w46bsllddfij66nrg8jbfjsr54birvfww8a2fj9fmgyig5syn2x")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/groupcache")) + (home-page "https://github.com/golang/groupcache") + (synopsis "groupcache") + (description + "Package groupcache provides a data loading mechanism with caching +and de-duplication that works across a set of peer processes. +") + (license license:asl2.0))) + +(define-public go-github-com-google-btree-1.0.0 + (package + (name "go-github-com-google-btree") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/btree") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ba430m9fbnagacp57krgidsyrgp3ycw5r7dj71brgp5r52g82p6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/btree")) + (home-page "https://github.com/google/btree") + (synopsis "BTree implementation for Go") + (description + "Package btree implements in-memory B-Trees of arbitrary degree. +") + (license license:asl2.0))) + +(define-public go-github-com-google-uuid-1.0.0 + (package + (name "go-github-com-google-uuid") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/uuid") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1922bjrnx66692dm0rrc1ckmznsaqx920ww4jzsds3xzrwf15mqv")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/uuid")) + (home-page "https://github.com/google/uuid") + (synopsis "uuid") + (description "Package uuid generates and inspects UUIDs. +") + (license license:bsd-3))) + +(define-public go-github-com-gorilla-websocket-0.0.0-20170926233335-4201258b820c + (package + (name "go-github-com-gorilla-websocket") + (version "0.0.0-20170926233335-4201258b820c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gorilla/websocket") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1kpdg3m46kp15ixl9ahhchhadyiblz0qpcxzylp8jhffc1rnxjb7")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/gorilla/websocket")) + (home-page "https://github.com/gorilla/websocket") + (synopsis "Gorilla WebSocket") + (description + "Package websocket implements the WebSocket protocol defined in @url{https://rfc-editor.org/rfc/rfc6455.html,RFC 6455}. +") + (license license:bsd-2))) + +(define-public go-github-com-grpc-ecosystem-go-grpc-middleware-1.0.1-0.20190118093823-f849b5445de4 + (package + (name "go-github-com-grpc-ecosystem-go-grpc-middleware") + (version "1.0.1-0.20190118093823-f849b5445de4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc-ecosystem/go-grpc-middleware") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hscypgj0nd1407jp6y4qrnrr0mrhc4wgxz9b3mj1cs3pkvi61vc")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/grpc-ecosystem/go-grpc-middleware")) + (home-page "https://github.com/grpc-ecosystem/go-grpc-middleware") + (synopsis "Go gRPC Middleware") + (description + "`grpc_middleware` is a collection of gRPC middleware packages: interceptors, helpers and tools. +") + (license license:asl2.0))) + +(define-public go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0 + (package + (name "go-github-com-grpc-ecosystem-go-grpc-prometheus") + (version "1.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc-ecosystem/go-grpc-prometheus") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1lzk54h7np32b3acidg1ggbn8ppbnns0m71gcg9d1qkkdh8zrijl")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/grpc-ecosystem/go-grpc-prometheus")) + (home-page "https://github.com/grpc-ecosystem/go-grpc-prometheus") + (synopsis "Go gRPC Interceptors for Prometheus monitoring") + (description + "@url{https://prometheus.io/,Prometheus} monitoring for your @url{https://github.com/grpc/grpc-go,gRPC Go} servers and clients.") + (license license:asl2.0))) + +(define-public go-github-com-ghodss-yaml-1.0.0 + (package + (name "go-github-com-ghodss-yaml") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/ghodss/yaml") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0skwmimpy7hlh7pva2slpcplnm912rp3igs98xnqmn859kwa5v8g")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/ghodss/yaml")) + (home-page "https://github.com/ghodss/yaml") + (synopsis "YAML marshaling and unmarshaling support for Go") + (description + "Copyright 2013 The Go Authors. All rights reserved. +Use of this source code is governed by a BSD-style +license that can be found in the LICENSE file. +") + (license #f))) + +(define-public go-github-com-rogpeppe-fastuuid-0.0.0-20150106093220-6724a57986af + (package + (name "go-github-com-rogpeppe-fastuuid") + (version "0.0.0-20150106093220-6724a57986af") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/rogpeppe/fastuuid") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12s65phfx6hxj4v0b5kj8akgrbf5mxpa101fyzw03h6hld1f70cz")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/rogpeppe/fastuuid")) + (home-page "https://github.com/rogpeppe/fastuuid") + (synopsis "fastuuid") + (description + "Package fastuuid provides fast UUID generation of 192 bit +universally unique identifiers. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20181107165924-66b7b1311ac8") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "00ny4r2bbj6rz939iy9g699acqydq7rfi6r6awn25w9i2dld9m13")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20181220203305-927f97764cc3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0np7b766gb92vbm514yhdl7cjmqvn0dxdxskd84aas2ri1fkpgw5")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-gopkg-in-resty-v1-1.12.0 + (package + (name "go-gopkg-in-resty-v1") + (version "1.12.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/resty.v1") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "062mn735rqzhha5ag07z4gz08hxzrfm2yx067jfmaaxmb6797lmp")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/resty.v1" #:unpack-path "gopkg.in/resty.v1")) + (propagated-inputs + `(("go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3" + ,go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3))) + (home-page "https://gopkg.in/resty.v1") + (synopsis "News") + (description + "Package resty provides Simple HTTP and REST client library for Go. +") + (license license:expat))) + +(define-public go-gopkg-in-yaml-v2-2.0.0-20170812160011-eb3733d160e7 + (package + (name "go-gopkg-in-yaml-v2") + (version "2.0.0-20170812160011-eb3733d160e7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v2") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1srhvcaa9db3a6xj29mkjr5kg33y71pclrlx4vcwz5m1lgb5c7q6")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) + (home-page "https://gopkg.in/yaml.v2") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language. +") + (license license:asl2.0))) + +(define-public go-github-com-grpc-ecosystem-grpc-gateway-1.9.5 + (package + (name "go-github-com-grpc-ecosystem-grpc-gateway") + (version "1.9.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc-ecosystem/grpc-gateway") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0acpbxa1i1bxcpkclkcif2macbcfrlywb58vly5pzwsj261mg58a")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/grpc-ecosystem/grpc-gateway")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.0.0-20170812160011-eb3733d160e7" + ,go-gopkg-in-yaml-v2-2.0.0-20170812160011-eb3733d160e7) + ("go-gopkg-in-resty-v1-1.12.0" ,go-gopkg-in-resty-v1-1.12.0) + ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" + ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) + ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) + ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" + ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) + ("go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8" + ,go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8) + ("go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3" + ,go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3) + ("go-github-com-rogpeppe-fastuuid-0.0.0-20150106093220-6724a57986af" + ,go-github-com-rogpeppe-fastuuid-0.0.0-20150106093220-6724a57986af) + ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-ghodss-yaml-1.0.0" ,go-github-com-ghodss-yaml-1.0.0))) + (home-page "https://github.com/grpc-ecosystem/grpc-gateway") + (synopsis "grpc-gateway") + (description + "The grpc-gateway is a plugin of the Google protocol buffers compiler +@url{https://github.com/protocolbuffers/protobuf,protoc}. +It reads protobuf service definitions and generates a reverse-proxy server which +translates a RESTful HTTP API into gRPC. This server is generated according to the +@url{https://github.com/googleapis/googleapis/raw/master/google/api/http.proto#L46,(code google.api.http)} +annotations in your service definitions.") + (license license:bsd-3))) + +(define-public go-github-com-jonboulle-clockwork-0.1.0 + (package + (name "go-github-com-jonboulle-clockwork") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jonboulle/clockwork") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1pqxhsdavbp1n5grgyx2j6ylvql2fzn2cvpsgkc8li69dil7sibl")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/jonboulle/clockwork")) + (home-page "https://github.com/jonboulle/clockwork") + (synopsis "clockwork") + (description + "Replace uses of the @code{time} package with the @code{clockwork.Clock} interface instead.") + (license license:asl2.0))) + +(define-public go-github-com-mattn-go-isatty-0.0.4 + (package + (name "go-github-com-mattn-go-isatty") + (version "0.0.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mattn/go-isatty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0zs92j2cqaw9j8qx1sdxpv3ap0rgbs0vrvi72m40mg8aa36gd39w")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mattn/go-isatty")) + (home-page "https://github.com/mattn/go-isatty") + (synopsis "go-isatty") + (description "Package isatty implements interface to isatty +") + (license license:expat))) + +(define-public go-github-com-mattn-go-runewidth-0.0.2 + (package + (name "go-github-com-mattn-go-runewidth") + (version "0.0.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mattn/go-runewidth") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0vkrfrz3fzn5n6ix4k8s0cg0b448459sldq8bp4riavsxm932jzb")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mattn/go-runewidth")) + (home-page "https://github.com/mattn/go-runewidth") + (synopsis "go-runewidth") + (description + "This package provides functions to get fixed width of the character or string.") + (license license:expat))) + +(define-public go-github-com-olekukonko-tablewriter-0.0.0-20170122224234-a0225b3f23b5 + (package + (name "go-github-com-olekukonko-tablewriter") + (version "0.0.0-20170122224234-a0225b3f23b5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/olekukonko/tablewriter") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0bp9r6xzy6d3p7l2hjmvr25y3rp3p8c9xv1agkllkksm45ng6681")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/olekukonko/tablewriter")) + (home-page "https://github.com/olekukonko/tablewriter") + (synopsis "ASCII Table Writer") + (description "Create & Generate text based table +") + (license license:expat))) + +(define-public go-github-com-soheilhy-cmux-0.1.4 + (package + (name "go-github-com-soheilhy-cmux") + (version "0.1.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/soheilhy/cmux") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1f736g68d9vwlyfb6g0fxkr0r875369xafk30cz8kaq5niaqwv0h")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/soheilhy/cmux")) + (home-page "https://github.com/soheilhy/cmux") + (synopsis "cmux: Connection Mux") + (description + "Package cmux is a library to multiplex network connections based on +their payload. Using cmux, you can serve different protocols from the +same listener. +") + (license license:asl2.0))) + +(define-public go-github-com-spf13-pflag-1.0.1 + (package + (name "go-github-com-spf13-pflag") + (version "1.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/spf13/pflag") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0nr4mdpfhhk94hq4ymn5b2sxc47b29p1akxd8b0hx4dvdybmipb5")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/spf13/pflag")) + (home-page "https://github.com/spf13/pflag") + (synopsis "Description") + (description + "Package pflag is a drop-in replacement for Go's flag package, implementing +POSIX/GNU-style --flags. +") + (license license:bsd-3))) + +(define-public go-github-com-tmc-grpc-websocket-proxy-0.0.0-20170815181823-89b8d40f7ca8 + (package + (name "go-github-com-tmc-grpc-websocket-proxy") + (version "0.0.0-20170815181823-89b8d40f7ca8") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/tmc/grpc-websocket-proxy") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1bg6m0cycy5sww175zkbnhi9lvzb08iicc8xka8klrgaa9mc5nsk")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/tmc/grpc-websocket-proxy")) + (home-page "https://github.com/tmc/grpc-websocket-proxy") + (synopsis "grpc-websocket-proxy") + (description + "Wrap your grpc-gateway mux with this helper to expose streaming endpoints over websockets.") + (license license:expat))) + +(define-public go-github-com-urfave-cli-1.20.0 + (package + (name "go-github-com-urfave-cli") + (version "1.20.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/urfave/cli") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0y6f4sbzkiiwrxbl15biivj8c7qwxnvm3zl2dd3mw4wzg4x10ygj")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/urfave/cli")) + (home-page "https://github.com/urfave/cli") + (synopsis "cli") + (description + "Package cli provides a minimal framework for creating and organizing command line +Go applications. cli is designed to be easy to understand and write, the most simple +cli application can be written as follows: +") + (license license:expat))) + +(define-public go-github-com-xiang90-probing-0.0.0-20190116061207-43a291ad63a2 + (package + (name "go-github-com-xiang90-probing") + (version "0.0.0-20190116061207-43a291ad63a2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/xiang90/probing") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1z22ms16j5j42775mf31isanwx2pwr1d8wqw8006dczjv36qnz5i")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/xiang90/probing")) + (home-page "https://github.com/xiang90/probing") + (synopsis "Getting Started") + (description "We first need to serve the probing HTTP handler.") + (license license:expat))) + +(define-public go-go-etcd-io-bbolt-1.3.3 + (package + (name "go-go-etcd-io-bbolt") + (version "1.3.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/etcd-io/bbolt") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0dn0zngks9xiz0rrrb3911f73ghl64z84jsmzai2yfmzqr7cdkqc")))) + (build-system go-build-system) + (arguments '(#:import-path "go.etcd.io/bbolt")) + (home-page "https://go.etcd.io/bbolt") + (synopsis "bbolt") + (description + "package bbolt implements a low-level key/value store in pure Go. It supports +fully serializable transactions, ACID semantics, and lock-free MVCC with +multiple readers and a single writer. Bolt can be used for projects that +want a simple data store without the need to add large dependencies such as +Postgres or MySQL. +") + (license license:expat))) + +(define-public go-go-uber-org-atomic-1.3.2 + (package + (name "go-go-uber-org-atomic") + (version "1.3.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/uber-go/atomic") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "11pzvjys5ddjjgrv94pgk9pnip9yyb54z7idf33zk7p7xylpnsv6")))) + (build-system go-build-system) + (arguments '(#:import-path "go.uber.org/atomic")) + (home-page "https://go.uber.org/atomic") + (synopsis "atomic") + (description + "Package atomic provides simple wrappers around numerics to enforce atomic +access. +") + (license license:expat))) + +(define-public go-golang-org-x-net-0.0.0-20190813141303-74dc4d7220e7 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190813141303-74dc4d7220e7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0563yswwqknxx2gsvl0qikn0lmwalilbng8i12iw4d3v40n23s0l")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20190826190057-c7b8b68b1456 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190826190057-c7b8b68b1456") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0lqnnrx5prrvkinnhgyvzzhcyvi8x5w54rlp336xjhpslkgqn132")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-time-0.0.0-20180412165947-fbb02b2291d2 + (package + (name "go-golang-org-x-time") + (version "0.0.0-20180412165947-fbb02b2291d2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/time") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0jjqcv6rzihlgg4i797q80g1f6ch5diz2kxqh6488gwkb6nds4h4")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/time")) + (home-page "https://golang.org/x/time") + (synopsis "Go Time") + (description "This repository provides supplementary Go time packages.") + (license license:bsd-3))) + +(define-public go-google-golang-org-grpc-1.26.0 + (package + (name "go-google-golang-org-grpc") + (version "1.26.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1qsb2mcswpp3vd7i9gfvz4a3ypdwk2svhhn09nyywgb1vvw80krv")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" + ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-github-com-google-go-cmp-0.2.0" + ,go-github-com-google-go-cmp-0.2.0) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2) + ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" + ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) + ("go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473" + ,go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-gopkg-in-cheggaaa-pb-v1-1.0.25 + (package + (name "go-gopkg-in-cheggaaa-pb-v1") + (version "1.0.25") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/cheggaaa/pb.v1") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0vxqiw6f3xyv0zy3g4lksf8za0z8i0hvfpw92hqimsy84f79j3dp")))) + (build-system go-build-system) + (arguments + '(#:import-path + "gopkg.in/cheggaaa/pb.v1" + #:unpack-path + "gopkg.in/cheggaaa/pb.v1")) + (home-page "https://gopkg.in/cheggaaa/pb.v1") + (synopsis "Terminal progress bar for Go") + (description "Simple console progress bars +") + (license license:bsd-3))) + +(define-public go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489 + (package + (name "go-go-etcd-io-etcd") + (version "0.5.0-alpha.5.0.20200910180754-dd1b699fc489") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/etcd-io/etcd") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "11zkvkq7ipqi0n8y05zgn8lf7qm59xdk75x7jbxj5sflx38yfa0k")))) + (build-system go-build-system) + (arguments '(#:import-path "go.etcd.io/etcd")) + (propagated-inputs + `(("go-sigs-k8s-io-yaml-1.1.0" ,go-sigs-k8s-io-yaml-1.1.0) + ("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" + ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) + ("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) + ("go-gopkg-in-cheggaaa-pb-v1-1.0.25" + ,go-gopkg-in-cheggaaa-pb-v1-1.0.25) + ("go-google-golang-org-grpc-1.26.0" ,go-google-golang-org-grpc-1.26.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-time-0.0.0-20180412165947-fbb02b2291d2" + ,go-golang-org-x-time-0.0.0-20180412165947-fbb02b2291d2) + ("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) + ("go-golang-org-x-sys-0.0.0-20190826190057-c7b8b68b1456" + ,go-golang-org-x-sys-0.0.0-20190826190057-c7b8b68b1456) + ("go-golang-org-x-net-0.0.0-20190813141303-74dc4d7220e7" + ,go-golang-org-x-net-0.0.0-20190813141303-74dc4d7220e7) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2) + ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) + ("go-go-uber-org-multierr-1.1.0" ,go-go-uber-org-multierr-1.1.0) + ("go-go-uber-org-atomic-1.3.2" ,go-go-uber-org-atomic-1.3.2) + ("go-go-etcd-io-bbolt-1.3.3" ,go-go-etcd-io-bbolt-1.3.3) + ("go-github-com-xiang90-probing-0.0.0-20190116061207-43a291ad63a2" + ,go-github-com-xiang90-probing-0.0.0-20190116061207-43a291ad63a2) + ("go-github-com-urfave-cli-1.20.0" ,go-github-com-urfave-cli-1.20.0) + ("go-github-com-tmc-grpc-websocket-proxy-0.0.0-20170815181823-89b8d40f7ca8" + ,go-github-com-tmc-grpc-websocket-proxy-0.0.0-20170815181823-89b8d40f7ca8) + ("go-github-com-spf13-pflag-1.0.1" ,go-github-com-spf13-pflag-1.0.1) + ("go-github-com-spf13-cobra-0.0.3" ,go-github-com-spf13-cobra-0.0.3) + ("go-github-com-soheilhy-cmux-0.1.4" + ,go-github-com-soheilhy-cmux-0.1.4) + ("go-github-com-sirupsen-logrus-1.4.2" + ,go-github-com-sirupsen-logrus-1.4.2) + ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" + ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) + ("go-github-com-prometheus-client-golang-1.0.0" + ,go-github-com-prometheus-client-golang-1.0.0) + ("go-github-com-olekukonko-tablewriter-0.0.0-20170122224234-a0225b3f23b5" + ,go-github-com-olekukonko-tablewriter-0.0.0-20170122224234-a0225b3f23b5) + ("go-github-com-modern-go-reflect2-1.0.1" + ,go-github-com-modern-go-reflect2-1.0.1) + ("go-github-com-mattn-go-runewidth-0.0.2" + ,go-github-com-mattn-go-runewidth-0.0.2) + ("go-github-com-mattn-go-isatty-0.0.4" + ,go-github-com-mattn-go-isatty-0.0.4) + ("go-github-com-mattn-go-colorable-0.0.9" + ,go-github-com-mattn-go-colorable-0.0.9) + ("go-github-com-json-iterator-go-1.1.7" + ,go-github-com-json-iterator-go-1.1.7) + ("go-github-com-jonboulle-clockwork-0.1.0" + ,go-github-com-jonboulle-clockwork-0.1.0) + ("go-github-com-inconshreveable-mousetrap-1.0.0" + ,go-github-com-inconshreveable-mousetrap-1.0.0) + ("go-github-com-grpc-ecosystem-grpc-gateway-1.9.5" + ,go-github-com-grpc-ecosystem-grpc-gateway-1.9.5) + ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" + ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) + ("go-github-com-grpc-ecosystem-go-grpc-middleware-1.0.1-0.20190118093823-f849b5445de4" + ,go-github-com-grpc-ecosystem-go-grpc-middleware-1.0.1-0.20190118093823-f849b5445de4) + ("go-github-com-gorilla-websocket-0.0.0-20170926233335-4201258b820c" + ,go-github-com-gorilla-websocket-0.0.0-20170926233335-4201258b820c) + ("go-github-com-google-uuid-1.0.0" ,go-github-com-google-uuid-1.0.0) + ("go-github-com-google-btree-1.0.0" ,go-github-com-google-btree-1.0.0) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2) + ("go-github-com-golang-groupcache-0.0.0-20160516000752-02826c3e7903" + ,go-github-com-golang-groupcache-0.0.0-20160516000752-02826c3e7903) + ("go-github-com-gogo-protobuf-1.2.1" + ,go-github-com-gogo-protobuf-1.2.1) + ("go-github-com-fatih-color-1.7.0" ,go-github-com-fatih-color-1.7.0) + ("go-github-com-dustin-go-humanize-0.0.0-20171111073723-bb3d318650d4" + ,go-github-com-dustin-go-humanize-0.0.0-20171111073723-bb3d318650d4) + ("go-github-com-dgrijalva-jwt-go-3.2.0+incompatible" + ,go-github-com-dgrijalva-jwt-go-3.2.0+incompatible) + ("go-github-com-creack-pty-1.1.7" ,go-github-com-creack-pty-1.1.7) + ("go-github-com-coreos-pkg-0.0.0-20160727233714-3ac0863d7acf" + ,go-github-com-coreos-pkg-0.0.0-20160727233714-3ac0863d7acf) + ("go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7" + ,go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7) + ("go-github-com-coreos-go-semver-0.2.0" + ,go-github-com-coreos-go-semver-0.2.0) + ("go-github-com-cockroachdb-datadriven-0.0.0-20190809214429-80d97fb3cbaa" + ,go-github-com-cockroachdb-datadriven-0.0.0-20190809214429-80d97fb3cbaa) + ("go-github-com-bgentry-speakeasy-0.1.0" + ,go-github-com-bgentry-speakeasy-0.1.0))) + (home-page "https://go.etcd.io/etcd") + (synopsis "etcd") + (description + "Package main is a simple wrapper of the real etcd entrypoint package +(located at github.com/coreos/etcd/etcdmain) to ensure that etcd is still +\"go getable\"; e.g. `go get github.com/coreos/etcd` works as expected and +builds a binary in $GOBIN/etcd +") + (license license:asl2.0))) + +(define-public go-gopkg-in-natefinch-lumberjack-v2-2.0.0 + (package + (name "go-gopkg-in-natefinch-lumberjack-v2") + (version "2.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/natefinch/lumberjack.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1m2sxypk7p805jvc68padvylyx5v7cwkh5klnnxxr0340kgspf08")))) + (build-system go-build-system) + (arguments + '(#:import-path + "gopkg.in/natefinch/lumberjack.v2" + #:unpack-path + "gopkg.in/natefinch/lumberjack.v2")) + (home-page "https://gopkg.in/natefinch/lumberjack.v2") + (synopsis "lumberjack") + (description "Package lumberjack provides a rolling logger. +") + (license license:expat))) + +(define-public go-gopkg-in-square-go-jose-v2-2.2.2 + (package + (name "go-gopkg-in-square-go-jose-v2") + (version "2.2.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/square/go-jose.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1cpvfqw7pw8m8wfj8nda4kam0z48q3gp6b9a3a0wr90zv9ldszbv")))) + (build-system go-build-system) + (arguments + '(#:import-path + "gopkg.in/square/go-jose.v2" + #:unpack-path + "gopkg.in/square/go-jose.v2")) + (home-page "https://gopkg.in/square/go-jose.v2") + (synopsis "Go JOSE") + (description + "Package jose aims to provide an implementation of the Javascript Object Signing +and Encryption set of standards. It implements encryption and signing based on +the JSON Web Encryption and JSON Web Signature standards, with optional JSON +Web Token support available in a sub-package. The library supports both the +compact and full serialization formats, and has optional support for multiple +recipients. +") + (license license:asl2.0))) + +(define-public go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.15 + (package + (name "go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client") + (version "0.0.15") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes-sigs/apiserver-network-proxy") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "00ad9yjr3g1pj118xy063z7rnydkilqmvz9xf89vdva2kjqd7fal")))) + (build-system go-build-system) + (arguments + '(#:import-path + "sigs.k8s.io/apiserver-network-proxy/konnectivity-client")) + (propagated-inputs + `(("go-k8s-io-klog-v2-2.0.0" ,go-k8s-io-klog-v2-2.0.0) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-github-com-golang-protobuf-1.4.0" + ,go-github-com-golang-protobuf-1.4.0))) + (home-page + "https://sigs.k8s.io/apiserver-network-proxy/konnectivity-client") + (synopsis #f) + (description #f) + (license license:asl2.0))) + +(define-public go-k8s-io-apiserver-0.20.6 + (package + (name "go-k8s-io-apiserver") + (version "0.20.6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes/apiserver") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0b53aw2cp9i2v5kg1m2s5kwkz7525ii8vs1g7d8yc2j980aar9y3")))) + (build-system go-build-system) + (arguments '(#:import-path "k8s.io/apiserver")) + (propagated-inputs + `(("go-k8s-io-component-base-0.20.6" ,go-k8s-io-component-base-0.20.6) + ("go-k8s-io-client-go-0.20.6" ,go-k8s-io-client-go-0.20.6) + ("go-k8s-io-apimachinery-0.20.6" ,go-k8s-io-apimachinery-0.20.6) + ("go-k8s-io-api-0.20.6" ,go-k8s-io-api-0.20.6) + ("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) + ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.3" + ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.3) + ("go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.15" + ,go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.15) + ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" + ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) + ("go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd" + ,go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd) + ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) + ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) + ("go-gopkg-in-square-go-jose-v2-2.2.2" + ,go-gopkg-in-square-go-jose-v2-2.2.2) + ("go-gopkg-in-natefinch-lumberjack-v2-2.0.0" + ,go-gopkg-in-natefinch-lumberjack-v2-2.0.0) + ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) + ("go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a" + ,go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a) + ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" + ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) + ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" + ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) + ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" + ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) + ("go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0" + ,go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0) + ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) + ("go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489" + ,go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489) + ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) + ("go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5" + ,go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) + ("go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021" + ,go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822" + ,go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822) + ("go-github-com-mailru-easyjson-0.7.0" + ,go-github-com-mailru-easyjson-0.7.0) + ("go-github-com-hashicorp-golang-lru-0.5.1" + ,go-github-com-hashicorp-golang-lru-0.5.1) + ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" + ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) + ("go-github-com-gorilla-websocket-1.4.2" + ,go-github-com-gorilla-websocket-1.4.2) + ("go-github-com-googleapis-gnostic-0.4.1" + ,go-github-com-googleapis-gnostic-0.4.1) + ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) + ("go-github-com-google-gofuzz-1.1.0" + ,go-github-com-google-gofuzz-1.1.0) + ("go-github-com-google-go-cmp-0.5.2" + ,go-github-com-google-go-cmp-0.5.2) + ("go-github-com-gogo-protobuf-1.3.2" + ,go-github-com-gogo-protobuf-1.3.2) + ("go-github-com-go-openapi-spec-0.19.3" + ,go-github-com-go-openapi-spec-0.19.3) + ("go-github-com-evanphx-json-patch-4.9.0+incompatible" + ,go-github-com-evanphx-json-patch-4.9.0+incompatible) + ("go-github-com-emicklei-go-restful-2.9.5+incompatible" + ,go-github-com-emicklei-go-restful-2.9.5+incompatible) + ("go-github-com-dustin-go-humanize-1.0.0" + ,go-github-com-dustin-go-humanize-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1) + ("go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f" + ,go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f) + ("go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e" + ,go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e) + ("go-github-com-coreos-go-semver-0.3.0" + ,go-github-com-coreos-go-semver-0.3.0) + ("go-github-com-coreos-go-oidc-2.1.0+incompatible" + ,go-github-com-coreos-go-oidc-2.1.0+incompatible))) + (home-page "https://k8s.io/apiserver") + (synopsis "apiserver") + (description + "Generic library for building a Kubernetes aggregated API server.") + (license license:asl2.0))) + +(define-public go-github-com-blang-semver-3.5.1+incompatible + (package + (name "go-github-com-blang-semver") + (version "3.5.1+incompatible") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/blang/semver") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "13ws259bwcibkclbr82ilhk6zadm63kxklxhk12wayklj8ghhsmy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/blang/semver")) + (home-page "https://github.com/blang/semver") + (synopsis "semver for golang") + (description + "semver is a @url{http://semver.org/,Semantic Versioning} library written in golang. It fully covers spec version @code{2.0.0}.") + (license license:expat))) + +(define-public go-github-com-prometheus-procfs-0.2.0 + (package + (name "go-github-com-prometheus-procfs") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/procfs") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0rkpyq1grk3qyfahnfry5qkxjg5qb10yh1l8cvm8b79nqsmdyjbm")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/procfs")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20200106162015-b016eb3dc98e" + ,go-golang-org-x-sys-0.0.0-20200106162015-b016eb3dc98e) + ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" + ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) + ("go-github-com-google-go-cmp-0.3.1" + ,go-github-com-google-go-cmp-0.3.1))) + (home-page "https://github.com/prometheus/procfs") + (synopsis "procfs") + (description + "Package procfs provides functions to retrieve system, kernel and process +metrics from the pseudo-filesystem proc. +") + (license license:asl2.0))) + +(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.3 + (package + (name "go-github-com-konsorten-go-windows-terminal-sequences") + (version "1.0.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/konsorten/go-windows-terminal-sequences") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1yrsd4s8vhjnxhwbigirymz89dn6qfjnhn28i33vvvdgf96j6ypl")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) + (home-page "https://github.com/konsorten/go-windows-terminal-sequences") + (synopsis "Windows Terminal Sequences") + (description + "This library allow for enabling Windows terminal color support for Go.") + (license license:expat))) + +(define-public go-github-com-sirupsen-logrus-1.6.0 + (package + (name "go-github-com-sirupsen-logrus") + (version "1.6.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sirupsen/logrus") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1zf9is1yxxnna0d1pyag2m9ziy3l27zb2j92p9msm1gx5jjrvzzj")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/sirupsen/logrus")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894" + ,go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894) + ("go-github-com-stretchr-testify-1.2.2" + ,go-github-com-stretchr-testify-1.2.2) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.3" + ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.3) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/sirupsen/logrus") + (synopsis "Logrus") + (description + "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. +") + (license license:expat))) + +(define-public go-go-uber-org-atomic-1.4.0 + (package + (name "go-go-uber-org-atomic") + (version "1.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/uber-go/atomic") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0c6yzx15c20719xii3dm0vyjd8i9jx45m0wh5yp1zf29b0gbljcy")))) + (build-system go-build-system) + (arguments '(#:import-path "go.uber.org/atomic")) + (home-page "https://go.uber.org/atomic") + (synopsis "atomic") + (description + "Package atomic provides simple wrappers around numerics to enforce atomic +access. +") + (license license:expat))) + +(define-public go-go-uber-org-multierr-1.1.0 + (package + (name "go-go-uber-org-multierr") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/uber-go/multierr") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1slfc6syvw8cvr6rbrjsy6ja5w8gsx0f8aq8qm16rp2x5c2pj07w")))) + (build-system go-build-system) + (arguments '(#:import-path "go.uber.org/multierr")) + (home-page "https://go.uber.org/multierr") + (synopsis "multierr") + (description + "Package multierr allows combining one or more errors together. +") + (license license:expat))) + +(define-public go-go-uber-org-zap-1.10.0 + (package + (name "go-go-uber-org-zap") + (version "1.10.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/uber-go/zap") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "10hdzr1rghwbsl6bbd30779dx44fh9mg9pq8d2cgqlknqxxpvpvr")))) + (build-system go-build-system) + (arguments '(#:import-path "go.uber.org/zap")) + (home-page "https://go.uber.org/zap") + (synopsis "â\x9a¡ zap") + (description "Package zap provides fast, structured, leveled logging. +") + (license license:expat))) + +(define-public go-github-com-golang-mock-1.4.1 + (package + (name "go-github-com-golang-mock") + (version "1.4.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/mock") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1zb4n285mv85dh3y2f8fqbs30h2dhzw7vbczr6z0zg2gqr6vzg0q")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/mock")) + (propagated-inputs + `(("go-rsc-io-quote-v3-3.1.0" ,go-rsc-io-quote-v3-3.1.0) + ("go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262" + ,go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262))) + (home-page "https://github.com/golang/mock") + (synopsis "gomock") + (description + "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It +integrates well with Go's built-in @code{testing} package, but can be used in other +contexts too.") + (license license:asl2.0))) + +(define-public go-github-com-golang-protobuf-1.3.4 + (package + (name "go-github-com-golang-protobuf") + (version "1.3.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12dclmj2if8l0069fby4psrpqby7p810dr1dr63nwx93g9jhvkmx")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20200301022130-244492dfa37a + (package + (name "go-golang-org-x-net") + (version "0.0.0-20200301022130-244492dfa37a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0vm2q44phz4vjnzq9428rjk58c82fxf003whczp7c9ryn9fazh7s")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20200304193943-95d2e580d8eb + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20200304193943-95d2e580d8eb") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0f46657xsdc12lr29ksqg80fp0j8v2iqgihzh788avcj5cmhnqyl")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) + ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" + ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) + ("go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b" + ,go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b) + ("go-golang-org-x-mod-0.2.0" ,go-golang-org-x-mod-0.2.0))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-google-golang-org-genproto-0.0.0-20200305110556-506484158171 + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20200305110556-506484158171") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19h7sxkfjcrkm7majd0pyzzirdnk1qlsxc3h5zklhm234d8jg407")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" + ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-golang-protobuf-1.3.3" + ,go-github-com-golang-protobuf-1.3.3))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-cloud-google-com-go-0.54.0 + (package + (name "go-cloud-google-com-go") + (version "0.54.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-cloud-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ilqqymrphg546c66jc0npd48dlr88wbgrg462h1jgm2ykbnq1ba")))) + (build-system go-build-system) + (arguments '(#:import-path "cloud.google.com/go")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.1-2020.1.3" + ,go-honnef-co-go-tools-0.0.1-2020.1.3) + ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) + ("go-google-golang-org-genproto-0.0.0-20200305110556-506484158171" + ,go-google-golang-org-genproto-0.0.0-20200305110556-506484158171) + ("go-google-golang-org-api-0.20.0" ,go-google-golang-org-api-0.20.0) + ("go-golang-org-x-tools-0.0.0-20200304193943-95d2e580d8eb" + ,go-golang-org-x-tools-0.0.0-20200304193943-95d2e580d8eb) + ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) + ("go-golang-org-x-sys-0.0.0-20200302150141-5c8b2ff67527" + ,go-golang-org-x-sys-0.0.0-20200302150141-5c8b2ff67527) + ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" + ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) + ("go-golang-org-x-net-0.0.0-20200301022130-244492dfa37a" + ,go-golang-org-x-net-0.0.0-20200301022130-244492dfa37a) + ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" + ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) + ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) + ("go-github-com-jstemmer-go-junit-report-0.9.1" + ,go-github-com-jstemmer-go-junit-report-0.9.1) + ("go-github-com-googleapis-gax-go-v2-2.0.5" + ,go-github-com-googleapis-gax-go-v2-2.0.5) + ("go-github-com-google-pprof-0.0.0-20200229191704-1ebb73c60ed3" + ,go-github-com-google-pprof-0.0.0-20200229191704-1ebb73c60ed3) + ("go-github-com-google-martian-2.1.0+incompatible" + ,go-github-com-google-martian-2.1.0+incompatible) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.3.4" + ,go-github-com-golang-protobuf-1.3.4) + ("go-github-com-golang-mock-1.4.1" ,go-github-com-golang-mock-1.4.1) + ("go-cloud-google-com-go-storage-1.6.0" + ,go-cloud-google-com-go-storage-1.6.0) + ("go-cloud-google-com-go-pubsub-1.2.0" + ,go-cloud-google-com-go-pubsub-1.2.0) + ("go-cloud-google-com-go-datastore-1.1.0" + ,go-cloud-google-com-go-datastore-1.1.0) + ("go-cloud-google-com-go-bigquery-1.4.0" + ,go-cloud-google-com-go-bigquery-1.4.0))) + (home-page "https://cloud.google.com/go") + (synopsis "Google Cloud Client Libraries for Go") + (description + "Package cloud is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +of sub-packages. +") + (license license:asl2.0))) + +(define-public go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7 + (package + (name "go-github-com-gregjones-httpcache") + (version "0.0.0-20180305231024-9cad4c3443a7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gregjones/httpcache") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wjdwcwqqcx2d5y68qvhg6qyj977il5ijmnn9h9cd6wjbdy0ay6s")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/gregjones/httpcache")) + (home-page "https://github.com/gregjones/httpcache") + (synopsis "httpcache") + (description + "Package httpcache provides a http.RoundTripper implementation that works as a +mostly RFC-compliant cache for http responses. +") + (license license:expat))) + +(define-public go-github-com-imdario-mergo-0.3.5 + (package + (name "go-github-com-imdario-mergo") + (version "0.3.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/imdario/mergo") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1mvgn89vp39gcpvhiq4n7nw5ipj7fk6h03jgc6fjwgvwvss213pb")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/imdario/mergo")) + (home-page "https://github.com/imdario/mergo") + (synopsis "Mergo") + (description + "This package provides a helper to merge structs and maps in Golang. Useful for configuration default values, avoiding messy if-statements. +") + (license license:bsd-3))) + +(define-public go-github-com-peterbourgon-diskv-2.0.1+incompatible + (package + (name "go-github-com-peterbourgon-diskv") + (version "2.0.1+incompatible") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/peterbourgon/diskv") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1mxpa5aad08x30qcbffzk80g9540wvbca4blc1r2qyzl65b8929b")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/peterbourgon/diskv")) + (home-page "https://github.com/peterbourgon/diskv") + (synopsis "What is diskv?") + (description + "Diskv (disk-vee) is a simple, persistent key-value store written in the Go +language. It starts with an incredibly simple API for storing arbitrary data on +a filesystem by key, and builds several layers of performance-enhancing +abstraction on top. The end result is a conceptually simple, but highly +performant, disk-backed storage system.") + (license license:expat))) + +(define-public go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20201002170205-7f63de1d35b0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1dr89jfs4dmpr3jqfshqqvfpzzdx4r76nkzhrvmixfrmn6wxrnd1")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" + ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) + ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" + ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e + (package + (name "go-golang-org-x-time") + (version "0.0.0-20200630173020-3af7569d3a1e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/time") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "05hqhw3vlssi499y6m41zgdp1yyjsw2kj95ahymlw6pkhsssh2vq")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/time")) + (home-page "https://golang.org/x/time") + (synopsis "Go Time") + (description "This repository provides supplementary Go time packages.") + (license license:bsd-3))) + +(define-public go-k8s-io-api-0.20.6 + (package + (name "go-k8s-io-api") + (version "0.20.6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes/api") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0mm6a91a4nrlsvnfcbgn2574vdwxf1nxpgrd5avklh8mym2ngimw")))) + (build-system go-build-system) + (arguments '(#:import-path "k8s.io/api")) + (propagated-inputs + `(("go-k8s-io-apimachinery-0.20.6" ,go-k8s-io-apimachinery-0.20.6) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-gogo-protobuf-1.3.2" + ,go-github-com-gogo-protobuf-1.3.2))) + (home-page "https://k8s.io/api") + (synopsis "api") + (description + "Schema of the external API types that are served by the Kubernetes API server.") + (license license:asl2.0))) + +(define-public go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96 + (package + (name "go-github-com-docker-spdystream") + (version "0.0.0-20160310174837-449fdfce4d96") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/moby/spdystream") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1412cpiis971iq1kxrirzirhj2708ispjh0x0dh879b66x8507sl")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/docker/spdystream")) + (home-page "https://github.com/docker/spdystream") + (synopsis "SpdyStream") + (description + "This package provides a multiplexed stream library using spdy") + (license license:asl2.0))) + +(define-public go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153 + (package + (name "go-github-com-elazarl-goproxy") + (version "0.0.0-20180725130230-947c36da3153") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/elazarl/goproxy") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0lmsnr5xmda89wig8sw62llg6acjb5caghz5jmdhnm85rm6rnssk")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/elazarl/goproxy")) + (home-page "https://github.com/elazarl/goproxy") + (synopsis "Introduction") + (description + "Taken from $GOROOT/src/pkg/net/http/chunked +needed to write https responses to client. +") + (license license:bsd-3))) + +(define-public go-github-com-evanphx-json-patch-4.9.0+incompatible + (package + (name "go-github-com-evanphx-json-patch") + (version "4.9.0+incompatible") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/evanphx/json-patch") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1r88qpzjxsx8skij9s5pi4a5qcv4bm18vq8sy21gpwgzp3qf6qzx")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/evanphx/json-patch")) + (home-page "https://github.com/evanphx/json-patch") + (synopsis "JSON-Patch") + (description + "@code{jsonpatch} is a library which provides functionality for both applying +@url{http://tools.ietf.org/html/rfc6902,RFC6902 JSON patches} against documents, as +well as for calculating & applying @url{https://tools.ietf.org/html/rfc7396,RFC7396 JSON merge patches}.") + (license license:bsd-3))) + +(define-public go-github-com-google-gofuzz-1.1.0 + (package + (name "go-github-com-google-gofuzz") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/gofuzz") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0si2fiigj45vr4jnw4grjhls7nw56wkwinnn93gqbl9ng9ynw8rx")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/gofuzz")) + (home-page "https://github.com/google/gofuzz") + (synopsis "gofuzz") + (description + "Package fuzz is a library for populating go objects with random values. +") + (license license:asl2.0))) + +(define-public go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f + (package + (name "go-github-com-mxk-go-flowrate") + (version "0.0.0-20140419014527-cca7078d478f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mxk/go-flowrate") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0zqs39923ja0yypdmiqk6x8pgmfs3ms5x5sl1dqv9z6zyx2xy541")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mxk/go-flowrate")) + (home-page "https://github.com/mxk/go-flowrate") + (synopsis #f) + (description #f) + (license license:bsd-3))) + +(define-public go-github-com-onsi-ginkgo-1.11.0 + (package + (name "go-github-com-onsi-ginkgo") + (version "1.11.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/onsi/ginkgo") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1vxmb5k89bq50m2kzcw5l3bdvci4czpifkgxd4nbq1yzv5ir03kp")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/onsi/ginkgo")) + (home-page "https://github.com/onsi/ginkgo") + (synopsis "Ginkgo 2.0 Release Candidate is available!") + (description "Ginkgo is a BDD-style testing framework for Golang +") + (license license:expat))) + +(define-public go-github-com-fsnotify-fsnotify-1.4.7 + (package + (name "go-github-com-fsnotify-fsnotify") + (version "1.4.7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/fsnotify/fsnotify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/fsnotify/fsnotify")) + (home-page "https://github.com/fsnotify/fsnotify") + (synopsis "File system notifications for Go") + (description + "Package fsnotify provides a platform-independent interface for file system notifications. +") + (license license:bsd-3))) + +(define-public go-github-com-hpcloud-tail-1.0.0 + (package + (name "go-github-com-hpcloud-tail") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hpcloud/tail") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1njpzc0pi1acg5zx9y6vj9xi6ksbsc5d387rd6904hy6rh2m6kn0")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hpcloud/tail")) + (home-page "https://github.com/hpcloud/tail") + (synopsis "Go package for tail-ing files") + (description + "This package provides a Go package striving to emulate the features of the BSD @code{tail} program.") + (license license:expat))) + +(define-public go-github-com-onsi-ginkgo-1.6.0 + (package + (name "go-github-com-onsi-ginkgo") + (version "1.6.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/onsi/ginkgo") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0x0gc89vgq38xhgmi2h22bhr73cf2gmk42g89nz89k8dgg9hhr25")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/onsi/ginkgo")) + (home-page "https://github.com/onsi/ginkgo") + (synopsis "Ginkgo 2.0 Release Candidate is available!") + (description "Ginkgo is a BDD-style testing framework for Golang +") + (license license:expat))) + +(define-public go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd + (package + (name "go-golang-org-x-net") + (version "0.0.0-20180906233101-161cd47e91fd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0254ld010iijygbzykib2vags1dc0wlmcmhgh4jl8iny159lhbcv")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20180909124046-d0be0721c37e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "081wyvfnlf842dqg03raxfz6lldlxpmyh1prix9lmrrm65arxb12")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-gopkg-in-fsnotify-v1-1.4.7 + (package + (name "go-gopkg-in-fsnotify-v1") + (version "1.4.7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/fsnotify.v1") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) + (build-system go-build-system) + (arguments + '(#:import-path + "gopkg.in/fsnotify.v1" + #:unpack-path + "gopkg.in/fsnotify.v1")) + (home-page "https://gopkg.in/fsnotify.v1") + (synopsis "File system notifications for Go") + (description + "Package fsnotify provides a platform-independent interface for file system notifications. +") + (license license:bsd-3))) + +(define-public go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7 + (package + (name "go-gopkg-in-tomb-v1") + (version "1.0.0-20141024135613-dd632973f1e7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/tomb.v1") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1lqmq1ag7s4b3gc3ddvr792c5xb5k6sfn0cchr3i2s7f1c231zjv")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/tomb.v1" #:unpack-path "gopkg.in/tomb.v1")) + (home-page "https://gopkg.in/tomb.v1") + (synopsis "Installation and usage") + (description + "The tomb package offers a conventional API for clean goroutine termination. +") + (license license:bsd-3))) + +(define-public go-github-com-onsi-gomega-1.7.0 + (package + (name "go-github-com-onsi-gomega") + (version "1.7.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/onsi/gomega") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "09j6wq425wgzzsbwm9ckhfgl2capv3yyqbrf45qyrjwkzm49i02y")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/onsi/gomega")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1) + ("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" + ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) + ("go-gopkg-in-fsnotify-v1-1.4.7" ,go-gopkg-in-fsnotify-v1-1.4.7) + ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e" + ,go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e) + ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" + ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) + ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" + ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) + ("go-github-com-onsi-ginkgo-1.6.0" ,go-github-com-onsi-ginkgo-1.6.0) + ("go-github-com-hpcloud-tail-1.0.0" ,go-github-com-hpcloud-tail-1.0.0) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0) + ("go-github-com-fsnotify-fsnotify-1.4.7" + ,go-github-com-fsnotify-fsnotify-1.4.7))) + (home-page "https://github.com/onsi/gomega") + (synopsis ": a BDD Testing Framework for Golang") + (description + "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library. +") + (license license:expat))) + +(define-public go-gopkg-in-inf-v0-0.9.1 + (package + (name "go-gopkg-in-inf-v0") + (version "0.9.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/inf.v0") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "00k5iqjcp371fllqxncv7jkf80hn1zww92zm78cclbcn4ybigkng")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/inf.v0" #:unpack-path "gopkg.in/inf.v0")) + (home-page "https://gopkg.in/inf.v0") + (synopsis #f) + (description + "Package inf (type inf.Dec) implements \"infinite-precision\" decimal +arithmetic. +\"Infinite precision\" describes two characteristics: practically unlimited +precision for decimal number representation and no support for calculating +with any specific fixed precision. +(Although there is no practical limit on precision, inf.Dec can only +represent finite decimals.) +") + (license license:bsd-3))) + +(define-public go-github-com-nytimes-gziphandler-0.0.0-20170623195520-56545f4a5d46 + (package + (name "go-github-com-nytimes-gziphandler") + (version "0.0.0-20170623195520-56545f4a5d46") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/nytimes/gziphandler") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fwk9wz6vrvq72f2gq8jhvd1nvv6grqgwrjq66vjpm0726pxar72")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/NYTimes/gziphandler")) + (home-page "https://github.com/NYTimes/gziphandler") + (synopsis "Gzip Handler") + (description + "This is a tiny Go package which wraps HTTP handlers to transparently gzip the +response body, for clients which support it. Although it's usually simpler to +leave that to a reverse proxy (like nginx or Varnish), this package is useful +when that's undesirable.") + (license license:asl2.0))) + +(define-public go-github-com-asaskevich-govalidator-0.0.0-20190424111038-f61b66f89f4a + (package + (name "go-github-com-asaskevich-govalidator") + (version "0.0.0-20190424111038-f61b66f89f4a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/asaskevich/govalidator") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1jzjd9ak4byb83bwhbyrrdclnhrgglyxcbr4d4qh39a6ywvcijm5")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/asaskevich/govalidator")) + (home-page "https://github.com/asaskevich/govalidator") + (synopsis "govalidator") + (description + "Package govalidator is package of validators and sanitizers for strings, structs and collections. +") + (license license:expat))) + +(define-public go-github-com-emicklei-go-restful-0.0.0-20170410110728-ff4f55a20633 + (package + (name "go-github-com-emicklei-go-restful") + (version "0.0.0-20170410110728-ff4f55a20633") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/emicklei/go-restful") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1v5lj5142abz3gvbygp6xghpdx4ps2lwswl8559ivaidahwnc21c")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/emicklei/go-restful")) + (home-page "https://github.com/emicklei/go-restful") + (synopsis "go-restful") + (description + "Package restful , a lean package for creating REST-style WebServices without magic. +") + (license license:expat))) + +(define-public go-github-com-ghodss-yaml-0.0.0-20150909031657-73d445a93680 + (package + (name "go-github-com-ghodss-yaml") + (version "0.0.0-20150909031657-73d445a93680") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/ghodss/yaml") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0pg53ky4sy3sp9j4n7vgf1p3gw4nbckwqfldcmmi9rf13kjh0mr7")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/ghodss/yaml")) + (home-page "https://github.com/ghodss/yaml") + (synopsis "YAML marshaling and unmarshaling support for Go") + (description + "Copyright 2013 The Go Authors. All rights reserved. +Use of this source code is governed by a BSD-style +license that can be found in the LICENSE file. +") + (license #f))) + +(define-public go-github-com-go-openapi-jsonreference-0.19.3 + (package + (name "go-github-com-go-openapi-jsonreference") + (version "0.19.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/go-openapi/jsonreference") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ln21xai74fynwmi4ck5j0c70yszjy96wfagc705y8khjxsgncsw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/go-openapi/jsonreference")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) + ("go-golang-org-x-net-0.0.0-20190827160401-ba9fcec4b297" + ,go-golang-org-x-net-0.0.0-20190827160401-ba9fcec4b297) + ("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0) + ("go-github-com-go-openapi-jsonpointer-0.19.3" + ,go-github-com-go-openapi-jsonpointer-0.19.3) + ("go-github-com-puerkitobio-urlesc-0.0.0-20170810143723-de5bf2ad4578" + ,go-github-com-puerkitobio-urlesc-0.0.0-20170810143723-de5bf2ad4578) + ("go-github-com-puerkitobio-purell-1.1.1" + ,go-github-com-puerkitobio-purell-1.1.1))) + (home-page "https://github.com/go-openapi/jsonreference") + (synopsis "gojsonreference") + (description + "@url{https://raw.githubusercontent.com/go-openapi/jsonreference/master/LICENSE,(img (@ (src http://img.shields.io/badge/license-Apache%20v2-orange.svg) (alt license)))} @url{http://godoc.org/github.com/go-openapi/jsonreference,(img (@ (src https://godoc.org/github.com/go-openapi/jsonreference?status.svg=) (alt GoDoc)))} +An implementation of JSON Reference - Go language") + (license license:asl2.0))) + +(define-public go-github-com-mailru-easyjson-0.0.0-20190626092158-b2ccc519800e + (package + (name "go-github-com-mailru-easyjson") + (version "0.0.0-20190626092158-b2ccc519800e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mailru/easyjson") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0q85h383mhbkcjm2vqm72bi8n2252fv3c56q3lclzb8n2crnjcdk")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mailru/easyjson")) + (home-page "https://github.com/mailru/easyjson") + (synopsis "easyjson") + (description + "Package easyjson contains marshaler/unmarshaler interfaces and helper functions. +") + (license license:expat))) + +(define-public go-github-com-go-openapi-jsonpointer-0.19.3 + (package + (name "go-github-com-go-openapi-jsonpointer") + (version "0.19.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/go-openapi/jsonpointer") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1m4bb7c5y8ss2s8wl50k7lsk84nl4lcldkbkphrfdl21y51gz4jr")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/go-openapi/jsonpointer")) + (propagated-inputs + `(("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0) + ("go-github-com-mailru-easyjson-0.0.0-20190626092158-b2ccc519800e" + ,go-github-com-mailru-easyjson-0.0.0-20190626092158-b2ccc519800e) + ("go-github-com-go-openapi-swag-0.19.5" + ,go-github-com-go-openapi-swag-0.19.5))) + (home-page "https://github.com/go-openapi/jsonpointer") + (synopsis "gojsonpointer") + (description + "@url{https://raw.githubusercontent.com/go-openapi/jsonpointer/master/LICENSE,(img (@ (src http://img.shields.io/badge/license-Apache%20v2-orange.svg) (alt license)))} @url{http://godoc.org/github.com/go-openapi/jsonpointer,(img (@ (src https://godoc.org/github.com/go-openapi/jsonpointer?status.svg=) (alt GoDoc)))} +An implementation of JSON Pointer - Go language") + (license license:asl2.0))) + +(define-public go-github-com-puerkitobio-purell-1.1.1 + (package + (name "go-github-com-puerkitobio-purell") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/PuerkitoBio/purell") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0c525frsxmalrn55hzzsxy17ng8avkd40ga0wxfw9haxsdjgqdqy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/PuerkitoBio/purell")) + (home-page "https://github.com/PuerkitoBio/purell") + (synopsis "Purell") + (description + "Package purell offers URL normalization as described on the wikipedia page: +@url{http://en.wikipedia.org/wiki/URL_normalization,http://en.wikipedia.org/wiki/URL_normalization} +") + (license license:bsd-3))) + +(define-public go-github-com-puerkitobio-urlesc-0.0.0-20170810143723-de5bf2ad4578 + (package + (name "go-github-com-puerkitobio-urlesc") + (version "0.0.0-20170810143723-de5bf2ad4578") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/PuerkitoBio/urlesc") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0n0srpqwbaan1wrhh2b7ysz543pjs1xw2rghvqyffg9l0g8kzgcw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/PuerkitoBio/urlesc")) + (home-page "https://github.com/PuerkitoBio/urlesc") + (synopsis "urlesc") + (description + "Package urlesc implements query escaping as per @url{https://rfc-editor.org/rfc/rfc3986.html,RFC 3986}. +It contains some parts of the net/url package, modified so as to allow +some reserved characters incorrectly escaped by net/url. +See @url{https://github.com/golang/go/issues/5684,https://github.com/golang/go/issues/5684} +") + (license license:bsd-3))) + +(define-public go-github-com-go-openapi-swag-0.19.2 + (package + (name "go-github-com-go-openapi-swag") + (version "0.19.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/go-openapi/swag") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1mlxlajx2p9wjm72rmqjrx5g49q2sn04y45s3nrykkf6jqlq1v4z")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/go-openapi/swag")) + (propagated-inputs + `(("go-github-com-sourcegraph-go-diff-0.5.1" + ,go-github-com-sourcegraph-go-diff-0.5.1) + ("go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422" + ,go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422) + ("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) + ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" + ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) + ("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0) + ("go-github-com-mailru-easyjson-0.0.0-20190614124828-94de47d64c63" + ,go-github-com-mailru-easyjson-0.0.0-20190614124828-94de47d64c63) + ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/go-openapi/swag") + (synopsis "Swag") + (description + "Package swag contains a bunch of helper functions for go-openapi and go-swagger projects. +") + (license license:asl2.0))) + +(define-public go-github-com-go-openapi-jsonpointer-0.19.2 + (package + (name "go-github-com-go-openapi-jsonpointer") + (version "0.19.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/go-openapi/jsonpointer") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1s3cqf4svrbygvvpvi7hf122szsgihas52vqh0bba3avf4w03g9n")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/go-openapi/jsonpointer")) + (propagated-inputs + `(("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0) + ("go-github-com-go-openapi-swag-0.19.2" + ,go-github-com-go-openapi-swag-0.19.2))) + (home-page "https://github.com/go-openapi/jsonpointer") + (synopsis "gojsonpointer") + (description + "@url{https://raw.githubusercontent.com/go-openapi/jsonpointer/master/LICENSE,(img (@ (src http://img.shields.io/badge/license-Apache%20v2-orange.svg) (alt license)))} @url{http://godoc.org/github.com/go-openapi/jsonpointer,(img (@ (src https://godoc.org/github.com/go-openapi/jsonpointer?status.svg=) (alt GoDoc)))} +An implementation of JSON Pointer - Go language") + (license license:asl2.0))) + +(define-public go-github-com-go-openapi-jsonreference-0.19.2 + (package + (name "go-github-com-go-openapi-jsonreference") + (version "0.19.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/go-openapi/jsonreference") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0v933yvcwyzzlpdxwb9204ki7lls2rwfd96ww2i901ndvz37kdf8")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/go-openapi/jsonreference")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) + ("go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980" + ,go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980) + ("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0) + ("go-github-com-go-openapi-jsonpointer-0.19.2" + ,go-github-com-go-openapi-jsonpointer-0.19.2) + ("go-github-com-puerkitobio-urlesc-0.0.0-20170810143723-de5bf2ad4578" + ,go-github-com-puerkitobio-urlesc-0.0.0-20170810143723-de5bf2ad4578) + ("go-github-com-puerkitobio-purell-1.1.1" + ,go-github-com-puerkitobio-purell-1.1.1))) + (home-page "https://github.com/go-openapi/jsonreference") + (synopsis "gojsonreference") + (description + "@url{https://raw.githubusercontent.com/go-openapi/jsonreference/master/LICENSE,(img (@ (src http://img.shields.io/badge/license-Apache%20v2-orange.svg) (alt license)))} @url{http://godoc.org/github.com/go-openapi/jsonreference,(img (@ (src https://godoc.org/github.com/go-openapi/jsonreference?status.svg=) (alt GoDoc)))} +An implementation of JSON Reference - Go language") + (license license:asl2.0))) + +(define-public go-github-com-kr-pty-1.1.5 + (package + (name "go-github-com-kr-pty") + (version "1.1.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/pty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1bpq77b90z72cv9h66dvxsg2j197ylpgcps23xsjfbs752bykfw1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/pty")) + (home-page "https://github.com/kr/pty") + (synopsis "pty") + (description + "Package pty is a wrapper for github.com/creack/pty, which provides +functions for working with Unix terminals. +") + (license license:expat))) + +(define-public go-github-com-stretchr-objx-0.2.0 + (package + (name "go-github-com-stretchr-objx") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/objx") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0pcdvakxgddaiwcdj73ra4da05a3q4cgwbpm2w75ycq4kzv8ij8k")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/objx")) + (propagated-inputs + `(("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/stretchr/objx") + (synopsis "Objx") + (description + "Objx - Go package for dealing with maps, slices, JSON and other data. +") + (license license:expat))) + +(define-public go-golang-org-x-crypto-0.0.0-20190611184440-5c40567a22f8 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20190611184440-5c40567a22f8") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "17g8fb9vy2sqq8vgz8jdvf6c6d2290gm2qs0i4yzsd86mgn4dlrg")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" + ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) + ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" + ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20190827160401-ba9fcec4b297 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190827160401-ba9fcec4b297") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1hbqvy6r0s5h0dpdqw8fynl3cq0acin3iyqki9xvl5r8h33yb9bx")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20190616124812-15dcb6c0061f + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190616124812-15dcb6c0061f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1qfkkysbyn44nyx57cq8mmw1cjgpxi9gi9xrf6kljmd9c1416zdd")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20190614205625-5aca471b1d59 + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20190614205625-5aca471b1d59") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1i4h3q83w4y9s065w0wnnnwlssy69jbrj08k47ppsa8dnv85kyrf")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" + ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-github-com-go-openapi-spec-0.19.3 + (package + (name "go-github-com-go-openapi-spec") + (version "0.19.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/go-openapi/spec") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1dikq1p550vj5i9y918s075pgk0fxkixxk3fb70ri7wkm51s6nlj")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/go-openapi/spec")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) + ("go-golang-org-x-tools-0.0.0-20190614205625-5aca471b1d59" + ,go-golang-org-x-tools-0.0.0-20190614205625-5aca471b1d59) + ("go-golang-org-x-sys-0.0.0-20190616124812-15dcb6c0061f" + ,go-golang-org-x-sys-0.0.0-20190616124812-15dcb6c0061f) + ("go-golang-org-x-net-0.0.0-20190827160401-ba9fcec4b297" + ,go-golang-org-x-net-0.0.0-20190827160401-ba9fcec4b297) + ("go-golang-org-x-crypto-0.0.0-20190611184440-5c40567a22f8" + ,go-golang-org-x-crypto-0.0.0-20190611184440-5c40567a22f8) + ("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0) + ("go-github-com-stretchr-objx-0.2.0" + ,go-github-com-stretchr-objx-0.2.0) + ("go-github-com-kr-pty-1.1.5" ,go-github-com-kr-pty-1.1.5) + ("go-github-com-go-openapi-swag-0.19.5" + ,go-github-com-go-openapi-swag-0.19.5) + ("go-github-com-go-openapi-jsonreference-0.19.2" + ,go-github-com-go-openapi-jsonreference-0.19.2) + ("go-github-com-go-openapi-jsonpointer-0.19.3" + ,go-github-com-go-openapi-jsonpointer-0.19.3))) + (home-page "https://github.com/go-openapi/spec") + (synopsis "OAI object model") + (description "The object model for OpenAPI specification documents.") + (license license:asl2.0))) + +(define-public go-github-com-mailru-easyjson-0.0.0-20190614124828-94de47d64c63 + (package + (name "go-github-com-mailru-easyjson") + (version "0.0.0-20190614124828-94de47d64c63") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mailru/easyjson") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1km0kkh7cf7dlz5pqi9yr1wamv0167y41cyv1dbrcxfdmwgpfd23")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mailru/easyjson")) + (home-page "https://github.com/mailru/easyjson") + (synopsis "easyjson") + (description + "Package easyjson contains marshaler/unmarshaler interfaces and helper functions. +") + (license license:expat))) + +(define-public go-github-com-shurcool-go-0.0.0-20180423040247-9e1955d9fb6e + (package + (name "go-github-com-shurcool-go") + (version "0.0.0-20180423040247-9e1955d9fb6e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/shurcooL/go") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1lad9bvs75jsn61cfza19739c2c057k0bqxg2b4xz3z3l4w1mkqj")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/shurcooL/go")) + (home-page "https://github.com/shurcooL/go") + (synopsis "go") + (description "Common Go code.") + (license license:expat))) + +(define-public go-github-com-shurcool-go-goon-0.0.0-20170922171312-37c2f522c041 + (package + (name "go-github-com-shurcool-go-goon") + (version "0.0.0-20170922171312-37c2f522c041") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/shurcooL/go-goon") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "17ac6j6msdcxbmfhq6pxhw5z339b87bd6ciln9909drjv2szyxqv")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/shurcooL/go-goon")) + (home-page "https://github.com/shurcooL/go-goon") + (synopsis "goon") + (description + "Package goon is a deep pretty printer with Go-like notation. It implements the goon specification. +") + (license license:expat))) + +(define-public go-sourcegraph-com-sqs-pbtypes-0.0.0-20180604144634-d3ebe8f20ae4 + (package + (name "go-sourcegraph-com-sqs-pbtypes") + (version "0.0.0-20180604144634-d3ebe8f20ae4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sqs/pbtypes") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0vcyqq4jc2jv1wh288qdxv51qxcfj07lvnlf37pjicsd2yrb7yrr")))) + (build-system go-build-system) + (arguments '(#:import-path "sourcegraph.com/sqs/pbtypes")) + (home-page "https://sourcegraph.com/sqs/pbtypes") + (synopsis "pbtypes") + (description + "Package pbtypes contains protocol buffer types (Timestamp, Void, +etc.) and related helpers. +") + (license license:asl2.0))) + +(define-public go-github-com-sourcegraph-go-diff-0.5.1 + (package + (name "go-github-com-sourcegraph-go-diff") + (version "0.5.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sourcegraph/go-diff") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0acabccjmxgdvhyd7fr0krlf7ymc7mngdq292n03hfys9nrnb0b2")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/sourcegraph/go-diff")) + (propagated-inputs + `(("go-sourcegraph-com-sqs-pbtypes-0.0.0-20180604144634-d3ebe8f20ae4" + ,go-sourcegraph-com-sqs-pbtypes-0.0.0-20180604144634-d3ebe8f20ae4) + ("go-github-com-shurcool-go-goon-0.0.0-20170922171312-37c2f522c041" + ,go-github-com-shurcool-go-goon-0.0.0-20170922171312-37c2f522c041) + ("go-github-com-shurcool-go-0.0.0-20180423040247-9e1955d9fb6e" + ,go-github-com-shurcool-go-0.0.0-20180423040247-9e1955d9fb6e) + ("go-github-com-gogo-protobuf-1.1.1" + ,go-github-com-gogo-protobuf-1.1.1))) + (home-page "https://github.com/sourcegraph/go-diff") + (synopsis "go-diff") + (description "Diff parser and printer for Go.") + (license license:expat))) + +(define-public go-github-com-go-openapi-swag-0.19.5 + (package + (name "go-github-com-go-openapi-swag") + (version "0.19.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/go-openapi/swag") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1z34vqc5yz6rzvarrvlhkimxx33p74iaxb28l1mv716njvlsmjhg")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/go-openapi/swag")) + (propagated-inputs + `(("go-github-com-sourcegraph-go-diff-0.5.1" + ,go-github-com-sourcegraph-go-diff-0.5.1) + ("go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422" + ,go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422) + ("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) + ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" + ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) + ("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0) + ("go-github-com-mailru-easyjson-0.0.0-20190614124828-94de47d64c63" + ,go-github-com-mailru-easyjson-0.0.0-20190614124828-94de47d64c63) + ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/go-openapi/swag") + (synopsis "Swag") + (description + "Package swag contains a bunch of helper functions for go-openapi and go-swagger projects. +") + (license license:asl2.0))) + +(define-public go-github-com-google-uuid-1.1.1 + (package + (name "go-github-com-google-uuid") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/uuid") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hfxcf9frkb57k6q0rdkrmnfs78ms21r1qfk9fhlqga2yh5xg8zb")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/uuid")) + (home-page "https://github.com/google/uuid") + (synopsis "uuid") + (description "Package uuid generates and inspects UUIDs. +") + (license license:bsd-3))) + +(define-public go-github-com-docopt-docopt-go-0.0.0-20180111231733-ee0de3bc6815 + (package + (name "go-github-com-docopt-docopt-go") + (version "0.0.0-20180111231733-ee0de3bc6815") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/docopt/docopt.go") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hlra7rmi5pmd7d93rv56ahiy4qkgmq8a6mz0jpadvbi5qh8lq6j")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/docopt/docopt-go")) + (home-page "https://github.com/docopt/docopt-go") + (synopsis "docopt-go") + (description + "Package docopt parses command-line arguments based on a help message. +") + (license license:expat))) + +(define-public go-github-com-googleapis-gnostic-0.4.1 + (package + (name "go-github-com-googleapis-gnostic") + (version "0.4.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/gnostic") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fw28m3ach5pkcdh4ijd6s7w09j0n88p6mah3hp0k8918jsc6mj9")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/googleapis/gnostic")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) + ("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" + ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) + ("go-github-com-kr-pretty-0.2.0" ,go-github-com-kr-pretty-0.2.0) + ("go-github-com-golang-protobuf-1.3.3" + ,go-github-com-golang-protobuf-1.3.3) + ("go-github-com-docopt-docopt-go-0.0.0-20180111231733-ee0de3bc6815" + ,go-github-com-docopt-docopt-go-0.0.0-20180111231733-ee0de3bc6815))) + (home-page "https://github.com/googleapis/gnostic") + (synopsis "â¨\x81 gnostic") + (description + "Gnostic is a tool for building better REST APIs through knowledge. +") + (license license:asl2.0))) + +(define-public go-github-com-munnerz-goautoneg-0.0.0-20120707110453-a547fc61f48d + (package + (name "go-github-com-munnerz-goautoneg") + (version "0.0.0-20120707110453-a547fc61f48d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/munnerz/goautoneg") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19khhn5xhqv1yp7d6k987gh5w5rhrjnp4p0c6fyrd8z6lzz5h9qi")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/munnerz/goautoneg")) + (home-page "https://github.com/munnerz/goautoneg") + (synopsis #f) + (description #f) + (license license:bsd-3))) + +(define-public go-github-com-onsi-ginkgo-0.0.0-20170829012221-11459a886d9c + (package + (name "go-github-com-onsi-ginkgo") + (version "0.0.0-20170829012221-11459a886d9c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/onsi/ginkgo") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1nswc1fnrrs792qbix05h91bilj8rr3wxmxgwi97p2gjk0r292zh")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/onsi/ginkgo")) + (home-page "https://github.com/onsi/ginkgo") + (synopsis "Ginkgo 2.0 Release Candidate is available!") + (description "Ginkgo is a BDD-style testing framework for Golang +") + (license license:expat))) + +(define-public go-github-com-onsi-gomega-0.0.0-20170829124025-dcabb60a477c + (package + (name "go-github-com-onsi-gomega") + (version "0.0.0-20170829124025-dcabb60a477c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/onsi/gomega") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1775lv5jbsgv3ghq5v2827slqlhqdadrzc1nkpq4y0hdv2qzrgkm")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/onsi/gomega")) + (home-page "https://github.com/onsi/gomega") + (synopsis ": a BDD Testing Framework for Golang") + (description + "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library. +") + (license license:expat))) + +(define-public go-github-com-spf13-pflag-0.0.0-20170130214245-9ff6c6923cff + (package + (name "go-github-com-spf13-pflag") + (version "0.0.0-20170130214245-9ff6c6923cff") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/spf13/pflag") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0mfrxzyl8x7araa126lh8l3sihbbgfbzgkrg3v3cx7y4n3wrsqvn")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/spf13/pflag")) + (home-page "https://github.com/spf13/pflag") + (synopsis "Description") + (description + "Package pflag is a drop-in replacement for Go's flag package, implementing +POSIX/GNU-style --flags. +") + (license license:bsd-3))) + +(define-public go-k8s-io-gengo-0.0.0-20200413195148-3a45101e95ac + (package + (name "go-k8s-io-gengo") + (version "0.0.0-20200413195148-3a45101e95ac") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes/gengo") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0x46jq6rv8z0y96231rfgzvfscgy5hp5aacid3r93zy0rq9r37g6")))) + (build-system go-build-system) + (arguments '(#:import-path "k8s.io/gengo")) + (home-page "https://k8s.io/gengo") + (synopsis "gengo") + (description + "This package provides a package for generating things based on go files. This mechanism was first used +in Kubernetes and is split out here for ease of reuse and maintainability.") + (license license:asl2.0))) + +(define-public go-sigs-k8s-io-structured-merge-diff-v4-4.0.2 + (package + (name "go-sigs-k8s-io-structured-merge-diff-v4") + (version "4.0.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes-sigs/structured-merge-diff") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1z60sw6nrlzyddyx5pvh6afwf8jvmn8c2zw15hklq17iyvj3lj7a")))) + (build-system go-build-system) + (arguments + '(#:import-path + "sigs.k8s.io/structured-merge-diff/v4" + #:unpack-path + "sigs.k8s.io/structured-merge-diff/v4")) + (propagated-inputs + `(("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0) + ("go-github-com-modern-go-reflect2-1.0.1" + ,go-github-com-modern-go-reflect2-1.0.1) + ("go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd" + ,go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd) + ("go-github-com-json-iterator-go-1.1.6" + ,go-github-com-json-iterator-go-1.1.6) + ("go-github-com-google-gofuzz-1.0.0" + ,go-github-com-google-gofuzz-1.0.0) + ("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1))) + (home-page "https://sigs.k8s.io/structured-merge-diff/v4") + (synopsis "Structured Merge and Diff") + (description + "This repo contains code which implements the Kubernetes \"apply\" operation.") + (license license:asl2.0))) + +(define-public go-sigs-k8s-io-yaml-1.1.0 + (package + (name "go-sigs-k8s-io-yaml") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes-sigs/yaml") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1p7hvjdr5jsyk7nys1g1pmgnf3ys6n320i6hds85afppk81k01kb")))) + (build-system go-build-system) + (arguments '(#:import-path "sigs.k8s.io/yaml")) + (home-page "https://sigs.k8s.io/yaml") + (synopsis "YAML marshaling and unmarshaling support for Go") + (description + "kubernetes-sigs/yaml is a permanent fork of @url{https://github.com/ghodss/yaml,ghodss/yaml}.") + (license #f))) + +(define-public go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd + (package + (name "go-k8s-io-kube-openapi") + (version "0.0.0-20201113171705-d219536bb9fd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes/kube-openapi") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "11d420a3rxznh3f6x5a6xp22zjwv6jfq4w1gb6srqb4vn9rhgrka")))) + (build-system go-build-system) + (arguments '(#:import-path "k8s.io/kube-openapi")) + (propagated-inputs + `(("go-sigs-k8s-io-yaml-1.1.0" ,go-sigs-k8s-io-yaml-1.1.0) + ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.2" + ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.2) + ("go-k8s-io-klog-v2-2.0.0" ,go-k8s-io-klog-v2-2.0.0) + ("go-k8s-io-gengo-0.0.0-20200413195148-3a45101e95ac" + ,go-k8s-io-gengo-0.0.0-20200413195148-3a45101e95ac) + ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) + ("go-golang-org-x-net-0.0.0-20200324143707-d3edc9973b7e" + ,go-golang-org-x-net-0.0.0-20200324143707-d3edc9973b7e) + ("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0) + ("go-github-com-spf13-pflag-0.0.0-20170130214245-9ff6c6923cff" + ,go-github-com-spf13-pflag-0.0.0-20170130214245-9ff6c6923cff) + ("go-github-com-onsi-gomega-0.0.0-20170829124025-dcabb60a477c" + ,go-github-com-onsi-gomega-0.0.0-20170829124025-dcabb60a477c) + ("go-github-com-onsi-ginkgo-0.0.0-20170829012221-11459a886d9c" + ,go-github-com-onsi-ginkgo-0.0.0-20170829012221-11459a886d9c) + ("go-github-com-munnerz-goautoneg-0.0.0-20120707110453-a547fc61f48d" + ,go-github-com-munnerz-goautoneg-0.0.0-20120707110453-a547fc61f48d) + ("go-github-com-mitchellh-mapstructure-1.1.2" + ,go-github-com-mitchellh-mapstructure-1.1.2) + ("go-github-com-json-iterator-go-1.1.6" + ,go-github-com-json-iterator-go-1.1.6) + ("go-github-com-googleapis-gnostic-0.4.1" + ,go-github-com-googleapis-gnostic-0.4.1) + ("go-github-com-google-uuid-1.1.1" ,go-github-com-google-uuid-1.1.1) + ("go-github-com-google-gofuzz-1.0.0" + ,go-github-com-google-gofuzz-1.0.0) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.3.3" + ,go-github-com-golang-protobuf-1.3.3) + ("go-github-com-go-openapi-swag-0.19.5" + ,go-github-com-go-openapi-swag-0.19.5) + ("go-github-com-go-openapi-spec-0.19.3" + ,go-github-com-go-openapi-spec-0.19.3) + ("go-github-com-go-openapi-jsonreference-0.19.3" + ,go-github-com-go-openapi-jsonreference-0.19.3) + ("go-github-com-go-openapi-jsonpointer-0.19.3" + ,go-github-com-go-openapi-jsonpointer-0.19.3) + ("go-github-com-ghodss-yaml-0.0.0-20150909031657-73d445a93680" + ,go-github-com-ghodss-yaml-0.0.0-20150909031657-73d445a93680) + ("go-github-com-emicklei-go-restful-0.0.0-20170410110728-ff4f55a20633" + ,go-github-com-emicklei-go-restful-0.0.0-20170410110728-ff4f55a20633) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1) + ("go-github-com-asaskevich-govalidator-0.0.0-20190424111038-f61b66f89f4a" + ,go-github-com-asaskevich-govalidator-0.0.0-20190424111038-f61b66f89f4a) + ("go-github-com-nytimes-gziphandler-0.0.0-20170623195520-56545f4a5d46" + ,go-github-com-nytimes-gziphandler-0.0.0-20170623195520-56545f4a5d46))) + (home-page "https://k8s.io/kube-openapi") + (synopsis "Kube OpenAPI") + (description + "This repo is the home for Kubernetes OpenAPI discovery spec generation. The goal +is to support a subset of OpenAPI features to satisfy kubernetes use-cases but +implement that subset with little to no assumption about the structure of the +code or routes. Thus, there should be no kubernetes specific code in this repo.") + (license license:asl2.0))) + +(define-public go-sigs-k8s-io-structured-merge-diff-v4-4.0.3 + (package + (name "go-sigs-k8s-io-structured-merge-diff-v4") + (version "4.0.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes-sigs/structured-merge-diff") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1jv60bkk0z437bsz5ldjyc006k20njmpl0xfl8p3g1q0bx0fkypa")))) + (build-system go-build-system) + (arguments + '(#:import-path + "sigs.k8s.io/structured-merge-diff/v4" + #:unpack-path + "sigs.k8s.io/structured-merge-diff/v4")) + (propagated-inputs + `(("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0) + ("go-github-com-modern-go-reflect2-1.0.1" + ,go-github-com-modern-go-reflect2-1.0.1) + ("go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd" + ,go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd) + ("go-github-com-json-iterator-go-1.1.6" + ,go-github-com-json-iterator-go-1.1.6) + ("go-github-com-google-gofuzz-1.0.0" + ,go-github-com-google-gofuzz-1.0.0) + ("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1))) + (home-page "https://sigs.k8s.io/structured-merge-diff/v4") + (synopsis "Structured Merge and Diff") + (description + "This repo contains code which implements the Kubernetes \"apply\" operation.") + (license license:asl2.0))) + +(define-public go-gopkg-in-yaml-v2-2.2.8 + (package + (name "go-gopkg-in-yaml-v2") + (version "2.2.8") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1inf7svydzscwv9fcjd2rm61a4xjk6jkswknybmns2n58shimapw")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v2") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language. +") + (license license:asl2.0))) + +(define-public go-sigs-k8s-io-yaml-1.2.0 + (package + (name "go-sigs-k8s-io-yaml") + (version "1.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes-sigs/yaml") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "059a1chkd6afyvqszrx7h93k6cgik3ia92x29f5whpwi66461pzq")))) + (build-system go-build-system) + (arguments '(#:import-path "sigs.k8s.io/yaml")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://sigs.k8s.io/yaml") + (synopsis "YAML marshaling and unmarshaling support for Go") + (description + "kubernetes-sigs/yaml is a permanent fork of @url{https://github.com/ghodss/yaml,ghodss/yaml}.") + (license #f))) + +(define-public go-k8s-io-apimachinery-0.20.6 + (package + (name "go-k8s-io-apimachinery") + (version "0.20.6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes/apimachinery") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "16952v7zjk3pdyw5r3wy28qkcfx3risid0847pwdw8gmalwxr237")))) + (build-system go-build-system) + (arguments '(#:import-path "k8s.io/apimachinery")) + (propagated-inputs + `(("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) + ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.3" + ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.3) + ("go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd" + ,go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd) + ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) + ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) + ("go-gopkg-in-inf-v0-0.9.1" ,go-gopkg-in-inf-v0-0.9.1) + ("go-google-golang-org-protobuf-1.25.0" + ,go-google-golang-org-protobuf-1.25.0) + ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) + ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" + ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) + ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" + ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-onsi-gomega-1.7.0" ,go-github-com-onsi-gomega-1.7.0) + ("go-github-com-onsi-ginkgo-1.11.0" ,go-github-com-onsi-ginkgo-1.11.0) + ("go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f" + ,go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f) + ("go-github-com-modern-go-reflect2-1.0.1" + ,go-github-com-modern-go-reflect2-1.0.1) + ("go-github-com-json-iterator-go-1.1.10" + ,go-github-com-json-iterator-go-1.1.10) + ("go-github-com-hashicorp-golang-lru-0.5.1" + ,go-github-com-hashicorp-golang-lru-0.5.1) + ("go-github-com-googleapis-gnostic-0.4.1" + ,go-github-com-googleapis-gnostic-0.4.1) + ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) + ("go-github-com-google-gofuzz-1.1.0" + ,go-github-com-google-gofuzz-1.1.0) + ("go-github-com-google-go-cmp-0.5.2" + ,go-github-com-google-go-cmp-0.5.2) + ("go-github-com-golang-protobuf-1.4.3" + ,go-github-com-golang-protobuf-1.4.3) + ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" + ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) + ("go-github-com-gogo-protobuf-1.3.2" + ,go-github-com-gogo-protobuf-1.3.2) + ("go-github-com-fsnotify-fsnotify-1.4.9" + ,go-github-com-fsnotify-fsnotify-1.4.9) + ("go-github-com-evanphx-json-patch-4.9.0+incompatible" + ,go-github-com-evanphx-json-patch-4.9.0+incompatible) + ("go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153" + ,go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153) + ("go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96" + ,go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://k8s.io/apimachinery") + (synopsis "apimachinery") + (description + "Scheme, typing, encoding, decoding, and conversion packages for Kubernetes and Kubernetes-like API objects.") + (license license:asl2.0))) + +(define-public go-k8s-io-client-go-0.20.6 + (package + (name "go-k8s-io-client-go") + (version "0.20.6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes/client-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fpz56pfadbfp8mlzmzicfmlgk5zqbk2rdwnr8c8h6ypjd5xjcvz")))) + (build-system go-build-system) + (arguments '(#:import-path "k8s.io/client-go")) + (propagated-inputs + `(("go-k8s-io-apimachinery-0.20.6" ,go-k8s-io-apimachinery-0.20.6) + ("go-k8s-io-api-0.20.6" ,go-k8s-io-api-0.20.6) + ("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) + ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" + ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) + ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) + ("go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e" + ,go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e) + ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" + ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) + ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" + ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) + ("go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0" + ,go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) + ("go-github-com-peterbourgon-diskv-2.0.1+incompatible" + ,go-github-com-peterbourgon-diskv-2.0.1+incompatible) + ("go-github-com-imdario-mergo-0.3.5" + ,go-github-com-imdario-mergo-0.3.5) + ("go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7" + ,go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7) + ("go-github-com-googleapis-gnostic-0.4.1" + ,go-github-com-googleapis-gnostic-0.4.1) + ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) + ("go-github-com-google-gofuzz-1.1.0" + ,go-github-com-google-gofuzz-1.1.0) + ("go-github-com-google-go-cmp-0.5.2" + ,go-github-com-google-go-cmp-0.5.2) + ("go-github-com-golang-protobuf-1.4.3" + ,go-github-com-golang-protobuf-1.4.3) + ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" + ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) + ("go-github-com-gogo-protobuf-1.3.2" + ,go-github-com-gogo-protobuf-1.3.2) + ("go-github-com-evanphx-json-patch-4.9.0+incompatible" + ,go-github-com-evanphx-json-patch-4.9.0+incompatible) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1) + ("go-github-com-azure-go-autorest-autorest-adal-0.9.5" + ,go-github-com-azure-go-autorest-autorest-adal-0.9.5) + ("go-github-com-azure-go-autorest-autorest-0.11.1" + ,go-github-com-azure-go-autorest-autorest-0.11.1) + ("go-cloud-google-com-go-0.54.0" ,go-cloud-google-com-go-0.54.0))) + (home-page "https://k8s.io/client-go") + (synopsis "client-go") + (description + "Go clients for talking to a @url{http://kubernetes.io/,kubernetes} cluster.") + (license license:asl2.0))) + +(define-public go-k8s-io-component-base-0.20.6 + (package + (name "go-k8s-io-component-base") + (version "0.20.6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes/component-base") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1987vm5lhbnn4ynrpzdgz3873lp78664cpdpkbv9jwnhzqdhpyhf")))) + (build-system go-build-system) + (arguments '(#:import-path "k8s.io/component-base")) + (propagated-inputs + `(("go-k8s-io-client-go-0.20.6" ,go-k8s-io-client-go-0.20.6) + ("go-k8s-io-apimachinery-0.20.6" ,go-k8s-io-apimachinery-0.20.6) + ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" + ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) + ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) + ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) + ("go-go-uber-org-multierr-1.1.0" ,go-go-uber-org-multierr-1.1.0) + ("go-go-uber-org-atomic-1.4.0" ,go-go-uber-org-atomic-1.4.0) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) + ("go-github-com-sirupsen-logrus-1.6.0" + ,go-github-com-sirupsen-logrus-1.6.0) + ("go-github-com-prometheus-procfs-0.2.0" + ,go-github-com-prometheus-procfs-0.2.0) + ("go-github-com-prometheus-common-0.10.0" + ,go-github-com-prometheus-common-0.10.0) + ("go-github-com-prometheus-client-model-0.2.0" + ,go-github-com-prometheus-client-model-0.2.0) + ("go-github-com-prometheus-client-golang-1.7.1" + ,go-github-com-prometheus-client-golang-1.7.1) + ("go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd" + ,go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd) + ("go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369" + ,go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369) + ("go-github-com-google-go-cmp-0.5.2" + ,go-github-com-google-go-cmp-0.5.2) + ("go-github-com-go-logr-logr-0.2.0" ,go-github-com-go-logr-logr-0.2.0) + ("go-github-com-blang-semver-3.5.1+incompatible" + ,go-github-com-blang-semver-3.5.1+incompatible))) + (home-page "https://k8s.io/component-base") + (synopsis "component-base") + (description + "Implement KEP 32: @url{https://github.com/kubernetes/enhancements/blob/master/keps/sig-cluster-lifecycle/wgs/783-component-base/README.md,https://github.com/kubernetes/enhancements/blob/master/keps/sig-cluster-lifecycle/wgs/783-component-base/README.md}") + (license license:asl2.0))) + +(define-public go-github-com-kr-pretty-0.2.0 + (package + (name "go-github-com-kr-pretty") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/pretty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ywbfzz1h3a3qd8rpkiqwi1dm4w8ls9ijb4x1b7567grns9f0vnp")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/pretty")) + (propagated-inputs + `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) + (home-page "https://github.com/kr/pretty") + (synopsis #f) + (description + "Package pretty provides pretty-printing for Go values. This is +useful during debugging, to avoid wrapping long output lines in +the terminal. +") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20201112073958-5cba982894dd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "08dvnwmi2p4slmhyx7gzkmzfp51mmnkzi0ngwhvv0vip1s3s3zjc")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20201110150050-8816d57aaa9a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0cbfam4w9jr5gib43v3s2r5j8mhd3hl6ks3azwsahaff6idggg20")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.24.0" + ,go-google-golang-org-protobuf-1.24.0) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-golang-protobuf-1.4.1" + ,go-github-com-golang-protobuf-1.4.1))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-k8s-io-cri-api-0.20.6 + (package + (name "go-k8s-io-cri-api") + (version "0.20.6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes/cri-api") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0yp4rfxjn4h78z4sbmwhcqm8mva9bsvsc5jky2qa76npp0hycjhx")))) + (build-system go-build-system) + (arguments '(#:import-path "k8s.io/cri-api")) + (propagated-inputs + `(("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" + ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) + ("go-google-golang-org-protobuf-1.25.0" + ,go-google-golang-org-protobuf-1.25.0) + ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) + ("go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a" + ,go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a) + ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) + ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" + ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) + ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" + ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-kr-pretty-0.2.0" ,go-github-com-kr-pretty-0.2.0) + ("go-github-com-google-go-cmp-0.5.2" + ,go-github-com-google-go-cmp-0.5.2) + ("go-github-com-golang-protobuf-1.4.3" + ,go-github-com-golang-protobuf-1.4.3) + ("go-github-com-gogo-protobuf-1.3.2" + ,go-github-com-gogo-protobuf-1.3.2) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://k8s.io/cri-api") + (synopsis "Purpose") + (description + "This repository contains the definitions for the Container Runtime Interface (CRI). +CRI is a plugin interface which enables kubelet to use a wide variety of container runtimes, +without the need to recompile. CRI consists of a protocol buffers and gRPC API.") + (license license:asl2.0))) + +(define-public go-github-com-go-logr-logr-0.2.0 + (package + (name "go-github-com-go-logr-logr") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/go-logr/logr") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "06xh4pw53z38vyi300mgpnr4pkqgknw9xakdyk1xzqfg9zd60d7d")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/go-logr/logr")) + (home-page "https://github.com/go-logr/logr") + (synopsis "A minimal logging API for Go") + (description + "Package logr defines a general-purpose logging API and abstract interfaces +to back that API. Packages in the Go ecosystem can depend on this package, +while callers can implement logging with whatever backend is appropriate. +") + (license license:asl2.0))) + +(define-public go-k8s-io-klog-v2-2.4.0 + (package + (name "go-k8s-io-klog-v2") + (version "2.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes/klog") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1zjih6bgdalga5hqaa2fwwidslq6lv358gkj88a8wwj7w253wc8c")))) + (build-system go-build-system) + (arguments + '(#:import-path "k8s.io/klog/v2" #:unpack-path "k8s.io/klog/v2")) + (propagated-inputs + `(("go-github-com-go-logr-logr-0.2.0" + ,go-github-com-go-logr-logr-0.2.0))) + (home-page "https://k8s.io/klog/v2") + (synopsis "klog") + (description + "Package klog implements logging analogous to the Google-internal C++ INFO/ERROR/V setup. +It provides functions Info, Warning, Error, Fatal, plus formatting variants such as +Infof. It also provides V-style logging controlled by the -v and -vmodule=file=2 flags. +") + (license license:asl2.0))) + +(define-public go-github-com-spf13-afero-1.2.2 + (package + (name "go-github-com-spf13-afero") + (version "1.2.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/spf13/afero") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0j9r65qgd58324m85lkl49vk9dgwd62g7dwvkfcm3k6i9dc555a9")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/spf13/afero")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0))) + (home-page "https://github.com/spf13/afero") + (synopsis "Overview") + (description + "This package provides a FileSystem Abstraction System for Go") + (license license:asl2.0))) + +(define-public go-github-com-go-logr-logr-0.1.0 + (package + (name "go-github-com-go-logr-logr") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/go-logr/logr") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0fhijjhxz4n2j5i24ckzv8r9kri3v44jdyklgbqjfq0xm7izqg14")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/go-logr/logr")) + (home-page "https://github.com/go-logr/logr") + (synopsis "A minimal logging API for Go") + (description + "Package logr defines a general-purpose logging API and abstract interfaces +to back that API. Packages in the Go ecosystem can depend on this package, +while callers can implement logging with whatever backend is appropriate. +") + (license license:asl2.0))) + +(define-public go-k8s-io-klog-v2-2.0.0 + (package + (name "go-k8s-io-klog-v2") + (version "2.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes/klog") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "09vqm0n5l64lzpk3xqm4njbncnphx52qk21gwx8nsgyivlxx1n8g")))) + (build-system go-build-system) + (arguments + '(#:import-path "k8s.io/klog/v2" #:unpack-path "k8s.io/klog/v2")) + (propagated-inputs + `(("go-github-com-go-logr-logr-0.1.0" + ,go-github-com-go-logr-logr-0.1.0))) + (home-page "https://k8s.io/klog/v2") + (synopsis "klog") + (description + "Package klog implements logging analogous to the Google-internal C++ INFO/ERROR/V setup. +It provides functions Info, Warning, Error, Fatal, plus formatting variants such as +Infof. It also provides V-style logging controlled by the -v and -vmodule=file=2 flags. +") + (license license:asl2.0))) + +(define-public go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920 + (package + (name "go-k8s-io-utils") + (version "0.0.0-20201110183641-67b214c5f920") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes/utils") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19rc9v5xin0a8qbf25my3rd0jd74cin2mk2a38j2dwplqy3s9crl")))) + (build-system go-build-system) + (arguments '(#:import-path "k8s.io/utils")) + (propagated-inputs + `(("go-k8s-io-klog-v2-2.0.0" ,go-k8s-io-klog-v2-2.0.0) + ("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0) + ("go-github-com-spf13-afero-1.2.2" ,go-github-com-spf13-afero-1.2.2) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://k8s.io/utils") + (synopsis "Utils") + (description + "This package provides a set of Go libraries that provide low-level, kubernetes-independent packages +supplementing the @url{https://golang.org/pkg/#stdlib,Go standard libs}.") + (license license:asl2.0))) + +(define-public go-golang-org-x-tools-0.0.0-20181030221726-6c7e314b6563 + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20181030221726-6c7e314b6563") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1m1n6r8v6mrlh0yvlz3qxz4s7jc7nis0zf3dfl1i6hqh5xblkwnw")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-github-com-kisielk-errcheck-1.2.0 + (package + (name "go-github-com-kisielk-errcheck") + (version "1.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kisielk/errcheck") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0am6g10ipdxw84byscm7shda654882wjcbinq5c4696m6mhi2qrd")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kisielk/errcheck")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20181030221726-6c7e314b6563" + ,go-golang-org-x-tools-0.0.0-20181030221726-6c7e314b6563))) + (home-page "https://github.com/kisielk/errcheck") + (synopsis "errcheck") + (description + "errcheck is a program for checking for unchecked errors in go programs.") + (license license:expat))) + +(define-public go-github-com-gogo-protobuf-1.3.1 + (package + (name "go-github-com-gogo-protobuf") + (version "1.3.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gogo/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0x77x64sxjgfhmbijqfzmj8h4ar25l2w97h01q3cqs1wk7zfnkhp")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/gogo/protobuf")) + (propagated-inputs + `(("go-github-com-kisielk-gotool-1.0.0" + ,go-github-com-kisielk-gotool-1.0.0) + ("go-github-com-kisielk-errcheck-1.2.0" + ,go-github-com-kisielk-errcheck-1.2.0))) + (home-page "https://github.com/gogo/protobuf") + (synopsis "Protocol Buffers for Go with Gadgets") + (description + "gogoprotobuf is a fork of @url{https://github.com/golang/protobuf,golang/protobuf} with extra code generation features.") + (license license:bsd-3))) + +(define-public go-github-com-gogo-googleapis-1.3.2 + (package + (name "go-github-com-gogo-googleapis") + (version "1.3.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gogo/googleapis") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "10670qprmk151n6pa1yclr89kgrvmalzvkq221xqbid83iv59s2h")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/gogo/googleapis")) + (propagated-inputs + `(("go-github-com-gogo-protobuf-1.3.1" + ,go-github-com-gogo-protobuf-1.3.1))) + (home-page "https://github.com/gogo/googleapis") + (synopsis "Google APIs generated by gogoprotobuf") + (description + "The @url{https://github.com/gogo/grpc-example,grpc-example} includes an example usage of this repository.") + (license license:asl2.0))) + +(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d + (package + (name "go-github-com-cpuguy83-go-md2man-v2") + (version "2.0.0-20190314233015-f79a8a8ca69d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cpuguy83/go-md2man") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) + (propagated-inputs + `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" + ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) + ("go-github-com-russross-blackfriday-v2-2.0.1" + ,go-github-com-russross-blackfriday-v2-2.0.1) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0))) + (home-page "https://github.com/cpuguy83/go-md2man") + (synopsis "go-md2man") + (description "Converts markdown into roff (man pages).") + (license license:expat))) + +(define-public go-github-com-urfave-cli-1.22.1 + (package + (name "go-github-com-urfave-cli") + (version "1.22.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/urfave/cli") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "04ymak18flqlfcn8lycmg8r3931al8dvr8f1cg9n4yjaskmg72v8")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/urfave/cli")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) + ("go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d" + ,go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d) + ("go-github-com-burntsushi-toml-0.3.1" + ,go-github-com-burntsushi-toml-0.3.1))) + (home-page "https://github.com/urfave/cli") + (synopsis "cli") + (description + "Package cli provides a minimal framework for creating and organizing command line +Go applications. cli is designed to be easy to understand and write, the most simple +cli application can be written as follows: +") + (license license:expat))) + +(define-public go-google-golang-org-grpc-1.27.1 + (package + (name "go-google-golang-org-grpc") + (version "1.27.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "09phrrsafgq6hnbw8cawvx44bdpk1p584fys17x1bwn0j0451zzs")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" + ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-github-com-google-go-cmp-0.2.0" + ,go-github-com-google-go-cmp-0.2.0) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2) + ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" + ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) + ("go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473" + ,go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-github-com-containerd-containerd-1.5.8 + (package + (name "go-github-com-containerd-containerd") + (version "1.5.8") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/containerd") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18lzmpbhbk1kq1nwdp6zcxb577kp425l2ikcmb45jcwgqdwzla6l")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/containerd")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) + ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) + ("go-github-com-golang-protobuf-1.3.5" + ,go-github-com-golang-protobuf-1.3.5) + ("go-github-com-gogo-googleapis-1.3.2" + ,go-github-com-gogo-googleapis-1.3.2) + ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" + ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) + ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) + ("go-k8s-io-cri-api-0.20.6" ,go-k8s-io-cri-api-0.20.6) + ("go-k8s-io-component-base-0.20.6" ,go-k8s-io-component-base-0.20.6) + ("go-k8s-io-client-go-0.20.6" ,go-k8s-io-client-go-0.20.6) + ("go-k8s-io-apiserver-0.20.6" ,go-k8s-io-apiserver-0.20.6) + ("go-k8s-io-apimachinery-0.20.6" ,go-k8s-io-apimachinery-0.20.6) + ("go-k8s-io-api-0.20.6" ,go-k8s-io-api-0.20.6) + ("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) + ("go-golang-org-x-sys-0.0.0-20210426230700-d19ff857e887" + ,go-golang-org-x-sys-0.0.0-20210426230700-d19ff857e887) + ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" + ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) + ("go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110" + ,go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110) + ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) + ("go-github-com-tchap-go-patricia-2.2.6+incompatible" + ,go-github-com-tchap-go-patricia-2.2.6+incompatible) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-sirupsen-logrus-1.8.1" + ,go-github-com-sirupsen-logrus-1.8.1) + ("go-github-com-satori-go-uuid-1.2.0" + ,go-github-com-satori-go-uuid-1.2.0) + ("go-github-com-prometheus-client-golang-1.7.1" + ,go-github-com-prometheus-client-golang-1.7.1) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-pelletier-go-toml-1.8.1" + ,go-github-com-pelletier-go-toml-1.8.1) + ("go-github-com-opencontainers-selinux-1.8.2" + ,go-github-com-opencontainers-selinux-1.8.2) + ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417" + ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417) + ("go-github-com-opencontainers-runc-1.0.2" + ,go-github-com-opencontainers-runc-1.0.2) + ("go-github-com-opencontainers-image-spec-1.0.1" + ,go-github-com-opencontainers-image-spec-1.0.1) + ("go-github-com-opencontainers-go-digest-1.0.0" + ,go-github-com-opencontainers-go-digest-1.0.0) + ("go-github-com-moby-sys-symlink-0.1.0" + ,go-github-com-moby-sys-symlink-0.1.0) + ("go-github-com-moby-sys-mountinfo-0.4.1" + ,go-github-com-moby-sys-mountinfo-0.4.1) + ("go-github-com-moby-locker-1.0.1" ,go-github-com-moby-locker-1.0.1) + ("go-github-com-klauspost-compress-1.11.13" + ,go-github-com-klauspost-compress-1.11.13) + ("go-github-com-imdario-mergo-0.3.12" + ,go-github-com-imdario-mergo-0.3.12) + ("go-github-com-hashicorp-go-multierror-1.0.0" + ,go-github-com-hashicorp-go-multierror-1.0.0) + ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" + ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) + ("go-github-com-google-uuid-1.2.0" ,go-github-com-google-uuid-1.2.0) + ("go-github-com-google-go-cmp-0.5.5" + ,go-github-com-google-go-cmp-0.5.5) + ("go-github-com-gogo-protobuf-1.3.2" + ,go-github-com-gogo-protobuf-1.3.2) + ("go-github-com-fsnotify-fsnotify-1.4.9" + ,go-github-com-fsnotify-fsnotify-1.4.9) + ("go-github-com-emicklei-go-restful-2.9.5+incompatible" + ,go-github-com-emicklei-go-restful-2.9.5+incompatible) + ("go-github-com-docker-go-units-0.4.0" + ,go-github-com-docker-go-units-0.4.0) + ("go-github-com-docker-go-metrics-0.0.1" + ,go-github-com-docker-go-metrics-0.0.1) + ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" + ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1) + ("go-github-com-coreos-go-systemd-v22-22.3.2" + ,go-github-com-coreos-go-systemd-v22-22.3.2) + ("go-github-com-containernetworking-plugins-0.9.1" + ,go-github-com-containernetworking-plugins-0.9.1) + ("go-github-com-containerd-zfs-1.0.0" + ,go-github-com-containerd-zfs-1.0.0) + ("go-github-com-containerd-typeurl-1.0.2" + ,go-github-com-containerd-typeurl-1.0.2) + ("go-github-com-containerd-ttrpc-1.1.0" + ,go-github-com-containerd-ttrpc-1.1.0) + ("go-github-com-containerd-nri-0.1.0" + ,go-github-com-containerd-nri-0.1.0) + ("go-github-com-containerd-imgcrypt-1.1.1" + ,go-github-com-containerd-imgcrypt-1.1.1) + ("go-github-com-containerd-go-runc-1.0.0" + ,go-github-com-containerd-go-runc-1.0.0) + ("go-github-com-containerd-go-cni-1.0.2" + ,go-github-com-containerd-go-cni-1.0.2) + ("go-github-com-containerd-fifo-1.0.0" + ,go-github-com-containerd-fifo-1.0.0) + ("go-github-com-containerd-continuity-0.1.0" + ,go-github-com-containerd-continuity-0.1.0) + ("go-github-com-containerd-console-1.0.2" + ,go-github-com-containerd-console-1.0.2) + ("go-github-com-containerd-cgroups-1.0.1" + ,go-github-com-containerd-cgroups-1.0.1) + ("go-github-com-containerd-btrfs-1.0.0" + ,go-github-com-containerd-btrfs-1.0.0) + ("go-github-com-containerd-aufs-1.0.0" + ,go-github-com-containerd-aufs-1.0.0) + ("go-github-com-microsoft-hcsshim-0.8.23" + ,go-github-com-microsoft-hcsshim-0.8.23) + ("go-github-com-microsoft-go-winio-0.4.17" + ,go-github-com-microsoft-go-winio-0.4.17))) + (home-page "https://github.com/containerd/containerd") + (synopsis "Now Recruiting") + (description + "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") + (license license:asl2.0))) + +(define-public go-github-com-azure-azure-sdk-for-go-56.3.0+incompatible + (package + (name "go-github-com-azure-azure-sdk-for-go") + (version "56.3.0+incompatible") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/Azure/azure-sdk-for-go") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1c2z9wnjkm9v6294pdfh26ksxyiy9slfidc297xk0jbclnddf6k5")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/Azure/azure-sdk-for-go")) + (home-page "https://github.com/Azure/azure-sdk-for-go") + (synopsis "Azure SDK for Go") + (description + "Package sdk provides Go packages for managing and using Azure services. +") + (license license:expat))) + +(define-public go-github-com-go-sql-driver-mysql-1.5.0 + (package + (name "go-github-com-go-sql-driver-mysql") + (version "1.5.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/go-sql-driver/mysql") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "11x0m9yf3kdnf6981182r824psgxwfaqhn3x3in4yiidp0w0hk3v")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/go-sql-driver/mysql")) + (home-page "https://github.com/go-sql-driver/mysql") + (synopsis "Go-MySQL-Driver") + (description + "Package mysql provides a MySQL driver for Go's database/sql package. +") + (license license:mpl2.0))) + +(define-public go-github-com-jmespath-go-jmespath-0.3.0 + (package + (name "go-github-com-jmespath-go-jmespath") + (version "0.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jmespath/go-jmespath") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12qgp7yb7yfjxhd311kb820fcjmg7gd4hp2fc4v6x8s7121pwnjp")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/jmespath/go-jmespath")) + (propagated-inputs + `(("go-github-com-stretchr-testify-1.5.1" + ,go-github-com-stretchr-testify-1.5.1))) + (home-page "https://github.com/jmespath/go-jmespath") + (synopsis "go-jmespath - A JMESPath implementation in Go") + (description + "go-jmespath is a GO implementation of JMESPath, +which is a query language for JSON. It will take a JSON +document and transform it into another JSON document +through a JMESPath expression.") + (license license:asl2.0))) + +(define-public go-golang-org-x-net-0.0.0-20200202094626-16171245cfb2 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20200202094626-16171245cfb2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0pb4ap1h28cc4kr59lz94895wvsd2pf1vmd2by6b11ww8mkicn4s")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-github-com-aws-aws-sdk-go-1.34.9 + (package + (name "go-github-com-aws-aws-sdk-go") + (version "1.34.9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/aws/aws-sdk-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0sjh7m6bf4wvyfzx6wx46n4bg5d9vrwwjy0h5ykqwfh8cq3f77ib")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/aws/aws-sdk-go")) + (propagated-inputs + `(("go-golang-org-x-net-0.0.0-20200202094626-16171245cfb2" + ,go-golang-org-x-net-0.0.0-20200202094626-16171245cfb2) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-jmespath-go-jmespath-0.3.0" + ,go-github-com-jmespath-go-jmespath-0.3.0) + ("go-github-com-go-sql-driver-mysql-1.5.0" + ,go-github-com-go-sql-driver-mysql-1.5.0))) + (home-page "https://github.com/aws/aws-sdk-go") + (synopsis "AWS SDK for Go") + (description + "Package sdk is the official AWS SDK for the Go programming language. +") + (license license:asl2.0))) + +(define-public go-github-com-bitly-go-simplejson-0.5.0 + (package + (name "go-github-com-bitly-go-simplejson") + (version "0.5.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/bitly/go-simplejson") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0n9f9dz1jn1jx86d48569nznpjn9fmq3knn7r65xpy7jhih284jj")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/bitly/go-simplejson")) + (home-page "https://github.com/bitly/go-simplejson") + (synopsis "go-simplejson") + (description "a Go package to interact with arbitrary JSON") + (license license:expat))) + +(define-public go-github-com-denverdino-aliyungo-0.0.0-20190125010748-a747050bb1ba + (package + (name "go-github-com-denverdino-aliyungo") + (version "0.0.0-20190125010748-a747050bb1ba") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/denverdino/aliyungo") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0rc16ciz8gjpn36fhp0qz1ns0inlvjaz07z1qffl9ni4b49hhwkn")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/denverdino/aliyungo")) + (home-page "https://github.com/denverdino/aliyungo") + (synopsis "AliyunGo: Go SDK for Aliyun Services") + (description + "This is an unofficial Go SDK for Aliyun services. You are welcome for contribution.") + (license license:asl2.0))) + +(define-public go-github-com-dnaeon-go-vcr-1.0.1 + (package + (name "go-github-com-dnaeon-go-vcr") + (version "1.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/dnaeon/go-vcr") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1d0kpqr12qrqlamz5a47bp05mx49za2v6l1k7c6z71xahfmb7v2d")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/dnaeon/go-vcr")) + (home-page "https://github.com/dnaeon/go-vcr") + (synopsis "go-vcr") + (description + "@code{go-vcr} simplifies testing by recording your HTTP interactions and +replaying them in future runs in order to provide fast, deterministic +and accurate testing of your code.") + (license license:bsd-2))) + +(define-public go-github-com-gofrs-uuid-4.0.0+incompatible + (package + (name "go-github-com-gofrs-uuid") + (version "4.0.0+incompatible") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gofrs/uuid") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "08ma37vvrni836fxlswjd3bl2sdqyw3nxv6zdi1nyncnl9l0421k")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/gofrs/uuid")) + (home-page "https://github.com/gofrs/uuid") + (synopsis "UUID") + (description + "Package uuid provides implementations of the Universally Unique Identifier +(UUID), as specified in RFC-4122 and the Peabody RFC Draft (revision 02). +") + (license license:expat))) + +(define-public go-github-com-mitchellh-osext-0.0.0-20151018003038-5e2d6d41470f + (package + (name "go-github-com-mitchellh-osext") + (version "0.0.0-20151018003038-5e2d6d41470f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mitchellh/osext") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0j635c1cx7crs5wlirlk713l36x70pnlmqrzd3x3bjgnjg194jrk")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mitchellh/osext")) + (home-page "https://github.com/mitchellh/osext") + (synopsis "osext") + (description "Extensions to the standard \"os\" package. +") + (license license:zlib))) + +(define-public go-github-com-ncw-swift-1.0.47 + (package + (name "go-github-com-ncw-swift") + (version "1.0.47") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/ncw/swift") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wxz4lvy6pjabghq8inby2fyh58ysclayccziawc8fd7a67kh4cd")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/ncw/swift")) + (home-page "https://github.com/ncw/swift") + (synopsis "Swift") + (description + "Package swift provides an easy to use interface to Swift / Openstack Object Storage / Rackspace Cloud Files +") + (license license:expat))) + +(define-public go-github-com-spf13-cobra-0.0.3 + (package + (name "go-github-com-spf13-cobra") + (version "0.0.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/spf13/cobra") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1q1nsx05svyv9fv3fy6xv6gs9ffimkyzsfm49flvl3wnvf1ncrkd")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/spf13/cobra")) + (home-page "https://github.com/spf13/cobra") + (synopsis "Table of Contents") + (description + "Package cobra is a commander providing a simple interface to create powerful modern CLI interfaces. +In addition to providing an interface, Cobra simultaneously provides a controller to organize your application code. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-crypto-0.0.0-20210817164053-32db794688a5 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20210817164053-32db794688a5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0arh5rhahrjzmlifmbgswwc0kjkgmhps6g4hzia0i6ismsk74n48")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) + ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" + ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) + ("go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1" + ,go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1) + ("go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110" + ,go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-google-golang-org-api-0.0.0-20160322025152-9bf6e6e569ff + (package + (name "go-google-golang-org-api") + (version "0.0.0-20160322025152-9bf6e6e569ff") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-api-go-client") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "02zn0zr4jrkdnxhxa0h3vm30j27bsc4lcswrffilkrafbspjsrxz")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/api")) + (home-page "https://google.golang.org/api") + (synopsis "Google APIs Client Library for Go") + (description + "Package api is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of +sub-packages. +") + (license license:bsd-3))) + +(define-public go-google-golang-org-cloud-0.0.0-20151119220103-975617b05ea8 + (package + (name "go-google-golang-org-cloud") + (version "0.0.0-20151119220103-975617b05ea8") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-cloud-go") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "156jhn1kakr98jfk830y4yr8lhisdj6qs38ypa42ddmgza9qcmdd")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/cloud")) + (home-page "https://google.golang.org/cloud") + (synopsis "Google Cloud Client Libraries for Go") + (description + "Package cloud is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +of sub-packages. +") + (license license:asl2.0))) + +(define-public go-google-golang-org-grpc-0.0.0-20160317175043-d3ddb4469d5a + (package + (name "go-google-golang-org-grpc") + (version "0.0.0-20160317175043-d3ddb4469d5a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0p45by0s66ragvx9hs8gkz1k1gy8456y794b5zspa0b86y2b53w9")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-gopkg-in-check-v1-1.0.0-20141024133853-64131543e789 + (package + (name "go-gopkg-in-check-v1") + (version "1.0.0-20141024133853-64131543e789") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/check.v1") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "01sz40asq0zwf6j7q2hww33wr1cflglngq8xazw466c9d1f9kyyh")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) + (home-page "https://gopkg.in/check.v1") + (synopsis "Instructions") + (description + "Package check is a rich testing extension for Go's testing package. +") + (license license:bsd-2))) + +(define-public go-github-com-distribution-distribution-v3-3.0.0-20211118083504-a29a3c99a684 + (package + (name "go-github-com-distribution-distribution-v3") + (version "3.0.0-20211118083504-a29a3c99a684") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/distribution/distribution") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1v0larzrvgm4hyq5hj4s7sx0rdximk715n95z294mqr7kpsbjfrh")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/distribution/distribution/v3")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) + ("go-gopkg-in-check-v1-1.0.0-20141024133853-64131543e789" + ,go-gopkg-in-check-v1-1.0.0-20141024133853-64131543e789) + ("go-google-golang-org-grpc-0.0.0-20160317175043-d3ddb4469d5a" + ,go-google-golang-org-grpc-0.0.0-20160317175043-d3ddb4469d5a) + ("go-google-golang-org-cloud-0.0.0-20151119220103-975617b05ea8" + ,go-google-golang-org-cloud-0.0.0-20151119220103-975617b05ea8) + ("go-google-golang-org-api-0.0.0-20160322025152-9bf6e6e569ff" + ,go-google-golang-org-api-0.0.0-20160322025152-9bf6e6e569ff) + ("go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45" + ,go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45) + ("go-golang-org-x-crypto-0.0.0-20210817164053-32db794688a5" + ,go-golang-org-x-crypto-0.0.0-20210817164053-32db794688a5) + ("go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20140908184405-b21fdbd4370f" + ,go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20140908184405-b21fdbd4370f) + ("go-github-com-yvasiyarov-gorelic-0.0.0-20141212073537-a9bba5b9ab50" + ,go-github-com-yvasiyarov-gorelic-0.0.0-20141212073537-a9bba5b9ab50) + ("go-github-com-yvasiyarov-go-metrics-0.0.0-20140926110328-57bccd1ccd43" + ,go-github-com-yvasiyarov-go-metrics-0.0.0-20140926110328-57bccd1ccd43) + ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) + ("go-github-com-spf13-cobra-0.0.3" ,go-github-com-spf13-cobra-0.0.3) + ("go-github-com-sirupsen-logrus-1.8.1" + ,go-github-com-sirupsen-logrus-1.8.1) + ("go-github-com-opencontainers-image-spec-1.0.2" + ,go-github-com-opencontainers-image-spec-1.0.2) + ("go-github-com-opencontainers-go-digest-1.0.0" + ,go-github-com-opencontainers-go-digest-1.0.0) + ("go-github-com-ncw-swift-1.0.47" ,go-github-com-ncw-swift-1.0.47) + ("go-github-com-mitchellh-osext-0.0.0-20151018003038-5e2d6d41470f" + ,go-github-com-mitchellh-osext-0.0.0-20151018003038-5e2d6d41470f) + ("go-github-com-mitchellh-mapstructure-1.1.2" + ,go-github-com-mitchellh-mapstructure-1.1.2) + ("go-github-com-inconshreveable-mousetrap-1.0.0" + ,go-github-com-inconshreveable-mousetrap-1.0.0) + ("go-github-com-gorilla-mux-1.8.0" ,go-github-com-gorilla-mux-1.8.0) + ("go-github-com-gorilla-handlers-1.5.1" + ,go-github-com-gorilla-handlers-1.5.1) + ("go-github-com-gomodule-redigo-1.8.2" + ,go-github-com-gomodule-redigo-1.8.2) + ("go-github-com-gofrs-uuid-4.0.0+incompatible" + ,go-github-com-gofrs-uuid-4.0.0+incompatible) + ("go-github-com-docker-libtrust-0.0.0-20150114040149-fa567046d9b1" + ,go-github-com-docker-libtrust-0.0.0-20150114040149-fa567046d9b1) + ("go-github-com-docker-go-metrics-0.0.1" + ,go-github-com-docker-go-metrics-0.0.1) + ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" + ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) + ("go-github-com-dnaeon-go-vcr-1.0.1" + ,go-github-com-dnaeon-go-vcr-1.0.1) + ("go-github-com-denverdino-aliyungo-0.0.0-20190125010748-a747050bb1ba" + ,go-github-com-denverdino-aliyungo-0.0.0-20190125010748-a747050bb1ba) + ("go-github-com-bugsnag-panicwrap-0.0.0-20151223152923-e2c28503fcd0" + ,go-github-com-bugsnag-panicwrap-0.0.0-20151223152923-e2c28503fcd0) + ("go-github-com-bugsnag-osext-0.0.0-20130617224835-0dd3f918b21b" + ,go-github-com-bugsnag-osext-0.0.0-20130617224835-0dd3f918b21b) + ("go-github-com-bugsnag-bugsnag-go-0.0.0-20141110184014-b1d153021fcd" + ,go-github-com-bugsnag-bugsnag-go-0.0.0-20141110184014-b1d153021fcd) + ("go-github-com-bshuster-repo-logrus-logstash-hook-1.0.0" + ,go-github-com-bshuster-repo-logrus-logstash-hook-1.0.0) + ("go-github-com-bitly-go-simplejson-0.5.0" + ,go-github-com-bitly-go-simplejson-0.5.0) + ("go-github-com-aws-aws-sdk-go-1.34.9" + ,go-github-com-aws-aws-sdk-go-1.34.9) + ("go-github-com-shopify-logrus-bugsnag-0.0.0-20171204204709-577dee27f20d" + ,go-github-com-shopify-logrus-bugsnag-0.0.0-20171204204709-577dee27f20d) + ("go-github-com-azure-go-autorest-autorest-to-0.4.0" + ,go-github-com-azure-go-autorest-autorest-to-0.4.0) + ("go-github-com-azure-go-autorest-autorest-adal-0.9.15" + ,go-github-com-azure-go-autorest-autorest-adal-0.9.15) + ("go-github-com-azure-go-autorest-autorest-0.11.20" + ,go-github-com-azure-go-autorest-autorest-0.11.20) + ("go-github-com-azure-azure-sdk-for-go-56.3.0+incompatible" + ,go-github-com-azure-azure-sdk-for-go-56.3.0+incompatible))) + (home-page "https://github.com/distribution/distribution") + (synopsis "Distribution") + (description + "Package distribution will define the interfaces for the components of +docker distribution. The goal is to allow users to reliably package, ship +and store content related to docker images. +") + (license license:asl2.0))) + +(define-public go-github-com-docker-cli-20.10.11+incompatible + (package + (name "go-github-com-docker-cli") + (version "20.10.11+incompatible") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/docker/cli") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0dmmxn9ahyq2yq935fvp1b6ka6s43ih9nh6wwx8v6rjg7y35rb1n")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/docker/cli")) + (home-page "https://github.com/docker/cli") + (synopsis "docker/cli") + (description + "This repository is the home of the cli used in the Docker CE and +Docker EE products.") + (license license:asl2.0))) + +(define-public go-github-com-docker-docker-20.10.11+incompatible + (package + (name "go-github-com-docker-docker") + (version "20.10.11+incompatible") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/moby/moby") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1h1r66j57l073iba6hwrhcz779vaym68l1gfycdiw2d2gglfrdgr")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/docker/docker")) + (home-page "https://github.com/docker/docker") + (synopsis "The Moby Project") + (description + "Moby is an open-source project created by Docker to enable and accelerate software containerization.") + (license license:asl2.0))) + +(define-public go-github-com-opencontainers-go-digest-1.0.0 + (package + (name "go-github-com-opencontainers-go-digest") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/go-digest") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0i5acjajvr6hi9zb7gxwifd8w28y884cv7cx36adj8lngj647xbi")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/go-digest")) + (home-page "https://github.com/opencontainers/go-digest") + (synopsis "go-digest") + (description + "Package digest provides a generalized type to opaquely represent message +digests and their operations within the registry. The Digest type is +designed to serve as a flexible identifier in a content-addressable system. +More importantly, it provides tools and wrappers to work with +hash.Hash-based digests with little effort. +") + (license (list license:asl2.0 license:cc-by-sa4.0)))) + +(define-public go-github-com-opencontainers-image-spec-1.0.2 + (package + (name "go-github-com-opencontainers-image-spec") + (version "1.0.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/image-spec") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1wcw1z39wjx338406ga86a41f5ird0yc4ab3c70nfhkpkvjjzhkm")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/image-spec")) + (home-page "https://github.com/opencontainers/image-spec") + (synopsis "OCI Image Format Specification") + (description + "The OCI Image Format project creates and maintains the software shipping container image format spec (OCI Image Format).") + (license license:asl2.0))) + +(define-public go-github-com-phayes-freeport-0.0.0-20180830031419-95f893ade6f2 + (package + (name "go-github-com-phayes-freeport") + (version "0.0.0-20180830031419-95f893ade6f2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/phayes/freeport") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "09kkm359hg8xl6qj8fqrs5fkrzn82i7frr5i0vy1kkfvd9ng6n90")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/phayes/freeport")) + (home-page "https://github.com/phayes/freeport") + (synopsis "FreePort") + (description "Get a free open TCP port that is ready to use.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20191026070338-33540a1f6037") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0fjcv0vzvi6za0b4xmnk3932pr9f9gczzf03y0kgq3ry9rqg169y")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-sirupsen-logrus-1.8.1 + (package + (name "go-github-com-sirupsen-logrus") + (version "1.8.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sirupsen/logrus") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0rvqzic2zz7fpxyizmqxwmhv1m52ii9bgxnqa6km8wsa0l08wh42")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/sirupsen/logrus")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037" + ,go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037) + ("go-github-com-stretchr-testify-1.2.2" + ,go-github-com-stretchr-testify-1.2.2) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/sirupsen/logrus") + (synopsis "Logrus") + (description + "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. +") + (license license:expat))) + +(define-public go-github-com-russross-blackfriday-v2-2.0.1 + (package + (name "go-github-com-russross-blackfriday-v2") + (version "2.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/russross/blackfriday") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0nlz7isdd4rgnwzs68499hlwicxz34j2k2a0b8jy0y7ycd2bcr5j")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/russross/blackfriday/v2")) + (home-page "https://github.com/russross/blackfriday") + (synopsis "Blackfriday") + (description "Package blackfriday is a markdown processor. +") + (license license:bsd-2))) + +(define-public go-github-com-shurcool-sanitized-anchor-name-1.0.0 + (package + (name "go-github-com-shurcool-sanitized-anchor-name") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/shurcooL/sanitized_anchor_name") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1gv9p2nr46z80dnfjsklc6zxbgk96349sdsxjz05f3z6wb6m5l8f")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/shurcooL/sanitized_anchor_name")) + (home-page "https://github.com/shurcooL/sanitized_anchor_name") + (synopsis "sanitized_anchor_name") + (description + "Package sanitized_anchor_name provides a func to create sanitized anchor names. +") + (license license:expat))) + +(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0 + (package + (name "go-github-com-cpuguy83-go-md2man-v2") + (version "2.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cpuguy83/go-md2man") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) + (propagated-inputs + `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" + ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) + ("go-github-com-russross-blackfriday-v2-2.0.1" + ,go-github-com-russross-blackfriday-v2-2.0.1) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0))) + (home-page "https://github.com/cpuguy83/go-md2man") + (synopsis "go-md2man") + (description "Converts markdown into roff (man pages).") + (license license:expat))) + +(define-public go-github-com-hashicorp-go-cleanhttp-0.5.1 + (package + (name "go-github-com-hashicorp-go-cleanhttp") + (version "0.5.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/go-cleanhttp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "07kx3fhryqmaw3czacmm11qwx63js2q8cfq967vphk7xg9q377kk")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/go-cleanhttp")) + (home-page "https://github.com/hashicorp/go-cleanhttp") + (synopsis "cleanhttp") + (description + "Package cleanhttp offers convenience utilities for acquiring \"clean\" +http.Transport and http.Client structs. +") + (license license:mpl2.0))) + +(define-public go-github-com-mitchellh-go-homedir-1.0.0 + (package + (name "go-github-com-mitchellh-go-homedir") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mitchellh/go-homedir") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0f0z0aa4wivk4z1y503dmnw0k0g0g403dly8i4q263gfshs82sbq")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mitchellh/go-homedir")) + (home-page "https://github.com/mitchellh/go-homedir") + (synopsis "go-homedir") + (description + "This is a Go library for detecting the user's home directory without +the use of cgo, so the library can be used in cross-compilation environments.") + (license license:expat))) + +(define-public go-github-com-hashicorp-go-rootcerts-1.0.0 + (package + (name "go-github-com-hashicorp-go-rootcerts") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/go-rootcerts") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wply5zhj1rcybr932zbwm1i18q5wr7kgkhnz6bw6mk1n9yr8lfj")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/go-rootcerts")) + (propagated-inputs + `(("go-github-com-mitchellh-go-homedir-1.0.0" + ,go-github-com-mitchellh-go-homedir-1.0.0))) + (home-page "https://github.com/hashicorp/go-rootcerts") + (synopsis "rootcerts") + (description + "Package rootcerts contains functions to aid in loading CA certificates for +TLS connections. +") + (license license:mpl2.0))) + +(define-public go-github-com-armon-circbuf-0.0.0-20150827004946-bbbad097214e + (package + (name "go-github-com-armon-circbuf") + (version "0.0.0-20150827004946-bbbad097214e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/armon/circbuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1idpr0lzb2px2p3wgfq2276yl7jpaz43df6n91kf790404s4zmk3")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/armon/circbuf")) + (home-page "https://github.com/armon/circbuf") + (synopsis "circbuf") + (description + "This repository provides the @code{circbuf} package. This provides a @code{Buffer} object +which is a circular (or ring) buffer. It has a fixed size, but can be written +to infinitely. Only the last @code{size} bytes are ever retained. The buffer implements +the @code{io.Writer} interface.") + (license license:expat))) + +(define-public go-github-com-hashicorp-go-syslog-1.0.0 + (package + (name "go-github-com-hashicorp-go-syslog") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/go-syslog") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "09vccqggz212cg0jir6vv708d6mx0f9w5bxrcdah3h6chgmal6v1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/go-syslog")) + (home-page "https://github.com/hashicorp/go-syslog") + (synopsis "go-syslog") + (description + "This repository provides a very simple @code{gsyslog} package. The point of this +package is to allow safe importing of syslog without introducing cross-compilation +issues. The stdlib @code{log/syslog} cannot be imported on Windows systems, and without +conditional compilation this adds complications.") + (license license:expat))) + +(define-public go-github-com-hashicorp-go-uuid-1.0.1 + (package + (name "go-github-com-hashicorp-go-uuid") + (version "1.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/go-uuid") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0jvb88m0rq41bwgirsadgw7mnayl27av3gd2vqa3xvxp3fy0hp5k")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/go-uuid")) + (home-page "https://github.com/hashicorp/go-uuid") + (synopsis "uuid") + (description + "Generates UUID-format strings using high quality, bytes. It is @strong{not} intended to be RFC compliant, merely to use a well-understood string representation of a 128-bit value. It can also parse UUID-format strings into their component bytes.") + (license license:mpl2.0))) + +(define-public go-github-com-hashicorp-logutils-1.0.0 + (package + (name "go-github-com-hashicorp-logutils") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/logutils") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "076wf4sh5p3f953ndqk1cc0x7jhmlqrxak9953rz79rcdw77rjvv")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/logutils")) + (home-page "https://github.com/hashicorp/logutils") + (synopsis "logutils") + (description + "Package logutils augments the standard log package with levels. +") + (license license:mpl2.0))) + +(define-public go-github-com-hashicorp-go-net-0.0.1 + (package + (name "go-github-com-hashicorp-go-net") + (version "0.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/go.net") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "06arwi95xp5rxyz7rndvhc3wlwg0jn9a5z6djf3yyg5h9zfab9i4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/go.net")) + (home-page "https://github.com/hashicorp/go.net") + (synopsis #f) + (description #f) + (license license:bsd-3))) + +(define-public go-github-com-hashicorp-mdns-1.0.0 + (package + (name "go-github-com-hashicorp-mdns") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/mdns") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0qr4l91hhi97s8a1isnrw3s4q8pjzacqiks870vnwh15v7ig3axd")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/mdns")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20181026203630-95b1ffbd15a5" + ,go-golang-org-x-sys-0.0.0-20181026203630-95b1ffbd15a5) + ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" + ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) + ("go-golang-org-x-net-0.0.0-20181023162649-9b4f9f5ad519" + ,go-golang-org-x-net-0.0.0-20181023162649-9b4f9f5ad519) + ("go-golang-org-x-crypto-0.0.0-20181029021203-45a5f77698d3" + ,go-golang-org-x-crypto-0.0.0-20181029021203-45a5f77698d3) + ("go-github-com-miekg-dns-1.0.14" ,go-github-com-miekg-dns-1.0.14) + ("go-github-com-hashicorp-go-net-0.0.1" + ,go-github-com-hashicorp-go-net-0.0.1))) + (home-page "https://github.com/hashicorp/mdns") + (synopsis "mdns") + (description + "Simple mDNS client/server library in Golang. mDNS or Multicast DNS can be +used to discover services on the local network without the use of an authoritative +DNS server. This enables peer-to-peer discovery. It is important to note that many +networks restrict the use of multicasting, which prevents mDNS from functioning. +Notably, multicast cannot be used in any sort of cloud, or shared infrastructure +environment. However it works well in most office, home, or private infrastructure +environments.") + (license license:expat))) + +(define-public go-github-com-armon-go-metrics-0.0.0-20180917152333-f0300d1749da + (package + (name "go-github-com-armon-go-metrics") + (version "0.0.0-20180917152333-f0300d1749da") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/armon/go-metrics") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "13l7c35ps0r27vxfil2w0xhhc7w5rh00awvlmn4cz0a937b9ffpv")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/armon/go-metrics")) + (home-page "https://github.com/armon/go-metrics") + (synopsis "go-metrics") + (description + "This library provides a @code{metrics} package which can be used to instrument code, +expose application metrics, and profile runtime performance in a flexible manner.") + (license license:expat))) + +(define-public go-github-com-hashicorp-go-uuid-1.0.0 + (package + (name "go-github-com-hashicorp-go-uuid") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/go-uuid") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1jflywlani7583qm4ysph40hsgx3n66n5zr2k84i057fmwa1ypfy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/go-uuid")) + (home-page "https://github.com/hashicorp/go-uuid") + (synopsis "uuid") + (description + "Generates UUID-format strings using high quality, bytes. It is @strong{not} intended to be RFC compliant, merely to use a well-understood string representation of a 128-bit value. It can also parse UUID-format strings into their component bytes.") + (license license:mpl2.0))) + +(define-public go-github-com-hashicorp-go-immutable-radix-1.0.0 + (package + (name "go-github-com-hashicorp-go-immutable-radix") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/go-immutable-radix") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1v3nmsnk1s8bzpclrhirz7iq0g5xxbw9q5gvrg9ss6w9crs72qr6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/go-immutable-radix")) + (propagated-inputs + `(("go-github-com-hashicorp-golang-lru-0.5.0" + ,go-github-com-hashicorp-golang-lru-0.5.0) + ("go-github-com-hashicorp-go-uuid-1.0.0" + ,go-github-com-hashicorp-go-uuid-1.0.0))) + (home-page "https://github.com/hashicorp/go-immutable-radix") + (synopsis "go-immutable-radix") + (description + "This package provides the @code{iradix} package that implements an immutable @url{http://en.wikipedia.org/wiki/Radix_tree,radix tree}. +The package only provides a single @code{Tree} implementation, optimized for sparse nodes.") + (license license:mpl2.0))) + +(define-public go-github-com-hashicorp-go-msgpack-0.5.3 + (package + (name "go-github-com-hashicorp-go-msgpack") + (version "0.5.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/go-msgpack") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "00jv0ajqd58pkb2yyhlrjp0rv1mvb1ijx3yqjyikcmzvk9jb4h5m")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/go-msgpack")) + (home-page "https://github.com/hashicorp/go-msgpack") + (synopsis "go-codec") + (description "This repository contains the @code{go-codec} library.") + (license license:expat))) + +(define-public go-github-com-hashicorp-go-sockaddr-1.0.0 + (package + (name "go-github-com-hashicorp-go-sockaddr") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/go-sockaddr") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1yn1xq8ysn0lszmkygz3a9lgpswbz1p91jv7q8l20s4749a22xgi")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/go-sockaddr")) + (home-page "https://github.com/hashicorp/go-sockaddr") + (synopsis "go-sockaddr") + (description + "Package sockaddr is a Go implementation of the UNIX socket family data types and +related helper functions. +") + (license license:mpl2.0))) + +(define-public go-github-com-miekg-dns-1.0.14 + (package + (name "go-github-com-miekg-dns") + (version "1.0.14") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/miekg/dns") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1qgli6yp59bv6vc6zag84cwxmcxgnyxm1q2f301yyijk3wy5b2ak")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/miekg/dns")) + (home-page "https://github.com/miekg/dns") + (synopsis "Alternative (more granular) approach to a DNS library") + (description + "Package dns implements a full featured interface to the Domain Name System. +Both server- and client-side programming is supported. The package allows +complete control over what is sent out to the DNS. The API follows the +less-is-more principle, by presenting a small, clean interface. +") + (license license:bsd-3))) + +(define-public go-github-com-sean--seed-0.0.0-20170313163322-e2103e2c3529 + (package + (name "go-github-com-sean--seed") + (version "0.0.0-20170313163322-e2103e2c3529") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sean-/seed") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0glir8jxi1w7aga2jwdb63pp1h8q4whknili7xixsqzwyy716125")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/sean-/seed")) + (home-page "https://github.com/sean-/seed") + (synopsis "- Quickly Seed Go's Random Number Generator") + (description + "Boiler-plate to securely @url{https://en.wikipedia.org/wiki/Random_seed,seed} Go's +random number generator (if possible). This library isn't anything fancy, it's +just a canonical way of seeding Go's random number generator. Cribbed from +@url{https://github.com/hashicorp/nomad/commit/f89a993ec6b91636a3384dd568898245fbc273a1,(code Nomad)} +before it was moved into +@url{https://github.com/hashicorp/consul/commit/d695bcaae6e31ee307c11fdf55bb0bf46ea9fcf4,(code Consul)} +and made into a helper function, and now further modularized to be a super +lightweight and reusable library.") + (license #f))) + +(define-public go-golang-org-x-crypto-0.0.0-20181029021203-45a5f77698d3 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20181029021203-45a5f77698d3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0636jjj89wkzqchajwwzgcn4aafc334p70nawh9jzavg2mkx0ch4")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20181023162649-9b4f9f5ad519 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20181023162649-9b4f9f5ad519") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "06hvxy113h76f31gv1mq6vdr6xja1zv0fdig686l2b4y2b6swych")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20181026203630-95b1ffbd15a5 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20181026203630-95b1ffbd15a5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "06c3lf93wzf5kkfmzmgn75x4c0a7159vrwjrqh6zh9zxzqq5whpq")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-hashicorp-memberlist-0.1.3 + (package + (name "go-github-com-hashicorp-memberlist") + (version "0.1.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/memberlist") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0k1spq7dagvqj3baqw2dhxx1zxrb02y6m3apzr3a7gyirii890g3")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/memberlist")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20181026203630-95b1ffbd15a5" + ,go-golang-org-x-sys-0.0.0-20181026203630-95b1ffbd15a5) + ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" + ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) + ("go-golang-org-x-net-0.0.0-20181023162649-9b4f9f5ad519" + ,go-golang-org-x-net-0.0.0-20181023162649-9b4f9f5ad519) + ("go-golang-org-x-crypto-0.0.0-20181029021203-45a5f77698d3" + ,go-golang-org-x-crypto-0.0.0-20181029021203-45a5f77698d3) + ("go-github-com-stretchr-testify-1.2.2" + ,go-github-com-stretchr-testify-1.2.2) + ("go-github-com-sean--seed-0.0.0-20170313163322-e2103e2c3529" + ,go-github-com-sean--seed-0.0.0-20170313163322-e2103e2c3529) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-pascaldekloe-goe-0.0.0-20180627143212-57f6aae5913c" + ,go-github-com-pascaldekloe-goe-0.0.0-20180627143212-57f6aae5913c) + ("go-github-com-miekg-dns-1.0.14" ,go-github-com-miekg-dns-1.0.14) + ("go-github-com-hashicorp-go-sockaddr-1.0.0" + ,go-github-com-hashicorp-go-sockaddr-1.0.0) + ("go-github-com-hashicorp-go-multierror-1.0.0" + ,go-github-com-hashicorp-go-multierror-1.0.0) + ("go-github-com-hashicorp-go-msgpack-0.5.3" + ,go-github-com-hashicorp-go-msgpack-0.5.3) + ("go-github-com-hashicorp-go-immutable-radix-1.0.0" + ,go-github-com-hashicorp-go-immutable-radix-1.0.0) + ("go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c" + ,go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1) + ("go-github-com-armon-go-metrics-0.0.0-20180917152333-f0300d1749da" + ,go-github-com-armon-go-metrics-0.0.0-20180917152333-f0300d1749da))) + (home-page "https://github.com/hashicorp/memberlist") + (synopsis "memberlist") + (description + "memberlist is a library that manages cluster +membership and member failure detection using a gossip based protocol. +") + (license license:mpl2.0))) + +(define-public go-github-com-armon-go-radix-0.0.0-20180808171621-7fddfc383310 + (package + (name "go-github-com-armon-go-radix") + (version "0.0.0-20180808171621-7fddfc383310") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/armon/go-radix") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0y8chspn14n9xpsfb9gxnnf819rfpriaz64v81p7873a42kkhxb4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/armon/go-radix")) + (home-page "https://github.com/armon/go-radix") + (synopsis "go-radix") + (description + "This package provides the @code{radix} package that implements a @url{http://en.wikipedia.org/wiki/Radix_tree,radix tree}. +The package only provides a single @code{Tree} implementation, optimized for sparse nodes.") + (license license:expat))) + +(define-public go-github-com-bgentry-speakeasy-0.1.0 + (package + (name "go-github-com-bgentry-speakeasy") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/bgentry/speakeasy") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "02dfrj0wyphd3db9zn2mixqxwiz1ivnyc5xc7gkz58l5l27nzp8s")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/bgentry/speakeasy")) + (home-page "https://github.com/bgentry/speakeasy") + (synopsis "Speakeasy") + (description + "This package provides cross-platform Go (#golang) helpers for taking user input +from the terminal while not echoing the input back (similar to @code{getpasswd}). The +package uses syscalls to avoid any dependence on cgo, and is therefore +compatible with cross-compiling.") + (license license:expat))) + +(define-public go-github-com-fatih-color-1.7.0 + (package + (name "go-github-com-fatih-color") + (version "1.7.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/fatih/color") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0v8msvg38r8d1iiq2i5r4xyfx0invhc941kjrsg5gzwvagv55inv")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/fatih/color")) + (home-page "https://github.com/fatih/color") + (synopsis "color") + (description + "Package color is an ANSI color package to output colorized or SGR defined +output to the standard output. The API can be used in several way, pick one +that suits you. +") + (license license:expat))) + +(define-public go-github-com-hashicorp-errwrap-1.0.0 + (package + (name "go-github-com-hashicorp-errwrap") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/errwrap") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0slfb6w3b61xz04r32bi0a1bygc82rjzhqkxj2si2074wynqnr1c")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/errwrap")) + (home-page "https://github.com/hashicorp/errwrap") + (synopsis "errwrap") + (description + "Package errwrap implements methods to formalize error wrapping in Go. +") + (license license:mpl2.0))) + +(define-public go-github-com-hashicorp-go-multierror-1.0.0 + (package + (name "go-github-com-hashicorp-go-multierror") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/go-multierror") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "00nyn8llqzbfm8aflr9kwsvpzi4kv8v45c141v88xskxp5xf6z49")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/go-multierror")) + (propagated-inputs + `(("go-github-com-hashicorp-errwrap-1.0.0" + ,go-github-com-hashicorp-errwrap-1.0.0))) + (home-page "https://github.com/hashicorp/go-multierror") + (synopsis "go-multierror") + (description + "@code{go-multierror} is a package for Go that provides a mechanism for +representing a list of @code{error} values as a single @code{error}.") + (license license:mpl2.0))) + +(define-public go-github-com-mattn-go-colorable-0.0.9 + (package + (name "go-github-com-mattn-go-colorable") + (version "0.0.9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mattn/go-colorable") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1nwjmsppsjicr7anq8na6md7b1z84l9ppnlr045hhxjvbkqwalvx")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mattn/go-colorable")) + (home-page "https://github.com/mattn/go-colorable") + (synopsis "go-colorable") + (description "Colorable writer for windows.") + (license license:expat))) + +(define-public go-github-com-mattn-go-isatty-0.0.3 + (package + (name "go-github-com-mattn-go-isatty") + (version "0.0.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mattn/go-isatty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "06w45aqz2a6yrk25axbly2k5wmsccv8cspb94bfmz4izvw8h927n")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mattn/go-isatty")) + (home-page "https://github.com/mattn/go-isatty") + (synopsis "go-isatty") + (description "Package isatty implements interface to isatty +") + (license license:expat))) + +(define-public go-github-com-posener-complete-1.1.1 + (package + (name "go-github-com-posener-complete") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/posener/complete") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1nbdiybjizbaxbf5q0xwbq0cjqw4bl6jggvsjzrpif0w86fcjda2")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/posener/complete")) + (home-page "https://github.com/posener/complete") + (synopsis "complete") + (description + "Package complete provides a tool for bash writing bash completion in go, and bash completion for the go command line. +") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20180823144017-11551d06cbcc + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20180823144017-11551d06cbcc") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0j34525b9smcyjqmxvvqgcfn87kkx3b2izidmjp2cmhjxzjrgpwm")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-mitchellh-cli-1.0.0 + (package + (name "go-github-com-mitchellh-cli") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mitchellh/cli") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1i9kmr7rcf10d2hji8h4247hmc0nbairv7a0q51393aw2h1bnwg2")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mitchellh/cli")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20180823144017-11551d06cbcc" + ,go-golang-org-x-sys-0.0.0-20180823144017-11551d06cbcc) + ("go-github-com-posener-complete-1.1.1" + ,go-github-com-posener-complete-1.1.1) + ("go-github-com-mattn-go-isatty-0.0.3" + ,go-github-com-mattn-go-isatty-0.0.3) + ("go-github-com-mattn-go-colorable-0.0.9" + ,go-github-com-mattn-go-colorable-0.0.9) + ("go-github-com-hashicorp-go-multierror-1.0.0" + ,go-github-com-hashicorp-go-multierror-1.0.0) + ("go-github-com-fatih-color-1.7.0" ,go-github-com-fatih-color-1.7.0) + ("go-github-com-bgentry-speakeasy-0.1.0" + ,go-github-com-bgentry-speakeasy-0.1.0) + ("go-github-com-armon-go-radix-0.0.0-20180808171621-7fddfc383310" + ,go-github-com-armon-go-radix-0.0.0-20180808171621-7fddfc383310))) + (home-page "https://github.com/mitchellh/cli") + (synopsis "Go CLI Library") + (description + "cli is a library for implementing powerful command-line interfaces in Go. +cli is the library that powers the CLI for +@url{https://github.com/mitchellh/packer,Packer}, +@url{https://github.com/hashicorp/serf,Serf}, +@url{https://github.com/hashicorp/consul,Consul}, +@url{https://github.com/hashicorp/vault,Vault}, +@url{https://github.com/hashicorp/terraform,Terraform}, and +@url{https://github.com/hashicorp/nomad,Nomad}.") + (license license:mpl2.0))) + +(define-public go-github-com-mitchellh-gox-0.4.0 + (package + (name "go-github-com-mitchellh-gox") + (version "0.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mitchellh/gox") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1q4fdkw904mrmh1q5z8pfd3r0gcn5dm776kldqawddy93iiwnp8r")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mitchellh/gox")) + (home-page "https://github.com/mitchellh/gox") + (synopsis "Gox - Simple Go Cross Compilation") + (description + "Gox is a simple, no-frills tool for Go cross compilation that behaves a +lot like standard @code{go build}. Gox will parallelize builds for multiple +platforms. Gox will also build the cross-compilation toolchain for you.") + (license license:mpl2.0))) + +(define-public go-github-com-mitchellh-iochan-1.0.0 + (package + (name "go-github-com-mitchellh-iochan") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mitchellh/iochan") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "058n9bbf536f2nw3pbs7pysrg9cqvgkb28z2zf5wjyrzrknyk53g")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mitchellh/iochan")) + (home-page "https://github.com/mitchellh/iochan") + (synopsis "iochan") + (description + "iochan is a Go library for treating @code{io} readers and writers like channels. +This is useful when sometimes you wish to use @code{io.Reader} and such in @code{select} +statements.") + (license license:expat))) + +(define-public go-github-com-mitchellh-mapstructure-0.0.0-20160808181253-ca63d7c062ee + (package + (name "go-github-com-mitchellh-mapstructure") + (version "0.0.0-20160808181253-ca63d7c062ee") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mitchellh/mapstructure") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1yjwhgi57l5fxlmpdchipdd4jasdn1sa8ccl2f2486v06rv6z7gr")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mitchellh/mapstructure")) + (home-page "https://github.com/mitchellh/mapstructure") + (synopsis "mapstructure") + (description + "Package mapstructure exposes functionality to convert one arbitrary +Go type into another, typically to convert a map[string]interface{} +into a native Go structure. +") + (license license:expat))) + +(define-public go-github-com-ryanuber-columnize-0.0.0-20160712163229-9b3edd62028f + (package + (name "go-github-com-ryanuber-columnize") + (version "0.0.0-20160712163229-9b3edd62028f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/ryanuber/columnize") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ya1idkbb0a9fjlhkcnh5a9yvpwzwfmbyg7d56lpplwr9rqi1da4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/ryanuber/columnize")) + (home-page "https://github.com/ryanuber/columnize") + (synopsis "Columnize") + (description "Easy column-formatted output for golang") + (license license:expat))) + +(define-public go-golang-org-x-net-0.0.0-20181201002055-351d144fa1fc + (package + (name "go-golang-org-x-net") + (version "0.0.0-20181201002055-351d144fa1fc") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1c5x25qjyz83y92bq0lll5kmznyi3m02wd4c54scgf0866gy938k")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-github-com-hashicorp-serf-0.8.2 + (package + (name "go-github-com-hashicorp-serf") + (version "0.8.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/serf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0nrslghvdjhaczr2xp9mn8xgcx1dxl4jgpbk0l61ssmxahpx4iyc")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/serf")) + (propagated-inputs + `(("go-golang-org-x-net-0.0.0-20181201002055-351d144fa1fc" + ,go-golang-org-x-net-0.0.0-20181201002055-351d144fa1fc) + ("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0) + ("go-github-com-ryanuber-columnize-0.0.0-20160712163229-9b3edd62028f" + ,go-github-com-ryanuber-columnize-0.0.0-20160712163229-9b3edd62028f) + ("go-github-com-mitchellh-mapstructure-0.0.0-20160808181253-ca63d7c062ee" + ,go-github-com-mitchellh-mapstructure-0.0.0-20160808181253-ca63d7c062ee) + ("go-github-com-mitchellh-iochan-1.0.0" + ,go-github-com-mitchellh-iochan-1.0.0) + ("go-github-com-mitchellh-gox-0.4.0" + ,go-github-com-mitchellh-gox-0.4.0) + ("go-github-com-mitchellh-cli-1.0.0" + ,go-github-com-mitchellh-cli-1.0.0) + ("go-github-com-hashicorp-memberlist-0.1.3" + ,go-github-com-hashicorp-memberlist-0.1.3) + ("go-github-com-hashicorp-mdns-1.0.0" + ,go-github-com-hashicorp-mdns-1.0.0) + ("go-github-com-hashicorp-logutils-1.0.0" + ,go-github-com-hashicorp-logutils-1.0.0) + ("go-github-com-hashicorp-go-uuid-1.0.1" + ,go-github-com-hashicorp-go-uuid-1.0.1) + ("go-github-com-hashicorp-go-syslog-1.0.0" + ,go-github-com-hashicorp-go-syslog-1.0.0) + ("go-github-com-hashicorp-go-msgpack-0.5.3" + ,go-github-com-hashicorp-go-msgpack-0.5.3) + ("go-github-com-armon-go-metrics-0.0.0-20180917152333-f0300d1749da" + ,go-github-com-armon-go-metrics-0.0.0-20180917152333-f0300d1749da) + ("go-github-com-armon-circbuf-0.0.0-20150827004946-bbbad097214e" + ,go-github-com-armon-circbuf-0.0.0-20150827004946-bbbad097214e))) + (home-page "https://github.com/hashicorp/serf") + (synopsis "Serf") + (description + "Serf is a decentralized solution for service discovery and orchestration +that is lightweight, highly available, and fault tolerant.") + (license license:mpl2.0))) + +(define-public go-github-com-mitchellh-mapstructure-1.1.2 + (package + (name "go-github-com-mitchellh-mapstructure") + (version "1.1.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mitchellh/mapstructure") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03bpv28jz9zhn4947saqwi328ydj7f6g6pf1m2d4m5zdh5jlfkrr")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mitchellh/mapstructure")) + (home-page "https://github.com/mitchellh/mapstructure") + (synopsis "mapstructure") + (description + "Package mapstructure exposes functionality to convert one arbitrary +Go type into another, typically to convert a map[string]interface{} +into a native Go structure. +") + (license license:expat))) + +(define-public go-github-com-pascaldekloe-goe-0.0.0-20180627143212-57f6aae5913c + (package + (name "go-github-com-pascaldekloe-goe") + (version "0.0.0-20180627143212-57f6aae5913c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pascaldekloe/goe") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1dqd3mfb4z2vmv6pg6fhgvfc53vhndk24wcl9lj1rz02n6m279fq")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pascaldekloe/goe")) + (home-page "https://github.com/pascaldekloe/goe") + (synopsis "Go Enterprise") + (description + "Common enterprise features for the Go programming language (golang).") + (license license:cc0))) + +(define-public go-github-com-hashicorp-consul-api-1.1.0 + (package + (name "go-github-com-hashicorp-consul-api") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/consul") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0xm3gl8i7pgsbsc2397bwh9hp2dwnk4cmw5y05acqn3zpyp84sbv")))) + (build-system go-build-system) + (arguments + '(#:import-path + "github.com/hashicorp/consul/api" + #:unpack-path + "github.com/hashicorp/consul")) + (propagated-inputs + `(("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0) + ("go-github-com-pascaldekloe-goe-0.0.0-20180627143212-57f6aae5913c" + ,go-github-com-pascaldekloe-goe-0.0.0-20180627143212-57f6aae5913c) + ("go-github-com-mitchellh-mapstructure-1.1.2" + ,go-github-com-mitchellh-mapstructure-1.1.2) + ("go-github-com-hashicorp-serf-0.8.2" + ,go-github-com-hashicorp-serf-0.8.2) + ("go-github-com-hashicorp-go-uuid-1.0.1" + ,go-github-com-hashicorp-go-uuid-1.0.1) + ("go-github-com-hashicorp-go-rootcerts-1.0.0" + ,go-github-com-hashicorp-go-rootcerts-1.0.0) + ("go-github-com-hashicorp-go-cleanhttp-0.5.1" + ,go-github-com-hashicorp-go-cleanhttp-0.5.1))) + (home-page "https://github.com/hashicorp/consul") + (synopsis "Consul API client") + (description + "This package provides the @code{api} package which attempts to +provide programmatic access to the full Consul API.") + (license license:mpl2.0))) + +(define-public go-github-com-golang-mock-1.5.0 + (package + (name "go-github-com-golang-mock") + (version "1.5.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/mock") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12l7p08pwwk3xn70w7rlm28nz6jf4szlzgjxjfmbssyirxxxy8v1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/mock")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" + ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) + ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0))) + (home-page "https://github.com/golang/mock") + (synopsis "gomock") + (description + "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It +integrates well with Go's built-in @code{testing} package, but can be used in other +contexts too.") + (license license:asl2.0))) + +(define-public go-github-com-google-pprof-0.0.0-20210226084205-cbba55b83ad5 + (package + (name "go-github-com-google-pprof") + (version "0.0.0-20210226084205-cbba55b83ad5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/pprof") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0drr44nqq0s3jillcrl8qa7sklxybs083lvashdh2ad62hrs31l7")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/pprof")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" + ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) + ("go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639" + ,go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639) + ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" + ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) + ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" + ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) + ("go-github-com-chzyer-logex-1.1.10" + ,go-github-com-chzyer-logex-1.1.10))) + (home-page "https://github.com/google/pprof") + (synopsis "Introduction") + (description + "pprof is a tool for collection, manipulation and visualization +of performance profiles. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20210226172049-e18ecbb05110") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1vlq8mdscp7yfaa1lmyv03y5m4c2d67ydg2q1i6smkrxghn3zn3q")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) + ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" + ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) + ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" + ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-github-com-google-pprof-0.0.0-20210122040257-d980be63207e + (package + (name "go-github-com-google-pprof") + (version "0.0.0-20210122040257-d980be63207e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/pprof") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0vg5z6rp5kfd324w8j12hlx9zv049vxljpc6dyqkj2k9vzzzqkw8")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/pprof")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" + ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) + ("go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639" + ,go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639) + ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" + ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) + ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" + ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) + ("go-github-com-chzyer-logex-1.1.10" + ,go-github-com-chzyer-logex-1.1.10))) + (home-page "https://github.com/google/pprof") + (synopsis "Introduction") + (description + "pprof is a tool for collection, manipulation and visualization +of performance profiles. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-mod-0.4.1 + (package + (name "go-golang-org-x-mod") + (version "0.4.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/mod") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0q4p41223d1xh4jmw9vmywjfi0jzn56gbidrwv5x1bzmx2qmj01n")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/mod")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" + ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) + ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" + ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) + ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" + ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) + (home-page "https://golang.org/x/mod") + (synopsis "mod") + (description + "This repository holds packages for writing tools +that work directly with Go module mechanics. +That is, it is for direct manipulation of Go modules themselves.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20210119194325-5f4716e94777 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20210119194325-5f4716e94777") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1xh4hk0fhkzq096z9qbzqfswmmgg4kvb44qvazpandvlpwm4jds2")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) + ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" + ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) + ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" + ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-oauth2-0.0.0-20210218202405-ba52d332ba99 + (package + (name "go-golang-org-x-oauth2") + (version "0.0.0-20210218202405-ba52d332ba99") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/oauth2") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0fdm3fljk3k4xbpzaywccayrhgqdfl79vl18k4z1zw2pl654bqbg")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/oauth2")) + (propagated-inputs + `(("go-google-golang-org-appengine-1.6.6" + ,go-google-golang-org-appengine-1.6.6) + ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" + ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) + ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) + (home-page "https://golang.org/x/oauth2") + (synopsis "OAuth2 for Go") + (description + "Package oauth2 provides support for making +OAuth2 authorized and authenticated HTTP requests, +as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +It can additionally grant authorization with Bearer JWT. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20210220050731-9a76102bfb43 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20210220050731-9a76102bfb43") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "07qn19yla2w604p3dc8h1c75xj2pxc4fajvg0mf0d4c72d5qiss4")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-google-pprof-0.0.0-20201203190320-1bf35d6f28c2 + (package + (name "go-github-com-google-pprof") + (version "0.0.0-20201203190320-1bf35d6f28c2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/pprof") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "140n5hjk2faanrf6v5h1559g755rgavynz1r99s1n15bmgibysvp")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/pprof")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" + ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) + ("go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639" + ,go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639) + ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" + ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) + ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" + ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) + ("go-github-com-chzyer-logex-1.1.10" + ,go-github-com-chzyer-logex-1.1.10))) + (home-page "https://github.com/google/pprof") + (synopsis "Introduction") + (description + "pprof is a tool for collection, manipulation and visualization +of performance profiles. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-mod-0.4.0 + (package + (name "go-golang-org-x-mod") + (version "0.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/mod") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ri003765yxawq6s8jbkbiaijihwrg980c4qwqsaa5x0sq2psrg1")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/mod")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" + ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) + ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" + ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) + ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" + ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) + (home-page "https://golang.org/x/mod") + (synopsis "mod") + (description + "This repository holds packages for writing tools +that work directly with Go module mechanics. +That is, it is for direct manipulation of Go modules themselves.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20201209123823-ac852fbbde11 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20201209123823-ac852fbbde11") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1zmp2fxgf7792xx15qhzcsfs8k0qv7q3m6jlcj6qvdngfzyvna64")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) + ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" + ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) + ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" + ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20201208233053-a543418bbed2 + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20201208233053-a543418bbed2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0r87p89pm2h75yajsz0g2vvy2q3z9gknc0fmsdm5rh427f1qazfr")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" + ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) + ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" + ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) + ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" + ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) + ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) + ("go-github-com-yuin-goldmark-1.2.1" + ,go-github-com-yuin-goldmark-1.2.1))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-github-com-google-martian-v3-3.1.0 + (package + (name "go-github-com-google-martian-v3") + (version "3.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/martian") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1pr9akggfzj2vw11l7ry4sij0hqslpc3gwx4ynbzyvbjhvh64sbc")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/martian/v3")) + (propagated-inputs + `(("go-golang-org-x-net-0.0.0-20190628185345-da137c7871d7" + ,go-golang-org-x-net-0.0.0-20190628185345-da137c7871d7))) + (home-page "https://github.com/google/martian") + (synopsis "Martian Proxy") + (description + "Package martian provides an HTTP/1.1 proxy with an API for configurable +request and response modifiers. +") + (license license:asl2.0))) + +(define-public go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639 + (package + (name "go-github-com-ianlancetaylor-demangle") + (version "0.0.0-20200824232613-28f6c0f3b639") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/ianlancetaylor/demangle") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0rsq3622gd40f1x1l7caidsxrmzg1993ich2higwd94fqbxs1r83")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/ianlancetaylor/demangle")) + (home-page "https://github.com/ianlancetaylor/demangle") + (synopsis "github.com/ianlancetaylor/demangle") + (description + "Package demangle defines functions that demangle GCC/LLVM +C++ and Rust symbol names. +This package recognizes names that were mangled according to the C++ ABI +defined at @url{http://codesourcery.com/cxx-abi/,http://codesourcery.com/cxx-abi/} and the Rust ABI +defined at +@url{https://rust-lang.github.io/rfcs/2603-rust-symbol-name-mangling-v0.html,https://rust-lang.github.io/rfcs/2603-rust-symbol-name-mangling-v0.html} +") + (license license:bsd-3))) + +(define-public go-github-com-google-pprof-0.0.0-20201023163331-3e6fc7fc9c4c + (package + (name "go-github-com-google-pprof") + (version "0.0.0-20201023163331-3e6fc7fc9c4c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/pprof") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1xmy4579gx45lqsy1cgddnc7nmaqfpiwd2kc5dhf8i0wjjvf18hq")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/pprof")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" + ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) + ("go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639" + ,go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639) + ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" + ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) + ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" + ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) + ("go-github-com-chzyer-logex-1.1.10" + ,go-github-com-chzyer-logex-1.1.10))) + (home-page "https://github.com/google/pprof") + (synopsis "Introduction") + (description + "pprof is a tool for collection, manipulation and visualization +of performance profiles. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-net-0.0.0-20201031054903-ff519b6c9102 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20201031054903-ff519b6c9102") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "162ssgcc0kgj42ajaki0q3j5lwmixqqwkdqcmz41xg1k8wjm7riw")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) + ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" + ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) + ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" + ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-text-0.3.4 + (package + (name "go-golang-org-x-text") + (version "0.3.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "11jdvix83xcl5xnb039y4zrz4x5skzsps0w1jryp6wrar53cydvz")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/text")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" + ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) + (home-page "https://golang.org/x/text") + (synopsis "Go Text") + (description + "text is a repository of text-related packages related to internationalization +(i18n) and localization (l10n), such as character encodings, text +transformations, and locale-specific text handling. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20201110124207-079ba7bd75cd + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20201110124207-079ba7bd75cd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0g4d7cx480rbnpg16qqc4yycd50lpp2mi2qzvzr6hdny91v7sa05")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" + ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) + ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" + ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) + ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" + ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) + ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) + ("go-github-com-yuin-goldmark-1.2.1" + ,go-github-com-yuin-goldmark-1.2.1))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-github-com-google-go-cmp-0.5.2 + (package + (name "go-github-com-google-go-cmp") + (version "0.5.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0qchy411jm9q2l9mf7x3ry2ycaqp9xdhf2nx14qrpzcxfigv2705")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") + (license license:bsd-3))) + +(define-public go-golang-org-x-oauth2-0.0.0-20200902213428-5d25da1a8d43 + (package + (name "go-golang-org-x-oauth2") + (version "0.0.0-20200902213428-5d25da1a8d43") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/oauth2") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "14jx8sxshbvnx4fggn12mlmz000zcrd1a73n1455b1wgg1xfzq3n")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/oauth2")) + (propagated-inputs + `(("go-google-golang-org-appengine-1.6.6" + ,go-google-golang-org-appengine-1.6.6) + ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" + ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) + ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) + (home-page "https://golang.org/x/oauth2") + (synopsis "OAuth2 for Go") + (description + "Package oauth2 provides support for making +OAuth2 authorized and authenticated HTTP requests, +as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +It can additionally grant authorization with Bearer JWT. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20200905004654-be1d3432aa8f + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200905004654-be1d3432aa8f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1kd3szjsazhpgidv5xjv0s26fm4wvv2cr7j4zk8nblnqkic58as2")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20200904185747-39188db58858 + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20200904185747-39188db58858") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ydyylwqzjwijy4rdp2fmvnfh3s27896dx6g74r2wa6vbhisszvk")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" + ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) + ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" + ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) + ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" + ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) + ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) + ("go-github-com-yuin-goldmark-1.2.1" + ,go-github-com-yuin-goldmark-1.2.1))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-google-golang-org-genproto-0.0.0-20200904004341-0bd0a958aa1d + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20200904004341-0bd0a958aa1d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "01xp4ic4jvdv7n984cjgrgqbpbi9m4bj2xnfrs1s1zn1adx0jivs")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.24.0" + ,go-google-golang-org-protobuf-1.24.0) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-golang-protobuf-1.4.1" + ,go-github-com-golang-protobuf-1.4.1))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-google-golang-org-grpc-1.31.1 + (package + (name "go-google-golang-org-grpc") + (version "1.31.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18565vf9i2zc69znd9b8a2iz0kgv5cms0g0ppj93hnhri8rjqagk")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" + ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.3.3" + ,go-github-com-golang-protobuf-1.3.3) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-envoyproxy-go-control-plane-0.9.4" + ,go-github-com-envoyproxy-go-control-plane-0.9.4) + ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" + ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-google-golang-org-api-0.35.0 + (package + (name "go-google-golang-org-api") + (version "0.35.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-api-go-client") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0fgn21lmrlkw44sl0ivjicygwksibb1pclzp3zyh3ivn7ylvk2jd")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/api")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.31.1" ,go-google-golang-org-grpc-1.31.1) + ("go-google-golang-org-genproto-0.0.0-20200904004341-0bd0a958aa1d" + ,go-google-golang-org-genproto-0.0.0-20200904004341-0bd0a958aa1d) + ("go-google-golang-org-appengine-1.6.6" + ,go-google-golang-org-appengine-1.6.6) + ("go-golang-org-x-tools-0.0.0-20200904185747-39188db58858" + ,go-golang-org-x-tools-0.0.0-20200904185747-39188db58858) + ("go-golang-org-x-sys-0.0.0-20200905004654-be1d3432aa8f" + ,go-golang-org-x-sys-0.0.0-20200905004654-be1d3432aa8f) + ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" + ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) + ("go-golang-org-x-oauth2-0.0.0-20200902213428-5d25da1a8d43" + ,go-golang-org-x-oauth2-0.0.0-20200902213428-5d25da1a8d43) + ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" + ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) + ("go-go-opencensus-io-0.22.4" ,go-go-opencensus-io-0.22.4) + ("go-github-com-googleapis-gax-go-v2-2.0.5" + ,go-github-com-googleapis-gax-go-v2-2.0.5) + ("go-github-com-google-go-cmp-0.5.2" + ,go-github-com-google-go-cmp-0.5.2) + ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) + (home-page "https://google.golang.org/api") + (synopsis "Google APIs Client Library for Go") + (description + "Package api is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of +sub-packages. +") + (license license:bsd-3))) + +(define-public go-google-golang-org-genproto-0.0.0-20201109203340-2640f1f9cdfb + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20201109203340-2640f1f9cdfb") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "00mwybjbdpvmlkvmwsjvdb2z8lzzx2a340y4pf3bxqamalhdka0w")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.24.0" + ,go-google-golang-org-protobuf-1.24.0) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-golang-protobuf-1.4.1" + ,go-github-com-golang-protobuf-1.4.1))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-cloud-google-com-go-0.72.0 + (package + (name "go-cloud-google-com-go") + (version "0.72.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-cloud-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1x4gy466jrzab9l02dwd3lvy2dwy84j34zpjkm5xnxh45za6hpxn")))) + (build-system go-build-system) + (arguments '(#:import-path "cloud.google.com/go")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) + ("go-google-golang-org-genproto-0.0.0-20201109203340-2640f1f9cdfb" + ,go-google-golang-org-genproto-0.0.0-20201109203340-2640f1f9cdfb) + ("go-google-golang-org-api-0.35.0" ,go-google-golang-org-api-0.35.0) + ("go-golang-org-x-tools-0.0.0-20201110124207-079ba7bd75cd" + ,go-golang-org-x-tools-0.0.0-20201110124207-079ba7bd75cd) + ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) + ("go-golang-org-x-oauth2-0.0.0-20200902213428-5d25da1a8d43" + ,go-golang-org-x-oauth2-0.0.0-20200902213428-5d25da1a8d43) + ("go-golang-org-x-net-0.0.0-20201031054903-ff519b6c9102" + ,go-golang-org-x-net-0.0.0-20201031054903-ff519b6c9102) + ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" + ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) + ("go-go-opencensus-io-0.22.5" ,go-go-opencensus-io-0.22.5) + ("go-github-com-jstemmer-go-junit-report-0.9.1" + ,go-github-com-jstemmer-go-junit-report-0.9.1) + ("go-github-com-googleapis-gax-go-v2-2.0.5" + ,go-github-com-googleapis-gax-go-v2-2.0.5) + ("go-github-com-google-pprof-0.0.0-20201023163331-3e6fc7fc9c4c" + ,go-github-com-google-pprof-0.0.0-20201023163331-3e6fc7fc9c4c) + ("go-github-com-google-martian-v3-3.1.0" + ,go-github-com-google-martian-v3-3.1.0) + ("go-github-com-google-go-cmp-0.5.2" + ,go-github-com-google-go-cmp-0.5.2) + ("go-github-com-golang-protobuf-1.4.3" + ,go-github-com-golang-protobuf-1.4.3) + ("go-github-com-golang-mock-1.4.4" ,go-github-com-golang-mock-1.4.4) + ("go-cloud-google-com-go-storage-1.10.0" + ,go-cloud-google-com-go-storage-1.10.0))) + (home-page "https://cloud.google.com/go") + (synopsis "Google Cloud Client Libraries for Go") + (description + "Package cloud is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +of sub-packages. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-oauth2-0.0.0-20201109201403-9fd604954f58 + (package + (name "go-golang-org-x-oauth2") + (version "0.0.0-20201109201403-9fd604954f58") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/oauth2") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "06dj14f6jrgpqmf3v3z74zhcin3yj7yp8mzxljm3a3ihq984kz8v")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/oauth2")) + (propagated-inputs + `(("go-google-golang-org-appengine-1.6.6" + ,go-google-golang-org-appengine-1.6.6) + ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" + ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) + ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) + (home-page "https://golang.org/x/oauth2") + (synopsis "OAuth2 for Go") + (description + "Package oauth2 provides support for making +OAuth2 authorized and authenticated HTTP requests, +as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +It can additionally grant authorization with Bearer JWT. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20201201145000-ef89a241ccb3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0a8myxx2mvdr77a003gpy5jmdzbxbnrf5zppmpl4za4sspxlmwif")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20201201161351-ac6f37ff4c2a + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20201201161351-ac6f37ff4c2a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0akq0z86x51rh556fs7icjmmmgdyaa7rq7cmqlngrmvjb79wnwpl")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" + ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) + ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" + ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) + ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" + ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) + ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) + ("go-github-com-yuin-goldmark-1.2.1" + ,go-github-com-yuin-goldmark-1.2.1))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-google-golang-org-genproto-0.0.0-20201201144952-b05cb90ed32e + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20201201144952-b05cb90ed32e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1n9jlhnn5fg7a41ahdril7wgfli43kxplnpxbdbhrkknjra7xdjd")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.24.0" + ,go-google-golang-org-protobuf-1.24.0) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-golang-protobuf-1.4.1" + ,go-github-com-golang-protobuf-1.4.1))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-google-golang-org-api-0.36.0 + (package + (name "go-google-golang-org-api") + (version "0.36.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-api-go-client") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1x6wlavrqi2r6ss3h2kg94p2lfj0z019kc85zm1pajpf0k23fxp7")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/api")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) + ("go-google-golang-org-genproto-0.0.0-20201201144952-b05cb90ed32e" + ,go-google-golang-org-genproto-0.0.0-20201201144952-b05cb90ed32e) + ("go-google-golang-org-appengine-1.6.7" + ,go-google-golang-org-appengine-1.6.7) + ("go-golang-org-x-tools-0.0.0-20201201161351-ac6f37ff4c2a" + ,go-golang-org-x-tools-0.0.0-20201201161351-ac6f37ff4c2a) + ("go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3" + ,go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3) + ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" + ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) + ("go-golang-org-x-oauth2-0.0.0-20201109201403-9fd604954f58" + ,go-golang-org-x-oauth2-0.0.0-20201109201403-9fd604954f58) + ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" + ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) + ("go-go-opencensus-io-0.22.5" ,go-go-opencensus-io-0.22.5) + ("go-github-com-googleapis-gax-go-v2-2.0.5" + ,go-github-com-googleapis-gax-go-v2-2.0.5) + ("go-github-com-google-go-cmp-0.5.4" + ,go-github-com-google-go-cmp-0.5.4) + ("go-cloud-google-com-go-0.72.0" ,go-cloud-google-com-go-0.72.0))) + (home-page "https://google.golang.org/api") + (synopsis "Google APIs Client Library for Go") + (description + "Package api is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of +sub-packages. +") + (license license:bsd-3))) + +(define-public go-google-golang-org-genproto-0.0.0-20201210142538-e3217bee35cc + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20201210142538-e3217bee35cc") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1bzfa58dw7jmkrp46hikbsq1yyk2r29a1gn51sqlilbvf7lq96p9")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.24.0" + ,go-google-golang-org-protobuf-1.24.0) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-golang-protobuf-1.4.1" + ,go-github-com-golang-protobuf-1.4.1))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-cloud-google-com-go-0.74.0 + (package + (name "go-cloud-google-com-go") + (version "0.74.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-cloud-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "09j1qppf2gf14bn06hsyrj9jaxz9vlbs9d7yrxrdvh2234qsbggy")))) + (build-system go-build-system) + (arguments '(#:import-path "cloud.google.com/go")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.34.0" ,go-google-golang-org-grpc-1.34.0) + ("go-google-golang-org-genproto-0.0.0-20201210142538-e3217bee35cc" + ,go-google-golang-org-genproto-0.0.0-20201210142538-e3217bee35cc) + ("go-google-golang-org-api-0.36.0" ,go-google-golang-org-api-0.36.0) + ("go-golang-org-x-tools-0.0.0-20201208233053-a543418bbed2" + ,go-golang-org-x-tools-0.0.0-20201208233053-a543418bbed2) + ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) + ("go-golang-org-x-oauth2-0.0.0-20201208152858-08078c50e5b5" + ,go-golang-org-x-oauth2-0.0.0-20201208152858-08078c50e5b5) + ("go-golang-org-x-net-0.0.0-20201209123823-ac852fbbde11" + ,go-golang-org-x-net-0.0.0-20201209123823-ac852fbbde11) + ("go-golang-org-x-mod-0.4.0" ,go-golang-org-x-mod-0.4.0) + ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" + ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) + ("go-go-opencensus-io-0.22.5" ,go-go-opencensus-io-0.22.5) + ("go-github-com-jstemmer-go-junit-report-0.9.1" + ,go-github-com-jstemmer-go-junit-report-0.9.1) + ("go-github-com-googleapis-gax-go-v2-2.0.5" + ,go-github-com-googleapis-gax-go-v2-2.0.5) + ("go-github-com-google-pprof-0.0.0-20201203190320-1bf35d6f28c2" + ,go-github-com-google-pprof-0.0.0-20201203190320-1bf35d6f28c2) + ("go-github-com-google-martian-v3-3.1.0" + ,go-github-com-google-martian-v3-3.1.0) + ("go-github-com-google-go-cmp-0.5.4" + ,go-github-com-google-go-cmp-0.5.4) + ("go-github-com-golang-protobuf-1.4.3" + ,go-github-com-golang-protobuf-1.4.3) + ("go-github-com-golang-mock-1.4.4" ,go-github-com-golang-mock-1.4.4) + ("go-cloud-google-com-go-storage-1.10.0" + ,go-cloud-google-com-go-storage-1.10.0))) + (home-page "https://cloud.google.com/go") + (synopsis "Google Cloud Client Libraries for Go") + (description + "Package cloud is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +of sub-packages. +") + (license license:asl2.0))) + +(define-public go-go-opencensus-io-0.22.5 + (package + (name "go-go-opencensus-io") + (version "0.22.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/census-instrumentation/opencensus-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18s1d7bk28i8gbs6i587ccd31qp3f8gibgd14dpkzs05gyvlccy6")))) + (build-system go-build-system) + (arguments '(#:import-path "go.opencensus.io")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.20.1" ,go-google-golang-org-grpc-1.20.1) + ("go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb" + ,go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb) + ("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) + ("go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd" + ,go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd) + ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" + ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) + ("go-github-com-stretchr-testify-1.4.0" + ,go-github-com-stretchr-testify-1.4.0) + ("go-github-com-google-go-cmp-0.3.0" + ,go-github-com-google-go-cmp-0.3.0) + ("go-github-com-golang-protobuf-1.3.1" + ,go-github-com-golang-protobuf-1.3.1) + ("go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6" + ,go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6))) + (home-page "https://go.opencensus.io") + (synopsis "OpenCensus Libraries for Go") + (description "Package opencensus contains Go support for OpenCensus. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-oauth2-0.0.0-20201208152858-08078c50e5b5 + (package + (name "go-golang-org-x-oauth2") + (version "0.0.0-20201208152858-08078c50e5b5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/oauth2") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0zynwxw47nhwhs6n1c87c9np43lwl9m9z2w2cmdvjwhsisa93b75")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/oauth2")) + (propagated-inputs + `(("go-google-golang-org-appengine-1.6.6" + ,go-google-golang-org-appengine-1.6.6) + ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" + ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) + ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) + (home-page "https://golang.org/x/oauth2") + (synopsis "OAuth2 for Go") + (description + "Package oauth2 provides support for making +OAuth2 authorized and authenticated HTTP requests, +as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +It can additionally grant authorization with Bearer JWT. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20210104204734-6f8348627aad + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20210104204734-6f8348627aad") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0pmz8dwjf4gxr1gwnp4iahh3yh09apcf40kvvybycsx4rfjc2gbl")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20210105154028-b0ab187a4818 + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20210105154028-b0ab187a4818") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "157w706lz7j4s7cwgh7j7mf8v1sah5hm4dlmp8isf6vhnqpixdp7")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" + ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) + ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" + ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) + ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" + ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) + ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) + ("go-github-com-yuin-goldmark-1.2.1" + ,go-github-com-yuin-goldmark-1.2.1))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-google-golang-org-genproto-0.0.0-20201214200347-8c77b98c765d + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20201214200347-8c77b98c765d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1bdpss5xmla0gjz66mdk8bqpsdb5i1xz65g30k9cs2h7vrqlwzn4")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.24.0" + ,go-google-golang-org-protobuf-1.24.0) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-golang-protobuf-1.4.1" + ,go-github-com-golang-protobuf-1.4.1))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-github-com-cncf-udpa-go-0.0.0-20200629203442-efcf912fb354 + (package + (name "go-github-com-cncf-udpa-go") + (version "0.0.0-20200629203442-efcf912fb354") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cncf/udpa") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18b1v01h3id5d7v5gqabc4qsaja17r45rn3fvv38nrfx9l4smv0x")))) + (build-system go-build-system) + (arguments + '(#:import-path + "github.com/cncf/udpa/go" + #:unpack-path + "github.com/cncf/udpa")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2) + ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" + ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0))) + (home-page "https://github.com/cncf/udpa") + (synopsis "Description") + (description + "This library has been deprecated in favor of @code{github.com/cncf/xds/go}. All users are recommended to switch their imports.") + (license license:asl2.0))) + +(define-public go-github-com-envoyproxy-go-control-plane-0.9.7 + (package + (name "go-github-com-envoyproxy-go-control-plane") + (version "0.9.7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/envoyproxy/go-control-plane") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0nx5ybyadkjqr29hndn6amhbcqpi1rkfv12bxp0rk3ay045zxsh8")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.23.0" + ,go-google-golang-org-protobuf-1.23.0) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" + ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) + ("go-github-com-stretchr-testify-1.5.1" + ,go-github-com-stretchr-testify-1.5.1) + ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" + ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.2" + ,go-github-com-golang-protobuf-1.4.2) + ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" + ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) + ("go-github-com-cncf-udpa-go-0.0.0-20200629203442-efcf912fb354" + ,go-github-com-cncf-udpa-go-0.0.0-20200629203442-efcf912fb354) + ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" + ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) + (home-page "https://github.com/envoyproxy/go-control-plane") + (synopsis "control-plane") + (description + "This repository contains a Go-based implementation of an API server that +implements the discovery service APIs defined in +@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") + (license license:asl2.0))) + +(define-public go-google-golang-org-grpc-1.34.0 + (package + (name "go-google-golang-org-grpc") + (version "1.34.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0s8y19qvv0zfy2irq8vv12h65v7pw18k6yqfix1j2370yxmsajgm")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.25.0" + ,go-google-golang-org-protobuf-1.25.0) + ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" + ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) + ("go-github-com-google-go-cmp-0.5.0" + ,go-github-com-google-go-cmp-0.5.0) + ("go-github-com-golang-protobuf-1.4.2" + ,go-github-com-golang-protobuf-1.4.2) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-envoyproxy-go-control-plane-0.9.7" + ,go-github-com-envoyproxy-go-control-plane-0.9.7) + ("go-github-com-cncf-udpa-go-0.0.0-20200629203442-efcf912fb354" + ,go-github-com-cncf-udpa-go-0.0.0-20200629203442-efcf912fb354))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-google-golang-org-api-0.40.0 + (package + (name "go-google-golang-org-api") + (version "0.40.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-api-go-client") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0vs0bnzljg5iib8x01sy49ndgsz3cl1sq53pvy3h6kzp7may0bpc")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/api")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.34.0" ,go-google-golang-org-grpc-1.34.0) + ("go-google-golang-org-genproto-0.0.0-20201214200347-8c77b98c765d" + ,go-google-golang-org-genproto-0.0.0-20201214200347-8c77b98c765d) + ("go-google-golang-org-appengine-1.6.7" + ,go-google-golang-org-appengine-1.6.7) + ("go-golang-org-x-tools-0.0.0-20210105154028-b0ab187a4818" + ,go-golang-org-x-tools-0.0.0-20210105154028-b0ab187a4818) + ("go-golang-org-x-sys-0.0.0-20210104204734-6f8348627aad" + ,go-golang-org-x-sys-0.0.0-20210104204734-6f8348627aad) + ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" + ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) + ("go-golang-org-x-oauth2-0.0.0-20201208152858-08078c50e5b5" + ,go-golang-org-x-oauth2-0.0.0-20201208152858-08078c50e5b5) + ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" + ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) + ("go-go-opencensus-io-0.22.5" ,go-go-opencensus-io-0.22.5) + ("go-github-com-googleapis-gax-go-v2-2.0.5" + ,go-github-com-googleapis-gax-go-v2-2.0.5) + ("go-github-com-google-go-cmp-0.5.4" + ,go-github-com-google-go-cmp-0.5.4) + ("go-cloud-google-com-go-0.74.0" ,go-cloud-google-com-go-0.74.0))) + (home-page "https://google.golang.org/api") + (synopsis "Google APIs Client Library for Go") + (description + "Package api is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of +sub-packages. +") + (license license:bsd-3))) + +(define-public go-google-golang-org-genproto-0.0.0-20210222152913-aa3ee6e6a81c + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20210222152913-aa3ee6e6a81c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "06wa7v3s558rwxsqd1kqz5xy10kigzx50ciqh3zdxsbvxqvjwxrx")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.24.0" + ,go-google-golang-org-protobuf-1.24.0) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-golang-protobuf-1.4.1" + ,go-github-com-golang-protobuf-1.4.1))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-google-golang-org-grpc-1.35.0 + (package + (name "go-google-golang-org-grpc") + (version "1.35.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "15ij5acp9h8dxq0brc0jljj98badri23zpm4yvmsn6gnnxaykl72")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.25.0" + ,go-google-golang-org-protobuf-1.25.0) + ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" + ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) + ("go-github-com-google-go-cmp-0.5.0" + ,go-github-com-google-go-cmp-0.5.0) + ("go-github-com-golang-protobuf-1.4.2" + ,go-github-com-golang-protobuf-1.4.2) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad" + ,go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad) + ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" + ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-cloud-google-com-go-0.78.0 + (package + (name "go-cloud-google-com-go") + (version "0.78.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-cloud-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "11wldladkcz41ivsfnbrqy2hg5wp55d72hnr2wki0zvnhbzsj376")))) + (build-system go-build-system) + (arguments '(#:import-path "cloud.google.com/go")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.35.0" ,go-google-golang-org-grpc-1.35.0) + ("go-google-golang-org-genproto-0.0.0-20210222152913-aa3ee6e6a81c" + ,go-google-golang-org-genproto-0.0.0-20210222152913-aa3ee6e6a81c) + ("go-google-golang-org-api-0.40.0" ,go-google-golang-org-api-0.40.0) + ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) + ("go-golang-org-x-text-0.3.5" ,go-golang-org-x-text-0.3.5) + ("go-golang-org-x-sys-0.0.0-20210220050731-9a76102bfb43" + ,go-golang-org-x-sys-0.0.0-20210220050731-9a76102bfb43) + ("go-golang-org-x-oauth2-0.0.0-20210218202405-ba52d332ba99" + ,go-golang-org-x-oauth2-0.0.0-20210218202405-ba52d332ba99) + ("go-golang-org-x-net-0.0.0-20210119194325-5f4716e94777" + ,go-golang-org-x-net-0.0.0-20210119194325-5f4716e94777) + ("go-golang-org-x-mod-0.4.1" ,go-golang-org-x-mod-0.4.1) + ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" + ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) + ("go-go-opencensus-io-0.22.5" ,go-go-opencensus-io-0.22.5) + ("go-github-com-jstemmer-go-junit-report-0.9.1" + ,go-github-com-jstemmer-go-junit-report-0.9.1) + ("go-github-com-googleapis-gax-go-v2-2.0.5" + ,go-github-com-googleapis-gax-go-v2-2.0.5) + ("go-github-com-google-pprof-0.0.0-20210122040257-d980be63207e" + ,go-github-com-google-pprof-0.0.0-20210122040257-d980be63207e) + ("go-github-com-google-martian-v3-3.1.0" + ,go-github-com-google-martian-v3-3.1.0) + ("go-github-com-google-go-cmp-0.5.4" + ,go-github-com-google-go-cmp-0.5.4) + ("go-github-com-golang-protobuf-1.4.3" + ,go-github-com-golang-protobuf-1.4.3) + ("go-github-com-golang-mock-1.4.4" ,go-github-com-golang-mock-1.4.4) + ("go-cloud-google-com-go-storage-1.10.0" + ,go-cloud-google-com-go-storage-1.10.0))) + (home-page "https://cloud.google.com/go") + (synopsis "Google Cloud Client Libraries for Go") + (description + "Package cloud is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +of sub-packages. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-oauth2-0.0.0-20210220000619-9bb904979d93 + (package + (name "go-golang-org-x-oauth2") + (version "0.0.0-20210220000619-9bb904979d93") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/oauth2") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1rhndpvpvfy5bsaxi974cznlq4hbamhmy6l06ppp9phh12pvn11p")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/oauth2")) + (propagated-inputs + `(("go-google-golang-org-appengine-1.6.6" + ,go-google-golang-org-appengine-1.6.6) + ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" + ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) + ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) + (home-page "https://golang.org/x/oauth2") + (synopsis "OAuth2 for Go") + (description + "Package oauth2 provides support for making +OAuth2 authorized and authenticated HTTP requests, +as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +It can additionally grant authorization with Bearer JWT. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20210305230114-8fe3ee5dd75b + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20210305230114-8fe3ee5dd75b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1x7fn66vplxkac6lbwqv649wwnx7kz0bqdzgr98z7yx7cfdxd7rj")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-google-golang-org-genproto-0.0.0-20210303154014-9728d6b83eeb + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20210303154014-9728d6b83eeb") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1abic7gjp07d1s6imjfn00s316xdirss3zvcric74gr9varr02xn")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.24.0" + ,go-google-golang-org-protobuf-1.24.0) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-golang-protobuf-1.4.1" + ,go-github-com-golang-protobuf-1.4.1))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-google-golang-org-api-0.41.0 + (package + (name "go-google-golang-org-api") + (version "0.41.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-api-go-client") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0yzz534xzl2km3vxr18h204yvnrzqlss02fagg2ign0sy3qnlkhx")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/api")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.36.0" ,go-google-golang-org-grpc-1.36.0) + ("go-google-golang-org-genproto-0.0.0-20210303154014-9728d6b83eeb" + ,go-google-golang-org-genproto-0.0.0-20210303154014-9728d6b83eeb) + ("go-google-golang-org-appengine-1.6.7" + ,go-google-golang-org-appengine-1.6.7) + ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) + ("go-golang-org-x-sys-0.0.0-20210305230114-8fe3ee5dd75b" + ,go-golang-org-x-sys-0.0.0-20210305230114-8fe3ee5dd75b) + ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" + ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) + ("go-golang-org-x-oauth2-0.0.0-20210220000619-9bb904979d93" + ,go-golang-org-x-oauth2-0.0.0-20210220000619-9bb904979d93) + ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" + ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) + ("go-go-opencensus-io-0.23.0" ,go-go-opencensus-io-0.23.0) + ("go-github-com-googleapis-gax-go-v2-2.0.5" + ,go-github-com-googleapis-gax-go-v2-2.0.5) + ("go-github-com-google-go-cmp-0.5.5" + ,go-github-com-google-go-cmp-0.5.5) + ("go-cloud-google-com-go-0.78.0" ,go-cloud-google-com-go-0.78.0))) + (home-page "https://google.golang.org/api") + (synopsis "Google APIs Client Library for Go") + (description + "Package api is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of +sub-packages. +") + (license license:bsd-3))) + +(define-public go-google-golang-org-genproto-0.0.0-20210310155132-4ce2db91004e + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20210310155132-4ce2db91004e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0r5f024c4piqna27pvc28m0h44ms9rhcbihf1zn5l8prf4vvrdw9")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.24.0" + ,go-google-golang-org-protobuf-1.24.0) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-golang-protobuf-1.4.1" + ,go-github-com-golang-protobuf-1.4.1))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-cloud-google-com-go-0.79.0 + (package + (name "go-cloud-google-com-go") + (version "0.79.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-cloud-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "031jrfgyys0slh154593d4swj6iqrjvs9dxwmab99dl6zfws77jv")))) + (build-system go-build-system) + (arguments '(#:import-path "cloud.google.com/go")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.36.0" ,go-google-golang-org-grpc-1.36.0) + ("go-google-golang-org-genproto-0.0.0-20210310155132-4ce2db91004e" + ,go-google-golang-org-genproto-0.0.0-20210310155132-4ce2db91004e) + ("go-google-golang-org-api-0.41.0" ,go-google-golang-org-api-0.41.0) + ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) + ("go-golang-org-x-text-0.3.5" ,go-golang-org-x-text-0.3.5) + ("go-golang-org-x-oauth2-0.0.0-20210220000619-9bb904979d93" + ,go-golang-org-x-oauth2-0.0.0-20210220000619-9bb904979d93) + ("go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110" + ,go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110) + ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" + ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) + ("go-go-opencensus-io-0.23.0" ,go-go-opencensus-io-0.23.0) + ("go-github-com-jstemmer-go-junit-report-0.9.1" + ,go-github-com-jstemmer-go-junit-report-0.9.1) + ("go-github-com-googleapis-gax-go-v2-2.0.5" + ,go-github-com-googleapis-gax-go-v2-2.0.5) + ("go-github-com-google-pprof-0.0.0-20210226084205-cbba55b83ad5" + ,go-github-com-google-pprof-0.0.0-20210226084205-cbba55b83ad5) + ("go-github-com-google-martian-v3-3.1.0" + ,go-github-com-google-martian-v3-3.1.0) + ("go-github-com-google-go-cmp-0.5.5" + ,go-github-com-google-go-cmp-0.5.5) + ("go-github-com-golang-protobuf-1.4.3" + ,go-github-com-golang-protobuf-1.4.3) + ("go-github-com-golang-mock-1.5.0" ,go-github-com-golang-mock-1.5.0) + ("go-cloud-google-com-go-storage-1.10.0" + ,go-cloud-google-com-go-storage-1.10.0))) + (home-page "https://cloud.google.com/go") + (synopsis "Google Cloud Client Libraries for Go") + (description + "Package cloud is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +of sub-packages. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-oauth2-0.0.0-20210313182246-cd4f82c27b84 + (package + (name "go-golang-org-x-oauth2") + (version "0.0.0-20210313182246-cd4f82c27b84") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/oauth2") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1jf68sh1957ji1lv1zrrhsbm6jr3508pw159pfzgyw6hbzsg5amv")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/oauth2")) + (propagated-inputs + `(("go-google-golang-org-appengine-1.6.6" + ,go-google-golang-org-appengine-1.6.6) + ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" + ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) + ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) + (home-page "https://golang.org/x/oauth2") + (synopsis "OAuth2 for Go") + (description + "Package oauth2 provides support for making +OAuth2 authorized and authenticated HTTP requests, +as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +It can additionally grant authorization with Bearer JWT. +") + (license license:bsd-3))) + +(define-public go-google-golang-org-genproto-0.0.0-20210319143718-93e7006c17a6 + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20210319143718-93e7006c17a6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0l143m8rn7zmbfb2rpdawhxs8qjbdpn61hqynf47j5hwsbjci2xs")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.24.0" + ,go-google-golang-org-protobuf-1.24.0) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-golang-protobuf-1.4.1" + ,go-github-com-golang-protobuf-1.4.1))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-google-golang-org-grpc-1.36.0 + (package + (name "go-google-golang-org-grpc") + (version "1.36.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1m4xsfv3ysc84cwqxqqr61fs3d2w04f0q5xbdjijhczjixcxwh5i")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.25.0" + ,go-google-golang-org-protobuf-1.25.0) + ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" + ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) + ("go-github-com-google-go-cmp-0.5.0" + ,go-github-com-google-go-cmp-0.5.0) + ("go-github-com-golang-protobuf-1.4.2" + ,go-github-com-golang-protobuf-1.4.2) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad" + ,go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad) + ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" + ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-google-golang-org-api-0.43.0 + (package + (name "go-google-golang-org-api") + (version "0.43.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-api-go-client") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wxxbihigjn49warampi7gqfslbnp9nrj5zmk8p3ssq429jpvsib")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/api")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.36.0" ,go-google-golang-org-grpc-1.36.0) + ("go-google-golang-org-genproto-0.0.0-20210319143718-93e7006c17a6" + ,go-google-golang-org-genproto-0.0.0-20210319143718-93e7006c17a6) + ("go-google-golang-org-appengine-1.6.7" + ,go-google-golang-org-appengine-1.6.7) + ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) + ("go-golang-org-x-sys-0.0.0-20210320140829-1e4c9ba3b0c4" + ,go-golang-org-x-sys-0.0.0-20210320140829-1e4c9ba3b0c4) + ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" + ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) + ("go-golang-org-x-oauth2-0.0.0-20210313182246-cd4f82c27b84" + ,go-golang-org-x-oauth2-0.0.0-20210313182246-cd4f82c27b84) + ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" + ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) + ("go-go-opencensus-io-0.23.0" ,go-go-opencensus-io-0.23.0) + ("go-github-com-googleapis-gax-go-v2-2.0.5" + ,go-github-com-googleapis-gax-go-v2-2.0.5) + ("go-github-com-google-go-cmp-0.5.5" + ,go-github-com-google-go-cmp-0.5.5) + ("go-cloud-google-com-go-0.79.0" ,go-cloud-google-com-go-0.79.0))) + (home-page "https://google.golang.org/api") + (synopsis "Google APIs Client Library for Go") + (description + "Package api is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of +sub-packages. +") + (license license:bsd-3))) + +(define-public go-cloud-google-com-go-0.81.0 + (package + (name "go-cloud-google-com-go") + (version "0.81.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-cloud-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "15jgynqb5pbxqbj3a7ii970yn4srsw1dbxzxnhpkfkmplalpgyh3")))) + (build-system go-build-system) + (arguments '(#:import-path "cloud.google.com/go")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.36.1" ,go-google-golang-org-grpc-1.36.1) + ("go-google-golang-org-genproto-0.0.0-20210402141018-6c239bbf2bb1" + ,go-google-golang-org-genproto-0.0.0-20210402141018-6c239bbf2bb1) + ("go-google-golang-org-api-0.43.0" ,go-google-golang-org-api-0.43.0) + ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) + ("go-golang-org-x-text-0.3.5" ,go-golang-org-x-text-0.3.5) + ("go-golang-org-x-oauth2-0.0.0-20210313182246-cd4f82c27b84" + ,go-golang-org-x-oauth2-0.0.0-20210313182246-cd4f82c27b84) + ("go-golang-org-x-net-0.0.0-20210316092652-d523dce5a7f4" + ,go-golang-org-x-net-0.0.0-20210316092652-d523dce5a7f4) + ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" + ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) + ("go-go-opencensus-io-0.23.0" ,go-go-opencensus-io-0.23.0) + ("go-github-com-jstemmer-go-junit-report-0.9.1" + ,go-github-com-jstemmer-go-junit-report-0.9.1) + ("go-github-com-googleapis-gax-go-v2-2.0.5" + ,go-github-com-googleapis-gax-go-v2-2.0.5) + ("go-github-com-google-pprof-0.0.0-20210226084205-cbba55b83ad5" + ,go-github-com-google-pprof-0.0.0-20210226084205-cbba55b83ad5) + ("go-github-com-google-martian-v3-3.1.0" + ,go-github-com-google-martian-v3-3.1.0) + ("go-github-com-google-go-cmp-0.5.5" + ,go-github-com-google-go-cmp-0.5.5) + ("go-github-com-golang-protobuf-1.5.1" + ,go-github-com-golang-protobuf-1.5.1) + ("go-github-com-golang-mock-1.5.0" ,go-github-com-golang-mock-1.5.0) + ("go-cloud-google-com-go-storage-1.10.0" + ,go-cloud-google-com-go-storage-1.10.0))) + (home-page "https://cloud.google.com/go") + (synopsis "Google Cloud Client Libraries for Go") + (description + "Package cloud is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +of sub-packages. +") + (license license:asl2.0))) + +(define-public go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e + (package + (name "go-github-com-golang-groupcache") + (version "0.0.0-20200121045136-8c9f03a8e57e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/groupcache") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0vjjr79r32icjzlb05wn02k59av7jx0rn1jijml8r4whlg7dnkfh")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/groupcache")) + (home-page "https://github.com/golang/groupcache") + (synopsis "groupcache") + (description + "Package groupcache provides a data loading mechanism with caching +and de-duplication that works across a set of peer processes. +") + (license license:asl2.0))) + +(define-public go-github-com-golang-protobuf-1.4.3 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1kf1d7xmyjvy0z6j5czp6nqyvj9zrk6liv6znif08927xqfrzyln")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.23.0" + ,go-google-golang-org-protobuf-1.23.0) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-github-com-google-go-cmp-0.5.3 + (package + (name "go-github-com-google-go-cmp") + (version "0.5.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "011gdkmyk3w7qkcwljhqak4h5npn4n7fwgx1fwpyx9c7wizvgkm5")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") + (license license:bsd-3))) + +(define-public go-github-com-stretchr-testify-1.6.1 + (package + (name "go-github-com-stretchr-testify") + (version "1.6.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1yhiqqzjvi63pf01rgzx68gqkkvjx03fvl5wk30br5l6s81s090l")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (propagated-inputs + `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" + ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) + ("go-github-com-stretchr-objx-0.1.0" + ,go-github-com-stretchr-objx-0.1.0) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.0" + ,go-github-com-davecgh-go-spew-1.1.0))) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +") + (license license:expat))) + +(define-public go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b + (package + (name "go-golang-org-x-net") + (version "0.0.0-20201110031124-69a78807bb2b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "176z5k6jbhr9vf0am2avl1lyqwym3q0mri98yb8r572z33qmcw1d")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) + ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" + ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) + ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" + ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-google-golang-org-grpc-1.33.2 + (package + (name "go-google-golang-org-grpc") + (version "1.33.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03yz4nlf4kqbnpw48f0mvcb2f5zzy0vjd5i2iw0hrjspd0238fzk")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.25.0" + ,go-google-golang-org-protobuf-1.25.0) + ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" + ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) + ("go-github-com-google-go-cmp-0.5.0" + ,go-github-com-google-go-cmp-0.5.0) + ("go-github-com-golang-protobuf-1.4.1" + ,go-github-com-golang-protobuf-1.4.1) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-envoyproxy-go-control-plane-0.9.4" + ,go-github-com-envoyproxy-go-control-plane-0.9.4) + ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" + ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-go-opencensus-io-0.23.0 + (package + (name "go-go-opencensus-io") + (version "0.23.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/census-instrumentation/opencensus-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0gw4f7inf8y2ik00yfb36xganiq9rl4w2d1a41bsjqsh83ajz2km")))) + (build-system go-build-system) + (arguments '(#:import-path "go.opencensus.io")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) + ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" + ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-google-go-cmp-0.5.3" + ,go-github-com-google-go-cmp-0.5.3) + ("go-github-com-golang-protobuf-1.4.3" + ,go-github-com-golang-protobuf-1.4.3) + ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" + ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e))) + (home-page "https://go.opencensus.io") + (synopsis "OpenCensus Libraries for Go") + (description "Package opencensus contains Go support for OpenCensus. +") + (license license:asl2.0))) + +(define-public go-github-com-golang-mock-1.4.4 + (package + (name "go-github-com-golang-mock") + (version "1.4.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/mock") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1lj0dvd6div4jaq1s0afpwqaq9ah8cxhkq93wii2ably1xmp2l0a")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/mock")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262" + ,go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262))) + (home-page "https://github.com/golang/mock") + (synopsis "gomock") + (description + "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It +integrates well with Go's built-in @code{testing} package, but can be used in other +contexts too.") + (license license:asl2.0))) + +(define-public go-golang-org-x-tools-0.0.0-20200825202427-b303f430e36d + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20200825202427-b303f430e36d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0zzf6ifzjvkwin6m97jp2dndbfac0sbdr84ki79j9srhpqdigl75")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) + ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" + ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) + ("go-golang-org-x-net-0.0.0-20200625001655-4c5254603344" + ,go-golang-org-x-net-0.0.0-20200625001655-4c5254603344) + ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) + ("go-github-com-yuin-goldmark-1.1.32" + ,go-github-com-yuin-goldmark-1.1.32))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20190628185345-da137c7871d7 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190628185345-da137c7871d7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1qsiyr3irmb6ii06hivm9p2c7wqyxczms1a9v1ss5698yjr3fg47")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-github-com-google-martian-v3-3.0.0 + (package + (name "go-github-com-google-martian-v3") + (version "3.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/martian") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ngvs4l6a06s8scnliq9i5pwvwpzfpa5wf9skg0gcvysli1rm3fm")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/martian/v3")) + (propagated-inputs + `(("go-golang-org-x-net-0.0.0-20190628185345-da137c7871d7" + ,go-golang-org-x-net-0.0.0-20190628185345-da137c7871d7))) + (home-page "https://github.com/google/martian") + (synopsis "Martian Proxy") + (description + "Package martian provides an HTTP/1.1 proxy with an API for configurable +request and response modifiers. +") + (license license:asl2.0))) + +(define-public go-github-com-google-pprof-0.0.0-20200708004538-1a94d8640e99 + (package + (name "go-github-com-google-pprof") + (version "0.0.0-20200708004538-1a94d8640e99") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/pprof") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0isfwwan9vimwsfjml0phwrqv6kb83mkmk063dcb81k09gzzs3wy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/pprof")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" + ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) + ("go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6" + ,go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6) + ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" + ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) + ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" + ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) + ("go-github-com-chzyer-logex-1.1.10" + ,go-github-com-chzyer-logex-1.1.10))) + (home-page "https://github.com/google/pprof") + (synopsis "Introduction") + (description + "pprof is a tool for collection, manipulation and visualization +of performance profiles. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-net-0.0.0-20200707034311-ab3426394381 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20200707034311-ab3426394381") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1wr7rnnqp210yykkypinb8ciszx28aq5a3l3dvsv6swzxxngs8zn")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" + ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) + ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" + ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20200729194436-6467de6f59a7 + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20200729194436-6467de6f59a7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "14zpkr5idlx2zbm5dp7gk4afppy7k3j4y68s1qvpgi70yazaxzkd")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) + ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" + ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) + ("go-golang-org-x-net-0.0.0-20200625001655-4c5254603344" + ,go-golang-org-x-net-0.0.0-20200625001655-4c5254603344) + ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) + ("go-github-com-yuin-goldmark-1.1.32" + ,go-github-com-yuin-goldmark-1.1.32))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262 + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20190425150028-36563e24a262") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0lasi96f6a1h11gkm8kl33x03pmxp369wrqq2dg7x7xv9nq76d6g")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" + ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-golang-org-x-text-0.0.0-20170915032832-14c0d48ead0c + (package + (name "go-golang-org-x-text") + (version "0.0.0-20170915032832-14c0d48ead0c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/text") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0y0nrj4hw7vby6m3iqklbf4v7njqlsx7s4pwfkwmvh1ryn1kb7d6")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/text")) + (home-page "https://golang.org/x/text") + (synopsis "Go Text") + (description + "text is a repository of text-related packages related to internationalization +(i18n) and localization (l10n), such as character encodings, text +transformations, and locale-specific text handling. +") + (license license:bsd-3))) + +(define-public go-rsc-io-sampler-1.3.0 + (package + (name "go-rsc-io-sampler") + (version "1.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/rsc/sampler") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0byxk2ynba50py805kcvbvjzh59l1r308i1xgyzpw6lff4xx9xjh")))) + (build-system go-build-system) + (arguments '(#:import-path "rsc.io/sampler")) + (propagated-inputs + `(("go-golang-org-x-text-0.0.0-20170915032832-14c0d48ead0c" + ,go-golang-org-x-text-0.0.0-20170915032832-14c0d48ead0c))) + (home-page "https://rsc.io/sampler") + (synopsis #f) + (description "Package sampler shows simple texts. +") + (license license:bsd-3))) + +(define-public go-rsc-io-quote-v3-3.1.0 + (package + (name "go-rsc-io-quote-v3") + (version "3.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/rsc/quote") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0nvv97hwwrl1mx5gzsbdm1ndnwpg3m7i2jb10ig9wily7zmvki0i")))) + (build-system go-build-system) + (arguments + '(#:import-path "rsc.io/quote/v3" #:unpack-path "rsc.io/quote/v3")) + (propagated-inputs `(("go-rsc-io-sampler-1.3.0" ,go-rsc-io-sampler-1.3.0))) + (home-page "https://rsc.io/quote/v3") + (synopsis #f) + (description "Package quote collects pithy sayings. +") + (license license:bsd-3))) + +(define-public go-github-com-golang-mock-1.4.3 + (package + (name "go-github-com-golang-mock") + (version "1.4.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/mock") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1p37xnja1dgq5ykx24n7wincwz2gahjh71b95p8vpw7ss2g8j8wx")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/mock")) + (propagated-inputs + `(("go-rsc-io-quote-v3-3.1.0" ,go-rsc-io-quote-v3-3.1.0) + ("go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262" + ,go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262))) + (home-page "https://github.com/golang/mock") + (synopsis "gomock") + (description + "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It +integrates well with Go's built-in @code{testing} package, but can be used in other +contexts too.") + (license license:asl2.0))) + +(define-public go-github-com-golang-protobuf-1.3.5 + (package + (name "go-github-com-golang-protobuf") + (version "1.3.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1gkd1942vk9n8kfzdwy1iil6wgvlwjq7a3y5jc49ck4lz9rhmgkq")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-github-com-chzyer-logex-1.1.10 + (package + (name "go-github-com-chzyer-logex") + (version "1.1.10") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/chzyer/logex") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "08pbjj3wx9acavlwyr055isa8a5hnmllgdv5k6ra60l5y1brmlq4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/chzyer/logex")) + (home-page "https://github.com/chzyer/logex") + (synopsis #f) + (description #f) + (license #f))) + +(define-public go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e + (package + (name "go-github-com-chzyer-readline") + (version "0.0.0-20180603132655-2972be24d48e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/chzyer/readline") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "104q8dazj8yf6b089jjr82fy9h1g80zyyzvp3g8b44a7d8ngjj6r")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/chzyer/readline")) + (home-page "https://github.com/chzyer/readline") + (synopsis "Guide") + (description + "Readline is a pure go implementation for GNU-Readline kind library. +") + (license license:expat))) + +(define-public go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1 + (package + (name "go-github-com-chzyer-test") + (version "0.0.0-20180213035817-a1ea475d72b1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/chzyer/test") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0rns2aqk22i9xsgyap0pq8wi4cfaxsri4d9q6xxhhyma8jjsnj2k")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/chzyer/test")) + (home-page "https://github.com/chzyer/test") + (synopsis "test") + (description #f) + (license license:expat))) + +(define-public go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6 + (package + (name "go-github-com-ianlancetaylor-demangle") + (version "0.0.0-20181102032728-5e5cf60278f6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/ianlancetaylor/demangle") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fhjk11cip9c3jyj1byz9z77n6n2rlxmyz0xjx1zpn1da3cvri75")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/ianlancetaylor/demangle")) + (home-page "https://github.com/ianlancetaylor/demangle") + (synopsis "github.com/ianlancetaylor/demangle") + (description + "Package demangle defines functions that demangle GCC/LLVM +C++ and Rust symbol names. +This package recognizes names that were mangled according to the C++ ABI +defined at @url{http://codesourcery.com/cxx-abi/,http://codesourcery.com/cxx-abi/} and the Rust ABI +defined at +@url{https://rust-lang.github.io/rfcs/2603-rust-symbol-name-mangling-v0.html,https://rust-lang.github.io/rfcs/2603-rust-symbol-name-mangling-v0.html} +") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20191204072324-ce4227a45e2e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1s43wvqfml6ml5ks7iv2bis9d664g77mq86v7mfmjhn56x856g35")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-google-pprof-0.0.0-20200229191704-1ebb73c60ed3 + (package + (name "go-github-com-google-pprof") + (version "0.0.0-20200229191704-1ebb73c60ed3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/pprof") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1gdi9p4j1zfm5xlm488i5l0q3kk4q6hsmbmlk6p729i0di2n3ifa")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/pprof")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" + ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) + ("go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6" + ,go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6) + ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" + ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) + ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" + ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) + ("go-github-com-chzyer-logex-1.1.10" + ,go-github-com-chzyer-logex-1.1.10))) + (home-page "https://github.com/google/pprof") + (synopsis "Introduction") + (description + "pprof is a tool for collection, manipulation and visualization +of performance profiles. +") + (license license:asl2.0))) + +(define-public go-github-com-jstemmer-go-junit-report-0.9.1 + (package + (name "go-github-com-jstemmer-go-junit-report") + (version "0.9.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jstemmer/go-junit-report") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1knip80yir1cdsjlb3rzy0a4w3kl4ljpiciaz6hjzwqlfhnv7bkw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/jstemmer/go-junit-report")) + (home-page "https://github.com/jstemmer/go-junit-report") + (synopsis "go-junit-report") + (description + "Converts @code{go test} output to an xml report, suitable for applications that +expect junit xml reports (e.g. @url{http://jenkins-ci.org,Jenkins}).") + (license license:expat))) + +(define-public go-golang-org-x-net-0.0.0-20200324143707-d3edc9973b7e + (package + (name "go-golang-org-x-net") + (version "0.0.0-20200324143707-d3edc9973b7e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12zbjwcsh9b0lwycqlkrnbyg5a6a9dzgj8hhgq399bdda5bd97y7")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" + ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-github-com-golang-mock-1.2.0 + (package + (name "go-github-com-golang-mock") + (version "1.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/mock") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12ddj2g8ab87id6n2n67vnbhq6p8dvgsq1pzpqfriym4dk8w54fg")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/mock")) + (home-page "https://github.com/golang/mock") + (synopsis "gomock") + (description + "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It +integrates well with Go's built-in @code{testing} package, but can be used in other +contexts too.") + (license license:asl2.0))) + +(define-public go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c + (package + (name "go-github-com-google-btree") + (version "0.0.0-20180813153112-4030bb1f1f0c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/btree") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ba430m9fbnagacp57krgidsyrgp3ycw5r7dj71brgp5r52g82p6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/btree")) + (home-page "https://github.com/google/btree") + (synopsis "BTree implementation for Go") + (description + "Package btree implements in-memory B-Trees of arbitrary degree. +") + (license license:asl2.0))) + +(define-public go-github-com-google-martian-2.1.0+incompatible + (package + (name "go-github-com-google-martian") + (version "2.1.0+incompatible") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/martian") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "197hil6vrjk50b9wvwyzf61csid83whsjj6ik8mc9r2lryxlyyrp")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/martian")) + (home-page "https://github.com/google/martian") + (synopsis "Martian Proxy") + (description + "Package martian provides an HTTP/1.1 proxy with an API for configurable +request and response modifiers. +") + (license license:asl2.0))) + +(define-public go-github-com-google-pprof-0.0.0-20181206194817-3ea8567a2e57 + (package + (name "go-github-com-google-pprof") + (version "0.0.0-20181206194817-3ea8567a2e57") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/pprof") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "09rhjn3ms0a72dw0yzbp237p7yhqma772zspddn6mgkh3gi3kn4c")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/pprof")) + (home-page "https://github.com/google/pprof") + (synopsis "Introduction") + (description + "pprof is a tool for collection, manipulation and visualization +of performance profiles. +") + (license license:asl2.0))) + +(define-public go-github-com-googleapis-gax-go-v2-2.0.4 + (package + (name "go-github-com-googleapis-gax-go-v2") + (version "2.0.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/gax-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1iwnm6ky1x53lgs44mw3hpdkjzrm5qd0kfs50m0qcq2ml5m1cwdm")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/googleapis/gax-go/v2")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.19.0" + ,go-google-golang-org-grpc-1.19.0))) + (home-page "https://github.com/googleapis/gax-go") + (synopsis #f) + (description + "Package gax contains a set of modules which aid the development of APIs +for clients and servers based on gRPC and Google API conventions. +") + (license license:bsd-3))) + +(define-public go-github-com-jstemmer-go-junit-report-0.0.0-20190106144839-af01ea7f8024 + (package + (name "go-github-com-jstemmer-go-junit-report") + (version "0.0.0-20190106144839-af01ea7f8024") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jstemmer/go-junit-report") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1lp3n94ris12hac02wi31f3whs88lcrzwgdg43a5j6cafg9p1d0s")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/jstemmer/go-junit-report")) + (home-page "https://github.com/jstemmer/go-junit-report") + (synopsis "go-junit-report") + (description + "Converts @code{go test} output to an xml report, suitable for applications that +expect junit xml reports (e.g. @url{http://jenkins-ci.org,Jenkins}).") + (license license:expat))) + +(define-public go-golang-org-x-text-0.3.1-0.20180807135948-17ff2d5776d2 + (package + (name "go-golang-org-x-text") + (version "0.3.1-0.20180807135948-17ff2d5776d2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/text") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1rrh2mnmyxr45nsvy42zq3w3ly6gw6rl993knwvf1w71kyv0jjnj")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/text")) + (home-page "https://golang.org/x/text") + (synopsis "Go Text") + (description + "text is a repository of text-related packages related to internationalization +(i18n) and localization (l10n), such as character encodings, text +transformations, and locale-specific text handling. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-time-0.0.0-20181108054448-85acf8d2951c + (package + (name "go-golang-org-x-time") + (version "0.0.0-20181108054448-85acf8d2951c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/time") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0yqnxsrarjk4qkda8kcxzmk7y90kkkxzx9iwryzrk7bzs87ky3xc")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/time")) + (home-page "https://golang.org/x/time") + (synopsis "Go Time") + (description "This repository provides supplementary Go time packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f + (package + (name "go-golang-org-x-lint") + (version "0.0.0-20190301231843-5614ed5bae6f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/lint") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0fzn0zjv0x92xvfdq3a0v9w5sgkhr7hxkfy9zaqi8i57807z8bnx")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/lint")) + (home-page "https://golang.org/x/lint") + (synopsis "Installation") + (description "Package lint contains a linter for Go source code. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421 + (package + (name "go-golang-org-x-oauth2") + (version "0.0.0-20190226205417-e64efc72b421") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/oauth2") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0djvwz2avx7knsjbl434vw1wqbrg53xp1kh599gfixn5icrggz4m")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/oauth2")) + (propagated-inputs + `(("go-google-golang-org-appengine-1.4.0" + ,go-google-golang-org-appengine-1.4.0) + ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" + ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) + ("go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e" + ,go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e) + ("go-cloud-google-com-go-0.34.0" ,go-cloud-google-com-go-0.34.0))) + (home-page "https://golang.org/x/oauth2") + (synopsis "OAuth2 for Go") + (description + "Package oauth2 provides support for making +OAuth2 authorized and authenticated HTTP requests, +as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +It can additionally grant authorization with Bearer JWT. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138 + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20190312170243-e65039ee4138") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0c094599cf70wdrms49a3879qkq122pqlp2av444gs2pvc8apdcx")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-google-golang-org-api-0.4.0 + (package + (name "go-google-golang-org-api") + (version "0.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-api-go-client") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1hzgrw5wasmcjlqpxsmryddzzw4cwyzf2vx14i9z51v1plwssijm")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/api")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" + ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) + ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) + ("go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19" + ,go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19) + ("go-google-golang-org-appengine-1.4.0" + ,go-google-golang-org-appengine-1.4.0) + ("go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138" + ,go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138) + ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" + ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) + ("go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421" + ,go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421) + ("go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f" + ,go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f) + ("go-go-opencensus-io-0.21.0" ,go-go-opencensus-io-0.21.0) + ("go-github-com-google-go-cmp-0.2.0" + ,go-github-com-google-go-cmp-0.2.0))) + (home-page "https://google.golang.org/api") + (synopsis "Google APIs Client Library for Go") + (description + "Package api is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of +sub-packages. +") + (license license:bsd-3))) + +(define-public go-google-golang-org-genproto-0.0.0-20190418145605-e7d98fc518a7 + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20190418145605-e7d98fc518a7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1cnavkyawwvfc5yl097ygnfy1ac69v4zc02gdfnq1bvgcvgmvnbi")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" + ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) + ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) + ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" + ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) + ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" + ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) + ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" + ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd) + ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" + ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) + ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" + ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-honnef-co-go-tools-0.0.0-20190106161140-3f1c8253044a + (package + (name "go-honnef-co-go-tools") + (version "0.0.0-20190106161140-3f1c8253044a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/dominikh/go-tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0d3vgh0fgfj1z7i648g1s6x2pwxd07sxfjwg1xn3yagr9h06jh3h")))) + (build-system go-build-system) + (arguments '(#:import-path "honnef.co/go/tools")) + (home-page "https://honnef.co/go/tools") + (synopsis "Documentation") + (description + "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, +offers simplifications, and enforces style rules.") + (license license:expat))) + +(define-public go-cloud-google-com-go-0.38.0 + (package + (name "go-cloud-google-com-go") + (version "0.38.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-cloud-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0n6n13b7lri2fmc4bn4ifszyawj31dpbzvyv0xafsf81440z8cyh")))) + (build-system go-build-system) + (arguments '(#:import-path "cloud.google.com/go")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190106161140-3f1c8253044a" + ,go-honnef-co-go-tools-0.0.0-20190106161140-3f1c8253044a) + ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) + ("go-google-golang-org-genproto-0.0.0-20190418145605-e7d98fc518a7" + ,go-google-golang-org-genproto-0.0.0-20190418145605-e7d98fc518a7) + ("go-google-golang-org-api-0.4.0" ,go-google-golang-org-api-0.4.0) + ("go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138" + ,go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138) + ("go-golang-org-x-time-0.0.0-20181108054448-85acf8d2951c" + ,go-golang-org-x-time-0.0.0-20181108054448-85acf8d2951c) + ("go-golang-org-x-text-0.3.1-0.20180807135948-17ff2d5776d2" + ,go-golang-org-x-text-0.3.1-0.20180807135948-17ff2d5776d2) + ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" + ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) + ("go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421" + ,go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421) + ("go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f" + ,go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f) + ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" + ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) + ("go-go-opencensus-io-0.21.0" ,go-go-opencensus-io-0.21.0) + ("go-github-com-jstemmer-go-junit-report-0.0.0-20190106144839-af01ea7f8024" + ,go-github-com-jstemmer-go-junit-report-0.0.0-20190106144839-af01ea7f8024) + ("go-github-com-googleapis-gax-go-v2-2.0.4" + ,go-github-com-googleapis-gax-go-v2-2.0.4) + ("go-github-com-google-pprof-0.0.0-20181206194817-3ea8567a2e57" + ,go-github-com-google-pprof-0.0.0-20181206194817-3ea8567a2e57) + ("go-github-com-google-martian-2.1.0+incompatible" + ,go-github-com-google-martian-2.1.0+incompatible) + ("go-github-com-google-go-cmp-0.2.0" + ,go-github-com-google-go-cmp-0.2.0) + ("go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c" + ,go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0) + ("go-github-com-golang-mock-1.2.0" ,go-github-com-golang-mock-1.2.0))) + (home-page "https://cloud.google.com/go") + (synopsis "Google Cloud Client Libraries for Go") + (description + "Package cloud is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +of sub-packages. +") + (license license:asl2.0))) + +(define-public go-github-com-hashicorp-golang-lru-0.5.1 + (package + (name "go-github-com-hashicorp-golang-lru") + (version "0.5.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/golang-lru") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "13f870cvk161bzjj6x41l45r5x9i1z9r2ymwmvm7768kg08zznpy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/golang-lru")) + (home-page "https://github.com/hashicorp/golang-lru") + (synopsis "golang-lru") + (description + "Package lru provides three different LRU caches of varying sophistication. +") + (license license:mpl2.0))) + +(define-public go-github-com-hashicorp-golang-lru-0.5.0 + (package + (name "go-github-com-hashicorp-golang-lru") + (version "0.5.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/golang-lru") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12k2cp2k615fjvfa5hyb9k2alian77wivds8s65diwshwv41939f")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/golang-lru")) + (home-page "https://github.com/hashicorp/golang-lru") + (synopsis "golang-lru") + (description + "Package lru provides three different LRU caches of varying sophistication. +") + (license license:mpl2.0))) + +(define-public go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19 + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20190307195333-5fe7a883aa19") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0qjkwig0r42q0j2qv57s4ahsgmmp41dz3ih3rnaqg0619n5w7lbs")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" + ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) + ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) + ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" + ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) + ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" + ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) + ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" + ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd) + ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" + ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) + ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" + ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-go-opencensus-io-0.21.0 + (package + (name "go-go-opencensus-io") + (version "0.21.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/census-instrumentation/opencensus-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "14s0a12xdzjvad0dgksgv8m3hh7nc585abvjkvyk6r67a29lxj6x")))) + (build-system go-build-system) + (arguments '(#:import-path "go.opencensus.io")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) + ("go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19" + ,go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-github-com-hashicorp-golang-lru-0.5.0" + ,go-github-com-hashicorp-golang-lru-0.5.0) + ("go-github-com-google-go-cmp-0.2.0" + ,go-github-com-google-go-cmp-0.2.0) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0))) + (home-page "https://go.opencensus.io") + (synopsis "OpenCensus Libraries for Go") + (description "Package opencensus contains Go support for OpenCensus. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422 + (package + (name "go-golang-org-x-lint") + (version "0.0.0-20190409202823-959b441ac422") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/lint") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1mgcv5f00pkzsbwnq2y7vqvd1b4lr5a3s47cphh2qv4indfk7pck")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/lint")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" + ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd))) + (home-page "https://golang.org/x/lint") + (synopsis "Installation") + (description "Package lint contains a linter for Go source code. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20190503192946-f4e77d36d62c + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190503192946-f4e77d36d62c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0avjnglqqg9ya0cbhp23m4namykii219kxjywxn4cd7pfcc5arha")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45 + (package + (name "go-golang-org-x-oauth2") + (version "0.0.0-20190604053449-0f29369cfe45") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/oauth2") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "06jwpvx0x2gjn2y959drbcir5kd7vg87k0r1216abk6rrdzzrzi2")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/oauth2")) + (propagated-inputs + `(("go-google-golang-org-appengine-1.4.0" + ,go-google-golang-org-appengine-1.4.0) + ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" + ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) + ("go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e" + ,go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e) + ("go-cloud-google-com-go-0.34.0" ,go-cloud-google-com-go-0.34.0))) + (home-page "https://golang.org/x/oauth2") + (synopsis "OAuth2 for Go") + (description + "Package oauth2 provides support for making +OAuth2 authorized and authenticated HTTP requests, +as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +It can additionally grant authorization with Bearer JWT. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190507160741-ecd444e8653b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1vhld4948mzfnlgf20id29mv1bwpk9a3xlbw1mbjzxzxxdv1jds2")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-google-golang-org-appengine-1.5.0 + (package + (name "go-google-golang-org-appengine") + (version "1.5.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/appengine") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0l7mkdnwhidv8m686x432vmx8z5nqcrr9f46ddgvrxbh4wvyfcll")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/appengine")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225" + ,go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0))) + (home-page "https://google.golang.org/appengine") + (synopsis "Go App Engine packages") + (description + "Package appengine provides basic functionality for Google App Engine. +") + (license license:asl2.0))) + +(define-public go-google-golang-org-api-0.20.0 + (package + (name "go-google-golang-org-api") + (version "0.20.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-api-go-client") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "13syr1x33k6mrn5w6l4sgdbzn368w3m60vf6kk2j10fwa45125rg")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/api")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" + ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" + ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) + ("go-google-golang-org-appengine-1.5.0" + ,go-google-golang-org-appengine-1.5.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) + ("go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b" + ,go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b) + ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" + ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) + ("go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45" + ,go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45) + ("go-golang-org-x-net-0.0.0-20190503192946-f4e77d36d62c" + ,go-golang-org-x-net-0.0.0-20190503192946-f4e77d36d62c) + ("go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422" + ,go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422) + ("go-go-opencensus-io-0.21.0" ,go-go-opencensus-io-0.21.0) + ("go-github-com-hashicorp-golang-lru-0.5.1" + ,go-github-com-hashicorp-golang-lru-0.5.1) + ("go-github-com-googleapis-gax-go-v2-2.0.5" + ,go-github-com-googleapis-gax-go-v2-2.0.5) + ("go-github-com-google-go-cmp-0.3.0" + ,go-github-com-google-go-cmp-0.3.0) + ("go-cloud-google-com-go-0.38.0" ,go-cloud-google-com-go-0.38.0))) + (home-page "https://google.golang.org/api") + (synopsis "Google APIs Client Library for Go") + (description + "Package api is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of +sub-packages. +") + (license license:bsd-3))) + +(define-public go-github-com-google-renameio-0.1.0 + (package + (name "go-github-com-google-renameio") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/renameio") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ki2x5a9nrj17sn092d6n4zr29lfg5ydv4xz5cp58z6cw8ip43jx")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/renameio")) + (home-page "https://github.com/google/renameio") + (synopsis "Atomicity vs durability") + (description + "Package renameio provides a way to atomically create or replace a file or +symbolic link. +") + (license license:asl2.0))) + +(define-public go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127 + (package + (name "go-gopkg-in-check-v1") + (version "1.0.0-20180628173108-788fd7840127") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/check.v1") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0v3bim0j375z81zrpr5qv42knqs0y2qv2vkjiqi5axvb78slki1a")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) + (home-page "https://gopkg.in/check.v1") + (synopsis "Instructions") + (description + "Package check is a rich testing extension for Go's testing package. +") + (license license:bsd-2))) + +(define-public go-gopkg-in-errgo-v2-2.1.0 + (package + (name "go-gopkg-in-errgo-v2") + (version "2.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/errgo.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "065mbihiy7q67wnql0bzl9y1kkvck5ivra68254zbih52jxwrgr2")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/errgo.v2" #:unpack-path "gopkg.in/errgo.v2")) + (propagated-inputs + `(("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" + ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) + ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0))) + (home-page "https://gopkg.in/errgo.v2") + (synopsis #f) + (description + "Package errgo provides some primitives for error creation and handling.") + (license license:bsd-3))) + +(define-public go-github-com-rogpeppe-go-internal-1.3.0 + (package + (name "go-github-com-rogpeppe-go-internal") + (version "1.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/rogpeppe/go-internal") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0mcdh1licgnnahwml9y2iq6xy5x9xmjw5frcnds2s3wpjyqrl216")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/rogpeppe/go-internal")) + (propagated-inputs + `(("go-gopkg-in-errgo-v2-2.1.0" ,go-gopkg-in-errgo-v2-2.1.0))) + (home-page "https://github.com/rogpeppe/go-internal") + (synopsis #f) + (description + "This repository factors out an opinionated selection of internal packages and functionality from the Go standard +library. Currently this consists mostly of packages and testing code from within the Go tool implementation.") + (license license:bsd-3))) + +(define-public go-golang-org-x-crypto-0.0.0-20190510104115-cbcb75029529 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20190510104115-cbcb75029529") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12831ga1gq04a3jbbcmww7kaqfdfgp7cdv2fj9aqidz8h52ajdmh")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" + ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) + ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" + ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-mod-0.0.0-20190513183733-4bf6d317e70e + (package + (name "go-golang-org-x-mod") + (version "0.0.0-20190513183733-4bf6d317e70e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/mod") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19lg1ly3j31anx92p0hynic1gjk417wwxphfdrb2cq1c19kj3r17")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/mod")) + (propagated-inputs + `(("go-golang-org-x-crypto-0.0.0-20190510104115-cbcb75029529" + ,go-golang-org-x-crypto-0.0.0-20190510104115-cbcb75029529))) + (home-page "https://golang.org/x/mod") + (synopsis "mod") + (description + "This repository holds packages for writing tools +that work directly with Go module mechanics. +That is, it is for direct manipulation of Go modules themselves.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20191130070609-6e064ea0cf2d + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20191130070609-6e064ea0cf2d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1nbki367xspsa37j6276f5q2gv31vfjpb52axn3p3ymz548my75d")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7" + ,go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7) + ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" + ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) + ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" + ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-honnef-co-go-tools-0.0.1-2020.1.3 + (package + (name "go-honnef-co-go-tools") + (version "0.0.1-2020.1.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/dominikh/go-tools") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0pvi1mzhy6zgx4zfgdypbl4zhvgg11hl5qv7blf2qs0a96j2djhf")))) + (build-system go-build-system) + (arguments '(#:import-path "honnef.co/go/tools")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20191130070609-6e064ea0cf2d" + ,go-golang-org-x-tools-0.0.0-20191130070609-6e064ea0cf2d) + ("go-golang-org-x-mod-0.0.0-20190513183733-4bf6d317e70e" + ,go-golang-org-x-mod-0.0.0-20190513183733-4bf6d317e70e) + ("go-github-com-rogpeppe-go-internal-1.3.0" + ,go-github-com-rogpeppe-go-internal-1.3.0) + ("go-github-com-kisielk-gotool-1.0.0" + ,go-github-com-kisielk-gotool-1.0.0) + ("go-github-com-google-renameio-0.1.0" + ,go-github-com-google-renameio-0.1.0) + ("go-github-com-burntsushi-toml-0.3.1" + ,go-github-com-burntsushi-toml-0.3.1))) + (home-page "https://honnef.co/go/tools") + (synopsis "Documentation") + (description + "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, +offers simplifications, and enforces style rules.") + (license license:expat))) + +(define-public go-cloud-google-com-go-0.56.0 + (package + (name "go-cloud-google-com-go") + (version "0.56.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-cloud-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1bpx84q7byxr5rp197qcg3pl56acs8v1q555frxgcqygxwjacszf")))) + (build-system go-build-system) + (arguments '(#:import-path "cloud.google.com/go")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.1-2020.1.3" + ,go-honnef-co-go-tools-0.0.1-2020.1.3) + ("go-google-golang-org-grpc-1.28.0" ,go-google-golang-org-grpc-1.28.0) + ("go-google-golang-org-genproto-0.0.0-20200331122359-1ee6d9798940" + ,go-google-golang-org-genproto-0.0.0-20200331122359-1ee6d9798940) + ("go-google-golang-org-api-0.20.0" ,go-google-golang-org-api-0.20.0) + ("go-golang-org-x-tools-0.0.0-20200331025713-a30bf2db82d4" + ,go-golang-org-x-tools-0.0.0-20200331025713-a30bf2db82d4) + ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) + ("go-golang-org-x-sys-0.0.0-20200331124033-c3d80250170d" + ,go-golang-org-x-sys-0.0.0-20200331124033-c3d80250170d) + ("go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a" + ,go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a) + ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" + ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) + ("go-golang-org-x-net-0.0.0-20200324143707-d3edc9973b7e" + ,go-golang-org-x-net-0.0.0-20200324143707-d3edc9973b7e) + ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" + ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) + ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) + ("go-github-com-jstemmer-go-junit-report-0.9.1" + ,go-github-com-jstemmer-go-junit-report-0.9.1) + ("go-github-com-googleapis-gax-go-v2-2.0.5" + ,go-github-com-googleapis-gax-go-v2-2.0.5) + ("go-github-com-google-pprof-0.0.0-20200229191704-1ebb73c60ed3" + ,go-github-com-google-pprof-0.0.0-20200229191704-1ebb73c60ed3) + ("go-github-com-google-martian-2.1.0+incompatible" + ,go-github-com-google-martian-2.1.0+incompatible) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.3.5" + ,go-github-com-golang-protobuf-1.3.5) + ("go-github-com-golang-mock-1.4.3" ,go-github-com-golang-mock-1.4.3) + ("go-cloud-google-com-go-storage-1.6.0" + ,go-cloud-google-com-go-storage-1.6.0) + ("go-cloud-google-com-go-pubsub-1.2.0" + ,go-cloud-google-com-go-pubsub-1.2.0) + ("go-cloud-google-com-go-datastore-1.1.0" + ,go-cloud-google-com-go-datastore-1.1.0) + ("go-cloud-google-com-go-bigquery-1.4.0" + ,go-cloud-google-com-go-bigquery-1.4.0))) + (home-page "https://cloud.google.com/go") + (synopsis "Google Cloud Client Libraries for Go") + (description + "Package cloud is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +of sub-packages. +") + (license license:asl2.0))) + +(define-public go-go-opencensus-io-0.22.3 + (package + (name "go-go-opencensus-io") + (version "0.22.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/census-instrumentation/opencensus-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0xj16iq5jp26hi2py7lsd8cvqh651fgn39y05gzvjdi88d9xd3nw")))) + (build-system go-build-system) + (arguments '(#:import-path "go.opencensus.io")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.20.1" ,go-google-golang-org-grpc-1.20.1) + ("go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb" + ,go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb) + ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) + ("go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd" + ,go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd) + ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" + ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) + ("go-github-com-stretchr-testify-1.4.0" + ,go-github-com-stretchr-testify-1.4.0) + ("go-github-com-google-go-cmp-0.3.0" + ,go-github-com-google-go-cmp-0.3.0) + ("go-github-com-golang-protobuf-1.3.1" + ,go-github-com-golang-protobuf-1.3.1) + ("go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6" + ,go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6))) + (home-page "https://go.opencensus.io") + (synopsis "OpenCensus Libraries for Go") + (description "Package opencensus contains Go support for OpenCensus. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20200317015054-43a5402ce75a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0j6zrrb81qjr1926kkwmn0di9a0jn8qyjd9dw614rfkihxgq1vsm")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the +ones provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20200331124033-c3d80250170d + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200331124033-c3d80250170d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1nswjhkg7yixla0b3d8xwzf94rawwyjrxipay3ffdvm426n0ld42")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-yuin-goldmark-1.1.25 + (package + (name "go-github-com-yuin-goldmark") + (version "1.1.25") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/yuin/goldmark") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0cr3mk8pr7vsyisgrvln5ailnnn9xhardcy8mkshybk5c3n1kw5k")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/yuin/goldmark")) + (home-page "https://github.com/yuin/goldmark") + (synopsis "goldmark") + (description + "Package goldmark implements functions to convert markdown text to a desired format. +") + (license license:expat))) + +(define-public go-golang-org-x-tools-0.0.0-20200331025713-a30bf2db82d4 + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20200331025713-a30bf2db82d4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1rb488ydwi24zmd1zvsv8k8srs3q6xnqqfdar538hssqgljyvp7l")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) + ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" + ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) + ("go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b" + ,go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b) + ("go-golang-org-x-mod-0.2.0" ,go-golang-org-x-mod-0.2.0) + ("go-github-com-yuin-goldmark-1.1.25" + ,go-github-com-yuin-goldmark-1.1.25))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-google-golang-org-appengine-1.6.5 + (package + (name "go-google-golang-org-appengine") + (version "1.6.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/appengine") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "05hbq4cs7bqw0zl17bx8rzdkszid3nyl92100scg3jjrg70dhm7w")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/appengine")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) + ("go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65" + ,go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65) + ("go-github-com-golang-protobuf-1.3.1" + ,go-github-com-golang-protobuf-1.3.1))) + (home-page "https://google.golang.org/appengine") + (synopsis "Go App Engine packages") + (description + "Package appengine provides basic functionality for Google App Engine. +") + (license license:asl2.0))) + +(define-public go-google-golang-org-genproto-0.0.0-20200331122359-1ee6d9798940 + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20200331122359-1ee6d9798940") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1zsp55d7xjc0b3yw5jjpvbsc0gkji1c1j2vxmcwm89dh26rz4jwd")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" + ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-golang-protobuf-1.3.3" + ,go-github-com-golang-protobuf-1.3.3))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-google-golang-org-grpc-1.28.0 + (package + (name "go-google-golang-org-grpc") + (version "1.28.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1m36rg3w2mf4r3383yf0r1pjrz890mdw506h1lpm6bkc8w3kyqz3")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" + ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-github-com-google-go-cmp-0.2.0" + ,go-github-com-google-go-cmp-0.2.0) + ("go-github-com-golang-protobuf-1.3.3" + ,go-github-com-golang-protobuf-1.3.3) + ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" + ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) + ("go-github-com-envoyproxy-go-control-plane-0.9.4" + ,go-github-com-envoyproxy-go-control-plane-0.9.4))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-google-golang-org-api-0.29.0 + (package + (name "go-google-golang-org-api") + (version "0.29.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-api-go-client") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1y6izqcc6krill33pb57fbgbs7ni3jxyf3knm5jkl4qydsj9303h")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/api")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.28.0" ,go-google-golang-org-grpc-1.28.0) + ("go-google-golang-org-genproto-0.0.0-20200331122359-1ee6d9798940" + ,go-google-golang-org-genproto-0.0.0-20200331122359-1ee6d9798940) + ("go-google-golang-org-appengine-1.6.5" + ,go-google-golang-org-appengine-1.6.5) + ("go-golang-org-x-tools-0.0.0-20200331025713-a30bf2db82d4" + ,go-golang-org-x-tools-0.0.0-20200331025713-a30bf2db82d4) + ("go-golang-org-x-sys-0.0.0-20200331124033-c3d80250170d" + ,go-golang-org-x-sys-0.0.0-20200331124033-c3d80250170d) + ("go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a" + ,go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a) + ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" + ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) + ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" + ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) + ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) + ("go-github-com-googleapis-gax-go-v2-2.0.5" + ,go-github-com-googleapis-gax-go-v2-2.0.5) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-cloud-google-com-go-0.56.0" ,go-cloud-google-com-go-0.56.0))) + (home-page "https://google.golang.org/api") + (synopsis "Google APIs Client Library for Go") + (description + "Package api is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of +sub-packages. +") + (license license:bsd-3))) + +(define-public go-google-golang-org-genproto-0.0.0-20200729003335-053ba62fc06f + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20200729003335-053ba62fc06f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1h34qgr4lqy1l0niay3gzqh6pc63y2xh1mmp8757y8jsrdz1s5fv")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.24.0" + ,go-google-golang-org-protobuf-1.24.0) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-golang-protobuf-1.4.1" + ,go-github-com-golang-protobuf-1.4.1))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-google-golang-org-grpc-1.30.0 + (package + (name "go-google-golang-org-grpc") + (version "1.30.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "05pb9xrxd7kpbi8zzby90f87b6sxq65nmpgqx5h3255whmmpzbi9")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" + ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.3.3" + ,go-github-com-golang-protobuf-1.3.3) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-envoyproxy-go-control-plane-0.9.4" + ,go-github-com-envoyproxy-go-control-plane-0.9.4) + ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" + ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-cloud-google-com-go-0.62.0 + (package + (name "go-cloud-google-com-go") + (version "0.62.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-cloud-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "00x1nlq4fvvxrwx24firscav511qwck3zl6ghs9p6zzzixla8r5h")))) + (build-system go-build-system) + (arguments '(#:import-path "cloud.google.com/go")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.25.0" + ,go-google-golang-org-protobuf-1.25.0) + ("go-google-golang-org-grpc-1.30.0" ,go-google-golang-org-grpc-1.30.0) + ("go-google-golang-org-genproto-0.0.0-20200729003335-053ba62fc06f" + ,go-google-golang-org-genproto-0.0.0-20200729003335-053ba62fc06f) + ("go-google-golang-org-api-0.29.0" ,go-google-golang-org-api-0.29.0) + ("go-golang-org-x-tools-0.0.0-20200729194436-6467de6f59a7" + ,go-golang-org-x-tools-0.0.0-20200729194436-6467de6f59a7) + ("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) + ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" + ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) + ("go-golang-org-x-net-0.0.0-20200707034311-ab3426394381" + ,go-golang-org-x-net-0.0.0-20200707034311-ab3426394381) + ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" + ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) + ("go-go-opencensus-io-0.22.4" ,go-go-opencensus-io-0.22.4) + ("go-github-com-jstemmer-go-junit-report-0.9.1" + ,go-github-com-jstemmer-go-junit-report-0.9.1) + ("go-github-com-googleapis-gax-go-v2-2.0.5" + ,go-github-com-googleapis-gax-go-v2-2.0.5) + ("go-github-com-google-pprof-0.0.0-20200708004538-1a94d8640e99" + ,go-github-com-google-pprof-0.0.0-20200708004538-1a94d8640e99) + ("go-github-com-google-martian-v3-3.0.0" + ,go-github-com-google-martian-v3-3.0.0) + ("go-github-com-google-go-cmp-0.5.1" + ,go-github-com-google-go-cmp-0.5.1) + ("go-github-com-golang-protobuf-1.4.2" + ,go-github-com-golang-protobuf-1.4.2) + ("go-github-com-golang-mock-1.4.3" ,go-github-com-golang-mock-1.4.3) + ("go-cloud-google-com-go-storage-1.10.0" + ,go-cloud-google-com-go-storage-1.10.0))) + (home-page "https://cloud.google.com/go") + (synopsis "Google Cloud Client Libraries for Go") + (description + "Package cloud is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +of sub-packages. +") + (license license:asl2.0))) + +(define-public go-github-com-google-go-cmp-0.5.1 + (package + (name "go-github-com-google-go-cmp") + (version "0.5.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1wjdid59brciv09agxgmqac5k9ywg63nhzb0yi9anmqpl38gps0p")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") + (license license:bsd-3))) + +(define-public go-github-com-googleapis-gax-go-v2-2.0.5 + (package + (name "go-github-com-googleapis-gax-go-v2") + (version "2.0.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/gax-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1lxawwngv6miaqd25s3ba0didfzylbwisd2nz7r4gmbmin6jsjrx")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/googleapis/gax-go/v2")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.19.0" + ,go-google-golang-org-grpc-1.19.0))) + (home-page "https://github.com/googleapis/gax-go") + (synopsis #f) + (description + "Package gax contains a set of modules which aid the development of APIs +for clients and servers based on gRPC and Google API conventions. +") + (license license:bsd-3))) + +(define-public go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6 + (package + (name "go-github-com-golang-groupcache") + (version "0.0.0-20190702054246-869f871628b6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/groupcache") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0r4nk8129bvx50qb4xzjaay39b2h6k7cbdqqzdlanmc82ygczsbw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/groupcache")) + (home-page "https://github.com/golang/groupcache") + (synopsis "groupcache") + (description + "Package groupcache provides a data loading mechanism with caching +and de-duplication that works across a set of peer processes. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190502145724-3ef323f4f1fd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "15iw4gjvrnrx98rlny1qcaprp3577rh2b77byb38dr6m3q42rvc6")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6 + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20190227155943-e225da77a7e6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0bh3583smcfw6jw3w6lp0za93rz7hpxfdz8vhxng75b7a6vdlw4p")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the +ones provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20190425155659-357c62f0e4bb") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1h1a0wys83cc86s4w2hqmz78ixijw8f7qchmiwdv5xjvpg0i27c2")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" + ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) + ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) + ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" + ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) + ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" + ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) + ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" + ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd) + ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" + ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) + ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" + ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-google-golang-org-grpc-1.20.1 + (package + (name "go-google-golang-org-grpc") + (version "1.20.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0rj3fs6jillapiwnpkfn3v2jbl7a3zsb0lys4srswl26hjijviqq")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" + ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) + ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" + ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) + ("go-google-golang-org-appengine-1.1.0" + ,go-google-golang-org-appengine-1.1.0) + ("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" + ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" + ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0) + ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-client9-misspell-0.3.4" + ,go-github-com-client9-misspell-0.3.4) + ("go-github-com-burntsushi-toml-0.3.1" + ,go-github-com-burntsushi-toml-0.3.1) + ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-go-opencensus-io-0.22.4 + (package + (name "go-go-opencensus-io") + (version "0.22.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/census-instrumentation/opencensus-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "10skbvs4yxjm3z10yfg5cj2mdzjsna87qk1icp9xv0iwp8wzq6h0")))) + (build-system go-build-system) + (arguments '(#:import-path "go.opencensus.io")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.20.1" ,go-google-golang-org-grpc-1.20.1) + ("go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb" + ,go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb) + ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) + ("go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd" + ,go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd) + ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" + ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) + ("go-github-com-stretchr-testify-1.4.0" + ,go-github-com-stretchr-testify-1.4.0) + ("go-github-com-google-go-cmp-0.3.0" + ,go-github-com-google-go-cmp-0.3.0) + ("go-github-com-golang-protobuf-1.3.1" + ,go-github-com-golang-protobuf-1.3.1) + ("go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6" + ,go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6))) + (home-page "https://go.opencensus.io") + (synopsis "OpenCensus Libraries for Go") + (description "Package opencensus contains Go support for OpenCensus. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b + (package + (name "go-golang-org-x-lint") + (version "0.0.0-20200302205851-738671d3881b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/lint") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0jkiz4py59jjnkyxbxifpf7bsar11lbgmj5jiq2kic5k03shkn9c")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/lint")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7" + ,go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7))) + (home-page "https://golang.org/x/lint") + (synopsis "Installation") + (description "Package lint contains a linter for Go source code. +") + (license license:bsd-3))) + +(define-public go-cloud-google-com-go-0.34.0 + (package + (name "go-cloud-google-com-go") + (version "0.34.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-cloud-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1kclgclwar3r37zbvb9gg3qxbgzkb50zk3s9778zlh2773qikmai")))) + (build-system go-build-system) + (arguments '(#:import-path "cloud.google.com/go")) + (home-page "https://cloud.google.com/go") + (synopsis "Google Cloud Client Libraries for Go") + (description + "Package cloud is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +of sub-packages. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190108225652-1e06a53dbb7e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0lpqqvdccby48nixihvmn8ig1z48b950m1bxfqxn78air308qc3j")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d + (package + (name "go-golang-org-x-oauth2") + (version "0.0.0-20200107190931-bf48bf16ab8d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/oauth2") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1sirdib60zwmh93kf9qrx51r8544k1p9rs5mk0797wibz3m4mrdg")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/oauth2")) + (propagated-inputs + `(("go-google-golang-org-appengine-1.4.0" + ,go-google-golang-org-appengine-1.4.0) + ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" + ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) + ("go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e" + ,go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e) + ("go-cloud-google-com-go-0.34.0" ,go-cloud-google-com-go-0.34.0))) + (home-page "https://golang.org/x/oauth2") + (synopsis "OAuth2 for Go") + (description + "Package oauth2 provides support for making +OAuth2 authorized and authenticated HTTP requests, +as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +It can additionally grant authorization with Bearer JWT. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20200803210538-64077c9b5642 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200803210538-64077c9b5642") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1pdrkim9v0wbxipl586d29vz4ci9xib0f02g6yv7c0nang627pag")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-yuin-goldmark-1.1.32 + (package + (name "go-github-com-yuin-goldmark") + (version "1.1.32") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/yuin/goldmark") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03i9yq6n3yvn5v70xi6x3pn49ndy8zm4217ihwwhlw2nkwhny7a5")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/yuin/goldmark")) + (home-page "https://github.com/yuin/goldmark") + (synopsis "goldmark") + (description + "Package goldmark implements functions to convert markdown text to a desired format. +") + (license license:expat))) + +(define-public go-golang-org-x-net-0.0.0-20200625001655-4c5254603344 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20200625001655-4c5254603344") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1da0a1m488d95vggpi52dkag98n5671ml6sn80nwv6lgbmdx8qbq")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" + ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) + ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" + ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208 + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20200625203802-6e8e738ad208") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1avk27pszd5l5df6ff7j78wgla46ir1hhy2jwfl9a3c0ys602yx9")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the +ones provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20200804011535-6c149bb5ef0d + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20200804011535-6c149bb5ef0d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1l244hp5n0qff7nmvcffggjv7jm4061g63g76z967zvdqcxh23i2")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) + ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" + ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) + ("go-golang-org-x-net-0.0.0-20200625001655-4c5254603344" + ,go-golang-org-x-net-0.0.0-20200625001655-4c5254603344) + ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) + ("go-github-com-yuin-goldmark-1.1.32" + ,go-github-com-yuin-goldmark-1.1.32))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-google-golang-org-genproto-0.0.0-20200804131852-c06518451d9c + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20200804131852-c06518451d9c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wl9bhr94yf0b8lc947zr0iwm3l20irzy869xczfd6z0a1g54gsa")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.24.0" + ,go-google-golang-org-protobuf-1.24.0) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-golang-protobuf-1.4.1" + ,go-github-com-golang-protobuf-1.4.1))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-google-golang-org-api-0.30.0 + (package + (name "go-google-golang-org-api") + (version "0.30.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-api-go-client") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1vh5rrc6hvzh1rqawrwr4nyilnr3dgqx1pr2njjzdg0prfmflm5p")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/api")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.31.0" ,go-google-golang-org-grpc-1.31.0) + ("go-google-golang-org-genproto-0.0.0-20200804131852-c06518451d9c" + ,go-google-golang-org-genproto-0.0.0-20200804131852-c06518451d9c) + ("go-google-golang-org-appengine-1.6.6" + ,go-google-golang-org-appengine-1.6.6) + ("go-golang-org-x-tools-0.0.0-20200804011535-6c149bb5ef0d" + ,go-golang-org-x-tools-0.0.0-20200804011535-6c149bb5ef0d) + ("go-golang-org-x-sys-0.0.0-20200803210538-64077c9b5642" + ,go-golang-org-x-sys-0.0.0-20200803210538-64077c9b5642) + ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" + ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) + ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" + ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) + ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" + ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) + ("go-go-opencensus-io-0.22.4" ,go-go-opencensus-io-0.22.4) + ("go-github-com-googleapis-gax-go-v2-2.0.5" + ,go-github-com-googleapis-gax-go-v2-2.0.5) + ("go-github-com-google-go-cmp-0.5.1" + ,go-github-com-google-go-cmp-0.5.1) + ("go-cloud-google-com-go-0.62.0" ,go-cloud-google-com-go-0.62.0))) + (home-page "https://google.golang.org/api") + (synopsis "Google APIs Client Library for Go") + (description + "Package api is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of +sub-packages. +") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-1.24.0 + (package + (name "go-google-golang-org-protobuf") + (version "1.24.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0x3qyn3rizbs671gs7f8v50rmiwf9h7kbaradpivw9718mhbg1gn")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" + ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.1" + ,go-github-com-golang-protobuf-1.4.1))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-google-golang-org-genproto-0.0.0-20200825200019-8632dd797987 + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20200825200019-8632dd797987") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0h8s1mz8pbdiwmv2g61afa7f05zin3m6mdy2fmny6wcidz4w2i3k")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.24.0" + ,go-google-golang-org-protobuf-1.24.0) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-golang-protobuf-1.4.1" + ,go-github-com-golang-protobuf-1.4.1))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f + (package + (name "go-github-com-cncf-udpa-go") + (version "0.0.0-20191209042840-269d4d468f6f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cncf/udpa") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0i1jiaw2k3hlwwmg4hap81vb4s1p25xp9kdfww37v0fbgjariccs")))) + (build-system go-build-system) + (arguments + '(#:import-path + "github.com/cncf/udpa/go" + #:unpack-path + "github.com/cncf/udpa")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2) + ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" + ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0))) + (home-page "https://github.com/cncf/udpa") + (synopsis "Description") + (description + "This library has been deprecated in favor of @code{github.com/cncf/xds/go}. All users are recommended to switch their imports.") + (license license:asl2.0))) + +(define-public go-github-com-envoyproxy-go-control-plane-0.9.4 + (package + (name "go-github-com-envoyproxy-go-control-plane") + (version "0.9.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/envoyproxy/go-control-plane") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0m0crzx70lp7vz13v20wxb1fcfdnzp7h3mkh3bn6a8mbfz6w5asj")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) + ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" + ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) + ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" + ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) + ("go-github-com-google-go-cmp-0.2.0" + ,go-github-com-google-go-cmp-0.2.0) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2) + ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" + ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) + ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" + ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f) + ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" + ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) + (home-page "https://github.com/envoyproxy/go-control-plane") + (synopsis "control-plane") + (description + "This repository contains a Go-based implementation of an API server that +implements the discovery service APIs defined in +@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") + (license license:asl2.0))) + +(define-public go-github-com-golang-protobuf-1.3.3 + (package + (name "go-github-com-golang-protobuf") + (version "1.3.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1cyyr52yhj3fzrily3rmsbqyj8va4ld75lmry0857m39rgpv8sy1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-google-golang-org-grpc-1.31.0 + (package + (name "go-google-golang-org-grpc") + (version "1.31.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1y3lilpipmaysjk4skbzw1qa6lv05vzixzw9lg9x73xfb01q4nyz")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" + ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.3.3" + ,go-github-com-golang-protobuf-1.3.3) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-envoyproxy-go-control-plane-0.9.4" + ,go-github-com-envoyproxy-go-control-plane-0.9.4) + ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" + ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-cloud-google-com-go-0.65.0 + (package + (name "go-cloud-google-com-go") + (version "0.65.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-cloud-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0xrcg39jrw90gq8vl8pfq63sp3bkak04wh392yj5rh4lc1a4lxjq")))) + (build-system go-build-system) + (arguments '(#:import-path "cloud.google.com/go")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.31.0" ,go-google-golang-org-grpc-1.31.0) + ("go-google-golang-org-genproto-0.0.0-20200825200019-8632dd797987" + ,go-google-golang-org-genproto-0.0.0-20200825200019-8632dd797987) + ("go-google-golang-org-api-0.30.0" ,go-google-golang-org-api-0.30.0) + ("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" + ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) + ("go-golang-org-x-tools-0.0.0-20200825202427-b303f430e36d" + ,go-golang-org-x-tools-0.0.0-20200825202427-b303f430e36d) + ("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) + ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" + ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) + ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" + ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) + ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" + ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) + ("go-go-opencensus-io-0.22.4" ,go-go-opencensus-io-0.22.4) + ("go-github-com-jstemmer-go-junit-report-0.9.1" + ,go-github-com-jstemmer-go-junit-report-0.9.1) + ("go-github-com-googleapis-gax-go-v2-2.0.5" + ,go-github-com-googleapis-gax-go-v2-2.0.5) + ("go-github-com-google-pprof-0.0.0-20200708004538-1a94d8640e99" + ,go-github-com-google-pprof-0.0.0-20200708004538-1a94d8640e99) + ("go-github-com-google-martian-v3-3.0.0" + ,go-github-com-google-martian-v3-3.0.0) + ("go-github-com-google-go-cmp-0.5.1" + ,go-github-com-google-go-cmp-0.5.1) + ("go-github-com-golang-protobuf-1.4.2" + ,go-github-com-golang-protobuf-1.4.2) + ("go-github-com-golang-mock-1.4.4" ,go-github-com-golang-mock-1.4.4) + ("go-cloud-google-com-go-storage-1.10.0" + ,go-cloud-google-com-go-storage-1.10.0))) + (home-page "https://cloud.google.com/go") + (synopsis "Google Cloud Client Libraries for Go") + (description + "Package cloud is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +of sub-packages. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200323222414-85ca7c5b95cd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1504qkgbhhm4f0bhk77v2r1lj6x171ay5m79alkg78wjb5cign5l")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20200822124328-c89045814202 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20200822124328-c89045814202") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1g3wxilwbcbf2xj20y3mpxh38jka4fyhl48akfqf00vr48zmx96x")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" + ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) + ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" + ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-google-golang-org-appengine-1.6.6 + (package + (name "go-google-golang-org-appengine") + (version "1.6.6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/appengine") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "15c38h6fbv06cnkr6yknygfrpibyms2mya4w0l29kaxf42jn1qi5")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/appengine")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) + ("go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65" + ,go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65) + ("go-github-com-golang-protobuf-1.3.1" + ,go-github-com-golang-protobuf-1.3.1))) + (home-page "https://google.golang.org/appengine") + (synopsis "Go App Engine packages") + (description + "Package appengine provides basic functionality for Google App Engine. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-oauth2-0.0.0-20210402161424-2e8d93401602 + (package + (name "go-golang-org-x-oauth2") + (version "0.0.0-20210402161424-2e8d93401602") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/oauth2") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0j1crxa78gip3hxrds5jngi034j4zm4q3z7r8bqs3rjxnwcki9ig")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/oauth2")) + (propagated-inputs + `(("go-google-golang-org-appengine-1.6.6" + ,go-google-golang-org-appengine-1.6.6) + ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" + ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) + ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) + (home-page "https://golang.org/x/oauth2") + (synopsis "OAuth2 for Go") + (description + "Package oauth2 provides support for making +OAuth2 authorized and authenticated HTTP requests, +as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +It can additionally grant authorization with Bearer JWT. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20210403161142-5e06dd20ab57 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20210403161142-5e06dd20ab57") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1acdn06771rxjg38ql9wl8dr1vf23nazjnvk6105z3hddnh14fgb")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190603091049-60506f45cf65") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0827yz7irmnzcdhw8vg74819jaw5ahs4w4v5fvzgfvnxyb9f6zcc")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-text-0.3.2 + (package + (name "go-golang-org-x-text") + (version "0.3.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0flv9idw0jm5nm8lx25xqanbkqgfiym6619w575p7nrdh0riqwqh")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/text")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" + ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) + (home-page "https://golang.org/x/text") + (synopsis "Go Text") + (description + "text is a repository of text-related packages related to internationalization +(i18n) and localization (l10n), such as character encodings, text +transformations, and locale-specific text handling. +") + (license license:bsd-3))) + +(define-public go-google-golang-org-appengine-1.6.7 + (package + (name "go-google-golang-org-appengine") + (version "1.6.7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/appengine") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1wkipg7xxc0ha5p6c3bj0vpgq38l18441n5l6zxdhx0gzvz5z1hs")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/appengine")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) + ("go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65" + ,go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65) + ("go-github-com-golang-protobuf-1.3.1" + ,go-github-com-golang-protobuf-1.3.1))) + (home-page "https://google.golang.org/appengine") + (synopsis "Go App Engine packages") + (description + "Package appengine provides basic functionality for Google App Engine. +") + (license license:asl2.0))) + +(define-public go-github-com-golang-protobuf-1.5.1 + (package + (name "go-github-com-golang-protobuf") + (version "1.5.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1qx8gvsdx1w27vamw6wn1jns2d8pz0g9sji3l0hvs4wl1jf7p32d")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.26.0" + ,go-google-golang-org-protobuf-1.26.0) + ("go-github-com-google-go-cmp-0.5.5" + ,go-github-com-google-go-cmp-0.5.5))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5 + (package + (name "go-golang-org-x-lint") + (version "0.0.0-20201208152925-83fdc39ff7b5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/lint") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ms3rs5hvpnm9bxbr5f9743i7hn2bbmqdmvzxq6nmi0f24ypv1l3")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/lint")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7" + ,go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7))) + (home-page "https://golang.org/x/lint") + (synopsis "Installation") + (description "Package lint contains a linter for Go source code. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20210315160823-c6e025ad8005 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20210315160823-c6e025ad8005") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1dy8j3gvbkng0vy2wgdiy48871j4vchgsks2ggfxcx4jg32d2qsr")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20210316092652-d523dce5a7f4 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20210316092652-d523dce5a7f4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "01hhvh6msyg11adxhgjwzbv4jprq5ajzkxxb16ln3dqv4na9b2k1")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) + ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" + ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) + ("go-golang-org-x-sys-0.0.0-20210315160823-c6e025ad8005" + ,go-golang-org-x-sys-0.0.0-20210315160823-c6e025ad8005))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20210320140829-1e4c9ba3b0c4 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20210320140829-1e4c9ba3b0c4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0nrxjq5j058sba9s5g65l5rdw6b4f335lxa7hhcf57paklym1qgr")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.1.0 + (package + (name "go-golang-org-x-tools") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1asrm22kv5x891qkbpap8alg612k321jbs1akc0vwsan251gm507")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" + ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) + ("go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4" + ,go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4) + ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" + ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) + ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" + ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) + ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) + ("go-github-com-yuin-goldmark-1.2.1" + ,go-github-com-yuin-goldmark-1.2.1))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-google-golang-org-genproto-0.0.0-20210402141018-6c239bbf2bb1 + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20210402141018-6c239bbf2bb1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1xih6y4dwjj939ilwc5s6w419kjnkn1hw33jsgml0nkjcnac74wc")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.26.0" + ,go-google-golang-org-protobuf-1.26.0) + ("go-google-golang-org-grpc-1.36.1" ,go-google-golang-org-grpc-1.36.1) + ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) + ("go-golang-org-x-text-0.3.5" ,go-golang-org-x-text-0.3.5) + ("go-golang-org-x-sys-0.0.0-20210320140829-1e4c9ba3b0c4" + ,go-golang-org-x-sys-0.0.0-20210320140829-1e4c9ba3b0c4) + ("go-golang-org-x-net-0.0.0-20210316092652-d523dce5a7f4" + ,go-golang-org-x-net-0.0.0-20210316092652-d523dce5a7f4) + ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" + ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) + ("go-github-com-golang-protobuf-1.5.1" + ,go-github-com-golang-protobuf-1.5.1))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad + (package + (name "go-github-com-envoyproxy-go-control-plane") + (version "0.9.9-0.20201210154907-fd9021fe5dad") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/envoyproxy/go-control-plane") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0piyk6pk36x2qr3bhys2k240pfwz3bv64fhi2l0vx1mzwiddapbm")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.23.0" + ,go-google-golang-org-protobuf-1.23.0) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" + ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) + ("go-github-com-stretchr-testify-1.5.1" + ,go-github-com-stretchr-testify-1.5.1) + ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" + ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.2" + ,go-github-com-golang-protobuf-1.4.2) + ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" + ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) + ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" + ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403) + ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" + ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) + (home-page "https://github.com/envoyproxy/go-control-plane") + (synopsis "control-plane") + (description + "This repository contains a Go-based implementation of an API server that +implements the discovery service APIs defined in +@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") + (license license:asl2.0))) + +(define-public go-google-golang-org-grpc-1.36.1 + (package + (name "go-google-golang-org-grpc") + (version "1.36.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0l3prxp18lb0pagqg4l6c9i0l6gakfxgf6vxcsv589i0xsxw8ivm")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.25.0" + ,go-google-golang-org-protobuf-1.25.0) + ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" + ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) + ("go-github-com-google-go-cmp-0.5.0" + ,go-github-com-google-go-cmp-0.5.0) + ("go-github-com-golang-protobuf-1.4.2" + ,go-github-com-golang-protobuf-1.4.2) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad" + ,go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad) + ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" + ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-google-golang-org-api-0.44.0 + (package + (name "go-google-golang-org-api") + (version "0.44.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-api-go-client") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0sh6qzc3pnyliy10afrmzpfbbbm2mwcyc6mp5422xhgp3p2x370x")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/api")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.36.1" ,go-google-golang-org-grpc-1.36.1) + ("go-google-golang-org-genproto-0.0.0-20210402141018-6c239bbf2bb1" + ,go-google-golang-org-genproto-0.0.0-20210402141018-6c239bbf2bb1) + ("go-google-golang-org-appengine-1.6.7" + ,go-google-golang-org-appengine-1.6.7) + ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) + ("go-golang-org-x-sys-0.0.0-20210403161142-5e06dd20ab57" + ,go-golang-org-x-sys-0.0.0-20210403161142-5e06dd20ab57) + ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" + ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) + ("go-golang-org-x-oauth2-0.0.0-20210402161424-2e8d93401602" + ,go-golang-org-x-oauth2-0.0.0-20210402161424-2e8d93401602) + ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" + ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) + ("go-go-opencensus-io-0.23.0" ,go-go-opencensus-io-0.23.0) + ("go-github-com-googleapis-gax-go-v2-2.0.5" + ,go-github-com-googleapis-gax-go-v2-2.0.5) + ("go-github-com-google-go-cmp-0.5.5" + ,go-github-com-google-go-cmp-0.5.5) + ("go-cloud-google-com-go-0.81.0" ,go-cloud-google-com-go-0.81.0))) + (home-page "https://google.golang.org/api") + (synopsis "Google APIs Client Library for Go") + (description + "Package api is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of +sub-packages. +") + (license license:bsd-3))) + +(define-public go-github-com-bketelsen-crypt-0.0.4 + (package + (name "go-github-com-bketelsen-crypt") + (version "0.0.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/bketelsen/crypt") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0fyfcvy73zskd1p1mv0cn03anxkkr5gvlawsc87znqk60hdypq3v")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/bketelsen/crypt")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.38.0" ,go-google-golang-org-grpc-1.38.0) + ("go-google-golang-org-api-0.44.0" ,go-google-golang-org-api-0.44.0) + ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" + ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9) + ("go-go-etcd-io-etcd-client-v2-2.305.0" + ,go-go-etcd-io-etcd-client-v2-2.305.0) + ("go-github-com-hashicorp-consul-api-1.1.0" + ,go-github-com-hashicorp-consul-api-1.1.0) + ("go-cloud-google-com-go-firestore-1.1.0" + ,go-cloud-google-com-go-firestore-1.1.0))) + (home-page "https://github.com/bketelsen/crypt") + (synopsis "crypt") + (description + "You can use crypt as a command line tool or as a configuration library:") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20191005200804-aed5e4c7ecf9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wsdsbl9n61l99z0cvib2xzg56fsfgky4yc5xapdw9ywx9h0zm3a")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-fsnotify-fsnotify-1.4.9 + (package + (name "go-github-com-fsnotify-fsnotify") + (version "1.4.9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/fsnotify/fsnotify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1i1r72knpbfwwql9frn9bqc3nhfc2ai5m6qllcyr6wban62lr40x")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/fsnotify/fsnotify")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9" + ,go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9))) + (home-page "https://github.com/fsnotify/fsnotify") + (synopsis "File system notifications for Go") + (description + "Package fsnotify provides a platform-independent interface for file system notifications. +") + (license license:bsd-3))) + +(define-public go-github-com-hashicorp-hcl-1.0.0 + (package + (name "go-github-com-hashicorp-hcl") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/hcl") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0q6ml0qqs0yil76mpn4mdx4lp94id8vbv575qm60jzl1ijcl5i66")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/hcl")) + (propagated-inputs + `(("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/hashicorp/hcl") + (synopsis "HCL") + (description "Package hcl decodes HCL into usable Go structures. +") + (license license:mpl2.0))) + +(define-public go-github-com-magiconair-properties-1.8.5 + (package + (name "go-github-com-magiconair-properties") + (version "1.8.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/magiconair/properties") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0v4agnkhc30fblbmhs0gq2bikhdnnmqmpp4phrnza68m04j5hxbn")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/magiconair/properties")) + (home-page "https://github.com/magiconair/properties") + (synopsis "Overview") + (description + "Package properties provides functions for reading and writing +ISO-8859-1 and UTF-8 encoded .properties files and has +support for recursive property expansion. +") + (license license:bsd-2))) + +(define-public go-github-com-mitchellh-mapstructure-1.4.1 + (package + (name "go-github-com-mitchellh-mapstructure") + (version "1.4.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mitchellh/mapstructure") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1m98wiadb6kdnzv21m8p7nk1jb30zpjh47fkb1dg251r3m7bj47v")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mitchellh/mapstructure")) + (home-page "https://github.com/mitchellh/mapstructure") + (synopsis "mapstructure") + (description + "Package mapstructure exposes functionality to convert one arbitrary +Go type into another, typically to convert a map[string]interface{} +into a native Go structure. +") + (license license:expat))) + +(define-public go-github-com-pelletier-go-toml-1.9.3 + (package + (name "go-github-com-pelletier-go-toml") + (version "1.9.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pelletier/go-toml") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0cqwnvlgs1wgdgjxlwv8j52f7d6syniadr51sjh2fya99m5wzvsn")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pelletier/go-toml")) + (home-page "https://github.com/pelletier/go-toml") + (synopsis "go-toml") + (description "Package toml is a TOML parser and manipulation library. +") + (license #f))) + +(define-public go-github-com-gopherjs-gopherjs-0.0.0-20181017120253-0766667cb4d1 + (package + (name "go-github-com-gopherjs-gopherjs") + (version "0.0.0-20181017120253-0766667cb4d1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gopherjs/gopherjs") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "13pfc9sxiwjky2lm1xb3i3lcisn8p6mgjk2d927l7r92ysph8dmw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/gopherjs/gopherjs")) + (home-page "https://github.com/gopherjs/gopherjs") + (synopsis "GopherJS - A compiler from Go to JavaScript") + (description + "GopherJS compiles Go code (@url{https://golang.org/,golang.org}) to pure JavaScript code. Its main purpose is to give you the opportunity to write front-end code in Go which will still run in all browsers.") + (license license:bsd-2))) + +(define-public go-github-com-jtolds-gls-4.20.0+incompatible + (package + (name "go-github-com-jtolds-gls") + (version "4.20.0+incompatible") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jtolio/gls") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1k7xd2q2ysv2xsh373qs801v6f359240kx0vrl0ydh7731lngvk6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/jtolds/gls")) + (home-page "https://github.com/jtolds/gls") + (synopsis "gls") + (description "Package gls implements goroutine-local storage. +") + (license license:expat))) + +(define-public go-github-com-smartystreets-assertions-0.0.0-20180927180507-b2de0cb4f26d + (package + (name "go-github-com-smartystreets-assertions") + (version "0.0.0-20180927180507-b2de0cb4f26d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/smartystreets/assertions") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1i7ldgavgl35c7gk25p7bvdr282ckng090zr4ch9mk1705akx09y")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/smartystreets/assertions")) + (home-page "https://github.com/smartystreets/assertions") + (synopsis #f) + (description + "Package assertions contains the implementations for all assertions which +are referenced in goconvey's `convey` package +(github.com/smartystreets/goconvey/convey) and gunit (github.com/smartystreets/gunit) +for use with the So(...) method. +They can also be used in traditional Go test functions and even in +applications. +") + (license license:expat))) + +(define-public go-golang-org-x-tools-0.0.0-20190328211700-ab21143f2384 + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20190328211700-ab21143f2384") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "15fk0psk53pplpyghz55bhay0kvsv5rikmn5hwgjnnyxq9vfy178")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-github-com-smartystreets-goconvey-1.6.4 + (package + (name "go-github-com-smartystreets-goconvey") + (version "1.6.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/smartystreets/goconvey") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "07zjxwszayal88z1j2bwnqrsa32vg8l4nivks5yfr9j8xfsw7n6m")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/smartystreets/goconvey")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20190328211700-ab21143f2384" + ,go-golang-org-x-tools-0.0.0-20190328211700-ab21143f2384) + ("go-github-com-smartystreets-assertions-0.0.0-20180927180507-b2de0cb4f26d" + ,go-github-com-smartystreets-assertions-0.0.0-20180927180507-b2de0cb4f26d) + ("go-github-com-jtolds-gls-4.20.0+incompatible" + ,go-github-com-jtolds-gls-4.20.0+incompatible) + ("go-github-com-gopherjs-gopherjs-0.0.0-20181017120253-0766667cb4d1" + ,go-github-com-gopherjs-gopherjs-0.0.0-20181017120253-0766667cb4d1))) + (home-page "https://github.com/smartystreets/goconvey") + (synopsis "GoConvey is awesome Go testing") + (description + "This executable provides an HTTP server that watches for file system changes +to .go files within the working directory (and all nested go packages). +Navigating to the configured host and port in a web browser will display the +latest results of running `go test` in each go package. +") + (license license:expat))) + +(define-public go-github-com-kr-fs-0.1.0 + (package + (name "go-github-com-kr-fs") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/fs") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "11zg176x9hr9q7fsk95r6q0wf214gg4czy02slax4x56n79g6a7q")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/fs")) + (home-page "https://github.com/kr/fs") + (synopsis #f) + (description "Package fs provides filesystem-related functions. +") + (license license:bsd-3))) + +(define-public go-github-com-pkg-sftp-1.10.1 + (package + (name "go-github-com-pkg-sftp") + (version "1.10.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pkg/sftp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0iw6lijdljwh5xw5hsy0b578cr52h6vvm7hbnzlrvciwhh4sfhhp")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pkg/sftp")) + (propagated-inputs + `(("go-golang-org-x-crypto-0.0.0-20190820162420-60c769a6c586" + ,go-golang-org-x-crypto-0.0.0-20190820162420-60c769a6c586) + ("go-github-com-stretchr-testify-1.4.0" + ,go-github-com-stretchr-testify-1.4.0) + ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) + ("go-github-com-kr-fs-0.1.0" ,go-github-com-kr-fs-0.1.0))) + (home-page "https://github.com/pkg/sftp") + (synopsis "sftp") + (description + "Package sftp implements the SSH File Transfer Protocol as described in +@url{https://tools.ietf.org/html/draft-ietf-secsh-filexfer-02,https://tools.ietf.org/html/draft-ietf-secsh-filexfer-02} +") + (license license:bsd-2))) + +(define-public go-golang-org-x-crypto-0.0.0-20190820162420-60c769a6c586 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20190820162420-60c769a6c586") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1wy2pg38dz29vf1h48yfqf8m3jqvwnbdw8vkk3ldlj5d8fbbbmv8")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" + ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) + ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" + ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-github-com-spf13-afero-1.6.0 + (package + (name "go-github-com-spf13-afero") + (version "1.6.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/spf13/afero") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0yi8p0yxiidpcg4cagxg2iyqcaapsng89rak4qyxmgails2fqg37")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/spf13/afero")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) + ("go-golang-org-x-crypto-0.0.0-20190820162420-60c769a6c586" + ,go-golang-org-x-crypto-0.0.0-20190820162420-60c769a6c586) + ("go-github-com-pkg-sftp-1.10.1" ,go-github-com-pkg-sftp-1.10.1))) + (home-page "https://github.com/spf13/afero") + (synopsis "Overview") + (description + "This package provides a FileSystem Abstraction System for Go") + (license license:asl2.0))) + +(define-public go-github-com-spf13-cast-1.3.1 + (package + (name "go-github-com-spf13-cast") + (version "1.3.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/spf13/cast") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0lb84788glr0qzrq2ifi36rgvp96qrgywvxrr3ggq5hrbr38hgn1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/spf13/cast")) + (propagated-inputs + `(("go-github-com-stretchr-testify-1.2.2" + ,go-github-com-stretchr-testify-1.2.2) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/spf13/cast") + (synopsis "cast") + (description "Package cast provides easy and safe casting in Go. +") + (license license:expat))) + +(define-public go-github-com-spf13-jwalterweatherman-1.1.0 + (package + (name "go-github-com-spf13-jwalterweatherman") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/spf13/jwalterweatherman") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ywmkwci5zyd88ijym6f30fj5c0k2yayxarkmnazf5ybljv50q7b")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/spf13/jwalterweatherman")) + (propagated-inputs + `(("go-github-com-stretchr-testify-1.2.2" + ,go-github-com-stretchr-testify-1.2.2) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/spf13/jwalterweatherman") + (synopsis "jWalterWeatherman") + (description + "Seamless printing to the terminal (stdout) and logging to a io.Writer +(file) thatâ\x80\x99s as easy to use as fmt.Println.") + (license license:expat))) + +(define-public go-github-com-subosito-gotenv-1.2.0 + (package + (name "go-github-com-subosito-gotenv") + (version "1.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/subosito/gotenv") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0mav91j7r4arjkpq5zcf9j74f6pww8ic53x43wy7kg3ibw31yjs5")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/subosito/gotenv")) + (home-page "https://github.com/subosito/gotenv") + (synopsis "gotenv") + (description + "Package gotenv provides functionality to dynamically load the environment variables +") + (license license:expat))) + +(define-public go-gopkg-in-ini-v1-1.62.0 + (package + (name "go-gopkg-in-ini-v1") + (version "1.62.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/ini.v1") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1dm9ydqyflasp5li22kb0w73s6kp2swii8naqfhnz64v171gmm5v")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/ini.v1" #:unpack-path "gopkg.in/ini.v1")) + (home-page "https://gopkg.in/ini.v1") + (synopsis "INI") + (description + "Package ini provides INI file read and write functionality in Go. +") + (license license:asl2.0))) + +(define-public go-github-com-spf13-viper-1.8.1 + (package + (name "go-github-com-spf13-viper") + (version "1.8.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/spf13/viper") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0jcsvd9l05pv10rma6zicp44q2mlvxj0qlhnf4zcg2pymb5i0hq6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/spf13/viper")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) + ("go-gopkg-in-ini-v1-1.62.0" ,go-gopkg-in-ini-v1-1.62.0) + ("go-github-com-subosito-gotenv-1.2.0" + ,go-github-com-subosito-gotenv-1.2.0) + ("go-github-com-stretchr-testify-1.7.0" + ,go-github-com-stretchr-testify-1.7.0) + ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) + ("go-github-com-spf13-jwalterweatherman-1.1.0" + ,go-github-com-spf13-jwalterweatherman-1.1.0) + ("go-github-com-spf13-cast-1.3.1" ,go-github-com-spf13-cast-1.3.1) + ("go-github-com-spf13-afero-1.6.0" ,go-github-com-spf13-afero-1.6.0) + ("go-github-com-smartystreets-goconvey-1.6.4" + ,go-github-com-smartystreets-goconvey-1.6.4) + ("go-github-com-pelletier-go-toml-1.9.3" + ,go-github-com-pelletier-go-toml-1.9.3) + ("go-github-com-mitchellh-mapstructure-1.4.1" + ,go-github-com-mitchellh-mapstructure-1.4.1) + ("go-github-com-magiconair-properties-1.8.5" + ,go-github-com-magiconair-properties-1.8.5) + ("go-github-com-hashicorp-hcl-1.0.0" + ,go-github-com-hashicorp-hcl-1.0.0) + ("go-github-com-fsnotify-fsnotify-1.4.9" + ,go-github-com-fsnotify-fsnotify-1.4.9) + ("go-github-com-bketelsen-crypt-0.0.4" + ,go-github-com-bketelsen-crypt-0.0.4))) + (home-page "https://github.com/spf13/viper") + (synopsis "Install") + (description "Many Go projects are built using Viper including:") + (license license:expat))) + +(define-public go-github-com-spf13-cobra-1.2.1 + (package + (name "go-github-com-spf13-cobra") + (version "1.2.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/spf13/cobra") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "091kz3xnlsgpqb90fc5nhjr4yfr8b8sjnyl0zd4wm1fgzkpw09jh")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/spf13/cobra")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) + ("go-github-com-spf13-viper-1.8.1" ,go-github-com-spf13-viper-1.8.1) + ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) + ("go-github-com-inconshreveable-mousetrap-1.0.0" + ,go-github-com-inconshreveable-mousetrap-1.0.0) + ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" + ,go-github-com-cpuguy83-go-md2man-v2-2.0.0))) + (home-page "https://github.com/spf13/cobra") + (synopsis "Table of Contents") + (description + "Package cobra is a commander providing a simple interface to create powerful modern CLI interfaces. +In addition to providing an interface, Cobra simultaneously provides a controller to organize your application code. +") + (license license:asl2.0))) + +(define-public go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c + (package + (name "go-gopkg-in-yaml-v3") + (version "3.0.0-20200313102051-9f266ea9e77c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v3") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1bbai3lzb50m0x2vwsdbagrbhvfylj9k1m32hgbqwldqx4p9ay35")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v3") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language. +") + (license #f))) + +(define-public go-github-com-stretchr-testify-1.7.0 + (package + (name "go-github-com-stretchr-testify") + (version "1.7.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ixgjsvafr3513pz3r6pmgk074s2dxkll0dadvl25gkf30rkmh10")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (propagated-inputs + `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" + ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) + ("go-github-com-stretchr-objx-0.1.0" + ,go-github-com-stretchr-objx-0.1.0) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.0" + ,go-github-com-davecgh-go-spew-1.1.0))) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +") + (license license:expat))) + +(define-public go-golang-org-x-crypto-0.0.0-20211117183948-ae814b36b871 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20211117183948-ae814b36b871") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "01d5llpsijgbgm8px6mhaknqwh8g707zc5i5744gcndr8w0649sk")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.6" ,go-golang-org-x-text-0.3.6) + ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" + ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) + ("go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1" + ,go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1) + ("go-golang-org-x-net-0.0.0-20211112202133-69e39bad7dc2" + ,go-golang-org-x-net-0.0.0-20211112202133-69e39bad7dc2))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-github-com-shopify-logrus-bugsnag-0.0.0-20171204204709-577dee27f20d + (package + (name "go-github-com-shopify-logrus-bugsnag") + (version "0.0.0-20171204204709-577dee27f20d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/Shopify/logrus-bugsnag") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1l3yahk77vzgmjs7baf8g14sv33jj04rw73iind4wayg40lfgrp8")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/Shopify/logrus-bugsnag")) + (home-page "https://github.com/Shopify/logrus-bugsnag") + (synopsis "logrus-bugsnag") + (description + "logrus-bugsnag is a hook that allows @url{https://github.com/sirupsen/logrus,Logrus} to interface with @url{https://bugsnag.com,Bugsnag}.") + (license license:expat))) + +(define-public go-github-com-bshuster-repo-logrus-logstash-hook-1.0.0 + (package + (name "go-github-com-bshuster-repo-logrus-logstash-hook") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/bshuster-repo/logrus-logstash-hook") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1akr33xzj4jr65mc9kvfjh1wlhw8fbr3hbh4rr816kxfns3c0gwd")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/bshuster-repo/logrus-logstash-hook")) + (home-page "https://github.com/bshuster-repo/logrus-logstash-hook") + (synopsis "Logstash hook for logrus") + (description + "Use this hook to send the logs to @url{https://www.elastic.co/products/logstash,Logstash}.") + (license license:expat))) + +(define-public go-github-com-bugsnag-bugsnag-go-0.0.0-20141110184014-b1d153021fcd + (package + (name "go-github-com-bugsnag-bugsnag-go") + (version "0.0.0-20141110184014-b1d153021fcd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/bugsnag/bugsnag-go") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "057vwigfzq42p9vkk9yhy8vkvgdmh6653rc988jmvmrkwbgvb352")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/bugsnag/bugsnag-go")) + (home-page "https://github.com/bugsnag/bugsnag-go") + (synopsis "Bugsnag error reporter for Go") + (description + "Package bugsnag captures errors in real-time and reports them to Bugsnag (@url{http://bugsnag.com,http://bugsnag.com}). +") + (license license:expat))) + +(define-public go-github-com-bugsnag-osext-0.0.0-20130617224835-0dd3f918b21b + (package + (name "go-github-com-bugsnag-osext") + (version "0.0.0-20130617224835-0dd3f918b21b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/bugsnag/osext") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "02pczqml6p1mnfdrygm3rs02g0r65qx8v1bi3x24dx8wv9dr5y23")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/bugsnag/osext")) + (home-page "https://github.com/bugsnag/osext") + (synopsis #f) + (description "Extensions to the standard \"os\" package. +") + (license license:zlib))) + +(define-public go-github-com-bugsnag-panicwrap-0.0.0-20151223152923-e2c28503fcd0 + (package + (name "go-github-com-bugsnag-panicwrap") + (version "0.0.0-20151223152923-e2c28503fcd0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/bugsnag/panicwrap") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "02z1q18s83xhfsz3n8bzv071a6n0irlad11yxppaf7015a7dl446")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/bugsnag/panicwrap")) + (home-page "https://github.com/bugsnag/panicwrap") + (synopsis "panicwrap") + (description + "The panicwrap package provides functions for capturing and handling +panics in your application. It does this by re-executing the running +application and monitoring stderr for any panics. At the same time, +stdout/stderr/etc. are set to the same values so that data is shuttled +through properly, making the existence of panicwrap mostly transparent. +") + (license license:expat))) + +(define-public go-github-com-docker-distribution-2.7.1+incompatible + (package + (name "go-github-com-docker-distribution") + (version "2.7.1+incompatible") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/distribution/distribution") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1nx8b5a68rn81alp8wkkw6qd5v32mgf0fk23mxm60zdf63qk1nzw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/docker/distribution")) + (home-page "https://github.com/docker/distribution") + (synopsis "Distribution") + (description + "Package distribution will define the interfaces for the components of +docker distribution. The goal is to allow users to reliably package, ship +and store content related to docker images. +") + (license license:asl2.0))) + +(define-public go-github-com-danieljoos-wincred-1.1.0 + (package + (name "go-github-com-danieljoos-wincred") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/danieljoos/wincred") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0fllr8lwk70qb8gfndkgshfq5c7p8zdpp47bcd3816giv5w78vxi")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/danieljoos/wincred")) + (propagated-inputs + `(("go-github-com-stretchr-testify-1.5.1" + ,go-github-com-stretchr-testify-1.5.1))) + (home-page "https://github.com/danieljoos/wincred") + (synopsis "wincred") + (description + "Package wincred provides primitives for accessing the Windows Credentials Management API. +This includes functions for retrieval, listing and storage of credentials as well as Go structures for convenient access to the credential data. +") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20210119212857-b64e53b001e4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "16in6bazi0frdkzhqxyvmw7qcvzjavq21dnz9bmrqq8d4dpd2j44")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-docker-docker-credential-helpers-0.6.4 + (package + (name "go-github-com-docker-docker-credential-helpers") + (version "0.6.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/docker/docker-credential-helpers") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0xsz8zgil2xrv835p3i6qbk7s81jz62sgasfvmmxi6lrkirahmh6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/docker/docker-credential-helpers")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4" + ,go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4) + ("go-github-com-danieljoos-wincred-1.1.0" + ,go-github-com-danieljoos-wincred-1.1.0))) + (home-page "https://github.com/docker/docker-credential-helpers") + (synopsis "Introduction") + (description + "docker-credential-helpers is a suite of programs to use native stores to keep Docker credentials safe.") + (license license:expat))) + +(define-public go-github-com-docker-go-connections-0.4.0 + (package + (name "go-github-com-docker-go-connections") + (version "0.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/docker/go-connections") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0mv6f6b5nljc17dmwmc28hc0y11pqglz7x0d2mjrwdmfxf64hwqq")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/docker/go-connections")) + (home-page "https://github.com/docker/go-connections") + (synopsis "Introduction") + (description + "Package connections provides libraries to work with network connections. +This library is divided in several components for specific usage. +") + (license license:asl2.0))) + +(define-public go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c + (package + (name "go-github-com-docker-go-events") + (version "0.0.0-20190806004212-e31b211e4f1c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/docker/go-events") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "09gm4z43g23isbklabnsnfb87bwf8kjdgvvyi3vfjq2bqdjdg7cl")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/docker/go-events")) + (home-page "https://github.com/docker/go-events") + (synopsis "Docker Events Package") + (description + "The Docker @code{events} package implements a composable event distribution package +for Go.") + (license license:asl2.0))) + +(define-public go-github-com-json-iterator-go-1.1.7 + (package + (name "go-github-com-json-iterator-go") + (version "1.1.7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/json-iterator/go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0n79p4s67zl5zprxv7diayw3vavnmmfqkmd6snz0i9bxp825dsyz")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/json-iterator/go")) + (propagated-inputs + `(("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0) + ("go-github-com-modern-go-reflect2-0.0.0-20180701023420-4b7aa43c6742" + ,go-github-com-modern-go-reflect2-0.0.0-20180701023420-4b7aa43c6742) + ("go-github-com-modern-go-concurrent-0.0.0-20180228061459-e0a39a4cb421" + ,go-github-com-modern-go-concurrent-0.0.0-20180228061459-e0a39a4cb421) + ("go-github-com-google-gofuzz-1.0.0" + ,go-github-com-google-gofuzz-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/json-iterator/go") + (synopsis "Benchmark") + (description + "Package jsoniter implements encoding and decoding of JSON as defined in +@url{https://rfc-editor.org/rfc/rfc4627.html,RFC 4627} and provides interfaces with identical syntax of standard lib encoding/json. +Converting from encoding/json to jsoniter is no more than replacing the package with jsoniter +and variable type declarations (if any). +jsoniter interfaces gives 100% compatibility with code using standard lib. +") + (license license:expat))) + +(define-public go-github-com-prometheus-common-0.6.0 + (package + (name "go-github-com-prometheus-common") + (version "0.6.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/common") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1q16br348117ffycxdwsldb0i39p34miclfa8z93k6vjwnrqbh2l")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/common")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1) + ("go-gopkg-in-alecthomas-kingpin-v2-2.2.6" + ,go-gopkg-in-alecthomas-kingpin-v2-2.2.6) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980" + ,go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980) + ("go-github-com-sirupsen-logrus-1.2.0" + ,go-github-com-sirupsen-logrus-1.2.0) + ("go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90" + ,go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90) + ("go-github-com-prometheus-client-golang-1.0.0" + ,go-github-com-prometheus-client-golang-1.0.0) + ("go-github-com-pkg-errors-0.8.0" ,go-github-com-pkg-errors-0.8.0) + ("go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223" + ,go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223) + ("go-github-com-matttproud-golang-protobuf-extensions-1.0.1" + ,go-github-com-matttproud-golang-protobuf-extensions-1.0.1) + ("go-github-com-julienschmidt-httprouter-1.2.0" + ,go-github-com-julienschmidt-httprouter-1.2.0) + ("go-github-com-golang-protobuf-1.3.1" + ,go-github-com-golang-protobuf-1.3.1) + ("go-github-com-go-logfmt-logfmt-0.4.0" + ,go-github-com-go-logfmt-logfmt-0.4.0) + ("go-github-com-go-kit-kit-0.8.0" ,go-github-com-go-kit-kit-0.8.0))) + (home-page "https://github.com/prometheus/common") + (synopsis "Common") + (description + "This repository contains Go libraries that are shared across Prometheus +components and libraries. They are considered internal to Prometheus, without +any stability guarantees for external usage.") + (license license:asl2.0))) + +(define-public go-github-com-prometheus-procfs-0.0.3 + (package + (name "go-github-com-prometheus-procfs") + (version "0.0.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/procfs") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18c4m795fwng8f8qa395f3crvamlbk5y5afk8b5rzyisnmjq774y")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/procfs")) + (propagated-inputs + `(("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" + ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) + ("go-github-com-google-go-cmp-0.3.0" + ,go-github-com-google-go-cmp-0.3.0))) + (home-page "https://github.com/prometheus/procfs") + (synopsis "procfs") + (description + "Package procfs provides functions to retrieve system, kernel and process +metrics from the pseudo-filesystem proc. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-sys-0.0.0-20190801041406-cbf593c0f2f3 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190801041406-cbf593c0f2f3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1zmcmckinhclcwlvznjqvs31aww8jnf6pjm9is0nq8lqlvipg5ls")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-prometheus-client-golang-1.1.0 + (package + (name "go-github-com-prometheus-client-golang") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/client_golang") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1r0irxkmfnj6ininb06w6ybknini5lz02idawrbkk2i5lq1qcvvf")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/client_golang")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190801041406-cbf593c0f2f3" + ,go-golang-org-x-sys-0.0.0-20190801041406-cbf593c0f2f3) + ("go-github-com-prometheus-procfs-0.0.3" + ,go-github-com-prometheus-procfs-0.0.3) + ("go-github-com-prometheus-common-0.6.0" + ,go-github-com-prometheus-common-0.6.0) + ("go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90" + ,go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90) + ("go-github-com-json-iterator-go-1.1.7" + ,go-github-com-json-iterator-go-1.1.7) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2) + ("go-github-com-beorn7-perks-1.0.1" + ,go-github-com-beorn7-perks-1.0.1))) + (home-page "https://github.com/prometheus/client_golang") + (synopsis "Prometheus Go client library") + (description + "This is the @url{http://golang.org,Go} client library for +@url{http://prometheus.io,Prometheus}. It has two separate parts, one for +instrumenting application code, and one for creating clients that talk to the +Prometheus HTTP API.") + (license license:asl2.0))) + +(define-public go-github-com-docker-go-metrics-0.0.1 + (package + (name "go-github-com-docker-go-metrics") + (version "0.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/docker/go-metrics") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1b6f1889chmwlsgrqxylnks2jic16j2dqhsdd1dvaklk48ky95ga")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/docker/go-metrics")) + (propagated-inputs + `(("go-github-com-prometheus-client-golang-1.1.0" + ,go-github-com-prometheus-client-golang-1.1.0))) + (home-page "https://github.com/docker/go-metrics") + (synopsis "go-metrics") + (description + "This package is small wrapper around the prometheus go client to help enforce convention and best practices for metrics collection in Docker projects.") + (license (list license:asl2.0 license:cc-by-sa4.0)))) + +(define-public go-github-com-docker-go-units-0.4.0 + (package + (name "go-github-com-docker-go-units") + (version "0.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/docker/go-units") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0k8gja8ql4pqg5rzmqvka42vjfs6rzablak87whcnqba6qxpimvz")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/docker/go-units")) + (home-page "https://github.com/docker/go-units") + (synopsis "Introduction") + (description + "Package units provides helper function to parse and print size and time units +in human-readable format. +") + (license license:asl2.0))) + +(define-public go-github-com-docker-libtrust-0.0.0-20150114040149-fa567046d9b1 + (package + (name "go-github-com-docker-libtrust") + (version "0.0.0-20150114040149-fa567046d9b1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/docker/libtrust") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1121c7fxarzyr3fvxyzfw8qs4hb8k92dsix26s5vxncgszl5svf2")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/docker/libtrust")) + (home-page "https://github.com/docker/libtrust") + (synopsis "libtrust") + (description + "Package libtrust provides an interface for managing authentication and +authorization using public key cryptography. Authentication is handled +using the identity attached to the public key and verified through TLS +x509 certificates, a key challenge, or signature. Authorization and +access control is managed through a trust graph distributed between +both remote trust servers and locally cached and managed data. +") + (license license:asl2.0))) + +(define-public go-github-com-yuin-goldmark-1.1.27 + (package + (name "go-github-com-yuin-goldmark") + (version "1.1.27") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/yuin/goldmark") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1872cqnii0kwiqcy81yin0idvjy5mdy4zlzz0csb319lcjs3b923")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/yuin/goldmark")) + (home-page "https://github.com/yuin/goldmark") + (synopsis "goldmark") + (description + "Package goldmark implements functions to convert markdown text to a desired format. +") + (license license:expat))) + +(define-public go-golang-org-x-mod-0.2.0 + (package + (name "go-golang-org-x-mod") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/mod") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fp6885dclq77mh73v7i54v2b9llpv4di193zc8vmsbbkkc483cl")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/mod")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" + ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) + ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" + ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) + ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" + ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) + (home-page "https://golang.org/x/mod") + (synopsis "mod") + (description + "This repository holds packages for writing tools +that work directly with Go module mechanics. +That is, it is for direct manipulation of Go modules themselves.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b + (package + (name "go-golang-org-x-net") + (version "0.0.0-20200226121028-0de0cce0169b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1db7s5kbzyh2zd5lpv05n7hp8wbwdvgk0wpiwrlnig94mkr0y5aq")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20200619180055-7c47624df98f + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20200619180055-7c47624df98f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fhzwd32j7w9g3algq0zj8g7ivx3f0mn9nx9mj046wdscryn49mk")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) + ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" + ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) + ("go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b" + ,go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b) + ("go-golang-org-x-mod-0.2.0" ,go-golang-org-x-mod-0.2.0) + ("go-github-com-yuin-goldmark-1.1.27" + ,go-github-com-yuin-goldmark-1.1.27))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-github-com-kisielk-errcheck-1.5.0 + (package + (name "go-github-com-kisielk-errcheck") + (version "1.5.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kisielk/errcheck") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ci3jz2px74pfmr42jv7dpx7fdzx08vai4czp9fkiyb0gcaiqsk6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kisielk/errcheck")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20200619180055-7c47624df98f" + ,go-golang-org-x-tools-0.0.0-20200619180055-7c47624df98f))) + (home-page "https://github.com/kisielk/errcheck") + (synopsis "errcheck") + (description + "errcheck is a program for checking for unchecked errors in go programs.") + (license license:expat))) + +(define-public go-github-com-kisielk-gotool-1.0.0 + (package + (name "go-github-com-kisielk-gotool") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kisielk/gotool") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "14af2pa0ssyp8bp2mvdw184s5wcysk6akil3wzxmr05wwy951iwn")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kisielk/gotool")) + (home-page "https://github.com/kisielk/gotool") + (synopsis "gotool") + (description + "Package gotool contains utility functions used to implement the standard +\"cmd/go\" tool, provided as a convenience to developers who want to write +tools with similar semantics. +") + (license license:expat))) + +(define-public go-github-com-yuin-goldmark-1.2.1 + (package + (name "go-github-com-yuin-goldmark") + (version "1.2.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/yuin/goldmark") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12rsnsf65drcp0jfw2jl9w589vsn3pxdk1zh3v9q908iigngrcmy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/yuin/goldmark")) + (home-page "https://github.com/yuin/goldmark") + (synopsis "goldmark") + (description + "Package goldmark implements functions to convert markdown text to a desired format. +") + (license license:expat))) + +(define-public go-golang-org-x-mod-0.3.0 + (package + (name "go-golang-org-x-mod") + (version "0.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/mod") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ldgbx2zpprbsfn6p8pfgs4nn87gwbfcv2z0fa7n8alwsq2yw78q")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/mod")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" + ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) + ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" + ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) + ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" + ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) + (home-page "https://golang.org/x/mod") + (synopsis "mod") + (description + "This repository holds packages for writing tools +that work directly with Go module mechanics. +That is, it is for direct manipulation of Go modules themselves.") + (license license:bsd-3))) + +(define-public go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20200622213623-75b288015ac9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18vlncvvs11ds3zaaziqjlg5s2vcwi3496nn6qv7p0dp94j5pwa2")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" + ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) + ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" + ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200930185726-fdedc70b468f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1njlfhjbvi4lxvjbq8zswrb0y0q4jd2p6x51h1q6vmyzi9af6869")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20201021035429-f5854403a974 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20201021035429-f5854403a974") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1vw63zpmhi337f3gc432x3wkib4j2ia8dy7if31wxwb9dgqvy222")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) + ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" + ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) + ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" + ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9 + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20201020160332-67f06af15bc9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "093p4panc808ak5bamzz7m9nb0xxib7778jpnr6f0xkz1n4fzyw5")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the +ones provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20210106214847-113979e3529a + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20210106214847-113979e3529a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0pq1a7hkamqdwsajyfrb27s56cvxz5838krsgyqz346s2djwdrzl")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" + ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) + ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" + ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) + ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" + ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) + ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) + ("go-github-com-yuin-goldmark-1.2.1" + ,go-github-com-yuin-goldmark-1.2.1))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-github-com-gogo-protobuf-1.3.2 + (package + (name "go-github-com-gogo-protobuf") + (version "1.3.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gogo/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0dfv1bhx5zhb5bsj5sj757nkacf2swp1ajpcyj9d0b37n602m18a")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/gogo/protobuf")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20210106214847-113979e3529a" + ,go-golang-org-x-tools-0.0.0-20210106214847-113979e3529a) + ("go-github-com-kisielk-gotool-1.0.0" + ,go-github-com-kisielk-gotool-1.0.0) + ("go-github-com-kisielk-errcheck-1.5.0" + ,go-github-com-kisielk-errcheck-1.5.0))) + (home-page "https://github.com/gogo/protobuf") + (synopsis "Protocol Buffers for Go with Gadgets") + (description + "gogoprotobuf is a fork of @url{https://github.com/golang/protobuf,golang/protobuf} with extra code generation features.") + (license license:bsd-3))) + +(define-public go-github-com-gomodule-redigo-1.8.2 + (package + (name "go-github-com-gomodule-redigo") + (version "1.8.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gomodule/redigo") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wp37175n4lgkq234px9vx0c7mdx8sx3d45zky73az8zbabirwga")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/gomodule/redigo")) + (propagated-inputs + `(("go-github-com-stretchr-testify-1.5.1" + ,go-github-com-stretchr-testify-1.5.1))) + (home-page "https://github.com/gomodule/redigo") + (synopsis "Redigo") + (description + "Redigo is a @url{http://golang.org/,Go} client for the @url{http://redis.io/,Redis} database.") + (license license:asl2.0))) + +(define-public go-github-com-felixge-httpsnoop-1.0.1 + (package + (name "go-github-com-felixge-httpsnoop") + (version "1.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/felixge/httpsnoop") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ncd8lar5zxiwjhsp315s4hsl4bhnm271h49jhyxc66r5yffgmac")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/felixge/httpsnoop")) + (home-page "https://github.com/felixge/httpsnoop") + (synopsis "httpsnoop") + (description + "Package httpsnoop provides an easy way to capture http related metrics (i.e. +response time, bytes written, and http status code) from your application's +http.Handlers. +") + (license license:expat))) + +(define-public go-github-com-gorilla-handlers-1.5.1 + (package + (name "go-github-com-gorilla-handlers") + (version "1.5.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gorilla/handlers") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "15gycdz9lkjnsvvichsbdf25vf6pi1sfn41khhz53iqf300l0w0s")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/gorilla/handlers")) + (propagated-inputs + `(("go-github-com-felixge-httpsnoop-1.0.1" + ,go-github-com-felixge-httpsnoop-1.0.1))) + (home-page "https://github.com/gorilla/handlers") + (synopsis "gorilla/handlers") + (description + "Package handlers is a collection of handlers (aka \"HTTP middleware\") for use +with Go's net/http package (or any framework supporting http.Handler). +") + (license license:bsd-2))) + +(define-public go-github-com-gorilla-mux-1.8.0 + (package + (name "go-github-com-gorilla-mux") + (version "1.8.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gorilla/mux") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18f0q9qxgq1yh4ji07mqhiydfcwvi56z9d775v7dc7yckj33kpdk")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/gorilla/mux")) + (home-page "https://github.com/gorilla/mux") + (synopsis "gorilla/mux") + (description "Package mux implements a request router and dispatcher. +") + (license license:bsd-3))) + +(define-public go-github-com-inconshreveable-mousetrap-1.0.0 + (package + (name "go-github-com-inconshreveable-mousetrap") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/inconshreveable/mousetrap") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1mn0kg48xkd74brf48qf5hzp0bc6g8cf5a77w895rl3qnlpfw152")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/inconshreveable/mousetrap")) + (home-page "https://github.com/inconshreveable/mousetrap") + (synopsis "mousetrap") + (description "mousetrap is a tiny library that answers a single question.") + (license license:asl2.0))) + +(define-public go-github-com-klauspost-compress-1.11.13 + (package + (name "go-github-com-klauspost-compress") + (version "1.11.13") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/klauspost/compress") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19l2rbh6vg0ly4qp2gn5lf39ijggf7asav7lxziikkhjqqb4223j")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/klauspost/compress")) + (home-page "https://github.com/klauspost/compress") + (synopsis "compress") + (description "This package provides various compression algorithms.") + (license #f))) + +(define-public go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369 + (package + (name "go-github-com-matttproud-golang-protobuf-extensions") + (version "1.0.2-0.20181231171920-c182affec369") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/matttproud/golang_protobuf_extensions") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1xqsf9vpcrd4hp95rl6kgmjvkv1df4aicfw4l5vfcxcwxknfx2xs")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/matttproud/golang_protobuf_extensions")) + (propagated-inputs + `(("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" + ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0))) + (home-page "https://github.com/matttproud/golang_protobuf_extensions") + (synopsis "Overview") + (description + "This repository provides various Protocol Buffer extensions for the Go +language (golang), namely support for record length-delimited message +streaming.") + (license license:asl2.0))) + +(define-public go-github-com-moby-locker-1.0.1 + (package + (name "go-github-com-moby-locker") + (version "1.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/moby/locker") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "07rc2c6h35f9mcy81jp382a030f6xmcifi9n5jnlayybfwxmpjir")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/moby/locker")) + (home-page "https://github.com/moby/locker") + (synopsis "Locker") + (description + "Package locker provides a mechanism for creating finer-grained locking to help +free up more global locks to handle other tasks. +") + (license license:asl2.0))) + +(define-public go-github-com-azure-go-ansiterm-0.0.0-20170929234023-d6e3b3328b78 + (package + (name "go-github-com-azure-go-ansiterm") + (version "0.0.0-20170929234023-d6e3b3328b78") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/Azure/go-ansiterm") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "010khrkhkf9cxlvvb6ncqv4c1qcdmpbz9jn38g4fxf4xsma8xx1q")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/Azure/go-ansiterm")) + (home-page "https://github.com/Azure/go-ansiterm") + (synopsis "go-ansiterm") + (description + "This is a cross platform Ansi Terminal Emulation library. It reads a stream of Ansi characters and produces the appropriate function calls. The results of the function calls are platform dependent.") + (license license:expat))) + +(define-public go-github-com-pkg-errors-0.9.1 + (package + (name "go-github-com-pkg-errors") + (version "0.9.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pkg/errors") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1761pybhc2kqr6v5fm8faj08x9bql8427yqg6vnfv6nhrasx1mwq")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pkg/errors")) + (home-page "https://github.com/pkg/errors") + (synopsis "errors") + (description "Package errors provides simple error handling primitives. +") + (license license:bsd-2))) + +(define-public go-golang-org-x-sys-0.0.0-20200302150141-5c8b2ff67527 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200302150141-5c8b2ff67527") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0r5s7f4w7crrbcf5ydpr2xzsq0svjm332vsds41yp58kwi2lvh2v")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-gotest-tools-2.2.0+incompatible + (package + (name "go-gotest-tools") + (version "2.2.0+incompatible") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gotestyourself/gotest.tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0yif3gdyckmf8i54jq0xn00kflla5rhib9sarw66ngnbl7bn9kyl")))) + (build-system go-build-system) + (arguments '(#:import-path "gotest.tools")) + (home-page "https://gotest.tools") + (synopsis "gotest.tools") + (description + "Package gotesttools is a collection of packages to augment `testing` and +support common patterns. +") + (license license:asl2.0))) + +(define-public go-github-com-spf13-pflag-1.0.3 + (package + (name "go-github-com-spf13-pflag") + (version "1.0.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/spf13/pflag") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1cj3cjm7d3zk0mf1xdybh0jywkbbw7a6yr3y22x9sis31scprswd")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/spf13/pflag")) + (home-page "https://github.com/spf13/pflag") + (synopsis "Description") + (description + "Package pflag is a drop-in replacement for Go's flag package, implementing +POSIX/GNU-style --flags. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20190624222133-a101b041ded4 + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20190624222133-a101b041ded4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1pm50dybm5wixjjspvfpafjmiy81b1zp08h13gxc5cylrfgncrfl")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" + ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-gotest-tools-v3-3.0.2 + (package + (name "go-gotest-tools-v3") + (version "3.0.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gotestyourself/gotest.tools") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0cap2aq2wphnbkkzkck5zdjxb64q3jqxfwpkgqys7279rbr8cvjm")))) + (build-system go-build-system) + (arguments + '(#:import-path "gotest.tools/v3" #:unpack-path "gotest.tools/v3")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20190624222133-a101b041ded4" + ,go-golang-org-x-tools-0.0.0-20190624222133-a101b041ded4) + ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) + ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) + ("go-github-com-google-go-cmp-0.3.0" + ,go-github-com-google-go-cmp-0.3.0))) + (home-page "https://gotest.tools/v3") + (synopsis "gotest.tools") + (description + "Package gotesttools is a collection of packages to augment `testing` and +support common patterns. +") + (license license:asl2.0))) + +(define-public go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd + (package + (name "go-github-com-moby-term") + (version "0.0.0-20200312100748-672ec06f55cd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/moby/term") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0xspasm3d101hmjsayrbx6az4r4ybbg5gkj13qybhpq674a6kkwn")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/moby/term")) + (propagated-inputs + `(("go-gotest-tools-v3-3.0.2" ,go-gotest-tools-v3-3.0.2) + ("go-gotest-tools-2.2.0+incompatible" + ,go-gotest-tools-2.2.0+incompatible) + ("go-golang-org-x-sys-0.0.0-20200302150141-5c8b2ff67527" + ,go-golang-org-x-sys-0.0.0-20200302150141-5c8b2ff67527) + ("go-github-com-sirupsen-logrus-1.4.2" + ,go-github-com-sirupsen-logrus-1.4.2) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-google-go-cmp-0.3.1" + ,go-github-com-google-go-cmp-0.3.1) + ("go-github-com-azure-go-ansiterm-0.0.0-20170929234023-d6e3b3328b78" + ,go-github-com-azure-go-ansiterm-0.0.0-20170929234023-d6e3b3328b78))) + (home-page "https://github.com/moby/term") + (synopsis "term - utilities for dealing with terminals") + (description + "Package term provides structures and helper functions to work with +terminal (state, sizes). +") + (license license:asl2.0))) + +(define-public go-github-com-morikuni-aec-1.0.0 + (package + (name "go-github-com-morikuni-aec") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/morikuni/aec") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1qaqh0lk9wrqgff0yrxnbznvmwyhdxy3g9b2hjpazp5bw4nj0dp7")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/morikuni/aec")) + (home-page "https://github.com/morikuni/aec") + (synopsis "aec") + (description "Go wrapper for ANSI escape code.") + (license license:expat))) + +(define-public go-github-com-beorn7-perks-1.0.1 + (package + (name "go-github-com-beorn7-perks") + (version "1.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/beorn7/perks") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "17n4yygjxa6p499dj3yaqzfww2g7528165cl13haj97hlx94dgl7")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/beorn7/perks")) + (home-page "https://github.com/beorn7/perks") + (synopsis "Perks for Go (golang.org)") + (description + "Perks contains the Go package quantile that computes approximate quantiles over +an unbounded data stream within low memory and CPU bounds.") + (license license:expat))) + +(define-public go-github-com-cespare-xxhash-v2-2.1.1 + (package + (name "go-github-com-cespare-xxhash-v2") + (version "2.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cespare/xxhash") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0rl5rs8546zj1vzggv38w93wx0b5dvav7yy5hzxa8kw7iikv1cgr")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/cespare/xxhash/v2")) + (home-page "https://github.com/cespare/xxhash") + (synopsis "xxhash") + (description + "Package xxhash implements the 64-bit variant of xxHash (XXH64) as described +at @url{http://cyan4973.github.io/xxHash/,http://cyan4973.github.io/xxHash/}. +") + (license license:expat))) + +(define-public go-github-com-google-gofuzz-1.0.0 + (package + (name "go-github-com-google-gofuzz") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/gofuzz") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0qz439qvccm91w0mmjz4fqgx48clxdwagkvvx89cr43q1d4iry36")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/gofuzz")) + (home-page "https://github.com/google/gofuzz") + (synopsis "gofuzz") + (description + "Package fuzz is a library for populating go objects with random values. +") + (license license:asl2.0))) + +(define-public go-github-com-modern-go-concurrent-0.0.0-20180228061459-e0a39a4cb421 + (package + (name "go-github-com-modern-go-concurrent") + (version "0.0.0-20180228061459-e0a39a4cb421") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/modern-go/concurrent") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hamz1zimsxm9vl0ih19v7sbibglwq2j6473w4j9k7ib80fmxdzr")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/modern-go/concurrent")) + (home-page "https://github.com/modern-go/concurrent") + (synopsis "concurrent") + (description + "because sync.Map is only available in go 1.9, we can use concurrent.Map to make code portable") + (license license:asl2.0))) + +(define-public go-github-com-modern-go-reflect2-0.0.0-20180701023420-4b7aa43c6742 + (package + (name "go-github-com-modern-go-reflect2") + (version "0.0.0-20180701023420-4b7aa43c6742") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/modern-go/reflect2") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1721y3yr3dpx5dx5ashf063qczk2awy5zjir1jvp1h5hn7qz4i49")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/modern-go/reflect2")) + (home-page "https://github.com/modern-go/reflect2") + (synopsis "reflect2") + (description "reflect api that avoids runtime reflect.Value cost") + (license license:asl2.0))) + +(define-public go-github-com-json-iterator-go-1.1.10 + (package + (name "go-github-com-json-iterator-go") + (version "1.1.10") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/json-iterator/go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "134zwc2pmf8nd90r8065wsl6vv1mwjl23bs70i08dzhw5h98drr4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/json-iterator/go")) + (propagated-inputs + `(("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0) + ("go-github-com-modern-go-reflect2-0.0.0-20180701023420-4b7aa43c6742" + ,go-github-com-modern-go-reflect2-0.0.0-20180701023420-4b7aa43c6742) + ("go-github-com-modern-go-concurrent-0.0.0-20180228061459-e0a39a4cb421" + ,go-github-com-modern-go-concurrent-0.0.0-20180228061459-e0a39a4cb421) + ("go-github-com-google-gofuzz-1.0.0" + ,go-github-com-google-gofuzz-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/json-iterator/go") + (synopsis "Benchmark") + (description + "Package jsoniter implements encoding and decoding of JSON as defined in +@url{https://rfc-editor.org/rfc/rfc4627.html,RFC 4627} and provides interfaces with identical syntax of standard lib encoding/json. +Converting from encoding/json to jsoniter is no more than replacing the package with jsoniter +and variable type declarations (if any). +jsoniter interfaces gives 100% compatibility with code using standard lib. +") + (license license:expat))) + +(define-public go-github-com-kr-pty-1.1.1 + (package + (name "go-github-com-kr-pty") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/pty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0383f0mb9kqjvncqrfpidsf8y6ns5zlrc91c6a74xpyxjwvzl2y6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/pty")) + (home-page "https://github.com/kr/pty") + (synopsis "pty") + (description + "Package pty is a wrapper for github.com/creack/pty, which provides +functions for working with Unix terminals. +") + (license license:expat))) + +(define-public go-github-com-kr-text-0.1.0 + (package + (name "go-github-com-kr-text") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1gm5bsl01apvc84bw06hasawyqm4q84vx1pm32wr9jnd7a8vjgj1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/text")) + (propagated-inputs + `(("go-github-com-kr-pty-1.1.1" ,go-github-com-kr-pty-1.1.1))) + (home-page "https://github.com/kr/text") + (synopsis #f) + (description + "Package text provides rudimentary functions for manipulating text in +paragraphs. +") + (license license:expat))) + +(define-public go-github-com-kr-pretty-0.1.0 + (package + (name "go-github-com-kr-pretty") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/pretty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18m4pwg2abd0j9cn5v3k2ksk9ig4vlwxmlw9rrglanziv9l967qp")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/pretty")) + (propagated-inputs + `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) + (home-page "https://github.com/kr/pretty") + (synopsis #f) + (description + "Package pretty provides pretty-printing for Go values. This is +useful during debugging, to avoid wrapping long output lines in +the terminal. +") + (license license:expat))) + +(define-public go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20190911185100-cd5d95a43a6e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1nqkyz2y1qvqcma52ijh02s8aiqmkfb95j08f6zcjhbga3ds6hds")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the +ones provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20200106162015-b016eb3dc98e + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200106162015-b016eb3dc98e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1k0qr26046d228gi6ngkfxp4m1rjgxk4jj75h0kh1cpyp91n5rja")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-prometheus-procfs-0.1.3 + (package + (name "go-github-com-prometheus-procfs") + (version "0.1.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/procfs") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "09wmlmvmjf49nchidqffc99wn6vl98v5k9qgyyrhqgv0015xskwa")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/procfs")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20200106162015-b016eb3dc98e" + ,go-golang-org-x-sys-0.0.0-20200106162015-b016eb3dc98e) + ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" + ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) + ("go-github-com-google-go-cmp-0.3.1" + ,go-github-com-google-go-cmp-0.3.1))) + (home-page "https://github.com/prometheus/procfs") + (synopsis "procfs") + (description + "Package procfs provides functions to retrieve system, kernel and process +metrics from the pseudo-filesystem proc. +") + (license license:asl2.0))) + +(define-public go-github-com-stretchr-testify-1.4.0 + (package + (name "go-github-com-stretchr-testify") + (version "1.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "187i5g88sxfy4vxpm7dw1gwv29pa2qaq475lxrdh5livh69wqfjb")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) + ("go-github-com-stretchr-objx-0.1.0" + ,go-github-com-stretchr-objx-0.1.0) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.0" + ,go-github-com-davecgh-go-spew-1.1.0))) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20200615200032-f1bc736245b1 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200615200032-f1bc736245b1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fbmih4n2xw53qbpmc7msqf2660i4ryr0chbrsbj8mdalfrjr0vp")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15 + (package + (name "go-gopkg-in-check-v1") + (version "1.0.0-20190902080502-41f04d3bba15") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/check.v1") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0vfk9czmlxmp6wndq8k17rhnjxal764mxfhrccza7nwlia760pjy")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) + (home-page "https://gopkg.in/check.v1") + (synopsis "Instructions") + (description + "Package check is a rich testing extension for Go's testing package. +") + (license license:bsd-2))) + +(define-public go-gopkg-in-yaml-v2-2.2.5 + (package + (name "go-gopkg-in-yaml-v2") + (version "2.2.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "08smz8dfyxp02ha74my9iszqa5qzgl3ksi28ilyp8lqipssiq6fg")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v2") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language. +") + (license license:asl2.0))) + +(define-public go-github-com-prometheus-client-golang-1.7.1 + (package + (name "go-github-com-prometheus-client-golang") + (version "1.7.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/client_golang") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0i9wbwjq3idgp9y0vv7fvg6g7zrqi9qlfw915xc49ahw83q2h61w")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/client_golang")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.5" ,go-gopkg-in-yaml-v2-2.2.5) + ("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" + ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) + ("go-golang-org-x-sys-0.0.0-20200615200032-f1bc736245b1" + ,go-golang-org-x-sys-0.0.0-20200615200032-f1bc736245b1) + ("go-github-com-stretchr-testify-1.4.0" + ,go-github-com-stretchr-testify-1.4.0) + ("go-github-com-prometheus-procfs-0.1.3" + ,go-github-com-prometheus-procfs-0.1.3) + ("go-github-com-prometheus-common-0.10.0" + ,go-github-com-prometheus-common-0.10.0) + ("go-github-com-prometheus-client-model-0.2.0" + ,go-github-com-prometheus-client-model-0.2.0) + ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) + ("go-github-com-json-iterator-go-1.1.10" + ,go-github-com-json-iterator-go-1.1.10) + ("go-github-com-golang-protobuf-1.4.2" + ,go-github-com-golang-protobuf-1.4.2) + ("go-github-com-cespare-xxhash-v2-2.1.1" + ,go-github-com-cespare-xxhash-v2-2.1.1) + ("go-github-com-beorn7-perks-1.0.1" + ,go-github-com-beorn7-perks-1.0.1))) + (home-page "https://github.com/prometheus/client_golang") + (synopsis "Prometheus Go client library") + (description + "This is the @url{http://golang.org,Go} client library for +@url{http://prometheus.io,Prometheus}. It has two separate parts, one for +instrumenting application code, and one for creating clients that talk to the +Prometheus HTTP API.") + (license license:asl2.0))) + +(define-public go-github-com-alecthomas-template-0.0.0-20190718012654-fb15b899a751 + (package + (name "go-github-com-alecthomas-template") + (version "0.0.0-20190718012654-fb15b899a751") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/alecthomas/template") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1vlasv4dgycydh5wx6jdcvz40zdv90zz1h7836z7lhsi2ymvii26")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/alecthomas/template")) + (home-page "https://github.com/alecthomas/template") + (synopsis "Go's") + (description + "Package template implements data-driven templates for generating textual output. +") + (license license:bsd-3))) + +(define-public go-github-com-alecthomas-units-0.0.0-20190717042225-c3de453c63f4 + (package + (name "go-github-com-alecthomas-units") + (version "0.0.0-20190717042225-c3de453c63f4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/alecthomas/units") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0js37zlgv37y61j4a2d46jh72xm5kxmpaiw0ya9v944bjpc386my")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/alecthomas/units")) + (home-page "https://github.com/alecthomas/units") + (synopsis "Units - Helpful unit multipliers and functions for Go") + (description + "Package units provides helpful unit multipliers and functions for Go. +") + (license license:expat))) + +(define-public go-github-com-go-kit-kit-0.9.0 + (package + (name "go-github-com-go-kit-kit") + (version "0.9.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/go-kit/kit") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "09038mnw705h7isbjp8dzgp2i04bp5rqkmifxvwc5xkh75s00qpw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/go-kit/kit")) + (home-page "https://github.com/go-kit/kit") + (synopsis "Go kit") + (description + "@strong{Go kit} is a @strong{programming toolkit} for building microservices +(or elegant monoliths) in Go. We solve common problems in distributed +systems and application architecture so you can focus on delivering +business value.") + (license license:expat))) + +(define-public go-github-com-go-logfmt-logfmt-0.4.0 + (package + (name "go-github-com-go-logfmt-logfmt") + (version "0.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/go-logfmt/logfmt") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "06smxc112xmixz78nyvk3b2hmc7wasf2sl5vxj1xz62kqcq9lzm9")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/go-logfmt/logfmt")) + (propagated-inputs + `(("go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515" + ,go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515))) + (home-page "https://github.com/go-logfmt/logfmt") + (synopsis "logfmt") + (description + "Package logfmt implements utilities to marshal and unmarshal data in the +logfmt format. The logfmt format records key/value pairs in a way that +balances readability for humans and simplicity of computer parsing. It is +most commonly used as a more human friendly alternative to JSON for +structured logging. +") + (license license:expat))) + +(define-public go-github-com-pkg-errors-0.8.1 + (package + (name "go-github-com-pkg-errors") + (version "0.8.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pkg/errors") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0g5qcb4d4fd96midz0zdk8b9kz8xkzwfa8kr1cliqbg8sxsy5vd1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pkg/errors")) + (home-page "https://github.com/pkg/errors") + (synopsis "errors") + (description "Package errors provides simple error handling primitives. +") + (license license:bsd-2))) + +(define-public go-github-com-beorn7-perks-1.0.0 + (package + (name "go-github-com-beorn7-perks") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/beorn7/perks") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1i1nz1f6g55xi2y3aiaz5kqfgvknarbfl4f0sx4nyyb4s7xb1z9x")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/beorn7/perks")) + (home-page "https://github.com/beorn7/perks") + (synopsis "Perks for Go (golang.org)") + (description + "Perks contains the Go package quantile that computes approximate quantiles over +an unbounded data stream within low memory and CPU bounds.") + (license license:expat))) + +(define-public go-github-com-golang-protobuf-1.3.1 + (package + (name "go-github-com-golang-protobuf") + (version "1.3.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "15am4s4646qy6iv0g3kkqq52rzykqjhm4bf08dk0fy2r58knpsyl")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-github-com-json-iterator-go-1.1.6 + (package + (name "go-github-com-json-iterator-go") + (version "1.1.6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/json-iterator/go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "08caswxvdn7nvaqyj5kyny6ghpygandlbw9vxdj7l5vkp7q0s43r")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/json-iterator/go")) + (home-page "https://github.com/json-iterator/go") + (synopsis "Benchmark") + (description + "Package jsoniter implements encoding and decoding of JSON as defined in +@url{https://rfc-editor.org/rfc/rfc4627.html,RFC 4627} and provides interfaces with identical syntax of standard lib encoding/json. +Converting from encoding/json to jsoniter is no more than replacing the package with jsoniter +and variable type declarations (if any). +jsoniter interfaces gives 100% compatibility with code using standard lib. +") + (license license:expat))) + +(define-public go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd + (package + (name "go-github-com-modern-go-concurrent") + (version "0.0.0-20180306012644-bacd9c7ef1dd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/modern-go/concurrent") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0s0fxccsyb8icjmiym5k7prcqx36hvgdwl588y0491gi18k5i4zs")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/modern-go/concurrent")) + (home-page "https://github.com/modern-go/concurrent") + (synopsis "concurrent") + (description + "because sync.Map is only available in go 1.9, we can use concurrent.Map to make code portable") + (license license:asl2.0))) + +(define-public go-github-com-modern-go-reflect2-1.0.1 + (package + (name "go-github-com-modern-go-reflect2") + (version "1.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/modern-go/reflect2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "06a3sablw53n1dqqbr2f53jyksbxdmmk8axaas4yvnhyfi55k4lf")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/modern-go/reflect2")) + (home-page "https://github.com/modern-go/reflect2") + (synopsis "reflect2") + (description "reflect api that avoids runtime reflect.Value cost") + (license license:asl2.0))) + +(define-public go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90 + (package + (name "go-github-com-prometheus-client-model") + (version "0.0.0-20190129233127-fd36f4220a90") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/client_model") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1bs5d72k361llflgl94c22n0w53j30rsfh84smgk8mbjbcmjsaa5")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/client_model")) + (propagated-inputs + `(("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" + ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0))) + (home-page "https://github.com/prometheus/client_model") + (synopsis "Deprecation note") + (description + "This repository used to contain the code that defined both +the data model and the exposition format of Prometheus metrics.") + (license license:asl2.0))) + +(define-public go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc + (package + (name "go-github-com-alecthomas-template") + (version "0.0.0-20160405071501-a0175ee3bccc") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/alecthomas/template") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0qjgvvh26vk1cyfq9fadyhfgdj36f1iapbmr5xp6zqipldz8ffxj")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/alecthomas/template")) + (home-page "https://github.com/alecthomas/template") + (synopsis "Go's") + (description + "Package template implements data-driven templates for generating textual output. +") + (license license:bsd-3))) + +(define-public go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf + (package + (name "go-github-com-alecthomas-units") + (version "0.0.0-20151022065526-2efee857e7cf") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/alecthomas/units") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1j65b91qb9sbrml9cpabfrcf07wmgzzghrl7809hjjhrmbzri5bl")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/alecthomas/units")) + (home-page "https://github.com/alecthomas/units") + (synopsis "Units - Helpful unit multipliers and functions for Go") + (description + "Package units provides helpful unit multipliers and functions for Go. +") + (license license:expat))) + +(define-public go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973 + (package + (name "go-github-com-beorn7-perks") + (version "0.0.0-20180321164747-3a771d992973") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/beorn7/perks") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1l2lns4f5jabp61201sh88zf3b0q793w4zdgp9nll7mmfcxxjif3")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/beorn7/perks")) + (home-page "https://github.com/beorn7/perks") + (synopsis "Perks for Go (golang.org)") + (description + "Perks contains the Go package quantile that computes approximate quantiles over +an unbounded data stream within low memory and CPU bounds.") + (license license:expat))) + +(define-public go-github-com-go-kit-kit-0.8.0 + (package + (name "go-github-com-go-kit-kit") + (version "0.8.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/go-kit/kit") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1rcywbc2pvab06qyf8pc2rdfjv7r6kxdv2v4wnpqnjhz225wqvc0")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/go-kit/kit")) + (home-page "https://github.com/go-kit/kit") + (synopsis "Go kit") + (description + "@strong{Go kit} is a @strong{programming toolkit} for building microservices +(or elegant monoliths) in Go. We solve common problems in distributed +systems and application architecture so you can focus on delivering +business value.") + (license license:expat))) + +(define-public go-github-com-go-logfmt-logfmt-0.3.0 + (package + (name "go-github-com-go-logfmt-logfmt") + (version "0.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/go-logfmt/logfmt") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1gkgh3k5w1xwb2qbjq52p6azq3h1c1rr6pfwjlwj1zrijpzn2xb9")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/go-logfmt/logfmt")) + (home-page "https://github.com/go-logfmt/logfmt") + (synopsis "logfmt") + (description + "Package logfmt implements utilities to marshal and unmarshal data in the +logfmt format. The logfmt format records key/value pairs in a way that +balances readability for humans and simplicity of computer parsing. It is +most commonly used as a more human friendly alternative to JSON for +structured logging. +") + (license license:expat))) + +(define-public go-github-com-go-stack-stack-1.8.0 + (package + (name "go-github-com-go-stack-stack") + (version "1.8.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/go-stack/stack") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wk25751ryyvxclyp8jdk5c3ar0cmfr8lrjb66qbg4808x66b96v")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/go-stack/stack")) + (home-page "https://github.com/go-stack/stack") + (synopsis "stack") + (description + "Package stack implements utilities to capture, manipulate, and format call +stacks. It provides a simpler API than package runtime. +") + (license license:expat))) + +(define-public go-github-com-gogo-protobuf-1.1.1 + (package + (name "go-github-com-gogo-protobuf") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gogo/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1525pq7r6h3s8dncvq8gxi893p2nq8dxpzvq0nfl5b4p6mq0v1c2")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/gogo/protobuf")) + (home-page "https://github.com/gogo/protobuf") + (synopsis "Protocol Buffers for Go with Gadgets") + (description + "gogoprotobuf is a fork of @url{https://github.com/golang/protobuf,golang/protobuf} with extra code generation features.") + (license license:bsd-3))) + +(define-public go-github-com-julienschmidt-httprouter-1.2.0 + (package + (name "go-github-com-julienschmidt-httprouter") + (version "1.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/julienschmidt/httprouter") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1k8bylc9s4vpvf5xhqh9h246dl1snxrzzz0614zz88cdh8yzs666")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/julienschmidt/httprouter")) + (home-page "https://github.com/julienschmidt/httprouter") + (synopsis "HttpRouter") + (description + "Package httprouter is a trie based high performance HTTP request router. +") + (license license:bsd-3))) + +(define-public go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515 + (package + (name "go-github-com-kr-logfmt") + (version "0.0.0-20140226030751-b84e30acd515") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/logfmt") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "02ldzxgznrfdzvghfraslhgp19la1fczcbzh7wm2zdc6lmpd1qq9")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/logfmt")) + (home-page "https://github.com/kr/logfmt") + (synopsis #f) + (description + "Package implements the decoding of logfmt key-value pairs. +") + (license license:expat))) + +(define-public go-github-com-matttproud-golang-protobuf-extensions-1.0.1 + (package + (name "go-github-com-matttproud-golang-protobuf-extensions") + (version "1.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/matttproud/golang_protobuf_extensions") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1d0c1isd2lk9pnfq2nk0aih356j30k3h1gi2w0ixsivi5csl7jya")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/matttproud/golang_protobuf_extensions")) + (home-page "https://github.com/matttproud/golang_protobuf_extensions") + (synopsis "Overview") + (description + "This repository provides various Protocol Buffer extensions for the Go +language (golang), namely support for record length-delimited message +streaming.") + (license license:asl2.0))) + +(define-public go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223 + (package + (name "go-github-com-mwitkow-go-conntrack") + (version "0.0.0-20161129095857-cc309e4a2223") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mwitkow/go-conntrack") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0nbrnpk7bkmqg9mzwsxlm0y8m7s9qd9phr1q30qlx2qmdmz7c1mf")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mwitkow/go-conntrack")) + (home-page "https://github.com/mwitkow/go-conntrack") + (synopsis "Go tracing and monitoring (Prometheus) for") + (description + "@url{https://prometheus.io/,Prometheus} monitoring and @url{https://godoc.org/golang.org/x/net/trace#EventLog,(code x/net/trace)} tracing wrappers @code{net.Conn}, both inbound (@code{net.Listener}) and outbound (@code{net.Dialer}).") + (license license:asl2.0))) + +(define-public go-github-com-pkg-errors-0.8.0 + (package + (name "go-github-com-pkg-errors") + (version "0.8.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pkg/errors") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "001i6n71ghp2l6kdl3qq1v2vmghcz3kicv9a5wgcihrzigm75pp5")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pkg/errors")) + (home-page "https://github.com/pkg/errors") + (synopsis "errors") + (description "Package errors provides simple error handling primitives. +") + (license license:bsd-2))) + +(define-public go-github-com-prometheus-client-golang-0.9.1 + (package + (name "go-github-com-prometheus-client-golang") + (version "0.9.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/client_golang") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "01gnylazia30pcp069xcng482gwmm3xcx5zgrlwdkhic1lyb6i9l")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/client_golang")) + (home-page "https://github.com/prometheus/client_golang") + (synopsis "Prometheus Go client library") + (description + "This is the @url{http://golang.org,Go} client library for +@url{http://prometheus.io,Prometheus}. It has two separate parts, one for +instrumenting application code, and one for creating clients that talk to the +Prometheus HTTP API.") + (license license:asl2.0))) + +(define-public go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910 + (package + (name "go-github-com-prometheus-client-model") + (version "0.0.0-20180712105110-5c3871d89910") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/client_model") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "04psf81l9fjcwascsys428v03fx4fi894h7fhrj2vvcz723q57k0")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/client_model")) + (home-page "https://github.com/prometheus/client_model") + (synopsis "Deprecation note") + (description + "This repository used to contain the code that defined both +the data model and the exposition format of Prometheus metrics.") + (license license:asl2.0))) + +(define-public go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d + (package + (name "go-github-com-prometheus-procfs") + (version "0.0.0-20181005140218-185b4288413d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/procfs") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0d85429kdw5dgj5zhyiz1sq3i5691vj2gjnda93nnxxzx9acg8cv")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/procfs")) + (home-page "https://github.com/prometheus/procfs") + (synopsis "procfs") + (description + "Package procfs provides functions to retrieve system, kernel and process +metrics from the pseudo-filesystem proc. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-crypto-0.0.0-20180904163835-0709b304e793 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20180904163835-0709b304e793") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0i05s09y5pavmfh71fgih7syxg58x7a4krgd8am6d3mnahnmab5c")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20180905080454-ebe1bf3edb33") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0rkspxyjxdmc9f4n09hgkwj8jjd8z5p8mc9z8vwqwqcwrqv4sg7c")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-sirupsen-logrus-1.2.0 + (package + (name "go-github-com-sirupsen-logrus") + (version "1.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sirupsen/logrus") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0r6334x2bls8ddznvzaldx4g88msjjns4mlks95rqrrg7h0ijigg")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/sirupsen/logrus")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33" + ,go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33) + ("go-golang-org-x-crypto-0.0.0-20180904163835-0709b304e793" + ,go-golang-org-x-crypto-0.0.0-20180904163835-0709b304e793) + ("go-github-com-stretchr-testify-1.2.2" + ,go-github-com-stretchr-testify-1.2.2) + ("go-github-com-stretchr-objx-0.1.1" + ,go-github-com-stretchr-objx-0.1.1) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.1" + ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.1) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/sirupsen/logrus") + (synopsis "Logrus") + (description + "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. +") + (license license:expat))) + +(define-public go-golang-org-x-net-0.0.0-20181114220301-adae6a3d119a + (package + (name "go-golang-org-x-net") + (version "0.0.0-20181114220301-adae6a3d119a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fx860zsgzqk28j7lmp96qsfrgb0kzbfjvr294hywswcbwdwkb01")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-gopkg-in-yaml-v2-2.2.1 + (package + (name "go-gopkg-in-yaml-v2") + (version "2.2.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0dwjrs2lp2gdlscs7bsrmyc5yf6mm4fvgw71bzr9mv2qrd2q73s1")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v2") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language. +") + (license license:asl2.0))) + +(define-public go-github-com-prometheus-common-0.4.1 + (package + (name "go-github-com-prometheus-common") + (version "0.4.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/common") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0sf4sjdckblz1hqdfvripk3zyp8xq89w7q75kbsyg4c078af896s")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/common")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1) + ("go-gopkg-in-alecthomas-kingpin-v2-2.2.6" + ,go-gopkg-in-alecthomas-kingpin-v2-2.2.6) + ("go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5" + ,go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5) + ("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" + ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) + ("go-golang-org-x-net-0.0.0-20181114220301-adae6a3d119a" + ,go-golang-org-x-net-0.0.0-20181114220301-adae6a3d119a) + ("go-github-com-sirupsen-logrus-1.2.0" + ,go-github-com-sirupsen-logrus-1.2.0) + ("go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d" + ,go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d) + ("go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910" + ,go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910) + ("go-github-com-prometheus-client-golang-0.9.1" + ,go-github-com-prometheus-client-golang-0.9.1) + ("go-github-com-pkg-errors-0.8.0" ,go-github-com-pkg-errors-0.8.0) + ("go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223" + ,go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223) + ("go-github-com-matttproud-golang-protobuf-extensions-1.0.1" + ,go-github-com-matttproud-golang-protobuf-extensions-1.0.1) + ("go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515" + ,go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515) + ("go-github-com-julienschmidt-httprouter-1.2.0" + ,go-github-com-julienschmidt-httprouter-1.2.0) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0) + ("go-github-com-gogo-protobuf-1.1.1" + ,go-github-com-gogo-protobuf-1.1.1) + ("go-github-com-go-stack-stack-1.8.0" + ,go-github-com-go-stack-stack-1.8.0) + ("go-github-com-go-logfmt-logfmt-0.3.0" + ,go-github-com-go-logfmt-logfmt-0.3.0) + ("go-github-com-go-kit-kit-0.8.0" ,go-github-com-go-kit-kit-0.8.0) + ("go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973" + ,go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973) + ("go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf" + ,go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf) + ("go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc" + ,go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc))) + (home-page "https://github.com/prometheus/common") + (synopsis "Common") + (description + "This repository contains Go libraries that are shared across Prometheus +components and libraries. They are considered internal to Prometheus, without +any stability guarantees for external usage.") + (license license:asl2.0))) + +(define-public go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4 + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20181221193216-37e7f081c4d4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1bb0mw6ckb1k7z8v3iil2qlqwfj408fvvp8m1cik2b46p7snyjhm")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the +ones provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-github-com-prometheus-procfs-0.0.2 + (package + (name "go-github-com-prometheus-procfs") + (version "0.0.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/procfs") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0s7pvs7fgnfpmym3cd0k219av321h9sf3yvdlnn3qy0ps280lg7k")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/procfs")) + (propagated-inputs + `(("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" + ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4))) + (home-page "https://github.com/prometheus/procfs") + (synopsis "procfs") + (description + "Package procfs provides functions to retrieve system, kernel and process +metrics from the pseudo-filesystem proc. +") + (license license:asl2.0))) + +(define-public go-github-com-stretchr-testify-1.3.0 + (package + (name "go-github-com-stretchr-testify") + (version "1.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wjchp2c8xbgcbbq32w3kvblk6q6yn533g78nxl6iskq6y95lxsy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (propagated-inputs + `(("go-github-com-stretchr-objx-0.1.0" + ,go-github-com-stretchr-objx-0.1.0) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.0" + ,go-github-com-davecgh-go-spew-1.1.0))) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20181116152217-5ac8a444bdc5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "00zdrighflwc4iyizsag184nvl1cbkk02v73kpl5miprdrvzqlr4")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-prometheus-client-golang-1.0.0 + (package + (name "go-github-com-prometheus-client-golang") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/client_golang") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1f03ndyi3jq7zdxinnvzimz3s4z2374r6dikkc8i42xzb6d1bli6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/client_golang")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5" + ,go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5) + ("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0) + ("go-github-com-prometheus-procfs-0.0.2" + ,go-github-com-prometheus-procfs-0.0.2) + ("go-github-com-prometheus-common-0.4.1" + ,go-github-com-prometheus-common-0.4.1) + ("go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90" + ,go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90) + ("go-github-com-modern-go-reflect2-1.0.1" + ,go-github-com-modern-go-reflect2-1.0.1) + ("go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd" + ,go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd) + ("go-github-com-json-iterator-go-1.1.6" + ,go-github-com-json-iterator-go-1.1.6) + ("go-github-com-golang-protobuf-1.3.1" + ,go-github-com-golang-protobuf-1.3.1) + ("go-github-com-beorn7-perks-1.0.0" + ,go-github-com-beorn7-perks-1.0.0))) + (home-page "https://github.com/prometheus/client_golang") + (synopsis "Prometheus Go client library") + (description + "This is the @url{http://golang.org,Go} client library for +@url{http://prometheus.io,Prometheus}. It has two separate parts, one for +instrumenting application code, and one for creating clients that talk to the +Prometheus HTTP API.") + (license license:asl2.0))) + +(define-public go-github-com-prometheus-client-model-0.2.0 + (package + (name "go-github-com-prometheus-client-model") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/client_model") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0jffnz94d6ff39fr96b5w8i8yk26pwnrfggzz8jhi8k0yihg2c9d")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/client_model")) + (propagated-inputs + `(("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" + ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0))) + (home-page "https://github.com/prometheus/client_model") + (synopsis "Deprecation note") + (description + "This repository used to contain the code that defined both +the data model and the exposition format of Prometheus metrics.") + (license license:asl2.0))) + +(define-public go-github-com-davecgh-go-spew-1.1.1 + (package + (name "go-github-com-davecgh-go-spew") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/davecgh/go-spew") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/davecgh/go-spew")) + (home-page "https://github.com/davecgh/go-spew") + (synopsis "go-spew") + (description + "Go-spew implements a deep pretty printer for Go data structures to aid in +debugging. A comprehensive suite of tests with 100% test coverage is provided +to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage +report. Go-spew is licensed under the liberal ISC license, so it may be used in +open source or commercial projects.") + (license license:isc))) + +(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.1 + (package + (name "go-github-com-konsorten-go-windows-terminal-sequences") + (version "1.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/konsorten/go-windows-terminal-sequences") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1lchgf27n276vma6iyxa0v1xds68n2g8lih5lavqnx5x6q5pw2ip")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) + (home-page "https://github.com/konsorten/go-windows-terminal-sequences") + (synopsis "Windows Terminal Sequences") + (description + "This library allow for enabling Windows terminal color support for Go.") + (license license:expat))) + +(define-public go-github-com-stretchr-objx-0.1.1 + (package + (name "go-github-com-stretchr-objx") + (version "0.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/objx") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0iph0qmpyqg4kwv8jsx6a56a7hhqq8swrazv40ycxk9rzr0s8yls")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/objx")) + (home-page "https://github.com/stretchr/objx") + (synopsis "Objx") + (description + "Objx - Go package for dealing with maps, slices, JSON and other data. +") + (license license:expat))) + +(define-public go-github-com-stretchr-testify-1.2.2 + (package + (name "go-github-com-stretchr-testify") + (version "1.2.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0dlszlshlxbmmfxj5hlwgv3r22x0y1af45gn1vd198nvvs3pnvfs")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +") + (license license:expat))) + +(define-public go-github-com-sirupsen-logrus-1.4.2 + (package + (name "go-github-com-sirupsen-logrus") + (version "1.4.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sirupsen/logrus") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "087k2lxrr9p9dh68yw71d05h5g9p5v26zbwd6j7lghinjfaw334x")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/sirupsen/logrus")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894" + ,go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894) + ("go-github-com-stretchr-testify-1.2.2" + ,go-github-com-stretchr-testify-1.2.2) + ("go-github-com-stretchr-objx-0.1.1" + ,go-github-com-stretchr-objx-0.1.1) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.1" + ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.1) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/sirupsen/logrus") + (synopsis "Logrus") + (description + "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. +") + (license license:expat))) + +(define-public go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190613194153-d28f0bde5980") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18xj31h70m7xxb7gc86n9i21w6d7djbjz67zfaljm4jqskz6hxkf")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190422165155-953cdadca894") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0gkha4whk8xkcv3isigbs250akag99isxnd3v9xmy0kl3g88hxy1")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-gopkg-in-alecthomas-kingpin-v2-2.2.6 + (package + (name "go-gopkg-in-alecthomas-kingpin-v2") + (version "2.2.6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/alecthomas/kingpin.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0mndnv3hdngr3bxp7yxfd47cas4prv98sqw534mx7vp38gd88n5r")))) + (build-system go-build-system) + (arguments + '(#:import-path + "gopkg.in/alecthomas/kingpin.v2" + #:unpack-path + "gopkg.in/alecthomas/kingpin.v2")) + (home-page "https://gopkg.in/alecthomas/kingpin.v2") + (synopsis "Kingpin - A Go (golang) command line and flag parser") + (description + "Package kingpin provides command line interfaces like this: +") + (license license:expat))) + +(define-public go-gopkg-in-yaml-v2-2.2.4 + (package + (name "go-gopkg-in-yaml-v2") + (version "2.2.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "11bwj757wi8kdrcnlgfqb8vv2d2xdhlghmyagd19i62khrkchsg2")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v2") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language. +") + (license license:asl2.0))) + +(define-public go-github-com-prometheus-common-0.10.0 + (package + (name "go-github-com-prometheus-common") + (version "0.10.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/common") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ra7zfqsnvgfizzsxn3rk0dwhk7nx8p8082zgpvadbv2b0j1k01i")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/common")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.4" ,go-gopkg-in-yaml-v2-2.2.4) + ("go-gopkg-in-alecthomas-kingpin-v2-2.2.6" + ,go-gopkg-in-alecthomas-kingpin-v2-2.2.6) + ("go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894" + ,go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894) + ("go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980" + ,go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980) + ("go-github-com-sirupsen-logrus-1.4.2" + ,go-github-com-sirupsen-logrus-1.4.2) + ("go-github-com-prometheus-client-model-0.2.0" + ,go-github-com-prometheus-client-model-0.2.0) + ("go-github-com-prometheus-client-golang-1.0.0" + ,go-github-com-prometheus-client-golang-1.0.0) + ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) + ("go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223" + ,go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223) + ("go-github-com-matttproud-golang-protobuf-extensions-1.0.1" + ,go-github-com-matttproud-golang-protobuf-extensions-1.0.1) + ("go-github-com-julienschmidt-httprouter-1.2.0" + ,go-github-com-julienschmidt-httprouter-1.2.0) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2) + ("go-github-com-go-logfmt-logfmt-0.4.0" + ,go-github-com-go-logfmt-logfmt-0.4.0) + ("go-github-com-go-kit-kit-0.9.0" ,go-github-com-go-kit-kit-0.9.0) + ("go-github-com-alecthomas-units-0.0.0-20190717042225-c3de453c63f4" + ,go-github-com-alecthomas-units-0.0.0-20190717042225-c3de453c63f4) + ("go-github-com-alecthomas-template-0.0.0-20190718012654-fb15b899a751" + ,go-github-com-alecthomas-template-0.0.0-20190718012654-fb15b899a751))) + (home-page "https://github.com/prometheus/common") + (synopsis "Common") + (description + "This repository contains Go libraries that are shared across Prometheus +components and libraries. They are considered internal to Prometheus, without +any stability guarantees for external usage.") + (license license:asl2.0))) + +(define-public go-github-com-google-go-cmp-0.5.4 + (package + (name "go-github-com-google-go-cmp") + (version "0.5.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ld9pwb6l22g75g1zpa691l7q9ki7pjgpcqhwgdfr3va1zisr5ci")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20201207232520-09787c993a3a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1nv4mwi9njkkyc7lwmxrjr8ggfh2cf1c67a9bq85dnss81vpj61y")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the +ones provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20210124154548-22da62e12c0c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "17gp3dl75wq3x7j9z1pqgcyvjhvy9jaln1wbscy57al3whdsjp07")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-prometheus-procfs-0.6.0 + (package + (name "go-github-com-prometheus-procfs") + (version "0.6.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/procfs") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0czzw37dq0sfq7rivxmxxw5hy287grqnng6q6hfz6mkqmhqgm1m6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/procfs")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" + ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) + ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" + ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) + ("go-github-com-google-go-cmp-0.5.4" + ,go-github-com-google-go-cmp-0.5.4))) + (home-page "https://github.com/prometheus/procfs") + (synopsis "procfs") + (description + "Package procfs provides functions to retrieve system, kernel and process +metrics from the pseudo-filesystem proc. +") + (license license:asl2.0))) + +(define-public go-github-com-spf13-pflag-1.0.5 + (package + (name "go-github-com-spf13-pflag") + (version "1.0.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/spf13/pflag") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0gpmacngd0gpslnbkzi263f5ishigzgh6pbdv9hp092rnjl4nd31")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/spf13/pflag")) + (home-page "https://github.com/spf13/pflag") + (synopsis "Description") + (description + "Package pflag is a drop-in replacement for Go's flag package, implementing +POSIX/GNU-style --flags. +") + (license license:bsd-3))) + +(define-public go-github-com-yvasiyarov-go-metrics-0.0.0-20140926110328-57bccd1ccd43 + (package + (name "go-github-com-yvasiyarov-go-metrics") + (version "0.0.0-20140926110328-57bccd1ccd43") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/yvasiyarov/go-metrics") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1rwlq9k3iii54da90fjivi13zacx2h6znppkzncvl653xhjpm26g")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/yvasiyarov/go-metrics")) + (home-page "https://github.com/yvasiyarov/go-metrics") + (synopsis "go-metrics") + (description "Go port of Coda Hale's Metrics library +") + (license #f))) + +(define-public go-github-com-yvasiyarov-gorelic-0.0.0-20141212073537-a9bba5b9ab50 + (package + (name "go-github-com-yvasiyarov-gorelic") + (version "0.0.0-20141212073537-a9bba5b9ab50") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/yvasiyarov/gorelic") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1niwv40k9rx2g5h6wddci9ykf1sm1d5ml9mjgdjd1ahm4wfq08gn")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/yvasiyarov/gorelic")) + (home-page "https://github.com/yvasiyarov/gorelic") + (synopsis "GoRelic is deprecated in favour of") + (description + "Package gorelic is an New Relic agent implementation for Go runtime. It collect a lot of metrics about Go scheduler, garbage collector and memory allocator and send them to NewRelic. +") + (license license:bsd-2))) + +(define-public go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20140908184405-b21fdbd4370f + (package + (name "go-github-com-yvasiyarov-newrelic-platform-go") + (version "0.0.0-20140908184405-b21fdbd4370f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/yvasiyarov/newrelic_platform_go") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0a4yncdxwsy0rn3bhkadfysm817b7ndzmh9fkg8hh92pnw5aabzw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/yvasiyarov/newrelic_platform_go")) + (home-page "https://github.com/yvasiyarov/newrelic_platform_go") + (synopsis "New Relic Platform Agent SDK for Go(golang)") + (description + "Package newrelic_platform_go is New Relic Platform Agent SDK for Go language. +") + (license license:bsd-2))) + +(define-public go-golang-org-x-sys-0.0.0-20210423082822-04245dca01da + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20210423082822-04245dca01da") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "11is2c5cpxk0gf2mxza2wpzfcf71fxb9b3in77f6w2q0pr68ykzx")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20211112202133-69e39bad7dc2 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20211112202133-69e39bad7dc2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0yvg72fb037yh4xvjyfgrr8nsbz7nfiiksvq0a5922z255anamy6")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.6" ,go-golang-org-x-text-0.3.6) + ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" + ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) + ("go-golang-org-x-sys-0.0.0-20210423082822-04245dca01da" + ,go-golang-org-x-sys-0.0.0-20210423082822-04245dca01da))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20210615035016-665e8c7367d1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "11n848csibdbv7b46zjyf4l7sphg37n9sjzqfy1ds7p1jyakwmnv")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-text-0.3.6 + (package + (name "go-golang-org-x-text") + (version "0.3.6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wzhvdb059vrp2cczqw422ajrb9sbs4l3qd020hlngj33qfhxah0")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/text")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" + ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) + (home-page "https://golang.org/x/text") + (synopsis "Go Text") + (description + "text is a repository of text-related packages related to internationalization +(i18n) and localization (l10n), such as character encodings, text +transformations, and locale-specific text handling. +") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.5.2 + (package + (name "go-github-com-golang-protobuf") + (version "1.5.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1mh5fyim42dn821nsd3afnmgscrzzhn3h8rag635d2jnr23r1zhk")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.26.0" + ,go-google-golang-org-protobuf-1.26.0) + ("go-github-com-google-go-cmp-0.5.5" + ,go-github-com-google-go-cmp-0.5.5))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-golang-org-x-mod-0.1.1-0.20191105210325-c90efee705ee + (package + (name "go-golang-org-x-mod") + (version "0.1.1-0.20191105210325-c90efee705ee") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/mod") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0i5md645rmcy5z5ij9ng428k9rz4g3k1kjy3blsq1264rn426gdf")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/mod")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" + ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) + ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" + ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) + (home-page "https://golang.org/x/mod") + (synopsis "mod") + (description + "This repository holds packages for writing tools +that work directly with Go module mechanics. +That is, it is for direct manipulation of Go modules themselves.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7 + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20200130002326-2f3ba24bd6e7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0j3nnmlwnbivf0h9x89vlp8ji3ha41v96bj33cxwmrrjnxq543ww")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" + ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) + ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" + ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) + ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" + ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) + ("go-golang-org-x-mod-0.1.1-0.20191105210325-c90efee705ee" + ,go-golang-org-x-mod-0.1.1-0.20191105210325-c90efee705ee))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-golang-org-x-lint-0.0.0-20210508222113-6edffad5e616 + (package + (name "go-golang-org-x-lint") + (version "0.0.0-20210508222113-6edffad5e616") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/lint") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1n7lrr3282q3li4f06afms444qy13rfd316za0drqihakwyki2jk")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/lint")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7" + ,go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7))) + (home-page "https://golang.org/x/lint") + (synopsis "Installation") + (description "Package lint contains a linter for Go source code. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-text-0.3.5 + (package + (name "go-golang-org-x-text") + (version "0.3.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "082s9d7wnh1aa2v08g3h5z4if2f8hl4y01pb788qsvab9329lj0w")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/text")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" + ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) + (home-page "https://golang.org/x/text") + (synopsis "Go Text") + (description + "text is a repository of text-related packages related to internationalization +(i18n) and localization (l10n), such as character encodings, text +transformations, and locale-specific text handling. +") + (license license:bsd-3))) + +(define-public go-github-com-yuin-goldmark-1.3.5 + (package + (name "go-github-com-yuin-goldmark") + (version "1.3.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/yuin/goldmark") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "08rrhfji92hixiv3v0wvamwcy56f90wsw84w7lyvad7g90kbsknx")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/yuin/goldmark")) + (home-page "https://github.com/yuin/goldmark") + (synopsis "goldmark") + (description + "Package goldmark implements functions to convert markdown text to a desired format. +") + (license license:expat))) + +(define-public go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190404232315-eb5bcb51f2a3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "17k4g8krxbl84gzcs275b7gsh66dzm15fdxivjnx9xz8q84l4kby")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20190412213103-97732733099d + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190412213103-97732733099d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "118hkp01i4z1f5h6hcjm0ff2ngqhrzj1f7731n0kw8dr6hvbx0sw")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20191011191535-87dc89f01550") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0z4i1m2yn3f31ci7wvcm2rxkx2yiv7a78mfzklncmsz2k97rlh2g")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" + ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) + ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" + ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190620200207-3b0461eec859") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0l00c8l0a8xnv6qdpwfzxxsr58jggacgzdrwiprrfx2xqm37b6d5")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7 + (package + (name "go-golang-org-x-xerrors") + (version "0.0.0-20190717185122-a985d3407aa7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/xerrors") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "00wzr5w8aadipgc3rkk8f11i41znskfj9ix5nhhaxyg7isrslgcj")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/xerrors")) + (home-page "https://golang.org/x/xerrors") + (synopsis #f) + (description + "Package xerrors implements functions to manipulate errors. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20191119224855-298f0cb1881e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0l4pqwib2wnfnix6nvxl0yrq87ipi7ff1rz6z5bxfzy9dki1nzmv")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7" + ,go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7) + ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" + ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) + ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" + ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898 + (package + (name "go-golang-org-x-xerrors") + (version "0.0.0-20191011141410-1b5146add898") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/xerrors") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0w2akj91krxjag0xdhsg78470888nicc5ismc2ap9jqpss6v1zih")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/xerrors")) + (home-page "https://golang.org/x/xerrors") + (synopsis #f) + (description + "Package xerrors implements functions to manipulate errors. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-mod-0.4.2 + (package + (name "go-golang-org-x-mod") + (version "0.4.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/mod") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0z1p17i291z2k6va08i80ljyzyij2b6qsz78lnz0wi8zsnkfdz43")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/mod")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" + ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) + ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" + ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) + ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" + ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) + (home-page "https://golang.org/x/mod") + (synopsis "mod") + (description + "This repository holds packages for writing tools +that work directly with Go module mechanics. +That is, it is for direct manipulation of Go modules themselves.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20210330210617-4fbd30eecc44 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20210330210617-4fbd30eecc44") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "02mmymbm7wb3vdp3z9hm8p0f45708fybyd38qm8qxzwm19zqnp56")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20201119102817-f84b799fce68") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1dvhqian5byzkcg1bnqzygqa6ccc6krc2q7j12pp1vhl3y7znnsg")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1 + (package + (name "go-golang-org-x-term") + (version "0.0.0-20201126162022-7de9c90e9dd1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/term") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ba252xmv6qsvf1w1gcy98mngrj0vd4inbjw0lsklqvva65nljna")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/term")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" + ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) + (home-page "https://golang.org/x/term") + (synopsis "Go terminal/console support") + (description + "Package term provides support functions for dealing with terminals, as +commonly found on UNIX systems. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20180917221912-90fa682c2a6e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-golang-org-x-text-0.3.3 + (package + (name "go-golang-org-x-text") + (version "0.3.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19pihqm3phyndmiw6i42pdv6z1rbvlqlsnhsyqf9gsnn0qnmqqlh")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/text")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" + ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) + (home-page "https://golang.org/x/text") + (synopsis "Go Text") + (description + "text is a repository of text-related packages related to internationalization +(i18n) and localization (l10n), such as character encodings, text +transformations, and locale-specific text handling. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20210405180319-a5a99cb37ef4 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20210405180319-a5a99cb37ef4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0z90hpmxdw9i8vfhd6vf7hd63c86f1128qfb5f3y4kinvlpjy3rl")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) + ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" + ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) + ("go-golang-org-x-sys-0.0.0-20210330210617-4fbd30eecc44" + ,go-golang-org-x-sys-0.0.0-20210330210617-4fbd30eecc44))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20210220032951-036812b2e83c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1gl202py3s4gl6arkaxlf8qa6f0jyyg2f95m6f89qnfmr416h85b")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the +ones provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20210510120138-977fb7262007 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20210510120138-977fb7262007") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0d2vnblgzxgvis2kly99gv10kadyl3v0cpv1lskjqg2v5d11r6hd")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1 + (package + (name "go-golang-org-x-xerrors") + (version "0.0.0-20200804184101-5ec99f83aff1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/xerrors") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1dbzc3gmf2haazpv7cgmv97rq40g2xzwbglc17vas8dwhgwgwrzb")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/xerrors")) + (home-page "https://golang.org/x/xerrors") + (synopsis #f) + (description + "Package xerrors implements functions to manipulate errors. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.1.2 + (package + (name "go-golang-org-x-tools") + (version "0.1.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "047qwlvxs8whsal3yjjhywr9w0xrp5ky7q969mfxb1x9r20k76ci")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" + ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) + ("go-golang-org-x-sys-0.0.0-20210510120138-977fb7262007" + ,go-golang-org-x-sys-0.0.0-20210510120138-977fb7262007) + ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" + ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) + ("go-golang-org-x-net-0.0.0-20210405180319-a5a99cb37ef4" + ,go-golang-org-x-net-0.0.0-20210405180319-a5a99cb37ef4) + ("go-golang-org-x-mod-0.4.2" ,go-golang-org-x-mod-0.4.2) + ("go-github-com-yuin-goldmark-1.3.5" + ,go-github-com-yuin-goldmark-1.3.5))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-1.26.0 + (package + (name "go-google-golang-org-protobuf") + (version "1.26.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0xq6phaps6d0vcv13ga59gzj4306l0ki9kikhmb52h6pq0iwfqlz")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.5.5" + ,go-github-com-google-go-cmp-0.5.5) + ("go-github-com-golang-protobuf-1.5.0" + ,go-github-com-golang-protobuf-1.5.0))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-google-golang-org-genproto-0.0.0-20210602131652-f16073e35f0c + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20210602131652-f16073e35f0c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "06n5npgcjk8is2ajf0786nma5wjwpbwca273gv3yqq7dr3bkzv48")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.26.0" + ,go-google-golang-org-protobuf-1.26.0) + ("go-google-golang-org-grpc-1.38.0" ,go-google-golang-org-grpc-1.38.0) + ("go-golang-org-x-tools-0.1.2" ,go-golang-org-x-tools-0.1.2) + ("go-golang-org-x-text-0.3.5" ,go-golang-org-x-text-0.3.5) + ("go-golang-org-x-lint-0.0.0-20210508222113-6edffad5e616" + ,go-golang-org-x-lint-0.0.0-20210508222113-6edffad5e616) + ("go-github-com-golang-protobuf-1.5.2" + ,go-github-com-golang-protobuf-1.5.2))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-github-com-envoyproxy-go-control-plane-0.9.0 + (package + (name "go-github-com-envoyproxy-go-control-plane") + (version "0.9.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/envoyproxy/go-control-plane") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1dpvi4wnycyj6hnai78fr8aj58b27b1vcwdp3v0id5v22kvgr3xw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.23.0" ,go-google-golang-org-grpc-1.23.0) + ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" + ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) + ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" + ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2) + ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" + ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) + ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" + ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) + (home-page "https://github.com/envoyproxy/go-control-plane") + (synopsis "control-plane") + (description + "This repository contains a Go-based implementation of an API server that +implements the discovery service APIs defined in +@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") + (license license:asl2.0))) + +(define-public go-google-golang-org-grpc-1.25.1 + (package + (name "go-google-golang-org-grpc") + (version "1.25.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0a136ij9p11yj1vx892yqy40jkh7n5nfbpdvhgydcj823mx51c6f")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" + ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-github-com-google-go-cmp-0.2.0" + ,go-github-com-google-go-cmp-0.2.0) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2) + ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" + ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) + ("go-github-com-envoyproxy-go-control-plane-0.9.0" + ,go-github-com-envoyproxy-go-control-plane-0.9.0))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403 + (package + (name "go-github-com-cncf-udpa-go") + (version "0.0.0-20201120205902-5459f2c99403") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cncf/udpa") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0i3al193dsp91j7iywqrm6fr56y2sz51ci4vf19mb3j4n2x44gsi")))) + (build-system go-build-system) + (arguments + '(#:import-path + "github.com/cncf/udpa/go" + #:unpack-path + "github.com/cncf/udpa")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2) + ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" + ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0))) + (home-page "https://github.com/cncf/udpa") + (synopsis "Description") + (description + "This library has been deprecated in favor of @code{github.com/cncf/xds/go}. All users are recommended to switch their imports.") + (license license:asl2.0))) + +(define-public go-github-com-davecgh-go-spew-1.1.0 + (package + (name "go-github-com-davecgh-go-spew") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/davecgh/go-spew") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/davecgh/go-spew")) + (home-page "https://github.com/davecgh/go-spew") + (synopsis "go-spew") + (description + "Go-spew implements a deep pretty printer for Go data structures to aid in +debugging. A comprehensive suite of tests with 100% test coverage is provided +to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage +report. Go-spew is licensed under the liberal ISC license, so it may be used in +open source or commercial projects.") + (license license:isc))) + +(define-public go-github-com-pmezard-go-difflib-1.0.0 + (package + (name "go-github-com-pmezard-go-difflib") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pmezard/go-difflib") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pmezard/go-difflib")) + (home-page "https://github.com/pmezard/go-difflib") + (synopsis "go-difflib") + (description + "Go-difflib is a partial port of python 3 difflib package. Its main goal +was to make unified and context diff available in pure Go, mostly for +testing purposes.") + (license license:bsd-3))) + +(define-public go-github-com-stretchr-objx-0.1.0 + (package + (name "go-github-com-stretchr-objx") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/objx") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/objx")) + (home-page "https://github.com/stretchr/objx") + (synopsis "Objx") + (description + "Objx - Go package for dealing with maps, slices, JSON and other data. +") + (license license:expat))) + +(define-public go-gopkg-in-yaml-v2-2.2.2 + (package + (name "go-gopkg-in-yaml-v2") + (version "2.2.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "01wj12jzsdqlnidpyjssmj0r4yavlqy7dwrg7adqd8dicjc4ncsa")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v2") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language. +") + (license license:asl2.0))) + +(define-public go-github-com-stretchr-testify-1.5.1 + (package + (name "go-github-com-stretchr-testify") + (version "1.5.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "09r89m1wy4cjv2nps1ykp00qjpi0531r07q3s34hr7m6njk4srkl")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) + ("go-github-com-stretchr-objx-0.1.0" + ,go-github-com-stretchr-objx-0.1.0) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.0" + ,go-github-com-davecgh-go-spew-1.1.0))) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +") + (license license:expat))) + +(define-public go-github-com-envoyproxy-go-control-plane-0.9.9-0.20210217033140-668b12f5399d + (package + (name "go-github-com-envoyproxy-go-control-plane") + (version "0.9.9-0.20210217033140-668b12f5399d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/envoyproxy/go-control-plane") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0vmhc8ii081x1k2qw4kji7wjyg6l25zp1y6qxi27wq8m341i4rzb")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.23.0" + ,go-google-golang-org-protobuf-1.23.0) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" + ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) + ("go-github-com-stretchr-testify-1.5.1" + ,go-github-com-stretchr-testify-1.5.1) + ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" + ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.2" + ,go-github-com-golang-protobuf-1.4.2) + ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" + ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) + ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" + ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403) + ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" + ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) + (home-page "https://github.com/envoyproxy/go-control-plane") + (synopsis "control-plane") + (description + "This repository contains a Go-based implementation of an API server that +implements the discovery service APIs defined in +@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") + (license license:asl2.0))) + +(define-public go-google-golang-org-protobuf-1.23.0 + (package + (name "go-google-golang-org-protobuf") + (version "1.23.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03yan0m1v0zmlr935p4n24fd376mznsg85zy8sywbgisls4s1bzy")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.0" + ,go-github-com-golang-protobuf-1.4.0))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.4.2 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0m5z81im4nsyfgarjhppayk4hqnrwswr3nix9mj8pff8x9jvcjqw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.23.0" + ,go-google-golang-org-protobuf-1.23.0) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-github-com-google-uuid-1.1.2 + (package + (name "go-github-com-google-uuid") + (version "1.1.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/uuid") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1rbpfa0v0ly9sdnixcxhf79swki54ikgm1zkwwkj64p1ws66syqd")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/uuid")) + (home-page "https://github.com/google/uuid") + (synopsis "uuid") + (description "Package uuid generates and inspects UUIDs. +") + (license license:bsd-3))) + +(define-public go-github-com-google-go-cmp-0.5.0 + (package + (name "go-github-com-google-go-cmp") + (version "0.5.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "04pzp583p6b32y34c6jygfxarff9qjs39rarvfh6467z24sdd9k4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-1.22.0 + (package + (name "go-google-golang-org-protobuf") + (version "1.22.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0n7lc4m7kfvj01glc0gnjy0zsnsic7cxnbvlajy0h14cxbab87pj")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.0" + ,go-github-com-golang-protobuf-1.4.0))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.4.1 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0w7ks4vffnnkp0miwgc3chrsnmya45lzvpahb2wmw0jwhdp5kdx7")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.22.0" + ,go-google-golang-org-protobuf-1.22.0) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-github-com-census-instrumentation-opencensus-proto-0.2.1 + (package + (name "go-github-com-census-instrumentation-opencensus-proto") + (version "0.2.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/census-instrumentation/opencensus-proto") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19fcx3sc99i5dsklny6r073z5j20vlwn2xqm6di1q3b1xwchzqfj")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/census-instrumentation/opencensus-proto")) + (home-page "https://github.com/census-instrumentation/opencensus-proto") + (synopsis + "OpenCensus Proto - Language Independent Interface Types For OpenCensus") + (description + "Census provides a framework to define and collect stats against metrics and to +break those stats down across user-defined dimensions.") + (license license:asl2.0))) + +(define-public go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4 + (package + (name "go-github-com-prometheus-client-model") + (version "0.0.0-20190812154241-14fe0d1b01d4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/client_model") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0zdmk6rbbx39cvfz0r59v2jg5sg9yd02b4pds5n5llgvivi99550")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/client_model")) + (propagated-inputs + `(("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" + ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0))) + (home-page "https://github.com/prometheus/client_model") + (synopsis "Deprecation note") + (description + "This repository used to contain the code that defined both +the data model and the exposition format of Prometheus metrics.") + (license license:asl2.0))) + +(define-public go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20190311212946-11955173bddd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hlkai67w167wiyivkzd1fgqrnyxkb94l2c6kr51jwcscizfyfn3")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3 + (package + (name "go-golang-org-x-lint") + (version "0.0.0-20190313153728-d0100b6bd8b3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/lint") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0b0amr9x4ji66iv9ayfx7zrfx52k1m5g66qfcxkgj80qrb1y2yn7")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/lint")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" + ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd))) + (home-page "https://golang.org/x/lint") + (synopsis "Installation") + (description "Package lint contains a linter for Go source code. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20190423024810-112230192c58 + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20190423024810-112230192c58") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "05i2k43j2d0llq768hg5pf3hb2yhfzp9la1w5wp0rsnnzblr0lfn")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the +ones provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135 + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20190524140312-2c0ae7006135") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1lsi2ssxajclj3bciz2a41v1vjv768ja3v6wnbyhxy8xphwkp4fk")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" + ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-google-golang-org-grpc-1.23.0 + (package + (name "go-google-golang-org-grpc") + (version "1.23.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1cn33r2gclmq2v1ndpf1n5bmhf2qs8mms7ii5cnl6f9ch4r2c4k3")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" + ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) + ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" + ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) + ("go-google-golang-org-appengine-1.1.0" + ,go-google-golang-org-appengine-1.1.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-google-go-cmp-0.2.0" + ,go-github-com-google-go-cmp-0.2.0) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0) + ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-client9-misspell-0.3.4" + ,go-github-com-client9-misspell-0.3.4) + ("go-github-com-burntsushi-toml-0.3.1" + ,go-github-com-burntsushi-toml-0.3.1) + ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473 + (package + (name "go-github-com-envoyproxy-go-control-plane") + (version "0.9.1-0.20191026205805-5f8ba28d4473") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/envoyproxy/go-control-plane") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1f1s764rd41vd9vgk3r14h1m6fz6pdvxj6fd83q58gxifbc4q5w4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.23.0" ,go-google-golang-org-grpc-1.23.0) + ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" + ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) + ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" + ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2) + ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" + ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) + ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" + ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) + (home-page "https://github.com/envoyproxy/go-control-plane") + (synopsis "control-plane") + (description + "This repository contains a Go-based implementation of an API server that +implements the discovery service APIs defined in +@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") + (license license:asl2.0))) + +(define-public go-github-com-envoyproxy-protoc-gen-validate-0.1.0 + (package + (name "go-github-com-envoyproxy-protoc-gen-validate") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/envoyproxy/protoc-gen-validate") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0kxd3wwh3xwqk0r684hsy281xq4y71cd11d4q2hspcjbnlbwh7cy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/envoyproxy/protoc-gen-validate")) + (home-page "https://github.com/envoyproxy/protoc-gen-validate") + (synopsis "protoc-gen-validate (PGV)") + (description + "PGV is a protoc plugin to generate polyglot message validators. While protocol buffers effectively guarantee the types of structured data, they cannot enforce semantic rules for values. This plugin adds support to protoc-generated code to validate such constraints.") + (license license:asl2.0))) + +(define-public go-github-com-google-go-cmp-0.2.0 + (package + (name "go-github-com-google-go-cmp") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fbv0x27k9sn8svafc0hjwsnckk864lv4yi7bvzrxvmd3d5hskds")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") + (license license:bsd-3))) + +(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20190308221718-c2843e01d9a2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20190311183353-d8887717615a + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190311183353-d8887717615a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1wfm6ngxjyj7v5a2dqib6lw8bb2rdnf1kl48diykxjrsddn0s163")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190215142949-d0b11bdaac8a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.3.2 + (package + (name "go-github-com-golang-protobuf") + (version "1.3.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1k1wb4zr0qbwgpvz9q5ws9zhlal8hq7dmq62pwxxriksayl6hzym")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4 + (package + (name "go-golang-org-x-exp") + (version "0.0.0-20190121172915-509febef88a4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/exp") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "02isrh39z8znrp5znplzy0dip2gnrl3jm1355raliyvhnhg04j6q")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/exp")) + (home-page "https://golang.org/x/exp") + (synopsis "exp") + (description + "This subrepository holds experimental and deprecated (in the @code{old} +directory) packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961 + (package + (name "go-golang-org-x-lint") + (version "0.0.0-20190227174305-5b3e6a55c961") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/lint") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "04zp5vbds9nffmjg36wjpi5vg9zmf890yf78xxasai3ni637ivfw")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/lint")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" + ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c))) + (home-page "https://golang.org/x/lint") + (synopsis "Installation") + (description "Package lint contains a linter for Go source code. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190213061140-3a22650c66bd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12q6fgdkc0742vcms67nzadgdwvi3rnb1gx3vwkljhrvlnwvz7wc")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20181108010431-42b317875d0f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0mrjhk7al7yyh76x9flvxy4jm5jyqh2fxbxagpaazxn1xdgkaif3")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the +ones provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20180724234803-3673e40ba225") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0vx7mz18p480p7fh0w5jv6mfdbsswrlac1sz4i705q7q7ygz59lm")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-google-golang-org-appengine-1.4.0 + (package + (name "go-google-golang-org-appengine") + (version "1.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/appengine") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "06zl7w4sxgdq2pl94wy9ncii6h0z3szl4xpqds0sv3b3wbdlhbnn")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/appengine")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225" + ,go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0))) + (home-page "https://google.golang.org/appengine") + (synopsis "Go App Engine packages") + (description + "Package appengine provides basic functionality for Google App Engine. +") + (license license:asl2.0))) + +(define-public go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20190226205152-f727befe758c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0rpcqw6z13qd33rbasg32zb0gdhgh5lzjla63r6g651zf6hpsak0")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-google-golang-org-appengine-1.4.0" + ,go-google-golang-org-appengine-1.4.0) + ("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" + ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) + ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" + ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-cloud-google-com-go-0.26.0 + (package + (name "go-cloud-google-com-go") + (version "0.26.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-cloud-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "149v3ci17g6wd2pm18mzcncq5qpl9hwdjnz3rlbn5rfidyn46la1")))) + (build-system go-build-system) + (arguments '(#:import-path "cloud.google.com/go")) + (home-page "https://cloud.google.com/go") + (synopsis "Google Cloud Client Libraries for Go") + (description + "Package cloud is the root of the packages used to access Google Cloud +Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +of sub-packages. +") + (license license:asl2.0))) + +(define-public go-github-com-burntsushi-toml-0.3.1 + (package + (name "go-github-com-burntsushi-toml") + (version "0.3.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/BurntSushi/toml") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fjdwwfzyzllgiwydknf1pwjvy49qxfsczqx5gz3y0izs7as99j6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/BurntSushi/toml")) + (home-page "https://github.com/BurntSushi/toml") + (synopsis "TOML parser and encoder for Go with reflection") + (description + "Package toml implements decoding and encoding of TOML files. +") + (license license:expat))) + +(define-public go-github-com-client9-misspell-0.3.4 + (package + (name "go-github-com-client9-misspell") + (version "0.3.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/client9/misspell") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1vwf33wsc4la25zk9nylpbp9px3svlmldkm0bha4hp56jws4q9cs")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/client9/misspell")) + (home-page "https://github.com/client9/misspell") + (synopsis "Install") + (description + "Package misspell corrects commonly misspelled English words in source files. +") + (license license:expat))) + +(define-public go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b + (package + (name "go-github-com-golang-glog") + (version "0.0.0-20160126235308-23def4e6c14b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/glog") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0jb2834rw5sykfr937fxi8hxi2zy80sj2bdn9b3jb4b26ksqng30")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/glog")) + (home-page "https://github.com/golang/glog") + (synopsis "glog") + (description + "Package glog implements logging analogous to the Google-internal C++ INFO/ERROR/V setup. +It provides functions Info, Warning, Error, Fatal, plus formatting variants such as +Infof. It also provides V-style logging controlled by the -v and -vmodule=file=2 flags. +") + (license license:asl2.0))) + +(define-public go-github-com-golang-mock-1.1.1 + (package + (name "go-github-com-golang-mock") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/mock") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ap8wb6pdl6ccmdb43advjll2ly4sz26wsc3axw0hbrjrybybzgy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/mock")) + (home-page "https://github.com/golang/mock") + (synopsis "gomock") + (description + "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It +integrates well with Go's built-in @code{testing} package, but can be used in other +contexts too.") + (license license:asl2.0))) + +(define-public go-github-com-golang-protobuf-1.2.0 + (package + (name "go-github-com-golang-protobuf") + (version "1.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0kf4b59rcbb1cchfny2dm9jyznp8ri2hsb14n8iak1q8986xa0ab")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3 + (package + (name "go-golang-org-x-lint") + (version "0.0.0-20181026193005-c67002cb31c3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/lint") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0gymbggskjmphqxqcx4s0vnlcz7mygbix0vhwcwv5r67c0bf6765")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/lint")) + (home-page "https://golang.org/x/lint") + (synopsis "Installation") + (description "Package lint contains a linter for Go source code. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d + (package + (name "go-golang-org-x-net") + (version "0.0.0-20180826012351-8a410e7b638d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hp0l8f6fir5gmgrjq0mhh5ikc0rlrm72774228800kfwqjrxxny")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be + (package + (name "go-golang-org-x-oauth2") + (version "0.0.0-20180821212333-d2e6202438be") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/oauth2") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wbn75fd10485nb93bm4kqldqifdim5xqy4v7r5sdvimvf3fyhn7")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/oauth2")) + (home-page "https://golang.org/x/oauth2") + (synopsis "OAuth2 for Go") + (description + "Package oauth2 provides support for making +OAuth2 authorized and authenticated HTTP requests, +as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +It can additionally grant authorization with Bearer JWT. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20180314180146-1d60e4601c6f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "046jlanz2lkxq1r57x9bl6s4cvfqaic6p2xybsj8mq1120jv4rs6")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the +ones provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20180830151530-49385e6e1522") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0spbldahns09fdxkxflb1x24f8k2awdlnr6k5i7ci4fqd19r1dv4")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-text-0.3.0 + (package + (name "go-golang-org-x-text") + (version "0.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/text")) + (home-page "https://golang.org/x/text") + (synopsis "Go Text") + (description + "text is a repository of text-related packages related to internationalization +(i18n) and localization (l10n), such as character encodings, text +transformations, and locale-specific text handling. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20190114222345-bf090417da8b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1n3xp56k4k3lj06rx7587wr5gnwg0148nvwx6ch0g7ar02hh94hw")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-google-golang-org-appengine-1.1.0 + (package + (name "go-google-golang-org-appengine") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/appengine") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1pz202zszg8f35dk5pfhwgcdi3r6dx1l4yk6x6ly7nb4j45zi96x")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/appengine")) + (home-page "https://google.golang.org/appengine") + (synopsis "Go App Engine packages") + (description + "Package appengine provides basic functionality for Google App Engine. +") + (license license:asl2.0))) + +(define-public go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8 + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20180817151627-c66870c02cf8") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0siq7sv68556ygqi2d2zmvx8l1xjqdc0fylqzci5h1mq2i14bayn")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-google-golang-org-grpc-1.19.0 + (package + (name "go-google-golang-org-grpc") + (version "1.19.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1znqwpj7ix3dpzx4zch0q70sdl3z5lvbb7v3q4i8sf8kas3yv71v")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" + ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) + ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" + ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) + ("go-google-golang-org-appengine-1.1.0" + ,go-google-golang-org-appengine-1.1.0) + ("go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b" + ,go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b) + ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522" + ,go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522) + ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" + ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d" + ,go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d) + ("go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3" + ,go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0) + ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-client9-misspell-0.3.4" + ,go-github-com-client9-misspell-0.3.4) + ("go-github-com-burntsushi-toml-0.3.1" + ,go-github-com-burntsushi-toml-0.3.1) + ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099 + (package + (name "go-honnef-co-go-tools") + (version "0.0.0-20190102054323-c2f93a96b099") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/dominikh/go-tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "07lg29aiap80ca9f201jzng9vjr168cv3qmvjmbd7v5pmww9kmr8")))) + (build-system go-build-system) + (arguments '(#:import-path "honnef.co/go/tools")) + (home-page "https://honnef.co/go/tools") + (synopsis "Documentation") + (description + "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, +offers simplifications, and enforces style rules.") + (license license:expat))) + +(define-public go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55 + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20190819201941-24fa4b261c55") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "109zhaqlfd8zkbr1hk6zqbs6vcxfrk64scjwh2nswph05gr0m84d")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" + ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) + ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) + ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" + ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) + ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" + ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) + ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" + ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-google-golang-org-grpc-1.27.0 + (package + (name "go-google-golang-org-grpc") + (version "1.27.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ijrmgrxyabfn51nm3p9l81iaasq5fg237wnr6mdc4dzsfcg8kd7")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" + ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-github-com-google-go-cmp-0.2.0" + ,go-github-com-google-go-cmp-0.2.0) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2) + ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" + ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) + ("go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473" + ,go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-github-com-google-go-cmp-0.3.0 + (package + (name "go-github-com-google-go-cmp") + (version "0.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1hyxx3434zshl2m9ja78gwlkg1rx9yl6diqa7dnjb31xz5x4gbjj")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd + (package + (name "go-google-golang-org-protobuf") + (version "0.0.0-20200109180630-ec00e32a8dfd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0w6lp9w2avxcpxwzzhspr209ifhyjagvs23k0vykfdqahl1aplrh")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.3.0" + ,go-github-com-google-go-cmp-0.3.0))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.4.0-rc.1 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.0-rc.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "186rirvbfgv6hrxp27ipx2cdpv19qifdd20biqfdm01wiyclqimn")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd" + ,go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd) + ("go-github-com-google-go-cmp-0.3.1" + ,go-github-com-google-go-cmp-0.3.1))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-github-com-google-go-cmp-0.3.1 + (package + (name "go-github-com-google-go-cmp") + (version "0.3.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1caw49i0plkjxir7kdf5qhwls3krqwfmi7g4h392rdfwi3kfahx1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64 + (package + (name "go-google-golang-org-protobuf") + (version "0.0.0-20200221191635-4d8936d0db64") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0563bsvdjj6k0sgwqd5yzrgfiax7sp3lcwh608gync5sv9fx39cy")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.3.1" + ,go-github-com-google-go-cmp-0.3.1) + ("go-github-com-golang-protobuf-1.4.0-rc.1" + ,go-github-com-golang-protobuf-1.4.0-rc.1))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.0-rc.1.0.20200221234624-67d41d38c208") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ykxhg3zixmw25pd435f8h16wnz1g00jpcmmg3xl030kksgqgpp6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64" + ,go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60 + (package + (name "go-google-golang-org-protobuf") + (version "0.0.0-20200228230310-ab0ca4ff8a60") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1rinspcznfp85yz4vrlf4h38hr576virgv8lcs22bsylqga808sd")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208" + ,go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.4.0-rc.2 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.0-rc.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1hd43hjv5zl6bjbmhm5phx74bw4xajsi73m5zky2k56za4mpgzzc")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60" + ,go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967 + (package + (name "go-google-golang-org-protobuf") + (version "1.20.1-0.20200309200217-e05f789c0967") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "17wmy89hnmpkwc63rfcjp50q15s9f1rhmczg06c3z9yy41zk82w9")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.0-rc.2" + ,go-github-com-golang-protobuf-1.4.0-rc.2))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.0-rc.4.0.20200313231945-b860323f09d0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1zj6cwshx0l5n9cn2cpbikzzb79px5dmkpc4p19zy1iif5r5p0z0")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967" + ,go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-1.21.0 + (package + (name "go-google-golang-org-protobuf") + (version "1.21.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12bwln8z1lf9105gdp6ip0rx741i4yfz1520gxnp8861lh9wcl63")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0" + ,go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.4.0 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fjvl5n77abxz5qsd4mgyvjq19x43c5bfvmq62mq3m5plx6zksc8")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.21.0" + ,go-google-golang-org-protobuf-1.21.0) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-github-com-google-go-cmp-0.4.0 + (package + (name "go-github-com-google-go-cmp") + (version "0.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1x5pvl3fb5sbyng7i34431xycnhmx8xx94gq2n19g6p0vz68z2v2")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc + (package + (name "go-google-golang-org-protobuf") + (version "1.23.1-0.20200526195155-81db48ad09cc") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "02cpr8rqr5wmpj2fqb32mzilsdnxkh52g1jz95a3ck3gzffc7hh1")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.0" + ,go-github-com-golang-protobuf-1.4.0))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc + (package + (name "go-honnef-co-go-tools") + (version "0.0.0-20190523083050-ea95bdfd59fc") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/dominikh/go-tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1763nw7pwpzkvzfnm63dgzcgbq9hwmq5l1nffchnhh77vgkaq4ic")))) + (build-system go-build-system) + (arguments '(#:import-path "honnef.co/go/tools")) + (home-page "https://honnef.co/go/tools") + (synopsis "Documentation") + (description + "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, +offers simplifications, and enforces style rules.") + (license license:expat))) + +(define-public go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013 + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20200526211855-cb27e3aa2013") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ml73ghqcwbz7ipfk8fnxb5indcml49b5p7vp1fsyny0abyyrmxf")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" + ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) + ("go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc" + ,go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-golang-protobuf-1.4.1" + ,go-github-com-golang-protobuf-1.4.1))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +APIs.") + (license license:asl2.0))) + +(define-public go-google-golang-org-protobuf-1.25.0 + (package + (name "go-google-golang-org-protobuf") + (version "1.25.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0apfl42x166dh96zfq5kvv4b4ax9xljik6bq1mnvn2240ir3mc23")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" + ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) + ("go-github-com-google-go-cmp-0.5.0" + ,go-github-com-google-go-cmp-0.5.0) + ("go-github-com-golang-protobuf-1.4.1" + ,go-github-com-golang-protobuf-1.4.1))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-google-golang-org-grpc-1.38.0 + (package + (name "go-google-golang-org-grpc") + (version "1.38.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "08lgqdvbd0i4qwsv1y37qmf8mhsy9ywzx73ixiwih7xhnalrf7xl")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.25.0" + ,go-google-golang-org-protobuf-1.25.0) + ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" + ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) + ("go-github-com-google-go-cmp-0.5.0" + ,go-github-com-google-go-cmp-0.5.0) + ("go-github-com-golang-protobuf-1.4.2" + ,go-github-com-golang-protobuf-1.4.2) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-envoyproxy-go-control-plane-0.9.9-0.20210217033140-668b12f5399d" + ,go-github-com-envoyproxy-go-control-plane-0.9.9-0.20210217033140-668b12f5399d) + ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" + ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC. +") + (license license:asl2.0))) + +(define-public go-google-golang-org-protobuf-1.26.0-rc.1 + (package + (name "go-google-golang-org-protobuf") + (version "1.26.0-rc.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1m2jp247qcnix42jncn0q7pwrjgbhiqllb1115hfsz40xfnfhp8j")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.5.5" + ,go-github-com-google-go-cmp-0.5.5))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.5.0 + (package + (name "go-github-com-golang-protobuf") + (version "1.5.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1craaxv34g4g8q3yrv6pr28fx9ihnk7hj5gnbmxcrhcp78423lnf")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.26.0-rc.1" + ,go-google-golang-org-protobuf-1.26.0-rc.1) + ("go-github-com-google-go-cmp-0.5.5" + ,go-github-com-google-go-cmp-0.5.5))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module +(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543 + (package + (name "go-golang-org-x-xerrors") + (version "0.0.0-20191204190536-9bdfabe68543") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/xerrors") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1yjfi1bk9xb81lqn85nnm13zz725wazvrx3b50hx19qmwg7a4b0c")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/xerrors")) + (home-page "https://golang.org/x/xerrors") + (synopsis #f) + (description + "Package xerrors implements functions to manipulate errors. +") + (license license:bsd-3))) + +(define-public go-github-com-google-go-cmp-0.5.5 + (package + (name "go-github-com-google-go-cmp") + (version "0.5.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12fmkdhyv5d4is8s57k78j097zb0phlgnrkqc03agiszxlid69x7")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-1.27.1 + (package + (name "go-google-golang-org-protobuf") + (version "1.27.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0aszb7cv8fq1m8akgd4kjyg5q7g5z9fdqnry6057ygq9r8r2yif2")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.5.5" + ,go-github-com-google-go-cmp-0.5.5) + ("go-github-com-golang-protobuf-1.5.0" + ,go-github-com-golang-protobuf-1.5.0))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-gopkg-in-yaml-v2-2.4.0 + (package + (name "go-gopkg-in-yaml-v2") + (version "2.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1pbmrpj7gcws34g8vwna4i2nhm9p6235piww36436xhyaa10cldr")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v2") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language. +") + (license license:asl2.0))) + +(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 + (package + (name "go-gopkg-in-check-v1") + (version "0.0.0-20161208181325-20d25e280405") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/check.v1") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) + (home-page "https://gopkg.in/check.v1") + (synopsis "Instructions") + (description + "Package check is a rich testing extension for Go's testing package. +") + (license license:bsd-2))) + +(define-public go-gopkg-in-yaml-v3-3.0.0-20210107192922-496545a6307b + (package + (name "go-gopkg-in-yaml-v3") + (version "3.0.0-20210107192922-496545a6307b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v3") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "06f4lnrp494wqaygv09dggr2dwf3z2bawqhnlnnwiamg5y787k4g")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v3") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language. +") + (license #f))) + +(define-public go-oras-land-oras-go-1.0.0 + (package + (name "go-oras-land-oras-go") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/oras-project/oras-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1pqix8xj298229c886ahdggsvbg4srm4izjr66icvfjjx7rndagz")))) + (build-system go-build-system) + (arguments '(#:import-path "oras.land/oras-go")) + (propagated-inputs + `(("go-gopkg-in-yaml-v3-3.0.0-20210107192922-496545a6307b" + ,go-gopkg-in-yaml-v3-3.0.0-20210107192922-496545a6307b) + ("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) + ("go-google-golang-org-protobuf-1.27.1" + ,go-google-golang-org-protobuf-1.27.1) + ("go-google-golang-org-grpc-1.38.0" ,go-google-golang-org-grpc-1.38.0) + ("go-google-golang-org-genproto-0.0.0-20210602131652-f16073e35f0c" + ,go-google-golang-org-genproto-0.0.0-20210602131652-f16073e35f0c) + ("go-golang-org-x-text-0.3.6" ,go-golang-org-x-text-0.3.6) + ("go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1" + ,go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1) + ("go-golang-org-x-net-0.0.0-20211112202133-69e39bad7dc2" + ,go-golang-org-x-net-0.0.0-20211112202133-69e39bad7dc2) + ("go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20140908184405-b21fdbd4370f" + ,go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20140908184405-b21fdbd4370f) + ("go-github-com-yvasiyarov-gorelic-0.0.0-20141212073537-a9bba5b9ab50" + ,go-github-com-yvasiyarov-gorelic-0.0.0-20141212073537-a9bba5b9ab50) + ("go-github-com-yvasiyarov-go-metrics-0.0.0-20140926110328-57bccd1ccd43" + ,go-github-com-yvasiyarov-go-metrics-0.0.0-20140926110328-57bccd1ccd43) + ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) + ("go-github-com-prometheus-procfs-0.6.0" + ,go-github-com-prometheus-procfs-0.6.0) + ("go-github-com-prometheus-common-0.10.0" + ,go-github-com-prometheus-common-0.10.0) + ("go-github-com-prometheus-client-model-0.2.0" + ,go-github-com-prometheus-client-model-0.2.0) + ("go-github-com-prometheus-client-golang-1.7.1" + ,go-github-com-prometheus-client-golang-1.7.1) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-morikuni-aec-1.0.0" ,go-github-com-morikuni-aec-1.0.0) + ("go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd" + ,go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd) + ("go-github-com-moby-locker-1.0.1" ,go-github-com-moby-locker-1.0.1) + ("go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369" + ,go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369) + ("go-github-com-klauspost-compress-1.11.13" + ,go-github-com-klauspost-compress-1.11.13) + ("go-github-com-inconshreveable-mousetrap-1.0.0" + ,go-github-com-inconshreveable-mousetrap-1.0.0) + ("go-github-com-gorilla-mux-1.8.0" ,go-github-com-gorilla-mux-1.8.0) + ("go-github-com-gorilla-handlers-1.5.1" + ,go-github-com-gorilla-handlers-1.5.1) + ("go-github-com-gomodule-redigo-1.8.2" + ,go-github-com-gomodule-redigo-1.8.2) + ("go-github-com-golang-protobuf-1.5.2" + ,go-github-com-golang-protobuf-1.5.2) + ("go-github-com-gogo-protobuf-1.3.2" + ,go-github-com-gogo-protobuf-1.3.2) + ("go-github-com-felixge-httpsnoop-1.0.1" + ,go-github-com-felixge-httpsnoop-1.0.1) + ("go-github-com-docker-libtrust-0.0.0-20150114040149-fa567046d9b1" + ,go-github-com-docker-libtrust-0.0.0-20150114040149-fa567046d9b1) + ("go-github-com-docker-go-units-0.4.0" + ,go-github-com-docker-go-units-0.4.0) + ("go-github-com-docker-go-metrics-0.0.1" + ,go-github-com-docker-go-metrics-0.0.1) + ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" + ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) + ("go-github-com-docker-go-connections-0.4.0" + ,go-github-com-docker-go-connections-0.4.0) + ("go-github-com-docker-docker-credential-helpers-0.6.4" + ,go-github-com-docker-docker-credential-helpers-0.6.4) + ("go-github-com-docker-distribution-2.7.1+incompatible" + ,go-github-com-docker-distribution-2.7.1+incompatible) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1) + ("go-github-com-cespare-xxhash-v2-2.1.1" + ,go-github-com-cespare-xxhash-v2-2.1.1) + ("go-github-com-bugsnag-panicwrap-0.0.0-20151223152923-e2c28503fcd0" + ,go-github-com-bugsnag-panicwrap-0.0.0-20151223152923-e2c28503fcd0) + ("go-github-com-bugsnag-osext-0.0.0-20130617224835-0dd3f918b21b" + ,go-github-com-bugsnag-osext-0.0.0-20130617224835-0dd3f918b21b) + ("go-github-com-bugsnag-bugsnag-go-0.0.0-20141110184014-b1d153021fcd" + ,go-github-com-bugsnag-bugsnag-go-0.0.0-20141110184014-b1d153021fcd) + ("go-github-com-bshuster-repo-logrus-logstash-hook-1.0.0" + ,go-github-com-bshuster-repo-logrus-logstash-hook-1.0.0) + ("go-github-com-beorn7-perks-1.0.1" ,go-github-com-beorn7-perks-1.0.1) + ("go-github-com-shopify-logrus-bugsnag-0.0.0-20171204204709-577dee27f20d" + ,go-github-com-shopify-logrus-bugsnag-0.0.0-20171204204709-577dee27f20d) + ("go-github-com-azure-go-ansiterm-0.0.0-20170929234023-d6e3b3328b78" + ,go-github-com-azure-go-ansiterm-0.0.0-20170929234023-d6e3b3328b78) + ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" + ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) + ("go-golang-org-x-crypto-0.0.0-20211117183948-ae814b36b871" + ,go-golang-org-x-crypto-0.0.0-20211117183948-ae814b36b871) + ("go-github-com-stretchr-testify-1.7.0" + ,go-github-com-stretchr-testify-1.7.0) + ("go-github-com-spf13-cobra-1.2.1" ,go-github-com-spf13-cobra-1.2.1) + ("go-github-com-sirupsen-logrus-1.8.1" + ,go-github-com-sirupsen-logrus-1.8.1) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-phayes-freeport-0.0.0-20180830031419-95f893ade6f2" + ,go-github-com-phayes-freeport-0.0.0-20180830031419-95f893ade6f2) + ("go-github-com-opencontainers-image-spec-1.0.2" + ,go-github-com-opencontainers-image-spec-1.0.2) + ("go-github-com-opencontainers-go-digest-1.0.0" + ,go-github-com-opencontainers-go-digest-1.0.0) + ("go-github-com-docker-docker-20.10.11+incompatible" + ,go-github-com-docker-docker-20.10.11+incompatible) + ("go-github-com-docker-cli-20.10.11+incompatible" + ,go-github-com-docker-cli-20.10.11+incompatible) + ("go-github-com-distribution-distribution-v3-3.0.0-20211118083504-a29a3c99a684" + ,go-github-com-distribution-distribution-v3-3.0.0-20211118083504-a29a3c99a684) + ("go-github-com-containerd-containerd-1.5.8" + ,go-github-com-containerd-containerd-1.5.8))) + (home-page "https://oras.land/oras-go") + (synopsis "ORAS Go library") + (description + "Documentation for the ORAS Go library is located on +the project website: @url{https://oras.land/client_libraries/go/,oras.land/client_libraries/go}") + (license license:asl2.0))) + +(define-public go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20210226172049-e18ecbb05110") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1vlq8mdscp7yfaa1lmyv03y5m4c2d67ydg2q1i6smkrxghn3zn3q")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) + ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" + ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) + ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" + ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20210615035016-665e8c7367d1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "11n848csibdbv7b46zjyf4l7sphg37n9sjzqfy1ds7p1jyakwmnv")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20201119102817-f84b799fce68") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1dvhqian5byzkcg1bnqzygqa6ccc6krc2q7j12pp1vhl3y7znnsg")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1 + (package + (name "go-golang-org-x-term") + (version "0.0.0-20201126162022-7de9c90e9dd1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/term") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ba252xmv6qsvf1w1gcy98mngrj0vd4inbjw0lsklqvva65nljna")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/term")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" + ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) + (home-page "https://golang.org/x/term") + (synopsis "Go terminal/console support") + (description + "Package term provides support functions for dealing with terminals, as +commonly found on UNIX systems. +") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20180917221912-90fa682c2a6e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-golang-org-x-text-0.3.3 + (package + (name "go-golang-org-x-text") + (version "0.3.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19pihqm3phyndmiw6i42pdv6z1rbvlqlsnhsyqf9gsnn0qnmqqlh")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/text")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" + ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) + (home-page "https://golang.org/x/text") + (synopsis "Go Text") + (description + "text is a repository of text-related packages related to internationalization +(i18n) and localization (l10n), such as character encodings, text +transformations, and locale-specific text handling. +") + (license license:bsd-3))) + +(define-public go-github-com-hpcng-golang-x-crypto-0.0.0-20210830200829-e6b35e3fb874 + (package + (name "go-github-com-hpcng-golang-x-crypto") + (version "0.0.0-20210830200829-e6b35e3fb874") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hpcng/golang-x-crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "17zbxn6m550dkfcx7hi6wvl7f5gm39hx72bfkdjgpzq05fdb1bfk")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hpcng/golang-x-crypto")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) + ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" + ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) + ("go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1" + ,go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1) + ("go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110" + ,go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110))) + (home-page "https://github.com/hpcng/golang-x-crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + From c63f4ca45295229a12a5f67f7b79978d74b7fa4b Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Sat, 11 Dec 2021 13:33:10 +0100 Subject: [PATCH 159/383] adding go deps to singularity --- glicid/packages/linux.scm | 50 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) diff --git a/glicid/packages/linux.scm b/glicid/packages/linux.scm index 64b1acd..df3ab27 100644 --- a/glicid/packages/linux.scm +++ b/glicid/packages/linux.scm @@ -114,6 +114,56 @@ ("cryptsetup", cryptsetup) ("go", go-1.17) ("pkg-config", pkg-config) + ("go-github-com-AdamKorcz-go-fuzz-headers", go-github-com-AdamKorcz-go-fuzz-headers) + ("go-github-com-Netflix-go-expect", go-github-com-Netflix-go-expect) + ("go-github-com-adigunhammedolalekan-registry-auth", go-github-com-adigunhammedolalekan-registry-auth) + ("go-github-com-alexflint-go-filemutex", go-github-com-alexflint-go-filemutex) + ("go-github-com-apex-log", go-github-com-apex-log) + ("go-github-com-blang-semver-v4", go-github-com-blang-semver-v4) + ("go-github-com-buger-jsonparser", go-github-com-buger-jsonparser) + ("go-github-com-bugsnag-bugsnag-go", go-github-com-bugsnag-bugsnag-go) + ("go-github-com-bugsnag-panicwrap", go-github-com-bugsnag-panicwrap) + ("go-github-com-containerd-cgroups", go-github-com-containerd-cgroups) + ("go-github-com-containerd-containerd", go-github-com-containerd-containerd) + ("go-github-com-containernetworking-cni", go-github-com-containernetworking-cni) + ("go-github-com-containernetworking-plugins", go-github-com-containernetworking-plugins) + ("go-github-com-containers-image-v5", go-github-com-containers-image-v5) + ("go-github-com-cyphar-filepath-securejoin", go-github-com-cyphar-filepath-securejoin) + ("go-github-com-fatih-color", go-github-com-fatih-color) + ("go-github-com-go-log-log", go-github-com-go-log-log) + ("go-github-com-godbus-dbus", go-github-com-godbus-dbus) + ("go-github-com-google-uuid", go-github-com-google-uuid) + ("go-github-com-gorilla-websocket", go-github-com-gorilla-websocket) + ("go-github-com-hpcng-sif", go-github-com-hpcng-sif) + ("go-github-com-kardianos-osext", go-github-com-kardianos-osext) + ("go-github-com-kr-pty", go-github-com-kr-pty) + ("go-github-com-opencontainers-go-digest", go-github-com-opencontainers-go-digest) + ("go-github-com-opencontainers-image-spec", go-github-com-opencontainers-image-spec) + ("go-github-com-opencontainers-runtime-spec", go-github-com-opencontainers-runtime-spec) + ("go-github-com-opencontainers-runtime-tools", go-github-com-opencontainers-runtime-tools) + ("go-github-com-opencontainers-selinux", go-github-com-opencontainers-selinux) + ("go-github-com-opencontainers-umoci", go-github-com-opencontainers-umoci) + ("go-github-com-pelletier-go-toml", go-github-com-pelletier-go-toml) + ("go-github-com-pkg-errors", go-github-com-pkg-errors) + ("go-github-com-russross-blackfriday-v2", go-github-com-russross-blackfriday-v2) + ("go-github-com-satori-go-uuid", go-github-com-satori-go-uuid) + ("go-github-com-seccomp-containers-golang", go-github-com-seccomp-containers-golang) + ("go-github-com-seccomp-libseccomp-golang", go-github-com-seccomp-libseccomp-golang) + ("go-github-com-spf13-cobra", go-github-com-spf13-cobra) + ("go-github-com-spf13-pflag", go-github-com-spf13-pflag) + ("go-github-com-sylabs-json-resp", go-github-com-sylabs-json-resp) + ("go-github-com-sylabs-scs-build-client", go-github-com-sylabs-scs-build-client) + ("go-github-com-sylabs-scs-key-client", go-github-com-sylabs-scs-key-client) + ("go-github-com-sylabs-scs-library-client", go-github-com-sylabs-scs-library-client) + ("go-github-com-urfave-cli", go-github-com-urfave-cli) + ("go-github-com-vbauerster-mpb-v4", go-github-com-vbauerster-mpb-v4) + ("go-github-com-vbauerster-mpb-v6", go-github-com-vbauerster-mpb-v6) + ("go-github-com-xeipuuv-gojsonpointer", go-github-com-xeipuuv-gojsonpointer) + ("go-github-com-yvasiyarov-go-metrics", go-github-com-yvasiyarov-go-metrics) + ("go-github-com-yvasiyarov-gorelic", go-github-com-yvasiyarov-gorelic) + ("go-github-com-yvasiyarov-newrelic_platform_go", go-github-com-yvasiyarov-newrelic_platform_go) + ("go-golang-org-x-crypto", go-golang-org-x-crypto) + ("go-golang-org-x-sys", go-golang-org-x-sys) )) (arguments `(#:phases From 6d365fa940aab82c82c9bc3d42b40d2aaafc7dba Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Sat, 11 Dec 2021 13:46:12 +0100 Subject: [PATCH 160/383] unpublish golang --- glicid/packages/golang.scm | 221068 +++++++++++++++++----------------- 1 file changed, 110534 insertions(+), 110534 deletions(-) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index c543ce0..96e6ce8 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -6,110538 +6,110538 @@ #:use-module (guix packages) ) -(define-public go-github-com-adamkorcz-go-fuzz-headers-0.0.0-20210319161527-f761c2329661 - (package - (name "go-github-com-adamkorcz-go-fuzz-headers") - (version "0.0.0-20210319161527-f761c2329661") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/AdamKorcz/go-fuzz-headers") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "043a8lialk5kmxy2g5ka1pss8k71d42y4g0ikkv0ls8kgvxw3cc6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/AdamKorcz/go-fuzz-headers")) - (home-page "https://github.com/AdamKorcz/go-fuzz-headers") - (synopsis #f) - (description #f) - (license #f))) - -(define-public go-github-com-netflix-go-expect-0.0.0-20190729225929-0e00d9168667 - (package - (name "go-github-com-netflix-go-expect") - (version "0.0.0-20190729225929-0e00d9168667") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/Netflix/go-expect") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0kzas7m7fllyj3cn2ijasaw7xkv2yvqxli2l1j3jqsi0ln51fa52")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/Netflix/go-expect")) - (home-page "https://github.com/Netflix/go-expect") - (synopsis "go-expect") - (description - "Package expect provides an expect-like interface to automate control of -applications. It is unlike expect in that it does not spawn or manage -process lifecycle. This package only focuses on expecting output and sending -input through it's psuedoterminal. -") - (license license:asl2.0))) - -(define-public go-github-com-docker-distribution-2.7.1+incompatible - (package - (name "go-github-com-docker-distribution") - (version "2.7.1+incompatible") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/distribution/distribution") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1nx8b5a68rn81alp8wkkw6qd5v32mgf0fk23mxm60zdf63qk1nzw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/docker/distribution")) - (home-page "https://github.com/docker/distribution") - (synopsis "Distribution") - (description - "Package distribution will define the interfaces for the components of -docker distribution. The goal is to allow users to reliably package, ship -and store content related to docker images. -") - (license license:asl2.0))) - -(define-public go-github-com-docker-libtrust-0.0.0-20160708172513-aabc10ec26b7 - (package - (name "go-github-com-docker-libtrust") - (version "0.0.0-20160708172513-aabc10ec26b7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/docker/libtrust") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1lwslbggzc2b0c4wxl5pn6i2nfgz5jz8f7s7vnid9mrlsk59h7s1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/docker/libtrust")) - (home-page "https://github.com/docker/libtrust") - (synopsis "libtrust") - (description - "Package libtrust provides an interface for managing authentication and -authorization using public key cryptography. Authentication is handled -using the identity attached to the public key and verified through TLS -x509 certificates, a key challenge, or signature. Authorization and -access control is managed through a trust graph distributed between -both remote trust servers and locally cached and managed data. -") - (license license:asl2.0))) - -(define-public go-github-com-gorilla-mux-1.7.4 - (package - (name "go-github-com-gorilla-mux") - (version "1.7.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gorilla/mux") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1d0sy1paa055ic84sp3766s9pa24q008hf77dc842vrgvn8p3wmh")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/gorilla/mux")) - (home-page "https://github.com/gorilla/mux") - (synopsis "gorilla/mux") - (description "Package mux implements a request router and dispatcher. -") - (license license:bsd-3))) - -(define-public go-github-com-davecgh-go-spew-1.1.1 - (package - (name "go-github-com-davecgh-go-spew") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/davecgh/go-spew") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/davecgh/go-spew")) - (home-page "https://github.com/davecgh/go-spew") - (synopsis "go-spew") - (description - "Go-spew implements a deep pretty printer for Go data structures to aid in -debugging. A comprehensive suite of tests with 100% test coverage is provided -to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage -report. Go-spew is licensed under the liberal ISC license, so it may be used in -open source or commercial projects.") - (license license:isc))) - -(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.1 - (package - (name "go-github-com-konsorten-go-windows-terminal-sequences") - (version "1.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/konsorten/go-windows-terminal-sequences") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1lchgf27n276vma6iyxa0v1xds68n2g8lih5lavqnx5x6q5pw2ip")))) - (build-system go-build-system) - (arguments - '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) - (home-page "https://github.com/konsorten/go-windows-terminal-sequences") - (synopsis "Windows Terminal Sequences") - (description - "This library allow for enabling Windows terminal color support for Go.") - (license license:expat))) - -(define-public go-github-com-pmezard-go-difflib-1.0.0 - (package - (name "go-github-com-pmezard-go-difflib") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pmezard/go-difflib") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pmezard/go-difflib")) - (home-page "https://github.com/pmezard/go-difflib") - (synopsis "go-difflib") - (description - "Go-difflib is a partial port of python 3 difflib package. Its main goal -was to make unified and context diff available in pure Go, mostly for -testing purposes.") - (license license:bsd-3))) - -(define-public go-github-com-stretchr-objx-0.1.1 - (package - (name "go-github-com-stretchr-objx") - (version "0.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/objx") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0iph0qmpyqg4kwv8jsx6a56a7hhqq8swrazv40ycxk9rzr0s8yls")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/objx")) - (home-page "https://github.com/stretchr/objx") - (synopsis "Objx") - (description - "Objx - Go package for dealing with maps, slices, JSON and other data. -") - (license license:expat))) - -(define-public go-github-com-stretchr-testify-1.2.2 - (package - (name "go-github-com-stretchr-testify") - (version "1.2.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/testify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0dlszlshlxbmmfxj5hlwgv3r22x0y1af45gn1vd198nvvs3pnvfs")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/testify")) - (home-page "https://github.com/stretchr/testify") - (synopsis "Testify - Thou Shalt Write Tests") - (description - "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190422165155-953cdadca894") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0gkha4whk8xkcv3isigbs250akag99isxnd3v9xmy0kl3g88hxy1")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-sirupsen-logrus-1.4.2 - (package - (name "go-github-com-sirupsen-logrus") - (version "1.4.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sirupsen/logrus") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "087k2lxrr9p9dh68yw71d05h5g9p5v26zbwd6j7lghinjfaw334x")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/sirupsen/logrus")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894" - ,go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894) - ("go-github-com-stretchr-testify-1.2.2" - ,go-github-com-stretchr-testify-1.2.2) - ("go-github-com-stretchr-objx-0.1.1" - ,go-github-com-stretchr-objx-0.1.1) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.1" - ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.1) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/sirupsen/logrus") - (synopsis "Logrus") - (description - "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. -") - (license license:expat))) - -(define-public go-github-com-adigunhammedolalekan-registry-auth-0.0.0-20200730122110-8cde180a3a60 - (package - (name "go-github-com-adigunhammedolalekan-registry-auth") - (version "0.0.0-20200730122110-8cde180a3a60") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/adigunhammedolalekan/registry-auth") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0855a5c0ifi6q2ghb6gax0kwwra5j7pd2lplq4wp8r83dnv4vwj0")))) - (build-system go-build-system) - (arguments - '(#:import-path "github.com/adigunhammedolalekan/registry-auth")) - (propagated-inputs - `(("go-github-com-sirupsen-logrus-1.4.2" - ,go-github-com-sirupsen-logrus-1.4.2) - ("go-github-com-gorilla-mux-1.7.4" ,go-github-com-gorilla-mux-1.7.4) - ("go-github-com-docker-libtrust-0.0.0-20160708172513-aabc10ec26b7" - ,go-github-com-docker-libtrust-0.0.0-20160708172513-aabc10ec26b7) - ("go-github-com-docker-distribution-2.7.1+incompatible" - ,go-github-com-docker-distribution-2.7.1+incompatible))) - (home-page "https://github.com/adigunhammedolalekan/registry-auth") - (synopsis "registry-auth") - (description - "a package to implements docker registry token authentication server as described here [https://github.com/docker/distribution/blob/1b9ab303a477ded9bdd3fc97e9119fa8f9e58fca/docs/spec/auth/index.md]") - (license license:expat))) - -(define-public go-github-com-alexflint-go-filemutex-0.0.0-20171028004239-d358565f3c3f - (package - (name "go-github-com-alexflint-go-filemutex") - (version "0.0.0-20171028004239-d358565f3c3f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/alexflint/go-filemutex") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19fzbm0x8821awsmqj9ig49dxxkd72p1yfqbijmdwwszvw2r0ggz")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/alexflint/go-filemutex")) - (home-page "https://github.com/alexflint/go-filemutex") - (synopsis "FileMutex") - (description - "FileMutex is similar to @code{sync.RWMutex}, but also synchronizes across processes. -On Linux, OSX, and other POSIX systems it uses the flock system call. On windows -it uses the LockFileEx and UnlockFileEx system calls.") - (license license:expat))) - -(define-public go-github-com-stretchr-testify-1.3.0 - (package - (name "go-github-com-stretchr-testify") - (version "1.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/testify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0wjchp2c8xbgcbbq32w3kvblk6q6yn533g78nxl6iskq6y95lxsy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/testify")) - (propagated-inputs - `(("go-github-com-stretchr-objx-0.1.0" - ,go-github-com-stretchr-objx-0.1.0) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.0" - ,go-github-com-davecgh-go-spew-1.1.0))) - (home-page "https://github.com/stretchr/testify") - (synopsis "Testify - Thou Shalt Write Tests") - (description - "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -") - (license license:expat))) - -(define-public go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0 - (package - (name "go-github-com-tj-assert") - (version "0.0.0-20171129193455-018094318fb0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/tj/assert") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "15ika7izp5hkd10dm30apwfvpm0d1yl2rnxs6896q0svz9zvi2z3")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/tj/assert")) - (home-page "https://github.com/tj/assert") - (synopsis "assert") - (description - "Package assert implements the same assertions as the `assert` package but -stops test execution when a test fails. -") - (license license:expat))) - -(define-public go-github-com-apex-logs-1.0.0 - (package - (name "go-github-com-apex-logs") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/apex/logs") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1kysjp3s8718p02ngpr60gnjjspv0a69biksfjqa1540svrbi850")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/apex/logs")) - (propagated-inputs - `(("go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0" - ,go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0) - ("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0))) - (home-page "https://github.com/apex/logs") - (synopsis "Example") - (description "Go client for @url{https://apex.sh/logs/,Apex Logs}.") - (license license:expat))) - -(define-public go-github-com-aphistic-golf-0.0.0-20180712155816-02c07f170c5a - (package - (name "go-github-com-aphistic-golf") - (version "0.0.0-20180712155816-02c07f170c5a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/aphistic/golf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1qixab9bb29wqbr4nc5j3g25hq1j7am93f181rkj7a4qacncx763")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/aphistic/golf")) - (home-page "https://github.com/aphistic/golf") - (synopsis "golf") - (description - "This package provides logging capabilities using the GELF (@url{https://www.graylog.org/resources/gelf-2/,https://www.graylog.org/resources/gelf-2/}) log format -") - (license license:expat))) - -(define-public go-github-com-mattn-go-isatty-0.0.5 - (package - (name "go-github-com-mattn-go-isatty") - (version "0.0.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mattn/go-isatty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "114d5xm8rfxplzd7nxz97gfngb4bhqy102szl084d1afcxsvm4aa")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mattn/go-isatty")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223" - ,go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223))) - (home-page "https://github.com/mattn/go-isatty") - (synopsis "go-isatty") - (description "Package isatty implements interface to isatty -") - (license license:expat))) - -(define-public go-github-com-mattn-go-colorable-0.1.1 - (package - (name "go-github-com-mattn-go-colorable") - (version "0.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mattn/go-colorable") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0l640974j804c1yyjfgyxqlsivz0yrzmbql4mhcw2azryigkp08p")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mattn/go-colorable")) - (propagated-inputs - `(("go-github-com-mattn-go-isatty-0.0.5" - ,go-github-com-mattn-go-isatty-0.0.5))) - (home-page "https://github.com/mattn/go-colorable") - (synopsis "go-colorable") - (description "Colorable writer for windows.") - (license license:expat))) - -(define-public go-github-com-mgutz-ansi-0.0.0-20170206155736-9520e82c474b - (package - (name "go-github-com-mgutz-ansi") - (version "0.0.0-20170206155736-9520e82c474b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mgutz/ansi") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "00bz22314j26736w1f0q4jy9d9dfaml17vn890n5zqy3cmvmww1j")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mgutz/ansi")) - (home-page "https://github.com/mgutz/ansi") - (synopsis "ansi") - (description - "Package ansi is a small, fast library to create ANSI colored strings and codes. -") - (license license:expat))) - -(define-public go-github-com-fsnotify-fsnotify-1.4.7 - (package - (name "go-github-com-fsnotify-fsnotify") - (version "1.4.7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/fsnotify/fsnotify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/fsnotify/fsnotify")) - (home-page "https://github.com/fsnotify/fsnotify") - (synopsis "File system notifications for Go") - (description - "Package fsnotify provides a platform-independent interface for file system notifications. -") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.2.0 - (package - (name "go-github-com-golang-protobuf") - (version "1.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0kf4b59rcbb1cchfny2dm9jyznp8ri2hsb14n8iak1q8986xa0ab")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-github-com-hpcloud-tail-1.0.0 - (package - (name "go-github-com-hpcloud-tail") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hpcloud/tail") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1njpzc0pi1acg5zx9y6vj9xi6ksbsc5d387rd6904hy6rh2m6kn0")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hpcloud/tail")) - (home-page "https://github.com/hpcloud/tail") - (synopsis "Go package for tail-ing files") - (description - "This package provides a Go package striving to emulate the features of the BSD @code{tail} program.") - (license license:expat))) - -(define-public go-github-com-onsi-ginkgo-1.6.0 - (package - (name "go-github-com-onsi-ginkgo") - (version "1.6.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/onsi/ginkgo") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0x0gc89vgq38xhgmi2h22bhr73cf2gmk42g89nz89k8dgg9hhr25")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/onsi/ginkgo")) - (home-page "https://github.com/onsi/ginkgo") - (synopsis "Ginkgo 2.0 Release Candidate is available!") - (description "Ginkgo is a BDD-style testing framework for Golang -") - (license license:expat))) - -(define-public go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd - (package - (name "go-golang-org-x-net") - (version "0.0.0-20180906233101-161cd47e91fd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0254ld010iijygbzykib2vags1dc0wlmcmhgh4jl8iny159lhbcv")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20180314180146-1d60e4601c6f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "046jlanz2lkxq1r57x9bl6s4cvfqaic6p2xybsj8mq1120jv4rs6")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the -ones provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20180909124046-d0be0721c37e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "081wyvfnlf842dqg03raxfz6lldlxpmyh1prix9lmrrm65arxb12")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-gopkg-in-fsnotify-v1-1.4.7 - (package - (name "go-gopkg-in-fsnotify-v1") - (version "1.4.7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/fsnotify.v1") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) - (build-system go-build-system) - (arguments - '(#:import-path - "gopkg.in/fsnotify.v1" - #:unpack-path - "gopkg.in/fsnotify.v1")) - (home-page "https://gopkg.in/fsnotify.v1") - (synopsis "File system notifications for Go") - (description - "Package fsnotify provides a platform-independent interface for file system notifications. -") - (license license:bsd-3))) - -(define-public go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7 - (package - (name "go-gopkg-in-tomb-v1") - (version "1.0.0-20141024135613-dd632973f1e7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/tomb.v1") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1lqmq1ag7s4b3gc3ddvr792c5xb5k6sfn0cchr3i2s7f1c231zjv")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/tomb.v1" #:unpack-path "gopkg.in/tomb.v1")) - (home-page "https://gopkg.in/tomb.v1") - (synopsis "Installation and usage") - (description - "The tomb package offers a conventional API for clean goroutine termination. -") - (license license:bsd-3))) - -(define-public go-gopkg-in-yaml-v2-2.2.1 - (package - (name "go-gopkg-in-yaml-v2") - (version "2.2.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0dwjrs2lp2gdlscs7bsrmyc5yf6mm4fvgw71bzr9mv2qrd2q73s1")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v2") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language. -") - (license license:asl2.0))) - -(define-public go-github-com-onsi-gomega-1.5.0 - (package - (name "go-github-com-onsi-gomega") - (version "1.5.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/onsi/gomega") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1n7i4hksdgv410m43v2sw14bl5vy59dkp6nlw5l76nibbh37syr9")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/onsi/gomega")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1) - ("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" - ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) - ("go-gopkg-in-fsnotify-v1-1.4.7" ,go-gopkg-in-fsnotify-v1-1.4.7) - ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e" - ,go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e) - ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" - ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) - ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" - ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) - ("go-github-com-onsi-ginkgo-1.6.0" ,go-github-com-onsi-ginkgo-1.6.0) - ("go-github-com-hpcloud-tail-1.0.0" ,go-github-com-hpcloud-tail-1.0.0) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0) - ("go-github-com-fsnotify-fsnotify-1.4.7" - ,go-github-com-fsnotify-fsnotify-1.4.7))) - (home-page "https://github.com/onsi/gomega") - (synopsis ": a BDD Testing Framework for Golang") - (description - "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library. -") - (license license:expat))) - -(define-public go-github-com-sergi-go-diff-1.0.0 - (package - (name "go-github-com-sergi-go-diff") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sergi/go-diff") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0swiazj8wphs2zmk1qgq75xza6m19snif94h2m6fi8dqkwqdl7c7")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/sergi/go-diff")) - (home-page "https://github.com/sergi/go-diff") - (synopsis "go-diff") - (description - "go-diff offers algorithms to perform operations required for synchronizing plain text:") - (license license:expat))) - -(define-public go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190404232315-eb5bcb51f2a3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "17k4g8krxbl84gzcs275b7gsh66dzm15fdxivjnx9xz8q84l4kby")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20190412213103-97732733099d - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190412213103-97732733099d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "118hkp01i4z1f5h6hcjm0ff2ngqhrzj1f7731n0kw8dr6hvbx0sw")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-crypto-0.0.0-20190426145343-a29dc8fdc734 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20190426145343-a29dc8fdc734") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "07f0jj4haqs0ywc1akk1qjwn5msl2j0pry1rxjkkbfcq4r6ihc1p")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" - ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) - ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" - ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-github-com-aphistic-sweet-0.2.0 - (package - (name "go-github-com-aphistic-sweet") - (version "0.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/aphistic/sweet") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1bb4qagfxf6byqn2yx0vq24xfvisz3ah4w6bvqclc8cklvfngw43")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/aphistic/sweet")) - (propagated-inputs - `(("go-golang-org-x-crypto-0.0.0-20190426145343-a29dc8fdc734" - ,go-golang-org-x-crypto-0.0.0-20190426145343-a29dc8fdc734) - ("go-github-com-sergi-go-diff-1.0.0" - ,go-github-com-sergi-go-diff-1.0.0) - ("go-github-com-onsi-gomega-1.5.0" ,go-github-com-onsi-gomega-1.5.0) - ("go-github-com-mgutz-ansi-0.0.0-20170206155736-9520e82c474b" - ,go-github-com-mgutz-ansi-0.0.0-20170206155736-9520e82c474b) - ("go-github-com-mattn-go-colorable-0.1.1" - ,go-github-com-mattn-go-colorable-0.1.1))) - (home-page "https://github.com/aphistic/sweet") - (synopsis "sweet") - (description - "Sweet is a pluggable test runner capable of hooking into standard Go tests. It attempts to provide access to the standard Go test tool as close as possible while adding support for test suites and plugins that can hook into test results to add additional functionality.") - (license license:expat))) - -(define-public go-github-com-jmespath-go-jmespath-0.0.0-20180206201540-c2b33e8439af - (package - (name "go-github-com-jmespath-go-jmespath") - (version "0.0.0-20180206201540-c2b33e8439af") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/jmespath/go-jmespath") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1r6w7ydx8ydryxk3sfhzsk8m6f1nsik9jg3i1zhi69v4kfl4d5cz")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/jmespath/go-jmespath")) - (home-page "https://github.com/jmespath/go-jmespath") - (synopsis "go-jmespath - A JMESPath implementation in Go") - (description - "go-jmespath is a GO implementation of JMESPath, -which is a query language for JSON. It will take a JSON -document and transform it into another JSON document -through a JMESPath expression.") - (license license:asl2.0))) - -(define-public go-github-com-aws-aws-sdk-go-1.20.6 - (package - (name "go-github-com-aws-aws-sdk-go") - (version "1.20.6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/aws/aws-sdk-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "016vy5s9finyfgh08j7rvn2pnwymdgj2ydr59w57pysnri87mdwx")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/aws/aws-sdk-go")) - (propagated-inputs - `(("go-github-com-jmespath-go-jmespath-0.0.0-20180206201540-c2b33e8439af" - ,go-github-com-jmespath-go-jmespath-0.0.0-20180206201540-c2b33e8439af))) - (home-page "https://github.com/aws/aws-sdk-go") - (synopsis "AWS SDK for Go") - (description - "Package sdk is the official AWS SDK for the Go programming language. -") - (license license:asl2.0))) - -(define-public go-github-com-aybabtme-rgbterm-0.0.0-20170906152045-cc83f3b3ce59 - (package - (name "go-github-com-aybabtme-rgbterm") - (version "0.0.0-20170906152045-cc83f3b3ce59") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/aybabtme/rgbterm") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0wvmxvjn64968ikvnxrflb1x8rlcwzpfl53fzbxff2axbx9lq50q")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/aybabtme/rgbterm")) - (home-page "https://github.com/aybabtme/rgbterm") - (synopsis "RGB terminal") - (description - "Package rgbterm colorizes bytes and strings using RGB colors, for a -full range of pretty terminal strings. -") - (license #f))) - -(define-public go-github-com-fatih-color-1.7.0 - (package - (name "go-github-com-fatih-color") - (version "1.7.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/fatih/color") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0v8msvg38r8d1iiq2i5r4xyfx0invhc941kjrsg5gzwvagv55inv")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/fatih/color")) - (home-page "https://github.com/fatih/color") - (synopsis "color") - (description - "Package color is an ANSI color package to output colorized or SGR defined -output to the standard output. The API can be used in several way, pick one -that suits you. -") - (license license:expat))) - -(define-public go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515 - (package - (name "go-github-com-kr-logfmt") - (version "0.0.0-20140226030751-b84e30acd515") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/logfmt") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "02ldzxgznrfdzvghfraslhgp19la1fczcbzh7wm2zdc6lmpd1qq9")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/logfmt")) - (home-page "https://github.com/kr/logfmt") - (synopsis #f) - (description - "Package implements the decoding of logfmt key-value pairs. -") - (license license:expat))) - -(define-public go-github-com-go-logfmt-logfmt-0.4.0 - (package - (name "go-github-com-go-logfmt-logfmt") - (version "0.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/go-logfmt/logfmt") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "06smxc112xmixz78nyvk3b2hmc7wasf2sl5vxj1xz62kqcq9lzm9")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/go-logfmt/logfmt")) - (propagated-inputs - `(("go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515" - ,go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515))) - (home-page "https://github.com/go-logfmt/logfmt") - (synopsis "logfmt") - (description - "Package logfmt implements utilities to marshal and unmarshal data in the -logfmt format. The logfmt format records key/value pairs in a way that -balances readability for humans and simplicity of computer parsing. It is -most commonly used as a more human friendly alternative to JSON for -structured logging. -") - (license license:expat))) - -(define-public go-github-com-golang-protobuf-1.3.1 - (package - (name "go-github-com-golang-protobuf") - (version "1.3.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "15am4s4646qy6iv0g3kkqq52rzykqjhm4bf08dk0fy2r58knpsyl")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-github-com-google-uuid-1.1.1 - (package - (name "go-github-com-google-uuid") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/uuid") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hfxcf9frkb57k6q0rdkrmnfs78ms21r1qfk9fhlqga2yh5xg8zb")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/uuid")) - (home-page "https://github.com/google/uuid") - (synopsis "uuid") - (description "Package uuid generates and inspects UUIDs. -") - (license license:bsd-3))) - -(define-public go-github-com-jpillora-backoff-0.0.0-20180909062703-3050d21c67d7 - (package - (name "go-github-com-jpillora-backoff") - (version "0.0.0-20180909062703-3050d21c67d7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/jpillora/backoff") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1nxapdx9xg5gwiscfhq7m0w14hj4gaxb4avmgf1mx9zd3jnw9jxv")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/jpillora/backoff")) - (home-page "https://github.com/jpillora/backoff") - (synopsis "Backoff") - (description - "Package backoff provides an exponential-backoff implementation. -") - (license license:expat))) - -(define-public go-github-com-kr-pty-1.1.1 - (package - (name "go-github-com-kr-pty") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/pty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0383f0mb9kqjvncqrfpidsf8y6ns5zlrc91c6a74xpyxjwvzl2y6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/pty")) - (home-page "https://github.com/kr/pty") - (synopsis "pty") - (description - "Package pty is a wrapper for github.com/creack/pty, which provides -functions for working with Unix terminals. -") - (license license:expat))) - -(define-public go-github-com-kr-text-0.1.0 - (package - (name "go-github-com-kr-text") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1gm5bsl01apvc84bw06hasawyqm4q84vx1pm32wr9jnd7a8vjgj1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/text")) - (propagated-inputs - `(("go-github-com-kr-pty-1.1.1" ,go-github-com-kr-pty-1.1.1))) - (home-page "https://github.com/kr/text") - (synopsis #f) - (description - "Package text provides rudimentary functions for manipulating text in -paragraphs. -") - (license license:expat))) - -(define-public go-github-com-kr-pretty-0.2.0 - (package - (name "go-github-com-kr-pretty") - (version "0.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/pretty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ywbfzz1h3a3qd8rpkiqwi1dm4w8ls9ijb4x1b7567grns9f0vnp")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/pretty")) - (propagated-inputs - `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) - (home-page "https://github.com/kr/pretty") - (synopsis #f) - (description - "Package pretty provides pretty-printing for Go values. This is -useful during debugging, to avoid wrapping long output lines in -the terminal. -") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190222072716-a9d3bda3a223") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1w45zc13xrjzl19s1sx74r5mg3lf2z2nm13wygcdq5r5pyjlhdz9")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-mattn-go-isatty-0.0.8 - (package - (name "go-github-com-mattn-go-isatty") - (version "0.0.8") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mattn/go-isatty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0rqfh1rj6f5wm8p2ky7inm8g10152p7w6n2cli17kf9gad797i8h")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mattn/go-isatty")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223" - ,go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223))) - (home-page "https://github.com/mattn/go-isatty") - (synopsis "go-isatty") - (description "Package isatty implements interface to isatty -") - (license license:expat))) - -(define-public go-github-com-mattn-go-colorable-0.1.2 - (package - (name "go-github-com-mattn-go-colorable") - (version "0.1.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mattn/go-colorable") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0512jm3wmzkkn7d99x9wflyqf48n5ri3npy1fqkq6l6adc5mni3n")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mattn/go-colorable")) - (propagated-inputs - `(("go-github-com-mattn-go-isatty-0.0.8" - ,go-github-com-mattn-go-isatty-0.0.8))) - (home-page "https://github.com/mattn/go-colorable") - (synopsis "go-colorable") - (description "Colorable writer for windows.") - (license license:expat))) - -(define-public go-github-com-pkg-errors-0.8.1 - (package - (name "go-github-com-pkg-errors") - (version "0.8.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pkg/errors") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0g5qcb4d4fd96midz0zdk8b9kz8xkzwfa8kr1cliqbg8sxsy5vd1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pkg/errors")) - (home-page "https://github.com/pkg/errors") - (synopsis "errors") - (description "Package errors provides simple error handling primitives. -") - (license license:bsd-2))) - -(define-public go-github-com-rogpeppe-fastuuid-1.1.0 - (package - (name "go-github-com-rogpeppe-fastuuid") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/rogpeppe/fastuuid") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1jlif5pxyz3md02ij93kd2y2j1zz0ajc9k8azvn83vv6l3r5c1zg")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/rogpeppe/fastuuid")) - (home-page "https://github.com/rogpeppe/fastuuid") - (synopsis "fastuuid") - (description - "Package fastuuid provides fast UUID generation of 192 bit -universally unique identifiers. -") - (license license:bsd-3))) - -(define-public go-github-com-smartystreets-go-aws-auth-0.0.0-20180515143844-0c1422d1fdb9 - (package - (name "go-github-com-smartystreets-go-aws-auth") - (version "0.0.0-20180515143844-0c1422d1fdb9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/smartystreets-archives/go-aws-auth") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0krfdpgn3gfii1z9fi8ydfw0wwfqyvp6w3rji7w92m528zkjl93d")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/smartystreets/go-aws-auth")) - (home-page "https://github.com/smartystreets/go-aws-auth") - (synopsis "go-aws-auth") - (description - "Package awsauth implements AWS request signing using Signed Signature Version 2, -Signed Signature Version 3, and Signed Signature Version 4. Supports S3 and STS. -") - (license license:expat))) - -(define-public go-github-com-smartystreets-assertions-1.0.0 - (package - (name "go-github-com-smartystreets-assertions") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/smartystreets/assertions") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1188hs39zvil41sdnxs83h1hp319lfyc5n2rvd1xnhz1dh5qjjh4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/smartystreets/assertions")) - (home-page "https://github.com/smartystreets/assertions") - (synopsis #f) - (description - "Package assertions contains the implementations for all assertions which -are referenced in goconvey's `convey` package -(github.com/smartystreets/goconvey/convey) and gunit (github.com/smartystreets/gunit) -for use with the So(...) method. -They can also be used in traditional Go test functions and even in -applications. -") - (license license:expat))) - -(define-public go-github-com-smartystreets-gunit-1.0.0 - (package - (name "go-github-com-smartystreets-gunit") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/smartystreets/gunit") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "11d09rl5qqpj36a311pjj8w5jkj83d5b8gdcsx8f1zn4j924sm5d")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/smartystreets/gunit")) - (propagated-inputs - `(("go-github-com-smartystreets-assertions-1.0.0" - ,go-github-com-smartystreets-assertions-1.0.0))) - (home-page "https://github.com/smartystreets/gunit") - (synopsis "gunit") - (description - "Package gunit provides \"testing\" package hooks and convenience -functions for writing tests in an xUnit style. -See the README file and the examples folder for examples. -") - (license license:expat))) - -(define-public go-github-com-davecgh-go-spew-1.1.1 - (package - (name "go-github-com-davecgh-go-spew") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/davecgh/go-spew") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/davecgh/go-spew")) - (home-page "https://github.com/davecgh/go-spew") - (synopsis "go-spew") - (description - "Go-spew implements a deep pretty printer for Go data structures to aid in -debugging. A comprehensive suite of tests with 100% test coverage is provided -to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage -report. Go-spew is licensed under the liberal ISC license, so it may be used in -open source or commercial projects.") - (license license:isc))) - -(define-public go-github-com-davecgh-go-spew-1.1.0 - (package - (name "go-github-com-davecgh-go-spew") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/davecgh/go-spew") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/davecgh/go-spew")) - (home-page "https://github.com/davecgh/go-spew") - (synopsis "go-spew") - (description - "Go-spew implements a deep pretty printer for Go data structures to aid in -debugging. A comprehensive suite of tests with 100% test coverage is provided -to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage -report. Go-spew is licensed under the liberal ISC license, so it may be used in -open source or commercial projects.") - (license license:isc))) - -(define-public go-github-com-pmezard-go-difflib-1.0.0 - (package - (name "go-github-com-pmezard-go-difflib") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pmezard/go-difflib") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pmezard/go-difflib")) - (home-page "https://github.com/pmezard/go-difflib") - (synopsis "go-difflib") - (description - "Go-difflib is a partial port of python 3 difflib package. Its main goal -was to make unified and context diff available in pure Go, mostly for -testing purposes.") - (license license:bsd-3))) - -(define-public go-github-com-stretchr-objx-0.1.0 - (package - (name "go-github-com-stretchr-objx") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/objx") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/objx")) - (home-page "https://github.com/stretchr/objx") - (synopsis "Objx") - (description - "Objx - Go package for dealing with maps, slices, JSON and other data. -") - (license license:expat))) - -(define-public go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c - (package - (name "go-gopkg-in-yaml-v3") - (version "3.0.0-20200313102051-9f266ea9e77c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v3") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1bbai3lzb50m0x2vwsdbagrbhvfylj9k1m32hgbqwldqx4p9ay35")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v3") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language. -") - (license #f))) - -(define-public go-github-com-stretchr-testify-1.6.1 - (package - (name "go-github-com-stretchr-testify") - (version "1.6.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/testify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1yhiqqzjvi63pf01rgzx68gqkkvjx03fvl5wk30br5l6s81s090l")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/testify")) - (propagated-inputs - `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" - ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) - ("go-github-com-stretchr-objx-0.1.0" - ,go-github-com-stretchr-objx-0.1.0) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.0" - ,go-github-com-davecgh-go-spew-1.1.0))) - (home-page "https://github.com/stretchr/testify") - (synopsis "Testify - Thou Shalt Write Tests") - (description - "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -") - (license license:expat))) - -(define-public go-gopkg-in-yaml-v3-3.0.0-20200605160147-a5ece683394c - (package - (name "go-gopkg-in-yaml-v3") - (version "3.0.0-20200605160147-a5ece683394c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v3") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "03cm7c3p5fh0aa8vnxv5010dgqqr268ivb480ix1salxx3396w68")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v3") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language. -") - (license #f))) - -(define-public go-github-com-tj-assert-0.0.3 - (package - (name "go-github-com-tj-assert") - (version "0.0.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/tj/assert") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1j5swk3fjq1h5fpqkipddz2ccnbidr7qrpm5dpdaflg9q5jnc673")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/tj/assert")) - (propagated-inputs - `(("go-gopkg-in-yaml-v3-3.0.0-20200605160147-a5ece683394c" - ,go-gopkg-in-yaml-v3-3.0.0-20200605160147-a5ece683394c) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/tj/assert") - (synopsis "assert") - (description - "Package assert implements the same assertions as the `assert` package but -stops test execution when a test fails. -") - (license license:expat))) - -(define-public go-github-com-tj-go-buffer-1.1.0 - (package - (name "go-github-com-tj-go-buffer") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/tj/go-buffer") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1qdxpa069pjjbzh217aadpzz1aq1n6h32lhp60yjcpi7hr4q8fxx")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/tj/go-buffer")) - (propagated-inputs - `(("go-github-com-tj-assert-0.0.3" ,go-github-com-tj-assert-0.0.3))) - (home-page "https://github.com/tj/go-buffer") - (synopsis "Buffer") - (description - "Package buffer provides a generic buffer or batching mechanism for flushing -entries at a given size or interval, useful for cases such as batching log -events. -") - (license license:expat))) - -(define-public go-github-com-tj-go-elastic-0.0.0-20171221160941-36157cbbebc2 - (package - (name "go-github-com-tj-go-elastic") - (version "0.0.0-20171221160941-36157cbbebc2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/tj/go-elastic") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1r94vc4hbfvqvjz74n4mvsw4dy3vbyzlivb90kyn8vn76a4wqk69")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/tj/go-elastic")) - (home-page "https://github.com/tj/go-elastic") - (synopsis "go-elastic") - (description - "Package elastic provides an Elasticsearch client with AWS sigv4 support. -") - (license license:expat))) - -(define-public go-github-com-tj-go-kinesis-0.0.0-20171128231115-08b17f58cb1b - (package - (name "go-github-com-tj-go-kinesis") - (version "0.0.0-20171128231115-08b17f58cb1b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/tj/go-kinesis") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "108c6p5j6rhhc2cnc2v5368yfsw73y6lzlvz02vpvvjph8rhmld4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/tj/go-kinesis")) - (home-page "https://github.com/tj/go-kinesis") - (synopsis "go-kinesis") - (description - "Package kinesis implements a batch producer built on top of the official AWS SDK. -") - (license license:expat))) - -(define-public go-github-com-tj-go-spin-1.1.0 - (package - (name "go-github-com-tj-go-spin") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/tj/go-spin") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "11xr67991m5pwsy1dira3iwd0sr55vmn1cyjwmlqziw4bwpym64s")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/tj/go-spin")) - (home-page "https://github.com/tj/go-spin") - (synopsis #f) - (description #f) - (license #f))) - -(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20190308221718-c2843e01d9a2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190215142949-d0b11bdaac8a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-text-0.3.0 - (package - (name "go-golang-org-x-text") - (version "0.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/text")) - (home-page "https://golang.org/x/text") - (synopsis "Go Text") - (description - "text is a repository of text-related packages related to internationalization -(i18n) and localization (l10n), such as character encodings, text -transformations, and locale-specific text handling. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190620200207-3b0461eec859") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0l00c8l0a8xnv6qdpwfzxxsr58jggacgzdrwiprrfx2xqm37b6d5")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20180917221912-90fa682c2a6e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-golang-org-x-text-0.3.2 - (package - (name "go-golang-org-x-text") - (version "0.3.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0flv9idw0jm5nm8lx25xqanbkqgfiym6619w575p7nrdh0riqwqh")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/text")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" - ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) - (home-page "https://golang.org/x/text") - (synopsis "Go Text") - (description - "text is a repository of text-related packages related to internationalization -(i18n) and localization (l10n), such as character encodings, text -transformations, and locale-specific text handling. -") - (license license:bsd-3))) - -(define-public go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15 - (package - (name "go-gopkg-in-check-v1") - (version "1.0.0-20190902080502-41f04d3bba15") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/check.v1") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0vfk9czmlxmp6wndq8k17rhnjxal764mxfhrccza7nwlia760pjy")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) - (home-page "https://gopkg.in/check.v1") - (synopsis "Instructions") - (description - "Package check is a rich testing extension for Go's testing package. -") - (license license:bsd-2))) - -(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 - (package - (name "go-gopkg-in-check-v1") - (version "0.0.0-20161208181325-20d25e280405") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/check.v1") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) - (home-page "https://gopkg.in/check.v1") - (synopsis "Instructions") - (description - "Package check is a rich testing extension for Go's testing package. -") - (license license:bsd-2))) - -(define-public go-gopkg-in-yaml-v2-2.2.2 - (package - (name "go-gopkg-in-yaml-v2") - (version "2.2.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "01wj12jzsdqlnidpyjssmj0r4yavlqy7dwrg7adqd8dicjc4ncsa")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v2") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language. -") - (license license:asl2.0))) - -(define-public go-github-com-apex-log-1.9.0 - (package - (name "go-github-com-apex-log") - (version "1.9.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/apex/log") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ibqkncnb8wcwilg2kyfyl5541g69rg551iy6m61q6iwdn5vfhi2")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/apex/log")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) - ("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" - ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) - ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) - ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" - ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) - ("go-github-com-tj-go-spin-1.1.0" ,go-github-com-tj-go-spin-1.1.0) - ("go-github-com-tj-go-kinesis-0.0.0-20171128231115-08b17f58cb1b" - ,go-github-com-tj-go-kinesis-0.0.0-20171128231115-08b17f58cb1b) - ("go-github-com-tj-go-elastic-0.0.0-20171221160941-36157cbbebc2" - ,go-github-com-tj-go-elastic-0.0.0-20171221160941-36157cbbebc2) - ("go-github-com-tj-go-buffer-1.1.0" ,go-github-com-tj-go-buffer-1.1.0) - ("go-github-com-tj-assert-0.0.3" ,go-github-com-tj-assert-0.0.3) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-smartystreets-gunit-1.0.0" - ,go-github-com-smartystreets-gunit-1.0.0) - ("go-github-com-smartystreets-go-aws-auth-0.0.0-20180515143844-0c1422d1fdb9" - ,go-github-com-smartystreets-go-aws-auth-0.0.0-20180515143844-0c1422d1fdb9) - ("go-github-com-rogpeppe-fastuuid-1.1.0" - ,go-github-com-rogpeppe-fastuuid-1.1.0) - ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) - ("go-github-com-mattn-go-colorable-0.1.2" - ,go-github-com-mattn-go-colorable-0.1.2) - ("go-github-com-kr-pretty-0.2.0" ,go-github-com-kr-pretty-0.2.0) - ("go-github-com-jpillora-backoff-0.0.0-20180909062703-3050d21c67d7" - ,go-github-com-jpillora-backoff-0.0.0-20180909062703-3050d21c67d7) - ("go-github-com-google-uuid-1.1.1" ,go-github-com-google-uuid-1.1.1) - ("go-github-com-golang-protobuf-1.3.1" - ,go-github-com-golang-protobuf-1.3.1) - ("go-github-com-go-logfmt-logfmt-0.4.0" - ,go-github-com-go-logfmt-logfmt-0.4.0) - ("go-github-com-fatih-color-1.7.0" ,go-github-com-fatih-color-1.7.0) - ("go-github-com-aybabtme-rgbterm-0.0.0-20170906152045-cc83f3b3ce59" - ,go-github-com-aybabtme-rgbterm-0.0.0-20170906152045-cc83f3b3ce59) - ("go-github-com-aws-aws-sdk-go-1.20.6" - ,go-github-com-aws-aws-sdk-go-1.20.6) - ("go-github-com-aphistic-sweet-0.2.0" - ,go-github-com-aphistic-sweet-0.2.0) - ("go-github-com-aphistic-golf-0.0.0-20180712155816-02c07f170c5a" - ,go-github-com-aphistic-golf-0.0.0-20180712155816-02c07f170c5a) - ("go-github-com-apex-logs-1.0.0" ,go-github-com-apex-logs-1.0.0))) - (home-page "https://github.com/apex/log") - (synopsis "Handlers") - (description - "Package log implements a simple structured logging API designed with few assumptions. Designed for -centralized logging solutions such as Kinesis which require encoding and decoding before fanning-out -to handlers. -") - (license license:expat))) - -(define-public go-github-com-blang-semver-v4-4.0.0 - (package - (name "go-github-com-blang-semver-v4") - (version "4.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/blang/semver") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "14h9ys4n4kx9cbj42lkdf4i5k3nkll6sd62jcvl7cs565v6fiknz")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/blang/semver/v4")) - (home-page "https://github.com/blang/semver") - (synopsis #f) - (description #f) - (license license:expat))) - -(define-public go-github-com-buger-jsonparser-1.1.1 - (package - (name "go-github-com-buger-jsonparser") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/buger/jsonparser") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0qv2lsh2biwxn927941gqiv5pqg7n4v58j0i536pjp7pr17pq7dp")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/buger/jsonparser")) - (home-page "https://github.com/buger/jsonparser") - (synopsis - "Alternative JSON parser for Go (10x times faster standard library)") - (description - "It does not require you to know the structure of the payload (eg. create structs), and allows accessing fields by providing the path to them. It is up to @strong{10 times faster} than standard @code{encoding/json} package (depending on payload size and usage), @strong{allocates no memory}. See benchmarks below.") - (license license:expat))) - -(define-public go-github-com-bugsnag-bugsnag-go-1.5.1 - (package - (name "go-github-com-bugsnag-bugsnag-go") - (version "1.5.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/bugsnag/bugsnag-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "133yi7x5ygwg7iabl246nj2i3lqkkh0pmhpcw4maq2g0b8d7np54")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/bugsnag/bugsnag-go")) - (home-page "https://github.com/bugsnag/bugsnag-go") - (synopsis "Bugsnag error reporter for Go") - (description - "Package bugsnag captures errors in real-time and reports them to Bugsnag (@url{http://bugsnag.com,http://bugsnag.com}). -") - (license license:expat))) - -(define-public go-github-com-bugsnag-panicwrap-1.2.0 - (package - (name "go-github-com-bugsnag-panicwrap") - (version "1.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/bugsnag/panicwrap") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1dzsnpdy4b16h8gh6qr9k3bl5dfch7vmglqhsbcxwyli8s09pimx")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/bugsnag/panicwrap")) - (home-page "https://github.com/bugsnag/panicwrap") - (synopsis "panicwrap") - (description - "The panicwrap package provides functions for capturing and handling -panics in your application. It does this by re-executing the running -application and monitoring stderr for any panics. At the same time, -stdout/stderr/etc. are set to the same values so that data is shuttled -through properly, making the existence of panicwrap mostly transparent. -") - (license license:expat))) - -(define-public go-github-com-kr-pty-1.1.1 - (package - (name "go-github-com-kr-pty") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/pty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0383f0mb9kqjvncqrfpidsf8y6ns5zlrc91c6a74xpyxjwvzl2y6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/pty")) - (home-page "https://github.com/kr/pty") - (synopsis "pty") - (description - "Package pty is a wrapper for github.com/creack/pty, which provides -functions for working with Unix terminals. -") - (license license:expat))) - -(define-public go-github-com-kr-text-0.1.0 - (package - (name "go-github-com-kr-text") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1gm5bsl01apvc84bw06hasawyqm4q84vx1pm32wr9jnd7a8vjgj1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/text")) - (propagated-inputs - `(("go-github-com-kr-pty-1.1.1" ,go-github-com-kr-pty-1.1.1))) - (home-page "https://github.com/kr/text") - (synopsis #f) - (description - "Package text provides rudimentary functions for manipulating text in -paragraphs. -") - (license license:expat))) - -(define-public go-github-com-kr-pretty-0.2.1 - (package - (name "go-github-com-kr-pretty") - (version "0.2.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/pretty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0vzfz06y9q8gs2nxx0kys0591vzp78k0fvpb8digi5n15h3b25hy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/pretty")) - (propagated-inputs - `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) - (home-page "https://github.com/kr/pretty") - (synopsis #f) - (description - "Package pretty provides pretty-printing for Go values. This is -useful during debugging, to avoid wrapping long output lines in -the terminal. -") - (license license:expat))) - -(define-public go-github-com-frankban-quicktest-1.11.3 - (package - (name "go-github-com-frankban-quicktest") - (version "1.11.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/frankban/quicktest") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0d5njmwkfq2809vlimnlvy8ir6kln0c4cgdwr680fwsclpbr43qs")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/frankban/quicktest")) - (propagated-inputs - `(("go-github-com-kr-pretty-0.2.1" ,go-github-com-kr-pretty-0.2.1) - ("go-github-com-google-go-cmp-0.5.4" - ,go-github-com-google-go-cmp-0.5.4))) - (home-page "https://github.com/frankban/quicktest") - (synopsis "quicktest") - (description - "Package quicktest provides a collection of Go helpers for writing tests. -") - (license license:expat))) - -(define-public go-github-com-google-go-cmp-0.5.4 - (package - (name "go-github-com-google-go-cmp") - (version "0.5.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ld9pwb6l22g75g1zpa691l7q9ki7pjgpcqhwgdfr3va1zisr5ci")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") - (license license:bsd-3))) - -(define-public go-github-com-cilium-ebpf-0.4.0 - (package - (name "go-github-com-cilium-ebpf") - (version "0.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cilium/ebpf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1j33vfz8mxnqadkd17l0y3ll71gph3ndm8hwrwbwnf5px7bfv9yl")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/cilium/ebpf")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" - ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) - ("go-github-com-google-go-cmp-0.5.4" - ,go-github-com-google-go-cmp-0.5.4) - ("go-github-com-frankban-quicktest-1.11.3" - ,go-github-com-frankban-quicktest-1.11.3))) - (home-page "https://github.com/cilium/ebpf") - (synopsis "eBPF") - (description "Package ebpf is a toolkit for working with eBPF programs. -") - (license license:expat))) - -(define-public go-github-com-coreos-go-systemd-v22-22.1.0 - (package - (name "go-github-com-coreos-go-systemd-v22") - (version "22.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/coreos/go-systemd") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "127dj1iwp69yj74nwh9ckgc0mkk1mv4yzbxmbdxix1r7j6q35z3j")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/coreos/go-systemd/v22")) - (propagated-inputs - `(("go-github-com-godbus-dbus-v5-5.0.3" - ,go-github-com-godbus-dbus-v5-5.0.3))) - (home-page "https://github.com/coreos/go-systemd") - (synopsis "go-systemd") - (description "Go bindings to systemd. The project has several packages:") - (license license:asl2.0))) - -(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0 - (package - (name "go-github-com-cpuguy83-go-md2man-v2") - (version "2.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cpuguy83/go-md2man") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) - (propagated-inputs - `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" - ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) - ("go-github-com-russross-blackfriday-v2-2.0.1" - ,go-github-com-russross-blackfriday-v2-2.0.1) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0))) - (home-page "https://github.com/cpuguy83/go-md2man") - (synopsis "go-md2man") - (description "Converts markdown into roff (man pages).") - (license license:expat))) - -(define-public go-github-com-docker-go-units-0.4.0 - (package - (name "go-github-com-docker-go-units") - (version "0.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/docker/go-units") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0k8gja8ql4pqg5rzmqvka42vjfs6rzablak87whcnqba6qxpimvz")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/docker/go-units")) - (home-page "https://github.com/docker/go-units") - (synopsis "Introduction") - (description - "Package units provides helper function to parse and print size and time units -in human-readable format. -") - (license license:asl2.0))) - -(define-public go-github-com-godbus-dbus-v5-5.0.3 - (package - (name "go-github-com-godbus-dbus-v5") - (version "5.0.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/godbus/dbus") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1bkc904073k807yxg6mvqaxrr6ammmhginr9p54jfb55mz3hfw3s")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/godbus/dbus/v5")) - (home-page "https://github.com/godbus/dbus") - (synopsis "dbus") - (description - "Package dbus implements bindings to the D-Bus message bus system. -") - (license license:bsd-2))) - -(define-public go-github-com-yuin-goldmark-1.1.27 - (package - (name "go-github-com-yuin-goldmark") - (version "1.1.27") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/yuin/goldmark") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1872cqnii0kwiqcy81yin0idvjy5mdy4zlzz0csb319lcjs3b923")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/yuin/goldmark")) - (home-page "https://github.com/yuin/goldmark") - (synopsis "goldmark") - (description - "Package goldmark implements functions to convert markdown text to a desired format. -") - (license license:expat))) - -(define-public go-golang-org-x-mod-0.2.0 - (package - (name "go-golang-org-x-mod") - (version "0.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/mod") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fp6885dclq77mh73v7i54v2b9llpv4di193zc8vmsbbkkc483cl")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/mod")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" - ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) - ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" - ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) - ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" - ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) - (home-page "https://golang.org/x/mod") - (synopsis "mod") - (description - "This repository holds packages for writing tools -that work directly with Go module mechanics. -That is, it is for direct manipulation of Go modules themselves.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b - (package - (name "go-golang-org-x-net") - (version "0.0.0-20200226121028-0de0cce0169b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1db7s5kbzyh2zd5lpv05n7hp8wbwdvgk0wpiwrlnig94mkr0y5aq")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20190911185100-cd5d95a43a6e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1nqkyz2y1qvqcma52ijh02s8aiqmkfb95j08f6zcjhbga3ds6hds")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the -ones provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543 - (package - (name "go-golang-org-x-xerrors") - (version "0.0.0-20191204190536-9bdfabe68543") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/xerrors") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1yjfi1bk9xb81lqn85nnm13zz725wazvrx3b50hx19qmwg7a4b0c")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/xerrors")) - (home-page "https://golang.org/x/xerrors") - (synopsis #f) - (description - "Package xerrors implements functions to manipulate errors. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20200619180055-7c47624df98f - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20200619180055-7c47624df98f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fhzwd32j7w9g3algq0zj8g7ivx3f0mn9nx9mj046wdscryn49mk")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) - ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" - ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) - ("go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b" - ,go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b) - ("go-golang-org-x-mod-0.2.0" ,go-golang-org-x-mod-0.2.0) - ("go-github-com-yuin-goldmark-1.1.27" - ,go-github-com-yuin-goldmark-1.1.27))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-github-com-kisielk-errcheck-1.5.0 - (package - (name "go-github-com-kisielk-errcheck") - (version "1.5.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kisielk/errcheck") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ci3jz2px74pfmr42jv7dpx7fdzx08vai4czp9fkiyb0gcaiqsk6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kisielk/errcheck")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20200619180055-7c47624df98f" - ,go-golang-org-x-tools-0.0.0-20200619180055-7c47624df98f))) - (home-page "https://github.com/kisielk/errcheck") - (synopsis "errcheck") - (description - "errcheck is a program for checking for unchecked errors in go programs.") - (license license:expat))) - -(define-public go-github-com-kisielk-gotool-1.0.0 - (package - (name "go-github-com-kisielk-gotool") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kisielk/gotool") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "14af2pa0ssyp8bp2mvdw184s5wcysk6akil3wzxmr05wwy951iwn")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kisielk/gotool")) - (home-page "https://github.com/kisielk/gotool") - (synopsis "gotool") - (description - "Package gotool contains utility functions used to implement the standard -\"cmd/go\" tool, provided as a convenience to developers who want to write -tools with similar semantics. -") - (license license:expat))) - -(define-public go-github-com-yuin-goldmark-1.2.1 - (package - (name "go-github-com-yuin-goldmark") - (version "1.2.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/yuin/goldmark") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12rsnsf65drcp0jfw2jl9w589vsn3pxdk1zh3v9q908iigngrcmy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/yuin/goldmark")) - (home-page "https://github.com/yuin/goldmark") - (synopsis "goldmark") - (description - "Package goldmark implements functions to convert markdown text to a desired format. -") - (license license:expat))) - -(define-public go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20191011191535-87dc89f01550") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0z4i1m2yn3f31ci7wvcm2rxkx2yiv7a78mfzklncmsz2k97rlh2g")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" - ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) - ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" - ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190620200207-3b0461eec859") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0l00c8l0a8xnv6qdpwfzxxsr58jggacgzdrwiprrfx2xqm37b6d5")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20190423024810-112230192c58 - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20190423024810-112230192c58") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "05i2k43j2d0llq768hg5pf3hb2yhfzp9la1w5wp0rsnnzblr0lfn")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the -ones provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7 - (package - (name "go-golang-org-x-xerrors") - (version "0.0.0-20190717185122-a985d3407aa7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/xerrors") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "00wzr5w8aadipgc3rkk8f11i41znskfj9ix5nhhaxyg7isrslgcj")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/xerrors")) - (home-page "https://golang.org/x/xerrors") - (synopsis #f) - (description - "Package xerrors implements functions to manipulate errors. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20191119224855-298f0cb1881e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0l4pqwib2wnfnix6nvxl0yrq87ipi7ff1rz6z5bxfzy9dki1nzmv")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7" - ,go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7) - ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" - ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) - ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" - ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898 - (package - (name "go-golang-org-x-xerrors") - (version "0.0.0-20191011141410-1b5146add898") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/xerrors") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0w2akj91krxjag0xdhsg78470888nicc5ismc2ap9jqpss6v1zih")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/xerrors")) - (home-page "https://golang.org/x/xerrors") - (synopsis #f) - (description - "Package xerrors implements functions to manipulate errors. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-mod-0.3.0 - (package - (name "go-golang-org-x-mod") - (version "0.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/mod") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ldgbx2zpprbsfn6p8pfgs4nn87gwbfcv2z0fa7n8alwsq2yw78q")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/mod")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" - ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) - ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" - ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) - ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" - ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) - (home-page "https://golang.org/x/mod") - (synopsis "mod") - (description - "This repository holds packages for writing tools -that work directly with Go module mechanics. -That is, it is for direct manipulation of Go modules themselves.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190215142949-d0b11bdaac8a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20190308221718-c2843e01d9a2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-text-0.3.0 - (package - (name "go-golang-org-x-text") - (version "0.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/text")) - (home-page "https://golang.org/x/text") - (synopsis "Go Text") - (description - "text is a repository of text-related packages related to internationalization -(i18n) and localization (l10n), such as character encodings, text -transformations, and locale-specific text handling. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190404232315-eb5bcb51f2a3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "17k4g8krxbl84gzcs275b7gsh66dzm15fdxivjnx9xz8q84l4kby")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20190412213103-97732733099d - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190412213103-97732733099d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "118hkp01i4z1f5h6hcjm0ff2ngqhrzj1f7731n0kw8dr6hvbx0sw")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20200622213623-75b288015ac9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18vlncvvs11ds3zaaziqjlg5s2vcwi3496nn6qv7p0dp94j5pwa2")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" - ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) - ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" - ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200930185726-fdedc70b468f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1njlfhjbvi4lxvjbq8zswrb0y0q4jd2p6x51h1q6vmyzi9af6869")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20180917221912-90fa682c2a6e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-golang-org-x-text-0.3.3 - (package - (name "go-golang-org-x-text") - (version "0.3.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19pihqm3phyndmiw6i42pdv6z1rbvlqlsnhsyqf9gsnn0qnmqqlh")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/text")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" - ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) - (home-page "https://golang.org/x/text") - (synopsis "Go Text") - (description - "text is a repository of text-related packages related to internationalization -(i18n) and localization (l10n), such as character encodings, text -transformations, and locale-specific text handling. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20201021035429-f5854403a974 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20201021035429-f5854403a974") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1vw63zpmhi337f3gc432x3wkib4j2ia8dy7if31wxwb9dgqvy222")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) - ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" - ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) - ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" - ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9 - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20201020160332-67f06af15bc9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "093p4panc808ak5bamzz7m9nb0xxib7778jpnr6f0xkz1n4fzyw5")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the -ones provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1 - (package - (name "go-golang-org-x-xerrors") - (version "0.0.0-20200804184101-5ec99f83aff1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/xerrors") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1dbzc3gmf2haazpv7cgmv97rq40g2xzwbglc17vas8dwhgwgwrzb")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/xerrors")) - (home-page "https://golang.org/x/xerrors") - (synopsis #f) - (description - "Package xerrors implements functions to manipulate errors. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20210106214847-113979e3529a - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20210106214847-113979e3529a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0pq1a7hkamqdwsajyfrb27s56cvxz5838krsgyqz346s2djwdrzl")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" - ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) - ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" - ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) - ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" - ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) - ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) - ("go-github-com-yuin-goldmark-1.2.1" - ,go-github-com-yuin-goldmark-1.2.1))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-github-com-gogo-protobuf-1.3.2 - (package - (name "go-github-com-gogo-protobuf") - (version "1.3.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gogo/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0dfv1bhx5zhb5bsj5sj757nkacf2swp1ajpcyj9d0b37n602m18a")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/gogo/protobuf")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20210106214847-113979e3529a" - ,go-golang-org-x-tools-0.0.0-20210106214847-113979e3529a) - ("go-github-com-kisielk-gotool-1.0.0" - ,go-github-com-kisielk-gotool-1.0.0) - ("go-github-com-kisielk-errcheck-1.5.0" - ,go-github-com-kisielk-errcheck-1.5.0))) - (home-page "https://github.com/gogo/protobuf") - (synopsis "Protocol Buffers for Go with Gadgets") - (description - "gogoprotobuf is a fork of @url{https://github.com/golang/protobuf,golang/protobuf} with extra code generation features.") - (license license:bsd-3))) - -(define-public go-github-com-opencontainers-runtime-spec-1.0.2 - (package - (name "go-github-com-opencontainers-runtime-spec") - (version "1.0.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/runtime-spec") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19w981vcmd5lp2hy0630x6ayb8zz17n2vxqm2py5mg945xflcizg")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) - (home-page "https://github.com/opencontainers/runtime-spec") - (synopsis "Open Container Initiative Runtime Specification") - (description - "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") - (license license:asl2.0))) - -(define-public go-github-com-pkg-errors-0.9.1 - (package - (name "go-github-com-pkg-errors") - (version "0.9.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pkg/errors") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1761pybhc2kqr6v5fm8faj08x9bql8427yqg6vnfv6nhrasx1mwq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pkg/errors")) - (home-page "https://github.com/pkg/errors") - (synopsis "errors") - (description "Package errors provides simple error handling primitives. -") - (license license:bsd-2))) - -(define-public go-github-com-davecgh-go-spew-1.1.1 - (package - (name "go-github-com-davecgh-go-spew") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/davecgh/go-spew") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/davecgh/go-spew")) - (home-page "https://github.com/davecgh/go-spew") - (synopsis "go-spew") - (description - "Go-spew implements a deep pretty printer for Go data structures to aid in -debugging. A comprehensive suite of tests with 100% test coverage is provided -to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage -report. Go-spew is licensed under the liberal ISC license, so it may be used in -open source or commercial projects.") - (license license:isc))) - -(define-public go-github-com-stretchr-testify-1.2.2 - (package - (name "go-github-com-stretchr-testify") - (version "1.2.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/testify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0dlszlshlxbmmfxj5hlwgv3r22x0y1af45gn1vd198nvvs3pnvfs")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/testify")) - (home-page "https://github.com/stretchr/testify") - (synopsis "Testify - Thou Shalt Write Tests") - (description - "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20191026070338-33540a1f6037") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0fjcv0vzvi6za0b4xmnk3932pr9f9gczzf03y0kgq3ry9rqg169y")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-sirupsen-logrus-1.7.0 - (package - (name "go-github-com-sirupsen-logrus") - (version "1.7.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sirupsen/logrus") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1a59pw7zimvm8k423iq9l4f4qjj1ia1xc6pkmhwl2mxc46y2n442")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/sirupsen/logrus")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037" - ,go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037) - ("go-github-com-stretchr-testify-1.2.2" - ,go-github-com-stretchr-testify-1.2.2) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/sirupsen/logrus") - (synopsis "Logrus") - (description - "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. -") - (license license:expat))) - -(define-public go-github-com-davecgh-go-spew-1.1.0 - (package - (name "go-github-com-davecgh-go-spew") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/davecgh/go-spew") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/davecgh/go-spew")) - (home-page "https://github.com/davecgh/go-spew") - (synopsis "go-spew") - (description - "Go-spew implements a deep pretty printer for Go data structures to aid in -debugging. A comprehensive suite of tests with 100% test coverage is provided -to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage -report. Go-spew is licensed under the liberal ISC license, so it may be used in -open source or commercial projects.") - (license license:isc))) - -(define-public go-github-com-stretchr-objx-0.1.0 - (package - (name "go-github-com-stretchr-objx") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/objx") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/objx")) - (home-page "https://github.com/stretchr/objx") - (synopsis "Objx") - (description - "Objx - Go package for dealing with maps, slices, JSON and other data. -") - (license license:expat))) - -(define-public go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c - (package - (name "go-gopkg-in-yaml-v3") - (version "3.0.0-20200313102051-9f266ea9e77c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v3") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1bbai3lzb50m0x2vwsdbagrbhvfylj9k1m32hgbqwldqx4p9ay35")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v3") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language. -") - (license #f))) - -(define-public go-github-com-stretchr-testify-1.6.1 - (package - (name "go-github-com-stretchr-testify") - (version "1.6.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/testify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1yhiqqzjvi63pf01rgzx68gqkkvjx03fvl5wk30br5l6s81s090l")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/testify")) - (propagated-inputs - `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" - ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) - ("go-github-com-stretchr-objx-0.1.0" - ,go-github-com-stretchr-objx-0.1.0) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.0" - ,go-github-com-davecgh-go-spew-1.1.0))) - (home-page "https://github.com/stretchr/testify") - (synopsis "Testify - Thou Shalt Write Tests") - (description - "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -") - (license license:expat))) - -(define-public go-github-com-burntsushi-toml-0.3.1 - (package - (name "go-github-com-burntsushi-toml") - (version "0.3.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/BurntSushi/toml") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fjdwwfzyzllgiwydknf1pwjvy49qxfsczqx5gz3y0izs7as99j6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/BurntSushi/toml")) - (home-page "https://github.com/BurntSushi/toml") - (synopsis "TOML parser and encoder for Go with reflection") - (description - "Package toml implements decoding and encoding of TOML files. -") - (license license:expat))) - -(define-public go-github-com-pmezard-go-difflib-1.0.0 - (package - (name "go-github-com-pmezard-go-difflib") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pmezard/go-difflib") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pmezard/go-difflib")) - (home-page "https://github.com/pmezard/go-difflib") - (synopsis "go-difflib") - (description - "Go-difflib is a partial port of python 3 difflib package. Its main goal -was to make unified and context diff available in pure Go, mostly for -testing purposes.") - (license license:bsd-3))) - -(define-public go-github-com-russross-blackfriday-v2-2.0.1 - (package - (name "go-github-com-russross-blackfriday-v2") - (version "2.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/russross/blackfriday") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0nlz7isdd4rgnwzs68499hlwicxz34j2k2a0b8jy0y7ycd2bcr5j")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/russross/blackfriday/v2")) - (home-page "https://github.com/russross/blackfriday") - (synopsis "Blackfriday") - (description "Package blackfriday is a markdown processor. -") - (license license:bsd-2))) - -(define-public go-github-com-shurcool-sanitized-anchor-name-1.0.0 - (package - (name "go-github-com-shurcool-sanitized-anchor-name") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/shurcooL/sanitized_anchor_name") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1gv9p2nr46z80dnfjsklc6zxbgk96349sdsxjz05f3z6wb6m5l8f")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/shurcooL/sanitized_anchor_name")) - (home-page "https://github.com/shurcooL/sanitized_anchor_name") - (synopsis "sanitized_anchor_name") - (description - "Package sanitized_anchor_name provides a func to create sanitized anchor names. -") - (license license:expat))) - -(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d - (package - (name "go-github-com-cpuguy83-go-md2man-v2") - (version "2.0.0-20190314233015-f79a8a8ca69d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cpuguy83/go-md2man") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) - (propagated-inputs - `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" - ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) - ("go-github-com-russross-blackfriday-v2-2.0.1" - ,go-github-com-russross-blackfriday-v2-2.0.1) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0))) - (home-page "https://github.com/cpuguy83/go-md2man") - (synopsis "go-md2man") - (description "Converts markdown into roff (man pages).") - (license license:expat))) - -(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 - (package - (name "go-gopkg-in-check-v1") - (version "0.0.0-20161208181325-20d25e280405") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/check.v1") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) - (home-page "https://gopkg.in/check.v1") - (synopsis "Instructions") - (description - "Package check is a rich testing extension for Go's testing package. -") - (license license:bsd-2))) - -(define-public go-gopkg-in-yaml-v2-2.2.2 - (package - (name "go-gopkg-in-yaml-v2") - (version "2.2.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "01wj12jzsdqlnidpyjssmj0r4yavlqy7dwrg7adqd8dicjc4ncsa")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v2") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language. -") - (license license:asl2.0))) - -(define-public go-github-com-urfave-cli-1.22.2 - (package - (name "go-github-com-urfave-cli") - (version "1.22.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/urfave/cli") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "10mcnvi5qmn00vpyk6si8gjka7p654wr9hac4zc9w5h3ickhvbdc")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/urfave/cli")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) - ("go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d" - ,go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d) - ("go-github-com-burntsushi-toml-0.3.1" - ,go-github-com-burntsushi-toml-0.3.1))) - (home-page "https://github.com/urfave/cli") - (synopsis "cli") - (description - "Package cli provides a minimal framework for creating and organizing command line -Go applications. cli is designed to be easy to understand and write, the most simple -cli application can be written as follows: -") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20210124154548-22da62e12c0c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "17gp3dl75wq3x7j9z1pqgcyvjhvy9jaln1wbscy57al3whdsjp07")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-containerd-cgroups-1.0.1 - (package - (name "go-github-com-containerd-cgroups") - (version "1.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/cgroups") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1p992w942xba9z77nhhbc6nk5q09c3zxxhq9n7fm5alx3a8fwbpl")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/cgroups")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" - ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) - ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-sirupsen-logrus-1.7.0" - ,go-github-com-sirupsen-logrus-1.7.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-runtime-spec-1.0.2" - ,go-github-com-opencontainers-runtime-spec-1.0.2) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2) - ("go-github-com-godbus-dbus-v5-5.0.3" - ,go-github-com-godbus-dbus-v5-5.0.3) - ("go-github-com-docker-go-units-0.4.0" - ,go-github-com-docker-go-units-0.4.0) - ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" - ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) - ("go-github-com-coreos-go-systemd-v22-22.1.0" - ,go-github-com-coreos-go-systemd-v22-22.1.0) - ("go-github-com-cilium-ebpf-0.4.0" ,go-github-com-cilium-ebpf-0.4.0))) - (home-page "https://github.com/containerd/cgroups") - (synopsis "cgroups") - (description - "Go package for creating, managing, inspecting, and destroying cgroups. -The resources format for settings on the cgroup uses the OCI runtime-spec found -@url{https://github.com/opencontainers/runtime-spec,here}.") - (license license:asl2.0))) - -(define-public go-github-com-microsoft-go-winio-0.4.17 - (package - (name "go-github-com-microsoft-go-winio") - (version "0.4.17") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/microsoft/go-winio") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0gmgiak4x4gdyr17zm4b9vvharflk9pz5aj5jayh9hq50133b2f9")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/Microsoft/go-winio")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" - ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) - ("go-github-com-sirupsen-logrus-1.7.0" - ,go-github-com-sirupsen-logrus-1.7.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) - (home-page "https://github.com/Microsoft/go-winio") - (synopsis "go-winio") - (description - "This repository contains utilities for efficiently performing Win32 IO operations in -Go. Currently, this is focused on accessing named pipes and other file handles, and -for using named pipes as a net transport.") - (license license:expat))) - -(define-public go-github-com-cenkalti-backoff-v4-4.1.1 - (package - (name "go-github-com-cenkalti-backoff-v4") - (version "4.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cenkalti/backoff") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "08c28226q612i1pv83161y57qh16631vpc51ai9f76qfrzsy946z")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/cenkalti/backoff/v4")) - (home-page "https://github.com/cenkalti/backoff") - (synopsis "Exponential Backoff") - (description - "Package backoff implements backoff algorithms for retrying operations. -") - (license license:expat))) - -(define-public go-github-com-containerd-containerd-1.4.9 - (package - (name "go-github-com-containerd-containerd") - (version "1.4.9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/containerd") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ykikks6ihgg899ibk9m9m0hqrbss0cx7l7z4yjb873b10bacj52")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/containerd")) - (home-page "https://github.com/containerd/containerd") - (synopsis "Now Recruiting") - (description - "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") - (license license:asl2.0))) - -(define-public go-github-com-microsoft-hcsshim-0.8.23 - (package - (name "go-github-com-microsoft-hcsshim") - (version "0.8.23") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/microsoft/hcsshim") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19gmwvq72vrlw6wvnmz4rjmg6r34c1nbqk71mj4bqq08rpi3i89r")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/Microsoft/hcsshim")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) - ("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) - ("go-golang-org-x-sys-0.0.0-20210324051608-47abb6519492" - ,go-golang-org-x-sys-0.0.0-20210324051608-47abb6519492) - ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" - ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) - ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) - ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) - ("go-github-com-sirupsen-logrus-1.8.1" - ,go-github-com-sirupsen-logrus-1.8.1) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" - ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2) - ("go-github-com-containerd-typeurl-1.0.2" - ,go-github-com-containerd-typeurl-1.0.2) - ("go-github-com-containerd-ttrpc-1.1.0" - ,go-github-com-containerd-ttrpc-1.1.0) - ("go-github-com-containerd-go-runc-1.0.0" - ,go-github-com-containerd-go-runc-1.0.0) - ("go-github-com-containerd-fifo-1.0.0" - ,go-github-com-containerd-fifo-1.0.0) - ("go-github-com-containerd-continuity-0.1.0" - ,go-github-com-containerd-continuity-0.1.0) - ("go-github-com-containerd-containerd-1.4.9" - ,go-github-com-containerd-containerd-1.4.9) - ("go-github-com-containerd-console-1.0.2" - ,go-github-com-containerd-console-1.0.2) - ("go-github-com-containerd-cgroups-1.0.1" - ,go-github-com-containerd-cgroups-1.0.1) - ("go-github-com-cenkalti-backoff-v4-4.1.1" - ,go-github-com-cenkalti-backoff-v4-4.1.1) - ("go-github-com-microsoft-go-winio-0.4.17" - ,go-github-com-microsoft-go-winio-0.4.17))) - (home-page "https://github.com/Microsoft/hcsshim") - (synopsis "hcsshim") - (description - "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") - (license license:expat))) - -(define-public go-github-com-containerd-aufs-1.0.0 - (package - (name "go-github-com-containerd-aufs") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/aufs") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0jyyyf6sr910m602axmp4h4j1l2n680cpp60z09pvprz55zi4ba0")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/aufs")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" - ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" - ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) - ("go-github-com-containerd-containerd-1.5.0-beta.3" - ,go-github-com-containerd-containerd-1.5.0-beta.3))) - (home-page "https://github.com/containerd/aufs") - (synopsis "aufs snapshotter") - (description - "AUFS implementation of the snapshot interface for containerd.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-btrfs-1.0.0 - (package - (name "go-github-com-containerd-btrfs") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/btrfs") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1yf38gg41y1v12m0cl81r9q7d13170a4npzqxhbz7qn32zr23kzn")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/btrfs")) - (propagated-inputs - `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) - (home-page "https://github.com/containerd/btrfs") - (synopsis "go-btrfs") - (description - "Package btrfs provides bindings for working with btrfs partitions from Go. -") - (license license:asl2.0))) - -(define-public go-github-com-cilium-ebpf-0.4.0 - (package - (name "go-github-com-cilium-ebpf") - (version "0.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cilium/ebpf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1j33vfz8mxnqadkd17l0y3ll71gph3ndm8hwrwbwnf5px7bfv9yl")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/cilium/ebpf")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" - ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) - ("go-github-com-google-go-cmp-0.5.4" - ,go-github-com-google-go-cmp-0.5.4) - ("go-github-com-frankban-quicktest-1.11.3" - ,go-github-com-frankban-quicktest-1.11.3))) - (home-page "https://github.com/cilium/ebpf") - (synopsis "eBPF") - (description "Package ebpf is a toolkit for working with eBPF programs. -") - (license license:expat))) - -(define-public go-github-com-containerd-cgroups-1.0.1 - (package - (name "go-github-com-containerd-cgroups") - (version "1.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/cgroups") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1p992w942xba9z77nhhbc6nk5q09c3zxxhq9n7fm5alx3a8fwbpl")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/cgroups")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" - ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) - ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-sirupsen-logrus-1.7.0" - ,go-github-com-sirupsen-logrus-1.7.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-runtime-spec-1.0.2" - ,go-github-com-opencontainers-runtime-spec-1.0.2) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2) - ("go-github-com-godbus-dbus-v5-5.0.3" - ,go-github-com-godbus-dbus-v5-5.0.3) - ("go-github-com-docker-go-units-0.4.0" - ,go-github-com-docker-go-units-0.4.0) - ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" - ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) - ("go-github-com-coreos-go-systemd-v22-22.1.0" - ,go-github-com-coreos-go-systemd-v22-22.1.0) - ("go-github-com-cilium-ebpf-0.4.0" ,go-github-com-cilium-ebpf-0.4.0))) - (home-page "https://github.com/containerd/cgroups") - (synopsis "cgroups") - (description - "Go package for creating, managing, inspecting, and destroying cgroups. -The resources format for settings on the cgroup uses the OCI runtime-spec found -@url{https://github.com/opencontainers/runtime-spec,here}.") - (license license:asl2.0))) - -(define-public go-github-com-mitchellh-go-homedir-1.1.0 - (package - (name "go-github-com-mitchellh-go-homedir") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mitchellh/go-homedir") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ydzkipf28hwj2bfxqmwlww47khyk6d152xax4bnyh60f4lq3nx1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mitchellh/go-homedir")) - (home-page "https://github.com/mitchellh/go-homedir") - (synopsis "go-homedir") - (description - "This is a Go library for detecting the user's home directory without -the use of cgo, so the library can be used in cross-compilation environments.") - (license license:expat))) - -(define-public go-github-com-armon-consul-api-0.0.0-20180202201655-eb2c6b5be1b6 - (package - (name "go-github-com-armon-consul-api") - (version "0.0.0-20180202201655-eb2c6b5be1b6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/armon/consul-api") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1j6fdr1sg36qy4n4xjl7brq739fpm5npq98cmvklzjc9qrx98nk9")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/armon/consul-api")) - (home-page "https://github.com/armon/consul-api") - (synopsis "consul-api") - (description - " Please use @url{https://github.com/hashicorp/consul/tree/master/api,consul api package} instead. -Godocs for that package @url{http://godoc.org/github.com/hashicorp/consul/api,are here}.") - (license license:mpl2.0))) - -(define-public go-github-com-coreos-bbolt-1.3.2 - (package - (name "go-github-com-coreos-bbolt") - (version "1.3.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/etcd-io/bbolt") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "13d5l6p6c5wvkr6vn9hkhz9c593qifn7fgx0hg4d6jcvg1y0bnm2")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/coreos/bbolt")) - (home-page "https://github.com/coreos/bbolt") - (synopsis "bbolt") - (description - "package bbolt implements a low-level key/value store in pure Go. It supports -fully serializable transactions, ACID semantics, and lock-free MVCC with -multiple readers and a single writer. Bolt can be used for projects that -want a simple data store without the need to add large dependencies such as -Postgres or MySQL. -") - (license license:expat))) - -(define-public go-github-com-coreos-etcd-3.3.10+incompatible - (package - (name "go-github-com-coreos-etcd") - (version "3.3.10+incompatible") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/etcd-io/etcd") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1x2ii1hj8jraba8rbxz6dmc03y3sjxdnzipdvg6fywnlq1f3l3wl")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/coreos/etcd")) - (home-page "https://github.com/coreos/etcd") - (synopsis "etcd") - (description - "Package main is a simple wrapper of the real etcd entrypoint package -(located at github.com/coreos/etcd/etcdmain) to ensure that etcd is still -\"go getable\"; e.g. `go get github.com/coreos/etcd` works as expected and -builds a binary in $GOBIN/etcd -") - (license license:asl2.0))) - -(define-public go-github-com-golang-groupcache-0.0.0-20190129154638-5b532d6fd5ef - (package - (name "go-github-com-golang-groupcache") - (version "0.0.0-20190129154638-5b532d6fd5ef") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/groupcache") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ls2i4ixyd4r2556j7c5jmlligjb35gfvxknrdn2abjmcahgqd6h")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/groupcache")) - (home-page "https://github.com/golang/groupcache") - (synopsis "groupcache") - (description - "Package groupcache provides a data loading mechanism with caching -and de-duplication that works across a set of peer processes. -") - (license license:asl2.0))) - -(define-public go-github-com-gorilla-websocket-1.4.0 - (package - (name "go-github-com-gorilla-websocket") - (version "1.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gorilla/websocket") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "00i4vb31nsfkzzk7swvx3i75r2d960js3dri1875vypk3v2s0pzk")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/gorilla/websocket")) - (home-page "https://github.com/gorilla/websocket") - (synopsis "Gorilla WebSocket") - (description - "Package websocket implements the WebSocket protocol defined in @url{https://rfc-editor.org/rfc/rfc6455.html,RFC 6455}. -") - (license license:bsd-2))) - -(define-public go-github-com-grpc-ecosystem-go-grpc-middleware-1.0.0 - (package - (name "go-github-com-grpc-ecosystem-go-grpc-middleware") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc-ecosystem/go-grpc-middleware") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0lwgxih021xfhfb1xb9la5f98bpgpaiz63sbllx77qwwl2rmhrsp")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/grpc-ecosystem/go-grpc-middleware")) - (home-page "https://github.com/grpc-ecosystem/go-grpc-middleware") - (synopsis "Go gRPC Middleware") - (description - "`grpc_middleware` is a collection of gRPC middleware packages: interceptors, helpers and tools. -") - (license license:asl2.0))) - -(define-public go-github-com-grpc-ecosystem-grpc-gateway-1.9.0 - (package - (name "go-github-com-grpc-ecosystem-grpc-gateway") - (version "1.9.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc-ecosystem/grpc-gateway") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1r4y48c76yxc2hpqszfjirvh7zxjb6z72qmk95li12ar79dhv3dy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/grpc-ecosystem/grpc-gateway")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.0.0-20170812160011-eb3733d160e7" - ,go-gopkg-in-yaml-v2-2.0.0-20170812160011-eb3733d160e7) - ("go-gopkg-in-resty-v1-1.12.0" ,go-gopkg-in-resty-v1-1.12.0) - ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" - ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) - ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) - ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" - ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) - ("go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8" - ,go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8) - ("go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3" - ,go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3) - ("go-github-com-rogpeppe-fastuuid-0.0.0-20150106093220-6724a57986af" - ,go-github-com-rogpeppe-fastuuid-0.0.0-20150106093220-6724a57986af) - ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-ghodss-yaml-1.0.0" ,go-github-com-ghodss-yaml-1.0.0))) - (home-page "https://github.com/grpc-ecosystem/grpc-gateway") - (synopsis "grpc-gateway") - (description - "The grpc-gateway is a plugin of the Google protocol buffers compiler -@url{https://github.com/protocolbuffers/protobuf,protoc}. -It reads protobuf service definitions and generates a reverse-proxy server which -translates a RESTful HTTP API into gRPC. This server is generated according to the -@url{https://github.com/googleapis/googleapis/raw/master/google/api/http.proto#L46,(code google.api.http)} -annotations in your service definitions.") - (license license:bsd-3))) - -(define-public go-github-com-hashicorp-hcl-1.0.0 - (package - (name "go-github-com-hashicorp-hcl") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/hcl") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0q6ml0qqs0yil76mpn4mdx4lp94id8vbv575qm60jzl1ijcl5i66")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/hcl")) - (propagated-inputs - `(("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/hashicorp/hcl") - (synopsis "HCL") - (description "Package hcl decodes HCL into usable Go structures. -") - (license license:mpl2.0))) - -(define-public go-github-com-magiconair-properties-1.8.0 - (package - (name "go-github-com-magiconair-properties") - (version "1.8.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/magiconair/properties") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1a10362wv8a8qwb818wygn2z48lgzch940hvpv81hv8gc747ajxn")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/magiconair/properties")) - (home-page "https://github.com/magiconair/properties") - (synopsis "Overview") - (description - "Package properties provides functions for reading and writing -ISO-8859-1 and UTF-8 encoded .properties files and has -support for recursive property expansion. -") - (license license:bsd-2))) - -(define-public go-github-com-pelletier-go-toml-1.2.0 - (package - (name "go-github-com-pelletier-go-toml") - (version "1.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pelletier/go-toml") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fjzpcjng60mc3a4b2ql5a00d5gah84wj740dabv9kq67mpg8fxy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pelletier/go-toml")) - (home-page "https://github.com/pelletier/go-toml") - (synopsis "go-toml") - (description "Package toml is a TOML parser and manipulation library. -") - (license #f))) - -(define-public go-github-com-prometheus-common-0.4.0 - (package - (name "go-github-com-prometheus-common") - (version "0.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/common") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "00008pczafy982m59n1j31pnp41f4grbc2c40jccp52xg3m5klmr")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/common")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1) - ("go-gopkg-in-alecthomas-kingpin-v2-2.2.6" - ,go-gopkg-in-alecthomas-kingpin-v2-2.2.6) - ("go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5" - ,go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5) - ("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" - ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) - ("go-golang-org-x-net-0.0.0-20181114220301-adae6a3d119a" - ,go-golang-org-x-net-0.0.0-20181114220301-adae6a3d119a) - ("go-github-com-sirupsen-logrus-1.2.0" - ,go-github-com-sirupsen-logrus-1.2.0) - ("go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d" - ,go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d) - ("go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910" - ,go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910) - ("go-github-com-prometheus-client-golang-0.9.1" - ,go-github-com-prometheus-client-golang-0.9.1) - ("go-github-com-pkg-errors-0.8.0" ,go-github-com-pkg-errors-0.8.0) - ("go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223" - ,go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223) - ("go-github-com-matttproud-golang-protobuf-extensions-1.0.1" - ,go-github-com-matttproud-golang-protobuf-extensions-1.0.1) - ("go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515" - ,go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515) - ("go-github-com-julienschmidt-httprouter-1.2.0" - ,go-github-com-julienschmidt-httprouter-1.2.0) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0) - ("go-github-com-gogo-protobuf-1.1.1" - ,go-github-com-gogo-protobuf-1.1.1) - ("go-github-com-go-stack-stack-1.8.0" - ,go-github-com-go-stack-stack-1.8.0) - ("go-github-com-go-logfmt-logfmt-0.3.0" - ,go-github-com-go-logfmt-logfmt-0.3.0) - ("go-github-com-go-kit-kit-0.8.0" ,go-github-com-go-kit-kit-0.8.0) - ("go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973" - ,go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973) - ("go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf" - ,go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf) - ("go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc" - ,go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc))) - (home-page "https://github.com/prometheus/common") - (synopsis "Common") - (description - "This repository contains Go libraries that are shared across Prometheus -components and libraries. They are considered internal to Prometheus, without -any stability guarantees for external usage.") - (license license:asl2.0))) - -(define-public go-github-com-prometheus-procfs-0.0.0-20190507164030-5867b95ac084 - (package - (name "go-github-com-prometheus-procfs") - (version "0.0.0-20190507164030-5867b95ac084") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/procfs") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1rahdk62ajj4zpfb3mgzjqip773la9fb0m87m7s9a0b39l3fmzvr")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/procfs")) - (propagated-inputs - `(("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" - ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4))) - (home-page "https://github.com/prometheus/procfs") - (synopsis "procfs") - (description - "Package procfs provides functions to retrieve system, kernel and process -metrics from the pseudo-filesystem proc. -") - (license license:asl2.0))) - -(define-public go-github-com-oneofone-xxhash-1.2.2 - (package - (name "go-github-com-oneofone-xxhash") - (version "1.2.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/OneOfOne/xxhash") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1mjfhrwhvxa48rycjnqpqzm521i38h1hdyz6pdwmhd7xb8j6gwi6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/OneOfOne/xxhash")) - (home-page "https://github.com/OneOfOne/xxhash") - (synopsis "xxhash") - (description - "This is a native Go implementation of the excellent @url{https://github.com/Cyan4973/xxHash,xxhash}* algorithm, an extremely fast non-cryptographic Hash algorithm, working at speeds close to RAM limits.") - (license license:asl2.0))) - -(define-public go-github-com-spaolacci-murmur3-0.0.0-20180118202830-f09979ecbc72 - (package - (name "go-github-com-spaolacci-murmur3") - (version "0.0.0-20180118202830-f09979ecbc72") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/spaolacci/murmur3") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1lv3zyz3jy2d76bhvvs8svygx66606iygdvwy5cwc0p5z8yghq25")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/spaolacci/murmur3")) - (home-page "https://github.com/spaolacci/murmur3") - (synopsis "murmur3") - (description - "Package murmur3 implements Austin Appleby's non-cryptographic MurmurHash3. -") - (license license:bsd-3))) - -(define-public go-github-com-cespare-xxhash-1.1.0 - (package - (name "go-github-com-cespare-xxhash") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cespare/xxhash") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1qyzlcdcayavfazvi03izx83fvip8h36kis44zr2sg7xf6sx6l4x")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/cespare/xxhash")) - (propagated-inputs - `(("go-github-com-spaolacci-murmur3-0.0.0-20180118202830-f09979ecbc72" - ,go-github-com-spaolacci-murmur3-0.0.0-20180118202830-f09979ecbc72) - ("go-github-com-oneofone-xxhash-1.2.2" - ,go-github-com-oneofone-xxhash-1.2.2))) - (home-page "https://github.com/cespare/xxhash") - (synopsis "xxhash") - (description - "Package xxhash implements the 64-bit variant of xxHash (XXH64) as described -at @url{http://cyan4973.github.io/xxHash/,http://cyan4973.github.io/xxHash/}. -") - (license license:expat))) - -(define-public go-github-com-dgryski-go-sip13-0.0.0-20181026042036-e10d5fee7954 - (package - (name "go-github-com-dgryski-go-sip13") - (version "0.0.0-20181026042036-e10d5fee7954") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/dgryski/go-sip13") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "15fyibfas209ljz3f7g07kdmfbl3hhyd9n5n7aq5n5p9m5mn41d6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/dgryski/go-sip13")) - (home-page "https://github.com/dgryski/go-sip13") - (synopsis #f) - (description #f) - (license license:expat))) - -(define-public go-github-com-oklog-ulid-1.3.1 - (package - (name "go-github-com-oklog-ulid") - (version "1.3.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/oklog/ulid") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hybwyid820n80axrk863k2py93hbqlq6hxhf84ppmz0qd0ys0gq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/oklog/ulid")) - (home-page "https://github.com/oklog/ulid") - (synopsis "Universally Unique Lexicographically Sortable Identifier") - (description - "This package provides a Go port of @url{https://github.com/alizain/ulid,alizain/ulid} with binary format implemented.") - (license license:asl2.0))) - -(define-public go-github-com-prometheus-common-0.0.0-20181113130724-41aa239b4cce - (package - (name "go-github-com-prometheus-common") - (version "0.0.0-20181113130724-41aa239b4cce") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/common") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0spy10lwanqa5ynks9cagphkq74zz4b3jm4w59vvizdcw4fhd7s6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/common")) - (home-page "https://github.com/prometheus/common") - (synopsis "Common") - (description - "This repository contains Go libraries that are shared across Prometheus -components and libraries. They are considered internal to Prometheus, without -any stability guarantees for external usage.") - (license license:asl2.0))) - -(define-public go-github-com-prometheus-tsdb-0.7.1 - (package - (name "go-github-com-prometheus-tsdb") - (version "0.7.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus-junkyard/tsdb") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1c1da8i5byvhh4fp3vqjfb65aaksjskn3ggb8wg9hcfzjrhgpz04")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/tsdb")) - (propagated-inputs - `(("go-gopkg-in-alecthomas-kingpin-v2-2.2.6" - ,go-gopkg-in-alecthomas-kingpin-v2-2.2.6) - ("go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8" - ,go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8) - ("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" - ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) - ("go-github-com-stretchr-testify-1.2.2" - ,go-github-com-stretchr-testify-1.2.2) - ("go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d" - ,go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d) - ("go-github-com-prometheus-common-0.0.0-20181113130724-41aa239b4cce" - ,go-github-com-prometheus-common-0.0.0-20181113130724-41aa239b4cce) - ("go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910" - ,go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910) - ("go-github-com-prometheus-client-golang-0.9.1" - ,go-github-com-prometheus-client-golang-0.9.1) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-pkg-errors-0.8.0" ,go-github-com-pkg-errors-0.8.0) - ("go-github-com-oklog-ulid-1.3.1" ,go-github-com-oklog-ulid-1.3.1) - ("go-github-com-matttproud-golang-protobuf-extensions-1.0.1" - ,go-github-com-matttproud-golang-protobuf-extensions-1.0.1) - ("go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515" - ,go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0) - ("go-github-com-gogo-protobuf-1.1.1" - ,go-github-com-gogo-protobuf-1.1.1) - ("go-github-com-go-stack-stack-1.8.0" - ,go-github-com-go-stack-stack-1.8.0) - ("go-github-com-go-logfmt-logfmt-0.3.0" - ,go-github-com-go-logfmt-logfmt-0.3.0) - ("go-github-com-go-kit-kit-0.8.0" ,go-github-com-go-kit-kit-0.8.0) - ("go-github-com-dgryski-go-sip13-0.0.0-20181026042036-e10d5fee7954" - ,go-github-com-dgryski-go-sip13-0.0.0-20181026042036-e10d5fee7954) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1) - ("go-github-com-cespare-xxhash-1.1.0" - ,go-github-com-cespare-xxhash-1.1.0) - ("go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973" - ,go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973) - ("go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf" - ,go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf) - ("go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc" - ,go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc))) - (home-page "https://github.com/prometheus/tsdb") - (synopsis "TSDB") - (description - "Package tsdb implements a time series storage for float64 sample data. -") - (license license:asl2.0))) - -(define-public go-github-com-prometheus-client-golang-0.9.3 - (package - (name "go-github-com-prometheus-client-golang") - (version "0.9.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/client_golang") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1608rm1y2p3iv8k2x7wyc6hshvpbfkv2k77hy0x870syms1g3g1p")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/client_golang")) - (propagated-inputs - `(("go-github-com-prometheus-tsdb-0.7.1" - ,go-github-com-prometheus-tsdb-0.7.1) - ("go-github-com-prometheus-procfs-0.0.0-20190507164030-5867b95ac084" - ,go-github-com-prometheus-procfs-0.0.0-20190507164030-5867b95ac084) - ("go-github-com-prometheus-common-0.4.0" - ,go-github-com-prometheus-common-0.4.0) - ("go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90" - ,go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90) - ("go-github-com-golang-protobuf-1.3.1" - ,go-github-com-golang-protobuf-1.3.1) - ("go-github-com-go-logfmt-logfmt-0.4.0" - ,go-github-com-go-logfmt-logfmt-0.4.0) - ("go-github-com-beorn7-perks-1.0.0" - ,go-github-com-beorn7-perks-1.0.0))) - (home-page "https://github.com/prometheus/client_golang") - (synopsis "Prometheus Go client library") - (description - "This is the @url{http://golang.org,Go} client library for -@url{http://prometheus.io,Prometheus}. It has two separate parts, one for -instrumenting application code, and one for creating clients that talk to the -Prometheus HTTP API.") - (license license:asl2.0))) - -(define-public go-github-com-spf13-afero-1.1.2 - (package - (name "go-github-com-spf13-afero") - (version "1.1.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/spf13/afero") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0miv4faf5ihjfifb1zv6aia6f6ik7h1s4954kcb8n6ixzhx9ck6k")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/spf13/afero")) - (home-page "https://github.com/spf13/afero") - (synopsis "Overview") - (description - "This package provides a FileSystem Abstraction System for Go") - (license license:asl2.0))) - -(define-public go-github-com-spf13-cast-1.3.0 - (package - (name "go-github-com-spf13-cast") - (version "1.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/spf13/cast") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0xq1ffqj8y8h7dcnm0m9lfrh0ga7pssnn2c1dnr09chqbpn4bdc5")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/spf13/cast")) - (propagated-inputs - `(("go-github-com-stretchr-testify-1.2.2" - ,go-github-com-stretchr-testify-1.2.2) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/spf13/cast") - (synopsis "cast") - (description "Package cast provides easy and safe casting in Go. -") - (license license:expat))) - -(define-public go-github-com-spf13-jwalterweatherman-1.0.0 - (package - (name "go-github-com-spf13-jwalterweatherman") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/spf13/jwalterweatherman") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "093fmmvavv84pv4q84hav7ph3fmrq87bvspjj899q0qsx37yvdr8")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/spf13/jwalterweatherman")) - (home-page "https://github.com/spf13/jwalterweatherman") - (synopsis "jWalterWeatherman") - (description - "Seamless printing to the terminal (stdout) and logging to a io.Writer -(file) thatâ\x80\x99s as easy to use as fmt.Println.") - (license license:expat))) - -(define-public go-github-com-ugorji-go-1.1.4 - (package - (name "go-github-com-ugorji-go") - (version "1.1.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/ugorji/go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ma2qvn5wqvjidpdz74x832a813qnr1cxbx6n6n125ak9b3wbn5w")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/ugorji/go")) - (home-page "https://github.com/ugorji/go") - (synopsis "go-codec") - (description - "This repository contains the @code{go-codec} library, the @code{codecgen} tool and -benchmarks for comparing against other libraries.") - (license license:expat))) - -(define-public go-github-com-xordataexchange-crypt-0.0.3-0.20170626215501-b2862e3d0a77 - (package - (name "go-github-com-xordataexchange-crypt") - (version "0.0.3-0.20170626215501-b2862e3d0a77") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/xordataexchange/crypt") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "04q3856anpzl4gdfgmg7pbp9cx231nkz3ymq2xp27rnmmwhfxr8y")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/xordataexchange/crypt")) - (home-page "https://github.com/xordataexchange/crypt") - (synopsis "crypt") - (description - "You can use crypt as a command line tool or as a configuration library:") - (license license:expat))) - -(define-public go-go-etcd-io-bbolt-1.3.2 - (package - (name "go-go-etcd-io-bbolt") - (version "1.3.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/etcd-io/bbolt") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "13d5l6p6c5wvkr6vn9hkhz9c593qifn7fgx0hg4d6jcvg1y0bnm2")))) - (build-system go-build-system) - (arguments '(#:import-path "go.etcd.io/bbolt")) - (home-page "https://go.etcd.io/bbolt") - (synopsis "bbolt") - (description - "package bbolt implements a low-level key/value store in pure Go. It supports -fully serializable transactions, ACID semantics, and lock-free MVCC with -multiple readers and a single writer. Bolt can be used for projects that -want a simple data store without the need to add large dependencies such as -Postgres or MySQL. -") - (license license:expat))) - -(define-public go-golang-org-x-time-0.0.0-20190308202827-9d24e82272b4 - (package - (name "go-golang-org-x-time") - (version "0.0.0-20190308202827-9d24e82272b4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/time") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1f5nkr4vys2vbd8wrwyiq2f5wcaahhpxmia85d1gshcbqjqf8dkb")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/time")) - (home-page "https://golang.org/x/time") - (synopsis "Go Time") - (description "This repository provides supplementary Go time packages.") - (license license:bsd-3))) - -(define-public go-github-com-spf13-viper-1.4.0 - (package - (name "go-github-com-spf13-viper") - (version "1.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/spf13/viper") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1zpzxvn13wpvbblbbn73svaq39zgxfjqhci9d68g3qf309pcfy19")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/spf13/viper")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) - ("go-google-golang-org-grpc-1.21.0" ,go-google-golang-org-grpc-1.21.0) - ("go-golang-org-x-time-0.0.0-20190308202827-9d24e82272b4" - ,go-golang-org-x-time-0.0.0-20190308202827-9d24e82272b4) - ("go-golang-org-x-net-0.0.0-20190522155817-f3200d17e092" - ,go-golang-org-x-net-0.0.0-20190522155817-f3200d17e092) - ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) - ("go-go-uber-org-multierr-1.1.0" ,go-go-uber-org-multierr-1.1.0) - ("go-go-uber-org-atomic-1.4.0" ,go-go-uber-org-atomic-1.4.0) - ("go-go-etcd-io-bbolt-1.3.2" ,go-go-etcd-io-bbolt-1.3.2) - ("go-github-com-xordataexchange-crypt-0.0.3-0.20170626215501-b2862e3d0a77" - ,go-github-com-xordataexchange-crypt-0.0.3-0.20170626215501-b2862e3d0a77) - ("go-github-com-xiang90-probing-0.0.0-20190116061207-43a291ad63a2" - ,go-github-com-xiang90-probing-0.0.0-20190116061207-43a291ad63a2) - ("go-github-com-ugorji-go-1.1.4" ,go-github-com-ugorji-go-1.1.4) - ("go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5" - ,go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5) - ("go-github-com-stretchr-testify-1.2.2" - ,go-github-com-stretchr-testify-1.2.2) - ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) - ("go-github-com-spf13-jwalterweatherman-1.0.0" - ,go-github-com-spf13-jwalterweatherman-1.0.0) - ("go-github-com-spf13-cast-1.3.0" ,go-github-com-spf13-cast-1.3.0) - ("go-github-com-spf13-afero-1.1.2" ,go-github-com-spf13-afero-1.1.2) - ("go-github-com-soheilhy-cmux-0.1.4" - ,go-github-com-soheilhy-cmux-0.1.4) - ("go-github-com-prometheus-client-golang-0.9.3" - ,go-github-com-prometheus-client-golang-0.9.3) - ("go-github-com-pelletier-go-toml-1.2.0" - ,go-github-com-pelletier-go-toml-1.2.0) - ("go-github-com-mitchellh-mapstructure-1.1.2" - ,go-github-com-mitchellh-mapstructure-1.1.2) - ("go-github-com-magiconair-properties-1.8.0" - ,go-github-com-magiconair-properties-1.8.0) - ("go-github-com-jonboulle-clockwork-0.1.0" - ,go-github-com-jonboulle-clockwork-0.1.0) - ("go-github-com-hashicorp-hcl-1.0.0" - ,go-github-com-hashicorp-hcl-1.0.0) - ("go-github-com-grpc-ecosystem-grpc-gateway-1.9.0" - ,go-github-com-grpc-ecosystem-grpc-gateway-1.9.0) - ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" - ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) - ("go-github-com-grpc-ecosystem-go-grpc-middleware-1.0.0" - ,go-github-com-grpc-ecosystem-go-grpc-middleware-1.0.0) - ("go-github-com-gorilla-websocket-1.4.0" - ,go-github-com-gorilla-websocket-1.4.0) - ("go-github-com-google-btree-1.0.0" ,go-github-com-google-btree-1.0.0) - ("go-github-com-golang-groupcache-0.0.0-20190129154638-5b532d6fd5ef" - ,go-github-com-golang-groupcache-0.0.0-20190129154638-5b532d6fd5ef) - ("go-github-com-gogo-protobuf-1.2.1" - ,go-github-com-gogo-protobuf-1.2.1) - ("go-github-com-fsnotify-fsnotify-1.4.7" - ,go-github-com-fsnotify-fsnotify-1.4.7) - ("go-github-com-dgrijalva-jwt-go-3.2.0+incompatible" - ,go-github-com-dgrijalva-jwt-go-3.2.0+incompatible) - ("go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f" - ,go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f) - ("go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e" - ,go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e) - ("go-github-com-coreos-go-semver-0.2.0" - ,go-github-com-coreos-go-semver-0.2.0) - ("go-github-com-coreos-etcd-3.3.10+incompatible" - ,go-github-com-coreos-etcd-3.3.10+incompatible) - ("go-github-com-coreos-bbolt-1.3.2" ,go-github-com-coreos-bbolt-1.3.2) - ("go-github-com-armon-consul-api-0.0.0-20180202201655-eb2c6b5be1b6" - ,go-github-com-armon-consul-api-0.0.0-20180202201655-eb2c6b5be1b6))) - (home-page "https://github.com/spf13/viper") - (synopsis "Install") - (description "Many Go projects are built using Viper including:") - (license license:expat))) - -(define-public go-github-com-spf13-cobra-1.0.0 - (package - (name "go-github-com-spf13-cobra") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/spf13/cobra") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0vbppqqhby302a5ayn0296jqr71qkcd4c9am7wzsk6z71fwdsa7h")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/spf13/cobra")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) - ("go-github-com-spf13-viper-1.4.0" ,go-github-com-spf13-viper-1.4.0) - ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) - ("go-github-com-mitchellh-go-homedir-1.1.0" - ,go-github-com-mitchellh-go-homedir-1.1.0) - ("go-github-com-inconshreveable-mousetrap-1.0.0" - ,go-github-com-inconshreveable-mousetrap-1.0.0) - ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" - ,go-github-com-cpuguy83-go-md2man-v2-2.0.0))) - (home-page "https://github.com/spf13/cobra") - (synopsis "Table of Contents") - (description - "Package cobra is a commander providing a simple interface to create powerful modern CLI interfaces. -In addition to providing an interface, Cobra simultaneously provides a controller to organize your application code. -") - (license license:asl2.0))) - -(define-public go-github-com-containerd-continuity-0.1.0 - (package - (name "go-github-com-containerd-continuity") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/continuity") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1h756l1xc31sc4zc1d3hmh64kl9qm5vpbbw0c93hrasn51ki96yz")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/continuity")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" - ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) - ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" - ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) - ("go-github-com-spf13-cobra-1.0.0" ,go-github-com-spf13-cobra-1.0.0) - ("go-github-com-sirupsen-logrus-1.7.0" - ,go-github-com-sirupsen-logrus-1.7.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-go-digest-1.0.0" - ,go-github-com-opencontainers-go-digest-1.0.0) - ("go-github-com-golang-protobuf-1.3.5" - ,go-github-com-golang-protobuf-1.3.5) - ("go-github-com-dustin-go-humanize-1.0.0" - ,go-github-com-dustin-go-humanize-1.0.0) - ("go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898" - ,go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898))) - (home-page "https://github.com/containerd/continuity") - (synopsis "continuity") - (description - "This package provides a transport-agnostic, filesystem metadata manifest system") - (license license:asl2.0))) - -(define-public go-github-com-containerd-fifo-1.0.0 - (package - (name "go-github-com-containerd-fifo") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/fifo") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1l6jy9b4mjcj7pbz1n79zmipni1dz60rf5n66vn5p2ggavbq7h1q")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/fifo")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" - ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) - (home-page "https://github.com/containerd/fifo") - (synopsis "fifo") - (description "Go package for handling fifos in a sane way.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-go-cni-1.0.2 - (package - (name "go-github-com-containerd-go-cni") - (version "1.0.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/go-cni") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1hqwy402qy04slz2vj05s517mhdbmmkdjs6nhfnk184a730whgv6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/go-cni")) - (propagated-inputs - `(("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-onsi-gomega-1.7.1" ,go-github-com-onsi-gomega-1.7.1) - ("go-github-com-onsi-ginkgo-1.10.3" ,go-github-com-onsi-ginkgo-1.10.3) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1) - ("go-github-com-containernetworking-cni-0.8.0" - ,go-github-com-containernetworking-cni-0.8.0))) - (home-page "https://github.com/containerd/go-cni") - (synopsis "go-cni") - (description - "This package provides a generic CNI library to provide APIs for CNI plugin interactions. The library provides APIs to:") - (license license:asl2.0))) - -(define-public go-github-com-containerd-go-runc-1.0.0 - (package - (name "go-github-com-containerd-go-runc") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/go-runc") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0xk30dzzxmd83bnfyilplizlxh1pg1gqz2jrq9wz9rqqkxazc03n")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/go-runc")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f" - ,go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f) - ("go-github-com-sirupsen-logrus-1.7.0" - ,go-github-com-sirupsen-logrus-1.7.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-runtime-spec-1.0.2" - ,go-github-com-opencontainers-runtime-spec-1.0.2) - ("go-github-com-containerd-console-1.0.1" - ,go-github-com-containerd-console-1.0.1))) - (home-page "https://github.com/containerd/go-runc") - (synopsis "go-runc") - (description - "This is a package for consuming the @url{https://github.com/opencontainers/runc,runc} binary in your Go applications. -It tries to expose all the settings and features of the runc CLI. If there is something missing then add it, its opensource!") - (license license:asl2.0))) - -(define-public go-github-com-containerd-zfs-0.0.0-20210315114300-dde8f0fda960 - (package - (name "go-github-com-containerd-zfs") - (version "0.0.0-20210315114300-dde8f0fda960") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/zfs") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ag5p2vqzdavq66wb1z42yw5jzrncsi97g8qk2x9nq51z1nj8rdi")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/zfs")) - (propagated-inputs - `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible" - ,go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible) - ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" - ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) - ("go-github-com-containerd-containerd-1.5.0-beta.3" - ,go-github-com-containerd-containerd-1.5.0-beta.3))) - (home-page "https://github.com/containerd/zfs") - (synopsis "ZFS snapshotter plugin") - (description "ZFS snapshotter plugin for containerd.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-containerd-1.5.0-beta.4 - (package - (name "go-github-com-containerd-containerd") - (version "1.5.0-beta.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/containerd") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "039c26mjq8qs1s4kbx76fc99wnmnx165bqn16b2b9gyvxcphs7iv")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/containerd")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) - ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) - ("go-github-com-golang-protobuf-1.3.5" - ,go-github-com-golang-protobuf-1.3.5) - ("go-github-com-gogo-googleapis-1.3.2" - ,go-github-com-gogo-googleapis-1.3.2) - ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" - ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) - ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) - ("go-k8s-io-cri-api-0.20.1" ,go-k8s-io-cri-api-0.20.1) - ("go-k8s-io-component-base-0.20.1" ,go-k8s-io-component-base-0.20.1) - ("go-k8s-io-client-go-0.20.1" ,go-k8s-io-client-go-0.20.1) - ("go-k8s-io-apiserver-0.20.1" ,go-k8s-io-apiserver-0.20.1) - ("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) - ("go-k8s-io-api-0.20.1" ,go-k8s-io-api-0.20.1) - ("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) - ("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" - ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) - ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" - ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) - ("go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b" - ,go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b) - ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) - ("go-github-com-tchap-go-patricia-2.2.6+incompatible" - ,go-github-com-tchap-go-patricia-2.2.6+incompatible) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-sirupsen-logrus-1.7.0" - ,go-github-com-sirupsen-logrus-1.7.0) - ("go-github-com-prometheus-client-golang-1.7.1" - ,go-github-com-prometheus-client-golang-1.7.1) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-selinux-1.8.0" - ,go-github-com-opencontainers-selinux-1.8.0) - ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" - ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) - ("go-github-com-opencontainers-runc-1.0.0-rc93" - ,go-github-com-opencontainers-runc-1.0.0-rc93) - ("go-github-com-opencontainers-image-spec-1.0.1" - ,go-github-com-opencontainers-image-spec-1.0.1) - ("go-github-com-opencontainers-go-digest-1.0.0" - ,go-github-com-opencontainers-go-digest-1.0.0) - ("go-github-com-moby-sys-symlink-0.1.0" - ,go-github-com-moby-sys-symlink-0.1.0) - ("go-github-com-moby-sys-mountinfo-0.4.1" - ,go-github-com-moby-sys-mountinfo-0.4.1) - ("go-github-com-klauspost-compress-1.11.3" - ,go-github-com-klauspost-compress-1.11.3) - ("go-github-com-imdario-mergo-0.3.11" - ,go-github-com-imdario-mergo-0.3.11) - ("go-github-com-hashicorp-go-multierror-1.0.0" - ,go-github-com-hashicorp-go-multierror-1.0.0) - ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" - ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) - ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) - ("go-github-com-google-go-cmp-0.5.4" - ,go-github-com-google-go-cmp-0.5.4) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2) - ("go-github-com-fsnotify-fsnotify-1.4.9" - ,go-github-com-fsnotify-fsnotify-1.4.9) - ("go-github-com-emicklei-go-restful-2.9.5+incompatible" - ,go-github-com-emicklei-go-restful-2.9.5+incompatible) - ("go-github-com-docker-go-units-0.4.0" - ,go-github-com-docker-go-units-0.4.0) - ("go-github-com-docker-go-metrics-0.0.1" - ,go-github-com-docker-go-metrics-0.0.1) - ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" - ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1) - ("go-github-com-coreos-go-systemd-v22-22.1.0" - ,go-github-com-coreos-go-systemd-v22-22.1.0) - ("go-github-com-containernetworking-plugins-0.8.6" - ,go-github-com-containernetworking-plugins-0.8.6) - ("go-github-com-containerd-zfs-0.0.0-20210315114300-dde8f0fda960" - ,go-github-com-containerd-zfs-0.0.0-20210315114300-dde8f0fda960) - ("go-github-com-containerd-typeurl-1.0.1" - ,go-github-com-containerd-typeurl-1.0.1) - ("go-github-com-containerd-ttrpc-1.0.2" - ,go-github-com-containerd-ttrpc-1.0.2) - ("go-github-com-containerd-nri-0.0.0-20210316161719-dbaa18c31c14" - ,go-github-com-containerd-nri-0.0.0-20210316161719-dbaa18c31c14) - ("go-github-com-containerd-imgcrypt-1.1.1-0.20210312161619-7ed62a527887" - ,go-github-com-containerd-imgcrypt-1.1.1-0.20210312161619-7ed62a527887) - ("go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0" - ,go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0) - ("go-github-com-containerd-go-cni-1.0.1" - ,go-github-com-containerd-go-cni-1.0.1) - ("go-github-com-containerd-fifo-0.0.0-20210316144830-115abcc95a1d" - ,go-github-com-containerd-fifo-0.0.0-20210316144830-115abcc95a1d) - ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" - ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) - ("go-github-com-containerd-console-1.0.1" - ,go-github-com-containerd-console-1.0.1) - ("go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68" - ,go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68) - ("go-github-com-containerd-btrfs-0.0.0-20210316141732-918d888fb676" - ,go-github-com-containerd-btrfs-0.0.0-20210316141732-918d888fb676) - ("go-github-com-containerd-aufs-0.0.0-20210316121734-20793ff83c97" - ,go-github-com-containerd-aufs-0.0.0-20210316121734-20793ff83c97) - ("go-github-com-microsoft-hcsshim-0.8.15" - ,go-github-com-microsoft-hcsshim-0.8.15) - ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" - ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3) - ("go-github-com-burntsushi-toml-0.3.1" - ,go-github-com-burntsushi-toml-0.3.1))) - (home-page "https://github.com/containerd/containerd") - (synopsis "Now Recruiting") - (description - "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") - (license license:asl2.0))) - -(define-public go-golang-org-x-sys-0.0.0-20210324051608-47abb6519492 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20210324051608-47abb6519492") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19g0pa8lazad5kcq396ggg9x1d6sx39rw9brz3hklx71gg1jd3ja")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-microsoft-hcsshim-0.8.16 - (package - (name "go-github-com-microsoft-hcsshim") - (version "0.8.16") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/microsoft/hcsshim") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "15bxkqq4zavwspx3ga8j3vx9jrc7l0jazsa6cs6im9liy6xhkbd6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/Microsoft/hcsshim")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) - ("go-golang-org-x-sys-0.0.0-20210324051608-47abb6519492" - ,go-golang-org-x-sys-0.0.0-20210324051608-47abb6519492) - ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" - ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) - ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) - ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) - ("go-github-com-sirupsen-logrus-1.7.0" - ,go-github-com-sirupsen-logrus-1.7.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" - ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2) - ("go-github-com-containerd-typeurl-1.0.1" - ,go-github-com-containerd-typeurl-1.0.1) - ("go-github-com-containerd-ttrpc-1.0.2" - ,go-github-com-containerd-ttrpc-1.0.2) - ("go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0" - ,go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0) - ("go-github-com-containerd-containerd-1.5.0-beta.4" - ,go-github-com-containerd-containerd-1.5.0-beta.4) - ("go-github-com-containerd-console-1.0.1" - ,go-github-com-containerd-console-1.0.1) - ("go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68" - ,go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68) - ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" - ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3))) - (home-page "https://github.com/Microsoft/hcsshim") - (synopsis "hcsshim") - (description - "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") - (license license:expat))) - -(define-public go-github-com-microsoft-go-winio-0.4.17-0.20210324224401-5516f17a5958 - (package - (name "go-github-com-microsoft-go-winio") - (version "0.4.17-0.20210324224401-5516f17a5958") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/microsoft/go-winio") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0gmgiak4x4gdyr17zm4b9vvharflk9pz5aj5jayh9hq50133b2f9")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/Microsoft/go-winio")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" - ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) - ("go-github-com-sirupsen-logrus-1.7.0" - ,go-github-com-sirupsen-logrus-1.7.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) - (home-page "https://github.com/Microsoft/go-winio") - (synopsis "go-winio") - (description - "This repository contains utilities for efficiently performing Win32 IO operations in -Go. Currently, this is focused on accessing named pipes and other file handles, and -for using named pipes as a net transport.") - (license license:expat))) - -(define-public go-github-com-containerd-aufs-0.0.0-20210316121734-20793ff83c97 - (package - (name "go-github-com-containerd-aufs") - (version "0.0.0-20210316121734-20793ff83c97") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/aufs") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ipr8pafb2xpkchfvnxjcfx9pb48mjr9k8krj9gnagssxhynbkd5")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/aufs")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" - ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" - ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) - ("go-github-com-containerd-containerd-1.5.0-beta.3" - ,go-github-com-containerd-containerd-1.5.0-beta.3))) - (home-page "https://github.com/containerd/aufs") - (synopsis "aufs snapshotter") - (description - "AUFS implementation of the snapshot interface for containerd.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-btrfs-0.0.0-20210316141732-918d888fb676 - (package - (name "go-github-com-containerd-btrfs") - (version "0.0.0-20210316141732-918d888fb676") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/btrfs") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1yf38gg41y1v12m0cl81r9q7d13170a4npzqxhbz7qn32zr23kzn")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/btrfs")) - (propagated-inputs - `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) - (home-page "https://github.com/containerd/btrfs") - (synopsis "go-btrfs") - (description - "Package btrfs provides bindings for working with btrfs partitions from Go. -") - (license license:asl2.0))) - -(define-public go-github-com-containerd-fifo-0.0.0-20210316144830-115abcc95a1d - (package - (name "go-github-com-containerd-fifo") - (version "0.0.0-20210316144830-115abcc95a1d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/fifo") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hqna43p8r6g3xv8g8n985hq1nzipsvjiwm70xpbzbgynh4ym6z5")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/fifo")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" - ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) - (home-page "https://github.com/containerd/fifo") - (synopsis "fifo") - (description "Go package for handling fifos in a sane way.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0 - (package - (name "go-github-com-containerd-go-runc") - (version "0.0.0-20201020171139-16b287bc67d0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/go-runc") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0xk30dzzxmd83bnfyilplizlxh1pg1gqz2jrq9wz9rqqkxazc03n")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/go-runc")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f" - ,go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f) - ("go-github-com-sirupsen-logrus-1.7.0" - ,go-github-com-sirupsen-logrus-1.7.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-runtime-spec-1.0.2" - ,go-github-com-opencontainers-runtime-spec-1.0.2) - ("go-github-com-containerd-console-1.0.1" - ,go-github-com-containerd-console-1.0.1))) - (home-page "https://github.com/containerd/go-runc") - (synopsis "go-runc") - (description - "This is a package for consuming the @url{https://github.com/opencontainers/runc,runc} binary in your Go applications. -It tries to expose all the settings and features of the runc CLI. If there is something missing then add it, its opensource!") - (license license:asl2.0))) - -(define-public go-github-com-containerd-imgcrypt-1.1.1-0.20210312161619-7ed62a527887 - (package - (name "go-github-com-containerd-imgcrypt") - (version "1.1.1-0.20210312161619-7ed62a527887") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/imgcrypt") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "16pgcc0w8m2cxhfjzmmd2h3n6mxzc1nlghrhgjlx0lf4q96hv904")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/imgcrypt")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) - ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" - ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) - ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) - ("go-github-com-sirupsen-logrus-1.7.0" - ,go-github-com-sirupsen-logrus-1.7.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" - ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) - ("go-github-com-opencontainers-image-spec-1.0.1" - ,go-github-com-opencontainers-image-spec-1.0.1) - ("go-github-com-opencontainers-go-digest-1.0.0" - ,go-github-com-opencontainers-go-digest-1.0.0) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2) - ("go-github-com-containers-ocicrypt-1.1.0" - ,go-github-com-containers-ocicrypt-1.1.0) - ("go-github-com-containerd-typeurl-1.0.1" - ,go-github-com-containerd-typeurl-1.0.1) - ("go-github-com-containerd-containerd-1.5.0-beta.3" - ,go-github-com-containerd-containerd-1.5.0-beta.3) - ("go-github-com-containerd-console-1.0.1" - ,go-github-com-containerd-console-1.0.1) - ("go-github-com-microsoft-hcsshim-0.8.15" - ,go-github-com-microsoft-hcsshim-0.8.15) - ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" - ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3))) - (home-page "https://github.com/containerd/imgcrypt") - (synopsis "imgcrypt image encryption library and command line tool") - (description - "Project @code{imgcrypt} is a non-core subproject of containerd.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-nri-0.0.0-20210316161719-dbaa18c31c14 - (package - (name "go-github-com-containerd-nri") - (version "0.0.0-20210316161719-dbaa18c31c14") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/nri") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0kyrvagbga6yib7il0m4zvqz977a4wsv5lgjd3ix53xmr4h7fgm7")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/nri")) - (propagated-inputs - `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-containerd-containerd-1.5.0-beta.3" - ,go-github-com-containerd-containerd-1.5.0-beta.3))) - (home-page "https://github.com/containerd/nri") - (synopsis "nri - Node Resource Interface") - (description - "This project is a WIP for a new, CNI like, interface for managing resources on a node for Pods and Containers.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-zfs-0.0.0-20210324211415-d5c4544f0433 - (package - (name "go-github-com-containerd-zfs") - (version "0.0.0-20210324211415-d5c4544f0433") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/zfs") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1wsqwqv2pyn05asgpm9clgpwq9b8b0fjk4khzkjvscrf5j4v1rx4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/zfs")) - (propagated-inputs - `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible" - ,go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible) - ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" - ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) - ("go-github-com-containerd-containerd-1.5.0-beta.3" - ,go-github-com-containerd-containerd-1.5.0-beta.3))) - (home-page "https://github.com/containerd/zfs") - (synopsis "ZFS snapshotter plugin") - (description "ZFS snapshotter plugin for containerd.") - (license license:asl2.0))) - -(define-public go-k8s-io-apiserver-0.20.4 - (package - (name "go-k8s-io-apiserver") - (version "0.20.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes/apiserver") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1gffl7z6bvi46v0fvphbak4waddsgf4pd5w16khgrzl1sv9skn61")))) - (build-system go-build-system) - (arguments '(#:import-path "k8s.io/apiserver")) - (propagated-inputs - `(("go-k8s-io-component-base-0.20.4" ,go-k8s-io-component-base-0.20.4) - ("go-k8s-io-client-go-0.20.4" ,go-k8s-io-client-go-0.20.4) - ("go-k8s-io-apimachinery-0.20.4" ,go-k8s-io-apimachinery-0.20.4) - ("go-k8s-io-api-0.20.4" ,go-k8s-io-api-0.20.4) - ("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) - ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.2" - ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.2) - ("go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.14" - ,go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.14) - ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" - ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) - ("go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd" - ,go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd) - ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) - ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) - ("go-gopkg-in-square-go-jose-v2-2.2.2" - ,go-gopkg-in-square-go-jose-v2-2.2.2) - ("go-gopkg-in-natefinch-lumberjack-v2-2.0.0" - ,go-gopkg-in-natefinch-lumberjack-v2-2.0.0) - ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) - ("go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a" - ,go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a) - ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" - ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) - ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" - ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) - ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" - ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) - ("go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0" - ,go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0) - ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) - ("go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489" - ,go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489) - ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) - ("go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5" - ,go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) - ("go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021" - ,go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822" - ,go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822) - ("go-github-com-mailru-easyjson-0.7.0" - ,go-github-com-mailru-easyjson-0.7.0) - ("go-github-com-hashicorp-golang-lru-0.5.1" - ,go-github-com-hashicorp-golang-lru-0.5.1) - ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" - ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) - ("go-github-com-gorilla-websocket-1.4.2" - ,go-github-com-gorilla-websocket-1.4.2) - ("go-github-com-googleapis-gnostic-0.4.1" - ,go-github-com-googleapis-gnostic-0.4.1) - ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) - ("go-github-com-google-gofuzz-1.1.0" - ,go-github-com-google-gofuzz-1.1.0) - ("go-github-com-google-go-cmp-0.5.2" - ,go-github-com-google-go-cmp-0.5.2) - ("go-github-com-gogo-protobuf-1.3.1" - ,go-github-com-gogo-protobuf-1.3.1) - ("go-github-com-go-openapi-spec-0.19.3" - ,go-github-com-go-openapi-spec-0.19.3) - ("go-github-com-evanphx-json-patch-4.9.0+incompatible" - ,go-github-com-evanphx-json-patch-4.9.0+incompatible) - ("go-github-com-emicklei-go-restful-2.9.5+incompatible" - ,go-github-com-emicklei-go-restful-2.9.5+incompatible) - ("go-github-com-dustin-go-humanize-1.0.0" - ,go-github-com-dustin-go-humanize-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1) - ("go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f" - ,go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f) - ("go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e" - ,go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e) - ("go-github-com-coreos-go-semver-0.3.0" - ,go-github-com-coreos-go-semver-0.3.0) - ("go-github-com-coreos-go-oidc-2.1.0+incompatible" - ,go-github-com-coreos-go-oidc-2.1.0+incompatible))) - (home-page "https://k8s.io/apiserver") - (synopsis "apiserver") - (description - "Generic library for building a Kubernetes aggregated API server.") - (license license:asl2.0))) - -(define-public go-k8s-io-api-0.20.4 - (package - (name "go-k8s-io-api") - (version "0.20.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes/api") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hjckd94vpsr690kwx7dad8qlb8xjg2bz5ms315s9h6wc5cqwvgy")))) - (build-system go-build-system) - (arguments '(#:import-path "k8s.io/api")) - (propagated-inputs - `(("go-k8s-io-apimachinery-0.20.4" ,go-k8s-io-apimachinery-0.20.4) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-gogo-protobuf-1.3.1" - ,go-github-com-gogo-protobuf-1.3.1))) - (home-page "https://k8s.io/api") - (synopsis "api") - (description - "Schema of the external API types that are served by the Kubernetes API server.") - (license license:asl2.0))) - -(define-public go-k8s-io-apimachinery-0.20.4 - (package - (name "go-k8s-io-apimachinery") - (version "0.20.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes/apimachinery") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "15qc12lbzpd4lgajy0rv24b3ky4hhg5y1l37qxdfiakhz91didfw")))) - (build-system go-build-system) - (arguments '(#:import-path "k8s.io/apimachinery")) - (propagated-inputs - `(("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) - ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.2" - ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.2) - ("go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd" - ,go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd) - ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) - ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) - ("go-gopkg-in-inf-v0-0.9.1" ,go-gopkg-in-inf-v0-0.9.1) - ("go-google-golang-org-protobuf-1.25.0" - ,go-google-golang-org-protobuf-1.25.0) - ("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" - ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) - ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) - ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" - ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) - ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" - ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-onsi-gomega-1.7.0" ,go-github-com-onsi-gomega-1.7.0) - ("go-github-com-onsi-ginkgo-1.11.0" ,go-github-com-onsi-ginkgo-1.11.0) - ("go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f" - ,go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f) - ("go-github-com-modern-go-reflect2-1.0.1" - ,go-github-com-modern-go-reflect2-1.0.1) - ("go-github-com-json-iterator-go-1.1.10" - ,go-github-com-json-iterator-go-1.1.10) - ("go-github-com-hashicorp-golang-lru-0.5.1" - ,go-github-com-hashicorp-golang-lru-0.5.1) - ("go-github-com-googleapis-gnostic-0.4.1" - ,go-github-com-googleapis-gnostic-0.4.1) - ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) - ("go-github-com-google-gofuzz-1.1.0" - ,go-github-com-google-gofuzz-1.1.0) - ("go-github-com-google-go-cmp-0.5.2" - ,go-github-com-google-go-cmp-0.5.2) - ("go-github-com-golang-protobuf-1.4.3" - ,go-github-com-golang-protobuf-1.4.3) - ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" - ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) - ("go-github-com-gogo-protobuf-1.3.1" - ,go-github-com-gogo-protobuf-1.3.1) - ("go-github-com-fsnotify-fsnotify-1.4.9" - ,go-github-com-fsnotify-fsnotify-1.4.9) - ("go-github-com-evanphx-json-patch-4.9.0+incompatible" - ,go-github-com-evanphx-json-patch-4.9.0+incompatible) - ("go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153" - ,go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153) - ("go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96" - ,go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://k8s.io/apimachinery") - (synopsis "apimachinery") - (description - "Scheme, typing, encoding, decoding, and conversion packages for Kubernetes and Kubernetes-like API objects.") - (license license:asl2.0))) - -(define-public go-k8s-io-client-go-0.20.4 - (package - (name "go-k8s-io-client-go") - (version "0.20.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes/client-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0g8x2d59qm6068rql63c0mdhcjz9jsyyf7a5fdg1hyf88dvigfcx")))) - (build-system go-build-system) - (arguments '(#:import-path "k8s.io/client-go")) - (propagated-inputs - `(("go-k8s-io-apimachinery-0.20.4" ,go-k8s-io-apimachinery-0.20.4) - ("go-k8s-io-api-0.20.4" ,go-k8s-io-api-0.20.4) - ("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) - ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" - ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) - ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) - ("go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e" - ,go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e) - ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" - ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) - ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" - ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) - ("go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0" - ,go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) - ("go-github-com-peterbourgon-diskv-2.0.1+incompatible" - ,go-github-com-peterbourgon-diskv-2.0.1+incompatible) - ("go-github-com-imdario-mergo-0.3.5" - ,go-github-com-imdario-mergo-0.3.5) - ("go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7" - ,go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7) - ("go-github-com-googleapis-gnostic-0.4.1" - ,go-github-com-googleapis-gnostic-0.4.1) - ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) - ("go-github-com-google-gofuzz-1.1.0" - ,go-github-com-google-gofuzz-1.1.0) - ("go-github-com-google-go-cmp-0.5.2" - ,go-github-com-google-go-cmp-0.5.2) - ("go-github-com-golang-protobuf-1.4.3" - ,go-github-com-golang-protobuf-1.4.3) - ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" - ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) - ("go-github-com-gogo-protobuf-1.3.1" - ,go-github-com-gogo-protobuf-1.3.1) - ("go-github-com-evanphx-json-patch-4.9.0+incompatible" - ,go-github-com-evanphx-json-patch-4.9.0+incompatible) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1) - ("go-github-com-azure-go-autorest-autorest-adal-0.9.5" - ,go-github-com-azure-go-autorest-autorest-adal-0.9.5) - ("go-github-com-azure-go-autorest-autorest-0.11.1" - ,go-github-com-azure-go-autorest-autorest-0.11.1) - ("go-cloud-google-com-go-0.54.0" ,go-cloud-google-com-go-0.54.0))) - (home-page "https://k8s.io/client-go") - (synopsis "client-go") - (description - "Go clients for talking to a @url{http://kubernetes.io/,kubernetes} cluster.") - (license license:asl2.0))) - -(define-public go-k8s-io-component-base-0.20.4 - (package - (name "go-k8s-io-component-base") - (version "0.20.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes/component-base") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "02b782p63h8z3pg64i1kfgkmxwslxpyl6afkhd1agbig9zd6g7w8")))) - (build-system go-build-system) - (arguments '(#:import-path "k8s.io/component-base")) - (propagated-inputs - `(("go-k8s-io-client-go-0.20.4" ,go-k8s-io-client-go-0.20.4) - ("go-k8s-io-apimachinery-0.20.4" ,go-k8s-io-apimachinery-0.20.4) - ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" - ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) - ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) - ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) - ("go-go-uber-org-multierr-1.1.0" ,go-go-uber-org-multierr-1.1.0) - ("go-go-uber-org-atomic-1.4.0" ,go-go-uber-org-atomic-1.4.0) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) - ("go-github-com-sirupsen-logrus-1.6.0" - ,go-github-com-sirupsen-logrus-1.6.0) - ("go-github-com-prometheus-procfs-0.2.0" - ,go-github-com-prometheus-procfs-0.2.0) - ("go-github-com-prometheus-common-0.10.0" - ,go-github-com-prometheus-common-0.10.0) - ("go-github-com-prometheus-client-model-0.2.0" - ,go-github-com-prometheus-client-model-0.2.0) - ("go-github-com-prometheus-client-golang-1.7.1" - ,go-github-com-prometheus-client-golang-1.7.1) - ("go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd" - ,go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd) - ("go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369" - ,go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369) - ("go-github-com-google-go-cmp-0.5.2" - ,go-github-com-google-go-cmp-0.5.2) - ("go-github-com-go-logr-logr-0.2.0" ,go-github-com-go-logr-logr-0.2.0) - ("go-github-com-blang-semver-3.5.1+incompatible" - ,go-github-com-blang-semver-3.5.1+incompatible))) - (home-page "https://k8s.io/component-base") - (synopsis "component-base") - (description - "Implement KEP 32: @url{https://github.com/kubernetes/enhancements/blob/master/keps/sig-cluster-lifecycle/wgs/783-component-base/README.md,https://github.com/kubernetes/enhancements/blob/master/keps/sig-cluster-lifecycle/wgs/783-component-base/README.md}") - (license license:asl2.0))) - -(define-public go-k8s-io-cri-api-0.20.4 - (package - (name "go-k8s-io-cri-api") - (version "0.20.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes/cri-api") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1r98d0kv42sijdg3404xx2g5jj0zixvfagkky2zla12p68ajm4xr")))) - (build-system go-build-system) - (arguments '(#:import-path "k8s.io/cri-api")) - (propagated-inputs - `(("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" - ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) - ("go-google-golang-org-protobuf-1.25.0" - ,go-google-golang-org-protobuf-1.25.0) - ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) - ("go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a" - ,go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a) - ("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" - ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) - ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) - ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" - ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) - ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" - ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-kr-pretty-0.2.0" ,go-github-com-kr-pretty-0.2.0) - ("go-github-com-google-go-cmp-0.5.2" - ,go-github-com-google-go-cmp-0.5.2) - ("go-github-com-golang-protobuf-1.4.3" - ,go-github-com-golang-protobuf-1.4.3) - ("go-github-com-gogo-protobuf-1.3.1" - ,go-github-com-gogo-protobuf-1.3.1) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://k8s.io/cri-api") - (synopsis "Purpose") - (description - "This repository contains the definitions for the Container Runtime Interface (CRI). -CRI is a plugin interface which enables kubelet to use a wide variety of container runtimes, -without the need to recompile. CRI consists of a protocol buffers and gRPC API.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-containerd-1.5.0-rc.0 - (package - (name "go-github-com-containerd-containerd") - (version "1.5.0-rc.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/containerd") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "148z6782bj0vy3vzbhg2xf53g14llvxfsmdsqkz6x5n49rm6xr4i")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/containerd")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) - ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) - ("go-github-com-golang-protobuf-1.3.5" - ,go-github-com-golang-protobuf-1.3.5) - ("go-github-com-gogo-googleapis-1.3.2" - ,go-github-com-gogo-googleapis-1.3.2) - ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" - ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) - ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) - ("go-k8s-io-cri-api-0.20.4" ,go-k8s-io-cri-api-0.20.4) - ("go-k8s-io-component-base-0.20.4" ,go-k8s-io-component-base-0.20.4) - ("go-k8s-io-client-go-0.20.4" ,go-k8s-io-client-go-0.20.4) - ("go-k8s-io-apiserver-0.20.4" ,go-k8s-io-apiserver-0.20.4) - ("go-k8s-io-apimachinery-0.20.4" ,go-k8s-io-apimachinery-0.20.4) - ("go-k8s-io-api-0.20.4" ,go-k8s-io-api-0.20.4) - ("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) - ("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" - ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) - ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" - ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) - ("go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b" - ,go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b) - ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) - ("go-github-com-tchap-go-patricia-2.2.6+incompatible" - ,go-github-com-tchap-go-patricia-2.2.6+incompatible) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-sirupsen-logrus-1.7.0" - ,go-github-com-sirupsen-logrus-1.7.0) - ("go-github-com-prometheus-client-golang-1.7.1" - ,go-github-com-prometheus-client-golang-1.7.1) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-pelletier-go-toml-1.8.1" - ,go-github-com-pelletier-go-toml-1.8.1) - ("go-github-com-opencontainers-selinux-1.8.0" - ,go-github-com-opencontainers-selinux-1.8.0) - ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" - ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) - ("go-github-com-opencontainers-runc-1.0.0-rc93" - ,go-github-com-opencontainers-runc-1.0.0-rc93) - ("go-github-com-opencontainers-image-spec-1.0.1" - ,go-github-com-opencontainers-image-spec-1.0.1) - ("go-github-com-opencontainers-go-digest-1.0.0" - ,go-github-com-opencontainers-go-digest-1.0.0) - ("go-github-com-moby-sys-symlink-0.1.0" - ,go-github-com-moby-sys-symlink-0.1.0) - ("go-github-com-moby-sys-mountinfo-0.4.1" - ,go-github-com-moby-sys-mountinfo-0.4.1) - ("go-github-com-klauspost-compress-1.11.13" - ,go-github-com-klauspost-compress-1.11.13) - ("go-github-com-imdario-mergo-0.3.11" - ,go-github-com-imdario-mergo-0.3.11) - ("go-github-com-hashicorp-go-multierror-1.0.0" - ,go-github-com-hashicorp-go-multierror-1.0.0) - ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" - ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) - ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) - ("go-github-com-google-go-cmp-0.5.4" - ,go-github-com-google-go-cmp-0.5.4) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2) - ("go-github-com-fsnotify-fsnotify-1.4.9" - ,go-github-com-fsnotify-fsnotify-1.4.9) - ("go-github-com-emicklei-go-restful-2.9.5+incompatible" - ,go-github-com-emicklei-go-restful-2.9.5+incompatible) - ("go-github-com-docker-go-units-0.4.0" - ,go-github-com-docker-go-units-0.4.0) - ("go-github-com-docker-go-metrics-0.0.1" - ,go-github-com-docker-go-metrics-0.0.1) - ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" - ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1) - ("go-github-com-coreos-go-systemd-v22-22.1.0" - ,go-github-com-coreos-go-systemd-v22-22.1.0) - ("go-github-com-containernetworking-plugins-0.8.6" - ,go-github-com-containernetworking-plugins-0.8.6) - ("go-github-com-containerd-zfs-0.0.0-20210324211415-d5c4544f0433" - ,go-github-com-containerd-zfs-0.0.0-20210324211415-d5c4544f0433) - ("go-github-com-containerd-typeurl-1.0.1" - ,go-github-com-containerd-typeurl-1.0.1) - ("go-github-com-containerd-ttrpc-1.0.2" - ,go-github-com-containerd-ttrpc-1.0.2) - ("go-github-com-containerd-nri-0.0.0-20210316161719-dbaa18c31c14" - ,go-github-com-containerd-nri-0.0.0-20210316161719-dbaa18c31c14) - ("go-github-com-containerd-imgcrypt-1.1.1-0.20210312161619-7ed62a527887" - ,go-github-com-containerd-imgcrypt-1.1.1-0.20210312161619-7ed62a527887) - ("go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0" - ,go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0) - ("go-github-com-containerd-go-cni-1.0.1" - ,go-github-com-containerd-go-cni-1.0.1) - ("go-github-com-containerd-fifo-0.0.0-20210316144830-115abcc95a1d" - ,go-github-com-containerd-fifo-0.0.0-20210316144830-115abcc95a1d) - ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" - ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) - ("go-github-com-containerd-console-1.0.1" - ,go-github-com-containerd-console-1.0.1) - ("go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68" - ,go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68) - ("go-github-com-containerd-btrfs-0.0.0-20210316141732-918d888fb676" - ,go-github-com-containerd-btrfs-0.0.0-20210316141732-918d888fb676) - ("go-github-com-containerd-aufs-0.0.0-20210316121734-20793ff83c97" - ,go-github-com-containerd-aufs-0.0.0-20210316121734-20793ff83c97) - ("go-github-com-microsoft-hcsshim-0.8.15" - ,go-github-com-microsoft-hcsshim-0.8.15) - ("go-github-com-microsoft-go-winio-0.4.17-0.20210324224401-5516f17a5958" - ,go-github-com-microsoft-go-winio-0.4.17-0.20210324224401-5516f17a5958))) - (home-page "https://github.com/containerd/containerd") - (synopsis "Now Recruiting") - (description - "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") - (license license:asl2.0))) - -(define-public go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20210322153248-0c34fe9e7dc2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "021szs1czc0xg4chpays7i05dvkax9s8mns314ab01r887kchqxq")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" - ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) - ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" - ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68) - ("go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110" - ,go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-github-com-containers-ocicrypt-1.1.1 - (package - (name "go-github-com-containers-ocicrypt") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containers/ocicrypt") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1l0bfk244sxnakg3my529jsw532pffkmiyk5y1iqblz4mkjfphc8")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containers/ocicrypt")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) - ("go-gopkg-in-square-go-jose-v2-2.5.1" - ,go-gopkg-in-square-go-jose-v2-2.5.1) - ("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) - ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" - ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) - ("go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2" - ,go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2) - ("go-go-mozilla-org-pkcs7-0.0.0-20200128120323-432b2356ecb1" - ,go-go-mozilla-org-pkcs7-0.0.0-20200128120323-432b2356ecb1) - ("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0) - ("go-github-com-stefanberger-go-pkcs11uri-0.0.0-20201008174630-78d3cae3a980" - ,go-github-com-stefanberger-go-pkcs11uri-0.0.0-20201008174630-78d3cae3a980) - ("go-github-com-sirupsen-logrus-1.7.0" - ,go-github-com-sirupsen-logrus-1.7.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-image-spec-1.0.1" - ,go-github-com-opencontainers-image-spec-1.0.1) - ("go-github-com-opencontainers-go-digest-1.0.0" - ,go-github-com-opencontainers-go-digest-1.0.0) - ("go-github-com-miekg-pkcs11-1.0.3" ,go-github-com-miekg-pkcs11-1.0.3) - ("go-github-com-google-go-cmp-0.5.2" - ,go-github-com-google-go-cmp-0.5.2) - ("go-github-com-golang-protobuf-1.4.3" - ,go-github-com-golang-protobuf-1.4.3))) - (home-page "https://github.com/containers/ocicrypt") - (synopsis "OCIcrypt Library") - (description - "The @code{ocicrypt} library is the OCI image spec implementation of container image encryption. More details of the spec can be seen in the @url{https://github.com/opencontainers/image-spec/pull/775,OCI repository}. The purpose of this library is to encode spec structures and consts in code, as well as provide a consistent implementation of image encryption across container runtimes and build tools.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-imgcrypt-1.1.1 - (package - (name "go-github-com-containerd-imgcrypt") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/imgcrypt") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "177fs3p2xzwjsffcxqqllx6wi6ghfyqbvfgn95v3q7a2993yqk4k")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/imgcrypt")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) - ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" - ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) - ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) - ("go-github-com-sirupsen-logrus-1.7.0" - ,go-github-com-sirupsen-logrus-1.7.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" - ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) - ("go-github-com-opencontainers-image-spec-1.0.1" - ,go-github-com-opencontainers-image-spec-1.0.1) - ("go-github-com-opencontainers-go-digest-1.0.0" - ,go-github-com-opencontainers-go-digest-1.0.0) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2) - ("go-github-com-containers-ocicrypt-1.1.1" - ,go-github-com-containers-ocicrypt-1.1.1) - ("go-github-com-containerd-typeurl-1.0.1" - ,go-github-com-containerd-typeurl-1.0.1) - ("go-github-com-containerd-containerd-1.5.0-rc.0" - ,go-github-com-containerd-containerd-1.5.0-rc.0) - ("go-github-com-containerd-console-1.0.2" - ,go-github-com-containerd-console-1.0.2) - ("go-github-com-microsoft-hcsshim-0.8.16" - ,go-github-com-microsoft-hcsshim-0.8.16) - ("go-github-com-microsoft-go-winio-0.4.17-0.20210324224401-5516f17a5958" - ,go-github-com-microsoft-go-winio-0.4.17-0.20210324224401-5516f17a5958))) - (home-page "https://github.com/containerd/imgcrypt") - (synopsis "imgcrypt image encryption library and command line tool") - (description - "Project @code{imgcrypt} is a non-core subproject of containerd.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-nri-0.1.0 - (package - (name "go-github-com-containerd-nri") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/nri") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hqji5qa0n0fdyv9sjdl7mv3bb4fnq9i79pdzlw6m1nigrnb18qp")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/nri")) - (propagated-inputs - `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-containerd-containerd-1.5.0-beta.3" - ,go-github-com-containerd-containerd-1.5.0-beta.3))) - (home-page "https://github.com/containerd/nri") - (synopsis "nri - Node Resource Interface") - (description - "This project is a WIP for a new, CNI like, interface for managing resources on a node for Pods and Containers.") - (license license:asl2.0))) - -(define-public go-google-golang-org-genproto-0.0.0-20200224152610-e50cd9704f63 - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20200224152610-e50cd9704f63") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1392q1dfg4kkfg86w05gsszdlkd0hf424rvich1xzjqbm3ad3lin")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" - ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-golang-protobuf-1.3.3" - ,go-github-com-golang-protobuf-1.3.3))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-google-golang-org-protobuf-1.27.1 - (package - (name "go-google-golang-org-protobuf") - (version "1.27.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0aszb7cv8fq1m8akgd4kjyg5q7g5z9fdqnry6057ygq9r8r2yif2")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.5.5" - ,go-github-com-google-go-cmp-0.5.5) - ("go-github-com-golang-protobuf-1.5.0" - ,go-github-com-golang-protobuf-1.5.0))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-containerd-ttrpc-1.1.0 - (package - (name "go-github-com-containerd-ttrpc") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/ttrpc") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "13grp3ivmkdyhwpzhnva2w4lv035c4i1m0a2bdci4z44mif86gns")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/ttrpc")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.27.1" - ,go-google-golang-org-protobuf-1.27.1) - ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) - ("go-google-golang-org-genproto-0.0.0-20200224152610-e50cd9704f63" - ,go-google-golang-org-genproto-0.0.0-20200224152610-e50cd9704f63) - ("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" - ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) - ("go-github-com-sirupsen-logrus-1.8.1" - ,go-github-com-sirupsen-logrus-1.8.1) - ("go-github-com-prometheus-procfs-0.6.0" - ,go-github-com-prometheus-procfs-0.6.0) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2))) - (home-page "https://github.com/containerd/ttrpc") - (synopsis "ttrpc") - (description "GRPC for low-memory environments.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-typeurl-1.0.2 - (package - (name "go-github-com-containerd-typeurl") - (version "1.0.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/typeurl") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0wvfxlxgkln11d9s6rxay965c715bnpk203klbsq8m8qpjqrz620")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/typeurl")) - (propagated-inputs - `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2))) - (home-page "https://github.com/containerd/typeurl") - (synopsis "typeurl") - (description - "This package provides a Go package for managing the registration, marshaling, and unmarshaling of encoded types.") - (license license:asl2.0))) - -(define-public go-github-com-microsoft-hcsshim-0.8.15 - (package - (name "go-github-com-microsoft-hcsshim") - (version "0.8.15") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/microsoft/hcsshim") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1119qf7nklpnn9li61m8jrd5wvifhiz7qh7sfjjy04rfvbvlsi6c")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/Microsoft/hcsshim")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.30.0" ,go-google-golang-org-grpc-1.30.0) - ("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" - ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) - ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" - ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) - ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) - ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) - ("go-github-com-sirupsen-logrus-1.7.0" - ,go-github-com-sirupsen-logrus-1.7.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" - ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2) - ("go-github-com-containerd-typeurl-1.0.1" - ,go-github-com-containerd-typeurl-1.0.1) - ("go-github-com-containerd-ttrpc-1.0.2" - ,go-github-com-containerd-ttrpc-1.0.2) - ("go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328" - ,go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328) - ("go-github-com-containerd-containerd-1.5.0-beta.1" - ,go-github-com-containerd-containerd-1.5.0-beta.1) - ("go-github-com-containerd-console-1.0.1" - ,go-github-com-containerd-console-1.0.1) - ("go-github-com-containerd-cgroups-0.0.0-20200824123100-0b889c03f102" - ,go-github-com-containerd-cgroups-0.0.0-20200824123100-0b889c03f102) - ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" - ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3))) - (home-page "https://github.com/Microsoft/hcsshim") - (synopsis "hcsshim") - (description - "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") - (license license:expat))) - -(define-public go-github-com-containerd-containerd-1.4.1 - (package - (name "go-github-com-containerd-containerd") - (version "1.4.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/containerd") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1k6dqaidnldf7kpxdszf0wn6xb8m6vaizm2aza81fri1q0051213")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/containerd")) - (home-page "https://github.com/containerd/containerd") - (synopsis "Now Recruiting") - (description - "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") - (license license:asl2.0))) - -(define-public go-golang-org-x-sys-0.0.0-20200622214017-ed371f2e16b4 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200622214017-ed371f2e16b4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "107wfy2fj6z5zps1v72j8drfrfvss1158drb0yqhz5awlbvgrpj7")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-containerd-aufs-0.0.0-20201003224125-76a6863f2989 - (package - (name "go-github-com-containerd-aufs") - (version "0.0.0-20201003224125-76a6863f2989") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/aufs") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0nsiyqjrgf3vvv6hpiljknpbkzlla1czpkq69i607f7p5jd8bgaq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/aufs")) - (propagated-inputs - `(("go-gotest-tools-v3-3.0.2" ,go-gotest-tools-v3-3.0.2) - ("go-golang-org-x-sys-0.0.0-20200622214017-ed371f2e16b4" - ,go-golang-org-x-sys-0.0.0-20200622214017-ed371f2e16b4) - ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-image-spec-1.0.1" - ,go-github-com-opencontainers-image-spec-1.0.1) - ("go-github-com-google-go-cmp-0.3.1" - ,go-github-com-google-go-cmp-0.3.1) - ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" - ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) - ("go-github-com-containerd-typeurl-1.0.1" - ,go-github-com-containerd-typeurl-1.0.1) - ("go-github-com-containerd-ttrpc-1.0.1" - ,go-github-com-containerd-ttrpc-1.0.1) - ("go-github-com-containerd-continuity-0.0.0-20200710164510-efbc4488d8fe" - ,go-github-com-containerd-continuity-0.0.0-20200710164510-efbc4488d8fe) - ("go-github-com-containerd-containerd-1.4.1" - ,go-github-com-containerd-containerd-1.4.1) - ("go-github-com-microsoft-hcsshim-0.8.9" - ,go-github-com-microsoft-hcsshim-0.8.9))) - (home-page "https://github.com/containerd/aufs") - (synopsis "aufs snapshotter") - (description - "AUFS implementation of the snapshot interface for containerd.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68 - (package - (name "go-github-com-containerd-cgroups") - (version "0.0.0-20210114181951-8a68de567b68") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/cgroups") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0v70kxazvsizx33w9nz341hg14acg2vnbfcpx9yknmsjqdwgqnhs")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/cgroups")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9" - ,go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9) - ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) - ("go-github-com-stretchr-testify-1.2.2" - ,go-github-com-stretchr-testify-1.2.2) - ("go-github-com-sirupsen-logrus-1.7.0" - ,go-github-com-sirupsen-logrus-1.7.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-runtime-spec-1.0.2" - ,go-github-com-opencontainers-runtime-spec-1.0.2) - ("go-github-com-gogo-protobuf-1.3.1" - ,go-github-com-gogo-protobuf-1.3.1) - ("go-github-com-godbus-dbus-v5-5.0.3" - ,go-github-com-godbus-dbus-v5-5.0.3) - ("go-github-com-docker-go-units-0.4.0" - ,go-github-com-docker-go-units-0.4.0) - ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" - ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) - ("go-github-com-coreos-go-systemd-v22-22.1.0" - ,go-github-com-coreos-go-systemd-v22-22.1.0) - ("go-github-com-cilium-ebpf-0.2.0" ,go-github-com-cilium-ebpf-0.2.0))) - (home-page "https://github.com/containerd/cgroups") - (synopsis "cgroups") - (description - "Go package for creating, managing, inspecting, and destroying cgroups. -The resources format for settings on the cgroup uses the OCI runtime-spec found -@url{https://github.com/opencontainers/runtime-spec,here}.") - (license license:asl2.0))) - -(define-public go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3 - (package - (name "go-github-com-microsoft-go-winio") - (version "0.4.17-0.20210211115548-6eac466e5fa3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/microsoft/go-winio") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0w8fmybsl0v5azwi66qa299gwh0mlp907mrg4yaiya7s0cjmjx0d")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/Microsoft/go-winio")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" - ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) - ("go-github-com-sirupsen-logrus-1.7.0" - ,go-github-com-sirupsen-logrus-1.7.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) - (home-page "https://github.com/Microsoft/go-winio") - (synopsis "go-winio") - (description - "This repository contains utilities for efficiently performing Win32 IO operations in -Go. Currently, this is focused on accessing named pipes and other file handles, and -for using named pipes as a net transport.") - (license license:expat))) - -(define-public go-github-com-microsoft-hcsshim-test-0.0.0-20210227013316-43a75bb4edd3 - (package - (name "go-github-com-microsoft-hcsshim-test") - (version "0.0.0-20210227013316-43a75bb4edd3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/microsoft/hcsshim") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1j899w4hdw1mk6rfyy9qsm902iavgc49ykbjdsb02m6wszq1z0wy")))) - (build-system go-build-system) - (arguments - '(#:import-path - "github.com/Microsoft/hcsshim/test" - #:unpack-path - "github.com/Microsoft/hcsshim")) - (propagated-inputs - `(("go-k8s-io-cri-api-0.20.1" ,go-k8s-io-cri-api-0.20.1) - ("go-google-golang-org-grpc-1.30.0" ,go-google-golang-org-grpc-1.30.0) - ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" - ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) - ("go-github-com-sirupsen-logrus-1.7.0" - ,go-github-com-sirupsen-logrus-1.7.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39" - ,go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39) - ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" - ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2) - ("go-github-com-containerd-typeurl-1.0.1" - ,go-github-com-containerd-typeurl-1.0.1) - ("go-github-com-containerd-ttrpc-1.0.2" - ,go-github-com-containerd-ttrpc-1.0.2) - ("go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328" - ,go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328) - ("go-github-com-containerd-containerd-1.5.0-beta.1" - ,go-github-com-containerd-containerd-1.5.0-beta.1) - ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" - ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3))) - (home-page "https://github.com/Microsoft/hcsshim") - (synopsis #f) - (description #f) - (license license:expat))) - -(define-public go-github-com-microsoft-go-winio-0.4.16 - (package - (name "go-github-com-microsoft-go-winio") - (version "0.4.16") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/microsoft/go-winio") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0snwbwdjs34x0my9ri77cvrbnahdiyjh2jlkzf12fy48p7fyk7pq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/Microsoft/go-winio")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3" - ,go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3) - ("go-github-com-sirupsen-logrus-1.4.1" - ,go-github-com-sirupsen-logrus-1.4.1) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) - (home-page "https://github.com/Microsoft/go-winio") - (synopsis "go-winio") - (description - "This repository contains utilities for efficiently performing Win32 IO operations in -Go. Currently, this is focused on accessing named pipes and other file handles, and -for using named pipes as a net transport.") - (license license:expat))) - -(define-public go-github-com-azure-azure-sdk-for-go-16.2.1+incompatible - (package - (name "go-github-com-azure-azure-sdk-for-go") - (version "16.2.1+incompatible") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/Azure/azure-sdk-for-go") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1hwrspsyfs003h4f8zl8b41g3a6jpkqawqrykd1mjw9p6hs1c6k8")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/Azure/azure-sdk-for-go")) - (home-page "https://github.com/Azure/azure-sdk-for-go") - (synopsis "Azure SDK for Go") - (description - "Package sdk provides Go packages for managing and using Azure services. -") - (license license:expat))) - -(define-public go-github-com-azure-go-autorest-10.8.1+incompatible - (package - (name "go-github-com-azure-go-autorest") - (version "10.8.1+incompatible") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/Azure/go-autorest") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "122zfifj93vkix8ggkdh0dz5rmzxh4bql4nry1hws2czmzgxlkdm")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/Azure/go-autorest")) - (home-page "https://github.com/Azure/go-autorest") - (synopsis "go-autorest") - (description - "Package go-autorest provides an HTTP request client for use with Autorest-generated API client packages. -") - (license license:asl2.0))) - -(define-public go-github-com-shopify-logrus-bugsnag-0.0.0-20171204204709-577dee27f20d - (package - (name "go-github-com-shopify-logrus-bugsnag") - (version "0.0.0-20171204204709-577dee27f20d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/Shopify/logrus-bugsnag") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1l3yahk77vzgmjs7baf8g14sv33jj04rw73iind4wayg40lfgrp8")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/Shopify/logrus-bugsnag")) - (home-page "https://github.com/Shopify/logrus-bugsnag") - (synopsis "logrus-bugsnag") - (description - "logrus-bugsnag is a hook that allows @url{https://github.com/sirupsen/logrus,Logrus} to interface with @url{https://bugsnag.com,Bugsnag}.") - (license license:expat))) - -(define-public go-github-com-go-ini-ini-1.25.4 - (package - (name "go-github-com-go-ini-ini") - (version "1.25.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/go-ini/ini") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0b6cql5ripbiyrm18d6bfd1rfjnwcbskppw3d0vb80l0wy72d0c6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/go-ini/ini")) - (home-page "https://github.com/go-ini/ini") - (synopsis "INI") - (description - "Package ini provides INI file read and write functionality in Go. -") - (license license:asl2.0))) - -(define-public go-github-com-jmespath-go-jmespath-0.0.0-20160202185014-0b12d6b521d8 - (package - (name "go-github-com-jmespath-go-jmespath") - (version "0.0.0-20160202185014-0b12d6b521d8") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/jmespath/go-jmespath") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1vv6hph8j6xgv7gwl9vvhlsaaqsm22sxxqmgmldi4v11783pc1ld")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/jmespath/go-jmespath")) - (home-page "https://github.com/jmespath/go-jmespath") - (synopsis "go-jmespath - A JMESPath implementation in Go") - (description - "go-jmespath is a GO implementation of JMESPath, -which is a query language for JSON. It will take a JSON -document and transform it into another JSON document -through a JMESPath expression.") - (license license:asl2.0))) - -(define-public go-github-com-aws-aws-sdk-go-1.15.11 - (package - (name "go-github-com-aws-aws-sdk-go") - (version "1.15.11") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/aws/aws-sdk-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0w960w39k3nyc17p1lvd41cls39qwg7kzfm57vfbdb4h1m5sck99")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/aws/aws-sdk-go")) - (propagated-inputs - `(("go-github-com-jmespath-go-jmespath-0.0.0-20160202185014-0b12d6b521d8" - ,go-github-com-jmespath-go-jmespath-0.0.0-20160202185014-0b12d6b521d8) - ("go-github-com-go-ini-ini-1.25.4" ,go-github-com-go-ini-ini-1.25.4))) - (home-page "https://github.com/aws/aws-sdk-go") - (synopsis "AWS SDK for Go") - (description - "Package sdk is the official AWS SDK for the Go programming language. -") - (license license:asl2.0))) - -(define-public go-github-com-beorn7-perks-0.0.0-20160804104726-4c0e84591b9a - (package - (name "go-github-com-beorn7-perks") - (version "0.0.0-20160804104726-4c0e84591b9a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/beorn7/perks") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1hrybsql68xw57brzj805xx2mghydpdiysv3gbhr7f5wlxj2514y")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/beorn7/perks")) - (home-page "https://github.com/beorn7/perks") - (synopsis "Perks for Go (golang.org)") - (description - "Perks contains the Go package quantile that computes approximate quantiles over -an unbounded data stream within low memory and CPU bounds.") - (license license:expat))) - -(define-public go-github-com-bitly-go-simplejson-0.5.0 - (package - (name "go-github-com-bitly-go-simplejson") - (version "0.5.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/bitly/go-simplejson") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0n9f9dz1jn1jx86d48569nznpjn9fmq3knn7r65xpy7jhih284jj")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/bitly/go-simplejson")) - (home-page "https://github.com/bitly/go-simplejson") - (synopsis "go-simplejson") - (description "a Go package to interact with arbitrary JSON") - (license license:expat))) - -(define-public go-github-com-bmizerany-assert-0.0.0-20160611221934-b7ed37b82869 - (package - (name "go-github-com-bmizerany-assert") - (version "0.0.0-20160611221934-b7ed37b82869") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/bmizerany/assert") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18hy1wyl9zdi7sgxafrn3m7fadh6in0rhhb8l0cvkxqzdl0jcw2s")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/bmizerany/assert")) - (home-page "https://github.com/bmizerany/assert") - (synopsis #f) - (description #f) - (license #f))) - -(define-public go-github-com-bshuster-repo-logrus-logstash-hook-0.4.1 - (package - (name "go-github-com-bshuster-repo-logrus-logstash-hook") - (version "0.4.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/bshuster-repo/logrus-logstash-hook") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1kkjzav4i3l2ahgpirysr0cqh60vdq517lpj00cc9z32zfrsw87k")))) - (build-system go-build-system) - (arguments - '(#:import-path "github.com/bshuster-repo/logrus-logstash-hook")) - (home-page "https://github.com/bshuster-repo/logrus-logstash-hook") - (synopsis "Logstash hook for logrus") - (description - "Use this hook to send the logs to @url{https://www.elastic.co/products/logstash,Logstash}.") - (license license:expat))) - -(define-public go-github-com-bugsnag-bugsnag-go-0.0.0-20141110184014-b1d153021fcd - (package - (name "go-github-com-bugsnag-bugsnag-go") - (version "0.0.0-20141110184014-b1d153021fcd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/bugsnag/bugsnag-go") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "057vwigfzq42p9vkk9yhy8vkvgdmh6653rc988jmvmrkwbgvb352")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/bugsnag/bugsnag-go")) - (home-page "https://github.com/bugsnag/bugsnag-go") - (synopsis "Bugsnag error reporter for Go") - (description - "Package bugsnag captures errors in real-time and reports them to Bugsnag (@url{http://bugsnag.com,http://bugsnag.com}). -") - (license license:expat))) - -(define-public go-github-com-bugsnag-osext-0.0.0-20130617224835-0dd3f918b21b - (package - (name "go-github-com-bugsnag-osext") - (version "0.0.0-20130617224835-0dd3f918b21b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/bugsnag/osext") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "02pczqml6p1mnfdrygm3rs02g0r65qx8v1bi3x24dx8wv9dr5y23")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/bugsnag/osext")) - (home-page "https://github.com/bugsnag/osext") - (synopsis #f) - (description "Extensions to the standard \"os\" package. -") - (license license:zlib))) - -(define-public go-github-com-bugsnag-panicwrap-0.0.0-20151223152923-e2c28503fcd0 - (package - (name "go-github-com-bugsnag-panicwrap") - (version "0.0.0-20151223152923-e2c28503fcd0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/bugsnag/panicwrap") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "02z1q18s83xhfsz3n8bzv071a6n0irlad11yxppaf7015a7dl446")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/bugsnag/panicwrap")) - (home-page "https://github.com/bugsnag/panicwrap") - (synopsis "panicwrap") - (description - "The panicwrap package provides functions for capturing and handling -panics in your application. It does this by re-executing the running -application and monitoring stderr for any panics. At the same time, -stdout/stderr/etc. are set to the same values so that data is shuttled -through properly, making the existence of panicwrap mostly transparent. -") - (license license:expat))) - -(define-public go-github-com-denverdino-aliyungo-0.0.0-20190125010748-a747050bb1ba - (package - (name "go-github-com-denverdino-aliyungo") - (version "0.0.0-20190125010748-a747050bb1ba") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/denverdino/aliyungo") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0rc16ciz8gjpn36fhp0qz1ns0inlvjaz07z1qffl9ni4b49hhwkn")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/denverdino/aliyungo")) - (home-page "https://github.com/denverdino/aliyungo") - (synopsis "AliyunGo: Go SDK for Aliyun Services") - (description - "This is an unofficial Go SDK for Aliyun services. You are welcome for contribution.") - (license license:asl2.0))) - -(define-public go-github-com-dgrijalva-jwt-go-0.0.0-20170104182250-a601269ab70c - (package - (name "go-github-com-dgrijalva-jwt-go") - (version "0.0.0-20170104182250-a601269ab70c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/dgrijalva/jwt-go") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1c2dhmj95wh9cs099cr43qghgmp6bqx0mq44vha2dqq5jkbazwfv")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/dgrijalva/jwt-go")) - (home-page "https://github.com/dgrijalva/jwt-go") - (synopsis "jwt-go") - (description - "Package jwt is a Go implementation of JSON Web Tokens: @url{http://self-issued.info/docs/draft-jones-json-web-token.html,http://self-issued.info/docs/draft-jones-json-web-token.html} -") - (license license:expat))) - -(define-public go-github-com-dnaeon-go-vcr-1.0.1 - (package - (name "go-github-com-dnaeon-go-vcr") - (version "1.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/dnaeon/go-vcr") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1d0kpqr12qrqlamz5a47bp05mx49za2v6l1k7c6z71xahfmb7v2d")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/dnaeon/go-vcr")) - (home-page "https://github.com/dnaeon/go-vcr") - (synopsis "go-vcr") - (description - "@code{go-vcr} simplifies testing by recording your HTTP interactions and -replaying them in future runs in order to provide fast, deterministic -and accurate testing of your code.") - (license license:bsd-2))) - -(define-public go-github-com-docker-go-metrics-0.0.0-20180209012529-399ea8c73916 - (package - (name "go-github-com-docker-go-metrics") - (version "0.0.0-20180209012529-399ea8c73916") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/docker/go-metrics") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0najfy92fq05b330cnjk5b326yi7dnnmvzfk6g5lsa1fci78yzw4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/docker/go-metrics")) - (home-page "https://github.com/docker/go-metrics") - (synopsis "go-metrics") - (description - "This package is small wrapper around the prometheus go client to help enforce convention and best practices for metrics collection in Docker projects.") - (license (list license:asl2.0 license:cc-by-sa4.0)))) - -(define-public go-github-com-docker-libtrust-0.0.0-20150114040149-fa567046d9b1 - (package - (name "go-github-com-docker-libtrust") - (version "0.0.0-20150114040149-fa567046d9b1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/docker/libtrust") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1121c7fxarzyr3fvxyzfw8qs4hb8k92dsix26s5vxncgszl5svf2")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/docker/libtrust")) - (home-page "https://github.com/docker/libtrust") - (synopsis "libtrust") - (description - "Package libtrust provides an interface for managing authentication and -authorization using public key cryptography. Authentication is handled -using the identity attached to the public key and verified through TLS -x509 certificates, a key challenge, or signature. Authorization and -access control is managed through a trust graph distributed between -both remote trust servers and locally cached and managed data. -") - (license license:asl2.0))) - -(define-public go-github-com-garyburd-redigo-0.0.0-20150301180006-535138d7bcd7 - (package - (name "go-github-com-garyburd-redigo") - (version "0.0.0-20150301180006-535138d7bcd7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/garyburd/redigo") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1m7nc1gvv5yqnq8ii75f33485il6y6prf8gxl97dimsw94qccc5v")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/garyburd/redigo")) - (home-page "https://github.com/garyburd/redigo") - (synopsis #f) - (description - "Future development of Redigo is at -@url{https://github.com/gomodule/redigo,github.com/gomodule/redigo}. Please submit -issues at gomodule/redigo. The repository at github.com/garyburd/redigo is a -read-only snapshot.") - (license license:asl2.0))) - -(define-public go-github-com-gorilla-handlers-0.0.0-20150720190736-60c7bfde3e33 - (package - (name "go-github-com-gorilla-handlers") - (version "0.0.0-20150720190736-60c7bfde3e33") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gorilla/handlers") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0zvpxvybdn8yqpk2cxs134ip9wxmw6c1s0kw9nahf7qw1kfyzycm")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/gorilla/handlers")) - (home-page "https://github.com/gorilla/handlers") - (synopsis "gorilla/handlers") - (description - "Package handlers is a collection of handlers (aka \"HTTP middleware\") for use -with Go's net/http package (or any framework supporting http.Handler). -") - (license license:bsd-2))) - -(define-public go-github-com-gorilla-mux-1.7.2 - (package - (name "go-github-com-gorilla-mux") - (version "1.7.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gorilla/mux") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1gjcbgpdl3snc38i8sj8k6sqbv3inyrxqyggbqvr4jfx2phv2zy6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/gorilla/mux")) - (home-page "https://github.com/gorilla/mux") - (synopsis "gorilla/mux") - (description "Package mux implements a request router and dispatcher. -") - (license license:bsd-3))) - -(define-public go-github-com-jmespath-go-jmespath-0.0.0-20160803190731-bd40a432e4c7 - (package - (name "go-github-com-jmespath-go-jmespath") - (version "0.0.0-20160803190731-bd40a432e4c7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/jmespath/go-jmespath") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1kgzwiyqn24ba9kgpjxlq1h746gnyby0psbjj9mp2yx0h1i0kc4z")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/jmespath/go-jmespath")) - (home-page "https://github.com/jmespath/go-jmespath") - (synopsis "go-jmespath - A JMESPath implementation in Go") - (description - "go-jmespath is a GO implementation of JMESPath, -which is a query language for JSON. It will take a JSON -document and transform it into another JSON document -through a JMESPath expression.") - (license license:asl2.0))) - -(define-public go-github-com-marstr-guid-1.1.0 - (package - (name "go-github-com-marstr-guid") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/marstr/guid") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "081qrar6wwpmb2pq3swv4byh73r9riyhl2dwv0902d8jg3kwricm")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/marstr/guid")) - (home-page "https://github.com/marstr/guid") - (synopsis "Guid") - (description - "Globally unique identifiers offer a quick means of generating non-colliding values across a distributed system. For this implemenation, @url{http://ietf.org/rfc/rfc4122.txt,RFC 4122} governs the desired behavior.") - (license license:expat))) - -(define-public go-github-com-mitchellh-osext-0.0.0-20151018003038-5e2d6d41470f - (package - (name "go-github-com-mitchellh-osext") - (version "0.0.0-20151018003038-5e2d6d41470f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mitchellh/osext") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0j635c1cx7crs5wlirlk713l36x70pnlmqrzd3x3bjgnjg194jrk")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mitchellh/osext")) - (home-page "https://github.com/mitchellh/osext") - (synopsis "osext") - (description "Extensions to the standard \"os\" package. -") - (license license:zlib))) - -(define-public go-github-com-ncw-swift-1.0.47 - (package - (name "go-github-com-ncw-swift") - (version "1.0.47") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/ncw/swift") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0wxz4lvy6pjabghq8inby2fyh58ysclayccziawc8fd7a67kh4cd")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/ncw/swift")) - (home-page "https://github.com/ncw/swift") - (synopsis "Swift") - (description - "Package swift provides an easy to use interface to Swift / Openstack Object Storage / Rackspace Cloud Files -") - (license license:expat))) - -(define-public go-github-com-opencontainers-go-digest-0.0.0-20170106003457-a6d0ee40d420 - (package - (name "go-github-com-opencontainers-go-digest") - (version "0.0.0-20170106003457-a6d0ee40d420") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/go-digest") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1paz3na2xkhi10p5bk7f7gbh5yykfgr9f9i2gcc13rb461yq6fmg")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/go-digest")) - (home-page "https://github.com/opencontainers/go-digest") - (synopsis "go-digest") - (description - "Package digest provides a generalized type to opaquely represent message -digests and their operations within the registry. The Digest type is -designed to serve as a flexible identifier in a content-addressable system. -More importantly, it provides tools and wrappers to work with -hash.Hash-based digests with little effort. -") - (license (list license:asl2.0 license:cc-by-sa4.0)))) - -(define-public go-github-com-opencontainers-image-spec-1.0.0 - (package - (name "go-github-com-opencontainers-image-spec") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/image-spec") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "04ax2pylpwzsa5pw6wk94shdpdmfyqf70ys0idhpxsygzc2m5l23")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/image-spec")) - (home-page "https://github.com/opencontainers/image-spec") - (synopsis "OCI Image Format Specification") - (description - "The OCI Image Format project creates and maintains the software shipping container image format spec (OCI Image Format).") - (license license:asl2.0))) - -(define-public go-github-com-prometheus-client-golang-0.0.0-20180209125602-c332b6f63c06 - (package - (name "go-github-com-prometheus-client-golang") - (version "0.0.0-20180209125602-c332b6f63c06") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/client_golang") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "068r759wnh1lxcjhj89z4bqbpl7ydcx2drn2967ygw80nyab30pq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/client_golang")) - (home-page "https://github.com/prometheus/client_golang") - (synopsis "Prometheus Go client library") - (description - "This is the @url{http://golang.org,Go} client library for -@url{http://prometheus.io,Prometheus}. It has two separate parts, one for -instrumenting application code, and one for creating clients that talk to the -Prometheus HTTP API.") - (license license:asl2.0))) - -(define-public go-github-com-prometheus-client-model-0.0.0-20171117100541-99fa1f4be8e5 - (package - (name "go-github-com-prometheus-client-model") - (version "0.0.0-20171117100541-99fa1f4be8e5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/client_model") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19y4ywsivhpxj7ikf2j0gm9k3cmyw37qcbfi78n526jxcc7kw998")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/client_model")) - (home-page "https://github.com/prometheus/client_model") - (synopsis "Deprecation note") - (description - "This repository used to contain the code that defined both -the data model and the exposition format of Prometheus metrics.") - (license license:asl2.0))) - -(define-public go-github-com-prometheus-common-0.0.0-20180110214958-89604d197083 - (package - (name "go-github-com-prometheus-common") - (version "0.0.0-20180110214958-89604d197083") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/common") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "169rdlaf2mk9z4fydz7ajmngyhmf3q1lk96yhvx46bn986x5xkyn")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/common")) - (home-page "https://github.com/prometheus/common") - (synopsis "Common") - (description - "This repository contains Go libraries that are shared across Prometheus -components and libraries. They are considered internal to Prometheus, without -any stability guarantees for external usage.") - (license license:asl2.0))) - -(define-public go-github-com-gopherjs-gopherjs-0.0.0-20181017120253-0766667cb4d1 - (package - (name "go-github-com-gopherjs-gopherjs") - (version "0.0.0-20181017120253-0766667cb4d1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gopherjs/gopherjs") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "13pfc9sxiwjky2lm1xb3i3lcisn8p6mgjk2d927l7r92ysph8dmw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/gopherjs/gopherjs")) - (home-page "https://github.com/gopherjs/gopherjs") - (synopsis "GopherJS - A compiler from Go to JavaScript") - (description - "GopherJS compiles Go code (@url{https://golang.org/,golang.org}) to pure JavaScript code. Its main purpose is to give you the opportunity to write front-end code in Go which will still run in all browsers.") - (license license:bsd-2))) - -(define-public go-github-com-jtolds-gls-4.20.0+incompatible - (package - (name "go-github-com-jtolds-gls") - (version "4.20.0+incompatible") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/jtolio/gls") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1k7xd2q2ysv2xsh373qs801v6f359240kx0vrl0ydh7731lngvk6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/jtolds/gls")) - (home-page "https://github.com/jtolds/gls") - (synopsis "gls") - (description "Package gls implements goroutine-local storage. -") - (license license:expat))) - -(define-public go-github-com-smartystreets-assertions-0.0.0-20180927180507-b2de0cb4f26d - (package - (name "go-github-com-smartystreets-assertions") - (version "0.0.0-20180927180507-b2de0cb4f26d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/smartystreets/assertions") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1i7ldgavgl35c7gk25p7bvdr282ckng090zr4ch9mk1705akx09y")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/smartystreets/assertions")) - (home-page "https://github.com/smartystreets/assertions") - (synopsis #f) - (description - "Package assertions contains the implementations for all assertions which -are referenced in goconvey's `convey` package -(github.com/smartystreets/goconvey/convey) and gunit (github.com/smartystreets/gunit) -for use with the So(...) method. -They can also be used in traditional Go test functions and even in -applications. -") - (license license:expat))) - -(define-public go-golang-org-x-tools-0.0.0-20190328211700-ab21143f2384 - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20190328211700-ab21143f2384") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "15fk0psk53pplpyghz55bhay0kvsv5rikmn5hwgjnnyxq9vfy178")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-github-com-smartystreets-goconvey-0.0.0-20190330032615-68dc04aab96a - (package - (name "go-github-com-smartystreets-goconvey") - (version "0.0.0-20190330032615-68dc04aab96a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/smartystreets/goconvey") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1kas5v95fzhr88hg4rjy0vp03y4pzvy3pwwgkfz2yhn5nlj29nk6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/smartystreets/goconvey")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20190328211700-ab21143f2384" - ,go-golang-org-x-tools-0.0.0-20190328211700-ab21143f2384) - ("go-github-com-smartystreets-assertions-0.0.0-20180927180507-b2de0cb4f26d" - ,go-github-com-smartystreets-assertions-0.0.0-20180927180507-b2de0cb4f26d) - ("go-github-com-jtolds-gls-4.20.0+incompatible" - ,go-github-com-jtolds-gls-4.20.0+incompatible) - ("go-github-com-gopherjs-gopherjs-0.0.0-20181017120253-0766667cb4d1" - ,go-github-com-gopherjs-gopherjs-0.0.0-20181017120253-0766667cb4d1))) - (home-page "https://github.com/smartystreets/goconvey") - (synopsis "GoConvey is awesome Go testing") - (description - "This executable provides an HTTP server that watches for file system changes -to .go files within the working directory (and all nested go packages). -Navigating to the configured host and port in a web browser will display the -latest results of running `go test` in each go package. -") - (license license:expat))) - -(define-public go-github-com-yvasiyarov-go-metrics-0.0.0-20140926110328-57bccd1ccd43 - (package - (name "go-github-com-yvasiyarov-go-metrics") - (version "0.0.0-20140926110328-57bccd1ccd43") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/yvasiyarov/go-metrics") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1rwlq9k3iii54da90fjivi13zacx2h6znppkzncvl653xhjpm26g")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/yvasiyarov/go-metrics")) - (home-page "https://github.com/yvasiyarov/go-metrics") - (synopsis "go-metrics") - (description "Go port of Coda Hale's Metrics library -") - (license #f))) - -(define-public go-github-com-yvasiyarov-gorelic-0.0.0-20141212073537-a9bba5b9ab50 - (package - (name "go-github-com-yvasiyarov-gorelic") - (version "0.0.0-20141212073537-a9bba5b9ab50") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/yvasiyarov/gorelic") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1niwv40k9rx2g5h6wddci9ykf1sm1d5ml9mjgdjd1ahm4wfq08gn")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/yvasiyarov/gorelic")) - (home-page "https://github.com/yvasiyarov/gorelic") - (synopsis "GoRelic is deprecated in favour of") - (description - "Package gorelic is an New Relic agent implementation for Go runtime. It collect a lot of metrics about Go scheduler, garbage collector and memory allocator and send them to NewRelic. -") - (license license:bsd-2))) - -(define-public go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20140908184405-b21fdbd4370f - (package - (name "go-github-com-yvasiyarov-newrelic-platform-go") - (version "0.0.0-20140908184405-b21fdbd4370f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/yvasiyarov/newrelic_platform_go") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0a4yncdxwsy0rn3bhkadfysm817b7ndzmh9fkg8hh92pnw5aabzw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/yvasiyarov/newrelic_platform_go")) - (home-page "https://github.com/yvasiyarov/newrelic_platform_go") - (synopsis "New Relic Platform Agent SDK for Go(golang)") - (description - "Package newrelic_platform_go is New Relic Platform Agent SDK for Go language. -") - (license license:bsd-2))) - -(define-public go-golang-org-x-net-0.0.0-20190619014844-b5b0513f8c1b - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190619014844-b5b0513f8c1b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0sr4gbiq09izkmm6hcmfnia6lz6ngzzqjbwlrzh7jifbzyck53wz")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20190602015325-4c4f7f33c9ed - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190602015325-4c4f7f33c9ed") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "191001bxqyc3xfs46nnqmm7jdk0r73vk7a4zqngfl7zwjv9smwsq")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-google-golang-org-api-0.0.0-20160322025152-9bf6e6e569ff - (package - (name "go-google-golang-org-api") - (version "0.0.0-20160322025152-9bf6e6e569ff") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-api-go-client") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "02zn0zr4jrkdnxhxa0h3vm30j27bsc4lcswrffilkrafbspjsrxz")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/api")) - (home-page "https://google.golang.org/api") - (synopsis "Google APIs Client Library for Go") - (description - "Package api is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of -sub-packages. -") - (license license:bsd-3))) - -(define-public go-google-golang-org-cloud-0.0.0-20151119220103-975617b05ea8 - (package - (name "go-google-golang-org-cloud") - (version "0.0.0-20151119220103-975617b05ea8") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-cloud-go") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "156jhn1kakr98jfk830y4yr8lhisdj6qs38ypa42ddmgza9qcmdd")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/cloud")) - (home-page "https://google.golang.org/cloud") - (synopsis "Google Cloud Client Libraries for Go") - (description - "Package cloud is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -of sub-packages. -") - (license license:asl2.0))) - -(define-public go-google-golang-org-grpc-0.0.0-20160317175043-d3ddb4469d5a - (package - (name "go-google-golang-org-grpc") - (version "0.0.0-20160317175043-d3ddb4469d5a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0p45by0s66ragvx9hs8gkz1k1gy8456y794b5zspa0b86y2b53w9")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-gopkg-in-check-v1-1.0.0-20141024133853-64131543e789 - (package - (name "go-gopkg-in-check-v1") - (version "1.0.0-20141024133853-64131543e789") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/check.v1") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "01sz40asq0zwf6j7q2hww33wr1cflglngq8xazw466c9d1f9kyyh")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) - (home-page "https://gopkg.in/check.v1") - (synopsis "Instructions") - (description - "Package check is a rich testing extension for Go's testing package. -") - (license license:bsd-2))) - -(define-public go-github-com-docker-distribution-0.0.0-20190905152932-14b96e55d84c - (package - (name "go-github-com-docker-distribution") - (version "0.0.0-20190905152932-14b96e55d84c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/distribution/distribution") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0jd7ccjy7ahznsh6hf9dhqbgn9glwc0db9g5nv8n6sys5d1jdni9")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/docker/distribution")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) - ("go-gopkg-in-check-v1-1.0.0-20141024133853-64131543e789" - ,go-gopkg-in-check-v1-1.0.0-20141024133853-64131543e789) - ("go-google-golang-org-grpc-0.0.0-20160317175043-d3ddb4469d5a" - ,go-google-golang-org-grpc-0.0.0-20160317175043-d3ddb4469d5a) - ("go-google-golang-org-cloud-0.0.0-20151119220103-975617b05ea8" - ,go-google-golang-org-cloud-0.0.0-20151119220103-975617b05ea8) - ("go-google-golang-org-api-0.0.0-20160322025152-9bf6e6e569ff" - ,go-google-golang-org-api-0.0.0-20160322025152-9bf6e6e569ff) - ("go-golang-org-x-sys-0.0.0-20190602015325-4c4f7f33c9ed" - ,go-golang-org-x-sys-0.0.0-20190602015325-4c4f7f33c9ed) - ("go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45" - ,go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45) - ("go-golang-org-x-net-0.0.0-20190619014844-b5b0513f8c1b" - ,go-golang-org-x-net-0.0.0-20190619014844-b5b0513f8c1b) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2) - ("go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20140908184405-b21fdbd4370f" - ,go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20140908184405-b21fdbd4370f) - ("go-github-com-yvasiyarov-gorelic-0.0.0-20141212073537-a9bba5b9ab50" - ,go-github-com-yvasiyarov-gorelic-0.0.0-20141212073537-a9bba5b9ab50) - ("go-github-com-yvasiyarov-go-metrics-0.0.0-20140926110328-57bccd1ccd43" - ,go-github-com-yvasiyarov-go-metrics-0.0.0-20140926110328-57bccd1ccd43) - ("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0) - ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) - ("go-github-com-spf13-cobra-0.0.3" ,go-github-com-spf13-cobra-0.0.3) - ("go-github-com-smartystreets-goconvey-0.0.0-20190330032615-68dc04aab96a" - ,go-github-com-smartystreets-goconvey-0.0.0-20190330032615-68dc04aab96a) - ("go-github-com-sirupsen-logrus-1.4.2" - ,go-github-com-sirupsen-logrus-1.4.2) - ("go-github-com-satori-go-uuid-1.2.0" - ,go-github-com-satori-go-uuid-1.2.0) - ("go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7" - ,go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7) - ("go-github-com-prometheus-common-0.0.0-20180110214958-89604d197083" - ,go-github-com-prometheus-common-0.0.0-20180110214958-89604d197083) - ("go-github-com-prometheus-client-model-0.0.0-20171117100541-99fa1f4be8e5" - ,go-github-com-prometheus-client-model-0.0.0-20171117100541-99fa1f4be8e5) - ("go-github-com-prometheus-client-golang-0.0.0-20180209125602-c332b6f63c06" - ,go-github-com-prometheus-client-golang-0.0.0-20180209125602-c332b6f63c06) - ("go-github-com-opencontainers-image-spec-1.0.0" - ,go-github-com-opencontainers-image-spec-1.0.0) - ("go-github-com-opencontainers-go-digest-0.0.0-20170106003457-a6d0ee40d420" - ,go-github-com-opencontainers-go-digest-0.0.0-20170106003457-a6d0ee40d420) - ("go-github-com-ncw-swift-1.0.47" ,go-github-com-ncw-swift-1.0.47) - ("go-github-com-mitchellh-osext-0.0.0-20151018003038-5e2d6d41470f" - ,go-github-com-mitchellh-osext-0.0.0-20151018003038-5e2d6d41470f) - ("go-github-com-mitchellh-mapstructure-1.1.2" - ,go-github-com-mitchellh-mapstructure-1.1.2) - ("go-github-com-matttproud-golang-protobuf-extensions-1.0.1" - ,go-github-com-matttproud-golang-protobuf-extensions-1.0.1) - ("go-github-com-marstr-guid-1.1.0" ,go-github-com-marstr-guid-1.1.0) - ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) - ("go-github-com-jmespath-go-jmespath-0.0.0-20160803190731-bd40a432e4c7" - ,go-github-com-jmespath-go-jmespath-0.0.0-20160803190731-bd40a432e4c7) - ("go-github-com-inconshreveable-mousetrap-1.0.0" - ,go-github-com-inconshreveable-mousetrap-1.0.0) - ("go-github-com-gorilla-mux-1.7.2" ,go-github-com-gorilla-mux-1.7.2) - ("go-github-com-gorilla-handlers-0.0.0-20150720190736-60c7bfde3e33" - ,go-github-com-gorilla-handlers-0.0.0-20150720190736-60c7bfde3e33) - ("go-github-com-garyburd-redigo-0.0.0-20150301180006-535138d7bcd7" - ,go-github-com-garyburd-redigo-0.0.0-20150301180006-535138d7bcd7) - ("go-github-com-docker-libtrust-0.0.0-20150114040149-fa567046d9b1" - ,go-github-com-docker-libtrust-0.0.0-20150114040149-fa567046d9b1) - ("go-github-com-docker-go-metrics-0.0.0-20180209012529-399ea8c73916" - ,go-github-com-docker-go-metrics-0.0.0-20180209012529-399ea8c73916) - ("go-github-com-dnaeon-go-vcr-1.0.1" - ,go-github-com-dnaeon-go-vcr-1.0.1) - ("go-github-com-dgrijalva-jwt-go-0.0.0-20170104182250-a601269ab70c" - ,go-github-com-dgrijalva-jwt-go-0.0.0-20170104182250-a601269ab70c) - ("go-github-com-denverdino-aliyungo-0.0.0-20190125010748-a747050bb1ba" - ,go-github-com-denverdino-aliyungo-0.0.0-20190125010748-a747050bb1ba) - ("go-github-com-bugsnag-panicwrap-0.0.0-20151223152923-e2c28503fcd0" - ,go-github-com-bugsnag-panicwrap-0.0.0-20151223152923-e2c28503fcd0) - ("go-github-com-bugsnag-osext-0.0.0-20130617224835-0dd3f918b21b" - ,go-github-com-bugsnag-osext-0.0.0-20130617224835-0dd3f918b21b) - ("go-github-com-bugsnag-bugsnag-go-0.0.0-20141110184014-b1d153021fcd" - ,go-github-com-bugsnag-bugsnag-go-0.0.0-20141110184014-b1d153021fcd) - ("go-github-com-bshuster-repo-logrus-logstash-hook-0.4.1" - ,go-github-com-bshuster-repo-logrus-logstash-hook-0.4.1) - ("go-github-com-bmizerany-assert-0.0.0-20160611221934-b7ed37b82869" - ,go-github-com-bmizerany-assert-0.0.0-20160611221934-b7ed37b82869) - ("go-github-com-bitly-go-simplejson-0.5.0" - ,go-github-com-bitly-go-simplejson-0.5.0) - ("go-github-com-beorn7-perks-0.0.0-20160804104726-4c0e84591b9a" - ,go-github-com-beorn7-perks-0.0.0-20160804104726-4c0e84591b9a) - ("go-github-com-aws-aws-sdk-go-1.15.11" - ,go-github-com-aws-aws-sdk-go-1.15.11) - ("go-github-com-shopify-logrus-bugsnag-0.0.0-20171204204709-577dee27f20d" - ,go-github-com-shopify-logrus-bugsnag-0.0.0-20171204204709-577dee27f20d) - ("go-github-com-azure-go-autorest-10.8.1+incompatible" - ,go-github-com-azure-go-autorest-10.8.1+incompatible) - ("go-github-com-azure-azure-sdk-for-go-16.2.1+incompatible" - ,go-github-com-azure-azure-sdk-for-go-16.2.1+incompatible))) - (home-page "https://github.com/docker/distribution") - (synopsis "Distribution") - (description - "Package distribution will define the interfaces for the components of -docker distribution. The goal is to allow users to reliably package, ship -and store content related to docker images. -") - (license license:asl2.0))) - -(define-public go-github-com-gogo-protobuf-1.2.2-0.20190723190241-65acae22fc9d - (package - (name "go-github-com-gogo-protobuf") - (version "1.2.2-0.20190723190241-65acae22fc9d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gogo/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0700alky9z0g9akhrzn20wf4jr1600d0clhs32sm8chnlbvidy46")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/gogo/protobuf")) - (propagated-inputs - `(("go-github-com-kisielk-gotool-1.0.0" - ,go-github-com-kisielk-gotool-1.0.0) - ("go-github-com-kisielk-errcheck-1.2.0" - ,go-github-com-kisielk-errcheck-1.2.0))) - (home-page "https://github.com/gogo/protobuf") - (synopsis "Protocol Buffers for Go with Gadgets") - (description - "gogoprotobuf is a fork of @url{https://github.com/golang/protobuf,golang/protobuf} with extra code generation features.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20190813064441-fde4db37ae7a - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190813064441-fde4db37ae7a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "16k4w4pzziq1kln18k5fg01qgk4hpzb5xsm7175kaky6d6gwyhg3")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-k8s-io-cri-api-0.17.3 - (package - (name "go-k8s-io-cri-api") - (version "0.17.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes/cri-api") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "047wg80q4cb9qikpj0zp2kzcgp599cdqwiqlravfy86bga4r3fgf")))) - (build-system go-build-system) - (arguments '(#:import-path "k8s.io/cri-api")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190813064441-fde4db37ae7a" - ,go-golang-org-x-sys-0.0.0-20190813064441-fde4db37ae7a) - ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) - ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" - ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) - ("go-google-golang-org-grpc-1.23.1" ,go-google-golang-org-grpc-1.23.1) - ("go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873" - ,go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873) - ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) - ("go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9" - ,go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9) - ("go-github-com-stretchr-testify-1.4.0" - ,go-github-com-stretchr-testify-1.4.0) - ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2) - ("go-github-com-gogo-protobuf-1.2.2-0.20190723190241-65acae22fc9d" - ,go-github-com-gogo-protobuf-1.2.2-0.20190723190241-65acae22fc9d) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://k8s.io/cri-api") - (synopsis "Purpose") - (description - "This repository contains the definitions for the Container Runtime Interface (CRI). -CRI is a plugin interface which enables kubelet to use a wide variety of container runtimes, -without the need to recompile. CRI consists of a protocol buffers and gRPC API.") - (license license:asl2.0))) - -(define-public go-github-com-microsoft-hcsshim-test-0.0.0-20201218223536-d3e5debf77da - (package - (name "go-github-com-microsoft-hcsshim-test") - (version "0.0.0-20201218223536-d3e5debf77da") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/microsoft/hcsshim") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0k57knv8zrf32hp7rpv1km9j772w6752pfvdbpd3l711ism48c84")))) - (build-system go-build-system) - (arguments - '(#:import-path - "github.com/Microsoft/hcsshim/test" - #:unpack-path - "github.com/Microsoft/hcsshim")) - (propagated-inputs - `(("go-k8s-io-cri-api-0.17.3" ,go-k8s-io-cri-api-0.17.3) - ("go-google-golang-org-grpc-1.23.1" ,go-google-golang-org-grpc-1.23.1) - ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" - ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) - ("go-go-etcd-io-bbolt-1.3.3" ,go-go-etcd-io-bbolt-1.3.3) - ("go-github-com-xeipuuv-gojsonschema-0.0.0-20180618132009-1d523034197f" - ,go-github-com-xeipuuv-gojsonschema-0.0.0-20180618132009-1d523034197f) - ("go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415" - ,go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415) - ("go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f" - ,go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f) - ("go-github-com-syndtr-gocapability-0.0.0-20170704070218-db04d3cc01c8" - ,go-github-com-syndtr-gocapability-0.0.0-20170704070218-db04d3cc01c8) - ("go-github-com-sirupsen-logrus-1.4.2" - ,go-github-com-sirupsen-logrus-1.4.2) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39" - ,go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39) - ("go-github-com-opencontainers-runtime-spec-1.0.2" - ,go-github-com-opencontainers-runtime-spec-1.0.2) - ("go-github-com-imdario-mergo-0.3.8" - ,go-github-com-imdario-mergo-0.3.8) - ("go-github-com-hashicorp-go-multierror-0.0.0-20161216184304-ed905158d874" - ,go-github-com-hashicorp-go-multierror-0.0.0-20161216184304-ed905158d874) - ("go-github-com-hashicorp-errwrap-0.0.0-20141028054710-7554cd9344ce" - ,go-github-com-hashicorp-errwrap-0.0.0-20141028054710-7554cd9344ce) - ("go-github-com-gogo-protobuf-1.3.1" - ,go-github-com-gogo-protobuf-1.3.1) - ("go-github-com-gogo-googleapis-1.2.0" - ,go-github-com-gogo-googleapis-1.2.0) - ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" - ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) - ("go-github-com-docker-distribution-0.0.0-20190905152932-14b96e55d84c" - ,go-github-com-docker-distribution-0.0.0-20190905152932-14b96e55d84c) - ("go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd" - ,go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd) - ("go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de" - ,go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de) - ("go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3" - ,go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3) - ("go-github-com-containerd-containerd-1.3.2" - ,go-github-com-containerd-containerd-1.3.2) - ("go-github-com-blang-semver-3.1.0+incompatible" - ,go-github-com-blang-semver-3.1.0+incompatible) - ("go-github-com-microsoft-go-winio-0.4.16-0.20201130162521-d1ffc52c7331" - ,go-github-com-microsoft-go-winio-0.4.16-0.20201130162521-d1ffc52c7331))) - (home-page "https://github.com/Microsoft/hcsshim") - (synopsis #f) - (description #f) - (license license:expat))) - -(define-public go-github-com-containerd-aufs-0.0.0-20200908144142-dab0cbea06f4 - (package - (name "go-github-com-containerd-aufs") - (version "0.0.0-20200908144142-dab0cbea06f4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/aufs") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "060iqypyrdmww0ykip1zqi5f2fl1il55vndgdn5aq5zj6530mgsn")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/aufs")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) - ("go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449" - ,go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449) - ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" - ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) - ("go-go-etcd-io-bbolt-1.3.3" ,go-go-etcd-io-bbolt-1.3.3) - ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) - ("go-github-com-opencontainers-runc-1.0.0-rc9" - ,go-github-com-opencontainers-runc-1.0.0-rc9) - ("go-github-com-opencontainers-image-spec-1.0.1" - ,go-github-com-opencontainers-image-spec-1.0.1) - ("go-github-com-opencontainers-go-digest-1.0.0-rc1" - ,go-github-com-opencontainers-go-digest-1.0.0-rc1) - ("go-github-com-google-go-cmp-0.3.1" - ,go-github-com-google-go-cmp-0.3.1) - ("go-github-com-gogo-protobuf-1.3.1" - ,go-github-com-gogo-protobuf-1.3.1) - ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" - ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) - ("go-github-com-containerd-typeurl-0.0.0-20190911142611-5eb25027c9fd" - ,go-github-com-containerd-typeurl-0.0.0-20190911142611-5eb25027c9fd) - ("go-github-com-containerd-ttrpc-0.0.0-20191028202541-4f1b8fe65a5c" - ,go-github-com-containerd-ttrpc-0.0.0-20191028202541-4f1b8fe65a5c) - ("go-github-com-containerd-continuity-0.0.0-20191127005431-f65d91d395eb" - ,go-github-com-containerd-continuity-0.0.0-20191127005431-f65d91d395eb) - ("go-github-com-containerd-containerd-1.3.1-0.20191213020239-082f7e3aed57" - ,go-github-com-containerd-containerd-1.3.1-0.20191213020239-082f7e3aed57) - ("go-github-com-microsoft-hcsshim-0.8.7" - ,go-github-com-microsoft-hcsshim-0.8.7))) - (home-page "https://github.com/containerd/aufs") - (synopsis "aufs snapshotter") - (description - "AUFS implementation of the snapshot interface for containerd.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-btrfs-0.0.0-20201111183144-404b9149801e - (package - (name "go-github-com-containerd-btrfs") - (version "0.0.0-20201111183144-404b9149801e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/btrfs") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "10aakvy9njaly2mfwi1cvys8dxjn27mnd7wnpnmxh8pxb7g2svag")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/btrfs")) - (propagated-inputs - `(("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) - (home-page "https://github.com/containerd/btrfs") - (synopsis "go-btrfs") - (description - "Package btrfs provides bindings for working with btrfs partitions from Go. -") - (license license:asl2.0))) - -(define-public go-github-com-containerd-cgroups-0.0.0-20200824123100-0b889c03f102 - (package - (name "go-github-com-containerd-cgroups") - (version "0.0.0-20200824123100-0b889c03f102") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/cgroups") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1zjmphy2df9y20hzrmwxfpyyvz8vb5lazr4pjyx3c5a5x0j4rv8d")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/cgroups")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9" - ,go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9) - ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) - ("go-github-com-stretchr-testify-1.2.2" - ,go-github-com-stretchr-testify-1.2.2) - ("go-github-com-sirupsen-logrus-1.6.0" - ,go-github-com-sirupsen-logrus-1.6.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-runtime-spec-1.0.2" - ,go-github-com-opencontainers-runtime-spec-1.0.2) - ("go-github-com-gogo-protobuf-1.3.1" - ,go-github-com-gogo-protobuf-1.3.1) - ("go-github-com-godbus-dbus-v5-5.0.3" - ,go-github-com-godbus-dbus-v5-5.0.3) - ("go-github-com-docker-go-units-0.4.0" - ,go-github-com-docker-go-units-0.4.0) - ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" - ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) - ("go-github-com-coreos-go-systemd-v22-22.0.0" - ,go-github-com-coreos-go-systemd-v22-22.0.0) - ("go-github-com-cilium-ebpf-0.0.0-20200702112145-1c8d4c9ef775" - ,go-github-com-cilium-ebpf-0.0.0-20200702112145-1c8d4c9ef775))) - (home-page "https://github.com/containerd/cgroups") - (synopsis "cgroups") - (description - "Go package for creating, managing, inspecting, and destroying cgroups. -The resources format for settings on the cgroup uses the OCI runtime-spec found -@url{https://github.com/opencontainers/runtime-spec,here}.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-continuity-0.0.0-20201208142359-180525291bb7 - (package - (name "go-github-com-containerd-continuity") - (version "0.0.0-20201208142359-180525291bb7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/continuity") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1di4pspqfwfafdni0in84kzyn8h1fhqb6vh4i0g5skqmrc4sxf4h")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/continuity")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3" - ,go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3) - ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" - ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) - ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" - ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) - ("go-github-com-stretchr-testify-1.4.0" - ,go-github-com-stretchr-testify-1.4.0) - ("go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95" - ,go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95) - ("go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee" - ,go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee) - ("go-github-com-sirupsen-logrus-1.6.0" - ,go-github-com-sirupsen-logrus-1.6.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-go-digest-1.0.0" - ,go-github-com-opencontainers-go-digest-1.0.0) - ("go-github-com-inconshreveable-mousetrap-1.0.0" - ,go-github-com-inconshreveable-mousetrap-1.0.0) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0) - ("go-github-com-dustin-go-humanize-1.0.0" - ,go-github-com-dustin-go-humanize-1.0.0) - ("go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898" - ,go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898))) - (home-page "https://github.com/containerd/continuity") - (synopsis "continuity") - (description - "This package provides a transport-agnostic, filesystem metadata manifest system") - (license license:asl2.0))) - -(define-public go-github-com-containerd-fifo-0.0.0-20201026212402-0724c46b320c - (package - (name "go-github-com-containerd-fifo") - (version "0.0.0-20201026212402-0724c46b320c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/fifo") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "11d9j0isblnnqf78ygvwjyijjxn6zdzf7p803v0jv2py4d0pkvj8")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/fifo")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449" - ,go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449) - ("go-github-com-stretchr-testify-1.4.0" - ,go-github-com-stretchr-testify-1.4.0) - ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) - (home-page "https://github.com/containerd/fifo") - (synopsis "fifo") - (description "Go package for handling fifos in a sane way.") - (license license:asl2.0))) - -(define-public go-github-com-containernetworking-cni-0.8.0 - (package - (name "go-github-com-containernetworking-cni") - (version "0.8.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containernetworking/cni") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "16i59dhiq7pc7qs32cdk4yv4w9rjx4vvlw7fb6a6jhq6hxxjrgiw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containernetworking/cni")) - (home-page "https://github.com/containernetworking/cni") - (synopsis "CNI - the Container Network Interface") - (description - "CNI (), a @url{https://cncf.io,Cloud Native Computing Foundation} project, consists of a specification and libraries for writing plugins to configure network interfaces in Linux containers, along with a number of supported plugins. -CNI concerns itself only with network connectivity of containers and removing allocated resources when the container is deleted. -Because of this focus, CNI has a wide range of support and the specification is simple to implement.") - (license license:asl2.0))) - -(define-public go-github-com-onsi-ginkgo-1.10.3 - (package - (name "go-github-com-onsi-ginkgo") - (version "1.10.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/onsi/ginkgo") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "00a40by9f5ylycnar8h3p9b4z5rcsvfvg4j3v5s5mchdqrqjv1pc")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/onsi/ginkgo")) - (home-page "https://github.com/onsi/ginkgo") - (synopsis "Ginkgo 2.0 Release Candidate is available!") - (description "Ginkgo is a BDD-style testing framework for Golang -") - (license license:expat))) - -(define-public go-github-com-stretchr-objx-0.0.0-20180129172003-8a3f7159479f - (package - (name "go-github-com-stretchr-objx") - (version "0.0.0-20180129172003-8a3f7159479f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/objx") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0rbz4x4jbq9vp3zxmv0c2wh1vbg48lmc8ncdgz7zxk7241fc31ki")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/objx")) - (home-page "https://github.com/stretchr/objx") - (synopsis "Objx") - (description - "Objx - Go package for dealing with maps, slices, JSON and other data. -") - (license license:expat))) - -(define-public go-github-com-stretchr-testify-0.0.0-20180303142811-b89eecf5ca5d - (package - (name "go-github-com-stretchr-testify") - (version "0.0.0-20180303142811-b89eecf5ca5d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/testify") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0g946ii8qjaynvidj648z8izl91i6yhy0ir6g3qsrn136im3r8wk")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/testify")) - (home-page "https://github.com/stretchr/testify") - (synopsis "Testify - Thou Shalt Write Tests") - (description - "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -") - (license license:expat))) - -(define-public go-github-com-containerd-go-cni-1.0.1 - (package - (name "go-github-com-containerd-go-cni") - (version "1.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/go-cni") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0sdlwa4d0kzpm3vg9jy6fxqqcfjq8innv1zjcyp8n9qy8vj9b24y")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/go-cni")) - (propagated-inputs - `(("go-github-com-stretchr-testify-0.0.0-20180303142811-b89eecf5ca5d" - ,go-github-com-stretchr-testify-0.0.0-20180303142811-b89eecf5ca5d) - ("go-github-com-stretchr-objx-0.0.0-20180129172003-8a3f7159479f" - ,go-github-com-stretchr-objx-0.0.0-20180129172003-8a3f7159479f) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-onsi-gomega-1.7.1" ,go-github-com-onsi-gomega-1.7.1) - ("go-github-com-onsi-ginkgo-1.10.3" ,go-github-com-onsi-ginkgo-1.10.3) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1) - ("go-github-com-containernetworking-cni-0.8.0" - ,go-github-com-containernetworking-cni-0.8.0))) - (home-page "https://github.com/containerd/go-cni") - (synopsis "go-cni") - (description - "This package provides a generic CNI library to provide APIs for CNI plugin interactions. The library provides APIs to:") - (license license:asl2.0))) - -(define-public go-github-com-containerd-console-0.0.0-20191206165004-02ecf6a7291e - (package - (name "go-github-com-containerd-console") - (version "0.0.0-20191206165004-02ecf6a7291e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/console") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1b3yq446gv8da4fajknbjxr5syz1ypz0nii9sqw066hx8kmqzgqh")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/console")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e" - ,go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e) - ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) - (home-page "https://github.com/containerd/console") - (synopsis "console") - (description - "Golang package for dealing with consoles. Light on deps and a simple API.") - (license license:asl2.0))) - -(define-public go-github-com-opencontainers-runtime-spec-1.0.1 - (package - (name "go-github-com-opencontainers-runtime-spec") - (version "1.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/runtime-spec") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "00qb0q7ndxsll12ilp5a8pqfi4i1jqrlqzv0yf7sn52lkrdrw5f4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) - (home-page "https://github.com/opencontainers/runtime-spec") - (synopsis "Open Container Initiative Runtime Specification") - (description - "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328 - (package - (name "go-github-com-containerd-go-runc") - (version "0.0.0-20200220073739-7016d3ce2328") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/go-runc") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1mx2lvfkxw9kiyhi18g3c6hcpb9r2115zjzyvz6rkdqr08xrij9k")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/go-runc")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449" - ,go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449) - ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) - ("go-github-com-opencontainers-runtime-spec-1.0.1" - ,go-github-com-opencontainers-runtime-spec-1.0.1) - ("go-github-com-containerd-console-0.0.0-20191206165004-02ecf6a7291e" - ,go-github-com-containerd-console-0.0.0-20191206165004-02ecf6a7291e))) - (home-page "https://github.com/containerd/go-runc") - (synopsis "go-runc") - (description - "This is a package for consuming the @url{https://github.com/opencontainers/runc,runc} binary in your Go applications. -It tries to expose all the settings and features of the runc CLI. If there is something missing then add it, its opensource!") - (license license:asl2.0))) - -(define-public go-github-com-microsoft-go-winio-0.4.14 - (package - (name "go-github-com-microsoft-go-winio") - (version "0.4.14") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/microsoft/go-winio") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0n34wi9l9ks2z3cz97j30ljfmqppwf1zxr16hwbnswyrk54fcxm3")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/Microsoft/go-winio")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b" - ,go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b) - ("go-github-com-sirupsen-logrus-1.4.1" - ,go-github-com-sirupsen-logrus-1.4.1) - ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) - (home-page "https://github.com/Microsoft/go-winio") - (synopsis "go-winio") - (description - "This repository contains utilities for efficiently performing Win32 IO operations in -Go. Currently, this is focused on accessing named pipes and other file handles, and -for using named pipes as a net transport.") - (license license:expat))) - -(define-public go-github-com-microsoft-hcsshim-0.8.7-0.20190325164909-8abdbb8205e4 - (package - (name "go-github-com-microsoft-hcsshim") - (version "0.8.7-0.20190325164909-8abdbb8205e4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/microsoft/hcsshim") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0029085clghvprb3bs2m9q7xk4njx5fg2gr5wm3a0y8kqx0awv45")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/Microsoft/hcsshim")) - (home-page "https://github.com/Microsoft/hcsshim") - (synopsis "hcsshim") - (description - "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") - (license license:expat))) - -(define-public go-github-com-containerd-cgroups-0.0.0-20190717030353-c4b9ac5c7601 - (package - (name "go-github-com-containerd-cgroups") - (version "0.0.0-20190717030353-c4b9ac5c7601") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/cgroups") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fpai6nsm7qd5zfd8ykq8j4ngbqcy5v2isw16j086j0qabyw2iiw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/cgroups")) - (home-page "https://github.com/containerd/cgroups") - (synopsis "cgroups") - (description - "Go package for creating, managing, inspecting, and destroying cgroups. -The resources format for settings on the cgroup uses the OCI runtime-spec found -@url{https://github.com/opencontainers/runtime-spec,here}.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-console-0.0.0-20181022165439-0650fd9eeb50 - (package - (name "go-github-com-containerd-console") - (version "0.0.0-20181022165439-0650fd9eeb50") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/console") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0cs11g3gjan15rnbgryf60725sw2hf83fb6y2hwn1rgcm0jab1b8")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/console")) - (home-page "https://github.com/containerd/console") - (synopsis "console") - (description - "Golang package for dealing with consoles. Light on deps and a simple API.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-containerd-1.3.0 - (package - (name "go-github-com-containerd-containerd") - (version "1.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/containerd") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "05mr33l0rhkj49n6wf9lk95ijqvqwhp68ll879rpad1ypfv2f8as")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/containerd")) - (home-page "https://github.com/containerd/containerd") - (synopsis "Now Recruiting") - (description - "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-continuity-0.0.0-20190815185530-f2a389ac0a02 - (package - (name "go-github-com-containerd-continuity") - (version "0.0.0-20190815185530-f2a389ac0a02") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/continuity") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0h8a7npx46sjak0dyypkgg0h5dkq6dqpa4gx1v22ik62rmw0jy8r")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/continuity")) - (home-page "https://github.com/containerd/continuity") - (synopsis "continuity") - (description - "This package provides a transport-agnostic, filesystem metadata manifest system") - (license license:asl2.0))) - -(define-public go-github-com-containerd-fifo-0.0.0-20180307165137-3d5202aec260 - (package - (name "go-github-com-containerd-fifo") - (version "0.0.0-20180307165137-3d5202aec260") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/fifo") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "11jp12vgfj0xg9m2w5cfay72fwrxb6w8za7rkcqw8yy8hypiqqxq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/fifo")) - (home-page "https://github.com/containerd/fifo") - (synopsis "fifo") - (description "Go package for handling fifos in a sane way.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-go-runc-0.0.0-20190911050354-e029b79d8cda - (package - (name "go-github-com-containerd-go-runc") - (version "0.0.0-20190911050354-e029b79d8cda") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/go-runc") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0zwb6bfnfmj09rnz1z3xx1y2pm4wrhyp2ls7vmf7p62j5zyvdpkw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/go-runc")) - (home-page "https://github.com/containerd/go-runc") - (synopsis "go-runc") - (description - "This is a package for consuming the @url{https://github.com/opencontainers/runc,runc} binary in your Go applications. -It tries to expose all the settings and features of the runc CLI. If there is something missing then add it, its opensource!") - (license license:asl2.0))) - -(define-public go-github-com-containerd-ttrpc-0.0.0-20190828172938-92c8520ef9f8 - (package - (name "go-github-com-containerd-ttrpc") - (version "0.0.0-20190828172938-92c8520ef9f8") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/ttrpc") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1kzclhmicw2xkiqsg6npx0xzs5jx36mqmyd0gj5dzv88i7p4b8dx")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/ttrpc")) - (home-page "https://github.com/containerd/ttrpc") - (synopsis "ttrpc") - (description "GRPC for low-memory environments.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-containerd-1.2.10 - (package - (name "go-github-com-containerd-containerd") - (version "1.2.10") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/containerd") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1kddhkd93wkrimk0yjcqiavdrqc818nd39rf3wrgxyilx1mfnrwb")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/containerd")) - (home-page "https://github.com/containerd/containerd") - (synopsis "Now Recruiting") - (description - "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") - (license license:asl2.0))) - -(define-public go-github-com-fullsailor-pkcs7-0.0.0-20190404230743-d7302db945fa - (package - (name "go-github-com-fullsailor-pkcs7") - (version "0.0.0-20190404230743-d7302db945fa") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/fullsailor/pkcs7") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "13d7dpj85j36pxwg1kn7b23rm54va5p9v3vdcx27pma2jjlsxsm1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/fullsailor/pkcs7")) - (home-page "https://github.com/fullsailor/pkcs7") - (synopsis "pkcs7") - (description - "Package pkcs7 implements parsing and generation of some PKCS#7 structures. -") - (license license:expat))) - -(define-public go-golang-org-x-crypto-0.0.0-20190701094942-4def268fd1a4 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20190701094942-4def268fd1a4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1bfsnari529gw34cz0zqk3d9mrkcj1ay35kangri8kbgll0ss5a6")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" - ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) - ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" - ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-gopkg-in-square-go-jose-v2-2.3.1 - (package - (name "go-gopkg-in-square-go-jose-v2") - (version "2.3.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/square/go-jose.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "11r93g9xrcjqj7qvq8sbd5hy5rnbpmim0vdsp6rbav8gl7wimaa3")))) - (build-system go-build-system) - (arguments - '(#:import-path - "gopkg.in/square/go-jose.v2" - #:unpack-path - "gopkg.in/square/go-jose.v2")) - (home-page "https://gopkg.in/square/go-jose.v2") - (synopsis "Go JOSE") - (description - "Package jose aims to provide an implementation of the Javascript Object Signing -and Encryption set of standards. It implements encryption and signing based on -the JSON Web Encryption and JSON Web Signature standards, with optional JSON -Web Token support available in a sub-package. The library supports both the -compact and full serialization formats, and has optional support for multiple -recipients. -") - (license license:asl2.0))) - -(define-public go-github-com-containers-ocicrypt-1.0.1 - (package - (name "go-github-com-containers-ocicrypt") - (version "1.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containers/ocicrypt") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0q27vzgdsimypkpi7iv0rl1xz571554adphyl0j8b5qa8wrf0n7v")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containers/ocicrypt")) - (propagated-inputs - `(("go-gotest-tools-2.2.0+incompatible" - ,go-gotest-tools-2.2.0+incompatible) - ("go-gopkg-in-square-go-jose-v2-2.3.1" - ,go-gopkg-in-square-go-jose-v2-2.3.1) - ("go-google-golang-org-grpc-1.24.0" ,go-google-golang-org-grpc-1.24.0) - ("go-golang-org-x-crypto-0.0.0-20190701094942-4def268fd1a4" - ,go-golang-org-x-crypto-0.0.0-20190701094942-4def268fd1a4) - ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) - ("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0) - ("go-github-com-sirupsen-logrus-1.4.2" - ,go-github-com-sirupsen-logrus-1.4.2) - ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) - ("go-github-com-opencontainers-image-spec-1.0.1" - ,go-github-com-opencontainers-image-spec-1.0.1) - ("go-github-com-opencontainers-go-digest-1.0.0-rc1" - ,go-github-com-opencontainers-go-digest-1.0.0-rc1) - ("go-github-com-fullsailor-pkcs7-0.0.0-20190404230743-d7302db945fa" - ,go-github-com-fullsailor-pkcs7-0.0.0-20190404230743-d7302db945fa) - ("go-github-com-containerd-containerd-1.2.10" - ,go-github-com-containerd-containerd-1.2.10))) - (home-page "https://github.com/containers/ocicrypt") - (synopsis "OCIcrypt Library") - (description - "The @code{ocicrypt} library is the OCI image spec implementation of container image encryption. More details of the spec can be seen in the @url{https://github.com/opencontainers/image-spec/pull/775,OCI repository}. The purpose of this library is to encode spec structures and consts in code, as well as provide a consistent implementation of image encryption across container runtimes and build tools.") - (license license:asl2.0))) - -(define-public go-github-com-coreos-go-systemd-0.0.0-20161114122254-48702e0da86b - (package - (name "go-github-com-coreos-go-systemd") - (version "0.0.0-20161114122254-48702e0da86b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/coreos/go-systemd") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "04zl9ns4j3lpjykf32rv5cb6sj9x5ci8yi90vab1bl27vnqjgdkh")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/coreos/go-systemd")) - (home-page "https://github.com/coreos/go-systemd") - (synopsis "go-systemd") - (description "Go bindings to systemd. The project has several packages:") - (license license:asl2.0))) - -(define-public go-github-com-docker-distribution-2.7.1-0.20190205005809-0d3efadf0154+incompatible - (package - (name "go-github-com-docker-distribution") - (version "2.7.1-0.20190205005809-0d3efadf0154+incompatible") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/distribution/distribution") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1wayhmcxr6l281fqkbw1gh0ymhxlznf4jj1rcldhwrc64l2zjh8l")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/docker/distribution")) - (home-page "https://github.com/docker/distribution") - (synopsis "Distribution") - (description - "Package distribution will define the interfaces for the components of -docker distribution. The goal is to allow users to reliably package, ship -and store content related to docker images. -") - (license license:asl2.0))) - -(define-public go-github-com-docker-go-events-0.0.0-20170721190031-9461782956ad - (package - (name "go-github-com-docker-go-events") - (version "0.0.0-20170721190031-9461782956ad") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/docker/go-events") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0vn0kd0w253jwdk86gv1h6s8p6bzxiyif74xdzlb39zr6fdrr145")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/docker/go-events")) - (home-page "https://github.com/docker/go-events") - (synopsis "Docker Events Package") - (description - "The Docker @code{events} package implements a composable event distribution package -for Go.") - (license license:asl2.0))) - -(define-public go-github-com-godbus-dbus-0.0.0-20151105175453-c7fdd8b5cd55 - (package - (name "go-github-com-godbus-dbus") - (version "0.0.0-20151105175453-c7fdd8b5cd55") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/godbus/dbus") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "09zazkiny2im24xaiac5kbyhhnbqdbhwi9z9n7fj6rhpg8msiq9n")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/godbus/dbus")) - (home-page "https://github.com/godbus/dbus") - (synopsis "dbus") - (description - "Package dbus implements bindings to the D-Bus message bus system. -") - (license license:bsd-2))) - -(define-public go-github-com-gogo-googleapis-1.2.0 - (package - (name "go-github-com-gogo-googleapis") - (version "1.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gogo/googleapis") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1a82n0xp0v8lgjxzl3aa595r0rmy7afgyn2l3kv6z9kzw339i0jp")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/gogo/googleapis")) - (propagated-inputs - `(("go-github-com-gogo-protobuf-1.2.1" - ,go-github-com-gogo-protobuf-1.2.1))) - (home-page "https://github.com/gogo/googleapis") - (synopsis "Google APIs generated by gogoprotobuf") - (description - "The @url{https://github.com/gogo/grpc-example,grpc-example} includes an example usage of this repository.") - (license license:asl2.0))) - -(define-public go-github-com-imdario-mergo-0.3.8 - (package - (name "go-github-com-imdario-mergo") - (version "0.3.8") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/imdario/mergo") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "15xwyrnwng11ib0fxi7clwick2r0njwn0gs3va2g5m1ad418ry57")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/imdario/mergo")) - (home-page "https://github.com/imdario/mergo") - (synopsis "Mergo") - (description - "This package provides a helper to merge structs and maps in Golang. Useful for configuration default values, avoiding messy if-statements. -") - (license license:bsd-3))) - -(define-public go-github-com-opencontainers-go-digest-1.0.0-rc1.0.20180430190053-c9281466c8b2 - (package - (name "go-github-com-opencontainers-go-digest") - (version "1.0.0-rc1.0.20180430190053-c9281466c8b2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/go-digest") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1djdazssy27xn91pjhx3dgb0f11bnlzzbwkh7f8zwnpz011anasi")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/go-digest")) - (home-page "https://github.com/opencontainers/go-digest") - (synopsis "go-digest") - (description - "Package digest provides a generalized type to opaquely represent message -digests and their operations within the registry. The Digest type is -designed to serve as a flexible identifier in a content-addressable system. -More importantly, it provides tools and wrappers to work with -hash.Hash-based digests with little effort. -") - (license (list license:asl2.0 license:cc-by-sa4.0)))) - -(define-public go-github-com-opencontainers-runc-1.0.0-rc8.0.20190926000215-3e425f80a8c9 - (package - (name "go-github-com-opencontainers-runc") - (version "1.0.0-rc8.0.20190926000215-3e425f80a8c9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/runc") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18psc830b2rkwml1x6vxngam5b5wi3pj14mw817rshpzy87prspj")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/runc")) - (home-page "https://github.com/opencontainers/runc") - (synopsis "runc") - (description - "@code{runc} is a CLI tool for spawning and running containers according to the OCI specification.") - (license license:asl2.0))) - -(define-public go-github-com-opencontainers-runtime-spec-1.0.2-0.20190207185410-29686dbc5559 - (package - (name "go-github-com-opencontainers-runtime-spec") - (version "1.0.2-0.20190207185410-29686dbc5559") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/runtime-spec") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0i8q3520jk4yl9rsxs8mn5vsi9i0gd3drysbhciaqwm5l8c30h65")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) - (home-page "https://github.com/opencontainers/runtime-spec") - (synopsis "Open Container Initiative Runtime Specification") - (description - "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") - (license license:asl2.0))) - -(define-public go-github-com-prometheus-procfs-0.0.8 - (package - (name "go-github-com-prometheus-procfs") - (version "0.0.8") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/procfs") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "076wblhz8fjdc73fmz1lg0hafbwg1xv8hszm78lbg9anjpfgacvq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/procfs")) - (propagated-inputs - `(("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" - ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) - ("go-github-com-google-go-cmp-0.3.1" - ,go-github-com-google-go-cmp-0.3.1))) - (home-page "https://github.com/prometheus/procfs") - (synopsis "procfs") - (description - "Package procfs provides functions to retrieve system, kernel and process -metrics from the pseudo-filesystem proc. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-net-0.0.0-20190522155817-f3200d17e092 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190522155817-f3200d17e092") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1mskh7p80dd8j1ffy16917d3cyy7lfh1gb56n4rq9g1bwckz4lwy")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20190812073006-9eafafc0a87e - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190812073006-9eafafc0a87e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0g5wcpiafz47066993mgz77gka9qzww6w6crxpnyir0459j7z07r")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-google-golang-org-grpc-1.24.0 - (package - (name "go-google-golang-org-grpc") - (version "1.24.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0h8mwv74vzcfb7p4ai247x094skxca71vjp4wpj2wzmri0x9p4v6")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" - ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) - ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" - ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) - ("go-google-golang-org-appengine-1.1.0" - ,go-google-golang-org-appengine-1.1.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-google-go-cmp-0.2.0" - ,go-github-com-google-go-cmp-0.2.0) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2) - ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-client9-misspell-0.3.4" - ,go-github-com-client9-misspell-0.3.4) - ("go-github-com-burntsushi-toml-0.3.1" - ,go-github-com-burntsushi-toml-0.3.1) - ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-github-com-containerd-imgcrypt-1.0.1 - (package - (name "go-github-com-containerd-imgcrypt") - (version "1.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/imgcrypt") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0y0gbnp8imckw6rv3sjf3sycp8rc9lyhv0pp0x3q3yksvqmbqh5v")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/imgcrypt")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.24.0" ,go-google-golang-org-grpc-1.24.0) - ("go-golang-org-x-sys-0.0.0-20190812073006-9eafafc0a87e" - ,go-golang-org-x-sys-0.0.0-20190812073006-9eafafc0a87e) - ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" - ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) - ("go-golang-org-x-net-0.0.0-20190522155817-f3200d17e092" - ,go-golang-org-x-net-0.0.0-20190522155817-f3200d17e092) - ("go-go-etcd-io-bbolt-1.3.3" ,go-go-etcd-io-bbolt-1.3.3) - ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) - ("go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2" - ,go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2) - ("go-github-com-sirupsen-logrus-1.4.2" - ,go-github-com-sirupsen-logrus-1.4.2) - ("go-github-com-prometheus-procfs-0.0.8" - ,go-github-com-prometheus-procfs-0.0.8) - ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) - ("go-github-com-opencontainers-runtime-spec-1.0.2-0.20190207185410-29686dbc5559" - ,go-github-com-opencontainers-runtime-spec-1.0.2-0.20190207185410-29686dbc5559) - ("go-github-com-opencontainers-runc-1.0.0-rc8.0.20190926000215-3e425f80a8c9" - ,go-github-com-opencontainers-runc-1.0.0-rc8.0.20190926000215-3e425f80a8c9) - ("go-github-com-opencontainers-image-spec-1.0.1" - ,go-github-com-opencontainers-image-spec-1.0.1) - ("go-github-com-opencontainers-go-digest-1.0.0-rc1.0.20180430190053-c9281466c8b2" - ,go-github-com-opencontainers-go-digest-1.0.0-rc1.0.20180430190053-c9281466c8b2) - ("go-github-com-imdario-mergo-0.3.8" - ,go-github-com-imdario-mergo-0.3.8) - ("go-github-com-gogo-protobuf-1.2.1" - ,go-github-com-gogo-protobuf-1.2.1) - ("go-github-com-gogo-googleapis-1.2.0" - ,go-github-com-gogo-googleapis-1.2.0) - ("go-github-com-godbus-dbus-0.0.0-20151105175453-c7fdd8b5cd55" - ,go-github-com-godbus-dbus-0.0.0-20151105175453-c7fdd8b5cd55) - ("go-github-com-docker-go-units-0.4.0" - ,go-github-com-docker-go-units-0.4.0) - ("go-github-com-docker-go-events-0.0.0-20170721190031-9461782956ad" - ,go-github-com-docker-go-events-0.0.0-20170721190031-9461782956ad) - ("go-github-com-docker-distribution-2.7.1-0.20190205005809-0d3efadf0154+incompatible" - ,go-github-com-docker-distribution-2.7.1-0.20190205005809-0d3efadf0154+incompatible) - ("go-github-com-coreos-go-systemd-0.0.0-20161114122254-48702e0da86b" - ,go-github-com-coreos-go-systemd-0.0.0-20161114122254-48702e0da86b) - ("go-github-com-containers-ocicrypt-1.0.1" - ,go-github-com-containers-ocicrypt-1.0.1) - ("go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd" - ,go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd) - ("go-github-com-containerd-ttrpc-0.0.0-20190828172938-92c8520ef9f8" - ,go-github-com-containerd-ttrpc-0.0.0-20190828172938-92c8520ef9f8) - ("go-github-com-containerd-go-runc-0.0.0-20190911050354-e029b79d8cda" - ,go-github-com-containerd-go-runc-0.0.0-20190911050354-e029b79d8cda) - ("go-github-com-containerd-fifo-0.0.0-20180307165137-3d5202aec260" - ,go-github-com-containerd-fifo-0.0.0-20180307165137-3d5202aec260) - ("go-github-com-containerd-continuity-0.0.0-20190815185530-f2a389ac0a02" - ,go-github-com-containerd-continuity-0.0.0-20190815185530-f2a389ac0a02) - ("go-github-com-containerd-containerd-1.3.0" - ,go-github-com-containerd-containerd-1.3.0) - ("go-github-com-containerd-console-0.0.0-20181022165439-0650fd9eeb50" - ,go-github-com-containerd-console-0.0.0-20181022165439-0650fd9eeb50) - ("go-github-com-containerd-cgroups-0.0.0-20190717030353-c4b9ac5c7601" - ,go-github-com-containerd-cgroups-0.0.0-20190717030353-c4b9ac5c7601) - ("go-github-com-microsoft-hcsshim-0.8.7-0.20190325164909-8abdbb8205e4" - ,go-github-com-microsoft-hcsshim-0.8.7-0.20190325164909-8abdbb8205e4) - ("go-github-com-microsoft-go-winio-0.4.14" - ,go-github-com-microsoft-go-winio-0.4.14))) - (home-page "https://github.com/containerd/imgcrypt") - (synopsis "imgcrypt image encryption library and command line tool") - (description - "Project @code{imgcrypt} is a non-core subproject of containerd.") - (license license:asl2.0))) - -(define-public go-github-com-blang-semver-3.1.0+incompatible - (package - (name "go-github-com-blang-semver") - (version "3.1.0+incompatible") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/blang/semver") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1s80qlij6j6wrh0fhm0l11hbf3qjra67nca5bl7izyfjj4621fcd")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/blang/semver")) - (home-page "https://github.com/blang/semver") - (synopsis "semver for golang") - (description - "semver is a @url{http://semver.org/,Semantic Versioning} library written in golang. It fully covers spec version @code{2.0.0}.") - (license license:expat))) - -(define-public go-github-com-containerd-containerd-1.3.0-beta.2.0.20190828155532-0293cbd26c69 - (package - (name "go-github-com-containerd-containerd") - (version "1.3.0-beta.2.0.20190828155532-0293cbd26c69") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/containerd") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1jhb4a7fczf817d9dwj0a02wfscv46hkymrqh1dcsgpdsp80igkw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/containerd")) - (home-page "https://github.com/containerd/containerd") - (synopsis "Now Recruiting") - (description - "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") - (license license:asl2.0))) - -(define-public go-github-com-hashicorp-errwrap-0.0.0-20141028054710-7554cd9344ce - (package - (name "go-github-com-hashicorp-errwrap") - (version "0.0.0-20141028054710-7554cd9344ce") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/errwrap") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0kmv0p605di6jc8i1778qzass18m0mv9ks9vxxrfsiwcp4la82jf")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/errwrap")) - (home-page "https://github.com/hashicorp/errwrap") - (synopsis "errwrap") - (description - "Package errwrap implements methods to formalize error wrapping in Go. -") - (license license:mpl2.0))) - -(define-public go-github-com-hashicorp-go-multierror-0.0.0-20161216184304-ed905158d874 - (package - (name "go-github-com-hashicorp-go-multierror") - (version "0.0.0-20161216184304-ed905158d874") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/go-multierror") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1bldhx9dmx9q4gjsag3g1xswq1jsf394rs69fdbmgnkj75j3sp70")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/go-multierror")) - (home-page "https://github.com/hashicorp/go-multierror") - (synopsis "go-multierror") - (description - "@code{go-multierror} is a package for Go that provides a mechanism for -representing a list of @code{error} values as a single @code{error}.") - (license license:mpl2.0))) - -(define-public go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39 - (package - (name "go-github-com-opencontainers-runtime-tools") - (version "0.0.0-20181011054405-1d69bd0f9c39") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/runtime-tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1wgisl2v8i1hvy3bf8f16v7rarx2ynyasb0jx4kffp5n5hz2hfcl")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/runtime-tools")) - (home-page "https://github.com/opencontainers/runtime-tools") - (synopsis "oci-runtime-tool") - (description - "oci-runtime-tool is a collection of tools for working with the @url{https://github.com/opencontainers/runtime-spec,OCI runtime specification}. -To build from source code, runtime-tools requires Go 1.10.x or above.") - (license license:asl2.0))) - -(define-public go-github-com-prometheus-procfs-0.0.5 - (package - (name "go-github-com-prometheus-procfs") - (version "0.0.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/procfs") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1nqn8ip9f4f6kqrvand4lxhcxrkk19dwf8s3nh336i9wr2jfhbwa")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/procfs")) - (propagated-inputs - `(("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" - ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) - ("go-github-com-google-go-cmp-0.3.0" - ,go-github-com-google-go-cmp-0.3.0))) - (home-page "https://github.com/prometheus/procfs") - (synopsis "procfs") - (description - "Package procfs provides functions to retrieve system, kernel and process -metrics from the pseudo-filesystem proc. -") - (license license:asl2.0))) - -(define-public go-github-com-syndtr-gocapability-0.0.0-20170704070218-db04d3cc01c8 - (package - (name "go-github-com-syndtr-gocapability") - (version "0.0.0-20170704070218-db04d3cc01c8") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/syndtr/gocapability") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0jwica5kqax70rd4gbc2yjdz54401s4mr6clyn60gcmnxc0wynds")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/syndtr/gocapability")) - (home-page "https://github.com/syndtr/gocapability") - (synopsis #f) - (description #f) - (license license:bsd-2))) - -(define-public go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f - (package - (name "go-github-com-xeipuuv-gojsonpointer") - (version "0.0.0-20180127040702-4e3ac2762d5f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/xeipuuv/gojsonpointer") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "13y6iq2nzf9z4ls66bfgnnamj2m3438absmbpqry64bpwjfbsi9q")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/xeipuuv/gojsonpointer")) - (home-page "https://github.com/xeipuuv/gojsonpointer") - (synopsis "gojsonpointer") - (description "An implementation of JSON Pointer - Go language") - (license license:asl2.0))) - -(define-public go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415 - (package - (name "go-github-com-xeipuuv-gojsonreference") - (version "0.0.0-20180127040603-bd5ef7bd5415") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/xeipuuv/gojsonreference") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1xby79padc7bmyb8rfbad8wfnfdzpnh51b1n8c0kibch0kwc1db5")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/xeipuuv/gojsonreference")) - (home-page "https://github.com/xeipuuv/gojsonreference") - (synopsis "gojsonreference") - (description "An implementation of JSON Reference - Go language") - (license license:asl2.0))) - -(define-public go-github-com-xeipuuv-gojsonschema-0.0.0-20180618132009-1d523034197f - (package - (name "go-github-com-xeipuuv-gojsonschema") - (version "0.0.0-20180618132009-1d523034197f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/xeipuuv/gojsonschema") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1z8c6x8sfh6d1ib2lm2jps7r139qip6h3zik3fxhy1yr1380qbzp")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/xeipuuv/gojsonschema")) - (home-page "https://github.com/xeipuuv/gojsonschema") - (synopsis "gojsonschema") - (description - "An implementation of JSON Schema for the Go programming language. Supports draft-04, draft-06 and draft-07.") - (license license:asl2.0))) - -(define-public go-k8s-io-kubernetes-1.13.0 - (package - (name "go-k8s-io-kubernetes") - (version "1.13.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes/kubernetes") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12cvw8b7l319p8nc2imc2wck7zz7vzrwcjyxq5djqj7l5rbcwmzs")))) - (build-system go-build-system) - (arguments '(#:import-path "k8s.io/kubernetes")) - (home-page "https://k8s.io/kubernetes") - (synopsis "Kubernetes (K8s)") - (description - "Kubernetes, also known as K8s, is an open source system for managing @url{https://kubernetes.io/docs/concepts/overview/what-is-kubernetes/,containerized applications} -across multiple hosts. It provides basic mechanisms for deployment, maintenance, -and scaling of applications.") - (license license:asl2.0))) - -(define-public go-github-com-microsoft-hcsshim-0.8.7 - (package - (name "go-github-com-microsoft-hcsshim") - (version "0.8.7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/microsoft/hcsshim") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1c6ix202ll48n7x00xxb7gzgm3srm9zwwbx2503l6vz3sqclh9xm")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/Microsoft/hcsshim")) - (propagated-inputs - `(("go-k8s-io-kubernetes-1.13.0" ,go-k8s-io-kubernetes-1.13.0) - ("go-gotest-tools-2.2.0+incompatible" - ,go-gotest-tools-2.2.0+incompatible) - ("go-google-golang-org-grpc-1.20.1" ,go-google-golang-org-grpc-1.20.1) - ("go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3" - ,go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3) - ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" - ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) - ("go-go-opencensus-io-0.22.0" ,go-go-opencensus-io-0.22.0) - ("go-github-com-xeipuuv-gojsonschema-0.0.0-20180618132009-1d523034197f" - ,go-github-com-xeipuuv-gojsonschema-0.0.0-20180618132009-1d523034197f) - ("go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415" - ,go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415) - ("go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f" - ,go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f) - ("go-github-com-urfave-cli-0.0.0-20171014202726-7bc6a0acffa5" - ,go-github-com-urfave-cli-0.0.0-20171014202726-7bc6a0acffa5) - ("go-github-com-syndtr-gocapability-0.0.0-20170704070218-db04d3cc01c8" - ,go-github-com-syndtr-gocapability-0.0.0-20170704070218-db04d3cc01c8) - ("go-github-com-sirupsen-logrus-1.4.1" - ,go-github-com-sirupsen-logrus-1.4.1) - ("go-github-com-prometheus-procfs-0.0.5" - ,go-github-com-prometheus-procfs-0.0.5) - ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) - ("go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39" - ,go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39) - ("go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700" - ,go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700) - ("go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f" - ,go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f) - ("go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2" - ,go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2) - ("go-github-com-hashicorp-go-multierror-0.0.0-20161216184304-ed905158d874" - ,go-github-com-hashicorp-go-multierror-0.0.0-20161216184304-ed905158d874) - ("go-github-com-hashicorp-errwrap-0.0.0-20141028054710-7554cd9344ce" - ,go-github-com-hashicorp-errwrap-0.0.0-20141028054710-7554cd9344ce) - ("go-github-com-gogo-protobuf-1.2.1" - ,go-github-com-gogo-protobuf-1.2.1) - ("go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd" - ,go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd) - ("go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de" - ,go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de) - ("go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3" - ,go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3) - ("go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448" - ,go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448) - ("go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc" - ,go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc) - ("go-github-com-containerd-containerd-1.3.0-beta.2.0.20190828155532-0293cbd26c69" - ,go-github-com-containerd-containerd-1.3.0-beta.2.0.20190828155532-0293cbd26c69) - ("go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1" - ,go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1) - ("go-github-com-containerd-cgroups-0.0.0-20190919134610-bf292b21730f" - ,go-github-com-containerd-cgroups-0.0.0-20190919134610-bf292b21730f) - ("go-github-com-blang-semver-3.1.0+incompatible" - ,go-github-com-blang-semver-3.1.0+incompatible) - ("go-github-com-microsoft-go-winio-0.4.15-0.20190919025122-fc70bd9a86b5" - ,go-github-com-microsoft-go-winio-0.4.15-0.20190919025122-fc70bd9a86b5))) - (home-page "https://github.com/Microsoft/hcsshim") - (synopsis "hcsshim") - (description - "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") - (license license:expat))) - -(define-public go-github-com-containerd-containerd-1.3.1-0.20191213020239-082f7e3aed57 - (package - (name "go-github-com-containerd-containerd") - (version "1.3.1-0.20191213020239-082f7e3aed57") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/containerd") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1piaha1adhzhj150l7zhskn5fgl4r2cyvwhrrm8bbm3vnvhmgw7v")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/containerd")) - (home-page "https://github.com/containerd/containerd") - (synopsis "Now Recruiting") - (description - "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-continuity-0.0.0-20191127005431-f65d91d395eb - (package - (name "go-github-com-containerd-continuity") - (version "0.0.0-20191127005431-f65d91d395eb") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/continuity") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "15yh5idl3if8a982gsnq9q72021a7jcs9bdcrqaxbl4dwdqcszki")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/continuity")) - (home-page "https://github.com/containerd/continuity") - (synopsis "continuity") - (description - "This package provides a transport-agnostic, filesystem metadata manifest system") - (license license:asl2.0))) - -(define-public go-golang-org-x-sys-0.0.0-20190522044717-8097e1b27ff5 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190522044717-8097e1b27ff5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1rgflfvh365x5lwdyqdd9qk8hh3ycr88a2488bgqgvfhp5ri5p6x")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-google-golang-org-genproto-0.0.0-20190522204451-c2c4e71fbf69 - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20190522204451-c2c4e71fbf69") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1y44pmyy92pg822fhw80pnciifx1ah0g73i2l0ixickd24wyznnm")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" - ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) - ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) - ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" - ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) - ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" - ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) - ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" - ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) - ("go-github-com-golang-protobuf-1.3.1" - ,go-github-com-golang-protobuf-1.3.1))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-google-golang-org-grpc-1.21.0 - (package - (name "go-google-golang-org-grpc") - (version "1.21.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0zxjlxnvjqfn6zfx7gbmqhadx0j788vxfn95g1ngbmjkgppzsnfp")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" - ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) - ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" - ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) - ("go-google-golang-org-appengine-1.1.0" - ,go-google-golang-org-appengine-1.1.0) - ("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" - ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" - ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-google-go-cmp-0.2.0" - ,go-github-com-google-go-cmp-0.2.0) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0) - ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-client9-misspell-0.3.4" - ,go-github-com-client9-misspell-0.3.4) - ("go-github-com-burntsushi-toml-0.3.1" - ,go-github-com-burntsushi-toml-0.3.1) - ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-github-com-containerd-ttrpc-0.0.0-20191028202541-4f1b8fe65a5c - (package - (name "go-github-com-containerd-ttrpc") - (version "0.0.0-20191028202541-4f1b8fe65a5c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/ttrpc") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19fhm39jagk2sfgi9g5zdqx4rynziwxhaap03x4mdj8kczlz21x8")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/ttrpc")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.21.0" ,go-google-golang-org-grpc-1.21.0) - ("go-google-golang-org-genproto-0.0.0-20190522204451-c2c4e71fbf69" - ,go-google-golang-org-genproto-0.0.0-20190522204451-c2c4e71fbf69) - ("go-golang-org-x-sys-0.0.0-20190522044717-8097e1b27ff5" - ,go-golang-org-x-sys-0.0.0-20190522044717-8097e1b27ff5) - ("go-github-com-sirupsen-logrus-1.4.2" - ,go-github-com-sirupsen-logrus-1.4.2) - ("go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1" - ,go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1) - ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) - ("go-github-com-gogo-protobuf-1.2.1" - ,go-github-com-gogo-protobuf-1.2.1))) - (home-page "https://github.com/containerd/ttrpc") - (synopsis "ttrpc") - (description "GRPC for low-memory environments.") - (license license:asl2.0))) - -(define-public go-github-com-gogo-protobuf-1.3.0 - (package - (name "go-github-com-gogo-protobuf") - (version "1.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gogo/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0slfyrmbpdcppf0z3waar90bpszdhi2gv705ys1b0zx5x6ax8f1a")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/gogo/protobuf")) - (propagated-inputs - `(("go-github-com-kisielk-gotool-1.0.0" - ,go-github-com-kisielk-gotool-1.0.0) - ("go-github-com-kisielk-errcheck-1.2.0" - ,go-github-com-kisielk-errcheck-1.2.0))) - (home-page "https://github.com/gogo/protobuf") - (synopsis "Protocol Buffers for Go with Gadgets") - (description - "gogoprotobuf is a fork of @url{https://github.com/golang/protobuf,golang/protobuf} with extra code generation features.") - (license license:bsd-3))) - -(define-public go-github-com-containerd-typeurl-0.0.0-20190911142611-5eb25027c9fd - (package - (name "go-github-com-containerd-typeurl") - (version "0.0.0-20190911142611-5eb25027c9fd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/typeurl") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fyc2962b9sqgqycnlkxls6n0d701nszl84bayxrdv3r1491jn9v")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/typeurl")) - (propagated-inputs - `(("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) - ("go-github-com-gogo-protobuf-1.3.0" - ,go-github-com-gogo-protobuf-1.3.0))) - (home-page "https://github.com/containerd/typeurl") - (synopsis "typeurl") - (description - "This package provides a Go package for managing the registration, marshaling, and unmarshaling of encoded types.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-zfs-0.0.0-20200918131355-0a33824f23a2 - (package - (name "go-github-com-containerd-zfs") - (version "0.0.0-20200918131355-0a33824f23a2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/zfs") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "112bj6mxc3r2ncybblf3w1fgqa6w0070f6a8vlqcml1g00ljhsz6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/zfs")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) - ("go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449" - ,go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449) - ("go-go-etcd-io-bbolt-1.3.3" ,go-go-etcd-io-bbolt-1.3.3) - ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) - ("go-github-com-opencontainers-runc-1.0.0-rc9" - ,go-github-com-opencontainers-runc-1.0.0-rc9) - ("go-github-com-opencontainers-image-spec-1.0.1" - ,go-github-com-opencontainers-image-spec-1.0.1) - ("go-github-com-opencontainers-go-digest-1.0.0-rc1" - ,go-github-com-opencontainers-go-digest-1.0.0-rc1) - ("go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible" - ,go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible) - ("go-github-com-google-uuid-1.1.1" ,go-github-com-google-uuid-1.1.1) - ("go-github-com-google-go-cmp-0.3.1" - ,go-github-com-google-go-cmp-0.3.1) - ("go-github-com-gogo-protobuf-1.3.1" - ,go-github-com-gogo-protobuf-1.3.1) - ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" - ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) - ("go-github-com-containerd-typeurl-0.0.0-20190911142611-5eb25027c9fd" - ,go-github-com-containerd-typeurl-0.0.0-20190911142611-5eb25027c9fd) - ("go-github-com-containerd-ttrpc-0.0.0-20191028202541-4f1b8fe65a5c" - ,go-github-com-containerd-ttrpc-0.0.0-20191028202541-4f1b8fe65a5c) - ("go-github-com-containerd-continuity-0.0.0-20191127005431-f65d91d395eb" - ,go-github-com-containerd-continuity-0.0.0-20191127005431-f65d91d395eb) - ("go-github-com-containerd-containerd-1.3.1-0.20191213020239-082f7e3aed57" - ,go-github-com-containerd-containerd-1.3.1-0.20191213020239-082f7e3aed57) - ("go-github-com-microsoft-hcsshim-0.8.7" - ,go-github-com-microsoft-hcsshim-0.8.7))) - (home-page "https://github.com/containerd/zfs") - (synopsis "ZFS snapshotter plugin") - (description "ZFS snapshotter plugin for containerd.") - (license license:asl2.0))) - -(define-public go-golang-org-x-sys-0.0.0-20201202213521-69691e467435 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20201202213521-69691e467435") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0lndxdnazszfj1jl87cpz31vd12jrjm1wj0zw1c2p8yg64cfkhna")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-containerd-containerd-1.5.0-beta.1 - (package - (name "go-github-com-containerd-containerd") - (version "1.5.0-beta.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/containerd") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1jki3jwmbfk4mp2qhz4ppd6vgnicalszzv5ffibasa4qj5v19wcd")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/containerd")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) - ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) - ("go-github-com-golang-protobuf-1.3.5" - ,go-github-com-golang-protobuf-1.3.5) - ("go-github-com-gogo-googleapis-1.3.2" - ,go-github-com-gogo-googleapis-1.3.2) - ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" - ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) - ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) - ("go-k8s-io-cri-api-0.20.1" ,go-k8s-io-cri-api-0.20.1) - ("go-k8s-io-component-base-0.20.1" ,go-k8s-io-component-base-0.20.1) - ("go-k8s-io-client-go-0.20.1" ,go-k8s-io-client-go-0.20.1) - ("go-k8s-io-apiserver-0.20.1" ,go-k8s-io-apiserver-0.20.1) - ("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) - ("go-k8s-io-api-0.20.1" ,go-k8s-io-api-0.20.1) - ("go-gotest-tools-v3-3.0.2" ,go-gotest-tools-v3-3.0.2) - ("go-golang-org-x-sys-0.0.0-20201202213521-69691e467435" - ,go-golang-org-x-sys-0.0.0-20201202213521-69691e467435) - ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" - ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) - ("go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b" - ,go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b) - ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) - ("go-github-com-tchap-go-patricia-2.2.6+incompatible" - ,go-github-com-tchap-go-patricia-2.2.6+incompatible) - ("go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635" - ,go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-sirupsen-logrus-1.7.0" - ,go-github-com-sirupsen-logrus-1.7.0) - ("go-github-com-prometheus-client-golang-1.7.1" - ,go-github-com-prometheus-client-golang-1.7.1) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-selinux-1.8.0" - ,go-github-com-opencontainers-selinux-1.8.0) - ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" - ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) - ("go-github-com-opencontainers-runc-1.0.0-rc93" - ,go-github-com-opencontainers-runc-1.0.0-rc93) - ("go-github-com-opencontainers-image-spec-1.0.1" - ,go-github-com-opencontainers-image-spec-1.0.1) - ("go-github-com-opencontainers-go-digest-1.0.0" - ,go-github-com-opencontainers-go-digest-1.0.0) - ("go-github-com-moby-sys-symlink-0.1.0" - ,go-github-com-moby-sys-symlink-0.1.0) - ("go-github-com-moby-sys-mountinfo-0.4.0" - ,go-github-com-moby-sys-mountinfo-0.4.0) - ("go-github-com-klauspost-compress-1.11.3" - ,go-github-com-klauspost-compress-1.11.3) - ("go-github-com-imdario-mergo-0.3.10" - ,go-github-com-imdario-mergo-0.3.10) - ("go-github-com-hashicorp-go-multierror-1.0.0" - ,go-github-com-hashicorp-go-multierror-1.0.0) - ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" - ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) - ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) - ("go-github-com-google-go-cmp-0.5.2" - ,go-github-com-google-go-cmp-0.5.2) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2) - ("go-github-com-fsnotify-fsnotify-1.4.9" - ,go-github-com-fsnotify-fsnotify-1.4.9) - ("go-github-com-emicklei-go-restful-2.9.5+incompatible" - ,go-github-com-emicklei-go-restful-2.9.5+incompatible) - ("go-github-com-docker-go-units-0.4.0" - ,go-github-com-docker-go-units-0.4.0) - ("go-github-com-docker-go-metrics-0.0.1" - ,go-github-com-docker-go-metrics-0.0.1) - ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" - ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1) - ("go-github-com-coreos-go-systemd-v22-22.1.0" - ,go-github-com-coreos-go-systemd-v22-22.1.0) - ("go-github-com-containernetworking-plugins-0.8.6" - ,go-github-com-containernetworking-plugins-0.8.6) - ("go-github-com-containerd-zfs-0.0.0-20200918131355-0a33824f23a2" - ,go-github-com-containerd-zfs-0.0.0-20200918131355-0a33824f23a2) - ("go-github-com-containerd-typeurl-1.0.1" - ,go-github-com-containerd-typeurl-1.0.1) - ("go-github-com-containerd-ttrpc-1.0.2" - ,go-github-com-containerd-ttrpc-1.0.2) - ("go-github-com-containerd-nri-0.0.0-20201007170849-eb1350a75164" - ,go-github-com-containerd-nri-0.0.0-20201007170849-eb1350a75164) - ("go-github-com-containerd-imgcrypt-1.0.1" - ,go-github-com-containerd-imgcrypt-1.0.1) - ("go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328" - ,go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328) - ("go-github-com-containerd-go-cni-1.0.1" - ,go-github-com-containerd-go-cni-1.0.1) - ("go-github-com-containerd-fifo-0.0.0-20201026212402-0724c46b320c" - ,go-github-com-containerd-fifo-0.0.0-20201026212402-0724c46b320c) - ("go-github-com-containerd-continuity-0.0.0-20201208142359-180525291bb7" - ,go-github-com-containerd-continuity-0.0.0-20201208142359-180525291bb7) - ("go-github-com-containerd-console-1.0.1" - ,go-github-com-containerd-console-1.0.1) - ("go-github-com-containerd-cgroups-0.0.0-20200824123100-0b889c03f102" - ,go-github-com-containerd-cgroups-0.0.0-20200824123100-0b889c03f102) - ("go-github-com-containerd-btrfs-0.0.0-20201111183144-404b9149801e" - ,go-github-com-containerd-btrfs-0.0.0-20201111183144-404b9149801e) - ("go-github-com-containerd-aufs-0.0.0-20200908144142-dab0cbea06f4" - ,go-github-com-containerd-aufs-0.0.0-20200908144142-dab0cbea06f4) - ("go-github-com-microsoft-hcsshim-test-0.0.0-20201218223536-d3e5debf77da" - ,go-github-com-microsoft-hcsshim-test-0.0.0-20201218223536-d3e5debf77da) - ("go-github-com-microsoft-hcsshim-0.8.14" - ,go-github-com-microsoft-hcsshim-0.8.14) - ("go-github-com-microsoft-go-winio-0.4.16" - ,go-github-com-microsoft-go-winio-0.4.16) - ("go-github-com-burntsushi-toml-0.3.1" - ,go-github-com-burntsushi-toml-0.3.1))) - (home-page "https://github.com/containerd/containerd") - (synopsis "Now Recruiting") - (description - "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") - (license license:asl2.0))) - -(define-public go-github-com-miekg-pkcs11-1.0.3 - (package - (name "go-github-com-miekg-pkcs11") - (version "1.0.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/miekg/pkcs11") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0rmmgssb6y28x54si5h63gwbdsjjxf5n9xvm3zqdfsf9l10gx2m6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/miekg/pkcs11")) - (home-page "https://github.com/miekg/pkcs11") - (synopsis "PKCS#11") - (description - "Package pkcs11 is a wrapper around the PKCS#11 cryptographic library. -") - (license license:bsd-3))) - -(define-public go-github-com-stefanberger-go-pkcs11uri-0.0.0-20201008174630-78d3cae3a980 - (package - (name "go-github-com-stefanberger-go-pkcs11uri") - (version "0.0.0-20201008174630-78d3cae3a980") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stefanberger/go-pkcs11uri") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "09bnd1fn2v5y5ngsxz751a0x9fsqn8idlfrwyymfv9l57wvmrd2l")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stefanberger/go-pkcs11uri")) - (home-page "https://github.com/stefanberger/go-pkcs11uri") - (synopsis "go-pkcs11uri") - (description - "Welcome to the go-pkcs11uri library. The implementation follows @url{https://tools.ietf.org/html/rfc7512,RFC 7512} and this @url{https://www.rfc-editor.org/errata/rfc7512,errata}.") - (license license:asl2.0))) - -(define-public go-go-mozilla-org-pkcs7-0.0.0-20200128120323-432b2356ecb1 - (package - (name "go-go-mozilla-org-pkcs7") - (version "0.0.0-20200128120323-432b2356ecb1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mozilla-services/pkcs7") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0yncaq6i1x6apykvng92yyqkj5kmzl4c43lmcalr5lq7ks009p40")))) - (build-system go-build-system) - (arguments '(#:import-path "go.mozilla.org/pkcs7")) - (home-page "https://go.mozilla.org/pkcs7") - (synopsis "pkcs7") - (description - "Package pkcs7 implements parsing and generation of some PKCS#7 structures. -") - (license license:expat))) - -(define-public go-golang-org-x-crypto-0.0.0-20200728195943-123391ffb6de - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20200728195943-123391ffb6de") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1a3wnn8yjvckh3smyqzwd2k2gvl3i8dk68pvcap0wha8hmga1vf3")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" - ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) - ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" - ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20200817155316-9781c653f443 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200817155316-9781c653f443") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fkwiydhhmn6cxmd9jb4rj2wp06yxmqc3903b7zawsxm9jpslicm")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-gopkg-in-square-go-jose-v2-2.5.1 - (package - (name "go-gopkg-in-square-go-jose-v2") - (version "2.5.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/square/go-jose.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0z0hbmb5yyvnjkyiyn259wkbqbjxs2pzx87jz472shn2bgggxa4n")))) - (build-system go-build-system) - (arguments - '(#:import-path - "gopkg.in/square/go-jose.v2" - #:unpack-path - "gopkg.in/square/go-jose.v2")) - (home-page "https://gopkg.in/square/go-jose.v2") - (synopsis "Go JOSE") - (description - "Package jose aims to provide an implementation of the Javascript Object Signing -and Encryption set of standards. It implements encryption and signing based on -the JSON Web Encryption and JSON Web Signature standards, with optional JSON -Web Token support available in a sub-package. The library supports both the -compact and full serialization formats, and has optional support for multiple -recipients. -") - (license license:asl2.0))) - -(define-public go-github-com-containers-ocicrypt-1.1.0 - (package - (name "go-github-com-containers-ocicrypt") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containers/ocicrypt") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "13avih8ml00idn6qy96ash3jxkimqxpkz4cy4kgryc8jx303nv6i")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containers/ocicrypt")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.3.0" ,go-gopkg-in-yaml-v2-2.3.0) - ("go-gopkg-in-square-go-jose-v2-2.5.1" - ,go-gopkg-in-square-go-jose-v2-2.5.1) - ("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) - ("go-golang-org-x-sys-0.0.0-20200817155316-9781c653f443" - ,go-golang-org-x-sys-0.0.0-20200817155316-9781c653f443) - ("go-golang-org-x-crypto-0.0.0-20200728195943-123391ffb6de" - ,go-golang-org-x-crypto-0.0.0-20200728195943-123391ffb6de) - ("go-go-mozilla-org-pkcs7-0.0.0-20200128120323-432b2356ecb1" - ,go-go-mozilla-org-pkcs7-0.0.0-20200128120323-432b2356ecb1) - ("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0) - ("go-github-com-stefanberger-go-pkcs11uri-0.0.0-20201008174630-78d3cae3a980" - ,go-github-com-stefanberger-go-pkcs11uri-0.0.0-20201008174630-78d3cae3a980) - ("go-github-com-sirupsen-logrus-1.7.0" - ,go-github-com-sirupsen-logrus-1.7.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-image-spec-1.0.1" - ,go-github-com-opencontainers-image-spec-1.0.1) - ("go-github-com-opencontainers-go-digest-1.0.0" - ,go-github-com-opencontainers-go-digest-1.0.0) - ("go-github-com-miekg-pkcs11-1.0.3" ,go-github-com-miekg-pkcs11-1.0.3) - ("go-github-com-google-go-cmp-0.5.2" - ,go-github-com-google-go-cmp-0.5.2) - ("go-github-com-golang-protobuf-1.4.3" - ,go-github-com-golang-protobuf-1.4.3))) - (home-page "https://github.com/containers/ocicrypt") - (synopsis "OCIcrypt Library") - (description - "The @code{ocicrypt} library is the OCI image spec implementation of container image encryption. More details of the spec can be seen in the @url{https://github.com/opencontainers/image-spec/pull/775,OCI repository}. The purpose of this library is to encode spec structures and consts in code, as well as provide a consistent implementation of image encryption across container runtimes and build tools.") - (license license:asl2.0))) - -(define-public go-github-com-prometheus-procfs-0.6.0 - (package - (name "go-github-com-prometheus-procfs") - (version "0.6.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/procfs") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0czzw37dq0sfq7rivxmxxw5hy287grqnng6q6hfz6mkqmhqgm1m6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/procfs")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" - ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) - ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" - ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) - ("go-github-com-google-go-cmp-0.5.4" - ,go-github-com-google-go-cmp-0.5.4))) - (home-page "https://github.com/prometheus/procfs") - (synopsis "procfs") - (description - "Package procfs provides functions to retrieve system, kernel and process -metrics from the pseudo-filesystem proc. -") - (license license:asl2.0))) - -(define-public go-google-golang-org-grpc-1.33.2 - (package - (name "go-google-golang-org-grpc") - (version "1.33.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "03yz4nlf4kqbnpw48f0mvcb2f5zzy0vjd5i2iw0hrjspd0238fzk")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.25.0" - ,go-google-golang-org-protobuf-1.25.0) - ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" - ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) - ("go-github-com-google-go-cmp-0.5.0" - ,go-github-com-google-go-cmp-0.5.0) - ("go-github-com-golang-protobuf-1.4.1" - ,go-github-com-golang-protobuf-1.4.1) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-envoyproxy-go-control-plane-0.9.4" - ,go-github-com-envoyproxy-go-control-plane-0.9.4) - ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" - ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-gopkg-in-yaml-v2-2.4.0 - (package - (name "go-gopkg-in-yaml-v2") - (version "2.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1pbmrpj7gcws34g8vwna4i2nhm9p6235piww36436xhyaa10cldr")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v2") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language. -") - (license license:asl2.0))) - -(define-public go-github-com-containerd-imgcrypt-1.0.4-0.20210301171431-0ae5c75f59ba - (package - (name "go-github-com-containerd-imgcrypt") - (version "1.0.4-0.20210301171431-0ae5c75f59ba") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/imgcrypt") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0vkwgcxh3mpsn6wp231c9ad3sx6gmnc9948nn3vvbw8bsmjd4i77")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/imgcrypt")) - (propagated-inputs - `(("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) - ("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) - ("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) - ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" - ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) - ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) - ("go-github-com-sirupsen-logrus-1.7.0" - ,go-github-com-sirupsen-logrus-1.7.0) - ("go-github-com-prometheus-procfs-0.6.0" - ,go-github-com-prometheus-procfs-0.6.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" - ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) - ("go-github-com-opencontainers-image-spec-1.0.1" - ,go-github-com-opencontainers-image-spec-1.0.1) - ("go-github-com-opencontainers-go-digest-1.0.0" - ,go-github-com-opencontainers-go-digest-1.0.0) - ("go-github-com-imdario-mergo-0.3.11" - ,go-github-com-imdario-mergo-0.3.11) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2) - ("go-github-com-containers-ocicrypt-1.1.0" - ,go-github-com-containers-ocicrypt-1.1.0) - ("go-github-com-containerd-typeurl-1.0.1" - ,go-github-com-containerd-typeurl-1.0.1) - ("go-github-com-containerd-containerd-1.5.0-beta.1" - ,go-github-com-containerd-containerd-1.5.0-beta.1) - ("go-github-com-containerd-console-1.0.1" - ,go-github-com-containerd-console-1.0.1) - ("go-github-com-microsoft-hcsshim-test-0.0.0-20210227013316-43a75bb4edd3" - ,go-github-com-microsoft-hcsshim-test-0.0.0-20210227013316-43a75bb4edd3) - ("go-github-com-microsoft-hcsshim-0.8.14" - ,go-github-com-microsoft-hcsshim-0.8.14) - ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" - ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3))) - (home-page "https://github.com/containerd/imgcrypt") - (synopsis "imgcrypt image encryption library and command line tool") - (description - "Project @code{imgcrypt} is a non-core subproject of containerd.") - (license license:asl2.0))) - -(define-public go-github-com-microsoft-go-winio-0.4.15-0.20190919025122-fc70bd9a86b5 - (package - (name "go-github-com-microsoft-go-winio") - (version "0.4.15-0.20190919025122-fc70bd9a86b5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/microsoft/go-winio") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "015ra2h3qfaq436d0g7akahgz7bikyvljq48m0l2d2f4k3wki86p")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/Microsoft/go-winio")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3" - ,go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3) - ("go-github-com-sirupsen-logrus-1.4.1" - ,go-github-com-sirupsen-logrus-1.4.1) - ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) - (home-page "https://github.com/Microsoft/go-winio") - (synopsis "go-winio") - (description - "This repository contains utilities for efficiently performing Win32 IO operations in -Go. Currently, this is focused on accessing named pipes and other file handles, and -for using named pipes as a net transport.") - (license license:expat))) - -(define-public go-github-com-godbus-dbus-0.0.0-20190422162347-ade71ed3457e - (package - (name "go-github-com-godbus-dbus") - (version "0.0.0-20190422162347-ade71ed3457e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/godbus/dbus") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12ga9izv32j1zjij1p9f2sdnxjy3v80lw964518dvzirxpvwfszn")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/godbus/dbus")) - (home-page "https://github.com/godbus/dbus") - (synopsis "dbus") - (description - "Package dbus implements bindings to the D-Bus message bus system. -") - (license license:bsd-2))) - -(define-public go-golang-org-x-sys-0.0.0-20190514135907-3a4b5fb9f71f - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190514135907-3a4b5fb9f71f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "122ry2lw2525mqlnw2zc006y1flvj3yhj8rnpxqdwxp71jc3kqii")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-containerd-cgroups-0.0.0-20190919134610-bf292b21730f - (package - (name "go-github-com-containerd-cgroups") - (version "0.0.0-20190919134610-bf292b21730f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/cgroups") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1vvk1vrwm9spilyl4r1r8626sg0zvnx3s3zmzigzinpkzzvbdqpw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/cgroups")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190514135907-3a4b5fb9f71f" - ,go-golang-org-x-sys-0.0.0-20190514135907-3a4b5fb9f71f) - ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) - ("go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700" - ,go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700) - ("go-github-com-gogo-protobuf-1.2.1" - ,go-github-com-gogo-protobuf-1.2.1) - ("go-github-com-godbus-dbus-0.0.0-20190422162347-ade71ed3457e" - ,go-github-com-godbus-dbus-0.0.0-20190422162347-ade71ed3457e) - ("go-github-com-docker-go-units-0.4.0" - ,go-github-com-docker-go-units-0.4.0) - ("go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e" - ,go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e))) - (home-page "https://github.com/containerd/cgroups") - (synopsis "cgroups") - (description - "Go package for creating, managing, inspecting, and destroying cgroups. -The resources format for settings on the cgroup uses the OCI runtime-spec found -@url{https://github.com/opencontainers/runtime-spec,here}.") - (license license:asl2.0))) - -(define-public go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700 - (package - (name "go-github-com-opencontainers-runtime-spec") - (version "0.1.2-0.20190507144316-5b71a03e2700") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/runtime-spec") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1dx0bp4f885vx6l4b5b7h19j6sm0jn9s2qxarfd917f4wp8l0cpl")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) - (home-page "https://github.com/opencontainers/runtime-spec") - (synopsis "Open Container Initiative Runtime Specification") - (description - "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") - (license license:asl2.0))) - -(define-public go-github-com-urfave-cli-0.0.0-20171014202726-7bc6a0acffa5 - (package - (name "go-github-com-urfave-cli") - (version "0.0.0-20171014202726-7bc6a0acffa5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/urfave/cli") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "13li8phkaznh81qxs9vg0r8294ph014rwca4cqf7gxhvyjlaigwp")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/urfave/cli")) - (home-page "https://github.com/urfave/cli") - (synopsis "cli") - (description - "Package cli provides a minimal framework for creating and organizing command line -Go applications. cli is designed to be easy to understand and write, the most simple -cli application can be written as follows: -") - (license license:expat))) - -(define-public go-github-com-microsoft-hcsshim-0.8.9 - (package - (name "go-github-com-microsoft-hcsshim") - (version "0.8.9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/microsoft/hcsshim") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1imyqhh51311fdmp81ffasf7z52rbqhblbhx6477d9w20p74866b")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/Microsoft/hcsshim")) - (propagated-inputs - `(("go-gotest-tools-2.2.0+incompatible" - ,go-gotest-tools-2.2.0+incompatible) - ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) - ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" - ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) - ("go-google-golang-org-grpc-1.23.1" ,go-google-golang-org-grpc-1.23.1) - ("go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873" - ,go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873) - ("go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3" - ,go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3) - ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" - ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) - ("go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9" - ,go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9) - ("go-go-opencensus-io-0.22.0" ,go-go-opencensus-io-0.22.0) - ("go-github-com-urfave-cli-0.0.0-20171014202726-7bc6a0acffa5" - ,go-github-com-urfave-cli-0.0.0-20171014202726-7bc6a0acffa5) - ("go-github-com-stretchr-testify-1.4.0" - ,go-github-com-stretchr-testify-1.4.0) - ("go-github-com-sirupsen-logrus-1.4.2" - ,go-github-com-sirupsen-logrus-1.4.2) - ("go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7" - ,go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7) - ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) - ("go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700" - ,go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700) - ("go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f" - ,go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f) - ("go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2" - ,go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2) - ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2) - ("go-github-com-gogo-protobuf-1.3.1" - ,go-github-com-gogo-protobuf-1.3.1) - ("go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd" - ,go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd) - ("go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de" - ,go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de) - ("go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3" - ,go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3) - ("go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448" - ,go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448) - ("go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc" - ,go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc) - ("go-github-com-containerd-containerd-1.3.2" - ,go-github-com-containerd-containerd-1.3.2) - ("go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1" - ,go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1) - ("go-github-com-containerd-cgroups-0.0.0-20190919134610-bf292b21730f" - ,go-github-com-containerd-cgroups-0.0.0-20190919134610-bf292b21730f) - ("go-github-com-microsoft-go-winio-0.4.15-0.20190919025122-fc70bd9a86b5" - ,go-github-com-microsoft-go-winio-0.4.15-0.20190919025122-fc70bd9a86b5))) - (home-page "https://github.com/Microsoft/hcsshim") - (synopsis "hcsshim") - (description - "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") - (license license:expat))) - -(define-public go-github-com-cilium-ebpf-0.0.0-20200702112145-1c8d4c9ef775 - (package - (name "go-github-com-cilium-ebpf") - (version "0.0.0-20200702112145-1c8d4c9ef775") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cilium/ebpf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1la90b88a1li5hmlqxfx9lgxlyzqb2pd4c2dxmz4s5gg2gz8a5x5")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/cilium/ebpf")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9" - ,go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9))) - (home-page "https://github.com/cilium/ebpf") - (synopsis "eBPF") - (description "Package ebpf is a toolkit for working with eBPF programs. -") - (license license:expat))) - -(define-public go-github-com-containerd-cgroups-0.0.0-20200710171044-318312a37340 - (package - (name "go-github-com-containerd-cgroups") - (version "0.0.0-20200710171044-318312a37340") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/cgroups") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1kizbm55pmlnly2dggymp84a0d9pn4fh7jf31h6wqm385zrs14zp")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/cgroups")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9" - ,go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9) - ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) - ("go-github-com-stretchr-testify-1.2.2" - ,go-github-com-stretchr-testify-1.2.2) - ("go-github-com-sirupsen-logrus-1.6.0" - ,go-github-com-sirupsen-logrus-1.6.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-runtime-spec-1.0.2" - ,go-github-com-opencontainers-runtime-spec-1.0.2) - ("go-github-com-gogo-protobuf-1.3.1" - ,go-github-com-gogo-protobuf-1.3.1) - ("go-github-com-godbus-dbus-v5-5.0.3" - ,go-github-com-godbus-dbus-v5-5.0.3) - ("go-github-com-docker-go-units-0.4.0" - ,go-github-com-docker-go-units-0.4.0) - ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" - ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) - ("go-github-com-coreos-go-systemd-v22-22.0.0" - ,go-github-com-coreos-go-systemd-v22-22.0.0) - ("go-github-com-cilium-ebpf-0.0.0-20200702112145-1c8d4c9ef775" - ,go-github-com-cilium-ebpf-0.0.0-20200702112145-1c8d4c9ef775))) - (home-page "https://github.com/containerd/cgroups") - (synopsis "cgroups") - (description - "Go package for creating, managing, inspecting, and destroying cgroups. -The resources format for settings on the cgroup uses the OCI runtime-spec found -@url{https://github.com/opencontainers/runtime-spec,here}.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-containerd-1.4.0-beta.2.0.20200729163537-40b22ef07410 - (package - (name "go-github-com-containerd-containerd") - (version "1.4.0-beta.2.0.20200729163537-40b22ef07410") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/containerd") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ky7ny5b0rvkr6a58pdlcm35kc9wls6jvl7cdk8py4a16y1f2lx9")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/containerd")) - (home-page "https://github.com/containerd/containerd") - (synopsis "Now Recruiting") - (description - "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") - (license license:asl2.0))) - -(define-public go-github-com-onsi-ginkgo-1.10.1 - (package - (name "go-github-com-onsi-ginkgo") - (version "1.10.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/onsi/ginkgo") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "033a42h1wzmji57p86igg9whvsbp6nvfdsypskw738ys903n3z4d")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/onsi/ginkgo")) - (home-page "https://github.com/onsi/ginkgo") - (synopsis "Ginkgo 2.0 Release Candidate is available!") - (description "Ginkgo is a BDD-style testing framework for Golang -") - (license license:expat))) - -(define-public go-github-com-opencontainers-go-digest-1.0.0-rc1 - (package - (name "go-github-com-opencontainers-go-digest") - (version "1.0.0-rc1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/go-digest") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "01gc7fpn8ax429024p2fcx3yb18axwz5bjf2hqxlii1jbsgw4bh9")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/go-digest")) - (home-page "https://github.com/opencontainers/go-digest") - (synopsis "go-digest") - (description - "Package digest provides a generalized type to opaquely represent message -digests and their operations within the registry. The Digest type is -designed to serve as a flexible identifier in a content-addressable system. -More importantly, it provides tools and wrappers to work with -hash.Hash-based digests with little effort. -") - (license (list license:asl2.0 license:cc-by-sa4.0)))) - -(define-public go-github-com-pkg-errors-0.8.1-0.20171018195549-f15c970de5b7 - (package - (name "go-github-com-pkg-errors") - (version "0.8.1-0.20171018195549-f15c970de5b7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pkg/errors") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18jihrffhfsjvz3rkanlhq9xjcdxkqilmflnijc64s7y7lijlbfm")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pkg/errors")) - (home-page "https://github.com/pkg/errors") - (synopsis "errors") - (description "Package errors provides simple error handling primitives. -") - (license license:bsd-2))) - -(define-public go-github-com-sirupsen-logrus-1.0.4-0.20170822132746-89742aefa4b2 - (package - (name "go-github-com-sirupsen-logrus") - (version "1.0.4-0.20170822132746-89742aefa4b2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sirupsen/logrus") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hk7fabx59msg2y0iik6xvfp80s73ybrwlcshbm9ds91iqbkcxi6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/sirupsen/logrus")) - (home-page "https://github.com/sirupsen/logrus") - (synopsis "Logrus") - (description - "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. -") - (license license:expat))) - -(define-public go-golang-org-x-crypto-0.0.0-20171113213409-9f005a07e0d3 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20171113213409-9f005a07e0d3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1mhmr6ljzl3iafsz4qy8vval7rmr828wh59dlqqqjqx6sqmcs1dv")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-github-com-containerd-continuity-0.0.0-20200710164510-efbc4488d8fe - (package - (name "go-github-com-containerd-continuity") - (version "0.0.0-20200710164510-efbc4488d8fe") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/continuity") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0d638nj7z7y8z19zdwbysamqh5m3kiwvnqny7av6bxax9gg6c3h8")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/continuity")) - (propagated-inputs - `(("go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2" - ,go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2) - ("go-gopkg-in-airbrake-gobrake-v2-2.0.9" - ,go-gopkg-in-airbrake-gobrake-v2-2.0.9) - ("go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e" - ,go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e) - ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" - ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) - ("go-golang-org-x-crypto-0.0.0-20171113213409-9f005a07e0d3" - ,go-golang-org-x-crypto-0.0.0-20171113213409-9f005a07e0d3) - ("go-github-com-stretchr-testify-1.4.0" - ,go-github-com-stretchr-testify-1.4.0) - ("go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95" - ,go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95) - ("go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee" - ,go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee) - ("go-github-com-sirupsen-logrus-1.0.4-0.20170822132746-89742aefa4b2" - ,go-github-com-sirupsen-logrus-1.0.4-0.20170822132746-89742aefa4b2) - ("go-github-com-pkg-errors-0.8.1-0.20171018195549-f15c970de5b7" - ,go-github-com-pkg-errors-0.8.1-0.20171018195549-f15c970de5b7) - ("go-github-com-opencontainers-go-digest-1.0.0-rc1" - ,go-github-com-opencontainers-go-digest-1.0.0-rc1) - ("go-github-com-onsi-gomega-1.7.0" ,go-github-com-onsi-gomega-1.7.0) - ("go-github-com-onsi-ginkgo-1.10.1" ,go-github-com-onsi-ginkgo-1.10.1) - ("go-github-com-inconshreveable-mousetrap-1.0.0" - ,go-github-com-inconshreveable-mousetrap-1.0.0) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0) - ("go-github-com-dustin-go-humanize-0.0.0-20171111073723-bb3d318650d4" - ,go-github-com-dustin-go-humanize-0.0.0-20171111073723-bb3d318650d4) - ("go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898" - ,go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898))) - (home-page "https://github.com/containerd/continuity") - (synopsis "continuity") - (description - "This package provides a transport-agnostic, filesystem metadata manifest system") - (license license:asl2.0))) - -(define-public go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20191210023423-ac6580df4449") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "14gvx65w5lddi20s4wypbbvbg9ni3m8777jhp9nqxhixc61k3dyi")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-containerd-fifo-0.0.0-20200410184934-f15a3290365b - (package - (name "go-github-com-containerd-fifo") - (version "0.0.0-20200410184934-f15a3290365b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/fifo") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1i3pylxr2a4b9gaifjrhfa21n147vvq2z9iqwzz9id532xv9mr48")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/fifo")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449" - ,go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449) - ("go-github-com-stretchr-testify-1.4.0" - ,go-github-com-stretchr-testify-1.4.0) - ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) - (home-page "https://github.com/containerd/fifo") - (synopsis "fifo") - (description "Go package for handling fifos in a sane way.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-ttrpc-1.0.1 - (package - (name "go-github-com-containerd-ttrpc") - (version "1.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/ttrpc") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "02ilz14f1k9zip7caqfjwvfg2nwa7bs6880pi6fxbri1wy6ar45q")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/ttrpc")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.26.0" ,go-google-golang-org-grpc-1.26.0) - ("go-google-golang-org-genproto-0.0.0-20200117163144-32f20d992d24" - ,go-google-golang-org-genproto-0.0.0-20200117163144-32f20d992d24) - ("go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479" - ,go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479) - ("go-github-com-sirupsen-logrus-1.4.2" - ,go-github-com-sirupsen-logrus-1.4.2) - ("go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1" - ,go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.2" - ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.2) - ("go-github-com-gogo-protobuf-1.3.1" - ,go-github-com-gogo-protobuf-1.3.1))) - (home-page "https://github.com/containerd/ttrpc") - (synopsis "ttrpc") - (description "GRPC for low-memory environments.") - (license license:asl2.0))) - -(define-public go-github-com-docker-distribution-2.7.1+incompatible - (package - (name "go-github-com-docker-distribution") - (version "2.7.1+incompatible") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/distribution/distribution") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1nx8b5a68rn81alp8wkkw6qd5v32mgf0fk23mxm60zdf63qk1nzw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/docker/distribution")) - (home-page "https://github.com/docker/distribution") - (synopsis "Distribution") - (description - "Package distribution will define the interfaces for the components of -docker distribution. The goal is to allow users to reliably package, ship -and store content related to docker images. -") - (license license:asl2.0))) - -(define-public go-github-com-gogo-googleapis-1.4.0 - (package - (name "go-github-com-gogo-googleapis") - (version "1.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gogo/googleapis") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1kka9qmra1klfkjza0s5papqvsi65f2d349dl8k1lvfq487iv9r4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/gogo/googleapis")) - (propagated-inputs - `(("go-github-com-gogo-protobuf-1.3.1" - ,go-github-com-gogo-protobuf-1.3.1))) - (home-page "https://github.com/gogo/googleapis") - (synopsis "Google APIs generated by gogoprotobuf") - (description - "The @url{https://github.com/gogo/grpc-example,grpc-example} includes an example usage of this repository.") - (license license:asl2.0))) - -(define-public go-github-com-google-go-cmp-0.5.1 - (package - (name "go-github-com-google-go-cmp") - (version "0.5.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1wjdid59brciv09agxgmqac5k9ywg63nhzb0yi9anmqpl38gps0p")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") - (license license:bsd-3))) - -(define-public go-github-com-imdario-mergo-0.3.10 - (package - (name "go-github-com-imdario-mergo") - (version "0.3.10") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/imdario/mergo") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "09h765p8yby9r8s0a3hv5kl8n2i382mda76wmvk48w1cc1w9s92p")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/imdario/mergo")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.3.0" ,go-gopkg-in-yaml-v2-2.3.0))) - (home-page "https://github.com/imdario/mergo") - (synopsis "Mergo") - (description - "This package provides a helper to merge structs and maps in Golang. Useful for configuration default values, avoiding messy if-statements. -") - (license license:bsd-3))) - -(define-public go-github-com-opencontainers-runc-0.1.1 - (package - (name "go-github-com-opencontainers-runc") - (version "0.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/runc") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "09fm7f1k4lvx8v3crqb0cli1x2brlz8ka7f7qa8d2sb6ln58h7w7")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/runc")) - (home-page "https://github.com/opencontainers/runc") - (synopsis "runc") - (description - "@code{runc} is a CLI tool for spawning and running containers according to the OCI specification.") - (license license:asl2.0))) - -(define-public go-github-com-willf-bitset-1.1.11-0.20200630133818-d5bec3311243 - (package - (name "go-github-com-willf-bitset") - (version "1.1.11-0.20200630133818-d5bec3311243") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/bits-and-blooms/bitset") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "05nyd0vhp2h9hbqlv2s9l2py6mr8hpz2zyfj09an1q7wd8vph4ja")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/willf/bitset")) - (home-page "https://github.com/willf/bitset") - (synopsis "bitset") - (description - "Package bitset implements bitsets, a mapping -between non-negative integers and boolean values. It should be more -efficient than map[uint] bool. -") - (license license:bsd-3))) - -(define-public go-github-com-opencontainers-selinux-1.6.0 - (package - (name "go-github-com-opencontainers-selinux") - (version "1.6.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/selinux") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ja41zfgrkhk5khixjnxpi1b85xfcxlkhq2q9b7ma6xjfdhg8bq2")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/selinux")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777" - ,go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777) - ("go-github-com-willf-bitset-1.1.11-0.20200630133818-d5bec3311243" - ,go-github-com-willf-bitset-1.1.11-0.20200630133818-d5bec3311243) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) - (home-page "https://github.com/opencontainers/selinux") - (synopsis "selinux") - (description "Common SELinux package used across the container ecosystem.") - (license license:asl2.0))) - -(define-public go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2 - (package - (name "go-github-com-syndtr-gocapability") - (version "0.0.0-20180916011248-d98352740cb2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/syndtr/gocapability") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "065y16562ynixxzj7iys4f4spb7knilbj3h833qlhds381j8hn93")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/syndtr/gocapability")) - (home-page "https://github.com/syndtr/gocapability") - (synopsis #f) - (description #f) - (license license:bsd-2))) - -(define-public go-golang-org-x-net-0.0.0-20200707034311-ab3426394381 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20200707034311-ab3426394381") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1wr7rnnqp210yykkypinb8ciszx28aq5a3l3dvsv6swzxxngs8zn")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" - ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) - ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" - ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208 - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20200625203802-6e8e738ad208") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1avk27pszd5l5df6ff7j78wgla46ir1hhy2jwfl9a3c0ys602yx9")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the -ones provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f - (package - (name "go-github-com-cncf-udpa-go") - (version "0.0.0-20191209042840-269d4d468f6f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cncf/udpa") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0i1jiaw2k3hlwwmg4hap81vb4s1p25xp9kdfww37v0fbgjariccs")))) - (build-system go-build-system) - (arguments - '(#:import-path - "github.com/cncf/udpa/go" - #:unpack-path - "github.com/cncf/udpa")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2) - ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" - ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0))) - (home-page "https://github.com/cncf/udpa") - (synopsis "Description") - (description - "This library has been deprecated in favor of @code{github.com/cncf/xds/go}. All users are recommended to switch their imports.") - (license license:asl2.0))) - -(define-public go-github-com-envoyproxy-go-control-plane-0.9.0 - (package - (name "go-github-com-envoyproxy-go-control-plane") - (version "0.9.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/envoyproxy/go-control-plane") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1dpvi4wnycyj6hnai78fr8aj58b27b1vcwdp3v0id5v22kvgr3xw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.23.0" ,go-google-golang-org-grpc-1.23.0) - ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" - ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) - ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" - ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2) - ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" - ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) - ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" - ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) - (home-page "https://github.com/envoyproxy/go-control-plane") - (synopsis "control-plane") - (description - "This repository contains a Go-based implementation of an API server that -implements the discovery service APIs defined in -@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") - (license license:asl2.0))) - -(define-public go-google-golang-org-grpc-1.25.1 - (package - (name "go-google-golang-org-grpc") - (version "1.25.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0a136ij9p11yj1vx892yqy40jkh7n5nfbpdvhgydcj823mx51c6f")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" - ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-github-com-google-go-cmp-0.2.0" - ,go-github-com-google-go-cmp-0.2.0) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2) - ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" - ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) - ("go-github-com-envoyproxy-go-control-plane-0.9.0" - ,go-github-com-envoyproxy-go-control-plane-0.9.0))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-github-com-envoyproxy-go-control-plane-0.9.4 - (package - (name "go-github-com-envoyproxy-go-control-plane") - (version "0.9.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/envoyproxy/go-control-plane") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0m0crzx70lp7vz13v20wxb1fcfdnzp7h3mkh3bn6a8mbfz6w5asj")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) - ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" - ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) - ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" - ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) - ("go-github-com-google-go-cmp-0.2.0" - ,go-github-com-google-go-cmp-0.2.0) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2) - ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" - ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) - ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" - ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f) - ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" - ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) - (home-page "https://github.com/envoyproxy/go-control-plane") - (synopsis "control-plane") - (description - "This repository contains a Go-based implementation of an API server that -implements the discovery service APIs defined in -@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") - (license license:asl2.0))) - -(define-public go-google-golang-org-grpc-1.30.0 - (package - (name "go-google-golang-org-grpc") - (version "1.30.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "05pb9xrxd7kpbi8zzby90f87b6sxq65nmpgqx5h3255whmmpzbi9")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" - ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.3.3" - ,go-github-com-golang-protobuf-1.3.3) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-envoyproxy-go-control-plane-0.9.4" - ,go-github-com-envoyproxy-go-control-plane-0.9.4) - ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" - ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-github-com-containerd-nri-0.0.0-20201007170849-eb1350a75164 - (package - (name "go-github-com-containerd-nri") - (version "0.0.0-20201007170849-eb1350a75164") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/nri") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1yhrxl36fswgxv7ny3p9xi99jsbwyk920gmzkjyfyk6nqs0hqbkg")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/nri")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.30.0" ,go-google-golang-org-grpc-1.30.0) - ("go-golang-org-x-sys-0.0.0-20200728102440-3e129f6d46b1" - ,go-golang-org-x-sys-0.0.0-20200728102440-3e129f6d46b1) - ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" - ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) - ("go-golang-org-x-net-0.0.0-20200707034311-ab3426394381" - ,go-golang-org-x-net-0.0.0-20200707034311-ab3426394381) - ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) - ("go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2" - ,go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-selinux-1.6.0" - ,go-github-com-opencontainers-selinux-1.6.0) - ("go-github-com-opencontainers-runc-0.1.1" - ,go-github-com-opencontainers-runc-0.1.1) - ("go-github-com-opencontainers-image-spec-1.0.1" - ,go-github-com-opencontainers-image-spec-1.0.1) - ("go-github-com-opencontainers-go-digest-1.0.0" - ,go-github-com-opencontainers-go-digest-1.0.0) - ("go-github-com-imdario-mergo-0.3.10" - ,go-github-com-imdario-mergo-0.3.10) - ("go-github-com-google-uuid-1.1.1" ,go-github-com-google-uuid-1.1.1) - ("go-github-com-google-go-cmp-0.5.1" - ,go-github-com-google-go-cmp-0.5.1) - ("go-github-com-gogo-googleapis-1.4.0" - ,go-github-com-gogo-googleapis-1.4.0) - ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" - ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) - ("go-github-com-docker-distribution-2.7.1+incompatible" - ,go-github-com-docker-distribution-2.7.1+incompatible) - ("go-github-com-containerd-typeurl-1.0.1" - ,go-github-com-containerd-typeurl-1.0.1) - ("go-github-com-containerd-ttrpc-1.0.1" - ,go-github-com-containerd-ttrpc-1.0.1) - ("go-github-com-containerd-fifo-0.0.0-20200410184934-f15a3290365b" - ,go-github-com-containerd-fifo-0.0.0-20200410184934-f15a3290365b) - ("go-github-com-containerd-continuity-0.0.0-20200710164510-efbc4488d8fe" - ,go-github-com-containerd-continuity-0.0.0-20200710164510-efbc4488d8fe) - ("go-github-com-containerd-containerd-1.4.0-beta.2.0.20200729163537-40b22ef07410" - ,go-github-com-containerd-containerd-1.4.0-beta.2.0.20200729163537-40b22ef07410) - ("go-github-com-containerd-cgroups-0.0.0-20200710171044-318312a37340" - ,go-github-com-containerd-cgroups-0.0.0-20200710171044-318312a37340) - ("go-github-com-microsoft-hcsshim-0.8.9" - ,go-github-com-microsoft-hcsshim-0.8.9))) - (home-page "https://github.com/containerd/nri") - (synopsis "nri - Node Resource Interface") - (description - "This project is a WIP for a new, CNI like, interface for managing resources on a node for Pods and Containers.") - (license license:asl2.0))) - -(define-public go-github-com-sirupsen-logrus-1.4.1 - (package - (name "go-github-com-sirupsen-logrus") - (version "1.4.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sirupsen/logrus") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1m7ny9jkb98cxqhsp13xa5hnqh1s9f25x04q6arsala4zswsw33c")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/sirupsen/logrus")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33" - ,go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33) - ("go-github-com-stretchr-testify-1.2.2" - ,go-github-com-stretchr-testify-1.2.2) - ("go-github-com-stretchr-objx-0.1.1" - ,go-github-com-stretchr-objx-0.1.1) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.1" - ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.1) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/sirupsen/logrus") - (synopsis "Logrus") - (description - "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. -") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190916202348-b4ddaad3f8a3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "05pa68kqxhpjk71b4cbm8vyzh6527b3ig6war2jr1g4aj3b7f1ak")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-microsoft-go-winio-0.4.16-0.20201130162521-d1ffc52c7331 - (package - (name "go-github-com-microsoft-go-winio") - (version "0.4.16-0.20201130162521-d1ffc52c7331") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/microsoft/go-winio") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0snwbwdjs34x0my9ri77cvrbnahdiyjh2jlkzf12fy48p7fyk7pq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/Microsoft/go-winio")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3" - ,go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3) - ("go-github-com-sirupsen-logrus-1.4.1" - ,go-github-com-sirupsen-logrus-1.4.1) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) - (home-page "https://github.com/Microsoft/go-winio") - (synopsis "go-winio") - (description - "This repository contains utilities for efficiently performing Win32 IO operations in -Go. Currently, this is focused on accessing named pipes and other file handles, and -for using named pipes as a net transport.") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20191022100944-742c48ecaeb7 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20191022100944-742c48ecaeb7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1saf59bplvvb753my15ijxcy4a1jwfg53cmkgb6wkln2x4fgnhkp")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-cilium-ebpf-0.0.0-20200110133405-4032b1d8aae3 - (package - (name "go-github-com-cilium-ebpf") - (version "0.0.0-20200110133405-4032b1d8aae3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cilium/ebpf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "107x63zl8dlw2izn5xw8pnflgq19srpa46bgvjs8q4d61i02q1fr")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/cilium/ebpf")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191022100944-742c48ecaeb7" - ,go-golang-org-x-sys-0.0.0-20191022100944-742c48ecaeb7) - ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) - (home-page "https://github.com/cilium/ebpf") - (synopsis "eBPF") - (description "Package ebpf is a toolkit for working with eBPF programs. -") - (license license:expat))) - -(define-public go-github-com-coreos-go-systemd-v22-22.0.0 - (package - (name "go-github-com-coreos-go-systemd-v22") - (version "22.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/coreos/go-systemd") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0p4sb2fxxm2j1xny2l4fkq4kwj74plvh600gih8nyniqzannhrdx")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/coreos/go-systemd/v22")) - (propagated-inputs - `(("go-github-com-godbus-dbus-v5-5.0.3" - ,go-github-com-godbus-dbus-v5-5.0.3))) - (home-page "https://github.com/coreos/go-systemd") - (synopsis "go-systemd") - (description "Go bindings to systemd. The project has several packages:") - (license license:asl2.0))) - -(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0 - (package - (name "go-github-com-cpuguy83-go-md2man-v2") - (version "2.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cpuguy83/go-md2man") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) - (propagated-inputs - `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" - ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) - ("go-github-com-russross-blackfriday-v2-2.0.1" - ,go-github-com-russross-blackfriday-v2-2.0.1) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0))) - (home-page "https://github.com/cpuguy83/go-md2man") - (synopsis "go-md2man") - (description "Converts markdown into roff (man pages).") - (license license:expat))) - -(define-public go-github-com-containerd-cgroups-0.0.0-20200531161412-0dbf7f05ba59 - (package - (name "go-github-com-containerd-cgroups") - (version "0.0.0-20200531161412-0dbf7f05ba59") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/cgroups") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "10abzkjf77s8pv4mpyvy2jbl8wckhk3j7ykgs01sclal21v8p251")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/cgroups")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479" - ,go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479) - ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) - ("go-github-com-stretchr-testify-1.2.2" - ,go-github-com-stretchr-testify-1.2.2) - ("go-github-com-sirupsen-logrus-1.4.2" - ,go-github-com-sirupsen-logrus-1.4.2) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-runtime-spec-1.0.2" - ,go-github-com-opencontainers-runtime-spec-1.0.2) - ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.2" - ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.2) - ("go-github-com-gogo-protobuf-1.3.1" - ,go-github-com-gogo-protobuf-1.3.1) - ("go-github-com-godbus-dbus-v5-5.0.3" - ,go-github-com-godbus-dbus-v5-5.0.3) - ("go-github-com-docker-go-units-0.4.0" - ,go-github-com-docker-go-units-0.4.0) - ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" - ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) - ("go-github-com-coreos-go-systemd-v22-22.0.0" - ,go-github-com-coreos-go-systemd-v22-22.0.0) - ("go-github-com-cilium-ebpf-0.0.0-20200110133405-4032b1d8aae3" - ,go-github-com-cilium-ebpf-0.0.0-20200110133405-4032b1d8aae3))) - (home-page "https://github.com/containerd/cgroups") - (synopsis "cgroups") - (description - "Go package for creating, managing, inspecting, and destroying cgroups. -The resources format for settings on the cgroup uses the OCI runtime-spec found -@url{https://github.com/opencontainers/runtime-spec,here}.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1 - (package - (name "go-github-com-containerd-console") - (version "0.0.0-20180822173158-c12b1e7919c1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/console") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ylrnmdhn9a2f8w8fsdgsvwnz5j0whhyhppjnhqc4lh8h9p9dpi9")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/console")) - (home-page "https://github.com/containerd/console") - (synopsis "console") - (description - "Golang package for dealing with consoles. Light on deps and a simple API.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-containerd-1.3.2 - (package - (name "go-github-com-containerd-containerd") - (version "1.3.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/containerd") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0qz6ss7a6f2r7gl7aar39pr5ry9l7nh7dn3kclr18nwdv01gmrvc")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/containerd")) - (home-page "https://github.com/containerd/containerd") - (synopsis "Now Recruiting") - (description - "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc - (package - (name "go-github-com-containerd-continuity") - (version "0.0.0-20190426062206-aaeac12a7ffc") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/continuity") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "05caqvxxb831xfvqnga692k98cy8xzkllqg1ibra0fb0ljnhbmca")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/continuity")) - (home-page "https://github.com/containerd/continuity") - (synopsis "continuity") - (description - "This package provides a transport-agnostic, filesystem metadata manifest system") - (license license:asl2.0))) - -(define-public go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448 - (package - (name "go-github-com-containerd-fifo") - (version "0.0.0-20190226154929-a9fb20d87448") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/fifo") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0c0sgfnafjnws4jgziczs6wxh0adjdrp6yyd88b7xy0hv13fsnqa")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/fifo")) - (home-page "https://github.com/containerd/fifo") - (synopsis "fifo") - (description "Go package for handling fifos in a sane way.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3 - (package - (name "go-github-com-containerd-go-runc") - (version "0.0.0-20180907222934-5a6d9f37cfa3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/go-runc") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "07qpxcjy64m238igpmj8g9z7qhf06k5xy1jcgpgvf5n912g4k3vd")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/go-runc")) - (home-page "https://github.com/containerd/go-runc") - (synopsis "go-runc") - (description - "This is a package for consuming the @url{https://github.com/opencontainers/runc,runc} binary in your Go applications. -It tries to expose all the settings and features of the runc CLI. If there is something missing then add it, its opensource!") - (license license:asl2.0))) - -(define-public go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de - (package - (name "go-github-com-containerd-ttrpc") - (version "0.0.0-20190828154514-0e0f228740de") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/ttrpc") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1kzclhmicw2xkiqsg6npx0xzs5jx36mqmyd0gj5dzv88i7p4b8dx")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/ttrpc")) - (home-page "https://github.com/containerd/ttrpc") - (synopsis "ttrpc") - (description "GRPC for low-memory environments.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd - (package - (name "go-github-com-containerd-typeurl") - (version "0.0.0-20180627222232-a93fcdb778cd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/typeurl") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0aqnf5rzc5pldln0czhxlr0fqaf5553ab7wzsq85p90lg1ryqnd6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/typeurl")) - (home-page "https://github.com/containerd/typeurl") - (synopsis "typeurl") - (description - "This package provides a Go package for managing the registration, marshaling, and unmarshaling of encoded types.") - (license license:asl2.0))) - -(define-public go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2 - (package - (name "go-github-com-opencontainers-go-digest") - (version "0.0.0-20180430190053-c9281466c8b2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/go-digest") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1djdazssy27xn91pjhx3dgb0f11bnlzzbwkh7f8zwnpz011anasi")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/go-digest")) - (home-page "https://github.com/opencontainers/go-digest") - (synopsis "go-digest") - (description - "Package digest provides a generalized type to opaquely represent message -digests and their operations within the registry. The Digest type is -designed to serve as a flexible identifier in a content-addressable system. -More importantly, it provides tools and wrappers to work with -hash.Hash-based digests with little effort. -") - (license (list license:asl2.0 license:cc-by-sa4.0)))) - -(define-public go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f - (package - (name "go-github-com-opencontainers-runc") - (version "0.0.0-20190115041553-12f6a991201f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/runc") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0lr4q440pliilq2njyj5glfpma89r9l1cl687niwkp2pzb32dm45")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/runc")) - (home-page "https://github.com/opencontainers/runc") - (synopsis "runc") - (description - "@code{runc} is a CLI tool for spawning and running containers according to the OCI specification.") - (license license:asl2.0))) - -(define-public go-github-com-opencontainers-runtime-spec-1.0.2 - (package - (name "go-github-com-opencontainers-runtime-spec") - (version "1.0.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/runtime-spec") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19w981vcmd5lp2hy0630x6ayb8zz17n2vxqm2py5mg945xflcizg")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) - (home-page "https://github.com/opencontainers/runtime-spec") - (synopsis "Open Container Initiative Runtime Specification") - (description - "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") - (license license:asl2.0))) - -(define-public go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7 - (package - (name "go-github-com-prometheus-procfs") - (version "0.0.0-20180125133057-cb4147076ac7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/procfs") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0zhlrik0f9q1lj6cisgnxgbz4darbcix52hm5abi24l2ahchf5ca")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/procfs")) - (home-page "https://github.com/prometheus/procfs") - (synopsis "procfs") - (description - "Package procfs provides functions to retrieve system, kernel and process -metrics from the pseudo-filesystem proc. -") - (license license:asl2.0))) - -(define-public go-github-com-urfave-cli-1.22.2 - (package - (name "go-github-com-urfave-cli") - (version "1.22.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/urfave/cli") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "10mcnvi5qmn00vpyk6si8gjka7p654wr9hac4zc9w5h3ickhvbdc")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/urfave/cli")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) - ("go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d" - ,go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d) - ("go-github-com-burntsushi-toml-0.3.1" - ,go-github-com-burntsushi-toml-0.3.1))) - (home-page "https://github.com/urfave/cli") - (synopsis "cli") - (description - "Package cli provides a minimal framework for creating and organizing command line -Go applications. cli is designed to be easy to understand and write, the most simple -cli application can be written as follows: -") - (license license:expat))) - -(define-public go-golang-org-x-net-0.0.0-20190501004415-9ce7a6920f09 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190501004415-9ce7a6920f09") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1kbs85jsqbv4v89ii2zam4b8dhmllhsrf46njmi09x0w6s0b9cbk")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-go-opencensus-io-0.22.0 - (package - (name "go-go-opencensus-io") - (version "0.22.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/census-instrumentation/opencensus-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "05jr8gkr2w34i5wwki4zhl5ch0qrgi7cdgag5iy5gpxplhbrvbg9")))) - (build-system go-build-system) - (arguments '(#:import-path "go.opencensus.io")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.20.1" ,go-google-golang-org-grpc-1.20.1) - ("go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb" - ,go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb) - ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) - ("go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd" - ,go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd) - ("go-golang-org-x-net-0.0.0-20190501004415-9ce7a6920f09" - ,go-golang-org-x-net-0.0.0-20190501004415-9ce7a6920f09) - ("go-github-com-hashicorp-golang-lru-0.5.1" - ,go-github-com-hashicorp-golang-lru-0.5.1) - ("go-github-com-google-go-cmp-0.3.0" - ,go-github-com-google-go-cmp-0.3.0) - ("go-github-com-golang-protobuf-1.3.1" - ,go-github-com-golang-protobuf-1.3.1))) - (home-page "https://go.opencensus.io") - (synopsis "OpenCensus Libraries for Go") - (description "Package opencensus contains Go support for OpenCensus. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20191004110552-13f9640d40b9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ba2767lvklnmfvb9jkwvd4m7z6326gaiz3rgylh795g88hy34g1")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873 - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20190502173448-54afdca5d873") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1vm1vggl874jd4wi6qyl7aggc6s6kdsazk4vj0cs2dfcw2xnw8ag")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" - ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) - ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) - ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" - ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) - ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" - ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) - ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" - ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd) - ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" - ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) - ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" - ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-google-golang-org-grpc-1.23.1 - (package - (name "go-google-golang-org-grpc") - (version "1.23.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1d8gjjhrqbiq8pb56lb4x10hb752k7k06wspjvh7v0vpzmf25981")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" - ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) - ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" - ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) - ("go-google-golang-org-appengine-1.1.0" - ,go-google-golang-org-appengine-1.1.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-google-go-cmp-0.2.0" - ,go-github-com-google-go-cmp-0.2.0) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0) - ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-client9-misspell-0.3.4" - ,go-github-com-client9-misspell-0.3.4) - ("go-github-com-burntsushi-toml-0.3.1" - ,go-github-com-burntsushi-toml-0.3.1) - ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-github-com-microsoft-hcsshim-0.8.14 - (package - (name "go-github-com-microsoft-hcsshim") - (version "0.8.14") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/microsoft/hcsshim") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0k57knv8zrf32hp7rpv1km9j772w6752pfvdbpd3l711ism48c84")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/Microsoft/hcsshim")) - (propagated-inputs - `(("go-gotest-tools-2.2.0+incompatible" - ,go-gotest-tools-2.2.0+incompatible) - ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) - ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" - ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) - ("go-google-golang-org-grpc-1.23.1" ,go-google-golang-org-grpc-1.23.1) - ("go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873" - ,go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873) - ("go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3" - ,go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3) - ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" - ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) - ("go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9" - ,go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9) - ("go-go-opencensus-io-0.22.0" ,go-go-opencensus-io-0.22.0) - ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) - ("go-github-com-stretchr-testify-1.4.0" - ,go-github-com-stretchr-testify-1.4.0) - ("go-github-com-sirupsen-logrus-1.4.2" - ,go-github-com-sirupsen-logrus-1.4.2) - ("go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7" - ,go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-runtime-spec-1.0.2" - ,go-github-com-opencontainers-runtime-spec-1.0.2) - ("go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f" - ,go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f) - ("go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2" - ,go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2) - ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2) - ("go-github-com-gogo-protobuf-1.3.1" - ,go-github-com-gogo-protobuf-1.3.1) - ("go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd" - ,go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd) - ("go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de" - ,go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de) - ("go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3" - ,go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3) - ("go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448" - ,go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448) - ("go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc" - ,go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc) - ("go-github-com-containerd-containerd-1.3.2" - ,go-github-com-containerd-containerd-1.3.2) - ("go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1" - ,go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1) - ("go-github-com-containerd-cgroups-0.0.0-20200531161412-0dbf7f05ba59" - ,go-github-com-containerd-cgroups-0.0.0-20200531161412-0dbf7f05ba59) - ("go-github-com-microsoft-go-winio-0.4.16-0.20201130162521-d1ffc52c7331" - ,go-github-com-microsoft-go-winio-0.4.16-0.20201130162521-d1ffc52c7331))) - (home-page "https://github.com/Microsoft/hcsshim") - (synopsis "hcsshim") - (description - "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") - (license license:expat))) - -(define-public go-github-com-containerd-containerd-1.4.3 - (package - (name "go-github-com-containerd-containerd") - (version "1.4.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/containerd") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "09xvhjg5f8h90w1y94kqqnqzhbhd62dcdd9wb9sdqakisjk6zrl0")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/containerd")) - (home-page "https://github.com/containerd/containerd") - (synopsis "Now Recruiting") - (description - "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") - (license license:asl2.0))) - -(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.2 - (package - (name "go-github-com-konsorten-go-windows-terminal-sequences") - (version "1.0.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/konsorten/go-windows-terminal-sequences") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "09mn209ika7ciy87xf2x31dq5fnqw39jidgaljvmqxwk7ff1hnx7")))) - (build-system go-build-system) - (arguments - '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) - (home-page "https://github.com/konsorten/go-windows-terminal-sequences") - (synopsis "Windows Terminal Sequences") - (description - "This library allow for enabling Windows terminal color support for Go.") - (license license:expat))) - -(define-public go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1 - (package - (name "go-github-com-prometheus-procfs") - (version "0.0.0-20190522114515-bc1a522cf7b1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/procfs") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "13ws66kd65zbhk31zmax9qgmh22fzjcgs5ihy4fm1d775w6bmdzx")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/procfs")) - (propagated-inputs - `(("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" - ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4))) - (home-page "https://github.com/prometheus/procfs") - (synopsis "procfs") - (description - "Package procfs provides functions to retrieve system, kernel and process -metrics from the pseudo-filesystem proc. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200120151820-655fe14d7479") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "133yxmdcny5b0r8775m52sj7zja36riv0x2437k7jccywqi8nx32")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-google-golang-org-genproto-0.0.0-20200117163144-32f20d992d24 - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20200117163144-32f20d992d24") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1kl696jd8fykykjjbngqpgqsngajwbbrvrpl1q0804l6hz8qk858")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" - ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) - ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) - ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" - ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) - ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" - ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) - ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" - ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-ttrpc-1.0.2 - (package - (name "go-github-com-containerd-ttrpc") - (version "1.0.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/ttrpc") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0plkm3yrr20vccfl0x8dxys3iphjwnmi285in0pivff6p9djf3yz")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/ttrpc")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.26.0" ,go-google-golang-org-grpc-1.26.0) - ("go-google-golang-org-genproto-0.0.0-20200117163144-32f20d992d24" - ,go-google-golang-org-genproto-0.0.0-20200117163144-32f20d992d24) - ("go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479" - ,go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479) - ("go-github-com-sirupsen-logrus-1.4.2" - ,go-github-com-sirupsen-logrus-1.4.2) - ("go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1" - ,go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.2" - ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.2) - ("go-github-com-gogo-protobuf-1.3.1" - ,go-github-com-gogo-protobuf-1.3.1))) - (home-page "https://github.com/containerd/ttrpc") - (synopsis "ttrpc") - (description "GRPC for low-memory environments.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-typeurl-1.0.1 - (package - (name "go-github-com-containerd-typeurl") - (version "1.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/typeurl") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "09cgrchrw5d36zq0mc321l5qr2gfbdm1z1a3hhkhqr4qay6vglqn")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/typeurl")) - (propagated-inputs - `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-gogo-protobuf-1.3.1" - ,go-github-com-gogo-protobuf-1.3.1))) - (home-page "https://github.com/containerd/typeurl") - (synopsis "typeurl") - (description - "This package provides a Go package for managing the registration, marshaling, and unmarshaling of encoded types.") - (license license:asl2.0))) - -(define-public go-github-com-opencontainers-runc-1.0.0-rc9 - (package - (name "go-github-com-opencontainers-runc") - (version "1.0.0-rc9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/runc") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ss5b46cbbckyqlwgj8dbd5l59c5y0kp679hcpc0ybaj53pmwxj7")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/runc")) - (home-page "https://github.com/opencontainers/runc") - (synopsis "runc") - (description - "@code{runc} is a CLI tool for spawning and running containers according to the OCI specification.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-zfs-0.0.0-20210301145711-11e8f1707f62 - (package - (name "go-github-com-containerd-zfs") - (version "0.0.0-20210301145711-11e8f1707f62") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/zfs") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1919ax45a07v2y56xq5c0xihkn2c5zgyqv68rzx3x5cc20n2p8yg")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/zfs")) - (propagated-inputs - `(("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) - ("go-go-etcd-io-bbolt-1.3.3" ,go-go-etcd-io-bbolt-1.3.3) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-runc-1.0.0-rc9" - ,go-github-com-opencontainers-runc-1.0.0-rc9) - ("go-github-com-opencontainers-image-spec-1.0.1" - ,go-github-com-opencontainers-image-spec-1.0.1) - ("go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible" - ,go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible) - ("go-github-com-google-uuid-1.1.1" ,go-github-com-google-uuid-1.1.1) - ("go-github-com-gogo-protobuf-1.3.1" - ,go-github-com-gogo-protobuf-1.3.1) - ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" - ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) - ("go-github-com-containerd-typeurl-1.0.1" - ,go-github-com-containerd-typeurl-1.0.1) - ("go-github-com-containerd-ttrpc-1.0.2" - ,go-github-com-containerd-ttrpc-1.0.2) - ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" - ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) - ("go-github-com-containerd-containerd-1.4.3" - ,go-github-com-containerd-containerd-1.4.3) - ("go-github-com-microsoft-hcsshim-0.8.14" - ,go-github-com-microsoft-hcsshim-0.8.14))) - (home-page "https://github.com/containerd/zfs") - (synopsis "ZFS snapshotter plugin") - (description "ZFS snapshotter plugin for containerd.") - (license license:asl2.0))) - -(define-public go-github-com-containernetworking-cni-0.7.1 - (package - (name "go-github-com-containernetworking-cni") - (version "0.7.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containernetworking/cni") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "02qn1br8164d99978acalisy1sx294g1axnii4yh1wji0fc735xz")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containernetworking/cni")) - (home-page "https://github.com/containernetworking/cni") - (synopsis "CNI - the Container Network Interface") - (description - "CNI (), a @url{https://cncf.io,Cloud Native Computing Foundation} project, consists of a specification and libraries for writing plugins to configure network interfaces in Linux containers, along with a number of supported plugins. -CNI concerns itself only with network connectivity of containers and removing allocated resources when the container is deleted. -Because of this focus, CNI has a wide range of support and the specification is simple to implement.") - (license license:asl2.0))) - -(define-public go-github-com-coreos-go-iptables-0.4.5 - (package - (name "go-github-com-coreos-go-iptables") - (version "0.4.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/coreos/go-iptables") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "04iqh4hvvrrvjsfjyaa5bdyqklwzrzzy8yiyvja90hvv121f7975")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/coreos/go-iptables")) - (home-page "https://github.com/coreos/go-iptables") - (synopsis "go-iptables") - (description "Go bindings for iptables utility.") - (license license:asl2.0))) - -(define-public go-github-com-onsi-ginkgo-0.0.0-20151202141238-7f8ab55aaf3b - (package - (name "go-github-com-onsi-ginkgo") - (version "0.0.0-20151202141238-7f8ab55aaf3b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/onsi/ginkgo") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0nas6wqdym4jx42kw9wj80b58r69k9qhnvglz009lj34g5gba7rw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/onsi/ginkgo")) - (home-page "https://github.com/onsi/ginkgo") - (synopsis "Ginkgo 2.0 Release Candidate is available!") - (description "Ginkgo is a BDD-style testing framework for Golang -") - (license license:expat))) - -(define-public go-github-com-onsi-gomega-0.0.0-20151007035656-2152b45fa28a - (package - (name "go-github-com-onsi-gomega") - (version "0.0.0-20151007035656-2152b45fa28a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/onsi/gomega") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0amjlkawp84mmdqjgdamf93p1546cla6h4wwrx7hf5r862r2qcw2")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/onsi/gomega")) - (home-page "https://github.com/onsi/gomega") - (synopsis ": a BDD Testing Framework for Golang") - (description - "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library. -") - (license license:expat))) - -(define-public go-github-com-vishvananda-netlink-0.0.0-20181108222139-023a6dafdcdf - (package - (name "go-github-com-vishvananda-netlink") - (version "0.0.0-20181108222139-023a6dafdcdf") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/vishvananda/netlink") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1i5q8r8rg7lxzvq2vhbf25lrkzdlgficfv0bxg9rf7cgg6z819sn")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/vishvananda/netlink")) - (home-page "https://github.com/vishvananda/netlink") - (synopsis "netlink - netlink library for go") - (description - "Package netlink provides a simple library for netlink. Netlink is -the interface a user-space program in linux uses to communicate with -the kernel. It can be used to add and remove interfaces, set up ip -addresses and routes, and confiugre ipsec. Netlink communication -requires elevated privileges, so in most cases this code needs to -be run as root. The low level primitives for netlink are contained -in the nl subpackage. This package attempts to provide a high-level -interface that is loosly modeled on the iproute2 cli. -") - (license license:asl2.0))) - -(define-public go-github-com-vishvananda-netns-0.0.0-20180720170159-13995c7128cc - (package - (name "go-github-com-vishvananda-netns") - (version "0.0.0-20180720170159-13995c7128cc") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/vishvananda/netns") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1zk6w8158qi4niva5rijchbv9ixgmijsgqshh54wdaav4xrhjshn")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/vishvananda/netns")) - (home-page "https://github.com/vishvananda/netns") - (synopsis "netns - network namespaces in go") - (description - "Package netns allows ultra-simple network namespace handling. NsHandles -can be retrieved and set. Note that the current namespace is thread -local so actions that set and reset namespaces should use LockOSThread -to make sure the namespace doesn't change due to a goroutine switch. -It is best to close NsHandles when you are done with them. This can be -accomplished via a `defer ns.Close()` on the handle. Changing namespaces -requires elevated privileges, so in most cases this code needs to be run -as root. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-crypto-0.0.0-20181009213950-7c1a557ab941 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20181009213950-7c1a557ab941") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1f1q9mby8m7ws3gbj90v0prhnf4g2sgf74azmw31kzwd6azlar3m")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20181011144130-49bb7cea24b1 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20181011144130-49bb7cea24b1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "111q4qm3hcjvzvyv9y5rz8ydnyg48rckcygxqy6gv63q618wz6gn")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-github-com-containernetworking-plugins-0.8.6 - (package - (name "go-github-com-containernetworking-plugins") - (version "0.8.6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containernetworking/plugins") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0f1cqxjf26sy1c4aw6y7pyd9lrz0vknby4q5j6xj77a1pab9073m")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containernetworking/plugins")) - (propagated-inputs - `(("go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2" - ,go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2) - ("go-gopkg-in-airbrake-gobrake-v2-2.0.9" - ,go-gopkg-in-airbrake-gobrake-v2-2.0.9) - ("go-golang-org-x-sys-0.0.0-20190616124812-15dcb6c0061f" - ,go-golang-org-x-sys-0.0.0-20190616124812-15dcb6c0061f) - ("go-golang-org-x-net-0.0.0-20181011144130-49bb7cea24b1" - ,go-golang-org-x-net-0.0.0-20181011144130-49bb7cea24b1) - ("go-golang-org-x-crypto-0.0.0-20181009213950-7c1a557ab941" - ,go-golang-org-x-crypto-0.0.0-20181009213950-7c1a557ab941) - ("go-github-com-vishvananda-netns-0.0.0-20180720170159-13995c7128cc" - ,go-github-com-vishvananda-netns-0.0.0-20180720170159-13995c7128cc) - ("go-github-com-vishvananda-netlink-0.0.0-20181108222139-023a6dafdcdf" - ,go-github-com-vishvananda-netlink-0.0.0-20181108222139-023a6dafdcdf) - ("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0) - ("go-github-com-sirupsen-logrus-1.0.6" - ,go-github-com-sirupsen-logrus-1.0.6) - ("go-github-com-safchain-ethtool-0.0.0-20190326074333-42ed695e3de8" - ,go-github-com-safchain-ethtool-0.0.0-20190326074333-42ed695e3de8) - ("go-github-com-onsi-gomega-0.0.0-20151007035656-2152b45fa28a" - ,go-github-com-onsi-gomega-0.0.0-20151007035656-2152b45fa28a) - ("go-github-com-onsi-ginkgo-0.0.0-20151202141238-7f8ab55aaf3b" - ,go-github-com-onsi-ginkgo-0.0.0-20151202141238-7f8ab55aaf3b) - ("go-github-com-mattn-go-shellwords-1.0.3" - ,go-github-com-mattn-go-shellwords-1.0.3) - ("go-github-com-j-keck-arping-0.0.0-20160618110441-2cf9dc699c56" - ,go-github-com-j-keck-arping-0.0.0-20160618110441-2cf9dc699c56) - ("go-github-com-golang-protobuf-1.3.1" - ,go-github-com-golang-protobuf-1.3.1) - ("go-github-com-godbus-dbus-0.0.0-20180201030542-885f9cc04c9c" - ,go-github-com-godbus-dbus-0.0.0-20180201030542-885f9cc04c9c) - ("go-github-com-d2g-hardwareaddr-0.0.0-20190221164911-e7d9fbe030e4" - ,go-github-com-d2g-hardwareaddr-0.0.0-20190221164911-e7d9fbe030e4) - ("go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5" - ,go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5) - ("go-github-com-d2g-dhcp4client-1.0.0" - ,go-github-com-d2g-dhcp4client-1.0.0) - ("go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c" - ,go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c) - ("go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7" - ,go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7) - ("go-github-com-coreos-go-iptables-0.4.5" - ,go-github-com-coreos-go-iptables-0.4.5) - ("go-github-com-containernetworking-cni-0.7.1" - ,go-github-com-containernetworking-cni-0.7.1) - ("go-github-com-buger-jsonparser-0.0.0-20180808090653-f4dd9f5a6b44" - ,go-github-com-buger-jsonparser-0.0.0-20180808090653-f4dd9f5a6b44) - ("go-github-com-alexflint-go-filemutex-0.0.0-20171022225611-72bdc8eae2ae" - ,go-github-com-alexflint-go-filemutex-0.0.0-20171022225611-72bdc8eae2ae) - ("go-github-com-microsoft-hcsshim-0.8.6" - ,go-github-com-microsoft-hcsshim-0.8.6) - ("go-github-com-microsoft-go-winio-0.4.11" - ,go-github-com-microsoft-go-winio-0.4.11))) - (home-page "https://github.com/containernetworking/plugins") - (synopsis "Plugins") - (description - "Some CNI network plugins, maintained by the containernetworking team. For more information, see the @url{https://www.cni.dev,CNI website}.") - (license license:asl2.0))) - -(define-public go-github-com-imdario-mergo-0.3.11 - (package - (name "go-github-com-imdario-mergo") - (version "0.3.11") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/imdario/mergo") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "07iay9j3ry7qrflvn9bgyyggvwacl1s1in1cnbmsp1020ydkph8k")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/imdario/mergo")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.3.0" ,go-gopkg-in-yaml-v2-2.3.0))) - (home-page "https://github.com/imdario/mergo") - (synopsis "Mergo") - (description - "This package provides a helper to merge structs and maps in Golang. Useful for configuration default values, avoiding messy if-statements. -") - (license license:bsd-3))) - -(define-public go-github-com-klauspost-compress-1.11.3 - (package - (name "go-github-com-klauspost-compress") - (version "1.11.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/klauspost/compress") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "04wpilw6072fh2wd492ma1nw4br7bvz466mj0vi2m1g4w6d0z88z")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/klauspost/compress")) - (home-page "https://github.com/klauspost/compress") - (synopsis "compress") - (description "This package provides various compression algorithms.") - (license #f))) - -(define-public go-github-com-checkpoint-restore-go-criu-v4-4.1.0 - (package - (name "go-github-com-checkpoint-restore-go-criu-v4") - (version "4.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/checkpoint-restore/go-criu") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hfgjck015df5h44hczl3x4gg430saczgkl619cp0l6cpaxga5yi")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/checkpoint-restore/go-criu/v4")) - (propagated-inputs - `(("go-github-com-golang-protobuf-1.3.5" - ,go-github-com-golang-protobuf-1.3.5))) - (home-page "https://github.com/checkpoint-restore/go-criu") - (synopsis "go-criu -- Go bindings for") - (description - "This repository provides Go bindings for CRIU. The code is based on the Go based PHaul -implementation from the CRIU repository. For easier inclusion into other Go projects the -CRIU Go bindings have been moved to this repository.") - (license license:asl2.0))) - -(define-public go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200124204421-9fbb57f87de9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0qaz2jjkrxzgkapmjqingdwamrgq2aiblxvzzgrcsv2qhkj0wdps")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-cilium-ebpf-0.2.0 - (package - (name "go-github-com-cilium-ebpf") - (version "0.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cilium/ebpf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0f7my8n5v2c5cmgrcikgi0naamglr7c4khgxkbb1k5wl8mm9465a")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/cilium/ebpf")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9" - ,go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9) - ("go-github-com-google-go-cmp-0.5.2" - ,go-github-com-google-go-cmp-0.5.2))) - (home-page "https://github.com/cilium/ebpf") - (synopsis "eBPF") - (description "Package ebpf is a toolkit for working with eBPF programs. -") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200916030750-2334cc1a136f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1lc7d513gwwpr6r7f55743684n1qsgn9vmg6b79x0hsp1x90z4mr")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-containerd-console-1.0.1 - (package - (name "go-github-com-containerd-console") - (version "1.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/console") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0s837wj6h80fykk2pdmaji75rw9c3863by0gh0cq51hh0lgyjpvg")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/console")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f" - ,go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) - (home-page "https://github.com/containerd/console") - (synopsis "console") - (description - "Golang package for dealing with consoles. Light on deps and a simple API.") - (license license:asl2.0))) - -(define-public go-github-com-coreos-go-systemd-v22-22.1.0 - (package - (name "go-github-com-coreos-go-systemd-v22") - (version "22.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/coreos/go-systemd") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "127dj1iwp69yj74nwh9ckgc0mkk1mv4yzbxmbdxix1r7j6q35z3j")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/coreos/go-systemd/v22")) - (propagated-inputs - `(("go-github-com-godbus-dbus-v5-5.0.3" - ,go-github-com-godbus-dbus-v5-5.0.3))) - (home-page "https://github.com/coreos/go-systemd") - (synopsis "go-systemd") - (description "Go bindings to systemd. The project has several packages:") - (license license:asl2.0))) - -(define-public go-github-com-godbus-dbus-v5-5.0.3 - (package - (name "go-github-com-godbus-dbus-v5") - (version "5.0.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/godbus/dbus") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1bkc904073k807yxg6mvqaxrr6ammmhginr9p54jfb55mz3hfw3s")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/godbus/dbus/v5")) - (home-page "https://github.com/godbus/dbus") - (synopsis "dbus") - (description - "Package dbus implements bindings to the D-Bus message bus system. -") - (license license:bsd-2))) - -(define-public go-github-com-opencontainers-runc-1.0.0-rc93 - (package - (name "go-github-com-opencontainers-runc") - (version "1.0.0-rc93") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/runc") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "008d5wkznic80n5q1vwx727qn5ifalc7cydq68hc1gk9wrhna4v4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/runc")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" - ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68) - ("go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b" - ,go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b) - ("go-github-com-willf-bitset-1.1.11" - ,go-github-com-willf-bitset-1.1.11) - ("go-github-com-vishvananda-netlink-1.1.0" - ,go-github-com-vishvananda-netlink-1.1.0) - ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) - ("go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635" - ,go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635) - ("go-github-com-sirupsen-logrus-1.7.0" - ,go-github-com-sirupsen-logrus-1.7.0) - ("go-github-com-seccomp-libseccomp-golang-0.9.1" - ,go-github-com-seccomp-libseccomp-golang-0.9.1) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-selinux-1.8.0" - ,go-github-com-opencontainers-selinux-1.8.0) - ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" - ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) - ("go-github-com-mrunalp-fileutils-0.5.0" - ,go-github-com-mrunalp-fileutils-0.5.0) - ("go-github-com-moby-sys-mountinfo-0.4.0" - ,go-github-com-moby-sys-mountinfo-0.4.0) - ("go-github-com-golang-protobuf-1.4.3" - ,go-github-com-golang-protobuf-1.4.3) - ("go-github-com-godbus-dbus-v5-5.0.3" - ,go-github-com-godbus-dbus-v5-5.0.3) - ("go-github-com-docker-go-units-0.4.0" - ,go-github-com-docker-go-units-0.4.0) - ("go-github-com-cyphar-filepath-securejoin-0.2.2" - ,go-github-com-cyphar-filepath-securejoin-0.2.2) - ("go-github-com-coreos-go-systemd-v22-22.1.0" - ,go-github-com-coreos-go-systemd-v22-22.1.0) - ("go-github-com-containerd-console-1.0.1" - ,go-github-com-containerd-console-1.0.1) - ("go-github-com-cilium-ebpf-0.2.0" ,go-github-com-cilium-ebpf-0.2.0) - ("go-github-com-checkpoint-restore-go-criu-v4-4.1.0" - ,go-github-com-checkpoint-restore-go-criu-v4-4.1.0))) - (home-page "https://github.com/opencontainers/runc") - (synopsis "runc") - (description - "@code{runc} is a CLI tool for spawning and running containers according to the OCI specification.") - (license license:asl2.0))) - -(define-public go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d - (package - (name "go-github-com-opencontainers-runtime-spec") - (version "1.0.3-0.20200929063507-e6143ca7d51d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/runtime-spec") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "06yk9kjif5mgi46d0hcgqcikdcplf3yflqbj8h6ljxshp6jzc49w")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) - (home-page "https://github.com/opencontainers/runtime-spec") - (synopsis "Open Container Initiative Runtime Specification") - (description - "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") - (license license:asl2.0))) - -(define-public go-github-com-willf-bitset-1.1.11 - (package - (name "go-github-com-willf-bitset") - (version "1.1.11") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/bits-and-blooms/bitset") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1v7wnikdxiyhwdxnsj2wcrsrsi1kb2ssmarvbrda90vmxzafjl7d")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/willf/bitset")) - (home-page "https://github.com/willf/bitset") - (synopsis "bitset") - (description - "Package bitset implements bitsets, a mapping -between non-negative integers and boolean values. It should be more -efficient than map[uint] bool. -") - (license license:bsd-3))) - -(define-public go-github-com-opencontainers-selinux-1.8.0 - (package - (name "go-github-com-opencontainers-selinux") - (version "1.8.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/selinux") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "08aakiva619hk4lgfvyi6kpjgw7hfirs0jlc2jdgzcv7p0gfhbmx")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/selinux")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777" - ,go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777) - ("go-github-com-willf-bitset-1.1.11" - ,go-github-com-willf-bitset-1.1.11) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) - (home-page "https://github.com/opencontainers/selinux") - (synopsis "selinux") - (description "Common SELinux package used across the container ecosystem.") - (license license:asl2.0))) - -(define-public go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.14 - (package - (name "go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client") - (version "0.0.14") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes-sigs/apiserver-network-proxy") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0px41x5apgcssmwmx75cwm000s8b8pgd84dxn56maxx223dzz9vm")))) - (build-system go-build-system) - (arguments - '(#:import-path - "sigs.k8s.io/apiserver-network-proxy/konnectivity-client")) - (propagated-inputs - `(("go-k8s-io-klog-v2-2.0.0" ,go-k8s-io-klog-v2-2.0.0) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-github-com-golang-protobuf-1.4.0" - ,go-github-com-golang-protobuf-1.4.0))) - (home-page - "https://sigs.k8s.io/apiserver-network-proxy/konnectivity-client") - (synopsis #f) - (description #f) - (license license:asl2.0))) - -(define-public go-k8s-io-apiserver-0.20.1 - (package - (name "go-k8s-io-apiserver") - (version "0.20.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes/apiserver") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "03k8kjisscj59i410kk2bz0qfpxa2d2vbwxiwyn93k7a2avbn7cs")))) - (build-system go-build-system) - (arguments '(#:import-path "k8s.io/apiserver")) - (propagated-inputs - `(("go-k8s-io-component-base-0.20.1" ,go-k8s-io-component-base-0.20.1) - ("go-k8s-io-client-go-0.20.1" ,go-k8s-io-client-go-0.20.1) - ("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) - ("go-k8s-io-api-0.20.1" ,go-k8s-io-api-0.20.1) - ("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) - ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.2" - ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.2) - ("go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.14" - ,go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.14) - ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" - ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) - ("go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd" - ,go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd) - ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) - ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) - ("go-gopkg-in-square-go-jose-v2-2.2.2" - ,go-gopkg-in-square-go-jose-v2-2.2.2) - ("go-gopkg-in-natefinch-lumberjack-v2-2.0.0" - ,go-gopkg-in-natefinch-lumberjack-v2-2.0.0) - ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) - ("go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a" - ,go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a) - ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" - ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) - ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" - ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) - ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" - ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) - ("go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0" - ,go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0) - ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) - ("go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489" - ,go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489) - ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) - ("go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5" - ,go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) - ("go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021" - ,go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822" - ,go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822) - ("go-github-com-mailru-easyjson-0.7.0" - ,go-github-com-mailru-easyjson-0.7.0) - ("go-github-com-hashicorp-golang-lru-0.5.1" - ,go-github-com-hashicorp-golang-lru-0.5.1) - ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" - ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) - ("go-github-com-gorilla-websocket-1.4.2" - ,go-github-com-gorilla-websocket-1.4.2) - ("go-github-com-googleapis-gnostic-0.4.1" - ,go-github-com-googleapis-gnostic-0.4.1) - ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) - ("go-github-com-google-gofuzz-1.1.0" - ,go-github-com-google-gofuzz-1.1.0) - ("go-github-com-google-go-cmp-0.5.2" - ,go-github-com-google-go-cmp-0.5.2) - ("go-github-com-gogo-protobuf-1.3.1" - ,go-github-com-gogo-protobuf-1.3.1) - ("go-github-com-go-openapi-spec-0.19.3" - ,go-github-com-go-openapi-spec-0.19.3) - ("go-github-com-evanphx-json-patch-4.9.0+incompatible" - ,go-github-com-evanphx-json-patch-4.9.0+incompatible) - ("go-github-com-emicklei-go-restful-2.9.5+incompatible" - ,go-github-com-emicklei-go-restful-2.9.5+incompatible) - ("go-github-com-dustin-go-humanize-1.0.0" - ,go-github-com-dustin-go-humanize-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1) - ("go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f" - ,go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f) - ("go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e" - ,go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e) - ("go-github-com-coreos-go-semver-0.3.0" - ,go-github-com-coreos-go-semver-0.3.0) - ("go-github-com-coreos-go-oidc-2.1.0+incompatible" - ,go-github-com-coreos-go-oidc-2.1.0+incompatible))) - (home-page "https://k8s.io/apiserver") - (synopsis "apiserver") - (description - "Generic library for building a Kubernetes aggregated API server.") - (license license:asl2.0))) - -(define-public go-k8s-io-api-0.20.1 - (package - (name "go-k8s-io-api") - (version "0.20.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes/api") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "051nl7g66k0jkc9rmfbvwdsmqkn36nq71kvnfym3lhnjcgg53k0l")))) - (build-system go-build-system) - (arguments '(#:import-path "k8s.io/api")) - (propagated-inputs - `(("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-gogo-protobuf-1.3.1" - ,go-github-com-gogo-protobuf-1.3.1))) - (home-page "https://k8s.io/api") - (synopsis "api") - (description - "Schema of the external API types that are served by the Kubernetes API server.") - (license license:asl2.0))) - -(define-public go-k8s-io-apimachinery-0.20.1 - (package - (name "go-k8s-io-apimachinery") - (version "0.20.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes/apimachinery") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "15qc12lbzpd4lgajy0rv24b3ky4hhg5y1l37qxdfiakhz91didfw")))) - (build-system go-build-system) - (arguments '(#:import-path "k8s.io/apimachinery")) - (propagated-inputs - `(("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) - ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.2" - ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.2) - ("go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd" - ,go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd) - ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) - ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) - ("go-gopkg-in-inf-v0-0.9.1" ,go-gopkg-in-inf-v0-0.9.1) - ("go-google-golang-org-protobuf-1.25.0" - ,go-google-golang-org-protobuf-1.25.0) - ("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" - ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) - ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) - ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" - ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) - ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" - ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-onsi-gomega-1.7.0" ,go-github-com-onsi-gomega-1.7.0) - ("go-github-com-onsi-ginkgo-1.11.0" ,go-github-com-onsi-ginkgo-1.11.0) - ("go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f" - ,go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f) - ("go-github-com-modern-go-reflect2-1.0.1" - ,go-github-com-modern-go-reflect2-1.0.1) - ("go-github-com-json-iterator-go-1.1.10" - ,go-github-com-json-iterator-go-1.1.10) - ("go-github-com-hashicorp-golang-lru-0.5.1" - ,go-github-com-hashicorp-golang-lru-0.5.1) - ("go-github-com-googleapis-gnostic-0.4.1" - ,go-github-com-googleapis-gnostic-0.4.1) - ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) - ("go-github-com-google-gofuzz-1.1.0" - ,go-github-com-google-gofuzz-1.1.0) - ("go-github-com-google-go-cmp-0.5.2" - ,go-github-com-google-go-cmp-0.5.2) - ("go-github-com-golang-protobuf-1.4.3" - ,go-github-com-golang-protobuf-1.4.3) - ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" - ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) - ("go-github-com-gogo-protobuf-1.3.1" - ,go-github-com-gogo-protobuf-1.3.1) - ("go-github-com-fsnotify-fsnotify-1.4.9" - ,go-github-com-fsnotify-fsnotify-1.4.9) - ("go-github-com-evanphx-json-patch-4.9.0+incompatible" - ,go-github-com-evanphx-json-patch-4.9.0+incompatible) - ("go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153" - ,go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153) - ("go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96" - ,go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://k8s.io/apimachinery") - (synopsis "apimachinery") - (description - "Scheme, typing, encoding, decoding, and conversion packages for Kubernetes and Kubernetes-like API objects.") - (license license:asl2.0))) - -(define-public go-k8s-io-client-go-0.20.1 - (package - (name "go-k8s-io-client-go") - (version "0.20.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes/client-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "02jrzwwcrdlya91fga2wvf8dsl1yka3kky194dm6l9pmd754qwzs")))) - (build-system go-build-system) - (arguments '(#:import-path "k8s.io/client-go")) - (propagated-inputs - `(("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) - ("go-k8s-io-api-0.20.1" ,go-k8s-io-api-0.20.1) - ("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) - ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" - ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) - ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) - ("go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e" - ,go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e) - ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" - ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) - ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" - ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) - ("go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0" - ,go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) - ("go-github-com-peterbourgon-diskv-2.0.1+incompatible" - ,go-github-com-peterbourgon-diskv-2.0.1+incompatible) - ("go-github-com-imdario-mergo-0.3.5" - ,go-github-com-imdario-mergo-0.3.5) - ("go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7" - ,go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7) - ("go-github-com-googleapis-gnostic-0.4.1" - ,go-github-com-googleapis-gnostic-0.4.1) - ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) - ("go-github-com-google-gofuzz-1.1.0" - ,go-github-com-google-gofuzz-1.1.0) - ("go-github-com-google-go-cmp-0.5.2" - ,go-github-com-google-go-cmp-0.5.2) - ("go-github-com-golang-protobuf-1.4.3" - ,go-github-com-golang-protobuf-1.4.3) - ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" - ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) - ("go-github-com-gogo-protobuf-1.3.1" - ,go-github-com-gogo-protobuf-1.3.1) - ("go-github-com-evanphx-json-patch-4.9.0+incompatible" - ,go-github-com-evanphx-json-patch-4.9.0+incompatible) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1) - ("go-github-com-azure-go-autorest-autorest-adal-0.9.5" - ,go-github-com-azure-go-autorest-autorest-adal-0.9.5) - ("go-github-com-azure-go-autorest-autorest-0.11.1" - ,go-github-com-azure-go-autorest-autorest-0.11.1) - ("go-cloud-google-com-go-0.54.0" ,go-cloud-google-com-go-0.54.0))) - (home-page "https://k8s.io/client-go") - (synopsis "client-go") - (description - "Go clients for talking to a @url{http://kubernetes.io/,kubernetes} cluster.") - (license license:asl2.0))) - -(define-public go-k8s-io-component-base-0.20.1 - (package - (name "go-k8s-io-component-base") - (version "0.20.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes/component-base") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "05x3mv1lxh7s6ckfh1s9wwmb0n9rg14a9637ai9bhxdfps47sz0v")))) - (build-system go-build-system) - (arguments '(#:import-path "k8s.io/component-base")) - (propagated-inputs - `(("go-k8s-io-client-go-0.20.1" ,go-k8s-io-client-go-0.20.1) - ("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) - ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" - ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) - ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) - ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) - ("go-go-uber-org-multierr-1.1.0" ,go-go-uber-org-multierr-1.1.0) - ("go-go-uber-org-atomic-1.4.0" ,go-go-uber-org-atomic-1.4.0) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) - ("go-github-com-sirupsen-logrus-1.6.0" - ,go-github-com-sirupsen-logrus-1.6.0) - ("go-github-com-prometheus-procfs-0.2.0" - ,go-github-com-prometheus-procfs-0.2.0) - ("go-github-com-prometheus-common-0.10.0" - ,go-github-com-prometheus-common-0.10.0) - ("go-github-com-prometheus-client-model-0.2.0" - ,go-github-com-prometheus-client-model-0.2.0) - ("go-github-com-prometheus-client-golang-1.7.1" - ,go-github-com-prometheus-client-golang-1.7.1) - ("go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd" - ,go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd) - ("go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369" - ,go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369) - ("go-github-com-google-go-cmp-0.5.2" - ,go-github-com-google-go-cmp-0.5.2) - ("go-github-com-go-logr-logr-0.2.0" ,go-github-com-go-logr-logr-0.2.0) - ("go-github-com-blang-semver-3.5.1+incompatible" - ,go-github-com-blang-semver-3.5.1+incompatible))) - (home-page "https://k8s.io/component-base") - (synopsis "component-base") - (description - "Implement KEP 32: @url{https://github.com/kubernetes/enhancements/blob/master/keps/sig-cluster-lifecycle/wgs/783-component-base/README.md,https://github.com/kubernetes/enhancements/blob/master/keps/sig-cluster-lifecycle/wgs/783-component-base/README.md}") - (license license:asl2.0))) - -(define-public go-k8s-io-cri-api-0.20.1 - (package - (name "go-k8s-io-cri-api") - (version "0.20.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes/cri-api") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1r98d0kv42sijdg3404xx2g5jj0zixvfagkky2zla12p68ajm4xr")))) - (build-system go-build-system) - (arguments '(#:import-path "k8s.io/cri-api")) - (propagated-inputs - `(("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" - ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) - ("go-google-golang-org-protobuf-1.25.0" - ,go-google-golang-org-protobuf-1.25.0) - ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) - ("go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a" - ,go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a) - ("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" - ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) - ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) - ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" - ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) - ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" - ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-kr-pretty-0.2.0" ,go-github-com-kr-pretty-0.2.0) - ("go-github-com-google-go-cmp-0.5.2" - ,go-github-com-google-go-cmp-0.5.2) - ("go-github-com-golang-protobuf-1.4.3" - ,go-github-com-golang-protobuf-1.4.3) - ("go-github-com-gogo-protobuf-1.3.1" - ,go-github-com-gogo-protobuf-1.3.1) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://k8s.io/cri-api") - (synopsis "Purpose") - (description - "This repository contains the definitions for the Container Runtime Interface (CRI). -CRI is a plugin interface which enables kubelet to use a wide variety of container runtimes, -without the need to recompile. CRI consists of a protocol buffers and gRPC API.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-containerd-1.5.0-beta.3 - (package - (name "go-github-com-containerd-containerd") - (version "1.5.0-beta.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/containerd") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0fbd4llrwg5hi5adfkmfndma5y129yl9wwz3c3fjn7cfhc64hlqf")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/containerd")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) - ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) - ("go-github-com-golang-protobuf-1.3.5" - ,go-github-com-golang-protobuf-1.3.5) - ("go-github-com-gogo-googleapis-1.3.2" - ,go-github-com-gogo-googleapis-1.3.2) - ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" - ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) - ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) - ("go-k8s-io-cri-api-0.20.1" ,go-k8s-io-cri-api-0.20.1) - ("go-k8s-io-component-base-0.20.1" ,go-k8s-io-component-base-0.20.1) - ("go-k8s-io-client-go-0.20.1" ,go-k8s-io-client-go-0.20.1) - ("go-k8s-io-apiserver-0.20.1" ,go-k8s-io-apiserver-0.20.1) - ("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) - ("go-k8s-io-api-0.20.1" ,go-k8s-io-api-0.20.1) - ("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) - ("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" - ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) - ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" - ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) - ("go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b" - ,go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b) - ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) - ("go-github-com-tchap-go-patricia-2.2.6+incompatible" - ,go-github-com-tchap-go-patricia-2.2.6+incompatible) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-sirupsen-logrus-1.7.0" - ,go-github-com-sirupsen-logrus-1.7.0) - ("go-github-com-prometheus-client-golang-1.7.1" - ,go-github-com-prometheus-client-golang-1.7.1) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-selinux-1.8.0" - ,go-github-com-opencontainers-selinux-1.8.0) - ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" - ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) - ("go-github-com-opencontainers-runc-1.0.0-rc93" - ,go-github-com-opencontainers-runc-1.0.0-rc93) - ("go-github-com-opencontainers-image-spec-1.0.1" - ,go-github-com-opencontainers-image-spec-1.0.1) - ("go-github-com-opencontainers-go-digest-1.0.0" - ,go-github-com-opencontainers-go-digest-1.0.0) - ("go-github-com-moby-sys-symlink-0.1.0" - ,go-github-com-moby-sys-symlink-0.1.0) - ("go-github-com-moby-sys-mountinfo-0.4.0" - ,go-github-com-moby-sys-mountinfo-0.4.0) - ("go-github-com-klauspost-compress-1.11.3" - ,go-github-com-klauspost-compress-1.11.3) - ("go-github-com-imdario-mergo-0.3.11" - ,go-github-com-imdario-mergo-0.3.11) - ("go-github-com-hashicorp-go-multierror-1.0.0" - ,go-github-com-hashicorp-go-multierror-1.0.0) - ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" - ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) - ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) - ("go-github-com-google-go-cmp-0.5.4" - ,go-github-com-google-go-cmp-0.5.4) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2) - ("go-github-com-fsnotify-fsnotify-1.4.9" - ,go-github-com-fsnotify-fsnotify-1.4.9) - ("go-github-com-emicklei-go-restful-2.9.5+incompatible" - ,go-github-com-emicklei-go-restful-2.9.5+incompatible) - ("go-github-com-docker-go-units-0.4.0" - ,go-github-com-docker-go-units-0.4.0) - ("go-github-com-docker-go-metrics-0.0.1" - ,go-github-com-docker-go-metrics-0.0.1) - ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" - ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1) - ("go-github-com-coreos-go-systemd-v22-22.1.0" - ,go-github-com-coreos-go-systemd-v22-22.1.0) - ("go-github-com-containernetworking-plugins-0.8.6" - ,go-github-com-containernetworking-plugins-0.8.6) - ("go-github-com-containerd-zfs-0.0.0-20210301145711-11e8f1707f62" - ,go-github-com-containerd-zfs-0.0.0-20210301145711-11e8f1707f62) - ("go-github-com-containerd-typeurl-1.0.1" - ,go-github-com-containerd-typeurl-1.0.1) - ("go-github-com-containerd-ttrpc-1.0.2" - ,go-github-com-containerd-ttrpc-1.0.2) - ("go-github-com-containerd-nri-0.0.0-20201007170849-eb1350a75164" - ,go-github-com-containerd-nri-0.0.0-20201007170849-eb1350a75164) - ("go-github-com-containerd-imgcrypt-1.0.4-0.20210301171431-0ae5c75f59ba" - ,go-github-com-containerd-imgcrypt-1.0.4-0.20210301171431-0ae5c75f59ba) - ("go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328" - ,go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328) - ("go-github-com-containerd-go-cni-1.0.1" - ,go-github-com-containerd-go-cni-1.0.1) - ("go-github-com-containerd-fifo-0.0.0-20201026212402-0724c46b320c" - ,go-github-com-containerd-fifo-0.0.0-20201026212402-0724c46b320c) - ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" - ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) - ("go-github-com-containerd-console-1.0.1" - ,go-github-com-containerd-console-1.0.1) - ("go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68" - ,go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68) - ("go-github-com-containerd-btrfs-0.0.0-20201111183144-404b9149801e" - ,go-github-com-containerd-btrfs-0.0.0-20201111183144-404b9149801e) - ("go-github-com-containerd-aufs-0.0.0-20201003224125-76a6863f2989" - ,go-github-com-containerd-aufs-0.0.0-20201003224125-76a6863f2989) - ("go-github-com-microsoft-hcsshim-test-0.0.0-20210227013316-43a75bb4edd3" - ,go-github-com-microsoft-hcsshim-test-0.0.0-20210227013316-43a75bb4edd3) - ("go-github-com-microsoft-hcsshim-0.8.15" - ,go-github-com-microsoft-hcsshim-0.8.15) - ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" - ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3) - ("go-github-com-burntsushi-toml-0.3.1" - ,go-github-com-burntsushi-toml-0.3.1))) - (home-page "https://github.com/containerd/containerd") - (synopsis "Now Recruiting") - (description - "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") - (license license:asl2.0))) - -(define-public go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898 - (package - (name "go-bazil-org-fuse") - (version "0.0.0-20160811212531-371fbbdaa898") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/bazil/fuse") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1x5p301py7mcxgwklfm6pqqkzssln0nfzllng49pnk60m03ilp4w")))) - (build-system go-build-system) - (arguments '(#:import-path "bazil.org/fuse")) - (home-page "https://bazil.org/fuse") - (synopsis "bazil.org/fuse -- Filesystems in Go") - (description - "Package fuse enables writing FUSE file systems on Linux and FreeBSD. -") - (license #f))) - -(define-public go-github-com-sirupsen-logrus-1.7.0 - (package - (name "go-github-com-sirupsen-logrus") - (version "1.7.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sirupsen/logrus") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1a59pw7zimvm8k423iq9l4f4qjj1ia1xc6pkmhwl2mxc46y2n442")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/sirupsen/logrus")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037" - ,go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037) - ("go-github-com-stretchr-testify-1.2.2" - ,go-github-com-stretchr-testify-1.2.2) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/sirupsen/logrus") - (synopsis "Logrus") - (description - "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. -") - (license license:expat))) - -(define-public go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee - (package - (name "go-github-com-spf13-cobra") - (version "0.0.2-0.20171109065643-2da4a54c5cee") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/spf13/cobra") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18qbrp774fx6dyibjcy9snld705gslq6z2sql1biyjahxkm1vpfy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/spf13/cobra")) - (home-page "https://github.com/spf13/cobra") - (synopsis "Table of Contents") - (description - "Package cobra is a commander providing a simple interface to create powerful modern CLI interfaces. -In addition to providing an interface, Cobra simultaneously provides a controller to organize your application code. -") - (license license:asl2.0))) - -(define-public go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95 - (package - (name "go-github-com-spf13-pflag") - (version "1.0.1-0.20171106142849-4c012f6dcd95") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/spf13/pflag") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0plmm67lkm25ir0lczwh7hmanyilrs1vxmbp8a0dyr282ji1dqm5")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/spf13/pflag")) - (home-page "https://github.com/spf13/pflag") - (synopsis "Description") - (description - "Package pflag is a drop-in replacement for Go's flag package, implementing -POSIX/GNU-style --flags. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20201201145000-ef89a241ccb3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0a8myxx2mvdr77a003gpy5jmdzbxbnrf5zppmpl4za4sspxlmwif")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e - (package - (name "go-github-com-containerd-continuity") - (version "0.0.0-20210208174643-50096c924a4e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/continuity") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1drmxbb2l4z12b19dq3vvh1ss7b4z8fq1n5g6c8ln13mjgz6cq48")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/continuity")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3" - ,go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3) - ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" - ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) - ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" - ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) - ("go-github-com-stretchr-testify-1.4.0" - ,go-github-com-stretchr-testify-1.4.0) - ("go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95" - ,go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95) - ("go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee" - ,go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee) - ("go-github-com-sirupsen-logrus-1.7.0" - ,go-github-com-sirupsen-logrus-1.7.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-go-digest-1.0.0" - ,go-github-com-opencontainers-go-digest-1.0.0) - ("go-github-com-inconshreveable-mousetrap-1.0.0" - ,go-github-com-inconshreveable-mousetrap-1.0.0) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0) - ("go-github-com-dustin-go-humanize-1.0.0" - ,go-github-com-dustin-go-humanize-1.0.0) - ("go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898" - ,go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898))) - (home-page "https://github.com/containerd/continuity") - (synopsis "continuity") - (description - "This package provides a transport-agnostic, filesystem metadata manifest system") - (license license:asl2.0))) - -(define-public go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible - (package - (name "go-github-com-mistifyio-go-zfs") - (version "2.1.2-0.20190413222219-f784269be439+incompatible") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mistifyio/go-zfs") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0x6ncjaqjm06c615kbwkqbd5wcdg9nmrbl7wm4w185s6kq6l8fpw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mistifyio/go-zfs")) - (home-page "https://github.com/mistifyio/go-zfs") - (synopsis "Go Wrapper for ZFS") - (description - "Package zfs provides wrappers around the ZFS command line tools. -") - (license license:asl2.0))) - -(define-public go-github-com-containerd-zfs-1.0.0 - (package - (name "go-github-com-containerd-zfs") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/zfs") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "10shqmcdxlxxi90kwgs5cljz12589yz5cm78aimv9m4cgwiv3wl3")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/zfs")) - (propagated-inputs - `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible" - ,go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible) - ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" - ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) - ("go-github-com-containerd-containerd-1.5.0-beta.3" - ,go-github-com-containerd-containerd-1.5.0-beta.3))) - (home-page "https://github.com/containerd/zfs") - (synopsis "ZFS snapshotter plugin") - (description "ZFS snapshotter plugin for containerd.") - (license license:asl2.0))) - -(define-public go-github-com-microsoft-go-winio-0.4.11 - (package - (name "go-github-com-microsoft-go-winio") - (version "0.4.11") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/microsoft/go-winio") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "14y1gryr3pb3zy09v2g8dh89m363rfd9sch0wgbabh531hfx72vn")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/Microsoft/go-winio")) - (home-page "https://github.com/Microsoft/go-winio") - (synopsis "go-winio") - (description - "This repository contains utilities for efficiently performing Win32 IO operations in -Go. Currently, this is focused on accessing named pipes and other file handles, and -for using named pipes as a net transport.") - (license license:expat))) - -(define-public go-github-com-microsoft-hcsshim-0.8.6 - (package - (name "go-github-com-microsoft-hcsshim") - (version "0.8.6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/microsoft/hcsshim") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "05arx8y4b6rvhjcnwizhc8svzab3ld0njkgj8vijgs27az84z6pw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/Microsoft/hcsshim")) - (home-page "https://github.com/Microsoft/hcsshim") - (synopsis "hcsshim") - (description - "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") - (license license:expat))) - -(define-public go-github-com-alexflint-go-filemutex-0.0.0-20171022225611-72bdc8eae2ae - (package - (name "go-github-com-alexflint-go-filemutex") - (version "0.0.0-20171022225611-72bdc8eae2ae") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/alexflint/go-filemutex") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "082y6y9zv40q3kaqvsv6fyaw2fc42j0sn9z0dl9rbiz4szixj3c4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/alexflint/go-filemutex")) - (home-page "https://github.com/alexflint/go-filemutex") - (synopsis "FileMutex") - (description - "FileMutex is similar to @code{sync.RWMutex}, but also synchronizes across processes. -On Linux, OSX, and other POSIX systems it uses the flock system call. On windows -it uses the LockFileEx and UnlockFileEx system calls.") - (license license:expat))) - -(define-public go-github-com-buger-jsonparser-0.0.0-20180808090653-f4dd9f5a6b44 - (package - (name "go-github-com-buger-jsonparser") - (version "0.0.0-20180808090653-f4dd9f5a6b44") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/buger/jsonparser") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12qa2n33s7yz88ywpr3k9kg3b4gm6rqgnv28iyikyxw8h5jascz5")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/buger/jsonparser")) - (home-page "https://github.com/buger/jsonparser") - (synopsis - "Alternative JSON parser for Go (10x times faster standard library)") - (description - "It does not require you to know the structure of the payload (eg. create structs), and allows accessing fields by providing the path to them. It is up to @strong{10 times faster} than standard @code{encoding/json} package (depending on payload size and usage), @strong{allocates no memory}. See benchmarks below.") - (license license:expat))) - -(define-public go-github-com-containernetworking-cni-0.8.1 - (package - (name "go-github-com-containernetworking-cni") - (version "0.8.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containernetworking/cni") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ydzsiq6kfwjghf5dd4ld2rv3cxgbjq6c1523jxmib1phwf0s75z")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containernetworking/cni")) - (home-page "https://github.com/containernetworking/cni") - (synopsis "CNI - the Container Network Interface") - (description - "CNI (), a @url{https://cncf.io,Cloud Native Computing Foundation} project, consists of a specification and libraries for writing plugins to configure network interfaces in Linux containers, along with a number of supported plugins. -CNI concerns itself only with network connectivity of containers and removing allocated resources when the container is deleted. -Because of this focus, CNI has a wide range of support and the specification is simple to implement.") - (license license:asl2.0))) - -(define-public go-github-com-coreos-go-iptables-0.5.0 - (package - (name "go-github-com-coreos-go-iptables") - (version "0.5.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/coreos/go-iptables") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0syxjad9b3d19sjy7cy7zjpx5bx60yvbhidz8r9cdv43iqadxmp7")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/coreos/go-iptables")) - (home-page "https://github.com/coreos/go-iptables") - (synopsis "go-iptables") - (description "Go bindings for iptables utility.") - (license license:asl2.0))) - -(define-public go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c - (package - (name "go-github-com-d2g-dhcp4") - (version "0.0.0-20170904100407-a1d1b6c41b1c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/d2g/dhcp4") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "191hzw6yqzkm042h6miyycq3g0zrhqjhhpl27f8vhwzp4wanasiz")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/d2g/dhcp4")) - (home-page "https://github.com/d2g/dhcp4") - (synopsis "DHCP4 - A DHCP library written in Go.") - (description - "Warning: This library is still being developed. Function calls will change.") - (license license:bsd-3))) - -(define-public go-github-com-d2g-dhcp4client-1.0.0 - (package - (name "go-github-com-d2g-dhcp4client") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/d2g/dhcp4client") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1n4qrn7xsgvnshmddq56hr8g2si5vfmxi0wnp0w71lmdfsxvvx0q")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/d2g/dhcp4client")) - (home-page "https://github.com/d2g/dhcp4client") - (synopsis "dhcp4client") - (description "DHCP Client") - (license license:mpl2.0))) - -(define-public go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5 - (package - (name "go-github-com-d2g-dhcp4server") - (version "0.0.0-20181031114812-7d4a0a7f59a5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/d2g/dhcp4server") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "03ibq32flr74pxfly1yca9qicb6f15xgl159jjg3svgnzfjpblwl")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/d2g/dhcp4server")) - (home-page "https://github.com/d2g/dhcp4server") - (synopsis "dhcp4server") - (description "DHCP Server") - (license license:mpl2.0))) - -(define-public go-github-com-d2g-hardwareaddr-0.0.0-20190221164911-e7d9fbe030e4 - (package - (name "go-github-com-d2g-hardwareaddr") - (version "0.0.0-20190221164911-e7d9fbe030e4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/d2g/hardwareaddr") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "09nm5py9xbb9klwhzqkf6786i3b59ynba78xkrv9jx4ari7ibh8q")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/d2g/hardwareaddr")) - (home-page "https://github.com/d2g/hardwareaddr") - (synopsis "hardwareaddr") - (description "Generate Hardware Addresses") - (license license:mpl2.0))) - -(define-public go-github-com-godbus-dbus-0.0.0-20180201030542-885f9cc04c9c - (package - (name "go-github-com-godbus-dbus") - (version "0.0.0-20180201030542-885f9cc04c9c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/godbus/dbus") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0wjpaj4vr5lvpnwc5faf3qizd7zd2v9yq0fm0558wap1hiyqb8x8")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/godbus/dbus")) - (home-page "https://github.com/godbus/dbus") - (synopsis "dbus") - (description - "Package dbus implements bindings to the D-Bus message bus system. -") - (license license:bsd-2))) - -(define-public go-github-com-j-keck-arping-0.0.0-20160618110441-2cf9dc699c56 - (package - (name "go-github-com-j-keck-arping") - (version "0.0.0-20160618110441-2cf9dc699c56") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/j-keck/arping") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1bid8mpx3j4546ni0a6q5xyz7hb854g95qnxqmg5jzs9vrcird3c")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/j-keck/arping")) - (home-page "https://github.com/j-keck/arping") - (synopsis "arping") - (description - "Package arping is a native go library to ping a host per arp datagram, or query a host mac address -") - (license license:expat))) - -(define-public go-github-com-mattn-go-shellwords-1.0.3 - (package - (name "go-github-com-mattn-go-shellwords") - (version "1.0.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mattn/go-shellwords") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1pg7pl25wvpl2dbpyrv9p1r7prnqimxlf6136vn0dfm54j2x4mnr")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mattn/go-shellwords")) - (home-page "https://github.com/mattn/go-shellwords") - (synopsis "go-shellwords") - (description "Parse line as shell words.") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20190904154756-749cb33beabd - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190904154756-749cb33beabd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0dm3257q3rv2kyn5lmqqim2fqg634v6rhrqq4glvbk4wx4l3v337")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-nxadm-tail-1.4.4 - (package - (name "go-github-com-nxadm-tail") - (version "1.4.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/nxadm/tail") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1czmwqii0fc8v3ar5bwqpfanprkxg19waly405zlvcflzvj53wwc")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/nxadm/tail")) - (propagated-inputs - `(("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" - ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) - ("go-golang-org-x-sys-0.0.0-20190904154756-749cb33beabd" - ,go-golang-org-x-sys-0.0.0-20190904154756-749cb33beabd) - ("go-github-com-fsnotify-fsnotify-1.4.7" - ,go-github-com-fsnotify-fsnotify-1.4.7))) - (home-page "https://github.com/nxadm/tail") - (synopsis "tail functionality in Go") - (description - "nxadm/tail provides a Go library that emulates the features of the BSD `tail` -program. The library comes with full support for truncation/move detection as -it is designed to work with log rotation tools. The library works on all -operating systems supported by Go, including POSIX systems like Linux and -*BSD, and MS Windows. Go 1.9 is the oldest compiler release supported. -") - (license license:expat))) - -(define-public go-github-com-onsi-gomega-1.7.1 - (package - (name "go-github-com-onsi-gomega") - (version "1.7.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/onsi/gomega") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "06p3x0910cdaa64l7d44s728d4j3yhps315dlcvrbjzhljjj7mam")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/onsi/gomega")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.4" ,go-gopkg-in-yaml-v2-2.2.4) - ("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" - ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) - ("go-gopkg-in-fsnotify-v1-1.4.7" ,go-gopkg-in-fsnotify-v1-1.4.7) - ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e" - ,go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e) - ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" - ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) - ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" - ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) - ("go-github-com-onsi-ginkgo-1.6.0" ,go-github-com-onsi-ginkgo-1.6.0) - ("go-github-com-hpcloud-tail-1.0.0" ,go-github-com-hpcloud-tail-1.0.0) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0) - ("go-github-com-fsnotify-fsnotify-1.4.7" - ,go-github-com-fsnotify-fsnotify-1.4.7))) - (home-page "https://github.com/onsi/gomega") - (synopsis ": a BDD Testing Framework for Golang") - (description - "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library. -") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20191120155948-bd437916bb0e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1i8x26frmlin55k69k936zd1rp5sqnq14y5ms4rkxbfzhasdm2rx")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-onsi-ginkgo-1.12.1 - (package - (name "go-github-com-onsi-ginkgo") - (version "1.12.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/onsi/ginkgo") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0xs9724l2b0bwjwrvw5cs3akxaw0n1j5kyxrb1ggfsdjz0zmjcxh")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/onsi/ginkgo")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e" - ,go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e) - ("go-github-com-onsi-gomega-1.7.1" ,go-github-com-onsi-gomega-1.7.1) - ("go-github-com-nxadm-tail-1.4.4" ,go-github-com-nxadm-tail-1.4.4))) - (home-page "https://github.com/onsi/ginkgo") - (synopsis "Ginkgo 2.0 Release Candidate is available!") - (description "Ginkgo is a BDD-style testing framework for Golang -") - (license license:expat))) - -(define-public go-golang-org-x-net-0.0.0-20201006153459-a7d1128ccaa0 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20201006153459-a7d1128ccaa0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1iqqq7s95b2a29bspfxv68qnby8vwjvy9f8gl2262p6f9hhp21d2")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) - ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" - ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) - ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" - ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-github-com-onsi-gomega-1.10.3 - (package - (name "go-github-com-onsi-gomega") - (version "1.10.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/onsi/gomega") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1jvp5wlny86ncsqak5rz70qfn61y3ajc64w0hrj4840zgh90zb06")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/onsi/gomega")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.3.0" ,go-gopkg-in-yaml-v2-2.3.0) - ("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) - ("go-golang-org-x-net-0.0.0-20201006153459-a7d1128ccaa0" - ,go-golang-org-x-net-0.0.0-20201006153459-a7d1128ccaa0) - ("go-github-com-onsi-ginkgo-1.12.1" ,go-github-com-onsi-ginkgo-1.12.1) - ("go-github-com-golang-protobuf-1.4.2" - ,go-github-com-golang-protobuf-1.4.2))) - (home-page "https://github.com/onsi/gomega") - (synopsis ": a BDD Testing Framework for Golang") - (description - "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library. -") - (license license:expat))) - -(define-public go-github-com-safchain-ethtool-0.0.0-20190326074333-42ed695e3de8 - (package - (name "go-github-com-safchain-ethtool") - (version "0.0.0-20190326074333-42ed695e3de8") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/safchain/ethtool") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0n5hkrzc1bh46nidcssx4539kvcmgj501v3kzh2pljpg27509daj")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/safchain/ethtool")) - (home-page "https://github.com/safchain/ethtool") - (synopsis "ethtool go package") - (description - "Package ethtool aims to provide a library giving a simple access to the -Linux SIOCETHTOOL ioctl operations. It can be used to retrieve informations -from a network device like statistics, driver related informations or -even the peer of a VETH interface. -") - (license license:asl2.0))) - -(define-public go-github-com-sirupsen-logrus-1.0.6 - (package - (name "go-github-com-sirupsen-logrus") - (version "1.0.6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sirupsen/logrus") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "029irw2lsbqi944gdrbkwdw0m2794sqni4g21gsnmz142hbzds8c")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/sirupsen/logrus")) - (home-page "https://github.com/sirupsen/logrus") - (synopsis "Logrus") - (description - "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. -") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20200217220822-9197077df867 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200217220822-9197077df867") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1270yyiqzlgrsygp2j0qavh4agm4xjv3ljfpk4wgqgmg4ph1lmx1")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-vishvananda-netns-0.0.0-20200728191858-db3c7e526aae - (package - (name "go-github-com-vishvananda-netns") - (version "0.0.0-20200728191858-db3c7e526aae") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/vishvananda/netns") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1gx41r06by67q5yyyvjpr0cyqqs2pcksfaqxy0s36cx4vpjn5x9r")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/vishvananda/netns")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20200217220822-9197077df867" - ,go-golang-org-x-sys-0.0.0-20200217220822-9197077df867))) - (home-page "https://github.com/vishvananda/netns") - (synopsis "netns - network namespaces in go") - (description - "Package netns allows ultra-simple network namespace handling. NsHandles -can be retrieved and set. Note that the current namespace is thread -local so actions that set and reset namespaces should use LockOSThread -to make sure the namespace doesn't change due to a goroutine switch. -It is best to close NsHandles when you are done with them. This can be -accomplished via a `defer ns.Close()` on the handle. Changing namespaces -requires elevated privileges, so in most cases this code needs to be run -as root. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-sys-0.0.0-20200728102440-3e129f6d46b1 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200728102440-3e129f6d46b1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "02wcaghvpysqijiqsiimk52vma7lx99g5kvdid2r1qsf9hmwgvy2")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-vishvananda-netlink-1.1.1-0.20201029203352-d40f9887b852 - (package - (name "go-github-com-vishvananda-netlink") - (version "1.1.1-0.20201029203352-d40f9887b852") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/vishvananda/netlink") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1aq13npm7vd153vxrk1vhsg36r2g9hrh21cvk422ssrf57qy2fsj")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/vishvananda/netlink")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20200728102440-3e129f6d46b1" - ,go-golang-org-x-sys-0.0.0-20200728102440-3e129f6d46b1) - ("go-github-com-vishvananda-netns-0.0.0-20200728191858-db3c7e526aae" - ,go-github-com-vishvananda-netns-0.0.0-20200728191858-db3c7e526aae))) - (home-page "https://github.com/vishvananda/netlink") - (synopsis "netlink - netlink library for go") - (description - "Package netlink provides a simple library for netlink. Netlink is -the interface a user-space program in linux uses to communicate with -the kernel. It can be used to add and remove interfaces, set up ip -addresses and routes, and confiugre ipsec. Netlink communication -requires elevated privileges, so in most cases this code needs to -be run as root. The low level primitives for netlink are contained -in the nl subpackage. This package attempts to provide a high-level -interface that is loosly modeled on the iproute2 cli. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-sys-0.0.0-20201117170446-d9b008d0a637 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20201117170446-d9b008d0a637") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "06pp1nrhzx6nm6rwwzm0xzf8bs3r1mfsrkclyhlhnr7x5r0a0ppi")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-gopkg-in-airbrake-gobrake-v2-2.0.9 - (package - (name "go-gopkg-in-airbrake-gobrake-v2") - (version "2.0.9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/airbrake/gobrake.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1x06f7n7qlyzqgyz0sdfcidf3w4ldn6zs6qx2mhibggk2z4whcjw")))) - (build-system go-build-system) - (arguments - '(#:import-path - "gopkg.in/airbrake/gobrake.v2" - #:unpack-path - "gopkg.in/airbrake/gobrake.v2")) - (home-page "https://gopkg.in/airbrake/gobrake.v2") - (synopsis "Airbrake Golang Notifier") - (description - "You can use @url{https://github.com/airbrake/glog,glog fork} to send your logs to Airbrake.") - (license license:bsd-3))) - -(define-public go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2 - (package - (name "go-gopkg-in-gemnasium-logrus-airbrake-hook-v2") - (version "2.1.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/gemnasium/logrus-airbrake-hook.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0sbg0dn6cysmf8f2bi209jwl4jnpiwp4rdghnxlzirw3c32ms5y5")))) - (build-system go-build-system) - (arguments - '(#:import-path - "gopkg.in/gemnasium/logrus-airbrake-hook.v2" - #:unpack-path - "gopkg.in/gemnasium/logrus-airbrake-hook.v2")) - (home-page "https://gopkg.in/gemnasium/logrus-airbrake-hook.v2") - (synopsis "Airbrake Hook for Logrus") - (description - "Use this hook to send your errors to @url{https://airbrake.io/,Airbrake}. -This hook is using the @url{https://github.com/airbrake/gobrake,official airbrake go package}, and will hit the api V3. -The hook is synchronous and will send the error for @code{log.Error}, @code{log.Fatal} and @code{log.Panic} levels.") - (license license:expat))) - -(define-public go-github-com-containernetworking-plugins-0.9.1 - (package - (name "go-github-com-containernetworking-plugins") - (version "0.9.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containernetworking/plugins") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "17rafngfa9b0ybs3j4lvjjqdva6jkamhnbb1n0qnv685g0asvqwz")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containernetworking/plugins")) - (propagated-inputs - `(("go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2" - ,go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2) - ("go-gopkg-in-airbrake-gobrake-v2-2.0.9" - ,go-gopkg-in-airbrake-gobrake-v2-2.0.9) - ("go-golang-org-x-sys-0.0.0-20201117170446-d9b008d0a637" - ,go-golang-org-x-sys-0.0.0-20201117170446-d9b008d0a637) - ("go-github-com-vishvananda-netlink-1.1.1-0.20201029203352-d40f9887b852" - ,go-github-com-vishvananda-netlink-1.1.1-0.20201029203352-d40f9887b852) - ("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0) - ("go-github-com-sirupsen-logrus-1.0.6" - ,go-github-com-sirupsen-logrus-1.0.6) - ("go-github-com-safchain-ethtool-0.0.0-20190326074333-42ed695e3de8" - ,go-github-com-safchain-ethtool-0.0.0-20190326074333-42ed695e3de8) - ("go-github-com-onsi-gomega-1.10.3" ,go-github-com-onsi-gomega-1.10.3) - ("go-github-com-onsi-ginkgo-1.12.1" ,go-github-com-onsi-ginkgo-1.12.1) - ("go-github-com-mattn-go-shellwords-1.0.3" - ,go-github-com-mattn-go-shellwords-1.0.3) - ("go-github-com-j-keck-arping-0.0.0-20160618110441-2cf9dc699c56" - ,go-github-com-j-keck-arping-0.0.0-20160618110441-2cf9dc699c56) - ("go-github-com-godbus-dbus-0.0.0-20180201030542-885f9cc04c9c" - ,go-github-com-godbus-dbus-0.0.0-20180201030542-885f9cc04c9c) - ("go-github-com-d2g-hardwareaddr-0.0.0-20190221164911-e7d9fbe030e4" - ,go-github-com-d2g-hardwareaddr-0.0.0-20190221164911-e7d9fbe030e4) - ("go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5" - ,go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5) - ("go-github-com-d2g-dhcp4client-1.0.0" - ,go-github-com-d2g-dhcp4client-1.0.0) - ("go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c" - ,go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c) - ("go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7" - ,go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7) - ("go-github-com-coreos-go-iptables-0.5.0" - ,go-github-com-coreos-go-iptables-0.5.0) - ("go-github-com-containernetworking-cni-0.8.1" - ,go-github-com-containernetworking-cni-0.8.1) - ("go-github-com-buger-jsonparser-0.0.0-20180808090653-f4dd9f5a6b44" - ,go-github-com-buger-jsonparser-0.0.0-20180808090653-f4dd9f5a6b44) - ("go-github-com-alexflint-go-filemutex-0.0.0-20171022225611-72bdc8eae2ae" - ,go-github-com-alexflint-go-filemutex-0.0.0-20171022225611-72bdc8eae2ae) - ("go-github-com-microsoft-hcsshim-0.8.6" - ,go-github-com-microsoft-hcsshim-0.8.6) - ("go-github-com-microsoft-go-winio-0.4.11" - ,go-github-com-microsoft-go-winio-0.4.11))) - (home-page "https://github.com/containernetworking/plugins") - (synopsis "Plugins") - (description - "Some CNI network plugins, maintained by the containernetworking team. For more information, see the @url{https://www.cni.dev,CNI website}.") - (license license:asl2.0))) - -(define-public go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c - (package - (name "go-github-com-docker-go-events") - (version "0.0.0-20190806004212-e31b211e4f1c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/docker/go-events") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "09gm4z43g23isbklabnsnfb87bwf8kjdgvvyi3vfjq2bqdjdg7cl")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/docker/go-events")) - (home-page "https://github.com/docker/go-events") - (synopsis "Docker Events Package") - (description - "The Docker @code{events} package implements a composable event distribution package -for Go.") - (license license:asl2.0))) - -(define-public go-github-com-prometheus-common-0.6.0 - (package - (name "go-github-com-prometheus-common") - (version "0.6.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/common") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1q16br348117ffycxdwsldb0i39p34miclfa8z93k6vjwnrqbh2l")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/common")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1) - ("go-gopkg-in-alecthomas-kingpin-v2-2.2.6" - ,go-gopkg-in-alecthomas-kingpin-v2-2.2.6) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980" - ,go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980) - ("go-github-com-sirupsen-logrus-1.2.0" - ,go-github-com-sirupsen-logrus-1.2.0) - ("go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90" - ,go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90) - ("go-github-com-prometheus-client-golang-1.0.0" - ,go-github-com-prometheus-client-golang-1.0.0) - ("go-github-com-pkg-errors-0.8.0" ,go-github-com-pkg-errors-0.8.0) - ("go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223" - ,go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223) - ("go-github-com-matttproud-golang-protobuf-extensions-1.0.1" - ,go-github-com-matttproud-golang-protobuf-extensions-1.0.1) - ("go-github-com-julienschmidt-httprouter-1.2.0" - ,go-github-com-julienschmidt-httprouter-1.2.0) - ("go-github-com-golang-protobuf-1.3.1" - ,go-github-com-golang-protobuf-1.3.1) - ("go-github-com-go-logfmt-logfmt-0.4.0" - ,go-github-com-go-logfmt-logfmt-0.4.0) - ("go-github-com-go-kit-kit-0.8.0" ,go-github-com-go-kit-kit-0.8.0))) - (home-page "https://github.com/prometheus/common") - (synopsis "Common") - (description - "This repository contains Go libraries that are shared across Prometheus -components and libraries. They are considered internal to Prometheus, without -any stability guarantees for external usage.") - (license license:asl2.0))) - -(define-public go-github-com-prometheus-procfs-0.0.3 - (package - (name "go-github-com-prometheus-procfs") - (version "0.0.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/procfs") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18c4m795fwng8f8qa395f3crvamlbk5y5afk8b5rzyisnmjq774y")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/procfs")) - (propagated-inputs - `(("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" - ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) - ("go-github-com-google-go-cmp-0.3.0" - ,go-github-com-google-go-cmp-0.3.0))) - (home-page "https://github.com/prometheus/procfs") - (synopsis "procfs") - (description - "Package procfs provides functions to retrieve system, kernel and process -metrics from the pseudo-filesystem proc. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-sys-0.0.0-20190801041406-cbf593c0f2f3 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190801041406-cbf593c0f2f3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1zmcmckinhclcwlvznjqvs31aww8jnf6pjm9is0nq8lqlvipg5ls")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-prometheus-client-golang-1.1.0 - (package - (name "go-github-com-prometheus-client-golang") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/client_golang") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1r0irxkmfnj6ininb06w6ybknini5lz02idawrbkk2i5lq1qcvvf")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/client_golang")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190801041406-cbf593c0f2f3" - ,go-golang-org-x-sys-0.0.0-20190801041406-cbf593c0f2f3) - ("go-github-com-prometheus-procfs-0.0.3" - ,go-github-com-prometheus-procfs-0.0.3) - ("go-github-com-prometheus-common-0.6.0" - ,go-github-com-prometheus-common-0.6.0) - ("go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90" - ,go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90) - ("go-github-com-json-iterator-go-1.1.7" - ,go-github-com-json-iterator-go-1.1.7) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2) - ("go-github-com-beorn7-perks-1.0.1" - ,go-github-com-beorn7-perks-1.0.1))) - (home-page "https://github.com/prometheus/client_golang") - (synopsis "Prometheus Go client library") - (description - "This is the @url{http://golang.org,Go} client library for -@url{http://prometheus.io,Prometheus}. It has two separate parts, one for -instrumenting application code, and one for creating clients that talk to the -Prometheus HTTP API.") - (license license:asl2.0))) - -(define-public go-github-com-docker-go-metrics-0.0.1 - (package - (name "go-github-com-docker-go-metrics") - (version "0.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/docker/go-metrics") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1b6f1889chmwlsgrqxylnks2jic16j2dqhsdd1dvaklk48ky95ga")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/docker/go-metrics")) - (propagated-inputs - `(("go-github-com-prometheus-client-golang-1.1.0" - ,go-github-com-prometheus-client-golang-1.1.0))) - (home-page "https://github.com/docker/go-metrics") - (synopsis "go-metrics") - (description - "This package is small wrapper around the prometheus go client to help enforce convention and best practices for metrics collection in Docker projects.") - (license (list license:asl2.0 license:cc-by-sa4.0)))) - -(define-public go-github-com-google-uuid-1.2.0 - (package - (name "go-github-com-google-uuid") - (version "1.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/uuid") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "08wqig98w23cg2ngjijhgm6s0mdayb95awa3cn3bs69lg20gryac")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/uuid")) - (home-page "https://github.com/google/uuid") - (synopsis "uuid") - (description "Package uuid generates and inspects UUIDs. -") - (license license:bsd-3))) - -(define-public go-github-com-hashicorp-errwrap-1.0.0 - (package - (name "go-github-com-hashicorp-errwrap") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/errwrap") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0slfb6w3b61xz04r32bi0a1bygc82rjzhqkxj2si2074wynqnr1c")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/errwrap")) - (home-page "https://github.com/hashicorp/errwrap") - (synopsis "errwrap") - (description - "Package errwrap implements methods to formalize error wrapping in Go. -") - (license license:mpl2.0))) - -(define-public go-github-com-hashicorp-go-multierror-1.0.0 - (package - (name "go-github-com-hashicorp-go-multierror") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/go-multierror") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "00nyn8llqzbfm8aflr9kwsvpzi4kv8v45c141v88xskxp5xf6z49")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/go-multierror")) - (propagated-inputs - `(("go-github-com-hashicorp-errwrap-1.0.0" - ,go-github-com-hashicorp-errwrap-1.0.0))) - (home-page "https://github.com/hashicorp/go-multierror") - (synopsis "go-multierror") - (description - "@code{go-multierror} is a package for Go that provides a mechanism for -representing a list of @code{error} values as a single @code{error}.") - (license license:mpl2.0))) - -(define-public go-gopkg-in-yaml-v2-2.3.0 - (package - (name "go-gopkg-in-yaml-v2") - (version "2.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1md0hlyd9s6myv3663i9l59y74n4xjazifmmyxn43g86fgkc5lzj")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v2") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language. -") - (license license:asl2.0))) - -(define-public go-github-com-imdario-mergo-0.3.12 - (package - (name "go-github-com-imdario-mergo") - (version "0.3.12") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/imdario/mergo") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "15s6807vcm7xq4l6my7rnw1i7x57712jvdidjli5bip79jfaxw90")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/imdario/mergo")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.3.0" ,go-gopkg-in-yaml-v2-2.3.0))) - (home-page "https://github.com/imdario/mergo") - (synopsis "Mergo") - (description - "This package provides a helper to merge structs and maps in Golang. Useful for configuration default values, avoiding messy if-statements. -") - (license license:bsd-3))) - -(define-public go-github-com-klauspost-compress-1.11.13 - (package - (name "go-github-com-klauspost-compress") - (version "1.11.13") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/klauspost/compress") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19l2rbh6vg0ly4qp2gn5lf39ijggf7asav7lxziikkhjqqb4223j")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/klauspost/compress")) - (home-page "https://github.com/klauspost/compress") - (synopsis "compress") - (description "This package provides various compression algorithms.") - (license #f))) - -(define-public go-github-com-moby-locker-1.0.1 - (package - (name "go-github-com-moby-locker") - (version "1.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/moby/locker") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "07rc2c6h35f9mcy81jp382a030f6xmcifi9n5jnlayybfwxmpjir")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/moby/locker")) - (home-page "https://github.com/moby/locker") - (synopsis "Locker") - (description - "Package locker provides a mechanism for creating finer-grained locking to help -free up more global locks to handle other tasks. -") - (license license:asl2.0))) - -(define-public go-github-com-opencontainers-go-digest-1.0.0 - (package - (name "go-github-com-opencontainers-go-digest") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/go-digest") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0i5acjajvr6hi9zb7gxwifd8w28y884cv7cx36adj8lngj647xbi")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/go-digest")) - (home-page "https://github.com/opencontainers/go-digest") - (synopsis "go-digest") - (description - "Package digest provides a generalized type to opaquely represent message -digests and their operations within the registry. The Digest type is -designed to serve as a flexible identifier in a content-addressable system. -More importantly, it provides tools and wrappers to work with -hash.Hash-based digests with little effort. -") - (license (list license:asl2.0 license:cc-by-sa4.0)))) - -(define-public go-github-com-opencontainers-image-spec-1.0.1 - (package - (name "go-github-com-opencontainers-image-spec") - (version "1.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/image-spec") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "03dvbj3dln8c55v9gp79mgmz2yi2ws3r08iyz2fk41y3i22iaw1q")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/image-spec")) - (home-page "https://github.com/opencontainers/image-spec") - (synopsis "OCI Image Format Specification") - (description - "The OCI Image Format project creates and maintains the software shipping container image format spec (OCI Image Format).") - (license license:asl2.0))) - -(define-public go-github-com-checkpoint-restore-go-criu-v5-5.0.0 - (package - (name "go-github-com-checkpoint-restore-go-criu-v5") - (version "5.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/checkpoint-restore/go-criu") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "07dal5a9y43azkkh61jf6s81h7anbl17drkh2mal9mzcsi8wa2z8")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/checkpoint-restore/go-criu/v5")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.23.0" - ,go-google-golang-org-protobuf-1.23.0) - ("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" - ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) - ("go-github-com-golang-protobuf-1.4.3" - ,go-github-com-golang-protobuf-1.4.3))) - (home-page "https://github.com/checkpoint-restore/go-criu") - (synopsis "go-criu -- Go bindings for CRIU") - (description - "This repository provides Go bindings for @url{https://criu.org/,CRIU}. The code is based on the Go-based PHaul -implementation from the CRIU repository. For easier inclusion into other Go projects the -CRIU Go bindings have been moved to this repository.") - (license license:asl2.0))) - -(define-public go-github-com-kr-pretty-0.2.1 - (package - (name "go-github-com-kr-pretty") - (version "0.2.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/pretty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0vzfz06y9q8gs2nxx0kys0591vzp78k0fvpb8digi5n15h3b25hy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/pretty")) - (propagated-inputs - `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) - (home-page "https://github.com/kr/pretty") - (synopsis #f) - (description - "Package pretty provides pretty-printing for Go values. This is -useful during debugging, to avoid wrapping long output lines in -the terminal. -") - (license license:expat))) - -(define-public go-github-com-frankban-quicktest-1.11.3 - (package - (name "go-github-com-frankban-quicktest") - (version "1.11.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/frankban/quicktest") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0d5njmwkfq2809vlimnlvy8ir6kln0c4cgdwr680fwsclpbr43qs")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/frankban/quicktest")) - (propagated-inputs - `(("go-github-com-kr-pretty-0.2.1" ,go-github-com-kr-pretty-0.2.1) - ("go-github-com-google-go-cmp-0.5.4" - ,go-github-com-google-go-cmp-0.5.4))) - (home-page "https://github.com/frankban/quicktest") - (synopsis "quicktest") - (description - "Package quicktest provides a collection of Go helpers for writing tests. -") - (license license:expat))) - -(define-public go-github-com-google-go-cmp-0.5.4 - (package - (name "go-github-com-google-go-cmp") - (version "0.5.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ld9pwb6l22g75g1zpa691l7q9ki7pjgpcqhwgdfr3va1zisr5ci")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") - (license license:bsd-3))) - -(define-public go-github-com-cilium-ebpf-0.6.2 - (package - (name "go-github-com-cilium-ebpf") - (version "0.6.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cilium/ebpf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0x64sg0kyc8bbsp75dpv8g2jfmpdldsshf9ni49jh6rgsnnqhpf8")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/cilium/ebpf")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" - ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) - ("go-github-com-google-go-cmp-0.5.4" - ,go-github-com-google-go-cmp-0.5.4) - ("go-github-com-frankban-quicktest-1.11.3" - ,go-github-com-frankban-quicktest-1.11.3))) - (home-page "https://github.com/cilium/ebpf") - (synopsis "eBPF") - (description "Package ebpf is a toolkit for working with eBPF programs. -") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20210124154548-22da62e12c0c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "17gp3dl75wq3x7j9z1pqgcyvjhvy9jaln1wbscy57al3whdsjp07")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-containerd-console-1.0.2 - (package - (name "go-github-com-containerd-console") - (version "1.0.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/console") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0rxwgq578hphs2ldx1gg6c9fq1qm8rgqfx3vgi2sbrsmxn6m2438")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/console")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" - ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) - (home-page "https://github.com/containerd/console") - (synopsis "console") - (description - "Golang package for dealing with consoles. Light on deps and a simple API.") - (license license:asl2.0))) - -(define-public go-github-com-coreos-go-systemd-v22-22.3.2 - (package - (name "go-github-com-coreos-go-systemd-v22") - (version "22.3.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/coreos/go-systemd") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ndi86b8va84ha93njqgafypz4di7yxfd5r5kf1r0s3y3ghcjajq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/coreos/go-systemd/v22")) - (propagated-inputs - `(("go-github-com-godbus-dbus-v5-5.0.4" - ,go-github-com-godbus-dbus-v5-5.0.4))) - (home-page "https://github.com/coreos/go-systemd") - (synopsis "go-systemd") - (description "Go bindings to systemd. The project has several packages:") - (license license:asl2.0))) - -(define-public go-github-com-cyphar-filepath-securejoin-0.2.2 - (package - (name "go-github-com-cyphar-filepath-securejoin") - (version "0.2.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cyphar/filepath-securejoin") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0id32zjb92wm569m29nfrzz5mw9z1glr3klayr6j134pp4h1sgq4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/cyphar/filepath-securejoin")) - (home-page "https://github.com/cyphar/filepath-securejoin") - (synopsis #f) - (description - "Package securejoin is an implementation of the hopefully-soon-to-be-included -SecureJoin helper that is meant to be part of the \"path/filepath\" package. -The purpose of this project is to provide a PoC implementation to make the -SecureJoin proposal (@url{https://github.com/golang/go/issues/20126,https://github.com/golang/go/issues/20126}) more -tangible. -") - (license license:bsd-3))) - -(define-public go-github-com-docker-go-units-0.4.0 - (package - (name "go-github-com-docker-go-units") - (version "0.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/docker/go-units") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0k8gja8ql4pqg5rzmqvka42vjfs6rzablak87whcnqba6qxpimvz")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/docker/go-units")) - (home-page "https://github.com/docker/go-units") - (synopsis "Introduction") - (description - "Package units provides helper function to parse and print size and time units -in human-readable format. -") - (license license:asl2.0))) - -(define-public go-github-com-godbus-dbus-v5-5.0.4 - (package - (name "go-github-com-godbus-dbus-v5") - (version "5.0.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/godbus/dbus") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0znax8kskb5gmp5fj75w56bc9p7b22wrdswzlh4d04sprlc471yi")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/godbus/dbus/v5")) - (home-page "https://github.com/godbus/dbus") - (synopsis "dbus") - (description - "Package dbus implements bindings to the D-Bus message bus system. -") - (license license:bsd-2))) - -(define-public go-github-com-mrunalp-fileutils-0.5.0 - (package - (name "go-github-com-mrunalp-fileutils") - (version "0.5.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mrunalp/fileutils") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1zrs959gf4zgi6ijwkdn4dcqk0svfblpaikkqy63q30rqz4swm0x")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mrunalp/fileutils")) - (home-page "https://github.com/mrunalp/fileutils") - (synopsis "fileutils") - (description "Collection of utilities for file manipulation in golang") - (license license:asl2.0))) - -(define-public go-github-com-seccomp-libseccomp-golang-0.9.1 - (package - (name "go-github-com-seccomp-libseccomp-golang") - (version "0.9.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/seccomp/libseccomp-golang") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "022c8prvxz0shrifams7lq4xidvkcqg9xi87wjjcpmbikqi72cna")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/seccomp/libseccomp-golang")) - (home-page "https://github.com/seccomp/libseccomp-golang") - (synopsis #f) - (description - "Package seccomp provides bindings for libseccomp, a library wrapping the Linux -seccomp syscall. Seccomp enables an application to restrict system call use -for itself and its children. -") - (license license:bsd-2))) - -(define-public go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635 - (package - (name "go-github-com-syndtr-gocapability") - (version "0.0.0-20200815063812-42c35b437635") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/syndtr/gocapability") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "00zi0k190ydlm9drnafvj9p4cf6axm858wr71pbmq1p3r94iqws4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/syndtr/gocapability")) - (home-page "https://github.com/syndtr/gocapability") - (synopsis #f) - (description #f) - (license license:bsd-2))) - -(define-public go-github-com-vishvananda-netns-0.0.0-20191106174202-0a2b9b5464df - (package - (name "go-github-com-vishvananda-netns") - (version "0.0.0-20191106174202-0a2b9b5464df") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/vishvananda/netns") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1k1zb7pzc4r4wicq7ncspf6zsvq298lvpsq963ibj813shg657xw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/vishvananda/netns")) - (home-page "https://github.com/vishvananda/netns") - (synopsis "netns - network namespaces in go") - (description - "Package netns allows ultra-simple network namespace handling. NsHandles -can be retrieved and set. Note that the current namespace is thread -local so actions that set and reset namespaces should use LockOSThread -to make sure the namespace doesn't change due to a goroutine switch. -It is best to close NsHandles when you are done with them. This can be -accomplished via a `defer ns.Close()` on the handle. Changing namespaces -requires elevated privileges, so in most cases this code needs to be run -as root. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-sys-0.0.0-20190606203320-7fc4e5ec1444 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190606203320-7fc4e5ec1444") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18rv3m1kksv3758aqiaac2l6j334g0bapic6ibsj999agcn7y9fg")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-vishvananda-netlink-1.1.0 - (package - (name "go-github-com-vishvananda-netlink") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/vishvananda/netlink") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1vhl30p1gx636a088ls4h6a0l8jjyfvz79fr5w0qzdrg4qg9h08h")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/vishvananda/netlink")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190606203320-7fc4e5ec1444" - ,go-golang-org-x-sys-0.0.0-20190606203320-7fc4e5ec1444) - ("go-github-com-vishvananda-netns-0.0.0-20191106174202-0a2b9b5464df" - ,go-github-com-vishvananda-netns-0.0.0-20191106174202-0a2b9b5464df))) - (home-page "https://github.com/vishvananda/netlink") - (synopsis "netlink - netlink library for go") - (description - "Package netlink provides a simple library for netlink. Netlink is -the interface a user-space program in linux uses to communicate with -the kernel. It can be used to add and remove interfaces, set up ip -addresses and routes, and confiugre ipsec. Netlink communication -requires elevated privileges, so in most cases this code needs to -be run as root. The low level primitives for netlink are contained -in the nl subpackage. This package attempts to provide a high-level -interface that is loosly modeled on the iproute2 cli. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b - (package - (name "go-golang-org-x-net") - (version "0.0.0-20201224014010-6772e930b67b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0zlr39dxbg0fxfdrc20c4x0pw43n9kz749ssml97cdzqy116p5qa")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) - ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" - ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) - ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" - ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-1.26.0-rc.1 - (package - (name "go-google-golang-org-protobuf") - (version "1.26.0-rc.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1m2jp247qcnix42jncn0q7pwrjgbhiqllb1115hfsz40xfnfhp8j")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.5.5" - ,go-github-com-google-go-cmp-0.5.5))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.5.0 - (package - (name "go-github-com-golang-protobuf") - (version "1.5.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1craaxv34g4g8q3yrv6pr28fx9ihnk7hj5gnbmxcrhcp78423lnf")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.26.0-rc.1" - ,go-google-golang-org-protobuf-1.26.0-rc.1) - ("go-github-com-google-go-cmp-0.5.5" - ,go-github-com-google-go-cmp-0.5.5))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-github-com-google-go-cmp-0.5.5 - (package - (name "go-github-com-google-go-cmp") - (version "0.5.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12fmkdhyv5d4is8s57k78j097zb0phlgnrkqc03agiszxlid69x7")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-1.26.0 - (package - (name "go-google-golang-org-protobuf") - (version "1.26.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0xq6phaps6d0vcv13ga59gzj4306l0ki9kikhmb52h6pq0iwfqlz")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.5.5" - ,go-github-com-google-go-cmp-0.5.5) - ("go-github-com-golang-protobuf-1.5.0" - ,go-github-com-golang-protobuf-1.5.0))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-opencontainers-runc-1.0.2 - (package - (name "go-github-com-opencontainers-runc") - (version "1.0.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/runc") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1bpckghjah0rczciw1a1ab8z718lb2d3k4mjm4zb45lpm3njmrcp")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/runc")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.26.0" - ,go-google-golang-org-protobuf-1.26.0) - ("go-golang-org-x-sys-0.0.0-20210426230700-d19ff857e887" - ,go-golang-org-x-sys-0.0.0-20210426230700-d19ff857e887) - ("go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b" - ,go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b) - ("go-github-com-vishvananda-netlink-1.1.0" - ,go-github-com-vishvananda-netlink-1.1.0) - ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) - ("go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635" - ,go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635) - ("go-github-com-sirupsen-logrus-1.8.1" - ,go-github-com-sirupsen-logrus-1.8.1) - ("go-github-com-seccomp-libseccomp-golang-0.9.1" - ,go-github-com-seccomp-libseccomp-golang-0.9.1) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-selinux-1.8.2" - ,go-github-com-opencontainers-selinux-1.8.2) - ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417" - ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417) - ("go-github-com-mrunalp-fileutils-0.5.0" - ,go-github-com-mrunalp-fileutils-0.5.0) - ("go-github-com-moby-sys-mountinfo-0.4.1" - ,go-github-com-moby-sys-mountinfo-0.4.1) - ("go-github-com-godbus-dbus-v5-5.0.4" - ,go-github-com-godbus-dbus-v5-5.0.4) - ("go-github-com-docker-go-units-0.4.0" - ,go-github-com-docker-go-units-0.4.0) - ("go-github-com-cyphar-filepath-securejoin-0.2.2" - ,go-github-com-cyphar-filepath-securejoin-0.2.2) - ("go-github-com-coreos-go-systemd-v22-22.3.2" - ,go-github-com-coreos-go-systemd-v22-22.3.2) - ("go-github-com-containerd-console-1.0.2" - ,go-github-com-containerd-console-1.0.2) - ("go-github-com-cilium-ebpf-0.6.2" ,go-github-com-cilium-ebpf-0.6.2) - ("go-github-com-checkpoint-restore-go-criu-v5-5.0.0" - ,go-github-com-checkpoint-restore-go-criu-v5-5.0.0) - ("go-github-com-bits-and-blooms-bitset-1.2.0" - ,go-github-com-bits-and-blooms-bitset-1.2.0))) - (home-page "https://github.com/opencontainers/runc") - (synopsis "runc") - (description - "@code{runc} is a CLI tool for spawning and running containers according to the OCI specification.") - (license license:asl2.0))) - -(define-public go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417 - (package - (name "go-github-com-opencontainers-runtime-spec") - (version "1.0.3-0.20210326190908-1c3f411f0417") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/runtime-spec") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1azk8z41ga8af35c966f06vrq9y9hwz6mkm59r3py5qaamzim3qq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) - (home-page "https://github.com/opencontainers/runtime-spec") - (synopsis "Open Container Initiative Runtime Specification") - (description - "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") - (license license:asl2.0))) - -(define-public go-github-com-bits-and-blooms-bitset-1.2.0 - (package - (name "go-github-com-bits-and-blooms-bitset") - (version "1.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/bits-and-blooms/bitset") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0r9f7lvz6znl7yr6njg77m8hj472yhdshf1qaybwyw7j8as6c4r3")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/bits-and-blooms/bitset")) - (home-page "https://github.com/bits-and-blooms/bitset") - (synopsis "bitset") - (description - "Package bitset implements bitsets, a mapping -between non-negative integers and boolean values. It should be more -efficient than map[uint] bool. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20191115151921-52ab43148777") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1kakxbqrb1w2vwg7r1896z68qcx2lfvimsl8cs2niiipbgpi6imx")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-opencontainers-selinux-1.8.2 - (package - (name "go-github-com-opencontainers-selinux") - (version "1.8.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/selinux") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1dl1h8nzpyhsfki1dcjphm5h4n52qwilahyl6qlnwgzcc76pwizq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/selinux")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777" - ,go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-bits-and-blooms-bitset-1.2.0" - ,go-github-com-bits-and-blooms-bitset-1.2.0))) - (home-page "https://github.com/opencontainers/selinux") - (synopsis "selinux") - (description "Common SELinux package used across the container ecosystem.") - (license license:asl2.0))) - -(define-public go-github-com-pelletier-go-toml-1.8.1 - (package - (name "go-github-com-pelletier-go-toml") - (version "1.8.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pelletier/go-toml") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1pi1r9ds0vxjza4qrbk52y98wxrzh1ghwzc9c2v1w6i02pdwdcz9")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pelletier/go-toml")) - (propagated-inputs - `(("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/pelletier/go-toml") - (synopsis "go-toml") - (description "Package toml is a TOML parser and manipulation library. -") - (license #f))) - -(define-public go-github-com-satori-go-uuid-1.2.0 - (package - (name "go-github-com-satori-go-uuid") - (version "1.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/satori/go.uuid") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1j4s5pfg2ldm35y8ls8jah4dya2grfnx2drb4jcbjsyrp4cm5yfb")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/satori/go.uuid")) - (home-page "https://github.com/satori/go.uuid") - (synopsis "UUID package for Go language") - (description - "Package uuid provides implementation of Universally Unique Identifier (UUID). -Supported versions are 1, 3, 4 and 5 (as specified in @url{https://rfc-editor.org/rfc/rfc4122.html,RFC 4122}) and -version 2 (as specified in DCE 1.1). -") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20191026070338-33540a1f6037") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0fjcv0vzvi6za0b4xmnk3932pr9f9gczzf03y0kgq3ry9rqg169y")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-sirupsen-logrus-1.8.1 - (package - (name "go-github-com-sirupsen-logrus") - (version "1.8.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sirupsen/logrus") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0rvqzic2zz7fpxyizmqxwmhv1m52ii9bgxnqa6km8wsa0l08wh42")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/sirupsen/logrus")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037" - ,go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037) - ("go-github-com-stretchr-testify-1.2.2" - ,go-github-com-stretchr-testify-1.2.2) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/sirupsen/logrus") - (synopsis "Logrus") - (description - "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. -") - (license license:expat))) - -(define-public go-github-com-tchap-go-patricia-2.2.6+incompatible - (package - (name "go-github-com-tchap-go-patricia") - (version "2.2.6+incompatible") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/tchap/go-patricia") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1yy1s3pnll52iyzphwi50drvz36lx628vn3xfy5ld29fxqngrckb")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/tchap/go-patricia")) - (home-page "https://github.com/tchap/go-patricia") - (synopsis "go-patricia") - (description - "@strong{Documentation}: @url{http://godoc.org/github.com/tchap/go-patricia/patricia,GoDoc} -@strong{Test Coverage}: @url{https://coveralls.io/r/tchap/go-patricia,(img (@ (src https://coveralls.io/repos/tchap/go-patricia/badge.png) (alt CoverageStatus)))}") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20201119102817-f84b799fce68") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1dvhqian5byzkcg1bnqzygqa6ccc6krc2q7j12pp1vhl3y7znnsg")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1 - (package - (name "go-golang-org-x-term") - (version "0.0.0-20201126162022-7de9c90e9dd1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/term") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ba252xmv6qsvf1w1gcy98mngrj0vd4inbjw0lsklqvva65nljna")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/term")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" - ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) - (home-page "https://golang.org/x/term") - (synopsis "Go terminal/console support") - (description - "Package term provides support functions for dealing with terminals, as -commonly found on UNIX systems. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20210226172049-e18ecbb05110") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1vlq8mdscp7yfaa1lmyv03y5m4c2d67ydg2q1i6smkrxghn3zn3q")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) - ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" - ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) - ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" - ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20201207232520-09787c993a3a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1nv4mwi9njkkyc7lwmxrjr8ggfh2cf1c67a9bq85dnss81vpj61y")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the -ones provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20210426230700-d19ff857e887 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20210426230700-d19ff857e887") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12m35a34dfm99agcv2ln9zvvyczigaxfwqbzqirvwn1lw4784whn")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-gotest-tools-v3-3.0.3 - (package - (name "go-gotest-tools-v3") - (version "3.0.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gotestyourself/gotest.tools") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1h316233n33lkfhbak8ljdj5i8df6hcwwm48n200svf22x3d95ww")))) - (build-system go-build-system) - (arguments - '(#:import-path "gotest.tools/v3" #:unpack-path "gotest.tools/v3")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20190624222133-a101b041ded4" - ,go-golang-org-x-tools-0.0.0-20190624222133-a101b041ded4) - ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) - ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0))) - (home-page "https://gotest.tools/v3") - (synopsis "gotest.tools") - (description - "Package gotesttools is a collection of packages to augment `testing` and -support common patterns. -") - (license license:asl2.0))) - -(define-public go-github-com-coreos-go-oidc-2.1.0+incompatible - (package - (name "go-github-com-coreos-go-oidc") - (version "2.1.0+incompatible") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/coreos/go-oidc") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0y9vxack1whvxy766jrc6xhh2rfkvnznwxi356si2kabzjv2lp6h")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/coreos/go-oidc")) - (home-page "https://github.com/coreos/go-oidc") - (synopsis "go-oidc") - (description - "Package oidc implements OpenID Connect client logic for the golang.org/x/oauth2 package. -") - (license license:asl2.0))) - -(define-public go-github-com-coreos-go-semver-0.3.0 - (package - (name "go-github-com-coreos-go-semver") - (version "0.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/coreos/go-semver") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0770h1mpig2j5sbiha3abnwaw8p6dg9i87r8pc7cf6m4kwml3sc9")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/coreos/go-semver")) - (home-page "https://github.com/coreos/go-semver") - (synopsis "go-semver - Semantic Versioning Library") - (description - "go-semver is a @url{http://semver.org/,semantic versioning} library for Go. It lets you parse -and compare two semantic version strings.") - (license license:asl2.0))) - -(define-public go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e - (package - (name "go-github-com-coreos-go-systemd") - (version "0.0.0-20190321100706-95778dfbb74e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/coreos/go-systemd") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1s3bg9p78wkixn2bqb2p23wbsqfg949ml6crw2b498s71mwh8rcf")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/coreos/go-systemd")) - (home-page "https://github.com/coreos/go-systemd") - (synopsis "go-systemd") - (description "Go bindings to systemd. The project has several packages:") - (license license:asl2.0))) - -(define-public go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f - (package - (name "go-github-com-coreos-pkg") - (version "0.0.0-20180928190104-399ea9e2e55f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/coreos/pkg") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0nxbn0m7lr4dg0yrwnvlkfiyg3ndv8vdpssjx7b714nivpc6ar0y")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/coreos/pkg")) - (home-page "https://github.com/coreos/pkg") - (synopsis #f) - (description "a collection of go utility packages") - (license license:asl2.0))) - -(define-public go-github-com-dustin-go-humanize-1.0.0 - (package - (name "go-github-com-dustin-go-humanize") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/dustin/go-humanize") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1kqf1kavdyvjk7f8kx62pnm7fbypn9z1vbf8v2qdh3y7z7a0cbl3")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/dustin/go-humanize")) - (home-page "https://github.com/dustin/go-humanize") - (synopsis "Humane Units") - (description - "Package humanize converts boring ugly numbers to human-friendly strings and back. -") - (license license:expat))) - -(define-public go-github-com-emicklei-go-restful-2.9.5+incompatible - (package - (name "go-github-com-emicklei-go-restful") - (version "2.9.5+incompatible") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/emicklei/go-restful") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0258y7q2krih98zznc4jsym9mf689afn6nsnsif1jhshrj653k36")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/emicklei/go-restful")) - (home-page "https://github.com/emicklei/go-restful") - (synopsis "go-restful") - (description - "Package restful , a lean package for creating REST-style WebServices without magic. -") - (license license:expat))) - -(define-public go-github-com-gorilla-websocket-1.4.2 - (package - (name "go-github-com-gorilla-websocket") - (version "1.4.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gorilla/websocket") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0mkm9w6kjkrlzab5wh8p4qxkc0icqawjbvr01d2nk6ykylrln40s")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/gorilla/websocket")) - (home-page "https://github.com/gorilla/websocket") - (synopsis "Gorilla WebSocket") - (description - "Package websocket implements the WebSocket protocol defined in @url{https://rfc-editor.org/rfc/rfc6455.html,RFC 6455}. -") - (license license:bsd-2))) - -(define-public go-github-com-mailru-easyjson-0.7.0 - (package - (name "go-github-com-mailru-easyjson") - (version "0.7.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mailru/easyjson") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "13zv5fvjp3nr65lhqhiw6i6mlmqvyls882rlmcas0ab35alsxni8")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mailru/easyjson")) - (home-page "https://github.com/mailru/easyjson") - (synopsis "easyjson") - (description - "Package easyjson contains marshaler/unmarshaler interfaces and helper functions. -") - (license license:expat))) - -(define-public go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822 - (package - (name "go-github-com-munnerz-goautoneg") - (version "0.0.0-20191010083416-a7dc8b61c822") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/munnerz/goautoneg") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1m4v6bw6yf1g0kvpc46isjp0qfhx2y8gnvlnyjf637jy64613mgg")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/munnerz/goautoneg")) - (home-page "https://github.com/munnerz/goautoneg") - (synopsis #f) - (description #f) - (license license:bsd-3))) - -(define-public go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021 - (package - (name "go-github-com-pquerna-cachecontrol") - (version "0.0.0-20171018203845-0dec1b30a021") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pquerna/cachecontrol") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "14yyfhrv60rvb983rqm7s916nwvn9kcmbvnrcna2md0s3mkzs3yh")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pquerna/cachecontrol")) - (home-page "https://github.com/pquerna/cachecontrol") - (synopsis "cachecontrol: HTTP Caching Parser and Interpretation") - (description - "Package cachecontrol implements the logic for HTTP Caching -") - (license license:asl2.0))) - -(define-public go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5 - (package - (name "go-github-com-tmc-grpc-websocket-proxy") - (version "0.0.0-20190109142713-0ad062ec5ee5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/tmc/grpc-websocket-proxy") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1anw4v9wspnw9xf2z5r9w0sszwjklyanl0l85wgg6nxak9gnrqp4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/tmc/grpc-websocket-proxy")) - (home-page "https://github.com/tmc/grpc-websocket-proxy") - (synopsis "grpc-websocket-proxy") - (description - "Wrap your grpc-gateway mux with this helper to expose streaming endpoints over websockets.") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20200202164722-d101bd2416d5 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200202164722-d101bd2416d5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ksxf37b0ym21n8j29m3wgbaiw1kcjw3hgf88kipc1ry2j13l98p")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-go-etcd-io-bbolt-1.3.5 - (package - (name "go-go-etcd-io-bbolt") - (version "1.3.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/etcd-io/bbolt") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1h64gipvcg7060byv5wjlf524kqwj12p3v08kfh4ygv46vpm8p2r")))) - (build-system go-build-system) - (arguments '(#:import-path "go.etcd.io/bbolt")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20200202164722-d101bd2416d5" - ,go-golang-org-x-sys-0.0.0-20200202164722-d101bd2416d5))) - (home-page "https://go.etcd.io/bbolt") - (synopsis "bbolt") - (description - "package bbolt implements a low-level key/value store in pure Go. It supports -fully serializable transactions, ACID semantics, and lock-free MVCC with -multiple readers and a single writer. Bolt can be used for projects that -want a simple data store without the need to add large dependencies such as -Postgres or MySQL. -") - (license license:expat))) - -(define-public go-github-com-bgentry-speakeasy-0.1.0 - (package - (name "go-github-com-bgentry-speakeasy") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/bgentry/speakeasy") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "02dfrj0wyphd3db9zn2mixqxwiz1ivnyc5xc7gkz58l5l27nzp8s")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/bgentry/speakeasy")) - (home-page "https://github.com/bgentry/speakeasy") - (synopsis "Speakeasy") - (description - "This package provides cross-platform Go (#golang) helpers for taking user input -from the terminal while not echoing the input back (similar to @code{getpasswd}). The -package uses syscalls to avoid any dependence on cgo, and is therefore -compatible with cross-compiling.") - (license license:expat))) - -(define-public go-github-com-cockroachdb-datadriven-0.0.0-20190809214429-80d97fb3cbaa - (package - (name "go-github-com-cockroachdb-datadriven") - (version "0.0.0-20190809214429-80d97fb3cbaa") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cockroachdb/datadriven") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0rvavka9zhri6r50n8fy98247fl5vycb1hffjrhshsicjv1frmlp")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/cockroachdb/datadriven")) - (home-page "https://github.com/cockroachdb/datadriven") - (synopsis "Data-Driven Tests for Go") - (description - "This repository implements an extension of @url{https://github.com/golang/go/wiki/TableDrivenTests,Table-Driven Testing}. Instead of -building and iterating over a table in the test code, the input is further -separated into files (or inline strings). For certain classes of tests, this -can significantly reduce the friction involved in writing and reading these -tests.") - (license license:asl2.0))) - -(define-public go-github-com-coreos-go-semver-0.2.0 - (package - (name "go-github-com-coreos-go-semver") - (version "0.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/coreos/go-semver") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1gghi5bnqj50hfxhqc1cxmynqmh2yk9ii7ab9gsm75y5cp94ymk0")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/coreos/go-semver")) - (home-page "https://github.com/coreos/go-semver") - (synopsis "go-semver - Semantic Versioning Library") - (description - "go-semver is a @url{http://semver.org/,semantic versioning} library for Go. It lets you parse -and compare two semantic version strings.") - (license license:asl2.0))) - -(define-public go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7 - (package - (name "go-github-com-coreos-go-systemd") - (version "0.0.0-20180511133405-39ca1b05acc7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/coreos/go-systemd") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1kzqrrzqspa5qm7kwslxl3m16lqzns23c24rv474ajzwmj3ixmx1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/coreos/go-systemd")) - (home-page "https://github.com/coreos/go-systemd") - (synopsis "go-systemd") - (description "Go bindings to systemd. The project has several packages:") - (license license:asl2.0))) - -(define-public go-github-com-coreos-pkg-0.0.0-20160727233714-3ac0863d7acf - (package - (name "go-github-com-coreos-pkg") - (version "0.0.0-20160727233714-3ac0863d7acf") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/coreos/pkg") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0l5ans1ls2gknkrnhymgc0zbgg5nqjbjbqc51r611adcr0m6gg8l")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/coreos/pkg")) - (home-page "https://github.com/coreos/pkg") - (synopsis #f) - (description "a collection of go utility packages") - (license license:asl2.0))) - -(define-public go-github-com-creack-pty-1.1.7 - (package - (name "go-github-com-creack-pty") - (version "1.1.7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/creack/pty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1plwwlk1i9b80zv8zdplvv81shfyc9gf0flydnydsh5sr3ib5vrc")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/creack/pty")) - (home-page "https://github.com/creack/pty") - (synopsis "pty") - (description - "Package pty provides functions for working with Unix terminals. -") - (license license:expat))) - -(define-public go-github-com-dgrijalva-jwt-go-3.2.0+incompatible - (package - (name "go-github-com-dgrijalva-jwt-go") - (version "3.2.0+incompatible") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/dgrijalva/jwt-go") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "08m27vlms74pfy5z79w67f9lk9zkx6a9jd68k3c4msxy75ry36mp")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/dgrijalva/jwt-go")) - (home-page "https://github.com/dgrijalva/jwt-go") - (synopsis "jwt-go") - (description - "Package jwt is a Go implementation of JSON Web Tokens: @url{http://self-issued.info/docs/draft-jones-json-web-token.html,http://self-issued.info/docs/draft-jones-json-web-token.html} -") - (license license:expat))) - -(define-public go-github-com-dustin-go-humanize-0.0.0-20171111073723-bb3d318650d4 - (package - (name "go-github-com-dustin-go-humanize") - (version "0.0.0-20171111073723-bb3d318650d4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/dustin/go-humanize") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1lqd8ix3cb164j5iazjby2jpa6bdsflhy0h9mi4yldvvcvrc194c")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/dustin/go-humanize")) - (home-page "https://github.com/dustin/go-humanize") - (synopsis "Humane Units") - (description - "Package humanize converts boring ugly numbers to human-friendly strings and back. -") - (license license:expat))) - -(define-public go-github-com-fatih-color-1.7.0 - (package - (name "go-github-com-fatih-color") - (version "1.7.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/fatih/color") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0v8msvg38r8d1iiq2i5r4xyfx0invhc941kjrsg5gzwvagv55inv")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/fatih/color")) - (home-page "https://github.com/fatih/color") - (synopsis "color") - (description - "Package color is an ANSI color package to output colorized or SGR defined -output to the standard output. The API can be used in several way, pick one -that suits you. -") - (license license:expat))) - -(define-public go-golang-org-x-tools-0.0.0-20180221164845-07fd8470d635 - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20180221164845-07fd8470d635") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "193g0a1zxb9ikph7r2klc6rdqxqzfmmr8d5bcibyhsm2l63s17mx")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-github-com-kisielk-errcheck-1.1.0 - (package - (name "go-github-com-kisielk-errcheck") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kisielk/errcheck") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19vd4rxmqbk5lpiav3pf7df3yjlz0l0dwx9mn0gjq5f998iyhy6y")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kisielk/errcheck")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20180221164845-07fd8470d635" - ,go-golang-org-x-tools-0.0.0-20180221164845-07fd8470d635) - ("go-github-com-kisielk-gotool-1.0.0" - ,go-github-com-kisielk-gotool-1.0.0))) - (home-page "https://github.com/kisielk/errcheck") - (synopsis "errcheck") - (description - "errcheck is a program for checking for unchecked errors in go programs.") - (license license:expat))) - -(define-public go-github-com-gogo-protobuf-1.2.1 - (package - (name "go-github-com-gogo-protobuf") - (version "1.2.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gogo/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "06yqa6h0kw3gr5pc3qmas7f7435a96zf7iw7p0l00r2hqf6fqq6m")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/gogo/protobuf")) - (propagated-inputs - `(("go-github-com-kisielk-errcheck-1.1.0" - ,go-github-com-kisielk-errcheck-1.1.0))) - (home-page "https://github.com/gogo/protobuf") - (synopsis "Protocol Buffers for Go with Gadgets") - (description - "gogoprotobuf is a fork of @url{https://github.com/golang/protobuf,golang/protobuf} with extra code generation features.") - (license license:bsd-3))) - -(define-public go-github-com-golang-groupcache-0.0.0-20160516000752-02826c3e7903 - (package - (name "go-github-com-golang-groupcache") - (version "0.0.0-20160516000752-02826c3e7903") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/groupcache") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0w46bsllddfij66nrg8jbfjsr54birvfww8a2fj9fmgyig5syn2x")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/groupcache")) - (home-page "https://github.com/golang/groupcache") - (synopsis "groupcache") - (description - "Package groupcache provides a data loading mechanism with caching -and de-duplication that works across a set of peer processes. -") - (license license:asl2.0))) - -(define-public go-github-com-google-btree-1.0.0 - (package - (name "go-github-com-google-btree") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/btree") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ba430m9fbnagacp57krgidsyrgp3ycw5r7dj71brgp5r52g82p6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/btree")) - (home-page "https://github.com/google/btree") - (synopsis "BTree implementation for Go") - (description - "Package btree implements in-memory B-Trees of arbitrary degree. -") - (license license:asl2.0))) - -(define-public go-github-com-google-uuid-1.0.0 - (package - (name "go-github-com-google-uuid") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/uuid") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1922bjrnx66692dm0rrc1ckmznsaqx920ww4jzsds3xzrwf15mqv")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/uuid")) - (home-page "https://github.com/google/uuid") - (synopsis "uuid") - (description "Package uuid generates and inspects UUIDs. -") - (license license:bsd-3))) - -(define-public go-github-com-gorilla-websocket-0.0.0-20170926233335-4201258b820c - (package - (name "go-github-com-gorilla-websocket") - (version "0.0.0-20170926233335-4201258b820c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gorilla/websocket") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1kpdg3m46kp15ixl9ahhchhadyiblz0qpcxzylp8jhffc1rnxjb7")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/gorilla/websocket")) - (home-page "https://github.com/gorilla/websocket") - (synopsis "Gorilla WebSocket") - (description - "Package websocket implements the WebSocket protocol defined in @url{https://rfc-editor.org/rfc/rfc6455.html,RFC 6455}. -") - (license license:bsd-2))) - -(define-public go-github-com-grpc-ecosystem-go-grpc-middleware-1.0.1-0.20190118093823-f849b5445de4 - (package - (name "go-github-com-grpc-ecosystem-go-grpc-middleware") - (version "1.0.1-0.20190118093823-f849b5445de4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc-ecosystem/go-grpc-middleware") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hscypgj0nd1407jp6y4qrnrr0mrhc4wgxz9b3mj1cs3pkvi61vc")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/grpc-ecosystem/go-grpc-middleware")) - (home-page "https://github.com/grpc-ecosystem/go-grpc-middleware") - (synopsis "Go gRPC Middleware") - (description - "`grpc_middleware` is a collection of gRPC middleware packages: interceptors, helpers and tools. -") - (license license:asl2.0))) - -(define-public go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0 - (package - (name "go-github-com-grpc-ecosystem-go-grpc-prometheus") - (version "1.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc-ecosystem/go-grpc-prometheus") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1lzk54h7np32b3acidg1ggbn8ppbnns0m71gcg9d1qkkdh8zrijl")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/grpc-ecosystem/go-grpc-prometheus")) - (home-page "https://github.com/grpc-ecosystem/go-grpc-prometheus") - (synopsis "Go gRPC Interceptors for Prometheus monitoring") - (description - "@url{https://prometheus.io/,Prometheus} monitoring for your @url{https://github.com/grpc/grpc-go,gRPC Go} servers and clients.") - (license license:asl2.0))) - -(define-public go-github-com-ghodss-yaml-1.0.0 - (package - (name "go-github-com-ghodss-yaml") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/ghodss/yaml") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0skwmimpy7hlh7pva2slpcplnm912rp3igs98xnqmn859kwa5v8g")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/ghodss/yaml")) - (home-page "https://github.com/ghodss/yaml") - (synopsis "YAML marshaling and unmarshaling support for Go") - (description - "Copyright 2013 The Go Authors. All rights reserved. -Use of this source code is governed by a BSD-style -license that can be found in the LICENSE file. -") - (license #f))) - -(define-public go-github-com-rogpeppe-fastuuid-0.0.0-20150106093220-6724a57986af - (package - (name "go-github-com-rogpeppe-fastuuid") - (version "0.0.0-20150106093220-6724a57986af") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/rogpeppe/fastuuid") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12s65phfx6hxj4v0b5kj8akgrbf5mxpa101fyzw03h6hld1f70cz")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/rogpeppe/fastuuid")) - (home-page "https://github.com/rogpeppe/fastuuid") - (synopsis "fastuuid") - (description - "Package fastuuid provides fast UUID generation of 192 bit -universally unique identifiers. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20181107165924-66b7b1311ac8") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "00ny4r2bbj6rz939iy9g699acqydq7rfi6r6awn25w9i2dld9m13")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20181220203305-927f97764cc3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0np7b766gb92vbm514yhdl7cjmqvn0dxdxskd84aas2ri1fkpgw5")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-gopkg-in-resty-v1-1.12.0 - (package - (name "go-gopkg-in-resty-v1") - (version "1.12.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/resty.v1") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "062mn735rqzhha5ag07z4gz08hxzrfm2yx067jfmaaxmb6797lmp")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/resty.v1" #:unpack-path "gopkg.in/resty.v1")) - (propagated-inputs - `(("go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3" - ,go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3))) - (home-page "https://gopkg.in/resty.v1") - (synopsis "News") - (description - "Package resty provides Simple HTTP and REST client library for Go. -") - (license license:expat))) - -(define-public go-gopkg-in-yaml-v2-2.0.0-20170812160011-eb3733d160e7 - (package - (name "go-gopkg-in-yaml-v2") - (version "2.0.0-20170812160011-eb3733d160e7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v2") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1srhvcaa9db3a6xj29mkjr5kg33y71pclrlx4vcwz5m1lgb5c7q6")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) - (home-page "https://gopkg.in/yaml.v2") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language. -") - (license license:asl2.0))) - -(define-public go-github-com-grpc-ecosystem-grpc-gateway-1.9.5 - (package - (name "go-github-com-grpc-ecosystem-grpc-gateway") - (version "1.9.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc-ecosystem/grpc-gateway") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0acpbxa1i1bxcpkclkcif2macbcfrlywb58vly5pzwsj261mg58a")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/grpc-ecosystem/grpc-gateway")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.0.0-20170812160011-eb3733d160e7" - ,go-gopkg-in-yaml-v2-2.0.0-20170812160011-eb3733d160e7) - ("go-gopkg-in-resty-v1-1.12.0" ,go-gopkg-in-resty-v1-1.12.0) - ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" - ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) - ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) - ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" - ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) - ("go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8" - ,go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8) - ("go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3" - ,go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3) - ("go-github-com-rogpeppe-fastuuid-0.0.0-20150106093220-6724a57986af" - ,go-github-com-rogpeppe-fastuuid-0.0.0-20150106093220-6724a57986af) - ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-ghodss-yaml-1.0.0" ,go-github-com-ghodss-yaml-1.0.0))) - (home-page "https://github.com/grpc-ecosystem/grpc-gateway") - (synopsis "grpc-gateway") - (description - "The grpc-gateway is a plugin of the Google protocol buffers compiler -@url{https://github.com/protocolbuffers/protobuf,protoc}. -It reads protobuf service definitions and generates a reverse-proxy server which -translates a RESTful HTTP API into gRPC. This server is generated according to the -@url{https://github.com/googleapis/googleapis/raw/master/google/api/http.proto#L46,(code google.api.http)} -annotations in your service definitions.") - (license license:bsd-3))) - -(define-public go-github-com-inconshreveable-mousetrap-1.0.0 - (package - (name "go-github-com-inconshreveable-mousetrap") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/inconshreveable/mousetrap") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1mn0kg48xkd74brf48qf5hzp0bc6g8cf5a77w895rl3qnlpfw152")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/inconshreveable/mousetrap")) - (home-page "https://github.com/inconshreveable/mousetrap") - (synopsis "mousetrap") - (description "mousetrap is a tiny library that answers a single question.") - (license license:asl2.0))) - -(define-public go-github-com-jonboulle-clockwork-0.1.0 - (package - (name "go-github-com-jonboulle-clockwork") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/jonboulle/clockwork") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1pqxhsdavbp1n5grgyx2j6ylvql2fzn2cvpsgkc8li69dil7sibl")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/jonboulle/clockwork")) - (home-page "https://github.com/jonboulle/clockwork") - (synopsis "clockwork") - (description - "Replace uses of the @code{time} package with the @code{clockwork.Clock} interface instead.") - (license license:asl2.0))) - -(define-public go-github-com-json-iterator-go-1.1.7 - (package - (name "go-github-com-json-iterator-go") - (version "1.1.7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/json-iterator/go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0n79p4s67zl5zprxv7diayw3vavnmmfqkmd6snz0i9bxp825dsyz")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/json-iterator/go")) - (propagated-inputs - `(("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0) - ("go-github-com-modern-go-reflect2-0.0.0-20180701023420-4b7aa43c6742" - ,go-github-com-modern-go-reflect2-0.0.0-20180701023420-4b7aa43c6742) - ("go-github-com-modern-go-concurrent-0.0.0-20180228061459-e0a39a4cb421" - ,go-github-com-modern-go-concurrent-0.0.0-20180228061459-e0a39a4cb421) - ("go-github-com-google-gofuzz-1.0.0" - ,go-github-com-google-gofuzz-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/json-iterator/go") - (synopsis "Benchmark") - (description - "Package jsoniter implements encoding and decoding of JSON as defined in -@url{https://rfc-editor.org/rfc/rfc4627.html,RFC 4627} and provides interfaces with identical syntax of standard lib encoding/json. -Converting from encoding/json to jsoniter is no more than replacing the package with jsoniter -and variable type declarations (if any). -jsoniter interfaces gives 100% compatibility with code using standard lib. -") - (license license:expat))) - -(define-public go-github-com-mattn-go-colorable-0.0.9 - (package - (name "go-github-com-mattn-go-colorable") - (version "0.0.9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mattn/go-colorable") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1nwjmsppsjicr7anq8na6md7b1z84l9ppnlr045hhxjvbkqwalvx")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mattn/go-colorable")) - (home-page "https://github.com/mattn/go-colorable") - (synopsis "go-colorable") - (description "Colorable writer for windows.") - (license license:expat))) - -(define-public go-github-com-mattn-go-isatty-0.0.4 - (package - (name "go-github-com-mattn-go-isatty") - (version "0.0.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mattn/go-isatty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0zs92j2cqaw9j8qx1sdxpv3ap0rgbs0vrvi72m40mg8aa36gd39w")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mattn/go-isatty")) - (home-page "https://github.com/mattn/go-isatty") - (synopsis "go-isatty") - (description "Package isatty implements interface to isatty -") - (license license:expat))) - -(define-public go-github-com-mattn-go-runewidth-0.0.2 - (package - (name "go-github-com-mattn-go-runewidth") - (version "0.0.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mattn/go-runewidth") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0vkrfrz3fzn5n6ix4k8s0cg0b448459sldq8bp4riavsxm932jzb")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mattn/go-runewidth")) - (home-page "https://github.com/mattn/go-runewidth") - (synopsis "go-runewidth") - (description - "This package provides functions to get fixed width of the character or string.") - (license license:expat))) - -(define-public go-github-com-olekukonko-tablewriter-0.0.0-20170122224234-a0225b3f23b5 - (package - (name "go-github-com-olekukonko-tablewriter") - (version "0.0.0-20170122224234-a0225b3f23b5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/olekukonko/tablewriter") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0bp9r6xzy6d3p7l2hjmvr25y3rp3p8c9xv1agkllkksm45ng6681")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/olekukonko/tablewriter")) - (home-page "https://github.com/olekukonko/tablewriter") - (synopsis "ASCII Table Writer") - (description "Create & Generate text based table -") - (license license:expat))) - -(define-public go-github-com-soheilhy-cmux-0.1.4 - (package - (name "go-github-com-soheilhy-cmux") - (version "0.1.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/soheilhy/cmux") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1f736g68d9vwlyfb6g0fxkr0r875369xafk30cz8kaq5niaqwv0h")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/soheilhy/cmux")) - (home-page "https://github.com/soheilhy/cmux") - (synopsis "cmux: Connection Mux") - (description - "Package cmux is a library to multiplex network connections based on -their payload. Using cmux, you can serve different protocols from the -same listener. -") - (license license:asl2.0))) - -(define-public go-github-com-spf13-cobra-0.0.3 - (package - (name "go-github-com-spf13-cobra") - (version "0.0.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/spf13/cobra") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1q1nsx05svyv9fv3fy6xv6gs9ffimkyzsfm49flvl3wnvf1ncrkd")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/spf13/cobra")) - (home-page "https://github.com/spf13/cobra") - (synopsis "Table of Contents") - (description - "Package cobra is a commander providing a simple interface to create powerful modern CLI interfaces. -In addition to providing an interface, Cobra simultaneously provides a controller to organize your application code. -") - (license license:asl2.0))) - -(define-public go-github-com-spf13-pflag-1.0.1 - (package - (name "go-github-com-spf13-pflag") - (version "1.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/spf13/pflag") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0nr4mdpfhhk94hq4ymn5b2sxc47b29p1akxd8b0hx4dvdybmipb5")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/spf13/pflag")) - (home-page "https://github.com/spf13/pflag") - (synopsis "Description") - (description - "Package pflag is a drop-in replacement for Go's flag package, implementing -POSIX/GNU-style --flags. -") - (license license:bsd-3))) - -(define-public go-github-com-tmc-grpc-websocket-proxy-0.0.0-20170815181823-89b8d40f7ca8 - (package - (name "go-github-com-tmc-grpc-websocket-proxy") - (version "0.0.0-20170815181823-89b8d40f7ca8") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/tmc/grpc-websocket-proxy") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1bg6m0cycy5sww175zkbnhi9lvzb08iicc8xka8klrgaa9mc5nsk")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/tmc/grpc-websocket-proxy")) - (home-page "https://github.com/tmc/grpc-websocket-proxy") - (synopsis "grpc-websocket-proxy") - (description - "Wrap your grpc-gateway mux with this helper to expose streaming endpoints over websockets.") - (license license:expat))) - -(define-public go-github-com-urfave-cli-1.20.0 - (package - (name "go-github-com-urfave-cli") - (version "1.20.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/urfave/cli") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0y6f4sbzkiiwrxbl15biivj8c7qwxnvm3zl2dd3mw4wzg4x10ygj")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/urfave/cli")) - (home-page "https://github.com/urfave/cli") - (synopsis "cli") - (description - "Package cli provides a minimal framework for creating and organizing command line -Go applications. cli is designed to be easy to understand and write, the most simple -cli application can be written as follows: -") - (license license:expat))) - -(define-public go-github-com-xiang90-probing-0.0.0-20190116061207-43a291ad63a2 - (package - (name "go-github-com-xiang90-probing") - (version "0.0.0-20190116061207-43a291ad63a2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/xiang90/probing") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1z22ms16j5j42775mf31isanwx2pwr1d8wqw8006dczjv36qnz5i")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/xiang90/probing")) - (home-page "https://github.com/xiang90/probing") - (synopsis "Getting Started") - (description "We first need to serve the probing HTTP handler.") - (license license:expat))) - -(define-public go-go-etcd-io-bbolt-1.3.3 - (package - (name "go-go-etcd-io-bbolt") - (version "1.3.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/etcd-io/bbolt") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0dn0zngks9xiz0rrrb3911f73ghl64z84jsmzai2yfmzqr7cdkqc")))) - (build-system go-build-system) - (arguments '(#:import-path "go.etcd.io/bbolt")) - (home-page "https://go.etcd.io/bbolt") - (synopsis "bbolt") - (description - "package bbolt implements a low-level key/value store in pure Go. It supports -fully serializable transactions, ACID semantics, and lock-free MVCC with -multiple readers and a single writer. Bolt can be used for projects that -want a simple data store without the need to add large dependencies such as -Postgres or MySQL. -") - (license license:expat))) - -(define-public go-go-uber-org-atomic-1.3.2 - (package - (name "go-go-uber-org-atomic") - (version "1.3.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/uber-go/atomic") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "11pzvjys5ddjjgrv94pgk9pnip9yyb54z7idf33zk7p7xylpnsv6")))) - (build-system go-build-system) - (arguments '(#:import-path "go.uber.org/atomic")) - (home-page "https://go.uber.org/atomic") - (synopsis "atomic") - (description - "Package atomic provides simple wrappers around numerics to enforce atomic -access. -") - (license license:expat))) - -(define-public go-golang-org-x-net-0.0.0-20190813141303-74dc4d7220e7 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190813141303-74dc4d7220e7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0563yswwqknxx2gsvl0qikn0lmwalilbng8i12iw4d3v40n23s0l")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20190826190057-c7b8b68b1456 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190826190057-c7b8b68b1456") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0lqnnrx5prrvkinnhgyvzzhcyvi8x5w54rlp336xjhpslkgqn132")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-time-0.0.0-20180412165947-fbb02b2291d2 - (package - (name "go-golang-org-x-time") - (version "0.0.0-20180412165947-fbb02b2291d2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/time") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0jjqcv6rzihlgg4i797q80g1f6ch5diz2kxqh6488gwkb6nds4h4")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/time")) - (home-page "https://golang.org/x/time") - (synopsis "Go Time") - (description "This repository provides supplementary Go time packages.") - (license license:bsd-3))) - -(define-public go-google-golang-org-grpc-1.26.0 - (package - (name "go-google-golang-org-grpc") - (version "1.26.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1qsb2mcswpp3vd7i9gfvz4a3ypdwk2svhhn09nyywgb1vvw80krv")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" - ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-github-com-google-go-cmp-0.2.0" - ,go-github-com-google-go-cmp-0.2.0) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2) - ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" - ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) - ("go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473" - ,go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-gopkg-in-cheggaaa-pb-v1-1.0.25 - (package - (name "go-gopkg-in-cheggaaa-pb-v1") - (version "1.0.25") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/cheggaaa/pb.v1") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0vxqiw6f3xyv0zy3g4lksf8za0z8i0hvfpw92hqimsy84f79j3dp")))) - (build-system go-build-system) - (arguments - '(#:import-path - "gopkg.in/cheggaaa/pb.v1" - #:unpack-path - "gopkg.in/cheggaaa/pb.v1")) - (home-page "https://gopkg.in/cheggaaa/pb.v1") - (synopsis "Terminal progress bar for Go") - (description "Simple console progress bars -") - (license license:bsd-3))) - -(define-public go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489 - (package - (name "go-go-etcd-io-etcd") - (version "0.5.0-alpha.5.0.20200910180754-dd1b699fc489") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/etcd-io/etcd") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "11zkvkq7ipqi0n8y05zgn8lf7qm59xdk75x7jbxj5sflx38yfa0k")))) - (build-system go-build-system) - (arguments '(#:import-path "go.etcd.io/etcd")) - (propagated-inputs - `(("go-sigs-k8s-io-yaml-1.1.0" ,go-sigs-k8s-io-yaml-1.1.0) - ("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" - ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) - ("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) - ("go-gopkg-in-cheggaaa-pb-v1-1.0.25" - ,go-gopkg-in-cheggaaa-pb-v1-1.0.25) - ("go-google-golang-org-grpc-1.26.0" ,go-google-golang-org-grpc-1.26.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-time-0.0.0-20180412165947-fbb02b2291d2" - ,go-golang-org-x-time-0.0.0-20180412165947-fbb02b2291d2) - ("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) - ("go-golang-org-x-sys-0.0.0-20190826190057-c7b8b68b1456" - ,go-golang-org-x-sys-0.0.0-20190826190057-c7b8b68b1456) - ("go-golang-org-x-net-0.0.0-20190813141303-74dc4d7220e7" - ,go-golang-org-x-net-0.0.0-20190813141303-74dc4d7220e7) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2) - ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) - ("go-go-uber-org-multierr-1.1.0" ,go-go-uber-org-multierr-1.1.0) - ("go-go-uber-org-atomic-1.3.2" ,go-go-uber-org-atomic-1.3.2) - ("go-go-etcd-io-bbolt-1.3.3" ,go-go-etcd-io-bbolt-1.3.3) - ("go-github-com-xiang90-probing-0.0.0-20190116061207-43a291ad63a2" - ,go-github-com-xiang90-probing-0.0.0-20190116061207-43a291ad63a2) - ("go-github-com-urfave-cli-1.20.0" ,go-github-com-urfave-cli-1.20.0) - ("go-github-com-tmc-grpc-websocket-proxy-0.0.0-20170815181823-89b8d40f7ca8" - ,go-github-com-tmc-grpc-websocket-proxy-0.0.0-20170815181823-89b8d40f7ca8) - ("go-github-com-spf13-pflag-1.0.1" ,go-github-com-spf13-pflag-1.0.1) - ("go-github-com-spf13-cobra-0.0.3" ,go-github-com-spf13-cobra-0.0.3) - ("go-github-com-soheilhy-cmux-0.1.4" - ,go-github-com-soheilhy-cmux-0.1.4) - ("go-github-com-sirupsen-logrus-1.4.2" - ,go-github-com-sirupsen-logrus-1.4.2) - ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" - ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) - ("go-github-com-prometheus-client-golang-1.0.0" - ,go-github-com-prometheus-client-golang-1.0.0) - ("go-github-com-olekukonko-tablewriter-0.0.0-20170122224234-a0225b3f23b5" - ,go-github-com-olekukonko-tablewriter-0.0.0-20170122224234-a0225b3f23b5) - ("go-github-com-modern-go-reflect2-1.0.1" - ,go-github-com-modern-go-reflect2-1.0.1) - ("go-github-com-mattn-go-runewidth-0.0.2" - ,go-github-com-mattn-go-runewidth-0.0.2) - ("go-github-com-mattn-go-isatty-0.0.4" - ,go-github-com-mattn-go-isatty-0.0.4) - ("go-github-com-mattn-go-colorable-0.0.9" - ,go-github-com-mattn-go-colorable-0.0.9) - ("go-github-com-json-iterator-go-1.1.7" - ,go-github-com-json-iterator-go-1.1.7) - ("go-github-com-jonboulle-clockwork-0.1.0" - ,go-github-com-jonboulle-clockwork-0.1.0) - ("go-github-com-inconshreveable-mousetrap-1.0.0" - ,go-github-com-inconshreveable-mousetrap-1.0.0) - ("go-github-com-grpc-ecosystem-grpc-gateway-1.9.5" - ,go-github-com-grpc-ecosystem-grpc-gateway-1.9.5) - ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" - ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) - ("go-github-com-grpc-ecosystem-go-grpc-middleware-1.0.1-0.20190118093823-f849b5445de4" - ,go-github-com-grpc-ecosystem-go-grpc-middleware-1.0.1-0.20190118093823-f849b5445de4) - ("go-github-com-gorilla-websocket-0.0.0-20170926233335-4201258b820c" - ,go-github-com-gorilla-websocket-0.0.0-20170926233335-4201258b820c) - ("go-github-com-google-uuid-1.0.0" ,go-github-com-google-uuid-1.0.0) - ("go-github-com-google-btree-1.0.0" ,go-github-com-google-btree-1.0.0) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2) - ("go-github-com-golang-groupcache-0.0.0-20160516000752-02826c3e7903" - ,go-github-com-golang-groupcache-0.0.0-20160516000752-02826c3e7903) - ("go-github-com-gogo-protobuf-1.2.1" - ,go-github-com-gogo-protobuf-1.2.1) - ("go-github-com-fatih-color-1.7.0" ,go-github-com-fatih-color-1.7.0) - ("go-github-com-dustin-go-humanize-0.0.0-20171111073723-bb3d318650d4" - ,go-github-com-dustin-go-humanize-0.0.0-20171111073723-bb3d318650d4) - ("go-github-com-dgrijalva-jwt-go-3.2.0+incompatible" - ,go-github-com-dgrijalva-jwt-go-3.2.0+incompatible) - ("go-github-com-creack-pty-1.1.7" ,go-github-com-creack-pty-1.1.7) - ("go-github-com-coreos-pkg-0.0.0-20160727233714-3ac0863d7acf" - ,go-github-com-coreos-pkg-0.0.0-20160727233714-3ac0863d7acf) - ("go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7" - ,go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7) - ("go-github-com-coreos-go-semver-0.2.0" - ,go-github-com-coreos-go-semver-0.2.0) - ("go-github-com-cockroachdb-datadriven-0.0.0-20190809214429-80d97fb3cbaa" - ,go-github-com-cockroachdb-datadriven-0.0.0-20190809214429-80d97fb3cbaa) - ("go-github-com-bgentry-speakeasy-0.1.0" - ,go-github-com-bgentry-speakeasy-0.1.0))) - (home-page "https://go.etcd.io/etcd") - (synopsis "etcd") - (description - "Package main is a simple wrapper of the real etcd entrypoint package -(located at github.com/coreos/etcd/etcdmain) to ensure that etcd is still -\"go getable\"; e.g. `go get github.com/coreos/etcd` works as expected and -builds a binary in $GOBIN/etcd -") - (license license:asl2.0))) - -(define-public go-gopkg-in-natefinch-lumberjack-v2-2.0.0 - (package - (name "go-gopkg-in-natefinch-lumberjack-v2") - (version "2.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/natefinch/lumberjack.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1m2sxypk7p805jvc68padvylyx5v7cwkh5klnnxxr0340kgspf08")))) - (build-system go-build-system) - (arguments - '(#:import-path - "gopkg.in/natefinch/lumberjack.v2" - #:unpack-path - "gopkg.in/natefinch/lumberjack.v2")) - (home-page "https://gopkg.in/natefinch/lumberjack.v2") - (synopsis "lumberjack") - (description "Package lumberjack provides a rolling logger. -") - (license license:expat))) - -(define-public go-gopkg-in-square-go-jose-v2-2.2.2 - (package - (name "go-gopkg-in-square-go-jose-v2") - (version "2.2.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/square/go-jose.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1cpvfqw7pw8m8wfj8nda4kam0z48q3gp6b9a3a0wr90zv9ldszbv")))) - (build-system go-build-system) - (arguments - '(#:import-path - "gopkg.in/square/go-jose.v2" - #:unpack-path - "gopkg.in/square/go-jose.v2")) - (home-page "https://gopkg.in/square/go-jose.v2") - (synopsis "Go JOSE") - (description - "Package jose aims to provide an implementation of the Javascript Object Signing -and Encryption set of standards. It implements encryption and signing based on -the JSON Web Encryption and JSON Web Signature standards, with optional JSON -Web Token support available in a sub-package. The library supports both the -compact and full serialization formats, and has optional support for multiple -recipients. -") - (license license:asl2.0))) - -(define-public go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.15 - (package - (name "go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client") - (version "0.0.15") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes-sigs/apiserver-network-proxy") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "00ad9yjr3g1pj118xy063z7rnydkilqmvz9xf89vdva2kjqd7fal")))) - (build-system go-build-system) - (arguments - '(#:import-path - "sigs.k8s.io/apiserver-network-proxy/konnectivity-client")) - (propagated-inputs - `(("go-k8s-io-klog-v2-2.0.0" ,go-k8s-io-klog-v2-2.0.0) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-github-com-golang-protobuf-1.4.0" - ,go-github-com-golang-protobuf-1.4.0))) - (home-page - "https://sigs.k8s.io/apiserver-network-proxy/konnectivity-client") - (synopsis #f) - (description #f) - (license license:asl2.0))) - -(define-public go-k8s-io-apiserver-0.20.6 - (package - (name "go-k8s-io-apiserver") - (version "0.20.6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes/apiserver") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0b53aw2cp9i2v5kg1m2s5kwkz7525ii8vs1g7d8yc2j980aar9y3")))) - (build-system go-build-system) - (arguments '(#:import-path "k8s.io/apiserver")) - (propagated-inputs - `(("go-k8s-io-component-base-0.20.6" ,go-k8s-io-component-base-0.20.6) - ("go-k8s-io-client-go-0.20.6" ,go-k8s-io-client-go-0.20.6) - ("go-k8s-io-apimachinery-0.20.6" ,go-k8s-io-apimachinery-0.20.6) - ("go-k8s-io-api-0.20.6" ,go-k8s-io-api-0.20.6) - ("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) - ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.3" - ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.3) - ("go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.15" - ,go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.15) - ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" - ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) - ("go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd" - ,go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd) - ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) - ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) - ("go-gopkg-in-square-go-jose-v2-2.2.2" - ,go-gopkg-in-square-go-jose-v2-2.2.2) - ("go-gopkg-in-natefinch-lumberjack-v2-2.0.0" - ,go-gopkg-in-natefinch-lumberjack-v2-2.0.0) - ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) - ("go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a" - ,go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a) - ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" - ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) - ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" - ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) - ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" - ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) - ("go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0" - ,go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0) - ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) - ("go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489" - ,go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489) - ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) - ("go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5" - ,go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) - ("go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021" - ,go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822" - ,go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822) - ("go-github-com-mailru-easyjson-0.7.0" - ,go-github-com-mailru-easyjson-0.7.0) - ("go-github-com-hashicorp-golang-lru-0.5.1" - ,go-github-com-hashicorp-golang-lru-0.5.1) - ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" - ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) - ("go-github-com-gorilla-websocket-1.4.2" - ,go-github-com-gorilla-websocket-1.4.2) - ("go-github-com-googleapis-gnostic-0.4.1" - ,go-github-com-googleapis-gnostic-0.4.1) - ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) - ("go-github-com-google-gofuzz-1.1.0" - ,go-github-com-google-gofuzz-1.1.0) - ("go-github-com-google-go-cmp-0.5.2" - ,go-github-com-google-go-cmp-0.5.2) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2) - ("go-github-com-go-openapi-spec-0.19.3" - ,go-github-com-go-openapi-spec-0.19.3) - ("go-github-com-evanphx-json-patch-4.9.0+incompatible" - ,go-github-com-evanphx-json-patch-4.9.0+incompatible) - ("go-github-com-emicklei-go-restful-2.9.5+incompatible" - ,go-github-com-emicklei-go-restful-2.9.5+incompatible) - ("go-github-com-dustin-go-humanize-1.0.0" - ,go-github-com-dustin-go-humanize-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1) - ("go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f" - ,go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f) - ("go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e" - ,go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e) - ("go-github-com-coreos-go-semver-0.3.0" - ,go-github-com-coreos-go-semver-0.3.0) - ("go-github-com-coreos-go-oidc-2.1.0+incompatible" - ,go-github-com-coreos-go-oidc-2.1.0+incompatible))) - (home-page "https://k8s.io/apiserver") - (synopsis "apiserver") - (description - "Generic library for building a Kubernetes aggregated API server.") - (license license:asl2.0))) - -(define-public go-github-com-blang-semver-3.5.1+incompatible - (package - (name "go-github-com-blang-semver") - (version "3.5.1+incompatible") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/blang/semver") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "13ws259bwcibkclbr82ilhk6zadm63kxklxhk12wayklj8ghhsmy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/blang/semver")) - (home-page "https://github.com/blang/semver") - (synopsis "semver for golang") - (description - "semver is a @url{http://semver.org/,Semantic Versioning} library written in golang. It fully covers spec version @code{2.0.0}.") - (license license:expat))) - -(define-public go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369 - (package - (name "go-github-com-matttproud-golang-protobuf-extensions") - (version "1.0.2-0.20181231171920-c182affec369") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/matttproud/golang_protobuf_extensions") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1xqsf9vpcrd4hp95rl6kgmjvkv1df4aicfw4l5vfcxcwxknfx2xs")))) - (build-system go-build-system) - (arguments - '(#:import-path "github.com/matttproud/golang_protobuf_extensions")) - (propagated-inputs - `(("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" - ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0))) - (home-page "https://github.com/matttproud/golang_protobuf_extensions") - (synopsis "Overview") - (description - "This repository provides various Protocol Buffer extensions for the Go -language (golang), namely support for record length-delimited message -streaming.") - (license license:asl2.0))) - -(define-public go-github-com-azure-go-ansiterm-0.0.0-20170929234023-d6e3b3328b78 - (package - (name "go-github-com-azure-go-ansiterm") - (version "0.0.0-20170929234023-d6e3b3328b78") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/Azure/go-ansiterm") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "010khrkhkf9cxlvvb6ncqv4c1qcdmpbz9jn38g4fxf4xsma8xx1q")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/Azure/go-ansiterm")) - (home-page "https://github.com/Azure/go-ansiterm") - (synopsis "go-ansiterm") - (description - "This is a cross platform Ansi Terminal Emulation library. It reads a stream of Ansi characters and produces the appropriate function calls. The results of the function calls are platform dependent.") - (license license:expat))) - -(define-public go-gotest-tools-2.2.0+incompatible - (package - (name "go-gotest-tools") - (version "2.2.0+incompatible") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gotestyourself/gotest.tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0yif3gdyckmf8i54jq0xn00kflla5rhib9sarw66ngnbl7bn9kyl")))) - (build-system go-build-system) - (arguments '(#:import-path "gotest.tools")) - (home-page "https://gotest.tools") - (synopsis "gotest.tools") - (description - "Package gotesttools is a collection of packages to augment `testing` and -support common patterns. -") - (license license:asl2.0))) - -(define-public go-github-com-spf13-pflag-1.0.3 - (package - (name "go-github-com-spf13-pflag") - (version "1.0.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/spf13/pflag") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1cj3cjm7d3zk0mf1xdybh0jywkbbw7a6yr3y22x9sis31scprswd")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/spf13/pflag")) - (home-page "https://github.com/spf13/pflag") - (synopsis "Description") - (description - "Package pflag is a drop-in replacement for Go's flag package, implementing -POSIX/GNU-style --flags. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20190624222133-a101b041ded4 - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20190624222133-a101b041ded4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1pm50dybm5wixjjspvfpafjmiy81b1zp08h13gxc5cylrfgncrfl")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" - ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-gotest-tools-v3-3.0.2 - (package - (name "go-gotest-tools-v3") - (version "3.0.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gotestyourself/gotest.tools") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0cap2aq2wphnbkkzkck5zdjxb64q3jqxfwpkgqys7279rbr8cvjm")))) - (build-system go-build-system) - (arguments - '(#:import-path "gotest.tools/v3" #:unpack-path "gotest.tools/v3")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20190624222133-a101b041ded4" - ,go-golang-org-x-tools-0.0.0-20190624222133-a101b041ded4) - ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) - ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) - ("go-github-com-google-go-cmp-0.3.0" - ,go-github-com-google-go-cmp-0.3.0))) - (home-page "https://gotest.tools/v3") - (synopsis "gotest.tools") - (description - "Package gotesttools is a collection of packages to augment `testing` and -support common patterns. -") - (license license:asl2.0))) - -(define-public go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd - (package - (name "go-github-com-moby-term") - (version "0.0.0-20200312100748-672ec06f55cd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/moby/term") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0xspasm3d101hmjsayrbx6az4r4ybbg5gkj13qybhpq674a6kkwn")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/moby/term")) - (propagated-inputs - `(("go-gotest-tools-v3-3.0.2" ,go-gotest-tools-v3-3.0.2) - ("go-gotest-tools-2.2.0+incompatible" - ,go-gotest-tools-2.2.0+incompatible) - ("go-golang-org-x-sys-0.0.0-20200302150141-5c8b2ff67527" - ,go-golang-org-x-sys-0.0.0-20200302150141-5c8b2ff67527) - ("go-github-com-sirupsen-logrus-1.4.2" - ,go-github-com-sirupsen-logrus-1.4.2) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-google-go-cmp-0.3.1" - ,go-github-com-google-go-cmp-0.3.1) - ("go-github-com-azure-go-ansiterm-0.0.0-20170929234023-d6e3b3328b78" - ,go-github-com-azure-go-ansiterm-0.0.0-20170929234023-d6e3b3328b78))) - (home-page "https://github.com/moby/term") - (synopsis "term - utilities for dealing with terminals") - (description - "Package term provides structures and helper functions to work with -terminal (state, sizes). -") - (license license:asl2.0))) - -(define-public go-github-com-beorn7-perks-1.0.1 - (package - (name "go-github-com-beorn7-perks") - (version "1.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/beorn7/perks") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "17n4yygjxa6p499dj3yaqzfww2g7528165cl13haj97hlx94dgl7")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/beorn7/perks")) - (home-page "https://github.com/beorn7/perks") - (synopsis "Perks for Go (golang.org)") - (description - "Perks contains the Go package quantile that computes approximate quantiles over -an unbounded data stream within low memory and CPU bounds.") - (license license:expat))) - -(define-public go-github-com-cespare-xxhash-v2-2.1.1 - (package - (name "go-github-com-cespare-xxhash-v2") - (version "2.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cespare/xxhash") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0rl5rs8546zj1vzggv38w93wx0b5dvav7yy5hzxa8kw7iikv1cgr")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/cespare/xxhash/v2")) - (home-page "https://github.com/cespare/xxhash") - (synopsis "xxhash") - (description - "Package xxhash implements the 64-bit variant of xxHash (XXH64) as described -at @url{http://cyan4973.github.io/xxHash/,http://cyan4973.github.io/xxHash/}. -") - (license license:expat))) - -(define-public go-github-com-golang-protobuf-1.4.2 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0m5z81im4nsyfgarjhppayk4hqnrwswr3nix9mj8pff8x9jvcjqw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.23.0" - ,go-google-golang-org-protobuf-1.23.0) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-github-com-prometheus-procfs-0.1.3 - (package - (name "go-github-com-prometheus-procfs") - (version "0.1.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/procfs") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "09wmlmvmjf49nchidqffc99wn6vl98v5k9qgyyrhqgv0015xskwa")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/procfs")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20200106162015-b016eb3dc98e" - ,go-golang-org-x-sys-0.0.0-20200106162015-b016eb3dc98e) - ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" - ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) - ("go-github-com-google-go-cmp-0.3.1" - ,go-github-com-google-go-cmp-0.3.1))) - (home-page "https://github.com/prometheus/procfs") - (synopsis "procfs") - (description - "Package procfs provides functions to retrieve system, kernel and process -metrics from the pseudo-filesystem proc. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-sys-0.0.0-20200615200032-f1bc736245b1 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200615200032-f1bc736245b1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fbmih4n2xw53qbpmc7msqf2660i4ryr0chbrsbj8mdalfrjr0vp")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-gopkg-in-yaml-v2-2.2.5 - (package - (name "go-gopkg-in-yaml-v2") - (version "2.2.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "08smz8dfyxp02ha74my9iszqa5qzgl3ksi28ilyp8lqipssiq6fg")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v2") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language. -") - (license license:asl2.0))) - -(define-public go-github-com-prometheus-client-golang-1.7.1 - (package - (name "go-github-com-prometheus-client-golang") - (version "1.7.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/client_golang") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0i9wbwjq3idgp9y0vv7fvg6g7zrqi9qlfw915xc49ahw83q2h61w")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/client_golang")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.5" ,go-gopkg-in-yaml-v2-2.2.5) - ("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" - ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) - ("go-golang-org-x-sys-0.0.0-20200615200032-f1bc736245b1" - ,go-golang-org-x-sys-0.0.0-20200615200032-f1bc736245b1) - ("go-github-com-stretchr-testify-1.4.0" - ,go-github-com-stretchr-testify-1.4.0) - ("go-github-com-prometheus-procfs-0.1.3" - ,go-github-com-prometheus-procfs-0.1.3) - ("go-github-com-prometheus-common-0.10.0" - ,go-github-com-prometheus-common-0.10.0) - ("go-github-com-prometheus-client-model-0.2.0" - ,go-github-com-prometheus-client-model-0.2.0) - ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) - ("go-github-com-json-iterator-go-1.1.10" - ,go-github-com-json-iterator-go-1.1.10) - ("go-github-com-golang-protobuf-1.4.2" - ,go-github-com-golang-protobuf-1.4.2) - ("go-github-com-cespare-xxhash-v2-2.1.1" - ,go-github-com-cespare-xxhash-v2-2.1.1) - ("go-github-com-beorn7-perks-1.0.1" - ,go-github-com-beorn7-perks-1.0.1))) - (home-page "https://github.com/prometheus/client_golang") - (synopsis "Prometheus Go client library") - (description - "This is the @url{http://golang.org,Go} client library for -@url{http://prometheus.io,Prometheus}. It has two separate parts, one for -instrumenting application code, and one for creating clients that talk to the -Prometheus HTTP API.") - (license license:asl2.0))) - -(define-public go-github-com-alecthomas-template-0.0.0-20190718012654-fb15b899a751 - (package - (name "go-github-com-alecthomas-template") - (version "0.0.0-20190718012654-fb15b899a751") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/alecthomas/template") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1vlasv4dgycydh5wx6jdcvz40zdv90zz1h7836z7lhsi2ymvii26")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/alecthomas/template")) - (home-page "https://github.com/alecthomas/template") - (synopsis "Go's") - (description - "Package template implements data-driven templates for generating textual output. -") - (license license:bsd-3))) - -(define-public go-github-com-alecthomas-units-0.0.0-20190717042225-c3de453c63f4 - (package - (name "go-github-com-alecthomas-units") - (version "0.0.0-20190717042225-c3de453c63f4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/alecthomas/units") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0js37zlgv37y61j4a2d46jh72xm5kxmpaiw0ya9v944bjpc386my")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/alecthomas/units")) - (home-page "https://github.com/alecthomas/units") - (synopsis "Units - Helpful unit multipliers and functions for Go") - (description - "Package units provides helpful unit multipliers and functions for Go. -") - (license license:expat))) - -(define-public go-github-com-go-kit-kit-0.9.0 - (package - (name "go-github-com-go-kit-kit") - (version "0.9.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/go-kit/kit") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "09038mnw705h7isbjp8dzgp2i04bp5rqkmifxvwc5xkh75s00qpw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/go-kit/kit")) - (home-page "https://github.com/go-kit/kit") - (synopsis "Go kit") - (description - "@strong{Go kit} is a @strong{programming toolkit} for building microservices -(or elegant monoliths) in Go. We solve common problems in distributed -systems and application architecture so you can focus on delivering -business value.") - (license license:expat))) - -(define-public go-github-com-go-logfmt-logfmt-0.4.0 - (package - (name "go-github-com-go-logfmt-logfmt") - (version "0.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/go-logfmt/logfmt") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "06smxc112xmixz78nyvk3b2hmc7wasf2sl5vxj1xz62kqcq9lzm9")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/go-logfmt/logfmt")) - (propagated-inputs - `(("go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515" - ,go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515))) - (home-page "https://github.com/go-logfmt/logfmt") - (synopsis "logfmt") - (description - "Package logfmt implements utilities to marshal and unmarshal data in the -logfmt format. The logfmt format records key/value pairs in a way that -balances readability for humans and simplicity of computer parsing. It is -most commonly used as a more human friendly alternative to JSON for -structured logging. -") - (license license:expat))) - -(define-public go-github-com-pkg-errors-0.8.1 - (package - (name "go-github-com-pkg-errors") - (version "0.8.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pkg/errors") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0g5qcb4d4fd96midz0zdk8b9kz8xkzwfa8kr1cliqbg8sxsy5vd1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pkg/errors")) - (home-page "https://github.com/pkg/errors") - (synopsis "errors") - (description "Package errors provides simple error handling primitives. -") - (license license:bsd-2))) - -(define-public go-github-com-beorn7-perks-1.0.0 - (package - (name "go-github-com-beorn7-perks") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/beorn7/perks") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1i1nz1f6g55xi2y3aiaz5kqfgvknarbfl4f0sx4nyyb4s7xb1z9x")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/beorn7/perks")) - (home-page "https://github.com/beorn7/perks") - (synopsis "Perks for Go (golang.org)") - (description - "Perks contains the Go package quantile that computes approximate quantiles over -an unbounded data stream within low memory and CPU bounds.") - (license license:expat))) - -(define-public go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90 - (package - (name "go-github-com-prometheus-client-model") - (version "0.0.0-20190129233127-fd36f4220a90") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/client_model") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1bs5d72k361llflgl94c22n0w53j30rsfh84smgk8mbjbcmjsaa5")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/client_model")) - (propagated-inputs - `(("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" - ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0))) - (home-page "https://github.com/prometheus/client_model") - (synopsis "Deprecation note") - (description - "This repository used to contain the code that defined both -the data model and the exposition format of Prometheus metrics.") - (license license:asl2.0))) - -(define-public go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc - (package - (name "go-github-com-alecthomas-template") - (version "0.0.0-20160405071501-a0175ee3bccc") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/alecthomas/template") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0qjgvvh26vk1cyfq9fadyhfgdj36f1iapbmr5xp6zqipldz8ffxj")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/alecthomas/template")) - (home-page "https://github.com/alecthomas/template") - (synopsis "Go's") - (description - "Package template implements data-driven templates for generating textual output. -") - (license license:bsd-3))) - -(define-public go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf - (package - (name "go-github-com-alecthomas-units") - (version "0.0.0-20151022065526-2efee857e7cf") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/alecthomas/units") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1j65b91qb9sbrml9cpabfrcf07wmgzzghrl7809hjjhrmbzri5bl")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/alecthomas/units")) - (home-page "https://github.com/alecthomas/units") - (synopsis "Units - Helpful unit multipliers and functions for Go") - (description - "Package units provides helpful unit multipliers and functions for Go. -") - (license license:expat))) - -(define-public go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973 - (package - (name "go-github-com-beorn7-perks") - (version "0.0.0-20180321164747-3a771d992973") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/beorn7/perks") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1l2lns4f5jabp61201sh88zf3b0q793w4zdgp9nll7mmfcxxjif3")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/beorn7/perks")) - (home-page "https://github.com/beorn7/perks") - (synopsis "Perks for Go (golang.org)") - (description - "Perks contains the Go package quantile that computes approximate quantiles over -an unbounded data stream within low memory and CPU bounds.") - (license license:expat))) - -(define-public go-github-com-go-kit-kit-0.8.0 - (package - (name "go-github-com-go-kit-kit") - (version "0.8.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/go-kit/kit") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1rcywbc2pvab06qyf8pc2rdfjv7r6kxdv2v4wnpqnjhz225wqvc0")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/go-kit/kit")) - (home-page "https://github.com/go-kit/kit") - (synopsis "Go kit") - (description - "@strong{Go kit} is a @strong{programming toolkit} for building microservices -(or elegant monoliths) in Go. We solve common problems in distributed -systems and application architecture so you can focus on delivering -business value.") - (license license:expat))) - -(define-public go-github-com-go-logfmt-logfmt-0.3.0 - (package - (name "go-github-com-go-logfmt-logfmt") - (version "0.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/go-logfmt/logfmt") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1gkgh3k5w1xwb2qbjq52p6azq3h1c1rr6pfwjlwj1zrijpzn2xb9")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/go-logfmt/logfmt")) - (home-page "https://github.com/go-logfmt/logfmt") - (synopsis "logfmt") - (description - "Package logfmt implements utilities to marshal and unmarshal data in the -logfmt format. The logfmt format records key/value pairs in a way that -balances readability for humans and simplicity of computer parsing. It is -most commonly used as a more human friendly alternative to JSON for -structured logging. -") - (license license:expat))) - -(define-public go-github-com-go-stack-stack-1.8.0 - (package - (name "go-github-com-go-stack-stack") - (version "1.8.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/go-stack/stack") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0wk25751ryyvxclyp8jdk5c3ar0cmfr8lrjb66qbg4808x66b96v")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/go-stack/stack")) - (home-page "https://github.com/go-stack/stack") - (synopsis "stack") - (description - "Package stack implements utilities to capture, manipulate, and format call -stacks. It provides a simpler API than package runtime. -") - (license license:expat))) - -(define-public go-github-com-julienschmidt-httprouter-1.2.0 - (package - (name "go-github-com-julienschmidt-httprouter") - (version "1.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/julienschmidt/httprouter") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1k8bylc9s4vpvf5xhqh9h246dl1snxrzzz0614zz88cdh8yzs666")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/julienschmidt/httprouter")) - (home-page "https://github.com/julienschmidt/httprouter") - (synopsis "HttpRouter") - (description - "Package httprouter is a trie based high performance HTTP request router. -") - (license license:bsd-3))) - -(define-public go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515 - (package - (name "go-github-com-kr-logfmt") - (version "0.0.0-20140226030751-b84e30acd515") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/logfmt") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "02ldzxgznrfdzvghfraslhgp19la1fczcbzh7wm2zdc6lmpd1qq9")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/logfmt")) - (home-page "https://github.com/kr/logfmt") - (synopsis #f) - (description - "Package implements the decoding of logfmt key-value pairs. -") - (license license:expat))) - -(define-public go-github-com-matttproud-golang-protobuf-extensions-1.0.1 - (package - (name "go-github-com-matttproud-golang-protobuf-extensions") - (version "1.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/matttproud/golang_protobuf_extensions") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1d0c1isd2lk9pnfq2nk0aih356j30k3h1gi2w0ixsivi5csl7jya")))) - (build-system go-build-system) - (arguments - '(#:import-path "github.com/matttproud/golang_protobuf_extensions")) - (home-page "https://github.com/matttproud/golang_protobuf_extensions") - (synopsis "Overview") - (description - "This repository provides various Protocol Buffer extensions for the Go -language (golang), namely support for record length-delimited message -streaming.") - (license license:asl2.0))) - -(define-public go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223 - (package - (name "go-github-com-mwitkow-go-conntrack") - (version "0.0.0-20161129095857-cc309e4a2223") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mwitkow/go-conntrack") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0nbrnpk7bkmqg9mzwsxlm0y8m7s9qd9phr1q30qlx2qmdmz7c1mf")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mwitkow/go-conntrack")) - (home-page "https://github.com/mwitkow/go-conntrack") - (synopsis "Go tracing and monitoring (Prometheus) for") - (description - "@url{https://prometheus.io/,Prometheus} monitoring and @url{https://godoc.org/golang.org/x/net/trace#EventLog,(code x/net/trace)} tracing wrappers @code{net.Conn}, both inbound (@code{net.Listener}) and outbound (@code{net.Dialer}).") - (license license:asl2.0))) - -(define-public go-github-com-pkg-errors-0.8.0 - (package - (name "go-github-com-pkg-errors") - (version "0.8.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pkg/errors") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "001i6n71ghp2l6kdl3qq1v2vmghcz3kicv9a5wgcihrzigm75pp5")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pkg/errors")) - (home-page "https://github.com/pkg/errors") - (synopsis "errors") - (description "Package errors provides simple error handling primitives. -") - (license license:bsd-2))) - -(define-public go-github-com-prometheus-client-golang-0.9.1 - (package - (name "go-github-com-prometheus-client-golang") - (version "0.9.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/client_golang") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "01gnylazia30pcp069xcng482gwmm3xcx5zgrlwdkhic1lyb6i9l")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/client_golang")) - (home-page "https://github.com/prometheus/client_golang") - (synopsis "Prometheus Go client library") - (description - "This is the @url{http://golang.org,Go} client library for -@url{http://prometheus.io,Prometheus}. It has two separate parts, one for -instrumenting application code, and one for creating clients that talk to the -Prometheus HTTP API.") - (license license:asl2.0))) - -(define-public go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910 - (package - (name "go-github-com-prometheus-client-model") - (version "0.0.0-20180712105110-5c3871d89910") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/client_model") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "04psf81l9fjcwascsys428v03fx4fi894h7fhrj2vvcz723q57k0")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/client_model")) - (home-page "https://github.com/prometheus/client_model") - (synopsis "Deprecation note") - (description - "This repository used to contain the code that defined both -the data model and the exposition format of Prometheus metrics.") - (license license:asl2.0))) - -(define-public go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d - (package - (name "go-github-com-prometheus-procfs") - (version "0.0.0-20181005140218-185b4288413d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/procfs") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0d85429kdw5dgj5zhyiz1sq3i5691vj2gjnda93nnxxzx9acg8cv")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/procfs")) - (home-page "https://github.com/prometheus/procfs") - (synopsis "procfs") - (description - "Package procfs provides functions to retrieve system, kernel and process -metrics from the pseudo-filesystem proc. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-crypto-0.0.0-20180904163835-0709b304e793 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20180904163835-0709b304e793") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0i05s09y5pavmfh71fgih7syxg58x7a4krgd8am6d3mnahnmab5c")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20180905080454-ebe1bf3edb33") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0rkspxyjxdmc9f4n09hgkwj8jjd8z5p8mc9z8vwqwqcwrqv4sg7c")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-sirupsen-logrus-1.2.0 - (package - (name "go-github-com-sirupsen-logrus") - (version "1.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sirupsen/logrus") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0r6334x2bls8ddznvzaldx4g88msjjns4mlks95rqrrg7h0ijigg")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/sirupsen/logrus")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33" - ,go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33) - ("go-golang-org-x-crypto-0.0.0-20180904163835-0709b304e793" - ,go-golang-org-x-crypto-0.0.0-20180904163835-0709b304e793) - ("go-github-com-stretchr-testify-1.2.2" - ,go-github-com-stretchr-testify-1.2.2) - ("go-github-com-stretchr-objx-0.1.1" - ,go-github-com-stretchr-objx-0.1.1) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.1" - ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.1) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/sirupsen/logrus") - (synopsis "Logrus") - (description - "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. -") - (license license:expat))) - -(define-public go-golang-org-x-net-0.0.0-20181114220301-adae6a3d119a - (package - (name "go-golang-org-x-net") - (version "0.0.0-20181114220301-adae6a3d119a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fx860zsgzqk28j7lmp96qsfrgb0kzbfjvr294hywswcbwdwkb01")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-github-com-prometheus-common-0.4.1 - (package - (name "go-github-com-prometheus-common") - (version "0.4.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/common") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0sf4sjdckblz1hqdfvripk3zyp8xq89w7q75kbsyg4c078af896s")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/common")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1) - ("go-gopkg-in-alecthomas-kingpin-v2-2.2.6" - ,go-gopkg-in-alecthomas-kingpin-v2-2.2.6) - ("go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5" - ,go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5) - ("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" - ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) - ("go-golang-org-x-net-0.0.0-20181114220301-adae6a3d119a" - ,go-golang-org-x-net-0.0.0-20181114220301-adae6a3d119a) - ("go-github-com-sirupsen-logrus-1.2.0" - ,go-github-com-sirupsen-logrus-1.2.0) - ("go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d" - ,go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d) - ("go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910" - ,go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910) - ("go-github-com-prometheus-client-golang-0.9.1" - ,go-github-com-prometheus-client-golang-0.9.1) - ("go-github-com-pkg-errors-0.8.0" ,go-github-com-pkg-errors-0.8.0) - ("go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223" - ,go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223) - ("go-github-com-matttproud-golang-protobuf-extensions-1.0.1" - ,go-github-com-matttproud-golang-protobuf-extensions-1.0.1) - ("go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515" - ,go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515) - ("go-github-com-julienschmidt-httprouter-1.2.0" - ,go-github-com-julienschmidt-httprouter-1.2.0) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0) - ("go-github-com-gogo-protobuf-1.1.1" - ,go-github-com-gogo-protobuf-1.1.1) - ("go-github-com-go-stack-stack-1.8.0" - ,go-github-com-go-stack-stack-1.8.0) - ("go-github-com-go-logfmt-logfmt-0.3.0" - ,go-github-com-go-logfmt-logfmt-0.3.0) - ("go-github-com-go-kit-kit-0.8.0" ,go-github-com-go-kit-kit-0.8.0) - ("go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973" - ,go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973) - ("go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf" - ,go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf) - ("go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc" - ,go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc))) - (home-page "https://github.com/prometheus/common") - (synopsis "Common") - (description - "This repository contains Go libraries that are shared across Prometheus -components and libraries. They are considered internal to Prometheus, without -any stability guarantees for external usage.") - (license license:asl2.0))) - -(define-public go-github-com-prometheus-procfs-0.0.2 - (package - (name "go-github-com-prometheus-procfs") - (version "0.0.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/procfs") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0s7pvs7fgnfpmym3cd0k219av321h9sf3yvdlnn3qy0ps280lg7k")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/procfs")) - (propagated-inputs - `(("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" - ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4))) - (home-page "https://github.com/prometheus/procfs") - (synopsis "procfs") - (description - "Package procfs provides functions to retrieve system, kernel and process -metrics from the pseudo-filesystem proc. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20181116152217-5ac8a444bdc5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "00zdrighflwc4iyizsag184nvl1cbkk02v73kpl5miprdrvzqlr4")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-prometheus-client-golang-1.0.0 - (package - (name "go-github-com-prometheus-client-golang") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/client_golang") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1f03ndyi3jq7zdxinnvzimz3s4z2374r6dikkc8i42xzb6d1bli6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/client_golang")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5" - ,go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5) - ("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0) - ("go-github-com-prometheus-procfs-0.0.2" - ,go-github-com-prometheus-procfs-0.0.2) - ("go-github-com-prometheus-common-0.4.1" - ,go-github-com-prometheus-common-0.4.1) - ("go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90" - ,go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90) - ("go-github-com-modern-go-reflect2-1.0.1" - ,go-github-com-modern-go-reflect2-1.0.1) - ("go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd" - ,go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd) - ("go-github-com-json-iterator-go-1.1.6" - ,go-github-com-json-iterator-go-1.1.6) - ("go-github-com-golang-protobuf-1.3.1" - ,go-github-com-golang-protobuf-1.3.1) - ("go-github-com-beorn7-perks-1.0.0" - ,go-github-com-beorn7-perks-1.0.0))) - (home-page "https://github.com/prometheus/client_golang") - (synopsis "Prometheus Go client library") - (description - "This is the @url{http://golang.org,Go} client library for -@url{http://prometheus.io,Prometheus}. It has two separate parts, one for -instrumenting application code, and one for creating clients that talk to the -Prometheus HTTP API.") - (license license:asl2.0))) - -(define-public go-github-com-prometheus-client-model-0.2.0 - (package - (name "go-github-com-prometheus-client-model") - (version "0.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/client_model") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0jffnz94d6ff39fr96b5w8i8yk26pwnrfggzz8jhi8k0yihg2c9d")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/client_model")) - (propagated-inputs - `(("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" - ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0))) - (home-page "https://github.com/prometheus/client_model") - (synopsis "Deprecation note") - (description - "This repository used to contain the code that defined both -the data model and the exposition format of Prometheus metrics.") - (license license:asl2.0))) - -(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.1 - (package - (name "go-github-com-konsorten-go-windows-terminal-sequences") - (version "1.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/konsorten/go-windows-terminal-sequences") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1lchgf27n276vma6iyxa0v1xds68n2g8lih5lavqnx5x6q5pw2ip")))) - (build-system go-build-system) - (arguments - '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) - (home-page "https://github.com/konsorten/go-windows-terminal-sequences") - (synopsis "Windows Terminal Sequences") - (description - "This library allow for enabling Windows terminal color support for Go.") - (license license:expat))) - -(define-public go-github-com-stretchr-objx-0.1.1 - (package - (name "go-github-com-stretchr-objx") - (version "0.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/objx") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0iph0qmpyqg4kwv8jsx6a56a7hhqq8swrazv40ycxk9rzr0s8yls")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/objx")) - (home-page "https://github.com/stretchr/objx") - (synopsis "Objx") - (description - "Objx - Go package for dealing with maps, slices, JSON and other data. -") - (license license:expat))) - -(define-public go-github-com-sirupsen-logrus-1.4.2 - (package - (name "go-github-com-sirupsen-logrus") - (version "1.4.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sirupsen/logrus") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "087k2lxrr9p9dh68yw71d05h5g9p5v26zbwd6j7lghinjfaw334x")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/sirupsen/logrus")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894" - ,go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894) - ("go-github-com-stretchr-testify-1.2.2" - ,go-github-com-stretchr-testify-1.2.2) - ("go-github-com-stretchr-objx-0.1.1" - ,go-github-com-stretchr-objx-0.1.1) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.1" - ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.1) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/sirupsen/logrus") - (synopsis "Logrus") - (description - "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. -") - (license license:expat))) - -(define-public go-gopkg-in-alecthomas-kingpin-v2-2.2.6 - (package - (name "go-gopkg-in-alecthomas-kingpin-v2") - (version "2.2.6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/alecthomas/kingpin.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0mndnv3hdngr3bxp7yxfd47cas4prv98sqw534mx7vp38gd88n5r")))) - (build-system go-build-system) - (arguments - '(#:import-path - "gopkg.in/alecthomas/kingpin.v2" - #:unpack-path - "gopkg.in/alecthomas/kingpin.v2")) - (home-page "https://gopkg.in/alecthomas/kingpin.v2") - (synopsis "Kingpin - A Go (golang) command line and flag parser") - (description - "Package kingpin provides command line interfaces like this: -") - (license license:expat))) - -(define-public go-gopkg-in-yaml-v2-2.2.4 - (package - (name "go-gopkg-in-yaml-v2") - (version "2.2.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "11bwj757wi8kdrcnlgfqb8vv2d2xdhlghmyagd19i62khrkchsg2")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v2") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language. -") - (license license:asl2.0))) - -(define-public go-github-com-prometheus-common-0.10.0 - (package - (name "go-github-com-prometheus-common") - (version "0.10.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/common") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ra7zfqsnvgfizzsxn3rk0dwhk7nx8p8082zgpvadbv2b0j1k01i")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/common")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.4" ,go-gopkg-in-yaml-v2-2.2.4) - ("go-gopkg-in-alecthomas-kingpin-v2-2.2.6" - ,go-gopkg-in-alecthomas-kingpin-v2-2.2.6) - ("go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894" - ,go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894) - ("go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980" - ,go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980) - ("go-github-com-sirupsen-logrus-1.4.2" - ,go-github-com-sirupsen-logrus-1.4.2) - ("go-github-com-prometheus-client-model-0.2.0" - ,go-github-com-prometheus-client-model-0.2.0) - ("go-github-com-prometheus-client-golang-1.0.0" - ,go-github-com-prometheus-client-golang-1.0.0) - ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) - ("go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223" - ,go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223) - ("go-github-com-matttproud-golang-protobuf-extensions-1.0.1" - ,go-github-com-matttproud-golang-protobuf-extensions-1.0.1) - ("go-github-com-julienschmidt-httprouter-1.2.0" - ,go-github-com-julienschmidt-httprouter-1.2.0) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2) - ("go-github-com-go-logfmt-logfmt-0.4.0" - ,go-github-com-go-logfmt-logfmt-0.4.0) - ("go-github-com-go-kit-kit-0.9.0" ,go-github-com-go-kit-kit-0.9.0) - ("go-github-com-alecthomas-units-0.0.0-20190717042225-c3de453c63f4" - ,go-github-com-alecthomas-units-0.0.0-20190717042225-c3de453c63f4) - ("go-github-com-alecthomas-template-0.0.0-20190718012654-fb15b899a751" - ,go-github-com-alecthomas-template-0.0.0-20190718012654-fb15b899a751))) - (home-page "https://github.com/prometheus/common") - (synopsis "Common") - (description - "This repository contains Go libraries that are shared across Prometheus -components and libraries. They are considered internal to Prometheus, without -any stability guarantees for external usage.") - (license license:asl2.0))) - -(define-public go-golang-org-x-sys-0.0.0-20200106162015-b016eb3dc98e - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200106162015-b016eb3dc98e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1k0qr26046d228gi6ngkfxp4m1rjgxk4jj75h0kh1cpyp91n5rja")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-prometheus-procfs-0.2.0 - (package - (name "go-github-com-prometheus-procfs") - (version "0.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/procfs") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0rkpyq1grk3qyfahnfry5qkxjg5qb10yh1l8cvm8b79nqsmdyjbm")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/procfs")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20200106162015-b016eb3dc98e" - ,go-golang-org-x-sys-0.0.0-20200106162015-b016eb3dc98e) - ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" - ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) - ("go-github-com-google-go-cmp-0.3.1" - ,go-github-com-google-go-cmp-0.3.1))) - (home-page "https://github.com/prometheus/procfs") - (synopsis "procfs") - (description - "Package procfs provides functions to retrieve system, kernel and process -metrics from the pseudo-filesystem proc. -") - (license license:asl2.0))) - -(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.3 - (package - (name "go-github-com-konsorten-go-windows-terminal-sequences") - (version "1.0.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/konsorten/go-windows-terminal-sequences") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1yrsd4s8vhjnxhwbigirymz89dn6qfjnhn28i33vvvdgf96j6ypl")))) - (build-system go-build-system) - (arguments - '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) - (home-page "https://github.com/konsorten/go-windows-terminal-sequences") - (synopsis "Windows Terminal Sequences") - (description - "This library allow for enabling Windows terminal color support for Go.") - (license license:expat))) - -(define-public go-github-com-stretchr-testify-1.2.2 - (package - (name "go-github-com-stretchr-testify") - (version "1.2.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/testify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0dlszlshlxbmmfxj5hlwgv3r22x0y1af45gn1vd198nvvs3pnvfs")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/testify")) - (home-page "https://github.com/stretchr/testify") - (synopsis "Testify - Thou Shalt Write Tests") - (description - "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190422165155-953cdadca894") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0gkha4whk8xkcv3isigbs250akag99isxnd3v9xmy0kl3g88hxy1")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-sirupsen-logrus-1.6.0 - (package - (name "go-github-com-sirupsen-logrus") - (version "1.6.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sirupsen/logrus") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1zf9is1yxxnna0d1pyag2m9ziy3l27zb2j92p9msm1gx5jjrvzzj")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/sirupsen/logrus")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894" - ,go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894) - ("go-github-com-stretchr-testify-1.2.2" - ,go-github-com-stretchr-testify-1.2.2) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.3" - ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.3) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/sirupsen/logrus") - (synopsis "Logrus") - (description - "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. -") - (license license:expat))) - -(define-public go-go-uber-org-atomic-1.4.0 - (package - (name "go-go-uber-org-atomic") - (version "1.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/uber-go/atomic") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0c6yzx15c20719xii3dm0vyjd8i9jx45m0wh5yp1zf29b0gbljcy")))) - (build-system go-build-system) - (arguments '(#:import-path "go.uber.org/atomic")) - (home-page "https://go.uber.org/atomic") - (synopsis "atomic") - (description - "Package atomic provides simple wrappers around numerics to enforce atomic -access. -") - (license license:expat))) - -(define-public go-go-uber-org-multierr-1.1.0 - (package - (name "go-go-uber-org-multierr") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/uber-go/multierr") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1slfc6syvw8cvr6rbrjsy6ja5w8gsx0f8aq8qm16rp2x5c2pj07w")))) - (build-system go-build-system) - (arguments '(#:import-path "go.uber.org/multierr")) - (home-page "https://go.uber.org/multierr") - (synopsis "multierr") - (description - "Package multierr allows combining one or more errors together. -") - (license license:expat))) - -(define-public go-go-uber-org-zap-1.10.0 - (package - (name "go-go-uber-org-zap") - (version "1.10.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/uber-go/zap") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "10hdzr1rghwbsl6bbd30779dx44fh9mg9pq8d2cgqlknqxxpvpvr")))) - (build-system go-build-system) - (arguments '(#:import-path "go.uber.org/zap")) - (home-page "https://go.uber.org/zap") - (synopsis "â\x9a¡ zap") - (description "Package zap provides fast, structured, leveled logging. -") - (license license:expat))) - -(define-public go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262 - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20190425150028-36563e24a262") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0lasi96f6a1h11gkm8kl33x03pmxp369wrqq2dg7x7xv9nq76d6g")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" - ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-golang-org-x-text-0.0.0-20170915032832-14c0d48ead0c - (package - (name "go-golang-org-x-text") - (version "0.0.0-20170915032832-14c0d48ead0c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/text") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0y0nrj4hw7vby6m3iqklbf4v7njqlsx7s4pwfkwmvh1ryn1kb7d6")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/text")) - (home-page "https://golang.org/x/text") - (synopsis "Go Text") - (description - "text is a repository of text-related packages related to internationalization -(i18n) and localization (l10n), such as character encodings, text -transformations, and locale-specific text handling. -") - (license license:bsd-3))) - -(define-public go-rsc-io-sampler-1.3.0 - (package - (name "go-rsc-io-sampler") - (version "1.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/rsc/sampler") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0byxk2ynba50py805kcvbvjzh59l1r308i1xgyzpw6lff4xx9xjh")))) - (build-system go-build-system) - (arguments '(#:import-path "rsc.io/sampler")) - (propagated-inputs - `(("go-golang-org-x-text-0.0.0-20170915032832-14c0d48ead0c" - ,go-golang-org-x-text-0.0.0-20170915032832-14c0d48ead0c))) - (home-page "https://rsc.io/sampler") - (synopsis #f) - (description "Package sampler shows simple texts. -") - (license license:bsd-3))) - -(define-public go-rsc-io-quote-v3-3.1.0 - (package - (name "go-rsc-io-quote-v3") - (version "3.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/rsc/quote") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0nvv97hwwrl1mx5gzsbdm1ndnwpg3m7i2jb10ig9wily7zmvki0i")))) - (build-system go-build-system) - (arguments - '(#:import-path "rsc.io/quote/v3" #:unpack-path "rsc.io/quote/v3")) - (propagated-inputs `(("go-rsc-io-sampler-1.3.0" ,go-rsc-io-sampler-1.3.0))) - (home-page "https://rsc.io/quote/v3") - (synopsis #f) - (description "Package quote collects pithy sayings. -") - (license license:bsd-3))) - -(define-public go-github-com-golang-mock-1.4.1 - (package - (name "go-github-com-golang-mock") - (version "1.4.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/mock") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1zb4n285mv85dh3y2f8fqbs30h2dhzw7vbczr6z0zg2gqr6vzg0q")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/mock")) - (propagated-inputs - `(("go-rsc-io-quote-v3-3.1.0" ,go-rsc-io-quote-v3-3.1.0) - ("go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262" - ,go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262))) - (home-page "https://github.com/golang/mock") - (synopsis "gomock") - (description - "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It -integrates well with Go's built-in @code{testing} package, but can be used in other -contexts too.") - (license license:asl2.0))) - -(define-public go-github-com-golang-protobuf-1.3.4 - (package - (name "go-github-com-golang-protobuf") - (version "1.3.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12dclmj2if8l0069fby4psrpqby7p810dr1dr63nwx93g9jhvkmx")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-github-com-chzyer-logex-1.1.10 - (package - (name "go-github-com-chzyer-logex") - (version "1.1.10") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/chzyer/logex") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "08pbjj3wx9acavlwyr055isa8a5hnmllgdv5k6ra60l5y1brmlq4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/chzyer/logex")) - (home-page "https://github.com/chzyer/logex") - (synopsis #f) - (description #f) - (license #f))) - -(define-public go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e - (package - (name "go-github-com-chzyer-readline") - (version "0.0.0-20180603132655-2972be24d48e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/chzyer/readline") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "104q8dazj8yf6b089jjr82fy9h1g80zyyzvp3g8b44a7d8ngjj6r")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/chzyer/readline")) - (home-page "https://github.com/chzyer/readline") - (synopsis "Guide") - (description - "Readline is a pure go implementation for GNU-Readline kind library. -") - (license license:expat))) - -(define-public go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1 - (package - (name "go-github-com-chzyer-test") - (version "0.0.0-20180213035817-a1ea475d72b1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/chzyer/test") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0rns2aqk22i9xsgyap0pq8wi4cfaxsri4d9q6xxhhyma8jjsnj2k")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/chzyer/test")) - (home-page "https://github.com/chzyer/test") - (synopsis "test") - (description #f) - (license license:expat))) - -(define-public go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6 - (package - (name "go-github-com-ianlancetaylor-demangle") - (version "0.0.0-20181102032728-5e5cf60278f6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/ianlancetaylor/demangle") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fhjk11cip9c3jyj1byz9z77n6n2rlxmyz0xjx1zpn1da3cvri75")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/ianlancetaylor/demangle")) - (home-page "https://github.com/ianlancetaylor/demangle") - (synopsis "github.com/ianlancetaylor/demangle") - (description - "Package demangle defines functions that demangle GCC/LLVM -C++ and Rust symbol names. -This package recognizes names that were mangled according to the C++ ABI -defined at @url{http://codesourcery.com/cxx-abi/,http://codesourcery.com/cxx-abi/} and the Rust ABI -defined at -@url{https://rust-lang.github.io/rfcs/2603-rust-symbol-name-mangling-v0.html,https://rust-lang.github.io/rfcs/2603-rust-symbol-name-mangling-v0.html} -") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20191204072324-ce4227a45e2e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1s43wvqfml6ml5ks7iv2bis9d664g77mq86v7mfmjhn56x856g35")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-google-pprof-0.0.0-20200229191704-1ebb73c60ed3 - (package - (name "go-github-com-google-pprof") - (version "0.0.0-20200229191704-1ebb73c60ed3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/pprof") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1gdi9p4j1zfm5xlm488i5l0q3kk4q6hsmbmlk6p729i0di2n3ifa")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/pprof")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" - ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) - ("go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6" - ,go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6) - ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" - ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) - ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" - ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) - ("go-github-com-chzyer-logex-1.1.10" - ,go-github-com-chzyer-logex-1.1.10))) - (home-page "https://github.com/google/pprof") - (synopsis "Introduction") - (description - "pprof is a tool for collection, manipulation and visualization -of performance profiles. -") - (license license:asl2.0))) - -(define-public go-github-com-jstemmer-go-junit-report-0.9.1 - (package - (name "go-github-com-jstemmer-go-junit-report") - (version "0.9.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/jstemmer/go-junit-report") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1knip80yir1cdsjlb3rzy0a4w3kl4ljpiciaz6hjzwqlfhnv7bkw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/jstemmer/go-junit-report")) - (home-page "https://github.com/jstemmer/go-junit-report") - (synopsis "go-junit-report") - (description - "Converts @code{go test} output to an xml report, suitable for applications that -expect junit xml reports (e.g. @url{http://jenkins-ci.org,Jenkins}).") - (license license:expat))) - -(define-public go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6 - (package - (name "go-github-com-golang-groupcache") - (version "0.0.0-20190702054246-869f871628b6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/groupcache") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0r4nk8129bvx50qb4xzjaay39b2h6k7cbdqqzdlanmc82ygczsbw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/groupcache")) - (home-page "https://github.com/golang/groupcache") - (synopsis "groupcache") - (description - "Package groupcache provides a data loading mechanism with caching -and de-duplication that works across a set of peer processes. -") - (license license:asl2.0))) - -(define-public go-github-com-golang-protobuf-1.3.1 - (package - (name "go-github-com-golang-protobuf") - (version "1.3.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "15am4s4646qy6iv0g3kkqq52rzykqjhm4bf08dk0fy2r58knpsyl")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-github-com-stretchr-testify-1.4.0 - (package - (name "go-github-com-stretchr-testify") - (version "1.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/testify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "187i5g88sxfy4vxpm7dw1gwv29pa2qaq475lxrdh5livh69wqfjb")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/testify")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) - ("go-github-com-stretchr-objx-0.1.0" - ,go-github-com-stretchr-objx-0.1.0) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.0" - ,go-github-com-davecgh-go-spew-1.1.0))) - (home-page "https://github.com/stretchr/testify") - (synopsis "Testify - Thou Shalt Write Tests") - (description - "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190502145724-3ef323f4f1fd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "15iw4gjvrnrx98rlny1qcaprp3577rh2b77byb38dr6m3q42rvc6")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20190425155659-357c62f0e4bb") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1h1a0wys83cc86s4w2hqmz78ixijw8f7qchmiwdv5xjvpg0i27c2")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" - ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) - ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) - ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" - ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) - ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" - ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) - ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" - ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd) - ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" - ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) - ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" - ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-google-golang-org-grpc-1.20.1 - (package - (name "go-google-golang-org-grpc") - (version "1.20.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0rj3fs6jillapiwnpkfn3v2jbl7a3zsb0lys4srswl26hjijviqq")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" - ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) - ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" - ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) - ("go-google-golang-org-appengine-1.1.0" - ,go-google-golang-org-appengine-1.1.0) - ("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" - ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" - ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0) - ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-client9-misspell-0.3.4" - ,go-github-com-client9-misspell-0.3.4) - ("go-github-com-burntsushi-toml-0.3.1" - ,go-github-com-burntsushi-toml-0.3.1) - ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-go-opencensus-io-0.22.3 - (package - (name "go-go-opencensus-io") - (version "0.22.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/census-instrumentation/opencensus-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0xj16iq5jp26hi2py7lsd8cvqh651fgn39y05gzvjdi88d9xd3nw")))) - (build-system go-build-system) - (arguments '(#:import-path "go.opencensus.io")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.20.1" ,go-google-golang-org-grpc-1.20.1) - ("go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb" - ,go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb) - ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) - ("go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd" - ,go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd) - ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" - ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) - ("go-github-com-stretchr-testify-1.4.0" - ,go-github-com-stretchr-testify-1.4.0) - ("go-github-com-google-go-cmp-0.3.0" - ,go-github-com-google-go-cmp-0.3.0) - ("go-github-com-golang-protobuf-1.3.1" - ,go-github-com-golang-protobuf-1.3.1) - ("go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6" - ,go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6))) - (home-page "https://go.opencensus.io") - (synopsis "OpenCensus Libraries for Go") - (description "Package opencensus contains Go support for OpenCensus. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-mod-0.1.1-0.20191105210325-c90efee705ee - (package - (name "go-golang-org-x-mod") - (version "0.1.1-0.20191105210325-c90efee705ee") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/mod") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0i5md645rmcy5z5ij9ng428k9rz4g3k1kjy3blsq1264rn426gdf")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/mod")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" - ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) - ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" - ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) - (home-page "https://golang.org/x/mod") - (synopsis "mod") - (description - "This repository holds packages for writing tools -that work directly with Go module mechanics. -That is, it is for direct manipulation of Go modules themselves.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7 - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20200130002326-2f3ba24bd6e7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0j3nnmlwnbivf0h9x89vlp8ji3ha41v96bj33cxwmrrjnxq543ww")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" - ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) - ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" - ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) - ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" - ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) - ("go-golang-org-x-mod-0.1.1-0.20191105210325-c90efee705ee" - ,go-golang-org-x-mod-0.1.1-0.20191105210325-c90efee705ee))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b - (package - (name "go-golang-org-x-lint") - (version "0.0.0-20200302205851-738671d3881b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/lint") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0jkiz4py59jjnkyxbxifpf7bsar11lbgmj5jiq2kic5k03shkn9c")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/lint")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7" - ,go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7))) - (home-page "https://golang.org/x/lint") - (synopsis "Installation") - (description "Package lint contains a linter for Go source code. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20200301022130-244492dfa37a - (package - (name "go-golang-org-x-net") - (version "0.0.0-20200301022130-244492dfa37a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0vm2q44phz4vjnzq9428rjk58c82fxf003whczp7c9ryn9fazh7s")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20200302150141-5c8b2ff67527 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200302150141-5c8b2ff67527") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0r5s7f4w7crrbcf5ydpr2xzsq0svjm332vsds41yp58kwi2lvh2v")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20200304193943-95d2e580d8eb - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20200304193943-95d2e580d8eb") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0f46657xsdc12lr29ksqg80fp0j8v2iqgihzh788avcj5cmhnqyl")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) - ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" - ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) - ("go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b" - ,go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b) - ("go-golang-org-x-mod-0.2.0" ,go-golang-org-x-mod-0.2.0))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-github-com-golang-mock-1.2.0 - (package - (name "go-github-com-golang-mock") - (version "1.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/mock") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12ddj2g8ab87id6n2n67vnbhq6p8dvgsq1pzpqfriym4dk8w54fg")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/mock")) - (home-page "https://github.com/golang/mock") - (synopsis "gomock") - (description - "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It -integrates well with Go's built-in @code{testing} package, but can be used in other -contexts too.") - (license license:asl2.0))) - -(define-public go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c - (package - (name "go-github-com-google-btree") - (version "0.0.0-20180813153112-4030bb1f1f0c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/btree") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ba430m9fbnagacp57krgidsyrgp3ycw5r7dj71brgp5r52g82p6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/btree")) - (home-page "https://github.com/google/btree") - (synopsis "BTree implementation for Go") - (description - "Package btree implements in-memory B-Trees of arbitrary degree. -") - (license license:asl2.0))) - -(define-public go-github-com-google-martian-2.1.0+incompatible - (package - (name "go-github-com-google-martian") - (version "2.1.0+incompatible") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/martian") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "197hil6vrjk50b9wvwyzf61csid83whsjj6ik8mc9r2lryxlyyrp")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/martian")) - (home-page "https://github.com/google/martian") - (synopsis "Martian Proxy") - (description - "Package martian provides an HTTP/1.1 proxy with an API for configurable -request and response modifiers. -") - (license license:asl2.0))) - -(define-public go-github-com-google-pprof-0.0.0-20181206194817-3ea8567a2e57 - (package - (name "go-github-com-google-pprof") - (version "0.0.0-20181206194817-3ea8567a2e57") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/pprof") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "09rhjn3ms0a72dw0yzbp237p7yhqma772zspddn6mgkh3gi3kn4c")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/pprof")) - (home-page "https://github.com/google/pprof") - (synopsis "Introduction") - (description - "pprof is a tool for collection, manipulation and visualization -of performance profiles. -") - (license license:asl2.0))) - -(define-public go-github-com-googleapis-gax-go-v2-2.0.4 - (package - (name "go-github-com-googleapis-gax-go-v2") - (version "2.0.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/gax-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1iwnm6ky1x53lgs44mw3hpdkjzrm5qd0kfs50m0qcq2ml5m1cwdm")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/googleapis/gax-go/v2")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.19.0" - ,go-google-golang-org-grpc-1.19.0))) - (home-page "https://github.com/googleapis/gax-go") - (synopsis #f) - (description - "Package gax contains a set of modules which aid the development of APIs -for clients and servers based on gRPC and Google API conventions. -") - (license license:bsd-3))) - -(define-public go-github-com-jstemmer-go-junit-report-0.0.0-20190106144839-af01ea7f8024 - (package - (name "go-github-com-jstemmer-go-junit-report") - (version "0.0.0-20190106144839-af01ea7f8024") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/jstemmer/go-junit-report") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1lp3n94ris12hac02wi31f3whs88lcrzwgdg43a5j6cafg9p1d0s")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/jstemmer/go-junit-report")) - (home-page "https://github.com/jstemmer/go-junit-report") - (synopsis "go-junit-report") - (description - "Converts @code{go test} output to an xml report, suitable for applications that -expect junit xml reports (e.g. @url{http://jenkins-ci.org,Jenkins}).") - (license license:expat))) - -(define-public go-golang-org-x-text-0.3.1-0.20180807135948-17ff2d5776d2 - (package - (name "go-golang-org-x-text") - (version "0.3.1-0.20180807135948-17ff2d5776d2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/text") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1rrh2mnmyxr45nsvy42zq3w3ly6gw6rl993knwvf1w71kyv0jjnj")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/text")) - (home-page "https://golang.org/x/text") - (synopsis "Go Text") - (description - "text is a repository of text-related packages related to internationalization -(i18n) and localization (l10n), such as character encodings, text -transformations, and locale-specific text handling. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-time-0.0.0-20181108054448-85acf8d2951c - (package - (name "go-golang-org-x-time") - (version "0.0.0-20181108054448-85acf8d2951c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/time") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0yqnxsrarjk4qkda8kcxzmk7y90kkkxzx9iwryzrk7bzs87ky3xc")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/time")) - (home-page "https://golang.org/x/time") - (synopsis "Go Time") - (description "This repository provides supplementary Go time packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f - (package - (name "go-golang-org-x-lint") - (version "0.0.0-20190301231843-5614ed5bae6f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/lint") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0fzn0zjv0x92xvfdq3a0v9w5sgkhr7hxkfy9zaqi8i57807z8bnx")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/lint")) - (home-page "https://golang.org/x/lint") - (synopsis "Installation") - (description "Package lint contains a linter for Go source code. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421 - (package - (name "go-golang-org-x-oauth2") - (version "0.0.0-20190226205417-e64efc72b421") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/oauth2") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0djvwz2avx7knsjbl434vw1wqbrg53xp1kh599gfixn5icrggz4m")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/oauth2")) - (propagated-inputs - `(("go-google-golang-org-appengine-1.4.0" - ,go-google-golang-org-appengine-1.4.0) - ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" - ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) - ("go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e" - ,go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e) - ("go-cloud-google-com-go-0.34.0" ,go-cloud-google-com-go-0.34.0))) - (home-page "https://golang.org/x/oauth2") - (synopsis "OAuth2 for Go") - (description - "Package oauth2 provides support for making -OAuth2 authorized and authenticated HTTP requests, -as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -It can additionally grant authorization with Bearer JWT. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138 - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20190312170243-e65039ee4138") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0c094599cf70wdrms49a3879qkq122pqlp2av444gs2pvc8apdcx")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-google-golang-org-api-0.4.0 - (package - (name "go-google-golang-org-api") - (version "0.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-api-go-client") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1hzgrw5wasmcjlqpxsmryddzzw4cwyzf2vx14i9z51v1plwssijm")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/api")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" - ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) - ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) - ("go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19" - ,go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19) - ("go-google-golang-org-appengine-1.4.0" - ,go-google-golang-org-appengine-1.4.0) - ("go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138" - ,go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138) - ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" - ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) - ("go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421" - ,go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421) - ("go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f" - ,go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f) - ("go-go-opencensus-io-0.21.0" ,go-go-opencensus-io-0.21.0) - ("go-github-com-google-go-cmp-0.2.0" - ,go-github-com-google-go-cmp-0.2.0))) - (home-page "https://google.golang.org/api") - (synopsis "Google APIs Client Library for Go") - (description - "Package api is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of -sub-packages. -") - (license license:bsd-3))) - -(define-public go-google-golang-org-genproto-0.0.0-20190418145605-e7d98fc518a7 - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20190418145605-e7d98fc518a7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1cnavkyawwvfc5yl097ygnfy1ac69v4zc02gdfnq1bvgcvgmvnbi")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" - ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) - ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) - ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" - ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) - ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" - ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) - ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" - ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd) - ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" - ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) - ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" - ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-honnef-co-go-tools-0.0.0-20190106161140-3f1c8253044a - (package - (name "go-honnef-co-go-tools") - (version "0.0.0-20190106161140-3f1c8253044a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/dominikh/go-tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0d3vgh0fgfj1z7i648g1s6x2pwxd07sxfjwg1xn3yagr9h06jh3h")))) - (build-system go-build-system) - (arguments '(#:import-path "honnef.co/go/tools")) - (home-page "https://honnef.co/go/tools") - (synopsis "Documentation") - (description - "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, -offers simplifications, and enforces style rules.") - (license license:expat))) - -(define-public go-cloud-google-com-go-0.38.0 - (package - (name "go-cloud-google-com-go") - (version "0.38.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-cloud-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0n6n13b7lri2fmc4bn4ifszyawj31dpbzvyv0xafsf81440z8cyh")))) - (build-system go-build-system) - (arguments '(#:import-path "cloud.google.com/go")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190106161140-3f1c8253044a" - ,go-honnef-co-go-tools-0.0.0-20190106161140-3f1c8253044a) - ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) - ("go-google-golang-org-genproto-0.0.0-20190418145605-e7d98fc518a7" - ,go-google-golang-org-genproto-0.0.0-20190418145605-e7d98fc518a7) - ("go-google-golang-org-api-0.4.0" ,go-google-golang-org-api-0.4.0) - ("go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138" - ,go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138) - ("go-golang-org-x-time-0.0.0-20181108054448-85acf8d2951c" - ,go-golang-org-x-time-0.0.0-20181108054448-85acf8d2951c) - ("go-golang-org-x-text-0.3.1-0.20180807135948-17ff2d5776d2" - ,go-golang-org-x-text-0.3.1-0.20180807135948-17ff2d5776d2) - ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" - ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) - ("go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421" - ,go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421) - ("go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f" - ,go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f) - ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" - ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) - ("go-go-opencensus-io-0.21.0" ,go-go-opencensus-io-0.21.0) - ("go-github-com-jstemmer-go-junit-report-0.0.0-20190106144839-af01ea7f8024" - ,go-github-com-jstemmer-go-junit-report-0.0.0-20190106144839-af01ea7f8024) - ("go-github-com-googleapis-gax-go-v2-2.0.4" - ,go-github-com-googleapis-gax-go-v2-2.0.4) - ("go-github-com-google-pprof-0.0.0-20181206194817-3ea8567a2e57" - ,go-github-com-google-pprof-0.0.0-20181206194817-3ea8567a2e57) - ("go-github-com-google-martian-2.1.0+incompatible" - ,go-github-com-google-martian-2.1.0+incompatible) - ("go-github-com-google-go-cmp-0.2.0" - ,go-github-com-google-go-cmp-0.2.0) - ("go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c" - ,go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0) - ("go-github-com-golang-mock-1.2.0" ,go-github-com-golang-mock-1.2.0))) - (home-page "https://cloud.google.com/go") - (synopsis "Google Cloud Client Libraries for Go") - (description - "Package cloud is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -of sub-packages. -") - (license license:asl2.0))) - -(define-public go-github-com-googleapis-gax-go-v2-2.0.5 - (package - (name "go-github-com-googleapis-gax-go-v2") - (version "2.0.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/gax-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1lxawwngv6miaqd25s3ba0didfzylbwisd2nz7r4gmbmin6jsjrx")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/googleapis/gax-go/v2")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.19.0" - ,go-google-golang-org-grpc-1.19.0))) - (home-page "https://github.com/googleapis/gax-go") - (synopsis #f) - (description - "Package gax contains a set of modules which aid the development of APIs -for clients and servers based on gRPC and Google API conventions. -") - (license license:bsd-3))) - -(define-public go-github-com-hashicorp-golang-lru-0.5.0 - (package - (name "go-github-com-hashicorp-golang-lru") - (version "0.5.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/golang-lru") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12k2cp2k615fjvfa5hyb9k2alian77wivds8s65diwshwv41939f")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/golang-lru")) - (home-page "https://github.com/hashicorp/golang-lru") - (synopsis "golang-lru") - (description - "Package lru provides three different LRU caches of varying sophistication. -") - (license license:mpl2.0))) - -(define-public go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6 - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20190227155943-e225da77a7e6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0bh3583smcfw6jw3w6lp0za93rz7hpxfdz8vhxng75b7a6vdlw4p")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the -ones provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19 - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20190307195333-5fe7a883aa19") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0qjkwig0r42q0j2qv57s4ahsgmmp41dz3ih3rnaqg0619n5w7lbs")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" - ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) - ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) - ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" - ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) - ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" - ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) - ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" - ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd) - ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" - ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) - ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" - ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-go-opencensus-io-0.21.0 - (package - (name "go-go-opencensus-io") - (version "0.21.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/census-instrumentation/opencensus-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "14s0a12xdzjvad0dgksgv8m3hh7nc585abvjkvyk6r67a29lxj6x")))) - (build-system go-build-system) - (arguments '(#:import-path "go.opencensus.io")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) - ("go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19" - ,go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-github-com-hashicorp-golang-lru-0.5.0" - ,go-github-com-hashicorp-golang-lru-0.5.0) - ("go-github-com-google-go-cmp-0.2.0" - ,go-github-com-google-go-cmp-0.2.0) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0))) - (home-page "https://go.opencensus.io") - (synopsis "OpenCensus Libraries for Go") - (description "Package opencensus contains Go support for OpenCensus. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-net-0.0.0-20190503192946-f4e77d36d62c - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190503192946-f4e77d36d62c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0avjnglqqg9ya0cbhp23m4namykii219kxjywxn4cd7pfcc5arha")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45 - (package - (name "go-golang-org-x-oauth2") - (version "0.0.0-20190604053449-0f29369cfe45") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/oauth2") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "06jwpvx0x2gjn2y959drbcir5kd7vg87k0r1216abk6rrdzzrzi2")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/oauth2")) - (propagated-inputs - `(("go-google-golang-org-appengine-1.4.0" - ,go-google-golang-org-appengine-1.4.0) - ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" - ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) - ("go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e" - ,go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e) - ("go-cloud-google-com-go-0.34.0" ,go-cloud-google-com-go-0.34.0))) - (home-page "https://golang.org/x/oauth2") - (synopsis "OAuth2 for Go") - (description - "Package oauth2 provides support for making -OAuth2 authorized and authenticated HTTP requests, -as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -It can additionally grant authorization with Bearer JWT. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190507160741-ecd444e8653b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1vhld4948mzfnlgf20id29mv1bwpk9a3xlbw1mbjzxzxxdv1jds2")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-google-golang-org-appengine-1.5.0 - (package - (name "go-google-golang-org-appengine") - (version "1.5.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/appengine") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0l7mkdnwhidv8m686x432vmx8z5nqcrr9f46ddgvrxbh4wvyfcll")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/appengine")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225" - ,go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0))) - (home-page "https://google.golang.org/appengine") - (synopsis "Go App Engine packages") - (description - "Package appengine provides basic functionality for Google App Engine. -") - (license license:asl2.0))) - -(define-public go-google-golang-org-api-0.20.0 - (package - (name "go-google-golang-org-api") - (version "0.20.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-api-go-client") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "13syr1x33k6mrn5w6l4sgdbzn368w3m60vf6kk2j10fwa45125rg")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/api")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" - ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" - ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) - ("go-google-golang-org-appengine-1.5.0" - ,go-google-golang-org-appengine-1.5.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) - ("go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b" - ,go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b) - ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" - ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) - ("go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45" - ,go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45) - ("go-golang-org-x-net-0.0.0-20190503192946-f4e77d36d62c" - ,go-golang-org-x-net-0.0.0-20190503192946-f4e77d36d62c) - ("go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422" - ,go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422) - ("go-go-opencensus-io-0.21.0" ,go-go-opencensus-io-0.21.0) - ("go-github-com-hashicorp-golang-lru-0.5.1" - ,go-github-com-hashicorp-golang-lru-0.5.1) - ("go-github-com-googleapis-gax-go-v2-2.0.5" - ,go-github-com-googleapis-gax-go-v2-2.0.5) - ("go-github-com-google-go-cmp-0.3.0" - ,go-github-com-google-go-cmp-0.3.0) - ("go-cloud-google-com-go-0.38.0" ,go-cloud-google-com-go-0.38.0))) - (home-page "https://google.golang.org/api") - (synopsis "Google APIs Client Library for Go") - (description - "Package api is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of -sub-packages. -") - (license license:bsd-3))) - -(define-public go-google-golang-org-genproto-0.0.0-20200305110556-506484158171 - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20200305110556-506484158171") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19h7sxkfjcrkm7majd0pyzzirdnk1qlsxc3h5zklhm234d8jg407")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" - ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-golang-protobuf-1.3.3" - ,go-github-com-golang-protobuf-1.3.3))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-github-com-google-renameio-0.1.0 - (package - (name "go-github-com-google-renameio") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/renameio") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ki2x5a9nrj17sn092d6n4zr29lfg5ydv4xz5cp58z6cw8ip43jx")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/renameio")) - (home-page "https://github.com/google/renameio") - (synopsis "Atomicity vs durability") - (description - "Package renameio provides a way to atomically create or replace a file or -symbolic link. -") - (license license:asl2.0))) - -(define-public go-gopkg-in-errgo-v2-2.1.0 - (package - (name "go-gopkg-in-errgo-v2") - (version "2.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/errgo.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "065mbihiy7q67wnql0bzl9y1kkvck5ivra68254zbih52jxwrgr2")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/errgo.v2" #:unpack-path "gopkg.in/errgo.v2")) - (propagated-inputs - `(("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" - ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) - ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0))) - (home-page "https://gopkg.in/errgo.v2") - (synopsis #f) - (description - "Package errgo provides some primitives for error creation and handling.") - (license license:bsd-3))) - -(define-public go-github-com-rogpeppe-go-internal-1.3.0 - (package - (name "go-github-com-rogpeppe-go-internal") - (version "1.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/rogpeppe/go-internal") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0mcdh1licgnnahwml9y2iq6xy5x9xmjw5frcnds2s3wpjyqrl216")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/rogpeppe/go-internal")) - (propagated-inputs - `(("go-gopkg-in-errgo-v2-2.1.0" ,go-gopkg-in-errgo-v2-2.1.0))) - (home-page "https://github.com/rogpeppe/go-internal") - (synopsis #f) - (description - "This repository factors out an opinionated selection of internal packages and functionality from the Go standard -library. Currently this consists mostly of packages and testing code from within the Go tool implementation.") - (license license:bsd-3))) - -(define-public go-golang-org-x-crypto-0.0.0-20190510104115-cbcb75029529 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20190510104115-cbcb75029529") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12831ga1gq04a3jbbcmww7kaqfdfgp7cdv2fj9aqidz8h52ajdmh")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" - ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) - ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" - ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-mod-0.0.0-20190513183733-4bf6d317e70e - (package - (name "go-golang-org-x-mod") - (version "0.0.0-20190513183733-4bf6d317e70e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/mod") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19lg1ly3j31anx92p0hynic1gjk417wwxphfdrb2cq1c19kj3r17")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/mod")) - (propagated-inputs - `(("go-golang-org-x-crypto-0.0.0-20190510104115-cbcb75029529" - ,go-golang-org-x-crypto-0.0.0-20190510104115-cbcb75029529))) - (home-page "https://golang.org/x/mod") - (synopsis "mod") - (description - "This repository holds packages for writing tools -that work directly with Go module mechanics. -That is, it is for direct manipulation of Go modules themselves.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20191130070609-6e064ea0cf2d - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20191130070609-6e064ea0cf2d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1nbki367xspsa37j6276f5q2gv31vfjpb52axn3p3ymz548my75d")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7" - ,go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7) - ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" - ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) - ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" - ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-honnef-co-go-tools-0.0.1-2020.1.3 - (package - (name "go-honnef-co-go-tools") - (version "0.0.1-2020.1.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/dominikh/go-tools") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0pvi1mzhy6zgx4zfgdypbl4zhvgg11hl5qv7blf2qs0a96j2djhf")))) - (build-system go-build-system) - (arguments '(#:import-path "honnef.co/go/tools")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20191130070609-6e064ea0cf2d" - ,go-golang-org-x-tools-0.0.0-20191130070609-6e064ea0cf2d) - ("go-golang-org-x-mod-0.0.0-20190513183733-4bf6d317e70e" - ,go-golang-org-x-mod-0.0.0-20190513183733-4bf6d317e70e) - ("go-github-com-rogpeppe-go-internal-1.3.0" - ,go-github-com-rogpeppe-go-internal-1.3.0) - ("go-github-com-kisielk-gotool-1.0.0" - ,go-github-com-kisielk-gotool-1.0.0) - ("go-github-com-google-renameio-0.1.0" - ,go-github-com-google-renameio-0.1.0) - ("go-github-com-burntsushi-toml-0.3.1" - ,go-github-com-burntsushi-toml-0.3.1))) - (home-page "https://honnef.co/go/tools") - (synopsis "Documentation") - (description - "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, -offers simplifications, and enforces style rules.") - (license license:expat))) - -(define-public go-cloud-google-com-go-0.54.0 - (package - (name "go-cloud-google-com-go") - (version "0.54.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-cloud-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ilqqymrphg546c66jc0npd48dlr88wbgrg462h1jgm2ykbnq1ba")))) - (build-system go-build-system) - (arguments '(#:import-path "cloud.google.com/go")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.1-2020.1.3" - ,go-honnef-co-go-tools-0.0.1-2020.1.3) - ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) - ("go-google-golang-org-genproto-0.0.0-20200305110556-506484158171" - ,go-google-golang-org-genproto-0.0.0-20200305110556-506484158171) - ("go-google-golang-org-api-0.20.0" ,go-google-golang-org-api-0.20.0) - ("go-golang-org-x-tools-0.0.0-20200304193943-95d2e580d8eb" - ,go-golang-org-x-tools-0.0.0-20200304193943-95d2e580d8eb) - ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) - ("go-golang-org-x-sys-0.0.0-20200302150141-5c8b2ff67527" - ,go-golang-org-x-sys-0.0.0-20200302150141-5c8b2ff67527) - ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" - ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) - ("go-golang-org-x-net-0.0.0-20200301022130-244492dfa37a" - ,go-golang-org-x-net-0.0.0-20200301022130-244492dfa37a) - ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" - ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) - ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) - ("go-github-com-jstemmer-go-junit-report-0.9.1" - ,go-github-com-jstemmer-go-junit-report-0.9.1) - ("go-github-com-googleapis-gax-go-v2-2.0.5" - ,go-github-com-googleapis-gax-go-v2-2.0.5) - ("go-github-com-google-pprof-0.0.0-20200229191704-1ebb73c60ed3" - ,go-github-com-google-pprof-0.0.0-20200229191704-1ebb73c60ed3) - ("go-github-com-google-martian-2.1.0+incompatible" - ,go-github-com-google-martian-2.1.0+incompatible) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.3.4" - ,go-github-com-golang-protobuf-1.3.4) - ("go-github-com-golang-mock-1.4.1" ,go-github-com-golang-mock-1.4.1) - ("go-cloud-google-com-go-storage-1.6.0" - ,go-cloud-google-com-go-storage-1.6.0) - ("go-cloud-google-com-go-pubsub-1.2.0" - ,go-cloud-google-com-go-pubsub-1.2.0) - ("go-cloud-google-com-go-datastore-1.1.0" - ,go-cloud-google-com-go-datastore-1.1.0) - ("go-cloud-google-com-go-bigquery-1.4.0" - ,go-cloud-google-com-go-bigquery-1.4.0))) - (home-page "https://cloud.google.com/go") - (synopsis "Google Cloud Client Libraries for Go") - (description - "Package cloud is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -of sub-packages. -") - (license license:asl2.0))) - -(define-public go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7 - (package - (name "go-github-com-gregjones-httpcache") - (version "0.0.0-20180305231024-9cad4c3443a7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gregjones/httpcache") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0wjdwcwqqcx2d5y68qvhg6qyj977il5ijmnn9h9cd6wjbdy0ay6s")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/gregjones/httpcache")) - (home-page "https://github.com/gregjones/httpcache") - (synopsis "httpcache") - (description - "Package httpcache provides a http.RoundTripper implementation that works as a -mostly RFC-compliant cache for http responses. -") - (license license:expat))) - -(define-public go-github-com-imdario-mergo-0.3.5 - (package - (name "go-github-com-imdario-mergo") - (version "0.3.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/imdario/mergo") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1mvgn89vp39gcpvhiq4n7nw5ipj7fk6h03jgc6fjwgvwvss213pb")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/imdario/mergo")) - (home-page "https://github.com/imdario/mergo") - (synopsis "Mergo") - (description - "This package provides a helper to merge structs and maps in Golang. Useful for configuration default values, avoiding messy if-statements. -") - (license license:bsd-3))) - -(define-public go-github-com-peterbourgon-diskv-2.0.1+incompatible - (package - (name "go-github-com-peterbourgon-diskv") - (version "2.0.1+incompatible") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/peterbourgon/diskv") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1mxpa5aad08x30qcbffzk80g9540wvbca4blc1r2qyzl65b8929b")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/peterbourgon/diskv")) - (home-page "https://github.com/peterbourgon/diskv") - (synopsis "What is diskv?") - (description - "Diskv (disk-vee) is a simple, persistent key-value store written in the Go -language. It starts with an incredibly simple API for storing arbitrary data on -a filesystem by key, and builds several layers of performance-enhancing -abstraction on top. The end result is a conceptually simple, but highly -performant, disk-backed storage system.") - (license license:expat))) - -(define-public go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20201002170205-7f63de1d35b0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1dr89jfs4dmpr3jqfshqqvfpzzdx4r76nkzhrvmixfrmn6wxrnd1")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" - ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) - ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" - ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-cloud-google-com-go-0.34.0 - (package - (name "go-cloud-google-com-go") - (version "0.34.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-cloud-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1kclgclwar3r37zbvb9gg3qxbgzkb50zk3s9778zlh2773qikmai")))) - (build-system go-build-system) - (arguments '(#:import-path "cloud.google.com/go")) - (home-page "https://cloud.google.com/go") - (synopsis "Google Cloud Client Libraries for Go") - (description - "Package cloud is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -of sub-packages. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190108225652-1e06a53dbb7e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0lpqqvdccby48nixihvmn8ig1z48b950m1bxfqxn78air308qc3j")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4 - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20181221193216-37e7f081c4d4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1bb0mw6ckb1k7z8v3iil2qlqwfj408fvvp8m1cik2b46p7snyjhm")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the -ones provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d - (package - (name "go-golang-org-x-oauth2") - (version "0.0.0-20200107190931-bf48bf16ab8d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/oauth2") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1sirdib60zwmh93kf9qrx51r8544k1p9rs5mk0797wibz3m4mrdg")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/oauth2")) - (propagated-inputs - `(("go-google-golang-org-appengine-1.4.0" - ,go-google-golang-org-appengine-1.4.0) - ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" - ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) - ("go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e" - ,go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e) - ("go-cloud-google-com-go-0.34.0" ,go-cloud-google-com-go-0.34.0))) - (home-page "https://golang.org/x/oauth2") - (synopsis "OAuth2 for Go") - (description - "Package oauth2 provides support for making -OAuth2 authorized and authenticated HTTP requests, -as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -It can additionally grant authorization with Bearer JWT. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e - (package - (name "go-golang-org-x-time") - (version "0.0.0-20200630173020-3af7569d3a1e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/time") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "05hqhw3vlssi499y6m41zgdp1yyjsw2kj95ahymlw6pkhsssh2vq")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/time")) - (home-page "https://golang.org/x/time") - (synopsis "Go Time") - (description "This repository provides supplementary Go time packages.") - (license license:bsd-3))) - -(define-public go-k8s-io-api-0.20.6 - (package - (name "go-k8s-io-api") - (version "0.20.6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes/api") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0mm6a91a4nrlsvnfcbgn2574vdwxf1nxpgrd5avklh8mym2ngimw")))) - (build-system go-build-system) - (arguments '(#:import-path "k8s.io/api")) - (propagated-inputs - `(("go-k8s-io-apimachinery-0.20.6" ,go-k8s-io-apimachinery-0.20.6) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2))) - (home-page "https://k8s.io/api") - (synopsis "api") - (description - "Schema of the external API types that are served by the Kubernetes API server.") - (license license:asl2.0))) - -(define-public go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96 - (package - (name "go-github-com-docker-spdystream") - (version "0.0.0-20160310174837-449fdfce4d96") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/moby/spdystream") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1412cpiis971iq1kxrirzirhj2708ispjh0x0dh879b66x8507sl")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/docker/spdystream")) - (home-page "https://github.com/docker/spdystream") - (synopsis "SpdyStream") - (description - "This package provides a multiplexed stream library using spdy") - (license license:asl2.0))) - -(define-public go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153 - (package - (name "go-github-com-elazarl-goproxy") - (version "0.0.0-20180725130230-947c36da3153") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/elazarl/goproxy") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0lmsnr5xmda89wig8sw62llg6acjb5caghz5jmdhnm85rm6rnssk")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/elazarl/goproxy")) - (home-page "https://github.com/elazarl/goproxy") - (synopsis "Introduction") - (description - "Taken from $GOROOT/src/pkg/net/http/chunked -needed to write https responses to client. -") - (license license:bsd-3))) - -(define-public go-github-com-evanphx-json-patch-4.9.0+incompatible - (package - (name "go-github-com-evanphx-json-patch") - (version "4.9.0+incompatible") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/evanphx/json-patch") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1r88qpzjxsx8skij9s5pi4a5qcv4bm18vq8sy21gpwgzp3qf6qzx")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/evanphx/json-patch")) - (home-page "https://github.com/evanphx/json-patch") - (synopsis "JSON-Patch") - (description - "@code{jsonpatch} is a library which provides functionality for both applying -@url{http://tools.ietf.org/html/rfc6902,RFC6902 JSON patches} against documents, as -well as for calculating & applying @url{https://tools.ietf.org/html/rfc7396,RFC7396 JSON merge patches}.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20191005200804-aed5e4c7ecf9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0wsdsbl9n61l99z0cvib2xzg56fsfgky4yc5xapdw9ywx9h0zm3a")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-fsnotify-fsnotify-1.4.9 - (package - (name "go-github-com-fsnotify-fsnotify") - (version "1.4.9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/fsnotify/fsnotify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1i1r72knpbfwwql9frn9bqc3nhfc2ai5m6qllcyr6wban62lr40x")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/fsnotify/fsnotify")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9" - ,go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9))) - (home-page "https://github.com/fsnotify/fsnotify") - (synopsis "File system notifications for Go") - (description - "Package fsnotify provides a platform-independent interface for file system notifications. -") - (license license:bsd-3))) - -(define-public go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e - (package - (name "go-github-com-golang-groupcache") - (version "0.0.0-20200121045136-8c9f03a8e57e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/groupcache") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0vjjr79r32icjzlb05wn02k59av7jx0rn1jijml8r4whlg7dnkfh")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/groupcache")) - (home-page "https://github.com/golang/groupcache") - (synopsis "groupcache") - (description - "Package groupcache provides a data loading mechanism with caching -and de-duplication that works across a set of peer processes. -") - (license license:asl2.0))) - -(define-public go-github-com-google-gofuzz-1.1.0 - (package - (name "go-github-com-google-gofuzz") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/gofuzz") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0si2fiigj45vr4jnw4grjhls7nw56wkwinnn93gqbl9ng9ynw8rx")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/gofuzz")) - (home-page "https://github.com/google/gofuzz") - (synopsis "gofuzz") - (description - "Package fuzz is a library for populating go objects with random values. -") - (license license:asl2.0))) - -(define-public go-github-com-google-uuid-1.1.2 - (package - (name "go-github-com-google-uuid") - (version "1.1.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/uuid") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1rbpfa0v0ly9sdnixcxhf79swki54ikgm1zkwwkj64p1ws66syqd")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/uuid")) - (home-page "https://github.com/google/uuid") - (synopsis "uuid") - (description "Package uuid generates and inspects UUIDs. -") - (license license:bsd-3))) - -(define-public go-github-com-hashicorp-golang-lru-0.5.1 - (package - (name "go-github-com-hashicorp-golang-lru") - (version "0.5.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/golang-lru") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "13f870cvk161bzjj6x41l45r5x9i1z9r2ymwmvm7768kg08zznpy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/golang-lru")) - (home-page "https://github.com/hashicorp/golang-lru") - (synopsis "golang-lru") - (description - "Package lru provides three different LRU caches of varying sophistication. -") - (license license:mpl2.0))) - -(define-public go-github-com-modern-go-concurrent-0.0.0-20180228061459-e0a39a4cb421 - (package - (name "go-github-com-modern-go-concurrent") - (version "0.0.0-20180228061459-e0a39a4cb421") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/modern-go/concurrent") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hamz1zimsxm9vl0ih19v7sbibglwq2j6473w4j9k7ib80fmxdzr")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/modern-go/concurrent")) - (home-page "https://github.com/modern-go/concurrent") - (synopsis "concurrent") - (description - "because sync.Map is only available in go 1.9, we can use concurrent.Map to make code portable") - (license license:asl2.0))) - -(define-public go-github-com-modern-go-reflect2-0.0.0-20180701023420-4b7aa43c6742 - (package - (name "go-github-com-modern-go-reflect2") - (version "0.0.0-20180701023420-4b7aa43c6742") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/modern-go/reflect2") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1721y3yr3dpx5dx5ashf063qczk2awy5zjir1jvp1h5hn7qz4i49")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/modern-go/reflect2")) - (home-page "https://github.com/modern-go/reflect2") - (synopsis "reflect2") - (description "reflect api that avoids runtime reflect.Value cost") - (license license:asl2.0))) - -(define-public go-github-com-json-iterator-go-1.1.10 - (package - (name "go-github-com-json-iterator-go") - (version "1.1.10") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/json-iterator/go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "134zwc2pmf8nd90r8065wsl6vv1mwjl23bs70i08dzhw5h98drr4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/json-iterator/go")) - (propagated-inputs - `(("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0) - ("go-github-com-modern-go-reflect2-0.0.0-20180701023420-4b7aa43c6742" - ,go-github-com-modern-go-reflect2-0.0.0-20180701023420-4b7aa43c6742) - ("go-github-com-modern-go-concurrent-0.0.0-20180228061459-e0a39a4cb421" - ,go-github-com-modern-go-concurrent-0.0.0-20180228061459-e0a39a4cb421) - ("go-github-com-google-gofuzz-1.0.0" - ,go-github-com-google-gofuzz-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/json-iterator/go") - (synopsis "Benchmark") - (description - "Package jsoniter implements encoding and decoding of JSON as defined in -@url{https://rfc-editor.org/rfc/rfc4627.html,RFC 4627} and provides interfaces with identical syntax of standard lib encoding/json. -Converting from encoding/json to jsoniter is no more than replacing the package with jsoniter -and variable type declarations (if any). -jsoniter interfaces gives 100% compatibility with code using standard lib. -") - (license license:expat))) - -(define-public go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f - (package - (name "go-github-com-mxk-go-flowrate") - (version "0.0.0-20140419014527-cca7078d478f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mxk/go-flowrate") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0zqs39923ja0yypdmiqk6x8pgmfs3ms5x5sl1dqv9z6zyx2xy541")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mxk/go-flowrate")) - (home-page "https://github.com/mxk/go-flowrate") - (synopsis #f) - (description #f) - (license license:bsd-3))) - -(define-public go-github-com-onsi-ginkgo-1.11.0 - (package - (name "go-github-com-onsi-ginkgo") - (version "1.11.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/onsi/ginkgo") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1vxmb5k89bq50m2kzcw5l3bdvci4czpifkgxd4nbq1yzv5ir03kp")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/onsi/ginkgo")) - (home-page "https://github.com/onsi/ginkgo") - (synopsis "Ginkgo 2.0 Release Candidate is available!") - (description "Ginkgo is a BDD-style testing framework for Golang -") - (license license:expat))) - -(define-public go-github-com-fsnotify-fsnotify-1.4.7 - (package - (name "go-github-com-fsnotify-fsnotify") - (version "1.4.7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/fsnotify/fsnotify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/fsnotify/fsnotify")) - (home-page "https://github.com/fsnotify/fsnotify") - (synopsis "File system notifications for Go") - (description - "Package fsnotify provides a platform-independent interface for file system notifications. -") - (license license:bsd-3))) - -(define-public go-github-com-hpcloud-tail-1.0.0 - (package - (name "go-github-com-hpcloud-tail") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hpcloud/tail") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1njpzc0pi1acg5zx9y6vj9xi6ksbsc5d387rd6904hy6rh2m6kn0")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hpcloud/tail")) - (home-page "https://github.com/hpcloud/tail") - (synopsis "Go package for tail-ing files") - (description - "This package provides a Go package striving to emulate the features of the BSD @code{tail} program.") - (license license:expat))) - -(define-public go-github-com-onsi-ginkgo-1.6.0 - (package - (name "go-github-com-onsi-ginkgo") - (version "1.6.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/onsi/ginkgo") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0x0gc89vgq38xhgmi2h22bhr73cf2gmk42g89nz89k8dgg9hhr25")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/onsi/ginkgo")) - (home-page "https://github.com/onsi/ginkgo") - (synopsis "Ginkgo 2.0 Release Candidate is available!") - (description "Ginkgo is a BDD-style testing framework for Golang -") - (license license:expat))) - -(define-public go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd - (package - (name "go-golang-org-x-net") - (version "0.0.0-20180906233101-161cd47e91fd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0254ld010iijygbzykib2vags1dc0wlmcmhgh4jl8iny159lhbcv")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20180909124046-d0be0721c37e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "081wyvfnlf842dqg03raxfz6lldlxpmyh1prix9lmrrm65arxb12")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-gopkg-in-fsnotify-v1-1.4.7 - (package - (name "go-gopkg-in-fsnotify-v1") - (version "1.4.7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/fsnotify.v1") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) - (build-system go-build-system) - (arguments - '(#:import-path - "gopkg.in/fsnotify.v1" - #:unpack-path - "gopkg.in/fsnotify.v1")) - (home-page "https://gopkg.in/fsnotify.v1") - (synopsis "File system notifications for Go") - (description - "Package fsnotify provides a platform-independent interface for file system notifications. -") - (license license:bsd-3))) - -(define-public go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7 - (package - (name "go-gopkg-in-tomb-v1") - (version "1.0.0-20141024135613-dd632973f1e7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/tomb.v1") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1lqmq1ag7s4b3gc3ddvr792c5xb5k6sfn0cchr3i2s7f1c231zjv")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/tomb.v1" #:unpack-path "gopkg.in/tomb.v1")) - (home-page "https://gopkg.in/tomb.v1") - (synopsis "Installation and usage") - (description - "The tomb package offers a conventional API for clean goroutine termination. -") - (license license:bsd-3))) - -(define-public go-github-com-onsi-gomega-1.7.0 - (package - (name "go-github-com-onsi-gomega") - (version "1.7.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/onsi/gomega") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "09j6wq425wgzzsbwm9ckhfgl2capv3yyqbrf45qyrjwkzm49i02y")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/onsi/gomega")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1) - ("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" - ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) - ("go-gopkg-in-fsnotify-v1-1.4.7" ,go-gopkg-in-fsnotify-v1-1.4.7) - ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e" - ,go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e) - ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" - ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) - ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" - ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) - ("go-github-com-onsi-ginkgo-1.6.0" ,go-github-com-onsi-ginkgo-1.6.0) - ("go-github-com-hpcloud-tail-1.0.0" ,go-github-com-hpcloud-tail-1.0.0) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0) - ("go-github-com-fsnotify-fsnotify-1.4.7" - ,go-github-com-fsnotify-fsnotify-1.4.7))) - (home-page "https://github.com/onsi/gomega") - (synopsis ": a BDD Testing Framework for Golang") - (description - "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library. -") - (license license:expat))) - -(define-public go-github-com-pkg-errors-0.9.1 - (package - (name "go-github-com-pkg-errors") - (version "0.9.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pkg/errors") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1761pybhc2kqr6v5fm8faj08x9bql8427yqg6vnfv6nhrasx1mwq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pkg/errors")) - (home-page "https://github.com/pkg/errors") - (synopsis "errors") - (description "Package errors provides simple error handling primitives. -") - (license license:bsd-2))) - -(define-public go-github-com-spf13-pflag-1.0.5 - (package - (name "go-github-com-spf13-pflag") - (version "1.0.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/spf13/pflag") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0gpmacngd0gpslnbkzi263f5ishigzgh6pbdv9hp092rnjl4nd31")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/spf13/pflag")) - (home-page "https://github.com/spf13/pflag") - (synopsis "Description") - (description - "Package pflag is a drop-in replacement for Go's flag package, implementing -POSIX/GNU-style --flags. -") - (license license:bsd-3))) - -(define-public go-gopkg-in-inf-v0-0.9.1 - (package - (name "go-gopkg-in-inf-v0") - (version "0.9.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/inf.v0") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "00k5iqjcp371fllqxncv7jkf80hn1zww92zm78cclbcn4ybigkng")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/inf.v0" #:unpack-path "gopkg.in/inf.v0")) - (home-page "https://gopkg.in/inf.v0") - (synopsis #f) - (description - "Package inf (type inf.Dec) implements \"infinite-precision\" decimal -arithmetic. -\"Infinite precision\" describes two characteristics: practically unlimited -precision for decimal number representation and no support for calculating -with any specific fixed precision. -(Although there is no practical limit on precision, inf.Dec can only -represent finite decimals.) -") - (license license:bsd-3))) - -(define-public go-github-com-nytimes-gziphandler-0.0.0-20170623195520-56545f4a5d46 - (package - (name "go-github-com-nytimes-gziphandler") - (version "0.0.0-20170623195520-56545f4a5d46") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/nytimes/gziphandler") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fwk9wz6vrvq72f2gq8jhvd1nvv6grqgwrjq66vjpm0726pxar72")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/NYTimes/gziphandler")) - (home-page "https://github.com/NYTimes/gziphandler") - (synopsis "Gzip Handler") - (description - "This is a tiny Go package which wraps HTTP handlers to transparently gzip the -response body, for clients which support it. Although it's usually simpler to -leave that to a reverse proxy (like nginx or Varnish), this package is useful -when that's undesirable.") - (license license:asl2.0))) - -(define-public go-github-com-asaskevich-govalidator-0.0.0-20190424111038-f61b66f89f4a - (package - (name "go-github-com-asaskevich-govalidator") - (version "0.0.0-20190424111038-f61b66f89f4a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/asaskevich/govalidator") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1jzjd9ak4byb83bwhbyrrdclnhrgglyxcbr4d4qh39a6ywvcijm5")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/asaskevich/govalidator")) - (home-page "https://github.com/asaskevich/govalidator") - (synopsis "govalidator") - (description - "Package govalidator is package of validators and sanitizers for strings, structs and collections. -") - (license license:expat))) - -(define-public go-github-com-emicklei-go-restful-0.0.0-20170410110728-ff4f55a20633 - (package - (name "go-github-com-emicklei-go-restful") - (version "0.0.0-20170410110728-ff4f55a20633") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/emicklei/go-restful") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1v5lj5142abz3gvbygp6xghpdx4ps2lwswl8559ivaidahwnc21c")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/emicklei/go-restful")) - (home-page "https://github.com/emicklei/go-restful") - (synopsis "go-restful") - (description - "Package restful , a lean package for creating REST-style WebServices without magic. -") - (license license:expat))) - -(define-public go-github-com-ghodss-yaml-0.0.0-20150909031657-73d445a93680 - (package - (name "go-github-com-ghodss-yaml") - (version "0.0.0-20150909031657-73d445a93680") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/ghodss/yaml") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0pg53ky4sy3sp9j4n7vgf1p3gw4nbckwqfldcmmi9rf13kjh0mr7")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/ghodss/yaml")) - (home-page "https://github.com/ghodss/yaml") - (synopsis "YAML marshaling and unmarshaling support for Go") - (description - "Copyright 2013 The Go Authors. All rights reserved. -Use of this source code is governed by a BSD-style -license that can be found in the LICENSE file. -") - (license #f))) - -(define-public go-github-com-go-openapi-jsonreference-0.19.3 - (package - (name "go-github-com-go-openapi-jsonreference") - (version "0.19.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/go-openapi/jsonreference") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ln21xai74fynwmi4ck5j0c70yszjy96wfagc705y8khjxsgncsw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/go-openapi/jsonreference")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) - ("go-golang-org-x-net-0.0.0-20190827160401-ba9fcec4b297" - ,go-golang-org-x-net-0.0.0-20190827160401-ba9fcec4b297) - ("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0) - ("go-github-com-go-openapi-jsonpointer-0.19.3" - ,go-github-com-go-openapi-jsonpointer-0.19.3) - ("go-github-com-puerkitobio-urlesc-0.0.0-20170810143723-de5bf2ad4578" - ,go-github-com-puerkitobio-urlesc-0.0.0-20170810143723-de5bf2ad4578) - ("go-github-com-puerkitobio-purell-1.1.1" - ,go-github-com-puerkitobio-purell-1.1.1))) - (home-page "https://github.com/go-openapi/jsonreference") - (synopsis "gojsonreference") - (description - "@url{https://raw.githubusercontent.com/go-openapi/jsonreference/master/LICENSE,(img (@ (src http://img.shields.io/badge/license-Apache%20v2-orange.svg) (alt license)))} @url{http://godoc.org/github.com/go-openapi/jsonreference,(img (@ (src https://godoc.org/github.com/go-openapi/jsonreference?status.svg=) (alt GoDoc)))} -An implementation of JSON Reference - Go language") - (license license:asl2.0))) - -(define-public go-github-com-mailru-easyjson-0.0.0-20190626092158-b2ccc519800e - (package - (name "go-github-com-mailru-easyjson") - (version "0.0.0-20190626092158-b2ccc519800e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mailru/easyjson") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0q85h383mhbkcjm2vqm72bi8n2252fv3c56q3lclzb8n2crnjcdk")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mailru/easyjson")) - (home-page "https://github.com/mailru/easyjson") - (synopsis "easyjson") - (description - "Package easyjson contains marshaler/unmarshaler interfaces and helper functions. -") - (license license:expat))) - -(define-public go-github-com-go-openapi-jsonpointer-0.19.3 - (package - (name "go-github-com-go-openapi-jsonpointer") - (version "0.19.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/go-openapi/jsonpointer") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1m4bb7c5y8ss2s8wl50k7lsk84nl4lcldkbkphrfdl21y51gz4jr")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/go-openapi/jsonpointer")) - (propagated-inputs - `(("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0) - ("go-github-com-mailru-easyjson-0.0.0-20190626092158-b2ccc519800e" - ,go-github-com-mailru-easyjson-0.0.0-20190626092158-b2ccc519800e) - ("go-github-com-go-openapi-swag-0.19.5" - ,go-github-com-go-openapi-swag-0.19.5))) - (home-page "https://github.com/go-openapi/jsonpointer") - (synopsis "gojsonpointer") - (description - "@url{https://raw.githubusercontent.com/go-openapi/jsonpointer/master/LICENSE,(img (@ (src http://img.shields.io/badge/license-Apache%20v2-orange.svg) (alt license)))} @url{http://godoc.org/github.com/go-openapi/jsonpointer,(img (@ (src https://godoc.org/github.com/go-openapi/jsonpointer?status.svg=) (alt GoDoc)))} -An implementation of JSON Pointer - Go language") - (license license:asl2.0))) - -(define-public go-github-com-puerkitobio-purell-1.1.1 - (package - (name "go-github-com-puerkitobio-purell") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/PuerkitoBio/purell") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0c525frsxmalrn55hzzsxy17ng8avkd40ga0wxfw9haxsdjgqdqy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/PuerkitoBio/purell")) - (home-page "https://github.com/PuerkitoBio/purell") - (synopsis "Purell") - (description - "Package purell offers URL normalization as described on the wikipedia page: -@url{http://en.wikipedia.org/wiki/URL_normalization,http://en.wikipedia.org/wiki/URL_normalization} -") - (license license:bsd-3))) - -(define-public go-github-com-puerkitobio-urlesc-0.0.0-20170810143723-de5bf2ad4578 - (package - (name "go-github-com-puerkitobio-urlesc") - (version "0.0.0-20170810143723-de5bf2ad4578") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/PuerkitoBio/urlesc") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0n0srpqwbaan1wrhh2b7ysz543pjs1xw2rghvqyffg9l0g8kzgcw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/PuerkitoBio/urlesc")) - (home-page "https://github.com/PuerkitoBio/urlesc") - (synopsis "urlesc") - (description - "Package urlesc implements query escaping as per @url{https://rfc-editor.org/rfc/rfc3986.html,RFC 3986}. -It contains some parts of the net/url package, modified so as to allow -some reserved characters incorrectly escaped by net/url. -See @url{https://github.com/golang/go/issues/5684,https://github.com/golang/go/issues/5684} -") - (license license:bsd-3))) - -(define-public go-github-com-go-openapi-swag-0.19.2 - (package - (name "go-github-com-go-openapi-swag") - (version "0.19.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/go-openapi/swag") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1mlxlajx2p9wjm72rmqjrx5g49q2sn04y45s3nrykkf6jqlq1v4z")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/go-openapi/swag")) - (propagated-inputs - `(("go-github-com-sourcegraph-go-diff-0.5.1" - ,go-github-com-sourcegraph-go-diff-0.5.1) - ("go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422" - ,go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422) - ("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) - ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" - ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) - ("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0) - ("go-github-com-mailru-easyjson-0.0.0-20190614124828-94de47d64c63" - ,go-github-com-mailru-easyjson-0.0.0-20190614124828-94de47d64c63) - ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/go-openapi/swag") - (synopsis "Swag") - (description - "Package swag contains a bunch of helper functions for go-openapi and go-swagger projects. -") - (license license:asl2.0))) - -(define-public go-github-com-go-openapi-jsonpointer-0.19.2 - (package - (name "go-github-com-go-openapi-jsonpointer") - (version "0.19.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/go-openapi/jsonpointer") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1s3cqf4svrbygvvpvi7hf122szsgihas52vqh0bba3avf4w03g9n")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/go-openapi/jsonpointer")) - (propagated-inputs - `(("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0) - ("go-github-com-go-openapi-swag-0.19.2" - ,go-github-com-go-openapi-swag-0.19.2))) - (home-page "https://github.com/go-openapi/jsonpointer") - (synopsis "gojsonpointer") - (description - "@url{https://raw.githubusercontent.com/go-openapi/jsonpointer/master/LICENSE,(img (@ (src http://img.shields.io/badge/license-Apache%20v2-orange.svg) (alt license)))} @url{http://godoc.org/github.com/go-openapi/jsonpointer,(img (@ (src https://godoc.org/github.com/go-openapi/jsonpointer?status.svg=) (alt GoDoc)))} -An implementation of JSON Pointer - Go language") - (license license:asl2.0))) - -(define-public go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190613194153-d28f0bde5980") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18xj31h70m7xxb7gc86n9i21w6d7djbjz67zfaljm4jqskz6hxkf")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-text-0.3.2 - (package - (name "go-golang-org-x-text") - (version "0.3.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0flv9idw0jm5nm8lx25xqanbkqgfiym6619w575p7nrdh0riqwqh")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/text")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" - ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) - (home-page "https://golang.org/x/text") - (synopsis "Go Text") - (description - "text is a repository of text-related packages related to internationalization -(i18n) and localization (l10n), such as character encodings, text -transformations, and locale-specific text handling. -") - (license license:bsd-3))) - -(define-public go-github-com-go-openapi-jsonreference-0.19.2 - (package - (name "go-github-com-go-openapi-jsonreference") - (version "0.19.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/go-openapi/jsonreference") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0v933yvcwyzzlpdxwb9204ki7lls2rwfd96ww2i901ndvz37kdf8")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/go-openapi/jsonreference")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) - ("go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980" - ,go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980) - ("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0) - ("go-github-com-go-openapi-jsonpointer-0.19.2" - ,go-github-com-go-openapi-jsonpointer-0.19.2) - ("go-github-com-puerkitobio-urlesc-0.0.0-20170810143723-de5bf2ad4578" - ,go-github-com-puerkitobio-urlesc-0.0.0-20170810143723-de5bf2ad4578) - ("go-github-com-puerkitobio-purell-1.1.1" - ,go-github-com-puerkitobio-purell-1.1.1))) - (home-page "https://github.com/go-openapi/jsonreference") - (synopsis "gojsonreference") - (description - "@url{https://raw.githubusercontent.com/go-openapi/jsonreference/master/LICENSE,(img (@ (src http://img.shields.io/badge/license-Apache%20v2-orange.svg) (alt license)))} @url{http://godoc.org/github.com/go-openapi/jsonreference,(img (@ (src https://godoc.org/github.com/go-openapi/jsonreference?status.svg=) (alt GoDoc)))} -An implementation of JSON Reference - Go language") - (license license:asl2.0))) - -(define-public go-github-com-kr-pty-1.1.5 - (package - (name "go-github-com-kr-pty") - (version "1.1.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/pty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1bpq77b90z72cv9h66dvxsg2j197ylpgcps23xsjfbs752bykfw1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/pty")) - (home-page "https://github.com/kr/pty") - (synopsis "pty") - (description - "Package pty is a wrapper for github.com/creack/pty, which provides -functions for working with Unix terminals. -") - (license license:expat))) - -(define-public go-github-com-stretchr-objx-0.2.0 - (package - (name "go-github-com-stretchr-objx") - (version "0.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/objx") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0pcdvakxgddaiwcdj73ra4da05a3q4cgwbpm2w75ycq4kzv8ij8k")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/objx")) - (propagated-inputs - `(("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/stretchr/objx") - (synopsis "Objx") - (description - "Objx - Go package for dealing with maps, slices, JSON and other data. -") - (license license:expat))) - -(define-public go-golang-org-x-crypto-0.0.0-20190611184440-5c40567a22f8 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20190611184440-5c40567a22f8") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "17g8fb9vy2sqq8vgz8jdvf6c6d2290gm2qs0i4yzsd86mgn4dlrg")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" - ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) - ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" - ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20190827160401-ba9fcec4b297 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190827160401-ba9fcec4b297") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1hbqvy6r0s5h0dpdqw8fynl3cq0acin3iyqki9xvl5r8h33yb9bx")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20190616124812-15dcb6c0061f - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190616124812-15dcb6c0061f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1qfkkysbyn44nyx57cq8mmw1cjgpxi9gi9xrf6kljmd9c1416zdd")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20190614205625-5aca471b1d59 - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20190614205625-5aca471b1d59") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1i4h3q83w4y9s065w0wnnnwlssy69jbrj08k47ppsa8dnv85kyrf")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" - ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-github-com-go-openapi-spec-0.19.3 - (package - (name "go-github-com-go-openapi-spec") - (version "0.19.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/go-openapi/spec") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1dikq1p550vj5i9y918s075pgk0fxkixxk3fb70ri7wkm51s6nlj")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/go-openapi/spec")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) - ("go-golang-org-x-tools-0.0.0-20190614205625-5aca471b1d59" - ,go-golang-org-x-tools-0.0.0-20190614205625-5aca471b1d59) - ("go-golang-org-x-sys-0.0.0-20190616124812-15dcb6c0061f" - ,go-golang-org-x-sys-0.0.0-20190616124812-15dcb6c0061f) - ("go-golang-org-x-net-0.0.0-20190827160401-ba9fcec4b297" - ,go-golang-org-x-net-0.0.0-20190827160401-ba9fcec4b297) - ("go-golang-org-x-crypto-0.0.0-20190611184440-5c40567a22f8" - ,go-golang-org-x-crypto-0.0.0-20190611184440-5c40567a22f8) - ("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0) - ("go-github-com-stretchr-objx-0.2.0" - ,go-github-com-stretchr-objx-0.2.0) - ("go-github-com-kr-pty-1.1.5" ,go-github-com-kr-pty-1.1.5) - ("go-github-com-go-openapi-swag-0.19.5" - ,go-github-com-go-openapi-swag-0.19.5) - ("go-github-com-go-openapi-jsonreference-0.19.2" - ,go-github-com-go-openapi-jsonreference-0.19.2) - ("go-github-com-go-openapi-jsonpointer-0.19.3" - ,go-github-com-go-openapi-jsonpointer-0.19.3))) - (home-page "https://github.com/go-openapi/spec") - (synopsis "OAI object model") - (description "The object model for OpenAPI specification documents.") - (license license:asl2.0))) - -(define-public go-github-com-kr-pretty-0.1.0 - (package - (name "go-github-com-kr-pretty") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/pretty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18m4pwg2abd0j9cn5v3k2ksk9ig4vlwxmlw9rrglanziv9l967qp")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/pretty")) - (propagated-inputs - `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) - (home-page "https://github.com/kr/pretty") - (synopsis #f) - (description - "Package pretty provides pretty-printing for Go values. This is -useful during debugging, to avoid wrapping long output lines in -the terminal. -") - (license license:expat))) - -(define-public go-github-com-mailru-easyjson-0.0.0-20190614124828-94de47d64c63 - (package - (name "go-github-com-mailru-easyjson") - (version "0.0.0-20190614124828-94de47d64c63") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mailru/easyjson") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1km0kkh7cf7dlz5pqi9yr1wamv0167y41cyv1dbrcxfdmwgpfd23")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mailru/easyjson")) - (home-page "https://github.com/mailru/easyjson") - (synopsis "easyjson") - (description - "Package easyjson contains marshaler/unmarshaler interfaces and helper functions. -") - (license license:expat))) - -(define-public go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127 - (package - (name "go-gopkg-in-check-v1") - (version "1.0.0-20180628173108-788fd7840127") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/check.v1") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0v3bim0j375z81zrpr5qv42knqs0y2qv2vkjiqi5axvb78slki1a")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) - (home-page "https://gopkg.in/check.v1") - (synopsis "Instructions") - (description - "Package check is a rich testing extension for Go's testing package. -") - (license license:bsd-2))) - -(define-public go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422 - (package - (name "go-golang-org-x-lint") - (version "0.0.0-20190409202823-959b441ac422") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/lint") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1mgcv5f00pkzsbwnq2y7vqvd1b4lr5a3s47cphh2qv4indfk7pck")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/lint")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" - ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd))) - (home-page "https://golang.org/x/lint") - (synopsis "Installation") - (description "Package lint contains a linter for Go source code. -") - (license license:bsd-3))) - -(define-public go-github-com-gogo-protobuf-1.1.1 - (package - (name "go-github-com-gogo-protobuf") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gogo/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1525pq7r6h3s8dncvq8gxi893p2nq8dxpzvq0nfl5b4p6mq0v1c2")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/gogo/protobuf")) - (home-page "https://github.com/gogo/protobuf") - (synopsis "Protocol Buffers for Go with Gadgets") - (description - "gogoprotobuf is a fork of @url{https://github.com/golang/protobuf,golang/protobuf} with extra code generation features.") - (license license:bsd-3))) - -(define-public go-github-com-shurcool-go-0.0.0-20180423040247-9e1955d9fb6e - (package - (name "go-github-com-shurcool-go") - (version "0.0.0-20180423040247-9e1955d9fb6e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/shurcooL/go") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1lad9bvs75jsn61cfza19739c2c057k0bqxg2b4xz3z3l4w1mkqj")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/shurcooL/go")) - (home-page "https://github.com/shurcooL/go") - (synopsis "go") - (description "Common Go code.") - (license license:expat))) - -(define-public go-github-com-shurcool-go-goon-0.0.0-20170922171312-37c2f522c041 - (package - (name "go-github-com-shurcool-go-goon") - (version "0.0.0-20170922171312-37c2f522c041") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/shurcooL/go-goon") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "17ac6j6msdcxbmfhq6pxhw5z339b87bd6ciln9909drjv2szyxqv")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/shurcooL/go-goon")) - (home-page "https://github.com/shurcooL/go-goon") - (synopsis "goon") - (description - "Package goon is a deep pretty printer with Go-like notation. It implements the goon specification. -") - (license license:expat))) - -(define-public go-sourcegraph-com-sqs-pbtypes-0.0.0-20180604144634-d3ebe8f20ae4 - (package - (name "go-sourcegraph-com-sqs-pbtypes") - (version "0.0.0-20180604144634-d3ebe8f20ae4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sqs/pbtypes") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0vcyqq4jc2jv1wh288qdxv51qxcfj07lvnlf37pjicsd2yrb7yrr")))) - (build-system go-build-system) - (arguments '(#:import-path "sourcegraph.com/sqs/pbtypes")) - (home-page "https://sourcegraph.com/sqs/pbtypes") - (synopsis "pbtypes") - (description - "Package pbtypes contains protocol buffer types (Timestamp, Void, -etc.) and related helpers. -") - (license license:asl2.0))) - -(define-public go-github-com-sourcegraph-go-diff-0.5.1 - (package - (name "go-github-com-sourcegraph-go-diff") - (version "0.5.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sourcegraph/go-diff") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0acabccjmxgdvhyd7fr0krlf7ymc7mngdq292n03hfys9nrnb0b2")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/sourcegraph/go-diff")) - (propagated-inputs - `(("go-sourcegraph-com-sqs-pbtypes-0.0.0-20180604144634-d3ebe8f20ae4" - ,go-sourcegraph-com-sqs-pbtypes-0.0.0-20180604144634-d3ebe8f20ae4) - ("go-github-com-shurcool-go-goon-0.0.0-20170922171312-37c2f522c041" - ,go-github-com-shurcool-go-goon-0.0.0-20170922171312-37c2f522c041) - ("go-github-com-shurcool-go-0.0.0-20180423040247-9e1955d9fb6e" - ,go-github-com-shurcool-go-0.0.0-20180423040247-9e1955d9fb6e) - ("go-github-com-gogo-protobuf-1.1.1" - ,go-github-com-gogo-protobuf-1.1.1))) - (home-page "https://github.com/sourcegraph/go-diff") - (synopsis "go-diff") - (description "Diff parser and printer for Go.") - (license license:expat))) - -(define-public go-github-com-go-openapi-swag-0.19.5 - (package - (name "go-github-com-go-openapi-swag") - (version "0.19.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/go-openapi/swag") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1z34vqc5yz6rzvarrvlhkimxx33p74iaxb28l1mv716njvlsmjhg")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/go-openapi/swag")) - (propagated-inputs - `(("go-github-com-sourcegraph-go-diff-0.5.1" - ,go-github-com-sourcegraph-go-diff-0.5.1) - ("go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422" - ,go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422) - ("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) - ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" - ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) - ("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0) - ("go-github-com-mailru-easyjson-0.0.0-20190614124828-94de47d64c63" - ,go-github-com-mailru-easyjson-0.0.0-20190614124828-94de47d64c63) - ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/go-openapi/swag") - (synopsis "Swag") - (description - "Package swag contains a bunch of helper functions for go-openapi and go-swagger projects. -") - (license license:asl2.0))) - -(define-public go-github-com-google-uuid-1.1.1 - (package - (name "go-github-com-google-uuid") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/uuid") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hfxcf9frkb57k6q0rdkrmnfs78ms21r1qfk9fhlqga2yh5xg8zb")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/uuid")) - (home-page "https://github.com/google/uuid") - (synopsis "uuid") - (description "Package uuid generates and inspects UUIDs. -") - (license license:bsd-3))) - -(define-public go-github-com-docopt-docopt-go-0.0.0-20180111231733-ee0de3bc6815 - (package - (name "go-github-com-docopt-docopt-go") - (version "0.0.0-20180111231733-ee0de3bc6815") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/docopt/docopt.go") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hlra7rmi5pmd7d93rv56ahiy4qkgmq8a6mz0jpadvbi5qh8lq6j")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/docopt/docopt-go")) - (home-page "https://github.com/docopt/docopt-go") - (synopsis "docopt-go") - (description - "Package docopt parses command-line arguments based on a help message. -") - (license license:expat))) - -(define-public go-github-com-golang-protobuf-1.3.3 - (package - (name "go-github-com-golang-protobuf") - (version "1.3.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1cyyr52yhj3fzrily3rmsbqyj8va4ld75lmry0857m39rgpv8sy1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-github-com-googleapis-gnostic-0.4.1 - (package - (name "go-github-com-googleapis-gnostic") - (version "0.4.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/gnostic") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fw28m3ach5pkcdh4ijd6s7w09j0n88p6mah3hp0k8918jsc6mj9")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/googleapis/gnostic")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) - ("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" - ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) - ("go-github-com-kr-pretty-0.2.0" ,go-github-com-kr-pretty-0.2.0) - ("go-github-com-golang-protobuf-1.3.3" - ,go-github-com-golang-protobuf-1.3.3) - ("go-github-com-docopt-docopt-go-0.0.0-20180111231733-ee0de3bc6815" - ,go-github-com-docopt-docopt-go-0.0.0-20180111231733-ee0de3bc6815))) - (home-page "https://github.com/googleapis/gnostic") - (synopsis "â¨\x81 gnostic") - (description - "Gnostic is a tool for building better REST APIs through knowledge. -") - (license license:asl2.0))) - -(define-public go-github-com-mitchellh-mapstructure-1.1.2 - (package - (name "go-github-com-mitchellh-mapstructure") - (version "1.1.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mitchellh/mapstructure") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "03bpv28jz9zhn4947saqwi328ydj7f6g6pf1m2d4m5zdh5jlfkrr")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mitchellh/mapstructure")) - (home-page "https://github.com/mitchellh/mapstructure") - (synopsis "mapstructure") - (description - "Package mapstructure exposes functionality to convert one arbitrary -Go type into another, typically to convert a map[string]interface{} -into a native Go structure. -") - (license license:expat))) - -(define-public go-github-com-munnerz-goautoneg-0.0.0-20120707110453-a547fc61f48d - (package - (name "go-github-com-munnerz-goautoneg") - (version "0.0.0-20120707110453-a547fc61f48d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/munnerz/goautoneg") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19khhn5xhqv1yp7d6k987gh5w5rhrjnp4p0c6fyrd8z6lzz5h9qi")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/munnerz/goautoneg")) - (home-page "https://github.com/munnerz/goautoneg") - (synopsis #f) - (description #f) - (license license:bsd-3))) - -(define-public go-github-com-onsi-ginkgo-0.0.0-20170829012221-11459a886d9c - (package - (name "go-github-com-onsi-ginkgo") - (version "0.0.0-20170829012221-11459a886d9c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/onsi/ginkgo") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1nswc1fnrrs792qbix05h91bilj8rr3wxmxgwi97p2gjk0r292zh")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/onsi/ginkgo")) - (home-page "https://github.com/onsi/ginkgo") - (synopsis "Ginkgo 2.0 Release Candidate is available!") - (description "Ginkgo is a BDD-style testing framework for Golang -") - (license license:expat))) - -(define-public go-github-com-onsi-gomega-0.0.0-20170829124025-dcabb60a477c - (package - (name "go-github-com-onsi-gomega") - (version "0.0.0-20170829124025-dcabb60a477c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/onsi/gomega") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1775lv5jbsgv3ghq5v2827slqlhqdadrzc1nkpq4y0hdv2qzrgkm")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/onsi/gomega")) - (home-page "https://github.com/onsi/gomega") - (synopsis ": a BDD Testing Framework for Golang") - (description - "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library. -") - (license license:expat))) - -(define-public go-github-com-spf13-pflag-0.0.0-20170130214245-9ff6c6923cff - (package - (name "go-github-com-spf13-pflag") - (version "0.0.0-20170130214245-9ff6c6923cff") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/spf13/pflag") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0mfrxzyl8x7araa126lh8l3sihbbgfbzgkrg3v3cx7y4n3wrsqvn")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/spf13/pflag")) - (home-page "https://github.com/spf13/pflag") - (synopsis "Description") - (description - "Package pflag is a drop-in replacement for Go's flag package, implementing -POSIX/GNU-style --flags. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200323222414-85ca7c5b95cd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1504qkgbhhm4f0bhk77v2r1lj6x171ay5m79alkg78wjb5cign5l")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20200324143707-d3edc9973b7e - (package - (name "go-golang-org-x-net") - (version "0.0.0-20200324143707-d3edc9973b7e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12zbjwcsh9b0lwycqlkrnbyg5a6a9dzgj8hhgq399bdda5bd97y7")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" - ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-k8s-io-gengo-0.0.0-20200413195148-3a45101e95ac - (package - (name "go-k8s-io-gengo") - (version "0.0.0-20200413195148-3a45101e95ac") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes/gengo") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0x46jq6rv8z0y96231rfgzvfscgy5hp5aacid3r93zy0rq9r37g6")))) - (build-system go-build-system) - (arguments '(#:import-path "k8s.io/gengo")) - (home-page "https://k8s.io/gengo") - (synopsis "gengo") - (description - "This package provides a package for generating things based on go files. This mechanism was first used -in Kubernetes and is split out here for ease of reuse and maintainability.") - (license license:asl2.0))) - -(define-public go-sigs-k8s-io-structured-merge-diff-v4-4.0.2 - (package - (name "go-sigs-k8s-io-structured-merge-diff-v4") - (version "4.0.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes-sigs/structured-merge-diff") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1z60sw6nrlzyddyx5pvh6afwf8jvmn8c2zw15hklq17iyvj3lj7a")))) - (build-system go-build-system) - (arguments - '(#:import-path - "sigs.k8s.io/structured-merge-diff/v4" - #:unpack-path - "sigs.k8s.io/structured-merge-diff/v4")) - (propagated-inputs - `(("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0) - ("go-github-com-modern-go-reflect2-1.0.1" - ,go-github-com-modern-go-reflect2-1.0.1) - ("go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd" - ,go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd) - ("go-github-com-json-iterator-go-1.1.6" - ,go-github-com-json-iterator-go-1.1.6) - ("go-github-com-google-gofuzz-1.0.0" - ,go-github-com-google-gofuzz-1.0.0) - ("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1))) - (home-page "https://sigs.k8s.io/structured-merge-diff/v4") - (synopsis "Structured Merge and Diff") - (description - "This repo contains code which implements the Kubernetes \"apply\" operation.") - (license license:asl2.0))) - -(define-public go-sigs-k8s-io-yaml-1.1.0 - (package - (name "go-sigs-k8s-io-yaml") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes-sigs/yaml") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1p7hvjdr5jsyk7nys1g1pmgnf3ys6n320i6hds85afppk81k01kb")))) - (build-system go-build-system) - (arguments '(#:import-path "sigs.k8s.io/yaml")) - (home-page "https://sigs.k8s.io/yaml") - (synopsis "YAML marshaling and unmarshaling support for Go") - (description - "kubernetes-sigs/yaml is a permanent fork of @url{https://github.com/ghodss/yaml,ghodss/yaml}.") - (license #f))) - -(define-public go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd - (package - (name "go-k8s-io-kube-openapi") - (version "0.0.0-20201113171705-d219536bb9fd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes/kube-openapi") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "11d420a3rxznh3f6x5a6xp22zjwv6jfq4w1gb6srqb4vn9rhgrka")))) - (build-system go-build-system) - (arguments '(#:import-path "k8s.io/kube-openapi")) - (propagated-inputs - `(("go-sigs-k8s-io-yaml-1.1.0" ,go-sigs-k8s-io-yaml-1.1.0) - ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.2" - ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.2) - ("go-k8s-io-klog-v2-2.0.0" ,go-k8s-io-klog-v2-2.0.0) - ("go-k8s-io-gengo-0.0.0-20200413195148-3a45101e95ac" - ,go-k8s-io-gengo-0.0.0-20200413195148-3a45101e95ac) - ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) - ("go-golang-org-x-net-0.0.0-20200324143707-d3edc9973b7e" - ,go-golang-org-x-net-0.0.0-20200324143707-d3edc9973b7e) - ("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0) - ("go-github-com-spf13-pflag-0.0.0-20170130214245-9ff6c6923cff" - ,go-github-com-spf13-pflag-0.0.0-20170130214245-9ff6c6923cff) - ("go-github-com-onsi-gomega-0.0.0-20170829124025-dcabb60a477c" - ,go-github-com-onsi-gomega-0.0.0-20170829124025-dcabb60a477c) - ("go-github-com-onsi-ginkgo-0.0.0-20170829012221-11459a886d9c" - ,go-github-com-onsi-ginkgo-0.0.0-20170829012221-11459a886d9c) - ("go-github-com-munnerz-goautoneg-0.0.0-20120707110453-a547fc61f48d" - ,go-github-com-munnerz-goautoneg-0.0.0-20120707110453-a547fc61f48d) - ("go-github-com-mitchellh-mapstructure-1.1.2" - ,go-github-com-mitchellh-mapstructure-1.1.2) - ("go-github-com-json-iterator-go-1.1.6" - ,go-github-com-json-iterator-go-1.1.6) - ("go-github-com-googleapis-gnostic-0.4.1" - ,go-github-com-googleapis-gnostic-0.4.1) - ("go-github-com-google-uuid-1.1.1" ,go-github-com-google-uuid-1.1.1) - ("go-github-com-google-gofuzz-1.0.0" - ,go-github-com-google-gofuzz-1.0.0) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.3.3" - ,go-github-com-golang-protobuf-1.3.3) - ("go-github-com-go-openapi-swag-0.19.5" - ,go-github-com-go-openapi-swag-0.19.5) - ("go-github-com-go-openapi-spec-0.19.3" - ,go-github-com-go-openapi-spec-0.19.3) - ("go-github-com-go-openapi-jsonreference-0.19.3" - ,go-github-com-go-openapi-jsonreference-0.19.3) - ("go-github-com-go-openapi-jsonpointer-0.19.3" - ,go-github-com-go-openapi-jsonpointer-0.19.3) - ("go-github-com-ghodss-yaml-0.0.0-20150909031657-73d445a93680" - ,go-github-com-ghodss-yaml-0.0.0-20150909031657-73d445a93680) - ("go-github-com-emicklei-go-restful-0.0.0-20170410110728-ff4f55a20633" - ,go-github-com-emicklei-go-restful-0.0.0-20170410110728-ff4f55a20633) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1) - ("go-github-com-asaskevich-govalidator-0.0.0-20190424111038-f61b66f89f4a" - ,go-github-com-asaskevich-govalidator-0.0.0-20190424111038-f61b66f89f4a) - ("go-github-com-nytimes-gziphandler-0.0.0-20170623195520-56545f4a5d46" - ,go-github-com-nytimes-gziphandler-0.0.0-20170623195520-56545f4a5d46))) - (home-page "https://k8s.io/kube-openapi") - (synopsis "Kube OpenAPI") - (description - "This repo is the home for Kubernetes OpenAPI discovery spec generation. The goal -is to support a subset of OpenAPI features to satisfy kubernetes use-cases but -implement that subset with little to no assumption about the structure of the -code or routes. Thus, there should be no kubernetes specific code in this repo.") - (license license:asl2.0))) - -(define-public go-gopkg-in-yaml-v2-2.2.1 - (package - (name "go-gopkg-in-yaml-v2") - (version "2.2.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0dwjrs2lp2gdlscs7bsrmyc5yf6mm4fvgw71bzr9mv2qrd2q73s1")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v2") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language. -") - (license license:asl2.0))) - -(define-public go-github-com-google-gofuzz-1.0.0 - (package - (name "go-github-com-google-gofuzz") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/gofuzz") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0qz439qvccm91w0mmjz4fqgx48clxdwagkvvx89cr43q1d4iry36")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/gofuzz")) - (home-page "https://github.com/google/gofuzz") - (synopsis "gofuzz") - (description - "Package fuzz is a library for populating go objects with random values. -") - (license license:asl2.0))) - -(define-public go-github-com-json-iterator-go-1.1.6 - (package - (name "go-github-com-json-iterator-go") - (version "1.1.6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/json-iterator/go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "08caswxvdn7nvaqyj5kyny6ghpygandlbw9vxdj7l5vkp7q0s43r")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/json-iterator/go")) - (home-page "https://github.com/json-iterator/go") - (synopsis "Benchmark") - (description - "Package jsoniter implements encoding and decoding of JSON as defined in -@url{https://rfc-editor.org/rfc/rfc4627.html,RFC 4627} and provides interfaces with identical syntax of standard lib encoding/json. -Converting from encoding/json to jsoniter is no more than replacing the package with jsoniter -and variable type declarations (if any). -jsoniter interfaces gives 100% compatibility with code using standard lib. -") - (license license:expat))) - -(define-public go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd - (package - (name "go-github-com-modern-go-concurrent") - (version "0.0.0-20180306012644-bacd9c7ef1dd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/modern-go/concurrent") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0s0fxccsyb8icjmiym5k7prcqx36hvgdwl588y0491gi18k5i4zs")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/modern-go/concurrent")) - (home-page "https://github.com/modern-go/concurrent") - (synopsis "concurrent") - (description - "because sync.Map is only available in go 1.9, we can use concurrent.Map to make code portable") - (license license:asl2.0))) - -(define-public go-github-com-modern-go-reflect2-1.0.1 - (package - (name "go-github-com-modern-go-reflect2") - (version "1.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/modern-go/reflect2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "06a3sablw53n1dqqbr2f53jyksbxdmmk8axaas4yvnhyfi55k4lf")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/modern-go/reflect2")) - (home-page "https://github.com/modern-go/reflect2") - (synopsis "reflect2") - (description "reflect api that avoids runtime reflect.Value cost") - (license license:asl2.0))) - -(define-public go-sigs-k8s-io-structured-merge-diff-v4-4.0.3 - (package - (name "go-sigs-k8s-io-structured-merge-diff-v4") - (version "4.0.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes-sigs/structured-merge-diff") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1jv60bkk0z437bsz5ldjyc006k20njmpl0xfl8p3g1q0bx0fkypa")))) - (build-system go-build-system) - (arguments - '(#:import-path - "sigs.k8s.io/structured-merge-diff/v4" - #:unpack-path - "sigs.k8s.io/structured-merge-diff/v4")) - (propagated-inputs - `(("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0) - ("go-github-com-modern-go-reflect2-1.0.1" - ,go-github-com-modern-go-reflect2-1.0.1) - ("go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd" - ,go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd) - ("go-github-com-json-iterator-go-1.1.6" - ,go-github-com-json-iterator-go-1.1.6) - ("go-github-com-google-gofuzz-1.0.0" - ,go-github-com-google-gofuzz-1.0.0) - ("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1))) - (home-page "https://sigs.k8s.io/structured-merge-diff/v4") - (synopsis "Structured Merge and Diff") - (description - "This repo contains code which implements the Kubernetes \"apply\" operation.") - (license license:asl2.0))) - -(define-public go-gopkg-in-yaml-v2-2.2.8 - (package - (name "go-gopkg-in-yaml-v2") - (version "2.2.8") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1inf7svydzscwv9fcjd2rm61a4xjk6jkswknybmns2n58shimapw")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v2") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language. -") - (license license:asl2.0))) - -(define-public go-sigs-k8s-io-yaml-1.2.0 - (package - (name "go-sigs-k8s-io-yaml") - (version "1.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes-sigs/yaml") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "059a1chkd6afyvqszrx7h93k6cgik3ia92x29f5whpwi66461pzq")))) - (build-system go-build-system) - (arguments '(#:import-path "sigs.k8s.io/yaml")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://sigs.k8s.io/yaml") - (synopsis "YAML marshaling and unmarshaling support for Go") - (description - "kubernetes-sigs/yaml is a permanent fork of @url{https://github.com/ghodss/yaml,ghodss/yaml}.") - (license #f))) - -(define-public go-k8s-io-apimachinery-0.20.6 - (package - (name "go-k8s-io-apimachinery") - (version "0.20.6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes/apimachinery") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "16952v7zjk3pdyw5r3wy28qkcfx3risid0847pwdw8gmalwxr237")))) - (build-system go-build-system) - (arguments '(#:import-path "k8s.io/apimachinery")) - (propagated-inputs - `(("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) - ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.3" - ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.3) - ("go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd" - ,go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd) - ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) - ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) - ("go-gopkg-in-inf-v0-0.9.1" ,go-gopkg-in-inf-v0-0.9.1) - ("go-google-golang-org-protobuf-1.25.0" - ,go-google-golang-org-protobuf-1.25.0) - ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) - ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" - ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) - ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" - ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-onsi-gomega-1.7.0" ,go-github-com-onsi-gomega-1.7.0) - ("go-github-com-onsi-ginkgo-1.11.0" ,go-github-com-onsi-ginkgo-1.11.0) - ("go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f" - ,go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f) - ("go-github-com-modern-go-reflect2-1.0.1" - ,go-github-com-modern-go-reflect2-1.0.1) - ("go-github-com-json-iterator-go-1.1.10" - ,go-github-com-json-iterator-go-1.1.10) - ("go-github-com-hashicorp-golang-lru-0.5.1" - ,go-github-com-hashicorp-golang-lru-0.5.1) - ("go-github-com-googleapis-gnostic-0.4.1" - ,go-github-com-googleapis-gnostic-0.4.1) - ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) - ("go-github-com-google-gofuzz-1.1.0" - ,go-github-com-google-gofuzz-1.1.0) - ("go-github-com-google-go-cmp-0.5.2" - ,go-github-com-google-go-cmp-0.5.2) - ("go-github-com-golang-protobuf-1.4.3" - ,go-github-com-golang-protobuf-1.4.3) - ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" - ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2) - ("go-github-com-fsnotify-fsnotify-1.4.9" - ,go-github-com-fsnotify-fsnotify-1.4.9) - ("go-github-com-evanphx-json-patch-4.9.0+incompatible" - ,go-github-com-evanphx-json-patch-4.9.0+incompatible) - ("go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153" - ,go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153) - ("go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96" - ,go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://k8s.io/apimachinery") - (synopsis "apimachinery") - (description - "Scheme, typing, encoding, decoding, and conversion packages for Kubernetes and Kubernetes-like API objects.") - (license license:asl2.0))) - -(define-public go-k8s-io-client-go-0.20.6 - (package - (name "go-k8s-io-client-go") - (version "0.20.6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes/client-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fpz56pfadbfp8mlzmzicfmlgk5zqbk2rdwnr8c8h6ypjd5xjcvz")))) - (build-system go-build-system) - (arguments '(#:import-path "k8s.io/client-go")) - (propagated-inputs - `(("go-k8s-io-apimachinery-0.20.6" ,go-k8s-io-apimachinery-0.20.6) - ("go-k8s-io-api-0.20.6" ,go-k8s-io-api-0.20.6) - ("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) - ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" - ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) - ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) - ("go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e" - ,go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e) - ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" - ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) - ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" - ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) - ("go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0" - ,go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) - ("go-github-com-peterbourgon-diskv-2.0.1+incompatible" - ,go-github-com-peterbourgon-diskv-2.0.1+incompatible) - ("go-github-com-imdario-mergo-0.3.5" - ,go-github-com-imdario-mergo-0.3.5) - ("go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7" - ,go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7) - ("go-github-com-googleapis-gnostic-0.4.1" - ,go-github-com-googleapis-gnostic-0.4.1) - ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) - ("go-github-com-google-gofuzz-1.1.0" - ,go-github-com-google-gofuzz-1.1.0) - ("go-github-com-google-go-cmp-0.5.2" - ,go-github-com-google-go-cmp-0.5.2) - ("go-github-com-golang-protobuf-1.4.3" - ,go-github-com-golang-protobuf-1.4.3) - ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" - ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2) - ("go-github-com-evanphx-json-patch-4.9.0+incompatible" - ,go-github-com-evanphx-json-patch-4.9.0+incompatible) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1) - ("go-github-com-azure-go-autorest-autorest-adal-0.9.5" - ,go-github-com-azure-go-autorest-autorest-adal-0.9.5) - ("go-github-com-azure-go-autorest-autorest-0.11.1" - ,go-github-com-azure-go-autorest-autorest-0.11.1) - ("go-cloud-google-com-go-0.54.0" ,go-cloud-google-com-go-0.54.0))) - (home-page "https://k8s.io/client-go") - (synopsis "client-go") - (description - "Go clients for talking to a @url{http://kubernetes.io/,kubernetes} cluster.") - (license license:asl2.0))) - -(define-public go-k8s-io-component-base-0.20.6 - (package - (name "go-k8s-io-component-base") - (version "0.20.6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes/component-base") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1987vm5lhbnn4ynrpzdgz3873lp78664cpdpkbv9jwnhzqdhpyhf")))) - (build-system go-build-system) - (arguments '(#:import-path "k8s.io/component-base")) - (propagated-inputs - `(("go-k8s-io-client-go-0.20.6" ,go-k8s-io-client-go-0.20.6) - ("go-k8s-io-apimachinery-0.20.6" ,go-k8s-io-apimachinery-0.20.6) - ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" - ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) - ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) - ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) - ("go-go-uber-org-multierr-1.1.0" ,go-go-uber-org-multierr-1.1.0) - ("go-go-uber-org-atomic-1.4.0" ,go-go-uber-org-atomic-1.4.0) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) - ("go-github-com-sirupsen-logrus-1.6.0" - ,go-github-com-sirupsen-logrus-1.6.0) - ("go-github-com-prometheus-procfs-0.2.0" - ,go-github-com-prometheus-procfs-0.2.0) - ("go-github-com-prometheus-common-0.10.0" - ,go-github-com-prometheus-common-0.10.0) - ("go-github-com-prometheus-client-model-0.2.0" - ,go-github-com-prometheus-client-model-0.2.0) - ("go-github-com-prometheus-client-golang-1.7.1" - ,go-github-com-prometheus-client-golang-1.7.1) - ("go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd" - ,go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd) - ("go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369" - ,go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369) - ("go-github-com-google-go-cmp-0.5.2" - ,go-github-com-google-go-cmp-0.5.2) - ("go-github-com-go-logr-logr-0.2.0" ,go-github-com-go-logr-logr-0.2.0) - ("go-github-com-blang-semver-3.5.1+incompatible" - ,go-github-com-blang-semver-3.5.1+incompatible))) - (home-page "https://k8s.io/component-base") - (synopsis "component-base") - (description - "Implement KEP 32: @url{https://github.com/kubernetes/enhancements/blob/master/keps/sig-cluster-lifecycle/wgs/783-component-base/README.md,https://github.com/kubernetes/enhancements/blob/master/keps/sig-cluster-lifecycle/wgs/783-component-base/README.md}") - (license license:asl2.0))) - -(define-public go-github-com-yuin-goldmark-1.1.27 - (package - (name "go-github-com-yuin-goldmark") - (version "1.1.27") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/yuin/goldmark") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1872cqnii0kwiqcy81yin0idvjy5mdy4zlzz0csb319lcjs3b923")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/yuin/goldmark")) - (home-page "https://github.com/yuin/goldmark") - (synopsis "goldmark") - (description - "Package goldmark implements functions to convert markdown text to a desired format. -") - (license license:expat))) - -(define-public go-golang-org-x-mod-0.2.0 - (package - (name "go-golang-org-x-mod") - (version "0.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/mod") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fp6885dclq77mh73v7i54v2b9llpv4di193zc8vmsbbkkc483cl")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/mod")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" - ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) - ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" - ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) - ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" - ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) - (home-page "https://golang.org/x/mod") - (synopsis "mod") - (description - "This repository holds packages for writing tools -that work directly with Go module mechanics. -That is, it is for direct manipulation of Go modules themselves.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b - (package - (name "go-golang-org-x-net") - (version "0.0.0-20200226121028-0de0cce0169b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1db7s5kbzyh2zd5lpv05n7hp8wbwdvgk0wpiwrlnig94mkr0y5aq")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20190911185100-cd5d95a43a6e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1nqkyz2y1qvqcma52ijh02s8aiqmkfb95j08f6zcjhbga3ds6hds")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the -ones provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20200619180055-7c47624df98f - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20200619180055-7c47624df98f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fhzwd32j7w9g3algq0zj8g7ivx3f0mn9nx9mj046wdscryn49mk")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) - ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" - ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) - ("go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b" - ,go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b) - ("go-golang-org-x-mod-0.2.0" ,go-golang-org-x-mod-0.2.0) - ("go-github-com-yuin-goldmark-1.1.27" - ,go-github-com-yuin-goldmark-1.1.27))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-github-com-kisielk-errcheck-1.5.0 - (package - (name "go-github-com-kisielk-errcheck") - (version "1.5.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kisielk/errcheck") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ci3jz2px74pfmr42jv7dpx7fdzx08vai4czp9fkiyb0gcaiqsk6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kisielk/errcheck")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20200619180055-7c47624df98f" - ,go-golang-org-x-tools-0.0.0-20200619180055-7c47624df98f))) - (home-page "https://github.com/kisielk/errcheck") - (synopsis "errcheck") - (description - "errcheck is a program for checking for unchecked errors in go programs.") - (license license:expat))) - -(define-public go-github-com-yuin-goldmark-1.2.1 - (package - (name "go-github-com-yuin-goldmark") - (version "1.2.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/yuin/goldmark") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12rsnsf65drcp0jfw2jl9w589vsn3pxdk1zh3v9q908iigngrcmy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/yuin/goldmark")) - (home-page "https://github.com/yuin/goldmark") - (synopsis "goldmark") - (description - "Package goldmark implements functions to convert markdown text to a desired format. -") - (license license:expat))) - -(define-public go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20191011191535-87dc89f01550") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0z4i1m2yn3f31ci7wvcm2rxkx2yiv7a78mfzklncmsz2k97rlh2g")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" - ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) - ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" - ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190620200207-3b0461eec859") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0l00c8l0a8xnv6qdpwfzxxsr58jggacgzdrwiprrfx2xqm37b6d5")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7 - (package - (name "go-golang-org-x-xerrors") - (version "0.0.0-20190717185122-a985d3407aa7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/xerrors") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "00wzr5w8aadipgc3rkk8f11i41znskfj9ix5nhhaxyg7isrslgcj")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/xerrors")) - (home-page "https://golang.org/x/xerrors") - (synopsis #f) - (description - "Package xerrors implements functions to manipulate errors. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20191119224855-298f0cb1881e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0l4pqwib2wnfnix6nvxl0yrq87ipi7ff1rz6z5bxfzy9dki1nzmv")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7" - ,go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7) - ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" - ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) - ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" - ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898 - (package - (name "go-golang-org-x-xerrors") - (version "0.0.0-20191011141410-1b5146add898") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/xerrors") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0w2akj91krxjag0xdhsg78470888nicc5ismc2ap9jqpss6v1zih")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/xerrors")) - (home-page "https://golang.org/x/xerrors") - (synopsis #f) - (description - "Package xerrors implements functions to manipulate errors. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-mod-0.3.0 - (package - (name "go-golang-org-x-mod") - (version "0.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/mod") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ldgbx2zpprbsfn6p8pfgs4nn87gwbfcv2z0fa7n8alwsq2yw78q")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/mod")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" - ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) - ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" - ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) - ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" - ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) - (home-page "https://golang.org/x/mod") - (synopsis "mod") - (description - "This repository holds packages for writing tools -that work directly with Go module mechanics. -That is, it is for direct manipulation of Go modules themselves.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20201021035429-f5854403a974 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20201021035429-f5854403a974") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1vw63zpmhi337f3gc432x3wkib4j2ia8dy7if31wxwb9dgqvy222")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) - ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" - ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) - ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" - ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9 - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20201020160332-67f06af15bc9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "093p4panc808ak5bamzz7m9nb0xxib7778jpnr6f0xkz1n4fzyw5")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the -ones provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1 - (package - (name "go-golang-org-x-xerrors") - (version "0.0.0-20200804184101-5ec99f83aff1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/xerrors") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1dbzc3gmf2haazpv7cgmv97rq40g2xzwbglc17vas8dwhgwgwrzb")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/xerrors")) - (home-page "https://golang.org/x/xerrors") - (synopsis #f) - (description - "Package xerrors implements functions to manipulate errors. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20210106214847-113979e3529a - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20210106214847-113979e3529a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0pq1a7hkamqdwsajyfrb27s56cvxz5838krsgyqz346s2djwdrzl")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" - ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) - ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" - ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) - ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" - ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) - ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) - ("go-github-com-yuin-goldmark-1.2.1" - ,go-github-com-yuin-goldmark-1.2.1))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-github-com-gogo-protobuf-1.3.2 - (package - (name "go-github-com-gogo-protobuf") - (version "1.3.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gogo/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0dfv1bhx5zhb5bsj5sj757nkacf2swp1ajpcyj9d0b37n602m18a")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/gogo/protobuf")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20210106214847-113979e3529a" - ,go-golang-org-x-tools-0.0.0-20210106214847-113979e3529a) - ("go-github-com-kisielk-gotool-1.0.0" - ,go-github-com-kisielk-gotool-1.0.0) - ("go-github-com-kisielk-errcheck-1.5.0" - ,go-github-com-kisielk-errcheck-1.5.0))) - (home-page "https://github.com/gogo/protobuf") - (synopsis "Protocol Buffers for Go with Gadgets") - (description - "gogoprotobuf is a fork of @url{https://github.com/golang/protobuf,golang/protobuf} with extra code generation features.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-1.23.0 - (package - (name "go-google-golang-org-protobuf") - (version "1.23.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "03yan0m1v0zmlr935p4n24fd376mznsg85zy8sywbgisls4s1bzy")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.0" - ,go-github-com-golang-protobuf-1.4.0))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.4.3 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1kf1d7xmyjvy0z6j5czp6nqyvj9zrk6liv6znif08927xqfrzyln")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.23.0" - ,go-google-golang-org-protobuf-1.23.0) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-github-com-google-go-cmp-0.5.2 - (package - (name "go-github-com-google-go-cmp") - (version "0.5.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0qchy411jm9q2l9mf7x3ry2ycaqp9xdhf2nx14qrpzcxfigv2705")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") - (license license:bsd-3))) - -(define-public go-github-com-kr-pty-1.1.1 - (package - (name "go-github-com-kr-pty") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/pty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0383f0mb9kqjvncqrfpidsf8y6ns5zlrc91c6a74xpyxjwvzl2y6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/pty")) - (home-page "https://github.com/kr/pty") - (synopsis "pty") - (description - "Package pty is a wrapper for github.com/creack/pty, which provides -functions for working with Unix terminals. -") - (license license:expat))) - -(define-public go-github-com-kr-text-0.1.0 - (package - (name "go-github-com-kr-text") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1gm5bsl01apvc84bw06hasawyqm4q84vx1pm32wr9jnd7a8vjgj1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/text")) - (propagated-inputs - `(("go-github-com-kr-pty-1.1.1" ,go-github-com-kr-pty-1.1.1))) - (home-page "https://github.com/kr/text") - (synopsis #f) - (description - "Package text provides rudimentary functions for manipulating text in -paragraphs. -") - (license license:expat))) - -(define-public go-github-com-kr-pretty-0.2.0 - (package - (name "go-github-com-kr-pretty") - (version "0.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/pretty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ywbfzz1h3a3qd8rpkiqwi1dm4w8ls9ijb4x1b7567grns9f0vnp")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/pretty")) - (propagated-inputs - `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) - (home-page "https://github.com/kr/pretty") - (synopsis #f) - (description - "Package pretty provides pretty-printing for Go values. This is -useful during debugging, to avoid wrapping long output lines in -the terminal. -") - (license license:expat))) - -(define-public go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c - (package - (name "go-gopkg-in-yaml-v3") - (version "3.0.0-20200313102051-9f266ea9e77c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v3") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1bbai3lzb50m0x2vwsdbagrbhvfylj9k1m32hgbqwldqx4p9ay35")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v3") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language. -") - (license #f))) - -(define-public go-github-com-stretchr-testify-1.6.1 - (package - (name "go-github-com-stretchr-testify") - (version "1.6.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/testify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1yhiqqzjvi63pf01rgzx68gqkkvjx03fvl5wk30br5l6s81s090l")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/testify")) - (propagated-inputs - `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" - ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) - ("go-github-com-stretchr-objx-0.1.0" - ,go-github-com-stretchr-objx-0.1.0) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.0" - ,go-github-com-davecgh-go-spew-1.1.0))) - (home-page "https://github.com/stretchr/testify") - (synopsis "Testify - Thou Shalt Write Tests") - (description - "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -") - (license license:expat))) - -(define-public go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190404232315-eb5bcb51f2a3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "17k4g8krxbl84gzcs275b7gsh66dzm15fdxivjnx9xz8q84l4kby")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20190412213103-97732733099d - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190412213103-97732733099d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "118hkp01i4z1f5h6hcjm0ff2ngqhrzj1f7731n0kw8dr6hvbx0sw")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20200622213623-75b288015ac9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18vlncvvs11ds3zaaziqjlg5s2vcwi3496nn6qv7p0dp94j5pwa2")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" - ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) - ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" - ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200930185726-fdedc70b468f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1njlfhjbvi4lxvjbq8zswrb0y0q4jd2p6x51h1q6vmyzi9af6869")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-text-0.3.3 - (package - (name "go-golang-org-x-text") - (version "0.3.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19pihqm3phyndmiw6i42pdv6z1rbvlqlsnhsyqf9gsnn0qnmqqlh")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/text")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" - ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) - (home-page "https://golang.org/x/text") - (synopsis "Go Text") - (description - "text is a repository of text-related packages related to internationalization -(i18n) and localization (l10n), such as character encodings, text -transformations, and locale-specific text handling. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b - (package - (name "go-golang-org-x-net") - (version "0.0.0-20201110031124-69a78807bb2b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "176z5k6jbhr9vf0am2avl1lyqwym3q0mri98yb8r572z33qmcw1d")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) - ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" - ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) - ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" - ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20201112073958-5cba982894dd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "08dvnwmi2p4slmhyx7gzkmzfp51mmnkzi0ngwhvv0vip1s3s3zjc")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20180917221912-90fa682c2a6e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-golang-org-x-text-0.3.4 - (package - (name "go-golang-org-x-text") - (version "0.3.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "11jdvix83xcl5xnb039y4zrz4x5skzsps0w1jryp6wrar53cydvz")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/text")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" - ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) - (home-page "https://golang.org/x/text") - (synopsis "Go Text") - (description - "text is a repository of text-related packages related to internationalization -(i18n) and localization (l10n), such as character encodings, text -transformations, and locale-specific text handling. -") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-1.24.0 - (package - (name "go-google-golang-org-protobuf") - (version "1.24.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0x3qyn3rizbs671gs7f8v50rmiwf9h7kbaradpivw9718mhbg1gn")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" - ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.1" - ,go-github-com-golang-protobuf-1.4.1))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20201110150050-8816d57aaa9a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0cbfam4w9jr5gib43v3s2r5j8mhd3hl6ks3azwsahaff6idggg20")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.24.0" - ,go-google-golang-org-protobuf-1.24.0) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-golang-protobuf-1.4.1" - ,go-github-com-golang-protobuf-1.4.1))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-github-com-google-go-cmp-0.5.0 - (package - (name "go-github-com-google-go-cmp") - (version "0.5.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "04pzp583p6b32y34c6jygfxarff9qjs39rarvfh6467z24sdd9k4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-1.22.0 - (package - (name "go-google-golang-org-protobuf") - (version "1.22.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0n7lc4m7kfvj01glc0gnjy0zsnsic7cxnbvlajy0h14cxbab87pj")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.0" - ,go-github-com-golang-protobuf-1.4.0))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.4.1 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0w7ks4vffnnkp0miwgc3chrsnmya45lzvpahb2wmw0jwhdp5kdx7")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.22.0" - ,go-google-golang-org-protobuf-1.22.0) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-google-golang-org-grpc-1.27.0 - (package - (name "go-google-golang-org-grpc") - (version "1.27.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ijrmgrxyabfn51nm3p9l81iaasq5fg237wnr6mdc4dzsfcg8kd7")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" - ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-github-com-google-go-cmp-0.2.0" - ,go-github-com-google-go-cmp-0.2.0) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2) - ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" - ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) - ("go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473" - ,go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-github-com-google-go-cmp-0.3.0 - (package - (name "go-github-com-google-go-cmp") - (version "0.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1hyxx3434zshl2m9ja78gwlkg1rx9yl6diqa7dnjb31xz5x4gbjj")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd - (package - (name "go-google-golang-org-protobuf") - (version "0.0.0-20200109180630-ec00e32a8dfd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0w6lp9w2avxcpxwzzhspr209ifhyjagvs23k0vykfdqahl1aplrh")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.3.0" - ,go-github-com-google-go-cmp-0.3.0))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.4.0-rc.1 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.0-rc.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "186rirvbfgv6hrxp27ipx2cdpv19qifdd20biqfdm01wiyclqimn")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd" - ,go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd) - ("go-github-com-google-go-cmp-0.3.1" - ,go-github-com-google-go-cmp-0.3.1))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-github-com-google-go-cmp-0.3.1 - (package - (name "go-github-com-google-go-cmp") - (version "0.3.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1caw49i0plkjxir7kdf5qhwls3krqwfmi7g4h392rdfwi3kfahx1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64 - (package - (name "go-google-golang-org-protobuf") - (version "0.0.0-20200221191635-4d8936d0db64") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0563bsvdjj6k0sgwqd5yzrgfiax7sp3lcwh608gync5sv9fx39cy")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.3.1" - ,go-github-com-google-go-cmp-0.3.1) - ("go-github-com-golang-protobuf-1.4.0-rc.1" - ,go-github-com-golang-protobuf-1.4.0-rc.1))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.0-rc.1.0.20200221234624-67d41d38c208") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ykxhg3zixmw25pd435f8h16wnz1g00jpcmmg3xl030kksgqgpp6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64" - ,go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60 - (package - (name "go-google-golang-org-protobuf") - (version "0.0.0-20200228230310-ab0ca4ff8a60") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1rinspcznfp85yz4vrlf4h38hr576virgv8lcs22bsylqga808sd")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208" - ,go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.4.0-rc.2 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.0-rc.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1hd43hjv5zl6bjbmhm5phx74bw4xajsi73m5zky2k56za4mpgzzc")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60" - ,go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967 - (package - (name "go-google-golang-org-protobuf") - (version "1.20.1-0.20200309200217-e05f789c0967") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "17wmy89hnmpkwc63rfcjp50q15s9f1rhmczg06c3z9yy41zk82w9")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.0-rc.2" - ,go-github-com-golang-protobuf-1.4.0-rc.2))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.0-rc.4.0.20200313231945-b860323f09d0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1zj6cwshx0l5n9cn2cpbikzzb79px5dmkpc4p19zy1iif5r5p0z0")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967" - ,go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-1.21.0 - (package - (name "go-google-golang-org-protobuf") - (version "1.21.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12bwln8z1lf9105gdp6ip0rx741i4yfz1520gxnp8861lh9wcl63")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0" - ,go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.4.0 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fjvl5n77abxz5qsd4mgyvjq19x43c5bfvmq62mq3m5plx6zksc8")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.21.0" - ,go-google-golang-org-protobuf-1.21.0) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543 - (package - (name "go-golang-org-x-xerrors") - (version "0.0.0-20191204190536-9bdfabe68543") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/xerrors") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1yjfi1bk9xb81lqn85nnm13zz725wazvrx3b50hx19qmwg7a4b0c")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/xerrors")) - (home-page "https://golang.org/x/xerrors") - (synopsis #f) - (description - "Package xerrors implements functions to manipulate errors. -") - (license license:bsd-3))) - -(define-public go-github-com-google-go-cmp-0.4.0 - (package - (name "go-github-com-google-go-cmp") - (version "0.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1x5pvl3fb5sbyng7i34431xycnhmx8xx94gq2n19g6p0vz68z2v2")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc - (package - (name "go-google-golang-org-protobuf") - (version "1.23.1-0.20200526195155-81db48ad09cc") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "02cpr8rqr5wmpj2fqb32mzilsdnxkh52g1jz95a3ck3gzffc7hh1")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.0" - ,go-github-com-golang-protobuf-1.4.0))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013 - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20200526211855-cb27e3aa2013") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ml73ghqcwbz7ipfk8fnxb5indcml49b5p7vp1fsyny0abyyrmxf")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" - ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) - ("go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc" - ,go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-golang-protobuf-1.4.1" - ,go-github-com-golang-protobuf-1.4.1))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-google-golang-org-protobuf-1.25.0 - (package - (name "go-google-golang-org-protobuf") - (version "1.25.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0apfl42x166dh96zfq5kvv4b4ax9xljik6bq1mnvn2240ir3mc23")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" - ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) - ("go-github-com-google-go-cmp-0.5.0" - ,go-github-com-google-go-cmp-0.5.0) - ("go-github-com-golang-protobuf-1.4.1" - ,go-github-com-golang-protobuf-1.4.1))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15 - (package - (name "go-gopkg-in-check-v1") - (version "1.0.0-20190902080502-41f04d3bba15") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/check.v1") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0vfk9czmlxmp6wndq8k17rhnjxal764mxfhrccza7nwlia760pjy")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) - (home-page "https://gopkg.in/check.v1") - (synopsis "Instructions") - (description - "Package check is a rich testing extension for Go's testing package. -") - (license license:bsd-2))) - -(define-public go-k8s-io-cri-api-0.20.6 - (package - (name "go-k8s-io-cri-api") - (version "0.20.6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes/cri-api") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0yp4rfxjn4h78z4sbmwhcqm8mva9bsvsc5jky2qa76npp0hycjhx")))) - (build-system go-build-system) - (arguments '(#:import-path "k8s.io/cri-api")) - (propagated-inputs - `(("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" - ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) - ("go-google-golang-org-protobuf-1.25.0" - ,go-google-golang-org-protobuf-1.25.0) - ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) - ("go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a" - ,go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a) - ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) - ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" - ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) - ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" - ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-kr-pretty-0.2.0" ,go-github-com-kr-pretty-0.2.0) - ("go-github-com-google-go-cmp-0.5.2" - ,go-github-com-google-go-cmp-0.5.2) - ("go-github-com-golang-protobuf-1.4.3" - ,go-github-com-golang-protobuf-1.4.3) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://k8s.io/cri-api") - (synopsis "Purpose") - (description - "This repository contains the definitions for the Container Runtime Interface (CRI). -CRI is a plugin interface which enables kubelet to use a wide variety of container runtimes, -without the need to recompile. CRI consists of a protocol buffers and gRPC API.") - (license license:asl2.0))) - -(define-public go-github-com-go-logr-logr-0.2.0 - (package - (name "go-github-com-go-logr-logr") - (version "0.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/go-logr/logr") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "06xh4pw53z38vyi300mgpnr4pkqgknw9xakdyk1xzqfg9zd60d7d")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/go-logr/logr")) - (home-page "https://github.com/go-logr/logr") - (synopsis "A minimal logging API for Go") - (description - "Package logr defines a general-purpose logging API and abstract interfaces -to back that API. Packages in the Go ecosystem can depend on this package, -while callers can implement logging with whatever backend is appropriate. -") - (license license:asl2.0))) - -(define-public go-k8s-io-klog-v2-2.4.0 - (package - (name "go-k8s-io-klog-v2") - (version "2.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes/klog") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1zjih6bgdalga5hqaa2fwwidslq6lv358gkj88a8wwj7w253wc8c")))) - (build-system go-build-system) - (arguments - '(#:import-path "k8s.io/klog/v2" #:unpack-path "k8s.io/klog/v2")) - (propagated-inputs - `(("go-github-com-go-logr-logr-0.2.0" - ,go-github-com-go-logr-logr-0.2.0))) - (home-page "https://k8s.io/klog/v2") - (synopsis "klog") - (description - "Package klog implements logging analogous to the Google-internal C++ INFO/ERROR/V setup. -It provides functions Info, Warning, Error, Fatal, plus formatting variants such as -Infof. It also provides V-style logging controlled by the -v and -vmodule=file=2 flags. -") - (license license:asl2.0))) - -(define-public go-github-com-davecgh-go-spew-1.1.1 - (package - (name "go-github-com-davecgh-go-spew") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/davecgh/go-spew") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/davecgh/go-spew")) - (home-page "https://github.com/davecgh/go-spew") - (synopsis "go-spew") - (description - "Go-spew implements a deep pretty printer for Go data structures to aid in -debugging. A comprehensive suite of tests with 100% test coverage is provided -to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage -report. Go-spew is licensed under the liberal ISC license, so it may be used in -open source or commercial projects.") - (license license:isc))) - -(define-public go-github-com-spf13-afero-1.2.2 - (package - (name "go-github-com-spf13-afero") - (version "1.2.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/spf13/afero") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0j9r65qgd58324m85lkl49vk9dgwd62g7dwvkfcm3k6i9dc555a9")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/spf13/afero")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0))) - (home-page "https://github.com/spf13/afero") - (synopsis "Overview") - (description - "This package provides a FileSystem Abstraction System for Go") - (license license:asl2.0))) - -(define-public go-github-com-davecgh-go-spew-1.1.0 - (package - (name "go-github-com-davecgh-go-spew") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/davecgh/go-spew") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/davecgh/go-spew")) - (home-page "https://github.com/davecgh/go-spew") - (synopsis "go-spew") - (description - "Go-spew implements a deep pretty printer for Go data structures to aid in -debugging. A comprehensive suite of tests with 100% test coverage is provided -to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage -report. Go-spew is licensed under the liberal ISC license, so it may be used in -open source or commercial projects.") - (license license:isc))) - -(define-public go-github-com-stretchr-objx-0.1.0 - (package - (name "go-github-com-stretchr-objx") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/objx") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/objx")) - (home-page "https://github.com/stretchr/objx") - (synopsis "Objx") - (description - "Objx - Go package for dealing with maps, slices, JSON and other data. -") - (license license:expat))) - -(define-public go-github-com-stretchr-testify-1.3.0 - (package - (name "go-github-com-stretchr-testify") - (version "1.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/testify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0wjchp2c8xbgcbbq32w3kvblk6q6yn533g78nxl6iskq6y95lxsy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/testify")) - (propagated-inputs - `(("go-github-com-stretchr-objx-0.1.0" - ,go-github-com-stretchr-objx-0.1.0) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.0" - ,go-github-com-davecgh-go-spew-1.1.0))) - (home-page "https://github.com/stretchr/testify") - (synopsis "Testify - Thou Shalt Write Tests") - (description - "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -") - (license license:expat))) - -(define-public go-github-com-go-logr-logr-0.1.0 - (package - (name "go-github-com-go-logr-logr") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/go-logr/logr") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0fhijjhxz4n2j5i24ckzv8r9kri3v44jdyklgbqjfq0xm7izqg14")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/go-logr/logr")) - (home-page "https://github.com/go-logr/logr") - (synopsis "A minimal logging API for Go") - (description - "Package logr defines a general-purpose logging API and abstract interfaces -to back that API. Packages in the Go ecosystem can depend on this package, -while callers can implement logging with whatever backend is appropriate. -") - (license license:asl2.0))) - -(define-public go-k8s-io-klog-v2-2.0.0 - (package - (name "go-k8s-io-klog-v2") - (version "2.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes/klog") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "09vqm0n5l64lzpk3xqm4njbncnphx52qk21gwx8nsgyivlxx1n8g")))) - (build-system go-build-system) - (arguments - '(#:import-path "k8s.io/klog/v2" #:unpack-path "k8s.io/klog/v2")) - (propagated-inputs - `(("go-github-com-go-logr-logr-0.1.0" - ,go-github-com-go-logr-logr-0.1.0))) - (home-page "https://k8s.io/klog/v2") - (synopsis "klog") - (description - "Package klog implements logging analogous to the Google-internal C++ INFO/ERROR/V setup. -It provides functions Info, Warning, Error, Fatal, plus formatting variants such as -Infof. It also provides V-style logging controlled by the -v and -vmodule=file=2 flags. -") - (license license:asl2.0))) - -(define-public go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920 - (package - (name "go-k8s-io-utils") - (version "0.0.0-20201110183641-67b214c5f920") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes/utils") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19rc9v5xin0a8qbf25my3rd0jd74cin2mk2a38j2dwplqy3s9crl")))) - (build-system go-build-system) - (arguments '(#:import-path "k8s.io/utils")) - (propagated-inputs - `(("go-k8s-io-klog-v2-2.0.0" ,go-k8s-io-klog-v2-2.0.0) - ("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0) - ("go-github-com-spf13-afero-1.2.2" ,go-github-com-spf13-afero-1.2.2) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://k8s.io/utils") - (synopsis "Utils") - (description - "This package provides a set of Go libraries that provide low-level, kubernetes-independent packages -supplementing the @url{https://golang.org/pkg/#stdlib,Go standard libs}.") - (license license:asl2.0))) - -(define-public go-golang-org-x-tools-0.0.0-20181030221726-6c7e314b6563 - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20181030221726-6c7e314b6563") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1m1n6r8v6mrlh0yvlz3qxz4s7jc7nis0zf3dfl1i6hqh5xblkwnw")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-github-com-kisielk-errcheck-1.2.0 - (package - (name "go-github-com-kisielk-errcheck") - (version "1.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kisielk/errcheck") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0am6g10ipdxw84byscm7shda654882wjcbinq5c4696m6mhi2qrd")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kisielk/errcheck")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20181030221726-6c7e314b6563" - ,go-golang-org-x-tools-0.0.0-20181030221726-6c7e314b6563))) - (home-page "https://github.com/kisielk/errcheck") - (synopsis "errcheck") - (description - "errcheck is a program for checking for unchecked errors in go programs.") - (license license:expat))) - -(define-public go-github-com-kisielk-gotool-1.0.0 - (package - (name "go-github-com-kisielk-gotool") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kisielk/gotool") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "14af2pa0ssyp8bp2mvdw184s5wcysk6akil3wzxmr05wwy951iwn")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kisielk/gotool")) - (home-page "https://github.com/kisielk/gotool") - (synopsis "gotool") - (description - "Package gotool contains utility functions used to implement the standard -\"cmd/go\" tool, provided as a convenience to developers who want to write -tools with similar semantics. -") - (license license:expat))) - -(define-public go-github-com-gogo-protobuf-1.3.1 - (package - (name "go-github-com-gogo-protobuf") - (version "1.3.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gogo/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0x77x64sxjgfhmbijqfzmj8h4ar25l2w97h01q3cqs1wk7zfnkhp")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/gogo/protobuf")) - (propagated-inputs - `(("go-github-com-kisielk-gotool-1.0.0" - ,go-github-com-kisielk-gotool-1.0.0) - ("go-github-com-kisielk-errcheck-1.2.0" - ,go-github-com-kisielk-errcheck-1.2.0))) - (home-page "https://github.com/gogo/protobuf") - (synopsis "Protocol Buffers for Go with Gadgets") - (description - "gogoprotobuf is a fork of @url{https://github.com/golang/protobuf,golang/protobuf} with extra code generation features.") - (license license:bsd-3))) - -(define-public go-github-com-gogo-googleapis-1.3.2 - (package - (name "go-github-com-gogo-googleapis") - (version "1.3.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gogo/googleapis") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "10670qprmk151n6pa1yclr89kgrvmalzvkq221xqbid83iv59s2h")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/gogo/googleapis")) - (propagated-inputs - `(("go-github-com-gogo-protobuf-1.3.1" - ,go-github-com-gogo-protobuf-1.3.1))) - (home-page "https://github.com/gogo/googleapis") - (synopsis "Google APIs generated by gogoprotobuf") - (description - "The @url{https://github.com/gogo/grpc-example,grpc-example} includes an example usage of this repository.") - (license license:asl2.0))) - -(define-public go-github-com-golang-protobuf-1.3.5 - (package - (name "go-github-com-golang-protobuf") - (version "1.3.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1gkd1942vk9n8kfzdwy1iil6wgvlwjq7a3y5jc49ck4lz9rhmgkq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-github-com-pmezard-go-difflib-1.0.0 - (package - (name "go-github-com-pmezard-go-difflib") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pmezard/go-difflib") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pmezard/go-difflib")) - (home-page "https://github.com/pmezard/go-difflib") - (synopsis "go-difflib") - (description - "Go-difflib is a partial port of python 3 difflib package. Its main goal -was to make unified and context diff available in pure Go, mostly for -testing purposes.") - (license license:bsd-3))) - -(define-public go-github-com-russross-blackfriday-v2-2.0.1 - (package - (name "go-github-com-russross-blackfriday-v2") - (version "2.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/russross/blackfriday") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0nlz7isdd4rgnwzs68499hlwicxz34j2k2a0b8jy0y7ycd2bcr5j")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/russross/blackfriday/v2")) - (home-page "https://github.com/russross/blackfriday") - (synopsis "Blackfriday") - (description "Package blackfriday is a markdown processor. -") - (license license:bsd-2))) - -(define-public go-github-com-shurcool-sanitized-anchor-name-1.0.0 - (package - (name "go-github-com-shurcool-sanitized-anchor-name") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/shurcooL/sanitized_anchor_name") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1gv9p2nr46z80dnfjsklc6zxbgk96349sdsxjz05f3z6wb6m5l8f")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/shurcooL/sanitized_anchor_name")) - (home-page "https://github.com/shurcooL/sanitized_anchor_name") - (synopsis "sanitized_anchor_name") - (description - "Package sanitized_anchor_name provides a func to create sanitized anchor names. -") - (license license:expat))) - -(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d - (package - (name "go-github-com-cpuguy83-go-md2man-v2") - (version "2.0.0-20190314233015-f79a8a8ca69d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cpuguy83/go-md2man") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) - (propagated-inputs - `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" - ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) - ("go-github-com-russross-blackfriday-v2-2.0.1" - ,go-github-com-russross-blackfriday-v2-2.0.1) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0))) - (home-page "https://github.com/cpuguy83/go-md2man") - (synopsis "go-md2man") - (description "Converts markdown into roff (man pages).") - (license license:expat))) - -(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 - (package - (name "go-gopkg-in-check-v1") - (version "0.0.0-20161208181325-20d25e280405") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/check.v1") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) - (home-page "https://gopkg.in/check.v1") - (synopsis "Instructions") - (description - "Package check is a rich testing extension for Go's testing package. -") - (license license:bsd-2))) - -(define-public go-gopkg-in-yaml-v2-2.2.2 - (package - (name "go-gopkg-in-yaml-v2") - (version "2.2.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "01wj12jzsdqlnidpyjssmj0r4yavlqy7dwrg7adqd8dicjc4ncsa")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v2") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language. -") - (license license:asl2.0))) - -(define-public go-github-com-urfave-cli-1.22.1 - (package - (name "go-github-com-urfave-cli") - (version "1.22.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/urfave/cli") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "04ymak18flqlfcn8lycmg8r3931al8dvr8f1cg9n4yjaskmg72v8")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/urfave/cli")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) - ("go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d" - ,go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d) - ("go-github-com-burntsushi-toml-0.3.1" - ,go-github-com-burntsushi-toml-0.3.1))) - (home-page "https://github.com/urfave/cli") - (synopsis "cli") - (description - "Package cli provides a minimal framework for creating and organizing command line -Go applications. cli is designed to be easy to understand and write, the most simple -cli application can be written as follows: -") - (license license:expat))) - -(define-public go-github-com-census-instrumentation-opencensus-proto-0.2.1 - (package - (name "go-github-com-census-instrumentation-opencensus-proto") - (version "0.2.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/census-instrumentation/opencensus-proto") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19fcx3sc99i5dsklny6r073z5j20vlwn2xqm6di1q3b1xwchzqfj")))) - (build-system go-build-system) - (arguments - '(#:import-path "github.com/census-instrumentation/opencensus-proto")) - (home-page "https://github.com/census-instrumentation/opencensus-proto") - (synopsis - "OpenCensus Proto - Language Independent Interface Types For OpenCensus") - (description - "Census provides a framework to define and collect stats against metrics and to -break those stats down across user-defined dimensions.") - (license license:asl2.0))) - -(define-public go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4 - (package - (name "go-github-com-prometheus-client-model") - (version "0.0.0-20190812154241-14fe0d1b01d4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/client_model") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0zdmk6rbbx39cvfz0r59v2jg5sg9yd02b4pds5n5llgvivi99550")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/client_model")) - (propagated-inputs - `(("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" - ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0))) - (home-page "https://github.com/prometheus/client_model") - (synopsis "Deprecation note") - (description - "This repository used to contain the code that defined both -the data model and the exposition format of Prometheus metrics.") - (license license:asl2.0))) - -(define-public go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20190311212946-11955173bddd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hlkai67w167wiyivkzd1fgqrnyxkb94l2c6kr51jwcscizfyfn3")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3 - (package - (name "go-golang-org-x-lint") - (version "0.0.0-20190313153728-d0100b6bd8b3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/lint") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0b0amr9x4ji66iv9ayfx7zrfx52k1m5g66qfcxkgj80qrb1y2yn7")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/lint")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" - ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd))) - (home-page "https://golang.org/x/lint") - (synopsis "Installation") - (description "Package lint contains a linter for Go source code. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20190423024810-112230192c58 - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20190423024810-112230192c58") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "05i2k43j2d0llq768hg5pf3hb2yhfzp9la1w5wp0rsnnzblr0lfn")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the -ones provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135 - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20190524140312-2c0ae7006135") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1lsi2ssxajclj3bciz2a41v1vjv768ja3v6wnbyhxy8xphwkp4fk")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" - ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc - (package - (name "go-honnef-co-go-tools") - (version "0.0.0-20190523083050-ea95bdfd59fc") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/dominikh/go-tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1763nw7pwpzkvzfnm63dgzcgbq9hwmq5l1nffchnhh77vgkaq4ic")))) - (build-system go-build-system) - (arguments '(#:import-path "honnef.co/go/tools")) - (home-page "https://honnef.co/go/tools") - (synopsis "Documentation") - (description - "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, -offers simplifications, and enforces style rules.") - (license license:expat))) - -(define-public go-google-golang-org-grpc-1.23.0 - (package - (name "go-google-golang-org-grpc") - (version "1.23.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1cn33r2gclmq2v1ndpf1n5bmhf2qs8mms7ii5cnl6f9ch4r2c4k3")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" - ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) - ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" - ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) - ("go-google-golang-org-appengine-1.1.0" - ,go-google-golang-org-appengine-1.1.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-google-go-cmp-0.2.0" - ,go-github-com-google-go-cmp-0.2.0) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0) - ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-client9-misspell-0.3.4" - ,go-github-com-client9-misspell-0.3.4) - ("go-github-com-burntsushi-toml-0.3.1" - ,go-github-com-burntsushi-toml-0.3.1) - ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473 - (package - (name "go-github-com-envoyproxy-go-control-plane") - (version "0.9.1-0.20191026205805-5f8ba28d4473") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/envoyproxy/go-control-plane") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1f1s764rd41vd9vgk3r14h1m6fz6pdvxj6fd83q58gxifbc4q5w4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.23.0" ,go-google-golang-org-grpc-1.23.0) - ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" - ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) - ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" - ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2) - ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" - ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) - ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" - ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) - (home-page "https://github.com/envoyproxy/go-control-plane") - (synopsis "control-plane") - (description - "This repository contains a Go-based implementation of an API server that -implements the discovery service APIs defined in -@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") - (license license:asl2.0))) - -(define-public go-github-com-envoyproxy-protoc-gen-validate-0.1.0 - (package - (name "go-github-com-envoyproxy-protoc-gen-validate") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/envoyproxy/protoc-gen-validate") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0kxd3wwh3xwqk0r684hsy281xq4y71cd11d4q2hspcjbnlbwh7cy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/envoyproxy/protoc-gen-validate")) - (home-page "https://github.com/envoyproxy/protoc-gen-validate") - (synopsis "protoc-gen-validate (PGV)") - (description - "PGV is a protoc plugin to generate polyglot message validators. While protocol buffers effectively guarantee the types of structured data, they cannot enforce semantic rules for values. This plugin adds support to protoc-generated code to validate such constraints.") - (license license:asl2.0))) - -(define-public go-github-com-google-go-cmp-0.2.0 - (package - (name "go-github-com-google-go-cmp") - (version "0.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fbv0x27k9sn8svafc0hjwsnckk864lv4yi7bvzrxvmd3d5hskds")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") - (license license:bsd-3))) - -(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20190308221718-c2843e01d9a2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20190311183353-d8887717615a - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190311183353-d8887717615a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1wfm6ngxjyj7v5a2dqib6lw8bb2rdnf1kl48diykxjrsddn0s163")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190215142949-d0b11bdaac8a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.3.2 - (package - (name "go-github-com-golang-protobuf") - (version "1.3.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1k1wb4zr0qbwgpvz9q5ws9zhlal8hq7dmq62pwxxriksayl6hzym")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4 - (package - (name "go-golang-org-x-exp") - (version "0.0.0-20190121172915-509febef88a4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/exp") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "02isrh39z8znrp5znplzy0dip2gnrl3jm1355raliyvhnhg04j6q")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/exp")) - (home-page "https://golang.org/x/exp") - (synopsis "exp") - (description - "This subrepository holds experimental and deprecated (in the @code{old} -directory) packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961 - (package - (name "go-golang-org-x-lint") - (version "0.0.0-20190227174305-5b3e6a55c961") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/lint") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "04zp5vbds9nffmjg36wjpi5vg9zmf890yf78xxasai3ni637ivfw")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/lint")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" - ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c))) - (home-page "https://golang.org/x/lint") - (synopsis "Installation") - (description "Package lint contains a linter for Go source code. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190213061140-3a22650c66bd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12q6fgdkc0742vcms67nzadgdwvi3rnb1gx3vwkljhrvlnwvz7wc")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20181108010431-42b317875d0f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0mrjhk7al7yyh76x9flvxy4jm5jyqh2fxbxagpaazxn1xdgkaif3")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the -ones provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20180724234803-3673e40ba225") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0vx7mz18p480p7fh0w5jv6mfdbsswrlac1sz4i705q7q7ygz59lm")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-google-golang-org-appengine-1.4.0 - (package - (name "go-google-golang-org-appengine") - (version "1.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/appengine") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "06zl7w4sxgdq2pl94wy9ncii6h0z3szl4xpqds0sv3b3wbdlhbnn")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/appengine")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225" - ,go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0))) - (home-page "https://google.golang.org/appengine") - (synopsis "Go App Engine packages") - (description - "Package appengine provides basic functionality for Google App Engine. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20190226205152-f727befe758c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0rpcqw6z13qd33rbasg32zb0gdhgh5lzjla63r6g651zf6hpsak0")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-google-golang-org-appengine-1.4.0" - ,go-google-golang-org-appengine-1.4.0) - ("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" - ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) - ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" - ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-cloud-google-com-go-0.26.0 - (package - (name "go-cloud-google-com-go") - (version "0.26.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-cloud-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "149v3ci17g6wd2pm18mzcncq5qpl9hwdjnz3rlbn5rfidyn46la1")))) - (build-system go-build-system) - (arguments '(#:import-path "cloud.google.com/go")) - (home-page "https://cloud.google.com/go") - (synopsis "Google Cloud Client Libraries for Go") - (description - "Package cloud is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -of sub-packages. -") - (license license:asl2.0))) - -(define-public go-github-com-burntsushi-toml-0.3.1 - (package - (name "go-github-com-burntsushi-toml") - (version "0.3.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/BurntSushi/toml") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fjdwwfzyzllgiwydknf1pwjvy49qxfsczqx5gz3y0izs7as99j6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/BurntSushi/toml")) - (home-page "https://github.com/BurntSushi/toml") - (synopsis "TOML parser and encoder for Go with reflection") - (description - "Package toml implements decoding and encoding of TOML files. -") - (license license:expat))) - -(define-public go-github-com-client9-misspell-0.3.4 - (package - (name "go-github-com-client9-misspell") - (version "0.3.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/client9/misspell") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1vwf33wsc4la25zk9nylpbp9px3svlmldkm0bha4hp56jws4q9cs")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/client9/misspell")) - (home-page "https://github.com/client9/misspell") - (synopsis "Install") - (description - "Package misspell corrects commonly misspelled English words in source files. -") - (license license:expat))) - -(define-public go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b - (package - (name "go-github-com-golang-glog") - (version "0.0.0-20160126235308-23def4e6c14b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/glog") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0jb2834rw5sykfr937fxi8hxi2zy80sj2bdn9b3jb4b26ksqng30")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/glog")) - (home-page "https://github.com/golang/glog") - (synopsis "glog") - (description - "Package glog implements logging analogous to the Google-internal C++ INFO/ERROR/V setup. -It provides functions Info, Warning, Error, Fatal, plus formatting variants such as -Infof. It also provides V-style logging controlled by the -v and -vmodule=file=2 flags. -") - (license license:asl2.0))) - -(define-public go-github-com-golang-mock-1.1.1 - (package - (name "go-github-com-golang-mock") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/mock") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ap8wb6pdl6ccmdb43advjll2ly4sz26wsc3axw0hbrjrybybzgy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/mock")) - (home-page "https://github.com/golang/mock") - (synopsis "gomock") - (description - "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It -integrates well with Go's built-in @code{testing} package, but can be used in other -contexts too.") - (license license:asl2.0))) - -(define-public go-github-com-golang-protobuf-1.2.0 - (package - (name "go-github-com-golang-protobuf") - (version "1.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0kf4b59rcbb1cchfny2dm9jyznp8ri2hsb14n8iak1q8986xa0ab")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3 - (package - (name "go-golang-org-x-lint") - (version "0.0.0-20181026193005-c67002cb31c3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/lint") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0gymbggskjmphqxqcx4s0vnlcz7mygbix0vhwcwv5r67c0bf6765")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/lint")) - (home-page "https://golang.org/x/lint") - (synopsis "Installation") - (description "Package lint contains a linter for Go source code. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d - (package - (name "go-golang-org-x-net") - (version "0.0.0-20180826012351-8a410e7b638d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hp0l8f6fir5gmgrjq0mhh5ikc0rlrm72774228800kfwqjrxxny")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be - (package - (name "go-golang-org-x-oauth2") - (version "0.0.0-20180821212333-d2e6202438be") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/oauth2") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0wbn75fd10485nb93bm4kqldqifdim5xqy4v7r5sdvimvf3fyhn7")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/oauth2")) - (home-page "https://golang.org/x/oauth2") - (synopsis "OAuth2 for Go") - (description - "Package oauth2 provides support for making -OAuth2 authorized and authenticated HTTP requests, -as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -It can additionally grant authorization with Bearer JWT. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20180314180146-1d60e4601c6f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "046jlanz2lkxq1r57x9bl6s4cvfqaic6p2xybsj8mq1120jv4rs6")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the -ones provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20180830151530-49385e6e1522") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0spbldahns09fdxkxflb1x24f8k2awdlnr6k5i7ci4fqd19r1dv4")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-text-0.3.0 - (package - (name "go-golang-org-x-text") - (version "0.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/text")) - (home-page "https://golang.org/x/text") - (synopsis "Go Text") - (description - "text is a repository of text-related packages related to internationalization -(i18n) and localization (l10n), such as character encodings, text -transformations, and locale-specific text handling. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20190114222345-bf090417da8b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1n3xp56k4k3lj06rx7587wr5gnwg0148nvwx6ch0g7ar02hh94hw")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-google-golang-org-appengine-1.1.0 - (package - (name "go-google-golang-org-appengine") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/appengine") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1pz202zszg8f35dk5pfhwgcdi3r6dx1l4yk6x6ly7nb4j45zi96x")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/appengine")) - (home-page "https://google.golang.org/appengine") - (synopsis "Go App Engine packages") - (description - "Package appengine provides basic functionality for Google App Engine. -") - (license license:asl2.0))) - -(define-public go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8 - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20180817151627-c66870c02cf8") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0siq7sv68556ygqi2d2zmvx8l1xjqdc0fylqzci5h1mq2i14bayn")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-google-golang-org-grpc-1.19.0 - (package - (name "go-google-golang-org-grpc") - (version "1.19.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1znqwpj7ix3dpzx4zch0q70sdl3z5lvbb7v3q4i8sf8kas3yv71v")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" - ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) - ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" - ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) - ("go-google-golang-org-appengine-1.1.0" - ,go-google-golang-org-appengine-1.1.0) - ("go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b" - ,go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b) - ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522" - ,go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522) - ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" - ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d" - ,go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d) - ("go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3" - ,go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0) - ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-client9-misspell-0.3.4" - ,go-github-com-client9-misspell-0.3.4) - ("go-github-com-burntsushi-toml-0.3.1" - ,go-github-com-burntsushi-toml-0.3.1) - ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099 - (package - (name "go-honnef-co-go-tools") - (version "0.0.0-20190102054323-c2f93a96b099") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/dominikh/go-tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "07lg29aiap80ca9f201jzng9vjr168cv3qmvjmbd7v5pmww9kmr8")))) - (build-system go-build-system) - (arguments '(#:import-path "honnef.co/go/tools")) - (home-page "https://honnef.co/go/tools") - (synopsis "Documentation") - (description - "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, -offers simplifications, and enforces style rules.") - (license license:expat))) - -(define-public go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55 - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20190819201941-24fa4b261c55") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "109zhaqlfd8zkbr1hk6zqbs6vcxfrk64scjwh2nswph05gr0m84d")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" - ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) - ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) - ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" - ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) - ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" - ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) - ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" - ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-google-golang-org-grpc-1.27.1 - (package - (name "go-google-golang-org-grpc") - (version "1.27.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "09phrrsafgq6hnbw8cawvx44bdpk1p584fys17x1bwn0j0451zzs")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" - ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-github-com-google-go-cmp-0.2.0" - ,go-github-com-google-go-cmp-0.2.0) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2) - ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" - ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) - ("go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473" - ,go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-github-com-containerd-containerd-1.5.8 - (package - (name "go-github-com-containerd-containerd") - (version "1.5.8") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/containerd") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18lzmpbhbk1kq1nwdp6zcxb577kp425l2ikcmb45jcwgqdwzla6l")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/containerd")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) - ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) - ("go-github-com-golang-protobuf-1.3.5" - ,go-github-com-golang-protobuf-1.3.5) - ("go-github-com-gogo-googleapis-1.3.2" - ,go-github-com-gogo-googleapis-1.3.2) - ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" - ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) - ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) - ("go-k8s-io-cri-api-0.20.6" ,go-k8s-io-cri-api-0.20.6) - ("go-k8s-io-component-base-0.20.6" ,go-k8s-io-component-base-0.20.6) - ("go-k8s-io-client-go-0.20.6" ,go-k8s-io-client-go-0.20.6) - ("go-k8s-io-apiserver-0.20.6" ,go-k8s-io-apiserver-0.20.6) - ("go-k8s-io-apimachinery-0.20.6" ,go-k8s-io-apimachinery-0.20.6) - ("go-k8s-io-api-0.20.6" ,go-k8s-io-api-0.20.6) - ("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) - ("go-golang-org-x-sys-0.0.0-20210426230700-d19ff857e887" - ,go-golang-org-x-sys-0.0.0-20210426230700-d19ff857e887) - ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" - ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) - ("go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110" - ,go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110) - ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) - ("go-github-com-tchap-go-patricia-2.2.6+incompatible" - ,go-github-com-tchap-go-patricia-2.2.6+incompatible) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-sirupsen-logrus-1.8.1" - ,go-github-com-sirupsen-logrus-1.8.1) - ("go-github-com-satori-go-uuid-1.2.0" - ,go-github-com-satori-go-uuid-1.2.0) - ("go-github-com-prometheus-client-golang-1.7.1" - ,go-github-com-prometheus-client-golang-1.7.1) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-pelletier-go-toml-1.8.1" - ,go-github-com-pelletier-go-toml-1.8.1) - ("go-github-com-opencontainers-selinux-1.8.2" - ,go-github-com-opencontainers-selinux-1.8.2) - ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417" - ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417) - ("go-github-com-opencontainers-runc-1.0.2" - ,go-github-com-opencontainers-runc-1.0.2) - ("go-github-com-opencontainers-image-spec-1.0.1" - ,go-github-com-opencontainers-image-spec-1.0.1) - ("go-github-com-opencontainers-go-digest-1.0.0" - ,go-github-com-opencontainers-go-digest-1.0.0) - ("go-github-com-moby-sys-symlink-0.1.0" - ,go-github-com-moby-sys-symlink-0.1.0) - ("go-github-com-moby-sys-mountinfo-0.4.1" - ,go-github-com-moby-sys-mountinfo-0.4.1) - ("go-github-com-moby-locker-1.0.1" ,go-github-com-moby-locker-1.0.1) - ("go-github-com-klauspost-compress-1.11.13" - ,go-github-com-klauspost-compress-1.11.13) - ("go-github-com-imdario-mergo-0.3.12" - ,go-github-com-imdario-mergo-0.3.12) - ("go-github-com-hashicorp-go-multierror-1.0.0" - ,go-github-com-hashicorp-go-multierror-1.0.0) - ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" - ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) - ("go-github-com-google-uuid-1.2.0" ,go-github-com-google-uuid-1.2.0) - ("go-github-com-google-go-cmp-0.5.5" - ,go-github-com-google-go-cmp-0.5.5) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2) - ("go-github-com-fsnotify-fsnotify-1.4.9" - ,go-github-com-fsnotify-fsnotify-1.4.9) - ("go-github-com-emicklei-go-restful-2.9.5+incompatible" - ,go-github-com-emicklei-go-restful-2.9.5+incompatible) - ("go-github-com-docker-go-units-0.4.0" - ,go-github-com-docker-go-units-0.4.0) - ("go-github-com-docker-go-metrics-0.0.1" - ,go-github-com-docker-go-metrics-0.0.1) - ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" - ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1) - ("go-github-com-coreos-go-systemd-v22-22.3.2" - ,go-github-com-coreos-go-systemd-v22-22.3.2) - ("go-github-com-containernetworking-plugins-0.9.1" - ,go-github-com-containernetworking-plugins-0.9.1) - ("go-github-com-containerd-zfs-1.0.0" - ,go-github-com-containerd-zfs-1.0.0) - ("go-github-com-containerd-typeurl-1.0.2" - ,go-github-com-containerd-typeurl-1.0.2) - ("go-github-com-containerd-ttrpc-1.1.0" - ,go-github-com-containerd-ttrpc-1.1.0) - ("go-github-com-containerd-nri-0.1.0" - ,go-github-com-containerd-nri-0.1.0) - ("go-github-com-containerd-imgcrypt-1.1.1" - ,go-github-com-containerd-imgcrypt-1.1.1) - ("go-github-com-containerd-go-runc-1.0.0" - ,go-github-com-containerd-go-runc-1.0.0) - ("go-github-com-containerd-go-cni-1.0.2" - ,go-github-com-containerd-go-cni-1.0.2) - ("go-github-com-containerd-fifo-1.0.0" - ,go-github-com-containerd-fifo-1.0.0) - ("go-github-com-containerd-continuity-0.1.0" - ,go-github-com-containerd-continuity-0.1.0) - ("go-github-com-containerd-console-1.0.2" - ,go-github-com-containerd-console-1.0.2) - ("go-github-com-containerd-cgroups-1.0.1" - ,go-github-com-containerd-cgroups-1.0.1) - ("go-github-com-containerd-btrfs-1.0.0" - ,go-github-com-containerd-btrfs-1.0.0) - ("go-github-com-containerd-aufs-1.0.0" - ,go-github-com-containerd-aufs-1.0.0) - ("go-github-com-microsoft-hcsshim-0.8.23" - ,go-github-com-microsoft-hcsshim-0.8.23) - ("go-github-com-microsoft-go-winio-0.4.17" - ,go-github-com-microsoft-go-winio-0.4.17))) - (home-page "https://github.com/containerd/containerd") - (synopsis "Now Recruiting") - (description - "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") - (license license:asl2.0))) - -(define-public go-github-com-containernetworking-cni-0.8.1 - (package - (name "go-github-com-containernetworking-cni") - (version "0.8.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containernetworking/cni") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ydzsiq6kfwjghf5dd4ld2rv3cxgbjq6c1523jxmib1phwf0s75z")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containernetworking/cni")) - (home-page "https://github.com/containernetworking/cni") - (synopsis "CNI - the Container Network Interface") - (description - "CNI (), a @url{https://cncf.io,Cloud Native Computing Foundation} project, consists of a specification and libraries for writing plugins to configure network interfaces in Linux containers, along with a number of supported plugins. -CNI concerns itself only with network connectivity of containers and removing allocated resources when the container is deleted. -Because of this focus, CNI has a wide range of support and the specification is simple to implement.") - (license license:asl2.0))) - -(define-public go-github-com-microsoft-go-winio-0.4.11 - (package - (name "go-github-com-microsoft-go-winio") - (version "0.4.11") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/microsoft/go-winio") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "14y1gryr3pb3zy09v2g8dh89m363rfd9sch0wgbabh531hfx72vn")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/Microsoft/go-winio")) - (home-page "https://github.com/Microsoft/go-winio") - (synopsis "go-winio") - (description - "This repository contains utilities for efficiently performing Win32 IO operations in -Go. Currently, this is focused on accessing named pipes and other file handles, and -for using named pipes as a net transport.") - (license license:expat))) - -(define-public go-github-com-microsoft-hcsshim-0.8.6 - (package - (name "go-github-com-microsoft-hcsshim") - (version "0.8.6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/microsoft/hcsshim") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "05arx8y4b6rvhjcnwizhc8svzab3ld0njkgj8vijgs27az84z6pw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/Microsoft/hcsshim")) - (home-page "https://github.com/Microsoft/hcsshim") - (synopsis "hcsshim") - (description - "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") - (license license:expat))) - -(define-public go-github-com-alexflint-go-filemutex-0.0.0-20171022225611-72bdc8eae2ae - (package - (name "go-github-com-alexflint-go-filemutex") - (version "0.0.0-20171022225611-72bdc8eae2ae") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/alexflint/go-filemutex") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "082y6y9zv40q3kaqvsv6fyaw2fc42j0sn9z0dl9rbiz4szixj3c4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/alexflint/go-filemutex")) - (home-page "https://github.com/alexflint/go-filemutex") - (synopsis "FileMutex") - (description - "FileMutex is similar to @code{sync.RWMutex}, but also synchronizes across processes. -On Linux, OSX, and other POSIX systems it uses the flock system call. On windows -it uses the LockFileEx and UnlockFileEx system calls.") - (license license:expat))) - -(define-public go-github-com-buger-jsonparser-0.0.0-20180808090653-f4dd9f5a6b44 - (package - (name "go-github-com-buger-jsonparser") - (version "0.0.0-20180808090653-f4dd9f5a6b44") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/buger/jsonparser") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12qa2n33s7yz88ywpr3k9kg3b4gm6rqgnv28iyikyxw8h5jascz5")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/buger/jsonparser")) - (home-page "https://github.com/buger/jsonparser") - (synopsis - "Alternative JSON parser for Go (10x times faster standard library)") - (description - "It does not require you to know the structure of the payload (eg. create structs), and allows accessing fields by providing the path to them. It is up to @strong{10 times faster} than standard @code{encoding/json} package (depending on payload size and usage), @strong{allocates no memory}. See benchmarks below.") - (license license:expat))) - -(define-public go-github-com-containernetworking-cni-0.8.1 - (package - (name "go-github-com-containernetworking-cni") - (version "0.8.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containernetworking/cni") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ydzsiq6kfwjghf5dd4ld2rv3cxgbjq6c1523jxmib1phwf0s75z")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containernetworking/cni")) - (home-page "https://github.com/containernetworking/cni") - (synopsis "CNI - the Container Network Interface") - (description - "CNI (), a @url{https://cncf.io,Cloud Native Computing Foundation} project, consists of a specification and libraries for writing plugins to configure network interfaces in Linux containers, along with a number of supported plugins. -CNI concerns itself only with network connectivity of containers and removing allocated resources when the container is deleted. -Because of this focus, CNI has a wide range of support and the specification is simple to implement.") - (license license:asl2.0))) - -(define-public go-github-com-coreos-go-iptables-0.5.0 - (package - (name "go-github-com-coreos-go-iptables") - (version "0.5.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/coreos/go-iptables") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0syxjad9b3d19sjy7cy7zjpx5bx60yvbhidz8r9cdv43iqadxmp7")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/coreos/go-iptables")) - (home-page "https://github.com/coreos/go-iptables") - (synopsis "go-iptables") - (description "Go bindings for iptables utility.") - (license license:asl2.0))) - -(define-public go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7 - (package - (name "go-github-com-coreos-go-systemd") - (version "0.0.0-20180511133405-39ca1b05acc7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/coreos/go-systemd") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1kzqrrzqspa5qm7kwslxl3m16lqzns23c24rv474ajzwmj3ixmx1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/coreos/go-systemd")) - (home-page "https://github.com/coreos/go-systemd") - (synopsis "go-systemd") - (description "Go bindings to systemd. The project has several packages:") - (license license:asl2.0))) - -(define-public go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c - (package - (name "go-github-com-d2g-dhcp4") - (version "0.0.0-20170904100407-a1d1b6c41b1c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/d2g/dhcp4") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "191hzw6yqzkm042h6miyycq3g0zrhqjhhpl27f8vhwzp4wanasiz")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/d2g/dhcp4")) - (home-page "https://github.com/d2g/dhcp4") - (synopsis "DHCP4 - A DHCP library written in Go.") - (description - "Warning: This library is still being developed. Function calls will change.") - (license license:bsd-3))) - -(define-public go-github-com-d2g-dhcp4client-1.0.0 - (package - (name "go-github-com-d2g-dhcp4client") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/d2g/dhcp4client") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1n4qrn7xsgvnshmddq56hr8g2si5vfmxi0wnp0w71lmdfsxvvx0q")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/d2g/dhcp4client")) - (home-page "https://github.com/d2g/dhcp4client") - (synopsis "dhcp4client") - (description "DHCP Client") - (license license:mpl2.0))) - -(define-public go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5 - (package - (name "go-github-com-d2g-dhcp4server") - (version "0.0.0-20181031114812-7d4a0a7f59a5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/d2g/dhcp4server") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "03ibq32flr74pxfly1yca9qicb6f15xgl159jjg3svgnzfjpblwl")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/d2g/dhcp4server")) - (home-page "https://github.com/d2g/dhcp4server") - (synopsis "dhcp4server") - (description "DHCP Server") - (license license:mpl2.0))) - -(define-public go-github-com-d2g-hardwareaddr-0.0.0-20190221164911-e7d9fbe030e4 - (package - (name "go-github-com-d2g-hardwareaddr") - (version "0.0.0-20190221164911-e7d9fbe030e4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/d2g/hardwareaddr") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "09nm5py9xbb9klwhzqkf6786i3b59ynba78xkrv9jx4ari7ibh8q")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/d2g/hardwareaddr")) - (home-page "https://github.com/d2g/hardwareaddr") - (synopsis "hardwareaddr") - (description "Generate Hardware Addresses") - (license license:mpl2.0))) - -(define-public go-github-com-godbus-dbus-0.0.0-20180201030542-885f9cc04c9c - (package - (name "go-github-com-godbus-dbus") - (version "0.0.0-20180201030542-885f9cc04c9c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/godbus/dbus") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0wjpaj4vr5lvpnwc5faf3qizd7zd2v9yq0fm0558wap1hiyqb8x8")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/godbus/dbus")) - (home-page "https://github.com/godbus/dbus") - (synopsis "dbus") - (description - "Package dbus implements bindings to the D-Bus message bus system. -") - (license license:bsd-2))) - -(define-public go-github-com-j-keck-arping-0.0.0-20160618110441-2cf9dc699c56 - (package - (name "go-github-com-j-keck-arping") - (version "0.0.0-20160618110441-2cf9dc699c56") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/j-keck/arping") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1bid8mpx3j4546ni0a6q5xyz7hb854g95qnxqmg5jzs9vrcird3c")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/j-keck/arping")) - (home-page "https://github.com/j-keck/arping") - (synopsis "arping") - (description - "Package arping is a native go library to ping a host per arp datagram, or query a host mac address -") - (license license:expat))) - -(define-public go-github-com-mattn-go-shellwords-1.0.3 - (package - (name "go-github-com-mattn-go-shellwords") - (version "1.0.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mattn/go-shellwords") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1pg7pl25wvpl2dbpyrv9p1r7prnqimxlf6136vn0dfm54j2x4mnr")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mattn/go-shellwords")) - (home-page "https://github.com/mattn/go-shellwords") - (synopsis "go-shellwords") - (description "Parse line as shell words.") - (license license:expat))) - -(define-public go-github-com-google-go-cmp-0.3.0 - (package - (name "go-github-com-google-go-cmp") - (version "0.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1hyxx3434zshl2m9ja78gwlkg1rx9yl6diqa7dnjb31xz5x4gbjj")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd - (package - (name "go-google-golang-org-protobuf") - (version "0.0.0-20200109180630-ec00e32a8dfd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0w6lp9w2avxcpxwzzhspr209ifhyjagvs23k0vykfdqahl1aplrh")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.3.0" - ,go-github-com-google-go-cmp-0.3.0))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.4.0-rc.1 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.0-rc.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "186rirvbfgv6hrxp27ipx2cdpv19qifdd20biqfdm01wiyclqimn")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd" - ,go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd) - ("go-github-com-google-go-cmp-0.3.1" - ,go-github-com-google-go-cmp-0.3.1))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-github-com-google-go-cmp-0.3.1 - (package - (name "go-github-com-google-go-cmp") - (version "0.3.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1caw49i0plkjxir7kdf5qhwls3krqwfmi7g4h392rdfwi3kfahx1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64 - (package - (name "go-google-golang-org-protobuf") - (version "0.0.0-20200221191635-4d8936d0db64") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0563bsvdjj6k0sgwqd5yzrgfiax7sp3lcwh608gync5sv9fx39cy")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.3.1" - ,go-github-com-google-go-cmp-0.3.1) - ("go-github-com-golang-protobuf-1.4.0-rc.1" - ,go-github-com-golang-protobuf-1.4.0-rc.1))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.0-rc.1.0.20200221234624-67d41d38c208") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ykxhg3zixmw25pd435f8h16wnz1g00jpcmmg3xl030kksgqgpp6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64" - ,go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60 - (package - (name "go-google-golang-org-protobuf") - (version "0.0.0-20200228230310-ab0ca4ff8a60") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1rinspcznfp85yz4vrlf4h38hr576virgv8lcs22bsylqga808sd")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208" - ,go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.4.0-rc.2 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.0-rc.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1hd43hjv5zl6bjbmhm5phx74bw4xajsi73m5zky2k56za4mpgzzc")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60" - ,go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967 - (package - (name "go-google-golang-org-protobuf") - (version "1.20.1-0.20200309200217-e05f789c0967") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "17wmy89hnmpkwc63rfcjp50q15s9f1rhmczg06c3z9yy41zk82w9")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.0-rc.2" - ,go-github-com-golang-protobuf-1.4.0-rc.2))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.0-rc.4.0.20200313231945-b860323f09d0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1zj6cwshx0l5n9cn2cpbikzzb79px5dmkpc4p19zy1iif5r5p0z0")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967" - ,go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-1.21.0 - (package - (name "go-google-golang-org-protobuf") - (version "1.21.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12bwln8z1lf9105gdp6ip0rx741i4yfz1520gxnp8861lh9wcl63")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0" - ,go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.4.0 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fjvl5n77abxz5qsd4mgyvjq19x43c5bfvmq62mq3m5plx6zksc8")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.21.0" - ,go-google-golang-org-protobuf-1.21.0) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-github-com-google-go-cmp-0.4.0 - (package - (name "go-github-com-google-go-cmp") - (version "0.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1x5pvl3fb5sbyng7i34431xycnhmx8xx94gq2n19g6p0vz68z2v2")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-1.23.0 - (package - (name "go-google-golang-org-protobuf") - (version "1.23.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "03yan0m1v0zmlr935p4n24fd376mznsg85zy8sywbgisls4s1bzy")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.0" - ,go-github-com-golang-protobuf-1.4.0))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.4.2 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0m5z81im4nsyfgarjhppayk4hqnrwswr3nix9mj8pff8x9jvcjqw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.23.0" - ,go-google-golang-org-protobuf-1.23.0) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20190904154756-749cb33beabd - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190904154756-749cb33beabd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0dm3257q3rv2kyn5lmqqim2fqg634v6rhrqq4glvbk4wx4l3v337")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-nxadm-tail-1.4.4 - (package - (name "go-github-com-nxadm-tail") - (version "1.4.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/nxadm/tail") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1czmwqii0fc8v3ar5bwqpfanprkxg19waly405zlvcflzvj53wwc")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/nxadm/tail")) - (propagated-inputs - `(("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" - ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) - ("go-golang-org-x-sys-0.0.0-20190904154756-749cb33beabd" - ,go-golang-org-x-sys-0.0.0-20190904154756-749cb33beabd) - ("go-github-com-fsnotify-fsnotify-1.4.7" - ,go-github-com-fsnotify-fsnotify-1.4.7))) - (home-page "https://github.com/nxadm/tail") - (synopsis "tail functionality in Go") - (description - "nxadm/tail provides a Go library that emulates the features of the BSD `tail` -program. The library comes with full support for truncation/move detection as -it is designed to work with log rotation tools. The library works on all -operating systems supported by Go, including POSIX systems like Linux and -*BSD, and MS Windows. Go 1.9 is the oldest compiler release supported. -") - (license license:expat))) - -(define-public go-github-com-fsnotify-fsnotify-1.4.7 - (package - (name "go-github-com-fsnotify-fsnotify") - (version "1.4.7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/fsnotify/fsnotify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/fsnotify/fsnotify")) - (home-page "https://github.com/fsnotify/fsnotify") - (synopsis "File system notifications for Go") - (description - "Package fsnotify provides a platform-independent interface for file system notifications. -") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.2.0 - (package - (name "go-github-com-golang-protobuf") - (version "1.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0kf4b59rcbb1cchfny2dm9jyznp8ri2hsb14n8iak1q8986xa0ab")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-github-com-hpcloud-tail-1.0.0 - (package - (name "go-github-com-hpcloud-tail") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hpcloud/tail") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1njpzc0pi1acg5zx9y6vj9xi6ksbsc5d387rd6904hy6rh2m6kn0")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hpcloud/tail")) - (home-page "https://github.com/hpcloud/tail") - (synopsis "Go package for tail-ing files") - (description - "This package provides a Go package striving to emulate the features of the BSD @code{tail} program.") - (license license:expat))) - -(define-public go-github-com-onsi-ginkgo-1.6.0 - (package - (name "go-github-com-onsi-ginkgo") - (version "1.6.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/onsi/ginkgo") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0x0gc89vgq38xhgmi2h22bhr73cf2gmk42g89nz89k8dgg9hhr25")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/onsi/ginkgo")) - (home-page "https://github.com/onsi/ginkgo") - (synopsis "Ginkgo 2.0 Release Candidate is available!") - (description "Ginkgo is a BDD-style testing framework for Golang -") - (license license:expat))) - -(define-public go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd - (package - (name "go-golang-org-x-net") - (version "0.0.0-20180906233101-161cd47e91fd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0254ld010iijygbzykib2vags1dc0wlmcmhgh4jl8iny159lhbcv")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20180314180146-1d60e4601c6f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "046jlanz2lkxq1r57x9bl6s4cvfqaic6p2xybsj8mq1120jv4rs6")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the -ones provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20180909124046-d0be0721c37e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "081wyvfnlf842dqg03raxfz6lldlxpmyh1prix9lmrrm65arxb12")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-gopkg-in-fsnotify-v1-1.4.7 - (package - (name "go-gopkg-in-fsnotify-v1") - (version "1.4.7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/fsnotify.v1") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) - (build-system go-build-system) - (arguments - '(#:import-path - "gopkg.in/fsnotify.v1" - #:unpack-path - "gopkg.in/fsnotify.v1")) - (home-page "https://gopkg.in/fsnotify.v1") - (synopsis "File system notifications for Go") - (description - "Package fsnotify provides a platform-independent interface for file system notifications. -") - (license license:bsd-3))) - -(define-public go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7 - (package - (name "go-gopkg-in-tomb-v1") - (version "1.0.0-20141024135613-dd632973f1e7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/tomb.v1") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1lqmq1ag7s4b3gc3ddvr792c5xb5k6sfn0cchr3i2s7f1c231zjv")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/tomb.v1" #:unpack-path "gopkg.in/tomb.v1")) - (home-page "https://gopkg.in/tomb.v1") - (synopsis "Installation and usage") - (description - "The tomb package offers a conventional API for clean goroutine termination. -") - (license license:bsd-3))) - -(define-public go-gopkg-in-yaml-v2-2.2.4 - (package - (name "go-gopkg-in-yaml-v2") - (version "2.2.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "11bwj757wi8kdrcnlgfqb8vv2d2xdhlghmyagd19i62khrkchsg2")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v2") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language. -") - (license license:asl2.0))) - -(define-public go-github-com-onsi-gomega-1.7.1 - (package - (name "go-github-com-onsi-gomega") - (version "1.7.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/onsi/gomega") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "06p3x0910cdaa64l7d44s728d4j3yhps315dlcvrbjzhljjj7mam")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/onsi/gomega")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.4" ,go-gopkg-in-yaml-v2-2.2.4) - ("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" - ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) - ("go-gopkg-in-fsnotify-v1-1.4.7" ,go-gopkg-in-fsnotify-v1-1.4.7) - ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e" - ,go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e) - ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" - ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) - ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" - ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) - ("go-github-com-onsi-ginkgo-1.6.0" ,go-github-com-onsi-ginkgo-1.6.0) - ("go-github-com-hpcloud-tail-1.0.0" ,go-github-com-hpcloud-tail-1.0.0) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0) - ("go-github-com-fsnotify-fsnotify-1.4.7" - ,go-github-com-fsnotify-fsnotify-1.4.7))) - (home-page "https://github.com/onsi/gomega") - (synopsis ": a BDD Testing Framework for Golang") - (description - "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library. -") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20191120155948-bd437916bb0e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1i8x26frmlin55k69k936zd1rp5sqnq14y5ms4rkxbfzhasdm2rx")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-onsi-ginkgo-1.12.1 - (package - (name "go-github-com-onsi-ginkgo") - (version "1.12.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/onsi/ginkgo") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0xs9724l2b0bwjwrvw5cs3akxaw0n1j5kyxrb1ggfsdjz0zmjcxh")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/onsi/ginkgo")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e" - ,go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e) - ("go-github-com-onsi-gomega-1.7.1" ,go-github-com-onsi-gomega-1.7.1) - ("go-github-com-nxadm-tail-1.4.4" ,go-github-com-nxadm-tail-1.4.4))) - (home-page "https://github.com/onsi/ginkgo") - (synopsis "Ginkgo 2.0 Release Candidate is available!") - (description "Ginkgo is a BDD-style testing framework for Golang -") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190215142949-d0b11bdaac8a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20190308221718-c2843e01d9a2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-text-0.3.0 - (package - (name "go-golang-org-x-text") - (version "0.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/text")) - (home-page "https://golang.org/x/text") - (synopsis "Go Text") - (description - "text is a repository of text-related packages related to internationalization -(i18n) and localization (l10n), such as character encodings, text -transformations, and locale-specific text handling. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190404232315-eb5bcb51f2a3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "17k4g8krxbl84gzcs275b7gsh66dzm15fdxivjnx9xz8q84l4kby")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20190412213103-97732733099d - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190412213103-97732733099d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "118hkp01i4z1f5h6hcjm0ff2ngqhrzj1f7731n0kw8dr6hvbx0sw")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20200622213623-75b288015ac9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18vlncvvs11ds3zaaziqjlg5s2vcwi3496nn6qv7p0dp94j5pwa2")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" - ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) - ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" - ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200930185726-fdedc70b468f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1njlfhjbvi4lxvjbq8zswrb0y0q4jd2p6x51h1q6vmyzi9af6869")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20180917221912-90fa682c2a6e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-golang-org-x-text-0.3.3 - (package - (name "go-golang-org-x-text") - (version "0.3.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19pihqm3phyndmiw6i42pdv6z1rbvlqlsnhsyqf9gsnn0qnmqqlh")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/text")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" - ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) - (home-page "https://golang.org/x/text") - (synopsis "Go Text") - (description - "text is a repository of text-related packages related to internationalization -(i18n) and localization (l10n), such as character encodings, text -transformations, and locale-specific text handling. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20201006153459-a7d1128ccaa0 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20201006153459-a7d1128ccaa0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1iqqq7s95b2a29bspfxv68qnby8vwjvy9f8gl2262p6f9hhp21d2")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) - ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" - ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) - ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" - ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543 - (package - (name "go-golang-org-x-xerrors") - (version "0.0.0-20191204190536-9bdfabe68543") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/xerrors") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1yjfi1bk9xb81lqn85nnm13zz725wazvrx3b50hx19qmwg7a4b0c")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/xerrors")) - (home-page "https://golang.org/x/xerrors") - (synopsis #f) - (description - "Package xerrors implements functions to manipulate errors. -") - (license license:bsd-3))) - -(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 - (package - (name "go-gopkg-in-check-v1") - (version "0.0.0-20161208181325-20d25e280405") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/check.v1") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) - (home-page "https://gopkg.in/check.v1") - (synopsis "Instructions") - (description - "Package check is a rich testing extension for Go's testing package. -") - (license license:bsd-2))) - -(define-public go-gopkg-in-yaml-v2-2.3.0 - (package - (name "go-gopkg-in-yaml-v2") - (version "2.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1md0hlyd9s6myv3663i9l59y74n4xjazifmmyxn43g86fgkc5lzj")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v2") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language. -") - (license license:asl2.0))) - -(define-public go-github-com-onsi-gomega-1.10.3 - (package - (name "go-github-com-onsi-gomega") - (version "1.10.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/onsi/gomega") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1jvp5wlny86ncsqak5rz70qfn61y3ajc64w0hrj4840zgh90zb06")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/onsi/gomega")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.3.0" ,go-gopkg-in-yaml-v2-2.3.0) - ("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) - ("go-golang-org-x-net-0.0.0-20201006153459-a7d1128ccaa0" - ,go-golang-org-x-net-0.0.0-20201006153459-a7d1128ccaa0) - ("go-github-com-onsi-ginkgo-1.12.1" ,go-github-com-onsi-ginkgo-1.12.1) - ("go-github-com-golang-protobuf-1.4.2" - ,go-github-com-golang-protobuf-1.4.2))) - (home-page "https://github.com/onsi/gomega") - (synopsis ": a BDD Testing Framework for Golang") - (description - "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library. -") - (license license:expat))) - -(define-public go-github-com-safchain-ethtool-0.0.0-20190326074333-42ed695e3de8 - (package - (name "go-github-com-safchain-ethtool") - (version "0.0.0-20190326074333-42ed695e3de8") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/safchain/ethtool") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0n5hkrzc1bh46nidcssx4539kvcmgj501v3kzh2pljpg27509daj")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/safchain/ethtool")) - (home-page "https://github.com/safchain/ethtool") - (synopsis "ethtool go package") - (description - "Package ethtool aims to provide a library giving a simple access to the -Linux SIOCETHTOOL ioctl operations. It can be used to retrieve informations -from a network device like statistics, driver related informations or -even the peer of a VETH interface. -") - (license license:asl2.0))) - -(define-public go-github-com-sirupsen-logrus-1.0.6 - (package - (name "go-github-com-sirupsen-logrus") - (version "1.0.6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sirupsen/logrus") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "029irw2lsbqi944gdrbkwdw0m2794sqni4g21gsnmz142hbzds8c")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/sirupsen/logrus")) - (home-page "https://github.com/sirupsen/logrus") - (synopsis "Logrus") - (description - "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. -") - (license license:expat))) - -(define-public go-github-com-davecgh-go-spew-1.1.0 - (package - (name "go-github-com-davecgh-go-spew") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/davecgh/go-spew") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/davecgh/go-spew")) - (home-page "https://github.com/davecgh/go-spew") - (synopsis "go-spew") - (description - "Go-spew implements a deep pretty printer for Go data structures to aid in -debugging. A comprehensive suite of tests with 100% test coverage is provided -to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage -report. Go-spew is licensed under the liberal ISC license, so it may be used in -open source or commercial projects.") - (license license:isc))) - -(define-public go-github-com-pmezard-go-difflib-1.0.0 - (package - (name "go-github-com-pmezard-go-difflib") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pmezard/go-difflib") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pmezard/go-difflib")) - (home-page "https://github.com/pmezard/go-difflib") - (synopsis "go-difflib") - (description - "Go-difflib is a partial port of python 3 difflib package. Its main goal -was to make unified and context diff available in pure Go, mostly for -testing purposes.") - (license license:bsd-3))) - -(define-public go-github-com-stretchr-objx-0.1.0 - (package - (name "go-github-com-stretchr-objx") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/objx") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/objx")) - (home-page "https://github.com/stretchr/objx") - (synopsis "Objx") - (description - "Objx - Go package for dealing with maps, slices, JSON and other data. -") - (license license:expat))) - -(define-public go-github-com-stretchr-testify-1.3.0 - (package - (name "go-github-com-stretchr-testify") - (version "1.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/testify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0wjchp2c8xbgcbbq32w3kvblk6q6yn533g78nxl6iskq6y95lxsy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/testify")) - (propagated-inputs - `(("go-github-com-stretchr-objx-0.1.0" - ,go-github-com-stretchr-objx-0.1.0) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.0" - ,go-github-com-davecgh-go-spew-1.1.0))) - (home-page "https://github.com/stretchr/testify") - (synopsis "Testify - Thou Shalt Write Tests") - (description - "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20200217220822-9197077df867 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200217220822-9197077df867") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1270yyiqzlgrsygp2j0qavh4agm4xjv3ljfpk4wgqgmg4ph1lmx1")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-vishvananda-netns-0.0.0-20200728191858-db3c7e526aae - (package - (name "go-github-com-vishvananda-netns") - (version "0.0.0-20200728191858-db3c7e526aae") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/vishvananda/netns") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1gx41r06by67q5yyyvjpr0cyqqs2pcksfaqxy0s36cx4vpjn5x9r")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/vishvananda/netns")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20200217220822-9197077df867" - ,go-golang-org-x-sys-0.0.0-20200217220822-9197077df867))) - (home-page "https://github.com/vishvananda/netns") - (synopsis "netns - network namespaces in go") - (description - "Package netns allows ultra-simple network namespace handling. NsHandles -can be retrieved and set. Note that the current namespace is thread -local so actions that set and reset namespaces should use LockOSThread -to make sure the namespace doesn't change due to a goroutine switch. -It is best to close NsHandles when you are done with them. This can be -accomplished via a `defer ns.Close()` on the handle. Changing namespaces -requires elevated privileges, so in most cases this code needs to be run -as root. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-sys-0.0.0-20200728102440-3e129f6d46b1 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200728102440-3e129f6d46b1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "02wcaghvpysqijiqsiimk52vma7lx99g5kvdid2r1qsf9hmwgvy2")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-vishvananda-netlink-1.1.1-0.20201029203352-d40f9887b852 - (package - (name "go-github-com-vishvananda-netlink") - (version "1.1.1-0.20201029203352-d40f9887b852") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/vishvananda/netlink") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1aq13npm7vd153vxrk1vhsg36r2g9hrh21cvk422ssrf57qy2fsj")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/vishvananda/netlink")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20200728102440-3e129f6d46b1" - ,go-golang-org-x-sys-0.0.0-20200728102440-3e129f6d46b1) - ("go-github-com-vishvananda-netns-0.0.0-20200728191858-db3c7e526aae" - ,go-github-com-vishvananda-netns-0.0.0-20200728191858-db3c7e526aae))) - (home-page "https://github.com/vishvananda/netlink") - (synopsis "netlink - netlink library for go") - (description - "Package netlink provides a simple library for netlink. Netlink is -the interface a user-space program in linux uses to communicate with -the kernel. It can be used to add and remove interfaces, set up ip -addresses and routes, and confiugre ipsec. Netlink communication -requires elevated privileges, so in most cases this code needs to -be run as root. The low level primitives for netlink are contained -in the nl subpackage. This package attempts to provide a high-level -interface that is loosly modeled on the iproute2 cli. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-sys-0.0.0-20201117170446-d9b008d0a637 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20201117170446-d9b008d0a637") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "06pp1nrhzx6nm6rwwzm0xzf8bs3r1mfsrkclyhlhnr7x5r0a0ppi")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-gopkg-in-airbrake-gobrake-v2-2.0.9 - (package - (name "go-gopkg-in-airbrake-gobrake-v2") - (version "2.0.9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/airbrake/gobrake.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1x06f7n7qlyzqgyz0sdfcidf3w4ldn6zs6qx2mhibggk2z4whcjw")))) - (build-system go-build-system) - (arguments - '(#:import-path - "gopkg.in/airbrake/gobrake.v2" - #:unpack-path - "gopkg.in/airbrake/gobrake.v2")) - (home-page "https://gopkg.in/airbrake/gobrake.v2") - (synopsis "Airbrake Golang Notifier") - (description - "You can use @url{https://github.com/airbrake/glog,glog fork} to send your logs to Airbrake.") - (license license:bsd-3))) - -(define-public go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2 - (package - (name "go-gopkg-in-gemnasium-logrus-airbrake-hook-v2") - (version "2.1.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/gemnasium/logrus-airbrake-hook.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0sbg0dn6cysmf8f2bi209jwl4jnpiwp4rdghnxlzirw3c32ms5y5")))) - (build-system go-build-system) - (arguments - '(#:import-path - "gopkg.in/gemnasium/logrus-airbrake-hook.v2" - #:unpack-path - "gopkg.in/gemnasium/logrus-airbrake-hook.v2")) - (home-page "https://gopkg.in/gemnasium/logrus-airbrake-hook.v2") - (synopsis "Airbrake Hook for Logrus") - (description - "Use this hook to send your errors to @url{https://airbrake.io/,Airbrake}. -This hook is using the @url{https://github.com/airbrake/gobrake,official airbrake go package}, and will hit the api V3. -The hook is synchronous and will send the error for @code{log.Error}, @code{log.Fatal} and @code{log.Panic} levels.") - (license license:expat))) - -(define-public go-github-com-containernetworking-plugins-0.9.1 - (package - (name "go-github-com-containernetworking-plugins") - (version "0.9.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containernetworking/plugins") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "17rafngfa9b0ybs3j4lvjjqdva6jkamhnbb1n0qnv685g0asvqwz")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containernetworking/plugins")) - (propagated-inputs - `(("go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2" - ,go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2) - ("go-gopkg-in-airbrake-gobrake-v2-2.0.9" - ,go-gopkg-in-airbrake-gobrake-v2-2.0.9) - ("go-golang-org-x-sys-0.0.0-20201117170446-d9b008d0a637" - ,go-golang-org-x-sys-0.0.0-20201117170446-d9b008d0a637) - ("go-github-com-vishvananda-netlink-1.1.1-0.20201029203352-d40f9887b852" - ,go-github-com-vishvananda-netlink-1.1.1-0.20201029203352-d40f9887b852) - ("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0) - ("go-github-com-sirupsen-logrus-1.0.6" - ,go-github-com-sirupsen-logrus-1.0.6) - ("go-github-com-safchain-ethtool-0.0.0-20190326074333-42ed695e3de8" - ,go-github-com-safchain-ethtool-0.0.0-20190326074333-42ed695e3de8) - ("go-github-com-onsi-gomega-1.10.3" ,go-github-com-onsi-gomega-1.10.3) - ("go-github-com-onsi-ginkgo-1.12.1" ,go-github-com-onsi-ginkgo-1.12.1) - ("go-github-com-mattn-go-shellwords-1.0.3" - ,go-github-com-mattn-go-shellwords-1.0.3) - ("go-github-com-j-keck-arping-0.0.0-20160618110441-2cf9dc699c56" - ,go-github-com-j-keck-arping-0.0.0-20160618110441-2cf9dc699c56) - ("go-github-com-godbus-dbus-0.0.0-20180201030542-885f9cc04c9c" - ,go-github-com-godbus-dbus-0.0.0-20180201030542-885f9cc04c9c) - ("go-github-com-d2g-hardwareaddr-0.0.0-20190221164911-e7d9fbe030e4" - ,go-github-com-d2g-hardwareaddr-0.0.0-20190221164911-e7d9fbe030e4) - ("go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5" - ,go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5) - ("go-github-com-d2g-dhcp4client-1.0.0" - ,go-github-com-d2g-dhcp4client-1.0.0) - ("go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c" - ,go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c) - ("go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7" - ,go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7) - ("go-github-com-coreos-go-iptables-0.5.0" - ,go-github-com-coreos-go-iptables-0.5.0) - ("go-github-com-containernetworking-cni-0.8.1" - ,go-github-com-containernetworking-cni-0.8.1) - ("go-github-com-buger-jsonparser-0.0.0-20180808090653-f4dd9f5a6b44" - ,go-github-com-buger-jsonparser-0.0.0-20180808090653-f4dd9f5a6b44) - ("go-github-com-alexflint-go-filemutex-0.0.0-20171022225611-72bdc8eae2ae" - ,go-github-com-alexflint-go-filemutex-0.0.0-20171022225611-72bdc8eae2ae) - ("go-github-com-microsoft-hcsshim-0.8.6" - ,go-github-com-microsoft-hcsshim-0.8.6) - ("go-github-com-microsoft-go-winio-0.4.11" - ,go-github-com-microsoft-go-winio-0.4.11))) - (home-page "https://github.com/containernetworking/plugins") - (synopsis "Plugins") - (description - "Some CNI network plugins, maintained by the containernetworking team. For more information, see the @url{https://www.cni.dev,CNI website}.") - (license license:asl2.0))) - -(define-public go-github-com-14rcole-gopopulate-0.0.0-20180821133914-b175b219e774 - (package - (name "go-github-com-14rcole-gopopulate") - (version "0.0.0-20180821133914-b175b219e774") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/14rcole/gopopulate") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0rrrwsmjvkswn3mrdm03q53sl6r9y00galv83lcm7b789m9a6abf")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/14rcole/gopopulate")) - (home-page "https://github.com/14rcole/gopopulate") - (synopsis "gopopulate") - (description #f) - (license license:expat))) - -(define-public go-github-com-containerd-containerd-1.5.1 - (package - (name "go-github-com-containerd-containerd") - (version "1.5.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/containerd") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1mbdk7c1drl14wzxykh6h3hxd5d9xxgdslp9634yj9pwi5wkx3n3")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/containerd")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) - ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) - ("go-github-com-golang-protobuf-1.3.5" - ,go-github-com-golang-protobuf-1.3.5) - ("go-github-com-gogo-googleapis-1.3.2" - ,go-github-com-gogo-googleapis-1.3.2) - ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" - ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) - ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) - ("go-k8s-io-cri-api-0.20.6" ,go-k8s-io-cri-api-0.20.6) - ("go-k8s-io-component-base-0.20.6" ,go-k8s-io-component-base-0.20.6) - ("go-k8s-io-client-go-0.20.6" ,go-k8s-io-client-go-0.20.6) - ("go-k8s-io-apiserver-0.20.6" ,go-k8s-io-apiserver-0.20.6) - ("go-k8s-io-apimachinery-0.20.6" ,go-k8s-io-apimachinery-0.20.6) - ("go-k8s-io-api-0.20.6" ,go-k8s-io-api-0.20.6) - ("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) - ("go-golang-org-x-sys-0.0.0-20210324051608-47abb6519492" - ,go-golang-org-x-sys-0.0.0-20210324051608-47abb6519492) - ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" - ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) - ("go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110" - ,go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110) - ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) - ("go-github-com-tchap-go-patricia-2.2.6+incompatible" - ,go-github-com-tchap-go-patricia-2.2.6+incompatible) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-sirupsen-logrus-1.7.0" - ,go-github-com-sirupsen-logrus-1.7.0) - ("go-github-com-satori-go-uuid-1.2.0" - ,go-github-com-satori-go-uuid-1.2.0) - ("go-github-com-prometheus-procfs-0.6.0" - ,go-github-com-prometheus-procfs-0.6.0) - ("go-github-com-prometheus-client-golang-1.7.1" - ,go-github-com-prometheus-client-golang-1.7.1) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-pelletier-go-toml-1.8.1" - ,go-github-com-pelletier-go-toml-1.8.1) - ("go-github-com-opencontainers-selinux-1.8.0" - ,go-github-com-opencontainers-selinux-1.8.0) - ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" - ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) - ("go-github-com-opencontainers-runc-1.0.0-rc93" - ,go-github-com-opencontainers-runc-1.0.0-rc93) - ("go-github-com-opencontainers-image-spec-1.0.1" - ,go-github-com-opencontainers-image-spec-1.0.1) - ("go-github-com-opencontainers-go-digest-1.0.0" - ,go-github-com-opencontainers-go-digest-1.0.0) - ("go-github-com-moby-sys-symlink-0.1.0" - ,go-github-com-moby-sys-symlink-0.1.0) - ("go-github-com-moby-sys-mountinfo-0.4.1" - ,go-github-com-moby-sys-mountinfo-0.4.1) - ("go-github-com-moby-locker-1.0.1" ,go-github-com-moby-locker-1.0.1) - ("go-github-com-klauspost-compress-1.11.13" - ,go-github-com-klauspost-compress-1.11.13) - ("go-github-com-imdario-mergo-0.3.11" - ,go-github-com-imdario-mergo-0.3.11) - ("go-github-com-hashicorp-go-multierror-1.0.0" - ,go-github-com-hashicorp-go-multierror-1.0.0) - ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" - ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) - ("go-github-com-google-uuid-1.2.0" ,go-github-com-google-uuid-1.2.0) - ("go-github-com-google-go-cmp-0.5.4" - ,go-github-com-google-go-cmp-0.5.4) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2) - ("go-github-com-fsnotify-fsnotify-1.4.9" - ,go-github-com-fsnotify-fsnotify-1.4.9) - ("go-github-com-emicklei-go-restful-2.9.5+incompatible" - ,go-github-com-emicklei-go-restful-2.9.5+incompatible) - ("go-github-com-docker-go-units-0.4.0" - ,go-github-com-docker-go-units-0.4.0) - ("go-github-com-docker-go-metrics-0.0.1" - ,go-github-com-docker-go-metrics-0.0.1) - ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" - ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1) - ("go-github-com-coreos-go-systemd-v22-22.1.0" - ,go-github-com-coreos-go-systemd-v22-22.1.0) - ("go-github-com-containernetworking-plugins-0.9.1" - ,go-github-com-containernetworking-plugins-0.9.1) - ("go-github-com-containerd-zfs-1.0.0" - ,go-github-com-containerd-zfs-1.0.0) - ("go-github-com-containerd-typeurl-1.0.2" - ,go-github-com-containerd-typeurl-1.0.2) - ("go-github-com-containerd-ttrpc-1.0.2" - ,go-github-com-containerd-ttrpc-1.0.2) - ("go-github-com-containerd-nri-0.1.0" - ,go-github-com-containerd-nri-0.1.0) - ("go-github-com-containerd-imgcrypt-1.1.1" - ,go-github-com-containerd-imgcrypt-1.1.1) - ("go-github-com-containerd-go-runc-1.0.0" - ,go-github-com-containerd-go-runc-1.0.0) - ("go-github-com-containerd-go-cni-1.0.2" - ,go-github-com-containerd-go-cni-1.0.2) - ("go-github-com-containerd-fifo-1.0.0" - ,go-github-com-containerd-fifo-1.0.0) - ("go-github-com-containerd-continuity-0.1.0" - ,go-github-com-containerd-continuity-0.1.0) - ("go-github-com-containerd-console-1.0.2" - ,go-github-com-containerd-console-1.0.2) - ("go-github-com-containerd-cgroups-1.0.1" - ,go-github-com-containerd-cgroups-1.0.1) - ("go-github-com-containerd-btrfs-1.0.0" - ,go-github-com-containerd-btrfs-1.0.0) - ("go-github-com-containerd-aufs-1.0.0" - ,go-github-com-containerd-aufs-1.0.0) - ("go-github-com-microsoft-hcsshim-0.8.16" - ,go-github-com-microsoft-hcsshim-0.8.16) - ("go-github-com-microsoft-go-winio-0.4.17" - ,go-github-com-microsoft-go-winio-0.4.17))) - (home-page "https://github.com/containerd/containerd") - (synopsis "Now Recruiting") - (description - "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") - (license license:asl2.0))) - -(define-public go-github-com-microsoft-hcsshim-0.8.21 - (package - (name "go-github-com-microsoft-hcsshim") - (version "0.8.21") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/microsoft/hcsshim") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1z0imk1nr6h6smi3r5fr7zl54k1wzbkgwff6jijg0zr2m3lqp051")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/Microsoft/hcsshim")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) - ("go-golang-org-x-sys-0.0.0-20210324051608-47abb6519492" - ,go-golang-org-x-sys-0.0.0-20210324051608-47abb6519492) - ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" - ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) - ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) - ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) - ("go-github-com-sirupsen-logrus-1.7.0" - ,go-github-com-sirupsen-logrus-1.7.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" - ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2) - ("go-github-com-containerd-typeurl-1.0.2" - ,go-github-com-containerd-typeurl-1.0.2) - ("go-github-com-containerd-ttrpc-1.0.2" - ,go-github-com-containerd-ttrpc-1.0.2) - ("go-github-com-containerd-go-runc-1.0.0" - ,go-github-com-containerd-go-runc-1.0.0) - ("go-github-com-containerd-containerd-1.5.1" - ,go-github-com-containerd-containerd-1.5.1) - ("go-github-com-containerd-console-1.0.2" - ,go-github-com-containerd-console-1.0.2) - ("go-github-com-containerd-cgroups-1.0.1" - ,go-github-com-containerd-cgroups-1.0.1) - ("go-github-com-microsoft-go-winio-0.4.17" - ,go-github-com-microsoft-go-winio-0.4.17))) - (home-page "https://github.com/Microsoft/hcsshim") - (synopsis "hcsshim") - (description - "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") - (license license:expat))) - -(define-public go-github-com-containerd-aufs-1.0.0 - (package - (name "go-github-com-containerd-aufs") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/aufs") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0jyyyf6sr910m602axmp4h4j1l2n680cpp60z09pvprz55zi4ba0")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/aufs")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" - ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" - ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) - ("go-github-com-containerd-containerd-1.5.0-beta.3" - ,go-github-com-containerd-containerd-1.5.0-beta.3))) - (home-page "https://github.com/containerd/aufs") - (synopsis "aufs snapshotter") - (description - "AUFS implementation of the snapshot interface for containerd.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-btrfs-1.0.0 - (package - (name "go-github-com-containerd-btrfs") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/btrfs") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1yf38gg41y1v12m0cl81r9q7d13170a4npzqxhbz7qn32zr23kzn")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/btrfs")) - (propagated-inputs - `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) - (home-page "https://github.com/containerd/btrfs") - (synopsis "go-btrfs") - (description - "Package btrfs provides bindings for working with btrfs partitions from Go. -") - (license license:asl2.0))) - -(define-public go-github-com-containerd-go-cni-1.0.2 - (package - (name "go-github-com-containerd-go-cni") - (version "1.0.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/go-cni") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1hqwy402qy04slz2vj05s517mhdbmmkdjs6nhfnk184a730whgv6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/go-cni")) - (propagated-inputs - `(("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-onsi-gomega-1.7.1" ,go-github-com-onsi-gomega-1.7.1) - ("go-github-com-onsi-ginkgo-1.10.3" ,go-github-com-onsi-ginkgo-1.10.3) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1) - ("go-github-com-containernetworking-cni-0.8.0" - ,go-github-com-containernetworking-cni-0.8.0))) - (home-page "https://github.com/containerd/go-cni") - (synopsis "go-cni") - (description - "This package provides a generic CNI library to provide APIs for CNI plugin interactions. The library provides APIs to:") - (license license:asl2.0))) - -(define-public go-github-com-containerd-zfs-0.0.0-20210315114300-dde8f0fda960 - (package - (name "go-github-com-containerd-zfs") - (version "0.0.0-20210315114300-dde8f0fda960") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/zfs") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ag5p2vqzdavq66wb1z42yw5jzrncsi97g8qk2x9nq51z1nj8rdi")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/zfs")) - (propagated-inputs - `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible" - ,go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible) - ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" - ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) - ("go-github-com-containerd-containerd-1.5.0-beta.3" - ,go-github-com-containerd-containerd-1.5.0-beta.3))) - (home-page "https://github.com/containerd/zfs") - (synopsis "ZFS snapshotter plugin") - (description "ZFS snapshotter plugin for containerd.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-containerd-1.5.0-beta.4 - (package - (name "go-github-com-containerd-containerd") - (version "1.5.0-beta.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/containerd") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "039c26mjq8qs1s4kbx76fc99wnmnx165bqn16b2b9gyvxcphs7iv")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/containerd")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) - ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) - ("go-github-com-golang-protobuf-1.3.5" - ,go-github-com-golang-protobuf-1.3.5) - ("go-github-com-gogo-googleapis-1.3.2" - ,go-github-com-gogo-googleapis-1.3.2) - ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" - ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) - ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) - ("go-k8s-io-cri-api-0.20.1" ,go-k8s-io-cri-api-0.20.1) - ("go-k8s-io-component-base-0.20.1" ,go-k8s-io-component-base-0.20.1) - ("go-k8s-io-client-go-0.20.1" ,go-k8s-io-client-go-0.20.1) - ("go-k8s-io-apiserver-0.20.1" ,go-k8s-io-apiserver-0.20.1) - ("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) - ("go-k8s-io-api-0.20.1" ,go-k8s-io-api-0.20.1) - ("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) - ("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" - ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) - ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" - ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) - ("go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b" - ,go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b) - ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) - ("go-github-com-tchap-go-patricia-2.2.6+incompatible" - ,go-github-com-tchap-go-patricia-2.2.6+incompatible) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-sirupsen-logrus-1.7.0" - ,go-github-com-sirupsen-logrus-1.7.0) - ("go-github-com-prometheus-client-golang-1.7.1" - ,go-github-com-prometheus-client-golang-1.7.1) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-selinux-1.8.0" - ,go-github-com-opencontainers-selinux-1.8.0) - ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" - ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) - ("go-github-com-opencontainers-runc-1.0.0-rc93" - ,go-github-com-opencontainers-runc-1.0.0-rc93) - ("go-github-com-opencontainers-image-spec-1.0.1" - ,go-github-com-opencontainers-image-spec-1.0.1) - ("go-github-com-opencontainers-go-digest-1.0.0" - ,go-github-com-opencontainers-go-digest-1.0.0) - ("go-github-com-moby-sys-symlink-0.1.0" - ,go-github-com-moby-sys-symlink-0.1.0) - ("go-github-com-moby-sys-mountinfo-0.4.1" - ,go-github-com-moby-sys-mountinfo-0.4.1) - ("go-github-com-klauspost-compress-1.11.3" - ,go-github-com-klauspost-compress-1.11.3) - ("go-github-com-imdario-mergo-0.3.11" - ,go-github-com-imdario-mergo-0.3.11) - ("go-github-com-hashicorp-go-multierror-1.0.0" - ,go-github-com-hashicorp-go-multierror-1.0.0) - ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" - ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) - ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) - ("go-github-com-google-go-cmp-0.5.4" - ,go-github-com-google-go-cmp-0.5.4) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2) - ("go-github-com-fsnotify-fsnotify-1.4.9" - ,go-github-com-fsnotify-fsnotify-1.4.9) - ("go-github-com-emicklei-go-restful-2.9.5+incompatible" - ,go-github-com-emicklei-go-restful-2.9.5+incompatible) - ("go-github-com-docker-go-units-0.4.0" - ,go-github-com-docker-go-units-0.4.0) - ("go-github-com-docker-go-metrics-0.0.1" - ,go-github-com-docker-go-metrics-0.0.1) - ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" - ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1) - ("go-github-com-coreos-go-systemd-v22-22.1.0" - ,go-github-com-coreos-go-systemd-v22-22.1.0) - ("go-github-com-containernetworking-plugins-0.8.6" - ,go-github-com-containernetworking-plugins-0.8.6) - ("go-github-com-containerd-zfs-0.0.0-20210315114300-dde8f0fda960" - ,go-github-com-containerd-zfs-0.0.0-20210315114300-dde8f0fda960) - ("go-github-com-containerd-typeurl-1.0.1" - ,go-github-com-containerd-typeurl-1.0.1) - ("go-github-com-containerd-ttrpc-1.0.2" - ,go-github-com-containerd-ttrpc-1.0.2) - ("go-github-com-containerd-nri-0.0.0-20210316161719-dbaa18c31c14" - ,go-github-com-containerd-nri-0.0.0-20210316161719-dbaa18c31c14) - ("go-github-com-containerd-imgcrypt-1.1.1-0.20210312161619-7ed62a527887" - ,go-github-com-containerd-imgcrypt-1.1.1-0.20210312161619-7ed62a527887) - ("go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0" - ,go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0) - ("go-github-com-containerd-go-cni-1.0.1" - ,go-github-com-containerd-go-cni-1.0.1) - ("go-github-com-containerd-fifo-0.0.0-20210316144830-115abcc95a1d" - ,go-github-com-containerd-fifo-0.0.0-20210316144830-115abcc95a1d) - ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" - ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) - ("go-github-com-containerd-console-1.0.1" - ,go-github-com-containerd-console-1.0.1) - ("go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68" - ,go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68) - ("go-github-com-containerd-btrfs-0.0.0-20210316141732-918d888fb676" - ,go-github-com-containerd-btrfs-0.0.0-20210316141732-918d888fb676) - ("go-github-com-containerd-aufs-0.0.0-20210316121734-20793ff83c97" - ,go-github-com-containerd-aufs-0.0.0-20210316121734-20793ff83c97) - ("go-github-com-microsoft-hcsshim-0.8.15" - ,go-github-com-microsoft-hcsshim-0.8.15) - ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" - ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3) - ("go-github-com-burntsushi-toml-0.3.1" - ,go-github-com-burntsushi-toml-0.3.1))) - (home-page "https://github.com/containerd/containerd") - (synopsis "Now Recruiting") - (description - "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") - (license license:asl2.0))) - -(define-public go-github-com-microsoft-hcsshim-0.8.16 - (package - (name "go-github-com-microsoft-hcsshim") - (version "0.8.16") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/microsoft/hcsshim") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "15bxkqq4zavwspx3ga8j3vx9jrc7l0jazsa6cs6im9liy6xhkbd6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/Microsoft/hcsshim")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) - ("go-golang-org-x-sys-0.0.0-20210324051608-47abb6519492" - ,go-golang-org-x-sys-0.0.0-20210324051608-47abb6519492) - ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" - ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) - ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) - ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) - ("go-github-com-sirupsen-logrus-1.7.0" - ,go-github-com-sirupsen-logrus-1.7.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" - ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2) - ("go-github-com-containerd-typeurl-1.0.1" - ,go-github-com-containerd-typeurl-1.0.1) - ("go-github-com-containerd-ttrpc-1.0.2" - ,go-github-com-containerd-ttrpc-1.0.2) - ("go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0" - ,go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0) - ("go-github-com-containerd-containerd-1.5.0-beta.4" - ,go-github-com-containerd-containerd-1.5.0-beta.4) - ("go-github-com-containerd-console-1.0.1" - ,go-github-com-containerd-console-1.0.1) - ("go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68" - ,go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68) - ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" - ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3))) - (home-page "https://github.com/Microsoft/hcsshim") - (synopsis "hcsshim") - (description - "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") - (license license:expat))) - -(define-public go-github-com-microsoft-go-winio-0.4.17-0.20210324224401-5516f17a5958 - (package - (name "go-github-com-microsoft-go-winio") - (version "0.4.17-0.20210324224401-5516f17a5958") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/microsoft/go-winio") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0gmgiak4x4gdyr17zm4b9vvharflk9pz5aj5jayh9hq50133b2f9")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/Microsoft/go-winio")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" - ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) - ("go-github-com-sirupsen-logrus-1.7.0" - ,go-github-com-sirupsen-logrus-1.7.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) - (home-page "https://github.com/Microsoft/go-winio") - (synopsis "go-winio") - (description - "This repository contains utilities for efficiently performing Win32 IO operations in -Go. Currently, this is focused on accessing named pipes and other file handles, and -for using named pipes as a net transport.") - (license license:expat))) - -(define-public go-github-com-containerd-aufs-0.0.0-20210316121734-20793ff83c97 - (package - (name "go-github-com-containerd-aufs") - (version "0.0.0-20210316121734-20793ff83c97") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/aufs") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ipr8pafb2xpkchfvnxjcfx9pb48mjr9k8krj9gnagssxhynbkd5")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/aufs")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" - ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" - ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) - ("go-github-com-containerd-containerd-1.5.0-beta.3" - ,go-github-com-containerd-containerd-1.5.0-beta.3))) - (home-page "https://github.com/containerd/aufs") - (synopsis "aufs snapshotter") - (description - "AUFS implementation of the snapshot interface for containerd.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-btrfs-0.0.0-20210316141732-918d888fb676 - (package - (name "go-github-com-containerd-btrfs") - (version "0.0.0-20210316141732-918d888fb676") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/btrfs") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1yf38gg41y1v12m0cl81r9q7d13170a4npzqxhbz7qn32zr23kzn")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/btrfs")) - (propagated-inputs - `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) - (home-page "https://github.com/containerd/btrfs") - (synopsis "go-btrfs") - (description - "Package btrfs provides bindings for working with btrfs partitions from Go. -") - (license license:asl2.0))) - -(define-public go-github-com-containerd-fifo-0.0.0-20210316144830-115abcc95a1d - (package - (name "go-github-com-containerd-fifo") - (version "0.0.0-20210316144830-115abcc95a1d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/fifo") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hqna43p8r6g3xv8g8n985hq1nzipsvjiwm70xpbzbgynh4ym6z5")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/fifo")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" - ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) - (home-page "https://github.com/containerd/fifo") - (synopsis "fifo") - (description "Go package for handling fifos in a sane way.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0 - (package - (name "go-github-com-containerd-go-runc") - (version "0.0.0-20201020171139-16b287bc67d0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/go-runc") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0xk30dzzxmd83bnfyilplizlxh1pg1gqz2jrq9wz9rqqkxazc03n")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/go-runc")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f" - ,go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f) - ("go-github-com-sirupsen-logrus-1.7.0" - ,go-github-com-sirupsen-logrus-1.7.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-runtime-spec-1.0.2" - ,go-github-com-opencontainers-runtime-spec-1.0.2) - ("go-github-com-containerd-console-1.0.1" - ,go-github-com-containerd-console-1.0.1))) - (home-page "https://github.com/containerd/go-runc") - (synopsis "go-runc") - (description - "This is a package for consuming the @url{https://github.com/opencontainers/runc,runc} binary in your Go applications. -It tries to expose all the settings and features of the runc CLI. If there is something missing then add it, its opensource!") - (license license:asl2.0))) - -(define-public go-github-com-containerd-imgcrypt-1.1.1-0.20210312161619-7ed62a527887 - (package - (name "go-github-com-containerd-imgcrypt") - (version "1.1.1-0.20210312161619-7ed62a527887") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/imgcrypt") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "16pgcc0w8m2cxhfjzmmd2h3n6mxzc1nlghrhgjlx0lf4q96hv904")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/imgcrypt")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) - ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" - ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) - ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) - ("go-github-com-sirupsen-logrus-1.7.0" - ,go-github-com-sirupsen-logrus-1.7.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" - ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) - ("go-github-com-opencontainers-image-spec-1.0.1" - ,go-github-com-opencontainers-image-spec-1.0.1) - ("go-github-com-opencontainers-go-digest-1.0.0" - ,go-github-com-opencontainers-go-digest-1.0.0) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2) - ("go-github-com-containers-ocicrypt-1.1.0" - ,go-github-com-containers-ocicrypt-1.1.0) - ("go-github-com-containerd-typeurl-1.0.1" - ,go-github-com-containerd-typeurl-1.0.1) - ("go-github-com-containerd-containerd-1.5.0-beta.3" - ,go-github-com-containerd-containerd-1.5.0-beta.3) - ("go-github-com-containerd-console-1.0.1" - ,go-github-com-containerd-console-1.0.1) - ("go-github-com-microsoft-hcsshim-0.8.15" - ,go-github-com-microsoft-hcsshim-0.8.15) - ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" - ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3))) - (home-page "https://github.com/containerd/imgcrypt") - (synopsis "imgcrypt image encryption library and command line tool") - (description - "Project @code{imgcrypt} is a non-core subproject of containerd.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-nri-0.0.0-20210316161719-dbaa18c31c14 - (package - (name "go-github-com-containerd-nri") - (version "0.0.0-20210316161719-dbaa18c31c14") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/nri") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0kyrvagbga6yib7il0m4zvqz977a4wsv5lgjd3ix53xmr4h7fgm7")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/nri")) - (propagated-inputs - `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-containerd-containerd-1.5.0-beta.3" - ,go-github-com-containerd-containerd-1.5.0-beta.3))) - (home-page "https://github.com/containerd/nri") - (synopsis "nri - Node Resource Interface") - (description - "This project is a WIP for a new, CNI like, interface for managing resources on a node for Pods and Containers.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-zfs-0.0.0-20210324211415-d5c4544f0433 - (package - (name "go-github-com-containerd-zfs") - (version "0.0.0-20210324211415-d5c4544f0433") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/zfs") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1wsqwqv2pyn05asgpm9clgpwq9b8b0fjk4khzkjvscrf5j4v1rx4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/zfs")) - (propagated-inputs - `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible" - ,go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible) - ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" - ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) - ("go-github-com-containerd-containerd-1.5.0-beta.3" - ,go-github-com-containerd-containerd-1.5.0-beta.3))) - (home-page "https://github.com/containerd/zfs") - (synopsis "ZFS snapshotter plugin") - (description "ZFS snapshotter plugin for containerd.") - (license license:asl2.0))) - -(define-public go-k8s-io-apiserver-0.20.4 - (package - (name "go-k8s-io-apiserver") - (version "0.20.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes/apiserver") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1gffl7z6bvi46v0fvphbak4waddsgf4pd5w16khgrzl1sv9skn61")))) - (build-system go-build-system) - (arguments '(#:import-path "k8s.io/apiserver")) - (propagated-inputs - `(("go-k8s-io-component-base-0.20.4" ,go-k8s-io-component-base-0.20.4) - ("go-k8s-io-client-go-0.20.4" ,go-k8s-io-client-go-0.20.4) - ("go-k8s-io-apimachinery-0.20.4" ,go-k8s-io-apimachinery-0.20.4) - ("go-k8s-io-api-0.20.4" ,go-k8s-io-api-0.20.4) - ("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) - ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.2" - ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.2) - ("go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.14" - ,go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.14) - ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" - ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) - ("go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd" - ,go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd) - ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) - ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) - ("go-gopkg-in-square-go-jose-v2-2.2.2" - ,go-gopkg-in-square-go-jose-v2-2.2.2) - ("go-gopkg-in-natefinch-lumberjack-v2-2.0.0" - ,go-gopkg-in-natefinch-lumberjack-v2-2.0.0) - ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) - ("go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a" - ,go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a) - ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" - ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) - ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" - ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) - ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" - ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) - ("go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0" - ,go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0) - ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) - ("go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489" - ,go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489) - ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) - ("go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5" - ,go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) - ("go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021" - ,go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822" - ,go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822) - ("go-github-com-mailru-easyjson-0.7.0" - ,go-github-com-mailru-easyjson-0.7.0) - ("go-github-com-hashicorp-golang-lru-0.5.1" - ,go-github-com-hashicorp-golang-lru-0.5.1) - ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" - ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) - ("go-github-com-gorilla-websocket-1.4.2" - ,go-github-com-gorilla-websocket-1.4.2) - ("go-github-com-googleapis-gnostic-0.4.1" - ,go-github-com-googleapis-gnostic-0.4.1) - ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) - ("go-github-com-google-gofuzz-1.1.0" - ,go-github-com-google-gofuzz-1.1.0) - ("go-github-com-google-go-cmp-0.5.2" - ,go-github-com-google-go-cmp-0.5.2) - ("go-github-com-gogo-protobuf-1.3.1" - ,go-github-com-gogo-protobuf-1.3.1) - ("go-github-com-go-openapi-spec-0.19.3" - ,go-github-com-go-openapi-spec-0.19.3) - ("go-github-com-evanphx-json-patch-4.9.0+incompatible" - ,go-github-com-evanphx-json-patch-4.9.0+incompatible) - ("go-github-com-emicklei-go-restful-2.9.5+incompatible" - ,go-github-com-emicklei-go-restful-2.9.5+incompatible) - ("go-github-com-dustin-go-humanize-1.0.0" - ,go-github-com-dustin-go-humanize-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1) - ("go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f" - ,go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f) - ("go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e" - ,go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e) - ("go-github-com-coreos-go-semver-0.3.0" - ,go-github-com-coreos-go-semver-0.3.0) - ("go-github-com-coreos-go-oidc-2.1.0+incompatible" - ,go-github-com-coreos-go-oidc-2.1.0+incompatible))) - (home-page "https://k8s.io/apiserver") - (synopsis "apiserver") - (description - "Generic library for building a Kubernetes aggregated API server.") - (license license:asl2.0))) - -(define-public go-k8s-io-api-0.20.4 - (package - (name "go-k8s-io-api") - (version "0.20.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes/api") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hjckd94vpsr690kwx7dad8qlb8xjg2bz5ms315s9h6wc5cqwvgy")))) - (build-system go-build-system) - (arguments '(#:import-path "k8s.io/api")) - (propagated-inputs - `(("go-k8s-io-apimachinery-0.20.4" ,go-k8s-io-apimachinery-0.20.4) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-gogo-protobuf-1.3.1" - ,go-github-com-gogo-protobuf-1.3.1))) - (home-page "https://k8s.io/api") - (synopsis "api") - (description - "Schema of the external API types that are served by the Kubernetes API server.") - (license license:asl2.0))) - -(define-public go-k8s-io-apimachinery-0.20.4 - (package - (name "go-k8s-io-apimachinery") - (version "0.20.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes/apimachinery") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "15qc12lbzpd4lgajy0rv24b3ky4hhg5y1l37qxdfiakhz91didfw")))) - (build-system go-build-system) - (arguments '(#:import-path "k8s.io/apimachinery")) - (propagated-inputs - `(("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) - ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.2" - ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.2) - ("go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd" - ,go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd) - ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) - ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) - ("go-gopkg-in-inf-v0-0.9.1" ,go-gopkg-in-inf-v0-0.9.1) - ("go-google-golang-org-protobuf-1.25.0" - ,go-google-golang-org-protobuf-1.25.0) - ("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" - ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) - ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) - ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" - ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) - ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" - ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-onsi-gomega-1.7.0" ,go-github-com-onsi-gomega-1.7.0) - ("go-github-com-onsi-ginkgo-1.11.0" ,go-github-com-onsi-ginkgo-1.11.0) - ("go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f" - ,go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f) - ("go-github-com-modern-go-reflect2-1.0.1" - ,go-github-com-modern-go-reflect2-1.0.1) - ("go-github-com-json-iterator-go-1.1.10" - ,go-github-com-json-iterator-go-1.1.10) - ("go-github-com-hashicorp-golang-lru-0.5.1" - ,go-github-com-hashicorp-golang-lru-0.5.1) - ("go-github-com-googleapis-gnostic-0.4.1" - ,go-github-com-googleapis-gnostic-0.4.1) - ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) - ("go-github-com-google-gofuzz-1.1.0" - ,go-github-com-google-gofuzz-1.1.0) - ("go-github-com-google-go-cmp-0.5.2" - ,go-github-com-google-go-cmp-0.5.2) - ("go-github-com-golang-protobuf-1.4.3" - ,go-github-com-golang-protobuf-1.4.3) - ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" - ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) - ("go-github-com-gogo-protobuf-1.3.1" - ,go-github-com-gogo-protobuf-1.3.1) - ("go-github-com-fsnotify-fsnotify-1.4.9" - ,go-github-com-fsnotify-fsnotify-1.4.9) - ("go-github-com-evanphx-json-patch-4.9.0+incompatible" - ,go-github-com-evanphx-json-patch-4.9.0+incompatible) - ("go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153" - ,go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153) - ("go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96" - ,go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://k8s.io/apimachinery") - (synopsis "apimachinery") - (description - "Scheme, typing, encoding, decoding, and conversion packages for Kubernetes and Kubernetes-like API objects.") - (license license:asl2.0))) - -(define-public go-k8s-io-client-go-0.20.4 - (package - (name "go-k8s-io-client-go") - (version "0.20.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes/client-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0g8x2d59qm6068rql63c0mdhcjz9jsyyf7a5fdg1hyf88dvigfcx")))) - (build-system go-build-system) - (arguments '(#:import-path "k8s.io/client-go")) - (propagated-inputs - `(("go-k8s-io-apimachinery-0.20.4" ,go-k8s-io-apimachinery-0.20.4) - ("go-k8s-io-api-0.20.4" ,go-k8s-io-api-0.20.4) - ("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) - ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" - ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) - ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) - ("go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e" - ,go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e) - ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" - ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) - ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" - ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) - ("go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0" - ,go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) - ("go-github-com-peterbourgon-diskv-2.0.1+incompatible" - ,go-github-com-peterbourgon-diskv-2.0.1+incompatible) - ("go-github-com-imdario-mergo-0.3.5" - ,go-github-com-imdario-mergo-0.3.5) - ("go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7" - ,go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7) - ("go-github-com-googleapis-gnostic-0.4.1" - ,go-github-com-googleapis-gnostic-0.4.1) - ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) - ("go-github-com-google-gofuzz-1.1.0" - ,go-github-com-google-gofuzz-1.1.0) - ("go-github-com-google-go-cmp-0.5.2" - ,go-github-com-google-go-cmp-0.5.2) - ("go-github-com-golang-protobuf-1.4.3" - ,go-github-com-golang-protobuf-1.4.3) - ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" - ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) - ("go-github-com-gogo-protobuf-1.3.1" - ,go-github-com-gogo-protobuf-1.3.1) - ("go-github-com-evanphx-json-patch-4.9.0+incompatible" - ,go-github-com-evanphx-json-patch-4.9.0+incompatible) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1) - ("go-github-com-azure-go-autorest-autorest-adal-0.9.5" - ,go-github-com-azure-go-autorest-autorest-adal-0.9.5) - ("go-github-com-azure-go-autorest-autorest-0.11.1" - ,go-github-com-azure-go-autorest-autorest-0.11.1) - ("go-cloud-google-com-go-0.54.0" ,go-cloud-google-com-go-0.54.0))) - (home-page "https://k8s.io/client-go") - (synopsis "client-go") - (description - "Go clients for talking to a @url{http://kubernetes.io/,kubernetes} cluster.") - (license license:asl2.0))) - -(define-public go-k8s-io-component-base-0.20.4 - (package - (name "go-k8s-io-component-base") - (version "0.20.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes/component-base") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "02b782p63h8z3pg64i1kfgkmxwslxpyl6afkhd1agbig9zd6g7w8")))) - (build-system go-build-system) - (arguments '(#:import-path "k8s.io/component-base")) - (propagated-inputs - `(("go-k8s-io-client-go-0.20.4" ,go-k8s-io-client-go-0.20.4) - ("go-k8s-io-apimachinery-0.20.4" ,go-k8s-io-apimachinery-0.20.4) - ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" - ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) - ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) - ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) - ("go-go-uber-org-multierr-1.1.0" ,go-go-uber-org-multierr-1.1.0) - ("go-go-uber-org-atomic-1.4.0" ,go-go-uber-org-atomic-1.4.0) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) - ("go-github-com-sirupsen-logrus-1.6.0" - ,go-github-com-sirupsen-logrus-1.6.0) - ("go-github-com-prometheus-procfs-0.2.0" - ,go-github-com-prometheus-procfs-0.2.0) - ("go-github-com-prometheus-common-0.10.0" - ,go-github-com-prometheus-common-0.10.0) - ("go-github-com-prometheus-client-model-0.2.0" - ,go-github-com-prometheus-client-model-0.2.0) - ("go-github-com-prometheus-client-golang-1.7.1" - ,go-github-com-prometheus-client-golang-1.7.1) - ("go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd" - ,go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd) - ("go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369" - ,go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369) - ("go-github-com-google-go-cmp-0.5.2" - ,go-github-com-google-go-cmp-0.5.2) - ("go-github-com-go-logr-logr-0.2.0" ,go-github-com-go-logr-logr-0.2.0) - ("go-github-com-blang-semver-3.5.1+incompatible" - ,go-github-com-blang-semver-3.5.1+incompatible))) - (home-page "https://k8s.io/component-base") - (synopsis "component-base") - (description - "Implement KEP 32: @url{https://github.com/kubernetes/enhancements/blob/master/keps/sig-cluster-lifecycle/wgs/783-component-base/README.md,https://github.com/kubernetes/enhancements/blob/master/keps/sig-cluster-lifecycle/wgs/783-component-base/README.md}") - (license license:asl2.0))) - -(define-public go-k8s-io-cri-api-0.20.4 - (package - (name "go-k8s-io-cri-api") - (version "0.20.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes/cri-api") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1r98d0kv42sijdg3404xx2g5jj0zixvfagkky2zla12p68ajm4xr")))) - (build-system go-build-system) - (arguments '(#:import-path "k8s.io/cri-api")) - (propagated-inputs - `(("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" - ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) - ("go-google-golang-org-protobuf-1.25.0" - ,go-google-golang-org-protobuf-1.25.0) - ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) - ("go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a" - ,go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a) - ("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" - ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) - ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) - ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" - ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) - ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" - ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-kr-pretty-0.2.0" ,go-github-com-kr-pretty-0.2.0) - ("go-github-com-google-go-cmp-0.5.2" - ,go-github-com-google-go-cmp-0.5.2) - ("go-github-com-golang-protobuf-1.4.3" - ,go-github-com-golang-protobuf-1.4.3) - ("go-github-com-gogo-protobuf-1.3.1" - ,go-github-com-gogo-protobuf-1.3.1) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://k8s.io/cri-api") - (synopsis "Purpose") - (description - "This repository contains the definitions for the Container Runtime Interface (CRI). -CRI is a plugin interface which enables kubelet to use a wide variety of container runtimes, -without the need to recompile. CRI consists of a protocol buffers and gRPC API.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-containerd-1.5.0-rc.0 - (package - (name "go-github-com-containerd-containerd") - (version "1.5.0-rc.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/containerd") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "148z6782bj0vy3vzbhg2xf53g14llvxfsmdsqkz6x5n49rm6xr4i")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/containerd")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) - ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) - ("go-github-com-golang-protobuf-1.3.5" - ,go-github-com-golang-protobuf-1.3.5) - ("go-github-com-gogo-googleapis-1.3.2" - ,go-github-com-gogo-googleapis-1.3.2) - ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" - ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) - ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) - ("go-k8s-io-cri-api-0.20.4" ,go-k8s-io-cri-api-0.20.4) - ("go-k8s-io-component-base-0.20.4" ,go-k8s-io-component-base-0.20.4) - ("go-k8s-io-client-go-0.20.4" ,go-k8s-io-client-go-0.20.4) - ("go-k8s-io-apiserver-0.20.4" ,go-k8s-io-apiserver-0.20.4) - ("go-k8s-io-apimachinery-0.20.4" ,go-k8s-io-apimachinery-0.20.4) - ("go-k8s-io-api-0.20.4" ,go-k8s-io-api-0.20.4) - ("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) - ("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" - ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) - ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" - ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) - ("go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b" - ,go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b) - ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) - ("go-github-com-tchap-go-patricia-2.2.6+incompatible" - ,go-github-com-tchap-go-patricia-2.2.6+incompatible) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-sirupsen-logrus-1.7.0" - ,go-github-com-sirupsen-logrus-1.7.0) - ("go-github-com-prometheus-client-golang-1.7.1" - ,go-github-com-prometheus-client-golang-1.7.1) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-pelletier-go-toml-1.8.1" - ,go-github-com-pelletier-go-toml-1.8.1) - ("go-github-com-opencontainers-selinux-1.8.0" - ,go-github-com-opencontainers-selinux-1.8.0) - ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" - ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) - ("go-github-com-opencontainers-runc-1.0.0-rc93" - ,go-github-com-opencontainers-runc-1.0.0-rc93) - ("go-github-com-opencontainers-image-spec-1.0.1" - ,go-github-com-opencontainers-image-spec-1.0.1) - ("go-github-com-opencontainers-go-digest-1.0.0" - ,go-github-com-opencontainers-go-digest-1.0.0) - ("go-github-com-moby-sys-symlink-0.1.0" - ,go-github-com-moby-sys-symlink-0.1.0) - ("go-github-com-moby-sys-mountinfo-0.4.1" - ,go-github-com-moby-sys-mountinfo-0.4.1) - ("go-github-com-klauspost-compress-1.11.13" - ,go-github-com-klauspost-compress-1.11.13) - ("go-github-com-imdario-mergo-0.3.11" - ,go-github-com-imdario-mergo-0.3.11) - ("go-github-com-hashicorp-go-multierror-1.0.0" - ,go-github-com-hashicorp-go-multierror-1.0.0) - ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" - ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) - ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) - ("go-github-com-google-go-cmp-0.5.4" - ,go-github-com-google-go-cmp-0.5.4) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2) - ("go-github-com-fsnotify-fsnotify-1.4.9" - ,go-github-com-fsnotify-fsnotify-1.4.9) - ("go-github-com-emicklei-go-restful-2.9.5+incompatible" - ,go-github-com-emicklei-go-restful-2.9.5+incompatible) - ("go-github-com-docker-go-units-0.4.0" - ,go-github-com-docker-go-units-0.4.0) - ("go-github-com-docker-go-metrics-0.0.1" - ,go-github-com-docker-go-metrics-0.0.1) - ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" - ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1) - ("go-github-com-coreos-go-systemd-v22-22.1.0" - ,go-github-com-coreos-go-systemd-v22-22.1.0) - ("go-github-com-containernetworking-plugins-0.8.6" - ,go-github-com-containernetworking-plugins-0.8.6) - ("go-github-com-containerd-zfs-0.0.0-20210324211415-d5c4544f0433" - ,go-github-com-containerd-zfs-0.0.0-20210324211415-d5c4544f0433) - ("go-github-com-containerd-typeurl-1.0.1" - ,go-github-com-containerd-typeurl-1.0.1) - ("go-github-com-containerd-ttrpc-1.0.2" - ,go-github-com-containerd-ttrpc-1.0.2) - ("go-github-com-containerd-nri-0.0.0-20210316161719-dbaa18c31c14" - ,go-github-com-containerd-nri-0.0.0-20210316161719-dbaa18c31c14) - ("go-github-com-containerd-imgcrypt-1.1.1-0.20210312161619-7ed62a527887" - ,go-github-com-containerd-imgcrypt-1.1.1-0.20210312161619-7ed62a527887) - ("go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0" - ,go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0) - ("go-github-com-containerd-go-cni-1.0.1" - ,go-github-com-containerd-go-cni-1.0.1) - ("go-github-com-containerd-fifo-0.0.0-20210316144830-115abcc95a1d" - ,go-github-com-containerd-fifo-0.0.0-20210316144830-115abcc95a1d) - ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" - ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) - ("go-github-com-containerd-console-1.0.1" - ,go-github-com-containerd-console-1.0.1) - ("go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68" - ,go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68) - ("go-github-com-containerd-btrfs-0.0.0-20210316141732-918d888fb676" - ,go-github-com-containerd-btrfs-0.0.0-20210316141732-918d888fb676) - ("go-github-com-containerd-aufs-0.0.0-20210316121734-20793ff83c97" - ,go-github-com-containerd-aufs-0.0.0-20210316121734-20793ff83c97) - ("go-github-com-microsoft-hcsshim-0.8.15" - ,go-github-com-microsoft-hcsshim-0.8.15) - ("go-github-com-microsoft-go-winio-0.4.17-0.20210324224401-5516f17a5958" - ,go-github-com-microsoft-go-winio-0.4.17-0.20210324224401-5516f17a5958))) - (home-page "https://github.com/containerd/containerd") - (synopsis "Now Recruiting") - (description - "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") - (license license:asl2.0))) - -(define-public go-github-com-containers-ocicrypt-1.1.1 - (package - (name "go-github-com-containers-ocicrypt") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containers/ocicrypt") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1l0bfk244sxnakg3my529jsw532pffkmiyk5y1iqblz4mkjfphc8")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containers/ocicrypt")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) - ("go-gopkg-in-square-go-jose-v2-2.5.1" - ,go-gopkg-in-square-go-jose-v2-2.5.1) - ("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) - ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" - ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) - ("go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2" - ,go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2) - ("go-go-mozilla-org-pkcs7-0.0.0-20200128120323-432b2356ecb1" - ,go-go-mozilla-org-pkcs7-0.0.0-20200128120323-432b2356ecb1) - ("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0) - ("go-github-com-stefanberger-go-pkcs11uri-0.0.0-20201008174630-78d3cae3a980" - ,go-github-com-stefanberger-go-pkcs11uri-0.0.0-20201008174630-78d3cae3a980) - ("go-github-com-sirupsen-logrus-1.7.0" - ,go-github-com-sirupsen-logrus-1.7.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-image-spec-1.0.1" - ,go-github-com-opencontainers-image-spec-1.0.1) - ("go-github-com-opencontainers-go-digest-1.0.0" - ,go-github-com-opencontainers-go-digest-1.0.0) - ("go-github-com-miekg-pkcs11-1.0.3" ,go-github-com-miekg-pkcs11-1.0.3) - ("go-github-com-google-go-cmp-0.5.2" - ,go-github-com-google-go-cmp-0.5.2) - ("go-github-com-golang-protobuf-1.4.3" - ,go-github-com-golang-protobuf-1.4.3))) - (home-page "https://github.com/containers/ocicrypt") - (synopsis "OCIcrypt Library") - (description - "The @code{ocicrypt} library is the OCI image spec implementation of container image encryption. More details of the spec can be seen in the @url{https://github.com/opencontainers/image-spec/pull/775,OCI repository}. The purpose of this library is to encode spec structures and consts in code, as well as provide a consistent implementation of image encryption across container runtimes and build tools.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-imgcrypt-1.1.1 - (package - (name "go-github-com-containerd-imgcrypt") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/imgcrypt") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "177fs3p2xzwjsffcxqqllx6wi6ghfyqbvfgn95v3q7a2993yqk4k")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/imgcrypt")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) - ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" - ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) - ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) - ("go-github-com-sirupsen-logrus-1.7.0" - ,go-github-com-sirupsen-logrus-1.7.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" - ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) - ("go-github-com-opencontainers-image-spec-1.0.1" - ,go-github-com-opencontainers-image-spec-1.0.1) - ("go-github-com-opencontainers-go-digest-1.0.0" - ,go-github-com-opencontainers-go-digest-1.0.0) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2) - ("go-github-com-containers-ocicrypt-1.1.1" - ,go-github-com-containers-ocicrypt-1.1.1) - ("go-github-com-containerd-typeurl-1.0.1" - ,go-github-com-containerd-typeurl-1.0.1) - ("go-github-com-containerd-containerd-1.5.0-rc.0" - ,go-github-com-containerd-containerd-1.5.0-rc.0) - ("go-github-com-containerd-console-1.0.2" - ,go-github-com-containerd-console-1.0.2) - ("go-github-com-microsoft-hcsshim-0.8.16" - ,go-github-com-microsoft-hcsshim-0.8.16) - ("go-github-com-microsoft-go-winio-0.4.17-0.20210324224401-5516f17a5958" - ,go-github-com-microsoft-go-winio-0.4.17-0.20210324224401-5516f17a5958))) - (home-page "https://github.com/containerd/imgcrypt") - (synopsis "imgcrypt image encryption library and command line tool") - (description - "Project @code{imgcrypt} is a non-core subproject of containerd.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-nri-0.1.0 - (package - (name "go-github-com-containerd-nri") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/nri") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hqji5qa0n0fdyv9sjdl7mv3bb4fnq9i79pdzlw6m1nigrnb18qp")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/nri")) - (propagated-inputs - `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-containerd-containerd-1.5.0-beta.3" - ,go-github-com-containerd-containerd-1.5.0-beta.3))) - (home-page "https://github.com/containerd/nri") - (synopsis "nri - Node Resource Interface") - (description - "This project is a WIP for a new, CNI like, interface for managing resources on a node for Pods and Containers.") - (license license:asl2.0))) - -(define-public go-github-com-microsoft-hcsshim-0.8.15 - (package - (name "go-github-com-microsoft-hcsshim") - (version "0.8.15") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/microsoft/hcsshim") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1119qf7nklpnn9li61m8jrd5wvifhiz7qh7sfjjy04rfvbvlsi6c")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/Microsoft/hcsshim")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.30.0" ,go-google-golang-org-grpc-1.30.0) - ("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" - ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) - ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" - ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) - ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) - ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) - ("go-github-com-sirupsen-logrus-1.7.0" - ,go-github-com-sirupsen-logrus-1.7.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" - ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2) - ("go-github-com-containerd-typeurl-1.0.1" - ,go-github-com-containerd-typeurl-1.0.1) - ("go-github-com-containerd-ttrpc-1.0.2" - ,go-github-com-containerd-ttrpc-1.0.2) - ("go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328" - ,go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328) - ("go-github-com-containerd-containerd-1.5.0-beta.1" - ,go-github-com-containerd-containerd-1.5.0-beta.1) - ("go-github-com-containerd-console-1.0.1" - ,go-github-com-containerd-console-1.0.1) - ("go-github-com-containerd-cgroups-0.0.0-20200824123100-0b889c03f102" - ,go-github-com-containerd-cgroups-0.0.0-20200824123100-0b889c03f102) - ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" - ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3))) - (home-page "https://github.com/Microsoft/hcsshim") - (synopsis "hcsshim") - (description - "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") - (license license:expat))) - -(define-public go-github-com-containerd-containerd-1.4.1 - (package - (name "go-github-com-containerd-containerd") - (version "1.4.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/containerd") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1k6dqaidnldf7kpxdszf0wn6xb8m6vaizm2aza81fri1q0051213")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/containerd")) - (home-page "https://github.com/containerd/containerd") - (synopsis "Now Recruiting") - (description - "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") - (license license:asl2.0))) - -(define-public go-golang-org-x-sys-0.0.0-20200622214017-ed371f2e16b4 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200622214017-ed371f2e16b4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "107wfy2fj6z5zps1v72j8drfrfvss1158drb0yqhz5awlbvgrpj7")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-containerd-aufs-0.0.0-20201003224125-76a6863f2989 - (package - (name "go-github-com-containerd-aufs") - (version "0.0.0-20201003224125-76a6863f2989") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/aufs") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0nsiyqjrgf3vvv6hpiljknpbkzlla1czpkq69i607f7p5jd8bgaq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/aufs")) - (propagated-inputs - `(("go-gotest-tools-v3-3.0.2" ,go-gotest-tools-v3-3.0.2) - ("go-golang-org-x-sys-0.0.0-20200622214017-ed371f2e16b4" - ,go-golang-org-x-sys-0.0.0-20200622214017-ed371f2e16b4) - ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-image-spec-1.0.1" - ,go-github-com-opencontainers-image-spec-1.0.1) - ("go-github-com-google-go-cmp-0.3.1" - ,go-github-com-google-go-cmp-0.3.1) - ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" - ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) - ("go-github-com-containerd-typeurl-1.0.1" - ,go-github-com-containerd-typeurl-1.0.1) - ("go-github-com-containerd-ttrpc-1.0.1" - ,go-github-com-containerd-ttrpc-1.0.1) - ("go-github-com-containerd-continuity-0.0.0-20200710164510-efbc4488d8fe" - ,go-github-com-containerd-continuity-0.0.0-20200710164510-efbc4488d8fe) - ("go-github-com-containerd-containerd-1.4.1" - ,go-github-com-containerd-containerd-1.4.1) - ("go-github-com-microsoft-hcsshim-0.8.9" - ,go-github-com-microsoft-hcsshim-0.8.9))) - (home-page "https://github.com/containerd/aufs") - (synopsis "aufs snapshotter") - (description - "AUFS implementation of the snapshot interface for containerd.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68 - (package - (name "go-github-com-containerd-cgroups") - (version "0.0.0-20210114181951-8a68de567b68") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/cgroups") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0v70kxazvsizx33w9nz341hg14acg2vnbfcpx9yknmsjqdwgqnhs")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/cgroups")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9" - ,go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9) - ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) - ("go-github-com-stretchr-testify-1.2.2" - ,go-github-com-stretchr-testify-1.2.2) - ("go-github-com-sirupsen-logrus-1.7.0" - ,go-github-com-sirupsen-logrus-1.7.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-runtime-spec-1.0.2" - ,go-github-com-opencontainers-runtime-spec-1.0.2) - ("go-github-com-gogo-protobuf-1.3.1" - ,go-github-com-gogo-protobuf-1.3.1) - ("go-github-com-godbus-dbus-v5-5.0.3" - ,go-github-com-godbus-dbus-v5-5.0.3) - ("go-github-com-docker-go-units-0.4.0" - ,go-github-com-docker-go-units-0.4.0) - ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" - ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) - ("go-github-com-coreos-go-systemd-v22-22.1.0" - ,go-github-com-coreos-go-systemd-v22-22.1.0) - ("go-github-com-cilium-ebpf-0.2.0" ,go-github-com-cilium-ebpf-0.2.0))) - (home-page "https://github.com/containerd/cgroups") - (synopsis "cgroups") - (description - "Go package for creating, managing, inspecting, and destroying cgroups. -The resources format for settings on the cgroup uses the OCI runtime-spec found -@url{https://github.com/opencontainers/runtime-spec,here}.") - (license license:asl2.0))) - -(define-public go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3 - (package - (name "go-github-com-microsoft-go-winio") - (version "0.4.17-0.20210211115548-6eac466e5fa3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/microsoft/go-winio") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0w8fmybsl0v5azwi66qa299gwh0mlp907mrg4yaiya7s0cjmjx0d")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/Microsoft/go-winio")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" - ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) - ("go-github-com-sirupsen-logrus-1.7.0" - ,go-github-com-sirupsen-logrus-1.7.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) - (home-page "https://github.com/Microsoft/go-winio") - (synopsis "go-winio") - (description - "This repository contains utilities for efficiently performing Win32 IO operations in -Go. Currently, this is focused on accessing named pipes and other file handles, and -for using named pipes as a net transport.") - (license license:expat))) - -(define-public go-github-com-microsoft-hcsshim-test-0.0.0-20210227013316-43a75bb4edd3 - (package - (name "go-github-com-microsoft-hcsshim-test") - (version "0.0.0-20210227013316-43a75bb4edd3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/microsoft/hcsshim") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1j899w4hdw1mk6rfyy9qsm902iavgc49ykbjdsb02m6wszq1z0wy")))) - (build-system go-build-system) - (arguments - '(#:import-path - "github.com/Microsoft/hcsshim/test" - #:unpack-path - "github.com/Microsoft/hcsshim")) - (propagated-inputs - `(("go-k8s-io-cri-api-0.20.1" ,go-k8s-io-cri-api-0.20.1) - ("go-google-golang-org-grpc-1.30.0" ,go-google-golang-org-grpc-1.30.0) - ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" - ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) - ("go-github-com-sirupsen-logrus-1.7.0" - ,go-github-com-sirupsen-logrus-1.7.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39" - ,go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39) - ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" - ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2) - ("go-github-com-containerd-typeurl-1.0.1" - ,go-github-com-containerd-typeurl-1.0.1) - ("go-github-com-containerd-ttrpc-1.0.2" - ,go-github-com-containerd-ttrpc-1.0.2) - ("go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328" - ,go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328) - ("go-github-com-containerd-containerd-1.5.0-beta.1" - ,go-github-com-containerd-containerd-1.5.0-beta.1) - ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" - ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3))) - (home-page "https://github.com/Microsoft/hcsshim") - (synopsis #f) - (description #f) - (license license:expat))) - -(define-public go-github-com-microsoft-go-winio-0.4.16 - (package - (name "go-github-com-microsoft-go-winio") - (version "0.4.16") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/microsoft/go-winio") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0snwbwdjs34x0my9ri77cvrbnahdiyjh2jlkzf12fy48p7fyk7pq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/Microsoft/go-winio")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3" - ,go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3) - ("go-github-com-sirupsen-logrus-1.4.1" - ,go-github-com-sirupsen-logrus-1.4.1) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) - (home-page "https://github.com/Microsoft/go-winio") - (synopsis "go-winio") - (description - "This repository contains utilities for efficiently performing Win32 IO operations in -Go. Currently, this is focused on accessing named pipes and other file handles, and -for using named pipes as a net transport.") - (license license:expat))) - -(define-public go-github-com-azure-azure-sdk-for-go-16.2.1+incompatible - (package - (name "go-github-com-azure-azure-sdk-for-go") - (version "16.2.1+incompatible") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/Azure/azure-sdk-for-go") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1hwrspsyfs003h4f8zl8b41g3a6jpkqawqrykd1mjw9p6hs1c6k8")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/Azure/azure-sdk-for-go")) - (home-page "https://github.com/Azure/azure-sdk-for-go") - (synopsis "Azure SDK for Go") - (description - "Package sdk provides Go packages for managing and using Azure services. -") - (license license:expat))) - -(define-public go-github-com-azure-go-autorest-10.8.1+incompatible - (package - (name "go-github-com-azure-go-autorest") - (version "10.8.1+incompatible") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/Azure/go-autorest") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "122zfifj93vkix8ggkdh0dz5rmzxh4bql4nry1hws2czmzgxlkdm")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/Azure/go-autorest")) - (home-page "https://github.com/Azure/go-autorest") - (synopsis "go-autorest") - (description - "Package go-autorest provides an HTTP request client for use with Autorest-generated API client packages. -") - (license license:asl2.0))) - -(define-public go-github-com-shopify-logrus-bugsnag-0.0.0-20171204204709-577dee27f20d - (package - (name "go-github-com-shopify-logrus-bugsnag") - (version "0.0.0-20171204204709-577dee27f20d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/Shopify/logrus-bugsnag") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1l3yahk77vzgmjs7baf8g14sv33jj04rw73iind4wayg40lfgrp8")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/Shopify/logrus-bugsnag")) - (home-page "https://github.com/Shopify/logrus-bugsnag") - (synopsis "logrus-bugsnag") - (description - "logrus-bugsnag is a hook that allows @url{https://github.com/sirupsen/logrus,Logrus} to interface with @url{https://bugsnag.com,Bugsnag}.") - (license license:expat))) - -(define-public go-github-com-go-ini-ini-1.25.4 - (package - (name "go-github-com-go-ini-ini") - (version "1.25.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/go-ini/ini") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0b6cql5ripbiyrm18d6bfd1rfjnwcbskppw3d0vb80l0wy72d0c6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/go-ini/ini")) - (home-page "https://github.com/go-ini/ini") - (synopsis "INI") - (description - "Package ini provides INI file read and write functionality in Go. -") - (license license:asl2.0))) - -(define-public go-github-com-jmespath-go-jmespath-0.0.0-20160202185014-0b12d6b521d8 - (package - (name "go-github-com-jmespath-go-jmespath") - (version "0.0.0-20160202185014-0b12d6b521d8") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/jmespath/go-jmespath") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1vv6hph8j6xgv7gwl9vvhlsaaqsm22sxxqmgmldi4v11783pc1ld")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/jmespath/go-jmespath")) - (home-page "https://github.com/jmespath/go-jmespath") - (synopsis "go-jmespath - A JMESPath implementation in Go") - (description - "go-jmespath is a GO implementation of JMESPath, -which is a query language for JSON. It will take a JSON -document and transform it into another JSON document -through a JMESPath expression.") - (license license:asl2.0))) - -(define-public go-github-com-aws-aws-sdk-go-1.15.11 - (package - (name "go-github-com-aws-aws-sdk-go") - (version "1.15.11") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/aws/aws-sdk-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0w960w39k3nyc17p1lvd41cls39qwg7kzfm57vfbdb4h1m5sck99")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/aws/aws-sdk-go")) - (propagated-inputs - `(("go-github-com-jmespath-go-jmespath-0.0.0-20160202185014-0b12d6b521d8" - ,go-github-com-jmespath-go-jmespath-0.0.0-20160202185014-0b12d6b521d8) - ("go-github-com-go-ini-ini-1.25.4" ,go-github-com-go-ini-ini-1.25.4))) - (home-page "https://github.com/aws/aws-sdk-go") - (synopsis "AWS SDK for Go") - (description - "Package sdk is the official AWS SDK for the Go programming language. -") - (license license:asl2.0))) - -(define-public go-github-com-beorn7-perks-0.0.0-20160804104726-4c0e84591b9a - (package - (name "go-github-com-beorn7-perks") - (version "0.0.0-20160804104726-4c0e84591b9a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/beorn7/perks") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1hrybsql68xw57brzj805xx2mghydpdiysv3gbhr7f5wlxj2514y")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/beorn7/perks")) - (home-page "https://github.com/beorn7/perks") - (synopsis "Perks for Go (golang.org)") - (description - "Perks contains the Go package quantile that computes approximate quantiles over -an unbounded data stream within low memory and CPU bounds.") - (license license:expat))) - -(define-public go-github-com-bitly-go-simplejson-0.5.0 - (package - (name "go-github-com-bitly-go-simplejson") - (version "0.5.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/bitly/go-simplejson") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0n9f9dz1jn1jx86d48569nznpjn9fmq3knn7r65xpy7jhih284jj")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/bitly/go-simplejson")) - (home-page "https://github.com/bitly/go-simplejson") - (synopsis "go-simplejson") - (description "a Go package to interact with arbitrary JSON") - (license license:expat))) - -(define-public go-github-com-bmizerany-assert-0.0.0-20160611221934-b7ed37b82869 - (package - (name "go-github-com-bmizerany-assert") - (version "0.0.0-20160611221934-b7ed37b82869") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/bmizerany/assert") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18hy1wyl9zdi7sgxafrn3m7fadh6in0rhhb8l0cvkxqzdl0jcw2s")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/bmizerany/assert")) - (home-page "https://github.com/bmizerany/assert") - (synopsis #f) - (description #f) - (license #f))) - -(define-public go-github-com-bshuster-repo-logrus-logstash-hook-0.4.1 - (package - (name "go-github-com-bshuster-repo-logrus-logstash-hook") - (version "0.4.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/bshuster-repo/logrus-logstash-hook") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1kkjzav4i3l2ahgpirysr0cqh60vdq517lpj00cc9z32zfrsw87k")))) - (build-system go-build-system) - (arguments - '(#:import-path "github.com/bshuster-repo/logrus-logstash-hook")) - (home-page "https://github.com/bshuster-repo/logrus-logstash-hook") - (synopsis "Logstash hook for logrus") - (description - "Use this hook to send the logs to @url{https://www.elastic.co/products/logstash,Logstash}.") - (license license:expat))) - -(define-public go-github-com-bugsnag-bugsnag-go-0.0.0-20141110184014-b1d153021fcd - (package - (name "go-github-com-bugsnag-bugsnag-go") - (version "0.0.0-20141110184014-b1d153021fcd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/bugsnag/bugsnag-go") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "057vwigfzq42p9vkk9yhy8vkvgdmh6653rc988jmvmrkwbgvb352")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/bugsnag/bugsnag-go")) - (home-page "https://github.com/bugsnag/bugsnag-go") - (synopsis "Bugsnag error reporter for Go") - (description - "Package bugsnag captures errors in real-time and reports them to Bugsnag (@url{http://bugsnag.com,http://bugsnag.com}). -") - (license license:expat))) - -(define-public go-github-com-bugsnag-osext-0.0.0-20130617224835-0dd3f918b21b - (package - (name "go-github-com-bugsnag-osext") - (version "0.0.0-20130617224835-0dd3f918b21b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/bugsnag/osext") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "02pczqml6p1mnfdrygm3rs02g0r65qx8v1bi3x24dx8wv9dr5y23")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/bugsnag/osext")) - (home-page "https://github.com/bugsnag/osext") - (synopsis #f) - (description "Extensions to the standard \"os\" package. -") - (license license:zlib))) - -(define-public go-github-com-bugsnag-panicwrap-0.0.0-20151223152923-e2c28503fcd0 - (package - (name "go-github-com-bugsnag-panicwrap") - (version "0.0.0-20151223152923-e2c28503fcd0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/bugsnag/panicwrap") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "02z1q18s83xhfsz3n8bzv071a6n0irlad11yxppaf7015a7dl446")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/bugsnag/panicwrap")) - (home-page "https://github.com/bugsnag/panicwrap") - (synopsis "panicwrap") - (description - "The panicwrap package provides functions for capturing and handling -panics in your application. It does this by re-executing the running -application and monitoring stderr for any panics. At the same time, -stdout/stderr/etc. are set to the same values so that data is shuttled -through properly, making the existence of panicwrap mostly transparent. -") - (license license:expat))) - -(define-public go-github-com-denverdino-aliyungo-0.0.0-20190125010748-a747050bb1ba - (package - (name "go-github-com-denverdino-aliyungo") - (version "0.0.0-20190125010748-a747050bb1ba") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/denverdino/aliyungo") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0rc16ciz8gjpn36fhp0qz1ns0inlvjaz07z1qffl9ni4b49hhwkn")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/denverdino/aliyungo")) - (home-page "https://github.com/denverdino/aliyungo") - (synopsis "AliyunGo: Go SDK for Aliyun Services") - (description - "This is an unofficial Go SDK for Aliyun services. You are welcome for contribution.") - (license license:asl2.0))) - -(define-public go-github-com-dgrijalva-jwt-go-0.0.0-20170104182250-a601269ab70c - (package - (name "go-github-com-dgrijalva-jwt-go") - (version "0.0.0-20170104182250-a601269ab70c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/dgrijalva/jwt-go") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1c2dhmj95wh9cs099cr43qghgmp6bqx0mq44vha2dqq5jkbazwfv")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/dgrijalva/jwt-go")) - (home-page "https://github.com/dgrijalva/jwt-go") - (synopsis "jwt-go") - (description - "Package jwt is a Go implementation of JSON Web Tokens: @url{http://self-issued.info/docs/draft-jones-json-web-token.html,http://self-issued.info/docs/draft-jones-json-web-token.html} -") - (license license:expat))) - -(define-public go-github-com-dnaeon-go-vcr-1.0.1 - (package - (name "go-github-com-dnaeon-go-vcr") - (version "1.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/dnaeon/go-vcr") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1d0kpqr12qrqlamz5a47bp05mx49za2v6l1k7c6z71xahfmb7v2d")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/dnaeon/go-vcr")) - (home-page "https://github.com/dnaeon/go-vcr") - (synopsis "go-vcr") - (description - "@code{go-vcr} simplifies testing by recording your HTTP interactions and -replaying them in future runs in order to provide fast, deterministic -and accurate testing of your code.") - (license license:bsd-2))) - -(define-public go-github-com-docker-go-metrics-0.0.0-20180209012529-399ea8c73916 - (package - (name "go-github-com-docker-go-metrics") - (version "0.0.0-20180209012529-399ea8c73916") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/docker/go-metrics") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0najfy92fq05b330cnjk5b326yi7dnnmvzfk6g5lsa1fci78yzw4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/docker/go-metrics")) - (home-page "https://github.com/docker/go-metrics") - (synopsis "go-metrics") - (description - "This package is small wrapper around the prometheus go client to help enforce convention and best practices for metrics collection in Docker projects.") - (license (list license:asl2.0 license:cc-by-sa4.0)))) - -(define-public go-github-com-docker-libtrust-0.0.0-20150114040149-fa567046d9b1 - (package - (name "go-github-com-docker-libtrust") - (version "0.0.0-20150114040149-fa567046d9b1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/docker/libtrust") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1121c7fxarzyr3fvxyzfw8qs4hb8k92dsix26s5vxncgszl5svf2")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/docker/libtrust")) - (home-page "https://github.com/docker/libtrust") - (synopsis "libtrust") - (description - "Package libtrust provides an interface for managing authentication and -authorization using public key cryptography. Authentication is handled -using the identity attached to the public key and verified through TLS -x509 certificates, a key challenge, or signature. Authorization and -access control is managed through a trust graph distributed between -both remote trust servers and locally cached and managed data. -") - (license license:asl2.0))) - -(define-public go-github-com-garyburd-redigo-0.0.0-20150301180006-535138d7bcd7 - (package - (name "go-github-com-garyburd-redigo") - (version "0.0.0-20150301180006-535138d7bcd7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/garyburd/redigo") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1m7nc1gvv5yqnq8ii75f33485il6y6prf8gxl97dimsw94qccc5v")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/garyburd/redigo")) - (home-page "https://github.com/garyburd/redigo") - (synopsis #f) - (description - "Future development of Redigo is at -@url{https://github.com/gomodule/redigo,github.com/gomodule/redigo}. Please submit -issues at gomodule/redigo. The repository at github.com/garyburd/redigo is a -read-only snapshot.") - (license license:asl2.0))) - -(define-public go-github-com-gorilla-handlers-0.0.0-20150720190736-60c7bfde3e33 - (package - (name "go-github-com-gorilla-handlers") - (version "0.0.0-20150720190736-60c7bfde3e33") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gorilla/handlers") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0zvpxvybdn8yqpk2cxs134ip9wxmw6c1s0kw9nahf7qw1kfyzycm")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/gorilla/handlers")) - (home-page "https://github.com/gorilla/handlers") - (synopsis "gorilla/handlers") - (description - "Package handlers is a collection of handlers (aka \"HTTP middleware\") for use -with Go's net/http package (or any framework supporting http.Handler). -") - (license license:bsd-2))) - -(define-public go-github-com-gorilla-mux-1.7.2 - (package - (name "go-github-com-gorilla-mux") - (version "1.7.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gorilla/mux") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1gjcbgpdl3snc38i8sj8k6sqbv3inyrxqyggbqvr4jfx2phv2zy6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/gorilla/mux")) - (home-page "https://github.com/gorilla/mux") - (synopsis "gorilla/mux") - (description "Package mux implements a request router and dispatcher. -") - (license license:bsd-3))) - -(define-public go-github-com-jmespath-go-jmespath-0.0.0-20160803190731-bd40a432e4c7 - (package - (name "go-github-com-jmespath-go-jmespath") - (version "0.0.0-20160803190731-bd40a432e4c7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/jmespath/go-jmespath") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1kgzwiyqn24ba9kgpjxlq1h746gnyby0psbjj9mp2yx0h1i0kc4z")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/jmespath/go-jmespath")) - (home-page "https://github.com/jmespath/go-jmespath") - (synopsis "go-jmespath - A JMESPath implementation in Go") - (description - "go-jmespath is a GO implementation of JMESPath, -which is a query language for JSON. It will take a JSON -document and transform it into another JSON document -through a JMESPath expression.") - (license license:asl2.0))) - -(define-public go-github-com-marstr-guid-1.1.0 - (package - (name "go-github-com-marstr-guid") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/marstr/guid") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "081qrar6wwpmb2pq3swv4byh73r9riyhl2dwv0902d8jg3kwricm")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/marstr/guid")) - (home-page "https://github.com/marstr/guid") - (synopsis "Guid") - (description - "Globally unique identifiers offer a quick means of generating non-colliding values across a distributed system. For this implemenation, @url{http://ietf.org/rfc/rfc4122.txt,RFC 4122} governs the desired behavior.") - (license license:expat))) - -(define-public go-github-com-mitchellh-osext-0.0.0-20151018003038-5e2d6d41470f - (package - (name "go-github-com-mitchellh-osext") - (version "0.0.0-20151018003038-5e2d6d41470f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mitchellh/osext") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0j635c1cx7crs5wlirlk713l36x70pnlmqrzd3x3bjgnjg194jrk")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mitchellh/osext")) - (home-page "https://github.com/mitchellh/osext") - (synopsis "osext") - (description "Extensions to the standard \"os\" package. -") - (license license:zlib))) - -(define-public go-github-com-ncw-swift-1.0.47 - (package - (name "go-github-com-ncw-swift") - (version "1.0.47") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/ncw/swift") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0wxz4lvy6pjabghq8inby2fyh58ysclayccziawc8fd7a67kh4cd")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/ncw/swift")) - (home-page "https://github.com/ncw/swift") - (synopsis "Swift") - (description - "Package swift provides an easy to use interface to Swift / Openstack Object Storage / Rackspace Cloud Files -") - (license license:expat))) - -(define-public go-github-com-opencontainers-go-digest-0.0.0-20170106003457-a6d0ee40d420 - (package - (name "go-github-com-opencontainers-go-digest") - (version "0.0.0-20170106003457-a6d0ee40d420") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/go-digest") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1paz3na2xkhi10p5bk7f7gbh5yykfgr9f9i2gcc13rb461yq6fmg")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/go-digest")) - (home-page "https://github.com/opencontainers/go-digest") - (synopsis "go-digest") - (description - "Package digest provides a generalized type to opaquely represent message -digests and their operations within the registry. The Digest type is -designed to serve as a flexible identifier in a content-addressable system. -More importantly, it provides tools and wrappers to work with -hash.Hash-based digests with little effort. -") - (license (list license:asl2.0 license:cc-by-sa4.0)))) - -(define-public go-github-com-opencontainers-image-spec-1.0.0 - (package - (name "go-github-com-opencontainers-image-spec") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/image-spec") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "04ax2pylpwzsa5pw6wk94shdpdmfyqf70ys0idhpxsygzc2m5l23")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/image-spec")) - (home-page "https://github.com/opencontainers/image-spec") - (synopsis "OCI Image Format Specification") - (description - "The OCI Image Format project creates and maintains the software shipping container image format spec (OCI Image Format).") - (license license:asl2.0))) - -(define-public go-github-com-prometheus-client-golang-0.0.0-20180209125602-c332b6f63c06 - (package - (name "go-github-com-prometheus-client-golang") - (version "0.0.0-20180209125602-c332b6f63c06") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/client_golang") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "068r759wnh1lxcjhj89z4bqbpl7ydcx2drn2967ygw80nyab30pq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/client_golang")) - (home-page "https://github.com/prometheus/client_golang") - (synopsis "Prometheus Go client library") - (description - "This is the @url{http://golang.org,Go} client library for -@url{http://prometheus.io,Prometheus}. It has two separate parts, one for -instrumenting application code, and one for creating clients that talk to the -Prometheus HTTP API.") - (license license:asl2.0))) - -(define-public go-github-com-prometheus-client-model-0.0.0-20171117100541-99fa1f4be8e5 - (package - (name "go-github-com-prometheus-client-model") - (version "0.0.0-20171117100541-99fa1f4be8e5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/client_model") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19y4ywsivhpxj7ikf2j0gm9k3cmyw37qcbfi78n526jxcc7kw998")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/client_model")) - (home-page "https://github.com/prometheus/client_model") - (synopsis "Deprecation note") - (description - "This repository used to contain the code that defined both -the data model and the exposition format of Prometheus metrics.") - (license license:asl2.0))) - -(define-public go-github-com-prometheus-common-0.0.0-20180110214958-89604d197083 - (package - (name "go-github-com-prometheus-common") - (version "0.0.0-20180110214958-89604d197083") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/common") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "169rdlaf2mk9z4fydz7ajmngyhmf3q1lk96yhvx46bn986x5xkyn")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/common")) - (home-page "https://github.com/prometheus/common") - (synopsis "Common") - (description - "This repository contains Go libraries that are shared across Prometheus -components and libraries. They are considered internal to Prometheus, without -any stability guarantees for external usage.") - (license license:asl2.0))) - -(define-public go-github-com-gopherjs-gopherjs-0.0.0-20181017120253-0766667cb4d1 - (package - (name "go-github-com-gopherjs-gopherjs") - (version "0.0.0-20181017120253-0766667cb4d1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gopherjs/gopherjs") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "13pfc9sxiwjky2lm1xb3i3lcisn8p6mgjk2d927l7r92ysph8dmw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/gopherjs/gopherjs")) - (home-page "https://github.com/gopherjs/gopherjs") - (synopsis "GopherJS - A compiler from Go to JavaScript") - (description - "GopherJS compiles Go code (@url{https://golang.org/,golang.org}) to pure JavaScript code. Its main purpose is to give you the opportunity to write front-end code in Go which will still run in all browsers.") - (license license:bsd-2))) - -(define-public go-github-com-jtolds-gls-4.20.0+incompatible - (package - (name "go-github-com-jtolds-gls") - (version "4.20.0+incompatible") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/jtolio/gls") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1k7xd2q2ysv2xsh373qs801v6f359240kx0vrl0ydh7731lngvk6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/jtolds/gls")) - (home-page "https://github.com/jtolds/gls") - (synopsis "gls") - (description "Package gls implements goroutine-local storage. -") - (license license:expat))) - -(define-public go-github-com-smartystreets-assertions-0.0.0-20180927180507-b2de0cb4f26d - (package - (name "go-github-com-smartystreets-assertions") - (version "0.0.0-20180927180507-b2de0cb4f26d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/smartystreets/assertions") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1i7ldgavgl35c7gk25p7bvdr282ckng090zr4ch9mk1705akx09y")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/smartystreets/assertions")) - (home-page "https://github.com/smartystreets/assertions") - (synopsis #f) - (description - "Package assertions contains the implementations for all assertions which -are referenced in goconvey's `convey` package -(github.com/smartystreets/goconvey/convey) and gunit (github.com/smartystreets/gunit) -for use with the So(...) method. -They can also be used in traditional Go test functions and even in -applications. -") - (license license:expat))) - -(define-public go-golang-org-x-tools-0.0.0-20190328211700-ab21143f2384 - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20190328211700-ab21143f2384") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "15fk0psk53pplpyghz55bhay0kvsv5rikmn5hwgjnnyxq9vfy178")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-github-com-smartystreets-goconvey-0.0.0-20190330032615-68dc04aab96a - (package - (name "go-github-com-smartystreets-goconvey") - (version "0.0.0-20190330032615-68dc04aab96a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/smartystreets/goconvey") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1kas5v95fzhr88hg4rjy0vp03y4pzvy3pwwgkfz2yhn5nlj29nk6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/smartystreets/goconvey")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20190328211700-ab21143f2384" - ,go-golang-org-x-tools-0.0.0-20190328211700-ab21143f2384) - ("go-github-com-smartystreets-assertions-0.0.0-20180927180507-b2de0cb4f26d" - ,go-github-com-smartystreets-assertions-0.0.0-20180927180507-b2de0cb4f26d) - ("go-github-com-jtolds-gls-4.20.0+incompatible" - ,go-github-com-jtolds-gls-4.20.0+incompatible) - ("go-github-com-gopherjs-gopherjs-0.0.0-20181017120253-0766667cb4d1" - ,go-github-com-gopherjs-gopherjs-0.0.0-20181017120253-0766667cb4d1))) - (home-page "https://github.com/smartystreets/goconvey") - (synopsis "GoConvey is awesome Go testing") - (description - "This executable provides an HTTP server that watches for file system changes -to .go files within the working directory (and all nested go packages). -Navigating to the configured host and port in a web browser will display the -latest results of running `go test` in each go package. -") - (license license:expat))) - -(define-public go-github-com-yvasiyarov-go-metrics-0.0.0-20140926110328-57bccd1ccd43 - (package - (name "go-github-com-yvasiyarov-go-metrics") - (version "0.0.0-20140926110328-57bccd1ccd43") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/yvasiyarov/go-metrics") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1rwlq9k3iii54da90fjivi13zacx2h6znppkzncvl653xhjpm26g")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/yvasiyarov/go-metrics")) - (home-page "https://github.com/yvasiyarov/go-metrics") - (synopsis "go-metrics") - (description "Go port of Coda Hale's Metrics library -") - (license #f))) - -(define-public go-github-com-yvasiyarov-gorelic-0.0.0-20141212073537-a9bba5b9ab50 - (package - (name "go-github-com-yvasiyarov-gorelic") - (version "0.0.0-20141212073537-a9bba5b9ab50") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/yvasiyarov/gorelic") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1niwv40k9rx2g5h6wddci9ykf1sm1d5ml9mjgdjd1ahm4wfq08gn")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/yvasiyarov/gorelic")) - (home-page "https://github.com/yvasiyarov/gorelic") - (synopsis "GoRelic is deprecated in favour of") - (description - "Package gorelic is an New Relic agent implementation for Go runtime. It collect a lot of metrics about Go scheduler, garbage collector and memory allocator and send them to NewRelic. -") - (license license:bsd-2))) - -(define-public go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20140908184405-b21fdbd4370f - (package - (name "go-github-com-yvasiyarov-newrelic-platform-go") - (version "0.0.0-20140908184405-b21fdbd4370f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/yvasiyarov/newrelic_platform_go") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0a4yncdxwsy0rn3bhkadfysm817b7ndzmh9fkg8hh92pnw5aabzw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/yvasiyarov/newrelic_platform_go")) - (home-page "https://github.com/yvasiyarov/newrelic_platform_go") - (synopsis "New Relic Platform Agent SDK for Go(golang)") - (description - "Package newrelic_platform_go is New Relic Platform Agent SDK for Go language. -") - (license license:bsd-2))) - -(define-public go-golang-org-x-net-0.0.0-20190619014844-b5b0513f8c1b - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190619014844-b5b0513f8c1b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0sr4gbiq09izkmm6hcmfnia6lz6ngzzqjbwlrzh7jifbzyck53wz")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20190602015325-4c4f7f33c9ed - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190602015325-4c4f7f33c9ed") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "191001bxqyc3xfs46nnqmm7jdk0r73vk7a4zqngfl7zwjv9smwsq")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-google-golang-org-api-0.0.0-20160322025152-9bf6e6e569ff - (package - (name "go-google-golang-org-api") - (version "0.0.0-20160322025152-9bf6e6e569ff") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-api-go-client") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "02zn0zr4jrkdnxhxa0h3vm30j27bsc4lcswrffilkrafbspjsrxz")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/api")) - (home-page "https://google.golang.org/api") - (synopsis "Google APIs Client Library for Go") - (description - "Package api is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of -sub-packages. -") - (license license:bsd-3))) - -(define-public go-google-golang-org-cloud-0.0.0-20151119220103-975617b05ea8 - (package - (name "go-google-golang-org-cloud") - (version "0.0.0-20151119220103-975617b05ea8") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-cloud-go") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "156jhn1kakr98jfk830y4yr8lhisdj6qs38ypa42ddmgza9qcmdd")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/cloud")) - (home-page "https://google.golang.org/cloud") - (synopsis "Google Cloud Client Libraries for Go") - (description - "Package cloud is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -of sub-packages. -") - (license license:asl2.0))) - -(define-public go-google-golang-org-grpc-0.0.0-20160317175043-d3ddb4469d5a - (package - (name "go-google-golang-org-grpc") - (version "0.0.0-20160317175043-d3ddb4469d5a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0p45by0s66ragvx9hs8gkz1k1gy8456y794b5zspa0b86y2b53w9")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-gopkg-in-check-v1-1.0.0-20141024133853-64131543e789 - (package - (name "go-gopkg-in-check-v1") - (version "1.0.0-20141024133853-64131543e789") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/check.v1") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "01sz40asq0zwf6j7q2hww33wr1cflglngq8xazw466c9d1f9kyyh")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) - (home-page "https://gopkg.in/check.v1") - (synopsis "Instructions") - (description - "Package check is a rich testing extension for Go's testing package. -") - (license license:bsd-2))) - -(define-public go-github-com-docker-distribution-0.0.0-20190905152932-14b96e55d84c - (package - (name "go-github-com-docker-distribution") - (version "0.0.0-20190905152932-14b96e55d84c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/distribution/distribution") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0jd7ccjy7ahznsh6hf9dhqbgn9glwc0db9g5nv8n6sys5d1jdni9")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/docker/distribution")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) - ("go-gopkg-in-check-v1-1.0.0-20141024133853-64131543e789" - ,go-gopkg-in-check-v1-1.0.0-20141024133853-64131543e789) - ("go-google-golang-org-grpc-0.0.0-20160317175043-d3ddb4469d5a" - ,go-google-golang-org-grpc-0.0.0-20160317175043-d3ddb4469d5a) - ("go-google-golang-org-cloud-0.0.0-20151119220103-975617b05ea8" - ,go-google-golang-org-cloud-0.0.0-20151119220103-975617b05ea8) - ("go-google-golang-org-api-0.0.0-20160322025152-9bf6e6e569ff" - ,go-google-golang-org-api-0.0.0-20160322025152-9bf6e6e569ff) - ("go-golang-org-x-sys-0.0.0-20190602015325-4c4f7f33c9ed" - ,go-golang-org-x-sys-0.0.0-20190602015325-4c4f7f33c9ed) - ("go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45" - ,go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45) - ("go-golang-org-x-net-0.0.0-20190619014844-b5b0513f8c1b" - ,go-golang-org-x-net-0.0.0-20190619014844-b5b0513f8c1b) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2) - ("go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20140908184405-b21fdbd4370f" - ,go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20140908184405-b21fdbd4370f) - ("go-github-com-yvasiyarov-gorelic-0.0.0-20141212073537-a9bba5b9ab50" - ,go-github-com-yvasiyarov-gorelic-0.0.0-20141212073537-a9bba5b9ab50) - ("go-github-com-yvasiyarov-go-metrics-0.0.0-20140926110328-57bccd1ccd43" - ,go-github-com-yvasiyarov-go-metrics-0.0.0-20140926110328-57bccd1ccd43) - ("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0) - ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) - ("go-github-com-spf13-cobra-0.0.3" ,go-github-com-spf13-cobra-0.0.3) - ("go-github-com-smartystreets-goconvey-0.0.0-20190330032615-68dc04aab96a" - ,go-github-com-smartystreets-goconvey-0.0.0-20190330032615-68dc04aab96a) - ("go-github-com-sirupsen-logrus-1.4.2" - ,go-github-com-sirupsen-logrus-1.4.2) - ("go-github-com-satori-go-uuid-1.2.0" - ,go-github-com-satori-go-uuid-1.2.0) - ("go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7" - ,go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7) - ("go-github-com-prometheus-common-0.0.0-20180110214958-89604d197083" - ,go-github-com-prometheus-common-0.0.0-20180110214958-89604d197083) - ("go-github-com-prometheus-client-model-0.0.0-20171117100541-99fa1f4be8e5" - ,go-github-com-prometheus-client-model-0.0.0-20171117100541-99fa1f4be8e5) - ("go-github-com-prometheus-client-golang-0.0.0-20180209125602-c332b6f63c06" - ,go-github-com-prometheus-client-golang-0.0.0-20180209125602-c332b6f63c06) - ("go-github-com-opencontainers-image-spec-1.0.0" - ,go-github-com-opencontainers-image-spec-1.0.0) - ("go-github-com-opencontainers-go-digest-0.0.0-20170106003457-a6d0ee40d420" - ,go-github-com-opencontainers-go-digest-0.0.0-20170106003457-a6d0ee40d420) - ("go-github-com-ncw-swift-1.0.47" ,go-github-com-ncw-swift-1.0.47) - ("go-github-com-mitchellh-osext-0.0.0-20151018003038-5e2d6d41470f" - ,go-github-com-mitchellh-osext-0.0.0-20151018003038-5e2d6d41470f) - ("go-github-com-mitchellh-mapstructure-1.1.2" - ,go-github-com-mitchellh-mapstructure-1.1.2) - ("go-github-com-matttproud-golang-protobuf-extensions-1.0.1" - ,go-github-com-matttproud-golang-protobuf-extensions-1.0.1) - ("go-github-com-marstr-guid-1.1.0" ,go-github-com-marstr-guid-1.1.0) - ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) - ("go-github-com-jmespath-go-jmespath-0.0.0-20160803190731-bd40a432e4c7" - ,go-github-com-jmespath-go-jmespath-0.0.0-20160803190731-bd40a432e4c7) - ("go-github-com-inconshreveable-mousetrap-1.0.0" - ,go-github-com-inconshreveable-mousetrap-1.0.0) - ("go-github-com-gorilla-mux-1.7.2" ,go-github-com-gorilla-mux-1.7.2) - ("go-github-com-gorilla-handlers-0.0.0-20150720190736-60c7bfde3e33" - ,go-github-com-gorilla-handlers-0.0.0-20150720190736-60c7bfde3e33) - ("go-github-com-garyburd-redigo-0.0.0-20150301180006-535138d7bcd7" - ,go-github-com-garyburd-redigo-0.0.0-20150301180006-535138d7bcd7) - ("go-github-com-docker-libtrust-0.0.0-20150114040149-fa567046d9b1" - ,go-github-com-docker-libtrust-0.0.0-20150114040149-fa567046d9b1) - ("go-github-com-docker-go-metrics-0.0.0-20180209012529-399ea8c73916" - ,go-github-com-docker-go-metrics-0.0.0-20180209012529-399ea8c73916) - ("go-github-com-dnaeon-go-vcr-1.0.1" - ,go-github-com-dnaeon-go-vcr-1.0.1) - ("go-github-com-dgrijalva-jwt-go-0.0.0-20170104182250-a601269ab70c" - ,go-github-com-dgrijalva-jwt-go-0.0.0-20170104182250-a601269ab70c) - ("go-github-com-denverdino-aliyungo-0.0.0-20190125010748-a747050bb1ba" - ,go-github-com-denverdino-aliyungo-0.0.0-20190125010748-a747050bb1ba) - ("go-github-com-bugsnag-panicwrap-0.0.0-20151223152923-e2c28503fcd0" - ,go-github-com-bugsnag-panicwrap-0.0.0-20151223152923-e2c28503fcd0) - ("go-github-com-bugsnag-osext-0.0.0-20130617224835-0dd3f918b21b" - ,go-github-com-bugsnag-osext-0.0.0-20130617224835-0dd3f918b21b) - ("go-github-com-bugsnag-bugsnag-go-0.0.0-20141110184014-b1d153021fcd" - ,go-github-com-bugsnag-bugsnag-go-0.0.0-20141110184014-b1d153021fcd) - ("go-github-com-bshuster-repo-logrus-logstash-hook-0.4.1" - ,go-github-com-bshuster-repo-logrus-logstash-hook-0.4.1) - ("go-github-com-bmizerany-assert-0.0.0-20160611221934-b7ed37b82869" - ,go-github-com-bmizerany-assert-0.0.0-20160611221934-b7ed37b82869) - ("go-github-com-bitly-go-simplejson-0.5.0" - ,go-github-com-bitly-go-simplejson-0.5.0) - ("go-github-com-beorn7-perks-0.0.0-20160804104726-4c0e84591b9a" - ,go-github-com-beorn7-perks-0.0.0-20160804104726-4c0e84591b9a) - ("go-github-com-aws-aws-sdk-go-1.15.11" - ,go-github-com-aws-aws-sdk-go-1.15.11) - ("go-github-com-shopify-logrus-bugsnag-0.0.0-20171204204709-577dee27f20d" - ,go-github-com-shopify-logrus-bugsnag-0.0.0-20171204204709-577dee27f20d) - ("go-github-com-azure-go-autorest-10.8.1+incompatible" - ,go-github-com-azure-go-autorest-10.8.1+incompatible) - ("go-github-com-azure-azure-sdk-for-go-16.2.1+incompatible" - ,go-github-com-azure-azure-sdk-for-go-16.2.1+incompatible))) - (home-page "https://github.com/docker/distribution") - (synopsis "Distribution") - (description - "Package distribution will define the interfaces for the components of -docker distribution. The goal is to allow users to reliably package, ship -and store content related to docker images. -") - (license license:asl2.0))) - -(define-public go-github-com-gogo-protobuf-1.2.2-0.20190723190241-65acae22fc9d - (package - (name "go-github-com-gogo-protobuf") - (version "1.2.2-0.20190723190241-65acae22fc9d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gogo/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0700alky9z0g9akhrzn20wf4jr1600d0clhs32sm8chnlbvidy46")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/gogo/protobuf")) - (propagated-inputs - `(("go-github-com-kisielk-gotool-1.0.0" - ,go-github-com-kisielk-gotool-1.0.0) - ("go-github-com-kisielk-errcheck-1.2.0" - ,go-github-com-kisielk-errcheck-1.2.0))) - (home-page "https://github.com/gogo/protobuf") - (synopsis "Protocol Buffers for Go with Gadgets") - (description - "gogoprotobuf is a fork of @url{https://github.com/golang/protobuf,golang/protobuf} with extra code generation features.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20190813064441-fde4db37ae7a - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190813064441-fde4db37ae7a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "16k4w4pzziq1kln18k5fg01qgk4hpzb5xsm7175kaky6d6gwyhg3")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-k8s-io-cri-api-0.17.3 - (package - (name "go-k8s-io-cri-api") - (version "0.17.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes/cri-api") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "047wg80q4cb9qikpj0zp2kzcgp599cdqwiqlravfy86bga4r3fgf")))) - (build-system go-build-system) - (arguments '(#:import-path "k8s.io/cri-api")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190813064441-fde4db37ae7a" - ,go-golang-org-x-sys-0.0.0-20190813064441-fde4db37ae7a) - ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) - ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" - ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) - ("go-google-golang-org-grpc-1.23.1" ,go-google-golang-org-grpc-1.23.1) - ("go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873" - ,go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873) - ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) - ("go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9" - ,go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9) - ("go-github-com-stretchr-testify-1.4.0" - ,go-github-com-stretchr-testify-1.4.0) - ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2) - ("go-github-com-gogo-protobuf-1.2.2-0.20190723190241-65acae22fc9d" - ,go-github-com-gogo-protobuf-1.2.2-0.20190723190241-65acae22fc9d) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://k8s.io/cri-api") - (synopsis "Purpose") - (description - "This repository contains the definitions for the Container Runtime Interface (CRI). -CRI is a plugin interface which enables kubelet to use a wide variety of container runtimes, -without the need to recompile. CRI consists of a protocol buffers and gRPC API.") - (license license:asl2.0))) - -(define-public go-github-com-microsoft-hcsshim-test-0.0.0-20201218223536-d3e5debf77da - (package - (name "go-github-com-microsoft-hcsshim-test") - (version "0.0.0-20201218223536-d3e5debf77da") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/microsoft/hcsshim") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0k57knv8zrf32hp7rpv1km9j772w6752pfvdbpd3l711ism48c84")))) - (build-system go-build-system) - (arguments - '(#:import-path - "github.com/Microsoft/hcsshim/test" - #:unpack-path - "github.com/Microsoft/hcsshim")) - (propagated-inputs - `(("go-k8s-io-cri-api-0.17.3" ,go-k8s-io-cri-api-0.17.3) - ("go-google-golang-org-grpc-1.23.1" ,go-google-golang-org-grpc-1.23.1) - ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" - ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) - ("go-go-etcd-io-bbolt-1.3.3" ,go-go-etcd-io-bbolt-1.3.3) - ("go-github-com-xeipuuv-gojsonschema-0.0.0-20180618132009-1d523034197f" - ,go-github-com-xeipuuv-gojsonschema-0.0.0-20180618132009-1d523034197f) - ("go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415" - ,go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415) - ("go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f" - ,go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f) - ("go-github-com-syndtr-gocapability-0.0.0-20170704070218-db04d3cc01c8" - ,go-github-com-syndtr-gocapability-0.0.0-20170704070218-db04d3cc01c8) - ("go-github-com-sirupsen-logrus-1.4.2" - ,go-github-com-sirupsen-logrus-1.4.2) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39" - ,go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39) - ("go-github-com-opencontainers-runtime-spec-1.0.2" - ,go-github-com-opencontainers-runtime-spec-1.0.2) - ("go-github-com-imdario-mergo-0.3.8" - ,go-github-com-imdario-mergo-0.3.8) - ("go-github-com-hashicorp-go-multierror-0.0.0-20161216184304-ed905158d874" - ,go-github-com-hashicorp-go-multierror-0.0.0-20161216184304-ed905158d874) - ("go-github-com-hashicorp-errwrap-0.0.0-20141028054710-7554cd9344ce" - ,go-github-com-hashicorp-errwrap-0.0.0-20141028054710-7554cd9344ce) - ("go-github-com-gogo-protobuf-1.3.1" - ,go-github-com-gogo-protobuf-1.3.1) - ("go-github-com-gogo-googleapis-1.2.0" - ,go-github-com-gogo-googleapis-1.2.0) - ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" - ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) - ("go-github-com-docker-distribution-0.0.0-20190905152932-14b96e55d84c" - ,go-github-com-docker-distribution-0.0.0-20190905152932-14b96e55d84c) - ("go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd" - ,go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd) - ("go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de" - ,go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de) - ("go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3" - ,go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3) - ("go-github-com-containerd-containerd-1.3.2" - ,go-github-com-containerd-containerd-1.3.2) - ("go-github-com-blang-semver-3.1.0+incompatible" - ,go-github-com-blang-semver-3.1.0+incompatible) - ("go-github-com-microsoft-go-winio-0.4.16-0.20201130162521-d1ffc52c7331" - ,go-github-com-microsoft-go-winio-0.4.16-0.20201130162521-d1ffc52c7331))) - (home-page "https://github.com/Microsoft/hcsshim") - (synopsis #f) - (description #f) - (license license:expat))) - -(define-public go-github-com-containerd-aufs-0.0.0-20200908144142-dab0cbea06f4 - (package - (name "go-github-com-containerd-aufs") - (version "0.0.0-20200908144142-dab0cbea06f4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/aufs") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "060iqypyrdmww0ykip1zqi5f2fl1il55vndgdn5aq5zj6530mgsn")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/aufs")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) - ("go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449" - ,go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449) - ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" - ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) - ("go-go-etcd-io-bbolt-1.3.3" ,go-go-etcd-io-bbolt-1.3.3) - ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) - ("go-github-com-opencontainers-runc-1.0.0-rc9" - ,go-github-com-opencontainers-runc-1.0.0-rc9) - ("go-github-com-opencontainers-image-spec-1.0.1" - ,go-github-com-opencontainers-image-spec-1.0.1) - ("go-github-com-opencontainers-go-digest-1.0.0-rc1" - ,go-github-com-opencontainers-go-digest-1.0.0-rc1) - ("go-github-com-google-go-cmp-0.3.1" - ,go-github-com-google-go-cmp-0.3.1) - ("go-github-com-gogo-protobuf-1.3.1" - ,go-github-com-gogo-protobuf-1.3.1) - ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" - ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) - ("go-github-com-containerd-typeurl-0.0.0-20190911142611-5eb25027c9fd" - ,go-github-com-containerd-typeurl-0.0.0-20190911142611-5eb25027c9fd) - ("go-github-com-containerd-ttrpc-0.0.0-20191028202541-4f1b8fe65a5c" - ,go-github-com-containerd-ttrpc-0.0.0-20191028202541-4f1b8fe65a5c) - ("go-github-com-containerd-continuity-0.0.0-20191127005431-f65d91d395eb" - ,go-github-com-containerd-continuity-0.0.0-20191127005431-f65d91d395eb) - ("go-github-com-containerd-containerd-1.3.1-0.20191213020239-082f7e3aed57" - ,go-github-com-containerd-containerd-1.3.1-0.20191213020239-082f7e3aed57) - ("go-github-com-microsoft-hcsshim-0.8.7" - ,go-github-com-microsoft-hcsshim-0.8.7))) - (home-page "https://github.com/containerd/aufs") - (synopsis "aufs snapshotter") - (description - "AUFS implementation of the snapshot interface for containerd.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-btrfs-0.0.0-20201111183144-404b9149801e - (package - (name "go-github-com-containerd-btrfs") - (version "0.0.0-20201111183144-404b9149801e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/btrfs") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "10aakvy9njaly2mfwi1cvys8dxjn27mnd7wnpnmxh8pxb7g2svag")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/btrfs")) - (propagated-inputs - `(("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) - (home-page "https://github.com/containerd/btrfs") - (synopsis "go-btrfs") - (description - "Package btrfs provides bindings for working with btrfs partitions from Go. -") - (license license:asl2.0))) - -(define-public go-github-com-containerd-cgroups-0.0.0-20200824123100-0b889c03f102 - (package - (name "go-github-com-containerd-cgroups") - (version "0.0.0-20200824123100-0b889c03f102") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/cgroups") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1zjmphy2df9y20hzrmwxfpyyvz8vb5lazr4pjyx3c5a5x0j4rv8d")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/cgroups")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9" - ,go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9) - ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) - ("go-github-com-stretchr-testify-1.2.2" - ,go-github-com-stretchr-testify-1.2.2) - ("go-github-com-sirupsen-logrus-1.6.0" - ,go-github-com-sirupsen-logrus-1.6.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-runtime-spec-1.0.2" - ,go-github-com-opencontainers-runtime-spec-1.0.2) - ("go-github-com-gogo-protobuf-1.3.1" - ,go-github-com-gogo-protobuf-1.3.1) - ("go-github-com-godbus-dbus-v5-5.0.3" - ,go-github-com-godbus-dbus-v5-5.0.3) - ("go-github-com-docker-go-units-0.4.0" - ,go-github-com-docker-go-units-0.4.0) - ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" - ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) - ("go-github-com-coreos-go-systemd-v22-22.0.0" - ,go-github-com-coreos-go-systemd-v22-22.0.0) - ("go-github-com-cilium-ebpf-0.0.0-20200702112145-1c8d4c9ef775" - ,go-github-com-cilium-ebpf-0.0.0-20200702112145-1c8d4c9ef775))) - (home-page "https://github.com/containerd/cgroups") - (synopsis "cgroups") - (description - "Go package for creating, managing, inspecting, and destroying cgroups. -The resources format for settings on the cgroup uses the OCI runtime-spec found -@url{https://github.com/opencontainers/runtime-spec,here}.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-continuity-0.0.0-20201208142359-180525291bb7 - (package - (name "go-github-com-containerd-continuity") - (version "0.0.0-20201208142359-180525291bb7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/continuity") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1di4pspqfwfafdni0in84kzyn8h1fhqb6vh4i0g5skqmrc4sxf4h")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/continuity")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3" - ,go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3) - ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" - ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) - ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" - ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) - ("go-github-com-stretchr-testify-1.4.0" - ,go-github-com-stretchr-testify-1.4.0) - ("go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95" - ,go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95) - ("go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee" - ,go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee) - ("go-github-com-sirupsen-logrus-1.6.0" - ,go-github-com-sirupsen-logrus-1.6.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-go-digest-1.0.0" - ,go-github-com-opencontainers-go-digest-1.0.0) - ("go-github-com-inconshreveable-mousetrap-1.0.0" - ,go-github-com-inconshreveable-mousetrap-1.0.0) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0) - ("go-github-com-dustin-go-humanize-1.0.0" - ,go-github-com-dustin-go-humanize-1.0.0) - ("go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898" - ,go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898))) - (home-page "https://github.com/containerd/continuity") - (synopsis "continuity") - (description - "This package provides a transport-agnostic, filesystem metadata manifest system") - (license license:asl2.0))) - -(define-public go-github-com-containerd-fifo-0.0.0-20201026212402-0724c46b320c - (package - (name "go-github-com-containerd-fifo") - (version "0.0.0-20201026212402-0724c46b320c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/fifo") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "11d9j0isblnnqf78ygvwjyijjxn6zdzf7p803v0jv2py4d0pkvj8")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/fifo")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449" - ,go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449) - ("go-github-com-stretchr-testify-1.4.0" - ,go-github-com-stretchr-testify-1.4.0) - ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) - (home-page "https://github.com/containerd/fifo") - (synopsis "fifo") - (description "Go package for handling fifos in a sane way.") - (license license:asl2.0))) - -(define-public go-github-com-containernetworking-cni-0.8.0 - (package - (name "go-github-com-containernetworking-cni") - (version "0.8.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containernetworking/cni") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "16i59dhiq7pc7qs32cdk4yv4w9rjx4vvlw7fb6a6jhq6hxxjrgiw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containernetworking/cni")) - (home-page "https://github.com/containernetworking/cni") - (synopsis "CNI - the Container Network Interface") - (description - "CNI (), a @url{https://cncf.io,Cloud Native Computing Foundation} project, consists of a specification and libraries for writing plugins to configure network interfaces in Linux containers, along with a number of supported plugins. -CNI concerns itself only with network connectivity of containers and removing allocated resources when the container is deleted. -Because of this focus, CNI has a wide range of support and the specification is simple to implement.") - (license license:asl2.0))) - -(define-public go-github-com-onsi-ginkgo-1.10.3 - (package - (name "go-github-com-onsi-ginkgo") - (version "1.10.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/onsi/ginkgo") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "00a40by9f5ylycnar8h3p9b4z5rcsvfvg4j3v5s5mchdqrqjv1pc")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/onsi/ginkgo")) - (home-page "https://github.com/onsi/ginkgo") - (synopsis "Ginkgo 2.0 Release Candidate is available!") - (description "Ginkgo is a BDD-style testing framework for Golang -") - (license license:expat))) - -(define-public go-github-com-stretchr-objx-0.0.0-20180129172003-8a3f7159479f - (package - (name "go-github-com-stretchr-objx") - (version "0.0.0-20180129172003-8a3f7159479f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/objx") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0rbz4x4jbq9vp3zxmv0c2wh1vbg48lmc8ncdgz7zxk7241fc31ki")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/objx")) - (home-page "https://github.com/stretchr/objx") - (synopsis "Objx") - (description - "Objx - Go package for dealing with maps, slices, JSON and other data. -") - (license license:expat))) - -(define-public go-github-com-stretchr-testify-0.0.0-20180303142811-b89eecf5ca5d - (package - (name "go-github-com-stretchr-testify") - (version "0.0.0-20180303142811-b89eecf5ca5d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/testify") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0g946ii8qjaynvidj648z8izl91i6yhy0ir6g3qsrn136im3r8wk")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/testify")) - (home-page "https://github.com/stretchr/testify") - (synopsis "Testify - Thou Shalt Write Tests") - (description - "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -") - (license license:expat))) - -(define-public go-github-com-containerd-go-cni-1.0.1 - (package - (name "go-github-com-containerd-go-cni") - (version "1.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/go-cni") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0sdlwa4d0kzpm3vg9jy6fxqqcfjq8innv1zjcyp8n9qy8vj9b24y")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/go-cni")) - (propagated-inputs - `(("go-github-com-stretchr-testify-0.0.0-20180303142811-b89eecf5ca5d" - ,go-github-com-stretchr-testify-0.0.0-20180303142811-b89eecf5ca5d) - ("go-github-com-stretchr-objx-0.0.0-20180129172003-8a3f7159479f" - ,go-github-com-stretchr-objx-0.0.0-20180129172003-8a3f7159479f) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-onsi-gomega-1.7.1" ,go-github-com-onsi-gomega-1.7.1) - ("go-github-com-onsi-ginkgo-1.10.3" ,go-github-com-onsi-ginkgo-1.10.3) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1) - ("go-github-com-containernetworking-cni-0.8.0" - ,go-github-com-containernetworking-cni-0.8.0))) - (home-page "https://github.com/containerd/go-cni") - (synopsis "go-cni") - (description - "This package provides a generic CNI library to provide APIs for CNI plugin interactions. The library provides APIs to:") - (license license:asl2.0))) - -(define-public go-github-com-containerd-console-0.0.0-20191206165004-02ecf6a7291e - (package - (name "go-github-com-containerd-console") - (version "0.0.0-20191206165004-02ecf6a7291e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/console") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1b3yq446gv8da4fajknbjxr5syz1ypz0nii9sqw066hx8kmqzgqh")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/console")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e" - ,go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e) - ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) - (home-page "https://github.com/containerd/console") - (synopsis "console") - (description - "Golang package for dealing with consoles. Light on deps and a simple API.") - (license license:asl2.0))) - -(define-public go-github-com-opencontainers-runtime-spec-1.0.1 - (package - (name "go-github-com-opencontainers-runtime-spec") - (version "1.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/runtime-spec") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "00qb0q7ndxsll12ilp5a8pqfi4i1jqrlqzv0yf7sn52lkrdrw5f4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) - (home-page "https://github.com/opencontainers/runtime-spec") - (synopsis "Open Container Initiative Runtime Specification") - (description - "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328 - (package - (name "go-github-com-containerd-go-runc") - (version "0.0.0-20200220073739-7016d3ce2328") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/go-runc") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1mx2lvfkxw9kiyhi18g3c6hcpb9r2115zjzyvz6rkdqr08xrij9k")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/go-runc")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449" - ,go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449) - ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) - ("go-github-com-opencontainers-runtime-spec-1.0.1" - ,go-github-com-opencontainers-runtime-spec-1.0.1) - ("go-github-com-containerd-console-0.0.0-20191206165004-02ecf6a7291e" - ,go-github-com-containerd-console-0.0.0-20191206165004-02ecf6a7291e))) - (home-page "https://github.com/containerd/go-runc") - (synopsis "go-runc") - (description - "This is a package for consuming the @url{https://github.com/opencontainers/runc,runc} binary in your Go applications. -It tries to expose all the settings and features of the runc CLI. If there is something missing then add it, its opensource!") - (license license:asl2.0))) - -(define-public go-github-com-microsoft-go-winio-0.4.14 - (package - (name "go-github-com-microsoft-go-winio") - (version "0.4.14") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/microsoft/go-winio") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0n34wi9l9ks2z3cz97j30ljfmqppwf1zxr16hwbnswyrk54fcxm3")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/Microsoft/go-winio")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b" - ,go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b) - ("go-github-com-sirupsen-logrus-1.4.1" - ,go-github-com-sirupsen-logrus-1.4.1) - ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) - (home-page "https://github.com/Microsoft/go-winio") - (synopsis "go-winio") - (description - "This repository contains utilities for efficiently performing Win32 IO operations in -Go. Currently, this is focused on accessing named pipes and other file handles, and -for using named pipes as a net transport.") - (license license:expat))) - -(define-public go-github-com-microsoft-hcsshim-0.8.7-0.20190325164909-8abdbb8205e4 - (package - (name "go-github-com-microsoft-hcsshim") - (version "0.8.7-0.20190325164909-8abdbb8205e4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/microsoft/hcsshim") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0029085clghvprb3bs2m9q7xk4njx5fg2gr5wm3a0y8kqx0awv45")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/Microsoft/hcsshim")) - (home-page "https://github.com/Microsoft/hcsshim") - (synopsis "hcsshim") - (description - "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") - (license license:expat))) - -(define-public go-github-com-containerd-cgroups-0.0.0-20190717030353-c4b9ac5c7601 - (package - (name "go-github-com-containerd-cgroups") - (version "0.0.0-20190717030353-c4b9ac5c7601") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/cgroups") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fpai6nsm7qd5zfd8ykq8j4ngbqcy5v2isw16j086j0qabyw2iiw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/cgroups")) - (home-page "https://github.com/containerd/cgroups") - (synopsis "cgroups") - (description - "Go package for creating, managing, inspecting, and destroying cgroups. -The resources format for settings on the cgroup uses the OCI runtime-spec found -@url{https://github.com/opencontainers/runtime-spec,here}.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-console-0.0.0-20181022165439-0650fd9eeb50 - (package - (name "go-github-com-containerd-console") - (version "0.0.0-20181022165439-0650fd9eeb50") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/console") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0cs11g3gjan15rnbgryf60725sw2hf83fb6y2hwn1rgcm0jab1b8")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/console")) - (home-page "https://github.com/containerd/console") - (synopsis "console") - (description - "Golang package for dealing with consoles. Light on deps and a simple API.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-containerd-1.3.0 - (package - (name "go-github-com-containerd-containerd") - (version "1.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/containerd") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "05mr33l0rhkj49n6wf9lk95ijqvqwhp68ll879rpad1ypfv2f8as")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/containerd")) - (home-page "https://github.com/containerd/containerd") - (synopsis "Now Recruiting") - (description - "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-continuity-0.0.0-20190815185530-f2a389ac0a02 - (package - (name "go-github-com-containerd-continuity") - (version "0.0.0-20190815185530-f2a389ac0a02") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/continuity") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0h8a7npx46sjak0dyypkgg0h5dkq6dqpa4gx1v22ik62rmw0jy8r")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/continuity")) - (home-page "https://github.com/containerd/continuity") - (synopsis "continuity") - (description - "This package provides a transport-agnostic, filesystem metadata manifest system") - (license license:asl2.0))) - -(define-public go-github-com-containerd-fifo-0.0.0-20180307165137-3d5202aec260 - (package - (name "go-github-com-containerd-fifo") - (version "0.0.0-20180307165137-3d5202aec260") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/fifo") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "11jp12vgfj0xg9m2w5cfay72fwrxb6w8za7rkcqw8yy8hypiqqxq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/fifo")) - (home-page "https://github.com/containerd/fifo") - (synopsis "fifo") - (description "Go package for handling fifos in a sane way.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-go-runc-0.0.0-20190911050354-e029b79d8cda - (package - (name "go-github-com-containerd-go-runc") - (version "0.0.0-20190911050354-e029b79d8cda") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/go-runc") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0zwb6bfnfmj09rnz1z3xx1y2pm4wrhyp2ls7vmf7p62j5zyvdpkw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/go-runc")) - (home-page "https://github.com/containerd/go-runc") - (synopsis "go-runc") - (description - "This is a package for consuming the @url{https://github.com/opencontainers/runc,runc} binary in your Go applications. -It tries to expose all the settings and features of the runc CLI. If there is something missing then add it, its opensource!") - (license license:asl2.0))) - -(define-public go-github-com-containerd-ttrpc-0.0.0-20190828172938-92c8520ef9f8 - (package - (name "go-github-com-containerd-ttrpc") - (version "0.0.0-20190828172938-92c8520ef9f8") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/ttrpc") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1kzclhmicw2xkiqsg6npx0xzs5jx36mqmyd0gj5dzv88i7p4b8dx")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/ttrpc")) - (home-page "https://github.com/containerd/ttrpc") - (synopsis "ttrpc") - (description "GRPC for low-memory environments.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-containerd-1.2.10 - (package - (name "go-github-com-containerd-containerd") - (version "1.2.10") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/containerd") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1kddhkd93wkrimk0yjcqiavdrqc818nd39rf3wrgxyilx1mfnrwb")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/containerd")) - (home-page "https://github.com/containerd/containerd") - (synopsis "Now Recruiting") - (description - "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") - (license license:asl2.0))) - -(define-public go-github-com-fullsailor-pkcs7-0.0.0-20190404230743-d7302db945fa - (package - (name "go-github-com-fullsailor-pkcs7") - (version "0.0.0-20190404230743-d7302db945fa") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/fullsailor/pkcs7") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "13d7dpj85j36pxwg1kn7b23rm54va5p9v3vdcx27pma2jjlsxsm1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/fullsailor/pkcs7")) - (home-page "https://github.com/fullsailor/pkcs7") - (synopsis "pkcs7") - (description - "Package pkcs7 implements parsing and generation of some PKCS#7 structures. -") - (license license:expat))) - -(define-public go-golang-org-x-crypto-0.0.0-20190701094942-4def268fd1a4 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20190701094942-4def268fd1a4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1bfsnari529gw34cz0zqk3d9mrkcj1ay35kangri8kbgll0ss5a6")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" - ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) - ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" - ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-gopkg-in-square-go-jose-v2-2.3.1 - (package - (name "go-gopkg-in-square-go-jose-v2") - (version "2.3.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/square/go-jose.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "11r93g9xrcjqj7qvq8sbd5hy5rnbpmim0vdsp6rbav8gl7wimaa3")))) - (build-system go-build-system) - (arguments - '(#:import-path - "gopkg.in/square/go-jose.v2" - #:unpack-path - "gopkg.in/square/go-jose.v2")) - (home-page "https://gopkg.in/square/go-jose.v2") - (synopsis "Go JOSE") - (description - "Package jose aims to provide an implementation of the Javascript Object Signing -and Encryption set of standards. It implements encryption and signing based on -the JSON Web Encryption and JSON Web Signature standards, with optional JSON -Web Token support available in a sub-package. The library supports both the -compact and full serialization formats, and has optional support for multiple -recipients. -") - (license license:asl2.0))) - -(define-public go-github-com-containers-ocicrypt-1.0.1 - (package - (name "go-github-com-containers-ocicrypt") - (version "1.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containers/ocicrypt") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0q27vzgdsimypkpi7iv0rl1xz571554adphyl0j8b5qa8wrf0n7v")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containers/ocicrypt")) - (propagated-inputs - `(("go-gotest-tools-2.2.0+incompatible" - ,go-gotest-tools-2.2.0+incompatible) - ("go-gopkg-in-square-go-jose-v2-2.3.1" - ,go-gopkg-in-square-go-jose-v2-2.3.1) - ("go-google-golang-org-grpc-1.24.0" ,go-google-golang-org-grpc-1.24.0) - ("go-golang-org-x-crypto-0.0.0-20190701094942-4def268fd1a4" - ,go-golang-org-x-crypto-0.0.0-20190701094942-4def268fd1a4) - ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) - ("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0) - ("go-github-com-sirupsen-logrus-1.4.2" - ,go-github-com-sirupsen-logrus-1.4.2) - ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) - ("go-github-com-opencontainers-image-spec-1.0.1" - ,go-github-com-opencontainers-image-spec-1.0.1) - ("go-github-com-opencontainers-go-digest-1.0.0-rc1" - ,go-github-com-opencontainers-go-digest-1.0.0-rc1) - ("go-github-com-fullsailor-pkcs7-0.0.0-20190404230743-d7302db945fa" - ,go-github-com-fullsailor-pkcs7-0.0.0-20190404230743-d7302db945fa) - ("go-github-com-containerd-containerd-1.2.10" - ,go-github-com-containerd-containerd-1.2.10))) - (home-page "https://github.com/containers/ocicrypt") - (synopsis "OCIcrypt Library") - (description - "The @code{ocicrypt} library is the OCI image spec implementation of container image encryption. More details of the spec can be seen in the @url{https://github.com/opencontainers/image-spec/pull/775,OCI repository}. The purpose of this library is to encode spec structures and consts in code, as well as provide a consistent implementation of image encryption across container runtimes and build tools.") - (license license:asl2.0))) - -(define-public go-github-com-coreos-go-systemd-0.0.0-20161114122254-48702e0da86b - (package - (name "go-github-com-coreos-go-systemd") - (version "0.0.0-20161114122254-48702e0da86b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/coreos/go-systemd") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "04zl9ns4j3lpjykf32rv5cb6sj9x5ci8yi90vab1bl27vnqjgdkh")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/coreos/go-systemd")) - (home-page "https://github.com/coreos/go-systemd") - (synopsis "go-systemd") - (description "Go bindings to systemd. The project has several packages:") - (license license:asl2.0))) - -(define-public go-github-com-docker-distribution-2.7.1-0.20190205005809-0d3efadf0154+incompatible - (package - (name "go-github-com-docker-distribution") - (version "2.7.1-0.20190205005809-0d3efadf0154+incompatible") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/distribution/distribution") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1wayhmcxr6l281fqkbw1gh0ymhxlznf4jj1rcldhwrc64l2zjh8l")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/docker/distribution")) - (home-page "https://github.com/docker/distribution") - (synopsis "Distribution") - (description - "Package distribution will define the interfaces for the components of -docker distribution. The goal is to allow users to reliably package, ship -and store content related to docker images. -") - (license license:asl2.0))) - -(define-public go-github-com-docker-go-events-0.0.0-20170721190031-9461782956ad - (package - (name "go-github-com-docker-go-events") - (version "0.0.0-20170721190031-9461782956ad") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/docker/go-events") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0vn0kd0w253jwdk86gv1h6s8p6bzxiyif74xdzlb39zr6fdrr145")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/docker/go-events")) - (home-page "https://github.com/docker/go-events") - (synopsis "Docker Events Package") - (description - "The Docker @code{events} package implements a composable event distribution package -for Go.") - (license license:asl2.0))) - -(define-public go-github-com-godbus-dbus-0.0.0-20151105175453-c7fdd8b5cd55 - (package - (name "go-github-com-godbus-dbus") - (version "0.0.0-20151105175453-c7fdd8b5cd55") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/godbus/dbus") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "09zazkiny2im24xaiac5kbyhhnbqdbhwi9z9n7fj6rhpg8msiq9n")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/godbus/dbus")) - (home-page "https://github.com/godbus/dbus") - (synopsis "dbus") - (description - "Package dbus implements bindings to the D-Bus message bus system. -") - (license license:bsd-2))) - -(define-public go-github-com-gogo-googleapis-1.2.0 - (package - (name "go-github-com-gogo-googleapis") - (version "1.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gogo/googleapis") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1a82n0xp0v8lgjxzl3aa595r0rmy7afgyn2l3kv6z9kzw339i0jp")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/gogo/googleapis")) - (propagated-inputs - `(("go-github-com-gogo-protobuf-1.2.1" - ,go-github-com-gogo-protobuf-1.2.1))) - (home-page "https://github.com/gogo/googleapis") - (synopsis "Google APIs generated by gogoprotobuf") - (description - "The @url{https://github.com/gogo/grpc-example,grpc-example} includes an example usage of this repository.") - (license license:asl2.0))) - -(define-public go-github-com-imdario-mergo-0.3.8 - (package - (name "go-github-com-imdario-mergo") - (version "0.3.8") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/imdario/mergo") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "15xwyrnwng11ib0fxi7clwick2r0njwn0gs3va2g5m1ad418ry57")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/imdario/mergo")) - (home-page "https://github.com/imdario/mergo") - (synopsis "Mergo") - (description - "This package provides a helper to merge structs and maps in Golang. Useful for configuration default values, avoiding messy if-statements. -") - (license license:bsd-3))) - -(define-public go-github-com-opencontainers-go-digest-1.0.0-rc1.0.20180430190053-c9281466c8b2 - (package - (name "go-github-com-opencontainers-go-digest") - (version "1.0.0-rc1.0.20180430190053-c9281466c8b2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/go-digest") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1djdazssy27xn91pjhx3dgb0f11bnlzzbwkh7f8zwnpz011anasi")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/go-digest")) - (home-page "https://github.com/opencontainers/go-digest") - (synopsis "go-digest") - (description - "Package digest provides a generalized type to opaquely represent message -digests and their operations within the registry. The Digest type is -designed to serve as a flexible identifier in a content-addressable system. -More importantly, it provides tools and wrappers to work with -hash.Hash-based digests with little effort. -") - (license (list license:asl2.0 license:cc-by-sa4.0)))) - -(define-public go-github-com-opencontainers-runc-1.0.0-rc8.0.20190926000215-3e425f80a8c9 - (package - (name "go-github-com-opencontainers-runc") - (version "1.0.0-rc8.0.20190926000215-3e425f80a8c9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/runc") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18psc830b2rkwml1x6vxngam5b5wi3pj14mw817rshpzy87prspj")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/runc")) - (home-page "https://github.com/opencontainers/runc") - (synopsis "runc") - (description - "@code{runc} is a CLI tool for spawning and running containers according to the OCI specification.") - (license license:asl2.0))) - -(define-public go-github-com-opencontainers-runtime-spec-1.0.2-0.20190207185410-29686dbc5559 - (package - (name "go-github-com-opencontainers-runtime-spec") - (version "1.0.2-0.20190207185410-29686dbc5559") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/runtime-spec") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0i8q3520jk4yl9rsxs8mn5vsi9i0gd3drysbhciaqwm5l8c30h65")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) - (home-page "https://github.com/opencontainers/runtime-spec") - (synopsis "Open Container Initiative Runtime Specification") - (description - "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") - (license license:asl2.0))) - -(define-public go-github-com-prometheus-procfs-0.0.8 - (package - (name "go-github-com-prometheus-procfs") - (version "0.0.8") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/procfs") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "076wblhz8fjdc73fmz1lg0hafbwg1xv8hszm78lbg9anjpfgacvq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/procfs")) - (propagated-inputs - `(("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" - ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) - ("go-github-com-google-go-cmp-0.3.1" - ,go-github-com-google-go-cmp-0.3.1))) - (home-page "https://github.com/prometheus/procfs") - (synopsis "procfs") - (description - "Package procfs provides functions to retrieve system, kernel and process -metrics from the pseudo-filesystem proc. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-sys-0.0.0-20190812073006-9eafafc0a87e - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190812073006-9eafafc0a87e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0g5wcpiafz47066993mgz77gka9qzww6w6crxpnyir0459j7z07r")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-google-golang-org-grpc-1.24.0 - (package - (name "go-google-golang-org-grpc") - (version "1.24.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0h8mwv74vzcfb7p4ai247x094skxca71vjp4wpj2wzmri0x9p4v6")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" - ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) - ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" - ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) - ("go-google-golang-org-appengine-1.1.0" - ,go-google-golang-org-appengine-1.1.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-google-go-cmp-0.2.0" - ,go-github-com-google-go-cmp-0.2.0) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2) - ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-client9-misspell-0.3.4" - ,go-github-com-client9-misspell-0.3.4) - ("go-github-com-burntsushi-toml-0.3.1" - ,go-github-com-burntsushi-toml-0.3.1) - ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-github-com-containerd-imgcrypt-1.0.1 - (package - (name "go-github-com-containerd-imgcrypt") - (version "1.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/imgcrypt") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0y0gbnp8imckw6rv3sjf3sycp8rc9lyhv0pp0x3q3yksvqmbqh5v")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/imgcrypt")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.24.0" ,go-google-golang-org-grpc-1.24.0) - ("go-golang-org-x-sys-0.0.0-20190812073006-9eafafc0a87e" - ,go-golang-org-x-sys-0.0.0-20190812073006-9eafafc0a87e) - ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" - ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) - ("go-golang-org-x-net-0.0.0-20190522155817-f3200d17e092" - ,go-golang-org-x-net-0.0.0-20190522155817-f3200d17e092) - ("go-go-etcd-io-bbolt-1.3.3" ,go-go-etcd-io-bbolt-1.3.3) - ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) - ("go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2" - ,go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2) - ("go-github-com-sirupsen-logrus-1.4.2" - ,go-github-com-sirupsen-logrus-1.4.2) - ("go-github-com-prometheus-procfs-0.0.8" - ,go-github-com-prometheus-procfs-0.0.8) - ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) - ("go-github-com-opencontainers-runtime-spec-1.0.2-0.20190207185410-29686dbc5559" - ,go-github-com-opencontainers-runtime-spec-1.0.2-0.20190207185410-29686dbc5559) - ("go-github-com-opencontainers-runc-1.0.0-rc8.0.20190926000215-3e425f80a8c9" - ,go-github-com-opencontainers-runc-1.0.0-rc8.0.20190926000215-3e425f80a8c9) - ("go-github-com-opencontainers-image-spec-1.0.1" - ,go-github-com-opencontainers-image-spec-1.0.1) - ("go-github-com-opencontainers-go-digest-1.0.0-rc1.0.20180430190053-c9281466c8b2" - ,go-github-com-opencontainers-go-digest-1.0.0-rc1.0.20180430190053-c9281466c8b2) - ("go-github-com-imdario-mergo-0.3.8" - ,go-github-com-imdario-mergo-0.3.8) - ("go-github-com-gogo-protobuf-1.2.1" - ,go-github-com-gogo-protobuf-1.2.1) - ("go-github-com-gogo-googleapis-1.2.0" - ,go-github-com-gogo-googleapis-1.2.0) - ("go-github-com-godbus-dbus-0.0.0-20151105175453-c7fdd8b5cd55" - ,go-github-com-godbus-dbus-0.0.0-20151105175453-c7fdd8b5cd55) - ("go-github-com-docker-go-units-0.4.0" - ,go-github-com-docker-go-units-0.4.0) - ("go-github-com-docker-go-events-0.0.0-20170721190031-9461782956ad" - ,go-github-com-docker-go-events-0.0.0-20170721190031-9461782956ad) - ("go-github-com-docker-distribution-2.7.1-0.20190205005809-0d3efadf0154+incompatible" - ,go-github-com-docker-distribution-2.7.1-0.20190205005809-0d3efadf0154+incompatible) - ("go-github-com-coreos-go-systemd-0.0.0-20161114122254-48702e0da86b" - ,go-github-com-coreos-go-systemd-0.0.0-20161114122254-48702e0da86b) - ("go-github-com-containers-ocicrypt-1.0.1" - ,go-github-com-containers-ocicrypt-1.0.1) - ("go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd" - ,go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd) - ("go-github-com-containerd-ttrpc-0.0.0-20190828172938-92c8520ef9f8" - ,go-github-com-containerd-ttrpc-0.0.0-20190828172938-92c8520ef9f8) - ("go-github-com-containerd-go-runc-0.0.0-20190911050354-e029b79d8cda" - ,go-github-com-containerd-go-runc-0.0.0-20190911050354-e029b79d8cda) - ("go-github-com-containerd-fifo-0.0.0-20180307165137-3d5202aec260" - ,go-github-com-containerd-fifo-0.0.0-20180307165137-3d5202aec260) - ("go-github-com-containerd-continuity-0.0.0-20190815185530-f2a389ac0a02" - ,go-github-com-containerd-continuity-0.0.0-20190815185530-f2a389ac0a02) - ("go-github-com-containerd-containerd-1.3.0" - ,go-github-com-containerd-containerd-1.3.0) - ("go-github-com-containerd-console-0.0.0-20181022165439-0650fd9eeb50" - ,go-github-com-containerd-console-0.0.0-20181022165439-0650fd9eeb50) - ("go-github-com-containerd-cgroups-0.0.0-20190717030353-c4b9ac5c7601" - ,go-github-com-containerd-cgroups-0.0.0-20190717030353-c4b9ac5c7601) - ("go-github-com-microsoft-hcsshim-0.8.7-0.20190325164909-8abdbb8205e4" - ,go-github-com-microsoft-hcsshim-0.8.7-0.20190325164909-8abdbb8205e4) - ("go-github-com-microsoft-go-winio-0.4.14" - ,go-github-com-microsoft-go-winio-0.4.14))) - (home-page "https://github.com/containerd/imgcrypt") - (synopsis "imgcrypt image encryption library and command line tool") - (description - "Project @code{imgcrypt} is a non-core subproject of containerd.") - (license license:asl2.0))) - -(define-public go-github-com-blang-semver-3.1.0+incompatible - (package - (name "go-github-com-blang-semver") - (version "3.1.0+incompatible") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/blang/semver") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1s80qlij6j6wrh0fhm0l11hbf3qjra67nca5bl7izyfjj4621fcd")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/blang/semver")) - (home-page "https://github.com/blang/semver") - (synopsis "semver for golang") - (description - "semver is a @url{http://semver.org/,Semantic Versioning} library written in golang. It fully covers spec version @code{2.0.0}.") - (license license:expat))) - -(define-public go-github-com-containerd-containerd-1.3.0-beta.2.0.20190828155532-0293cbd26c69 - (package - (name "go-github-com-containerd-containerd") - (version "1.3.0-beta.2.0.20190828155532-0293cbd26c69") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/containerd") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1jhb4a7fczf817d9dwj0a02wfscv46hkymrqh1dcsgpdsp80igkw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/containerd")) - (home-page "https://github.com/containerd/containerd") - (synopsis "Now Recruiting") - (description - "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") - (license license:asl2.0))) - -(define-public go-github-com-hashicorp-errwrap-0.0.0-20141028054710-7554cd9344ce - (package - (name "go-github-com-hashicorp-errwrap") - (version "0.0.0-20141028054710-7554cd9344ce") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/errwrap") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0kmv0p605di6jc8i1778qzass18m0mv9ks9vxxrfsiwcp4la82jf")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/errwrap")) - (home-page "https://github.com/hashicorp/errwrap") - (synopsis "errwrap") - (description - "Package errwrap implements methods to formalize error wrapping in Go. -") - (license license:mpl2.0))) - -(define-public go-github-com-hashicorp-go-multierror-0.0.0-20161216184304-ed905158d874 - (package - (name "go-github-com-hashicorp-go-multierror") - (version "0.0.0-20161216184304-ed905158d874") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/go-multierror") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1bldhx9dmx9q4gjsag3g1xswq1jsf394rs69fdbmgnkj75j3sp70")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/go-multierror")) - (home-page "https://github.com/hashicorp/go-multierror") - (synopsis "go-multierror") - (description - "@code{go-multierror} is a package for Go that provides a mechanism for -representing a list of @code{error} values as a single @code{error}.") - (license license:mpl2.0))) - -(define-public go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39 - (package - (name "go-github-com-opencontainers-runtime-tools") - (version "0.0.0-20181011054405-1d69bd0f9c39") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/runtime-tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1wgisl2v8i1hvy3bf8f16v7rarx2ynyasb0jx4kffp5n5hz2hfcl")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/runtime-tools")) - (home-page "https://github.com/opencontainers/runtime-tools") - (synopsis "oci-runtime-tool") - (description - "oci-runtime-tool is a collection of tools for working with the @url{https://github.com/opencontainers/runtime-spec,OCI runtime specification}. -To build from source code, runtime-tools requires Go 1.10.x or above.") - (license license:asl2.0))) - -(define-public go-github-com-prometheus-procfs-0.0.5 - (package - (name "go-github-com-prometheus-procfs") - (version "0.0.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/procfs") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1nqn8ip9f4f6kqrvand4lxhcxrkk19dwf8s3nh336i9wr2jfhbwa")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/procfs")) - (propagated-inputs - `(("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" - ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) - ("go-github-com-google-go-cmp-0.3.0" - ,go-github-com-google-go-cmp-0.3.0))) - (home-page "https://github.com/prometheus/procfs") - (synopsis "procfs") - (description - "Package procfs provides functions to retrieve system, kernel and process -metrics from the pseudo-filesystem proc. -") - (license license:asl2.0))) - -(define-public go-github-com-syndtr-gocapability-0.0.0-20170704070218-db04d3cc01c8 - (package - (name "go-github-com-syndtr-gocapability") - (version "0.0.0-20170704070218-db04d3cc01c8") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/syndtr/gocapability") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0jwica5kqax70rd4gbc2yjdz54401s4mr6clyn60gcmnxc0wynds")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/syndtr/gocapability")) - (home-page "https://github.com/syndtr/gocapability") - (synopsis #f) - (description #f) - (license license:bsd-2))) - -(define-public go-github-com-xeipuuv-gojsonschema-0.0.0-20180618132009-1d523034197f - (package - (name "go-github-com-xeipuuv-gojsonschema") - (version "0.0.0-20180618132009-1d523034197f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/xeipuuv/gojsonschema") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1z8c6x8sfh6d1ib2lm2jps7r139qip6h3zik3fxhy1yr1380qbzp")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/xeipuuv/gojsonschema")) - (home-page "https://github.com/xeipuuv/gojsonschema") - (synopsis "gojsonschema") - (description - "An implementation of JSON Schema for the Go programming language. Supports draft-04, draft-06 and draft-07.") - (license license:asl2.0))) - -(define-public go-k8s-io-kubernetes-1.13.0 - (package - (name "go-k8s-io-kubernetes") - (version "1.13.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes/kubernetes") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12cvw8b7l319p8nc2imc2wck7zz7vzrwcjyxq5djqj7l5rbcwmzs")))) - (build-system go-build-system) - (arguments '(#:import-path "k8s.io/kubernetes")) - (home-page "https://k8s.io/kubernetes") - (synopsis "Kubernetes (K8s)") - (description - "Kubernetes, also known as K8s, is an open source system for managing @url{https://kubernetes.io/docs/concepts/overview/what-is-kubernetes/,containerized applications} -across multiple hosts. It provides basic mechanisms for deployment, maintenance, -and scaling of applications.") - (license license:asl2.0))) - -(define-public go-github-com-microsoft-hcsshim-0.8.7 - (package - (name "go-github-com-microsoft-hcsshim") - (version "0.8.7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/microsoft/hcsshim") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1c6ix202ll48n7x00xxb7gzgm3srm9zwwbx2503l6vz3sqclh9xm")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/Microsoft/hcsshim")) - (propagated-inputs - `(("go-k8s-io-kubernetes-1.13.0" ,go-k8s-io-kubernetes-1.13.0) - ("go-gotest-tools-2.2.0+incompatible" - ,go-gotest-tools-2.2.0+incompatible) - ("go-google-golang-org-grpc-1.20.1" ,go-google-golang-org-grpc-1.20.1) - ("go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3" - ,go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3) - ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" - ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) - ("go-go-opencensus-io-0.22.0" ,go-go-opencensus-io-0.22.0) - ("go-github-com-xeipuuv-gojsonschema-0.0.0-20180618132009-1d523034197f" - ,go-github-com-xeipuuv-gojsonschema-0.0.0-20180618132009-1d523034197f) - ("go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415" - ,go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415) - ("go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f" - ,go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f) - ("go-github-com-urfave-cli-0.0.0-20171014202726-7bc6a0acffa5" - ,go-github-com-urfave-cli-0.0.0-20171014202726-7bc6a0acffa5) - ("go-github-com-syndtr-gocapability-0.0.0-20170704070218-db04d3cc01c8" - ,go-github-com-syndtr-gocapability-0.0.0-20170704070218-db04d3cc01c8) - ("go-github-com-sirupsen-logrus-1.4.1" - ,go-github-com-sirupsen-logrus-1.4.1) - ("go-github-com-prometheus-procfs-0.0.5" - ,go-github-com-prometheus-procfs-0.0.5) - ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) - ("go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39" - ,go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39) - ("go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700" - ,go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700) - ("go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f" - ,go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f) - ("go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2" - ,go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2) - ("go-github-com-hashicorp-go-multierror-0.0.0-20161216184304-ed905158d874" - ,go-github-com-hashicorp-go-multierror-0.0.0-20161216184304-ed905158d874) - ("go-github-com-hashicorp-errwrap-0.0.0-20141028054710-7554cd9344ce" - ,go-github-com-hashicorp-errwrap-0.0.0-20141028054710-7554cd9344ce) - ("go-github-com-gogo-protobuf-1.2.1" - ,go-github-com-gogo-protobuf-1.2.1) - ("go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd" - ,go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd) - ("go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de" - ,go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de) - ("go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3" - ,go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3) - ("go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448" - ,go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448) - ("go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc" - ,go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc) - ("go-github-com-containerd-containerd-1.3.0-beta.2.0.20190828155532-0293cbd26c69" - ,go-github-com-containerd-containerd-1.3.0-beta.2.0.20190828155532-0293cbd26c69) - ("go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1" - ,go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1) - ("go-github-com-containerd-cgroups-0.0.0-20190919134610-bf292b21730f" - ,go-github-com-containerd-cgroups-0.0.0-20190919134610-bf292b21730f) - ("go-github-com-blang-semver-3.1.0+incompatible" - ,go-github-com-blang-semver-3.1.0+incompatible) - ("go-github-com-microsoft-go-winio-0.4.15-0.20190919025122-fc70bd9a86b5" - ,go-github-com-microsoft-go-winio-0.4.15-0.20190919025122-fc70bd9a86b5))) - (home-page "https://github.com/Microsoft/hcsshim") - (synopsis "hcsshim") - (description - "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") - (license license:expat))) - -(define-public go-github-com-containerd-containerd-1.3.1-0.20191213020239-082f7e3aed57 - (package - (name "go-github-com-containerd-containerd") - (version "1.3.1-0.20191213020239-082f7e3aed57") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/containerd") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1piaha1adhzhj150l7zhskn5fgl4r2cyvwhrrm8bbm3vnvhmgw7v")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/containerd")) - (home-page "https://github.com/containerd/containerd") - (synopsis "Now Recruiting") - (description - "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-continuity-0.0.0-20191127005431-f65d91d395eb - (package - (name "go-github-com-containerd-continuity") - (version "0.0.0-20191127005431-f65d91d395eb") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/continuity") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "15yh5idl3if8a982gsnq9q72021a7jcs9bdcrqaxbl4dwdqcszki")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/continuity")) - (home-page "https://github.com/containerd/continuity") - (synopsis "continuity") - (description - "This package provides a transport-agnostic, filesystem metadata manifest system") - (license license:asl2.0))) - -(define-public go-golang-org-x-sys-0.0.0-20190522044717-8097e1b27ff5 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190522044717-8097e1b27ff5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1rgflfvh365x5lwdyqdd9qk8hh3ycr88a2488bgqgvfhp5ri5p6x")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-google-golang-org-genproto-0.0.0-20190522204451-c2c4e71fbf69 - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20190522204451-c2c4e71fbf69") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1y44pmyy92pg822fhw80pnciifx1ah0g73i2l0ixickd24wyznnm")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" - ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) - ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) - ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" - ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) - ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" - ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) - ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" - ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) - ("go-github-com-golang-protobuf-1.3.1" - ,go-github-com-golang-protobuf-1.3.1))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-ttrpc-0.0.0-20191028202541-4f1b8fe65a5c - (package - (name "go-github-com-containerd-ttrpc") - (version "0.0.0-20191028202541-4f1b8fe65a5c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/ttrpc") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19fhm39jagk2sfgi9g5zdqx4rynziwxhaap03x4mdj8kczlz21x8")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/ttrpc")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.21.0" ,go-google-golang-org-grpc-1.21.0) - ("go-google-golang-org-genproto-0.0.0-20190522204451-c2c4e71fbf69" - ,go-google-golang-org-genproto-0.0.0-20190522204451-c2c4e71fbf69) - ("go-golang-org-x-sys-0.0.0-20190522044717-8097e1b27ff5" - ,go-golang-org-x-sys-0.0.0-20190522044717-8097e1b27ff5) - ("go-github-com-sirupsen-logrus-1.4.2" - ,go-github-com-sirupsen-logrus-1.4.2) - ("go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1" - ,go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1) - ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) - ("go-github-com-gogo-protobuf-1.2.1" - ,go-github-com-gogo-protobuf-1.2.1))) - (home-page "https://github.com/containerd/ttrpc") - (synopsis "ttrpc") - (description "GRPC for low-memory environments.") - (license license:asl2.0))) - -(define-public go-github-com-gogo-protobuf-1.3.0 - (package - (name "go-github-com-gogo-protobuf") - (version "1.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gogo/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0slfyrmbpdcppf0z3waar90bpszdhi2gv705ys1b0zx5x6ax8f1a")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/gogo/protobuf")) - (propagated-inputs - `(("go-github-com-kisielk-gotool-1.0.0" - ,go-github-com-kisielk-gotool-1.0.0) - ("go-github-com-kisielk-errcheck-1.2.0" - ,go-github-com-kisielk-errcheck-1.2.0))) - (home-page "https://github.com/gogo/protobuf") - (synopsis "Protocol Buffers for Go with Gadgets") - (description - "gogoprotobuf is a fork of @url{https://github.com/golang/protobuf,golang/protobuf} with extra code generation features.") - (license license:bsd-3))) - -(define-public go-github-com-containerd-typeurl-0.0.0-20190911142611-5eb25027c9fd - (package - (name "go-github-com-containerd-typeurl") - (version "0.0.0-20190911142611-5eb25027c9fd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/typeurl") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fyc2962b9sqgqycnlkxls6n0d701nszl84bayxrdv3r1491jn9v")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/typeurl")) - (propagated-inputs - `(("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) - ("go-github-com-gogo-protobuf-1.3.0" - ,go-github-com-gogo-protobuf-1.3.0))) - (home-page "https://github.com/containerd/typeurl") - (synopsis "typeurl") - (description - "This package provides a Go package for managing the registration, marshaling, and unmarshaling of encoded types.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-zfs-0.0.0-20200918131355-0a33824f23a2 - (package - (name "go-github-com-containerd-zfs") - (version "0.0.0-20200918131355-0a33824f23a2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/zfs") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "112bj6mxc3r2ncybblf3w1fgqa6w0070f6a8vlqcml1g00ljhsz6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/zfs")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) - ("go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449" - ,go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449) - ("go-go-etcd-io-bbolt-1.3.3" ,go-go-etcd-io-bbolt-1.3.3) - ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) - ("go-github-com-opencontainers-runc-1.0.0-rc9" - ,go-github-com-opencontainers-runc-1.0.0-rc9) - ("go-github-com-opencontainers-image-spec-1.0.1" - ,go-github-com-opencontainers-image-spec-1.0.1) - ("go-github-com-opencontainers-go-digest-1.0.0-rc1" - ,go-github-com-opencontainers-go-digest-1.0.0-rc1) - ("go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible" - ,go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible) - ("go-github-com-google-uuid-1.1.1" ,go-github-com-google-uuid-1.1.1) - ("go-github-com-google-go-cmp-0.3.1" - ,go-github-com-google-go-cmp-0.3.1) - ("go-github-com-gogo-protobuf-1.3.1" - ,go-github-com-gogo-protobuf-1.3.1) - ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" - ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) - ("go-github-com-containerd-typeurl-0.0.0-20190911142611-5eb25027c9fd" - ,go-github-com-containerd-typeurl-0.0.0-20190911142611-5eb25027c9fd) - ("go-github-com-containerd-ttrpc-0.0.0-20191028202541-4f1b8fe65a5c" - ,go-github-com-containerd-ttrpc-0.0.0-20191028202541-4f1b8fe65a5c) - ("go-github-com-containerd-continuity-0.0.0-20191127005431-f65d91d395eb" - ,go-github-com-containerd-continuity-0.0.0-20191127005431-f65d91d395eb) - ("go-github-com-containerd-containerd-1.3.1-0.20191213020239-082f7e3aed57" - ,go-github-com-containerd-containerd-1.3.1-0.20191213020239-082f7e3aed57) - ("go-github-com-microsoft-hcsshim-0.8.7" - ,go-github-com-microsoft-hcsshim-0.8.7))) - (home-page "https://github.com/containerd/zfs") - (synopsis "ZFS snapshotter plugin") - (description "ZFS snapshotter plugin for containerd.") - (license license:asl2.0))) - -(define-public go-golang-org-x-sys-0.0.0-20201202213521-69691e467435 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20201202213521-69691e467435") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0lndxdnazszfj1jl87cpz31vd12jrjm1wj0zw1c2p8yg64cfkhna")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-containerd-containerd-1.5.0-beta.1 - (package - (name "go-github-com-containerd-containerd") - (version "1.5.0-beta.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/containerd") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1jki3jwmbfk4mp2qhz4ppd6vgnicalszzv5ffibasa4qj5v19wcd")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/containerd")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) - ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) - ("go-github-com-golang-protobuf-1.3.5" - ,go-github-com-golang-protobuf-1.3.5) - ("go-github-com-gogo-googleapis-1.3.2" - ,go-github-com-gogo-googleapis-1.3.2) - ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" - ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) - ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) - ("go-k8s-io-cri-api-0.20.1" ,go-k8s-io-cri-api-0.20.1) - ("go-k8s-io-component-base-0.20.1" ,go-k8s-io-component-base-0.20.1) - ("go-k8s-io-client-go-0.20.1" ,go-k8s-io-client-go-0.20.1) - ("go-k8s-io-apiserver-0.20.1" ,go-k8s-io-apiserver-0.20.1) - ("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) - ("go-k8s-io-api-0.20.1" ,go-k8s-io-api-0.20.1) - ("go-gotest-tools-v3-3.0.2" ,go-gotest-tools-v3-3.0.2) - ("go-golang-org-x-sys-0.0.0-20201202213521-69691e467435" - ,go-golang-org-x-sys-0.0.0-20201202213521-69691e467435) - ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" - ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) - ("go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b" - ,go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b) - ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) - ("go-github-com-tchap-go-patricia-2.2.6+incompatible" - ,go-github-com-tchap-go-patricia-2.2.6+incompatible) - ("go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635" - ,go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-sirupsen-logrus-1.7.0" - ,go-github-com-sirupsen-logrus-1.7.0) - ("go-github-com-prometheus-client-golang-1.7.1" - ,go-github-com-prometheus-client-golang-1.7.1) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-selinux-1.8.0" - ,go-github-com-opencontainers-selinux-1.8.0) - ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" - ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) - ("go-github-com-opencontainers-runc-1.0.0-rc93" - ,go-github-com-opencontainers-runc-1.0.0-rc93) - ("go-github-com-opencontainers-image-spec-1.0.1" - ,go-github-com-opencontainers-image-spec-1.0.1) - ("go-github-com-opencontainers-go-digest-1.0.0" - ,go-github-com-opencontainers-go-digest-1.0.0) - ("go-github-com-moby-sys-symlink-0.1.0" - ,go-github-com-moby-sys-symlink-0.1.0) - ("go-github-com-moby-sys-mountinfo-0.4.0" - ,go-github-com-moby-sys-mountinfo-0.4.0) - ("go-github-com-klauspost-compress-1.11.3" - ,go-github-com-klauspost-compress-1.11.3) - ("go-github-com-imdario-mergo-0.3.10" - ,go-github-com-imdario-mergo-0.3.10) - ("go-github-com-hashicorp-go-multierror-1.0.0" - ,go-github-com-hashicorp-go-multierror-1.0.0) - ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" - ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) - ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) - ("go-github-com-google-go-cmp-0.5.2" - ,go-github-com-google-go-cmp-0.5.2) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2) - ("go-github-com-fsnotify-fsnotify-1.4.9" - ,go-github-com-fsnotify-fsnotify-1.4.9) - ("go-github-com-emicklei-go-restful-2.9.5+incompatible" - ,go-github-com-emicklei-go-restful-2.9.5+incompatible) - ("go-github-com-docker-go-units-0.4.0" - ,go-github-com-docker-go-units-0.4.0) - ("go-github-com-docker-go-metrics-0.0.1" - ,go-github-com-docker-go-metrics-0.0.1) - ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" - ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1) - ("go-github-com-coreos-go-systemd-v22-22.1.0" - ,go-github-com-coreos-go-systemd-v22-22.1.0) - ("go-github-com-containernetworking-plugins-0.8.6" - ,go-github-com-containernetworking-plugins-0.8.6) - ("go-github-com-containerd-zfs-0.0.0-20200918131355-0a33824f23a2" - ,go-github-com-containerd-zfs-0.0.0-20200918131355-0a33824f23a2) - ("go-github-com-containerd-typeurl-1.0.1" - ,go-github-com-containerd-typeurl-1.0.1) - ("go-github-com-containerd-ttrpc-1.0.2" - ,go-github-com-containerd-ttrpc-1.0.2) - ("go-github-com-containerd-nri-0.0.0-20201007170849-eb1350a75164" - ,go-github-com-containerd-nri-0.0.0-20201007170849-eb1350a75164) - ("go-github-com-containerd-imgcrypt-1.0.1" - ,go-github-com-containerd-imgcrypt-1.0.1) - ("go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328" - ,go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328) - ("go-github-com-containerd-go-cni-1.0.1" - ,go-github-com-containerd-go-cni-1.0.1) - ("go-github-com-containerd-fifo-0.0.0-20201026212402-0724c46b320c" - ,go-github-com-containerd-fifo-0.0.0-20201026212402-0724c46b320c) - ("go-github-com-containerd-continuity-0.0.0-20201208142359-180525291bb7" - ,go-github-com-containerd-continuity-0.0.0-20201208142359-180525291bb7) - ("go-github-com-containerd-console-1.0.1" - ,go-github-com-containerd-console-1.0.1) - ("go-github-com-containerd-cgroups-0.0.0-20200824123100-0b889c03f102" - ,go-github-com-containerd-cgroups-0.0.0-20200824123100-0b889c03f102) - ("go-github-com-containerd-btrfs-0.0.0-20201111183144-404b9149801e" - ,go-github-com-containerd-btrfs-0.0.0-20201111183144-404b9149801e) - ("go-github-com-containerd-aufs-0.0.0-20200908144142-dab0cbea06f4" - ,go-github-com-containerd-aufs-0.0.0-20200908144142-dab0cbea06f4) - ("go-github-com-microsoft-hcsshim-test-0.0.0-20201218223536-d3e5debf77da" - ,go-github-com-microsoft-hcsshim-test-0.0.0-20201218223536-d3e5debf77da) - ("go-github-com-microsoft-hcsshim-0.8.14" - ,go-github-com-microsoft-hcsshim-0.8.14) - ("go-github-com-microsoft-go-winio-0.4.16" - ,go-github-com-microsoft-go-winio-0.4.16) - ("go-github-com-burntsushi-toml-0.3.1" - ,go-github-com-burntsushi-toml-0.3.1))) - (home-page "https://github.com/containerd/containerd") - (synopsis "Now Recruiting") - (description - "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") - (license license:asl2.0))) - -(define-public go-golang-org-x-crypto-0.0.0-20200728195943-123391ffb6de - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20200728195943-123391ffb6de") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1a3wnn8yjvckh3smyqzwd2k2gvl3i8dk68pvcap0wha8hmga1vf3")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" - ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) - ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" - ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20200817155316-9781c653f443 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200817155316-9781c653f443") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fkwiydhhmn6cxmd9jb4rj2wp06yxmqc3903b7zawsxm9jpslicm")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-containers-ocicrypt-1.1.0 - (package - (name "go-github-com-containers-ocicrypt") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containers/ocicrypt") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "13avih8ml00idn6qy96ash3jxkimqxpkz4cy4kgryc8jx303nv6i")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containers/ocicrypt")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.3.0" ,go-gopkg-in-yaml-v2-2.3.0) - ("go-gopkg-in-square-go-jose-v2-2.5.1" - ,go-gopkg-in-square-go-jose-v2-2.5.1) - ("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) - ("go-golang-org-x-sys-0.0.0-20200817155316-9781c653f443" - ,go-golang-org-x-sys-0.0.0-20200817155316-9781c653f443) - ("go-golang-org-x-crypto-0.0.0-20200728195943-123391ffb6de" - ,go-golang-org-x-crypto-0.0.0-20200728195943-123391ffb6de) - ("go-go-mozilla-org-pkcs7-0.0.0-20200128120323-432b2356ecb1" - ,go-go-mozilla-org-pkcs7-0.0.0-20200128120323-432b2356ecb1) - ("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0) - ("go-github-com-stefanberger-go-pkcs11uri-0.0.0-20201008174630-78d3cae3a980" - ,go-github-com-stefanberger-go-pkcs11uri-0.0.0-20201008174630-78d3cae3a980) - ("go-github-com-sirupsen-logrus-1.7.0" - ,go-github-com-sirupsen-logrus-1.7.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-image-spec-1.0.1" - ,go-github-com-opencontainers-image-spec-1.0.1) - ("go-github-com-opencontainers-go-digest-1.0.0" - ,go-github-com-opencontainers-go-digest-1.0.0) - ("go-github-com-miekg-pkcs11-1.0.3" ,go-github-com-miekg-pkcs11-1.0.3) - ("go-github-com-google-go-cmp-0.5.2" - ,go-github-com-google-go-cmp-0.5.2) - ("go-github-com-golang-protobuf-1.4.3" - ,go-github-com-golang-protobuf-1.4.3))) - (home-page "https://github.com/containers/ocicrypt") - (synopsis "OCIcrypt Library") - (description - "The @code{ocicrypt} library is the OCI image spec implementation of container image encryption. More details of the spec can be seen in the @url{https://github.com/opencontainers/image-spec/pull/775,OCI repository}. The purpose of this library is to encode spec structures and consts in code, as well as provide a consistent implementation of image encryption across container runtimes and build tools.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-imgcrypt-1.0.4-0.20210301171431-0ae5c75f59ba - (package - (name "go-github-com-containerd-imgcrypt") - (version "1.0.4-0.20210301171431-0ae5c75f59ba") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/imgcrypt") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0vkwgcxh3mpsn6wp231c9ad3sx6gmnc9948nn3vvbw8bsmjd4i77")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/imgcrypt")) - (propagated-inputs - `(("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) - ("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) - ("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) - ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" - ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) - ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) - ("go-github-com-sirupsen-logrus-1.7.0" - ,go-github-com-sirupsen-logrus-1.7.0) - ("go-github-com-prometheus-procfs-0.6.0" - ,go-github-com-prometheus-procfs-0.6.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" - ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) - ("go-github-com-opencontainers-image-spec-1.0.1" - ,go-github-com-opencontainers-image-spec-1.0.1) - ("go-github-com-opencontainers-go-digest-1.0.0" - ,go-github-com-opencontainers-go-digest-1.0.0) - ("go-github-com-imdario-mergo-0.3.11" - ,go-github-com-imdario-mergo-0.3.11) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2) - ("go-github-com-containers-ocicrypt-1.1.0" - ,go-github-com-containers-ocicrypt-1.1.0) - ("go-github-com-containerd-typeurl-1.0.1" - ,go-github-com-containerd-typeurl-1.0.1) - ("go-github-com-containerd-containerd-1.5.0-beta.1" - ,go-github-com-containerd-containerd-1.5.0-beta.1) - ("go-github-com-containerd-console-1.0.1" - ,go-github-com-containerd-console-1.0.1) - ("go-github-com-microsoft-hcsshim-test-0.0.0-20210227013316-43a75bb4edd3" - ,go-github-com-microsoft-hcsshim-test-0.0.0-20210227013316-43a75bb4edd3) - ("go-github-com-microsoft-hcsshim-0.8.14" - ,go-github-com-microsoft-hcsshim-0.8.14) - ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" - ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3))) - (home-page "https://github.com/containerd/imgcrypt") - (synopsis "imgcrypt image encryption library and command line tool") - (description - "Project @code{imgcrypt} is a non-core subproject of containerd.") - (license license:asl2.0))) - -(define-public go-github-com-microsoft-go-winio-0.4.15-0.20190919025122-fc70bd9a86b5 - (package - (name "go-github-com-microsoft-go-winio") - (version "0.4.15-0.20190919025122-fc70bd9a86b5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/microsoft/go-winio") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "015ra2h3qfaq436d0g7akahgz7bikyvljq48m0l2d2f4k3wki86p")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/Microsoft/go-winio")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3" - ,go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3) - ("go-github-com-sirupsen-logrus-1.4.1" - ,go-github-com-sirupsen-logrus-1.4.1) - ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) - (home-page "https://github.com/Microsoft/go-winio") - (synopsis "go-winio") - (description - "This repository contains utilities for efficiently performing Win32 IO operations in -Go. Currently, this is focused on accessing named pipes and other file handles, and -for using named pipes as a net transport.") - (license license:expat))) - -(define-public go-github-com-godbus-dbus-0.0.0-20190422162347-ade71ed3457e - (package - (name "go-github-com-godbus-dbus") - (version "0.0.0-20190422162347-ade71ed3457e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/godbus/dbus") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12ga9izv32j1zjij1p9f2sdnxjy3v80lw964518dvzirxpvwfszn")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/godbus/dbus")) - (home-page "https://github.com/godbus/dbus") - (synopsis "dbus") - (description - "Package dbus implements bindings to the D-Bus message bus system. -") - (license license:bsd-2))) - -(define-public go-golang-org-x-sys-0.0.0-20190514135907-3a4b5fb9f71f - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190514135907-3a4b5fb9f71f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "122ry2lw2525mqlnw2zc006y1flvj3yhj8rnpxqdwxp71jc3kqii")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-containerd-cgroups-0.0.0-20190919134610-bf292b21730f - (package - (name "go-github-com-containerd-cgroups") - (version "0.0.0-20190919134610-bf292b21730f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/cgroups") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1vvk1vrwm9spilyl4r1r8626sg0zvnx3s3zmzigzinpkzzvbdqpw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/cgroups")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190514135907-3a4b5fb9f71f" - ,go-golang-org-x-sys-0.0.0-20190514135907-3a4b5fb9f71f) - ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) - ("go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700" - ,go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700) - ("go-github-com-gogo-protobuf-1.2.1" - ,go-github-com-gogo-protobuf-1.2.1) - ("go-github-com-godbus-dbus-0.0.0-20190422162347-ade71ed3457e" - ,go-github-com-godbus-dbus-0.0.0-20190422162347-ade71ed3457e) - ("go-github-com-docker-go-units-0.4.0" - ,go-github-com-docker-go-units-0.4.0) - ("go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e" - ,go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e))) - (home-page "https://github.com/containerd/cgroups") - (synopsis "cgroups") - (description - "Go package for creating, managing, inspecting, and destroying cgroups. -The resources format for settings on the cgroup uses the OCI runtime-spec found -@url{https://github.com/opencontainers/runtime-spec,here}.") - (license license:asl2.0))) - -(define-public go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700 - (package - (name "go-github-com-opencontainers-runtime-spec") - (version "0.1.2-0.20190507144316-5b71a03e2700") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/runtime-spec") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1dx0bp4f885vx6l4b5b7h19j6sm0jn9s2qxarfd917f4wp8l0cpl")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) - (home-page "https://github.com/opencontainers/runtime-spec") - (synopsis "Open Container Initiative Runtime Specification") - (description - "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") - (license license:asl2.0))) - -(define-public go-github-com-urfave-cli-0.0.0-20171014202726-7bc6a0acffa5 - (package - (name "go-github-com-urfave-cli") - (version "0.0.0-20171014202726-7bc6a0acffa5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/urfave/cli") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "13li8phkaznh81qxs9vg0r8294ph014rwca4cqf7gxhvyjlaigwp")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/urfave/cli")) - (home-page "https://github.com/urfave/cli") - (synopsis "cli") - (description - "Package cli provides a minimal framework for creating and organizing command line -Go applications. cli is designed to be easy to understand and write, the most simple -cli application can be written as follows: -") - (license license:expat))) - -(define-public go-github-com-microsoft-hcsshim-0.8.9 - (package - (name "go-github-com-microsoft-hcsshim") - (version "0.8.9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/microsoft/hcsshim") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1imyqhh51311fdmp81ffasf7z52rbqhblbhx6477d9w20p74866b")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/Microsoft/hcsshim")) - (propagated-inputs - `(("go-gotest-tools-2.2.0+incompatible" - ,go-gotest-tools-2.2.0+incompatible) - ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) - ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" - ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) - ("go-google-golang-org-grpc-1.23.1" ,go-google-golang-org-grpc-1.23.1) - ("go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873" - ,go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873) - ("go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3" - ,go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3) - ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" - ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) - ("go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9" - ,go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9) - ("go-go-opencensus-io-0.22.0" ,go-go-opencensus-io-0.22.0) - ("go-github-com-urfave-cli-0.0.0-20171014202726-7bc6a0acffa5" - ,go-github-com-urfave-cli-0.0.0-20171014202726-7bc6a0acffa5) - ("go-github-com-stretchr-testify-1.4.0" - ,go-github-com-stretchr-testify-1.4.0) - ("go-github-com-sirupsen-logrus-1.4.2" - ,go-github-com-sirupsen-logrus-1.4.2) - ("go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7" - ,go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7) - ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) - ("go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700" - ,go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700) - ("go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f" - ,go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f) - ("go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2" - ,go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2) - ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2) - ("go-github-com-gogo-protobuf-1.3.1" - ,go-github-com-gogo-protobuf-1.3.1) - ("go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd" - ,go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd) - ("go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de" - ,go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de) - ("go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3" - ,go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3) - ("go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448" - ,go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448) - ("go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc" - ,go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc) - ("go-github-com-containerd-containerd-1.3.2" - ,go-github-com-containerd-containerd-1.3.2) - ("go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1" - ,go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1) - ("go-github-com-containerd-cgroups-0.0.0-20190919134610-bf292b21730f" - ,go-github-com-containerd-cgroups-0.0.0-20190919134610-bf292b21730f) - ("go-github-com-microsoft-go-winio-0.4.15-0.20190919025122-fc70bd9a86b5" - ,go-github-com-microsoft-go-winio-0.4.15-0.20190919025122-fc70bd9a86b5))) - (home-page "https://github.com/Microsoft/hcsshim") - (synopsis "hcsshim") - (description - "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") - (license license:expat))) - -(define-public go-github-com-cilium-ebpf-0.0.0-20200702112145-1c8d4c9ef775 - (package - (name "go-github-com-cilium-ebpf") - (version "0.0.0-20200702112145-1c8d4c9ef775") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cilium/ebpf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1la90b88a1li5hmlqxfx9lgxlyzqb2pd4c2dxmz4s5gg2gz8a5x5")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/cilium/ebpf")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9" - ,go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9))) - (home-page "https://github.com/cilium/ebpf") - (synopsis "eBPF") - (description "Package ebpf is a toolkit for working with eBPF programs. -") - (license license:expat))) - -(define-public go-github-com-containerd-cgroups-0.0.0-20200710171044-318312a37340 - (package - (name "go-github-com-containerd-cgroups") - (version "0.0.0-20200710171044-318312a37340") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/cgroups") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1kizbm55pmlnly2dggymp84a0d9pn4fh7jf31h6wqm385zrs14zp")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/cgroups")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9" - ,go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9) - ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) - ("go-github-com-stretchr-testify-1.2.2" - ,go-github-com-stretchr-testify-1.2.2) - ("go-github-com-sirupsen-logrus-1.6.0" - ,go-github-com-sirupsen-logrus-1.6.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-runtime-spec-1.0.2" - ,go-github-com-opencontainers-runtime-spec-1.0.2) - ("go-github-com-gogo-protobuf-1.3.1" - ,go-github-com-gogo-protobuf-1.3.1) - ("go-github-com-godbus-dbus-v5-5.0.3" - ,go-github-com-godbus-dbus-v5-5.0.3) - ("go-github-com-docker-go-units-0.4.0" - ,go-github-com-docker-go-units-0.4.0) - ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" - ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) - ("go-github-com-coreos-go-systemd-v22-22.0.0" - ,go-github-com-coreos-go-systemd-v22-22.0.0) - ("go-github-com-cilium-ebpf-0.0.0-20200702112145-1c8d4c9ef775" - ,go-github-com-cilium-ebpf-0.0.0-20200702112145-1c8d4c9ef775))) - (home-page "https://github.com/containerd/cgroups") - (synopsis "cgroups") - (description - "Go package for creating, managing, inspecting, and destroying cgroups. -The resources format for settings on the cgroup uses the OCI runtime-spec found -@url{https://github.com/opencontainers/runtime-spec,here}.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-containerd-1.4.0-beta.2.0.20200729163537-40b22ef07410 - (package - (name "go-github-com-containerd-containerd") - (version "1.4.0-beta.2.0.20200729163537-40b22ef07410") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/containerd") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ky7ny5b0rvkr6a58pdlcm35kc9wls6jvl7cdk8py4a16y1f2lx9")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/containerd")) - (home-page "https://github.com/containerd/containerd") - (synopsis "Now Recruiting") - (description - "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") - (license license:asl2.0))) - -(define-public go-github-com-onsi-ginkgo-1.10.1 - (package - (name "go-github-com-onsi-ginkgo") - (version "1.10.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/onsi/ginkgo") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "033a42h1wzmji57p86igg9whvsbp6nvfdsypskw738ys903n3z4d")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/onsi/ginkgo")) - (home-page "https://github.com/onsi/ginkgo") - (synopsis "Ginkgo 2.0 Release Candidate is available!") - (description "Ginkgo is a BDD-style testing framework for Golang -") - (license license:expat))) - -(define-public go-github-com-opencontainers-go-digest-1.0.0-rc1 - (package - (name "go-github-com-opencontainers-go-digest") - (version "1.0.0-rc1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/go-digest") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "01gc7fpn8ax429024p2fcx3yb18axwz5bjf2hqxlii1jbsgw4bh9")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/go-digest")) - (home-page "https://github.com/opencontainers/go-digest") - (synopsis "go-digest") - (description - "Package digest provides a generalized type to opaquely represent message -digests and their operations within the registry. The Digest type is -designed to serve as a flexible identifier in a content-addressable system. -More importantly, it provides tools and wrappers to work with -hash.Hash-based digests with little effort. -") - (license (list license:asl2.0 license:cc-by-sa4.0)))) - -(define-public go-github-com-pkg-errors-0.8.1-0.20171018195549-f15c970de5b7 - (package - (name "go-github-com-pkg-errors") - (version "0.8.1-0.20171018195549-f15c970de5b7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pkg/errors") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18jihrffhfsjvz3rkanlhq9xjcdxkqilmflnijc64s7y7lijlbfm")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pkg/errors")) - (home-page "https://github.com/pkg/errors") - (synopsis "errors") - (description "Package errors provides simple error handling primitives. -") - (license license:bsd-2))) - -(define-public go-github-com-sirupsen-logrus-1.0.4-0.20170822132746-89742aefa4b2 - (package - (name "go-github-com-sirupsen-logrus") - (version "1.0.4-0.20170822132746-89742aefa4b2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sirupsen/logrus") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hk7fabx59msg2y0iik6xvfp80s73ybrwlcshbm9ds91iqbkcxi6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/sirupsen/logrus")) - (home-page "https://github.com/sirupsen/logrus") - (synopsis "Logrus") - (description - "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. -") - (license license:expat))) - -(define-public go-golang-org-x-crypto-0.0.0-20171113213409-9f005a07e0d3 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20171113213409-9f005a07e0d3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1mhmr6ljzl3iafsz4qy8vval7rmr828wh59dlqqqjqx6sqmcs1dv")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-github-com-containerd-continuity-0.0.0-20200710164510-efbc4488d8fe - (package - (name "go-github-com-containerd-continuity") - (version "0.0.0-20200710164510-efbc4488d8fe") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/continuity") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0d638nj7z7y8z19zdwbysamqh5m3kiwvnqny7av6bxax9gg6c3h8")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/continuity")) - (propagated-inputs - `(("go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2" - ,go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2) - ("go-gopkg-in-airbrake-gobrake-v2-2.0.9" - ,go-gopkg-in-airbrake-gobrake-v2-2.0.9) - ("go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e" - ,go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e) - ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" - ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) - ("go-golang-org-x-crypto-0.0.0-20171113213409-9f005a07e0d3" - ,go-golang-org-x-crypto-0.0.0-20171113213409-9f005a07e0d3) - ("go-github-com-stretchr-testify-1.4.0" - ,go-github-com-stretchr-testify-1.4.0) - ("go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95" - ,go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95) - ("go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee" - ,go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee) - ("go-github-com-sirupsen-logrus-1.0.4-0.20170822132746-89742aefa4b2" - ,go-github-com-sirupsen-logrus-1.0.4-0.20170822132746-89742aefa4b2) - ("go-github-com-pkg-errors-0.8.1-0.20171018195549-f15c970de5b7" - ,go-github-com-pkg-errors-0.8.1-0.20171018195549-f15c970de5b7) - ("go-github-com-opencontainers-go-digest-1.0.0-rc1" - ,go-github-com-opencontainers-go-digest-1.0.0-rc1) - ("go-github-com-onsi-gomega-1.7.0" ,go-github-com-onsi-gomega-1.7.0) - ("go-github-com-onsi-ginkgo-1.10.1" ,go-github-com-onsi-ginkgo-1.10.1) - ("go-github-com-inconshreveable-mousetrap-1.0.0" - ,go-github-com-inconshreveable-mousetrap-1.0.0) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0) - ("go-github-com-dustin-go-humanize-0.0.0-20171111073723-bb3d318650d4" - ,go-github-com-dustin-go-humanize-0.0.0-20171111073723-bb3d318650d4) - ("go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898" - ,go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898))) - (home-page "https://github.com/containerd/continuity") - (synopsis "continuity") - (description - "This package provides a transport-agnostic, filesystem metadata manifest system") - (license license:asl2.0))) - -(define-public go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20191210023423-ac6580df4449") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "14gvx65w5lddi20s4wypbbvbg9ni3m8777jhp9nqxhixc61k3dyi")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-containerd-fifo-0.0.0-20200410184934-f15a3290365b - (package - (name "go-github-com-containerd-fifo") - (version "0.0.0-20200410184934-f15a3290365b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/fifo") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1i3pylxr2a4b9gaifjrhfa21n147vvq2z9iqwzz9id532xv9mr48")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/fifo")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449" - ,go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449) - ("go-github-com-stretchr-testify-1.4.0" - ,go-github-com-stretchr-testify-1.4.0) - ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) - (home-page "https://github.com/containerd/fifo") - (synopsis "fifo") - (description "Go package for handling fifos in a sane way.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-ttrpc-1.0.1 - (package - (name "go-github-com-containerd-ttrpc") - (version "1.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/ttrpc") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "02ilz14f1k9zip7caqfjwvfg2nwa7bs6880pi6fxbri1wy6ar45q")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/ttrpc")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.26.0" ,go-google-golang-org-grpc-1.26.0) - ("go-google-golang-org-genproto-0.0.0-20200117163144-32f20d992d24" - ,go-google-golang-org-genproto-0.0.0-20200117163144-32f20d992d24) - ("go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479" - ,go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479) - ("go-github-com-sirupsen-logrus-1.4.2" - ,go-github-com-sirupsen-logrus-1.4.2) - ("go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1" - ,go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.2" - ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.2) - ("go-github-com-gogo-protobuf-1.3.1" - ,go-github-com-gogo-protobuf-1.3.1))) - (home-page "https://github.com/containerd/ttrpc") - (synopsis "ttrpc") - (description "GRPC for low-memory environments.") - (license license:asl2.0))) - -(define-public go-github-com-gogo-googleapis-1.4.0 - (package - (name "go-github-com-gogo-googleapis") - (version "1.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gogo/googleapis") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1kka9qmra1klfkjza0s5papqvsi65f2d349dl8k1lvfq487iv9r4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/gogo/googleapis")) - (propagated-inputs - `(("go-github-com-gogo-protobuf-1.3.1" - ,go-github-com-gogo-protobuf-1.3.1))) - (home-page "https://github.com/gogo/googleapis") - (synopsis "Google APIs generated by gogoprotobuf") - (description - "The @url{https://github.com/gogo/grpc-example,grpc-example} includes an example usage of this repository.") - (license license:asl2.0))) - -(define-public go-github-com-google-go-cmp-0.5.1 - (package - (name "go-github-com-google-go-cmp") - (version "0.5.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1wjdid59brciv09agxgmqac5k9ywg63nhzb0yi9anmqpl38gps0p")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") - (license license:bsd-3))) - -(define-public go-github-com-imdario-mergo-0.3.10 - (package - (name "go-github-com-imdario-mergo") - (version "0.3.10") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/imdario/mergo") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "09h765p8yby9r8s0a3hv5kl8n2i382mda76wmvk48w1cc1w9s92p")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/imdario/mergo")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.3.0" ,go-gopkg-in-yaml-v2-2.3.0))) - (home-page "https://github.com/imdario/mergo") - (synopsis "Mergo") - (description - "This package provides a helper to merge structs and maps in Golang. Useful for configuration default values, avoiding messy if-statements. -") - (license license:bsd-3))) - -(define-public go-github-com-opencontainers-runc-0.1.1 - (package - (name "go-github-com-opencontainers-runc") - (version "0.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/runc") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "09fm7f1k4lvx8v3crqb0cli1x2brlz8ka7f7qa8d2sb6ln58h7w7")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/runc")) - (home-page "https://github.com/opencontainers/runc") - (synopsis "runc") - (description - "@code{runc} is a CLI tool for spawning and running containers according to the OCI specification.") - (license license:asl2.0))) - -(define-public go-github-com-willf-bitset-1.1.11-0.20200630133818-d5bec3311243 - (package - (name "go-github-com-willf-bitset") - (version "1.1.11-0.20200630133818-d5bec3311243") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/bits-and-blooms/bitset") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "05nyd0vhp2h9hbqlv2s9l2py6mr8hpz2zyfj09an1q7wd8vph4ja")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/willf/bitset")) - (home-page "https://github.com/willf/bitset") - (synopsis "bitset") - (description - "Package bitset implements bitsets, a mapping -between non-negative integers and boolean values. It should be more -efficient than map[uint] bool. -") - (license license:bsd-3))) - -(define-public go-github-com-opencontainers-selinux-1.6.0 - (package - (name "go-github-com-opencontainers-selinux") - (version "1.6.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/selinux") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ja41zfgrkhk5khixjnxpi1b85xfcxlkhq2q9b7ma6xjfdhg8bq2")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/selinux")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777" - ,go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777) - ("go-github-com-willf-bitset-1.1.11-0.20200630133818-d5bec3311243" - ,go-github-com-willf-bitset-1.1.11-0.20200630133818-d5bec3311243) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) - (home-page "https://github.com/opencontainers/selinux") - (synopsis "selinux") - (description "Common SELinux package used across the container ecosystem.") - (license license:asl2.0))) - -(define-public go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2 - (package - (name "go-github-com-syndtr-gocapability") - (version "0.0.0-20180916011248-d98352740cb2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/syndtr/gocapability") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "065y16562ynixxzj7iys4f4spb7knilbj3h833qlhds381j8hn93")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/syndtr/gocapability")) - (home-page "https://github.com/syndtr/gocapability") - (synopsis #f) - (description #f) - (license license:bsd-2))) - -(define-public go-golang-org-x-net-0.0.0-20200707034311-ab3426394381 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20200707034311-ab3426394381") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1wr7rnnqp210yykkypinb8ciszx28aq5a3l3dvsv6swzxxngs8zn")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" - ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) - ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" - ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208 - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20200625203802-6e8e738ad208") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1avk27pszd5l5df6ff7j78wgla46ir1hhy2jwfl9a3c0ys602yx9")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the -ones provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-google-golang-org-grpc-1.30.0 - (package - (name "go-google-golang-org-grpc") - (version "1.30.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "05pb9xrxd7kpbi8zzby90f87b6sxq65nmpgqx5h3255whmmpzbi9")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" - ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.3.3" - ,go-github-com-golang-protobuf-1.3.3) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-envoyproxy-go-control-plane-0.9.4" - ,go-github-com-envoyproxy-go-control-plane-0.9.4) - ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" - ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-github-com-containerd-nri-0.0.0-20201007170849-eb1350a75164 - (package - (name "go-github-com-containerd-nri") - (version "0.0.0-20201007170849-eb1350a75164") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/nri") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1yhrxl36fswgxv7ny3p9xi99jsbwyk920gmzkjyfyk6nqs0hqbkg")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/nri")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.30.0" ,go-google-golang-org-grpc-1.30.0) - ("go-golang-org-x-sys-0.0.0-20200728102440-3e129f6d46b1" - ,go-golang-org-x-sys-0.0.0-20200728102440-3e129f6d46b1) - ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" - ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) - ("go-golang-org-x-net-0.0.0-20200707034311-ab3426394381" - ,go-golang-org-x-net-0.0.0-20200707034311-ab3426394381) - ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) - ("go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2" - ,go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-selinux-1.6.0" - ,go-github-com-opencontainers-selinux-1.6.0) - ("go-github-com-opencontainers-runc-0.1.1" - ,go-github-com-opencontainers-runc-0.1.1) - ("go-github-com-opencontainers-image-spec-1.0.1" - ,go-github-com-opencontainers-image-spec-1.0.1) - ("go-github-com-opencontainers-go-digest-1.0.0" - ,go-github-com-opencontainers-go-digest-1.0.0) - ("go-github-com-imdario-mergo-0.3.10" - ,go-github-com-imdario-mergo-0.3.10) - ("go-github-com-google-uuid-1.1.1" ,go-github-com-google-uuid-1.1.1) - ("go-github-com-google-go-cmp-0.5.1" - ,go-github-com-google-go-cmp-0.5.1) - ("go-github-com-gogo-googleapis-1.4.0" - ,go-github-com-gogo-googleapis-1.4.0) - ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" - ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) - ("go-github-com-docker-distribution-2.7.1+incompatible" - ,go-github-com-docker-distribution-2.7.1+incompatible) - ("go-github-com-containerd-typeurl-1.0.1" - ,go-github-com-containerd-typeurl-1.0.1) - ("go-github-com-containerd-ttrpc-1.0.1" - ,go-github-com-containerd-ttrpc-1.0.1) - ("go-github-com-containerd-fifo-0.0.0-20200410184934-f15a3290365b" - ,go-github-com-containerd-fifo-0.0.0-20200410184934-f15a3290365b) - ("go-github-com-containerd-continuity-0.0.0-20200710164510-efbc4488d8fe" - ,go-github-com-containerd-continuity-0.0.0-20200710164510-efbc4488d8fe) - ("go-github-com-containerd-containerd-1.4.0-beta.2.0.20200729163537-40b22ef07410" - ,go-github-com-containerd-containerd-1.4.0-beta.2.0.20200729163537-40b22ef07410) - ("go-github-com-containerd-cgroups-0.0.0-20200710171044-318312a37340" - ,go-github-com-containerd-cgroups-0.0.0-20200710171044-318312a37340) - ("go-github-com-microsoft-hcsshim-0.8.9" - ,go-github-com-microsoft-hcsshim-0.8.9))) - (home-page "https://github.com/containerd/nri") - (synopsis "nri - Node Resource Interface") - (description - "This project is a WIP for a new, CNI like, interface for managing resources on a node for Pods and Containers.") - (license license:asl2.0))) - -(define-public go-github-com-sirupsen-logrus-1.4.1 - (package - (name "go-github-com-sirupsen-logrus") - (version "1.4.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sirupsen/logrus") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1m7ny9jkb98cxqhsp13xa5hnqh1s9f25x04q6arsala4zswsw33c")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/sirupsen/logrus")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33" - ,go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33) - ("go-github-com-stretchr-testify-1.2.2" - ,go-github-com-stretchr-testify-1.2.2) - ("go-github-com-stretchr-objx-0.1.1" - ,go-github-com-stretchr-objx-0.1.1) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.1" - ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.1) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/sirupsen/logrus") - (synopsis "Logrus") - (description - "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. -") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190916202348-b4ddaad3f8a3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "05pa68kqxhpjk71b4cbm8vyzh6527b3ig6war2jr1g4aj3b7f1ak")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-microsoft-go-winio-0.4.16-0.20201130162521-d1ffc52c7331 - (package - (name "go-github-com-microsoft-go-winio") - (version "0.4.16-0.20201130162521-d1ffc52c7331") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/microsoft/go-winio") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0snwbwdjs34x0my9ri77cvrbnahdiyjh2jlkzf12fy48p7fyk7pq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/Microsoft/go-winio")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3" - ,go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3) - ("go-github-com-sirupsen-logrus-1.4.1" - ,go-github-com-sirupsen-logrus-1.4.1) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) - (home-page "https://github.com/Microsoft/go-winio") - (synopsis "go-winio") - (description - "This repository contains utilities for efficiently performing Win32 IO operations in -Go. Currently, this is focused on accessing named pipes and other file handles, and -for using named pipes as a net transport.") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20191022100944-742c48ecaeb7 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20191022100944-742c48ecaeb7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1saf59bplvvb753my15ijxcy4a1jwfg53cmkgb6wkln2x4fgnhkp")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-cilium-ebpf-0.0.0-20200110133405-4032b1d8aae3 - (package - (name "go-github-com-cilium-ebpf") - (version "0.0.0-20200110133405-4032b1d8aae3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cilium/ebpf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "107x63zl8dlw2izn5xw8pnflgq19srpa46bgvjs8q4d61i02q1fr")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/cilium/ebpf")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191022100944-742c48ecaeb7" - ,go-golang-org-x-sys-0.0.0-20191022100944-742c48ecaeb7) - ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) - (home-page "https://github.com/cilium/ebpf") - (synopsis "eBPF") - (description "Package ebpf is a toolkit for working with eBPF programs. -") - (license license:expat))) - -(define-public go-github-com-coreos-go-systemd-v22-22.0.0 - (package - (name "go-github-com-coreos-go-systemd-v22") - (version "22.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/coreos/go-systemd") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0p4sb2fxxm2j1xny2l4fkq4kwj74plvh600gih8nyniqzannhrdx")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/coreos/go-systemd/v22")) - (propagated-inputs - `(("go-github-com-godbus-dbus-v5-5.0.3" - ,go-github-com-godbus-dbus-v5-5.0.3))) - (home-page "https://github.com/coreos/go-systemd") - (synopsis "go-systemd") - (description "Go bindings to systemd. The project has several packages:") - (license license:asl2.0))) - -(define-public go-github-com-containerd-cgroups-0.0.0-20200531161412-0dbf7f05ba59 - (package - (name "go-github-com-containerd-cgroups") - (version "0.0.0-20200531161412-0dbf7f05ba59") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/cgroups") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "10abzkjf77s8pv4mpyvy2jbl8wckhk3j7ykgs01sclal21v8p251")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/cgroups")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479" - ,go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479) - ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) - ("go-github-com-stretchr-testify-1.2.2" - ,go-github-com-stretchr-testify-1.2.2) - ("go-github-com-sirupsen-logrus-1.4.2" - ,go-github-com-sirupsen-logrus-1.4.2) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-runtime-spec-1.0.2" - ,go-github-com-opencontainers-runtime-spec-1.0.2) - ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.2" - ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.2) - ("go-github-com-gogo-protobuf-1.3.1" - ,go-github-com-gogo-protobuf-1.3.1) - ("go-github-com-godbus-dbus-v5-5.0.3" - ,go-github-com-godbus-dbus-v5-5.0.3) - ("go-github-com-docker-go-units-0.4.0" - ,go-github-com-docker-go-units-0.4.0) - ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" - ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) - ("go-github-com-coreos-go-systemd-v22-22.0.0" - ,go-github-com-coreos-go-systemd-v22-22.0.0) - ("go-github-com-cilium-ebpf-0.0.0-20200110133405-4032b1d8aae3" - ,go-github-com-cilium-ebpf-0.0.0-20200110133405-4032b1d8aae3))) - (home-page "https://github.com/containerd/cgroups") - (synopsis "cgroups") - (description - "Go package for creating, managing, inspecting, and destroying cgroups. -The resources format for settings on the cgroup uses the OCI runtime-spec found -@url{https://github.com/opencontainers/runtime-spec,here}.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1 - (package - (name "go-github-com-containerd-console") - (version "0.0.0-20180822173158-c12b1e7919c1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/console") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ylrnmdhn9a2f8w8fsdgsvwnz5j0whhyhppjnhqc4lh8h9p9dpi9")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/console")) - (home-page "https://github.com/containerd/console") - (synopsis "console") - (description - "Golang package for dealing with consoles. Light on deps and a simple API.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-containerd-1.3.2 - (package - (name "go-github-com-containerd-containerd") - (version "1.3.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/containerd") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0qz6ss7a6f2r7gl7aar39pr5ry9l7nh7dn3kclr18nwdv01gmrvc")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/containerd")) - (home-page "https://github.com/containerd/containerd") - (synopsis "Now Recruiting") - (description - "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc - (package - (name "go-github-com-containerd-continuity") - (version "0.0.0-20190426062206-aaeac12a7ffc") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/continuity") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "05caqvxxb831xfvqnga692k98cy8xzkllqg1ibra0fb0ljnhbmca")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/continuity")) - (home-page "https://github.com/containerd/continuity") - (synopsis "continuity") - (description - "This package provides a transport-agnostic, filesystem metadata manifest system") - (license license:asl2.0))) - -(define-public go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448 - (package - (name "go-github-com-containerd-fifo") - (version "0.0.0-20190226154929-a9fb20d87448") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/fifo") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0c0sgfnafjnws4jgziczs6wxh0adjdrp6yyd88b7xy0hv13fsnqa")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/fifo")) - (home-page "https://github.com/containerd/fifo") - (synopsis "fifo") - (description "Go package for handling fifos in a sane way.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3 - (package - (name "go-github-com-containerd-go-runc") - (version "0.0.0-20180907222934-5a6d9f37cfa3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/go-runc") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "07qpxcjy64m238igpmj8g9z7qhf06k5xy1jcgpgvf5n912g4k3vd")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/go-runc")) - (home-page "https://github.com/containerd/go-runc") - (synopsis "go-runc") - (description - "This is a package for consuming the @url{https://github.com/opencontainers/runc,runc} binary in your Go applications. -It tries to expose all the settings and features of the runc CLI. If there is something missing then add it, its opensource!") - (license license:asl2.0))) - -(define-public go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de - (package - (name "go-github-com-containerd-ttrpc") - (version "0.0.0-20190828154514-0e0f228740de") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/ttrpc") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1kzclhmicw2xkiqsg6npx0xzs5jx36mqmyd0gj5dzv88i7p4b8dx")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/ttrpc")) - (home-page "https://github.com/containerd/ttrpc") - (synopsis "ttrpc") - (description "GRPC for low-memory environments.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd - (package - (name "go-github-com-containerd-typeurl") - (version "0.0.0-20180627222232-a93fcdb778cd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/typeurl") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0aqnf5rzc5pldln0czhxlr0fqaf5553ab7wzsq85p90lg1ryqnd6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/typeurl")) - (home-page "https://github.com/containerd/typeurl") - (synopsis "typeurl") - (description - "This package provides a Go package for managing the registration, marshaling, and unmarshaling of encoded types.") - (license license:asl2.0))) - -(define-public go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2 - (package - (name "go-github-com-opencontainers-go-digest") - (version "0.0.0-20180430190053-c9281466c8b2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/go-digest") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1djdazssy27xn91pjhx3dgb0f11bnlzzbwkh7f8zwnpz011anasi")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/go-digest")) - (home-page "https://github.com/opencontainers/go-digest") - (synopsis "go-digest") - (description - "Package digest provides a generalized type to opaquely represent message -digests and their operations within the registry. The Digest type is -designed to serve as a flexible identifier in a content-addressable system. -More importantly, it provides tools and wrappers to work with -hash.Hash-based digests with little effort. -") - (license (list license:asl2.0 license:cc-by-sa4.0)))) - -(define-public go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f - (package - (name "go-github-com-opencontainers-runc") - (version "0.0.0-20190115041553-12f6a991201f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/runc") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0lr4q440pliilq2njyj5glfpma89r9l1cl687niwkp2pzb32dm45")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/runc")) - (home-page "https://github.com/opencontainers/runc") - (synopsis "runc") - (description - "@code{runc} is a CLI tool for spawning and running containers according to the OCI specification.") - (license license:asl2.0))) - -(define-public go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7 - (package - (name "go-github-com-prometheus-procfs") - (version "0.0.0-20180125133057-cb4147076ac7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/procfs") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0zhlrik0f9q1lj6cisgnxgbz4darbcix52hm5abi24l2ahchf5ca")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/procfs")) - (home-page "https://github.com/prometheus/procfs") - (synopsis "procfs") - (description - "Package procfs provides functions to retrieve system, kernel and process -metrics from the pseudo-filesystem proc. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-net-0.0.0-20190501004415-9ce7a6920f09 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190501004415-9ce7a6920f09") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1kbs85jsqbv4v89ii2zam4b8dhmllhsrf46njmi09x0w6s0b9cbk")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-go-opencensus-io-0.22.0 - (package - (name "go-go-opencensus-io") - (version "0.22.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/census-instrumentation/opencensus-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "05jr8gkr2w34i5wwki4zhl5ch0qrgi7cdgag5iy5gpxplhbrvbg9")))) - (build-system go-build-system) - (arguments '(#:import-path "go.opencensus.io")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.20.1" ,go-google-golang-org-grpc-1.20.1) - ("go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb" - ,go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb) - ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) - ("go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd" - ,go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd) - ("go-golang-org-x-net-0.0.0-20190501004415-9ce7a6920f09" - ,go-golang-org-x-net-0.0.0-20190501004415-9ce7a6920f09) - ("go-github-com-hashicorp-golang-lru-0.5.1" - ,go-github-com-hashicorp-golang-lru-0.5.1) - ("go-github-com-google-go-cmp-0.3.0" - ,go-github-com-google-go-cmp-0.3.0) - ("go-github-com-golang-protobuf-1.3.1" - ,go-github-com-golang-protobuf-1.3.1))) - (home-page "https://go.opencensus.io") - (synopsis "OpenCensus Libraries for Go") - (description "Package opencensus contains Go support for OpenCensus. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20191004110552-13f9640d40b9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ba2767lvklnmfvb9jkwvd4m7z6326gaiz3rgylh795g88hy34g1")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873 - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20190502173448-54afdca5d873") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1vm1vggl874jd4wi6qyl7aggc6s6kdsazk4vj0cs2dfcw2xnw8ag")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" - ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) - ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) - ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" - ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) - ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" - ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) - ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" - ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd) - ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" - ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) - ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" - ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-google-golang-org-grpc-1.23.1 - (package - (name "go-google-golang-org-grpc") - (version "1.23.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1d8gjjhrqbiq8pb56lb4x10hb752k7k06wspjvh7v0vpzmf25981")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" - ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) - ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" - ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) - ("go-google-golang-org-appengine-1.1.0" - ,go-google-golang-org-appengine-1.1.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-google-go-cmp-0.2.0" - ,go-github-com-google-go-cmp-0.2.0) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0) - ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-client9-misspell-0.3.4" - ,go-github-com-client9-misspell-0.3.4) - ("go-github-com-burntsushi-toml-0.3.1" - ,go-github-com-burntsushi-toml-0.3.1) - ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-github-com-microsoft-hcsshim-0.8.14 - (package - (name "go-github-com-microsoft-hcsshim") - (version "0.8.14") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/microsoft/hcsshim") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0k57knv8zrf32hp7rpv1km9j772w6752pfvdbpd3l711ism48c84")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/Microsoft/hcsshim")) - (propagated-inputs - `(("go-gotest-tools-2.2.0+incompatible" - ,go-gotest-tools-2.2.0+incompatible) - ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) - ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" - ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) - ("go-google-golang-org-grpc-1.23.1" ,go-google-golang-org-grpc-1.23.1) - ("go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873" - ,go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873) - ("go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3" - ,go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3) - ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" - ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) - ("go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9" - ,go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9) - ("go-go-opencensus-io-0.22.0" ,go-go-opencensus-io-0.22.0) - ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) - ("go-github-com-stretchr-testify-1.4.0" - ,go-github-com-stretchr-testify-1.4.0) - ("go-github-com-sirupsen-logrus-1.4.2" - ,go-github-com-sirupsen-logrus-1.4.2) - ("go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7" - ,go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-runtime-spec-1.0.2" - ,go-github-com-opencontainers-runtime-spec-1.0.2) - ("go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f" - ,go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f) - ("go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2" - ,go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2) - ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2) - ("go-github-com-gogo-protobuf-1.3.1" - ,go-github-com-gogo-protobuf-1.3.1) - ("go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd" - ,go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd) - ("go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de" - ,go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de) - ("go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3" - ,go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3) - ("go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448" - ,go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448) - ("go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc" - ,go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc) - ("go-github-com-containerd-containerd-1.3.2" - ,go-github-com-containerd-containerd-1.3.2) - ("go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1" - ,go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1) - ("go-github-com-containerd-cgroups-0.0.0-20200531161412-0dbf7f05ba59" - ,go-github-com-containerd-cgroups-0.0.0-20200531161412-0dbf7f05ba59) - ("go-github-com-microsoft-go-winio-0.4.16-0.20201130162521-d1ffc52c7331" - ,go-github-com-microsoft-go-winio-0.4.16-0.20201130162521-d1ffc52c7331))) - (home-page "https://github.com/Microsoft/hcsshim") - (synopsis "hcsshim") - (description - "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") - (license license:expat))) - -(define-public go-github-com-containerd-containerd-1.4.3 - (package - (name "go-github-com-containerd-containerd") - (version "1.4.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/containerd") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "09xvhjg5f8h90w1y94kqqnqzhbhd62dcdd9wb9sdqakisjk6zrl0")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/containerd")) - (home-page "https://github.com/containerd/containerd") - (synopsis "Now Recruiting") - (description - "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-typeurl-1.0.1 - (package - (name "go-github-com-containerd-typeurl") - (version "1.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/typeurl") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "09cgrchrw5d36zq0mc321l5qr2gfbdm1z1a3hhkhqr4qay6vglqn")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/typeurl")) - (propagated-inputs - `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-gogo-protobuf-1.3.1" - ,go-github-com-gogo-protobuf-1.3.1))) - (home-page "https://github.com/containerd/typeurl") - (synopsis "typeurl") - (description - "This package provides a Go package for managing the registration, marshaling, and unmarshaling of encoded types.") - (license license:asl2.0))) - -(define-public go-github-com-opencontainers-runc-1.0.0-rc9 - (package - (name "go-github-com-opencontainers-runc") - (version "1.0.0-rc9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/runc") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ss5b46cbbckyqlwgj8dbd5l59c5y0kp679hcpc0ybaj53pmwxj7")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/runc")) - (home-page "https://github.com/opencontainers/runc") - (synopsis "runc") - (description - "@code{runc} is a CLI tool for spawning and running containers according to the OCI specification.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-zfs-0.0.0-20210301145711-11e8f1707f62 - (package - (name "go-github-com-containerd-zfs") - (version "0.0.0-20210301145711-11e8f1707f62") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/zfs") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1919ax45a07v2y56xq5c0xihkn2c5zgyqv68rzx3x5cc20n2p8yg")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/zfs")) - (propagated-inputs - `(("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) - ("go-go-etcd-io-bbolt-1.3.3" ,go-go-etcd-io-bbolt-1.3.3) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-runc-1.0.0-rc9" - ,go-github-com-opencontainers-runc-1.0.0-rc9) - ("go-github-com-opencontainers-image-spec-1.0.1" - ,go-github-com-opencontainers-image-spec-1.0.1) - ("go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible" - ,go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible) - ("go-github-com-google-uuid-1.1.1" ,go-github-com-google-uuid-1.1.1) - ("go-github-com-gogo-protobuf-1.3.1" - ,go-github-com-gogo-protobuf-1.3.1) - ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" - ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) - ("go-github-com-containerd-typeurl-1.0.1" - ,go-github-com-containerd-typeurl-1.0.1) - ("go-github-com-containerd-ttrpc-1.0.2" - ,go-github-com-containerd-ttrpc-1.0.2) - ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" - ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) - ("go-github-com-containerd-containerd-1.4.3" - ,go-github-com-containerd-containerd-1.4.3) - ("go-github-com-microsoft-hcsshim-0.8.14" - ,go-github-com-microsoft-hcsshim-0.8.14))) - (home-page "https://github.com/containerd/zfs") - (synopsis "ZFS snapshotter plugin") - (description "ZFS snapshotter plugin for containerd.") - (license license:asl2.0))) - -(define-public go-github-com-containernetworking-cni-0.7.1 - (package - (name "go-github-com-containernetworking-cni") - (version "0.7.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containernetworking/cni") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "02qn1br8164d99978acalisy1sx294g1axnii4yh1wji0fc735xz")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containernetworking/cni")) - (home-page "https://github.com/containernetworking/cni") - (synopsis "CNI - the Container Network Interface") - (description - "CNI (), a @url{https://cncf.io,Cloud Native Computing Foundation} project, consists of a specification and libraries for writing plugins to configure network interfaces in Linux containers, along with a number of supported plugins. -CNI concerns itself only with network connectivity of containers and removing allocated resources when the container is deleted. -Because of this focus, CNI has a wide range of support and the specification is simple to implement.") - (license license:asl2.0))) - -(define-public go-github-com-coreos-go-iptables-0.4.5 - (package - (name "go-github-com-coreos-go-iptables") - (version "0.4.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/coreos/go-iptables") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "04iqh4hvvrrvjsfjyaa5bdyqklwzrzzy8yiyvja90hvv121f7975")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/coreos/go-iptables")) - (home-page "https://github.com/coreos/go-iptables") - (synopsis "go-iptables") - (description "Go bindings for iptables utility.") - (license license:asl2.0))) - -(define-public go-github-com-onsi-ginkgo-0.0.0-20151202141238-7f8ab55aaf3b - (package - (name "go-github-com-onsi-ginkgo") - (version "0.0.0-20151202141238-7f8ab55aaf3b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/onsi/ginkgo") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0nas6wqdym4jx42kw9wj80b58r69k9qhnvglz009lj34g5gba7rw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/onsi/ginkgo")) - (home-page "https://github.com/onsi/ginkgo") - (synopsis "Ginkgo 2.0 Release Candidate is available!") - (description "Ginkgo is a BDD-style testing framework for Golang -") - (license license:expat))) - -(define-public go-github-com-onsi-gomega-0.0.0-20151007035656-2152b45fa28a - (package - (name "go-github-com-onsi-gomega") - (version "0.0.0-20151007035656-2152b45fa28a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/onsi/gomega") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0amjlkawp84mmdqjgdamf93p1546cla6h4wwrx7hf5r862r2qcw2")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/onsi/gomega")) - (home-page "https://github.com/onsi/gomega") - (synopsis ": a BDD Testing Framework for Golang") - (description - "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library. -") - (license license:expat))) - -(define-public go-github-com-vishvananda-netlink-0.0.0-20181108222139-023a6dafdcdf - (package - (name "go-github-com-vishvananda-netlink") - (version "0.0.0-20181108222139-023a6dafdcdf") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/vishvananda/netlink") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1i5q8r8rg7lxzvq2vhbf25lrkzdlgficfv0bxg9rf7cgg6z819sn")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/vishvananda/netlink")) - (home-page "https://github.com/vishvananda/netlink") - (synopsis "netlink - netlink library for go") - (description - "Package netlink provides a simple library for netlink. Netlink is -the interface a user-space program in linux uses to communicate with -the kernel. It can be used to add and remove interfaces, set up ip -addresses and routes, and confiugre ipsec. Netlink communication -requires elevated privileges, so in most cases this code needs to -be run as root. The low level primitives for netlink are contained -in the nl subpackage. This package attempts to provide a high-level -interface that is loosly modeled on the iproute2 cli. -") - (license license:asl2.0))) - -(define-public go-github-com-vishvananda-netns-0.0.0-20180720170159-13995c7128cc - (package - (name "go-github-com-vishvananda-netns") - (version "0.0.0-20180720170159-13995c7128cc") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/vishvananda/netns") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1zk6w8158qi4niva5rijchbv9ixgmijsgqshh54wdaav4xrhjshn")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/vishvananda/netns")) - (home-page "https://github.com/vishvananda/netns") - (synopsis "netns - network namespaces in go") - (description - "Package netns allows ultra-simple network namespace handling. NsHandles -can be retrieved and set. Note that the current namespace is thread -local so actions that set and reset namespaces should use LockOSThread -to make sure the namespace doesn't change due to a goroutine switch. -It is best to close NsHandles when you are done with them. This can be -accomplished via a `defer ns.Close()` on the handle. Changing namespaces -requires elevated privileges, so in most cases this code needs to be run -as root. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-crypto-0.0.0-20181009213950-7c1a557ab941 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20181009213950-7c1a557ab941") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1f1q9mby8m7ws3gbj90v0prhnf4g2sgf74azmw31kzwd6azlar3m")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20181011144130-49bb7cea24b1 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20181011144130-49bb7cea24b1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "111q4qm3hcjvzvyv9y5rz8ydnyg48rckcygxqy6gv63q618wz6gn")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-github-com-containernetworking-plugins-0.8.6 - (package - (name "go-github-com-containernetworking-plugins") - (version "0.8.6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containernetworking/plugins") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0f1cqxjf26sy1c4aw6y7pyd9lrz0vknby4q5j6xj77a1pab9073m")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containernetworking/plugins")) - (propagated-inputs - `(("go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2" - ,go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2) - ("go-gopkg-in-airbrake-gobrake-v2-2.0.9" - ,go-gopkg-in-airbrake-gobrake-v2-2.0.9) - ("go-golang-org-x-sys-0.0.0-20190616124812-15dcb6c0061f" - ,go-golang-org-x-sys-0.0.0-20190616124812-15dcb6c0061f) - ("go-golang-org-x-net-0.0.0-20181011144130-49bb7cea24b1" - ,go-golang-org-x-net-0.0.0-20181011144130-49bb7cea24b1) - ("go-golang-org-x-crypto-0.0.0-20181009213950-7c1a557ab941" - ,go-golang-org-x-crypto-0.0.0-20181009213950-7c1a557ab941) - ("go-github-com-vishvananda-netns-0.0.0-20180720170159-13995c7128cc" - ,go-github-com-vishvananda-netns-0.0.0-20180720170159-13995c7128cc) - ("go-github-com-vishvananda-netlink-0.0.0-20181108222139-023a6dafdcdf" - ,go-github-com-vishvananda-netlink-0.0.0-20181108222139-023a6dafdcdf) - ("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0) - ("go-github-com-sirupsen-logrus-1.0.6" - ,go-github-com-sirupsen-logrus-1.0.6) - ("go-github-com-safchain-ethtool-0.0.0-20190326074333-42ed695e3de8" - ,go-github-com-safchain-ethtool-0.0.0-20190326074333-42ed695e3de8) - ("go-github-com-onsi-gomega-0.0.0-20151007035656-2152b45fa28a" - ,go-github-com-onsi-gomega-0.0.0-20151007035656-2152b45fa28a) - ("go-github-com-onsi-ginkgo-0.0.0-20151202141238-7f8ab55aaf3b" - ,go-github-com-onsi-ginkgo-0.0.0-20151202141238-7f8ab55aaf3b) - ("go-github-com-mattn-go-shellwords-1.0.3" - ,go-github-com-mattn-go-shellwords-1.0.3) - ("go-github-com-j-keck-arping-0.0.0-20160618110441-2cf9dc699c56" - ,go-github-com-j-keck-arping-0.0.0-20160618110441-2cf9dc699c56) - ("go-github-com-golang-protobuf-1.3.1" - ,go-github-com-golang-protobuf-1.3.1) - ("go-github-com-godbus-dbus-0.0.0-20180201030542-885f9cc04c9c" - ,go-github-com-godbus-dbus-0.0.0-20180201030542-885f9cc04c9c) - ("go-github-com-d2g-hardwareaddr-0.0.0-20190221164911-e7d9fbe030e4" - ,go-github-com-d2g-hardwareaddr-0.0.0-20190221164911-e7d9fbe030e4) - ("go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5" - ,go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5) - ("go-github-com-d2g-dhcp4client-1.0.0" - ,go-github-com-d2g-dhcp4client-1.0.0) - ("go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c" - ,go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c) - ("go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7" - ,go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7) - ("go-github-com-coreos-go-iptables-0.4.5" - ,go-github-com-coreos-go-iptables-0.4.5) - ("go-github-com-containernetworking-cni-0.7.1" - ,go-github-com-containernetworking-cni-0.7.1) - ("go-github-com-buger-jsonparser-0.0.0-20180808090653-f4dd9f5a6b44" - ,go-github-com-buger-jsonparser-0.0.0-20180808090653-f4dd9f5a6b44) - ("go-github-com-alexflint-go-filemutex-0.0.0-20171022225611-72bdc8eae2ae" - ,go-github-com-alexflint-go-filemutex-0.0.0-20171022225611-72bdc8eae2ae) - ("go-github-com-microsoft-hcsshim-0.8.6" - ,go-github-com-microsoft-hcsshim-0.8.6) - ("go-github-com-microsoft-go-winio-0.4.11" - ,go-github-com-microsoft-go-winio-0.4.11))) - (home-page "https://github.com/containernetworking/plugins") - (synopsis "Plugins") - (description - "Some CNI network plugins, maintained by the containernetworking team. For more information, see the @url{https://www.cni.dev,CNI website}.") - (license license:asl2.0))) - -(define-public go-github-com-imdario-mergo-0.3.11 - (package - (name "go-github-com-imdario-mergo") - (version "0.3.11") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/imdario/mergo") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "07iay9j3ry7qrflvn9bgyyggvwacl1s1in1cnbmsp1020ydkph8k")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/imdario/mergo")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.3.0" ,go-gopkg-in-yaml-v2-2.3.0))) - (home-page "https://github.com/imdario/mergo") - (synopsis "Mergo") - (description - "This package provides a helper to merge structs and maps in Golang. Useful for configuration default values, avoiding messy if-statements. -") - (license license:bsd-3))) - -(define-public go-github-com-klauspost-compress-1.11.3 - (package - (name "go-github-com-klauspost-compress") - (version "1.11.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/klauspost/compress") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "04wpilw6072fh2wd492ma1nw4br7bvz466mj0vi2m1g4w6d0z88z")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/klauspost/compress")) - (home-page "https://github.com/klauspost/compress") - (synopsis "compress") - (description "This package provides various compression algorithms.") - (license #f))) - -(define-public go-github-com-checkpoint-restore-go-criu-v4-4.1.0 - (package - (name "go-github-com-checkpoint-restore-go-criu-v4") - (version "4.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/checkpoint-restore/go-criu") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hfgjck015df5h44hczl3x4gg430saczgkl619cp0l6cpaxga5yi")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/checkpoint-restore/go-criu/v4")) - (propagated-inputs - `(("go-github-com-golang-protobuf-1.3.5" - ,go-github-com-golang-protobuf-1.3.5))) - (home-page "https://github.com/checkpoint-restore/go-criu") - (synopsis "go-criu -- Go bindings for") - (description - "This repository provides Go bindings for CRIU. The code is based on the Go based PHaul -implementation from the CRIU repository. For easier inclusion into other Go projects the -CRIU Go bindings have been moved to this repository.") - (license license:asl2.0))) - -(define-public go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200124204421-9fbb57f87de9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0qaz2jjkrxzgkapmjqingdwamrgq2aiblxvzzgrcsv2qhkj0wdps")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-cilium-ebpf-0.2.0 - (package - (name "go-github-com-cilium-ebpf") - (version "0.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cilium/ebpf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0f7my8n5v2c5cmgrcikgi0naamglr7c4khgxkbb1k5wl8mm9465a")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/cilium/ebpf")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9" - ,go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9) - ("go-github-com-google-go-cmp-0.5.2" - ,go-github-com-google-go-cmp-0.5.2))) - (home-page "https://github.com/cilium/ebpf") - (synopsis "eBPF") - (description "Package ebpf is a toolkit for working with eBPF programs. -") - (license license:expat))) - -(define-public go-github-com-opencontainers-runc-1.0.0-rc93 - (package - (name "go-github-com-opencontainers-runc") - (version "1.0.0-rc93") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/runc") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "008d5wkznic80n5q1vwx727qn5ifalc7cydq68hc1gk9wrhna4v4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/runc")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" - ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68) - ("go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b" - ,go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b) - ("go-github-com-willf-bitset-1.1.11" - ,go-github-com-willf-bitset-1.1.11) - ("go-github-com-vishvananda-netlink-1.1.0" - ,go-github-com-vishvananda-netlink-1.1.0) - ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) - ("go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635" - ,go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635) - ("go-github-com-sirupsen-logrus-1.7.0" - ,go-github-com-sirupsen-logrus-1.7.0) - ("go-github-com-seccomp-libseccomp-golang-0.9.1" - ,go-github-com-seccomp-libseccomp-golang-0.9.1) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-selinux-1.8.0" - ,go-github-com-opencontainers-selinux-1.8.0) - ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" - ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) - ("go-github-com-mrunalp-fileutils-0.5.0" - ,go-github-com-mrunalp-fileutils-0.5.0) - ("go-github-com-moby-sys-mountinfo-0.4.0" - ,go-github-com-moby-sys-mountinfo-0.4.0) - ("go-github-com-golang-protobuf-1.4.3" - ,go-github-com-golang-protobuf-1.4.3) - ("go-github-com-godbus-dbus-v5-5.0.3" - ,go-github-com-godbus-dbus-v5-5.0.3) - ("go-github-com-docker-go-units-0.4.0" - ,go-github-com-docker-go-units-0.4.0) - ("go-github-com-cyphar-filepath-securejoin-0.2.2" - ,go-github-com-cyphar-filepath-securejoin-0.2.2) - ("go-github-com-coreos-go-systemd-v22-22.1.0" - ,go-github-com-coreos-go-systemd-v22-22.1.0) - ("go-github-com-containerd-console-1.0.1" - ,go-github-com-containerd-console-1.0.1) - ("go-github-com-cilium-ebpf-0.2.0" ,go-github-com-cilium-ebpf-0.2.0) - ("go-github-com-checkpoint-restore-go-criu-v4-4.1.0" - ,go-github-com-checkpoint-restore-go-criu-v4-4.1.0))) - (home-page "https://github.com/opencontainers/runc") - (synopsis "runc") - (description - "@code{runc} is a CLI tool for spawning and running containers according to the OCI specification.") - (license license:asl2.0))) - -(define-public go-github-com-willf-bitset-1.1.11 - (package - (name "go-github-com-willf-bitset") - (version "1.1.11") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/bits-and-blooms/bitset") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1v7wnikdxiyhwdxnsj2wcrsrsi1kb2ssmarvbrda90vmxzafjl7d")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/willf/bitset")) - (home-page "https://github.com/willf/bitset") - (synopsis "bitset") - (description - "Package bitset implements bitsets, a mapping -between non-negative integers and boolean values. It should be more -efficient than map[uint] bool. -") - (license license:bsd-3))) - -(define-public go-github-com-opencontainers-selinux-1.8.0 - (package - (name "go-github-com-opencontainers-selinux") - (version "1.8.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/selinux") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "08aakiva619hk4lgfvyi6kpjgw7hfirs0jlc2jdgzcv7p0gfhbmx")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/selinux")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777" - ,go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777) - ("go-github-com-willf-bitset-1.1.11" - ,go-github-com-willf-bitset-1.1.11) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) - (home-page "https://github.com/opencontainers/selinux") - (synopsis "selinux") - (description "Common SELinux package used across the container ecosystem.") - (license license:asl2.0))) - -(define-public go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.14 - (package - (name "go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client") - (version "0.0.14") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes-sigs/apiserver-network-proxy") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0px41x5apgcssmwmx75cwm000s8b8pgd84dxn56maxx223dzz9vm")))) - (build-system go-build-system) - (arguments - '(#:import-path - "sigs.k8s.io/apiserver-network-proxy/konnectivity-client")) - (propagated-inputs - `(("go-k8s-io-klog-v2-2.0.0" ,go-k8s-io-klog-v2-2.0.0) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-github-com-golang-protobuf-1.4.0" - ,go-github-com-golang-protobuf-1.4.0))) - (home-page - "https://sigs.k8s.io/apiserver-network-proxy/konnectivity-client") - (synopsis #f) - (description #f) - (license license:asl2.0))) - -(define-public go-k8s-io-apiserver-0.20.1 - (package - (name "go-k8s-io-apiserver") - (version "0.20.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes/apiserver") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "03k8kjisscj59i410kk2bz0qfpxa2d2vbwxiwyn93k7a2avbn7cs")))) - (build-system go-build-system) - (arguments '(#:import-path "k8s.io/apiserver")) - (propagated-inputs - `(("go-k8s-io-component-base-0.20.1" ,go-k8s-io-component-base-0.20.1) - ("go-k8s-io-client-go-0.20.1" ,go-k8s-io-client-go-0.20.1) - ("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) - ("go-k8s-io-api-0.20.1" ,go-k8s-io-api-0.20.1) - ("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) - ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.2" - ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.2) - ("go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.14" - ,go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.14) - ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" - ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) - ("go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd" - ,go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd) - ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) - ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) - ("go-gopkg-in-square-go-jose-v2-2.2.2" - ,go-gopkg-in-square-go-jose-v2-2.2.2) - ("go-gopkg-in-natefinch-lumberjack-v2-2.0.0" - ,go-gopkg-in-natefinch-lumberjack-v2-2.0.0) - ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) - ("go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a" - ,go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a) - ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" - ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) - ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" - ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) - ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" - ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) - ("go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0" - ,go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0) - ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) - ("go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489" - ,go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489) - ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) - ("go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5" - ,go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) - ("go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021" - ,go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822" - ,go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822) - ("go-github-com-mailru-easyjson-0.7.0" - ,go-github-com-mailru-easyjson-0.7.0) - ("go-github-com-hashicorp-golang-lru-0.5.1" - ,go-github-com-hashicorp-golang-lru-0.5.1) - ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" - ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) - ("go-github-com-gorilla-websocket-1.4.2" - ,go-github-com-gorilla-websocket-1.4.2) - ("go-github-com-googleapis-gnostic-0.4.1" - ,go-github-com-googleapis-gnostic-0.4.1) - ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) - ("go-github-com-google-gofuzz-1.1.0" - ,go-github-com-google-gofuzz-1.1.0) - ("go-github-com-google-go-cmp-0.5.2" - ,go-github-com-google-go-cmp-0.5.2) - ("go-github-com-gogo-protobuf-1.3.1" - ,go-github-com-gogo-protobuf-1.3.1) - ("go-github-com-go-openapi-spec-0.19.3" - ,go-github-com-go-openapi-spec-0.19.3) - ("go-github-com-evanphx-json-patch-4.9.0+incompatible" - ,go-github-com-evanphx-json-patch-4.9.0+incompatible) - ("go-github-com-emicklei-go-restful-2.9.5+incompatible" - ,go-github-com-emicklei-go-restful-2.9.5+incompatible) - ("go-github-com-dustin-go-humanize-1.0.0" - ,go-github-com-dustin-go-humanize-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1) - ("go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f" - ,go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f) - ("go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e" - ,go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e) - ("go-github-com-coreos-go-semver-0.3.0" - ,go-github-com-coreos-go-semver-0.3.0) - ("go-github-com-coreos-go-oidc-2.1.0+incompatible" - ,go-github-com-coreos-go-oidc-2.1.0+incompatible))) - (home-page "https://k8s.io/apiserver") - (synopsis "apiserver") - (description - "Generic library for building a Kubernetes aggregated API server.") - (license license:asl2.0))) - -(define-public go-k8s-io-api-0.20.1 - (package - (name "go-k8s-io-api") - (version "0.20.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes/api") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "051nl7g66k0jkc9rmfbvwdsmqkn36nq71kvnfym3lhnjcgg53k0l")))) - (build-system go-build-system) - (arguments '(#:import-path "k8s.io/api")) - (propagated-inputs - `(("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-gogo-protobuf-1.3.1" - ,go-github-com-gogo-protobuf-1.3.1))) - (home-page "https://k8s.io/api") - (synopsis "api") - (description - "Schema of the external API types that are served by the Kubernetes API server.") - (license license:asl2.0))) - -(define-public go-k8s-io-apimachinery-0.20.1 - (package - (name "go-k8s-io-apimachinery") - (version "0.20.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes/apimachinery") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "15qc12lbzpd4lgajy0rv24b3ky4hhg5y1l37qxdfiakhz91didfw")))) - (build-system go-build-system) - (arguments '(#:import-path "k8s.io/apimachinery")) - (propagated-inputs - `(("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) - ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.2" - ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.2) - ("go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd" - ,go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd) - ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) - ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) - ("go-gopkg-in-inf-v0-0.9.1" ,go-gopkg-in-inf-v0-0.9.1) - ("go-google-golang-org-protobuf-1.25.0" - ,go-google-golang-org-protobuf-1.25.0) - ("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" - ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) - ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) - ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" - ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) - ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" - ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-onsi-gomega-1.7.0" ,go-github-com-onsi-gomega-1.7.0) - ("go-github-com-onsi-ginkgo-1.11.0" ,go-github-com-onsi-ginkgo-1.11.0) - ("go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f" - ,go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f) - ("go-github-com-modern-go-reflect2-1.0.1" - ,go-github-com-modern-go-reflect2-1.0.1) - ("go-github-com-json-iterator-go-1.1.10" - ,go-github-com-json-iterator-go-1.1.10) - ("go-github-com-hashicorp-golang-lru-0.5.1" - ,go-github-com-hashicorp-golang-lru-0.5.1) - ("go-github-com-googleapis-gnostic-0.4.1" - ,go-github-com-googleapis-gnostic-0.4.1) - ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) - ("go-github-com-google-gofuzz-1.1.0" - ,go-github-com-google-gofuzz-1.1.0) - ("go-github-com-google-go-cmp-0.5.2" - ,go-github-com-google-go-cmp-0.5.2) - ("go-github-com-golang-protobuf-1.4.3" - ,go-github-com-golang-protobuf-1.4.3) - ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" - ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) - ("go-github-com-gogo-protobuf-1.3.1" - ,go-github-com-gogo-protobuf-1.3.1) - ("go-github-com-fsnotify-fsnotify-1.4.9" - ,go-github-com-fsnotify-fsnotify-1.4.9) - ("go-github-com-evanphx-json-patch-4.9.0+incompatible" - ,go-github-com-evanphx-json-patch-4.9.0+incompatible) - ("go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153" - ,go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153) - ("go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96" - ,go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://k8s.io/apimachinery") - (synopsis "apimachinery") - (description - "Scheme, typing, encoding, decoding, and conversion packages for Kubernetes and Kubernetes-like API objects.") - (license license:asl2.0))) - -(define-public go-k8s-io-client-go-0.20.1 - (package - (name "go-k8s-io-client-go") - (version "0.20.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes/client-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "02jrzwwcrdlya91fga2wvf8dsl1yka3kky194dm6l9pmd754qwzs")))) - (build-system go-build-system) - (arguments '(#:import-path "k8s.io/client-go")) - (propagated-inputs - `(("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) - ("go-k8s-io-api-0.20.1" ,go-k8s-io-api-0.20.1) - ("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) - ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" - ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) - ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) - ("go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e" - ,go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e) - ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" - ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) - ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" - ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) - ("go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0" - ,go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) - ("go-github-com-peterbourgon-diskv-2.0.1+incompatible" - ,go-github-com-peterbourgon-diskv-2.0.1+incompatible) - ("go-github-com-imdario-mergo-0.3.5" - ,go-github-com-imdario-mergo-0.3.5) - ("go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7" - ,go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7) - ("go-github-com-googleapis-gnostic-0.4.1" - ,go-github-com-googleapis-gnostic-0.4.1) - ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) - ("go-github-com-google-gofuzz-1.1.0" - ,go-github-com-google-gofuzz-1.1.0) - ("go-github-com-google-go-cmp-0.5.2" - ,go-github-com-google-go-cmp-0.5.2) - ("go-github-com-golang-protobuf-1.4.3" - ,go-github-com-golang-protobuf-1.4.3) - ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" - ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) - ("go-github-com-gogo-protobuf-1.3.1" - ,go-github-com-gogo-protobuf-1.3.1) - ("go-github-com-evanphx-json-patch-4.9.0+incompatible" - ,go-github-com-evanphx-json-patch-4.9.0+incompatible) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1) - ("go-github-com-azure-go-autorest-autorest-adal-0.9.5" - ,go-github-com-azure-go-autorest-autorest-adal-0.9.5) - ("go-github-com-azure-go-autorest-autorest-0.11.1" - ,go-github-com-azure-go-autorest-autorest-0.11.1) - ("go-cloud-google-com-go-0.54.0" ,go-cloud-google-com-go-0.54.0))) - (home-page "https://k8s.io/client-go") - (synopsis "client-go") - (description - "Go clients for talking to a @url{http://kubernetes.io/,kubernetes} cluster.") - (license license:asl2.0))) - -(define-public go-k8s-io-component-base-0.20.1 - (package - (name "go-k8s-io-component-base") - (version "0.20.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes/component-base") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "05x3mv1lxh7s6ckfh1s9wwmb0n9rg14a9637ai9bhxdfps47sz0v")))) - (build-system go-build-system) - (arguments '(#:import-path "k8s.io/component-base")) - (propagated-inputs - `(("go-k8s-io-client-go-0.20.1" ,go-k8s-io-client-go-0.20.1) - ("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) - ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" - ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) - ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) - ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) - ("go-go-uber-org-multierr-1.1.0" ,go-go-uber-org-multierr-1.1.0) - ("go-go-uber-org-atomic-1.4.0" ,go-go-uber-org-atomic-1.4.0) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) - ("go-github-com-sirupsen-logrus-1.6.0" - ,go-github-com-sirupsen-logrus-1.6.0) - ("go-github-com-prometheus-procfs-0.2.0" - ,go-github-com-prometheus-procfs-0.2.0) - ("go-github-com-prometheus-common-0.10.0" - ,go-github-com-prometheus-common-0.10.0) - ("go-github-com-prometheus-client-model-0.2.0" - ,go-github-com-prometheus-client-model-0.2.0) - ("go-github-com-prometheus-client-golang-1.7.1" - ,go-github-com-prometheus-client-golang-1.7.1) - ("go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd" - ,go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd) - ("go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369" - ,go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369) - ("go-github-com-google-go-cmp-0.5.2" - ,go-github-com-google-go-cmp-0.5.2) - ("go-github-com-go-logr-logr-0.2.0" ,go-github-com-go-logr-logr-0.2.0) - ("go-github-com-blang-semver-3.5.1+incompatible" - ,go-github-com-blang-semver-3.5.1+incompatible))) - (home-page "https://k8s.io/component-base") - (synopsis "component-base") - (description - "Implement KEP 32: @url{https://github.com/kubernetes/enhancements/blob/master/keps/sig-cluster-lifecycle/wgs/783-component-base/README.md,https://github.com/kubernetes/enhancements/blob/master/keps/sig-cluster-lifecycle/wgs/783-component-base/README.md}") - (license license:asl2.0))) - -(define-public go-k8s-io-cri-api-0.20.1 - (package - (name "go-k8s-io-cri-api") - (version "0.20.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes/cri-api") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1r98d0kv42sijdg3404xx2g5jj0zixvfagkky2zla12p68ajm4xr")))) - (build-system go-build-system) - (arguments '(#:import-path "k8s.io/cri-api")) - (propagated-inputs - `(("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" - ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) - ("go-google-golang-org-protobuf-1.25.0" - ,go-google-golang-org-protobuf-1.25.0) - ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) - ("go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a" - ,go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a) - ("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" - ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) - ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) - ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" - ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) - ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" - ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-kr-pretty-0.2.0" ,go-github-com-kr-pretty-0.2.0) - ("go-github-com-google-go-cmp-0.5.2" - ,go-github-com-google-go-cmp-0.5.2) - ("go-github-com-golang-protobuf-1.4.3" - ,go-github-com-golang-protobuf-1.4.3) - ("go-github-com-gogo-protobuf-1.3.1" - ,go-github-com-gogo-protobuf-1.3.1) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://k8s.io/cri-api") - (synopsis "Purpose") - (description - "This repository contains the definitions for the Container Runtime Interface (CRI). -CRI is a plugin interface which enables kubelet to use a wide variety of container runtimes, -without the need to recompile. CRI consists of a protocol buffers and gRPC API.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-containerd-1.5.0-beta.3 - (package - (name "go-github-com-containerd-containerd") - (version "1.5.0-beta.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/containerd") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0fbd4llrwg5hi5adfkmfndma5y129yl9wwz3c3fjn7cfhc64hlqf")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/containerd")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) - ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) - ("go-github-com-golang-protobuf-1.3.5" - ,go-github-com-golang-protobuf-1.3.5) - ("go-github-com-gogo-googleapis-1.3.2" - ,go-github-com-gogo-googleapis-1.3.2) - ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" - ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) - ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) - ("go-k8s-io-cri-api-0.20.1" ,go-k8s-io-cri-api-0.20.1) - ("go-k8s-io-component-base-0.20.1" ,go-k8s-io-component-base-0.20.1) - ("go-k8s-io-client-go-0.20.1" ,go-k8s-io-client-go-0.20.1) - ("go-k8s-io-apiserver-0.20.1" ,go-k8s-io-apiserver-0.20.1) - ("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) - ("go-k8s-io-api-0.20.1" ,go-k8s-io-api-0.20.1) - ("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) - ("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" - ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) - ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" - ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) - ("go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b" - ,go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b) - ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) - ("go-github-com-tchap-go-patricia-2.2.6+incompatible" - ,go-github-com-tchap-go-patricia-2.2.6+incompatible) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-sirupsen-logrus-1.7.0" - ,go-github-com-sirupsen-logrus-1.7.0) - ("go-github-com-prometheus-client-golang-1.7.1" - ,go-github-com-prometheus-client-golang-1.7.1) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-selinux-1.8.0" - ,go-github-com-opencontainers-selinux-1.8.0) - ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" - ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) - ("go-github-com-opencontainers-runc-1.0.0-rc93" - ,go-github-com-opencontainers-runc-1.0.0-rc93) - ("go-github-com-opencontainers-image-spec-1.0.1" - ,go-github-com-opencontainers-image-spec-1.0.1) - ("go-github-com-opencontainers-go-digest-1.0.0" - ,go-github-com-opencontainers-go-digest-1.0.0) - ("go-github-com-moby-sys-symlink-0.1.0" - ,go-github-com-moby-sys-symlink-0.1.0) - ("go-github-com-moby-sys-mountinfo-0.4.0" - ,go-github-com-moby-sys-mountinfo-0.4.0) - ("go-github-com-klauspost-compress-1.11.3" - ,go-github-com-klauspost-compress-1.11.3) - ("go-github-com-imdario-mergo-0.3.11" - ,go-github-com-imdario-mergo-0.3.11) - ("go-github-com-hashicorp-go-multierror-1.0.0" - ,go-github-com-hashicorp-go-multierror-1.0.0) - ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" - ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) - ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) - ("go-github-com-google-go-cmp-0.5.4" - ,go-github-com-google-go-cmp-0.5.4) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2) - ("go-github-com-fsnotify-fsnotify-1.4.9" - ,go-github-com-fsnotify-fsnotify-1.4.9) - ("go-github-com-emicklei-go-restful-2.9.5+incompatible" - ,go-github-com-emicklei-go-restful-2.9.5+incompatible) - ("go-github-com-docker-go-units-0.4.0" - ,go-github-com-docker-go-units-0.4.0) - ("go-github-com-docker-go-metrics-0.0.1" - ,go-github-com-docker-go-metrics-0.0.1) - ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" - ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1) - ("go-github-com-coreos-go-systemd-v22-22.1.0" - ,go-github-com-coreos-go-systemd-v22-22.1.0) - ("go-github-com-containernetworking-plugins-0.8.6" - ,go-github-com-containernetworking-plugins-0.8.6) - ("go-github-com-containerd-zfs-0.0.0-20210301145711-11e8f1707f62" - ,go-github-com-containerd-zfs-0.0.0-20210301145711-11e8f1707f62) - ("go-github-com-containerd-typeurl-1.0.1" - ,go-github-com-containerd-typeurl-1.0.1) - ("go-github-com-containerd-ttrpc-1.0.2" - ,go-github-com-containerd-ttrpc-1.0.2) - ("go-github-com-containerd-nri-0.0.0-20201007170849-eb1350a75164" - ,go-github-com-containerd-nri-0.0.0-20201007170849-eb1350a75164) - ("go-github-com-containerd-imgcrypt-1.0.4-0.20210301171431-0ae5c75f59ba" - ,go-github-com-containerd-imgcrypt-1.0.4-0.20210301171431-0ae5c75f59ba) - ("go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328" - ,go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328) - ("go-github-com-containerd-go-cni-1.0.1" - ,go-github-com-containerd-go-cni-1.0.1) - ("go-github-com-containerd-fifo-0.0.0-20201026212402-0724c46b320c" - ,go-github-com-containerd-fifo-0.0.0-20201026212402-0724c46b320c) - ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" - ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) - ("go-github-com-containerd-console-1.0.1" - ,go-github-com-containerd-console-1.0.1) - ("go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68" - ,go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68) - ("go-github-com-containerd-btrfs-0.0.0-20201111183144-404b9149801e" - ,go-github-com-containerd-btrfs-0.0.0-20201111183144-404b9149801e) - ("go-github-com-containerd-aufs-0.0.0-20201003224125-76a6863f2989" - ,go-github-com-containerd-aufs-0.0.0-20201003224125-76a6863f2989) - ("go-github-com-microsoft-hcsshim-test-0.0.0-20210227013316-43a75bb4edd3" - ,go-github-com-microsoft-hcsshim-test-0.0.0-20210227013316-43a75bb4edd3) - ("go-github-com-microsoft-hcsshim-0.8.15" - ,go-github-com-microsoft-hcsshim-0.8.15) - ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" - ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3) - ("go-github-com-burntsushi-toml-0.3.1" - ,go-github-com-burntsushi-toml-0.3.1))) - (home-page "https://github.com/containerd/containerd") - (synopsis "Now Recruiting") - (description - "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") - (license license:asl2.0))) - -(define-public go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee - (package - (name "go-github-com-spf13-cobra") - (version "0.0.2-0.20171109065643-2da4a54c5cee") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/spf13/cobra") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18qbrp774fx6dyibjcy9snld705gslq6z2sql1biyjahxkm1vpfy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/spf13/cobra")) - (home-page "https://github.com/spf13/cobra") - (synopsis "Table of Contents") - (description - "Package cobra is a commander providing a simple interface to create powerful modern CLI interfaces. -In addition to providing an interface, Cobra simultaneously provides a controller to organize your application code. -") - (license license:asl2.0))) - -(define-public go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95 - (package - (name "go-github-com-spf13-pflag") - (version "1.0.1-0.20171106142849-4c012f6dcd95") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/spf13/pflag") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0plmm67lkm25ir0lczwh7hmanyilrs1vxmbp8a0dyr282ji1dqm5")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/spf13/pflag")) - (home-page "https://github.com/spf13/pflag") - (synopsis "Description") - (description - "Package pflag is a drop-in replacement for Go's flag package, implementing -POSIX/GNU-style --flags. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20201201145000-ef89a241ccb3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0a8myxx2mvdr77a003gpy5jmdzbxbnrf5zppmpl4za4sspxlmwif")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e - (package - (name "go-github-com-containerd-continuity") - (version "0.0.0-20210208174643-50096c924a4e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/continuity") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1drmxbb2l4z12b19dq3vvh1ss7b4z8fq1n5g6c8ln13mjgz6cq48")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/continuity")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3" - ,go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3) - ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" - ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) - ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" - ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) - ("go-github-com-stretchr-testify-1.4.0" - ,go-github-com-stretchr-testify-1.4.0) - ("go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95" - ,go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95) - ("go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee" - ,go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee) - ("go-github-com-sirupsen-logrus-1.7.0" - ,go-github-com-sirupsen-logrus-1.7.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-go-digest-1.0.0" - ,go-github-com-opencontainers-go-digest-1.0.0) - ("go-github-com-inconshreveable-mousetrap-1.0.0" - ,go-github-com-inconshreveable-mousetrap-1.0.0) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0) - ("go-github-com-dustin-go-humanize-1.0.0" - ,go-github-com-dustin-go-humanize-1.0.0) - ("go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898" - ,go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898))) - (home-page "https://github.com/containerd/continuity") - (synopsis "continuity") - (description - "This package provides a transport-agnostic, filesystem metadata manifest system") - (license license:asl2.0))) - -(define-public go-github-com-containerd-zfs-1.0.0 - (package - (name "go-github-com-containerd-zfs") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/zfs") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "10shqmcdxlxxi90kwgs5cljz12589yz5cm78aimv9m4cgwiv3wl3")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/zfs")) - (propagated-inputs - `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible" - ,go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible) - ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" - ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) - ("go-github-com-containerd-containerd-1.5.0-beta.3" - ,go-github-com-containerd-containerd-1.5.0-beta.3))) - (home-page "https://github.com/containerd/zfs") - (synopsis "ZFS snapshotter plugin") - (description "ZFS snapshotter plugin for containerd.") - (license license:asl2.0))) - -(define-public go-github-com-microsoft-go-winio-0.4.11 - (package - (name "go-github-com-microsoft-go-winio") - (version "0.4.11") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/microsoft/go-winio") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "14y1gryr3pb3zy09v2g8dh89m363rfd9sch0wgbabh531hfx72vn")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/Microsoft/go-winio")) - (home-page "https://github.com/Microsoft/go-winio") - (synopsis "go-winio") - (description - "This repository contains utilities for efficiently performing Win32 IO operations in -Go. Currently, this is focused on accessing named pipes and other file handles, and -for using named pipes as a net transport.") - (license license:expat))) - -(define-public go-github-com-microsoft-hcsshim-0.8.6 - (package - (name "go-github-com-microsoft-hcsshim") - (version "0.8.6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/microsoft/hcsshim") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "05arx8y4b6rvhjcnwizhc8svzab3ld0njkgj8vijgs27az84z6pw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/Microsoft/hcsshim")) - (home-page "https://github.com/Microsoft/hcsshim") - (synopsis "hcsshim") - (description - "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") - (license license:expat))) - -(define-public go-github-com-alexflint-go-filemutex-0.0.0-20171022225611-72bdc8eae2ae - (package - (name "go-github-com-alexflint-go-filemutex") - (version "0.0.0-20171022225611-72bdc8eae2ae") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/alexflint/go-filemutex") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "082y6y9zv40q3kaqvsv6fyaw2fc42j0sn9z0dl9rbiz4szixj3c4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/alexflint/go-filemutex")) - (home-page "https://github.com/alexflint/go-filemutex") - (synopsis "FileMutex") - (description - "FileMutex is similar to @code{sync.RWMutex}, but also synchronizes across processes. -On Linux, OSX, and other POSIX systems it uses the flock system call. On windows -it uses the LockFileEx and UnlockFileEx system calls.") - (license license:expat))) - -(define-public go-github-com-buger-jsonparser-0.0.0-20180808090653-f4dd9f5a6b44 - (package - (name "go-github-com-buger-jsonparser") - (version "0.0.0-20180808090653-f4dd9f5a6b44") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/buger/jsonparser") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12qa2n33s7yz88ywpr3k9kg3b4gm6rqgnv28iyikyxw8h5jascz5")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/buger/jsonparser")) - (home-page "https://github.com/buger/jsonparser") - (synopsis - "Alternative JSON parser for Go (10x times faster standard library)") - (description - "It does not require you to know the structure of the payload (eg. create structs), and allows accessing fields by providing the path to them. It is up to @strong{10 times faster} than standard @code{encoding/json} package (depending on payload size and usage), @strong{allocates no memory}. See benchmarks below.") - (license license:expat))) - -(define-public go-github-com-containernetworking-cni-0.8.1 - (package - (name "go-github-com-containernetworking-cni") - (version "0.8.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containernetworking/cni") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ydzsiq6kfwjghf5dd4ld2rv3cxgbjq6c1523jxmib1phwf0s75z")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containernetworking/cni")) - (home-page "https://github.com/containernetworking/cni") - (synopsis "CNI - the Container Network Interface") - (description - "CNI (), a @url{https://cncf.io,Cloud Native Computing Foundation} project, consists of a specification and libraries for writing plugins to configure network interfaces in Linux containers, along with a number of supported plugins. -CNI concerns itself only with network connectivity of containers and removing allocated resources when the container is deleted. -Because of this focus, CNI has a wide range of support and the specification is simple to implement.") - (license license:asl2.0))) - -(define-public go-github-com-coreos-go-iptables-0.5.0 - (package - (name "go-github-com-coreos-go-iptables") - (version "0.5.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/coreos/go-iptables") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0syxjad9b3d19sjy7cy7zjpx5bx60yvbhidz8r9cdv43iqadxmp7")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/coreos/go-iptables")) - (home-page "https://github.com/coreos/go-iptables") - (synopsis "go-iptables") - (description "Go bindings for iptables utility.") - (license license:asl2.0))) - -(define-public go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c - (package - (name "go-github-com-d2g-dhcp4") - (version "0.0.0-20170904100407-a1d1b6c41b1c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/d2g/dhcp4") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "191hzw6yqzkm042h6miyycq3g0zrhqjhhpl27f8vhwzp4wanasiz")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/d2g/dhcp4")) - (home-page "https://github.com/d2g/dhcp4") - (synopsis "DHCP4 - A DHCP library written in Go.") - (description - "Warning: This library is still being developed. Function calls will change.") - (license license:bsd-3))) - -(define-public go-github-com-d2g-dhcp4client-1.0.0 - (package - (name "go-github-com-d2g-dhcp4client") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/d2g/dhcp4client") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1n4qrn7xsgvnshmddq56hr8g2si5vfmxi0wnp0w71lmdfsxvvx0q")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/d2g/dhcp4client")) - (home-page "https://github.com/d2g/dhcp4client") - (synopsis "dhcp4client") - (description "DHCP Client") - (license license:mpl2.0))) - -(define-public go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5 - (package - (name "go-github-com-d2g-dhcp4server") - (version "0.0.0-20181031114812-7d4a0a7f59a5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/d2g/dhcp4server") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "03ibq32flr74pxfly1yca9qicb6f15xgl159jjg3svgnzfjpblwl")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/d2g/dhcp4server")) - (home-page "https://github.com/d2g/dhcp4server") - (synopsis "dhcp4server") - (description "DHCP Server") - (license license:mpl2.0))) - -(define-public go-github-com-d2g-hardwareaddr-0.0.0-20190221164911-e7d9fbe030e4 - (package - (name "go-github-com-d2g-hardwareaddr") - (version "0.0.0-20190221164911-e7d9fbe030e4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/d2g/hardwareaddr") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "09nm5py9xbb9klwhzqkf6786i3b59ynba78xkrv9jx4ari7ibh8q")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/d2g/hardwareaddr")) - (home-page "https://github.com/d2g/hardwareaddr") - (synopsis "hardwareaddr") - (description "Generate Hardware Addresses") - (license license:mpl2.0))) - -(define-public go-github-com-godbus-dbus-0.0.0-20180201030542-885f9cc04c9c - (package - (name "go-github-com-godbus-dbus") - (version "0.0.0-20180201030542-885f9cc04c9c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/godbus/dbus") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0wjpaj4vr5lvpnwc5faf3qizd7zd2v9yq0fm0558wap1hiyqb8x8")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/godbus/dbus")) - (home-page "https://github.com/godbus/dbus") - (synopsis "dbus") - (description - "Package dbus implements bindings to the D-Bus message bus system. -") - (license license:bsd-2))) - -(define-public go-github-com-j-keck-arping-0.0.0-20160618110441-2cf9dc699c56 - (package - (name "go-github-com-j-keck-arping") - (version "0.0.0-20160618110441-2cf9dc699c56") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/j-keck/arping") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1bid8mpx3j4546ni0a6q5xyz7hb854g95qnxqmg5jzs9vrcird3c")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/j-keck/arping")) - (home-page "https://github.com/j-keck/arping") - (synopsis "arping") - (description - "Package arping is a native go library to ping a host per arp datagram, or query a host mac address -") - (license license:expat))) - -(define-public go-github-com-mattn-go-shellwords-1.0.3 - (package - (name "go-github-com-mattn-go-shellwords") - (version "1.0.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mattn/go-shellwords") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1pg7pl25wvpl2dbpyrv9p1r7prnqimxlf6136vn0dfm54j2x4mnr")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mattn/go-shellwords")) - (home-page "https://github.com/mattn/go-shellwords") - (synopsis "go-shellwords") - (description "Parse line as shell words.") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20190904154756-749cb33beabd - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190904154756-749cb33beabd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0dm3257q3rv2kyn5lmqqim2fqg634v6rhrqq4glvbk4wx4l3v337")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-nxadm-tail-1.4.4 - (package - (name "go-github-com-nxadm-tail") - (version "1.4.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/nxadm/tail") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1czmwqii0fc8v3ar5bwqpfanprkxg19waly405zlvcflzvj53wwc")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/nxadm/tail")) - (propagated-inputs - `(("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" - ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) - ("go-golang-org-x-sys-0.0.0-20190904154756-749cb33beabd" - ,go-golang-org-x-sys-0.0.0-20190904154756-749cb33beabd) - ("go-github-com-fsnotify-fsnotify-1.4.7" - ,go-github-com-fsnotify-fsnotify-1.4.7))) - (home-page "https://github.com/nxadm/tail") - (synopsis "tail functionality in Go") - (description - "nxadm/tail provides a Go library that emulates the features of the BSD `tail` -program. The library comes with full support for truncation/move detection as -it is designed to work with log rotation tools. The library works on all -operating systems supported by Go, including POSIX systems like Linux and -*BSD, and MS Windows. Go 1.9 is the oldest compiler release supported. -") - (license license:expat))) - -(define-public go-github-com-onsi-gomega-1.7.1 - (package - (name "go-github-com-onsi-gomega") - (version "1.7.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/onsi/gomega") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "06p3x0910cdaa64l7d44s728d4j3yhps315dlcvrbjzhljjj7mam")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/onsi/gomega")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.4" ,go-gopkg-in-yaml-v2-2.2.4) - ("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" - ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) - ("go-gopkg-in-fsnotify-v1-1.4.7" ,go-gopkg-in-fsnotify-v1-1.4.7) - ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e" - ,go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e) - ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" - ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) - ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" - ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) - ("go-github-com-onsi-ginkgo-1.6.0" ,go-github-com-onsi-ginkgo-1.6.0) - ("go-github-com-hpcloud-tail-1.0.0" ,go-github-com-hpcloud-tail-1.0.0) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0) - ("go-github-com-fsnotify-fsnotify-1.4.7" - ,go-github-com-fsnotify-fsnotify-1.4.7))) - (home-page "https://github.com/onsi/gomega") - (synopsis ": a BDD Testing Framework for Golang") - (description - "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library. -") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20191120155948-bd437916bb0e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1i8x26frmlin55k69k936zd1rp5sqnq14y5ms4rkxbfzhasdm2rx")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-onsi-ginkgo-1.12.1 - (package - (name "go-github-com-onsi-ginkgo") - (version "1.12.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/onsi/ginkgo") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0xs9724l2b0bwjwrvw5cs3akxaw0n1j5kyxrb1ggfsdjz0zmjcxh")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/onsi/ginkgo")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e" - ,go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e) - ("go-github-com-onsi-gomega-1.7.1" ,go-github-com-onsi-gomega-1.7.1) - ("go-github-com-nxadm-tail-1.4.4" ,go-github-com-nxadm-tail-1.4.4))) - (home-page "https://github.com/onsi/ginkgo") - (synopsis "Ginkgo 2.0 Release Candidate is available!") - (description "Ginkgo is a BDD-style testing framework for Golang -") - (license license:expat))) - -(define-public go-golang-org-x-net-0.0.0-20201006153459-a7d1128ccaa0 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20201006153459-a7d1128ccaa0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1iqqq7s95b2a29bspfxv68qnby8vwjvy9f8gl2262p6f9hhp21d2")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) - ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" - ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) - ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" - ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-github-com-onsi-gomega-1.10.3 - (package - (name "go-github-com-onsi-gomega") - (version "1.10.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/onsi/gomega") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1jvp5wlny86ncsqak5rz70qfn61y3ajc64w0hrj4840zgh90zb06")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/onsi/gomega")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.3.0" ,go-gopkg-in-yaml-v2-2.3.0) - ("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) - ("go-golang-org-x-net-0.0.0-20201006153459-a7d1128ccaa0" - ,go-golang-org-x-net-0.0.0-20201006153459-a7d1128ccaa0) - ("go-github-com-onsi-ginkgo-1.12.1" ,go-github-com-onsi-ginkgo-1.12.1) - ("go-github-com-golang-protobuf-1.4.2" - ,go-github-com-golang-protobuf-1.4.2))) - (home-page "https://github.com/onsi/gomega") - (synopsis ": a BDD Testing Framework for Golang") - (description - "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library. -") - (license license:expat))) - -(define-public go-github-com-safchain-ethtool-0.0.0-20190326074333-42ed695e3de8 - (package - (name "go-github-com-safchain-ethtool") - (version "0.0.0-20190326074333-42ed695e3de8") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/safchain/ethtool") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0n5hkrzc1bh46nidcssx4539kvcmgj501v3kzh2pljpg27509daj")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/safchain/ethtool")) - (home-page "https://github.com/safchain/ethtool") - (synopsis "ethtool go package") - (description - "Package ethtool aims to provide a library giving a simple access to the -Linux SIOCETHTOOL ioctl operations. It can be used to retrieve informations -from a network device like statistics, driver related informations or -even the peer of a VETH interface. -") - (license license:asl2.0))) - -(define-public go-github-com-sirupsen-logrus-1.0.6 - (package - (name "go-github-com-sirupsen-logrus") - (version "1.0.6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sirupsen/logrus") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "029irw2lsbqi944gdrbkwdw0m2794sqni4g21gsnmz142hbzds8c")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/sirupsen/logrus")) - (home-page "https://github.com/sirupsen/logrus") - (synopsis "Logrus") - (description - "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. -") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20200217220822-9197077df867 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200217220822-9197077df867") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1270yyiqzlgrsygp2j0qavh4agm4xjv3ljfpk4wgqgmg4ph1lmx1")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-vishvananda-netns-0.0.0-20200728191858-db3c7e526aae - (package - (name "go-github-com-vishvananda-netns") - (version "0.0.0-20200728191858-db3c7e526aae") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/vishvananda/netns") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1gx41r06by67q5yyyvjpr0cyqqs2pcksfaqxy0s36cx4vpjn5x9r")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/vishvananda/netns")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20200217220822-9197077df867" - ,go-golang-org-x-sys-0.0.0-20200217220822-9197077df867))) - (home-page "https://github.com/vishvananda/netns") - (synopsis "netns - network namespaces in go") - (description - "Package netns allows ultra-simple network namespace handling. NsHandles -can be retrieved and set. Note that the current namespace is thread -local so actions that set and reset namespaces should use LockOSThread -to make sure the namespace doesn't change due to a goroutine switch. -It is best to close NsHandles when you are done with them. This can be -accomplished via a `defer ns.Close()` on the handle. Changing namespaces -requires elevated privileges, so in most cases this code needs to be run -as root. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-sys-0.0.0-20200728102440-3e129f6d46b1 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200728102440-3e129f6d46b1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "02wcaghvpysqijiqsiimk52vma7lx99g5kvdid2r1qsf9hmwgvy2")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-vishvananda-netlink-1.1.1-0.20201029203352-d40f9887b852 - (package - (name "go-github-com-vishvananda-netlink") - (version "1.1.1-0.20201029203352-d40f9887b852") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/vishvananda/netlink") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1aq13npm7vd153vxrk1vhsg36r2g9hrh21cvk422ssrf57qy2fsj")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/vishvananda/netlink")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20200728102440-3e129f6d46b1" - ,go-golang-org-x-sys-0.0.0-20200728102440-3e129f6d46b1) - ("go-github-com-vishvananda-netns-0.0.0-20200728191858-db3c7e526aae" - ,go-github-com-vishvananda-netns-0.0.0-20200728191858-db3c7e526aae))) - (home-page "https://github.com/vishvananda/netlink") - (synopsis "netlink - netlink library for go") - (description - "Package netlink provides a simple library for netlink. Netlink is -the interface a user-space program in linux uses to communicate with -the kernel. It can be used to add and remove interfaces, set up ip -addresses and routes, and confiugre ipsec. Netlink communication -requires elevated privileges, so in most cases this code needs to -be run as root. The low level primitives for netlink are contained -in the nl subpackage. This package attempts to provide a high-level -interface that is loosly modeled on the iproute2 cli. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-sys-0.0.0-20201117170446-d9b008d0a637 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20201117170446-d9b008d0a637") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "06pp1nrhzx6nm6rwwzm0xzf8bs3r1mfsrkclyhlhnr7x5r0a0ppi")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-gopkg-in-airbrake-gobrake-v2-2.0.9 - (package - (name "go-gopkg-in-airbrake-gobrake-v2") - (version "2.0.9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/airbrake/gobrake.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1x06f7n7qlyzqgyz0sdfcidf3w4ldn6zs6qx2mhibggk2z4whcjw")))) - (build-system go-build-system) - (arguments - '(#:import-path - "gopkg.in/airbrake/gobrake.v2" - #:unpack-path - "gopkg.in/airbrake/gobrake.v2")) - (home-page "https://gopkg.in/airbrake/gobrake.v2") - (synopsis "Airbrake Golang Notifier") - (description - "You can use @url{https://github.com/airbrake/glog,glog fork} to send your logs to Airbrake.") - (license license:bsd-3))) - -(define-public go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2 - (package - (name "go-gopkg-in-gemnasium-logrus-airbrake-hook-v2") - (version "2.1.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/gemnasium/logrus-airbrake-hook.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0sbg0dn6cysmf8f2bi209jwl4jnpiwp4rdghnxlzirw3c32ms5y5")))) - (build-system go-build-system) - (arguments - '(#:import-path - "gopkg.in/gemnasium/logrus-airbrake-hook.v2" - #:unpack-path - "gopkg.in/gemnasium/logrus-airbrake-hook.v2")) - (home-page "https://gopkg.in/gemnasium/logrus-airbrake-hook.v2") - (synopsis "Airbrake Hook for Logrus") - (description - "Use this hook to send your errors to @url{https://airbrake.io/,Airbrake}. -This hook is using the @url{https://github.com/airbrake/gobrake,official airbrake go package}, and will hit the api V3. -The hook is synchronous and will send the error for @code{log.Error}, @code{log.Fatal} and @code{log.Panic} levels.") - (license license:expat))) - -(define-public go-github-com-containernetworking-plugins-0.9.1 - (package - (name "go-github-com-containernetworking-plugins") - (version "0.9.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containernetworking/plugins") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "17rafngfa9b0ybs3j4lvjjqdva6jkamhnbb1n0qnv685g0asvqwz")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containernetworking/plugins")) - (propagated-inputs - `(("go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2" - ,go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2) - ("go-gopkg-in-airbrake-gobrake-v2-2.0.9" - ,go-gopkg-in-airbrake-gobrake-v2-2.0.9) - ("go-golang-org-x-sys-0.0.0-20201117170446-d9b008d0a637" - ,go-golang-org-x-sys-0.0.0-20201117170446-d9b008d0a637) - ("go-github-com-vishvananda-netlink-1.1.1-0.20201029203352-d40f9887b852" - ,go-github-com-vishvananda-netlink-1.1.1-0.20201029203352-d40f9887b852) - ("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0) - ("go-github-com-sirupsen-logrus-1.0.6" - ,go-github-com-sirupsen-logrus-1.0.6) - ("go-github-com-safchain-ethtool-0.0.0-20190326074333-42ed695e3de8" - ,go-github-com-safchain-ethtool-0.0.0-20190326074333-42ed695e3de8) - ("go-github-com-onsi-gomega-1.10.3" ,go-github-com-onsi-gomega-1.10.3) - ("go-github-com-onsi-ginkgo-1.12.1" ,go-github-com-onsi-ginkgo-1.12.1) - ("go-github-com-mattn-go-shellwords-1.0.3" - ,go-github-com-mattn-go-shellwords-1.0.3) - ("go-github-com-j-keck-arping-0.0.0-20160618110441-2cf9dc699c56" - ,go-github-com-j-keck-arping-0.0.0-20160618110441-2cf9dc699c56) - ("go-github-com-godbus-dbus-0.0.0-20180201030542-885f9cc04c9c" - ,go-github-com-godbus-dbus-0.0.0-20180201030542-885f9cc04c9c) - ("go-github-com-d2g-hardwareaddr-0.0.0-20190221164911-e7d9fbe030e4" - ,go-github-com-d2g-hardwareaddr-0.0.0-20190221164911-e7d9fbe030e4) - ("go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5" - ,go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5) - ("go-github-com-d2g-dhcp4client-1.0.0" - ,go-github-com-d2g-dhcp4client-1.0.0) - ("go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c" - ,go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c) - ("go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7" - ,go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7) - ("go-github-com-coreos-go-iptables-0.5.0" - ,go-github-com-coreos-go-iptables-0.5.0) - ("go-github-com-containernetworking-cni-0.8.1" - ,go-github-com-containernetworking-cni-0.8.1) - ("go-github-com-buger-jsonparser-0.0.0-20180808090653-f4dd9f5a6b44" - ,go-github-com-buger-jsonparser-0.0.0-20180808090653-f4dd9f5a6b44) - ("go-github-com-alexflint-go-filemutex-0.0.0-20171022225611-72bdc8eae2ae" - ,go-github-com-alexflint-go-filemutex-0.0.0-20171022225611-72bdc8eae2ae) - ("go-github-com-microsoft-hcsshim-0.8.6" - ,go-github-com-microsoft-hcsshim-0.8.6) - ("go-github-com-microsoft-go-winio-0.4.11" - ,go-github-com-microsoft-go-winio-0.4.11))) - (home-page "https://github.com/containernetworking/plugins") - (synopsis "Plugins") - (description - "Some CNI network plugins, maintained by the containernetworking team. For more information, see the @url{https://www.cni.dev,CNI website}.") - (license license:asl2.0))) - -(define-public go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c - (package - (name "go-github-com-docker-go-events") - (version "0.0.0-20190806004212-e31b211e4f1c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/docker/go-events") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "09gm4z43g23isbklabnsnfb87bwf8kjdgvvyi3vfjq2bqdjdg7cl")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/docker/go-events")) - (home-page "https://github.com/docker/go-events") - (synopsis "Docker Events Package") - (description - "The Docker @code{events} package implements a composable event distribution package -for Go.") - (license license:asl2.0))) - -(define-public go-github-com-prometheus-common-0.6.0 - (package - (name "go-github-com-prometheus-common") - (version "0.6.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/common") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1q16br348117ffycxdwsldb0i39p34miclfa8z93k6vjwnrqbh2l")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/common")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1) - ("go-gopkg-in-alecthomas-kingpin-v2-2.2.6" - ,go-gopkg-in-alecthomas-kingpin-v2-2.2.6) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980" - ,go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980) - ("go-github-com-sirupsen-logrus-1.2.0" - ,go-github-com-sirupsen-logrus-1.2.0) - ("go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90" - ,go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90) - ("go-github-com-prometheus-client-golang-1.0.0" - ,go-github-com-prometheus-client-golang-1.0.0) - ("go-github-com-pkg-errors-0.8.0" ,go-github-com-pkg-errors-0.8.0) - ("go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223" - ,go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223) - ("go-github-com-matttproud-golang-protobuf-extensions-1.0.1" - ,go-github-com-matttproud-golang-protobuf-extensions-1.0.1) - ("go-github-com-julienschmidt-httprouter-1.2.0" - ,go-github-com-julienschmidt-httprouter-1.2.0) - ("go-github-com-golang-protobuf-1.3.1" - ,go-github-com-golang-protobuf-1.3.1) - ("go-github-com-go-logfmt-logfmt-0.4.0" - ,go-github-com-go-logfmt-logfmt-0.4.0) - ("go-github-com-go-kit-kit-0.8.0" ,go-github-com-go-kit-kit-0.8.0))) - (home-page "https://github.com/prometheus/common") - (synopsis "Common") - (description - "This repository contains Go libraries that are shared across Prometheus -components and libraries. They are considered internal to Prometheus, without -any stability guarantees for external usage.") - (license license:asl2.0))) - -(define-public go-github-com-prometheus-procfs-0.0.3 - (package - (name "go-github-com-prometheus-procfs") - (version "0.0.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/procfs") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18c4m795fwng8f8qa395f3crvamlbk5y5afk8b5rzyisnmjq774y")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/procfs")) - (propagated-inputs - `(("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" - ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) - ("go-github-com-google-go-cmp-0.3.0" - ,go-github-com-google-go-cmp-0.3.0))) - (home-page "https://github.com/prometheus/procfs") - (synopsis "procfs") - (description - "Package procfs provides functions to retrieve system, kernel and process -metrics from the pseudo-filesystem proc. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-sys-0.0.0-20190801041406-cbf593c0f2f3 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190801041406-cbf593c0f2f3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1zmcmckinhclcwlvznjqvs31aww8jnf6pjm9is0nq8lqlvipg5ls")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-prometheus-client-golang-1.1.0 - (package - (name "go-github-com-prometheus-client-golang") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/client_golang") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1r0irxkmfnj6ininb06w6ybknini5lz02idawrbkk2i5lq1qcvvf")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/client_golang")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190801041406-cbf593c0f2f3" - ,go-golang-org-x-sys-0.0.0-20190801041406-cbf593c0f2f3) - ("go-github-com-prometheus-procfs-0.0.3" - ,go-github-com-prometheus-procfs-0.0.3) - ("go-github-com-prometheus-common-0.6.0" - ,go-github-com-prometheus-common-0.6.0) - ("go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90" - ,go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90) - ("go-github-com-json-iterator-go-1.1.7" - ,go-github-com-json-iterator-go-1.1.7) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2) - ("go-github-com-beorn7-perks-1.0.1" - ,go-github-com-beorn7-perks-1.0.1))) - (home-page "https://github.com/prometheus/client_golang") - (synopsis "Prometheus Go client library") - (description - "This is the @url{http://golang.org,Go} client library for -@url{http://prometheus.io,Prometheus}. It has two separate parts, one for -instrumenting application code, and one for creating clients that talk to the -Prometheus HTTP API.") - (license license:asl2.0))) - -(define-public go-github-com-docker-go-metrics-0.0.1 - (package - (name "go-github-com-docker-go-metrics") - (version "0.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/docker/go-metrics") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1b6f1889chmwlsgrqxylnks2jic16j2dqhsdd1dvaklk48ky95ga")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/docker/go-metrics")) - (propagated-inputs - `(("go-github-com-prometheus-client-golang-1.1.0" - ,go-github-com-prometheus-client-golang-1.1.0))) - (home-page "https://github.com/docker/go-metrics") - (synopsis "go-metrics") - (description - "This package is small wrapper around the prometheus go client to help enforce convention and best practices for metrics collection in Docker projects.") - (license (list license:asl2.0 license:cc-by-sa4.0)))) - -(define-public go-github-com-hashicorp-go-multierror-1.0.0 - (package - (name "go-github-com-hashicorp-go-multierror") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/go-multierror") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "00nyn8llqzbfm8aflr9kwsvpzi4kv8v45c141v88xskxp5xf6z49")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/go-multierror")) - (propagated-inputs - `(("go-github-com-hashicorp-errwrap-1.0.0" - ,go-github-com-hashicorp-errwrap-1.0.0))) - (home-page "https://github.com/hashicorp/go-multierror") - (synopsis "go-multierror") - (description - "@code{go-multierror} is a package for Go that provides a mechanism for -representing a list of @code{error} values as a single @code{error}.") - (license license:mpl2.0))) - -(define-public go-github-com-klauspost-compress-1.11.13 - (package - (name "go-github-com-klauspost-compress") - (version "1.11.13") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/klauspost/compress") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19l2rbh6vg0ly4qp2gn5lf39ijggf7asav7lxziikkhjqqb4223j")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/klauspost/compress")) - (home-page "https://github.com/klauspost/compress") - (synopsis "compress") - (description "This package provides various compression algorithms.") - (license #f))) - -(define-public go-github-com-moby-locker-1.0.1 - (package - (name "go-github-com-moby-locker") - (version "1.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/moby/locker") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "07rc2c6h35f9mcy81jp382a030f6xmcifi9n5jnlayybfwxmpjir")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/moby/locker")) - (home-page "https://github.com/moby/locker") - (synopsis "Locker") - (description - "Package locker provides a mechanism for creating finer-grained locking to help -free up more global locks to handle other tasks. -") - (license license:asl2.0))) - -(define-public go-github-com-pelletier-go-toml-1.8.1 - (package - (name "go-github-com-pelletier-go-toml") - (version "1.8.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pelletier/go-toml") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1pi1r9ds0vxjza4qrbk52y98wxrzh1ghwzc9c2v1w6i02pdwdcz9")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pelletier/go-toml")) - (propagated-inputs - `(("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/pelletier/go-toml") - (synopsis "go-toml") - (description "Package toml is a TOML parser and manipulation library. -") - (license #f))) - -(define-public go-github-com-prometheus-procfs-0.6.0 - (package - (name "go-github-com-prometheus-procfs") - (version "0.6.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/procfs") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0czzw37dq0sfq7rivxmxxw5hy287grqnng6q6hfz6mkqmhqgm1m6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/procfs")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" - ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) - ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" - ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) - ("go-github-com-google-go-cmp-0.5.4" - ,go-github-com-google-go-cmp-0.5.4))) - (home-page "https://github.com/prometheus/procfs") - (synopsis "procfs") - (description - "Package procfs provides functions to retrieve system, kernel and process -metrics from the pseudo-filesystem proc. -") - (license license:asl2.0))) - -(define-public go-github-com-satori-go-uuid-1.2.0 - (package - (name "go-github-com-satori-go-uuid") - (version "1.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/satori/go.uuid") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1j4s5pfg2ldm35y8ls8jah4dya2grfnx2drb4jcbjsyrp4cm5yfb")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/satori/go.uuid")) - (home-page "https://github.com/satori/go.uuid") - (synopsis "UUID package for Go language") - (description - "Package uuid provides implementation of Universally Unique Identifier (UUID). -Supported versions are 1, 3, 4 and 5 (as specified in @url{https://rfc-editor.org/rfc/rfc4122.html,RFC 4122}) and -version 2 (as specified in DCE 1.1). -") - (license license:expat))) - -(define-public go-github-com-tchap-go-patricia-2.2.6+incompatible - (package - (name "go-github-com-tchap-go-patricia") - (version "2.2.6+incompatible") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/tchap/go-patricia") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1yy1s3pnll52iyzphwi50drvz36lx628vn3xfy5ld29fxqngrckb")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/tchap/go-patricia")) - (home-page "https://github.com/tchap/go-patricia") - (synopsis "go-patricia") - (description - "@strong{Documentation}: @url{http://godoc.org/github.com/tchap/go-patricia/patricia,GoDoc} -@strong{Test Coverage}: @url{https://coveralls.io/r/tchap/go-patricia,(img (@ (src https://coveralls.io/repos/tchap/go-patricia/badge.png) (alt CoverageStatus)))}") - (license license:expat))) - -(define-public go-github-com-coreos-go-oidc-2.1.0+incompatible - (package - (name "go-github-com-coreos-go-oidc") - (version "2.1.0+incompatible") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/coreos/go-oidc") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0y9vxack1whvxy766jrc6xhh2rfkvnznwxi356si2kabzjv2lp6h")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/coreos/go-oidc")) - (home-page "https://github.com/coreos/go-oidc") - (synopsis "go-oidc") - (description - "Package oidc implements OpenID Connect client logic for the golang.org/x/oauth2 package. -") - (license license:asl2.0))) - -(define-public go-github-com-coreos-go-semver-0.3.0 - (package - (name "go-github-com-coreos-go-semver") - (version "0.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/coreos/go-semver") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0770h1mpig2j5sbiha3abnwaw8p6dg9i87r8pc7cf6m4kwml3sc9")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/coreos/go-semver")) - (home-page "https://github.com/coreos/go-semver") - (synopsis "go-semver - Semantic Versioning Library") - (description - "go-semver is a @url{http://semver.org/,semantic versioning} library for Go. It lets you parse -and compare two semantic version strings.") - (license license:asl2.0))) - -(define-public go-github-com-emicklei-go-restful-2.9.5+incompatible - (package - (name "go-github-com-emicklei-go-restful") - (version "2.9.5+incompatible") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/emicklei/go-restful") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0258y7q2krih98zznc4jsym9mf689afn6nsnsif1jhshrj653k36")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/emicklei/go-restful")) - (home-page "https://github.com/emicklei/go-restful") - (synopsis "go-restful") - (description - "Package restful , a lean package for creating REST-style WebServices without magic. -") - (license license:expat))) - -(define-public go-github-com-gorilla-websocket-1.4.2 - (package - (name "go-github-com-gorilla-websocket") - (version "1.4.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gorilla/websocket") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0mkm9w6kjkrlzab5wh8p4qxkc0icqawjbvr01d2nk6ykylrln40s")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/gorilla/websocket")) - (home-page "https://github.com/gorilla/websocket") - (synopsis "Gorilla WebSocket") - (description - "Package websocket implements the WebSocket protocol defined in @url{https://rfc-editor.org/rfc/rfc6455.html,RFC 6455}. -") - (license license:bsd-2))) - -(define-public go-github-com-mailru-easyjson-0.7.0 - (package - (name "go-github-com-mailru-easyjson") - (version "0.7.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mailru/easyjson") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "13zv5fvjp3nr65lhqhiw6i6mlmqvyls882rlmcas0ab35alsxni8")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mailru/easyjson")) - (home-page "https://github.com/mailru/easyjson") - (synopsis "easyjson") - (description - "Package easyjson contains marshaler/unmarshaler interfaces and helper functions. -") - (license license:expat))) - -(define-public go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822 - (package - (name "go-github-com-munnerz-goautoneg") - (version "0.0.0-20191010083416-a7dc8b61c822") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/munnerz/goautoneg") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1m4v6bw6yf1g0kvpc46isjp0qfhx2y8gnvlnyjf637jy64613mgg")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/munnerz/goautoneg")) - (home-page "https://github.com/munnerz/goautoneg") - (synopsis #f) - (description #f) - (license license:bsd-3))) - -(define-public go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021 - (package - (name "go-github-com-pquerna-cachecontrol") - (version "0.0.0-20171018203845-0dec1b30a021") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pquerna/cachecontrol") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "14yyfhrv60rvb983rqm7s916nwvn9kcmbvnrcna2md0s3mkzs3yh")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pquerna/cachecontrol")) - (home-page "https://github.com/pquerna/cachecontrol") - (synopsis "cachecontrol: HTTP Caching Parser and Interpretation") - (description - "Package cachecontrol implements the logic for HTTP Caching -") - (license license:asl2.0))) - -(define-public go-golang-org-x-sys-0.0.0-20200202164722-d101bd2416d5 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200202164722-d101bd2416d5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ksxf37b0ym21n8j29m3wgbaiw1kcjw3hgf88kipc1ry2j13l98p")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-go-etcd-io-bbolt-1.3.5 - (package - (name "go-go-etcd-io-bbolt") - (version "1.3.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/etcd-io/bbolt") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1h64gipvcg7060byv5wjlf524kqwj12p3v08kfh4ygv46vpm8p2r")))) - (build-system go-build-system) - (arguments '(#:import-path "go.etcd.io/bbolt")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20200202164722-d101bd2416d5" - ,go-golang-org-x-sys-0.0.0-20200202164722-d101bd2416d5))) - (home-page "https://go.etcd.io/bbolt") - (synopsis "bbolt") - (description - "package bbolt implements a low-level key/value store in pure Go. It supports -fully serializable transactions, ACID semantics, and lock-free MVCC with -multiple readers and a single writer. Bolt can be used for projects that -want a simple data store without the need to add large dependencies such as -Postgres or MySQL. -") - (license license:expat))) - -(define-public go-github-com-bgentry-speakeasy-0.1.0 - (package - (name "go-github-com-bgentry-speakeasy") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/bgentry/speakeasy") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "02dfrj0wyphd3db9zn2mixqxwiz1ivnyc5xc7gkz58l5l27nzp8s")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/bgentry/speakeasy")) - (home-page "https://github.com/bgentry/speakeasy") - (synopsis "Speakeasy") - (description - "This package provides cross-platform Go (#golang) helpers for taking user input -from the terminal while not echoing the input back (similar to @code{getpasswd}). The -package uses syscalls to avoid any dependence on cgo, and is therefore -compatible with cross-compiling.") - (license license:expat))) - -(define-public go-github-com-cockroachdb-datadriven-0.0.0-20190809214429-80d97fb3cbaa - (package - (name "go-github-com-cockroachdb-datadriven") - (version "0.0.0-20190809214429-80d97fb3cbaa") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cockroachdb/datadriven") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0rvavka9zhri6r50n8fy98247fl5vycb1hffjrhshsicjv1frmlp")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/cockroachdb/datadriven")) - (home-page "https://github.com/cockroachdb/datadriven") - (synopsis "Data-Driven Tests for Go") - (description - "This repository implements an extension of @url{https://github.com/golang/go/wiki/TableDrivenTests,Table-Driven Testing}. Instead of -building and iterating over a table in the test code, the input is further -separated into files (or inline strings). For certain classes of tests, this -can significantly reduce the friction involved in writing and reading these -tests.") - (license license:asl2.0))) - -(define-public go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7 - (package - (name "go-github-com-coreos-go-systemd") - (version "0.0.0-20180511133405-39ca1b05acc7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/coreos/go-systemd") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1kzqrrzqspa5qm7kwslxl3m16lqzns23c24rv474ajzwmj3ixmx1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/coreos/go-systemd")) - (home-page "https://github.com/coreos/go-systemd") - (synopsis "go-systemd") - (description "Go bindings to systemd. The project has several packages:") - (license license:asl2.0))) - -(define-public go-github-com-coreos-pkg-0.0.0-20160727233714-3ac0863d7acf - (package - (name "go-github-com-coreos-pkg") - (version "0.0.0-20160727233714-3ac0863d7acf") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/coreos/pkg") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0l5ans1ls2gknkrnhymgc0zbgg5nqjbjbqc51r611adcr0m6gg8l")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/coreos/pkg")) - (home-page "https://github.com/coreos/pkg") - (synopsis #f) - (description "a collection of go utility packages") - (license license:asl2.0))) - -(define-public go-github-com-creack-pty-1.1.7 - (package - (name "go-github-com-creack-pty") - (version "1.1.7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/creack/pty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1plwwlk1i9b80zv8zdplvv81shfyc9gf0flydnydsh5sr3ib5vrc")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/creack/pty")) - (home-page "https://github.com/creack/pty") - (synopsis "pty") - (description - "Package pty provides functions for working with Unix terminals. -") - (license license:expat))) - -(define-public go-github-com-dustin-go-humanize-0.0.0-20171111073723-bb3d318650d4 - (package - (name "go-github-com-dustin-go-humanize") - (version "0.0.0-20171111073723-bb3d318650d4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/dustin/go-humanize") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1lqd8ix3cb164j5iazjby2jpa6bdsflhy0h9mi4yldvvcvrc194c")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/dustin/go-humanize")) - (home-page "https://github.com/dustin/go-humanize") - (synopsis "Humane Units") - (description - "Package humanize converts boring ugly numbers to human-friendly strings and back. -") - (license license:expat))) - -(define-public go-github-com-fatih-color-1.7.0 - (package - (name "go-github-com-fatih-color") - (version "1.7.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/fatih/color") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0v8msvg38r8d1iiq2i5r4xyfx0invhc941kjrsg5gzwvagv55inv")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/fatih/color")) - (home-page "https://github.com/fatih/color") - (synopsis "color") - (description - "Package color is an ANSI color package to output colorized or SGR defined -output to the standard output. The API can be used in several way, pick one -that suits you. -") - (license license:expat))) - -(define-public go-github-com-golang-groupcache-0.0.0-20160516000752-02826c3e7903 - (package - (name "go-github-com-golang-groupcache") - (version "0.0.0-20160516000752-02826c3e7903") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/groupcache") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0w46bsllddfij66nrg8jbfjsr54birvfww8a2fj9fmgyig5syn2x")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/groupcache")) - (home-page "https://github.com/golang/groupcache") - (synopsis "groupcache") - (description - "Package groupcache provides a data loading mechanism with caching -and de-duplication that works across a set of peer processes. -") - (license license:asl2.0))) - -(define-public go-github-com-google-uuid-1.0.0 - (package - (name "go-github-com-google-uuid") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/uuid") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1922bjrnx66692dm0rrc1ckmznsaqx920ww4jzsds3xzrwf15mqv")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/uuid")) - (home-page "https://github.com/google/uuid") - (synopsis "uuid") - (description "Package uuid generates and inspects UUIDs. -") - (license license:bsd-3))) - -(define-public go-github-com-gorilla-websocket-0.0.0-20170926233335-4201258b820c - (package - (name "go-github-com-gorilla-websocket") - (version "0.0.0-20170926233335-4201258b820c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gorilla/websocket") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1kpdg3m46kp15ixl9ahhchhadyiblz0qpcxzylp8jhffc1rnxjb7")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/gorilla/websocket")) - (home-page "https://github.com/gorilla/websocket") - (synopsis "Gorilla WebSocket") - (description - "Package websocket implements the WebSocket protocol defined in @url{https://rfc-editor.org/rfc/rfc6455.html,RFC 6455}. -") - (license license:bsd-2))) - -(define-public go-github-com-grpc-ecosystem-go-grpc-middleware-1.0.1-0.20190118093823-f849b5445de4 - (package - (name "go-github-com-grpc-ecosystem-go-grpc-middleware") - (version "1.0.1-0.20190118093823-f849b5445de4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc-ecosystem/go-grpc-middleware") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hscypgj0nd1407jp6y4qrnrr0mrhc4wgxz9b3mj1cs3pkvi61vc")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/grpc-ecosystem/go-grpc-middleware")) - (home-page "https://github.com/grpc-ecosystem/go-grpc-middleware") - (synopsis "Go gRPC Middleware") - (description - "`grpc_middleware` is a collection of gRPC middleware packages: interceptors, helpers and tools. -") - (license license:asl2.0))) - -(define-public go-github-com-grpc-ecosystem-grpc-gateway-1.9.5 - (package - (name "go-github-com-grpc-ecosystem-grpc-gateway") - (version "1.9.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc-ecosystem/grpc-gateway") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0acpbxa1i1bxcpkclkcif2macbcfrlywb58vly5pzwsj261mg58a")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/grpc-ecosystem/grpc-gateway")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.0.0-20170812160011-eb3733d160e7" - ,go-gopkg-in-yaml-v2-2.0.0-20170812160011-eb3733d160e7) - ("go-gopkg-in-resty-v1-1.12.0" ,go-gopkg-in-resty-v1-1.12.0) - ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" - ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) - ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) - ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" - ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) - ("go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8" - ,go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8) - ("go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3" - ,go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3) - ("go-github-com-rogpeppe-fastuuid-0.0.0-20150106093220-6724a57986af" - ,go-github-com-rogpeppe-fastuuid-0.0.0-20150106093220-6724a57986af) - ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-ghodss-yaml-1.0.0" ,go-github-com-ghodss-yaml-1.0.0))) - (home-page "https://github.com/grpc-ecosystem/grpc-gateway") - (synopsis "grpc-gateway") - (description - "The grpc-gateway is a plugin of the Google protocol buffers compiler -@url{https://github.com/protocolbuffers/protobuf,protoc}. -It reads protobuf service definitions and generates a reverse-proxy server which -translates a RESTful HTTP API into gRPC. This server is generated according to the -@url{https://github.com/googleapis/googleapis/raw/master/google/api/http.proto#L46,(code google.api.http)} -annotations in your service definitions.") - (license license:bsd-3))) - -(define-public go-github-com-json-iterator-go-1.1.7 - (package - (name "go-github-com-json-iterator-go") - (version "1.1.7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/json-iterator/go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0n79p4s67zl5zprxv7diayw3vavnmmfqkmd6snz0i9bxp825dsyz")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/json-iterator/go")) - (propagated-inputs - `(("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0) - ("go-github-com-modern-go-reflect2-0.0.0-20180701023420-4b7aa43c6742" - ,go-github-com-modern-go-reflect2-0.0.0-20180701023420-4b7aa43c6742) - ("go-github-com-modern-go-concurrent-0.0.0-20180228061459-e0a39a4cb421" - ,go-github-com-modern-go-concurrent-0.0.0-20180228061459-e0a39a4cb421) - ("go-github-com-google-gofuzz-1.0.0" - ,go-github-com-google-gofuzz-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/json-iterator/go") - (synopsis "Benchmark") - (description - "Package jsoniter implements encoding and decoding of JSON as defined in -@url{https://rfc-editor.org/rfc/rfc4627.html,RFC 4627} and provides interfaces with identical syntax of standard lib encoding/json. -Converting from encoding/json to jsoniter is no more than replacing the package with jsoniter -and variable type declarations (if any). -jsoniter interfaces gives 100% compatibility with code using standard lib. -") - (license license:expat))) - -(define-public go-github-com-mattn-go-colorable-0.0.9 - (package - (name "go-github-com-mattn-go-colorable") - (version "0.0.9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mattn/go-colorable") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1nwjmsppsjicr7anq8na6md7b1z84l9ppnlr045hhxjvbkqwalvx")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mattn/go-colorable")) - (home-page "https://github.com/mattn/go-colorable") - (synopsis "go-colorable") - (description "Colorable writer for windows.") - (license license:expat))) - -(define-public go-github-com-mattn-go-isatty-0.0.4 - (package - (name "go-github-com-mattn-go-isatty") - (version "0.0.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mattn/go-isatty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0zs92j2cqaw9j8qx1sdxpv3ap0rgbs0vrvi72m40mg8aa36gd39w")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mattn/go-isatty")) - (home-page "https://github.com/mattn/go-isatty") - (synopsis "go-isatty") - (description "Package isatty implements interface to isatty -") - (license license:expat))) - -(define-public go-github-com-mattn-go-runewidth-0.0.2 - (package - (name "go-github-com-mattn-go-runewidth") - (version "0.0.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mattn/go-runewidth") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0vkrfrz3fzn5n6ix4k8s0cg0b448459sldq8bp4riavsxm932jzb")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mattn/go-runewidth")) - (home-page "https://github.com/mattn/go-runewidth") - (synopsis "go-runewidth") - (description - "This package provides functions to get fixed width of the character or string.") - (license license:expat))) - -(define-public go-github-com-olekukonko-tablewriter-0.0.0-20170122224234-a0225b3f23b5 - (package - (name "go-github-com-olekukonko-tablewriter") - (version "0.0.0-20170122224234-a0225b3f23b5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/olekukonko/tablewriter") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0bp9r6xzy6d3p7l2hjmvr25y3rp3p8c9xv1agkllkksm45ng6681")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/olekukonko/tablewriter")) - (home-page "https://github.com/olekukonko/tablewriter") - (synopsis "ASCII Table Writer") - (description "Create & Generate text based table -") - (license license:expat))) - -(define-public go-github-com-spf13-cobra-0.0.3 - (package - (name "go-github-com-spf13-cobra") - (version "0.0.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/spf13/cobra") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1q1nsx05svyv9fv3fy6xv6gs9ffimkyzsfm49flvl3wnvf1ncrkd")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/spf13/cobra")) - (home-page "https://github.com/spf13/cobra") - (synopsis "Table of Contents") - (description - "Package cobra is a commander providing a simple interface to create powerful modern CLI interfaces. -In addition to providing an interface, Cobra simultaneously provides a controller to organize your application code. -") - (license license:asl2.0))) - -(define-public go-github-com-spf13-pflag-1.0.1 - (package - (name "go-github-com-spf13-pflag") - (version "1.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/spf13/pflag") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0nr4mdpfhhk94hq4ymn5b2sxc47b29p1akxd8b0hx4dvdybmipb5")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/spf13/pflag")) - (home-page "https://github.com/spf13/pflag") - (synopsis "Description") - (description - "Package pflag is a drop-in replacement for Go's flag package, implementing -POSIX/GNU-style --flags. -") - (license license:bsd-3))) - -(define-public go-github-com-tmc-grpc-websocket-proxy-0.0.0-20170815181823-89b8d40f7ca8 - (package - (name "go-github-com-tmc-grpc-websocket-proxy") - (version "0.0.0-20170815181823-89b8d40f7ca8") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/tmc/grpc-websocket-proxy") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1bg6m0cycy5sww175zkbnhi9lvzb08iicc8xka8klrgaa9mc5nsk")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/tmc/grpc-websocket-proxy")) - (home-page "https://github.com/tmc/grpc-websocket-proxy") - (synopsis "grpc-websocket-proxy") - (description - "Wrap your grpc-gateway mux with this helper to expose streaming endpoints over websockets.") - (license license:expat))) - -(define-public go-github-com-urfave-cli-1.20.0 - (package - (name "go-github-com-urfave-cli") - (version "1.20.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/urfave/cli") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0y6f4sbzkiiwrxbl15biivj8c7qwxnvm3zl2dd3mw4wzg4x10ygj")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/urfave/cli")) - (home-page "https://github.com/urfave/cli") - (synopsis "cli") - (description - "Package cli provides a minimal framework for creating and organizing command line -Go applications. cli is designed to be easy to understand and write, the most simple -cli application can be written as follows: -") - (license license:expat))) - -(define-public go-go-etcd-io-bbolt-1.3.3 - (package - (name "go-go-etcd-io-bbolt") - (version "1.3.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/etcd-io/bbolt") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0dn0zngks9xiz0rrrb3911f73ghl64z84jsmzai2yfmzqr7cdkqc")))) - (build-system go-build-system) - (arguments '(#:import-path "go.etcd.io/bbolt")) - (home-page "https://go.etcd.io/bbolt") - (synopsis "bbolt") - (description - "package bbolt implements a low-level key/value store in pure Go. It supports -fully serializable transactions, ACID semantics, and lock-free MVCC with -multiple readers and a single writer. Bolt can be used for projects that -want a simple data store without the need to add large dependencies such as -Postgres or MySQL. -") - (license license:expat))) - -(define-public go-go-uber-org-atomic-1.3.2 - (package - (name "go-go-uber-org-atomic") - (version "1.3.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/uber-go/atomic") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "11pzvjys5ddjjgrv94pgk9pnip9yyb54z7idf33zk7p7xylpnsv6")))) - (build-system go-build-system) - (arguments '(#:import-path "go.uber.org/atomic")) - (home-page "https://go.uber.org/atomic") - (synopsis "atomic") - (description - "Package atomic provides simple wrappers around numerics to enforce atomic -access. -") - (license license:expat))) - -(define-public go-golang-org-x-net-0.0.0-20190813141303-74dc4d7220e7 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190813141303-74dc4d7220e7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0563yswwqknxx2gsvl0qikn0lmwalilbng8i12iw4d3v40n23s0l")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20190826190057-c7b8b68b1456 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190826190057-c7b8b68b1456") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0lqnnrx5prrvkinnhgyvzzhcyvi8x5w54rlp336xjhpslkgqn132")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-time-0.0.0-20180412165947-fbb02b2291d2 - (package - (name "go-golang-org-x-time") - (version "0.0.0-20180412165947-fbb02b2291d2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/time") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0jjqcv6rzihlgg4i797q80g1f6ch5diz2kxqh6488gwkb6nds4h4")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/time")) - (home-page "https://golang.org/x/time") - (synopsis "Go Time") - (description "This repository provides supplementary Go time packages.") - (license license:bsd-3))) - -(define-public go-gopkg-in-cheggaaa-pb-v1-1.0.25 - (package - (name "go-gopkg-in-cheggaaa-pb-v1") - (version "1.0.25") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/cheggaaa/pb.v1") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0vxqiw6f3xyv0zy3g4lksf8za0z8i0hvfpw92hqimsy84f79j3dp")))) - (build-system go-build-system) - (arguments - '(#:import-path - "gopkg.in/cheggaaa/pb.v1" - #:unpack-path - "gopkg.in/cheggaaa/pb.v1")) - (home-page "https://gopkg.in/cheggaaa/pb.v1") - (synopsis "Terminal progress bar for Go") - (description "Simple console progress bars -") - (license license:bsd-3))) - -(define-public go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489 - (package - (name "go-go-etcd-io-etcd") - (version "0.5.0-alpha.5.0.20200910180754-dd1b699fc489") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/etcd-io/etcd") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "11zkvkq7ipqi0n8y05zgn8lf7qm59xdk75x7jbxj5sflx38yfa0k")))) - (build-system go-build-system) - (arguments '(#:import-path "go.etcd.io/etcd")) - (propagated-inputs - `(("go-sigs-k8s-io-yaml-1.1.0" ,go-sigs-k8s-io-yaml-1.1.0) - ("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" - ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) - ("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) - ("go-gopkg-in-cheggaaa-pb-v1-1.0.25" - ,go-gopkg-in-cheggaaa-pb-v1-1.0.25) - ("go-google-golang-org-grpc-1.26.0" ,go-google-golang-org-grpc-1.26.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-time-0.0.0-20180412165947-fbb02b2291d2" - ,go-golang-org-x-time-0.0.0-20180412165947-fbb02b2291d2) - ("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) - ("go-golang-org-x-sys-0.0.0-20190826190057-c7b8b68b1456" - ,go-golang-org-x-sys-0.0.0-20190826190057-c7b8b68b1456) - ("go-golang-org-x-net-0.0.0-20190813141303-74dc4d7220e7" - ,go-golang-org-x-net-0.0.0-20190813141303-74dc4d7220e7) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2) - ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) - ("go-go-uber-org-multierr-1.1.0" ,go-go-uber-org-multierr-1.1.0) - ("go-go-uber-org-atomic-1.3.2" ,go-go-uber-org-atomic-1.3.2) - ("go-go-etcd-io-bbolt-1.3.3" ,go-go-etcd-io-bbolt-1.3.3) - ("go-github-com-xiang90-probing-0.0.0-20190116061207-43a291ad63a2" - ,go-github-com-xiang90-probing-0.0.0-20190116061207-43a291ad63a2) - ("go-github-com-urfave-cli-1.20.0" ,go-github-com-urfave-cli-1.20.0) - ("go-github-com-tmc-grpc-websocket-proxy-0.0.0-20170815181823-89b8d40f7ca8" - ,go-github-com-tmc-grpc-websocket-proxy-0.0.0-20170815181823-89b8d40f7ca8) - ("go-github-com-spf13-pflag-1.0.1" ,go-github-com-spf13-pflag-1.0.1) - ("go-github-com-spf13-cobra-0.0.3" ,go-github-com-spf13-cobra-0.0.3) - ("go-github-com-soheilhy-cmux-0.1.4" - ,go-github-com-soheilhy-cmux-0.1.4) - ("go-github-com-sirupsen-logrus-1.4.2" - ,go-github-com-sirupsen-logrus-1.4.2) - ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" - ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) - ("go-github-com-prometheus-client-golang-1.0.0" - ,go-github-com-prometheus-client-golang-1.0.0) - ("go-github-com-olekukonko-tablewriter-0.0.0-20170122224234-a0225b3f23b5" - ,go-github-com-olekukonko-tablewriter-0.0.0-20170122224234-a0225b3f23b5) - ("go-github-com-modern-go-reflect2-1.0.1" - ,go-github-com-modern-go-reflect2-1.0.1) - ("go-github-com-mattn-go-runewidth-0.0.2" - ,go-github-com-mattn-go-runewidth-0.0.2) - ("go-github-com-mattn-go-isatty-0.0.4" - ,go-github-com-mattn-go-isatty-0.0.4) - ("go-github-com-mattn-go-colorable-0.0.9" - ,go-github-com-mattn-go-colorable-0.0.9) - ("go-github-com-json-iterator-go-1.1.7" - ,go-github-com-json-iterator-go-1.1.7) - ("go-github-com-jonboulle-clockwork-0.1.0" - ,go-github-com-jonboulle-clockwork-0.1.0) - ("go-github-com-inconshreveable-mousetrap-1.0.0" - ,go-github-com-inconshreveable-mousetrap-1.0.0) - ("go-github-com-grpc-ecosystem-grpc-gateway-1.9.5" - ,go-github-com-grpc-ecosystem-grpc-gateway-1.9.5) - ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" - ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) - ("go-github-com-grpc-ecosystem-go-grpc-middleware-1.0.1-0.20190118093823-f849b5445de4" - ,go-github-com-grpc-ecosystem-go-grpc-middleware-1.0.1-0.20190118093823-f849b5445de4) - ("go-github-com-gorilla-websocket-0.0.0-20170926233335-4201258b820c" - ,go-github-com-gorilla-websocket-0.0.0-20170926233335-4201258b820c) - ("go-github-com-google-uuid-1.0.0" ,go-github-com-google-uuid-1.0.0) - ("go-github-com-google-btree-1.0.0" ,go-github-com-google-btree-1.0.0) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2) - ("go-github-com-golang-groupcache-0.0.0-20160516000752-02826c3e7903" - ,go-github-com-golang-groupcache-0.0.0-20160516000752-02826c3e7903) - ("go-github-com-gogo-protobuf-1.2.1" - ,go-github-com-gogo-protobuf-1.2.1) - ("go-github-com-fatih-color-1.7.0" ,go-github-com-fatih-color-1.7.0) - ("go-github-com-dustin-go-humanize-0.0.0-20171111073723-bb3d318650d4" - ,go-github-com-dustin-go-humanize-0.0.0-20171111073723-bb3d318650d4) - ("go-github-com-dgrijalva-jwt-go-3.2.0+incompatible" - ,go-github-com-dgrijalva-jwt-go-3.2.0+incompatible) - ("go-github-com-creack-pty-1.1.7" ,go-github-com-creack-pty-1.1.7) - ("go-github-com-coreos-pkg-0.0.0-20160727233714-3ac0863d7acf" - ,go-github-com-coreos-pkg-0.0.0-20160727233714-3ac0863d7acf) - ("go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7" - ,go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7) - ("go-github-com-coreos-go-semver-0.2.0" - ,go-github-com-coreos-go-semver-0.2.0) - ("go-github-com-cockroachdb-datadriven-0.0.0-20190809214429-80d97fb3cbaa" - ,go-github-com-cockroachdb-datadriven-0.0.0-20190809214429-80d97fb3cbaa) - ("go-github-com-bgentry-speakeasy-0.1.0" - ,go-github-com-bgentry-speakeasy-0.1.0))) - (home-page "https://go.etcd.io/etcd") - (synopsis "etcd") - (description - "Package main is a simple wrapper of the real etcd entrypoint package -(located at github.com/coreos/etcd/etcdmain) to ensure that etcd is still -\"go getable\"; e.g. `go get github.com/coreos/etcd` works as expected and -builds a binary in $GOBIN/etcd -") - (license license:asl2.0))) - -(define-public go-gopkg-in-natefinch-lumberjack-v2-2.0.0 - (package - (name "go-gopkg-in-natefinch-lumberjack-v2") - (version "2.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/natefinch/lumberjack.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1m2sxypk7p805jvc68padvylyx5v7cwkh5klnnxxr0340kgspf08")))) - (build-system go-build-system) - (arguments - '(#:import-path - "gopkg.in/natefinch/lumberjack.v2" - #:unpack-path - "gopkg.in/natefinch/lumberjack.v2")) - (home-page "https://gopkg.in/natefinch/lumberjack.v2") - (synopsis "lumberjack") - (description "Package lumberjack provides a rolling logger. -") - (license license:expat))) - -(define-public go-gopkg-in-square-go-jose-v2-2.2.2 - (package - (name "go-gopkg-in-square-go-jose-v2") - (version "2.2.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/square/go-jose.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1cpvfqw7pw8m8wfj8nda4kam0z48q3gp6b9a3a0wr90zv9ldszbv")))) - (build-system go-build-system) - (arguments - '(#:import-path - "gopkg.in/square/go-jose.v2" - #:unpack-path - "gopkg.in/square/go-jose.v2")) - (home-page "https://gopkg.in/square/go-jose.v2") - (synopsis "Go JOSE") - (description - "Package jose aims to provide an implementation of the Javascript Object Signing -and Encryption set of standards. It implements encryption and signing based on -the JSON Web Encryption and JSON Web Signature standards, with optional JSON -Web Token support available in a sub-package. The library supports both the -compact and full serialization formats, and has optional support for multiple -recipients. -") - (license license:asl2.0))) - -(define-public go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.15 - (package - (name "go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client") - (version "0.0.15") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes-sigs/apiserver-network-proxy") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "00ad9yjr3g1pj118xy063z7rnydkilqmvz9xf89vdva2kjqd7fal")))) - (build-system go-build-system) - (arguments - '(#:import-path - "sigs.k8s.io/apiserver-network-proxy/konnectivity-client")) - (propagated-inputs - `(("go-k8s-io-klog-v2-2.0.0" ,go-k8s-io-klog-v2-2.0.0) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-github-com-golang-protobuf-1.4.0" - ,go-github-com-golang-protobuf-1.4.0))) - (home-page - "https://sigs.k8s.io/apiserver-network-proxy/konnectivity-client") - (synopsis #f) - (description #f) - (license license:asl2.0))) - -(define-public go-k8s-io-apiserver-0.20.6 - (package - (name "go-k8s-io-apiserver") - (version "0.20.6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes/apiserver") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0b53aw2cp9i2v5kg1m2s5kwkz7525ii8vs1g7d8yc2j980aar9y3")))) - (build-system go-build-system) - (arguments '(#:import-path "k8s.io/apiserver")) - (propagated-inputs - `(("go-k8s-io-component-base-0.20.6" ,go-k8s-io-component-base-0.20.6) - ("go-k8s-io-client-go-0.20.6" ,go-k8s-io-client-go-0.20.6) - ("go-k8s-io-apimachinery-0.20.6" ,go-k8s-io-apimachinery-0.20.6) - ("go-k8s-io-api-0.20.6" ,go-k8s-io-api-0.20.6) - ("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) - ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.3" - ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.3) - ("go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.15" - ,go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.15) - ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" - ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) - ("go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd" - ,go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd) - ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) - ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) - ("go-gopkg-in-square-go-jose-v2-2.2.2" - ,go-gopkg-in-square-go-jose-v2-2.2.2) - ("go-gopkg-in-natefinch-lumberjack-v2-2.0.0" - ,go-gopkg-in-natefinch-lumberjack-v2-2.0.0) - ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) - ("go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a" - ,go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a) - ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" - ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) - ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" - ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) - ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" - ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) - ("go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0" - ,go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0) - ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) - ("go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489" - ,go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489) - ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) - ("go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5" - ,go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) - ("go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021" - ,go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822" - ,go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822) - ("go-github-com-mailru-easyjson-0.7.0" - ,go-github-com-mailru-easyjson-0.7.0) - ("go-github-com-hashicorp-golang-lru-0.5.1" - ,go-github-com-hashicorp-golang-lru-0.5.1) - ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" - ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) - ("go-github-com-gorilla-websocket-1.4.2" - ,go-github-com-gorilla-websocket-1.4.2) - ("go-github-com-googleapis-gnostic-0.4.1" - ,go-github-com-googleapis-gnostic-0.4.1) - ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) - ("go-github-com-google-gofuzz-1.1.0" - ,go-github-com-google-gofuzz-1.1.0) - ("go-github-com-google-go-cmp-0.5.2" - ,go-github-com-google-go-cmp-0.5.2) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2) - ("go-github-com-go-openapi-spec-0.19.3" - ,go-github-com-go-openapi-spec-0.19.3) - ("go-github-com-evanphx-json-patch-4.9.0+incompatible" - ,go-github-com-evanphx-json-patch-4.9.0+incompatible) - ("go-github-com-emicklei-go-restful-2.9.5+incompatible" - ,go-github-com-emicklei-go-restful-2.9.5+incompatible) - ("go-github-com-dustin-go-humanize-1.0.0" - ,go-github-com-dustin-go-humanize-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1) - ("go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f" - ,go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f) - ("go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e" - ,go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e) - ("go-github-com-coreos-go-semver-0.3.0" - ,go-github-com-coreos-go-semver-0.3.0) - ("go-github-com-coreos-go-oidc-2.1.0+incompatible" - ,go-github-com-coreos-go-oidc-2.1.0+incompatible))) - (home-page "https://k8s.io/apiserver") - (synopsis "apiserver") - (description - "Generic library for building a Kubernetes aggregated API server.") - (license license:asl2.0))) - -(define-public go-github-com-blang-semver-3.5.1+incompatible - (package - (name "go-github-com-blang-semver") - (version "3.5.1+incompatible") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/blang/semver") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "13ws259bwcibkclbr82ilhk6zadm63kxklxhk12wayklj8ghhsmy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/blang/semver")) - (home-page "https://github.com/blang/semver") - (synopsis "semver for golang") - (description - "semver is a @url{http://semver.org/,Semantic Versioning} library written in golang. It fully covers spec version @code{2.0.0}.") - (license license:expat))) - -(define-public go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369 - (package - (name "go-github-com-matttproud-golang-protobuf-extensions") - (version "1.0.2-0.20181231171920-c182affec369") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/matttproud/golang_protobuf_extensions") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1xqsf9vpcrd4hp95rl6kgmjvkv1df4aicfw4l5vfcxcwxknfx2xs")))) - (build-system go-build-system) - (arguments - '(#:import-path "github.com/matttproud/golang_protobuf_extensions")) - (propagated-inputs - `(("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" - ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0))) - (home-page "https://github.com/matttproud/golang_protobuf_extensions") - (synopsis "Overview") - (description - "This repository provides various Protocol Buffer extensions for the Go -language (golang), namely support for record length-delimited message -streaming.") - (license license:asl2.0))) - -(define-public go-github-com-azure-go-ansiterm-0.0.0-20170929234023-d6e3b3328b78 - (package - (name "go-github-com-azure-go-ansiterm") - (version "0.0.0-20170929234023-d6e3b3328b78") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/Azure/go-ansiterm") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "010khrkhkf9cxlvvb6ncqv4c1qcdmpbz9jn38g4fxf4xsma8xx1q")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/Azure/go-ansiterm")) - (home-page "https://github.com/Azure/go-ansiterm") - (synopsis "go-ansiterm") - (description - "This is a cross platform Ansi Terminal Emulation library. It reads a stream of Ansi characters and produces the appropriate function calls. The results of the function calls are platform dependent.") - (license license:expat))) - -(define-public go-gotest-tools-v3-3.0.2 - (package - (name "go-gotest-tools-v3") - (version "3.0.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gotestyourself/gotest.tools") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0cap2aq2wphnbkkzkck5zdjxb64q3jqxfwpkgqys7279rbr8cvjm")))) - (build-system go-build-system) - (arguments - '(#:import-path "gotest.tools/v3" #:unpack-path "gotest.tools/v3")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20190624222133-a101b041ded4" - ,go-golang-org-x-tools-0.0.0-20190624222133-a101b041ded4) - ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) - ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) - ("go-github-com-google-go-cmp-0.3.0" - ,go-github-com-google-go-cmp-0.3.0))) - (home-page "https://gotest.tools/v3") - (synopsis "gotest.tools") - (description - "Package gotesttools is a collection of packages to augment `testing` and -support common patterns. -") - (license license:asl2.0))) - -(define-public go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd - (package - (name "go-github-com-moby-term") - (version "0.0.0-20200312100748-672ec06f55cd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/moby/term") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0xspasm3d101hmjsayrbx6az4r4ybbg5gkj13qybhpq674a6kkwn")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/moby/term")) - (propagated-inputs - `(("go-gotest-tools-v3-3.0.2" ,go-gotest-tools-v3-3.0.2) - ("go-gotest-tools-2.2.0+incompatible" - ,go-gotest-tools-2.2.0+incompatible) - ("go-golang-org-x-sys-0.0.0-20200302150141-5c8b2ff67527" - ,go-golang-org-x-sys-0.0.0-20200302150141-5c8b2ff67527) - ("go-github-com-sirupsen-logrus-1.4.2" - ,go-github-com-sirupsen-logrus-1.4.2) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-google-go-cmp-0.3.1" - ,go-github-com-google-go-cmp-0.3.1) - ("go-github-com-azure-go-ansiterm-0.0.0-20170929234023-d6e3b3328b78" - ,go-github-com-azure-go-ansiterm-0.0.0-20170929234023-d6e3b3328b78))) - (home-page "https://github.com/moby/term") - (synopsis "term - utilities for dealing with terminals") - (description - "Package term provides structures and helper functions to work with -terminal (state, sizes). -") - (license license:asl2.0))) - -(define-public go-github-com-beorn7-perks-1.0.1 - (package - (name "go-github-com-beorn7-perks") - (version "1.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/beorn7/perks") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "17n4yygjxa6p499dj3yaqzfww2g7528165cl13haj97hlx94dgl7")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/beorn7/perks")) - (home-page "https://github.com/beorn7/perks") - (synopsis "Perks for Go (golang.org)") - (description - "Perks contains the Go package quantile that computes approximate quantiles over -an unbounded data stream within low memory and CPU bounds.") - (license license:expat))) - -(define-public go-github-com-prometheus-procfs-0.1.3 - (package - (name "go-github-com-prometheus-procfs") - (version "0.1.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/procfs") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "09wmlmvmjf49nchidqffc99wn6vl98v5k9qgyyrhqgv0015xskwa")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/procfs")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20200106162015-b016eb3dc98e" - ,go-golang-org-x-sys-0.0.0-20200106162015-b016eb3dc98e) - ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" - ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) - ("go-github-com-google-go-cmp-0.3.1" - ,go-github-com-google-go-cmp-0.3.1))) - (home-page "https://github.com/prometheus/procfs") - (synopsis "procfs") - (description - "Package procfs provides functions to retrieve system, kernel and process -metrics from the pseudo-filesystem proc. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-sys-0.0.0-20200615200032-f1bc736245b1 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200615200032-f1bc736245b1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fbmih4n2xw53qbpmc7msqf2660i4ryr0chbrsbj8mdalfrjr0vp")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-gopkg-in-yaml-v2-2.2.5 - (package - (name "go-gopkg-in-yaml-v2") - (version "2.2.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "08smz8dfyxp02ha74my9iszqa5qzgl3ksi28ilyp8lqipssiq6fg")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v2") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language. -") - (license license:asl2.0))) - -(define-public go-github-com-prometheus-client-golang-1.7.1 - (package - (name "go-github-com-prometheus-client-golang") - (version "1.7.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/client_golang") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0i9wbwjq3idgp9y0vv7fvg6g7zrqi9qlfw915xc49ahw83q2h61w")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/client_golang")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.5" ,go-gopkg-in-yaml-v2-2.2.5) - ("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" - ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) - ("go-golang-org-x-sys-0.0.0-20200615200032-f1bc736245b1" - ,go-golang-org-x-sys-0.0.0-20200615200032-f1bc736245b1) - ("go-github-com-stretchr-testify-1.4.0" - ,go-github-com-stretchr-testify-1.4.0) - ("go-github-com-prometheus-procfs-0.1.3" - ,go-github-com-prometheus-procfs-0.1.3) - ("go-github-com-prometheus-common-0.10.0" - ,go-github-com-prometheus-common-0.10.0) - ("go-github-com-prometheus-client-model-0.2.0" - ,go-github-com-prometheus-client-model-0.2.0) - ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) - ("go-github-com-json-iterator-go-1.1.10" - ,go-github-com-json-iterator-go-1.1.10) - ("go-github-com-golang-protobuf-1.4.2" - ,go-github-com-golang-protobuf-1.4.2) - ("go-github-com-cespare-xxhash-v2-2.1.1" - ,go-github-com-cespare-xxhash-v2-2.1.1) - ("go-github-com-beorn7-perks-1.0.1" - ,go-github-com-beorn7-perks-1.0.1))) - (home-page "https://github.com/prometheus/client_golang") - (synopsis "Prometheus Go client library") - (description - "This is the @url{http://golang.org,Go} client library for -@url{http://prometheus.io,Prometheus}. It has two separate parts, one for -instrumenting application code, and one for creating clients that talk to the -Prometheus HTTP API.") - (license license:asl2.0))) - -(define-public go-github-com-alecthomas-template-0.0.0-20190718012654-fb15b899a751 - (package - (name "go-github-com-alecthomas-template") - (version "0.0.0-20190718012654-fb15b899a751") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/alecthomas/template") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1vlasv4dgycydh5wx6jdcvz40zdv90zz1h7836z7lhsi2ymvii26")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/alecthomas/template")) - (home-page "https://github.com/alecthomas/template") - (synopsis "Go's") - (description - "Package template implements data-driven templates for generating textual output. -") - (license license:bsd-3))) - -(define-public go-github-com-alecthomas-units-0.0.0-20190717042225-c3de453c63f4 - (package - (name "go-github-com-alecthomas-units") - (version "0.0.0-20190717042225-c3de453c63f4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/alecthomas/units") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0js37zlgv37y61j4a2d46jh72xm5kxmpaiw0ya9v944bjpc386my")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/alecthomas/units")) - (home-page "https://github.com/alecthomas/units") - (synopsis "Units - Helpful unit multipliers and functions for Go") - (description - "Package units provides helpful unit multipliers and functions for Go. -") - (license license:expat))) - -(define-public go-github-com-go-kit-kit-0.9.0 - (package - (name "go-github-com-go-kit-kit") - (version "0.9.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/go-kit/kit") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "09038mnw705h7isbjp8dzgp2i04bp5rqkmifxvwc5xkh75s00qpw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/go-kit/kit")) - (home-page "https://github.com/go-kit/kit") - (synopsis "Go kit") - (description - "@strong{Go kit} is a @strong{programming toolkit} for building microservices -(or elegant monoliths) in Go. We solve common problems in distributed -systems and application architecture so you can focus on delivering -business value.") - (license license:expat))) - -(define-public go-github-com-prometheus-common-0.4.1 - (package - (name "go-github-com-prometheus-common") - (version "0.4.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/common") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0sf4sjdckblz1hqdfvripk3zyp8xq89w7q75kbsyg4c078af896s")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/common")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1) - ("go-gopkg-in-alecthomas-kingpin-v2-2.2.6" - ,go-gopkg-in-alecthomas-kingpin-v2-2.2.6) - ("go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5" - ,go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5) - ("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" - ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) - ("go-golang-org-x-net-0.0.0-20181114220301-adae6a3d119a" - ,go-golang-org-x-net-0.0.0-20181114220301-adae6a3d119a) - ("go-github-com-sirupsen-logrus-1.2.0" - ,go-github-com-sirupsen-logrus-1.2.0) - ("go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d" - ,go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d) - ("go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910" - ,go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910) - ("go-github-com-prometheus-client-golang-0.9.1" - ,go-github-com-prometheus-client-golang-0.9.1) - ("go-github-com-pkg-errors-0.8.0" ,go-github-com-pkg-errors-0.8.0) - ("go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223" - ,go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223) - ("go-github-com-matttproud-golang-protobuf-extensions-1.0.1" - ,go-github-com-matttproud-golang-protobuf-extensions-1.0.1) - ("go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515" - ,go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515) - ("go-github-com-julienschmidt-httprouter-1.2.0" - ,go-github-com-julienschmidt-httprouter-1.2.0) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0) - ("go-github-com-gogo-protobuf-1.1.1" - ,go-github-com-gogo-protobuf-1.1.1) - ("go-github-com-go-stack-stack-1.8.0" - ,go-github-com-go-stack-stack-1.8.0) - ("go-github-com-go-logfmt-logfmt-0.3.0" - ,go-github-com-go-logfmt-logfmt-0.3.0) - ("go-github-com-go-kit-kit-0.8.0" ,go-github-com-go-kit-kit-0.8.0) - ("go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973" - ,go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973) - ("go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf" - ,go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf) - ("go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc" - ,go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc))) - (home-page "https://github.com/prometheus/common") - (synopsis "Common") - (description - "This repository contains Go libraries that are shared across Prometheus -components and libraries. They are considered internal to Prometheus, without -any stability guarantees for external usage.") - (license license:asl2.0))) - -(define-public go-github-com-prometheus-procfs-0.0.2 - (package - (name "go-github-com-prometheus-procfs") - (version "0.0.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/procfs") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0s7pvs7fgnfpmym3cd0k219av321h9sf3yvdlnn3qy0ps280lg7k")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/procfs")) - (propagated-inputs - `(("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" - ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4))) - (home-page "https://github.com/prometheus/procfs") - (synopsis "procfs") - (description - "Package procfs provides functions to retrieve system, kernel and process -metrics from the pseudo-filesystem proc. -") - (license license:asl2.0))) - -(define-public go-github-com-prometheus-client-golang-1.0.0 - (package - (name "go-github-com-prometheus-client-golang") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/client_golang") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1f03ndyi3jq7zdxinnvzimz3s4z2374r6dikkc8i42xzb6d1bli6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/client_golang")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5" - ,go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5) - ("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0) - ("go-github-com-prometheus-procfs-0.0.2" - ,go-github-com-prometheus-procfs-0.0.2) - ("go-github-com-prometheus-common-0.4.1" - ,go-github-com-prometheus-common-0.4.1) - ("go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90" - ,go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90) - ("go-github-com-modern-go-reflect2-1.0.1" - ,go-github-com-modern-go-reflect2-1.0.1) - ("go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd" - ,go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd) - ("go-github-com-json-iterator-go-1.1.6" - ,go-github-com-json-iterator-go-1.1.6) - ("go-github-com-golang-protobuf-1.3.1" - ,go-github-com-golang-protobuf-1.3.1) - ("go-github-com-beorn7-perks-1.0.0" - ,go-github-com-beorn7-perks-1.0.0))) - (home-page "https://github.com/prometheus/client_golang") - (synopsis "Prometheus Go client library") - (description - "This is the @url{http://golang.org,Go} client library for -@url{http://prometheus.io,Prometheus}. It has two separate parts, one for -instrumenting application code, and one for creating clients that talk to the -Prometheus HTTP API.") - (license license:asl2.0))) - -(define-public go-github-com-prometheus-client-model-0.2.0 - (package - (name "go-github-com-prometheus-client-model") - (version "0.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/client_model") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0jffnz94d6ff39fr96b5w8i8yk26pwnrfggzz8jhi8k0yihg2c9d")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/client_model")) - (propagated-inputs - `(("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" - ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0))) - (home-page "https://github.com/prometheus/client_model") - (synopsis "Deprecation note") - (description - "This repository used to contain the code that defined both -the data model and the exposition format of Prometheus metrics.") - (license license:asl2.0))) - -(define-public go-gopkg-in-yaml-v2-2.2.4 - (package - (name "go-gopkg-in-yaml-v2") - (version "2.2.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "11bwj757wi8kdrcnlgfqb8vv2d2xdhlghmyagd19i62khrkchsg2")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v2") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language. -") - (license license:asl2.0))) - -(define-public go-github-com-prometheus-common-0.10.0 - (package - (name "go-github-com-prometheus-common") - (version "0.10.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/common") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ra7zfqsnvgfizzsxn3rk0dwhk7nx8p8082zgpvadbv2b0j1k01i")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/common")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.4" ,go-gopkg-in-yaml-v2-2.2.4) - ("go-gopkg-in-alecthomas-kingpin-v2-2.2.6" - ,go-gopkg-in-alecthomas-kingpin-v2-2.2.6) - ("go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894" - ,go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894) - ("go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980" - ,go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980) - ("go-github-com-sirupsen-logrus-1.4.2" - ,go-github-com-sirupsen-logrus-1.4.2) - ("go-github-com-prometheus-client-model-0.2.0" - ,go-github-com-prometheus-client-model-0.2.0) - ("go-github-com-prometheus-client-golang-1.0.0" - ,go-github-com-prometheus-client-golang-1.0.0) - ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) - ("go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223" - ,go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223) - ("go-github-com-matttproud-golang-protobuf-extensions-1.0.1" - ,go-github-com-matttproud-golang-protobuf-extensions-1.0.1) - ("go-github-com-julienschmidt-httprouter-1.2.0" - ,go-github-com-julienschmidt-httprouter-1.2.0) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2) - ("go-github-com-go-logfmt-logfmt-0.4.0" - ,go-github-com-go-logfmt-logfmt-0.4.0) - ("go-github-com-go-kit-kit-0.9.0" ,go-github-com-go-kit-kit-0.9.0) - ("go-github-com-alecthomas-units-0.0.0-20190717042225-c3de453c63f4" - ,go-github-com-alecthomas-units-0.0.0-20190717042225-c3de453c63f4) - ("go-github-com-alecthomas-template-0.0.0-20190718012654-fb15b899a751" - ,go-github-com-alecthomas-template-0.0.0-20190718012654-fb15b899a751))) - (home-page "https://github.com/prometheus/common") - (synopsis "Common") - (description - "This repository contains Go libraries that are shared across Prometheus -components and libraries. They are considered internal to Prometheus, without -any stability guarantees for external usage.") - (license license:asl2.0))) - -(define-public go-golang-org-x-sys-0.0.0-20200106162015-b016eb3dc98e - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200106162015-b016eb3dc98e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1k0qr26046d228gi6ngkfxp4m1rjgxk4jj75h0kh1cpyp91n5rja")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-prometheus-procfs-0.2.0 - (package - (name "go-github-com-prometheus-procfs") - (version "0.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/procfs") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0rkpyq1grk3qyfahnfry5qkxjg5qb10yh1l8cvm8b79nqsmdyjbm")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/procfs")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20200106162015-b016eb3dc98e" - ,go-golang-org-x-sys-0.0.0-20200106162015-b016eb3dc98e) - ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" - ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) - ("go-github-com-google-go-cmp-0.3.1" - ,go-github-com-google-go-cmp-0.3.1))) - (home-page "https://github.com/prometheus/procfs") - (synopsis "procfs") - (description - "Package procfs provides functions to retrieve system, kernel and process -metrics from the pseudo-filesystem proc. -") - (license license:asl2.0))) - -(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.3 - (package - (name "go-github-com-konsorten-go-windows-terminal-sequences") - (version "1.0.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/konsorten/go-windows-terminal-sequences") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1yrsd4s8vhjnxhwbigirymz89dn6qfjnhn28i33vvvdgf96j6ypl")))) - (build-system go-build-system) - (arguments - '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) - (home-page "https://github.com/konsorten/go-windows-terminal-sequences") - (synopsis "Windows Terminal Sequences") - (description - "This library allow for enabling Windows terminal color support for Go.") - (license license:expat))) - -(define-public go-github-com-sirupsen-logrus-1.6.0 - (package - (name "go-github-com-sirupsen-logrus") - (version "1.6.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sirupsen/logrus") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1zf9is1yxxnna0d1pyag2m9ziy3l27zb2j92p9msm1gx5jjrvzzj")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/sirupsen/logrus")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894" - ,go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894) - ("go-github-com-stretchr-testify-1.2.2" - ,go-github-com-stretchr-testify-1.2.2) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.3" - ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.3) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/sirupsen/logrus") - (synopsis "Logrus") - (description - "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. -") - (license license:expat))) - -(define-public go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262 - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20190425150028-36563e24a262") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0lasi96f6a1h11gkm8kl33x03pmxp369wrqq2dg7x7xv9nq76d6g")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" - ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-golang-org-x-text-0.0.0-20170915032832-14c0d48ead0c - (package - (name "go-golang-org-x-text") - (version "0.0.0-20170915032832-14c0d48ead0c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/text") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0y0nrj4hw7vby6m3iqklbf4v7njqlsx7s4pwfkwmvh1ryn1kb7d6")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/text")) - (home-page "https://golang.org/x/text") - (synopsis "Go Text") - (description - "text is a repository of text-related packages related to internationalization -(i18n) and localization (l10n), such as character encodings, text -transformations, and locale-specific text handling. -") - (license license:bsd-3))) - -(define-public go-rsc-io-sampler-1.3.0 - (package - (name "go-rsc-io-sampler") - (version "1.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/rsc/sampler") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0byxk2ynba50py805kcvbvjzh59l1r308i1xgyzpw6lff4xx9xjh")))) - (build-system go-build-system) - (arguments '(#:import-path "rsc.io/sampler")) - (propagated-inputs - `(("go-golang-org-x-text-0.0.0-20170915032832-14c0d48ead0c" - ,go-golang-org-x-text-0.0.0-20170915032832-14c0d48ead0c))) - (home-page "https://rsc.io/sampler") - (synopsis #f) - (description "Package sampler shows simple texts. -") - (license license:bsd-3))) - -(define-public go-rsc-io-quote-v3-3.1.0 - (package - (name "go-rsc-io-quote-v3") - (version "3.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/rsc/quote") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0nvv97hwwrl1mx5gzsbdm1ndnwpg3m7i2jb10ig9wily7zmvki0i")))) - (build-system go-build-system) - (arguments - '(#:import-path "rsc.io/quote/v3" #:unpack-path "rsc.io/quote/v3")) - (propagated-inputs `(("go-rsc-io-sampler-1.3.0" ,go-rsc-io-sampler-1.3.0))) - (home-page "https://rsc.io/quote/v3") - (synopsis #f) - (description "Package quote collects pithy sayings. -") - (license license:bsd-3))) - -(define-public go-github-com-golang-mock-1.4.1 - (package - (name "go-github-com-golang-mock") - (version "1.4.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/mock") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1zb4n285mv85dh3y2f8fqbs30h2dhzw7vbczr6z0zg2gqr6vzg0q")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/mock")) - (propagated-inputs - `(("go-rsc-io-quote-v3-3.1.0" ,go-rsc-io-quote-v3-3.1.0) - ("go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262" - ,go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262))) - (home-page "https://github.com/golang/mock") - (synopsis "gomock") - (description - "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It -integrates well with Go's built-in @code{testing} package, but can be used in other -contexts too.") - (license license:asl2.0))) - -(define-public go-github-com-golang-protobuf-1.3.4 - (package - (name "go-github-com-golang-protobuf") - (version "1.3.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12dclmj2if8l0069fby4psrpqby7p810dr1dr63nwx93g9jhvkmx")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6 - (package - (name "go-github-com-ianlancetaylor-demangle") - (version "0.0.0-20181102032728-5e5cf60278f6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/ianlancetaylor/demangle") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fhjk11cip9c3jyj1byz9z77n6n2rlxmyz0xjx1zpn1da3cvri75")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/ianlancetaylor/demangle")) - (home-page "https://github.com/ianlancetaylor/demangle") - (synopsis "github.com/ianlancetaylor/demangle") - (description - "Package demangle defines functions that demangle GCC/LLVM -C++ and Rust symbol names. -This package recognizes names that were mangled according to the C++ ABI -defined at @url{http://codesourcery.com/cxx-abi/,http://codesourcery.com/cxx-abi/} and the Rust ABI -defined at -@url{https://rust-lang.github.io/rfcs/2603-rust-symbol-name-mangling-v0.html,https://rust-lang.github.io/rfcs/2603-rust-symbol-name-mangling-v0.html} -") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20191204072324-ce4227a45e2e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1s43wvqfml6ml5ks7iv2bis9d664g77mq86v7mfmjhn56x856g35")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-google-pprof-0.0.0-20200229191704-1ebb73c60ed3 - (package - (name "go-github-com-google-pprof") - (version "0.0.0-20200229191704-1ebb73c60ed3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/pprof") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1gdi9p4j1zfm5xlm488i5l0q3kk4q6hsmbmlk6p729i0di2n3ifa")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/pprof")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" - ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) - ("go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6" - ,go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6) - ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" - ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) - ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" - ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) - ("go-github-com-chzyer-logex-1.1.10" - ,go-github-com-chzyer-logex-1.1.10))) - (home-page "https://github.com/google/pprof") - (synopsis "Introduction") - (description - "pprof is a tool for collection, manipulation and visualization -of performance profiles. -") - (license license:asl2.0))) - -(define-public go-github-com-jstemmer-go-junit-report-0.9.1 - (package - (name "go-github-com-jstemmer-go-junit-report") - (version "0.9.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/jstemmer/go-junit-report") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1knip80yir1cdsjlb3rzy0a4w3kl4ljpiciaz6hjzwqlfhnv7bkw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/jstemmer/go-junit-report")) - (home-page "https://github.com/jstemmer/go-junit-report") - (synopsis "go-junit-report") - (description - "Converts @code{go test} output to an xml report, suitable for applications that -expect junit xml reports (e.g. @url{http://jenkins-ci.org,Jenkins}).") - (license license:expat))) - -(define-public go-golang-org-x-mod-0.1.1-0.20191105210325-c90efee705ee - (package - (name "go-golang-org-x-mod") - (version "0.1.1-0.20191105210325-c90efee705ee") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/mod") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0i5md645rmcy5z5ij9ng428k9rz4g3k1kjy3blsq1264rn426gdf")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/mod")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" - ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) - ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" - ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) - (home-page "https://golang.org/x/mod") - (synopsis "mod") - (description - "This repository holds packages for writing tools -that work directly with Go module mechanics. -That is, it is for direct manipulation of Go modules themselves.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7 - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20200130002326-2f3ba24bd6e7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0j3nnmlwnbivf0h9x89vlp8ji3ha41v96bj33cxwmrrjnxq543ww")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" - ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) - ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" - ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) - ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" - ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) - ("go-golang-org-x-mod-0.1.1-0.20191105210325-c90efee705ee" - ,go-golang-org-x-mod-0.1.1-0.20191105210325-c90efee705ee))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b - (package - (name "go-golang-org-x-lint") - (version "0.0.0-20200302205851-738671d3881b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/lint") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0jkiz4py59jjnkyxbxifpf7bsar11lbgmj5jiq2kic5k03shkn9c")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/lint")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7" - ,go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7))) - (home-page "https://golang.org/x/lint") - (synopsis "Installation") - (description "Package lint contains a linter for Go source code. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20200301022130-244492dfa37a - (package - (name "go-golang-org-x-net") - (version "0.0.0-20200301022130-244492dfa37a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0vm2q44phz4vjnzq9428rjk58c82fxf003whczp7c9ryn9fazh7s")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20200302150141-5c8b2ff67527 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200302150141-5c8b2ff67527") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0r5s7f4w7crrbcf5ydpr2xzsq0svjm332vsds41yp58kwi2lvh2v")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20200304193943-95d2e580d8eb - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20200304193943-95d2e580d8eb") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0f46657xsdc12lr29ksqg80fp0j8v2iqgihzh788avcj5cmhnqyl")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) - ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" - ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) - ("go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b" - ,go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b) - ("go-golang-org-x-mod-0.2.0" ,go-golang-org-x-mod-0.2.0))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-github-com-golang-mock-1.2.0 - (package - (name "go-github-com-golang-mock") - (version "1.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/mock") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12ddj2g8ab87id6n2n67vnbhq6p8dvgsq1pzpqfriym4dk8w54fg")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/mock")) - (home-page "https://github.com/golang/mock") - (synopsis "gomock") - (description - "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It -integrates well with Go's built-in @code{testing} package, but can be used in other -contexts too.") - (license license:asl2.0))) - -(define-public go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c - (package - (name "go-github-com-google-btree") - (version "0.0.0-20180813153112-4030bb1f1f0c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/btree") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ba430m9fbnagacp57krgidsyrgp3ycw5r7dj71brgp5r52g82p6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/btree")) - (home-page "https://github.com/google/btree") - (synopsis "BTree implementation for Go") - (description - "Package btree implements in-memory B-Trees of arbitrary degree. -") - (license license:asl2.0))) - -(define-public go-github-com-google-martian-2.1.0+incompatible - (package - (name "go-github-com-google-martian") - (version "2.1.0+incompatible") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/martian") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "197hil6vrjk50b9wvwyzf61csid83whsjj6ik8mc9r2lryxlyyrp")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/martian")) - (home-page "https://github.com/google/martian") - (synopsis "Martian Proxy") - (description - "Package martian provides an HTTP/1.1 proxy with an API for configurable -request and response modifiers. -") - (license license:asl2.0))) - -(define-public go-github-com-google-pprof-0.0.0-20181206194817-3ea8567a2e57 - (package - (name "go-github-com-google-pprof") - (version "0.0.0-20181206194817-3ea8567a2e57") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/pprof") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "09rhjn3ms0a72dw0yzbp237p7yhqma772zspddn6mgkh3gi3kn4c")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/pprof")) - (home-page "https://github.com/google/pprof") - (synopsis "Introduction") - (description - "pprof is a tool for collection, manipulation and visualization -of performance profiles. -") - (license license:asl2.0))) - -(define-public go-github-com-googleapis-gax-go-v2-2.0.4 - (package - (name "go-github-com-googleapis-gax-go-v2") - (version "2.0.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/gax-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1iwnm6ky1x53lgs44mw3hpdkjzrm5qd0kfs50m0qcq2ml5m1cwdm")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/googleapis/gax-go/v2")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.19.0" - ,go-google-golang-org-grpc-1.19.0))) - (home-page "https://github.com/googleapis/gax-go") - (synopsis #f) - (description - "Package gax contains a set of modules which aid the development of APIs -for clients and servers based on gRPC and Google API conventions. -") - (license license:bsd-3))) - -(define-public go-github-com-jstemmer-go-junit-report-0.0.0-20190106144839-af01ea7f8024 - (package - (name "go-github-com-jstemmer-go-junit-report") - (version "0.0.0-20190106144839-af01ea7f8024") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/jstemmer/go-junit-report") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1lp3n94ris12hac02wi31f3whs88lcrzwgdg43a5j6cafg9p1d0s")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/jstemmer/go-junit-report")) - (home-page "https://github.com/jstemmer/go-junit-report") - (synopsis "go-junit-report") - (description - "Converts @code{go test} output to an xml report, suitable for applications that -expect junit xml reports (e.g. @url{http://jenkins-ci.org,Jenkins}).") - (license license:expat))) - -(define-public go-golang-org-x-text-0.3.1-0.20180807135948-17ff2d5776d2 - (package - (name "go-golang-org-x-text") - (version "0.3.1-0.20180807135948-17ff2d5776d2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/text") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1rrh2mnmyxr45nsvy42zq3w3ly6gw6rl993knwvf1w71kyv0jjnj")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/text")) - (home-page "https://golang.org/x/text") - (synopsis "Go Text") - (description - "text is a repository of text-related packages related to internationalization -(i18n) and localization (l10n), such as character encodings, text -transformations, and locale-specific text handling. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-time-0.0.0-20181108054448-85acf8d2951c - (package - (name "go-golang-org-x-time") - (version "0.0.0-20181108054448-85acf8d2951c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/time") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0yqnxsrarjk4qkda8kcxzmk7y90kkkxzx9iwryzrk7bzs87ky3xc")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/time")) - (home-page "https://golang.org/x/time") - (synopsis "Go Time") - (description "This repository provides supplementary Go time packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f - (package - (name "go-golang-org-x-lint") - (version "0.0.0-20190301231843-5614ed5bae6f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/lint") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0fzn0zjv0x92xvfdq3a0v9w5sgkhr7hxkfy9zaqi8i57807z8bnx")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/lint")) - (home-page "https://golang.org/x/lint") - (synopsis "Installation") - (description "Package lint contains a linter for Go source code. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421 - (package - (name "go-golang-org-x-oauth2") - (version "0.0.0-20190226205417-e64efc72b421") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/oauth2") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0djvwz2avx7knsjbl434vw1wqbrg53xp1kh599gfixn5icrggz4m")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/oauth2")) - (propagated-inputs - `(("go-google-golang-org-appengine-1.4.0" - ,go-google-golang-org-appengine-1.4.0) - ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" - ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) - ("go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e" - ,go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e) - ("go-cloud-google-com-go-0.34.0" ,go-cloud-google-com-go-0.34.0))) - (home-page "https://golang.org/x/oauth2") - (synopsis "OAuth2 for Go") - (description - "Package oauth2 provides support for making -OAuth2 authorized and authenticated HTTP requests, -as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -It can additionally grant authorization with Bearer JWT. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138 - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20190312170243-e65039ee4138") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0c094599cf70wdrms49a3879qkq122pqlp2av444gs2pvc8apdcx")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-google-golang-org-api-0.4.0 - (package - (name "go-google-golang-org-api") - (version "0.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-api-go-client") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1hzgrw5wasmcjlqpxsmryddzzw4cwyzf2vx14i9z51v1plwssijm")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/api")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" - ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) - ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) - ("go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19" - ,go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19) - ("go-google-golang-org-appengine-1.4.0" - ,go-google-golang-org-appengine-1.4.0) - ("go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138" - ,go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138) - ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" - ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) - ("go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421" - ,go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421) - ("go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f" - ,go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f) - ("go-go-opencensus-io-0.21.0" ,go-go-opencensus-io-0.21.0) - ("go-github-com-google-go-cmp-0.2.0" - ,go-github-com-google-go-cmp-0.2.0))) - (home-page "https://google.golang.org/api") - (synopsis "Google APIs Client Library for Go") - (description - "Package api is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of -sub-packages. -") - (license license:bsd-3))) - -(define-public go-google-golang-org-genproto-0.0.0-20190418145605-e7d98fc518a7 - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20190418145605-e7d98fc518a7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1cnavkyawwvfc5yl097ygnfy1ac69v4zc02gdfnq1bvgcvgmvnbi")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" - ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) - ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) - ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" - ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) - ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" - ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) - ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" - ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd) - ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" - ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) - ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" - ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-honnef-co-go-tools-0.0.0-20190106161140-3f1c8253044a - (package - (name "go-honnef-co-go-tools") - (version "0.0.0-20190106161140-3f1c8253044a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/dominikh/go-tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0d3vgh0fgfj1z7i648g1s6x2pwxd07sxfjwg1xn3yagr9h06jh3h")))) - (build-system go-build-system) - (arguments '(#:import-path "honnef.co/go/tools")) - (home-page "https://honnef.co/go/tools") - (synopsis "Documentation") - (description - "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, -offers simplifications, and enforces style rules.") - (license license:expat))) - -(define-public go-cloud-google-com-go-0.38.0 - (package - (name "go-cloud-google-com-go") - (version "0.38.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-cloud-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0n6n13b7lri2fmc4bn4ifszyawj31dpbzvyv0xafsf81440z8cyh")))) - (build-system go-build-system) - (arguments '(#:import-path "cloud.google.com/go")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190106161140-3f1c8253044a" - ,go-honnef-co-go-tools-0.0.0-20190106161140-3f1c8253044a) - ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) - ("go-google-golang-org-genproto-0.0.0-20190418145605-e7d98fc518a7" - ,go-google-golang-org-genproto-0.0.0-20190418145605-e7d98fc518a7) - ("go-google-golang-org-api-0.4.0" ,go-google-golang-org-api-0.4.0) - ("go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138" - ,go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138) - ("go-golang-org-x-time-0.0.0-20181108054448-85acf8d2951c" - ,go-golang-org-x-time-0.0.0-20181108054448-85acf8d2951c) - ("go-golang-org-x-text-0.3.1-0.20180807135948-17ff2d5776d2" - ,go-golang-org-x-text-0.3.1-0.20180807135948-17ff2d5776d2) - ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" - ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) - ("go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421" - ,go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421) - ("go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f" - ,go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f) - ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" - ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) - ("go-go-opencensus-io-0.21.0" ,go-go-opencensus-io-0.21.0) - ("go-github-com-jstemmer-go-junit-report-0.0.0-20190106144839-af01ea7f8024" - ,go-github-com-jstemmer-go-junit-report-0.0.0-20190106144839-af01ea7f8024) - ("go-github-com-googleapis-gax-go-v2-2.0.4" - ,go-github-com-googleapis-gax-go-v2-2.0.4) - ("go-github-com-google-pprof-0.0.0-20181206194817-3ea8567a2e57" - ,go-github-com-google-pprof-0.0.0-20181206194817-3ea8567a2e57) - ("go-github-com-google-martian-2.1.0+incompatible" - ,go-github-com-google-martian-2.1.0+incompatible) - ("go-github-com-google-go-cmp-0.2.0" - ,go-github-com-google-go-cmp-0.2.0) - ("go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c" - ,go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0) - ("go-github-com-golang-mock-1.2.0" ,go-github-com-golang-mock-1.2.0))) - (home-page "https://cloud.google.com/go") - (synopsis "Google Cloud Client Libraries for Go") - (description - "Package cloud is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -of sub-packages. -") - (license license:asl2.0))) - -(define-public go-github-com-googleapis-gax-go-v2-2.0.5 - (package - (name "go-github-com-googleapis-gax-go-v2") - (version "2.0.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/gax-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1lxawwngv6miaqd25s3ba0didfzylbwisd2nz7r4gmbmin6jsjrx")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/googleapis/gax-go/v2")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.19.0" - ,go-google-golang-org-grpc-1.19.0))) - (home-page "https://github.com/googleapis/gax-go") - (synopsis #f) - (description - "Package gax contains a set of modules which aid the development of APIs -for clients and servers based on gRPC and Google API conventions. -") - (license license:bsd-3))) - -(define-public go-github-com-hashicorp-golang-lru-0.5.0 - (package - (name "go-github-com-hashicorp-golang-lru") - (version "0.5.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/golang-lru") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12k2cp2k615fjvfa5hyb9k2alian77wivds8s65diwshwv41939f")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/golang-lru")) - (home-page "https://github.com/hashicorp/golang-lru") - (synopsis "golang-lru") - (description - "Package lru provides three different LRU caches of varying sophistication. -") - (license license:mpl2.0))) - -(define-public go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19 - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20190307195333-5fe7a883aa19") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0qjkwig0r42q0j2qv57s4ahsgmmp41dz3ih3rnaqg0619n5w7lbs")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" - ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) - ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) - ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" - ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) - ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" - ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) - ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" - ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd) - ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" - ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) - ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" - ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-go-opencensus-io-0.21.0 - (package - (name "go-go-opencensus-io") - (version "0.21.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/census-instrumentation/opencensus-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "14s0a12xdzjvad0dgksgv8m3hh7nc585abvjkvyk6r67a29lxj6x")))) - (build-system go-build-system) - (arguments '(#:import-path "go.opencensus.io")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) - ("go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19" - ,go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-github-com-hashicorp-golang-lru-0.5.0" - ,go-github-com-hashicorp-golang-lru-0.5.0) - ("go-github-com-google-go-cmp-0.2.0" - ,go-github-com-google-go-cmp-0.2.0) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0))) - (home-page "https://go.opencensus.io") - (synopsis "OpenCensus Libraries for Go") - (description "Package opencensus contains Go support for OpenCensus. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-net-0.0.0-20190503192946-f4e77d36d62c - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190503192946-f4e77d36d62c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0avjnglqqg9ya0cbhp23m4namykii219kxjywxn4cd7pfcc5arha")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45 - (package - (name "go-golang-org-x-oauth2") - (version "0.0.0-20190604053449-0f29369cfe45") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/oauth2") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "06jwpvx0x2gjn2y959drbcir5kd7vg87k0r1216abk6rrdzzrzi2")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/oauth2")) - (propagated-inputs - `(("go-google-golang-org-appengine-1.4.0" - ,go-google-golang-org-appengine-1.4.0) - ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" - ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) - ("go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e" - ,go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e) - ("go-cloud-google-com-go-0.34.0" ,go-cloud-google-com-go-0.34.0))) - (home-page "https://golang.org/x/oauth2") - (synopsis "OAuth2 for Go") - (description - "Package oauth2 provides support for making -OAuth2 authorized and authenticated HTTP requests, -as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -It can additionally grant authorization with Bearer JWT. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190507160741-ecd444e8653b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1vhld4948mzfnlgf20id29mv1bwpk9a3xlbw1mbjzxzxxdv1jds2")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-google-golang-org-appengine-1.5.0 - (package - (name "go-google-golang-org-appengine") - (version "1.5.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/appengine") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0l7mkdnwhidv8m686x432vmx8z5nqcrr9f46ddgvrxbh4wvyfcll")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/appengine")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225" - ,go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0))) - (home-page "https://google.golang.org/appengine") - (synopsis "Go App Engine packages") - (description - "Package appengine provides basic functionality for Google App Engine. -") - (license license:asl2.0))) - -(define-public go-google-golang-org-api-0.20.0 - (package - (name "go-google-golang-org-api") - (version "0.20.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-api-go-client") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "13syr1x33k6mrn5w6l4sgdbzn368w3m60vf6kk2j10fwa45125rg")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/api")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" - ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" - ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) - ("go-google-golang-org-appengine-1.5.0" - ,go-google-golang-org-appengine-1.5.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) - ("go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b" - ,go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b) - ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" - ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) - ("go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45" - ,go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45) - ("go-golang-org-x-net-0.0.0-20190503192946-f4e77d36d62c" - ,go-golang-org-x-net-0.0.0-20190503192946-f4e77d36d62c) - ("go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422" - ,go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422) - ("go-go-opencensus-io-0.21.0" ,go-go-opencensus-io-0.21.0) - ("go-github-com-hashicorp-golang-lru-0.5.1" - ,go-github-com-hashicorp-golang-lru-0.5.1) - ("go-github-com-googleapis-gax-go-v2-2.0.5" - ,go-github-com-googleapis-gax-go-v2-2.0.5) - ("go-github-com-google-go-cmp-0.3.0" - ,go-github-com-google-go-cmp-0.3.0) - ("go-cloud-google-com-go-0.38.0" ,go-cloud-google-com-go-0.38.0))) - (home-page "https://google.golang.org/api") - (synopsis "Google APIs Client Library for Go") - (description - "Package api is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of -sub-packages. -") - (license license:bsd-3))) - -(define-public go-google-golang-org-genproto-0.0.0-20200305110556-506484158171 - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20200305110556-506484158171") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19h7sxkfjcrkm7majd0pyzzirdnk1qlsxc3h5zklhm234d8jg407")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" - ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-golang-protobuf-1.3.3" - ,go-github-com-golang-protobuf-1.3.3))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-github-com-google-renameio-0.1.0 - (package - (name "go-github-com-google-renameio") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/renameio") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ki2x5a9nrj17sn092d6n4zr29lfg5ydv4xz5cp58z6cw8ip43jx")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/renameio")) - (home-page "https://github.com/google/renameio") - (synopsis "Atomicity vs durability") - (description - "Package renameio provides a way to atomically create or replace a file or -symbolic link. -") - (license license:asl2.0))) - -(define-public go-gopkg-in-errgo-v2-2.1.0 - (package - (name "go-gopkg-in-errgo-v2") - (version "2.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/errgo.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "065mbihiy7q67wnql0bzl9y1kkvck5ivra68254zbih52jxwrgr2")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/errgo.v2" #:unpack-path "gopkg.in/errgo.v2")) - (propagated-inputs - `(("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" - ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) - ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0))) - (home-page "https://gopkg.in/errgo.v2") - (synopsis #f) - (description - "Package errgo provides some primitives for error creation and handling.") - (license license:bsd-3))) - -(define-public go-github-com-rogpeppe-go-internal-1.3.0 - (package - (name "go-github-com-rogpeppe-go-internal") - (version "1.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/rogpeppe/go-internal") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0mcdh1licgnnahwml9y2iq6xy5x9xmjw5frcnds2s3wpjyqrl216")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/rogpeppe/go-internal")) - (propagated-inputs - `(("go-gopkg-in-errgo-v2-2.1.0" ,go-gopkg-in-errgo-v2-2.1.0))) - (home-page "https://github.com/rogpeppe/go-internal") - (synopsis #f) - (description - "This repository factors out an opinionated selection of internal packages and functionality from the Go standard -library. Currently this consists mostly of packages and testing code from within the Go tool implementation.") - (license license:bsd-3))) - -(define-public go-golang-org-x-crypto-0.0.0-20190510104115-cbcb75029529 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20190510104115-cbcb75029529") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12831ga1gq04a3jbbcmww7kaqfdfgp7cdv2fj9aqidz8h52ajdmh")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" - ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) - ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" - ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-mod-0.0.0-20190513183733-4bf6d317e70e - (package - (name "go-golang-org-x-mod") - (version "0.0.0-20190513183733-4bf6d317e70e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/mod") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19lg1ly3j31anx92p0hynic1gjk417wwxphfdrb2cq1c19kj3r17")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/mod")) - (propagated-inputs - `(("go-golang-org-x-crypto-0.0.0-20190510104115-cbcb75029529" - ,go-golang-org-x-crypto-0.0.0-20190510104115-cbcb75029529))) - (home-page "https://golang.org/x/mod") - (synopsis "mod") - (description - "This repository holds packages for writing tools -that work directly with Go module mechanics. -That is, it is for direct manipulation of Go modules themselves.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20191130070609-6e064ea0cf2d - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20191130070609-6e064ea0cf2d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1nbki367xspsa37j6276f5q2gv31vfjpb52axn3p3ymz548my75d")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7" - ,go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7) - ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" - ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) - ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" - ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-honnef-co-go-tools-0.0.1-2020.1.3 - (package - (name "go-honnef-co-go-tools") - (version "0.0.1-2020.1.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/dominikh/go-tools") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0pvi1mzhy6zgx4zfgdypbl4zhvgg11hl5qv7blf2qs0a96j2djhf")))) - (build-system go-build-system) - (arguments '(#:import-path "honnef.co/go/tools")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20191130070609-6e064ea0cf2d" - ,go-golang-org-x-tools-0.0.0-20191130070609-6e064ea0cf2d) - ("go-golang-org-x-mod-0.0.0-20190513183733-4bf6d317e70e" - ,go-golang-org-x-mod-0.0.0-20190513183733-4bf6d317e70e) - ("go-github-com-rogpeppe-go-internal-1.3.0" - ,go-github-com-rogpeppe-go-internal-1.3.0) - ("go-github-com-kisielk-gotool-1.0.0" - ,go-github-com-kisielk-gotool-1.0.0) - ("go-github-com-google-renameio-0.1.0" - ,go-github-com-google-renameio-0.1.0) - ("go-github-com-burntsushi-toml-0.3.1" - ,go-github-com-burntsushi-toml-0.3.1))) - (home-page "https://honnef.co/go/tools") - (synopsis "Documentation") - (description - "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, -offers simplifications, and enforces style rules.") - (license license:expat))) - -(define-public go-cloud-google-com-go-0.54.0 - (package - (name "go-cloud-google-com-go") - (version "0.54.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-cloud-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ilqqymrphg546c66jc0npd48dlr88wbgrg462h1jgm2ykbnq1ba")))) - (build-system go-build-system) - (arguments '(#:import-path "cloud.google.com/go")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.1-2020.1.3" - ,go-honnef-co-go-tools-0.0.1-2020.1.3) - ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) - ("go-google-golang-org-genproto-0.0.0-20200305110556-506484158171" - ,go-google-golang-org-genproto-0.0.0-20200305110556-506484158171) - ("go-google-golang-org-api-0.20.0" ,go-google-golang-org-api-0.20.0) - ("go-golang-org-x-tools-0.0.0-20200304193943-95d2e580d8eb" - ,go-golang-org-x-tools-0.0.0-20200304193943-95d2e580d8eb) - ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) - ("go-golang-org-x-sys-0.0.0-20200302150141-5c8b2ff67527" - ,go-golang-org-x-sys-0.0.0-20200302150141-5c8b2ff67527) - ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" - ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) - ("go-golang-org-x-net-0.0.0-20200301022130-244492dfa37a" - ,go-golang-org-x-net-0.0.0-20200301022130-244492dfa37a) - ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" - ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) - ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) - ("go-github-com-jstemmer-go-junit-report-0.9.1" - ,go-github-com-jstemmer-go-junit-report-0.9.1) - ("go-github-com-googleapis-gax-go-v2-2.0.5" - ,go-github-com-googleapis-gax-go-v2-2.0.5) - ("go-github-com-google-pprof-0.0.0-20200229191704-1ebb73c60ed3" - ,go-github-com-google-pprof-0.0.0-20200229191704-1ebb73c60ed3) - ("go-github-com-google-martian-2.1.0+incompatible" - ,go-github-com-google-martian-2.1.0+incompatible) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.3.4" - ,go-github-com-golang-protobuf-1.3.4) - ("go-github-com-golang-mock-1.4.1" ,go-github-com-golang-mock-1.4.1) - ("go-cloud-google-com-go-storage-1.6.0" - ,go-cloud-google-com-go-storage-1.6.0) - ("go-cloud-google-com-go-pubsub-1.2.0" - ,go-cloud-google-com-go-pubsub-1.2.0) - ("go-cloud-google-com-go-datastore-1.1.0" - ,go-cloud-google-com-go-datastore-1.1.0) - ("go-cloud-google-com-go-bigquery-1.4.0" - ,go-cloud-google-com-go-bigquery-1.4.0))) - (home-page "https://cloud.google.com/go") - (synopsis "Google Cloud Client Libraries for Go") - (description - "Package cloud is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -of sub-packages. -") - (license license:asl2.0))) - -(define-public go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7 - (package - (name "go-github-com-gregjones-httpcache") - (version "0.0.0-20180305231024-9cad4c3443a7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gregjones/httpcache") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0wjdwcwqqcx2d5y68qvhg6qyj977il5ijmnn9h9cd6wjbdy0ay6s")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/gregjones/httpcache")) - (home-page "https://github.com/gregjones/httpcache") - (synopsis "httpcache") - (description - "Package httpcache provides a http.RoundTripper implementation that works as a -mostly RFC-compliant cache for http responses. -") - (license license:expat))) - -(define-public go-github-com-imdario-mergo-0.3.5 - (package - (name "go-github-com-imdario-mergo") - (version "0.3.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/imdario/mergo") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1mvgn89vp39gcpvhiq4n7nw5ipj7fk6h03jgc6fjwgvwvss213pb")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/imdario/mergo")) - (home-page "https://github.com/imdario/mergo") - (synopsis "Mergo") - (description - "This package provides a helper to merge structs and maps in Golang. Useful for configuration default values, avoiding messy if-statements. -") - (license license:bsd-3))) - -(define-public go-github-com-peterbourgon-diskv-2.0.1+incompatible - (package - (name "go-github-com-peterbourgon-diskv") - (version "2.0.1+incompatible") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/peterbourgon/diskv") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1mxpa5aad08x30qcbffzk80g9540wvbca4blc1r2qyzl65b8929b")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/peterbourgon/diskv")) - (home-page "https://github.com/peterbourgon/diskv") - (synopsis "What is diskv?") - (description - "Diskv (disk-vee) is a simple, persistent key-value store written in the Go -language. It starts with an incredibly simple API for storing arbitrary data on -a filesystem by key, and builds several layers of performance-enhancing -abstraction on top. The end result is a conceptually simple, but highly -performant, disk-backed storage system.") - (license license:expat))) - -(define-public go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20201002170205-7f63de1d35b0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1dr89jfs4dmpr3jqfshqqvfpzzdx4r76nkzhrvmixfrmn6wxrnd1")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" - ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) - ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" - ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e - (package - (name "go-golang-org-x-time") - (version "0.0.0-20200630173020-3af7569d3a1e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/time") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "05hqhw3vlssi499y6m41zgdp1yyjsw2kj95ahymlw6pkhsssh2vq")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/time")) - (home-page "https://golang.org/x/time") - (synopsis "Go Time") - (description "This repository provides supplementary Go time packages.") - (license license:bsd-3))) - -(define-public go-k8s-io-api-0.20.6 - (package - (name "go-k8s-io-api") - (version "0.20.6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes/api") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0mm6a91a4nrlsvnfcbgn2574vdwxf1nxpgrd5avklh8mym2ngimw")))) - (build-system go-build-system) - (arguments '(#:import-path "k8s.io/api")) - (propagated-inputs - `(("go-k8s-io-apimachinery-0.20.6" ,go-k8s-io-apimachinery-0.20.6) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2))) - (home-page "https://k8s.io/api") - (synopsis "api") - (description - "Schema of the external API types that are served by the Kubernetes API server.") - (license license:asl2.0))) - -(define-public go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96 - (package - (name "go-github-com-docker-spdystream") - (version "0.0.0-20160310174837-449fdfce4d96") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/moby/spdystream") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1412cpiis971iq1kxrirzirhj2708ispjh0x0dh879b66x8507sl")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/docker/spdystream")) - (home-page "https://github.com/docker/spdystream") - (synopsis "SpdyStream") - (description - "This package provides a multiplexed stream library using spdy") - (license license:asl2.0))) - -(define-public go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153 - (package - (name "go-github-com-elazarl-goproxy") - (version "0.0.0-20180725130230-947c36da3153") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/elazarl/goproxy") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0lmsnr5xmda89wig8sw62llg6acjb5caghz5jmdhnm85rm6rnssk")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/elazarl/goproxy")) - (home-page "https://github.com/elazarl/goproxy") - (synopsis "Introduction") - (description - "Taken from $GOROOT/src/pkg/net/http/chunked -needed to write https responses to client. -") - (license license:bsd-3))) - -(define-public go-github-com-evanphx-json-patch-4.9.0+incompatible - (package - (name "go-github-com-evanphx-json-patch") - (version "4.9.0+incompatible") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/evanphx/json-patch") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1r88qpzjxsx8skij9s5pi4a5qcv4bm18vq8sy21gpwgzp3qf6qzx")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/evanphx/json-patch")) - (home-page "https://github.com/evanphx/json-patch") - (synopsis "JSON-Patch") - (description - "@code{jsonpatch} is a library which provides functionality for both applying -@url{http://tools.ietf.org/html/rfc6902,RFC6902 JSON patches} against documents, as -well as for calculating & applying @url{https://tools.ietf.org/html/rfc7396,RFC7396 JSON merge patches}.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20191005200804-aed5e4c7ecf9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0wsdsbl9n61l99z0cvib2xzg56fsfgky4yc5xapdw9ywx9h0zm3a")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-fsnotify-fsnotify-1.4.9 - (package - (name "go-github-com-fsnotify-fsnotify") - (version "1.4.9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/fsnotify/fsnotify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1i1r72knpbfwwql9frn9bqc3nhfc2ai5m6qllcyr6wban62lr40x")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/fsnotify/fsnotify")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9" - ,go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9))) - (home-page "https://github.com/fsnotify/fsnotify") - (synopsis "File system notifications for Go") - (description - "Package fsnotify provides a platform-independent interface for file system notifications. -") - (license license:bsd-3))) - -(define-public go-github-com-google-gofuzz-1.1.0 - (package - (name "go-github-com-google-gofuzz") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/gofuzz") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0si2fiigj45vr4jnw4grjhls7nw56wkwinnn93gqbl9ng9ynw8rx")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/gofuzz")) - (home-page "https://github.com/google/gofuzz") - (synopsis "gofuzz") - (description - "Package fuzz is a library for populating go objects with random values. -") - (license license:asl2.0))) - -(define-public go-github-com-hashicorp-golang-lru-0.5.1 - (package - (name "go-github-com-hashicorp-golang-lru") - (version "0.5.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/golang-lru") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "13f870cvk161bzjj6x41l45r5x9i1z9r2ymwmvm7768kg08zznpy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/golang-lru")) - (home-page "https://github.com/hashicorp/golang-lru") - (synopsis "golang-lru") - (description - "Package lru provides three different LRU caches of varying sophistication. -") - (license license:mpl2.0))) - -(define-public go-github-com-modern-go-reflect2-0.0.0-20180701023420-4b7aa43c6742 - (package - (name "go-github-com-modern-go-reflect2") - (version "0.0.0-20180701023420-4b7aa43c6742") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/modern-go/reflect2") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1721y3yr3dpx5dx5ashf063qczk2awy5zjir1jvp1h5hn7qz4i49")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/modern-go/reflect2")) - (home-page "https://github.com/modern-go/reflect2") - (synopsis "reflect2") - (description "reflect api that avoids runtime reflect.Value cost") - (license license:asl2.0))) - -(define-public go-github-com-json-iterator-go-1.1.10 - (package - (name "go-github-com-json-iterator-go") - (version "1.1.10") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/json-iterator/go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "134zwc2pmf8nd90r8065wsl6vv1mwjl23bs70i08dzhw5h98drr4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/json-iterator/go")) - (propagated-inputs - `(("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0) - ("go-github-com-modern-go-reflect2-0.0.0-20180701023420-4b7aa43c6742" - ,go-github-com-modern-go-reflect2-0.0.0-20180701023420-4b7aa43c6742) - ("go-github-com-modern-go-concurrent-0.0.0-20180228061459-e0a39a4cb421" - ,go-github-com-modern-go-concurrent-0.0.0-20180228061459-e0a39a4cb421) - ("go-github-com-google-gofuzz-1.0.0" - ,go-github-com-google-gofuzz-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/json-iterator/go") - (synopsis "Benchmark") - (description - "Package jsoniter implements encoding and decoding of JSON as defined in -@url{https://rfc-editor.org/rfc/rfc4627.html,RFC 4627} and provides interfaces with identical syntax of standard lib encoding/json. -Converting from encoding/json to jsoniter is no more than replacing the package with jsoniter -and variable type declarations (if any). -jsoniter interfaces gives 100% compatibility with code using standard lib. -") - (license license:expat))) - -(define-public go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f - (package - (name "go-github-com-mxk-go-flowrate") - (version "0.0.0-20140419014527-cca7078d478f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mxk/go-flowrate") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0zqs39923ja0yypdmiqk6x8pgmfs3ms5x5sl1dqv9z6zyx2xy541")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mxk/go-flowrate")) - (home-page "https://github.com/mxk/go-flowrate") - (synopsis #f) - (description #f) - (license license:bsd-3))) - -(define-public go-github-com-onsi-ginkgo-1.11.0 - (package - (name "go-github-com-onsi-ginkgo") - (version "1.11.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/onsi/ginkgo") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1vxmb5k89bq50m2kzcw5l3bdvci4czpifkgxd4nbq1yzv5ir03kp")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/onsi/ginkgo")) - (home-page "https://github.com/onsi/ginkgo") - (synopsis "Ginkgo 2.0 Release Candidate is available!") - (description "Ginkgo is a BDD-style testing framework for Golang -") - (license license:expat))) - -(define-public go-github-com-hpcloud-tail-1.0.0 - (package - (name "go-github-com-hpcloud-tail") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hpcloud/tail") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1njpzc0pi1acg5zx9y6vj9xi6ksbsc5d387rd6904hy6rh2m6kn0")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hpcloud/tail")) - (home-page "https://github.com/hpcloud/tail") - (synopsis "Go package for tail-ing files") - (description - "This package provides a Go package striving to emulate the features of the BSD @code{tail} program.") - (license license:expat))) - -(define-public go-github-com-onsi-ginkgo-1.6.0 - (package - (name "go-github-com-onsi-ginkgo") - (version "1.6.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/onsi/ginkgo") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0x0gc89vgq38xhgmi2h22bhr73cf2gmk42g89nz89k8dgg9hhr25")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/onsi/ginkgo")) - (home-page "https://github.com/onsi/ginkgo") - (synopsis "Ginkgo 2.0 Release Candidate is available!") - (description "Ginkgo is a BDD-style testing framework for Golang -") - (license license:expat))) - -(define-public go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd - (package - (name "go-golang-org-x-net") - (version "0.0.0-20180906233101-161cd47e91fd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0254ld010iijygbzykib2vags1dc0wlmcmhgh4jl8iny159lhbcv")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20180909124046-d0be0721c37e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "081wyvfnlf842dqg03raxfz6lldlxpmyh1prix9lmrrm65arxb12")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-gopkg-in-fsnotify-v1-1.4.7 - (package - (name "go-gopkg-in-fsnotify-v1") - (version "1.4.7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/fsnotify.v1") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) - (build-system go-build-system) - (arguments - '(#:import-path - "gopkg.in/fsnotify.v1" - #:unpack-path - "gopkg.in/fsnotify.v1")) - (home-page "https://gopkg.in/fsnotify.v1") - (synopsis "File system notifications for Go") - (description - "Package fsnotify provides a platform-independent interface for file system notifications. -") - (license license:bsd-3))) - -(define-public go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7 - (package - (name "go-gopkg-in-tomb-v1") - (version "1.0.0-20141024135613-dd632973f1e7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/tomb.v1") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1lqmq1ag7s4b3gc3ddvr792c5xb5k6sfn0cchr3i2s7f1c231zjv")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/tomb.v1" #:unpack-path "gopkg.in/tomb.v1")) - (home-page "https://gopkg.in/tomb.v1") - (synopsis "Installation and usage") - (description - "The tomb package offers a conventional API for clean goroutine termination. -") - (license license:bsd-3))) - -(define-public go-github-com-onsi-gomega-1.7.0 - (package - (name "go-github-com-onsi-gomega") - (version "1.7.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/onsi/gomega") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "09j6wq425wgzzsbwm9ckhfgl2capv3yyqbrf45qyrjwkzm49i02y")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/onsi/gomega")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1) - ("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" - ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) - ("go-gopkg-in-fsnotify-v1-1.4.7" ,go-gopkg-in-fsnotify-v1-1.4.7) - ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e" - ,go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e) - ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" - ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) - ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" - ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) - ("go-github-com-onsi-ginkgo-1.6.0" ,go-github-com-onsi-ginkgo-1.6.0) - ("go-github-com-hpcloud-tail-1.0.0" ,go-github-com-hpcloud-tail-1.0.0) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0) - ("go-github-com-fsnotify-fsnotify-1.4.7" - ,go-github-com-fsnotify-fsnotify-1.4.7))) - (home-page "https://github.com/onsi/gomega") - (synopsis ": a BDD Testing Framework for Golang") - (description - "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library. -") - (license license:expat))) - -(define-public go-github-com-spf13-pflag-1.0.5 - (package - (name "go-github-com-spf13-pflag") - (version "1.0.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/spf13/pflag") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0gpmacngd0gpslnbkzi263f5ishigzgh6pbdv9hp092rnjl4nd31")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/spf13/pflag")) - (home-page "https://github.com/spf13/pflag") - (synopsis "Description") - (description - "Package pflag is a drop-in replacement for Go's flag package, implementing -POSIX/GNU-style --flags. -") - (license license:bsd-3))) - -(define-public go-gopkg-in-inf-v0-0.9.1 - (package - (name "go-gopkg-in-inf-v0") - (version "0.9.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/inf.v0") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "00k5iqjcp371fllqxncv7jkf80hn1zww92zm78cclbcn4ybigkng")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/inf.v0" #:unpack-path "gopkg.in/inf.v0")) - (home-page "https://gopkg.in/inf.v0") - (synopsis #f) - (description - "Package inf (type inf.Dec) implements \"infinite-precision\" decimal -arithmetic. -\"Infinite precision\" describes two characteristics: practically unlimited -precision for decimal number representation and no support for calculating -with any specific fixed precision. -(Although there is no practical limit on precision, inf.Dec can only -represent finite decimals.) -") - (license license:bsd-3))) - -(define-public go-github-com-nytimes-gziphandler-0.0.0-20170623195520-56545f4a5d46 - (package - (name "go-github-com-nytimes-gziphandler") - (version "0.0.0-20170623195520-56545f4a5d46") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/nytimes/gziphandler") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fwk9wz6vrvq72f2gq8jhvd1nvv6grqgwrjq66vjpm0726pxar72")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/NYTimes/gziphandler")) - (home-page "https://github.com/NYTimes/gziphandler") - (synopsis "Gzip Handler") - (description - "This is a tiny Go package which wraps HTTP handlers to transparently gzip the -response body, for clients which support it. Although it's usually simpler to -leave that to a reverse proxy (like nginx or Varnish), this package is useful -when that's undesirable.") - (license license:asl2.0))) - -(define-public go-github-com-asaskevich-govalidator-0.0.0-20190424111038-f61b66f89f4a - (package - (name "go-github-com-asaskevich-govalidator") - (version "0.0.0-20190424111038-f61b66f89f4a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/asaskevich/govalidator") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1jzjd9ak4byb83bwhbyrrdclnhrgglyxcbr4d4qh39a6ywvcijm5")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/asaskevich/govalidator")) - (home-page "https://github.com/asaskevich/govalidator") - (synopsis "govalidator") - (description - "Package govalidator is package of validators and sanitizers for strings, structs and collections. -") - (license license:expat))) - -(define-public go-github-com-emicklei-go-restful-0.0.0-20170410110728-ff4f55a20633 - (package - (name "go-github-com-emicklei-go-restful") - (version "0.0.0-20170410110728-ff4f55a20633") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/emicklei/go-restful") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1v5lj5142abz3gvbygp6xghpdx4ps2lwswl8559ivaidahwnc21c")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/emicklei/go-restful")) - (home-page "https://github.com/emicklei/go-restful") - (synopsis "go-restful") - (description - "Package restful , a lean package for creating REST-style WebServices without magic. -") - (license license:expat))) - -(define-public go-github-com-ghodss-yaml-0.0.0-20150909031657-73d445a93680 - (package - (name "go-github-com-ghodss-yaml") - (version "0.0.0-20150909031657-73d445a93680") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/ghodss/yaml") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0pg53ky4sy3sp9j4n7vgf1p3gw4nbckwqfldcmmi9rf13kjh0mr7")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/ghodss/yaml")) - (home-page "https://github.com/ghodss/yaml") - (synopsis "YAML marshaling and unmarshaling support for Go") - (description - "Copyright 2013 The Go Authors. All rights reserved. -Use of this source code is governed by a BSD-style -license that can be found in the LICENSE file. -") - (license #f))) - -(define-public go-github-com-go-openapi-jsonreference-0.19.3 - (package - (name "go-github-com-go-openapi-jsonreference") - (version "0.19.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/go-openapi/jsonreference") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ln21xai74fynwmi4ck5j0c70yszjy96wfagc705y8khjxsgncsw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/go-openapi/jsonreference")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) - ("go-golang-org-x-net-0.0.0-20190827160401-ba9fcec4b297" - ,go-golang-org-x-net-0.0.0-20190827160401-ba9fcec4b297) - ("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0) - ("go-github-com-go-openapi-jsonpointer-0.19.3" - ,go-github-com-go-openapi-jsonpointer-0.19.3) - ("go-github-com-puerkitobio-urlesc-0.0.0-20170810143723-de5bf2ad4578" - ,go-github-com-puerkitobio-urlesc-0.0.0-20170810143723-de5bf2ad4578) - ("go-github-com-puerkitobio-purell-1.1.1" - ,go-github-com-puerkitobio-purell-1.1.1))) - (home-page "https://github.com/go-openapi/jsonreference") - (synopsis "gojsonreference") - (description - "@url{https://raw.githubusercontent.com/go-openapi/jsonreference/master/LICENSE,(img (@ (src http://img.shields.io/badge/license-Apache%20v2-orange.svg) (alt license)))} @url{http://godoc.org/github.com/go-openapi/jsonreference,(img (@ (src https://godoc.org/github.com/go-openapi/jsonreference?status.svg=) (alt GoDoc)))} -An implementation of JSON Reference - Go language") - (license license:asl2.0))) - -(define-public go-github-com-mailru-easyjson-0.0.0-20190626092158-b2ccc519800e - (package - (name "go-github-com-mailru-easyjson") - (version "0.0.0-20190626092158-b2ccc519800e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mailru/easyjson") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0q85h383mhbkcjm2vqm72bi8n2252fv3c56q3lclzb8n2crnjcdk")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mailru/easyjson")) - (home-page "https://github.com/mailru/easyjson") - (synopsis "easyjson") - (description - "Package easyjson contains marshaler/unmarshaler interfaces and helper functions. -") - (license license:expat))) - -(define-public go-github-com-go-openapi-jsonpointer-0.19.3 - (package - (name "go-github-com-go-openapi-jsonpointer") - (version "0.19.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/go-openapi/jsonpointer") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1m4bb7c5y8ss2s8wl50k7lsk84nl4lcldkbkphrfdl21y51gz4jr")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/go-openapi/jsonpointer")) - (propagated-inputs - `(("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0) - ("go-github-com-mailru-easyjson-0.0.0-20190626092158-b2ccc519800e" - ,go-github-com-mailru-easyjson-0.0.0-20190626092158-b2ccc519800e) - ("go-github-com-go-openapi-swag-0.19.5" - ,go-github-com-go-openapi-swag-0.19.5))) - (home-page "https://github.com/go-openapi/jsonpointer") - (synopsis "gojsonpointer") - (description - "@url{https://raw.githubusercontent.com/go-openapi/jsonpointer/master/LICENSE,(img (@ (src http://img.shields.io/badge/license-Apache%20v2-orange.svg) (alt license)))} @url{http://godoc.org/github.com/go-openapi/jsonpointer,(img (@ (src https://godoc.org/github.com/go-openapi/jsonpointer?status.svg=) (alt GoDoc)))} -An implementation of JSON Pointer - Go language") - (license license:asl2.0))) - -(define-public go-github-com-puerkitobio-purell-1.1.1 - (package - (name "go-github-com-puerkitobio-purell") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/PuerkitoBio/purell") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0c525frsxmalrn55hzzsxy17ng8avkd40ga0wxfw9haxsdjgqdqy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/PuerkitoBio/purell")) - (home-page "https://github.com/PuerkitoBio/purell") - (synopsis "Purell") - (description - "Package purell offers URL normalization as described on the wikipedia page: -@url{http://en.wikipedia.org/wiki/URL_normalization,http://en.wikipedia.org/wiki/URL_normalization} -") - (license license:bsd-3))) - -(define-public go-github-com-puerkitobio-urlesc-0.0.0-20170810143723-de5bf2ad4578 - (package - (name "go-github-com-puerkitobio-urlesc") - (version "0.0.0-20170810143723-de5bf2ad4578") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/PuerkitoBio/urlesc") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0n0srpqwbaan1wrhh2b7ysz543pjs1xw2rghvqyffg9l0g8kzgcw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/PuerkitoBio/urlesc")) - (home-page "https://github.com/PuerkitoBio/urlesc") - (synopsis "urlesc") - (description - "Package urlesc implements query escaping as per @url{https://rfc-editor.org/rfc/rfc3986.html,RFC 3986}. -It contains some parts of the net/url package, modified so as to allow -some reserved characters incorrectly escaped by net/url. -See @url{https://github.com/golang/go/issues/5684,https://github.com/golang/go/issues/5684} -") - (license license:bsd-3))) - -(define-public go-github-com-go-openapi-swag-0.19.2 - (package - (name "go-github-com-go-openapi-swag") - (version "0.19.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/go-openapi/swag") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1mlxlajx2p9wjm72rmqjrx5g49q2sn04y45s3nrykkf6jqlq1v4z")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/go-openapi/swag")) - (propagated-inputs - `(("go-github-com-sourcegraph-go-diff-0.5.1" - ,go-github-com-sourcegraph-go-diff-0.5.1) - ("go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422" - ,go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422) - ("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) - ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" - ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) - ("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0) - ("go-github-com-mailru-easyjson-0.0.0-20190614124828-94de47d64c63" - ,go-github-com-mailru-easyjson-0.0.0-20190614124828-94de47d64c63) - ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/go-openapi/swag") - (synopsis "Swag") - (description - "Package swag contains a bunch of helper functions for go-openapi and go-swagger projects. -") - (license license:asl2.0))) - -(define-public go-github-com-go-openapi-jsonpointer-0.19.2 - (package - (name "go-github-com-go-openapi-jsonpointer") - (version "0.19.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/go-openapi/jsonpointer") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1s3cqf4svrbygvvpvi7hf122szsgihas52vqh0bba3avf4w03g9n")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/go-openapi/jsonpointer")) - (propagated-inputs - `(("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0) - ("go-github-com-go-openapi-swag-0.19.2" - ,go-github-com-go-openapi-swag-0.19.2))) - (home-page "https://github.com/go-openapi/jsonpointer") - (synopsis "gojsonpointer") - (description - "@url{https://raw.githubusercontent.com/go-openapi/jsonpointer/master/LICENSE,(img (@ (src http://img.shields.io/badge/license-Apache%20v2-orange.svg) (alt license)))} @url{http://godoc.org/github.com/go-openapi/jsonpointer,(img (@ (src https://godoc.org/github.com/go-openapi/jsonpointer?status.svg=) (alt GoDoc)))} -An implementation of JSON Pointer - Go language") - (license license:asl2.0))) - -(define-public go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190613194153-d28f0bde5980") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18xj31h70m7xxb7gc86n9i21w6d7djbjz67zfaljm4jqskz6hxkf")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-github-com-go-openapi-jsonreference-0.19.2 - (package - (name "go-github-com-go-openapi-jsonreference") - (version "0.19.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/go-openapi/jsonreference") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0v933yvcwyzzlpdxwb9204ki7lls2rwfd96ww2i901ndvz37kdf8")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/go-openapi/jsonreference")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) - ("go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980" - ,go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980) - ("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0) - ("go-github-com-go-openapi-jsonpointer-0.19.2" - ,go-github-com-go-openapi-jsonpointer-0.19.2) - ("go-github-com-puerkitobio-urlesc-0.0.0-20170810143723-de5bf2ad4578" - ,go-github-com-puerkitobio-urlesc-0.0.0-20170810143723-de5bf2ad4578) - ("go-github-com-puerkitobio-purell-1.1.1" - ,go-github-com-puerkitobio-purell-1.1.1))) - (home-page "https://github.com/go-openapi/jsonreference") - (synopsis "gojsonreference") - (description - "@url{https://raw.githubusercontent.com/go-openapi/jsonreference/master/LICENSE,(img (@ (src http://img.shields.io/badge/license-Apache%20v2-orange.svg) (alt license)))} @url{http://godoc.org/github.com/go-openapi/jsonreference,(img (@ (src https://godoc.org/github.com/go-openapi/jsonreference?status.svg=) (alt GoDoc)))} -An implementation of JSON Reference - Go language") - (license license:asl2.0))) - -(define-public go-github-com-kr-pty-1.1.5 - (package - (name "go-github-com-kr-pty") - (version "1.1.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/pty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1bpq77b90z72cv9h66dvxsg2j197ylpgcps23xsjfbs752bykfw1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/pty")) - (home-page "https://github.com/kr/pty") - (synopsis "pty") - (description - "Package pty is a wrapper for github.com/creack/pty, which provides -functions for working with Unix terminals. -") - (license license:expat))) - -(define-public go-github-com-stretchr-objx-0.2.0 - (package - (name "go-github-com-stretchr-objx") - (version "0.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/objx") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0pcdvakxgddaiwcdj73ra4da05a3q4cgwbpm2w75ycq4kzv8ij8k")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/objx")) - (propagated-inputs - `(("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/stretchr/objx") - (synopsis "Objx") - (description - "Objx - Go package for dealing with maps, slices, JSON and other data. -") - (license license:expat))) - -(define-public go-golang-org-x-crypto-0.0.0-20190611184440-5c40567a22f8 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20190611184440-5c40567a22f8") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "17g8fb9vy2sqq8vgz8jdvf6c6d2290gm2qs0i4yzsd86mgn4dlrg")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" - ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) - ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" - ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20190827160401-ba9fcec4b297 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190827160401-ba9fcec4b297") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1hbqvy6r0s5h0dpdqw8fynl3cq0acin3iyqki9xvl5r8h33yb9bx")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20190616124812-15dcb6c0061f - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190616124812-15dcb6c0061f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1qfkkysbyn44nyx57cq8mmw1cjgpxi9gi9xrf6kljmd9c1416zdd")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20190614205625-5aca471b1d59 - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20190614205625-5aca471b1d59") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1i4h3q83w4y9s065w0wnnnwlssy69jbrj08k47ppsa8dnv85kyrf")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" - ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-github-com-go-openapi-spec-0.19.3 - (package - (name "go-github-com-go-openapi-spec") - (version "0.19.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/go-openapi/spec") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1dikq1p550vj5i9y918s075pgk0fxkixxk3fb70ri7wkm51s6nlj")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/go-openapi/spec")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) - ("go-golang-org-x-tools-0.0.0-20190614205625-5aca471b1d59" - ,go-golang-org-x-tools-0.0.0-20190614205625-5aca471b1d59) - ("go-golang-org-x-sys-0.0.0-20190616124812-15dcb6c0061f" - ,go-golang-org-x-sys-0.0.0-20190616124812-15dcb6c0061f) - ("go-golang-org-x-net-0.0.0-20190827160401-ba9fcec4b297" - ,go-golang-org-x-net-0.0.0-20190827160401-ba9fcec4b297) - ("go-golang-org-x-crypto-0.0.0-20190611184440-5c40567a22f8" - ,go-golang-org-x-crypto-0.0.0-20190611184440-5c40567a22f8) - ("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0) - ("go-github-com-stretchr-objx-0.2.0" - ,go-github-com-stretchr-objx-0.2.0) - ("go-github-com-kr-pty-1.1.5" ,go-github-com-kr-pty-1.1.5) - ("go-github-com-go-openapi-swag-0.19.5" - ,go-github-com-go-openapi-swag-0.19.5) - ("go-github-com-go-openapi-jsonreference-0.19.2" - ,go-github-com-go-openapi-jsonreference-0.19.2) - ("go-github-com-go-openapi-jsonpointer-0.19.3" - ,go-github-com-go-openapi-jsonpointer-0.19.3))) - (home-page "https://github.com/go-openapi/spec") - (synopsis "OAI object model") - (description "The object model for OpenAPI specification documents.") - (license license:asl2.0))) - -(define-public go-github-com-mailru-easyjson-0.0.0-20190614124828-94de47d64c63 - (package - (name "go-github-com-mailru-easyjson") - (version "0.0.0-20190614124828-94de47d64c63") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mailru/easyjson") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1km0kkh7cf7dlz5pqi9yr1wamv0167y41cyv1dbrcxfdmwgpfd23")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mailru/easyjson")) - (home-page "https://github.com/mailru/easyjson") - (synopsis "easyjson") - (description - "Package easyjson contains marshaler/unmarshaler interfaces and helper functions. -") - (license license:expat))) - -(define-public go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422 - (package - (name "go-golang-org-x-lint") - (version "0.0.0-20190409202823-959b441ac422") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/lint") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1mgcv5f00pkzsbwnq2y7vqvd1b4lr5a3s47cphh2qv4indfk7pck")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/lint")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" - ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd))) - (home-page "https://golang.org/x/lint") - (synopsis "Installation") - (description "Package lint contains a linter for Go source code. -") - (license license:bsd-3))) - -(define-public go-github-com-shurcool-go-0.0.0-20180423040247-9e1955d9fb6e - (package - (name "go-github-com-shurcool-go") - (version "0.0.0-20180423040247-9e1955d9fb6e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/shurcooL/go") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1lad9bvs75jsn61cfza19739c2c057k0bqxg2b4xz3z3l4w1mkqj")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/shurcooL/go")) - (home-page "https://github.com/shurcooL/go") - (synopsis "go") - (description "Common Go code.") - (license license:expat))) - -(define-public go-github-com-shurcool-go-goon-0.0.0-20170922171312-37c2f522c041 - (package - (name "go-github-com-shurcool-go-goon") - (version "0.0.0-20170922171312-37c2f522c041") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/shurcooL/go-goon") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "17ac6j6msdcxbmfhq6pxhw5z339b87bd6ciln9909drjv2szyxqv")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/shurcooL/go-goon")) - (home-page "https://github.com/shurcooL/go-goon") - (synopsis "goon") - (description - "Package goon is a deep pretty printer with Go-like notation. It implements the goon specification. -") - (license license:expat))) - -(define-public go-sourcegraph-com-sqs-pbtypes-0.0.0-20180604144634-d3ebe8f20ae4 - (package - (name "go-sourcegraph-com-sqs-pbtypes") - (version "0.0.0-20180604144634-d3ebe8f20ae4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sqs/pbtypes") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0vcyqq4jc2jv1wh288qdxv51qxcfj07lvnlf37pjicsd2yrb7yrr")))) - (build-system go-build-system) - (arguments '(#:import-path "sourcegraph.com/sqs/pbtypes")) - (home-page "https://sourcegraph.com/sqs/pbtypes") - (synopsis "pbtypes") - (description - "Package pbtypes contains protocol buffer types (Timestamp, Void, -etc.) and related helpers. -") - (license license:asl2.0))) - -(define-public go-github-com-sourcegraph-go-diff-0.5.1 - (package - (name "go-github-com-sourcegraph-go-diff") - (version "0.5.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sourcegraph/go-diff") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0acabccjmxgdvhyd7fr0krlf7ymc7mngdq292n03hfys9nrnb0b2")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/sourcegraph/go-diff")) - (propagated-inputs - `(("go-sourcegraph-com-sqs-pbtypes-0.0.0-20180604144634-d3ebe8f20ae4" - ,go-sourcegraph-com-sqs-pbtypes-0.0.0-20180604144634-d3ebe8f20ae4) - ("go-github-com-shurcool-go-goon-0.0.0-20170922171312-37c2f522c041" - ,go-github-com-shurcool-go-goon-0.0.0-20170922171312-37c2f522c041) - ("go-github-com-shurcool-go-0.0.0-20180423040247-9e1955d9fb6e" - ,go-github-com-shurcool-go-0.0.0-20180423040247-9e1955d9fb6e) - ("go-github-com-gogo-protobuf-1.1.1" - ,go-github-com-gogo-protobuf-1.1.1))) - (home-page "https://github.com/sourcegraph/go-diff") - (synopsis "go-diff") - (description "Diff parser and printer for Go.") - (license license:expat))) - -(define-public go-github-com-go-openapi-swag-0.19.5 - (package - (name "go-github-com-go-openapi-swag") - (version "0.19.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/go-openapi/swag") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1z34vqc5yz6rzvarrvlhkimxx33p74iaxb28l1mv716njvlsmjhg")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/go-openapi/swag")) - (propagated-inputs - `(("go-github-com-sourcegraph-go-diff-0.5.1" - ,go-github-com-sourcegraph-go-diff-0.5.1) - ("go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422" - ,go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422) - ("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) - ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" - ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) - ("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0) - ("go-github-com-mailru-easyjson-0.0.0-20190614124828-94de47d64c63" - ,go-github-com-mailru-easyjson-0.0.0-20190614124828-94de47d64c63) - ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/go-openapi/swag") - (synopsis "Swag") - (description - "Package swag contains a bunch of helper functions for go-openapi and go-swagger projects. -") - (license license:asl2.0))) - -(define-public go-github-com-google-uuid-1.1.1 - (package - (name "go-github-com-google-uuid") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/uuid") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hfxcf9frkb57k6q0rdkrmnfs78ms21r1qfk9fhlqga2yh5xg8zb")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/uuid")) - (home-page "https://github.com/google/uuid") - (synopsis "uuid") - (description "Package uuid generates and inspects UUIDs. -") - (license license:bsd-3))) - -(define-public go-github-com-docopt-docopt-go-0.0.0-20180111231733-ee0de3bc6815 - (package - (name "go-github-com-docopt-docopt-go") - (version "0.0.0-20180111231733-ee0de3bc6815") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/docopt/docopt.go") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hlra7rmi5pmd7d93rv56ahiy4qkgmq8a6mz0jpadvbi5qh8lq6j")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/docopt/docopt-go")) - (home-page "https://github.com/docopt/docopt-go") - (synopsis "docopt-go") - (description - "Package docopt parses command-line arguments based on a help message. -") - (license license:expat))) - -(define-public go-github-com-googleapis-gnostic-0.4.1 - (package - (name "go-github-com-googleapis-gnostic") - (version "0.4.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/gnostic") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fw28m3ach5pkcdh4ijd6s7w09j0n88p6mah3hp0k8918jsc6mj9")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/googleapis/gnostic")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) - ("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" - ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) - ("go-github-com-kr-pretty-0.2.0" ,go-github-com-kr-pretty-0.2.0) - ("go-github-com-golang-protobuf-1.3.3" - ,go-github-com-golang-protobuf-1.3.3) - ("go-github-com-docopt-docopt-go-0.0.0-20180111231733-ee0de3bc6815" - ,go-github-com-docopt-docopt-go-0.0.0-20180111231733-ee0de3bc6815))) - (home-page "https://github.com/googleapis/gnostic") - (synopsis "â¨\x81 gnostic") - (description - "Gnostic is a tool for building better REST APIs through knowledge. -") - (license license:asl2.0))) - -(define-public go-github-com-munnerz-goautoneg-0.0.0-20120707110453-a547fc61f48d - (package - (name "go-github-com-munnerz-goautoneg") - (version "0.0.0-20120707110453-a547fc61f48d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/munnerz/goautoneg") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19khhn5xhqv1yp7d6k987gh5w5rhrjnp4p0c6fyrd8z6lzz5h9qi")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/munnerz/goautoneg")) - (home-page "https://github.com/munnerz/goautoneg") - (synopsis #f) - (description #f) - (license license:bsd-3))) - -(define-public go-github-com-onsi-ginkgo-0.0.0-20170829012221-11459a886d9c - (package - (name "go-github-com-onsi-ginkgo") - (version "0.0.0-20170829012221-11459a886d9c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/onsi/ginkgo") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1nswc1fnrrs792qbix05h91bilj8rr3wxmxgwi97p2gjk0r292zh")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/onsi/ginkgo")) - (home-page "https://github.com/onsi/ginkgo") - (synopsis "Ginkgo 2.0 Release Candidate is available!") - (description "Ginkgo is a BDD-style testing framework for Golang -") - (license license:expat))) - -(define-public go-github-com-onsi-gomega-0.0.0-20170829124025-dcabb60a477c - (package - (name "go-github-com-onsi-gomega") - (version "0.0.0-20170829124025-dcabb60a477c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/onsi/gomega") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1775lv5jbsgv3ghq5v2827slqlhqdadrzc1nkpq4y0hdv2qzrgkm")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/onsi/gomega")) - (home-page "https://github.com/onsi/gomega") - (synopsis ": a BDD Testing Framework for Golang") - (description - "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library. -") - (license license:expat))) - -(define-public go-github-com-spf13-pflag-0.0.0-20170130214245-9ff6c6923cff - (package - (name "go-github-com-spf13-pflag") - (version "0.0.0-20170130214245-9ff6c6923cff") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/spf13/pflag") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0mfrxzyl8x7araa126lh8l3sihbbgfbzgkrg3v3cx7y4n3wrsqvn")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/spf13/pflag")) - (home-page "https://github.com/spf13/pflag") - (synopsis "Description") - (description - "Package pflag is a drop-in replacement for Go's flag package, implementing -POSIX/GNU-style --flags. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20200324143707-d3edc9973b7e - (package - (name "go-golang-org-x-net") - (version "0.0.0-20200324143707-d3edc9973b7e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12zbjwcsh9b0lwycqlkrnbyg5a6a9dzgj8hhgq399bdda5bd97y7")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" - ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-k8s-io-gengo-0.0.0-20200413195148-3a45101e95ac - (package - (name "go-k8s-io-gengo") - (version "0.0.0-20200413195148-3a45101e95ac") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes/gengo") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0x46jq6rv8z0y96231rfgzvfscgy5hp5aacid3r93zy0rq9r37g6")))) - (build-system go-build-system) - (arguments '(#:import-path "k8s.io/gengo")) - (home-page "https://k8s.io/gengo") - (synopsis "gengo") - (description - "This package provides a package for generating things based on go files. This mechanism was first used -in Kubernetes and is split out here for ease of reuse and maintainability.") - (license license:asl2.0))) - -(define-public go-sigs-k8s-io-structured-merge-diff-v4-4.0.2 - (package - (name "go-sigs-k8s-io-structured-merge-diff-v4") - (version "4.0.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes-sigs/structured-merge-diff") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1z60sw6nrlzyddyx5pvh6afwf8jvmn8c2zw15hklq17iyvj3lj7a")))) - (build-system go-build-system) - (arguments - '(#:import-path - "sigs.k8s.io/structured-merge-diff/v4" - #:unpack-path - "sigs.k8s.io/structured-merge-diff/v4")) - (propagated-inputs - `(("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0) - ("go-github-com-modern-go-reflect2-1.0.1" - ,go-github-com-modern-go-reflect2-1.0.1) - ("go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd" - ,go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd) - ("go-github-com-json-iterator-go-1.1.6" - ,go-github-com-json-iterator-go-1.1.6) - ("go-github-com-google-gofuzz-1.0.0" - ,go-github-com-google-gofuzz-1.0.0) - ("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1))) - (home-page "https://sigs.k8s.io/structured-merge-diff/v4") - (synopsis "Structured Merge and Diff") - (description - "This repo contains code which implements the Kubernetes \"apply\" operation.") - (license license:asl2.0))) - -(define-public go-sigs-k8s-io-yaml-1.1.0 - (package - (name "go-sigs-k8s-io-yaml") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes-sigs/yaml") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1p7hvjdr5jsyk7nys1g1pmgnf3ys6n320i6hds85afppk81k01kb")))) - (build-system go-build-system) - (arguments '(#:import-path "sigs.k8s.io/yaml")) - (home-page "https://sigs.k8s.io/yaml") - (synopsis "YAML marshaling and unmarshaling support for Go") - (description - "kubernetes-sigs/yaml is a permanent fork of @url{https://github.com/ghodss/yaml,ghodss/yaml}.") - (license #f))) - -(define-public go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd - (package - (name "go-k8s-io-kube-openapi") - (version "0.0.0-20201113171705-d219536bb9fd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes/kube-openapi") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "11d420a3rxznh3f6x5a6xp22zjwv6jfq4w1gb6srqb4vn9rhgrka")))) - (build-system go-build-system) - (arguments '(#:import-path "k8s.io/kube-openapi")) - (propagated-inputs - `(("go-sigs-k8s-io-yaml-1.1.0" ,go-sigs-k8s-io-yaml-1.1.0) - ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.2" - ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.2) - ("go-k8s-io-klog-v2-2.0.0" ,go-k8s-io-klog-v2-2.0.0) - ("go-k8s-io-gengo-0.0.0-20200413195148-3a45101e95ac" - ,go-k8s-io-gengo-0.0.0-20200413195148-3a45101e95ac) - ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) - ("go-golang-org-x-net-0.0.0-20200324143707-d3edc9973b7e" - ,go-golang-org-x-net-0.0.0-20200324143707-d3edc9973b7e) - ("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0) - ("go-github-com-spf13-pflag-0.0.0-20170130214245-9ff6c6923cff" - ,go-github-com-spf13-pflag-0.0.0-20170130214245-9ff6c6923cff) - ("go-github-com-onsi-gomega-0.0.0-20170829124025-dcabb60a477c" - ,go-github-com-onsi-gomega-0.0.0-20170829124025-dcabb60a477c) - ("go-github-com-onsi-ginkgo-0.0.0-20170829012221-11459a886d9c" - ,go-github-com-onsi-ginkgo-0.0.0-20170829012221-11459a886d9c) - ("go-github-com-munnerz-goautoneg-0.0.0-20120707110453-a547fc61f48d" - ,go-github-com-munnerz-goautoneg-0.0.0-20120707110453-a547fc61f48d) - ("go-github-com-mitchellh-mapstructure-1.1.2" - ,go-github-com-mitchellh-mapstructure-1.1.2) - ("go-github-com-json-iterator-go-1.1.6" - ,go-github-com-json-iterator-go-1.1.6) - ("go-github-com-googleapis-gnostic-0.4.1" - ,go-github-com-googleapis-gnostic-0.4.1) - ("go-github-com-google-uuid-1.1.1" ,go-github-com-google-uuid-1.1.1) - ("go-github-com-google-gofuzz-1.0.0" - ,go-github-com-google-gofuzz-1.0.0) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.3.3" - ,go-github-com-golang-protobuf-1.3.3) - ("go-github-com-go-openapi-swag-0.19.5" - ,go-github-com-go-openapi-swag-0.19.5) - ("go-github-com-go-openapi-spec-0.19.3" - ,go-github-com-go-openapi-spec-0.19.3) - ("go-github-com-go-openapi-jsonreference-0.19.3" - ,go-github-com-go-openapi-jsonreference-0.19.3) - ("go-github-com-go-openapi-jsonpointer-0.19.3" - ,go-github-com-go-openapi-jsonpointer-0.19.3) - ("go-github-com-ghodss-yaml-0.0.0-20150909031657-73d445a93680" - ,go-github-com-ghodss-yaml-0.0.0-20150909031657-73d445a93680) - ("go-github-com-emicklei-go-restful-0.0.0-20170410110728-ff4f55a20633" - ,go-github-com-emicklei-go-restful-0.0.0-20170410110728-ff4f55a20633) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1) - ("go-github-com-asaskevich-govalidator-0.0.0-20190424111038-f61b66f89f4a" - ,go-github-com-asaskevich-govalidator-0.0.0-20190424111038-f61b66f89f4a) - ("go-github-com-nytimes-gziphandler-0.0.0-20170623195520-56545f4a5d46" - ,go-github-com-nytimes-gziphandler-0.0.0-20170623195520-56545f4a5d46))) - (home-page "https://k8s.io/kube-openapi") - (synopsis "Kube OpenAPI") - (description - "This repo is the home for Kubernetes OpenAPI discovery spec generation. The goal -is to support a subset of OpenAPI features to satisfy kubernetes use-cases but -implement that subset with little to no assumption about the structure of the -code or routes. Thus, there should be no kubernetes specific code in this repo.") - (license license:asl2.0))) - -(define-public go-github-com-json-iterator-go-1.1.6 - (package - (name "go-github-com-json-iterator-go") - (version "1.1.6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/json-iterator/go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "08caswxvdn7nvaqyj5kyny6ghpygandlbw9vxdj7l5vkp7q0s43r")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/json-iterator/go")) - (home-page "https://github.com/json-iterator/go") - (synopsis "Benchmark") - (description - "Package jsoniter implements encoding and decoding of JSON as defined in -@url{https://rfc-editor.org/rfc/rfc4627.html,RFC 4627} and provides interfaces with identical syntax of standard lib encoding/json. -Converting from encoding/json to jsoniter is no more than replacing the package with jsoniter -and variable type declarations (if any). -jsoniter interfaces gives 100% compatibility with code using standard lib. -") - (license license:expat))) - -(define-public go-github-com-modern-go-reflect2-1.0.1 - (package - (name "go-github-com-modern-go-reflect2") - (version "1.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/modern-go/reflect2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "06a3sablw53n1dqqbr2f53jyksbxdmmk8axaas4yvnhyfi55k4lf")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/modern-go/reflect2")) - (home-page "https://github.com/modern-go/reflect2") - (synopsis "reflect2") - (description "reflect api that avoids runtime reflect.Value cost") - (license license:asl2.0))) - -(define-public go-sigs-k8s-io-structured-merge-diff-v4-4.0.3 - (package - (name "go-sigs-k8s-io-structured-merge-diff-v4") - (version "4.0.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes-sigs/structured-merge-diff") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1jv60bkk0z437bsz5ldjyc006k20njmpl0xfl8p3g1q0bx0fkypa")))) - (build-system go-build-system) - (arguments - '(#:import-path - "sigs.k8s.io/structured-merge-diff/v4" - #:unpack-path - "sigs.k8s.io/structured-merge-diff/v4")) - (propagated-inputs - `(("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0) - ("go-github-com-modern-go-reflect2-1.0.1" - ,go-github-com-modern-go-reflect2-1.0.1) - ("go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd" - ,go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd) - ("go-github-com-json-iterator-go-1.1.6" - ,go-github-com-json-iterator-go-1.1.6) - ("go-github-com-google-gofuzz-1.0.0" - ,go-github-com-google-gofuzz-1.0.0) - ("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1))) - (home-page "https://sigs.k8s.io/structured-merge-diff/v4") - (synopsis "Structured Merge and Diff") - (description - "This repo contains code which implements the Kubernetes \"apply\" operation.") - (license license:asl2.0))) - -(define-public go-gopkg-in-yaml-v2-2.2.8 - (package - (name "go-gopkg-in-yaml-v2") - (version "2.2.8") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1inf7svydzscwv9fcjd2rm61a4xjk6jkswknybmns2n58shimapw")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v2") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language. -") - (license license:asl2.0))) - -(define-public go-sigs-k8s-io-yaml-1.2.0 - (package - (name "go-sigs-k8s-io-yaml") - (version "1.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes-sigs/yaml") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "059a1chkd6afyvqszrx7h93k6cgik3ia92x29f5whpwi66461pzq")))) - (build-system go-build-system) - (arguments '(#:import-path "sigs.k8s.io/yaml")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://sigs.k8s.io/yaml") - (synopsis "YAML marshaling and unmarshaling support for Go") - (description - "kubernetes-sigs/yaml is a permanent fork of @url{https://github.com/ghodss/yaml,ghodss/yaml}.") - (license #f))) - -(define-public go-k8s-io-apimachinery-0.20.6 - (package - (name "go-k8s-io-apimachinery") - (version "0.20.6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes/apimachinery") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "16952v7zjk3pdyw5r3wy28qkcfx3risid0847pwdw8gmalwxr237")))) - (build-system go-build-system) - (arguments '(#:import-path "k8s.io/apimachinery")) - (propagated-inputs - `(("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) - ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.3" - ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.3) - ("go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd" - ,go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd) - ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) - ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) - ("go-gopkg-in-inf-v0-0.9.1" ,go-gopkg-in-inf-v0-0.9.1) - ("go-google-golang-org-protobuf-1.25.0" - ,go-google-golang-org-protobuf-1.25.0) - ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) - ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" - ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) - ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" - ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-onsi-gomega-1.7.0" ,go-github-com-onsi-gomega-1.7.0) - ("go-github-com-onsi-ginkgo-1.11.0" ,go-github-com-onsi-ginkgo-1.11.0) - ("go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f" - ,go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f) - ("go-github-com-modern-go-reflect2-1.0.1" - ,go-github-com-modern-go-reflect2-1.0.1) - ("go-github-com-json-iterator-go-1.1.10" - ,go-github-com-json-iterator-go-1.1.10) - ("go-github-com-hashicorp-golang-lru-0.5.1" - ,go-github-com-hashicorp-golang-lru-0.5.1) - ("go-github-com-googleapis-gnostic-0.4.1" - ,go-github-com-googleapis-gnostic-0.4.1) - ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) - ("go-github-com-google-gofuzz-1.1.0" - ,go-github-com-google-gofuzz-1.1.0) - ("go-github-com-google-go-cmp-0.5.2" - ,go-github-com-google-go-cmp-0.5.2) - ("go-github-com-golang-protobuf-1.4.3" - ,go-github-com-golang-protobuf-1.4.3) - ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" - ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2) - ("go-github-com-fsnotify-fsnotify-1.4.9" - ,go-github-com-fsnotify-fsnotify-1.4.9) - ("go-github-com-evanphx-json-patch-4.9.0+incompatible" - ,go-github-com-evanphx-json-patch-4.9.0+incompatible) - ("go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153" - ,go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153) - ("go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96" - ,go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://k8s.io/apimachinery") - (synopsis "apimachinery") - (description - "Scheme, typing, encoding, decoding, and conversion packages for Kubernetes and Kubernetes-like API objects.") - (license license:asl2.0))) - -(define-public go-k8s-io-client-go-0.20.6 - (package - (name "go-k8s-io-client-go") - (version "0.20.6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes/client-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fpz56pfadbfp8mlzmzicfmlgk5zqbk2rdwnr8c8h6ypjd5xjcvz")))) - (build-system go-build-system) - (arguments '(#:import-path "k8s.io/client-go")) - (propagated-inputs - `(("go-k8s-io-apimachinery-0.20.6" ,go-k8s-io-apimachinery-0.20.6) - ("go-k8s-io-api-0.20.6" ,go-k8s-io-api-0.20.6) - ("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) - ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" - ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) - ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) - ("go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e" - ,go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e) - ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" - ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) - ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" - ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) - ("go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0" - ,go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) - ("go-github-com-peterbourgon-diskv-2.0.1+incompatible" - ,go-github-com-peterbourgon-diskv-2.0.1+incompatible) - ("go-github-com-imdario-mergo-0.3.5" - ,go-github-com-imdario-mergo-0.3.5) - ("go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7" - ,go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7) - ("go-github-com-googleapis-gnostic-0.4.1" - ,go-github-com-googleapis-gnostic-0.4.1) - ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) - ("go-github-com-google-gofuzz-1.1.0" - ,go-github-com-google-gofuzz-1.1.0) - ("go-github-com-google-go-cmp-0.5.2" - ,go-github-com-google-go-cmp-0.5.2) - ("go-github-com-golang-protobuf-1.4.3" - ,go-github-com-golang-protobuf-1.4.3) - ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" - ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2) - ("go-github-com-evanphx-json-patch-4.9.0+incompatible" - ,go-github-com-evanphx-json-patch-4.9.0+incompatible) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1) - ("go-github-com-azure-go-autorest-autorest-adal-0.9.5" - ,go-github-com-azure-go-autorest-autorest-adal-0.9.5) - ("go-github-com-azure-go-autorest-autorest-0.11.1" - ,go-github-com-azure-go-autorest-autorest-0.11.1) - ("go-cloud-google-com-go-0.54.0" ,go-cloud-google-com-go-0.54.0))) - (home-page "https://k8s.io/client-go") - (synopsis "client-go") - (description - "Go clients for talking to a @url{http://kubernetes.io/,kubernetes} cluster.") - (license license:asl2.0))) - -(define-public go-k8s-io-component-base-0.20.6 - (package - (name "go-k8s-io-component-base") - (version "0.20.6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes/component-base") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1987vm5lhbnn4ynrpzdgz3873lp78664cpdpkbv9jwnhzqdhpyhf")))) - (build-system go-build-system) - (arguments '(#:import-path "k8s.io/component-base")) - (propagated-inputs - `(("go-k8s-io-client-go-0.20.6" ,go-k8s-io-client-go-0.20.6) - ("go-k8s-io-apimachinery-0.20.6" ,go-k8s-io-apimachinery-0.20.6) - ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" - ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) - ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) - ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) - ("go-go-uber-org-multierr-1.1.0" ,go-go-uber-org-multierr-1.1.0) - ("go-go-uber-org-atomic-1.4.0" ,go-go-uber-org-atomic-1.4.0) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) - ("go-github-com-sirupsen-logrus-1.6.0" - ,go-github-com-sirupsen-logrus-1.6.0) - ("go-github-com-prometheus-procfs-0.2.0" - ,go-github-com-prometheus-procfs-0.2.0) - ("go-github-com-prometheus-common-0.10.0" - ,go-github-com-prometheus-common-0.10.0) - ("go-github-com-prometheus-client-model-0.2.0" - ,go-github-com-prometheus-client-model-0.2.0) - ("go-github-com-prometheus-client-golang-1.7.1" - ,go-github-com-prometheus-client-golang-1.7.1) - ("go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd" - ,go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd) - ("go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369" - ,go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369) - ("go-github-com-google-go-cmp-0.5.2" - ,go-github-com-google-go-cmp-0.5.2) - ("go-github-com-go-logr-logr-0.2.0" ,go-github-com-go-logr-logr-0.2.0) - ("go-github-com-blang-semver-3.5.1+incompatible" - ,go-github-com-blang-semver-3.5.1+incompatible))) - (home-page "https://k8s.io/component-base") - (synopsis "component-base") - (description - "Implement KEP 32: @url{https://github.com/kubernetes/enhancements/blob/master/keps/sig-cluster-lifecycle/wgs/783-component-base/README.md,https://github.com/kubernetes/enhancements/blob/master/keps/sig-cluster-lifecycle/wgs/783-component-base/README.md}") - (license license:asl2.0))) - -(define-public go-github-com-kr-pretty-0.2.0 - (package - (name "go-github-com-kr-pretty") - (version "0.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/pretty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ywbfzz1h3a3qd8rpkiqwi1dm4w8ls9ijb4x1b7567grns9f0vnp")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/pretty")) - (propagated-inputs - `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) - (home-page "https://github.com/kr/pretty") - (synopsis #f) - (description - "Package pretty provides pretty-printing for Go values. This is -useful during debugging, to avoid wrapping long output lines in -the terminal. -") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20201112073958-5cba982894dd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "08dvnwmi2p4slmhyx7gzkmzfp51mmnkzi0ngwhvv0vip1s3s3zjc")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-text-0.3.4 - (package - (name "go-golang-org-x-text") - (version "0.3.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "11jdvix83xcl5xnb039y4zrz4x5skzsps0w1jryp6wrar53cydvz")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/text")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" - ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) - (home-page "https://golang.org/x/text") - (synopsis "Go Text") - (description - "text is a repository of text-related packages related to internationalization -(i18n) and localization (l10n), such as character encodings, text -transformations, and locale-specific text handling. -") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-1.24.0 - (package - (name "go-google-golang-org-protobuf") - (version "1.24.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0x3qyn3rizbs671gs7f8v50rmiwf9h7kbaradpivw9718mhbg1gn")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" - ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.1" - ,go-github-com-golang-protobuf-1.4.1))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20201110150050-8816d57aaa9a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0cbfam4w9jr5gib43v3s2r5j8mhd3hl6ks3azwsahaff6idggg20")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.24.0" - ,go-google-golang-org-protobuf-1.24.0) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-golang-protobuf-1.4.1" - ,go-github-com-golang-protobuf-1.4.1))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-k8s-io-cri-api-0.20.6 - (package - (name "go-k8s-io-cri-api") - (version "0.20.6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes/cri-api") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0yp4rfxjn4h78z4sbmwhcqm8mva9bsvsc5jky2qa76npp0hycjhx")))) - (build-system go-build-system) - (arguments '(#:import-path "k8s.io/cri-api")) - (propagated-inputs - `(("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" - ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) - ("go-google-golang-org-protobuf-1.25.0" - ,go-google-golang-org-protobuf-1.25.0) - ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) - ("go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a" - ,go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a) - ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) - ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" - ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) - ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" - ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-kr-pretty-0.2.0" ,go-github-com-kr-pretty-0.2.0) - ("go-github-com-google-go-cmp-0.5.2" - ,go-github-com-google-go-cmp-0.5.2) - ("go-github-com-golang-protobuf-1.4.3" - ,go-github-com-golang-protobuf-1.4.3) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://k8s.io/cri-api") - (synopsis "Purpose") - (description - "This repository contains the definitions for the Container Runtime Interface (CRI). -CRI is a plugin interface which enables kubelet to use a wide variety of container runtimes, -without the need to recompile. CRI consists of a protocol buffers and gRPC API.") - (license license:asl2.0))) - -(define-public go-github-com-go-logr-logr-0.2.0 - (package - (name "go-github-com-go-logr-logr") - (version "0.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/go-logr/logr") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "06xh4pw53z38vyi300mgpnr4pkqgknw9xakdyk1xzqfg9zd60d7d")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/go-logr/logr")) - (home-page "https://github.com/go-logr/logr") - (synopsis "A minimal logging API for Go") - (description - "Package logr defines a general-purpose logging API and abstract interfaces -to back that API. Packages in the Go ecosystem can depend on this package, -while callers can implement logging with whatever backend is appropriate. -") - (license license:asl2.0))) - -(define-public go-k8s-io-klog-v2-2.4.0 - (package - (name "go-k8s-io-klog-v2") - (version "2.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes/klog") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1zjih6bgdalga5hqaa2fwwidslq6lv358gkj88a8wwj7w253wc8c")))) - (build-system go-build-system) - (arguments - '(#:import-path "k8s.io/klog/v2" #:unpack-path "k8s.io/klog/v2")) - (propagated-inputs - `(("go-github-com-go-logr-logr-0.2.0" - ,go-github-com-go-logr-logr-0.2.0))) - (home-page "https://k8s.io/klog/v2") - (synopsis "klog") - (description - "Package klog implements logging analogous to the Google-internal C++ INFO/ERROR/V setup. -It provides functions Info, Warning, Error, Fatal, plus formatting variants such as -Infof. It also provides V-style logging controlled by the -v and -vmodule=file=2 flags. -") - (license license:asl2.0))) - -(define-public go-github-com-spf13-afero-1.2.2 - (package - (name "go-github-com-spf13-afero") - (version "1.2.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/spf13/afero") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0j9r65qgd58324m85lkl49vk9dgwd62g7dwvkfcm3k6i9dc555a9")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/spf13/afero")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0))) - (home-page "https://github.com/spf13/afero") - (synopsis "Overview") - (description - "This package provides a FileSystem Abstraction System for Go") - (license license:asl2.0))) - -(define-public go-github-com-go-logr-logr-0.1.0 - (package - (name "go-github-com-go-logr-logr") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/go-logr/logr") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0fhijjhxz4n2j5i24ckzv8r9kri3v44jdyklgbqjfq0xm7izqg14")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/go-logr/logr")) - (home-page "https://github.com/go-logr/logr") - (synopsis "A minimal logging API for Go") - (description - "Package logr defines a general-purpose logging API and abstract interfaces -to back that API. Packages in the Go ecosystem can depend on this package, -while callers can implement logging with whatever backend is appropriate. -") - (license license:asl2.0))) - -(define-public go-k8s-io-klog-v2-2.0.0 - (package - (name "go-k8s-io-klog-v2") - (version "2.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes/klog") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "09vqm0n5l64lzpk3xqm4njbncnphx52qk21gwx8nsgyivlxx1n8g")))) - (build-system go-build-system) - (arguments - '(#:import-path "k8s.io/klog/v2" #:unpack-path "k8s.io/klog/v2")) - (propagated-inputs - `(("go-github-com-go-logr-logr-0.1.0" - ,go-github-com-go-logr-logr-0.1.0))) - (home-page "https://k8s.io/klog/v2") - (synopsis "klog") - (description - "Package klog implements logging analogous to the Google-internal C++ INFO/ERROR/V setup. -It provides functions Info, Warning, Error, Fatal, plus formatting variants such as -Infof. It also provides V-style logging controlled by the -v and -vmodule=file=2 flags. -") - (license license:asl2.0))) - -(define-public go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920 - (package - (name "go-k8s-io-utils") - (version "0.0.0-20201110183641-67b214c5f920") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes/utils") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19rc9v5xin0a8qbf25my3rd0jd74cin2mk2a38j2dwplqy3s9crl")))) - (build-system go-build-system) - (arguments '(#:import-path "k8s.io/utils")) - (propagated-inputs - `(("go-k8s-io-klog-v2-2.0.0" ,go-k8s-io-klog-v2-2.0.0) - ("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0) - ("go-github-com-spf13-afero-1.2.2" ,go-github-com-spf13-afero-1.2.2) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://k8s.io/utils") - (synopsis "Utils") - (description - "This package provides a set of Go libraries that provide low-level, kubernetes-independent packages -supplementing the @url{https://golang.org/pkg/#stdlib,Go standard libs}.") - (license license:asl2.0))) - -(define-public go-github-com-gogo-googleapis-1.3.2 - (package - (name "go-github-com-gogo-googleapis") - (version "1.3.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gogo/googleapis") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "10670qprmk151n6pa1yclr89kgrvmalzvkq221xqbid83iv59s2h")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/gogo/googleapis")) - (propagated-inputs - `(("go-github-com-gogo-protobuf-1.3.1" - ,go-github-com-gogo-protobuf-1.3.1))) - (home-page "https://github.com/gogo/googleapis") - (synopsis "Google APIs generated by gogoprotobuf") - (description - "The @url{https://github.com/gogo/grpc-example,grpc-example} includes an example usage of this repository.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-containerd-1.5.7 - (package - (name "go-github-com-containerd-containerd") - (version "1.5.7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/containerd") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "14qb7a9ckfvxl30axqsha0qs8lfkpkxnhj61cdqxk2b9mz160a67")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/containerd")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) - ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) - ("go-github-com-golang-protobuf-1.3.5" - ,go-github-com-golang-protobuf-1.3.5) - ("go-github-com-gogo-googleapis-1.3.2" - ,go-github-com-gogo-googleapis-1.3.2) - ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" - ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) - ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) - ("go-k8s-io-cri-api-0.20.6" ,go-k8s-io-cri-api-0.20.6) - ("go-k8s-io-component-base-0.20.6" ,go-k8s-io-component-base-0.20.6) - ("go-k8s-io-client-go-0.20.6" ,go-k8s-io-client-go-0.20.6) - ("go-k8s-io-apiserver-0.20.6" ,go-k8s-io-apiserver-0.20.6) - ("go-k8s-io-apimachinery-0.20.6" ,go-k8s-io-apimachinery-0.20.6) - ("go-k8s-io-api-0.20.6" ,go-k8s-io-api-0.20.6) - ("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) - ("go-golang-org-x-sys-0.0.0-20210426230700-d19ff857e887" - ,go-golang-org-x-sys-0.0.0-20210426230700-d19ff857e887) - ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" - ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) - ("go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110" - ,go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110) - ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) - ("go-github-com-tchap-go-patricia-2.2.6+incompatible" - ,go-github-com-tchap-go-patricia-2.2.6+incompatible) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-sirupsen-logrus-1.8.1" - ,go-github-com-sirupsen-logrus-1.8.1) - ("go-github-com-satori-go-uuid-1.2.0" - ,go-github-com-satori-go-uuid-1.2.0) - ("go-github-com-prometheus-procfs-0.6.0" - ,go-github-com-prometheus-procfs-0.6.0) - ("go-github-com-prometheus-client-golang-1.7.1" - ,go-github-com-prometheus-client-golang-1.7.1) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-pelletier-go-toml-1.8.1" - ,go-github-com-pelletier-go-toml-1.8.1) - ("go-github-com-opencontainers-selinux-1.8.2" - ,go-github-com-opencontainers-selinux-1.8.2) - ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417" - ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417) - ("go-github-com-opencontainers-runc-1.0.2" - ,go-github-com-opencontainers-runc-1.0.2) - ("go-github-com-opencontainers-image-spec-1.0.1" - ,go-github-com-opencontainers-image-spec-1.0.1) - ("go-github-com-opencontainers-go-digest-1.0.0" - ,go-github-com-opencontainers-go-digest-1.0.0) - ("go-github-com-moby-sys-symlink-0.1.0" - ,go-github-com-moby-sys-symlink-0.1.0) - ("go-github-com-moby-sys-mountinfo-0.4.1" - ,go-github-com-moby-sys-mountinfo-0.4.1) - ("go-github-com-moby-locker-1.0.1" ,go-github-com-moby-locker-1.0.1) - ("go-github-com-klauspost-compress-1.11.13" - ,go-github-com-klauspost-compress-1.11.13) - ("go-github-com-imdario-mergo-0.3.12" - ,go-github-com-imdario-mergo-0.3.12) - ("go-github-com-hashicorp-go-multierror-1.0.0" - ,go-github-com-hashicorp-go-multierror-1.0.0) - ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" - ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) - ("go-github-com-google-uuid-1.2.0" ,go-github-com-google-uuid-1.2.0) - ("go-github-com-google-go-cmp-0.5.5" - ,go-github-com-google-go-cmp-0.5.5) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2) - ("go-github-com-fsnotify-fsnotify-1.4.9" - ,go-github-com-fsnotify-fsnotify-1.4.9) - ("go-github-com-emicklei-go-restful-2.9.5+incompatible" - ,go-github-com-emicklei-go-restful-2.9.5+incompatible) - ("go-github-com-docker-go-units-0.4.0" - ,go-github-com-docker-go-units-0.4.0) - ("go-github-com-docker-go-metrics-0.0.1" - ,go-github-com-docker-go-metrics-0.0.1) - ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" - ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1) - ("go-github-com-coreos-go-systemd-v22-22.3.2" - ,go-github-com-coreos-go-systemd-v22-22.3.2) - ("go-github-com-containernetworking-plugins-0.9.1" - ,go-github-com-containernetworking-plugins-0.9.1) - ("go-github-com-containerd-zfs-1.0.0" - ,go-github-com-containerd-zfs-1.0.0) - ("go-github-com-containerd-typeurl-1.0.2" - ,go-github-com-containerd-typeurl-1.0.2) - ("go-github-com-containerd-ttrpc-1.0.2" - ,go-github-com-containerd-ttrpc-1.0.2) - ("go-github-com-containerd-nri-0.1.0" - ,go-github-com-containerd-nri-0.1.0) - ("go-github-com-containerd-imgcrypt-1.1.1" - ,go-github-com-containerd-imgcrypt-1.1.1) - ("go-github-com-containerd-go-runc-1.0.0" - ,go-github-com-containerd-go-runc-1.0.0) - ("go-github-com-containerd-go-cni-1.0.2" - ,go-github-com-containerd-go-cni-1.0.2) - ("go-github-com-containerd-fifo-1.0.0" - ,go-github-com-containerd-fifo-1.0.0) - ("go-github-com-containerd-continuity-0.1.0" - ,go-github-com-containerd-continuity-0.1.0) - ("go-github-com-containerd-console-1.0.2" - ,go-github-com-containerd-console-1.0.2) - ("go-github-com-containerd-cgroups-1.0.1" - ,go-github-com-containerd-cgroups-1.0.1) - ("go-github-com-containerd-btrfs-1.0.0" - ,go-github-com-containerd-btrfs-1.0.0) - ("go-github-com-containerd-aufs-1.0.0" - ,go-github-com-containerd-aufs-1.0.0) - ("go-github-com-microsoft-hcsshim-0.8.21" - ,go-github-com-microsoft-hcsshim-0.8.21) - ("go-github-com-microsoft-go-winio-0.4.17" - ,go-github-com-microsoft-go-winio-0.4.17))) - (home-page "https://github.com/containerd/containerd") - (synopsis "Now Recruiting") - (description - "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") - (license license:asl2.0))) - -(define-public go-github-com-containers-libtrust-0.0.0-20190913040956-14b96171aa3b - (package - (name "go-github-com-containers-libtrust") - (version "0.0.0-20190913040956-14b96171aa3b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containers/libtrust") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1s54984nlg8mbl6n678v46zknxsmnbvma5c77zrdk2bj2m287d09")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containers/libtrust")) - (home-page "https://github.com/containers/libtrust") - (synopsis "libtrust") - (description - "Package libtrust provides an interface for managing authentication and -authorization using public key cryptography. Authentication is handled -using the identity attached to the public key and verified through TLS -x509 certificates, a key challenge, or signature. Authorization and -access control is managed through a trust graph distributed between -both remote trust servers and locally cached and managed data. -") - (license license:asl2.0))) - -(define-public go-github-com-google-go-cmp-0.5.2 - (package - (name "go-github-com-google-go-cmp") - (version "0.5.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0qchy411jm9q2l9mf7x3ry2ycaqp9xdhf2nx14qrpzcxfigv2705")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") - (license license:bsd-3))) - -(define-public go-github-com-miekg-pkcs11-1.0.3 - (package - (name "go-github-com-miekg-pkcs11") - (version "1.0.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/miekg/pkcs11") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0rmmgssb6y28x54si5h63gwbdsjjxf5n9xvm3zqdfsf9l10gx2m6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/miekg/pkcs11")) - (home-page "https://github.com/miekg/pkcs11") - (synopsis "PKCS#11") - (description - "Package pkcs11 is a wrapper around the PKCS#11 cryptographic library. -") - (license license:bsd-3))) - -(define-public go-github-com-opencontainers-image-spec-1.0.1 - (package - (name "go-github-com-opencontainers-image-spec") - (version "1.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/image-spec") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "03dvbj3dln8c55v9gp79mgmz2yi2ws3r08iyz2fk41y3i22iaw1q")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/image-spec")) - (home-page "https://github.com/opencontainers/image-spec") - (synopsis "OCI Image Format Specification") - (description - "The OCI Image Format project creates and maintains the software shipping container image format spec (OCI Image Format).") - (license license:asl2.0))) - -(define-public go-github-com-stefanberger-go-pkcs11uri-0.0.0-20201008174630-78d3cae3a980 - (package - (name "go-github-com-stefanberger-go-pkcs11uri") - (version "0.0.0-20201008174630-78d3cae3a980") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stefanberger/go-pkcs11uri") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "09bnd1fn2v5y5ngsxz751a0x9fsqn8idlfrwyymfv9l57wvmrd2l")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stefanberger/go-pkcs11uri")) - (home-page "https://github.com/stefanberger/go-pkcs11uri") - (synopsis "go-pkcs11uri") - (description - "Welcome to the go-pkcs11uri library. The implementation follows @url{https://tools.ietf.org/html/rfc7512,RFC 7512} and this @url{https://www.rfc-editor.org/errata/rfc7512,errata}.") - (license license:asl2.0))) - -(define-public go-go-mozilla-org-pkcs7-0.0.0-20200128120323-432b2356ecb1 - (package - (name "go-go-mozilla-org-pkcs7") - (version "0.0.0-20200128120323-432b2356ecb1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mozilla-services/pkcs7") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0yncaq6i1x6apykvng92yyqkj5kmzl4c43lmcalr5lq7ks009p40")))) - (build-system go-build-system) - (arguments '(#:import-path "go.mozilla.org/pkcs7")) - (home-page "https://go.mozilla.org/pkcs7") - (synopsis "pkcs7") - (description - "Package pkcs7 implements parsing and generation of some PKCS#7 structures. -") - (license license:expat))) - -(define-public go-gopkg-in-square-go-jose-v2-2.5.1 - (package - (name "go-gopkg-in-square-go-jose-v2") - (version "2.5.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/square/go-jose.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0z0hbmb5yyvnjkyiyn259wkbqbjxs2pzx87jz472shn2bgggxa4n")))) - (build-system go-build-system) - (arguments - '(#:import-path - "gopkg.in/square/go-jose.v2" - #:unpack-path - "gopkg.in/square/go-jose.v2")) - (home-page "https://gopkg.in/square/go-jose.v2") - (synopsis "Go JOSE") - (description - "Package jose aims to provide an implementation of the Javascript Object Signing -and Encryption set of standards. It implements encryption and signing based on -the JSON Web Encryption and JSON Web Signature standards, with optional JSON -Web Token support available in a sub-package. The library supports both the -compact and full serialization formats, and has optional support for multiple -recipients. -") - (license license:asl2.0))) - -(define-public go-gopkg-in-yaml-v2-2.4.0 - (package - (name "go-gopkg-in-yaml-v2") - (version "2.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1pbmrpj7gcws34g8vwna4i2nhm9p6235piww36436xhyaa10cldr")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v2") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language. -") - (license license:asl2.0))) - -(define-public go-github-com-containers-ocicrypt-1.1.2 - (package - (name "go-github-com-containers-ocicrypt") - (version "1.1.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containers/ocicrypt") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0cw9f8vmra6vx6k11yhn297brz719ana3h5pznclfdfp54ggz8vv")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containers/ocicrypt")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) - ("go-gopkg-in-square-go-jose-v2-2.5.1" - ,go-gopkg-in-square-go-jose-v2-2.5.1) - ("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) - ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" - ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) - ("go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2" - ,go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2) - ("go-go-mozilla-org-pkcs7-0.0.0-20200128120323-432b2356ecb1" - ,go-go-mozilla-org-pkcs7-0.0.0-20200128120323-432b2356ecb1) - ("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0) - ("go-github-com-stefanberger-go-pkcs11uri-0.0.0-20201008174630-78d3cae3a980" - ,go-github-com-stefanberger-go-pkcs11uri-0.0.0-20201008174630-78d3cae3a980) - ("go-github-com-sirupsen-logrus-1.7.0" - ,go-github-com-sirupsen-logrus-1.7.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-image-spec-1.0.1" - ,go-github-com-opencontainers-image-spec-1.0.1) - ("go-github-com-opencontainers-go-digest-1.0.0" - ,go-github-com-opencontainers-go-digest-1.0.0) - ("go-github-com-miekg-pkcs11-1.0.3" ,go-github-com-miekg-pkcs11-1.0.3) - ("go-github-com-google-go-cmp-0.5.2" - ,go-github-com-google-go-cmp-0.5.2) - ("go-github-com-golang-protobuf-1.4.3" - ,go-github-com-golang-protobuf-1.4.3))) - (home-page "https://github.com/containers/ocicrypt") - (synopsis "OCIcrypt Library") - (description - "The @code{ocicrypt} library is the OCI image spec implementation of container image encryption. More details of the spec can be seen in the @url{https://github.com/opencontainers/image-spec/pull/775,OCI repository}. The purpose of this library is to encode spec structures and consts in code, as well as provide a consistent implementation of image encryption across container runtimes and build tools.") - (license license:asl2.0))) - -(define-public go-github-com-burntsushi-toml-0.4.1 - (package - (name "go-github-com-burntsushi-toml") - (version "0.4.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/BurntSushi/toml") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0bz7q3v4m2rq5z47q81bvb4lw6ss2r1x3phgr43a6nls9x5kcpp1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/BurntSushi/toml")) - (home-page "https://github.com/BurntSushi/toml") - (synopsis "TOML parser and encoder for Go with reflection") - (description - "Package toml implements decoding and encoding of TOML files. -") - (license license:expat))) - -(define-public go-github-com-microsoft-go-winio-0.5.0 - (package - (name "go-github-com-microsoft-go-winio") - (version "0.5.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/microsoft/go-winio") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "123p5by5craqigydfqj0hchplcv75zz81xzj5s3ixq624qjbg0z5")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/Microsoft/go-winio")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" - ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) - ("go-github-com-sirupsen-logrus-1.7.0" - ,go-github-com-sirupsen-logrus-1.7.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) - (home-page "https://github.com/Microsoft/go-winio") - (synopsis "go-winio") - (description - "This repository contains utilities for efficiently performing Win32 IO operations in -Go. Currently, this is focused on accessing named pipes and other file handles, and -for using named pipes as a net transport.") - (license license:expat))) - -(define-public go-github-com-microsoft-go-winio-0.4.17 - (package - (name "go-github-com-microsoft-go-winio") - (version "0.4.17") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/microsoft/go-winio") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0gmgiak4x4gdyr17zm4b9vvharflk9pz5aj5jayh9hq50133b2f9")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/Microsoft/go-winio")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" - ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) - ("go-github-com-sirupsen-logrus-1.7.0" - ,go-github-com-sirupsen-logrus-1.7.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) - (home-page "https://github.com/Microsoft/go-winio") - (synopsis "go-winio") - (description - "This repository contains utilities for efficiently performing Win32 IO operations in -Go. Currently, this is focused on accessing named pipes and other file handles, and -for using named pipes as a net transport.") - (license license:expat))) - -(define-public go-github-com-cilium-ebpf-0.4.0 - (package - (name "go-github-com-cilium-ebpf") - (version "0.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cilium/ebpf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1j33vfz8mxnqadkd17l0y3ll71gph3ndm8hwrwbwnf5px7bfv9yl")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/cilium/ebpf")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" - ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) - ("go-github-com-google-go-cmp-0.5.4" - ,go-github-com-google-go-cmp-0.5.4) - ("go-github-com-frankban-quicktest-1.11.3" - ,go-github-com-frankban-quicktest-1.11.3))) - (home-page "https://github.com/cilium/ebpf") - (synopsis "eBPF") - (description "Package ebpf is a toolkit for working with eBPF programs. -") - (license license:expat))) - -(define-public go-github-com-coreos-go-systemd-v22-22.1.0 - (package - (name "go-github-com-coreos-go-systemd-v22") - (version "22.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/coreos/go-systemd") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "127dj1iwp69yj74nwh9ckgc0mkk1mv4yzbxmbdxix1r7j6q35z3j")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/coreos/go-systemd/v22")) - (propagated-inputs - `(("go-github-com-godbus-dbus-v5-5.0.3" - ,go-github-com-godbus-dbus-v5-5.0.3))) - (home-page "https://github.com/coreos/go-systemd") - (synopsis "go-systemd") - (description "Go bindings to systemd. The project has several packages:") - (license license:asl2.0))) - -(define-public go-github-com-godbus-dbus-v5-5.0.3 - (package - (name "go-github-com-godbus-dbus-v5") - (version "5.0.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/godbus/dbus") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1bkc904073k807yxg6mvqaxrr6ammmhginr9p54jfb55mz3hfw3s")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/godbus/dbus/v5")) - (home-page "https://github.com/godbus/dbus") - (synopsis "dbus") - (description - "Package dbus implements bindings to the D-Bus message bus system. -") - (license license:bsd-2))) - -(define-public go-github-com-containerd-cgroups-1.0.1 - (package - (name "go-github-com-containerd-cgroups") - (version "1.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/cgroups") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1p992w942xba9z77nhhbc6nk5q09c3zxxhq9n7fm5alx3a8fwbpl")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/cgroups")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" - ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) - ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-sirupsen-logrus-1.7.0" - ,go-github-com-sirupsen-logrus-1.7.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-runtime-spec-1.0.2" - ,go-github-com-opencontainers-runtime-spec-1.0.2) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2) - ("go-github-com-godbus-dbus-v5-5.0.3" - ,go-github-com-godbus-dbus-v5-5.0.3) - ("go-github-com-docker-go-units-0.4.0" - ,go-github-com-docker-go-units-0.4.0) - ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" - ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) - ("go-github-com-coreos-go-systemd-v22-22.1.0" - ,go-github-com-coreos-go-systemd-v22-22.1.0) - ("go-github-com-cilium-ebpf-0.4.0" ,go-github-com-cilium-ebpf-0.4.0))) - (home-page "https://github.com/containerd/cgroups") - (synopsis "cgroups") - (description - "Go package for creating, managing, inspecting, and destroying cgroups. -The resources format for settings on the cgroup uses the OCI runtime-spec found -@url{https://github.com/opencontainers/runtime-spec,here}.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-containerd-1.4.9 - (package - (name "go-github-com-containerd-containerd") - (version "1.4.9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/containerd") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ykikks6ihgg899ibk9m9m0hqrbss0cx7l7z4yjb873b10bacj52")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/containerd")) - (home-page "https://github.com/containerd/containerd") - (synopsis "Now Recruiting") - (description - "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") - (license license:asl2.0))) - -(define-public go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898 - (package - (name "go-bazil-org-fuse") - (version "0.0.0-20160811212531-371fbbdaa898") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/bazil/fuse") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1x5p301py7mcxgwklfm6pqqkzssln0nfzllng49pnk60m03ilp4w")))) - (build-system go-build-system) - (arguments '(#:import-path "bazil.org/fuse")) - (home-page "https://bazil.org/fuse") - (synopsis "bazil.org/fuse -- Filesystems in Go") - (description - "Package fuse enables writing FUSE file systems on Linux and FreeBSD. -") - (license #f))) - -(define-public go-github-com-dustin-go-humanize-1.0.0 - (package - (name "go-github-com-dustin-go-humanize") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/dustin/go-humanize") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1kqf1kavdyvjk7f8kx62pnm7fbypn9z1vbf8v2qdh3y7z7a0cbl3")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/dustin/go-humanize")) - (home-page "https://github.com/dustin/go-humanize") - (synopsis "Humane Units") - (description - "Package humanize converts boring ugly numbers to human-friendly strings and back. -") - (license license:expat))) - -(define-public go-github-com-golang-protobuf-1.3.5 - (package - (name "go-github-com-golang-protobuf") - (version "1.3.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1gkd1942vk9n8kfzdwy1iil6wgvlwjq7a3y5jc49ck4lz9rhmgkq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0 - (package - (name "go-github-com-cpuguy83-go-md2man-v2") - (version "2.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cpuguy83/go-md2man") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) - (propagated-inputs - `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" - ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) - ("go-github-com-russross-blackfriday-v2-2.0.1" - ,go-github-com-russross-blackfriday-v2-2.0.1) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0))) - (home-page "https://github.com/cpuguy83/go-md2man") - (synopsis "go-md2man") - (description "Converts markdown into roff (man pages).") - (license license:expat))) - -(define-public go-github-com-inconshreveable-mousetrap-1.0.0 - (package - (name "go-github-com-inconshreveable-mousetrap") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/inconshreveable/mousetrap") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1mn0kg48xkd74brf48qf5hzp0bc6g8cf5a77w895rl3qnlpfw152")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/inconshreveable/mousetrap")) - (home-page "https://github.com/inconshreveable/mousetrap") - (synopsis "mousetrap") - (description "mousetrap is a tiny library that answers a single question.") - (license license:asl2.0))) - -(define-public go-github-com-mitchellh-go-homedir-1.1.0 - (package - (name "go-github-com-mitchellh-go-homedir") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mitchellh/go-homedir") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ydzkipf28hwj2bfxqmwlww47khyk6d152xax4bnyh60f4lq3nx1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mitchellh/go-homedir")) - (home-page "https://github.com/mitchellh/go-homedir") - (synopsis "go-homedir") - (description - "This is a Go library for detecting the user's home directory without -the use of cgo, so the library can be used in cross-compilation environments.") - (license license:expat))) - -(define-public go-github-com-armon-consul-api-0.0.0-20180202201655-eb2c6b5be1b6 - (package - (name "go-github-com-armon-consul-api") - (version "0.0.0-20180202201655-eb2c6b5be1b6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/armon/consul-api") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1j6fdr1sg36qy4n4xjl7brq739fpm5npq98cmvklzjc9qrx98nk9")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/armon/consul-api")) - (home-page "https://github.com/armon/consul-api") - (synopsis "consul-api") - (description - " Please use @url{https://github.com/hashicorp/consul/tree/master/api,consul api package} instead. -Godocs for that package @url{http://godoc.org/github.com/hashicorp/consul/api,are here}.") - (license license:mpl2.0))) - -(define-public go-github-com-coreos-bbolt-1.3.2 - (package - (name "go-github-com-coreos-bbolt") - (version "1.3.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/etcd-io/bbolt") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "13d5l6p6c5wvkr6vn9hkhz9c593qifn7fgx0hg4d6jcvg1y0bnm2")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/coreos/bbolt")) - (home-page "https://github.com/coreos/bbolt") - (synopsis "bbolt") - (description - "package bbolt implements a low-level key/value store in pure Go. It supports -fully serializable transactions, ACID semantics, and lock-free MVCC with -multiple readers and a single writer. Bolt can be used for projects that -want a simple data store without the need to add large dependencies such as -Postgres or MySQL. -") - (license license:expat))) - -(define-public go-github-com-coreos-etcd-3.3.10+incompatible - (package - (name "go-github-com-coreos-etcd") - (version "3.3.10+incompatible") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/etcd-io/etcd") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1x2ii1hj8jraba8rbxz6dmc03y3sjxdnzipdvg6fywnlq1f3l3wl")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/coreos/etcd")) - (home-page "https://github.com/coreos/etcd") - (synopsis "etcd") - (description - "Package main is a simple wrapper of the real etcd entrypoint package -(located at github.com/coreos/etcd/etcdmain) to ensure that etcd is still -\"go getable\"; e.g. `go get github.com/coreos/etcd` works as expected and -builds a binary in $GOBIN/etcd -") - (license license:asl2.0))) - -(define-public go-github-com-coreos-go-semver-0.2.0 - (package - (name "go-github-com-coreos-go-semver") - (version "0.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/coreos/go-semver") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1gghi5bnqj50hfxhqc1cxmynqmh2yk9ii7ab9gsm75y5cp94ymk0")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/coreos/go-semver")) - (home-page "https://github.com/coreos/go-semver") - (synopsis "go-semver - Semantic Versioning Library") - (description - "go-semver is a @url{http://semver.org/,semantic versioning} library for Go. It lets you parse -and compare two semantic version strings.") - (license license:asl2.0))) - -(define-public go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e - (package - (name "go-github-com-coreos-go-systemd") - (version "0.0.0-20190321100706-95778dfbb74e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/coreos/go-systemd") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1s3bg9p78wkixn2bqb2p23wbsqfg949ml6crw2b498s71mwh8rcf")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/coreos/go-systemd")) - (home-page "https://github.com/coreos/go-systemd") - (synopsis "go-systemd") - (description "Go bindings to systemd. The project has several packages:") - (license license:asl2.0))) - -(define-public go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f - (package - (name "go-github-com-coreos-pkg") - (version "0.0.0-20180928190104-399ea9e2e55f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/coreos/pkg") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0nxbn0m7lr4dg0yrwnvlkfiyg3ndv8vdpssjx7b714nivpc6ar0y")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/coreos/pkg")) - (home-page "https://github.com/coreos/pkg") - (synopsis #f) - (description "a collection of go utility packages") - (license license:asl2.0))) - -(define-public go-github-com-dgrijalva-jwt-go-3.2.0+incompatible - (package - (name "go-github-com-dgrijalva-jwt-go") - (version "3.2.0+incompatible") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/dgrijalva/jwt-go") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "08m27vlms74pfy5z79w67f9lk9zkx6a9jd68k3c4msxy75ry36mp")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/dgrijalva/jwt-go")) - (home-page "https://github.com/dgrijalva/jwt-go") - (synopsis "jwt-go") - (description - "Package jwt is a Go implementation of JSON Web Tokens: @url{http://self-issued.info/docs/draft-jones-json-web-token.html,http://self-issued.info/docs/draft-jones-json-web-token.html} -") - (license license:expat))) - -(define-public go-github-com-fsnotify-fsnotify-1.4.7 - (package - (name "go-github-com-fsnotify-fsnotify") - (version "1.4.7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/fsnotify/fsnotify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/fsnotify/fsnotify")) - (home-page "https://github.com/fsnotify/fsnotify") - (synopsis "File system notifications for Go") - (description - "Package fsnotify provides a platform-independent interface for file system notifications. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20180221164845-07fd8470d635 - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20180221164845-07fd8470d635") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "193g0a1zxb9ikph7r2klc6rdqxqzfmmr8d5bcibyhsm2l63s17mx")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-github-com-kisielk-errcheck-1.1.0 - (package - (name "go-github-com-kisielk-errcheck") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kisielk/errcheck") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19vd4rxmqbk5lpiav3pf7df3yjlz0l0dwx9mn0gjq5f998iyhy6y")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kisielk/errcheck")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20180221164845-07fd8470d635" - ,go-golang-org-x-tools-0.0.0-20180221164845-07fd8470d635) - ("go-github-com-kisielk-gotool-1.0.0" - ,go-github-com-kisielk-gotool-1.0.0))) - (home-page "https://github.com/kisielk/errcheck") - (synopsis "errcheck") - (description - "errcheck is a program for checking for unchecked errors in go programs.") - (license license:expat))) - -(define-public go-github-com-gogo-protobuf-1.2.1 - (package - (name "go-github-com-gogo-protobuf") - (version "1.2.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gogo/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "06yqa6h0kw3gr5pc3qmas7f7435a96zf7iw7p0l00r2hqf6fqq6m")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/gogo/protobuf")) - (propagated-inputs - `(("go-github-com-kisielk-errcheck-1.1.0" - ,go-github-com-kisielk-errcheck-1.1.0))) - (home-page "https://github.com/gogo/protobuf") - (synopsis "Protocol Buffers for Go with Gadgets") - (description - "gogoprotobuf is a fork of @url{https://github.com/golang/protobuf,golang/protobuf} with extra code generation features.") - (license license:bsd-3))) - -(define-public go-github-com-golang-groupcache-0.0.0-20190129154638-5b532d6fd5ef - (package - (name "go-github-com-golang-groupcache") - (version "0.0.0-20190129154638-5b532d6fd5ef") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/groupcache") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ls2i4ixyd4r2556j7c5jmlligjb35gfvxknrdn2abjmcahgqd6h")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/groupcache")) - (home-page "https://github.com/golang/groupcache") - (synopsis "groupcache") - (description - "Package groupcache provides a data loading mechanism with caching -and de-duplication that works across a set of peer processes. -") - (license license:asl2.0))) - -(define-public go-github-com-google-btree-1.0.0 - (package - (name "go-github-com-google-btree") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/btree") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ba430m9fbnagacp57krgidsyrgp3ycw5r7dj71brgp5r52g82p6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/btree")) - (home-page "https://github.com/google/btree") - (synopsis "BTree implementation for Go") - (description - "Package btree implements in-memory B-Trees of arbitrary degree. -") - (license license:asl2.0))) - -(define-public go-github-com-gorilla-websocket-1.4.0 - (package - (name "go-github-com-gorilla-websocket") - (version "1.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gorilla/websocket") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "00i4vb31nsfkzzk7swvx3i75r2d960js3dri1875vypk3v2s0pzk")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/gorilla/websocket")) - (home-page "https://github.com/gorilla/websocket") - (synopsis "Gorilla WebSocket") - (description - "Package websocket implements the WebSocket protocol defined in @url{https://rfc-editor.org/rfc/rfc6455.html,RFC 6455}. -") - (license license:bsd-2))) - -(define-public go-github-com-grpc-ecosystem-go-grpc-middleware-1.0.0 - (package - (name "go-github-com-grpc-ecosystem-go-grpc-middleware") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc-ecosystem/go-grpc-middleware") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0lwgxih021xfhfb1xb9la5f98bpgpaiz63sbllx77qwwl2rmhrsp")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/grpc-ecosystem/go-grpc-middleware")) - (home-page "https://github.com/grpc-ecosystem/go-grpc-middleware") - (synopsis "Go gRPC Middleware") - (description - "`grpc_middleware` is a collection of gRPC middleware packages: interceptors, helpers and tools. -") - (license license:asl2.0))) - -(define-public go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0 - (package - (name "go-github-com-grpc-ecosystem-go-grpc-prometheus") - (version "1.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc-ecosystem/go-grpc-prometheus") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1lzk54h7np32b3acidg1ggbn8ppbnns0m71gcg9d1qkkdh8zrijl")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/grpc-ecosystem/go-grpc-prometheus")) - (home-page "https://github.com/grpc-ecosystem/go-grpc-prometheus") - (synopsis "Go gRPC Interceptors for Prometheus monitoring") - (description - "@url{https://prometheus.io/,Prometheus} monitoring for your @url{https://github.com/grpc/grpc-go,gRPC Go} servers and clients.") - (license license:asl2.0))) - -(define-public go-github-com-kr-pretty-0.1.0 - (package - (name "go-github-com-kr-pretty") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/pretty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18m4pwg2abd0j9cn5v3k2ksk9ig4vlwxmlw9rrglanziv9l967qp")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/pretty")) - (propagated-inputs - `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) - (home-page "https://github.com/kr/pretty") - (synopsis #f) - (description - "Package pretty provides pretty-printing for Go values. This is -useful during debugging, to avoid wrapping long output lines in -the terminal. -") - (license license:expat))) - -(define-public go-github-com-rogpeppe-fastuuid-0.0.0-20150106093220-6724a57986af - (package - (name "go-github-com-rogpeppe-fastuuid") - (version "0.0.0-20150106093220-6724a57986af") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/rogpeppe/fastuuid") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12s65phfx6hxj4v0b5kj8akgrbf5mxpa101fyzw03h6hld1f70cz")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/rogpeppe/fastuuid")) - (home-page "https://github.com/rogpeppe/fastuuid") - (synopsis "fastuuid") - (description - "Package fastuuid provides fast UUID generation of 192 bit -universally unique identifiers. -") - (license license:bsd-3))) - -(define-public go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127 - (package - (name "go-gopkg-in-check-v1") - (version "1.0.0-20180628173108-788fd7840127") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/check.v1") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0v3bim0j375z81zrpr5qv42knqs0y2qv2vkjiqi5axvb78slki1a")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) - (home-page "https://gopkg.in/check.v1") - (synopsis "Instructions") - (description - "Package check is a rich testing extension for Go's testing package. -") - (license license:bsd-2))) - -(define-public go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20181220203305-927f97764cc3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0np7b766gb92vbm514yhdl7cjmqvn0dxdxskd84aas2ri1fkpgw5")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-gopkg-in-resty-v1-1.12.0 - (package - (name "go-gopkg-in-resty-v1") - (version "1.12.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/resty.v1") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "062mn735rqzhha5ag07z4gz08hxzrfm2yx067jfmaaxmb6797lmp")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/resty.v1" #:unpack-path "gopkg.in/resty.v1")) - (propagated-inputs - `(("go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3" - ,go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3))) - (home-page "https://gopkg.in/resty.v1") - (synopsis "News") - (description - "Package resty provides Simple HTTP and REST client library for Go. -") - (license license:expat))) - -(define-public go-gopkg-in-yaml-v2-2.0.0-20170812160011-eb3733d160e7 - (package - (name "go-gopkg-in-yaml-v2") - (version "2.0.0-20170812160011-eb3733d160e7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v2") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1srhvcaa9db3a6xj29mkjr5kg33y71pclrlx4vcwz5m1lgb5c7q6")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) - (home-page "https://gopkg.in/yaml.v2") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language. -") - (license license:asl2.0))) - -(define-public go-github-com-grpc-ecosystem-grpc-gateway-1.9.0 - (package - (name "go-github-com-grpc-ecosystem-grpc-gateway") - (version "1.9.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc-ecosystem/grpc-gateway") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1r4y48c76yxc2hpqszfjirvh7zxjb6z72qmk95li12ar79dhv3dy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/grpc-ecosystem/grpc-gateway")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.0.0-20170812160011-eb3733d160e7" - ,go-gopkg-in-yaml-v2-2.0.0-20170812160011-eb3733d160e7) - ("go-gopkg-in-resty-v1-1.12.0" ,go-gopkg-in-resty-v1-1.12.0) - ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" - ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) - ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) - ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" - ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) - ("go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8" - ,go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8) - ("go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3" - ,go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3) - ("go-github-com-rogpeppe-fastuuid-0.0.0-20150106093220-6724a57986af" - ,go-github-com-rogpeppe-fastuuid-0.0.0-20150106093220-6724a57986af) - ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-ghodss-yaml-1.0.0" ,go-github-com-ghodss-yaml-1.0.0))) - (home-page "https://github.com/grpc-ecosystem/grpc-gateway") - (synopsis "grpc-gateway") - (description - "The grpc-gateway is a plugin of the Google protocol buffers compiler -@url{https://github.com/protocolbuffers/protobuf,protoc}. -It reads protobuf service definitions and generates a reverse-proxy server which -translates a RESTful HTTP API into gRPC. This server is generated according to the -@url{https://github.com/googleapis/googleapis/raw/master/google/api/http.proto#L46,(code google.api.http)} -annotations in your service definitions.") - (license license:bsd-3))) - -(define-public go-github-com-hashicorp-hcl-1.0.0 - (package - (name "go-github-com-hashicorp-hcl") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/hcl") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0q6ml0qqs0yil76mpn4mdx4lp94id8vbv575qm60jzl1ijcl5i66")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/hcl")) - (propagated-inputs - `(("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/hashicorp/hcl") - (synopsis "HCL") - (description "Package hcl decodes HCL into usable Go structures. -") - (license license:mpl2.0))) - -(define-public go-github-com-jonboulle-clockwork-0.1.0 - (package - (name "go-github-com-jonboulle-clockwork") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/jonboulle/clockwork") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1pqxhsdavbp1n5grgyx2j6ylvql2fzn2cvpsgkc8li69dil7sibl")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/jonboulle/clockwork")) - (home-page "https://github.com/jonboulle/clockwork") - (synopsis "clockwork") - (description - "Replace uses of the @code{time} package with the @code{clockwork.Clock} interface instead.") - (license license:asl2.0))) - -(define-public go-github-com-magiconair-properties-1.8.0 - (package - (name "go-github-com-magiconair-properties") - (version "1.8.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/magiconair/properties") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1a10362wv8a8qwb818wygn2z48lgzch940hvpv81hv8gc747ajxn")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/magiconair/properties")) - (home-page "https://github.com/magiconair/properties") - (synopsis "Overview") - (description - "Package properties provides functions for reading and writing -ISO-8859-1 and UTF-8 encoded .properties files and has -support for recursive property expansion. -") - (license license:bsd-2))) - -(define-public go-github-com-mitchellh-mapstructure-1.1.2 - (package - (name "go-github-com-mitchellh-mapstructure") - (version "1.1.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mitchellh/mapstructure") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "03bpv28jz9zhn4947saqwi328ydj7f6g6pf1m2d4m5zdh5jlfkrr")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mitchellh/mapstructure")) - (home-page "https://github.com/mitchellh/mapstructure") - (synopsis "mapstructure") - (description - "Package mapstructure exposes functionality to convert one arbitrary -Go type into another, typically to convert a map[string]interface{} -into a native Go structure. -") - (license license:expat))) - -(define-public go-github-com-pelletier-go-toml-1.2.0 - (package - (name "go-github-com-pelletier-go-toml") - (version "1.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pelletier/go-toml") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fjzpcjng60mc3a4b2ql5a00d5gah84wj740dabv9kq67mpg8fxy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pelletier/go-toml")) - (home-page "https://github.com/pelletier/go-toml") - (synopsis "go-toml") - (description "Package toml is a TOML parser and manipulation library. -") - (license #f))) - -(define-public go-github-com-beorn7-perks-1.0.0 - (package - (name "go-github-com-beorn7-perks") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/beorn7/perks") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1i1nz1f6g55xi2y3aiaz5kqfgvknarbfl4f0sx4nyyb4s7xb1z9x")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/beorn7/perks")) - (home-page "https://github.com/beorn7/perks") - (synopsis "Perks for Go (golang.org)") - (description - "Perks contains the Go package quantile that computes approximate quantiles over -an unbounded data stream within low memory and CPU bounds.") - (license license:expat))) - -(define-public go-github-com-go-logfmt-logfmt-0.4.0 - (package - (name "go-github-com-go-logfmt-logfmt") - (version "0.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/go-logfmt/logfmt") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "06smxc112xmixz78nyvk3b2hmc7wasf2sl5vxj1xz62kqcq9lzm9")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/go-logfmt/logfmt")) - (propagated-inputs - `(("go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515" - ,go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515))) - (home-page "https://github.com/go-logfmt/logfmt") - (synopsis "logfmt") - (description - "Package logfmt implements utilities to marshal and unmarshal data in the -logfmt format. The logfmt format records key/value pairs in a way that -balances readability for humans and simplicity of computer parsing. It is -most commonly used as a more human friendly alternative to JSON for -structured logging. -") - (license license:expat))) - -(define-public go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90 - (package - (name "go-github-com-prometheus-client-model") - (version "0.0.0-20190129233127-fd36f4220a90") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/client_model") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1bs5d72k361llflgl94c22n0w53j30rsfh84smgk8mbjbcmjsaa5")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/client_model")) - (propagated-inputs - `(("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" - ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0))) - (home-page "https://github.com/prometheus/client_model") - (synopsis "Deprecation note") - (description - "This repository used to contain the code that defined both -the data model and the exposition format of Prometheus metrics.") - (license license:asl2.0))) - -(define-public go-github-com-julienschmidt-httprouter-1.2.0 - (package - (name "go-github-com-julienschmidt-httprouter") - (version "1.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/julienschmidt/httprouter") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1k8bylc9s4vpvf5xhqh9h246dl1snxrzzz0614zz88cdh8yzs666")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/julienschmidt/httprouter")) - (home-page "https://github.com/julienschmidt/httprouter") - (synopsis "HttpRouter") - (description - "Package httprouter is a trie based high performance HTTP request router. -") - (license license:bsd-3))) - -(define-public go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223 - (package - (name "go-github-com-mwitkow-go-conntrack") - (version "0.0.0-20161129095857-cc309e4a2223") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mwitkow/go-conntrack") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0nbrnpk7bkmqg9mzwsxlm0y8m7s9qd9phr1q30qlx2qmdmz7c1mf")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mwitkow/go-conntrack")) - (home-page "https://github.com/mwitkow/go-conntrack") - (synopsis "Go tracing and monitoring (Prometheus) for") - (description - "@url{https://prometheus.io/,Prometheus} monitoring and @url{https://godoc.org/golang.org/x/net/trace#EventLog,(code x/net/trace)} tracing wrappers @code{net.Conn}, both inbound (@code{net.Listener}) and outbound (@code{net.Dialer}).") - (license license:asl2.0))) - -(define-public go-golang-org-x-crypto-0.0.0-20180904163835-0709b304e793 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20180904163835-0709b304e793") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0i05s09y5pavmfh71fgih7syxg58x7a4krgd8am6d3mnahnmab5c")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20180905080454-ebe1bf3edb33") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0rkspxyjxdmc9f4n09hgkwj8jjd8z5p8mc9z8vwqwqcwrqv4sg7c")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-sirupsen-logrus-1.2.0 - (package - (name "go-github-com-sirupsen-logrus") - (version "1.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sirupsen/logrus") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0r6334x2bls8ddznvzaldx4g88msjjns4mlks95rqrrg7h0ijigg")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/sirupsen/logrus")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33" - ,go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33) - ("go-golang-org-x-crypto-0.0.0-20180904163835-0709b304e793" - ,go-golang-org-x-crypto-0.0.0-20180904163835-0709b304e793) - ("go-github-com-stretchr-testify-1.2.2" - ,go-github-com-stretchr-testify-1.2.2) - ("go-github-com-stretchr-objx-0.1.1" - ,go-github-com-stretchr-objx-0.1.1) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.1" - ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.1) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/sirupsen/logrus") - (synopsis "Logrus") - (description - "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. -") - (license license:expat))) - -(define-public go-golang-org-x-net-0.0.0-20181114220301-adae6a3d119a - (package - (name "go-golang-org-x-net") - (version "0.0.0-20181114220301-adae6a3d119a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fx860zsgzqk28j7lmp96qsfrgb0kzbfjvr294hywswcbwdwkb01")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20181116152217-5ac8a444bdc5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "00zdrighflwc4iyizsag184nvl1cbkk02v73kpl5miprdrvzqlr4")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-gopkg-in-yaml-v2-2.2.1 - (package - (name "go-gopkg-in-yaml-v2") - (version "2.2.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0dwjrs2lp2gdlscs7bsrmyc5yf6mm4fvgw71bzr9mv2qrd2q73s1")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v2") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language. -") - (license license:asl2.0))) - -(define-public go-github-com-prometheus-common-0.4.0 - (package - (name "go-github-com-prometheus-common") - (version "0.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/common") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "00008pczafy982m59n1j31pnp41f4grbc2c40jccp52xg3m5klmr")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/common")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1) - ("go-gopkg-in-alecthomas-kingpin-v2-2.2.6" - ,go-gopkg-in-alecthomas-kingpin-v2-2.2.6) - ("go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5" - ,go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5) - ("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" - ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) - ("go-golang-org-x-net-0.0.0-20181114220301-adae6a3d119a" - ,go-golang-org-x-net-0.0.0-20181114220301-adae6a3d119a) - ("go-github-com-sirupsen-logrus-1.2.0" - ,go-github-com-sirupsen-logrus-1.2.0) - ("go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d" - ,go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d) - ("go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910" - ,go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910) - ("go-github-com-prometheus-client-golang-0.9.1" - ,go-github-com-prometheus-client-golang-0.9.1) - ("go-github-com-pkg-errors-0.8.0" ,go-github-com-pkg-errors-0.8.0) - ("go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223" - ,go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223) - ("go-github-com-matttproud-golang-protobuf-extensions-1.0.1" - ,go-github-com-matttproud-golang-protobuf-extensions-1.0.1) - ("go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515" - ,go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515) - ("go-github-com-julienschmidt-httprouter-1.2.0" - ,go-github-com-julienschmidt-httprouter-1.2.0) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0) - ("go-github-com-gogo-protobuf-1.1.1" - ,go-github-com-gogo-protobuf-1.1.1) - ("go-github-com-go-stack-stack-1.8.0" - ,go-github-com-go-stack-stack-1.8.0) - ("go-github-com-go-logfmt-logfmt-0.3.0" - ,go-github-com-go-logfmt-logfmt-0.3.0) - ("go-github-com-go-kit-kit-0.8.0" ,go-github-com-go-kit-kit-0.8.0) - ("go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973" - ,go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973) - ("go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf" - ,go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf) - ("go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc" - ,go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc))) - (home-page "https://github.com/prometheus/common") - (synopsis "Common") - (description - "This repository contains Go libraries that are shared across Prometheus -components and libraries. They are considered internal to Prometheus, without -any stability guarantees for external usage.") - (license license:asl2.0))) - -(define-public go-github-com-prometheus-procfs-0.0.0-20190507164030-5867b95ac084 - (package - (name "go-github-com-prometheus-procfs") - (version "0.0.0-20190507164030-5867b95ac084") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/procfs") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1rahdk62ajj4zpfb3mgzjqip773la9fb0m87m7s9a0b39l3fmzvr")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/procfs")) - (propagated-inputs - `(("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" - ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4))) - (home-page "https://github.com/prometheus/procfs") - (synopsis "procfs") - (description - "Package procfs provides functions to retrieve system, kernel and process -metrics from the pseudo-filesystem proc. -") - (license license:asl2.0))) - -(define-public go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc - (package - (name "go-github-com-alecthomas-template") - (version "0.0.0-20160405071501-a0175ee3bccc") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/alecthomas/template") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0qjgvvh26vk1cyfq9fadyhfgdj36f1iapbmr5xp6zqipldz8ffxj")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/alecthomas/template")) - (home-page "https://github.com/alecthomas/template") - (synopsis "Go's") - (description - "Package template implements data-driven templates for generating textual output. -") - (license license:bsd-3))) - -(define-public go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf - (package - (name "go-github-com-alecthomas-units") - (version "0.0.0-20151022065526-2efee857e7cf") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/alecthomas/units") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1j65b91qb9sbrml9cpabfrcf07wmgzzghrl7809hjjhrmbzri5bl")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/alecthomas/units")) - (home-page "https://github.com/alecthomas/units") - (synopsis "Units - Helpful unit multipliers and functions for Go") - (description - "Package units provides helpful unit multipliers and functions for Go. -") - (license license:expat))) - -(define-public go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973 - (package - (name "go-github-com-beorn7-perks") - (version "0.0.0-20180321164747-3a771d992973") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/beorn7/perks") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1l2lns4f5jabp61201sh88zf3b0q793w4zdgp9nll7mmfcxxjif3")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/beorn7/perks")) - (home-page "https://github.com/beorn7/perks") - (synopsis "Perks for Go (golang.org)") - (description - "Perks contains the Go package quantile that computes approximate quantiles over -an unbounded data stream within low memory and CPU bounds.") - (license license:expat))) - -(define-public go-github-com-dgryski-go-sip13-0.0.0-20181026042036-e10d5fee7954 - (package - (name "go-github-com-dgryski-go-sip13") - (version "0.0.0-20181026042036-e10d5fee7954") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/dgryski/go-sip13") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "15fyibfas209ljz3f7g07kdmfbl3hhyd9n5n7aq5n5p9m5mn41d6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/dgryski/go-sip13")) - (home-page "https://github.com/dgryski/go-sip13") - (synopsis #f) - (description #f) - (license license:expat))) - -(define-public go-github-com-go-kit-kit-0.8.0 - (package - (name "go-github-com-go-kit-kit") - (version "0.8.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/go-kit/kit") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1rcywbc2pvab06qyf8pc2rdfjv7r6kxdv2v4wnpqnjhz225wqvc0")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/go-kit/kit")) - (home-page "https://github.com/go-kit/kit") - (synopsis "Go kit") - (description - "@strong{Go kit} is a @strong{programming toolkit} for building microservices -(or elegant monoliths) in Go. We solve common problems in distributed -systems and application architecture so you can focus on delivering -business value.") - (license license:expat))) - -(define-public go-github-com-go-logfmt-logfmt-0.3.0 - (package - (name "go-github-com-go-logfmt-logfmt") - (version "0.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/go-logfmt/logfmt") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1gkgh3k5w1xwb2qbjq52p6azq3h1c1rr6pfwjlwj1zrijpzn2xb9")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/go-logfmt/logfmt")) - (home-page "https://github.com/go-logfmt/logfmt") - (synopsis "logfmt") - (description - "Package logfmt implements utilities to marshal and unmarshal data in the -logfmt format. The logfmt format records key/value pairs in a way that -balances readability for humans and simplicity of computer parsing. It is -most commonly used as a more human friendly alternative to JSON for -structured logging. -") - (license license:expat))) - -(define-public go-github-com-go-stack-stack-1.8.0 - (package - (name "go-github-com-go-stack-stack") - (version "1.8.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/go-stack/stack") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0wk25751ryyvxclyp8jdk5c3ar0cmfr8lrjb66qbg4808x66b96v")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/go-stack/stack")) - (home-page "https://github.com/go-stack/stack") - (synopsis "stack") - (description - "Package stack implements utilities to capture, manipulate, and format call -stacks. It provides a simpler API than package runtime. -") - (license license:expat))) - -(define-public go-github-com-gogo-protobuf-1.1.1 - (package - (name "go-github-com-gogo-protobuf") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gogo/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1525pq7r6h3s8dncvq8gxi893p2nq8dxpzvq0nfl5b4p6mq0v1c2")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/gogo/protobuf")) - (home-page "https://github.com/gogo/protobuf") - (synopsis "Protocol Buffers for Go with Gadgets") - (description - "gogoprotobuf is a fork of @url{https://github.com/golang/protobuf,golang/protobuf} with extra code generation features.") - (license license:bsd-3))) - -(define-public go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515 - (package - (name "go-github-com-kr-logfmt") - (version "0.0.0-20140226030751-b84e30acd515") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/logfmt") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "02ldzxgznrfdzvghfraslhgp19la1fczcbzh7wm2zdc6lmpd1qq9")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/logfmt")) - (home-page "https://github.com/kr/logfmt") - (synopsis #f) - (description - "Package implements the decoding of logfmt key-value pairs. -") - (license license:expat))) - -(define-public go-github-com-matttproud-golang-protobuf-extensions-1.0.1 - (package - (name "go-github-com-matttproud-golang-protobuf-extensions") - (version "1.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/matttproud/golang_protobuf_extensions") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1d0c1isd2lk9pnfq2nk0aih356j30k3h1gi2w0ixsivi5csl7jya")))) - (build-system go-build-system) - (arguments - '(#:import-path "github.com/matttproud/golang_protobuf_extensions")) - (home-page "https://github.com/matttproud/golang_protobuf_extensions") - (synopsis "Overview") - (description - "This repository provides various Protocol Buffer extensions for the Go -language (golang), namely support for record length-delimited message -streaming.") - (license license:asl2.0))) - -(define-public go-github-com-oklog-ulid-1.3.1 - (package - (name "go-github-com-oklog-ulid") - (version "1.3.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/oklog/ulid") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hybwyid820n80axrk863k2py93hbqlq6hxhf84ppmz0qd0ys0gq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/oklog/ulid")) - (home-page "https://github.com/oklog/ulid") - (synopsis "Universally Unique Lexicographically Sortable Identifier") - (description - "This package provides a Go port of @url{https://github.com/alizain/ulid,alizain/ulid} with binary format implemented.") - (license license:asl2.0))) - -(define-public go-github-com-pkg-errors-0.8.0 - (package - (name "go-github-com-pkg-errors") - (version "0.8.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pkg/errors") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "001i6n71ghp2l6kdl3qq1v2vmghcz3kicv9a5wgcihrzigm75pp5")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pkg/errors")) - (home-page "https://github.com/pkg/errors") - (synopsis "errors") - (description "Package errors provides simple error handling primitives. -") - (license license:bsd-2))) - -(define-public go-github-com-prometheus-client-golang-0.9.1 - (package - (name "go-github-com-prometheus-client-golang") - (version "0.9.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/client_golang") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "01gnylazia30pcp069xcng482gwmm3xcx5zgrlwdkhic1lyb6i9l")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/client_golang")) - (home-page "https://github.com/prometheus/client_golang") - (synopsis "Prometheus Go client library") - (description - "This is the @url{http://golang.org,Go} client library for -@url{http://prometheus.io,Prometheus}. It has two separate parts, one for -instrumenting application code, and one for creating clients that talk to the -Prometheus HTTP API.") - (license license:asl2.0))) - -(define-public go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910 - (package - (name "go-github-com-prometheus-client-model") - (version "0.0.0-20180712105110-5c3871d89910") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/client_model") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "04psf81l9fjcwascsys428v03fx4fi894h7fhrj2vvcz723q57k0")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/client_model")) - (home-page "https://github.com/prometheus/client_model") - (synopsis "Deprecation note") - (description - "This repository used to contain the code that defined both -the data model and the exposition format of Prometheus metrics.") - (license license:asl2.0))) - -(define-public go-github-com-prometheus-common-0.0.0-20181113130724-41aa239b4cce - (package - (name "go-github-com-prometheus-common") - (version "0.0.0-20181113130724-41aa239b4cce") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/common") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0spy10lwanqa5ynks9cagphkq74zz4b3jm4w59vvizdcw4fhd7s6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/common")) - (home-page "https://github.com/prometheus/common") - (synopsis "Common") - (description - "This repository contains Go libraries that are shared across Prometheus -components and libraries. They are considered internal to Prometheus, without -any stability guarantees for external usage.") - (license license:asl2.0))) - -(define-public go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d - (package - (name "go-github-com-prometheus-procfs") - (version "0.0.0-20181005140218-185b4288413d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/procfs") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0d85429kdw5dgj5zhyiz1sq3i5691vj2gjnda93nnxxzx9acg8cv")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/procfs")) - (home-page "https://github.com/prometheus/procfs") - (synopsis "procfs") - (description - "Package procfs provides functions to retrieve system, kernel and process -metrics from the pseudo-filesystem proc. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20181107165924-66b7b1311ac8") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "00ny4r2bbj6rz939iy9g699acqydq7rfi6r6awn25w9i2dld9m13")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-gopkg-in-alecthomas-kingpin-v2-2.2.6 - (package - (name "go-gopkg-in-alecthomas-kingpin-v2") - (version "2.2.6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/alecthomas/kingpin.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0mndnv3hdngr3bxp7yxfd47cas4prv98sqw534mx7vp38gd88n5r")))) - (build-system go-build-system) - (arguments - '(#:import-path - "gopkg.in/alecthomas/kingpin.v2" - #:unpack-path - "gopkg.in/alecthomas/kingpin.v2")) - (home-page "https://gopkg.in/alecthomas/kingpin.v2") - (synopsis "Kingpin - A Go (golang) command line and flag parser") - (description - "Package kingpin provides command line interfaces like this: -") - (license license:expat))) - -(define-public go-github-com-prometheus-tsdb-0.7.1 - (package - (name "go-github-com-prometheus-tsdb") - (version "0.7.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus-junkyard/tsdb") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1c1da8i5byvhh4fp3vqjfb65aaksjskn3ggb8wg9hcfzjrhgpz04")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/tsdb")) - (propagated-inputs - `(("go-gopkg-in-alecthomas-kingpin-v2-2.2.6" - ,go-gopkg-in-alecthomas-kingpin-v2-2.2.6) - ("go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8" - ,go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8) - ("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" - ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) - ("go-github-com-stretchr-testify-1.2.2" - ,go-github-com-stretchr-testify-1.2.2) - ("go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d" - ,go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d) - ("go-github-com-prometheus-common-0.0.0-20181113130724-41aa239b4cce" - ,go-github-com-prometheus-common-0.0.0-20181113130724-41aa239b4cce) - ("go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910" - ,go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910) - ("go-github-com-prometheus-client-golang-0.9.1" - ,go-github-com-prometheus-client-golang-0.9.1) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-pkg-errors-0.8.0" ,go-github-com-pkg-errors-0.8.0) - ("go-github-com-oklog-ulid-1.3.1" ,go-github-com-oklog-ulid-1.3.1) - ("go-github-com-matttproud-golang-protobuf-extensions-1.0.1" - ,go-github-com-matttproud-golang-protobuf-extensions-1.0.1) - ("go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515" - ,go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0) - ("go-github-com-gogo-protobuf-1.1.1" - ,go-github-com-gogo-protobuf-1.1.1) - ("go-github-com-go-stack-stack-1.8.0" - ,go-github-com-go-stack-stack-1.8.0) - ("go-github-com-go-logfmt-logfmt-0.3.0" - ,go-github-com-go-logfmt-logfmt-0.3.0) - ("go-github-com-go-kit-kit-0.8.0" ,go-github-com-go-kit-kit-0.8.0) - ("go-github-com-dgryski-go-sip13-0.0.0-20181026042036-e10d5fee7954" - ,go-github-com-dgryski-go-sip13-0.0.0-20181026042036-e10d5fee7954) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1) - ("go-github-com-cespare-xxhash-1.1.0" - ,go-github-com-cespare-xxhash-1.1.0) - ("go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973" - ,go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973) - ("go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf" - ,go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf) - ("go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc" - ,go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc))) - (home-page "https://github.com/prometheus/tsdb") - (synopsis "TSDB") - (description - "Package tsdb implements a time series storage for float64 sample data. -") - (license license:asl2.0))) - -(define-public go-github-com-prometheus-client-golang-0.9.3 - (package - (name "go-github-com-prometheus-client-golang") - (version "0.9.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/client_golang") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1608rm1y2p3iv8k2x7wyc6hshvpbfkv2k77hy0x870syms1g3g1p")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/client_golang")) - (propagated-inputs - `(("go-github-com-prometheus-tsdb-0.7.1" - ,go-github-com-prometheus-tsdb-0.7.1) - ("go-github-com-prometheus-procfs-0.0.0-20190507164030-5867b95ac084" - ,go-github-com-prometheus-procfs-0.0.0-20190507164030-5867b95ac084) - ("go-github-com-prometheus-common-0.4.0" - ,go-github-com-prometheus-common-0.4.0) - ("go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90" - ,go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90) - ("go-github-com-golang-protobuf-1.3.1" - ,go-github-com-golang-protobuf-1.3.1) - ("go-github-com-go-logfmt-logfmt-0.4.0" - ,go-github-com-go-logfmt-logfmt-0.4.0) - ("go-github-com-beorn7-perks-1.0.0" - ,go-github-com-beorn7-perks-1.0.0))) - (home-page "https://github.com/prometheus/client_golang") - (synopsis "Prometheus Go client library") - (description - "This is the @url{http://golang.org,Go} client library for -@url{http://prometheus.io,Prometheus}. It has two separate parts, one for -instrumenting application code, and one for creating clients that talk to the -Prometheus HTTP API.") - (license license:asl2.0))) - -(define-public go-github-com-soheilhy-cmux-0.1.4 - (package - (name "go-github-com-soheilhy-cmux") - (version "0.1.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/soheilhy/cmux") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1f736g68d9vwlyfb6g0fxkr0r875369xafk30cz8kaq5niaqwv0h")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/soheilhy/cmux")) - (home-page "https://github.com/soheilhy/cmux") - (synopsis "cmux: Connection Mux") - (description - "Package cmux is a library to multiplex network connections based on -their payload. Using cmux, you can serve different protocols from the -same listener. -") - (license license:asl2.0))) - -(define-public go-github-com-spf13-afero-1.1.2 - (package - (name "go-github-com-spf13-afero") - (version "1.1.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/spf13/afero") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0miv4faf5ihjfifb1zv6aia6f6ik7h1s4954kcb8n6ixzhx9ck6k")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/spf13/afero")) - (home-page "https://github.com/spf13/afero") - (synopsis "Overview") - (description - "This package provides a FileSystem Abstraction System for Go") - (license license:asl2.0))) - -(define-public go-github-com-spf13-cast-1.3.0 - (package - (name "go-github-com-spf13-cast") - (version "1.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/spf13/cast") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0xq1ffqj8y8h7dcnm0m9lfrh0ga7pssnn2c1dnr09chqbpn4bdc5")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/spf13/cast")) - (propagated-inputs - `(("go-github-com-stretchr-testify-1.2.2" - ,go-github-com-stretchr-testify-1.2.2) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/spf13/cast") - (synopsis "cast") - (description "Package cast provides easy and safe casting in Go. -") - (license license:expat))) - -(define-public go-github-com-spf13-jwalterweatherman-1.0.0 - (package - (name "go-github-com-spf13-jwalterweatherman") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/spf13/jwalterweatherman") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "093fmmvavv84pv4q84hav7ph3fmrq87bvspjj899q0qsx37yvdr8")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/spf13/jwalterweatherman")) - (home-page "https://github.com/spf13/jwalterweatherman") - (synopsis "jWalterWeatherman") - (description - "Seamless printing to the terminal (stdout) and logging to a io.Writer -(file) thatâ\x80\x99s as easy to use as fmt.Println.") - (license license:expat))) - -(define-public go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5 - (package - (name "go-github-com-tmc-grpc-websocket-proxy") - (version "0.0.0-20190109142713-0ad062ec5ee5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/tmc/grpc-websocket-proxy") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1anw4v9wspnw9xf2z5r9w0sszwjklyanl0l85wgg6nxak9gnrqp4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/tmc/grpc-websocket-proxy")) - (home-page "https://github.com/tmc/grpc-websocket-proxy") - (synopsis "grpc-websocket-proxy") - (description - "Wrap your grpc-gateway mux with this helper to expose streaming endpoints over websockets.") - (license license:expat))) - -(define-public go-github-com-ugorji-go-1.1.4 - (package - (name "go-github-com-ugorji-go") - (version "1.1.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/ugorji/go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ma2qvn5wqvjidpdz74x832a813qnr1cxbx6n6n125ak9b3wbn5w")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/ugorji/go")) - (home-page "https://github.com/ugorji/go") - (synopsis "go-codec") - (description - "This repository contains the @code{go-codec} library, the @code{codecgen} tool and -benchmarks for comparing against other libraries.") - (license license:expat))) - -(define-public go-github-com-xiang90-probing-0.0.0-20190116061207-43a291ad63a2 - (package - (name "go-github-com-xiang90-probing") - (version "0.0.0-20190116061207-43a291ad63a2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/xiang90/probing") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1z22ms16j5j42775mf31isanwx2pwr1d8wqw8006dczjv36qnz5i")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/xiang90/probing")) - (home-page "https://github.com/xiang90/probing") - (synopsis "Getting Started") - (description "We first need to serve the probing HTTP handler.") - (license license:expat))) - -(define-public go-github-com-xordataexchange-crypt-0.0.3-0.20170626215501-b2862e3d0a77 - (package - (name "go-github-com-xordataexchange-crypt") - (version "0.0.3-0.20170626215501-b2862e3d0a77") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/xordataexchange/crypt") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "04q3856anpzl4gdfgmg7pbp9cx231nkz3ymq2xp27rnmmwhfxr8y")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/xordataexchange/crypt")) - (home-page "https://github.com/xordataexchange/crypt") - (synopsis "crypt") - (description - "You can use crypt as a command line tool or as a configuration library:") - (license license:expat))) - -(define-public go-go-etcd-io-bbolt-1.3.2 - (package - (name "go-go-etcd-io-bbolt") - (version "1.3.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/etcd-io/bbolt") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "13d5l6p6c5wvkr6vn9hkhz9c593qifn7fgx0hg4d6jcvg1y0bnm2")))) - (build-system go-build-system) - (arguments '(#:import-path "go.etcd.io/bbolt")) - (home-page "https://go.etcd.io/bbolt") - (synopsis "bbolt") - (description - "package bbolt implements a low-level key/value store in pure Go. It supports -fully serializable transactions, ACID semantics, and lock-free MVCC with -multiple readers and a single writer. Bolt can be used for projects that -want a simple data store without the need to add large dependencies such as -Postgres or MySQL. -") - (license license:expat))) - -(define-public go-go-uber-org-atomic-1.4.0 - (package - (name "go-go-uber-org-atomic") - (version "1.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/uber-go/atomic") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0c6yzx15c20719xii3dm0vyjd8i9jx45m0wh5yp1zf29b0gbljcy")))) - (build-system go-build-system) - (arguments '(#:import-path "go.uber.org/atomic")) - (home-page "https://go.uber.org/atomic") - (synopsis "atomic") - (description - "Package atomic provides simple wrappers around numerics to enforce atomic -access. -") - (license license:expat))) - -(define-public go-go-uber-org-multierr-1.1.0 - (package - (name "go-go-uber-org-multierr") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/uber-go/multierr") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1slfc6syvw8cvr6rbrjsy6ja5w8gsx0f8aq8qm16rp2x5c2pj07w")))) - (build-system go-build-system) - (arguments '(#:import-path "go.uber.org/multierr")) - (home-page "https://go.uber.org/multierr") - (synopsis "multierr") - (description - "Package multierr allows combining one or more errors together. -") - (license license:expat))) - -(define-public go-go-uber-org-zap-1.10.0 - (package - (name "go-go-uber-org-zap") - (version "1.10.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/uber-go/zap") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "10hdzr1rghwbsl6bbd30779dx44fh9mg9pq8d2cgqlknqxxpvpvr")))) - (build-system go-build-system) - (arguments '(#:import-path "go.uber.org/zap")) - (home-page "https://go.uber.org/zap") - (synopsis "â\x9a¡ zap") - (description "Package zap provides fast, structured, leveled logging. -") - (license license:expat))) - -(define-public go-golang-org-x-net-0.0.0-20190522155817-f3200d17e092 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190522155817-f3200d17e092") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1mskh7p80dd8j1ffy16917d3cyy7lfh1gb56n4rq9g1bwckz4lwy")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-time-0.0.0-20190308202827-9d24e82272b4 - (package - (name "go-golang-org-x-time") - (version "0.0.0-20190308202827-9d24e82272b4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/time") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1f5nkr4vys2vbd8wrwyiq2f5wcaahhpxmia85d1gshcbqjqf8dkb")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/time")) - (home-page "https://golang.org/x/time") - (synopsis "Go Time") - (description "This repository provides supplementary Go time packages.") - (license license:bsd-3))) - -(define-public go-google-golang-org-grpc-1.21.0 - (package - (name "go-google-golang-org-grpc") - (version "1.21.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0zxjlxnvjqfn6zfx7gbmqhadx0j788vxfn95g1ngbmjkgppzsnfp")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" - ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) - ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" - ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) - ("go-google-golang-org-appengine-1.1.0" - ,go-google-golang-org-appengine-1.1.0) - ("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" - ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" - ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-google-go-cmp-0.2.0" - ,go-github-com-google-go-cmp-0.2.0) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0) - ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-client9-misspell-0.3.4" - ,go-github-com-client9-misspell-0.3.4) - ("go-github-com-burntsushi-toml-0.3.1" - ,go-github-com-burntsushi-toml-0.3.1) - ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-github-com-spf13-viper-1.4.0 - (package - (name "go-github-com-spf13-viper") - (version "1.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/spf13/viper") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1zpzxvn13wpvbblbbn73svaq39zgxfjqhci9d68g3qf309pcfy19")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/spf13/viper")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) - ("go-google-golang-org-grpc-1.21.0" ,go-google-golang-org-grpc-1.21.0) - ("go-golang-org-x-time-0.0.0-20190308202827-9d24e82272b4" - ,go-golang-org-x-time-0.0.0-20190308202827-9d24e82272b4) - ("go-golang-org-x-net-0.0.0-20190522155817-f3200d17e092" - ,go-golang-org-x-net-0.0.0-20190522155817-f3200d17e092) - ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) - ("go-go-uber-org-multierr-1.1.0" ,go-go-uber-org-multierr-1.1.0) - ("go-go-uber-org-atomic-1.4.0" ,go-go-uber-org-atomic-1.4.0) - ("go-go-etcd-io-bbolt-1.3.2" ,go-go-etcd-io-bbolt-1.3.2) - ("go-github-com-xordataexchange-crypt-0.0.3-0.20170626215501-b2862e3d0a77" - ,go-github-com-xordataexchange-crypt-0.0.3-0.20170626215501-b2862e3d0a77) - ("go-github-com-xiang90-probing-0.0.0-20190116061207-43a291ad63a2" - ,go-github-com-xiang90-probing-0.0.0-20190116061207-43a291ad63a2) - ("go-github-com-ugorji-go-1.1.4" ,go-github-com-ugorji-go-1.1.4) - ("go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5" - ,go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5) - ("go-github-com-stretchr-testify-1.2.2" - ,go-github-com-stretchr-testify-1.2.2) - ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) - ("go-github-com-spf13-jwalterweatherman-1.0.0" - ,go-github-com-spf13-jwalterweatherman-1.0.0) - ("go-github-com-spf13-cast-1.3.0" ,go-github-com-spf13-cast-1.3.0) - ("go-github-com-spf13-afero-1.1.2" ,go-github-com-spf13-afero-1.1.2) - ("go-github-com-soheilhy-cmux-0.1.4" - ,go-github-com-soheilhy-cmux-0.1.4) - ("go-github-com-prometheus-client-golang-0.9.3" - ,go-github-com-prometheus-client-golang-0.9.3) - ("go-github-com-pelletier-go-toml-1.2.0" - ,go-github-com-pelletier-go-toml-1.2.0) - ("go-github-com-mitchellh-mapstructure-1.1.2" - ,go-github-com-mitchellh-mapstructure-1.1.2) - ("go-github-com-magiconair-properties-1.8.0" - ,go-github-com-magiconair-properties-1.8.0) - ("go-github-com-jonboulle-clockwork-0.1.0" - ,go-github-com-jonboulle-clockwork-0.1.0) - ("go-github-com-hashicorp-hcl-1.0.0" - ,go-github-com-hashicorp-hcl-1.0.0) - ("go-github-com-grpc-ecosystem-grpc-gateway-1.9.0" - ,go-github-com-grpc-ecosystem-grpc-gateway-1.9.0) - ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" - ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) - ("go-github-com-grpc-ecosystem-go-grpc-middleware-1.0.0" - ,go-github-com-grpc-ecosystem-go-grpc-middleware-1.0.0) - ("go-github-com-gorilla-websocket-1.4.0" - ,go-github-com-gorilla-websocket-1.4.0) - ("go-github-com-google-btree-1.0.0" ,go-github-com-google-btree-1.0.0) - ("go-github-com-golang-groupcache-0.0.0-20190129154638-5b532d6fd5ef" - ,go-github-com-golang-groupcache-0.0.0-20190129154638-5b532d6fd5ef) - ("go-github-com-gogo-protobuf-1.2.1" - ,go-github-com-gogo-protobuf-1.2.1) - ("go-github-com-fsnotify-fsnotify-1.4.7" - ,go-github-com-fsnotify-fsnotify-1.4.7) - ("go-github-com-dgrijalva-jwt-go-3.2.0+incompatible" - ,go-github-com-dgrijalva-jwt-go-3.2.0+incompatible) - ("go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f" - ,go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f) - ("go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e" - ,go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e) - ("go-github-com-coreos-go-semver-0.2.0" - ,go-github-com-coreos-go-semver-0.2.0) - ("go-github-com-coreos-etcd-3.3.10+incompatible" - ,go-github-com-coreos-etcd-3.3.10+incompatible) - ("go-github-com-coreos-bbolt-1.3.2" ,go-github-com-coreos-bbolt-1.3.2) - ("go-github-com-armon-consul-api-0.0.0-20180202201655-eb2c6b5be1b6" - ,go-github-com-armon-consul-api-0.0.0-20180202201655-eb2c6b5be1b6))) - (home-page "https://github.com/spf13/viper") - (synopsis "Install") - (description "Many Go projects are built using Viper including:") - (license license:expat))) - -(define-public go-github-com-spf13-cobra-1.0.0 - (package - (name "go-github-com-spf13-cobra") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/spf13/cobra") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0vbppqqhby302a5ayn0296jqr71qkcd4c9am7wzsk6z71fwdsa7h")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/spf13/cobra")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) - ("go-github-com-spf13-viper-1.4.0" ,go-github-com-spf13-viper-1.4.0) - ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) - ("go-github-com-mitchellh-go-homedir-1.1.0" - ,go-github-com-mitchellh-go-homedir-1.1.0) - ("go-github-com-inconshreveable-mousetrap-1.0.0" - ,go-github-com-inconshreveable-mousetrap-1.0.0) - ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" - ,go-github-com-cpuguy83-go-md2man-v2-2.0.0))) - (home-page "https://github.com/spf13/cobra") - (synopsis "Table of Contents") - (description - "Package cobra is a commander providing a simple interface to create powerful modern CLI interfaces. -In addition to providing an interface, Cobra simultaneously provides a controller to organize your application code. -") - (license license:asl2.0))) - -(define-public go-github-com-containerd-continuity-0.1.0 - (package - (name "go-github-com-containerd-continuity") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/continuity") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1h756l1xc31sc4zc1d3hmh64kl9qm5vpbbw0c93hrasn51ki96yz")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/continuity")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" - ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) - ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" - ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) - ("go-github-com-spf13-cobra-1.0.0" ,go-github-com-spf13-cobra-1.0.0) - ("go-github-com-sirupsen-logrus-1.7.0" - ,go-github-com-sirupsen-logrus-1.7.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-go-digest-1.0.0" - ,go-github-com-opencontainers-go-digest-1.0.0) - ("go-github-com-golang-protobuf-1.3.5" - ,go-github-com-golang-protobuf-1.3.5) - ("go-github-com-dustin-go-humanize-1.0.0" - ,go-github-com-dustin-go-humanize-1.0.0) - ("go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898" - ,go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898))) - (home-page "https://github.com/containerd/continuity") - (synopsis "continuity") - (description - "This package provides a transport-agnostic, filesystem metadata manifest system") - (license license:asl2.0))) - -(define-public go-github-com-containerd-fifo-1.0.0 - (package - (name "go-github-com-containerd-fifo") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/fifo") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1l6jy9b4mjcj7pbz1n79zmipni1dz60rf5n66vn5p2ggavbq7h1q")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/fifo")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" - ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) - (home-page "https://github.com/containerd/fifo") - (synopsis "fifo") - (description "Go package for handling fifos in a sane way.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-console-1.0.1 - (package - (name "go-github-com-containerd-console") - (version "1.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/console") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0s837wj6h80fykk2pdmaji75rw9c3863by0gh0cq51hh0lgyjpvg")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/console")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f" - ,go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) - (home-page "https://github.com/containerd/console") - (synopsis "console") - (description - "Golang package for dealing with consoles. Light on deps and a simple API.") - (license license:asl2.0))) - -(define-public go-github-com-opencontainers-runtime-spec-1.0.2 - (package - (name "go-github-com-opencontainers-runtime-spec") - (version "1.0.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/runtime-spec") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19w981vcmd5lp2hy0630x6ayb8zz17n2vxqm2py5mg945xflcizg")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) - (home-page "https://github.com/opencontainers/runtime-spec") - (synopsis "Open Container Initiative Runtime Specification") - (description - "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") - (license license:asl2.0))) - -(define-public go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200916030750-2334cc1a136f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1lc7d513gwwpr6r7f55743684n1qsgn9vmg6b79x0hsp1x90z4mr")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-containerd-go-runc-1.0.0 - (package - (name "go-github-com-containerd-go-runc") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/go-runc") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0xk30dzzxmd83bnfyilplizlxh1pg1gqz2jrq9wz9rqqkxazc03n")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/go-runc")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f" - ,go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f) - ("go-github-com-sirupsen-logrus-1.7.0" - ,go-github-com-sirupsen-logrus-1.7.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-runtime-spec-1.0.2" - ,go-github-com-opencontainers-runtime-spec-1.0.2) - ("go-github-com-containerd-console-1.0.1" - ,go-github-com-containerd-console-1.0.1))) - (home-page "https://github.com/containerd/go-runc") - (synopsis "go-runc") - (description - "This is a package for consuming the @url{https://github.com/opencontainers/runc,runc} binary in your Go applications. -It tries to expose all the settings and features of the runc CLI. If there is something missing then add it, its opensource!") - (license license:asl2.0))) - -(define-public go-golang-org-x-tools-0.0.0-20181030221726-6c7e314b6563 - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20181030221726-6c7e314b6563") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1m1n6r8v6mrlh0yvlz3qxz4s7jc7nis0zf3dfl1i6hqh5xblkwnw")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-github-com-kisielk-errcheck-1.2.0 - (package - (name "go-github-com-kisielk-errcheck") - (version "1.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kisielk/errcheck") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0am6g10ipdxw84byscm7shda654882wjcbinq5c4696m6mhi2qrd")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kisielk/errcheck")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20181030221726-6c7e314b6563" - ,go-golang-org-x-tools-0.0.0-20181030221726-6c7e314b6563))) - (home-page "https://github.com/kisielk/errcheck") - (synopsis "errcheck") - (description - "errcheck is a program for checking for unchecked errors in go programs.") - (license license:expat))) - -(define-public go-github-com-gogo-protobuf-1.3.1 - (package - (name "go-github-com-gogo-protobuf") - (version "1.3.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gogo/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0x77x64sxjgfhmbijqfzmj8h4ar25l2w97h01q3cqs1wk7zfnkhp")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/gogo/protobuf")) - (propagated-inputs - `(("go-github-com-kisielk-gotool-1.0.0" - ,go-github-com-kisielk-gotool-1.0.0) - ("go-github-com-kisielk-errcheck-1.2.0" - ,go-github-com-kisielk-errcheck-1.2.0))) - (home-page "https://github.com/gogo/protobuf") - (synopsis "Protocol Buffers for Go with Gadgets") - (description - "gogoprotobuf is a fork of @url{https://github.com/golang/protobuf,golang/protobuf} with extra code generation features.") - (license license:bsd-3))) - -(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.2 - (package - (name "go-github-com-konsorten-go-windows-terminal-sequences") - (version "1.0.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/konsorten/go-windows-terminal-sequences") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "09mn209ika7ciy87xf2x31dq5fnqw39jidgaljvmqxwk7ff1hnx7")))) - (build-system go-build-system) - (arguments - '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) - (home-page "https://github.com/konsorten/go-windows-terminal-sequences") - (synopsis "Windows Terminal Sequences") - (description - "This library allow for enabling Windows terminal color support for Go.") - (license license:expat))) - -(define-public go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1 - (package - (name "go-github-com-prometheus-procfs") - (version "0.0.0-20190522114515-bc1a522cf7b1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/procfs") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "13ws66kd65zbhk31zmax9qgmh22fzjcgs5ihy4fm1d775w6bmdzx")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/procfs")) - (propagated-inputs - `(("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" - ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4))) - (home-page "https://github.com/prometheus/procfs") - (synopsis "procfs") - (description - "Package procfs provides functions to retrieve system, kernel and process -metrics from the pseudo-filesystem proc. -") - (license license:asl2.0))) - -(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.1 - (package - (name "go-github-com-konsorten-go-windows-terminal-sequences") - (version "1.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/konsorten/go-windows-terminal-sequences") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1lchgf27n276vma6iyxa0v1xds68n2g8lih5lavqnx5x6q5pw2ip")))) - (build-system go-build-system) - (arguments - '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) - (home-page "https://github.com/konsorten/go-windows-terminal-sequences") - (synopsis "Windows Terminal Sequences") - (description - "This library allow for enabling Windows terminal color support for Go.") - (license license:expat))) - -(define-public go-github-com-stretchr-objx-0.1.1 - (package - (name "go-github-com-stretchr-objx") - (version "0.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/objx") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0iph0qmpyqg4kwv8jsx6a56a7hhqq8swrazv40ycxk9rzr0s8yls")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/objx")) - (home-page "https://github.com/stretchr/objx") - (synopsis "Objx") - (description - "Objx - Go package for dealing with maps, slices, JSON and other data. -") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190422165155-953cdadca894") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0gkha4whk8xkcv3isigbs250akag99isxnd3v9xmy0kl3g88hxy1")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-sirupsen-logrus-1.4.2 - (package - (name "go-github-com-sirupsen-logrus") - (version "1.4.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sirupsen/logrus") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "087k2lxrr9p9dh68yw71d05h5g9p5v26zbwd6j7lghinjfaw334x")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/sirupsen/logrus")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894" - ,go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894) - ("go-github-com-stretchr-testify-1.2.2" - ,go-github-com-stretchr-testify-1.2.2) - ("go-github-com-stretchr-objx-0.1.1" - ,go-github-com-stretchr-objx-0.1.1) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.1" - ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.1) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/sirupsen/logrus") - (synopsis "Logrus") - (description - "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. -") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200120151820-655fe14d7479") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "133yxmdcny5b0r8775m52sj7zja36riv0x2437k7jccywqi8nx32")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-google-golang-org-genproto-0.0.0-20200117163144-32f20d992d24 - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20200117163144-32f20d992d24") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1kl696jd8fykykjjbngqpgqsngajwbbrvrpl1q0804l6hz8qk858")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" - ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) - ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) - ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" - ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) - ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" - ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) - ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" - ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-google-golang-org-grpc-1.26.0 - (package - (name "go-google-golang-org-grpc") - (version "1.26.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1qsb2mcswpp3vd7i9gfvz4a3ypdwk2svhhn09nyywgb1vvw80krv")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" - ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-github-com-google-go-cmp-0.2.0" - ,go-github-com-google-go-cmp-0.2.0) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2) - ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" - ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) - ("go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473" - ,go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-github-com-containerd-ttrpc-1.0.2 - (package - (name "go-github-com-containerd-ttrpc") - (version "1.0.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/ttrpc") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0plkm3yrr20vccfl0x8dxys3iphjwnmi285in0pivff6p9djf3yz")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/ttrpc")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.26.0" ,go-google-golang-org-grpc-1.26.0) - ("go-google-golang-org-genproto-0.0.0-20200117163144-32f20d992d24" - ,go-google-golang-org-genproto-0.0.0-20200117163144-32f20d992d24) - ("go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479" - ,go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479) - ("go-github-com-sirupsen-logrus-1.4.2" - ,go-github-com-sirupsen-logrus-1.4.2) - ("go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1" - ,go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.2" - ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.2) - ("go-github-com-gogo-protobuf-1.3.1" - ,go-github-com-gogo-protobuf-1.3.1))) - (home-page "https://github.com/containerd/ttrpc") - (synopsis "ttrpc") - (description "GRPC for low-memory environments.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-typeurl-1.0.2 - (package - (name "go-github-com-containerd-typeurl") - (version "1.0.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/typeurl") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0wvfxlxgkln11d9s6rxay965c715bnpk203klbsq8m8qpjqrz620")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/typeurl")) - (propagated-inputs - `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2))) - (home-page "https://github.com/containerd/typeurl") - (synopsis "typeurl") - (description - "This package provides a Go package for managing the registration, marshaling, and unmarshaling of encoded types.") - (license license:asl2.0))) - -(define-public go-github-com-yuin-goldmark-1.1.27 - (package - (name "go-github-com-yuin-goldmark") - (version "1.1.27") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/yuin/goldmark") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1872cqnii0kwiqcy81yin0idvjy5mdy4zlzz0csb319lcjs3b923")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/yuin/goldmark")) - (home-page "https://github.com/yuin/goldmark") - (synopsis "goldmark") - (description - "Package goldmark implements functions to convert markdown text to a desired format. -") - (license license:expat))) - -(define-public go-golang-org-x-mod-0.2.0 - (package - (name "go-golang-org-x-mod") - (version "0.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/mod") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fp6885dclq77mh73v7i54v2b9llpv4di193zc8vmsbbkkc483cl")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/mod")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" - ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) - ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" - ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) - ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" - ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) - (home-page "https://golang.org/x/mod") - (synopsis "mod") - (description - "This repository holds packages for writing tools -that work directly with Go module mechanics. -That is, it is for direct manipulation of Go modules themselves.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b - (package - (name "go-golang-org-x-net") - (version "0.0.0-20200226121028-0de0cce0169b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1db7s5kbzyh2zd5lpv05n7hp8wbwdvgk0wpiwrlnig94mkr0y5aq")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20190911185100-cd5d95a43a6e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1nqkyz2y1qvqcma52ijh02s8aiqmkfb95j08f6zcjhbga3ds6hds")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the -ones provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20200619180055-7c47624df98f - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20200619180055-7c47624df98f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fhzwd32j7w9g3algq0zj8g7ivx3f0mn9nx9mj046wdscryn49mk")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) - ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" - ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) - ("go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b" - ,go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b) - ("go-golang-org-x-mod-0.2.0" ,go-golang-org-x-mod-0.2.0) - ("go-github-com-yuin-goldmark-1.1.27" - ,go-github-com-yuin-goldmark-1.1.27))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-github-com-kisielk-errcheck-1.5.0 - (package - (name "go-github-com-kisielk-errcheck") - (version "1.5.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kisielk/errcheck") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ci3jz2px74pfmr42jv7dpx7fdzx08vai4czp9fkiyb0gcaiqsk6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kisielk/errcheck")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20200619180055-7c47624df98f" - ,go-golang-org-x-tools-0.0.0-20200619180055-7c47624df98f))) - (home-page "https://github.com/kisielk/errcheck") - (synopsis "errcheck") - (description - "errcheck is a program for checking for unchecked errors in go programs.") - (license license:expat))) - -(define-public go-github-com-kisielk-gotool-1.0.0 - (package - (name "go-github-com-kisielk-gotool") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kisielk/gotool") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "14af2pa0ssyp8bp2mvdw184s5wcysk6akil3wzxmr05wwy951iwn")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kisielk/gotool")) - (home-page "https://github.com/kisielk/gotool") - (synopsis "gotool") - (description - "Package gotool contains utility functions used to implement the standard -\"cmd/go\" tool, provided as a convenience to developers who want to write -tools with similar semantics. -") - (license license:expat))) - -(define-public go-github-com-yuin-goldmark-1.2.1 - (package - (name "go-github-com-yuin-goldmark") - (version "1.2.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/yuin/goldmark") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12rsnsf65drcp0jfw2jl9w589vsn3pxdk1zh3v9q908iigngrcmy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/yuin/goldmark")) - (home-page "https://github.com/yuin/goldmark") - (synopsis "goldmark") - (description - "Package goldmark implements functions to convert markdown text to a desired format. -") - (license license:expat))) - -(define-public go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20191011191535-87dc89f01550") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0z4i1m2yn3f31ci7wvcm2rxkx2yiv7a78mfzklncmsz2k97rlh2g")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" - ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) - ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" - ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7 - (package - (name "go-golang-org-x-xerrors") - (version "0.0.0-20190717185122-a985d3407aa7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/xerrors") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "00wzr5w8aadipgc3rkk8f11i41znskfj9ix5nhhaxyg7isrslgcj")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/xerrors")) - (home-page "https://golang.org/x/xerrors") - (synopsis #f) - (description - "Package xerrors implements functions to manipulate errors. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20191119224855-298f0cb1881e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0l4pqwib2wnfnix6nvxl0yrq87ipi7ff1rz6z5bxfzy9dki1nzmv")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7" - ,go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7) - ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" - ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) - ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" - ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898 - (package - (name "go-golang-org-x-xerrors") - (version "0.0.0-20191011141410-1b5146add898") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/xerrors") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0w2akj91krxjag0xdhsg78470888nicc5ismc2ap9jqpss6v1zih")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/xerrors")) - (home-page "https://golang.org/x/xerrors") - (synopsis #f) - (description - "Package xerrors implements functions to manipulate errors. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-mod-0.3.0 - (package - (name "go-golang-org-x-mod") - (version "0.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/mod") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ldgbx2zpprbsfn6p8pfgs4nn87gwbfcv2z0fa7n8alwsq2yw78q")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/mod")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" - ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) - ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" - ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) - ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" - ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) - (home-page "https://golang.org/x/mod") - (synopsis "mod") - (description - "This repository holds packages for writing tools -that work directly with Go module mechanics. -That is, it is for direct manipulation of Go modules themselves.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20201021035429-f5854403a974 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20201021035429-f5854403a974") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1vw63zpmhi337f3gc432x3wkib4j2ia8dy7if31wxwb9dgqvy222")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) - ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" - ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) - ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" - ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9 - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20201020160332-67f06af15bc9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "093p4panc808ak5bamzz7m9nb0xxib7778jpnr6f0xkz1n4fzyw5")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the -ones provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20210106214847-113979e3529a - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20210106214847-113979e3529a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0pq1a7hkamqdwsajyfrb27s56cvxz5838krsgyqz346s2djwdrzl")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" - ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) - ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" - ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) - ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" - ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) - ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) - ("go-github-com-yuin-goldmark-1.2.1" - ,go-github-com-yuin-goldmark-1.2.1))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-github-com-gogo-protobuf-1.3.2 - (package - (name "go-github-com-gogo-protobuf") - (version "1.3.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gogo/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0dfv1bhx5zhb5bsj5sj757nkacf2swp1ajpcyj9d0b37n602m18a")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/gogo/protobuf")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20210106214847-113979e3529a" - ,go-golang-org-x-tools-0.0.0-20210106214847-113979e3529a) - ("go-github-com-kisielk-gotool-1.0.0" - ,go-github-com-kisielk-gotool-1.0.0) - ("go-github-com-kisielk-errcheck-1.5.0" - ,go-github-com-kisielk-errcheck-1.5.0))) - (home-page "https://github.com/gogo/protobuf") - (synopsis "Protocol Buffers for Go with Gadgets") - (description - "gogoprotobuf is a fork of @url{https://github.com/golang/protobuf,golang/protobuf} with extra code generation features.") - (license license:bsd-3))) - -(define-public go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d - (package - (name "go-github-com-opencontainers-runtime-spec") - (version "1.0.3-0.20200929063507-e6143ca7d51d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/runtime-spec") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "06yk9kjif5mgi46d0hcgqcikdcplf3yflqbj8h6ljxshp6jzc49w")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) - (home-page "https://github.com/opencontainers/runtime-spec") - (synopsis "Open Container Initiative Runtime Specification") - (description - "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") - (license license:asl2.0))) - -(define-public go-github-com-urfave-cli-1.22.2 - (package - (name "go-github-com-urfave-cli") - (version "1.22.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/urfave/cli") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "10mcnvi5qmn00vpyk6si8gjka7p654wr9hac4zc9w5h3ickhvbdc")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/urfave/cli")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) - ("go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d" - ,go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d) - ("go-github-com-burntsushi-toml-0.3.1" - ,go-github-com-burntsushi-toml-0.3.1))) - (home-page "https://github.com/urfave/cli") - (synopsis "cli") - (description - "Package cli provides a minimal framework for creating and organizing command line -Go applications. cli is designed to be easy to understand and write, the most simple -cli application can be written as follows: -") - (license license:expat))) - -(define-public go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6 - (package - (name "go-github-com-golang-groupcache") - (version "0.0.0-20190702054246-869f871628b6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/groupcache") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0r4nk8129bvx50qb4xzjaay39b2h6k7cbdqqzdlanmc82ygczsbw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/groupcache")) - (home-page "https://github.com/golang/groupcache") - (synopsis "groupcache") - (description - "Package groupcache provides a data loading mechanism with caching -and de-duplication that works across a set of peer processes. -") - (license license:asl2.0))) - -(define-public go-github-com-golang-protobuf-1.3.1 - (package - (name "go-github-com-golang-protobuf") - (version "1.3.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "15am4s4646qy6iv0g3kkqq52rzykqjhm4bf08dk0fy2r58knpsyl")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-github-com-stretchr-testify-1.4.0 - (package - (name "go-github-com-stretchr-testify") - (version "1.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/testify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "187i5g88sxfy4vxpm7dw1gwv29pa2qaq475lxrdh5livh69wqfjb")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/testify")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) - ("go-github-com-stretchr-objx-0.1.0" - ,go-github-com-stretchr-objx-0.1.0) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.0" - ,go-github-com-davecgh-go-spew-1.1.0))) - (home-page "https://github.com/stretchr/testify") - (synopsis "Testify - Thou Shalt Write Tests") - (description - "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -") - (license license:expat))) - -(define-public go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190620200207-3b0461eec859") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0l00c8l0a8xnv6qdpwfzxxsr58jggacgzdrwiprrfx2xqm37b6d5")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190502145724-3ef323f4f1fd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "15iw4gjvrnrx98rlny1qcaprp3577rh2b77byb38dr6m3q42rvc6")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-text-0.3.2 - (package - (name "go-golang-org-x-text") - (version "0.3.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0flv9idw0jm5nm8lx25xqanbkqgfiym6619w575p7nrdh0riqwqh")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/text")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" - ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) - (home-page "https://golang.org/x/text") - (synopsis "Go Text") - (description - "text is a repository of text-related packages related to internationalization -(i18n) and localization (l10n), such as character encodings, text -transformations, and locale-specific text handling. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6 - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20190227155943-e225da77a7e6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0bh3583smcfw6jw3w6lp0za93rz7hpxfdz8vhxng75b7a6vdlw4p")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the -ones provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20190425155659-357c62f0e4bb") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1h1a0wys83cc86s4w2hqmz78ixijw8f7qchmiwdv5xjvpg0i27c2")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" - ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) - ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) - ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" - ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) - ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" - ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) - ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" - ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd) - ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" - ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) - ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" - ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-google-golang-org-grpc-1.20.1 - (package - (name "go-google-golang-org-grpc") - (version "1.20.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0rj3fs6jillapiwnpkfn3v2jbl7a3zsb0lys4srswl26hjijviqq")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" - ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) - ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" - ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) - ("go-google-golang-org-appengine-1.1.0" - ,go-google-golang-org-appengine-1.1.0) - ("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" - ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" - ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0) - ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-client9-misspell-0.3.4" - ,go-github-com-client9-misspell-0.3.4) - ("go-github-com-burntsushi-toml-0.3.1" - ,go-github-com-burntsushi-toml-0.3.1) - ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-go-opencensus-io-0.22.3 - (package - (name "go-go-opencensus-io") - (version "0.22.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/census-instrumentation/opencensus-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0xj16iq5jp26hi2py7lsd8cvqh651fgn39y05gzvjdi88d9xd3nw")))) - (build-system go-build-system) - (arguments '(#:import-path "go.opencensus.io")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.20.1" ,go-google-golang-org-grpc-1.20.1) - ("go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb" - ,go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb) - ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) - ("go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd" - ,go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd) - ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" - ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) - ("go-github-com-stretchr-testify-1.4.0" - ,go-github-com-stretchr-testify-1.4.0) - ("go-github-com-google-go-cmp-0.3.0" - ,go-github-com-google-go-cmp-0.3.0) - ("go-github-com-golang-protobuf-1.3.1" - ,go-github-com-golang-protobuf-1.3.1) - ("go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6" - ,go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6))) - (home-page "https://go.opencensus.io") - (synopsis "OpenCensus Libraries for Go") - (description "Package opencensus contains Go support for OpenCensus. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-sys-0.0.0-20210324051608-47abb6519492 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20210324051608-47abb6519492") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19g0pa8lazad5kcq396ggg9x1d6sx39rw9brz3hklx71gg1jd3ja")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-pkg-errors-0.8.1 - (package - (name "go-github-com-pkg-errors") - (version "0.8.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pkg/errors") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0g5qcb4d4fd96midz0zdk8b9kz8xkzwfa8kr1cliqbg8sxsy5vd1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pkg/errors")) - (home-page "https://github.com/pkg/errors") - (synopsis "errors") - (description "Package errors provides simple error handling primitives. -") - (license license:bsd-2))) - -(define-public go-github-com-spf13-pflag-1.0.3 - (package - (name "go-github-com-spf13-pflag") - (version "1.0.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/spf13/pflag") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1cj3cjm7d3zk0mf1xdybh0jywkbbw7a6yr3y22x9sis31scprswd")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/spf13/pflag")) - (home-page "https://github.com/spf13/pflag") - (synopsis "Description") - (description - "Package pflag is a drop-in replacement for Go's flag package, implementing -POSIX/GNU-style --flags. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20190624222133-a101b041ded4 - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20190624222133-a101b041ded4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1pm50dybm5wixjjspvfpafjmiy81b1zp08h13gxc5cylrfgncrfl")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" - ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-gotest-tools-v3-3.0.3 - (package - (name "go-gotest-tools-v3") - (version "3.0.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gotestyourself/gotest.tools") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1h316233n33lkfhbak8ljdj5i8df6hcwwm48n200svf22x3d95ww")))) - (build-system go-build-system) - (arguments - '(#:import-path "gotest.tools/v3" #:unpack-path "gotest.tools/v3")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20190624222133-a101b041ded4" - ,go-golang-org-x-tools-0.0.0-20190624222133-a101b041ded4) - ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) - ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0))) - (home-page "https://gotest.tools/v3") - (synopsis "gotest.tools") - (description - "Package gotesttools is a collection of packages to augment `testing` and -support common patterns. -") - (license license:asl2.0))) - -(define-public go-google-golang-org-grpc-1.27.1 - (package - (name "go-google-golang-org-grpc") - (version "1.27.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "09phrrsafgq6hnbw8cawvx44bdpk1p584fys17x1bwn0j0451zzs")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" - ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-github-com-google-go-cmp-0.2.0" - ,go-github-com-google-go-cmp-0.2.0) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2) - ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" - ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) - ("go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473" - ,go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-github-com-microsoft-hcsshim-0.8.22 - (package - (name "go-github-com-microsoft-hcsshim") - (version "0.8.22") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/microsoft/hcsshim") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ncpq5sqmygck8q09mqqsgmvx5akwn9izf1k4p8bjya46g3kzk6g")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/Microsoft/hcsshim")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) - ("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) - ("go-golang-org-x-sys-0.0.0-20210324051608-47abb6519492" - ,go-golang-org-x-sys-0.0.0-20210324051608-47abb6519492) - ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" - ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) - ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) - ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) - ("go-github-com-sirupsen-logrus-1.7.0" - ,go-github-com-sirupsen-logrus-1.7.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" - ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2) - ("go-github-com-containerd-typeurl-1.0.2" - ,go-github-com-containerd-typeurl-1.0.2) - ("go-github-com-containerd-ttrpc-1.0.2" - ,go-github-com-containerd-ttrpc-1.0.2) - ("go-github-com-containerd-go-runc-1.0.0" - ,go-github-com-containerd-go-runc-1.0.0) - ("go-github-com-containerd-fifo-1.0.0" - ,go-github-com-containerd-fifo-1.0.0) - ("go-github-com-containerd-continuity-0.1.0" - ,go-github-com-containerd-continuity-0.1.0) - ("go-github-com-containerd-containerd-1.4.9" - ,go-github-com-containerd-containerd-1.4.9) - ("go-github-com-containerd-console-1.0.2" - ,go-github-com-containerd-console-1.0.2) - ("go-github-com-containerd-cgroups-1.0.1" - ,go-github-com-containerd-cgroups-1.0.1) - ("go-github-com-microsoft-go-winio-0.4.17" - ,go-github-com-microsoft-go-winio-0.4.17))) - (home-page "https://github.com/Microsoft/hcsshim") - (synopsis "hcsshim") - (description - "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") - (license license:expat))) - -(define-public go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20201207232520-09787c993a3a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1nv4mwi9njkkyc7lwmxrjr8ggfh2cf1c67a9bq85dnss81vpj61y")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the -ones provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-github-com-containerd-stargz-snapshotter-estargz-0.9.0 - (package - (name "go-github-com-containerd-stargz-snapshotter-estargz") - (version "0.9.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/stargz-snapshotter") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "01mjy4sks43jznxfsmb0jmb7l6a62pa2jxsyaqchb9pb7v9h43cq")))) - (build-system go-build-system) - (arguments - '(#:import-path - "github.com/containerd/stargz-snapshotter/estargz" - #:unpack-path - "github.com/containerd/stargz-snapshotter")) - (propagated-inputs - `(("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" - ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) - ("go-github-com-vbatts-tar-split-0.11.2" - ,go-github-com-vbatts-tar-split-0.11.2) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-go-digest-1.0.0" - ,go-github-com-opencontainers-go-digest-1.0.0) - ("go-github-com-klauspost-compress-1.13.6" - ,go-github-com-klauspost-compress-1.13.6))) - (home-page "https://github.com/containerd/stargz-snapshotter") - (synopsis #f) - (description #f) - (license license:asl2.0))) - -(define-public go-github-com-google-go-intervals-0.0.2 - (package - (name "go-github-com-google-go-intervals") - (version "0.0.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-intervals") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0v9i46g1vdbyinagj94jvaibw4bpgh2l9f9p5268wg6msf761jm9")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-intervals")) - (home-page "https://github.com/google/go-intervals") - (synopsis "go-intervals") - (description - "go-intervals is a library for performing set operations on 1-dimensional -intervals, such as time ranges.") - (license license:asl2.0))) - -(define-public go-github-com-google-uuid-1.2.0 - (package - (name "go-github-com-google-uuid") - (version "1.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/uuid") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "08wqig98w23cg2ngjijhgm6s0mdayb95awa3cn3bs69lg20gryac")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/uuid")) - (home-page "https://github.com/google/uuid") - (synopsis "uuid") - (description "Package uuid generates and inspects UUIDs. -") - (license license:bsd-3))) - -(define-public go-github-com-google-gofuzz-1.0.0 - (package - (name "go-github-com-google-gofuzz") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/gofuzz") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0qz439qvccm91w0mmjz4fqgx48clxdwagkvvx89cr43q1d4iry36")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/gofuzz")) - (home-page "https://github.com/google/gofuzz") - (synopsis "gofuzz") - (description - "Package fuzz is a library for populating go objects with random values. -") - (license license:asl2.0))) - -(define-public go-github-com-modern-go-concurrent-0.0.0-20180228061459-e0a39a4cb421 - (package - (name "go-github-com-modern-go-concurrent") - (version "0.0.0-20180228061459-e0a39a4cb421") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/modern-go/concurrent") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hamz1zimsxm9vl0ih19v7sbibglwq2j6473w4j9k7ib80fmxdzr")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/modern-go/concurrent")) - (home-page "https://github.com/modern-go/concurrent") - (synopsis "concurrent") - (description - "because sync.Map is only available in go 1.9, we can use concurrent.Map to make code portable") - (license license:asl2.0))) - -(define-public go-github-com-modern-go-reflect2-1.0.2 - (package - (name "go-github-com-modern-go-reflect2") - (version "1.0.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/modern-go/reflect2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "05a89f9j4nj8v1bchfkv2sy8piz746ikj831ilbp54g8dqhl8vzr")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/modern-go/reflect2")) - (home-page "https://github.com/modern-go/reflect2") - (synopsis "reflect2") - (description "reflect api that avoids runtime reflect.Value cost") - (license license:asl2.0))) - -(define-public go-github-com-json-iterator-go-1.1.12 - (package - (name "go-github-com-json-iterator-go") - (version "1.1.12") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/json-iterator/go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1c8f0hxm18wivx31bs615x3vxs2j3ba0v6vxchsjhldc8kl311bz")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/json-iterator/go")) - (propagated-inputs - `(("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0) - ("go-github-com-modern-go-reflect2-1.0.2" - ,go-github-com-modern-go-reflect2-1.0.2) - ("go-github-com-modern-go-concurrent-0.0.0-20180228061459-e0a39a4cb421" - ,go-github-com-modern-go-concurrent-0.0.0-20180228061459-e0a39a4cb421) - ("go-github-com-google-gofuzz-1.0.0" - ,go-github-com-google-gofuzz-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/json-iterator/go") - (synopsis "Benchmark") - (description - "Package jsoniter implements encoding and decoding of JSON as defined in -@url{https://rfc-editor.org/rfc/rfc4627.html,RFC 4627} and provides interfaces with identical syntax of standard lib encoding/json. -Converting from encoding/json to jsoniter is no more than replacing the package with jsoniter -and variable type declarations (if any). -jsoniter interfaces gives 100% compatibility with code using standard lib. -") - (license license:expat))) - -(define-public go-github-com-mattn-go-shellwords-1.0.12 - (package - (name "go-github-com-mattn-go-shellwords") - (version "1.0.12") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mattn/go-shellwords") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0l0l5s4hlsrm4z6hygig2pp1qirk5ycrzn9z27ay3yvg9k7zafzx")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mattn/go-shellwords")) - (home-page "https://github.com/mattn/go-shellwords") - (synopsis "go-shellwords") - (description "Parse line as shell words.") - (license license:expat))) - -(define-public go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible - (package - (name "go-github-com-mistifyio-go-zfs") - (version "2.1.2-0.20190413222219-f784269be439+incompatible") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mistifyio/go-zfs") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0x6ncjaqjm06c615kbwkqbd5wcdg9nmrbl7wm4w185s6kq6l8fpw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mistifyio/go-zfs")) - (home-page "https://github.com/mistifyio/go-zfs") - (synopsis "Go Wrapper for ZFS") - (description - "Package zfs provides wrappers around the ZFS command line tools. -") - (license license:asl2.0))) - -(define-public go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd - (package - (name "go-github-com-modern-go-concurrent") - (version "0.0.0-20180306012644-bacd9c7ef1dd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/modern-go/concurrent") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0s0fxccsyb8icjmiym5k7prcqx36hvgdwl588y0491gi18k5i4zs")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/modern-go/concurrent")) - (home-page "https://github.com/modern-go/concurrent") - (synopsis "concurrent") - (description - "because sync.Map is only available in go 1.9, we can use concurrent.Map to make code portable") - (license license:asl2.0))) - -(define-public go-github-com-checkpoint-restore-go-criu-v5-5.0.0 - (package - (name "go-github-com-checkpoint-restore-go-criu-v5") - (version "5.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/checkpoint-restore/go-criu") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "07dal5a9y43azkkh61jf6s81h7anbl17drkh2mal9mzcsi8wa2z8")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/checkpoint-restore/go-criu/v5")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.23.0" - ,go-google-golang-org-protobuf-1.23.0) - ("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" - ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) - ("go-github-com-golang-protobuf-1.4.3" - ,go-github-com-golang-protobuf-1.4.3))) - (home-page "https://github.com/checkpoint-restore/go-criu") - (synopsis "go-criu -- Go bindings for CRIU") - (description - "This repository provides Go bindings for @url{https://criu.org/,CRIU}. The code is based on the Go-based PHaul -implementation from the CRIU repository. For easier inclusion into other Go projects the -CRIU Go bindings have been moved to this repository.") - (license license:asl2.0))) - -(define-public go-github-com-kr-pty-1.1.1 - (package - (name "go-github-com-kr-pty") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/pty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0383f0mb9kqjvncqrfpidsf8y6ns5zlrc91c6a74xpyxjwvzl2y6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/pty")) - (home-page "https://github.com/kr/pty") - (synopsis "pty") - (description - "Package pty is a wrapper for github.com/creack/pty, which provides -functions for working with Unix terminals. -") - (license license:expat))) - -(define-public go-github-com-kr-text-0.1.0 - (package - (name "go-github-com-kr-text") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1gm5bsl01apvc84bw06hasawyqm4q84vx1pm32wr9jnd7a8vjgj1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/text")) - (propagated-inputs - `(("go-github-com-kr-pty-1.1.1" ,go-github-com-kr-pty-1.1.1))) - (home-page "https://github.com/kr/text") - (synopsis #f) - (description - "Package text provides rudimentary functions for manipulating text in -paragraphs. -") - (license license:expat))) - -(define-public go-github-com-kr-pretty-0.2.1 - (package - (name "go-github-com-kr-pretty") - (version "0.2.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/pretty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0vzfz06y9q8gs2nxx0kys0591vzp78k0fvpb8digi5n15h3b25hy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/pretty")) - (propagated-inputs - `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) - (home-page "https://github.com/kr/pretty") - (synopsis #f) - (description - "Package pretty provides pretty-printing for Go values. This is -useful during debugging, to avoid wrapping long output lines in -the terminal. -") - (license license:expat))) - -(define-public go-github-com-frankban-quicktest-1.11.3 - (package - (name "go-github-com-frankban-quicktest") - (version "1.11.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/frankban/quicktest") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0d5njmwkfq2809vlimnlvy8ir6kln0c4cgdwr680fwsclpbr43qs")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/frankban/quicktest")) - (propagated-inputs - `(("go-github-com-kr-pretty-0.2.1" ,go-github-com-kr-pretty-0.2.1) - ("go-github-com-google-go-cmp-0.5.4" - ,go-github-com-google-go-cmp-0.5.4))) - (home-page "https://github.com/frankban/quicktest") - (synopsis "quicktest") - (description - "Package quicktest provides a collection of Go helpers for writing tests. -") - (license license:expat))) - -(define-public go-github-com-google-go-cmp-0.5.4 - (package - (name "go-github-com-google-go-cmp") - (version "0.5.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ld9pwb6l22g75g1zpa691l7q9ki7pjgpcqhwgdfr3va1zisr5ci")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") - (license license:bsd-3))) - -(define-public go-github-com-cilium-ebpf-0.6.2 - (package - (name "go-github-com-cilium-ebpf") - (version "0.6.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cilium/ebpf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0x64sg0kyc8bbsp75dpv8g2jfmpdldsshf9ni49jh6rgsnnqhpf8")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/cilium/ebpf")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" - ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) - ("go-github-com-google-go-cmp-0.5.4" - ,go-github-com-google-go-cmp-0.5.4) - ("go-github-com-frankban-quicktest-1.11.3" - ,go-github-com-frankban-quicktest-1.11.3))) - (home-page "https://github.com/cilium/ebpf") - (synopsis "eBPF") - (description "Package ebpf is a toolkit for working with eBPF programs. -") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20210124154548-22da62e12c0c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "17gp3dl75wq3x7j9z1pqgcyvjhvy9jaln1wbscy57al3whdsjp07")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-containerd-console-1.0.2 - (package - (name "go-github-com-containerd-console") - (version "1.0.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/console") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0rxwgq578hphs2ldx1gg6c9fq1qm8rgqfx3vgi2sbrsmxn6m2438")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/console")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" - ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) - (home-page "https://github.com/containerd/console") - (synopsis "console") - (description - "Golang package for dealing with consoles. Light on deps and a simple API.") - (license license:asl2.0))) - -(define-public go-github-com-coreos-go-systemd-v22-22.3.2 - (package - (name "go-github-com-coreos-go-systemd-v22") - (version "22.3.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/coreos/go-systemd") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ndi86b8va84ha93njqgafypz4di7yxfd5r5kf1r0s3y3ghcjajq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/coreos/go-systemd/v22")) - (propagated-inputs - `(("go-github-com-godbus-dbus-v5-5.0.4" - ,go-github-com-godbus-dbus-v5-5.0.4))) - (home-page "https://github.com/coreos/go-systemd") - (synopsis "go-systemd") - (description "Go bindings to systemd. The project has several packages:") - (license license:asl2.0))) - -(define-public go-github-com-cyphar-filepath-securejoin-0.2.2 - (package - (name "go-github-com-cyphar-filepath-securejoin") - (version "0.2.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cyphar/filepath-securejoin") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0id32zjb92wm569m29nfrzz5mw9z1glr3klayr6j134pp4h1sgq4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/cyphar/filepath-securejoin")) - (home-page "https://github.com/cyphar/filepath-securejoin") - (synopsis #f) - (description - "Package securejoin is an implementation of the hopefully-soon-to-be-included -SecureJoin helper that is meant to be part of the \"path/filepath\" package. -The purpose of this project is to provide a PoC implementation to make the -SecureJoin proposal (@url{https://github.com/golang/go/issues/20126,https://github.com/golang/go/issues/20126}) more -tangible. -") - (license license:bsd-3))) - -(define-public go-github-com-docker-go-units-0.4.0 - (package - (name "go-github-com-docker-go-units") - (version "0.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/docker/go-units") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0k8gja8ql4pqg5rzmqvka42vjfs6rzablak87whcnqba6qxpimvz")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/docker/go-units")) - (home-page "https://github.com/docker/go-units") - (synopsis "Introduction") - (description - "Package units provides helper function to parse and print size and time units -in human-readable format. -") - (license license:asl2.0))) - -(define-public go-github-com-godbus-dbus-v5-5.0.4 - (package - (name "go-github-com-godbus-dbus-v5") - (version "5.0.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/godbus/dbus") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0znax8kskb5gmp5fj75w56bc9p7b22wrdswzlh4d04sprlc471yi")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/godbus/dbus/v5")) - (home-page "https://github.com/godbus/dbus") - (synopsis "dbus") - (description - "Package dbus implements bindings to the D-Bus message bus system. -") - (license license:bsd-2))) - -(define-public go-github-com-mrunalp-fileutils-0.5.0 - (package - (name "go-github-com-mrunalp-fileutils") - (version "0.5.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mrunalp/fileutils") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1zrs959gf4zgi6ijwkdn4dcqk0svfblpaikkqy63q30rqz4swm0x")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mrunalp/fileutils")) - (home-page "https://github.com/mrunalp/fileutils") - (synopsis "fileutils") - (description "Collection of utilities for file manipulation in golang") - (license license:asl2.0))) - -(define-public go-github-com-opencontainers-selinux-1.8.2 - (package - (name "go-github-com-opencontainers-selinux") - (version "1.8.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/selinux") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1dl1h8nzpyhsfki1dcjphm5h4n52qwilahyl6qlnwgzcc76pwizq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/selinux")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777" - ,go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-bits-and-blooms-bitset-1.2.0" - ,go-github-com-bits-and-blooms-bitset-1.2.0))) - (home-page "https://github.com/opencontainers/selinux") - (synopsis "selinux") - (description "Common SELinux package used across the container ecosystem.") - (license license:asl2.0))) - -(define-public go-github-com-seccomp-libseccomp-golang-0.9.1 - (package - (name "go-github-com-seccomp-libseccomp-golang") - (version "0.9.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/seccomp/libseccomp-golang") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "022c8prvxz0shrifams7lq4xidvkcqg9xi87wjjcpmbikqi72cna")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/seccomp/libseccomp-golang")) - (home-page "https://github.com/seccomp/libseccomp-golang") - (synopsis #f) - (description - "Package seccomp provides bindings for libseccomp, a library wrapping the Linux -seccomp syscall. Seccomp enables an application to restrict system call use -for itself and its children. -") - (license license:bsd-2))) - -(define-public go-github-com-urfave-cli-1.22.1 - (package - (name "go-github-com-urfave-cli") - (version "1.22.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/urfave/cli") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "04ymak18flqlfcn8lycmg8r3931al8dvr8f1cg9n4yjaskmg72v8")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/urfave/cli")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) - ("go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d" - ,go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d) - ("go-github-com-burntsushi-toml-0.3.1" - ,go-github-com-burntsushi-toml-0.3.1))) - (home-page "https://github.com/urfave/cli") - (synopsis "cli") - (description - "Package cli provides a minimal framework for creating and organizing command line -Go applications. cli is designed to be easy to understand and write, the most simple -cli application can be written as follows: -") - (license license:expat))) - -(define-public go-github-com-vishvananda-netns-0.0.0-20191106174202-0a2b9b5464df - (package - (name "go-github-com-vishvananda-netns") - (version "0.0.0-20191106174202-0a2b9b5464df") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/vishvananda/netns") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1k1zb7pzc4r4wicq7ncspf6zsvq298lvpsq963ibj813shg657xw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/vishvananda/netns")) - (home-page "https://github.com/vishvananda/netns") - (synopsis "netns - network namespaces in go") - (description - "Package netns allows ultra-simple network namespace handling. NsHandles -can be retrieved and set. Note that the current namespace is thread -local so actions that set and reset namespaces should use LockOSThread -to make sure the namespace doesn't change due to a goroutine switch. -It is best to close NsHandles when you are done with them. This can be -accomplished via a `defer ns.Close()` on the handle. Changing namespaces -requires elevated privileges, so in most cases this code needs to be run -as root. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-sys-0.0.0-20190606203320-7fc4e5ec1444 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190606203320-7fc4e5ec1444") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18rv3m1kksv3758aqiaac2l6j334g0bapic6ibsj999agcn7y9fg")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-vishvananda-netlink-1.1.0 - (package - (name "go-github-com-vishvananda-netlink") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/vishvananda/netlink") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1vhl30p1gx636a088ls4h6a0l8jjyfvz79fr5w0qzdrg4qg9h08h")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/vishvananda/netlink")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190606203320-7fc4e5ec1444" - ,go-golang-org-x-sys-0.0.0-20190606203320-7fc4e5ec1444) - ("go-github-com-vishvananda-netns-0.0.0-20191106174202-0a2b9b5464df" - ,go-github-com-vishvananda-netns-0.0.0-20191106174202-0a2b9b5464df))) - (home-page "https://github.com/vishvananda/netlink") - (synopsis "netlink - netlink library for go") - (description - "Package netlink provides a simple library for netlink. Netlink is -the interface a user-space program in linux uses to communicate with -the kernel. It can be used to add and remove interfaces, set up ip -addresses and routes, and confiugre ipsec. Netlink communication -requires elevated privileges, so in most cases this code needs to -be run as root. The low level primitives for netlink are contained -in the nl subpackage. This package attempts to provide a high-level -interface that is loosly modeled on the iproute2 cli. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b - (package - (name "go-golang-org-x-net") - (version "0.0.0-20201224014010-6772e930b67b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0zlr39dxbg0fxfdrc20c4x0pw43n9kz749ssml97cdzqy116p5qa")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) - ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" - ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) - ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" - ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20210426230700-d19ff857e887 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20210426230700-d19ff857e887") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12m35a34dfm99agcv2ln9zvvyczigaxfwqbzqirvwn1lw4784whn")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-opencontainers-runc-1.0.2 - (package - (name "go-github-com-opencontainers-runc") - (version "1.0.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/runc") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1bpckghjah0rczciw1a1ab8z718lb2d3k4mjm4zb45lpm3njmrcp")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/runc")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.26.0" - ,go-google-golang-org-protobuf-1.26.0) - ("go-golang-org-x-sys-0.0.0-20210426230700-d19ff857e887" - ,go-golang-org-x-sys-0.0.0-20210426230700-d19ff857e887) - ("go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b" - ,go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b) - ("go-github-com-vishvananda-netlink-1.1.0" - ,go-github-com-vishvananda-netlink-1.1.0) - ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) - ("go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635" - ,go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635) - ("go-github-com-sirupsen-logrus-1.8.1" - ,go-github-com-sirupsen-logrus-1.8.1) - ("go-github-com-seccomp-libseccomp-golang-0.9.1" - ,go-github-com-seccomp-libseccomp-golang-0.9.1) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-selinux-1.8.2" - ,go-github-com-opencontainers-selinux-1.8.2) - ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417" - ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417) - ("go-github-com-mrunalp-fileutils-0.5.0" - ,go-github-com-mrunalp-fileutils-0.5.0) - ("go-github-com-moby-sys-mountinfo-0.4.1" - ,go-github-com-moby-sys-mountinfo-0.4.1) - ("go-github-com-godbus-dbus-v5-5.0.4" - ,go-github-com-godbus-dbus-v5-5.0.4) - ("go-github-com-docker-go-units-0.4.0" - ,go-github-com-docker-go-units-0.4.0) - ("go-github-com-cyphar-filepath-securejoin-0.2.2" - ,go-github-com-cyphar-filepath-securejoin-0.2.2) - ("go-github-com-coreos-go-systemd-v22-22.3.2" - ,go-github-com-coreos-go-systemd-v22-22.3.2) - ("go-github-com-containerd-console-1.0.2" - ,go-github-com-containerd-console-1.0.2) - ("go-github-com-cilium-ebpf-0.6.2" ,go-github-com-cilium-ebpf-0.6.2) - ("go-github-com-checkpoint-restore-go-criu-v5-5.0.0" - ,go-github-com-checkpoint-restore-go-criu-v5-5.0.0) - ("go-github-com-bits-and-blooms-bitset-1.2.0" - ,go-github-com-bits-and-blooms-bitset-1.2.0))) - (home-page "https://github.com/opencontainers/runc") - (synopsis "runc") - (description - "@code{runc} is a CLI tool for spawning and running containers according to the OCI specification.") - (license license:asl2.0))) - -(define-public go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417 - (package - (name "go-github-com-opencontainers-runtime-spec") - (version "1.0.3-0.20210326190908-1c3f411f0417") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/runtime-spec") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1azk8z41ga8af35c966f06vrq9y9hwz6mkm59r3py5qaamzim3qq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) - (home-page "https://github.com/opencontainers/runtime-spec") - (synopsis "Open Container Initiative Runtime Specification") - (description - "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") - (license license:asl2.0))) - -(define-public go-github-com-bits-and-blooms-bitset-1.2.0 - (package - (name "go-github-com-bits-and-blooms-bitset") - (version "1.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/bits-and-blooms/bitset") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0r9f7lvz6znl7yr6njg77m8hj472yhdshf1qaybwyw7j8as6c4r3")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/bits-and-blooms/bitset")) - (home-page "https://github.com/bits-and-blooms/bitset") - (synopsis "bitset") - (description - "Package bitset implements bitsets, a mapping -between non-negative integers and boolean values. It should be more -efficient than map[uint] bool. -") - (license license:bsd-3))) - -(define-public go-github-com-opencontainers-selinux-1.8.5 - (package - (name "go-github-com-opencontainers-selinux") - (version "1.8.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/selinux") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "07p8an2y6ycagjigs7dgf7546p0zfgyl739bbv062jk2r2zwxr03")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/selinux")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777" - ,go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777) - ("go-github-com-bits-and-blooms-bitset-1.2.0" - ,go-github-com-bits-and-blooms-bitset-1.2.0))) - (home-page "https://github.com/opencontainers/selinux") - (synopsis "selinux") - (description "Common SELinux package used across the container ecosystem.") - (license license:asl2.0))) - -(define-public go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635 - (package - (name "go-github-com-syndtr-gocapability") - (version "0.0.0-20200815063812-42c35b437635") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/syndtr/gocapability") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "00zi0k190ydlm9drnafvj9p4cf6axm858wr71pbmq1p3r94iqws4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/syndtr/gocapability")) - (home-page "https://github.com/syndtr/gocapability") - (synopsis #f) - (description #f) - (license license:bsd-2))) - -(define-public go-github-com-tchap-go-patricia-2.3.0+incompatible - (package - (name "go-github-com-tchap-go-patricia") - (version "2.3.0+incompatible") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/tchap/go-patricia") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12s2q1g98iy96d2cz10ip5jmaf0aqf59sxhm2h1whc7f8h5w0knc")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/tchap/go-patricia")) - (home-page "https://github.com/tchap/go-patricia") - (synopsis "go-patricia") - (description - "@strong{Documentation}: @url{http://godoc.org/github.com/tchap/go-patricia/patricia,GoDoc} -@strong{Test Coverage}: @url{https://coveralls.io/r/tchap/go-patricia,(img (@ (src https://coveralls.io/repos/tchap/go-patricia/badge.png) (alt CoverageStatus)))}") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20210820121016-41cdb8703e55 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20210820121016-41cdb8703e55") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "01ampyy748h8qkrz1w1xhzwfdj3svzcn38dfla8zczrwqv9wf77a")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15 - (package - (name "go-gopkg-in-check-v1") - (version "1.0.0-20190902080502-41f04d3bba15") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/check.v1") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0vfk9czmlxmp6wndq8k17rhnjxal764mxfhrccza7nwlia760pjy")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) - (home-page "https://gopkg.in/check.v1") - (synopsis "Instructions") - (description - "Package check is a rich testing extension for Go's testing package. -") - (license license:bsd-2))) - -(define-public go-gotest-tools-2.2.0+incompatible - (package - (name "go-gotest-tools") - (version "2.2.0+incompatible") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gotestyourself/gotest.tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0yif3gdyckmf8i54jq0xn00kflla5rhib9sarw66ngnbl7bn9kyl")))) - (build-system go-build-system) - (arguments '(#:import-path "gotest.tools")) - (home-page "https://gotest.tools") - (synopsis "gotest.tools") - (description - "Package gotesttools is a collection of packages to augment `testing` and -support common patterns. -") - (license license:asl2.0))) - -(define-public go-github-com-containers-storage-1.37.0 - (package - (name "go-github-com-containers-storage") - (version "1.37.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containers/storage") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1m4bxaisaw9fd364b7kr41xv5i2s863f1kz2aa4krzp5q25j118f")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containers/storage")) - (propagated-inputs - `(("go-gotest-tools-2.2.0+incompatible" - ,go-gotest-tools-2.2.0+incompatible) - ("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" - ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) - ("go-golang-org-x-sys-0.0.0-20210820121016-41cdb8703e55" - ,go-golang-org-x-sys-0.0.0-20210820121016-41cdb8703e55) - ("go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110" - ,go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110) - ("go-github-com-vbatts-tar-split-0.11.2" - ,go-github-com-vbatts-tar-split-0.11.2) - ("go-github-com-ulikunitz-xz-0.5.10" - ,go-github-com-ulikunitz-xz-0.5.10) - ("go-github-com-tchap-go-patricia-2.3.0+incompatible" - ,go-github-com-tchap-go-patricia-2.3.0+incompatible) - ("go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635" - ,go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635) - ("go-github-com-stretchr-testify-1.7.0" - ,go-github-com-stretchr-testify-1.7.0) - ("go-github-com-sirupsen-logrus-1.8.1" - ,go-github-com-sirupsen-logrus-1.8.1) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-selinux-1.8.5" - ,go-github-com-opencontainers-selinux-1.8.5) - ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417" - ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417) - ("go-github-com-opencontainers-runc-1.0.2" - ,go-github-com-opencontainers-runc-1.0.2) - ("go-github-com-opencontainers-go-digest-1.0.0" - ,go-github-com-opencontainers-go-digest-1.0.0) - ("go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd" - ,go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd) - ("go-github-com-moby-sys-mountinfo-0.4.1" - ,go-github-com-moby-sys-mountinfo-0.4.1) - ("go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible" - ,go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible) - ("go-github-com-mattn-go-shellwords-1.0.12" - ,go-github-com-mattn-go-shellwords-1.0.12) - ("go-github-com-klauspost-pgzip-1.2.5" - ,go-github-com-klauspost-pgzip-1.2.5) - ("go-github-com-klauspost-compress-1.13.6" - ,go-github-com-klauspost-compress-1.13.6) - ("go-github-com-json-iterator-go-1.1.12" - ,go-github-com-json-iterator-go-1.1.12) - ("go-github-com-hashicorp-go-multierror-1.1.1" - ,go-github-com-hashicorp-go-multierror-1.1.1) - ("go-github-com-google-uuid-1.2.0" ,go-github-com-google-uuid-1.2.0) - ("go-github-com-google-go-intervals-0.0.2" - ,go-github-com-google-go-intervals-0.0.2) - ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" - ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) - ("go-github-com-docker-go-units-0.4.0" - ,go-github-com-docker-go-units-0.4.0) - ("go-github-com-containerd-stargz-snapshotter-estargz-0.9.0" - ,go-github-com-containerd-stargz-snapshotter-estargz-0.9.0) - ("go-github-com-microsoft-hcsshim-0.8.22" - ,go-github-com-microsoft-hcsshim-0.8.22) - ("go-github-com-microsoft-go-winio-0.5.0" - ,go-github-com-microsoft-go-winio-0.5.0) - ("go-github-com-burntsushi-toml-0.4.1" - ,go-github-com-burntsushi-toml-0.4.1))) - (home-page "https://github.com/containers/storage") - (synopsis #f) - (description - "@code{storage} is a Go library which aims to provide methods for storing filesystem -layers, container images, and containers. A @code{containers-storage} CLI wrapper -is also included for manual and scripting use.") - (license license:asl2.0))) - -(define-public go-github-com-docker-distribution-2.7.1+incompatible - (package - (name "go-github-com-docker-distribution") - (version "2.7.1+incompatible") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/distribution/distribution") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1nx8b5a68rn81alp8wkkw6qd5v32mgf0fk23mxm60zdf63qk1nzw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/docker/distribution")) - (home-page "https://github.com/docker/distribution") - (synopsis "Distribution") - (description - "Package distribution will define the interfaces for the components of -docker distribution. The goal is to allow users to reliably package, ship -and store content related to docker images. -") - (license license:asl2.0))) - -(define-public go-github-com-docker-docker-20.10.11+incompatible - (package - (name "go-github-com-docker-docker") - (version "20.10.11+incompatible") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/moby/moby") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1h1r66j57l073iba6hwrhcz779vaym68l1gfycdiw2d2gglfrdgr")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/docker/docker")) - (home-page "https://github.com/docker/docker") - (synopsis "The Moby Project") - (description - "Moby is an open-source project created by Docker to enable and accelerate software containerization.") - (license license:asl2.0))) - -(define-public go-github-com-danieljoos-wincred-1.1.0 - (package - (name "go-github-com-danieljoos-wincred") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/danieljoos/wincred") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0fllr8lwk70qb8gfndkgshfq5c7p8zdpp47bcd3816giv5w78vxi")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/danieljoos/wincred")) - (propagated-inputs - `(("go-github-com-stretchr-testify-1.5.1" - ,go-github-com-stretchr-testify-1.5.1))) - (home-page "https://github.com/danieljoos/wincred") - (synopsis "wincred") - (description - "Package wincred provides primitives for accessing the Windows Credentials Management API. -This includes functions for retrieval, listing and storage of credentials as well as Go structures for convenient access to the credential data. -") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20210119212857-b64e53b001e4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "16in6bazi0frdkzhqxyvmw7qcvzjavq21dnz9bmrqq8d4dpd2j44")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-docker-docker-credential-helpers-0.6.4 - (package - (name "go-github-com-docker-docker-credential-helpers") - (version "0.6.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/docker/docker-credential-helpers") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0xsz8zgil2xrv835p3i6qbk7s81jz62sgasfvmmxi6lrkirahmh6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/docker/docker-credential-helpers")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4" - ,go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4) - ("go-github-com-danieljoos-wincred-1.1.0" - ,go-github-com-danieljoos-wincred-1.1.0))) - (home-page "https://github.com/docker/docker-credential-helpers") - (synopsis "Introduction") - (description - "docker-credential-helpers is a suite of programs to use native stores to keep Docker credentials safe.") - (license license:expat))) - -(define-public go-github-com-docker-go-connections-0.4.0 - (package - (name "go-github-com-docker-go-connections") - (version "0.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/docker/go-connections") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0mv6f6b5nljc17dmwmc28hc0y11pqglz7x0d2mjrwdmfxf64hwqq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/docker/go-connections")) - (home-page "https://github.com/docker/go-connections") - (synopsis "Introduction") - (description - "Package connections provides libraries to work with network connections. -This library is divided in several components for specific usage. -") - (license license:asl2.0))) - -(define-public go-github-com-docker-libtrust-0.0.0-20160708172513-aabc10ec26b7 - (package - (name "go-github-com-docker-libtrust") - (version "0.0.0-20160708172513-aabc10ec26b7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/docker/libtrust") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1lwslbggzc2b0c4wxl5pn6i2nfgz5jz8f7s7vnid9mrlsk59h7s1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/docker/libtrust")) - (home-page "https://github.com/docker/libtrust") - (synopsis "libtrust") - (description - "Package libtrust provides an interface for managing authentication and -authorization using public key cryptography. Authentication is handled -using the identity attached to the public key and verified through TLS -x509 certificates, a key challenge, or signature. Authorization and -access control is managed through a trust graph distributed between -both remote trust servers and locally cached and managed data. -") - (license license:asl2.0))) - -(define-public go-github-com-golang-groupcache-0.0.0-20210331224755-41bb18bfe9da - (package - (name "go-github-com-golang-groupcache") - (version "0.0.0-20210331224755-41bb18bfe9da") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/groupcache") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "07amgr8ji4mnq91qbsw2jlcmw6hqiwdf4kzfdrj8c4b05w4knszc")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/groupcache")) - (home-page "https://github.com/golang/groupcache") - (synopsis "groupcache") - (description - "Package groupcache provides a data loading mechanism with caching -and de-duplication that works across a set of peer processes. -") - (license license:asl2.0))) - -(define-public go-github-com-google-uuid-1.3.0 - (package - (name "go-github-com-google-uuid") - (version "1.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/uuid") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0imkw52m7fzrwsdj2rfrk3zbplqfbwncyv6hv89xw0vdw3jpk122")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/uuid")) - (home-page "https://github.com/google/uuid") - (synopsis "uuid") - (description "Package uuid generates and inspects UUIDs. -") - (license license:bsd-3))) - -(define-public go-github-com-gorilla-mux-1.7.4 - (package - (name "go-github-com-gorilla-mux") - (version "1.7.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gorilla/mux") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1d0sy1paa055ic84sp3766s9pa24q008hf77dc842vrgvn8p3wmh")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/gorilla/mux")) - (home-page "https://github.com/gorilla/mux") - (synopsis "gorilla/mux") - (description "Package mux implements a request router and dispatcher. -") - (license license:bsd-3))) - -(define-public go-github-com-hashicorp-errwrap-1.0.0 - (package - (name "go-github-com-hashicorp-errwrap") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/errwrap") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0slfb6w3b61xz04r32bi0a1bygc82rjzhqkxj2si2074wynqnr1c")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/errwrap")) - (home-page "https://github.com/hashicorp/errwrap") - (synopsis "errwrap") - (description - "Package errwrap implements methods to formalize error wrapping in Go. -") - (license license:mpl2.0))) - -(define-public go-github-com-hashicorp-go-multierror-1.1.1 - (package - (name "go-github-com-hashicorp-go-multierror") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/go-multierror") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0l4s41skdpifndn9s8y6s9vzgghdzg4z8z0lld9qjr28888wzp00")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/go-multierror")) - (propagated-inputs - `(("go-github-com-hashicorp-errwrap-1.0.0" - ,go-github-com-hashicorp-errwrap-1.0.0))) - (home-page "https://github.com/hashicorp/go-multierror") - (synopsis "go-multierror") - (description - "@code{go-multierror} is a package for Go that provides a mechanism for -representing a list of @code{error} values as a single @code{error}.") - (license license:mpl2.0))) - -(define-public go-gopkg-in-yaml-v2-2.3.0 - (package - (name "go-gopkg-in-yaml-v2") - (version "2.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1md0hlyd9s6myv3663i9l59y74n4xjazifmmyxn43g86fgkc5lzj")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v2") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language. -") - (license license:asl2.0))) - -(define-public go-github-com-imdario-mergo-0.3.12 - (package - (name "go-github-com-imdario-mergo") - (version "0.3.12") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/imdario/mergo") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "15s6807vcm7xq4l6my7rnw1i7x57712jvdidjli5bip79jfaxw90")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/imdario/mergo")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.3.0" ,go-gopkg-in-yaml-v2-2.3.0))) - (home-page "https://github.com/imdario/mergo") - (synopsis "Mergo") - (description - "This package provides a helper to merge structs and maps in Golang. Useful for configuration default values, avoiding messy if-statements. -") - (license license:bsd-3))) - -(define-public go-github-com-klauspost-compress-1.13.6 - (package - (name "go-github-com-klauspost-compress") - (version "1.13.6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/klauspost/compress") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1bgqhv2pp56b8f5mfzpfjlm4cb262gjbqbp3235blhj9xf2wrynj")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/klauspost/compress")) - (home-page "https://github.com/klauspost/compress") - (synopsis "compress") - (description "This package provides various compression algorithms.") - (license #f))) - -(define-public go-github-com-klauspost-pgzip-1.2.5 - (package - (name "go-github-com-klauspost-pgzip") - (version "1.2.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/klauspost/pgzip") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0m66jcsz27076qvi5qzagzlbyd1sdzh6kbf1njj0sswx86026rx3")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/klauspost/pgzip")) - (home-page "https://github.com/klauspost/pgzip") - (synopsis "pgzip") - (description - "Package pgzip implements reading and writing of gzip format compressed files, -as specified in @url{https://rfc-editor.org/rfc/rfc1952.html,RFC 1952}. -") - (license license:expat))) - -(define-public go-github-com-chzyer-logex-1.1.10 - (package - (name "go-github-com-chzyer-logex") - (version "1.1.10") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/chzyer/logex") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "08pbjj3wx9acavlwyr055isa8a5hnmllgdv5k6ra60l5y1brmlq4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/chzyer/logex")) - (home-page "https://github.com/chzyer/logex") - (synopsis #f) - (description #f) - (license #f))) - -(define-public go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e - (package - (name "go-github-com-chzyer-readline") - (version "0.0.0-20180603132655-2972be24d48e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/chzyer/readline") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "104q8dazj8yf6b089jjr82fy9h1g80zyyzvp3g8b44a7d8ngjj6r")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/chzyer/readline")) - (home-page "https://github.com/chzyer/readline") - (synopsis "Guide") - (description - "Readline is a pure go implementation for GNU-Readline kind library. -") - (license license:expat))) - -(define-public go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1 - (package - (name "go-github-com-chzyer-test") - (version "0.0.0-20180213035817-a1ea475d72b1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/chzyer/test") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0rns2aqk22i9xsgyap0pq8wi4cfaxsri4d9q6xxhhyma8jjsnj2k")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/chzyer/test")) - (home-page "https://github.com/chzyer/test") - (synopsis "test") - (description #f) - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20181122145206-62eef0e2fa9b - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20181122145206-62eef0e2fa9b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0mslbflrh422mcfg2hs2q1xwm3xwd5prn597w7xqhi3s41mx1vs4")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-manifoldco-promptui-0.9.0 - (package - (name "go-github-com-manifoldco-promptui") - (version "0.9.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/manifoldco/promptui") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1nnlj1ahwq4ar5gbvxg8dqjl1wl5r8mhcm0bixg1c4wiihz8xv8m")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/manifoldco/promptui")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20181122145206-62eef0e2fa9b" - ,go-golang-org-x-sys-0.0.0-20181122145206-62eef0e2fa9b) - ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" - ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) - ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" - ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) - ("go-github-com-chzyer-logex-1.1.10" - ,go-github-com-chzyer-logex-1.1.10))) - (home-page "https://github.com/manifoldco/promptui") - (synopsis "promptui") - (description - "Package promptui is a library providing a simple interface to create command-line prompts for go. -It can be easily integrated into spf13/cobra, urfave/cli or any cli go application. -") - (license license:bsd-3))) - -(define-public go-github-com-morikuni-aec-1.0.0 - (package - (name "go-github-com-morikuni-aec") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/morikuni/aec") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1qaqh0lk9wrqgff0yrxnbznvmwyhdxy3g9b2hjpazp5bw4nj0dp7")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/morikuni/aec")) - (home-page "https://github.com/morikuni/aec") - (synopsis "aec") - (description "Go wrapper for ANSI escape code.") - (license license:expat))) - -(define-public go-github-com-mtrmac-gpgme-0.1.2 - (package - (name "go-github-com-mtrmac-gpgme") - (version "0.1.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mtrmac/gpgme") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "00jgfyg93247bc5n3wk679rgnbbq8kr2qr6ymimwfc0bwi8yqz53")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mtrmac/gpgme")) - (home-page "https://github.com/mtrmac/gpgme") - (synopsis "GPGME (golang)") - (description "Package gpgme provides a Go wrapper for the GPGME library -") - (license license:bsd-3))) - -(define-public go-github-com-opencontainers-go-digest-1.0.0 - (package - (name "go-github-com-opencontainers-go-digest") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/go-digest") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0i5acjajvr6hi9zb7gxwifd8w28y884cv7cx36adj8lngj647xbi")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/go-digest")) - (home-page "https://github.com/opencontainers/go-digest") - (synopsis "go-digest") - (description - "Package digest provides a generalized type to opaquely represent message -digests and their operations within the registry. The Digest type is -designed to serve as a flexible identifier in a content-addressable system. -More importantly, it provides tools and wrappers to work with -hash.Hash-based digests with little effort. -") - (license (list license:asl2.0 license:cc-by-sa4.0)))) - -(define-public go-github-com-opencontainers-image-spec-1.0.2-0.20210819154149-5ad6f50d6283 - (package - (name "go-github-com-opencontainers-image-spec") - (version "1.0.2-0.20210819154149-5ad6f50d6283") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/image-spec") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1p91nlpr9g5hv7b4mxncwa4gmhaxiw31fl6xn2fxd38zw1912hjx")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/image-spec")) - (home-page "https://github.com/opencontainers/image-spec") - (synopsis "OCI Image Format Specification") - (description - "The OCI Image Format project creates and maintains the software shipping container image format spec (OCI Image Format).") - (license license:asl2.0))) - -(define-public go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20191115151921-52ab43148777") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1kakxbqrb1w2vwg7r1896z68qcx2lfvimsl8cs2niiipbgpi6imx")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-opencontainers-selinux-1.9.1 - (package - (name "go-github-com-opencontainers-selinux") - (version "1.9.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/selinux") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0gfa7rmx3240da3smgyx5p4495zaw9l6cj0q69ly12m0iqb6889s")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/selinux")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777" - ,go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777))) - (home-page "https://github.com/opencontainers/selinux") - (synopsis "selinux") - (description "Common SELinux package used across the container ecosystem.") - (license license:asl2.0))) - -(define-public go-github-com-ostreedev-ostree-go-0.0.0-20190702140239-759a8c1ac913 - (package - (name "go-github-com-ostreedev-ostree-go") - (version "0.0.0-20190702140239-759a8c1ac913") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/ostreedev/ostree-go") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "025s1621vs0rcvar8i8lfam7556f4562zdg19wp2j7hfx14vc46s")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/ostreedev/ostree-go")) - (home-page "https://github.com/ostreedev/ostree-go") - (synopsis "OSTree-Go") - (description - "Go bindings for OSTree. Find out more about OSTree @url{https://github.com/ostreedev/ostree,here}") - (license license:isc))) - -(define-public go-github-com-pkg-errors-0.9.1 - (package - (name "go-github-com-pkg-errors") - (version "0.9.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pkg/errors") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1761pybhc2kqr6v5fm8faj08x9bql8427yqg6vnfv6nhrasx1mwq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pkg/errors")) - (home-page "https://github.com/pkg/errors") - (synopsis "errors") - (description "Package errors provides simple error handling primitives. -") - (license license:bsd-2))) - -(define-public go-github-com-sirupsen-logrus-1.8.1 - (package - (name "go-github-com-sirupsen-logrus") - (version "1.8.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sirupsen/logrus") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0rvqzic2zz7fpxyizmqxwmhv1m52ii9bgxnqa6km8wsa0l08wh42")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/sirupsen/logrus")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037" - ,go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037) - ("go-github-com-stretchr-testify-1.2.2" - ,go-github-com-stretchr-testify-1.2.2) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/sirupsen/logrus") - (synopsis "Logrus") - (description - "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. -") - (license license:expat))) - -(define-public go-github-com-ulikunitz-xz-0.5.10 - (package - (name "go-github-com-ulikunitz-xz") - (version "0.5.10") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/ulikunitz/xz") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "07vynk0sh8i8g7x9p9x04dj8wylvxaf8ypbi43yvcv7j6zd63c72")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/ulikunitz/xz")) - (home-page "https://github.com/ulikunitz/xz") - (synopsis "Package xz") - (description - "Package xz supports the compression and decompression of xz files. It -supports version 1.0.4 of the specification without the non-LZMA2 -filters. See @url{http://tukaani.org/xz/xz-file-format-1.0.4.txt,http://tukaani.org/xz/xz-file-format-1.0.4.txt} -") - (license license:bsd-3))) - -(define-public go-github-com-davecgh-go-spew-1.1.1 - (package - (name "go-github-com-davecgh-go-spew") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/davecgh/go-spew") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/davecgh/go-spew")) - (home-page "https://github.com/davecgh/go-spew") - (synopsis "go-spew") - (description - "Go-spew implements a deep pretty printer for Go data structures to aid in -debugging. A comprehensive suite of tests with 100% test coverage is provided -to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage -report. Go-spew is licensed under the liberal ISC license, so it may be used in -open source or commercial projects.") - (license license:isc))) - -(define-public go-github-com-stretchr-testify-1.2.2 - (package - (name "go-github-com-stretchr-testify") - (version "1.2.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/testify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0dlszlshlxbmmfxj5hlwgv3r22x0y1af45gn1vd198nvvs3pnvfs")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/testify")) - (home-page "https://github.com/stretchr/testify") - (synopsis "Testify - Thou Shalt Write Tests") - (description - "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20191026070338-33540a1f6037") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0fjcv0vzvi6za0b4xmnk3932pr9f9gczzf03y0kgq3ry9rqg169y")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-sirupsen-logrus-1.7.0 - (package - (name "go-github-com-sirupsen-logrus") - (version "1.7.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sirupsen/logrus") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1a59pw7zimvm8k423iq9l4f4qjj1ia1xc6pkmhwl2mxc46y2n442")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/sirupsen/logrus")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037" - ,go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037) - ("go-github-com-stretchr-testify-1.2.2" - ,go-github-com-stretchr-testify-1.2.2) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/sirupsen/logrus") - (synopsis "Logrus") - (description - "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. -") - (license license:expat))) - -(define-public go-github-com-russross-blackfriday-v2-2.0.1 - (package - (name "go-github-com-russross-blackfriday-v2") - (version "2.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/russross/blackfriday") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0nlz7isdd4rgnwzs68499hlwicxz34j2k2a0b8jy0y7ycd2bcr5j")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/russross/blackfriday/v2")) - (home-page "https://github.com/russross/blackfriday") - (synopsis "Blackfriday") - (description "Package blackfriday is a markdown processor. -") - (license license:bsd-2))) - -(define-public go-github-com-shurcool-sanitized-anchor-name-1.0.0 - (package - (name "go-github-com-shurcool-sanitized-anchor-name") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/shurcooL/sanitized_anchor_name") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1gv9p2nr46z80dnfjsklc6zxbgk96349sdsxjz05f3z6wb6m5l8f")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/shurcooL/sanitized_anchor_name")) - (home-page "https://github.com/shurcooL/sanitized_anchor_name") - (synopsis "sanitized_anchor_name") - (description - "Package sanitized_anchor_name provides a func to create sanitized anchor names. -") - (license license:expat))) - -(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d - (package - (name "go-github-com-cpuguy83-go-md2man-v2") - (version "2.0.0-20190314233015-f79a8a8ca69d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cpuguy83/go-md2man") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) - (propagated-inputs - `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" - ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) - ("go-github-com-russross-blackfriday-v2-2.0.1" - ,go-github-com-russross-blackfriday-v2-2.0.1) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0))) - (home-page "https://github.com/cpuguy83/go-md2man") - (synopsis "go-md2man") - (description "Converts markdown into roff (man pages).") - (license license:expat))) - -(define-public go-github-com-urfave-cli-1.22.4 - (package - (name "go-github-com-urfave-cli") - (version "1.22.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/urfave/cli") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1s7frsmiih4wh8vpx9z3ck4667c6vpjrmba7b9ymnv1p9khyg8wc")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/urfave/cli")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) - ("go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d" - ,go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d) - ("go-github-com-burntsushi-toml-0.3.1" - ,go-github-com-burntsushi-toml-0.3.1))) - (home-page "https://github.com/urfave/cli") - (synopsis "cli") - (description - "Package cli provides a minimal framework for creating and organizing command line -Go applications. cli is designed to be easy to understand and write, the most simple -cli application can be written as follows: -") - (license license:expat))) - -(define-public go-github-com-vbatts-tar-split-0.11.2 - (package - (name "go-github-com-vbatts-tar-split") - (version "0.11.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/vbatts/tar-split") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0zmqnlif7r9n9kffw8k3m820ybvyy4zp7m2xfg8rrb321m869dcd")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/vbatts/tar-split")) - (propagated-inputs - `(("go-github-com-urfave-cli-1.22.4" ,go-github-com-urfave-cli-1.22.4) - ("go-github-com-sirupsen-logrus-1.7.0" - ,go-github-com-sirupsen-logrus-1.7.0))) - (home-page "https://github.com/vbatts/tar-split") - (synopsis "tar-split") - (description - "Pristinely disassembling a tar archive, and stashing needed raw bytes and offsets to reassemble a validating original archive.") - (license license:bsd-3))) - -(define-public go-github-com-vividcortex-ewma-1.2.0 - (package - (name "go-github-com-vividcortex-ewma") - (version "1.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/VividCortex/ewma") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0whx516l9nm4n41spagb605ry7kfnz1qha96mcshnfjlahhnnylq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/VividCortex/ewma")) - (home-page "https://github.com/VividCortex/ewma") - (synopsis "EWMA") - (description - "Package ewma implements exponentially weighted moving averages. -") - (license license:expat))) - -(define-public go-github-com-acarl005-stripansi-0.0.0-20180116102854-5a71ef0e047d - (package - (name "go-github-com-acarl005-stripansi") - (version "0.0.0-20180116102854-5a71ef0e047d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/acarl005/stripansi") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "02sxiishdixm791jqbkmhdcvc712l0fb8rqmibxzgc61h0qs6rs3")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/acarl005/stripansi")) - (home-page "https://github.com/acarl005/stripansi") - (synopsis "Strip ANSI") - (description "This Go package removes ANSI escape codes from strings.") - (license license:expat))) - -(define-public go-github-com-rivo-uniseg-0.2.0 - (package - (name "go-github-com-rivo-uniseg") - (version "0.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/rivo/uniseg") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0j7h22vfmjj562vr8gpsyrkrwp1pq9ayh5fylv24skxb467g9f0q")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/rivo/uniseg")) - (home-page "https://github.com/rivo/uniseg") - (synopsis "Unicode Text Segmentation for Go") - (description - "Package uniseg implements Unicode Text Segmentation according to Unicode -Standard Annex #29 (@url{http://unicode.org/reports/tr29/,http://unicode.org/reports/tr29/}). -") - (license license:expat))) - -(define-public go-github-com-mattn-go-runewidth-0.0.13 - (package - (name "go-github-com-mattn-go-runewidth") - (version "0.0.13") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mattn/go-runewidth") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1yir0f3wc5z5hnkwhvx5qb6nmpfb05zp2gvfjvna63s8kmla1rrn")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mattn/go-runewidth")) - (propagated-inputs - `(("go-github-com-rivo-uniseg-0.2.0" ,go-github-com-rivo-uniseg-0.2.0))) - (home-page "https://github.com/mattn/go-runewidth") - (synopsis "go-runewidth") - (description - "This package provides functions to get fixed width of the character or string.") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20210910150752-751e447fb3d0 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20210910150752-751e447fb3d0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1sis5gp14r60lyx4hjkylf6rhmlybivcmrlw5qcbjgjwbbkvi0qk")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-vbauerster-mpb-v7-7.1.5 - (package - (name "go-github-com-vbauerster-mpb-v7") - (version "7.1.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/vbauerster/mpb") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0g2gqy41a15713r90j0j6n9zrs82aczrh33ffmm7jhz6r4nlrq07")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/vbauerster/mpb/v7")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20210910150752-751e447fb3d0" - ,go-golang-org-x-sys-0.0.0-20210910150752-751e447fb3d0) - ("go-github-com-mattn-go-runewidth-0.0.13" - ,go-github-com-mattn-go-runewidth-0.0.13) - ("go-github-com-acarl005-stripansi-0.0.0-20180116102854-5a71ef0e047d" - ,go-github-com-acarl005-stripansi-0.0.0-20180116102854-5a71ef0e047d) - ("go-github-com-vividcortex-ewma-1.2.0" - ,go-github-com-vividcortex-ewma-1.2.0))) - (home-page "https://github.com/vbauerster/mpb") - (synopsis "Multi Progress Bar") - (description - "Package mpb is a library for rendering progress bars in terminal applications. -") - (license license:unlicense))) - -(define-public go-github-com-xeipuuv-gojsonpointer-0.0.0-20190809123943-df4f5c81cb3b - (package - (name "go-github-com-xeipuuv-gojsonpointer") - (version "0.0.0-20190809123943-df4f5c81cb3b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/xeipuuv/gojsonpointer") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0dfwc66z5gq75m3z7va80c10c22ijiq99bahq86l26ki71g286xn")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/xeipuuv/gojsonpointer")) - (home-page "https://github.com/xeipuuv/gojsonpointer") - (synopsis "gojsonpointer") - (description "An implementation of JSON Pointer - Go language") - (license license:asl2.0))) - -(define-public go-github-com-stretchr-testify-1.3.0 - (package - (name "go-github-com-stretchr-testify") - (version "1.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/testify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0wjchp2c8xbgcbbq32w3kvblk6q6yn533g78nxl6iskq6y95lxsy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/testify")) - (propagated-inputs - `(("go-github-com-stretchr-objx-0.1.0" - ,go-github-com-stretchr-objx-0.1.0) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.0" - ,go-github-com-davecgh-go-spew-1.1.0))) - (home-page "https://github.com/stretchr/testify") - (synopsis "Testify - Thou Shalt Write Tests") - (description - "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -") - (license license:expat))) - -(define-public go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f - (package - (name "go-github-com-xeipuuv-gojsonpointer") - (version "0.0.0-20180127040702-4e3ac2762d5f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/xeipuuv/gojsonpointer") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "13y6iq2nzf9z4ls66bfgnnamj2m3438absmbpqry64bpwjfbsi9q")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/xeipuuv/gojsonpointer")) - (home-page "https://github.com/xeipuuv/gojsonpointer") - (synopsis "gojsonpointer") - (description "An implementation of JSON Pointer - Go language") - (license license:asl2.0))) - -(define-public go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415 - (package - (name "go-github-com-xeipuuv-gojsonreference") - (version "0.0.0-20180127040603-bd5ef7bd5415") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/xeipuuv/gojsonreference") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1xby79padc7bmyb8rfbad8wfnfdzpnh51b1n8c0kibch0kwc1db5")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/xeipuuv/gojsonreference")) - (home-page "https://github.com/xeipuuv/gojsonreference") - (synopsis "gojsonreference") - (description "An implementation of JSON Reference - Go language") - (license license:asl2.0))) - -(define-public go-github-com-xeipuuv-gojsonschema-1.2.0 - (package - (name "go-github-com-xeipuuv-gojsonschema") - (version "1.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/xeipuuv/gojsonschema") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1mqiq0r8qw4qlfp3ls8073r6514rmzwrmdn4j33rppk3zh942i6l")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/xeipuuv/gojsonschema")) - (propagated-inputs - `(("go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415" - ,go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415) - ("go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f" - ,go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f) - ("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0))) - (home-page "https://github.com/xeipuuv/gojsonschema") - (synopsis "gojsonschema") - (description - "An implementation of JSON Schema for the Go programming language. Supports draft-04, draft-06 and draft-07.") - (license license:asl2.0))) - -(define-public go-golang-org-x-sys-0.0.0-20200923182605-d9f96fdee20d - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200923182605-d9f96fdee20d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1lj8nmnpb7ngbd90il65kyh78i6sc325vhmxr6l61qvbh0qdybyh")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-go-etcd-io-bbolt-1.3.6 - (package - (name "go-go-etcd-io-bbolt") - (version "1.3.6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/etcd-io/bbolt") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0pj5245d417za41j6p09fmkbv05797vykr1bi9a6rnwddh1dbs8d")))) - (build-system go-build-system) - (arguments '(#:import-path "go.etcd.io/bbolt")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20200923182605-d9f96fdee20d" - ,go-golang-org-x-sys-0.0.0-20200923182605-d9f96fdee20d))) - (home-page "https://go.etcd.io/bbolt") - (synopsis "bbolt") - (description - "package bbolt implements a low-level key/value store in pure Go. It supports -fully serializable transactions, ACID semantics, and lock-free MVCC with -multiple readers and a single writer. Bolt can be used for projects that -want a simple data store without the need to add large dependencies such as -Postgres or MySQL. -") - (license license:expat))) - -(define-public go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e - (package - (name "go-github-com-golang-groupcache") - (version "0.0.0-20200121045136-8c9f03a8e57e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/groupcache") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0vjjr79r32icjzlb05wn02k59av7jx0rn1jijml8r4whlg7dnkfh")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/groupcache")) - (home-page "https://github.com/golang/groupcache") - (synopsis "groupcache") - (description - "Package groupcache provides a data loading mechanism with caching -and de-duplication that works across a set of peer processes. -") - (license license:asl2.0))) - -(define-public go-github-com-google-go-cmp-0.5.3 - (package - (name "go-github-com-google-go-cmp") - (version "0.5.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "011gdkmyk3w7qkcwljhqak4h5npn4n7fwgx1fwpyx9c7wizvgkm5")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") - (license license:bsd-3))) - -(define-public go-github-com-stretchr-testify-1.6.1 - (package - (name "go-github-com-stretchr-testify") - (version "1.6.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/testify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1yhiqqzjvi63pf01rgzx68gqkkvjx03fvl5wk30br5l6s81s090l")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/testify")) - (propagated-inputs - `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" - ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) - ("go-github-com-stretchr-objx-0.1.0" - ,go-github-com-stretchr-objx-0.1.0) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.0" - ,go-github-com-davecgh-go-spew-1.1.0))) - (home-page "https://github.com/stretchr/testify") - (synopsis "Testify - Thou Shalt Write Tests") - (description - "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200930185726-fdedc70b468f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1njlfhjbvi4lxvjbq8zswrb0y0q4jd2p6x51h1q6vmyzi9af6869")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b - (package - (name "go-golang-org-x-net") - (version "0.0.0-20201110031124-69a78807bb2b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "176z5k6jbhr9vf0am2avl1lyqwym3q0mri98yb8r572z33qmcw1d")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) - ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" - ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) - ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" - ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-google-golang-org-grpc-1.33.2 - (package - (name "go-google-golang-org-grpc") - (version "1.33.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "03yz4nlf4kqbnpw48f0mvcb2f5zzy0vjd5i2iw0hrjspd0238fzk")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.25.0" - ,go-google-golang-org-protobuf-1.25.0) - ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" - ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) - ("go-github-com-google-go-cmp-0.5.0" - ,go-github-com-google-go-cmp-0.5.0) - ("go-github-com-golang-protobuf-1.4.1" - ,go-github-com-golang-protobuf-1.4.1) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-envoyproxy-go-control-plane-0.9.4" - ,go-github-com-envoyproxy-go-control-plane-0.9.4) - ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" - ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-go-opencensus-io-0.23.0 - (package - (name "go-go-opencensus-io") - (version "0.23.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/census-instrumentation/opencensus-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0gw4f7inf8y2ik00yfb36xganiq9rl4w2d1a41bsjqsh83ajz2km")))) - (build-system go-build-system) - (arguments '(#:import-path "go.opencensus.io")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) - ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" - ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-google-go-cmp-0.5.3" - ,go-github-com-google-go-cmp-0.5.3) - ("go-github-com-golang-protobuf-1.4.3" - ,go-github-com-golang-protobuf-1.4.3) - ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" - ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e))) - (home-page "https://go.opencensus.io") - (synopsis "OpenCensus Libraries for Go") - (description "Package opencensus contains Go support for OpenCensus. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20210226172049-e18ecbb05110") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1vlq8mdscp7yfaa1lmyv03y5m4c2d67ydg2q1i6smkrxghn3zn3q")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) - ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" - ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) - ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" - ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20210322153248-0c34fe9e7dc2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "021szs1czc0xg4chpays7i05dvkax9s8mns314ab01r887kchqxq")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" - ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) - ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" - ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68) - ("go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110" - ,go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20210423082822-04245dca01da - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20210423082822-04245dca01da") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "11is2c5cpxk0gf2mxza2wpzfcf71fxb9b3in77f6w2q0pr68ykzx")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-text-0.3.6 - (package - (name "go-golang-org-x-text") - (version "0.3.6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0wzhvdb059vrp2cczqw422ajrb9sbs4l3qd020hlngj33qfhxah0")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/text")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" - ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) - (home-page "https://golang.org/x/text") - (synopsis "Go Text") - (description - "text is a repository of text-related packages related to internationalization -(i18n) and localization (l10n), such as character encodings, text -transformations, and locale-specific text handling. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20211005001312-d4b1ae081e3b - (package - (name "go-golang-org-x-net") - (version "0.0.0-20211005001312-d4b1ae081e3b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0mid37a5nk85xxym49cxw9k5y9w8j8hiafgmn4igaympm8yy5dc9")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.6" ,go-golang-org-x-text-0.3.6) - ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" - ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) - ("go-golang-org-x-sys-0.0.0-20210423082822-04245dca01da" - ,go-golang-org-x-sys-0.0.0-20210423082822-04245dca01da))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20210220032951-036812b2e83c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1gl202py3s4gl6arkaxlf8qa6f0jyyg2f95m6f89qnfmr416h85b")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the -ones provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20211004093028-2c5d950f24ef - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20211004093028-2c5d950f24ef") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "13ac9v54zgxrya9n2dvbmyafhd0rbmnkfb5zrcp96z8vzd9q8zfz")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-text-0.3.7 - (package - (name "go-golang-org-x-text") - (version "0.3.7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0xkw0qvfjyifdqd25y7nxdqkdh92inymw3q7841nricc9s01p4jy")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/text")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" - ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) - (home-page "https://golang.org/x/text") - (synopsis "Go Text") - (description - "text is a repository of text-related packages related to internationalization -(i18n) and localization (l10n), such as character encodings, text -transformations, and locale-specific text handling. -") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-1.26.0 - (package - (name "go-google-golang-org-protobuf") - (version "1.26.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0xq6phaps6d0vcv13ga59gzj4306l0ki9kikhmb52h6pq0iwfqlz")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.5.5" - ,go-github-com-google-go-cmp-0.5.5) - ("go-github-com-golang-protobuf-1.5.0" - ,go-github-com-golang-protobuf-1.5.0))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.5.2 - (package - (name "go-github-com-golang-protobuf") - (version "1.5.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1mh5fyim42dn821nsd3afnmgscrzzhn3h8rag635d2jnr23r1zhk")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.26.0" - ,go-google-golang-org-protobuf-1.26.0) - ("go-github-com-google-go-cmp-0.5.5" - ,go-github-com-google-go-cmp-0.5.5))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20210330210617-4fbd30eecc44 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20210330210617-4fbd30eecc44") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "02mmymbm7wb3vdp3z9hm8p0f45708fybyd38qm8qxzwm19zqnp56")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20201119102817-f84b799fce68") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1dvhqian5byzkcg1bnqzygqa6ccc6krc2q7j12pp1vhl3y7znnsg")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1 - (package - (name "go-golang-org-x-term") - (version "0.0.0-20201126162022-7de9c90e9dd1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/term") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ba252xmv6qsvf1w1gcy98mngrj0vd4inbjw0lsklqvva65nljna")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/term")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" - ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) - (home-page "https://golang.org/x/term") - (synopsis "Go terminal/console support") - (description - "Package term provides support functions for dealing with terminals, as -commonly found on UNIX systems. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-text-0.3.3 - (package - (name "go-golang-org-x-text") - (version "0.3.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19pihqm3phyndmiw6i42pdv6z1rbvlqlsnhsyqf9gsnn0qnmqqlh")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/text")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" - ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) - (home-page "https://golang.org/x/text") - (synopsis "Go Text") - (description - "text is a repository of text-related packages related to internationalization -(i18n) and localization (l10n), such as character encodings, text -transformations, and locale-specific text handling. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20210405180319-a5a99cb37ef4 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20210405180319-a5a99cb37ef4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0z90hpmxdw9i8vfhd6vf7hd63c86f1128qfb5f3y4kinvlpjy3rl")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) - ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" - ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) - ("go-golang-org-x-sys-0.0.0-20210330210617-4fbd30eecc44" - ,go-golang-org-x-sys-0.0.0-20210330210617-4fbd30eecc44))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20210510120138-977fb7262007 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20210510120138-977fb7262007") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0d2vnblgzxgvis2kly99gv10kadyl3v0cpv1lskjqg2v5d11r6hd")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20180917221912-90fa682c2a6e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-golang-org-x-text-0.3.5 - (package - (name "go-golang-org-x-text") - (version "0.3.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "082s9d7wnh1aa2v08g3h5z4if2f8hl4y01pb788qsvab9329lj0w")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/text")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" - ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) - (home-page "https://golang.org/x/text") - (synopsis "Go Text") - (description - "text is a repository of text-related packages related to internationalization -(i18n) and localization (l10n), such as character encodings, text -transformations, and locale-specific text handling. -") - (license license:bsd-3))) - -(define-public go-github-com-oneofone-xxhash-1.2.2 - (package - (name "go-github-com-oneofone-xxhash") - (version "1.2.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/OneOfOne/xxhash") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1mjfhrwhvxa48rycjnqpqzm521i38h1hdyz6pdwmhd7xb8j6gwi6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/OneOfOne/xxhash")) - (home-page "https://github.com/OneOfOne/xxhash") - (synopsis "xxhash") - (description - "This is a native Go implementation of the excellent @url{https://github.com/Cyan4973/xxHash,xxhash}* algorithm, an extremely fast non-cryptographic Hash algorithm, working at speeds close to RAM limits.") - (license license:asl2.0))) - -(define-public go-github-com-spaolacci-murmur3-0.0.0-20180118202830-f09979ecbc72 - (package - (name "go-github-com-spaolacci-murmur3") - (version "0.0.0-20180118202830-f09979ecbc72") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/spaolacci/murmur3") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1lv3zyz3jy2d76bhvvs8svygx66606iygdvwy5cwc0p5z8yghq25")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/spaolacci/murmur3")) - (home-page "https://github.com/spaolacci/murmur3") - (synopsis "murmur3") - (description - "Package murmur3 implements Austin Appleby's non-cryptographic MurmurHash3. -") - (license license:bsd-3))) - -(define-public go-github-com-cespare-xxhash-1.1.0 - (package - (name "go-github-com-cespare-xxhash") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cespare/xxhash") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1qyzlcdcayavfazvi03izx83fvip8h36kis44zr2sg7xf6sx6l4x")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/cespare/xxhash")) - (propagated-inputs - `(("go-github-com-spaolacci-murmur3-0.0.0-20180118202830-f09979ecbc72" - ,go-github-com-spaolacci-murmur3-0.0.0-20180118202830-f09979ecbc72) - ("go-github-com-oneofone-xxhash-1.2.2" - ,go-github-com-oneofone-xxhash-1.2.2))) - (home-page "https://github.com/cespare/xxhash") - (synopsis "xxhash") - (description - "Package xxhash implements the 64-bit variant of xxHash (XXH64) as described -at @url{http://cyan4973.github.io/xxHash/,http://cyan4973.github.io/xxHash/}. -") - (license license:expat))) - -(define-public go-github-com-cncf-xds-go-0.0.0-20210312221358-fbca930ec8ed - (package - (name "go-github-com-cncf-xds-go") - (version "0.0.0-20210312221358-fbca930ec8ed") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cncf/xds") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "16dlsms2k63570051ch1jb9yphrkqz61wdgs2l6zqaykhg13rjmh")))) - (build-system go-build-system) - (arguments - '(#:import-path - "github.com/cncf/xds/go" - #:unpack-path - "github.com/cncf/xds")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2) - ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" - ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0))) - (home-page "https://github.com/cncf/xds") - (synopsis #f) - (description #f) - (license license:asl2.0))) - -(define-public go-github-com-envoyproxy-go-control-plane-0.9.9-0.20210512163311-63b5d3c536b0 - (package - (name "go-github-com-envoyproxy-go-control-plane") - (version "0.9.9-0.20210512163311-63b5d3c536b0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/envoyproxy/go-control-plane") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1zb462sarpyjd4jxgiv9mqlmzz2rbjfh2r9xb7z4nbdkhpg1wh1j")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.25.0" - ,go-google-golang-org-protobuf-1.25.0) - ("go-google-golang-org-grpc-1.36.0" ,go-google-golang-org-grpc-1.36.0) - ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" - ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) - ("go-go-opentelemetry-io-proto-otlp-0.7.0" - ,go-go-opentelemetry-io-proto-otlp-0.7.0) - ("go-github-com-stretchr-testify-1.5.1" - ,go-github-com-stretchr-testify-1.5.1) - ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" - ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) - ("go-github-com-google-go-cmp-0.5.0" - ,go-github-com-google-go-cmp-0.5.0) - ("go-github-com-golang-protobuf-1.4.3" - ,go-github-com-golang-protobuf-1.4.3) - ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" - ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) - ("go-github-com-cncf-xds-go-0.0.0-20210312221358-fbca930ec8ed" - ,go-github-com-cncf-xds-go-0.0.0-20210312221358-fbca930ec8ed) - ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" - ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) - (home-page "https://github.com/envoyproxy/go-control-plane") - (synopsis "control-plane") - (description - "This repository contains a Go-based implementation of an API server that -implements the discovery service APIs defined in -@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") - (license license:asl2.0))) - -(define-public go-google-golang-org-grpc-1.40.0 - (package - (name "go-google-golang-org-grpc") - (version "1.40.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0n63k9j3grwc8di3k2fkxqbdyzw0pwrcs9vpmwrnga6hdwg9d5hv")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.25.0" - ,go-google-golang-org-protobuf-1.25.0) - ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" - ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) - ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" - ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) - ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" - ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) - ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" - ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) - ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) - ("go-github-com-google-go-cmp-0.5.0" - ,go-github-com-google-go-cmp-0.5.0) - ("go-github-com-golang-protobuf-1.4.3" - ,go-github-com-golang-protobuf-1.4.3) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-envoyproxy-go-control-plane-0.9.9-0.20210512163311-63b5d3c536b0" - ,go-github-com-envoyproxy-go-control-plane-0.9.9-0.20210512163311-63b5d3c536b0) - ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" - ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403) - ("go-github-com-cespare-xxhash-1.1.0" - ,go-github-com-cespare-xxhash-1.1.0))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-google-golang-org-protobuf-1.26.0-rc.1 - (package - (name "go-google-golang-org-protobuf") - (version "1.26.0-rc.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1m2jp247qcnix42jncn0q7pwrjgbhiqllb1115hfsz40xfnfhp8j")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.5.5" - ,go-github-com-google-go-cmp-0.5.5))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.5.0 - (package - (name "go-github-com-golang-protobuf") - (version "1.5.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1craaxv34g4g8q3yrv6pr28fx9ihnk7hj5gnbmxcrhcp78423lnf")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.26.0-rc.1" - ,go-google-golang-org-protobuf-1.26.0-rc.1) - ("go-github-com-google-go-cmp-0.5.5" - ,go-github-com-google-go-cmp-0.5.5))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-github-com-google-go-cmp-0.5.5 - (package - (name "go-github-com-google-go-cmp") - (version "0.5.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12fmkdhyv5d4is8s57k78j097zb0phlgnrkqc03agiszxlid69x7")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-1.27.1 - (package - (name "go-google-golang-org-protobuf") - (version "1.27.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0aszb7cv8fq1m8akgd4kjyg5q7g5z9fdqnry6057ygq9r8r2yif2")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.5.5" - ,go-github-com-google-go-cmp-0.5.5) - ("go-github-com-golang-protobuf-1.5.0" - ,go-github-com-golang-protobuf-1.5.0))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-google-golang-org-genproto-0.0.0-20211005153810-c76a74d43a8e - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20211005153810-c76a74d43a8e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1y0dv6kra59adcvlgygw2rw5f70rr8jq18v2pcr2kjlfjmc48dh1")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.27.1" - ,go-google-golang-org-protobuf-1.27.1) - ("go-google-golang-org-grpc-1.40.0" ,go-google-golang-org-grpc-1.40.0) - ("go-golang-org-x-text-0.3.5" ,go-golang-org-x-text-0.3.5) - ("go-golang-org-x-sys-0.0.0-20210510120138-977fb7262007" - ,go-golang-org-x-sys-0.0.0-20210510120138-977fb7262007) - ("go-golang-org-x-net-0.0.0-20210405180319-a5a99cb37ef4" - ,go-golang-org-x-net-0.0.0-20210405180319-a5a99cb37ef4) - ("go-github-com-golang-protobuf-1.5.2" - ,go-github-com-golang-protobuf-1.5.2))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-github-com-cespare-xxhash-v2-2.1.1 - (package - (name "go-github-com-cespare-xxhash-v2") - (version "2.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cespare/xxhash") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0rl5rs8546zj1vzggv38w93wx0b5dvav7yy5hzxa8kw7iikv1cgr")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/cespare/xxhash/v2")) - (home-page "https://github.com/cespare/xxhash") - (synopsis "xxhash") - (description - "Package xxhash implements the 64-bit variant of xxHash (XXH64) as described -at @url{http://cyan4973.github.io/xxHash/,http://cyan4973.github.io/xxHash/}. -") - (license license:expat))) - -(define-public go-github-com-cncf-xds-go-0.0.0-20210805033703-aa0b78936158 - (package - (name "go-github-com-cncf-xds-go") - (version "0.0.0-20210805033703-aa0b78936158") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cncf/xds") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1mym5pilywkv77ibw9baipf2ibnl3a06g2wjgjfy4xwwr8sbx6zb")))) - (build-system go-build-system) - (arguments - '(#:import-path - "github.com/cncf/xds/go" - #:unpack-path - "github.com/cncf/xds")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2) - ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" - ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0))) - (home-page "https://github.com/cncf/xds") - (synopsis #f) - (description #f) - (license license:asl2.0))) - -(define-public go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c - (package - (name "go-gopkg-in-yaml-v3") - (version "3.0.0-20200313102051-9f266ea9e77c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v3") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1bbai3lzb50m0x2vwsdbagrbhvfylj9k1m32hgbqwldqx4p9ay35")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v3") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language. -") - (license #f))) - -(define-public go-github-com-stretchr-testify-1.7.0 - (package - (name "go-github-com-stretchr-testify") - (version "1.7.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/testify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ixgjsvafr3513pz3r6pmgk074s2dxkll0dadvl25gkf30rkmh10")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/testify")) - (propagated-inputs - `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" - ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) - ("go-github-com-stretchr-objx-0.1.0" - ,go-github-com-stretchr-objx-0.1.0) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.0" - ,go-github-com-davecgh-go-spew-1.1.0))) - (home-page "https://github.com/stretchr/testify") - (synopsis "Testify - Thou Shalt Write Tests") - (description - "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -") - (license license:expat))) - -(define-public go-github-com-antihax-optional-1.0.0 - (package - (name "go-github-com-antihax-optional") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/antihax/optional") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ix08vl49qxr58rc6201cl97g1yznhhkwvqldslawind99js4rj0")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/antihax/optional")) - (home-page "https://github.com/antihax/optional") - (synopsis #f) - (description #f) - (license license:expat))) - -(define-public go-github-com-ghodss-yaml-1.0.0 - (package - (name "go-github-com-ghodss-yaml") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/ghodss/yaml") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0skwmimpy7hlh7pva2slpcplnm912rp3igs98xnqmn859kwa5v8g")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/ghodss/yaml")) - (home-page "https://github.com/ghodss/yaml") - (synopsis "YAML marshaling and unmarshaling support for Go") - (description - "Copyright 2013 The Go Authors. All rights reserved. -Use of this source code is governed by a BSD-style -license that can be found in the LICENSE file. -") - (license #f))) - -(define-public go-github-com-rogpeppe-fastuuid-1.2.0 - (package - (name "go-github-com-rogpeppe-fastuuid") - (version "1.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/rogpeppe/fastuuid") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "028acdg63zkxpjz3l639nlhki2l0canr2v5jglrmwa1wpjqcfff8")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/rogpeppe/fastuuid")) - (home-page "https://github.com/rogpeppe/fastuuid") - (synopsis "fastuuid") - (description - "Package fastuuid provides fast UUID generation of 192 bit -universally unique identifiers. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1 - (package - (name "go-golang-org-x-xerrors") - (version "0.0.0-20200804184101-5ec99f83aff1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/xerrors") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1dbzc3gmf2haazpv7cgmv97rq40g2xzwbglc17vas8dwhgwgwrzb")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/xerrors")) - (home-page "https://golang.org/x/xerrors") - (synopsis #f) - (description - "Package xerrors implements functions to manipulate errors. -") - (license license:bsd-3))) - -(define-public go-google-golang-org-genproto-0.0.0-20200513103714-09dca8ec2884 - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20200513103714-09dca8ec2884") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1bfv9n6sxizgxnf82xhwz9x6h7srdizhy5mdy90j0w833dlk6h9h")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" - ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-golang-protobuf-1.3.3" - ,go-github-com-golang-protobuf-1.3.3))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f - (package - (name "go-github-com-cncf-udpa-go") - (version "0.0.0-20191209042840-269d4d468f6f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cncf/udpa") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0i1jiaw2k3hlwwmg4hap81vb4s1p25xp9kdfww37v0fbgjariccs")))) - (build-system go-build-system) - (arguments - '(#:import-path - "github.com/cncf/udpa/go" - #:unpack-path - "github.com/cncf/udpa")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2) - ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" - ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0))) - (home-page "https://github.com/cncf/udpa") - (synopsis "Description") - (description - "This library has been deprecated in favor of @code{github.com/cncf/xds/go}. All users are recommended to switch their imports.") - (license license:asl2.0))) - -(define-public go-github-com-envoyproxy-go-control-plane-0.9.4 - (package - (name "go-github-com-envoyproxy-go-control-plane") - (version "0.9.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/envoyproxy/go-control-plane") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0m0crzx70lp7vz13v20wxb1fcfdnzp7h3mkh3bn6a8mbfz6w5asj")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) - ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" - ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) - ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" - ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) - ("go-github-com-google-go-cmp-0.2.0" - ,go-github-com-google-go-cmp-0.2.0) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2) - ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" - ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) - ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" - ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f) - ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" - ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) - (home-page "https://github.com/envoyproxy/go-control-plane") - (synopsis "control-plane") - (description - "This repository contains a Go-based implementation of an API server that -implements the discovery service APIs defined in -@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") - (license license:asl2.0))) - -(define-public go-github-com-golang-protobuf-1.3.3 - (package - (name "go-github-com-golang-protobuf") - (version "1.3.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1cyyr52yhj3fzrily3rmsbqyj8va4ld75lmry0857m39rgpv8sy1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-google-golang-org-grpc-1.33.1 - (package - (name "go-google-golang-org-grpc") - (version "1.33.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hv5p4d6m85gbk730l1ki3mdx2v8yr4djg00dwg7a8ga4ixxsxvc")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" - ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.3.3" - ,go-github-com-golang-protobuf-1.3.3) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-envoyproxy-go-control-plane-0.9.4" - ,go-github-com-envoyproxy-go-control-plane-0.9.4) - ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" - ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-gopkg-in-yaml-v2-2.2.3 - (package - (name "go-gopkg-in-yaml-v2") - (version "2.2.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0l2s7y180gkkvrmnw2xyfszz1m4kp92x2hz680c9vyklcbzsxrrx")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v2") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language. -") - (license license:asl2.0))) - -(define-public go-github-com-grpc-ecosystem-grpc-gateway-1.16.0 - (package - (name "go-github-com-grpc-ecosystem-grpc-gateway") - (version "1.16.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc-ecosystem/grpc-gateway") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0dzq1qbgzz2c6vnh8anx0j3py34sd72p35x6s2wrl001q68am5cc")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/grpc-ecosystem/grpc-gateway")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.3" ,go-gopkg-in-yaml-v2-2.2.3) - ("go-google-golang-org-grpc-1.33.1" ,go-google-golang-org-grpc-1.33.1) - ("go-google-golang-org-genproto-0.0.0-20200513103714-09dca8ec2884" - ,go-google-golang-org-genproto-0.0.0-20200513103714-09dca8ec2884) - ("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" - ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) - ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" - ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) - ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" - ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) - ("go-github-com-rogpeppe-fastuuid-1.2.0" - ,go-github-com-rogpeppe-fastuuid-1.2.0) - ("go-github-com-golang-protobuf-1.3.3" - ,go-github-com-golang-protobuf-1.3.3) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-ghodss-yaml-1.0.0" ,go-github-com-ghodss-yaml-1.0.0) - ("go-github-com-antihax-optional-1.0.0" - ,go-github-com-antihax-optional-1.0.0))) - (home-page "https://github.com/grpc-ecosystem/grpc-gateway") - (synopsis "grpc-gateway") - (description - "The grpc-gateway is a plugin of the Google protocol buffers compiler -@url{https://github.com/protocolbuffers/protobuf,protoc}. -It reads protobuf service definitions and generates a reverse-proxy server which -translates a RESTful HTTP API into gRPC. This server is generated according to the -@url{https://github.com/googleapis/googleapis/raw/master/google/api/http.proto#L46,(code google.api.http)} -annotations in your service definitions.") - (license license:bsd-3))) - -(define-public go-go-opentelemetry-io-proto-otlp-0.7.0 - (package - (name "go-go-opentelemetry-io-proto-otlp") - (version "0.7.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/open-telemetry/opentelemetry-proto-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0p2a2i6f9gghvk3h9w08va50dhz7q8i5q6l4jvk6b7nisx6kb1qq")))) - (build-system go-build-system) - (arguments '(#:import-path "go.opentelemetry.io/proto/otlp")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.25.0" - ,go-google-golang-org-protobuf-1.25.0) - ("go-google-golang-org-grpc-1.36.0" ,go-google-golang-org-grpc-1.36.0) - ("go-github-com-grpc-ecosystem-grpc-gateway-1.16.0" - ,go-github-com-grpc-ecosystem-grpc-gateway-1.16.0) - ("go-github-com-golang-protobuf-1.4.3" - ,go-github-com-golang-protobuf-1.4.3))) - (home-page "https://go.opentelemetry.io/proto/otlp") - (synopsis #f) - (description #f) - (license license:asl2.0))) - -(define-public go-github-com-envoyproxy-go-control-plane-0.9.0 - (package - (name "go-github-com-envoyproxy-go-control-plane") - (version "0.9.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/envoyproxy/go-control-plane") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1dpvi4wnycyj6hnai78fr8aj58b27b1vcwdp3v0id5v22kvgr3xw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.23.0" ,go-google-golang-org-grpc-1.23.0) - ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" - ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) - ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" - ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2) - ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" - ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) - ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" - ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) - (home-page "https://github.com/envoyproxy/go-control-plane") - (synopsis "control-plane") - (description - "This repository contains a Go-based implementation of an API server that -implements the discovery service APIs defined in -@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") - (license license:asl2.0))) - -(define-public go-google-golang-org-grpc-1.25.1 - (package - (name "go-google-golang-org-grpc") - (version "1.25.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0a136ij9p11yj1vx892yqy40jkh7n5nfbpdvhgydcj823mx51c6f")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" - ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-github-com-google-go-cmp-0.2.0" - ,go-github-com-google-go-cmp-0.2.0) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2) - ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" - ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) - ("go-github-com-envoyproxy-go-control-plane-0.9.0" - ,go-github-com-envoyproxy-go-control-plane-0.9.0))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403 - (package - (name "go-github-com-cncf-udpa-go") - (version "0.0.0-20201120205902-5459f2c99403") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cncf/udpa") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0i3al193dsp91j7iywqrm6fr56y2sz51ci4vf19mb3j4n2x44gsi")))) - (build-system go-build-system) - (arguments - '(#:import-path - "github.com/cncf/udpa/go" - #:unpack-path - "github.com/cncf/udpa")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2) - ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" - ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0))) - (home-page "https://github.com/cncf/udpa") - (synopsis "Description") - (description - "This library has been deprecated in favor of @code{github.com/cncf/xds/go}. All users are recommended to switch their imports.") - (license license:asl2.0))) - -(define-public go-github-com-davecgh-go-spew-1.1.0 - (package - (name "go-github-com-davecgh-go-spew") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/davecgh/go-spew") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/davecgh/go-spew")) - (home-page "https://github.com/davecgh/go-spew") - (synopsis "go-spew") - (description - "Go-spew implements a deep pretty printer for Go data structures to aid in -debugging. A comprehensive suite of tests with 100% test coverage is provided -to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage -report. Go-spew is licensed under the liberal ISC license, so it may be used in -open source or commercial projects.") - (license license:isc))) - -(define-public go-github-com-pmezard-go-difflib-1.0.0 - (package - (name "go-github-com-pmezard-go-difflib") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pmezard/go-difflib") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pmezard/go-difflib")) - (home-page "https://github.com/pmezard/go-difflib") - (synopsis "go-difflib") - (description - "Go-difflib is a partial port of python 3 difflib package. Its main goal -was to make unified and context diff available in pure Go, mostly for -testing purposes.") - (license license:bsd-3))) - -(define-public go-github-com-stretchr-objx-0.1.0 - (package - (name "go-github-com-stretchr-objx") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/objx") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/objx")) - (home-page "https://github.com/stretchr/objx") - (synopsis "Objx") - (description - "Objx - Go package for dealing with maps, slices, JSON and other data. -") - (license license:expat))) - -(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 - (package - (name "go-gopkg-in-check-v1") - (version "0.0.0-20161208181325-20d25e280405") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/check.v1") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) - (home-page "https://gopkg.in/check.v1") - (synopsis "Instructions") - (description - "Package check is a rich testing extension for Go's testing package. -") - (license license:bsd-2))) - -(define-public go-gopkg-in-yaml-v2-2.2.2 - (package - (name "go-gopkg-in-yaml-v2") - (version "2.2.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "01wj12jzsdqlnidpyjssmj0r4yavlqy7dwrg7adqd8dicjc4ncsa")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v2") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language. -") - (license license:asl2.0))) - -(define-public go-github-com-stretchr-testify-1.5.1 - (package - (name "go-github-com-stretchr-testify") - (version "1.5.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/testify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "09r89m1wy4cjv2nps1ykp00qjpi0531r07q3s34hr7m6njk4srkl")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/testify")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) - ("go-github-com-stretchr-objx-0.1.0" - ,go-github-com-stretchr-objx-0.1.0) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.0" - ,go-github-com-davecgh-go-spew-1.1.0))) - (home-page "https://github.com/stretchr/testify") - (synopsis "Testify - Thou Shalt Write Tests") - (description - "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -") - (license license:expat))) - -(define-public go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad - (package - (name "go-github-com-envoyproxy-go-control-plane") - (version "0.9.9-0.20201210154907-fd9021fe5dad") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/envoyproxy/go-control-plane") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0piyk6pk36x2qr3bhys2k240pfwz3bv64fhi2l0vx1mzwiddapbm")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.23.0" - ,go-google-golang-org-protobuf-1.23.0) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" - ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) - ("go-github-com-stretchr-testify-1.5.1" - ,go-github-com-stretchr-testify-1.5.1) - ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" - ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.2" - ,go-github-com-golang-protobuf-1.4.2) - ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" - ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) - ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" - ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403) - ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" - ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) - (home-page "https://github.com/envoyproxy/go-control-plane") - (synopsis "control-plane") - (description - "This repository contains a Go-based implementation of an API server that -implements the discovery service APIs defined in -@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") - (license license:asl2.0))) - -(define-public go-github-com-golang-protobuf-1.4.2 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0m5z81im4nsyfgarjhppayk4hqnrwswr3nix9mj8pff8x9jvcjqw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.23.0" - ,go-google-golang-org-protobuf-1.23.0) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-google-golang-org-grpc-1.36.0 - (package - (name "go-google-golang-org-grpc") - (version "1.36.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1m4xsfv3ysc84cwqxqqr61fs3d2w04f0q5xbdjijhczjixcxwh5i")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.25.0" - ,go-google-golang-org-protobuf-1.25.0) - ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" - ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) - ("go-github-com-google-go-cmp-0.5.0" - ,go-github-com-google-go-cmp-0.5.0) - ("go-github-com-golang-protobuf-1.4.2" - ,go-github-com-golang-protobuf-1.4.2) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad" - ,go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad) - ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" - ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-github-com-envoyproxy-go-control-plane-0.9.10-0.20210907150352-cf90f659a021 - (package - (name "go-github-com-envoyproxy-go-control-plane") - (version "0.9.10-0.20210907150352-cf90f659a021") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/envoyproxy/go-control-plane") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0qwhcz5a4c9b27xcxdzr3lq76xyxbgjb2l033b0k0hb5lqi1gdnv")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.25.0" - ,go-google-golang-org-protobuf-1.25.0) - ("go-google-golang-org-grpc-1.36.0" ,go-google-golang-org-grpc-1.36.0) - ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" - ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) - ("go-go-opentelemetry-io-proto-otlp-0.7.0" - ,go-go-opentelemetry-io-proto-otlp-0.7.0) - ("go-github-com-stretchr-testify-1.7.0" - ,go-github-com-stretchr-testify-1.7.0) - ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" - ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) - ("go-github-com-google-go-cmp-0.5.0" - ,go-github-com-google-go-cmp-0.5.0) - ("go-github-com-golang-protobuf-1.4.3" - ,go-github-com-golang-protobuf-1.4.3) - ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" - ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) - ("go-github-com-cncf-xds-go-0.0.0-20210805033703-aa0b78936158" - ,go-github-com-cncf-xds-go-0.0.0-20210805033703-aa0b78936158) - ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" - ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) - (home-page "https://github.com/envoyproxy/go-control-plane") - (synopsis "control-plane") - (description - "This repository contains a Go-based implementation of an API server that -implements the discovery service APIs defined in -@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") - (license license:asl2.0))) - -(define-public go-google-golang-org-protobuf-1.23.0 - (package - (name "go-google-golang-org-protobuf") - (version "1.23.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "03yan0m1v0zmlr935p4n24fd376mznsg85zy8sywbgisls4s1bzy")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.0" - ,go-github-com-golang-protobuf-1.4.0))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.4.3 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1kf1d7xmyjvy0z6j5czp6nqyvj9zrk6liv6znif08927xqfrzyln")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.23.0" - ,go-google-golang-org-protobuf-1.23.0) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-github-com-google-uuid-1.1.2 - (package - (name "go-github-com-google-uuid") - (version "1.1.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/uuid") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1rbpfa0v0ly9sdnixcxhf79swki54ikgm1zkwwkj64p1ws66syqd")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/uuid")) - (home-page "https://github.com/google/uuid") - (synopsis "uuid") - (description "Package uuid generates and inspects UUIDs. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190404232315-eb5bcb51f2a3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "17k4g8krxbl84gzcs275b7gsh66dzm15fdxivjnx9xz8q84l4kby")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20190412213103-97732733099d - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190412213103-97732733099d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "118hkp01i4z1f5h6hcjm0ff2ngqhrzj1f7731n0kw8dr6hvbx0sw")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20200622213623-75b288015ac9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18vlncvvs11ds3zaaziqjlg5s2vcwi3496nn6qv7p0dp94j5pwa2")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" - ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) - ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" - ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20200822124328-c89045814202 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20200822124328-c89045814202") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1g3wxilwbcbf2xj20y3mpxh38jka4fyhl48akfqf00vr48zmx96x")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" - ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) - ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" - ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-cloud-google-com-go-0.34.0 - (package - (name "go-cloud-google-com-go") - (version "0.34.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-cloud-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1kclgclwar3r37zbvb9gg3qxbgzkb50zk3s9778zlh2773qikmai")))) - (build-system go-build-system) - (arguments '(#:import-path "cloud.google.com/go")) - (home-page "https://cloud.google.com/go") - (synopsis "Google Cloud Client Libraries for Go") - (description - "Package cloud is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -of sub-packages. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190108225652-1e06a53dbb7e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0lpqqvdccby48nixihvmn8ig1z48b950m1bxfqxn78air308qc3j")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4 - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20181221193216-37e7f081c4d4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1bb0mw6ckb1k7z8v3iil2qlqwfj408fvvp8m1cik2b46p7snyjhm")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the -ones provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d - (package - (name "go-golang-org-x-oauth2") - (version "0.0.0-20200107190931-bf48bf16ab8d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/oauth2") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1sirdib60zwmh93kf9qrx51r8544k1p9rs5mk0797wibz3m4mrdg")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/oauth2")) - (propagated-inputs - `(("go-google-golang-org-appengine-1.4.0" - ,go-google-golang-org-appengine-1.4.0) - ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" - ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) - ("go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e" - ,go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e) - ("go-cloud-google-com-go-0.34.0" ,go-cloud-google-com-go-0.34.0))) - (home-page "https://golang.org/x/oauth2") - (synopsis "OAuth2 for Go") - (description - "Package oauth2 provides support for making -OAuth2 authorized and authenticated HTTP requests, -as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -It can additionally grant authorization with Bearer JWT. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200323222414-85ca7c5b95cd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1504qkgbhhm4f0bhk77v2r1lj6x171ay5m79alkg78wjb5cign5l")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-google-go-cmp-0.5.0 - (package - (name "go-github-com-google-go-cmp") - (version "0.5.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "04pzp583p6b32y34c6jygfxarff9qjs39rarvfh6467z24sdd9k4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-1.22.0 - (package - (name "go-google-golang-org-protobuf") - (version "1.22.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0n7lc4m7kfvj01glc0gnjy0zsnsic7cxnbvlajy0h14cxbab87pj")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.0" - ,go-github-com-golang-protobuf-1.4.0))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.4.1 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0w7ks4vffnnkp0miwgc3chrsnmya45lzvpahb2wmw0jwhdp5kdx7")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.22.0" - ,go-google-golang-org-protobuf-1.22.0) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-github-com-census-instrumentation-opencensus-proto-0.2.1 - (package - (name "go-github-com-census-instrumentation-opencensus-proto") - (version "0.2.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/census-instrumentation/opencensus-proto") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19fcx3sc99i5dsklny6r073z5j20vlwn2xqm6di1q3b1xwchzqfj")))) - (build-system go-build-system) - (arguments - '(#:import-path "github.com/census-instrumentation/opencensus-proto")) - (home-page "https://github.com/census-instrumentation/opencensus-proto") - (synopsis - "OpenCensus Proto - Language Independent Interface Types For OpenCensus") - (description - "Census provides a framework to define and collect stats against metrics and to -break those stats down across user-defined dimensions.") - (license license:asl2.0))) - -(define-public go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4 - (package - (name "go-github-com-prometheus-client-model") - (version "0.0.0-20190812154241-14fe0d1b01d4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/client_model") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0zdmk6rbbx39cvfz0r59v2jg5sg9yd02b4pds5n5llgvivi99550")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/client_model")) - (propagated-inputs - `(("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" - ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0))) - (home-page "https://github.com/prometheus/client_model") - (synopsis "Deprecation note") - (description - "This repository used to contain the code that defined both -the data model and the exposition format of Prometheus metrics.") - (license license:asl2.0))) - -(define-public go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20190311212946-11955173bddd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hlkai67w167wiyivkzd1fgqrnyxkb94l2c6kr51jwcscizfyfn3")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3 - (package - (name "go-golang-org-x-lint") - (version "0.0.0-20190313153728-d0100b6bd8b3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/lint") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0b0amr9x4ji66iv9ayfx7zrfx52k1m5g66qfcxkgj80qrb1y2yn7")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/lint")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" - ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd))) - (home-page "https://golang.org/x/lint") - (synopsis "Installation") - (description "Package lint contains a linter for Go source code. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20190423024810-112230192c58 - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20190423024810-112230192c58") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "05i2k43j2d0llq768hg5pf3hb2yhfzp9la1w5wp0rsnnzblr0lfn")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the -ones provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135 - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20190524140312-2c0ae7006135") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1lsi2ssxajclj3bciz2a41v1vjv768ja3v6wnbyhxy8xphwkp4fk")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" - ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-google-golang-org-grpc-1.23.0 - (package - (name "go-google-golang-org-grpc") - (version "1.23.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1cn33r2gclmq2v1ndpf1n5bmhf2qs8mms7ii5cnl6f9ch4r2c4k3")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" - ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) - ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" - ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) - ("go-google-golang-org-appengine-1.1.0" - ,go-google-golang-org-appengine-1.1.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-google-go-cmp-0.2.0" - ,go-github-com-google-go-cmp-0.2.0) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0) - ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-client9-misspell-0.3.4" - ,go-github-com-client9-misspell-0.3.4) - ("go-github-com-burntsushi-toml-0.3.1" - ,go-github-com-burntsushi-toml-0.3.1) - ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473 - (package - (name "go-github-com-envoyproxy-go-control-plane") - (version "0.9.1-0.20191026205805-5f8ba28d4473") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/envoyproxy/go-control-plane") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1f1s764rd41vd9vgk3r14h1m6fz6pdvxj6fd83q58gxifbc4q5w4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.23.0" ,go-google-golang-org-grpc-1.23.0) - ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" - ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) - ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" - ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2) - ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" - ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) - ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" - ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) - (home-page "https://github.com/envoyproxy/go-control-plane") - (synopsis "control-plane") - (description - "This repository contains a Go-based implementation of an API server that -implements the discovery service APIs defined in -@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") - (license license:asl2.0))) - -(define-public go-github-com-envoyproxy-protoc-gen-validate-0.1.0 - (package - (name "go-github-com-envoyproxy-protoc-gen-validate") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/envoyproxy/protoc-gen-validate") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0kxd3wwh3xwqk0r684hsy281xq4y71cd11d4q2hspcjbnlbwh7cy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/envoyproxy/protoc-gen-validate")) - (home-page "https://github.com/envoyproxy/protoc-gen-validate") - (synopsis "protoc-gen-validate (PGV)") - (description - "PGV is a protoc plugin to generate polyglot message validators. While protocol buffers effectively guarantee the types of structured data, they cannot enforce semantic rules for values. This plugin adds support to protoc-generated code to validate such constraints.") - (license license:asl2.0))) - -(define-public go-github-com-google-go-cmp-0.2.0 - (package - (name "go-github-com-google-go-cmp") - (version "0.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fbv0x27k9sn8svafc0hjwsnckk864lv4yi7bvzrxvmd3d5hskds")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") - (license license:bsd-3))) - -(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20190308221718-c2843e01d9a2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20190311183353-d8887717615a - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190311183353-d8887717615a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1wfm6ngxjyj7v5a2dqib6lw8bb2rdnf1kl48diykxjrsddn0s163")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190215142949-d0b11bdaac8a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.3.2 - (package - (name "go-github-com-golang-protobuf") - (version "1.3.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1k1wb4zr0qbwgpvz9q5ws9zhlal8hq7dmq62pwxxriksayl6hzym")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4 - (package - (name "go-golang-org-x-exp") - (version "0.0.0-20190121172915-509febef88a4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/exp") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "02isrh39z8znrp5znplzy0dip2gnrl3jm1355raliyvhnhg04j6q")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/exp")) - (home-page "https://golang.org/x/exp") - (synopsis "exp") - (description - "This subrepository holds experimental and deprecated (in the @code{old} -directory) packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961 - (package - (name "go-golang-org-x-lint") - (version "0.0.0-20190227174305-5b3e6a55c961") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/lint") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "04zp5vbds9nffmjg36wjpi5vg9zmf890yf78xxasai3ni637ivfw")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/lint")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" - ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c))) - (home-page "https://golang.org/x/lint") - (synopsis "Installation") - (description "Package lint contains a linter for Go source code. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190213061140-3a22650c66bd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12q6fgdkc0742vcms67nzadgdwvi3rnb1gx3vwkljhrvlnwvz7wc")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20181108010431-42b317875d0f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0mrjhk7al7yyh76x9flvxy4jm5jyqh2fxbxagpaazxn1xdgkaif3")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the -ones provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20180724234803-3673e40ba225") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0vx7mz18p480p7fh0w5jv6mfdbsswrlac1sz4i705q7q7ygz59lm")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-google-golang-org-appengine-1.4.0 - (package - (name "go-google-golang-org-appengine") - (version "1.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/appengine") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "06zl7w4sxgdq2pl94wy9ncii6h0z3szl4xpqds0sv3b3wbdlhbnn")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/appengine")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225" - ,go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0))) - (home-page "https://google.golang.org/appengine") - (synopsis "Go App Engine packages") - (description - "Package appengine provides basic functionality for Google App Engine. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20190226205152-f727befe758c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0rpcqw6z13qd33rbasg32zb0gdhgh5lzjla63r6g651zf6hpsak0")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-google-golang-org-appengine-1.4.0" - ,go-google-golang-org-appengine-1.4.0) - ("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" - ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) - ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" - ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-cloud-google-com-go-0.26.0 - (package - (name "go-cloud-google-com-go") - (version "0.26.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-cloud-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "149v3ci17g6wd2pm18mzcncq5qpl9hwdjnz3rlbn5rfidyn46la1")))) - (build-system go-build-system) - (arguments '(#:import-path "cloud.google.com/go")) - (home-page "https://cloud.google.com/go") - (synopsis "Google Cloud Client Libraries for Go") - (description - "Package cloud is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -of sub-packages. -") - (license license:asl2.0))) - -(define-public go-github-com-burntsushi-toml-0.3.1 - (package - (name "go-github-com-burntsushi-toml") - (version "0.3.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/BurntSushi/toml") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fjdwwfzyzllgiwydknf1pwjvy49qxfsczqx5gz3y0izs7as99j6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/BurntSushi/toml")) - (home-page "https://github.com/BurntSushi/toml") - (synopsis "TOML parser and encoder for Go with reflection") - (description - "Package toml implements decoding and encoding of TOML files. -") - (license license:expat))) - -(define-public go-github-com-client9-misspell-0.3.4 - (package - (name "go-github-com-client9-misspell") - (version "0.3.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/client9/misspell") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1vwf33wsc4la25zk9nylpbp9px3svlmldkm0bha4hp56jws4q9cs")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/client9/misspell")) - (home-page "https://github.com/client9/misspell") - (synopsis "Install") - (description - "Package misspell corrects commonly misspelled English words in source files. -") - (license license:expat))) - -(define-public go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b - (package - (name "go-github-com-golang-glog") - (version "0.0.0-20160126235308-23def4e6c14b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/glog") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0jb2834rw5sykfr937fxi8hxi2zy80sj2bdn9b3jb4b26ksqng30")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/glog")) - (home-page "https://github.com/golang/glog") - (synopsis "glog") - (description - "Package glog implements logging analogous to the Google-internal C++ INFO/ERROR/V setup. -It provides functions Info, Warning, Error, Fatal, plus formatting variants such as -Infof. It also provides V-style logging controlled by the -v and -vmodule=file=2 flags. -") - (license license:asl2.0))) - -(define-public go-github-com-golang-mock-1.1.1 - (package - (name "go-github-com-golang-mock") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/mock") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ap8wb6pdl6ccmdb43advjll2ly4sz26wsc3axw0hbrjrybybzgy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/mock")) - (home-page "https://github.com/golang/mock") - (synopsis "gomock") - (description - "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It -integrates well with Go's built-in @code{testing} package, but can be used in other -contexts too.") - (license license:asl2.0))) - -(define-public go-github-com-golang-protobuf-1.2.0 - (package - (name "go-github-com-golang-protobuf") - (version "1.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0kf4b59rcbb1cchfny2dm9jyznp8ri2hsb14n8iak1q8986xa0ab")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3 - (package - (name "go-golang-org-x-lint") - (version "0.0.0-20181026193005-c67002cb31c3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/lint") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0gymbggskjmphqxqcx4s0vnlcz7mygbix0vhwcwv5r67c0bf6765")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/lint")) - (home-page "https://golang.org/x/lint") - (synopsis "Installation") - (description "Package lint contains a linter for Go source code. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d - (package - (name "go-golang-org-x-net") - (version "0.0.0-20180826012351-8a410e7b638d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hp0l8f6fir5gmgrjq0mhh5ikc0rlrm72774228800kfwqjrxxny")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be - (package - (name "go-golang-org-x-oauth2") - (version "0.0.0-20180821212333-d2e6202438be") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/oauth2") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0wbn75fd10485nb93bm4kqldqifdim5xqy4v7r5sdvimvf3fyhn7")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/oauth2")) - (home-page "https://golang.org/x/oauth2") - (synopsis "OAuth2 for Go") - (description - "Package oauth2 provides support for making -OAuth2 authorized and authenticated HTTP requests, -as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -It can additionally grant authorization with Bearer JWT. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20180314180146-1d60e4601c6f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "046jlanz2lkxq1r57x9bl6s4cvfqaic6p2xybsj8mq1120jv4rs6")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the -ones provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20180830151530-49385e6e1522") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0spbldahns09fdxkxflb1x24f8k2awdlnr6k5i7ci4fqd19r1dv4")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-text-0.3.0 - (package - (name "go-golang-org-x-text") - (version "0.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/text")) - (home-page "https://golang.org/x/text") - (synopsis "Go Text") - (description - "text is a repository of text-related packages related to internationalization -(i18n) and localization (l10n), such as character encodings, text -transformations, and locale-specific text handling. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20190114222345-bf090417da8b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1n3xp56k4k3lj06rx7587wr5gnwg0148nvwx6ch0g7ar02hh94hw")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-google-golang-org-appengine-1.1.0 - (package - (name "go-google-golang-org-appengine") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/appengine") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1pz202zszg8f35dk5pfhwgcdi3r6dx1l4yk6x6ly7nb4j45zi96x")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/appengine")) - (home-page "https://google.golang.org/appengine") - (synopsis "Go App Engine packages") - (description - "Package appengine provides basic functionality for Google App Engine. -") - (license license:asl2.0))) - -(define-public go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8 - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20180817151627-c66870c02cf8") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0siq7sv68556ygqi2d2zmvx8l1xjqdc0fylqzci5h1mq2i14bayn")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-google-golang-org-grpc-1.19.0 - (package - (name "go-google-golang-org-grpc") - (version "1.19.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1znqwpj7ix3dpzx4zch0q70sdl3z5lvbb7v3q4i8sf8kas3yv71v")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" - ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) - ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" - ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) - ("go-google-golang-org-appengine-1.1.0" - ,go-google-golang-org-appengine-1.1.0) - ("go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b" - ,go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b) - ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522" - ,go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522) - ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" - ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d" - ,go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d) - ("go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3" - ,go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0) - ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-client9-misspell-0.3.4" - ,go-github-com-client9-misspell-0.3.4) - ("go-github-com-burntsushi-toml-0.3.1" - ,go-github-com-burntsushi-toml-0.3.1) - ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099 - (package - (name "go-honnef-co-go-tools") - (version "0.0.0-20190102054323-c2f93a96b099") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/dominikh/go-tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "07lg29aiap80ca9f201jzng9vjr168cv3qmvjmbd7v5pmww9kmr8")))) - (build-system go-build-system) - (arguments '(#:import-path "honnef.co/go/tools")) - (home-page "https://honnef.co/go/tools") - (synopsis "Documentation") - (description - "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, -offers simplifications, and enforces style rules.") - (license license:expat))) - -(define-public go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55 - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20190819201941-24fa4b261c55") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "109zhaqlfd8zkbr1hk6zqbs6vcxfrk64scjwh2nswph05gr0m84d")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" - ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) - ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) - ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" - ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) - ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" - ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) - ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" - ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-google-golang-org-grpc-1.27.0 - (package - (name "go-google-golang-org-grpc") - (version "1.27.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ijrmgrxyabfn51nm3p9l81iaasq5fg237wnr6mdc4dzsfcg8kd7")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" - ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-github-com-google-go-cmp-0.2.0" - ,go-github-com-google-go-cmp-0.2.0) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2) - ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" - ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) - ("go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473" - ,go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-github-com-google-go-cmp-0.3.0 - (package - (name "go-github-com-google-go-cmp") - (version "0.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1hyxx3434zshl2m9ja78gwlkg1rx9yl6diqa7dnjb31xz5x4gbjj")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd - (package - (name "go-google-golang-org-protobuf") - (version "0.0.0-20200109180630-ec00e32a8dfd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0w6lp9w2avxcpxwzzhspr209ifhyjagvs23k0vykfdqahl1aplrh")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.3.0" - ,go-github-com-google-go-cmp-0.3.0))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.4.0-rc.1 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.0-rc.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "186rirvbfgv6hrxp27ipx2cdpv19qifdd20biqfdm01wiyclqimn")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd" - ,go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd) - ("go-github-com-google-go-cmp-0.3.1" - ,go-github-com-google-go-cmp-0.3.1))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-github-com-google-go-cmp-0.3.1 - (package - (name "go-github-com-google-go-cmp") - (version "0.3.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1caw49i0plkjxir7kdf5qhwls3krqwfmi7g4h392rdfwi3kfahx1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64 - (package - (name "go-google-golang-org-protobuf") - (version "0.0.0-20200221191635-4d8936d0db64") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0563bsvdjj6k0sgwqd5yzrgfiax7sp3lcwh608gync5sv9fx39cy")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.3.1" - ,go-github-com-google-go-cmp-0.3.1) - ("go-github-com-golang-protobuf-1.4.0-rc.1" - ,go-github-com-golang-protobuf-1.4.0-rc.1))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.0-rc.1.0.20200221234624-67d41d38c208") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ykxhg3zixmw25pd435f8h16wnz1g00jpcmmg3xl030kksgqgpp6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64" - ,go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60 - (package - (name "go-google-golang-org-protobuf") - (version "0.0.0-20200228230310-ab0ca4ff8a60") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1rinspcznfp85yz4vrlf4h38hr576virgv8lcs22bsylqga808sd")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208" - ,go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.4.0-rc.2 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.0-rc.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1hd43hjv5zl6bjbmhm5phx74bw4xajsi73m5zky2k56za4mpgzzc")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60" - ,go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967 - (package - (name "go-google-golang-org-protobuf") - (version "1.20.1-0.20200309200217-e05f789c0967") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "17wmy89hnmpkwc63rfcjp50q15s9f1rhmczg06c3z9yy41zk82w9")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.0-rc.2" - ,go-github-com-golang-protobuf-1.4.0-rc.2))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.0-rc.4.0.20200313231945-b860323f09d0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1zj6cwshx0l5n9cn2cpbikzzb79px5dmkpc4p19zy1iif5r5p0z0")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967" - ,go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-1.21.0 - (package - (name "go-google-golang-org-protobuf") - (version "1.21.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12bwln8z1lf9105gdp6ip0rx741i4yfz1520gxnp8861lh9wcl63")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0" - ,go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.4.0 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fjvl5n77abxz5qsd4mgyvjq19x43c5bfvmq62mq3m5plx6zksc8")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.21.0" - ,go-google-golang-org-protobuf-1.21.0) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543 - (package - (name "go-golang-org-x-xerrors") - (version "0.0.0-20191204190536-9bdfabe68543") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/xerrors") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1yjfi1bk9xb81lqn85nnm13zz725wazvrx3b50hx19qmwg7a4b0c")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/xerrors")) - (home-page "https://golang.org/x/xerrors") - (synopsis #f) - (description - "Package xerrors implements functions to manipulate errors. -") - (license license:bsd-3))) - -(define-public go-github-com-google-go-cmp-0.4.0 - (package - (name "go-github-com-google-go-cmp") - (version "0.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1x5pvl3fb5sbyng7i34431xycnhmx8xx94gq2n19g6p0vz68z2v2")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc - (package - (name "go-google-golang-org-protobuf") - (version "1.23.1-0.20200526195155-81db48ad09cc") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "02cpr8rqr5wmpj2fqb32mzilsdnxkh52g1jz95a3ck3gzffc7hh1")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.0" - ,go-github-com-golang-protobuf-1.4.0))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc - (package - (name "go-honnef-co-go-tools") - (version "0.0.0-20190523083050-ea95bdfd59fc") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/dominikh/go-tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1763nw7pwpzkvzfnm63dgzcgbq9hwmq5l1nffchnhh77vgkaq4ic")))) - (build-system go-build-system) - (arguments '(#:import-path "honnef.co/go/tools")) - (home-page "https://honnef.co/go/tools") - (synopsis "Documentation") - (description - "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, -offers simplifications, and enforces style rules.") - (license license:expat))) - -(define-public go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013 - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20200526211855-cb27e3aa2013") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ml73ghqcwbz7ipfk8fnxb5indcml49b5p7vp1fsyny0abyyrmxf")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" - ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) - ("go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc" - ,go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-golang-protobuf-1.4.1" - ,go-github-com-golang-protobuf-1.4.1))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-google-golang-org-protobuf-1.25.0 - (package - (name "go-google-golang-org-protobuf") - (version "1.25.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0apfl42x166dh96zfq5kvv4b4ax9xljik6bq1mnvn2240ir3mc23")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" - ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) - ("go-github-com-google-go-cmp-0.5.0" - ,go-github-com-google-go-cmp-0.5.0) - ("go-github-com-golang-protobuf-1.4.1" - ,go-github-com-golang-protobuf-1.4.1))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-google-golang-org-grpc-1.41.0 - (package - (name "go-google-golang-org-grpc") - (version "1.41.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "10a0n2lmvl8zqhcswz3sjyqil0sk0mvp892d04lfnq61wq1ssgsn")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.25.0" - ,go-google-golang-org-protobuf-1.25.0) - ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" - ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) - ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" - ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) - ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" - ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) - ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" - ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) - ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) - ("go-github-com-google-go-cmp-0.5.0" - ,go-github-com-google-go-cmp-0.5.0) - ("go-github-com-golang-protobuf-1.4.3" - ,go-github-com-golang-protobuf-1.4.3) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-envoyproxy-go-control-plane-0.9.10-0.20210907150352-cf90f659a021" - ,go-github-com-envoyproxy-go-control-plane-0.9.10-0.20210907150352-cf90f659a021) - ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" - ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403) - ("go-github-com-cespare-xxhash-v2-2.1.1" - ,go-github-com-cespare-xxhash-v2-2.1.1))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-github-com-containers-image-v5-5.17.0 - (package - (name "go-github-com-containers-image-v5") - (version "5.17.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containers/image") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0nr5myldx1jhw7qjjilh7xwvn8g8lx85d9llny5iyagqn75q45b1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containers/image/v5")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.41.0" ,go-google-golang-org-grpc-1.41.0) - ("go-google-golang-org-genproto-0.0.0-20211005153810-c76a74d43a8e" - ,go-google-golang-org-genproto-0.0.0-20211005153810-c76a74d43a8e) - ("go-golang-org-x-text-0.3.7" ,go-golang-org-x-text-0.3.7) - ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" - ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) - ("go-golang-org-x-sys-0.0.0-20211004093028-2c5d950f24ef" - ,go-golang-org-x-sys-0.0.0-20211004093028-2c5d950f24ef) - ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" - ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) - ("go-golang-org-x-net-0.0.0-20211005001312-d4b1ae081e3b" - ,go-golang-org-x-net-0.0.0-20211005001312-d4b1ae081e3b) - ("go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2" - ,go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2) - ("go-go-opencensus-io-0.23.0" ,go-go-opencensus-io-0.23.0) - ("go-go-etcd-io-bbolt-1.3.6" ,go-go-etcd-io-bbolt-1.3.6) - ("go-github-com-xeipuuv-gojsonschema-1.2.0" - ,go-github-com-xeipuuv-gojsonschema-1.2.0) - ("go-github-com-xeipuuv-gojsonpointer-0.0.0-20190809123943-df4f5c81cb3b" - ,go-github-com-xeipuuv-gojsonpointer-0.0.0-20190809123943-df4f5c81cb3b) - ("go-github-com-vbauerster-mpb-v7-7.1.5" - ,go-github-com-vbauerster-mpb-v7-7.1.5) - ("go-github-com-vbatts-tar-split-0.11.2" - ,go-github-com-vbatts-tar-split-0.11.2) - ("go-github-com-ulikunitz-xz-0.5.10" - ,go-github-com-ulikunitz-xz-0.5.10) - ("go-github-com-stretchr-testify-1.7.0" - ,go-github-com-stretchr-testify-1.7.0) - ("go-github-com-sirupsen-logrus-1.8.1" - ,go-github-com-sirupsen-logrus-1.8.1) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-ostreedev-ostree-go-0.0.0-20190702140239-759a8c1ac913" - ,go-github-com-ostreedev-ostree-go-0.0.0-20190702140239-759a8c1ac913) - ("go-github-com-opencontainers-selinux-1.9.1" - ,go-github-com-opencontainers-selinux-1.9.1) - ("go-github-com-opencontainers-image-spec-1.0.2-0.20210819154149-5ad6f50d6283" - ,go-github-com-opencontainers-image-spec-1.0.2-0.20210819154149-5ad6f50d6283) - ("go-github-com-opencontainers-go-digest-1.0.0" - ,go-github-com-opencontainers-go-digest-1.0.0) - ("go-github-com-mtrmac-gpgme-0.1.2" ,go-github-com-mtrmac-gpgme-0.1.2) - ("go-github-com-morikuni-aec-1.0.0" ,go-github-com-morikuni-aec-1.0.0) - ("go-github-com-manifoldco-promptui-0.9.0" - ,go-github-com-manifoldco-promptui-0.9.0) - ("go-github-com-klauspost-pgzip-1.2.5" - ,go-github-com-klauspost-pgzip-1.2.5) - ("go-github-com-klauspost-compress-1.13.6" - ,go-github-com-klauspost-compress-1.13.6) - ("go-github-com-imdario-mergo-0.3.12" - ,go-github-com-imdario-mergo-0.3.12) - ("go-github-com-hashicorp-go-multierror-1.1.1" - ,go-github-com-hashicorp-go-multierror-1.1.1) - ("go-github-com-gorilla-mux-1.7.4" ,go-github-com-gorilla-mux-1.7.4) - ("go-github-com-google-uuid-1.3.0" ,go-github-com-google-uuid-1.3.0) - ("go-github-com-golang-groupcache-0.0.0-20210331224755-41bb18bfe9da" - ,go-github-com-golang-groupcache-0.0.0-20210331224755-41bb18bfe9da) - ("go-github-com-ghodss-yaml-1.0.0" ,go-github-com-ghodss-yaml-1.0.0) - ("go-github-com-docker-libtrust-0.0.0-20160708172513-aabc10ec26b7" - ,go-github-com-docker-libtrust-0.0.0-20160708172513-aabc10ec26b7) - ("go-github-com-docker-go-connections-0.4.0" - ,go-github-com-docker-go-connections-0.4.0) - ("go-github-com-docker-docker-credential-helpers-0.6.4" - ,go-github-com-docker-docker-credential-helpers-0.6.4) - ("go-github-com-docker-docker-20.10.11+incompatible" - ,go-github-com-docker-docker-20.10.11+incompatible) - ("go-github-com-docker-distribution-2.7.1+incompatible" - ,go-github-com-docker-distribution-2.7.1+incompatible) - ("go-github-com-containers-storage-1.37.0" - ,go-github-com-containers-storage-1.37.0) - ("go-github-com-containers-ocicrypt-1.1.2" - ,go-github-com-containers-ocicrypt-1.1.2) - ("go-github-com-containers-libtrust-0.0.0-20190913040956-14b96171aa3b" - ,go-github-com-containers-libtrust-0.0.0-20190913040956-14b96171aa3b) - ("go-github-com-containerd-containerd-1.5.7" - ,go-github-com-containerd-containerd-1.5.7) - ("go-github-com-burntsushi-toml-0.4.1" - ,go-github-com-burntsushi-toml-0.4.1) - ("go-github-com-14rcole-gopopulate-0.0.0-20180821133914-b175b219e774" - ,go-github-com-14rcole-gopopulate-0.0.0-20180821133914-b175b219e774))) - (home-page "https://github.com/containers/image") - (synopsis "") - (description - "The package image provides libraries and commands to interact with container images. -") - (license license:asl2.0))) - -(define-public go-github-com-cyphar-filepath-securejoin-0.2.3 - (package - (name "go-github-com-cyphar-filepath-securejoin") - (version "0.2.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cyphar/filepath-securejoin") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0w03d8hslwfhcnfqck21agzs7y0sc6gpwfz53md8fv26ishwxppy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/cyphar/filepath-securejoin")) - (home-page "https://github.com/cyphar/filepath-securejoin") - (synopsis #f) - (description - "Package securejoin is an implementation of the hopefully-soon-to-be-included -SecureJoin helper that is meant to be part of the \"path/filepath\" package. -The purpose of this project is to provide a PoC implementation to make the -SecureJoin proposal (@url{https://github.com/golang/go/issues/20126,https://github.com/golang/go/issues/20126}) more -tangible. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20200223170610-d5e6a3e2c0ae - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200223170610-d5e6a3e2c0ae") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0lz7vm5dz2p14fzq2j4m1l9p392cl0fa73aaf45gln07ylfajk4n")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-mattn-go-colorable-0.1.8 - (package - (name "go-github-com-mattn-go-colorable") - (version "0.1.8") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mattn/go-colorable") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0q34zqwbnls72md8q8mhj368s7p3i4xspvs3rk8fs76s0pn7dr2l")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mattn/go-colorable")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20200223170610-d5e6a3e2c0ae" - ,go-golang-org-x-sys-0.0.0-20200223170610-d5e6a3e2c0ae) - ("go-github-com-mattn-go-isatty-0.0.12" - ,go-github-com-mattn-go-isatty-0.0.12))) - (home-page "https://github.com/mattn/go-colorable") - (synopsis "go-colorable") - (description "Colorable writer for windows.") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20200116001909-b77594299b42 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200116001909-b77594299b42") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0isfm6kmh4fjhh6m7mrb3zvdjka2y31c5habr5kydl7rg0lwkabv")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-mattn-go-isatty-0.0.12 - (package - (name "go-github-com-mattn-go-isatty") - (version "0.0.12") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mattn/go-isatty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1dfsh27d52wmz0nmmzm2382pfrs2fcijvh6cgir7jbb4pnigr5w4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mattn/go-isatty")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20200116001909-b77594299b42" - ,go-golang-org-x-sys-0.0.0-20200116001909-b77594299b42))) - (home-page "https://github.com/mattn/go-isatty") - (synopsis "go-isatty") - (description "Package isatty implements interface to isatty -") - (license license:expat))) - -(define-public go-github-com-fatih-color-1.12.0 - (package - (name "go-github-com-fatih-color") - (version "1.12.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/fatih/color") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0r6r4vh9aiz8ny2whvpq288x8shkyvpj38g5pqw5840ryq38chig")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/fatih/color")) - (propagated-inputs - `(("go-github-com-mattn-go-isatty-0.0.12" - ,go-github-com-mattn-go-isatty-0.0.12) - ("go-github-com-mattn-go-colorable-0.1.8" - ,go-github-com-mattn-go-colorable-0.1.8))) - (home-page "https://github.com/fatih/color") - (synopsis "color") - (description - "Package color is an ANSI color package to output colorized or SGR defined -output to the standard output. The API can be used in several way, pick one -that suits you. -") - (license license:expat))) - -(define-public go-github-com-go-log-log-0.2.0 - (package - (name "go-github-com-go-log-log") - (version "0.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/go-log/log") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1idnqv4yvkmdh3wcsgvhcpak9z6ix8dsifdjq5kfbbnskdq5rmvg")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/go-log/log")) - (home-page "https://github.com/go-log/log") - (synopsis "Log") - (description "Package log provides a log interface -") - (license license:expat))) - -(define-public go-github-com-godbus-dbus-4.1.0+incompatible - (package - (name "go-github-com-godbus-dbus") - (version "4.1.0+incompatible") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/godbus/dbus") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ckvg15zdsgmbn4mi36cazkb407ixc9mmyf7vwj8b8wi3d00rgn9")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/godbus/dbus")) - (home-page "https://github.com/godbus/dbus") - (synopsis "dbus") - (description - "Package dbus implements bindings to the D-Bus message bus system. -") - (license license:bsd-2))) - -(define-public go-github-com-google-uuid-1.3.0 - (package - (name "go-github-com-google-uuid") - (version "1.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/uuid") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0imkw52m7fzrwsdj2rfrk3zbplqfbwncyv6hv89xw0vdw3jpk122")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/uuid")) - (home-page "https://github.com/google/uuid") - (synopsis "uuid") - (description "Package uuid generates and inspects UUIDs. -") - (license license:bsd-3))) - -(define-public go-github-com-gorilla-websocket-1.4.2 - (package - (name "go-github-com-gorilla-websocket") - (version "1.4.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gorilla/websocket") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0mkm9w6kjkrlzab5wh8p4qxkc0icqawjbvr01d2nk6ykylrln40s")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/gorilla/websocket")) - (home-page "https://github.com/gorilla/websocket") - (synopsis "Gorilla WebSocket") - (description - "Package websocket implements the WebSocket protocol defined in @url{https://rfc-editor.org/rfc/rfc6455.html,RFC 6455}. -") - (license license:bsd-2))) - -(define-public go-github-com-satori-go-uuid-1.2.1-0.20180404165556-75cca531ea76 - (package - (name "go-github-com-satori-go-uuid") - (version "1.2.1-0.20180404165556-75cca531ea76") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/satori/go.uuid") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0fi1rc2zl0vyyah6iy8cvsjyxipp6pnzb19x40qkq3j1qlra20qy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/satori/go.uuid")) - (home-page "https://github.com/satori/go.uuid") - (synopsis "UUID package for Go language") - (description - "Package uuid provides implementation of Universally Unique Identifier (UUID). -Supported versions are 1, 3, 4 and 5 (as specified in @url{https://rfc-editor.org/rfc/rfc4122.html,RFC 4122}) and -version 2 (as specified in DCE 1.1). -") - (license license:expat))) - -(define-public go-github-com-sebdah-goldie-v2-2.5.3 - (package - (name "go-github-com-sebdah-goldie-v2") - (version "2.5.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sebdah/goldie") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12gji9p6b6zlkisbd3ww103zwd5chlwkb6h5dppfrmgxim84n5n0")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/sebdah/goldie/v2")) - (propagated-inputs - `(("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0) - ("go-github-com-sergi-go-diff-1.0.0" - ,go-github-com-sergi-go-diff-1.0.0) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) - (home-page "https://github.com/sebdah/goldie") - (synopsis "goldie - Golden test utility for Go") - (description - "Package goldie provides test assertions based on golden files. It's -typically used for testing responses with larger data bodies. -") - (license license:expat))) - -(define-public go-github-com-russross-blackfriday-v2-2.0.1 - (package - (name "go-github-com-russross-blackfriday-v2") - (version "2.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/russross/blackfriday") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0nlz7isdd4rgnwzs68499hlwicxz34j2k2a0b8jy0y7ycd2bcr5j")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/russross/blackfriday/v2")) - (home-page "https://github.com/russross/blackfriday") - (synopsis "Blackfriday") - (description "Package blackfriday is a markdown processor. -") - (license license:bsd-2))) - -(define-public go-github-com-shurcool-sanitized-anchor-name-1.0.0 - (package - (name "go-github-com-shurcool-sanitized-anchor-name") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/shurcooL/sanitized_anchor_name") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1gv9p2nr46z80dnfjsklc6zxbgk96349sdsxjz05f3z6wb6m5l8f")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/shurcooL/sanitized_anchor_name")) - (home-page "https://github.com/shurcooL/sanitized_anchor_name") - (synopsis "sanitized_anchor_name") - (description - "Package sanitized_anchor_name provides a func to create sanitized anchor names. -") - (license license:expat))) - -(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0 - (package - (name "go-github-com-cpuguy83-go-md2man-v2") - (version "2.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cpuguy83/go-md2man") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) - (propagated-inputs - `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" - ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) - ("go-github-com-russross-blackfriday-v2-2.0.1" - ,go-github-com-russross-blackfriday-v2-2.0.1) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0))) - (home-page "https://github.com/cpuguy83/go-md2man") - (synopsis "go-md2man") - (description "Converts markdown into roff (man pages).") - (license license:expat))) - -(define-public go-github-com-hashicorp-go-cleanhttp-0.5.1 - (package - (name "go-github-com-hashicorp-go-cleanhttp") - (version "0.5.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/go-cleanhttp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "07kx3fhryqmaw3czacmm11qwx63js2q8cfq967vphk7xg9q377kk")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/go-cleanhttp")) - (home-page "https://github.com/hashicorp/go-cleanhttp") - (synopsis "cleanhttp") - (description - "Package cleanhttp offers convenience utilities for acquiring \"clean\" -http.Transport and http.Client structs. -") - (license license:mpl2.0))) - -(define-public go-github-com-mitchellh-go-homedir-1.0.0 - (package - (name "go-github-com-mitchellh-go-homedir") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mitchellh/go-homedir") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0f0z0aa4wivk4z1y503dmnw0k0g0g403dly8i4q263gfshs82sbq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mitchellh/go-homedir")) - (home-page "https://github.com/mitchellh/go-homedir") - (synopsis "go-homedir") - (description - "This is a Go library for detecting the user's home directory without -the use of cgo, so the library can be used in cross-compilation environments.") - (license license:expat))) - -(define-public go-github-com-hashicorp-go-rootcerts-1.0.0 - (package - (name "go-github-com-hashicorp-go-rootcerts") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/go-rootcerts") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0wply5zhj1rcybr932zbwm1i18q5wr7kgkhnz6bw6mk1n9yr8lfj")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/go-rootcerts")) - (propagated-inputs - `(("go-github-com-mitchellh-go-homedir-1.0.0" - ,go-github-com-mitchellh-go-homedir-1.0.0))) - (home-page "https://github.com/hashicorp/go-rootcerts") - (synopsis "rootcerts") - (description - "Package rootcerts contains functions to aid in loading CA certificates for -TLS connections. -") - (license license:mpl2.0))) - -(define-public go-github-com-armon-circbuf-0.0.0-20150827004946-bbbad097214e - (package - (name "go-github-com-armon-circbuf") - (version "0.0.0-20150827004946-bbbad097214e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/armon/circbuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1idpr0lzb2px2p3wgfq2276yl7jpaz43df6n91kf790404s4zmk3")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/armon/circbuf")) - (home-page "https://github.com/armon/circbuf") - (synopsis "circbuf") - (description - "This repository provides the @code{circbuf} package. This provides a @code{Buffer} object -which is a circular (or ring) buffer. It has a fixed size, but can be written -to infinitely. Only the last @code{size} bytes are ever retained. The buffer implements -the @code{io.Writer} interface.") - (license license:expat))) - -(define-public go-github-com-hashicorp-go-syslog-1.0.0 - (package - (name "go-github-com-hashicorp-go-syslog") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/go-syslog") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "09vccqggz212cg0jir6vv708d6mx0f9w5bxrcdah3h6chgmal6v1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/go-syslog")) - (home-page "https://github.com/hashicorp/go-syslog") - (synopsis "go-syslog") - (description - "This repository provides a very simple @code{gsyslog} package. The point of this -package is to allow safe importing of syslog without introducing cross-compilation -issues. The stdlib @code{log/syslog} cannot be imported on Windows systems, and without -conditional compilation this adds complications.") - (license license:expat))) - -(define-public go-github-com-hashicorp-go-uuid-1.0.1 - (package - (name "go-github-com-hashicorp-go-uuid") - (version "1.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/go-uuid") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0jvb88m0rq41bwgirsadgw7mnayl27av3gd2vqa3xvxp3fy0hp5k")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/go-uuid")) - (home-page "https://github.com/hashicorp/go-uuid") - (synopsis "uuid") - (description - "Generates UUID-format strings using high quality, bytes. It is @strong{not} intended to be RFC compliant, merely to use a well-understood string representation of a 128-bit value. It can also parse UUID-format strings into their component bytes.") - (license license:mpl2.0))) - -(define-public go-github-com-hashicorp-logutils-1.0.0 - (package - (name "go-github-com-hashicorp-logutils") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/logutils") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "076wf4sh5p3f953ndqk1cc0x7jhmlqrxak9953rz79rcdw77rjvv")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/logutils")) - (home-page "https://github.com/hashicorp/logutils") - (synopsis "logutils") - (description - "Package logutils augments the standard log package with levels. -") - (license license:mpl2.0))) - -(define-public go-github-com-hashicorp-go-net-0.0.1 - (package - (name "go-github-com-hashicorp-go-net") - (version "0.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/go.net") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "06arwi95xp5rxyz7rndvhc3wlwg0jn9a5z6djf3yyg5h9zfab9i4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/go.net")) - (home-page "https://github.com/hashicorp/go.net") - (synopsis #f) - (description #f) - (license license:bsd-3))) - -(define-public go-github-com-hashicorp-mdns-1.0.0 - (package - (name "go-github-com-hashicorp-mdns") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/mdns") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0qr4l91hhi97s8a1isnrw3s4q8pjzacqiks870vnwh15v7ig3axd")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/mdns")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20181026203630-95b1ffbd15a5" - ,go-golang-org-x-sys-0.0.0-20181026203630-95b1ffbd15a5) - ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" - ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) - ("go-golang-org-x-net-0.0.0-20181023162649-9b4f9f5ad519" - ,go-golang-org-x-net-0.0.0-20181023162649-9b4f9f5ad519) - ("go-golang-org-x-crypto-0.0.0-20181029021203-45a5f77698d3" - ,go-golang-org-x-crypto-0.0.0-20181029021203-45a5f77698d3) - ("go-github-com-miekg-dns-1.0.14" ,go-github-com-miekg-dns-1.0.14) - ("go-github-com-hashicorp-go-net-0.0.1" - ,go-github-com-hashicorp-go-net-0.0.1))) - (home-page "https://github.com/hashicorp/mdns") - (synopsis "mdns") - (description - "Simple mDNS client/server library in Golang. mDNS or Multicast DNS can be -used to discover services on the local network without the use of an authoritative -DNS server. This enables peer-to-peer discovery. It is important to note that many -networks restrict the use of multicasting, which prevents mDNS from functioning. -Notably, multicast cannot be used in any sort of cloud, or shared infrastructure -environment. However it works well in most office, home, or private infrastructure -environments.") - (license license:expat))) - -(define-public go-github-com-armon-go-metrics-0.0.0-20180917152333-f0300d1749da - (package - (name "go-github-com-armon-go-metrics") - (version "0.0.0-20180917152333-f0300d1749da") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/armon/go-metrics") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "13l7c35ps0r27vxfil2w0xhhc7w5rh00awvlmn4cz0a937b9ffpv")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/armon/go-metrics")) - (home-page "https://github.com/armon/go-metrics") - (synopsis "go-metrics") - (description - "This library provides a @code{metrics} package which can be used to instrument code, -expose application metrics, and profile runtime performance in a flexible manner.") - (license license:expat))) - -(define-public go-github-com-hashicorp-go-uuid-1.0.0 - (package - (name "go-github-com-hashicorp-go-uuid") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/go-uuid") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1jflywlani7583qm4ysph40hsgx3n66n5zr2k84i057fmwa1ypfy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/go-uuid")) - (home-page "https://github.com/hashicorp/go-uuid") - (synopsis "uuid") - (description - "Generates UUID-format strings using high quality, bytes. It is @strong{not} intended to be RFC compliant, merely to use a well-understood string representation of a 128-bit value. It can also parse UUID-format strings into their component bytes.") - (license license:mpl2.0))) - -(define-public go-github-com-hashicorp-go-immutable-radix-1.0.0 - (package - (name "go-github-com-hashicorp-go-immutable-radix") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/go-immutable-radix") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1v3nmsnk1s8bzpclrhirz7iq0g5xxbw9q5gvrg9ss6w9crs72qr6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/go-immutable-radix")) - (propagated-inputs - `(("go-github-com-hashicorp-golang-lru-0.5.0" - ,go-github-com-hashicorp-golang-lru-0.5.0) - ("go-github-com-hashicorp-go-uuid-1.0.0" - ,go-github-com-hashicorp-go-uuid-1.0.0))) - (home-page "https://github.com/hashicorp/go-immutable-radix") - (synopsis "go-immutable-radix") - (description - "This package provides the @code{iradix} package that implements an immutable @url{http://en.wikipedia.org/wiki/Radix_tree,radix tree}. -The package only provides a single @code{Tree} implementation, optimized for sparse nodes.") - (license license:mpl2.0))) - -(define-public go-github-com-hashicorp-go-msgpack-0.5.3 - (package - (name "go-github-com-hashicorp-go-msgpack") - (version "0.5.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/go-msgpack") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "00jv0ajqd58pkb2yyhlrjp0rv1mvb1ijx3yqjyikcmzvk9jb4h5m")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/go-msgpack")) - (home-page "https://github.com/hashicorp/go-msgpack") - (synopsis "go-codec") - (description "This repository contains the @code{go-codec} library.") - (license license:expat))) - -(define-public go-github-com-hashicorp-go-sockaddr-1.0.0 - (package - (name "go-github-com-hashicorp-go-sockaddr") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/go-sockaddr") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1yn1xq8ysn0lszmkygz3a9lgpswbz1p91jv7q8l20s4749a22xgi")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/go-sockaddr")) - (home-page "https://github.com/hashicorp/go-sockaddr") - (synopsis "go-sockaddr") - (description - "Package sockaddr is a Go implementation of the UNIX socket family data types and -related helper functions. -") - (license license:mpl2.0))) - -(define-public go-github-com-miekg-dns-1.0.14 - (package - (name "go-github-com-miekg-dns") - (version "1.0.14") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/miekg/dns") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1qgli6yp59bv6vc6zag84cwxmcxgnyxm1q2f301yyijk3wy5b2ak")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/miekg/dns")) - (home-page "https://github.com/miekg/dns") - (synopsis "Alternative (more granular) approach to a DNS library") - (description - "Package dns implements a full featured interface to the Domain Name System. -Both server- and client-side programming is supported. The package allows -complete control over what is sent out to the DNS. The API follows the -less-is-more principle, by presenting a small, clean interface. -") - (license license:bsd-3))) - -(define-public go-github-com-sean--seed-0.0.0-20170313163322-e2103e2c3529 - (package - (name "go-github-com-sean--seed") - (version "0.0.0-20170313163322-e2103e2c3529") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sean-/seed") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0glir8jxi1w7aga2jwdb63pp1h8q4whknili7xixsqzwyy716125")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/sean-/seed")) - (home-page "https://github.com/sean-/seed") - (synopsis "- Quickly Seed Go's Random Number Generator") - (description - "Boiler-plate to securely @url{https://en.wikipedia.org/wiki/Random_seed,seed} Go's -random number generator (if possible). This library isn't anything fancy, it's -just a canonical way of seeding Go's random number generator. Cribbed from -@url{https://github.com/hashicorp/nomad/commit/f89a993ec6b91636a3384dd568898245fbc273a1,(code Nomad)} -before it was moved into -@url{https://github.com/hashicorp/consul/commit/d695bcaae6e31ee307c11fdf55bb0bf46ea9fcf4,(code Consul)} -and made into a helper function, and now further modularized to be a super -lightweight and reusable library.") - (license #f))) - -(define-public go-golang-org-x-crypto-0.0.0-20181029021203-45a5f77698d3 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20181029021203-45a5f77698d3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0636jjj89wkzqchajwwzgcn4aafc334p70nawh9jzavg2mkx0ch4")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20181023162649-9b4f9f5ad519 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20181023162649-9b4f9f5ad519") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "06hvxy113h76f31gv1mq6vdr6xja1zv0fdig686l2b4y2b6swych")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20181026203630-95b1ffbd15a5 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20181026203630-95b1ffbd15a5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "06c3lf93wzf5kkfmzmgn75x4c0a7159vrwjrqh6zh9zxzqq5whpq")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-hashicorp-memberlist-0.1.3 - (package - (name "go-github-com-hashicorp-memberlist") - (version "0.1.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/memberlist") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0k1spq7dagvqj3baqw2dhxx1zxrb02y6m3apzr3a7gyirii890g3")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/memberlist")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20181026203630-95b1ffbd15a5" - ,go-golang-org-x-sys-0.0.0-20181026203630-95b1ffbd15a5) - ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" - ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) - ("go-golang-org-x-net-0.0.0-20181023162649-9b4f9f5ad519" - ,go-golang-org-x-net-0.0.0-20181023162649-9b4f9f5ad519) - ("go-golang-org-x-crypto-0.0.0-20181029021203-45a5f77698d3" - ,go-golang-org-x-crypto-0.0.0-20181029021203-45a5f77698d3) - ("go-github-com-stretchr-testify-1.2.2" - ,go-github-com-stretchr-testify-1.2.2) - ("go-github-com-sean--seed-0.0.0-20170313163322-e2103e2c3529" - ,go-github-com-sean--seed-0.0.0-20170313163322-e2103e2c3529) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-pascaldekloe-goe-0.0.0-20180627143212-57f6aae5913c" - ,go-github-com-pascaldekloe-goe-0.0.0-20180627143212-57f6aae5913c) - ("go-github-com-miekg-dns-1.0.14" ,go-github-com-miekg-dns-1.0.14) - ("go-github-com-hashicorp-go-sockaddr-1.0.0" - ,go-github-com-hashicorp-go-sockaddr-1.0.0) - ("go-github-com-hashicorp-go-multierror-1.0.0" - ,go-github-com-hashicorp-go-multierror-1.0.0) - ("go-github-com-hashicorp-go-msgpack-0.5.3" - ,go-github-com-hashicorp-go-msgpack-0.5.3) - ("go-github-com-hashicorp-go-immutable-radix-1.0.0" - ,go-github-com-hashicorp-go-immutable-radix-1.0.0) - ("go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c" - ,go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1) - ("go-github-com-armon-go-metrics-0.0.0-20180917152333-f0300d1749da" - ,go-github-com-armon-go-metrics-0.0.0-20180917152333-f0300d1749da))) - (home-page "https://github.com/hashicorp/memberlist") - (synopsis "memberlist") - (description - "memberlist is a library that manages cluster -membership and member failure detection using a gossip based protocol. -") - (license license:mpl2.0))) - -(define-public go-github-com-armon-go-radix-0.0.0-20180808171621-7fddfc383310 - (package - (name "go-github-com-armon-go-radix") - (version "0.0.0-20180808171621-7fddfc383310") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/armon/go-radix") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0y8chspn14n9xpsfb9gxnnf819rfpriaz64v81p7873a42kkhxb4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/armon/go-radix")) - (home-page "https://github.com/armon/go-radix") - (synopsis "go-radix") - (description - "This package provides the @code{radix} package that implements a @url{http://en.wikipedia.org/wiki/Radix_tree,radix tree}. -The package only provides a single @code{Tree} implementation, optimized for sparse nodes.") - (license license:expat))) - -(define-public go-github-com-bgentry-speakeasy-0.1.0 - (package - (name "go-github-com-bgentry-speakeasy") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/bgentry/speakeasy") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "02dfrj0wyphd3db9zn2mixqxwiz1ivnyc5xc7gkz58l5l27nzp8s")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/bgentry/speakeasy")) - (home-page "https://github.com/bgentry/speakeasy") - (synopsis "Speakeasy") - (description - "This package provides cross-platform Go (#golang) helpers for taking user input -from the terminal while not echoing the input back (similar to @code{getpasswd}). The -package uses syscalls to avoid any dependence on cgo, and is therefore -compatible with cross-compiling.") - (license license:expat))) - -(define-public go-github-com-fatih-color-1.7.0 - (package - (name "go-github-com-fatih-color") - (version "1.7.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/fatih/color") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0v8msvg38r8d1iiq2i5r4xyfx0invhc941kjrsg5gzwvagv55inv")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/fatih/color")) - (home-page "https://github.com/fatih/color") - (synopsis "color") - (description - "Package color is an ANSI color package to output colorized or SGR defined -output to the standard output. The API can be used in several way, pick one -that suits you. -") - (license license:expat))) - -(define-public go-github-com-hashicorp-errwrap-1.0.0 - (package - (name "go-github-com-hashicorp-errwrap") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/errwrap") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0slfb6w3b61xz04r32bi0a1bygc82rjzhqkxj2si2074wynqnr1c")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/errwrap")) - (home-page "https://github.com/hashicorp/errwrap") - (synopsis "errwrap") - (description - "Package errwrap implements methods to formalize error wrapping in Go. -") - (license license:mpl2.0))) - -(define-public go-github-com-hashicorp-go-multierror-1.0.0 - (package - (name "go-github-com-hashicorp-go-multierror") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/go-multierror") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "00nyn8llqzbfm8aflr9kwsvpzi4kv8v45c141v88xskxp5xf6z49")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/go-multierror")) - (propagated-inputs - `(("go-github-com-hashicorp-errwrap-1.0.0" - ,go-github-com-hashicorp-errwrap-1.0.0))) - (home-page "https://github.com/hashicorp/go-multierror") - (synopsis "go-multierror") - (description - "@code{go-multierror} is a package for Go that provides a mechanism for -representing a list of @code{error} values as a single @code{error}.") - (license license:mpl2.0))) - -(define-public go-github-com-mattn-go-colorable-0.0.9 - (package - (name "go-github-com-mattn-go-colorable") - (version "0.0.9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mattn/go-colorable") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1nwjmsppsjicr7anq8na6md7b1z84l9ppnlr045hhxjvbkqwalvx")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mattn/go-colorable")) - (home-page "https://github.com/mattn/go-colorable") - (synopsis "go-colorable") - (description "Colorable writer for windows.") - (license license:expat))) - -(define-public go-github-com-mattn-go-isatty-0.0.3 - (package - (name "go-github-com-mattn-go-isatty") - (version "0.0.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mattn/go-isatty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "06w45aqz2a6yrk25axbly2k5wmsccv8cspb94bfmz4izvw8h927n")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mattn/go-isatty")) - (home-page "https://github.com/mattn/go-isatty") - (synopsis "go-isatty") - (description "Package isatty implements interface to isatty -") - (license license:expat))) - -(define-public go-github-com-posener-complete-1.1.1 - (package - (name "go-github-com-posener-complete") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/posener/complete") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1nbdiybjizbaxbf5q0xwbq0cjqw4bl6jggvsjzrpif0w86fcjda2")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/posener/complete")) - (home-page "https://github.com/posener/complete") - (synopsis "complete") - (description - "Package complete provides a tool for bash writing bash completion in go, and bash completion for the go command line. -") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20180823144017-11551d06cbcc - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20180823144017-11551d06cbcc") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0j34525b9smcyjqmxvvqgcfn87kkx3b2izidmjp2cmhjxzjrgpwm")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-mitchellh-cli-1.0.0 - (package - (name "go-github-com-mitchellh-cli") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mitchellh/cli") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1i9kmr7rcf10d2hji8h4247hmc0nbairv7a0q51393aw2h1bnwg2")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mitchellh/cli")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20180823144017-11551d06cbcc" - ,go-golang-org-x-sys-0.0.0-20180823144017-11551d06cbcc) - ("go-github-com-posener-complete-1.1.1" - ,go-github-com-posener-complete-1.1.1) - ("go-github-com-mattn-go-isatty-0.0.3" - ,go-github-com-mattn-go-isatty-0.0.3) - ("go-github-com-mattn-go-colorable-0.0.9" - ,go-github-com-mattn-go-colorable-0.0.9) - ("go-github-com-hashicorp-go-multierror-1.0.0" - ,go-github-com-hashicorp-go-multierror-1.0.0) - ("go-github-com-fatih-color-1.7.0" ,go-github-com-fatih-color-1.7.0) - ("go-github-com-bgentry-speakeasy-0.1.0" - ,go-github-com-bgentry-speakeasy-0.1.0) - ("go-github-com-armon-go-radix-0.0.0-20180808171621-7fddfc383310" - ,go-github-com-armon-go-radix-0.0.0-20180808171621-7fddfc383310))) - (home-page "https://github.com/mitchellh/cli") - (synopsis "Go CLI Library") - (description - "cli is a library for implementing powerful command-line interfaces in Go. -cli is the library that powers the CLI for -@url{https://github.com/mitchellh/packer,Packer}, -@url{https://github.com/hashicorp/serf,Serf}, -@url{https://github.com/hashicorp/consul,Consul}, -@url{https://github.com/hashicorp/vault,Vault}, -@url{https://github.com/hashicorp/terraform,Terraform}, and -@url{https://github.com/hashicorp/nomad,Nomad}.") - (license license:mpl2.0))) - -(define-public go-github-com-mitchellh-gox-0.4.0 - (package - (name "go-github-com-mitchellh-gox") - (version "0.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mitchellh/gox") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1q4fdkw904mrmh1q5z8pfd3r0gcn5dm776kldqawddy93iiwnp8r")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mitchellh/gox")) - (home-page "https://github.com/mitchellh/gox") - (synopsis "Gox - Simple Go Cross Compilation") - (description - "Gox is a simple, no-frills tool for Go cross compilation that behaves a -lot like standard @code{go build}. Gox will parallelize builds for multiple -platforms. Gox will also build the cross-compilation toolchain for you.") - (license license:mpl2.0))) - -(define-public go-github-com-mitchellh-iochan-1.0.0 - (package - (name "go-github-com-mitchellh-iochan") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mitchellh/iochan") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "058n9bbf536f2nw3pbs7pysrg9cqvgkb28z2zf5wjyrzrknyk53g")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mitchellh/iochan")) - (home-page "https://github.com/mitchellh/iochan") - (synopsis "iochan") - (description - "iochan is a Go library for treating @code{io} readers and writers like channels. -This is useful when sometimes you wish to use @code{io.Reader} and such in @code{select} -statements.") - (license license:expat))) - -(define-public go-github-com-mitchellh-mapstructure-0.0.0-20160808181253-ca63d7c062ee - (package - (name "go-github-com-mitchellh-mapstructure") - (version "0.0.0-20160808181253-ca63d7c062ee") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mitchellh/mapstructure") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1yjwhgi57l5fxlmpdchipdd4jasdn1sa8ccl2f2486v06rv6z7gr")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mitchellh/mapstructure")) - (home-page "https://github.com/mitchellh/mapstructure") - (synopsis "mapstructure") - (description - "Package mapstructure exposes functionality to convert one arbitrary -Go type into another, typically to convert a map[string]interface{} -into a native Go structure. -") - (license license:expat))) - -(define-public go-github-com-ryanuber-columnize-0.0.0-20160712163229-9b3edd62028f - (package - (name "go-github-com-ryanuber-columnize") - (version "0.0.0-20160712163229-9b3edd62028f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/ryanuber/columnize") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ya1idkbb0a9fjlhkcnh5a9yvpwzwfmbyg7d56lpplwr9rqi1da4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/ryanuber/columnize")) - (home-page "https://github.com/ryanuber/columnize") - (synopsis "Columnize") - (description "Easy column-formatted output for golang") - (license license:expat))) - -(define-public go-golang-org-x-net-0.0.0-20181201002055-351d144fa1fc - (package - (name "go-golang-org-x-net") - (version "0.0.0-20181201002055-351d144fa1fc") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1c5x25qjyz83y92bq0lll5kmznyi3m02wd4c54scgf0866gy938k")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-github-com-hashicorp-serf-0.8.2 - (package - (name "go-github-com-hashicorp-serf") - (version "0.8.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/serf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0nrslghvdjhaczr2xp9mn8xgcx1dxl4jgpbk0l61ssmxahpx4iyc")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/serf")) - (propagated-inputs - `(("go-golang-org-x-net-0.0.0-20181201002055-351d144fa1fc" - ,go-golang-org-x-net-0.0.0-20181201002055-351d144fa1fc) - ("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0) - ("go-github-com-ryanuber-columnize-0.0.0-20160712163229-9b3edd62028f" - ,go-github-com-ryanuber-columnize-0.0.0-20160712163229-9b3edd62028f) - ("go-github-com-mitchellh-mapstructure-0.0.0-20160808181253-ca63d7c062ee" - ,go-github-com-mitchellh-mapstructure-0.0.0-20160808181253-ca63d7c062ee) - ("go-github-com-mitchellh-iochan-1.0.0" - ,go-github-com-mitchellh-iochan-1.0.0) - ("go-github-com-mitchellh-gox-0.4.0" - ,go-github-com-mitchellh-gox-0.4.0) - ("go-github-com-mitchellh-cli-1.0.0" - ,go-github-com-mitchellh-cli-1.0.0) - ("go-github-com-hashicorp-memberlist-0.1.3" - ,go-github-com-hashicorp-memberlist-0.1.3) - ("go-github-com-hashicorp-mdns-1.0.0" - ,go-github-com-hashicorp-mdns-1.0.0) - ("go-github-com-hashicorp-logutils-1.0.0" - ,go-github-com-hashicorp-logutils-1.0.0) - ("go-github-com-hashicorp-go-uuid-1.0.1" - ,go-github-com-hashicorp-go-uuid-1.0.1) - ("go-github-com-hashicorp-go-syslog-1.0.0" - ,go-github-com-hashicorp-go-syslog-1.0.0) - ("go-github-com-hashicorp-go-msgpack-0.5.3" - ,go-github-com-hashicorp-go-msgpack-0.5.3) - ("go-github-com-armon-go-metrics-0.0.0-20180917152333-f0300d1749da" - ,go-github-com-armon-go-metrics-0.0.0-20180917152333-f0300d1749da) - ("go-github-com-armon-circbuf-0.0.0-20150827004946-bbbad097214e" - ,go-github-com-armon-circbuf-0.0.0-20150827004946-bbbad097214e))) - (home-page "https://github.com/hashicorp/serf") - (synopsis "Serf") - (description - "Serf is a decentralized solution for service discovery and orchestration -that is lightweight, highly available, and fault tolerant.") - (license license:mpl2.0))) - -(define-public go-github-com-mitchellh-mapstructure-1.1.2 - (package - (name "go-github-com-mitchellh-mapstructure") - (version "1.1.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mitchellh/mapstructure") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "03bpv28jz9zhn4947saqwi328ydj7f6g6pf1m2d4m5zdh5jlfkrr")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mitchellh/mapstructure")) - (home-page "https://github.com/mitchellh/mapstructure") - (synopsis "mapstructure") - (description - "Package mapstructure exposes functionality to convert one arbitrary -Go type into another, typically to convert a map[string]interface{} -into a native Go structure. -") - (license license:expat))) - -(define-public go-github-com-pascaldekloe-goe-0.0.0-20180627143212-57f6aae5913c - (package - (name "go-github-com-pascaldekloe-goe") - (version "0.0.0-20180627143212-57f6aae5913c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pascaldekloe/goe") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1dqd3mfb4z2vmv6pg6fhgvfc53vhndk24wcl9lj1rz02n6m279fq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pascaldekloe/goe")) - (home-page "https://github.com/pascaldekloe/goe") - (synopsis "Go Enterprise") - (description - "Common enterprise features for the Go programming language (golang).") - (license license:cc0))) - -(define-public go-github-com-stretchr-testify-1.3.0 - (package - (name "go-github-com-stretchr-testify") - (version "1.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/testify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0wjchp2c8xbgcbbq32w3kvblk6q6yn533g78nxl6iskq6y95lxsy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/testify")) - (propagated-inputs - `(("go-github-com-stretchr-objx-0.1.0" - ,go-github-com-stretchr-objx-0.1.0) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.0" - ,go-github-com-davecgh-go-spew-1.1.0))) - (home-page "https://github.com/stretchr/testify") - (synopsis "Testify - Thou Shalt Write Tests") - (description - "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -") - (license license:expat))) - -(define-public go-github-com-hashicorp-consul-api-1.1.0 - (package - (name "go-github-com-hashicorp-consul-api") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/consul") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0xm3gl8i7pgsbsc2397bwh9hp2dwnk4cmw5y05acqn3zpyp84sbv")))) - (build-system go-build-system) - (arguments - '(#:import-path - "github.com/hashicorp/consul/api" - #:unpack-path - "github.com/hashicorp/consul")) - (propagated-inputs - `(("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0) - ("go-github-com-pascaldekloe-goe-0.0.0-20180627143212-57f6aae5913c" - ,go-github-com-pascaldekloe-goe-0.0.0-20180627143212-57f6aae5913c) - ("go-github-com-mitchellh-mapstructure-1.1.2" - ,go-github-com-mitchellh-mapstructure-1.1.2) - ("go-github-com-hashicorp-serf-0.8.2" - ,go-github-com-hashicorp-serf-0.8.2) - ("go-github-com-hashicorp-go-uuid-1.0.1" - ,go-github-com-hashicorp-go-uuid-1.0.1) - ("go-github-com-hashicorp-go-rootcerts-1.0.0" - ,go-github-com-hashicorp-go-rootcerts-1.0.0) - ("go-github-com-hashicorp-go-cleanhttp-0.5.1" - ,go-github-com-hashicorp-go-cleanhttp-0.5.1))) - (home-page "https://github.com/hashicorp/consul") - (synopsis "Consul API client") - (description - "This package provides the @code{api} package which attempts to -provide programmatic access to the full Consul API.") - (license license:mpl2.0))) - -(define-public go-github-com-golang-mock-1.5.0 - (package - (name "go-github-com-golang-mock") - (version "1.5.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/mock") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12l7p08pwwk3xn70w7rlm28nz6jf4szlzgjxjfmbssyirxxxy8v1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/mock")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" - ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) - ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0))) - (home-page "https://github.com/golang/mock") - (synopsis "gomock") - (description - "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It -integrates well with Go's built-in @code{testing} package, but can be used in other -contexts too.") - (license license:asl2.0))) - -(define-public go-github-com-google-pprof-0.0.0-20210226084205-cbba55b83ad5 - (package - (name "go-github-com-google-pprof") - (version "0.0.0-20210226084205-cbba55b83ad5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/pprof") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0drr44nqq0s3jillcrl8qa7sklxybs083lvashdh2ad62hrs31l7")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/pprof")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" - ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) - ("go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639" - ,go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639) - ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" - ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) - ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" - ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) - ("go-github-com-chzyer-logex-1.1.10" - ,go-github-com-chzyer-logex-1.1.10))) - (home-page "https://github.com/google/pprof") - (synopsis "Introduction") - (description - "pprof is a tool for collection, manipulation and visualization -of performance profiles. -") - (license license:asl2.0))) - -(define-public go-github-com-google-pprof-0.0.0-20210122040257-d980be63207e - (package - (name "go-github-com-google-pprof") - (version "0.0.0-20210122040257-d980be63207e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/pprof") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0vg5z6rp5kfd324w8j12hlx9zv049vxljpc6dyqkj2k9vzzzqkw8")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/pprof")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" - ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) - ("go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639" - ,go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639) - ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" - ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) - ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" - ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) - ("go-github-com-chzyer-logex-1.1.10" - ,go-github-com-chzyer-logex-1.1.10))) - (home-page "https://github.com/google/pprof") - (synopsis "Introduction") - (description - "pprof is a tool for collection, manipulation and visualization -of performance profiles. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-mod-0.4.1 - (package - (name "go-golang-org-x-mod") - (version "0.4.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/mod") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0q4p41223d1xh4jmw9vmywjfi0jzn56gbidrwv5x1bzmx2qmj01n")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/mod")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" - ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) - ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" - ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) - ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" - ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) - (home-page "https://golang.org/x/mod") - (synopsis "mod") - (description - "This repository holds packages for writing tools -that work directly with Go module mechanics. -That is, it is for direct manipulation of Go modules themselves.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20210119194325-5f4716e94777 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20210119194325-5f4716e94777") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1xh4hk0fhkzq096z9qbzqfswmmgg4kvb44qvazpandvlpwm4jds2")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) - ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" - ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) - ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" - ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-oauth2-0.0.0-20210218202405-ba52d332ba99 - (package - (name "go-golang-org-x-oauth2") - (version "0.0.0-20210218202405-ba52d332ba99") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/oauth2") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0fdm3fljk3k4xbpzaywccayrhgqdfl79vl18k4z1zw2pl654bqbg")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/oauth2")) - (propagated-inputs - `(("go-google-golang-org-appengine-1.6.6" - ,go-google-golang-org-appengine-1.6.6) - ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" - ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) - ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) - (home-page "https://golang.org/x/oauth2") - (synopsis "OAuth2 for Go") - (description - "Package oauth2 provides support for making -OAuth2 authorized and authenticated HTTP requests, -as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -It can additionally grant authorization with Bearer JWT. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20210220050731-9a76102bfb43 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20210220050731-9a76102bfb43") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "07qn19yla2w604p3dc8h1c75xj2pxc4fajvg0mf0d4c72d5qiss4")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-google-pprof-0.0.0-20201203190320-1bf35d6f28c2 - (package - (name "go-github-com-google-pprof") - (version "0.0.0-20201203190320-1bf35d6f28c2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/pprof") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "140n5hjk2faanrf6v5h1559g755rgavynz1r99s1n15bmgibysvp")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/pprof")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" - ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) - ("go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639" - ,go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639) - ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" - ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) - ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" - ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) - ("go-github-com-chzyer-logex-1.1.10" - ,go-github-com-chzyer-logex-1.1.10))) - (home-page "https://github.com/google/pprof") - (synopsis "Introduction") - (description - "pprof is a tool for collection, manipulation and visualization -of performance profiles. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-mod-0.4.0 - (package - (name "go-golang-org-x-mod") - (version "0.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/mod") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ri003765yxawq6s8jbkbiaijihwrg980c4qwqsaa5x0sq2psrg1")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/mod")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" - ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) - ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" - ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) - ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" - ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) - (home-page "https://golang.org/x/mod") - (synopsis "mod") - (description - "This repository holds packages for writing tools -that work directly with Go module mechanics. -That is, it is for direct manipulation of Go modules themselves.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20201209123823-ac852fbbde11 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20201209123823-ac852fbbde11") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1zmp2fxgf7792xx15qhzcsfs8k0qv7q3m6jlcj6qvdngfzyvna64")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) - ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" - ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) - ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" - ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20201208233053-a543418bbed2 - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20201208233053-a543418bbed2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0r87p89pm2h75yajsz0g2vvy2q3z9gknc0fmsdm5rh427f1qazfr")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" - ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) - ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" - ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) - ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" - ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) - ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) - ("go-github-com-yuin-goldmark-1.2.1" - ,go-github-com-yuin-goldmark-1.2.1))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-github-com-google-martian-v3-3.1.0 - (package - (name "go-github-com-google-martian-v3") - (version "3.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/martian") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1pr9akggfzj2vw11l7ry4sij0hqslpc3gwx4ynbzyvbjhvh64sbc")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/martian/v3")) - (propagated-inputs - `(("go-golang-org-x-net-0.0.0-20190628185345-da137c7871d7" - ,go-golang-org-x-net-0.0.0-20190628185345-da137c7871d7))) - (home-page "https://github.com/google/martian") - (synopsis "Martian Proxy") - (description - "Package martian provides an HTTP/1.1 proxy with an API for configurable -request and response modifiers. -") - (license license:asl2.0))) - -(define-public go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639 - (package - (name "go-github-com-ianlancetaylor-demangle") - (version "0.0.0-20200824232613-28f6c0f3b639") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/ianlancetaylor/demangle") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0rsq3622gd40f1x1l7caidsxrmzg1993ich2higwd94fqbxs1r83")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/ianlancetaylor/demangle")) - (home-page "https://github.com/ianlancetaylor/demangle") - (synopsis "github.com/ianlancetaylor/demangle") - (description - "Package demangle defines functions that demangle GCC/LLVM -C++ and Rust symbol names. -This package recognizes names that were mangled according to the C++ ABI -defined at @url{http://codesourcery.com/cxx-abi/,http://codesourcery.com/cxx-abi/} and the Rust ABI -defined at -@url{https://rust-lang.github.io/rfcs/2603-rust-symbol-name-mangling-v0.html,https://rust-lang.github.io/rfcs/2603-rust-symbol-name-mangling-v0.html} -") - (license license:bsd-3))) - -(define-public go-github-com-google-pprof-0.0.0-20201023163331-3e6fc7fc9c4c - (package - (name "go-github-com-google-pprof") - (version "0.0.0-20201023163331-3e6fc7fc9c4c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/pprof") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1xmy4579gx45lqsy1cgddnc7nmaqfpiwd2kc5dhf8i0wjjvf18hq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/pprof")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" - ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) - ("go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639" - ,go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639) - ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" - ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) - ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" - ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) - ("go-github-com-chzyer-logex-1.1.10" - ,go-github-com-chzyer-logex-1.1.10))) - (home-page "https://github.com/google/pprof") - (synopsis "Introduction") - (description - "pprof is a tool for collection, manipulation and visualization -of performance profiles. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-net-0.0.0-20201031054903-ff519b6c9102 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20201031054903-ff519b6c9102") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "162ssgcc0kgj42ajaki0q3j5lwmixqqwkdqcmz41xg1k8wjm7riw")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) - ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" - ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) - ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" - ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-text-0.3.4 - (package - (name "go-golang-org-x-text") - (version "0.3.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "11jdvix83xcl5xnb039y4zrz4x5skzsps0w1jryp6wrar53cydvz")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/text")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" - ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) - (home-page "https://golang.org/x/text") - (synopsis "Go Text") - (description - "text is a repository of text-related packages related to internationalization -(i18n) and localization (l10n), such as character encodings, text -transformations, and locale-specific text handling. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20201110124207-079ba7bd75cd - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20201110124207-079ba7bd75cd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0g4d7cx480rbnpg16qqc4yycd50lpp2mi2qzvzr6hdny91v7sa05")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" - ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) - ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" - ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) - ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" - ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) - ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) - ("go-github-com-yuin-goldmark-1.2.1" - ,go-github-com-yuin-goldmark-1.2.1))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-github-com-google-go-cmp-0.5.2 - (package - (name "go-github-com-google-go-cmp") - (version "0.5.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0qchy411jm9q2l9mf7x3ry2ycaqp9xdhf2nx14qrpzcxfigv2705")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") - (license license:bsd-3))) - -(define-public go-golang-org-x-oauth2-0.0.0-20200902213428-5d25da1a8d43 - (package - (name "go-golang-org-x-oauth2") - (version "0.0.0-20200902213428-5d25da1a8d43") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/oauth2") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "14jx8sxshbvnx4fggn12mlmz000zcrd1a73n1455b1wgg1xfzq3n")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/oauth2")) - (propagated-inputs - `(("go-google-golang-org-appengine-1.6.6" - ,go-google-golang-org-appengine-1.6.6) - ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" - ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) - ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) - (home-page "https://golang.org/x/oauth2") - (synopsis "OAuth2 for Go") - (description - "Package oauth2 provides support for making -OAuth2 authorized and authenticated HTTP requests, -as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -It can additionally grant authorization with Bearer JWT. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20200905004654-be1d3432aa8f - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200905004654-be1d3432aa8f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1kd3szjsazhpgidv5xjv0s26fm4wvv2cr7j4zk8nblnqkic58as2")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20200904185747-39188db58858 - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20200904185747-39188db58858") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ydyylwqzjwijy4rdp2fmvnfh3s27896dx6g74r2wa6vbhisszvk")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" - ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) - ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" - ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) - ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" - ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) - ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) - ("go-github-com-yuin-goldmark-1.2.1" - ,go-github-com-yuin-goldmark-1.2.1))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-google-golang-org-genproto-0.0.0-20200904004341-0bd0a958aa1d - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20200904004341-0bd0a958aa1d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "01xp4ic4jvdv7n984cjgrgqbpbi9m4bj2xnfrs1s1zn1adx0jivs")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.24.0" - ,go-google-golang-org-protobuf-1.24.0) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-golang-protobuf-1.4.1" - ,go-github-com-golang-protobuf-1.4.1))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-google-golang-org-grpc-1.31.1 - (package - (name "go-google-golang-org-grpc") - (version "1.31.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18565vf9i2zc69znd9b8a2iz0kgv5cms0g0ppj93hnhri8rjqagk")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" - ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.3.3" - ,go-github-com-golang-protobuf-1.3.3) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-envoyproxy-go-control-plane-0.9.4" - ,go-github-com-envoyproxy-go-control-plane-0.9.4) - ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" - ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-google-golang-org-api-0.35.0 - (package - (name "go-google-golang-org-api") - (version "0.35.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-api-go-client") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0fgn21lmrlkw44sl0ivjicygwksibb1pclzp3zyh3ivn7ylvk2jd")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/api")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.31.1" ,go-google-golang-org-grpc-1.31.1) - ("go-google-golang-org-genproto-0.0.0-20200904004341-0bd0a958aa1d" - ,go-google-golang-org-genproto-0.0.0-20200904004341-0bd0a958aa1d) - ("go-google-golang-org-appengine-1.6.6" - ,go-google-golang-org-appengine-1.6.6) - ("go-golang-org-x-tools-0.0.0-20200904185747-39188db58858" - ,go-golang-org-x-tools-0.0.0-20200904185747-39188db58858) - ("go-golang-org-x-sys-0.0.0-20200905004654-be1d3432aa8f" - ,go-golang-org-x-sys-0.0.0-20200905004654-be1d3432aa8f) - ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" - ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) - ("go-golang-org-x-oauth2-0.0.0-20200902213428-5d25da1a8d43" - ,go-golang-org-x-oauth2-0.0.0-20200902213428-5d25da1a8d43) - ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" - ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) - ("go-go-opencensus-io-0.22.4" ,go-go-opencensus-io-0.22.4) - ("go-github-com-googleapis-gax-go-v2-2.0.5" - ,go-github-com-googleapis-gax-go-v2-2.0.5) - ("go-github-com-google-go-cmp-0.5.2" - ,go-github-com-google-go-cmp-0.5.2) - ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) - (home-page "https://google.golang.org/api") - (synopsis "Google APIs Client Library for Go") - (description - "Package api is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of -sub-packages. -") - (license license:bsd-3))) - -(define-public go-google-golang-org-genproto-0.0.0-20201109203340-2640f1f9cdfb - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20201109203340-2640f1f9cdfb") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "00mwybjbdpvmlkvmwsjvdb2z8lzzx2a340y4pf3bxqamalhdka0w")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.24.0" - ,go-google-golang-org-protobuf-1.24.0) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-golang-protobuf-1.4.1" - ,go-github-com-golang-protobuf-1.4.1))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-cloud-google-com-go-0.72.0 - (package - (name "go-cloud-google-com-go") - (version "0.72.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-cloud-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1x4gy466jrzab9l02dwd3lvy2dwy84j34zpjkm5xnxh45za6hpxn")))) - (build-system go-build-system) - (arguments '(#:import-path "cloud.google.com/go")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) - ("go-google-golang-org-genproto-0.0.0-20201109203340-2640f1f9cdfb" - ,go-google-golang-org-genproto-0.0.0-20201109203340-2640f1f9cdfb) - ("go-google-golang-org-api-0.35.0" ,go-google-golang-org-api-0.35.0) - ("go-golang-org-x-tools-0.0.0-20201110124207-079ba7bd75cd" - ,go-golang-org-x-tools-0.0.0-20201110124207-079ba7bd75cd) - ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) - ("go-golang-org-x-oauth2-0.0.0-20200902213428-5d25da1a8d43" - ,go-golang-org-x-oauth2-0.0.0-20200902213428-5d25da1a8d43) - ("go-golang-org-x-net-0.0.0-20201031054903-ff519b6c9102" - ,go-golang-org-x-net-0.0.0-20201031054903-ff519b6c9102) - ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" - ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) - ("go-go-opencensus-io-0.22.5" ,go-go-opencensus-io-0.22.5) - ("go-github-com-jstemmer-go-junit-report-0.9.1" - ,go-github-com-jstemmer-go-junit-report-0.9.1) - ("go-github-com-googleapis-gax-go-v2-2.0.5" - ,go-github-com-googleapis-gax-go-v2-2.0.5) - ("go-github-com-google-pprof-0.0.0-20201023163331-3e6fc7fc9c4c" - ,go-github-com-google-pprof-0.0.0-20201023163331-3e6fc7fc9c4c) - ("go-github-com-google-martian-v3-3.1.0" - ,go-github-com-google-martian-v3-3.1.0) - ("go-github-com-google-go-cmp-0.5.2" - ,go-github-com-google-go-cmp-0.5.2) - ("go-github-com-golang-protobuf-1.4.3" - ,go-github-com-golang-protobuf-1.4.3) - ("go-github-com-golang-mock-1.4.4" ,go-github-com-golang-mock-1.4.4) - ("go-cloud-google-com-go-storage-1.10.0" - ,go-cloud-google-com-go-storage-1.10.0))) - (home-page "https://cloud.google.com/go") - (synopsis "Google Cloud Client Libraries for Go") - (description - "Package cloud is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -of sub-packages. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-oauth2-0.0.0-20201109201403-9fd604954f58 - (package - (name "go-golang-org-x-oauth2") - (version "0.0.0-20201109201403-9fd604954f58") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/oauth2") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "06dj14f6jrgpqmf3v3z74zhcin3yj7yp8mzxljm3a3ihq984kz8v")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/oauth2")) - (propagated-inputs - `(("go-google-golang-org-appengine-1.6.6" - ,go-google-golang-org-appengine-1.6.6) - ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" - ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) - ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) - (home-page "https://golang.org/x/oauth2") - (synopsis "OAuth2 for Go") - (description - "Package oauth2 provides support for making -OAuth2 authorized and authenticated HTTP requests, -as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -It can additionally grant authorization with Bearer JWT. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20201201145000-ef89a241ccb3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0a8myxx2mvdr77a003gpy5jmdzbxbnrf5zppmpl4za4sspxlmwif")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20201201161351-ac6f37ff4c2a - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20201201161351-ac6f37ff4c2a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0akq0z86x51rh556fs7icjmmmgdyaa7rq7cmqlngrmvjb79wnwpl")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" - ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) - ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" - ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) - ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" - ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) - ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) - ("go-github-com-yuin-goldmark-1.2.1" - ,go-github-com-yuin-goldmark-1.2.1))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-google-golang-org-genproto-0.0.0-20201201144952-b05cb90ed32e - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20201201144952-b05cb90ed32e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1n9jlhnn5fg7a41ahdril7wgfli43kxplnpxbdbhrkknjra7xdjd")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.24.0" - ,go-google-golang-org-protobuf-1.24.0) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-golang-protobuf-1.4.1" - ,go-github-com-golang-protobuf-1.4.1))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-google-golang-org-api-0.36.0 - (package - (name "go-google-golang-org-api") - (version "0.36.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-api-go-client") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1x6wlavrqi2r6ss3h2kg94p2lfj0z019kc85zm1pajpf0k23fxp7")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/api")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) - ("go-google-golang-org-genproto-0.0.0-20201201144952-b05cb90ed32e" - ,go-google-golang-org-genproto-0.0.0-20201201144952-b05cb90ed32e) - ("go-google-golang-org-appengine-1.6.7" - ,go-google-golang-org-appengine-1.6.7) - ("go-golang-org-x-tools-0.0.0-20201201161351-ac6f37ff4c2a" - ,go-golang-org-x-tools-0.0.0-20201201161351-ac6f37ff4c2a) - ("go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3" - ,go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3) - ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" - ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) - ("go-golang-org-x-oauth2-0.0.0-20201109201403-9fd604954f58" - ,go-golang-org-x-oauth2-0.0.0-20201109201403-9fd604954f58) - ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" - ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) - ("go-go-opencensus-io-0.22.5" ,go-go-opencensus-io-0.22.5) - ("go-github-com-googleapis-gax-go-v2-2.0.5" - ,go-github-com-googleapis-gax-go-v2-2.0.5) - ("go-github-com-google-go-cmp-0.5.4" - ,go-github-com-google-go-cmp-0.5.4) - ("go-cloud-google-com-go-0.72.0" ,go-cloud-google-com-go-0.72.0))) - (home-page "https://google.golang.org/api") - (synopsis "Google APIs Client Library for Go") - (description - "Package api is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of -sub-packages. -") - (license license:bsd-3))) - -(define-public go-google-golang-org-genproto-0.0.0-20201210142538-e3217bee35cc - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20201210142538-e3217bee35cc") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1bzfa58dw7jmkrp46hikbsq1yyk2r29a1gn51sqlilbvf7lq96p9")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.24.0" - ,go-google-golang-org-protobuf-1.24.0) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-golang-protobuf-1.4.1" - ,go-github-com-golang-protobuf-1.4.1))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-cloud-google-com-go-0.74.0 - (package - (name "go-cloud-google-com-go") - (version "0.74.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-cloud-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "09j1qppf2gf14bn06hsyrj9jaxz9vlbs9d7yrxrdvh2234qsbggy")))) - (build-system go-build-system) - (arguments '(#:import-path "cloud.google.com/go")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.34.0" ,go-google-golang-org-grpc-1.34.0) - ("go-google-golang-org-genproto-0.0.0-20201210142538-e3217bee35cc" - ,go-google-golang-org-genproto-0.0.0-20201210142538-e3217bee35cc) - ("go-google-golang-org-api-0.36.0" ,go-google-golang-org-api-0.36.0) - ("go-golang-org-x-tools-0.0.0-20201208233053-a543418bbed2" - ,go-golang-org-x-tools-0.0.0-20201208233053-a543418bbed2) - ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) - ("go-golang-org-x-oauth2-0.0.0-20201208152858-08078c50e5b5" - ,go-golang-org-x-oauth2-0.0.0-20201208152858-08078c50e5b5) - ("go-golang-org-x-net-0.0.0-20201209123823-ac852fbbde11" - ,go-golang-org-x-net-0.0.0-20201209123823-ac852fbbde11) - ("go-golang-org-x-mod-0.4.0" ,go-golang-org-x-mod-0.4.0) - ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" - ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) - ("go-go-opencensus-io-0.22.5" ,go-go-opencensus-io-0.22.5) - ("go-github-com-jstemmer-go-junit-report-0.9.1" - ,go-github-com-jstemmer-go-junit-report-0.9.1) - ("go-github-com-googleapis-gax-go-v2-2.0.5" - ,go-github-com-googleapis-gax-go-v2-2.0.5) - ("go-github-com-google-pprof-0.0.0-20201203190320-1bf35d6f28c2" - ,go-github-com-google-pprof-0.0.0-20201203190320-1bf35d6f28c2) - ("go-github-com-google-martian-v3-3.1.0" - ,go-github-com-google-martian-v3-3.1.0) - ("go-github-com-google-go-cmp-0.5.4" - ,go-github-com-google-go-cmp-0.5.4) - ("go-github-com-golang-protobuf-1.4.3" - ,go-github-com-golang-protobuf-1.4.3) - ("go-github-com-golang-mock-1.4.4" ,go-github-com-golang-mock-1.4.4) - ("go-cloud-google-com-go-storage-1.10.0" - ,go-cloud-google-com-go-storage-1.10.0))) - (home-page "https://cloud.google.com/go") - (synopsis "Google Cloud Client Libraries for Go") - (description - "Package cloud is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -of sub-packages. -") - (license license:asl2.0))) - -(define-public go-github-com-google-go-cmp-0.5.4 - (package - (name "go-github-com-google-go-cmp") - (version "0.5.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ld9pwb6l22g75g1zpa691l7q9ki7pjgpcqhwgdfr3va1zisr5ci")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") - (license license:bsd-3))) - -(define-public go-go-opencensus-io-0.22.5 - (package - (name "go-go-opencensus-io") - (version "0.22.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/census-instrumentation/opencensus-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18s1d7bk28i8gbs6i587ccd31qp3f8gibgd14dpkzs05gyvlccy6")))) - (build-system go-build-system) - (arguments '(#:import-path "go.opencensus.io")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.20.1" ,go-google-golang-org-grpc-1.20.1) - ("go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb" - ,go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb) - ("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) - ("go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd" - ,go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd) - ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" - ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) - ("go-github-com-stretchr-testify-1.4.0" - ,go-github-com-stretchr-testify-1.4.0) - ("go-github-com-google-go-cmp-0.3.0" - ,go-github-com-google-go-cmp-0.3.0) - ("go-github-com-golang-protobuf-1.3.1" - ,go-github-com-golang-protobuf-1.3.1) - ("go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6" - ,go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6))) - (home-page "https://go.opencensus.io") - (synopsis "OpenCensus Libraries for Go") - (description "Package opencensus contains Go support for OpenCensus. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-oauth2-0.0.0-20201208152858-08078c50e5b5 - (package - (name "go-golang-org-x-oauth2") - (version "0.0.0-20201208152858-08078c50e5b5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/oauth2") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0zynwxw47nhwhs6n1c87c9np43lwl9m9z2w2cmdvjwhsisa93b75")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/oauth2")) - (propagated-inputs - `(("go-google-golang-org-appengine-1.6.6" - ,go-google-golang-org-appengine-1.6.6) - ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" - ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) - ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) - (home-page "https://golang.org/x/oauth2") - (synopsis "OAuth2 for Go") - (description - "Package oauth2 provides support for making -OAuth2 authorized and authenticated HTTP requests, -as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -It can additionally grant authorization with Bearer JWT. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20201207232520-09787c993a3a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1nv4mwi9njkkyc7lwmxrjr8ggfh2cf1c67a9bq85dnss81vpj61y")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the -ones provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20210104204734-6f8348627aad - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20210104204734-6f8348627aad") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0pmz8dwjf4gxr1gwnp4iahh3yh09apcf40kvvybycsx4rfjc2gbl")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20210105154028-b0ab187a4818 - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20210105154028-b0ab187a4818") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "157w706lz7j4s7cwgh7j7mf8v1sah5hm4dlmp8isf6vhnqpixdp7")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" - ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) - ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" - ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) - ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" - ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) - ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) - ("go-github-com-yuin-goldmark-1.2.1" - ,go-github-com-yuin-goldmark-1.2.1))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-google-golang-org-genproto-0.0.0-20201214200347-8c77b98c765d - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20201214200347-8c77b98c765d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1bdpss5xmla0gjz66mdk8bqpsdb5i1xz65g30k9cs2h7vrqlwzn4")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.24.0" - ,go-google-golang-org-protobuf-1.24.0) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-golang-protobuf-1.4.1" - ,go-github-com-golang-protobuf-1.4.1))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-github-com-cncf-udpa-go-0.0.0-20200629203442-efcf912fb354 - (package - (name "go-github-com-cncf-udpa-go") - (version "0.0.0-20200629203442-efcf912fb354") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cncf/udpa") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18b1v01h3id5d7v5gqabc4qsaja17r45rn3fvv38nrfx9l4smv0x")))) - (build-system go-build-system) - (arguments - '(#:import-path - "github.com/cncf/udpa/go" - #:unpack-path - "github.com/cncf/udpa")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2) - ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" - ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0))) - (home-page "https://github.com/cncf/udpa") - (synopsis "Description") - (description - "This library has been deprecated in favor of @code{github.com/cncf/xds/go}. All users are recommended to switch their imports.") - (license license:asl2.0))) - -(define-public go-github-com-envoyproxy-go-control-plane-0.9.7 - (package - (name "go-github-com-envoyproxy-go-control-plane") - (version "0.9.7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/envoyproxy/go-control-plane") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0nx5ybyadkjqr29hndn6amhbcqpi1rkfv12bxp0rk3ay045zxsh8")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.23.0" - ,go-google-golang-org-protobuf-1.23.0) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" - ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) - ("go-github-com-stretchr-testify-1.5.1" - ,go-github-com-stretchr-testify-1.5.1) - ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" - ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.2" - ,go-github-com-golang-protobuf-1.4.2) - ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" - ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) - ("go-github-com-cncf-udpa-go-0.0.0-20200629203442-efcf912fb354" - ,go-github-com-cncf-udpa-go-0.0.0-20200629203442-efcf912fb354) - ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" - ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) - (home-page "https://github.com/envoyproxy/go-control-plane") - (synopsis "control-plane") - (description - "This repository contains a Go-based implementation of an API server that -implements the discovery service APIs defined in -@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") - (license license:asl2.0))) - -(define-public go-google-golang-org-grpc-1.34.0 - (package - (name "go-google-golang-org-grpc") - (version "1.34.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0s8y19qvv0zfy2irq8vv12h65v7pw18k6yqfix1j2370yxmsajgm")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.25.0" - ,go-google-golang-org-protobuf-1.25.0) - ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" - ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) - ("go-github-com-google-go-cmp-0.5.0" - ,go-github-com-google-go-cmp-0.5.0) - ("go-github-com-golang-protobuf-1.4.2" - ,go-github-com-golang-protobuf-1.4.2) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-envoyproxy-go-control-plane-0.9.7" - ,go-github-com-envoyproxy-go-control-plane-0.9.7) - ("go-github-com-cncf-udpa-go-0.0.0-20200629203442-efcf912fb354" - ,go-github-com-cncf-udpa-go-0.0.0-20200629203442-efcf912fb354))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-google-golang-org-api-0.40.0 - (package - (name "go-google-golang-org-api") - (version "0.40.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-api-go-client") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0vs0bnzljg5iib8x01sy49ndgsz3cl1sq53pvy3h6kzp7may0bpc")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/api")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.34.0" ,go-google-golang-org-grpc-1.34.0) - ("go-google-golang-org-genproto-0.0.0-20201214200347-8c77b98c765d" - ,go-google-golang-org-genproto-0.0.0-20201214200347-8c77b98c765d) - ("go-google-golang-org-appengine-1.6.7" - ,go-google-golang-org-appengine-1.6.7) - ("go-golang-org-x-tools-0.0.0-20210105154028-b0ab187a4818" - ,go-golang-org-x-tools-0.0.0-20210105154028-b0ab187a4818) - ("go-golang-org-x-sys-0.0.0-20210104204734-6f8348627aad" - ,go-golang-org-x-sys-0.0.0-20210104204734-6f8348627aad) - ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" - ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) - ("go-golang-org-x-oauth2-0.0.0-20201208152858-08078c50e5b5" - ,go-golang-org-x-oauth2-0.0.0-20201208152858-08078c50e5b5) - ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" - ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) - ("go-go-opencensus-io-0.22.5" ,go-go-opencensus-io-0.22.5) - ("go-github-com-googleapis-gax-go-v2-2.0.5" - ,go-github-com-googleapis-gax-go-v2-2.0.5) - ("go-github-com-google-go-cmp-0.5.4" - ,go-github-com-google-go-cmp-0.5.4) - ("go-cloud-google-com-go-0.74.0" ,go-cloud-google-com-go-0.74.0))) - (home-page "https://google.golang.org/api") - (synopsis "Google APIs Client Library for Go") - (description - "Package api is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of -sub-packages. -") - (license license:bsd-3))) - -(define-public go-google-golang-org-genproto-0.0.0-20210222152913-aa3ee6e6a81c - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20210222152913-aa3ee6e6a81c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "06wa7v3s558rwxsqd1kqz5xy10kigzx50ciqh3zdxsbvxqvjwxrx")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.24.0" - ,go-google-golang-org-protobuf-1.24.0) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-golang-protobuf-1.4.1" - ,go-github-com-golang-protobuf-1.4.1))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-google-golang-org-grpc-1.35.0 - (package - (name "go-google-golang-org-grpc") - (version "1.35.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "15ij5acp9h8dxq0brc0jljj98badri23zpm4yvmsn6gnnxaykl72")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.25.0" - ,go-google-golang-org-protobuf-1.25.0) - ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" - ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) - ("go-github-com-google-go-cmp-0.5.0" - ,go-github-com-google-go-cmp-0.5.0) - ("go-github-com-golang-protobuf-1.4.2" - ,go-github-com-golang-protobuf-1.4.2) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad" - ,go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad) - ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" - ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-cloud-google-com-go-0.78.0 - (package - (name "go-cloud-google-com-go") - (version "0.78.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-cloud-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "11wldladkcz41ivsfnbrqy2hg5wp55d72hnr2wki0zvnhbzsj376")))) - (build-system go-build-system) - (arguments '(#:import-path "cloud.google.com/go")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.35.0" ,go-google-golang-org-grpc-1.35.0) - ("go-google-golang-org-genproto-0.0.0-20210222152913-aa3ee6e6a81c" - ,go-google-golang-org-genproto-0.0.0-20210222152913-aa3ee6e6a81c) - ("go-google-golang-org-api-0.40.0" ,go-google-golang-org-api-0.40.0) - ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) - ("go-golang-org-x-text-0.3.5" ,go-golang-org-x-text-0.3.5) - ("go-golang-org-x-sys-0.0.0-20210220050731-9a76102bfb43" - ,go-golang-org-x-sys-0.0.0-20210220050731-9a76102bfb43) - ("go-golang-org-x-oauth2-0.0.0-20210218202405-ba52d332ba99" - ,go-golang-org-x-oauth2-0.0.0-20210218202405-ba52d332ba99) - ("go-golang-org-x-net-0.0.0-20210119194325-5f4716e94777" - ,go-golang-org-x-net-0.0.0-20210119194325-5f4716e94777) - ("go-golang-org-x-mod-0.4.1" ,go-golang-org-x-mod-0.4.1) - ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" - ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) - ("go-go-opencensus-io-0.22.5" ,go-go-opencensus-io-0.22.5) - ("go-github-com-jstemmer-go-junit-report-0.9.1" - ,go-github-com-jstemmer-go-junit-report-0.9.1) - ("go-github-com-googleapis-gax-go-v2-2.0.5" - ,go-github-com-googleapis-gax-go-v2-2.0.5) - ("go-github-com-google-pprof-0.0.0-20210122040257-d980be63207e" - ,go-github-com-google-pprof-0.0.0-20210122040257-d980be63207e) - ("go-github-com-google-martian-v3-3.1.0" - ,go-github-com-google-martian-v3-3.1.0) - ("go-github-com-google-go-cmp-0.5.4" - ,go-github-com-google-go-cmp-0.5.4) - ("go-github-com-golang-protobuf-1.4.3" - ,go-github-com-golang-protobuf-1.4.3) - ("go-github-com-golang-mock-1.4.4" ,go-github-com-golang-mock-1.4.4) - ("go-cloud-google-com-go-storage-1.10.0" - ,go-cloud-google-com-go-storage-1.10.0))) - (home-page "https://cloud.google.com/go") - (synopsis "Google Cloud Client Libraries for Go") - (description - "Package cloud is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -of sub-packages. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-oauth2-0.0.0-20210220000619-9bb904979d93 - (package - (name "go-golang-org-x-oauth2") - (version "0.0.0-20210220000619-9bb904979d93") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/oauth2") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1rhndpvpvfy5bsaxi974cznlq4hbamhmy6l06ppp9phh12pvn11p")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/oauth2")) - (propagated-inputs - `(("go-google-golang-org-appengine-1.6.6" - ,go-google-golang-org-appengine-1.6.6) - ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" - ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) - ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) - (home-page "https://golang.org/x/oauth2") - (synopsis "OAuth2 for Go") - (description - "Package oauth2 provides support for making -OAuth2 authorized and authenticated HTTP requests, -as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -It can additionally grant authorization with Bearer JWT. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20210305230114-8fe3ee5dd75b - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20210305230114-8fe3ee5dd75b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1x7fn66vplxkac6lbwqv649wwnx7kz0bqdzgr98z7yx7cfdxd7rj")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-google-golang-org-genproto-0.0.0-20210303154014-9728d6b83eeb - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20210303154014-9728d6b83eeb") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1abic7gjp07d1s6imjfn00s316xdirss3zvcric74gr9varr02xn")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.24.0" - ,go-google-golang-org-protobuf-1.24.0) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-golang-protobuf-1.4.1" - ,go-github-com-golang-protobuf-1.4.1))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-google-golang-org-api-0.41.0 - (package - (name "go-google-golang-org-api") - (version "0.41.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-api-go-client") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0yzz534xzl2km3vxr18h204yvnrzqlss02fagg2ign0sy3qnlkhx")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/api")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.36.0" ,go-google-golang-org-grpc-1.36.0) - ("go-google-golang-org-genproto-0.0.0-20210303154014-9728d6b83eeb" - ,go-google-golang-org-genproto-0.0.0-20210303154014-9728d6b83eeb) - ("go-google-golang-org-appengine-1.6.7" - ,go-google-golang-org-appengine-1.6.7) - ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) - ("go-golang-org-x-sys-0.0.0-20210305230114-8fe3ee5dd75b" - ,go-golang-org-x-sys-0.0.0-20210305230114-8fe3ee5dd75b) - ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" - ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) - ("go-golang-org-x-oauth2-0.0.0-20210220000619-9bb904979d93" - ,go-golang-org-x-oauth2-0.0.0-20210220000619-9bb904979d93) - ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" - ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) - ("go-go-opencensus-io-0.23.0" ,go-go-opencensus-io-0.23.0) - ("go-github-com-googleapis-gax-go-v2-2.0.5" - ,go-github-com-googleapis-gax-go-v2-2.0.5) - ("go-github-com-google-go-cmp-0.5.5" - ,go-github-com-google-go-cmp-0.5.5) - ("go-cloud-google-com-go-0.78.0" ,go-cloud-google-com-go-0.78.0))) - (home-page "https://google.golang.org/api") - (synopsis "Google APIs Client Library for Go") - (description - "Package api is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of -sub-packages. -") - (license license:bsd-3))) - -(define-public go-google-golang-org-genproto-0.0.0-20210310155132-4ce2db91004e - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20210310155132-4ce2db91004e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0r5f024c4piqna27pvc28m0h44ms9rhcbihf1zn5l8prf4vvrdw9")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.24.0" - ,go-google-golang-org-protobuf-1.24.0) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-golang-protobuf-1.4.1" - ,go-github-com-golang-protobuf-1.4.1))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-cloud-google-com-go-0.79.0 - (package - (name "go-cloud-google-com-go") - (version "0.79.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-cloud-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "031jrfgyys0slh154593d4swj6iqrjvs9dxwmab99dl6zfws77jv")))) - (build-system go-build-system) - (arguments '(#:import-path "cloud.google.com/go")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.36.0" ,go-google-golang-org-grpc-1.36.0) - ("go-google-golang-org-genproto-0.0.0-20210310155132-4ce2db91004e" - ,go-google-golang-org-genproto-0.0.0-20210310155132-4ce2db91004e) - ("go-google-golang-org-api-0.41.0" ,go-google-golang-org-api-0.41.0) - ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) - ("go-golang-org-x-text-0.3.5" ,go-golang-org-x-text-0.3.5) - ("go-golang-org-x-oauth2-0.0.0-20210220000619-9bb904979d93" - ,go-golang-org-x-oauth2-0.0.0-20210220000619-9bb904979d93) - ("go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110" - ,go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110) - ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" - ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) - ("go-go-opencensus-io-0.23.0" ,go-go-opencensus-io-0.23.0) - ("go-github-com-jstemmer-go-junit-report-0.9.1" - ,go-github-com-jstemmer-go-junit-report-0.9.1) - ("go-github-com-googleapis-gax-go-v2-2.0.5" - ,go-github-com-googleapis-gax-go-v2-2.0.5) - ("go-github-com-google-pprof-0.0.0-20210226084205-cbba55b83ad5" - ,go-github-com-google-pprof-0.0.0-20210226084205-cbba55b83ad5) - ("go-github-com-google-martian-v3-3.1.0" - ,go-github-com-google-martian-v3-3.1.0) - ("go-github-com-google-go-cmp-0.5.5" - ,go-github-com-google-go-cmp-0.5.5) - ("go-github-com-golang-protobuf-1.4.3" - ,go-github-com-golang-protobuf-1.4.3) - ("go-github-com-golang-mock-1.5.0" ,go-github-com-golang-mock-1.5.0) - ("go-cloud-google-com-go-storage-1.10.0" - ,go-cloud-google-com-go-storage-1.10.0))) - (home-page "https://cloud.google.com/go") - (synopsis "Google Cloud Client Libraries for Go") - (description - "Package cloud is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -of sub-packages. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-oauth2-0.0.0-20210313182246-cd4f82c27b84 - (package - (name "go-golang-org-x-oauth2") - (version "0.0.0-20210313182246-cd4f82c27b84") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/oauth2") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1jf68sh1957ji1lv1zrrhsbm6jr3508pw159pfzgyw6hbzsg5amv")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/oauth2")) - (propagated-inputs - `(("go-google-golang-org-appengine-1.6.6" - ,go-google-golang-org-appengine-1.6.6) - ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" - ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) - ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) - (home-page "https://golang.org/x/oauth2") - (synopsis "OAuth2 for Go") - (description - "Package oauth2 provides support for making -OAuth2 authorized and authenticated HTTP requests, -as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -It can additionally grant authorization with Bearer JWT. -") - (license license:bsd-3))) - -(define-public go-google-golang-org-genproto-0.0.0-20210319143718-93e7006c17a6 - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20210319143718-93e7006c17a6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0l143m8rn7zmbfb2rpdawhxs8qjbdpn61hqynf47j5hwsbjci2xs")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.24.0" - ,go-google-golang-org-protobuf-1.24.0) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-golang-protobuf-1.4.1" - ,go-github-com-golang-protobuf-1.4.1))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-google-golang-org-grpc-1.36.0 - (package - (name "go-google-golang-org-grpc") - (version "1.36.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1m4xsfv3ysc84cwqxqqr61fs3d2w04f0q5xbdjijhczjixcxwh5i")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.25.0" - ,go-google-golang-org-protobuf-1.25.0) - ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" - ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) - ("go-github-com-google-go-cmp-0.5.0" - ,go-github-com-google-go-cmp-0.5.0) - ("go-github-com-golang-protobuf-1.4.2" - ,go-github-com-golang-protobuf-1.4.2) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad" - ,go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad) - ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" - ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-google-golang-org-api-0.43.0 - (package - (name "go-google-golang-org-api") - (version "0.43.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-api-go-client") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0wxxbihigjn49warampi7gqfslbnp9nrj5zmk8p3ssq429jpvsib")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/api")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.36.0" ,go-google-golang-org-grpc-1.36.0) - ("go-google-golang-org-genproto-0.0.0-20210319143718-93e7006c17a6" - ,go-google-golang-org-genproto-0.0.0-20210319143718-93e7006c17a6) - ("go-google-golang-org-appengine-1.6.7" - ,go-google-golang-org-appengine-1.6.7) - ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) - ("go-golang-org-x-sys-0.0.0-20210320140829-1e4c9ba3b0c4" - ,go-golang-org-x-sys-0.0.0-20210320140829-1e4c9ba3b0c4) - ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" - ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) - ("go-golang-org-x-oauth2-0.0.0-20210313182246-cd4f82c27b84" - ,go-golang-org-x-oauth2-0.0.0-20210313182246-cd4f82c27b84) - ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" - ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) - ("go-go-opencensus-io-0.23.0" ,go-go-opencensus-io-0.23.0) - ("go-github-com-googleapis-gax-go-v2-2.0.5" - ,go-github-com-googleapis-gax-go-v2-2.0.5) - ("go-github-com-google-go-cmp-0.5.5" - ,go-github-com-google-go-cmp-0.5.5) - ("go-cloud-google-com-go-0.79.0" ,go-cloud-google-com-go-0.79.0))) - (home-page "https://google.golang.org/api") - (synopsis "Google APIs Client Library for Go") - (description - "Package api is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of -sub-packages. -") - (license license:bsd-3))) - -(define-public go-cloud-google-com-go-0.81.0 - (package - (name "go-cloud-google-com-go") - (version "0.81.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-cloud-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "15jgynqb5pbxqbj3a7ii970yn4srsw1dbxzxnhpkfkmplalpgyh3")))) - (build-system go-build-system) - (arguments '(#:import-path "cloud.google.com/go")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.36.1" ,go-google-golang-org-grpc-1.36.1) - ("go-google-golang-org-genproto-0.0.0-20210402141018-6c239bbf2bb1" - ,go-google-golang-org-genproto-0.0.0-20210402141018-6c239bbf2bb1) - ("go-google-golang-org-api-0.43.0" ,go-google-golang-org-api-0.43.0) - ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) - ("go-golang-org-x-text-0.3.5" ,go-golang-org-x-text-0.3.5) - ("go-golang-org-x-oauth2-0.0.0-20210313182246-cd4f82c27b84" - ,go-golang-org-x-oauth2-0.0.0-20210313182246-cd4f82c27b84) - ("go-golang-org-x-net-0.0.0-20210316092652-d523dce5a7f4" - ,go-golang-org-x-net-0.0.0-20210316092652-d523dce5a7f4) - ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" - ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) - ("go-go-opencensus-io-0.23.0" ,go-go-opencensus-io-0.23.0) - ("go-github-com-jstemmer-go-junit-report-0.9.1" - ,go-github-com-jstemmer-go-junit-report-0.9.1) - ("go-github-com-googleapis-gax-go-v2-2.0.5" - ,go-github-com-googleapis-gax-go-v2-2.0.5) - ("go-github-com-google-pprof-0.0.0-20210226084205-cbba55b83ad5" - ,go-github-com-google-pprof-0.0.0-20210226084205-cbba55b83ad5) - ("go-github-com-google-martian-v3-3.1.0" - ,go-github-com-google-martian-v3-3.1.0) - ("go-github-com-google-go-cmp-0.5.5" - ,go-github-com-google-go-cmp-0.5.5) - ("go-github-com-golang-protobuf-1.5.1" - ,go-github-com-golang-protobuf-1.5.1) - ("go-github-com-golang-mock-1.5.0" ,go-github-com-golang-mock-1.5.0) - ("go-cloud-google-com-go-storage-1.10.0" - ,go-cloud-google-com-go-storage-1.10.0))) - (home-page "https://cloud.google.com/go") - (synopsis "Google Cloud Client Libraries for Go") - (description - "Package cloud is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -of sub-packages. -") - (license license:asl2.0))) - -(define-public go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e - (package - (name "go-github-com-golang-groupcache") - (version "0.0.0-20200121045136-8c9f03a8e57e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/groupcache") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0vjjr79r32icjzlb05wn02k59av7jx0rn1jijml8r4whlg7dnkfh")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/groupcache")) - (home-page "https://github.com/golang/groupcache") - (synopsis "groupcache") - (description - "Package groupcache provides a data loading mechanism with caching -and de-duplication that works across a set of peer processes. -") - (license license:asl2.0))) - -(define-public go-github-com-golang-protobuf-1.4.3 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1kf1d7xmyjvy0z6j5czp6nqyvj9zrk6liv6znif08927xqfrzyln")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.23.0" - ,go-google-golang-org-protobuf-1.23.0) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-github-com-google-go-cmp-0.5.3 - (package - (name "go-github-com-google-go-cmp") - (version "0.5.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "011gdkmyk3w7qkcwljhqak4h5npn4n7fwgx1fwpyx9c7wizvgkm5")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") - (license license:bsd-3))) - -(define-public go-github-com-stretchr-testify-1.6.1 - (package - (name "go-github-com-stretchr-testify") - (version "1.6.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/testify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1yhiqqzjvi63pf01rgzx68gqkkvjx03fvl5wk30br5l6s81s090l")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/testify")) - (propagated-inputs - `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" - ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) - ("go-github-com-stretchr-objx-0.1.0" - ,go-github-com-stretchr-objx-0.1.0) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.0" - ,go-github-com-davecgh-go-spew-1.1.0))) - (home-page "https://github.com/stretchr/testify") - (synopsis "Testify - Thou Shalt Write Tests") - (description - "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -") - (license license:expat))) - -(define-public go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b - (package - (name "go-golang-org-x-net") - (version "0.0.0-20201110031124-69a78807bb2b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "176z5k6jbhr9vf0am2avl1lyqwym3q0mri98yb8r572z33qmcw1d")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) - ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" - ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) - ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" - ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-google-golang-org-grpc-1.33.2 - (package - (name "go-google-golang-org-grpc") - (version "1.33.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "03yz4nlf4kqbnpw48f0mvcb2f5zzy0vjd5i2iw0hrjspd0238fzk")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.25.0" - ,go-google-golang-org-protobuf-1.25.0) - ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" - ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) - ("go-github-com-google-go-cmp-0.5.0" - ,go-github-com-google-go-cmp-0.5.0) - ("go-github-com-golang-protobuf-1.4.1" - ,go-github-com-golang-protobuf-1.4.1) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-envoyproxy-go-control-plane-0.9.4" - ,go-github-com-envoyproxy-go-control-plane-0.9.4) - ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" - ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-go-opencensus-io-0.23.0 - (package - (name "go-go-opencensus-io") - (version "0.23.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/census-instrumentation/opencensus-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0gw4f7inf8y2ik00yfb36xganiq9rl4w2d1a41bsjqsh83ajz2km")))) - (build-system go-build-system) - (arguments '(#:import-path "go.opencensus.io")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) - ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" - ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-google-go-cmp-0.5.3" - ,go-github-com-google-go-cmp-0.5.3) - ("go-github-com-golang-protobuf-1.4.3" - ,go-github-com-golang-protobuf-1.4.3) - ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" - ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e))) - (home-page "https://go.opencensus.io") - (synopsis "OpenCensus Libraries for Go") - (description "Package opencensus contains Go support for OpenCensus. -") - (license license:asl2.0))) - -(define-public go-github-com-golang-mock-1.4.4 - (package - (name "go-github-com-golang-mock") - (version "1.4.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/mock") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1lj0dvd6div4jaq1s0afpwqaq9ah8cxhkq93wii2ably1xmp2l0a")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/mock")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262" - ,go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262))) - (home-page "https://github.com/golang/mock") - (synopsis "gomock") - (description - "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It -integrates well with Go's built-in @code{testing} package, but can be used in other -contexts too.") - (license license:asl2.0))) - -(define-public go-golang-org-x-tools-0.0.0-20200825202427-b303f430e36d - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20200825202427-b303f430e36d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0zzf6ifzjvkwin6m97jp2dndbfac0sbdr84ki79j9srhpqdigl75")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) - ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" - ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) - ("go-golang-org-x-net-0.0.0-20200625001655-4c5254603344" - ,go-golang-org-x-net-0.0.0-20200625001655-4c5254603344) - ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) - ("go-github-com-yuin-goldmark-1.1.32" - ,go-github-com-yuin-goldmark-1.1.32))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20190628185345-da137c7871d7 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190628185345-da137c7871d7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1qsiyr3irmb6ii06hivm9p2c7wqyxczms1a9v1ss5698yjr3fg47")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-github-com-google-martian-v3-3.0.0 - (package - (name "go-github-com-google-martian-v3") - (version "3.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/martian") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ngvs4l6a06s8scnliq9i5pwvwpzfpa5wf9skg0gcvysli1rm3fm")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/martian/v3")) - (propagated-inputs - `(("go-golang-org-x-net-0.0.0-20190628185345-da137c7871d7" - ,go-golang-org-x-net-0.0.0-20190628185345-da137c7871d7))) - (home-page "https://github.com/google/martian") - (synopsis "Martian Proxy") - (description - "Package martian provides an HTTP/1.1 proxy with an API for configurable -request and response modifiers. -") - (license license:asl2.0))) - -(define-public go-github-com-google-pprof-0.0.0-20200708004538-1a94d8640e99 - (package - (name "go-github-com-google-pprof") - (version "0.0.0-20200708004538-1a94d8640e99") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/pprof") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0isfwwan9vimwsfjml0phwrqv6kb83mkmk063dcb81k09gzzs3wy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/pprof")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" - ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) - ("go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6" - ,go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6) - ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" - ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) - ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" - ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) - ("go-github-com-chzyer-logex-1.1.10" - ,go-github-com-chzyer-logex-1.1.10))) - (home-page "https://github.com/google/pprof") - (synopsis "Introduction") - (description - "pprof is a tool for collection, manipulation and visualization -of performance profiles. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-net-0.0.0-20200707034311-ab3426394381 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20200707034311-ab3426394381") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1wr7rnnqp210yykkypinb8ciszx28aq5a3l3dvsv6swzxxngs8zn")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" - ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) - ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" - ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20200729194436-6467de6f59a7 - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20200729194436-6467de6f59a7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "14zpkr5idlx2zbm5dp7gk4afppy7k3j4y68s1qvpgi70yazaxzkd")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) - ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" - ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) - ("go-golang-org-x-net-0.0.0-20200625001655-4c5254603344" - ,go-golang-org-x-net-0.0.0-20200625001655-4c5254603344) - ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) - ("go-github-com-yuin-goldmark-1.1.32" - ,go-github-com-yuin-goldmark-1.1.32))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262 - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20190425150028-36563e24a262") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0lasi96f6a1h11gkm8kl33x03pmxp369wrqq2dg7x7xv9nq76d6g")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" - ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-golang-org-x-text-0.0.0-20170915032832-14c0d48ead0c - (package - (name "go-golang-org-x-text") - (version "0.0.0-20170915032832-14c0d48ead0c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/text") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0y0nrj4hw7vby6m3iqklbf4v7njqlsx7s4pwfkwmvh1ryn1kb7d6")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/text")) - (home-page "https://golang.org/x/text") - (synopsis "Go Text") - (description - "text is a repository of text-related packages related to internationalization -(i18n) and localization (l10n), such as character encodings, text -transformations, and locale-specific text handling. -") - (license license:bsd-3))) - -(define-public go-rsc-io-sampler-1.3.0 - (package - (name "go-rsc-io-sampler") - (version "1.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/rsc/sampler") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0byxk2ynba50py805kcvbvjzh59l1r308i1xgyzpw6lff4xx9xjh")))) - (build-system go-build-system) - (arguments '(#:import-path "rsc.io/sampler")) - (propagated-inputs - `(("go-golang-org-x-text-0.0.0-20170915032832-14c0d48ead0c" - ,go-golang-org-x-text-0.0.0-20170915032832-14c0d48ead0c))) - (home-page "https://rsc.io/sampler") - (synopsis #f) - (description "Package sampler shows simple texts. -") - (license license:bsd-3))) - -(define-public go-rsc-io-quote-v3-3.1.0 - (package - (name "go-rsc-io-quote-v3") - (version "3.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/rsc/quote") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0nvv97hwwrl1mx5gzsbdm1ndnwpg3m7i2jb10ig9wily7zmvki0i")))) - (build-system go-build-system) - (arguments - '(#:import-path "rsc.io/quote/v3" #:unpack-path "rsc.io/quote/v3")) - (propagated-inputs `(("go-rsc-io-sampler-1.3.0" ,go-rsc-io-sampler-1.3.0))) - (home-page "https://rsc.io/quote/v3") - (synopsis #f) - (description "Package quote collects pithy sayings. -") - (license license:bsd-3))) - -(define-public go-github-com-golang-mock-1.4.3 - (package - (name "go-github-com-golang-mock") - (version "1.4.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/mock") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1p37xnja1dgq5ykx24n7wincwz2gahjh71b95p8vpw7ss2g8j8wx")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/mock")) - (propagated-inputs - `(("go-rsc-io-quote-v3-3.1.0" ,go-rsc-io-quote-v3-3.1.0) - ("go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262" - ,go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262))) - (home-page "https://github.com/golang/mock") - (synopsis "gomock") - (description - "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It -integrates well with Go's built-in @code{testing} package, but can be used in other -contexts too.") - (license license:asl2.0))) - -(define-public go-github-com-golang-protobuf-1.3.5 - (package - (name "go-github-com-golang-protobuf") - (version "1.3.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1gkd1942vk9n8kfzdwy1iil6wgvlwjq7a3y5jc49ck4lz9rhmgkq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-github-com-chzyer-logex-1.1.10 - (package - (name "go-github-com-chzyer-logex") - (version "1.1.10") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/chzyer/logex") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "08pbjj3wx9acavlwyr055isa8a5hnmllgdv5k6ra60l5y1brmlq4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/chzyer/logex")) - (home-page "https://github.com/chzyer/logex") - (synopsis #f) - (description #f) - (license #f))) - -(define-public go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e - (package - (name "go-github-com-chzyer-readline") - (version "0.0.0-20180603132655-2972be24d48e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/chzyer/readline") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "104q8dazj8yf6b089jjr82fy9h1g80zyyzvp3g8b44a7d8ngjj6r")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/chzyer/readline")) - (home-page "https://github.com/chzyer/readline") - (synopsis "Guide") - (description - "Readline is a pure go implementation for GNU-Readline kind library. -") - (license license:expat))) - -(define-public go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1 - (package - (name "go-github-com-chzyer-test") - (version "0.0.0-20180213035817-a1ea475d72b1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/chzyer/test") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0rns2aqk22i9xsgyap0pq8wi4cfaxsri4d9q6xxhhyma8jjsnj2k")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/chzyer/test")) - (home-page "https://github.com/chzyer/test") - (synopsis "test") - (description #f) - (license license:expat))) - -(define-public go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6 - (package - (name "go-github-com-ianlancetaylor-demangle") - (version "0.0.0-20181102032728-5e5cf60278f6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/ianlancetaylor/demangle") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fhjk11cip9c3jyj1byz9z77n6n2rlxmyz0xjx1zpn1da3cvri75")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/ianlancetaylor/demangle")) - (home-page "https://github.com/ianlancetaylor/demangle") - (synopsis "github.com/ianlancetaylor/demangle") - (description - "Package demangle defines functions that demangle GCC/LLVM -C++ and Rust symbol names. -This package recognizes names that were mangled according to the C++ ABI -defined at @url{http://codesourcery.com/cxx-abi/,http://codesourcery.com/cxx-abi/} and the Rust ABI -defined at -@url{https://rust-lang.github.io/rfcs/2603-rust-symbol-name-mangling-v0.html,https://rust-lang.github.io/rfcs/2603-rust-symbol-name-mangling-v0.html} -") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20191204072324-ce4227a45e2e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1s43wvqfml6ml5ks7iv2bis9d664g77mq86v7mfmjhn56x856g35")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-google-pprof-0.0.0-20200229191704-1ebb73c60ed3 - (package - (name "go-github-com-google-pprof") - (version "0.0.0-20200229191704-1ebb73c60ed3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/pprof") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1gdi9p4j1zfm5xlm488i5l0q3kk4q6hsmbmlk6p729i0di2n3ifa")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/pprof")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" - ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) - ("go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6" - ,go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6) - ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" - ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) - ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" - ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) - ("go-github-com-chzyer-logex-1.1.10" - ,go-github-com-chzyer-logex-1.1.10))) - (home-page "https://github.com/google/pprof") - (synopsis "Introduction") - (description - "pprof is a tool for collection, manipulation and visualization -of performance profiles. -") - (license license:asl2.0))) - -(define-public go-github-com-jstemmer-go-junit-report-0.9.1 - (package - (name "go-github-com-jstemmer-go-junit-report") - (version "0.9.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/jstemmer/go-junit-report") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1knip80yir1cdsjlb3rzy0a4w3kl4ljpiciaz6hjzwqlfhnv7bkw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/jstemmer/go-junit-report")) - (home-page "https://github.com/jstemmer/go-junit-report") - (synopsis "go-junit-report") - (description - "Converts @code{go test} output to an xml report, suitable for applications that -expect junit xml reports (e.g. @url{http://jenkins-ci.org,Jenkins}).") - (license license:expat))) - -(define-public go-golang-org-x-net-0.0.0-20200324143707-d3edc9973b7e - (package - (name "go-golang-org-x-net") - (version "0.0.0-20200324143707-d3edc9973b7e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12zbjwcsh9b0lwycqlkrnbyg5a6a9dzgj8hhgq399bdda5bd97y7")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" - ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-github-com-golang-mock-1.2.0 - (package - (name "go-github-com-golang-mock") - (version "1.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/mock") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12ddj2g8ab87id6n2n67vnbhq6p8dvgsq1pzpqfriym4dk8w54fg")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/mock")) - (home-page "https://github.com/golang/mock") - (synopsis "gomock") - (description - "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It -integrates well with Go's built-in @code{testing} package, but can be used in other -contexts too.") - (license license:asl2.0))) - -(define-public go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c - (package - (name "go-github-com-google-btree") - (version "0.0.0-20180813153112-4030bb1f1f0c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/btree") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ba430m9fbnagacp57krgidsyrgp3ycw5r7dj71brgp5r52g82p6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/btree")) - (home-page "https://github.com/google/btree") - (synopsis "BTree implementation for Go") - (description - "Package btree implements in-memory B-Trees of arbitrary degree. -") - (license license:asl2.0))) - -(define-public go-github-com-google-martian-2.1.0+incompatible - (package - (name "go-github-com-google-martian") - (version "2.1.0+incompatible") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/martian") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "197hil6vrjk50b9wvwyzf61csid83whsjj6ik8mc9r2lryxlyyrp")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/martian")) - (home-page "https://github.com/google/martian") - (synopsis "Martian Proxy") - (description - "Package martian provides an HTTP/1.1 proxy with an API for configurable -request and response modifiers. -") - (license license:asl2.0))) - -(define-public go-github-com-google-pprof-0.0.0-20181206194817-3ea8567a2e57 - (package - (name "go-github-com-google-pprof") - (version "0.0.0-20181206194817-3ea8567a2e57") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/pprof") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "09rhjn3ms0a72dw0yzbp237p7yhqma772zspddn6mgkh3gi3kn4c")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/pprof")) - (home-page "https://github.com/google/pprof") - (synopsis "Introduction") - (description - "pprof is a tool for collection, manipulation and visualization -of performance profiles. -") - (license license:asl2.0))) - -(define-public go-github-com-googleapis-gax-go-v2-2.0.4 - (package - (name "go-github-com-googleapis-gax-go-v2") - (version "2.0.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/gax-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1iwnm6ky1x53lgs44mw3hpdkjzrm5qd0kfs50m0qcq2ml5m1cwdm")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/googleapis/gax-go/v2")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.19.0" - ,go-google-golang-org-grpc-1.19.0))) - (home-page "https://github.com/googleapis/gax-go") - (synopsis #f) - (description - "Package gax contains a set of modules which aid the development of APIs -for clients and servers based on gRPC and Google API conventions. -") - (license license:bsd-3))) - -(define-public go-github-com-jstemmer-go-junit-report-0.0.0-20190106144839-af01ea7f8024 - (package - (name "go-github-com-jstemmer-go-junit-report") - (version "0.0.0-20190106144839-af01ea7f8024") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/jstemmer/go-junit-report") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1lp3n94ris12hac02wi31f3whs88lcrzwgdg43a5j6cafg9p1d0s")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/jstemmer/go-junit-report")) - (home-page "https://github.com/jstemmer/go-junit-report") - (synopsis "go-junit-report") - (description - "Converts @code{go test} output to an xml report, suitable for applications that -expect junit xml reports (e.g. @url{http://jenkins-ci.org,Jenkins}).") - (license license:expat))) - -(define-public go-golang-org-x-text-0.3.1-0.20180807135948-17ff2d5776d2 - (package - (name "go-golang-org-x-text") - (version "0.3.1-0.20180807135948-17ff2d5776d2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/text") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1rrh2mnmyxr45nsvy42zq3w3ly6gw6rl993knwvf1w71kyv0jjnj")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/text")) - (home-page "https://golang.org/x/text") - (synopsis "Go Text") - (description - "text is a repository of text-related packages related to internationalization -(i18n) and localization (l10n), such as character encodings, text -transformations, and locale-specific text handling. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-time-0.0.0-20181108054448-85acf8d2951c - (package - (name "go-golang-org-x-time") - (version "0.0.0-20181108054448-85acf8d2951c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/time") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0yqnxsrarjk4qkda8kcxzmk7y90kkkxzx9iwryzrk7bzs87ky3xc")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/time")) - (home-page "https://golang.org/x/time") - (synopsis "Go Time") - (description "This repository provides supplementary Go time packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f - (package - (name "go-golang-org-x-lint") - (version "0.0.0-20190301231843-5614ed5bae6f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/lint") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0fzn0zjv0x92xvfdq3a0v9w5sgkhr7hxkfy9zaqi8i57807z8bnx")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/lint")) - (home-page "https://golang.org/x/lint") - (synopsis "Installation") - (description "Package lint contains a linter for Go source code. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421 - (package - (name "go-golang-org-x-oauth2") - (version "0.0.0-20190226205417-e64efc72b421") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/oauth2") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0djvwz2avx7knsjbl434vw1wqbrg53xp1kh599gfixn5icrggz4m")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/oauth2")) - (propagated-inputs - `(("go-google-golang-org-appengine-1.4.0" - ,go-google-golang-org-appengine-1.4.0) - ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" - ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) - ("go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e" - ,go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e) - ("go-cloud-google-com-go-0.34.0" ,go-cloud-google-com-go-0.34.0))) - (home-page "https://golang.org/x/oauth2") - (synopsis "OAuth2 for Go") - (description - "Package oauth2 provides support for making -OAuth2 authorized and authenticated HTTP requests, -as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -It can additionally grant authorization with Bearer JWT. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138 - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20190312170243-e65039ee4138") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0c094599cf70wdrms49a3879qkq122pqlp2av444gs2pvc8apdcx")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-google-golang-org-api-0.4.0 - (package - (name "go-google-golang-org-api") - (version "0.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-api-go-client") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1hzgrw5wasmcjlqpxsmryddzzw4cwyzf2vx14i9z51v1plwssijm")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/api")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" - ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) - ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) - ("go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19" - ,go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19) - ("go-google-golang-org-appengine-1.4.0" - ,go-google-golang-org-appengine-1.4.0) - ("go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138" - ,go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138) - ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" - ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) - ("go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421" - ,go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421) - ("go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f" - ,go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f) - ("go-go-opencensus-io-0.21.0" ,go-go-opencensus-io-0.21.0) - ("go-github-com-google-go-cmp-0.2.0" - ,go-github-com-google-go-cmp-0.2.0))) - (home-page "https://google.golang.org/api") - (synopsis "Google APIs Client Library for Go") - (description - "Package api is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of -sub-packages. -") - (license license:bsd-3))) - -(define-public go-google-golang-org-genproto-0.0.0-20190418145605-e7d98fc518a7 - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20190418145605-e7d98fc518a7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1cnavkyawwvfc5yl097ygnfy1ac69v4zc02gdfnq1bvgcvgmvnbi")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" - ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) - ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) - ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" - ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) - ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" - ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) - ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" - ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd) - ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" - ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) - ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" - ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-honnef-co-go-tools-0.0.0-20190106161140-3f1c8253044a - (package - (name "go-honnef-co-go-tools") - (version "0.0.0-20190106161140-3f1c8253044a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/dominikh/go-tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0d3vgh0fgfj1z7i648g1s6x2pwxd07sxfjwg1xn3yagr9h06jh3h")))) - (build-system go-build-system) - (arguments '(#:import-path "honnef.co/go/tools")) - (home-page "https://honnef.co/go/tools") - (synopsis "Documentation") - (description - "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, -offers simplifications, and enforces style rules.") - (license license:expat))) - -(define-public go-cloud-google-com-go-0.38.0 - (package - (name "go-cloud-google-com-go") - (version "0.38.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-cloud-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0n6n13b7lri2fmc4bn4ifszyawj31dpbzvyv0xafsf81440z8cyh")))) - (build-system go-build-system) - (arguments '(#:import-path "cloud.google.com/go")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190106161140-3f1c8253044a" - ,go-honnef-co-go-tools-0.0.0-20190106161140-3f1c8253044a) - ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) - ("go-google-golang-org-genproto-0.0.0-20190418145605-e7d98fc518a7" - ,go-google-golang-org-genproto-0.0.0-20190418145605-e7d98fc518a7) - ("go-google-golang-org-api-0.4.0" ,go-google-golang-org-api-0.4.0) - ("go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138" - ,go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138) - ("go-golang-org-x-time-0.0.0-20181108054448-85acf8d2951c" - ,go-golang-org-x-time-0.0.0-20181108054448-85acf8d2951c) - ("go-golang-org-x-text-0.3.1-0.20180807135948-17ff2d5776d2" - ,go-golang-org-x-text-0.3.1-0.20180807135948-17ff2d5776d2) - ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" - ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) - ("go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421" - ,go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421) - ("go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f" - ,go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f) - ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" - ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) - ("go-go-opencensus-io-0.21.0" ,go-go-opencensus-io-0.21.0) - ("go-github-com-jstemmer-go-junit-report-0.0.0-20190106144839-af01ea7f8024" - ,go-github-com-jstemmer-go-junit-report-0.0.0-20190106144839-af01ea7f8024) - ("go-github-com-googleapis-gax-go-v2-2.0.4" - ,go-github-com-googleapis-gax-go-v2-2.0.4) - ("go-github-com-google-pprof-0.0.0-20181206194817-3ea8567a2e57" - ,go-github-com-google-pprof-0.0.0-20181206194817-3ea8567a2e57) - ("go-github-com-google-martian-2.1.0+incompatible" - ,go-github-com-google-martian-2.1.0+incompatible) - ("go-github-com-google-go-cmp-0.2.0" - ,go-github-com-google-go-cmp-0.2.0) - ("go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c" - ,go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0) - ("go-github-com-golang-mock-1.2.0" ,go-github-com-golang-mock-1.2.0))) - (home-page "https://cloud.google.com/go") - (synopsis "Google Cloud Client Libraries for Go") - (description - "Package cloud is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -of sub-packages. -") - (license license:asl2.0))) - -(define-public go-github-com-hashicorp-golang-lru-0.5.1 - (package - (name "go-github-com-hashicorp-golang-lru") - (version "0.5.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/golang-lru") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "13f870cvk161bzjj6x41l45r5x9i1z9r2ymwmvm7768kg08zznpy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/golang-lru")) - (home-page "https://github.com/hashicorp/golang-lru") - (synopsis "golang-lru") - (description - "Package lru provides three different LRU caches of varying sophistication. -") - (license license:mpl2.0))) - -(define-public go-github-com-hashicorp-golang-lru-0.5.0 - (package - (name "go-github-com-hashicorp-golang-lru") - (version "0.5.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/golang-lru") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12k2cp2k615fjvfa5hyb9k2alian77wivds8s65diwshwv41939f")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/golang-lru")) - (home-page "https://github.com/hashicorp/golang-lru") - (synopsis "golang-lru") - (description - "Package lru provides three different LRU caches of varying sophistication. -") - (license license:mpl2.0))) - -(define-public go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19 - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20190307195333-5fe7a883aa19") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0qjkwig0r42q0j2qv57s4ahsgmmp41dz3ih3rnaqg0619n5w7lbs")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" - ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) - ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) - ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" - ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) - ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" - ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) - ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" - ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd) - ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" - ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) - ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" - ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-go-opencensus-io-0.21.0 - (package - (name "go-go-opencensus-io") - (version "0.21.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/census-instrumentation/opencensus-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "14s0a12xdzjvad0dgksgv8m3hh7nc585abvjkvyk6r67a29lxj6x")))) - (build-system go-build-system) - (arguments '(#:import-path "go.opencensus.io")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) - ("go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19" - ,go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-github-com-hashicorp-golang-lru-0.5.0" - ,go-github-com-hashicorp-golang-lru-0.5.0) - ("go-github-com-google-go-cmp-0.2.0" - ,go-github-com-google-go-cmp-0.2.0) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0))) - (home-page "https://go.opencensus.io") - (synopsis "OpenCensus Libraries for Go") - (description "Package opencensus contains Go support for OpenCensus. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422 - (package - (name "go-golang-org-x-lint") - (version "0.0.0-20190409202823-959b441ac422") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/lint") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1mgcv5f00pkzsbwnq2y7vqvd1b4lr5a3s47cphh2qv4indfk7pck")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/lint")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" - ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd))) - (home-page "https://golang.org/x/lint") - (synopsis "Installation") - (description "Package lint contains a linter for Go source code. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20190503192946-f4e77d36d62c - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190503192946-f4e77d36d62c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0avjnglqqg9ya0cbhp23m4namykii219kxjywxn4cd7pfcc5arha")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45 - (package - (name "go-golang-org-x-oauth2") - (version "0.0.0-20190604053449-0f29369cfe45") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/oauth2") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "06jwpvx0x2gjn2y959drbcir5kd7vg87k0r1216abk6rrdzzrzi2")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/oauth2")) - (propagated-inputs - `(("go-google-golang-org-appengine-1.4.0" - ,go-google-golang-org-appengine-1.4.0) - ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" - ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) - ("go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e" - ,go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e) - ("go-cloud-google-com-go-0.34.0" ,go-cloud-google-com-go-0.34.0))) - (home-page "https://golang.org/x/oauth2") - (synopsis "OAuth2 for Go") - (description - "Package oauth2 provides support for making -OAuth2 authorized and authenticated HTTP requests, -as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -It can additionally grant authorization with Bearer JWT. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190507160741-ecd444e8653b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1vhld4948mzfnlgf20id29mv1bwpk9a3xlbw1mbjzxzxxdv1jds2")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-google-golang-org-appengine-1.5.0 - (package - (name "go-google-golang-org-appengine") - (version "1.5.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/appengine") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0l7mkdnwhidv8m686x432vmx8z5nqcrr9f46ddgvrxbh4wvyfcll")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/appengine")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225" - ,go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0))) - (home-page "https://google.golang.org/appengine") - (synopsis "Go App Engine packages") - (description - "Package appengine provides basic functionality for Google App Engine. -") - (license license:asl2.0))) - -(define-public go-google-golang-org-api-0.20.0 - (package - (name "go-google-golang-org-api") - (version "0.20.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-api-go-client") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "13syr1x33k6mrn5w6l4sgdbzn368w3m60vf6kk2j10fwa45125rg")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/api")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" - ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" - ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) - ("go-google-golang-org-appengine-1.5.0" - ,go-google-golang-org-appengine-1.5.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) - ("go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b" - ,go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b) - ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" - ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) - ("go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45" - ,go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45) - ("go-golang-org-x-net-0.0.0-20190503192946-f4e77d36d62c" - ,go-golang-org-x-net-0.0.0-20190503192946-f4e77d36d62c) - ("go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422" - ,go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422) - ("go-go-opencensus-io-0.21.0" ,go-go-opencensus-io-0.21.0) - ("go-github-com-hashicorp-golang-lru-0.5.1" - ,go-github-com-hashicorp-golang-lru-0.5.1) - ("go-github-com-googleapis-gax-go-v2-2.0.5" - ,go-github-com-googleapis-gax-go-v2-2.0.5) - ("go-github-com-google-go-cmp-0.3.0" - ,go-github-com-google-go-cmp-0.3.0) - ("go-cloud-google-com-go-0.38.0" ,go-cloud-google-com-go-0.38.0))) - (home-page "https://google.golang.org/api") - (synopsis "Google APIs Client Library for Go") - (description - "Package api is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of -sub-packages. -") - (license license:bsd-3))) - -(define-public go-github-com-google-renameio-0.1.0 - (package - (name "go-github-com-google-renameio") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/renameio") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ki2x5a9nrj17sn092d6n4zr29lfg5ydv4xz5cp58z6cw8ip43jx")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/renameio")) - (home-page "https://github.com/google/renameio") - (synopsis "Atomicity vs durability") - (description - "Package renameio provides a way to atomically create or replace a file or -symbolic link. -") - (license license:asl2.0))) - -(define-public go-github-com-kisielk-gotool-1.0.0 - (package - (name "go-github-com-kisielk-gotool") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kisielk/gotool") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "14af2pa0ssyp8bp2mvdw184s5wcysk6akil3wzxmr05wwy951iwn")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kisielk/gotool")) - (home-page "https://github.com/kisielk/gotool") - (synopsis "gotool") - (description - "Package gotool contains utility functions used to implement the standard -\"cmd/go\" tool, provided as a convenience to developers who want to write -tools with similar semantics. -") - (license license:expat))) - -(define-public go-github-com-kr-pty-1.1.1 - (package - (name "go-github-com-kr-pty") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/pty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0383f0mb9kqjvncqrfpidsf8y6ns5zlrc91c6a74xpyxjwvzl2y6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/pty")) - (home-page "https://github.com/kr/pty") - (synopsis "pty") - (description - "Package pty is a wrapper for github.com/creack/pty, which provides -functions for working with Unix terminals. -") - (license license:expat))) - -(define-public go-github-com-kr-text-0.1.0 - (package - (name "go-github-com-kr-text") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1gm5bsl01apvc84bw06hasawyqm4q84vx1pm32wr9jnd7a8vjgj1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/text")) - (propagated-inputs - `(("go-github-com-kr-pty-1.1.1" ,go-github-com-kr-pty-1.1.1))) - (home-page "https://github.com/kr/text") - (synopsis #f) - (description - "Package text provides rudimentary functions for manipulating text in -paragraphs. -") - (license license:expat))) - -(define-public go-github-com-kr-pretty-0.1.0 - (package - (name "go-github-com-kr-pretty") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/pretty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18m4pwg2abd0j9cn5v3k2ksk9ig4vlwxmlw9rrglanziv9l967qp")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/pretty")) - (propagated-inputs - `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) - (home-page "https://github.com/kr/pretty") - (synopsis #f) - (description - "Package pretty provides pretty-printing for Go values. This is -useful during debugging, to avoid wrapping long output lines in -the terminal. -") - (license license:expat))) - -(define-public go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127 - (package - (name "go-gopkg-in-check-v1") - (version "1.0.0-20180628173108-788fd7840127") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/check.v1") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0v3bim0j375z81zrpr5qv42knqs0y2qv2vkjiqi5axvb78slki1a")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) - (home-page "https://gopkg.in/check.v1") - (synopsis "Instructions") - (description - "Package check is a rich testing extension for Go's testing package. -") - (license license:bsd-2))) - -(define-public go-gopkg-in-errgo-v2-2.1.0 - (package - (name "go-gopkg-in-errgo-v2") - (version "2.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/errgo.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "065mbihiy7q67wnql0bzl9y1kkvck5ivra68254zbih52jxwrgr2")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/errgo.v2" #:unpack-path "gopkg.in/errgo.v2")) - (propagated-inputs - `(("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" - ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) - ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0))) - (home-page "https://gopkg.in/errgo.v2") - (synopsis #f) - (description - "Package errgo provides some primitives for error creation and handling.") - (license license:bsd-3))) - -(define-public go-github-com-rogpeppe-go-internal-1.3.0 - (package - (name "go-github-com-rogpeppe-go-internal") - (version "1.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/rogpeppe/go-internal") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0mcdh1licgnnahwml9y2iq6xy5x9xmjw5frcnds2s3wpjyqrl216")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/rogpeppe/go-internal")) - (propagated-inputs - `(("go-gopkg-in-errgo-v2-2.1.0" ,go-gopkg-in-errgo-v2-2.1.0))) - (home-page "https://github.com/rogpeppe/go-internal") - (synopsis #f) - (description - "This repository factors out an opinionated selection of internal packages and functionality from the Go standard -library. Currently this consists mostly of packages and testing code from within the Go tool implementation.") - (license license:bsd-3))) - -(define-public go-golang-org-x-crypto-0.0.0-20190510104115-cbcb75029529 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20190510104115-cbcb75029529") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12831ga1gq04a3jbbcmww7kaqfdfgp7cdv2fj9aqidz8h52ajdmh")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" - ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) - ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" - ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-mod-0.0.0-20190513183733-4bf6d317e70e - (package - (name "go-golang-org-x-mod") - (version "0.0.0-20190513183733-4bf6d317e70e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/mod") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19lg1ly3j31anx92p0hynic1gjk417wwxphfdrb2cq1c19kj3r17")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/mod")) - (propagated-inputs - `(("go-golang-org-x-crypto-0.0.0-20190510104115-cbcb75029529" - ,go-golang-org-x-crypto-0.0.0-20190510104115-cbcb75029529))) - (home-page "https://golang.org/x/mod") - (synopsis "mod") - (description - "This repository holds packages for writing tools -that work directly with Go module mechanics. -That is, it is for direct manipulation of Go modules themselves.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20191130070609-6e064ea0cf2d - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20191130070609-6e064ea0cf2d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1nbki367xspsa37j6276f5q2gv31vfjpb52axn3p3ymz548my75d")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7" - ,go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7) - ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" - ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) - ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" - ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-honnef-co-go-tools-0.0.1-2020.1.3 - (package - (name "go-honnef-co-go-tools") - (version "0.0.1-2020.1.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/dominikh/go-tools") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0pvi1mzhy6zgx4zfgdypbl4zhvgg11hl5qv7blf2qs0a96j2djhf")))) - (build-system go-build-system) - (arguments '(#:import-path "honnef.co/go/tools")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20191130070609-6e064ea0cf2d" - ,go-golang-org-x-tools-0.0.0-20191130070609-6e064ea0cf2d) - ("go-golang-org-x-mod-0.0.0-20190513183733-4bf6d317e70e" - ,go-golang-org-x-mod-0.0.0-20190513183733-4bf6d317e70e) - ("go-github-com-rogpeppe-go-internal-1.3.0" - ,go-github-com-rogpeppe-go-internal-1.3.0) - ("go-github-com-kisielk-gotool-1.0.0" - ,go-github-com-kisielk-gotool-1.0.0) - ("go-github-com-google-renameio-0.1.0" - ,go-github-com-google-renameio-0.1.0) - ("go-github-com-burntsushi-toml-0.3.1" - ,go-github-com-burntsushi-toml-0.3.1))) - (home-page "https://honnef.co/go/tools") - (synopsis "Documentation") - (description - "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, -offers simplifications, and enforces style rules.") - (license license:expat))) - -(define-public go-cloud-google-com-go-0.56.0 - (package - (name "go-cloud-google-com-go") - (version "0.56.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-cloud-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1bpx84q7byxr5rp197qcg3pl56acs8v1q555frxgcqygxwjacszf")))) - (build-system go-build-system) - (arguments '(#:import-path "cloud.google.com/go")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.1-2020.1.3" - ,go-honnef-co-go-tools-0.0.1-2020.1.3) - ("go-google-golang-org-grpc-1.28.0" ,go-google-golang-org-grpc-1.28.0) - ("go-google-golang-org-genproto-0.0.0-20200331122359-1ee6d9798940" - ,go-google-golang-org-genproto-0.0.0-20200331122359-1ee6d9798940) - ("go-google-golang-org-api-0.20.0" ,go-google-golang-org-api-0.20.0) - ("go-golang-org-x-tools-0.0.0-20200331025713-a30bf2db82d4" - ,go-golang-org-x-tools-0.0.0-20200331025713-a30bf2db82d4) - ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) - ("go-golang-org-x-sys-0.0.0-20200331124033-c3d80250170d" - ,go-golang-org-x-sys-0.0.0-20200331124033-c3d80250170d) - ("go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a" - ,go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a) - ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" - ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) - ("go-golang-org-x-net-0.0.0-20200324143707-d3edc9973b7e" - ,go-golang-org-x-net-0.0.0-20200324143707-d3edc9973b7e) - ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" - ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) - ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) - ("go-github-com-jstemmer-go-junit-report-0.9.1" - ,go-github-com-jstemmer-go-junit-report-0.9.1) - ("go-github-com-googleapis-gax-go-v2-2.0.5" - ,go-github-com-googleapis-gax-go-v2-2.0.5) - ("go-github-com-google-pprof-0.0.0-20200229191704-1ebb73c60ed3" - ,go-github-com-google-pprof-0.0.0-20200229191704-1ebb73c60ed3) - ("go-github-com-google-martian-2.1.0+incompatible" - ,go-github-com-google-martian-2.1.0+incompatible) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.3.5" - ,go-github-com-golang-protobuf-1.3.5) - ("go-github-com-golang-mock-1.4.3" ,go-github-com-golang-mock-1.4.3) - ("go-cloud-google-com-go-storage-1.6.0" - ,go-cloud-google-com-go-storage-1.6.0) - ("go-cloud-google-com-go-pubsub-1.2.0" - ,go-cloud-google-com-go-pubsub-1.2.0) - ("go-cloud-google-com-go-datastore-1.1.0" - ,go-cloud-google-com-go-datastore-1.1.0) - ("go-cloud-google-com-go-bigquery-1.4.0" - ,go-cloud-google-com-go-bigquery-1.4.0))) - (home-page "https://cloud.google.com/go") - (synopsis "Google Cloud Client Libraries for Go") - (description - "Package cloud is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -of sub-packages. -") - (license license:asl2.0))) - -(define-public go-go-opencensus-io-0.22.3 - (package - (name "go-go-opencensus-io") - (version "0.22.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/census-instrumentation/opencensus-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0xj16iq5jp26hi2py7lsd8cvqh651fgn39y05gzvjdi88d9xd3nw")))) - (build-system go-build-system) - (arguments '(#:import-path "go.opencensus.io")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.20.1" ,go-google-golang-org-grpc-1.20.1) - ("go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb" - ,go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb) - ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) - ("go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd" - ,go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd) - ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" - ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) - ("go-github-com-stretchr-testify-1.4.0" - ,go-github-com-stretchr-testify-1.4.0) - ("go-github-com-google-go-cmp-0.3.0" - ,go-github-com-google-go-cmp-0.3.0) - ("go-github-com-golang-protobuf-1.3.1" - ,go-github-com-golang-protobuf-1.3.1) - ("go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6" - ,go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6))) - (home-page "https://go.opencensus.io") - (synopsis "OpenCensus Libraries for Go") - (description "Package opencensus contains Go support for OpenCensus. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20200317015054-43a5402ce75a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0j6zrrb81qjr1926kkwmn0di9a0jn8qyjd9dw614rfkihxgq1vsm")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the -ones provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20200331124033-c3d80250170d - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200331124033-c3d80250170d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1nswjhkg7yixla0b3d8xwzf94rawwyjrxipay3ffdvm426n0ld42")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-yuin-goldmark-1.1.25 - (package - (name "go-github-com-yuin-goldmark") - (version "1.1.25") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/yuin/goldmark") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0cr3mk8pr7vsyisgrvln5ailnnn9xhardcy8mkshybk5c3n1kw5k")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/yuin/goldmark")) - (home-page "https://github.com/yuin/goldmark") - (synopsis "goldmark") - (description - "Package goldmark implements functions to convert markdown text to a desired format. -") - (license license:expat))) - -(define-public go-golang-org-x-mod-0.2.0 - (package - (name "go-golang-org-x-mod") - (version "0.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/mod") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fp6885dclq77mh73v7i54v2b9llpv4di193zc8vmsbbkkc483cl")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/mod")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" - ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) - ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" - ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) - ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" - ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) - (home-page "https://golang.org/x/mod") - (synopsis "mod") - (description - "This repository holds packages for writing tools -that work directly with Go module mechanics. -That is, it is for direct manipulation of Go modules themselves.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b - (package - (name "go-golang-org-x-net") - (version "0.0.0-20200226121028-0de0cce0169b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1db7s5kbzyh2zd5lpv05n7hp8wbwdvgk0wpiwrlnig94mkr0y5aq")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20190911185100-cd5d95a43a6e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1nqkyz2y1qvqcma52ijh02s8aiqmkfb95j08f6zcjhbga3ds6hds")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the -ones provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20200331025713-a30bf2db82d4 - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20200331025713-a30bf2db82d4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1rb488ydwi24zmd1zvsv8k8srs3q6xnqqfdar538hssqgljyvp7l")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) - ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" - ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) - ("go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b" - ,go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b) - ("go-golang-org-x-mod-0.2.0" ,go-golang-org-x-mod-0.2.0) - ("go-github-com-yuin-goldmark-1.1.25" - ,go-github-com-yuin-goldmark-1.1.25))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-google-golang-org-appengine-1.6.5 - (package - (name "go-google-golang-org-appengine") - (version "1.6.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/appengine") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "05hbq4cs7bqw0zl17bx8rzdkszid3nyl92100scg3jjrg70dhm7w")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/appengine")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) - ("go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65" - ,go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65) - ("go-github-com-golang-protobuf-1.3.1" - ,go-github-com-golang-protobuf-1.3.1))) - (home-page "https://google.golang.org/appengine") - (synopsis "Go App Engine packages") - (description - "Package appengine provides basic functionality for Google App Engine. -") - (license license:asl2.0))) - -(define-public go-google-golang-org-genproto-0.0.0-20200331122359-1ee6d9798940 - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20200331122359-1ee6d9798940") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1zsp55d7xjc0b3yw5jjpvbsc0gkji1c1j2vxmcwm89dh26rz4jwd")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" - ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-golang-protobuf-1.3.3" - ,go-github-com-golang-protobuf-1.3.3))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-google-golang-org-grpc-1.28.0 - (package - (name "go-google-golang-org-grpc") - (version "1.28.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1m36rg3w2mf4r3383yf0r1pjrz890mdw506h1lpm6bkc8w3kyqz3")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" - ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-github-com-google-go-cmp-0.2.0" - ,go-github-com-google-go-cmp-0.2.0) - ("go-github-com-golang-protobuf-1.3.3" - ,go-github-com-golang-protobuf-1.3.3) - ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" - ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) - ("go-github-com-envoyproxy-go-control-plane-0.9.4" - ,go-github-com-envoyproxy-go-control-plane-0.9.4))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-google-golang-org-api-0.29.0 - (package - (name "go-google-golang-org-api") - (version "0.29.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-api-go-client") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1y6izqcc6krill33pb57fbgbs7ni3jxyf3knm5jkl4qydsj9303h")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/api")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.28.0" ,go-google-golang-org-grpc-1.28.0) - ("go-google-golang-org-genproto-0.0.0-20200331122359-1ee6d9798940" - ,go-google-golang-org-genproto-0.0.0-20200331122359-1ee6d9798940) - ("go-google-golang-org-appengine-1.6.5" - ,go-google-golang-org-appengine-1.6.5) - ("go-golang-org-x-tools-0.0.0-20200331025713-a30bf2db82d4" - ,go-golang-org-x-tools-0.0.0-20200331025713-a30bf2db82d4) - ("go-golang-org-x-sys-0.0.0-20200331124033-c3d80250170d" - ,go-golang-org-x-sys-0.0.0-20200331124033-c3d80250170d) - ("go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a" - ,go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a) - ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" - ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) - ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" - ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) - ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) - ("go-github-com-googleapis-gax-go-v2-2.0.5" - ,go-github-com-googleapis-gax-go-v2-2.0.5) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-cloud-google-com-go-0.56.0" ,go-cloud-google-com-go-0.56.0))) - (home-page "https://google.golang.org/api") - (synopsis "Google APIs Client Library for Go") - (description - "Package api is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of -sub-packages. -") - (license license:bsd-3))) - -(define-public go-google-golang-org-genproto-0.0.0-20200729003335-053ba62fc06f - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20200729003335-053ba62fc06f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1h34qgr4lqy1l0niay3gzqh6pc63y2xh1mmp8757y8jsrdz1s5fv")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.24.0" - ,go-google-golang-org-protobuf-1.24.0) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-golang-protobuf-1.4.1" - ,go-github-com-golang-protobuf-1.4.1))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-google-golang-org-grpc-1.30.0 - (package - (name "go-google-golang-org-grpc") - (version "1.30.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "05pb9xrxd7kpbi8zzby90f87b6sxq65nmpgqx5h3255whmmpzbi9")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" - ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.3.3" - ,go-github-com-golang-protobuf-1.3.3) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-envoyproxy-go-control-plane-0.9.4" - ,go-github-com-envoyproxy-go-control-plane-0.9.4) - ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" - ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-cloud-google-com-go-0.62.0 - (package - (name "go-cloud-google-com-go") - (version "0.62.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-cloud-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "00x1nlq4fvvxrwx24firscav511qwck3zl6ghs9p6zzzixla8r5h")))) - (build-system go-build-system) - (arguments '(#:import-path "cloud.google.com/go")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.25.0" - ,go-google-golang-org-protobuf-1.25.0) - ("go-google-golang-org-grpc-1.30.0" ,go-google-golang-org-grpc-1.30.0) - ("go-google-golang-org-genproto-0.0.0-20200729003335-053ba62fc06f" - ,go-google-golang-org-genproto-0.0.0-20200729003335-053ba62fc06f) - ("go-google-golang-org-api-0.29.0" ,go-google-golang-org-api-0.29.0) - ("go-golang-org-x-tools-0.0.0-20200729194436-6467de6f59a7" - ,go-golang-org-x-tools-0.0.0-20200729194436-6467de6f59a7) - ("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) - ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" - ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) - ("go-golang-org-x-net-0.0.0-20200707034311-ab3426394381" - ,go-golang-org-x-net-0.0.0-20200707034311-ab3426394381) - ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" - ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) - ("go-go-opencensus-io-0.22.4" ,go-go-opencensus-io-0.22.4) - ("go-github-com-jstemmer-go-junit-report-0.9.1" - ,go-github-com-jstemmer-go-junit-report-0.9.1) - ("go-github-com-googleapis-gax-go-v2-2.0.5" - ,go-github-com-googleapis-gax-go-v2-2.0.5) - ("go-github-com-google-pprof-0.0.0-20200708004538-1a94d8640e99" - ,go-github-com-google-pprof-0.0.0-20200708004538-1a94d8640e99) - ("go-github-com-google-martian-v3-3.0.0" - ,go-github-com-google-martian-v3-3.0.0) - ("go-github-com-google-go-cmp-0.5.1" - ,go-github-com-google-go-cmp-0.5.1) - ("go-github-com-golang-protobuf-1.4.2" - ,go-github-com-golang-protobuf-1.4.2) - ("go-github-com-golang-mock-1.4.3" ,go-github-com-golang-mock-1.4.3) - ("go-cloud-google-com-go-storage-1.10.0" - ,go-cloud-google-com-go-storage-1.10.0))) - (home-page "https://cloud.google.com/go") - (synopsis "Google Cloud Client Libraries for Go") - (description - "Package cloud is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -of sub-packages. -") - (license license:asl2.0))) - -(define-public go-github-com-google-go-cmp-0.5.1 - (package - (name "go-github-com-google-go-cmp") - (version "0.5.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1wjdid59brciv09agxgmqac5k9ywg63nhzb0yi9anmqpl38gps0p")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") - (license license:bsd-3))) - -(define-public go-github-com-googleapis-gax-go-v2-2.0.5 - (package - (name "go-github-com-googleapis-gax-go-v2") - (version "2.0.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/gax-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1lxawwngv6miaqd25s3ba0didfzylbwisd2nz7r4gmbmin6jsjrx")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/googleapis/gax-go/v2")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.19.0" - ,go-google-golang-org-grpc-1.19.0))) - (home-page "https://github.com/googleapis/gax-go") - (synopsis #f) - (description - "Package gax contains a set of modules which aid the development of APIs -for clients and servers based on gRPC and Google API conventions. -") - (license license:bsd-3))) - -(define-public go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6 - (package - (name "go-github-com-golang-groupcache") - (version "0.0.0-20190702054246-869f871628b6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/groupcache") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0r4nk8129bvx50qb4xzjaay39b2h6k7cbdqqzdlanmc82ygczsbw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/groupcache")) - (home-page "https://github.com/golang/groupcache") - (synopsis "groupcache") - (description - "Package groupcache provides a data loading mechanism with caching -and de-duplication that works across a set of peer processes. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190502145724-3ef323f4f1fd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "15iw4gjvrnrx98rlny1qcaprp3577rh2b77byb38dr6m3q42rvc6")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6 - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20190227155943-e225da77a7e6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0bh3583smcfw6jw3w6lp0za93rz7hpxfdz8vhxng75b7a6vdlw4p")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the -ones provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20190425155659-357c62f0e4bb") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1h1a0wys83cc86s4w2hqmz78ixijw8f7qchmiwdv5xjvpg0i27c2")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" - ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) - ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) - ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" - ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) - ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" - ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) - ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" - ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd) - ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" - ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) - ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" - ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-google-golang-org-grpc-1.20.1 - (package - (name "go-google-golang-org-grpc") - (version "1.20.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0rj3fs6jillapiwnpkfn3v2jbl7a3zsb0lys4srswl26hjijviqq")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" - ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) - ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" - ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) - ("go-google-golang-org-appengine-1.1.0" - ,go-google-golang-org-appengine-1.1.0) - ("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" - ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" - ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0) - ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-client9-misspell-0.3.4" - ,go-github-com-client9-misspell-0.3.4) - ("go-github-com-burntsushi-toml-0.3.1" - ,go-github-com-burntsushi-toml-0.3.1) - ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-go-opencensus-io-0.22.4 - (package - (name "go-go-opencensus-io") - (version "0.22.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/census-instrumentation/opencensus-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "10skbvs4yxjm3z10yfg5cj2mdzjsna87qk1icp9xv0iwp8wzq6h0")))) - (build-system go-build-system) - (arguments '(#:import-path "go.opencensus.io")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.20.1" ,go-google-golang-org-grpc-1.20.1) - ("go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb" - ,go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb) - ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) - ("go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd" - ,go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd) - ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" - ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) - ("go-github-com-stretchr-testify-1.4.0" - ,go-github-com-stretchr-testify-1.4.0) - ("go-github-com-google-go-cmp-0.3.0" - ,go-github-com-google-go-cmp-0.3.0) - ("go-github-com-golang-protobuf-1.3.1" - ,go-github-com-golang-protobuf-1.3.1) - ("go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6" - ,go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6))) - (home-page "https://go.opencensus.io") - (synopsis "OpenCensus Libraries for Go") - (description "Package opencensus contains Go support for OpenCensus. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b - (package - (name "go-golang-org-x-lint") - (version "0.0.0-20200302205851-738671d3881b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/lint") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0jkiz4py59jjnkyxbxifpf7bsar11lbgmj5jiq2kic5k03shkn9c")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/lint")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7" - ,go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7))) - (home-page "https://golang.org/x/lint") - (synopsis "Installation") - (description "Package lint contains a linter for Go source code. -") - (license license:bsd-3))) - -(define-public go-cloud-google-com-go-0.34.0 - (package - (name "go-cloud-google-com-go") - (version "0.34.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-cloud-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1kclgclwar3r37zbvb9gg3qxbgzkb50zk3s9778zlh2773qikmai")))) - (build-system go-build-system) - (arguments '(#:import-path "cloud.google.com/go")) - (home-page "https://cloud.google.com/go") - (synopsis "Google Cloud Client Libraries for Go") - (description - "Package cloud is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -of sub-packages. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190108225652-1e06a53dbb7e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0lpqqvdccby48nixihvmn8ig1z48b950m1bxfqxn78air308qc3j")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4 - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20181221193216-37e7f081c4d4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1bb0mw6ckb1k7z8v3iil2qlqwfj408fvvp8m1cik2b46p7snyjhm")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the -ones provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d - (package - (name "go-golang-org-x-oauth2") - (version "0.0.0-20200107190931-bf48bf16ab8d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/oauth2") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1sirdib60zwmh93kf9qrx51r8544k1p9rs5mk0797wibz3m4mrdg")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/oauth2")) - (propagated-inputs - `(("go-google-golang-org-appengine-1.4.0" - ,go-google-golang-org-appengine-1.4.0) - ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" - ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) - ("go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e" - ,go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e) - ("go-cloud-google-com-go-0.34.0" ,go-cloud-google-com-go-0.34.0))) - (home-page "https://golang.org/x/oauth2") - (synopsis "OAuth2 for Go") - (description - "Package oauth2 provides support for making -OAuth2 authorized and authenticated HTTP requests, -as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -It can additionally grant authorization with Bearer JWT. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20200803210538-64077c9b5642 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200803210538-64077c9b5642") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1pdrkim9v0wbxipl586d29vz4ci9xib0f02g6yv7c0nang627pag")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-yuin-goldmark-1.1.32 - (package - (name "go-github-com-yuin-goldmark") - (version "1.1.32") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/yuin/goldmark") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "03i9yq6n3yvn5v70xi6x3pn49ndy8zm4217ihwwhlw2nkwhny7a5")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/yuin/goldmark")) - (home-page "https://github.com/yuin/goldmark") - (synopsis "goldmark") - (description - "Package goldmark implements functions to convert markdown text to a desired format. -") - (license license:expat))) - -(define-public go-golang-org-x-net-0.0.0-20200625001655-4c5254603344 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20200625001655-4c5254603344") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1da0a1m488d95vggpi52dkag98n5671ml6sn80nwv6lgbmdx8qbq")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" - ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) - ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" - ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208 - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20200625203802-6e8e738ad208") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1avk27pszd5l5df6ff7j78wgla46ir1hhy2jwfl9a3c0ys602yx9")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the -ones provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20200804011535-6c149bb5ef0d - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20200804011535-6c149bb5ef0d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1l244hp5n0qff7nmvcffggjv7jm4061g63g76z967zvdqcxh23i2")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) - ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" - ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) - ("go-golang-org-x-net-0.0.0-20200625001655-4c5254603344" - ,go-golang-org-x-net-0.0.0-20200625001655-4c5254603344) - ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) - ("go-github-com-yuin-goldmark-1.1.32" - ,go-github-com-yuin-goldmark-1.1.32))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-google-golang-org-genproto-0.0.0-20200804131852-c06518451d9c - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20200804131852-c06518451d9c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0wl9bhr94yf0b8lc947zr0iwm3l20irzy869xczfd6z0a1g54gsa")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.24.0" - ,go-google-golang-org-protobuf-1.24.0) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-golang-protobuf-1.4.1" - ,go-github-com-golang-protobuf-1.4.1))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-google-golang-org-api-0.30.0 - (package - (name "go-google-golang-org-api") - (version "0.30.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-api-go-client") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1vh5rrc6hvzh1rqawrwr4nyilnr3dgqx1pr2njjzdg0prfmflm5p")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/api")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.31.0" ,go-google-golang-org-grpc-1.31.0) - ("go-google-golang-org-genproto-0.0.0-20200804131852-c06518451d9c" - ,go-google-golang-org-genproto-0.0.0-20200804131852-c06518451d9c) - ("go-google-golang-org-appengine-1.6.6" - ,go-google-golang-org-appengine-1.6.6) - ("go-golang-org-x-tools-0.0.0-20200804011535-6c149bb5ef0d" - ,go-golang-org-x-tools-0.0.0-20200804011535-6c149bb5ef0d) - ("go-golang-org-x-sys-0.0.0-20200803210538-64077c9b5642" - ,go-golang-org-x-sys-0.0.0-20200803210538-64077c9b5642) - ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" - ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) - ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" - ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) - ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" - ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) - ("go-go-opencensus-io-0.22.4" ,go-go-opencensus-io-0.22.4) - ("go-github-com-googleapis-gax-go-v2-2.0.5" - ,go-github-com-googleapis-gax-go-v2-2.0.5) - ("go-github-com-google-go-cmp-0.5.1" - ,go-github-com-google-go-cmp-0.5.1) - ("go-cloud-google-com-go-0.62.0" ,go-cloud-google-com-go-0.62.0))) - (home-page "https://google.golang.org/api") - (synopsis "Google APIs Client Library for Go") - (description - "Package api is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of -sub-packages. -") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-1.24.0 - (package - (name "go-google-golang-org-protobuf") - (version "1.24.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0x3qyn3rizbs671gs7f8v50rmiwf9h7kbaradpivw9718mhbg1gn")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" - ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.1" - ,go-github-com-golang-protobuf-1.4.1))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-google-golang-org-genproto-0.0.0-20200825200019-8632dd797987 - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20200825200019-8632dd797987") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0h8s1mz8pbdiwmv2g61afa7f05zin3m6mdy2fmny6wcidz4w2i3k")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.24.0" - ,go-google-golang-org-protobuf-1.24.0) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-golang-protobuf-1.4.1" - ,go-github-com-golang-protobuf-1.4.1))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f - (package - (name "go-github-com-cncf-udpa-go") - (version "0.0.0-20191209042840-269d4d468f6f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cncf/udpa") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0i1jiaw2k3hlwwmg4hap81vb4s1p25xp9kdfww37v0fbgjariccs")))) - (build-system go-build-system) - (arguments - '(#:import-path - "github.com/cncf/udpa/go" - #:unpack-path - "github.com/cncf/udpa")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2) - ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" - ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0))) - (home-page "https://github.com/cncf/udpa") - (synopsis "Description") - (description - "This library has been deprecated in favor of @code{github.com/cncf/xds/go}. All users are recommended to switch their imports.") - (license license:asl2.0))) - -(define-public go-github-com-envoyproxy-go-control-plane-0.9.4 - (package - (name "go-github-com-envoyproxy-go-control-plane") - (version "0.9.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/envoyproxy/go-control-plane") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0m0crzx70lp7vz13v20wxb1fcfdnzp7h3mkh3bn6a8mbfz6w5asj")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) - ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" - ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) - ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" - ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) - ("go-github-com-google-go-cmp-0.2.0" - ,go-github-com-google-go-cmp-0.2.0) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2) - ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" - ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) - ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" - ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f) - ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" - ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) - (home-page "https://github.com/envoyproxy/go-control-plane") - (synopsis "control-plane") - (description - "This repository contains a Go-based implementation of an API server that -implements the discovery service APIs defined in -@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") - (license license:asl2.0))) - -(define-public go-github-com-golang-protobuf-1.3.3 - (package - (name "go-github-com-golang-protobuf") - (version "1.3.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1cyyr52yhj3fzrily3rmsbqyj8va4ld75lmry0857m39rgpv8sy1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-google-golang-org-grpc-1.31.0 - (package - (name "go-google-golang-org-grpc") - (version "1.31.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1y3lilpipmaysjk4skbzw1qa6lv05vzixzw9lg9x73xfb01q4nyz")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" - ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.3.3" - ,go-github-com-golang-protobuf-1.3.3) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-envoyproxy-go-control-plane-0.9.4" - ,go-github-com-envoyproxy-go-control-plane-0.9.4) - ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" - ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-cloud-google-com-go-0.65.0 - (package - (name "go-cloud-google-com-go") - (version "0.65.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-cloud-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0xrcg39jrw90gq8vl8pfq63sp3bkak04wh392yj5rh4lc1a4lxjq")))) - (build-system go-build-system) - (arguments '(#:import-path "cloud.google.com/go")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.31.0" ,go-google-golang-org-grpc-1.31.0) - ("go-google-golang-org-genproto-0.0.0-20200825200019-8632dd797987" - ,go-google-golang-org-genproto-0.0.0-20200825200019-8632dd797987) - ("go-google-golang-org-api-0.30.0" ,go-google-golang-org-api-0.30.0) - ("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" - ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) - ("go-golang-org-x-tools-0.0.0-20200825202427-b303f430e36d" - ,go-golang-org-x-tools-0.0.0-20200825202427-b303f430e36d) - ("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) - ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" - ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) - ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" - ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) - ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" - ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) - ("go-go-opencensus-io-0.22.4" ,go-go-opencensus-io-0.22.4) - ("go-github-com-jstemmer-go-junit-report-0.9.1" - ,go-github-com-jstemmer-go-junit-report-0.9.1) - ("go-github-com-googleapis-gax-go-v2-2.0.5" - ,go-github-com-googleapis-gax-go-v2-2.0.5) - ("go-github-com-google-pprof-0.0.0-20200708004538-1a94d8640e99" - ,go-github-com-google-pprof-0.0.0-20200708004538-1a94d8640e99) - ("go-github-com-google-martian-v3-3.0.0" - ,go-github-com-google-martian-v3-3.0.0) - ("go-github-com-google-go-cmp-0.5.1" - ,go-github-com-google-go-cmp-0.5.1) - ("go-github-com-golang-protobuf-1.4.2" - ,go-github-com-golang-protobuf-1.4.2) - ("go-github-com-golang-mock-1.4.4" ,go-github-com-golang-mock-1.4.4) - ("go-cloud-google-com-go-storage-1.10.0" - ,go-cloud-google-com-go-storage-1.10.0))) - (home-page "https://cloud.google.com/go") - (synopsis "Google Cloud Client Libraries for Go") - (description - "Package cloud is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -of sub-packages. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200323222414-85ca7c5b95cd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1504qkgbhhm4f0bhk77v2r1lj6x171ay5m79alkg78wjb5cign5l")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20200822124328-c89045814202 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20200822124328-c89045814202") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1g3wxilwbcbf2xj20y3mpxh38jka4fyhl48akfqf00vr48zmx96x")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" - ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) - ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" - ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-google-golang-org-appengine-1.6.6 - (package - (name "go-google-golang-org-appengine") - (version "1.6.6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/appengine") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "15c38h6fbv06cnkr6yknygfrpibyms2mya4w0l29kaxf42jn1qi5")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/appengine")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) - ("go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65" - ,go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65) - ("go-github-com-golang-protobuf-1.3.1" - ,go-github-com-golang-protobuf-1.3.1))) - (home-page "https://google.golang.org/appengine") - (synopsis "Go App Engine packages") - (description - "Package appengine provides basic functionality for Google App Engine. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-oauth2-0.0.0-20210402161424-2e8d93401602 - (package - (name "go-golang-org-x-oauth2") - (version "0.0.0-20210402161424-2e8d93401602") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/oauth2") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0j1crxa78gip3hxrds5jngi034j4zm4q3z7r8bqs3rjxnwcki9ig")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/oauth2")) - (propagated-inputs - `(("go-google-golang-org-appengine-1.6.6" - ,go-google-golang-org-appengine-1.6.6) - ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" - ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) - ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) - (home-page "https://golang.org/x/oauth2") - (synopsis "OAuth2 for Go") - (description - "Package oauth2 provides support for making -OAuth2 authorized and authenticated HTTP requests, -as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -It can additionally grant authorization with Bearer JWT. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20210220032951-036812b2e83c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1gl202py3s4gl6arkaxlf8qa6f0jyyg2f95m6f89qnfmr416h85b")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the -ones provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20210403161142-5e06dd20ab57 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20210403161142-5e06dd20ab57") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1acdn06771rxjg38ql9wl8dr1vf23nazjnvk6105z3hddnh14fgb")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.3.1 - (package - (name "go-github-com-golang-protobuf") - (version "1.3.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "15am4s4646qy6iv0g3kkqq52rzykqjhm4bf08dk0fy2r58knpsyl")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190603091049-60506f45cf65") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0827yz7irmnzcdhw8vg74819jaw5ahs4w4v5fvzgfvnxyb9f6zcc")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-text-0.3.2 - (package - (name "go-golang-org-x-text") - (version "0.3.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0flv9idw0jm5nm8lx25xqanbkqgfiym6619w575p7nrdh0riqwqh")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/text")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" - ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) - (home-page "https://golang.org/x/text") - (synopsis "Go Text") - (description - "text is a repository of text-related packages related to internationalization -(i18n) and localization (l10n), such as character encodings, text -transformations, and locale-specific text handling. -") - (license license:bsd-3))) - -(define-public go-google-golang-org-appengine-1.6.7 - (package - (name "go-google-golang-org-appengine") - (version "1.6.7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/appengine") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1wkipg7xxc0ha5p6c3bj0vpgq38l18441n5l6zxdhx0gzvz5z1hs")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/appengine")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) - ("go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65" - ,go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65) - ("go-github-com-golang-protobuf-1.3.1" - ,go-github-com-golang-protobuf-1.3.1))) - (home-page "https://google.golang.org/appengine") - (synopsis "Go App Engine packages") - (description - "Package appengine provides basic functionality for Google App Engine. -") - (license license:asl2.0))) - -(define-public go-github-com-golang-protobuf-1.5.1 - (package - (name "go-github-com-golang-protobuf") - (version "1.5.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1qx8gvsdx1w27vamw6wn1jns2d8pz0g9sji3l0hvs4wl1jf7p32d")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.26.0" - ,go-google-golang-org-protobuf-1.26.0) - ("go-github-com-google-go-cmp-0.5.5" - ,go-github-com-google-go-cmp-0.5.5))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-golang-org-x-mod-0.1.1-0.20191105210325-c90efee705ee - (package - (name "go-golang-org-x-mod") - (version "0.1.1-0.20191105210325-c90efee705ee") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/mod") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0i5md645rmcy5z5ij9ng428k9rz4g3k1kjy3blsq1264rn426gdf")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/mod")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" - ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) - ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" - ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) - (home-page "https://golang.org/x/mod") - (synopsis "mod") - (description - "This repository holds packages for writing tools -that work directly with Go module mechanics. -That is, it is for direct manipulation of Go modules themselves.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7 - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20200130002326-2f3ba24bd6e7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0j3nnmlwnbivf0h9x89vlp8ji3ha41v96bj33cxwmrrjnxq543ww")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" - ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) - ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" - ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) - ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" - ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) - ("go-golang-org-x-mod-0.1.1-0.20191105210325-c90efee705ee" - ,go-golang-org-x-mod-0.1.1-0.20191105210325-c90efee705ee))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5 - (package - (name "go-golang-org-x-lint") - (version "0.0.0-20201208152925-83fdc39ff7b5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/lint") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ms3rs5hvpnm9bxbr5f9743i7hn2bbmqdmvzxq6nmi0f24ypv1l3")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/lint")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7" - ,go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7))) - (home-page "https://golang.org/x/lint") - (synopsis "Installation") - (description "Package lint contains a linter for Go source code. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20210315160823-c6e025ad8005 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20210315160823-c6e025ad8005") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1dy8j3gvbkng0vy2wgdiy48871j4vchgsks2ggfxcx4jg32d2qsr")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20210316092652-d523dce5a7f4 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20210316092652-d523dce5a7f4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "01hhvh6msyg11adxhgjwzbv4jprq5ajzkxxb16ln3dqv4na9b2k1")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) - ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" - ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) - ("go-golang-org-x-sys-0.0.0-20210315160823-c6e025ad8005" - ,go-golang-org-x-sys-0.0.0-20210315160823-c6e025ad8005))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20210320140829-1e4c9ba3b0c4 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20210320140829-1e4c9ba3b0c4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0nrxjq5j058sba9s5g65l5rdw6b4f335lxa7hhcf57paklym1qgr")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-text-0.3.5 - (package - (name "go-golang-org-x-text") - (version "0.3.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "082s9d7wnh1aa2v08g3h5z4if2f8hl4y01pb788qsvab9329lj0w")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/text")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" - ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) - (home-page "https://golang.org/x/text") - (synopsis "Go Text") - (description - "text is a repository of text-related packages related to internationalization -(i18n) and localization (l10n), such as character encodings, text -transformations, and locale-specific text handling. -") - (license license:bsd-3))) - -(define-public go-github-com-yuin-goldmark-1.2.1 - (package - (name "go-github-com-yuin-goldmark") - (version "1.2.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/yuin/goldmark") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12rsnsf65drcp0jfw2jl9w589vsn3pxdk1zh3v9q908iigngrcmy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/yuin/goldmark")) - (home-page "https://github.com/yuin/goldmark") - (synopsis "goldmark") - (description - "Package goldmark implements functions to convert markdown text to a desired format. -") - (license license:expat))) - -(define-public go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20191011191535-87dc89f01550") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0z4i1m2yn3f31ci7wvcm2rxkx2yiv7a78mfzklncmsz2k97rlh2g")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" - ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) - ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" - ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190620200207-3b0461eec859") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0l00c8l0a8xnv6qdpwfzxxsr58jggacgzdrwiprrfx2xqm37b6d5")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7 - (package - (name "go-golang-org-x-xerrors") - (version "0.0.0-20190717185122-a985d3407aa7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/xerrors") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "00wzr5w8aadipgc3rkk8f11i41znskfj9ix5nhhaxyg7isrslgcj")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/xerrors")) - (home-page "https://golang.org/x/xerrors") - (synopsis #f) - (description - "Package xerrors implements functions to manipulate errors. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20191119224855-298f0cb1881e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0l4pqwib2wnfnix6nvxl0yrq87ipi7ff1rz6z5bxfzy9dki1nzmv")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7" - ,go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7) - ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" - ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) - ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" - ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898 - (package - (name "go-golang-org-x-xerrors") - (version "0.0.0-20191011141410-1b5146add898") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/xerrors") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0w2akj91krxjag0xdhsg78470888nicc5ismc2ap9jqpss6v1zih")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/xerrors")) - (home-page "https://golang.org/x/xerrors") - (synopsis #f) - (description - "Package xerrors implements functions to manipulate errors. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-mod-0.3.0 - (package - (name "go-golang-org-x-mod") - (version "0.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/mod") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ldgbx2zpprbsfn6p8pfgs4nn87gwbfcv2z0fa7n8alwsq2yw78q")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/mod")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" - ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) - ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" - ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) - ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" - ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) - (home-page "https://golang.org/x/mod") - (synopsis "mod") - (description - "This repository holds packages for writing tools -that work directly with Go module mechanics. -That is, it is for direct manipulation of Go modules themselves.") - (license license:bsd-3))) - -(define-public go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20200622213623-75b288015ac9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18vlncvvs11ds3zaaziqjlg5s2vcwi3496nn6qv7p0dp94j5pwa2")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" - ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) - ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" - ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200930185726-fdedc70b468f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1njlfhjbvi4lxvjbq8zswrb0y0q4jd2p6x51h1q6vmyzi9af6869")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20201021035429-f5854403a974 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20201021035429-f5854403a974") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1vw63zpmhi337f3gc432x3wkib4j2ia8dy7if31wxwb9dgqvy222")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) - ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" - ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) - ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" - ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9 - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20201020160332-67f06af15bc9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "093p4panc808ak5bamzz7m9nb0xxib7778jpnr6f0xkz1n4fzyw5")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the -ones provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20210119212857-b64e53b001e4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "16in6bazi0frdkzhqxyvmw7qcvzjavq21dnz9bmrqq8d4dpd2j44")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1 - (package - (name "go-golang-org-x-xerrors") - (version "0.0.0-20200804184101-5ec99f83aff1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/xerrors") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1dbzc3gmf2haazpv7cgmv97rq40g2xzwbglc17vas8dwhgwgwrzb")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/xerrors")) - (home-page "https://golang.org/x/xerrors") - (synopsis #f) - (description - "Package xerrors implements functions to manipulate errors. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.1.0 - (package - (name "go-golang-org-x-tools") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1asrm22kv5x891qkbpap8alg612k321jbs1akc0vwsan251gm507")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" - ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) - ("go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4" - ,go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4) - ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" - ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) - ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" - ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) - ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) - ("go-github-com-yuin-goldmark-1.2.1" - ,go-github-com-yuin-goldmark-1.2.1))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-1.26.0-rc.1 - (package - (name "go-google-golang-org-protobuf") - (version "1.26.0-rc.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1m2jp247qcnix42jncn0q7pwrjgbhiqllb1115hfsz40xfnfhp8j")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.5.5" - ,go-github-com-google-go-cmp-0.5.5))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.5.0 - (package - (name "go-github-com-golang-protobuf") - (version "1.5.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1craaxv34g4g8q3yrv6pr28fx9ihnk7hj5gnbmxcrhcp78423lnf")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.26.0-rc.1" - ,go-google-golang-org-protobuf-1.26.0-rc.1) - ("go-github-com-google-go-cmp-0.5.5" - ,go-github-com-google-go-cmp-0.5.5))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-github-com-google-go-cmp-0.5.5 - (package - (name "go-github-com-google-go-cmp") - (version "0.5.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12fmkdhyv5d4is8s57k78j097zb0phlgnrkqc03agiszxlid69x7")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-1.26.0 - (package - (name "go-google-golang-org-protobuf") - (version "1.26.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0xq6phaps6d0vcv13ga59gzj4306l0ki9kikhmb52h6pq0iwfqlz")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.5.5" - ,go-github-com-google-go-cmp-0.5.5) - ("go-github-com-golang-protobuf-1.5.0" - ,go-github-com-golang-protobuf-1.5.0))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-google-golang-org-genproto-0.0.0-20210402141018-6c239bbf2bb1 - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20210402141018-6c239bbf2bb1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1xih6y4dwjj939ilwc5s6w419kjnkn1hw33jsgml0nkjcnac74wc")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.26.0" - ,go-google-golang-org-protobuf-1.26.0) - ("go-google-golang-org-grpc-1.36.1" ,go-google-golang-org-grpc-1.36.1) - ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) - ("go-golang-org-x-text-0.3.5" ,go-golang-org-x-text-0.3.5) - ("go-golang-org-x-sys-0.0.0-20210320140829-1e4c9ba3b0c4" - ,go-golang-org-x-sys-0.0.0-20210320140829-1e4c9ba3b0c4) - ("go-golang-org-x-net-0.0.0-20210316092652-d523dce5a7f4" - ,go-golang-org-x-net-0.0.0-20210316092652-d523dce5a7f4) - ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" - ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) - ("go-github-com-golang-protobuf-1.5.1" - ,go-github-com-golang-protobuf-1.5.1))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad - (package - (name "go-github-com-envoyproxy-go-control-plane") - (version "0.9.9-0.20201210154907-fd9021fe5dad") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/envoyproxy/go-control-plane") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0piyk6pk36x2qr3bhys2k240pfwz3bv64fhi2l0vx1mzwiddapbm")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.23.0" - ,go-google-golang-org-protobuf-1.23.0) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" - ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) - ("go-github-com-stretchr-testify-1.5.1" - ,go-github-com-stretchr-testify-1.5.1) - ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" - ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.2" - ,go-github-com-golang-protobuf-1.4.2) - ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" - ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) - ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" - ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403) - ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" - ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) - (home-page "https://github.com/envoyproxy/go-control-plane") - (synopsis "control-plane") - (description - "This repository contains a Go-based implementation of an API server that -implements the discovery service APIs defined in -@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") - (license license:asl2.0))) - -(define-public go-google-golang-org-grpc-1.36.1 - (package - (name "go-google-golang-org-grpc") - (version "1.36.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0l3prxp18lb0pagqg4l6c9i0l6gakfxgf6vxcsv589i0xsxw8ivm")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.25.0" - ,go-google-golang-org-protobuf-1.25.0) - ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" - ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) - ("go-github-com-google-go-cmp-0.5.0" - ,go-github-com-google-go-cmp-0.5.0) - ("go-github-com-golang-protobuf-1.4.2" - ,go-github-com-golang-protobuf-1.4.2) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad" - ,go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad) - ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" - ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-google-golang-org-api-0.44.0 - (package - (name "go-google-golang-org-api") - (version "0.44.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-api-go-client") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0sh6qzc3pnyliy10afrmzpfbbbm2mwcyc6mp5422xhgp3p2x370x")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/api")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.36.1" ,go-google-golang-org-grpc-1.36.1) - ("go-google-golang-org-genproto-0.0.0-20210402141018-6c239bbf2bb1" - ,go-google-golang-org-genproto-0.0.0-20210402141018-6c239bbf2bb1) - ("go-google-golang-org-appengine-1.6.7" - ,go-google-golang-org-appengine-1.6.7) - ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) - ("go-golang-org-x-sys-0.0.0-20210403161142-5e06dd20ab57" - ,go-golang-org-x-sys-0.0.0-20210403161142-5e06dd20ab57) - ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" - ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) - ("go-golang-org-x-oauth2-0.0.0-20210402161424-2e8d93401602" - ,go-golang-org-x-oauth2-0.0.0-20210402161424-2e8d93401602) - ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" - ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) - ("go-go-opencensus-io-0.23.0" ,go-go-opencensus-io-0.23.0) - ("go-github-com-googleapis-gax-go-v2-2.0.5" - ,go-github-com-googleapis-gax-go-v2-2.0.5) - ("go-github-com-google-go-cmp-0.5.5" - ,go-github-com-google-go-cmp-0.5.5) - ("go-cloud-google-com-go-0.81.0" ,go-cloud-google-com-go-0.81.0))) - (home-page "https://google.golang.org/api") - (synopsis "Google APIs Client Library for Go") - (description - "Package api is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of -sub-packages. -") - (license license:bsd-3))) - -(define-public go-github-com-envoyproxy-go-control-plane-0.9.0 - (package - (name "go-github-com-envoyproxy-go-control-plane") - (version "0.9.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/envoyproxy/go-control-plane") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1dpvi4wnycyj6hnai78fr8aj58b27b1vcwdp3v0id5v22kvgr3xw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.23.0" ,go-google-golang-org-grpc-1.23.0) - ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" - ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) - ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" - ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2) - ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" - ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) - ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" - ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) - (home-page "https://github.com/envoyproxy/go-control-plane") - (synopsis "control-plane") - (description - "This repository contains a Go-based implementation of an API server that -implements the discovery service APIs defined in -@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") - (license license:asl2.0))) - -(define-public go-google-golang-org-grpc-1.25.1 - (package - (name "go-google-golang-org-grpc") - (version "1.25.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0a136ij9p11yj1vx892yqy40jkh7n5nfbpdvhgydcj823mx51c6f")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" - ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-github-com-google-go-cmp-0.2.0" - ,go-github-com-google-go-cmp-0.2.0) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2) - ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" - ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) - ("go-github-com-envoyproxy-go-control-plane-0.9.0" - ,go-github-com-envoyproxy-go-control-plane-0.9.0))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403 - (package - (name "go-github-com-cncf-udpa-go") - (version "0.0.0-20201120205902-5459f2c99403") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cncf/udpa") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0i3al193dsp91j7iywqrm6fr56y2sz51ci4vf19mb3j4n2x44gsi")))) - (build-system go-build-system) - (arguments - '(#:import-path - "github.com/cncf/udpa/go" - #:unpack-path - "github.com/cncf/udpa")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2) - ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" - ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0))) - (home-page "https://github.com/cncf/udpa") - (synopsis "Description") - (description - "This library has been deprecated in favor of @code{github.com/cncf/xds/go}. All users are recommended to switch their imports.") - (license license:asl2.0))) - -(define-public go-github-com-stretchr-testify-1.5.1 - (package - (name "go-github-com-stretchr-testify") - (version "1.5.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/testify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "09r89m1wy4cjv2nps1ykp00qjpi0531r07q3s34hr7m6njk4srkl")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/testify")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) - ("go-github-com-stretchr-objx-0.1.0" - ,go-github-com-stretchr-objx-0.1.0) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.0" - ,go-github-com-davecgh-go-spew-1.1.0))) - (home-page "https://github.com/stretchr/testify") - (synopsis "Testify - Thou Shalt Write Tests") - (description - "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -") - (license license:expat))) - -(define-public go-github-com-envoyproxy-go-control-plane-0.9.9-0.20210217033140-668b12f5399d - (package - (name "go-github-com-envoyproxy-go-control-plane") - (version "0.9.9-0.20210217033140-668b12f5399d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/envoyproxy/go-control-plane") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0vmhc8ii081x1k2qw4kji7wjyg6l25zp1y6qxi27wq8m341i4rzb")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.23.0" - ,go-google-golang-org-protobuf-1.23.0) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" - ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) - ("go-github-com-stretchr-testify-1.5.1" - ,go-github-com-stretchr-testify-1.5.1) - ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" - ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.2" - ,go-github-com-golang-protobuf-1.4.2) - ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" - ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) - ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" - ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403) - ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" - ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) - (home-page "https://github.com/envoyproxy/go-control-plane") - (synopsis "control-plane") - (description - "This repository contains a Go-based implementation of an API server that -implements the discovery service APIs defined in -@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") - (license license:asl2.0))) - -(define-public go-google-golang-org-protobuf-1.23.0 - (package - (name "go-google-golang-org-protobuf") - (version "1.23.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "03yan0m1v0zmlr935p4n24fd376mznsg85zy8sywbgisls4s1bzy")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.0" - ,go-github-com-golang-protobuf-1.4.0))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.4.2 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0m5z81im4nsyfgarjhppayk4hqnrwswr3nix9mj8pff8x9jvcjqw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.23.0" - ,go-google-golang-org-protobuf-1.23.0) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-github-com-google-uuid-1.1.2 - (package - (name "go-github-com-google-uuid") - (version "1.1.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/uuid") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1rbpfa0v0ly9sdnixcxhf79swki54ikgm1zkwwkj64p1ws66syqd")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/uuid")) - (home-page "https://github.com/google/uuid") - (synopsis "uuid") - (description "Package uuid generates and inspects UUIDs. -") - (license license:bsd-3))) - -(define-public go-github-com-google-go-cmp-0.5.0 - (package - (name "go-github-com-google-go-cmp") - (version "0.5.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "04pzp583p6b32y34c6jygfxarff9qjs39rarvfh6467z24sdd9k4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-1.22.0 - (package - (name "go-google-golang-org-protobuf") - (version "1.22.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0n7lc4m7kfvj01glc0gnjy0zsnsic7cxnbvlajy0h14cxbab87pj")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.0" - ,go-github-com-golang-protobuf-1.4.0))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.4.1 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0w7ks4vffnnkp0miwgc3chrsnmya45lzvpahb2wmw0jwhdp5kdx7")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.22.0" - ,go-google-golang-org-protobuf-1.22.0) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-github-com-census-instrumentation-opencensus-proto-0.2.1 - (package - (name "go-github-com-census-instrumentation-opencensus-proto") - (version "0.2.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/census-instrumentation/opencensus-proto") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19fcx3sc99i5dsklny6r073z5j20vlwn2xqm6di1q3b1xwchzqfj")))) - (build-system go-build-system) - (arguments - '(#:import-path "github.com/census-instrumentation/opencensus-proto")) - (home-page "https://github.com/census-instrumentation/opencensus-proto") - (synopsis - "OpenCensus Proto - Language Independent Interface Types For OpenCensus") - (description - "Census provides a framework to define and collect stats against metrics and to -break those stats down across user-defined dimensions.") - (license license:asl2.0))) - -(define-public go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4 - (package - (name "go-github-com-prometheus-client-model") - (version "0.0.0-20190812154241-14fe0d1b01d4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/client_model") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0zdmk6rbbx39cvfz0r59v2jg5sg9yd02b4pds5n5llgvivi99550")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/client_model")) - (propagated-inputs - `(("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" - ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0))) - (home-page "https://github.com/prometheus/client_model") - (synopsis "Deprecation note") - (description - "This repository used to contain the code that defined both -the data model and the exposition format of Prometheus metrics.") - (license license:asl2.0))) - -(define-public go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20190311212946-11955173bddd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hlkai67w167wiyivkzd1fgqrnyxkb94l2c6kr51jwcscizfyfn3")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3 - (package - (name "go-golang-org-x-lint") - (version "0.0.0-20190313153728-d0100b6bd8b3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/lint") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0b0amr9x4ji66iv9ayfx7zrfx52k1m5g66qfcxkgj80qrb1y2yn7")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/lint")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" - ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd))) - (home-page "https://golang.org/x/lint") - (synopsis "Installation") - (description "Package lint contains a linter for Go source code. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20190423024810-112230192c58 - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20190423024810-112230192c58") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "05i2k43j2d0llq768hg5pf3hb2yhfzp9la1w5wp0rsnnzblr0lfn")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the -ones provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135 - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20190524140312-2c0ae7006135") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1lsi2ssxajclj3bciz2a41v1vjv768ja3v6wnbyhxy8xphwkp4fk")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" - ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-google-golang-org-grpc-1.23.0 - (package - (name "go-google-golang-org-grpc") - (version "1.23.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1cn33r2gclmq2v1ndpf1n5bmhf2qs8mms7ii5cnl6f9ch4r2c4k3")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" - ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) - ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" - ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) - ("go-google-golang-org-appengine-1.1.0" - ,go-google-golang-org-appengine-1.1.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-google-go-cmp-0.2.0" - ,go-github-com-google-go-cmp-0.2.0) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0) - ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-client9-misspell-0.3.4" - ,go-github-com-client9-misspell-0.3.4) - ("go-github-com-burntsushi-toml-0.3.1" - ,go-github-com-burntsushi-toml-0.3.1) - ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473 - (package - (name "go-github-com-envoyproxy-go-control-plane") - (version "0.9.1-0.20191026205805-5f8ba28d4473") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/envoyproxy/go-control-plane") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1f1s764rd41vd9vgk3r14h1m6fz6pdvxj6fd83q58gxifbc4q5w4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.23.0" ,go-google-golang-org-grpc-1.23.0) - ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" - ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) - ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" - ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2) - ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" - ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) - ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" - ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) - (home-page "https://github.com/envoyproxy/go-control-plane") - (synopsis "control-plane") - (description - "This repository contains a Go-based implementation of an API server that -implements the discovery service APIs defined in -@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") - (license license:asl2.0))) - -(define-public go-github-com-envoyproxy-protoc-gen-validate-0.1.0 - (package - (name "go-github-com-envoyproxy-protoc-gen-validate") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/envoyproxy/protoc-gen-validate") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0kxd3wwh3xwqk0r684hsy281xq4y71cd11d4q2hspcjbnlbwh7cy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/envoyproxy/protoc-gen-validate")) - (home-page "https://github.com/envoyproxy/protoc-gen-validate") - (synopsis "protoc-gen-validate (PGV)") - (description - "PGV is a protoc plugin to generate polyglot message validators. While protocol buffers effectively guarantee the types of structured data, they cannot enforce semantic rules for values. This plugin adds support to protoc-generated code to validate such constraints.") - (license license:asl2.0))) - -(define-public go-github-com-google-go-cmp-0.2.0 - (package - (name "go-github-com-google-go-cmp") - (version "0.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fbv0x27k9sn8svafc0hjwsnckk864lv4yi7bvzrxvmd3d5hskds")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.3.2 - (package - (name "go-github-com-golang-protobuf") - (version "1.3.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1k1wb4zr0qbwgpvz9q5ws9zhlal8hq7dmq62pwxxriksayl6hzym")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4 - (package - (name "go-golang-org-x-exp") - (version "0.0.0-20190121172915-509febef88a4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/exp") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "02isrh39z8znrp5znplzy0dip2gnrl3jm1355raliyvhnhg04j6q")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/exp")) - (home-page "https://golang.org/x/exp") - (synopsis "exp") - (description - "This subrepository holds experimental and deprecated (in the @code{old} -directory) packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961 - (package - (name "go-golang-org-x-lint") - (version "0.0.0-20190227174305-5b3e6a55c961") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/lint") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "04zp5vbds9nffmjg36wjpi5vg9zmf890yf78xxasai3ni637ivfw")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/lint")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" - ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c))) - (home-page "https://golang.org/x/lint") - (synopsis "Installation") - (description "Package lint contains a linter for Go source code. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190213061140-3a22650c66bd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12q6fgdkc0742vcms67nzadgdwvi3rnb1gx3vwkljhrvlnwvz7wc")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20181108010431-42b317875d0f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0mrjhk7al7yyh76x9flvxy4jm5jyqh2fxbxagpaazxn1xdgkaif3")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the -ones provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20180724234803-3673e40ba225") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0vx7mz18p480p7fh0w5jv6mfdbsswrlac1sz4i705q7q7ygz59lm")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-google-golang-org-appengine-1.4.0 - (package - (name "go-google-golang-org-appengine") - (version "1.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/appengine") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "06zl7w4sxgdq2pl94wy9ncii6h0z3szl4xpqds0sv3b3wbdlhbnn")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/appengine")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225" - ,go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0))) - (home-page "https://google.golang.org/appengine") - (synopsis "Go App Engine packages") - (description - "Package appengine provides basic functionality for Google App Engine. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20190226205152-f727befe758c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0rpcqw6z13qd33rbasg32zb0gdhgh5lzjla63r6g651zf6hpsak0")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-google-golang-org-appengine-1.4.0" - ,go-google-golang-org-appengine-1.4.0) - ("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" - ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) - ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" - ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-cloud-google-com-go-0.26.0 - (package - (name "go-cloud-google-com-go") - (version "0.26.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-cloud-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "149v3ci17g6wd2pm18mzcncq5qpl9hwdjnz3rlbn5rfidyn46la1")))) - (build-system go-build-system) - (arguments '(#:import-path "cloud.google.com/go")) - (home-page "https://cloud.google.com/go") - (synopsis "Google Cloud Client Libraries for Go") - (description - "Package cloud is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -of sub-packages. -") - (license license:asl2.0))) - -(define-public go-github-com-burntsushi-toml-0.3.1 - (package - (name "go-github-com-burntsushi-toml") - (version "0.3.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/BurntSushi/toml") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fjdwwfzyzllgiwydknf1pwjvy49qxfsczqx5gz3y0izs7as99j6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/BurntSushi/toml")) - (home-page "https://github.com/BurntSushi/toml") - (synopsis "TOML parser and encoder for Go with reflection") - (description - "Package toml implements decoding and encoding of TOML files. -") - (license license:expat))) - -(define-public go-github-com-client9-misspell-0.3.4 - (package - (name "go-github-com-client9-misspell") - (version "0.3.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/client9/misspell") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1vwf33wsc4la25zk9nylpbp9px3svlmldkm0bha4hp56jws4q9cs")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/client9/misspell")) - (home-page "https://github.com/client9/misspell") - (synopsis "Install") - (description - "Package misspell corrects commonly misspelled English words in source files. -") - (license license:expat))) - -(define-public go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b - (package - (name "go-github-com-golang-glog") - (version "0.0.0-20160126235308-23def4e6c14b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/glog") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0jb2834rw5sykfr937fxi8hxi2zy80sj2bdn9b3jb4b26ksqng30")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/glog")) - (home-page "https://github.com/golang/glog") - (synopsis "glog") - (description - "Package glog implements logging analogous to the Google-internal C++ INFO/ERROR/V setup. -It provides functions Info, Warning, Error, Fatal, plus formatting variants such as -Infof. It also provides V-style logging controlled by the -v and -vmodule=file=2 flags. -") - (license license:asl2.0))) - -(define-public go-github-com-golang-mock-1.1.1 - (package - (name "go-github-com-golang-mock") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/mock") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ap8wb6pdl6ccmdb43advjll2ly4sz26wsc3axw0hbrjrybybzgy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/mock")) - (home-page "https://github.com/golang/mock") - (synopsis "gomock") - (description - "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It -integrates well with Go's built-in @code{testing} package, but can be used in other -contexts too.") - (license license:asl2.0))) - -(define-public go-github-com-golang-protobuf-1.2.0 - (package - (name "go-github-com-golang-protobuf") - (version "1.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0kf4b59rcbb1cchfny2dm9jyznp8ri2hsb14n8iak1q8986xa0ab")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3 - (package - (name "go-golang-org-x-lint") - (version "0.0.0-20181026193005-c67002cb31c3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/lint") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0gymbggskjmphqxqcx4s0vnlcz7mygbix0vhwcwv5r67c0bf6765")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/lint")) - (home-page "https://golang.org/x/lint") - (synopsis "Installation") - (description "Package lint contains a linter for Go source code. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d - (package - (name "go-golang-org-x-net") - (version "0.0.0-20180826012351-8a410e7b638d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hp0l8f6fir5gmgrjq0mhh5ikc0rlrm72774228800kfwqjrxxny")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be - (package - (name "go-golang-org-x-oauth2") - (version "0.0.0-20180821212333-d2e6202438be") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/oauth2") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0wbn75fd10485nb93bm4kqldqifdim5xqy4v7r5sdvimvf3fyhn7")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/oauth2")) - (home-page "https://golang.org/x/oauth2") - (synopsis "OAuth2 for Go") - (description - "Package oauth2 provides support for making -OAuth2 authorized and authenticated HTTP requests, -as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -It can additionally grant authorization with Bearer JWT. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20180314180146-1d60e4601c6f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "046jlanz2lkxq1r57x9bl6s4cvfqaic6p2xybsj8mq1120jv4rs6")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the -ones provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20180830151530-49385e6e1522") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0spbldahns09fdxkxflb1x24f8k2awdlnr6k5i7ci4fqd19r1dv4")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20190114222345-bf090417da8b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1n3xp56k4k3lj06rx7587wr5gnwg0148nvwx6ch0g7ar02hh94hw")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-google-golang-org-appengine-1.1.0 - (package - (name "go-google-golang-org-appengine") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/appengine") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1pz202zszg8f35dk5pfhwgcdi3r6dx1l4yk6x6ly7nb4j45zi96x")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/appengine")) - (home-page "https://google.golang.org/appengine") - (synopsis "Go App Engine packages") - (description - "Package appengine provides basic functionality for Google App Engine. -") - (license license:asl2.0))) - -(define-public go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8 - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20180817151627-c66870c02cf8") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0siq7sv68556ygqi2d2zmvx8l1xjqdc0fylqzci5h1mq2i14bayn")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-google-golang-org-grpc-1.19.0 - (package - (name "go-google-golang-org-grpc") - (version "1.19.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1znqwpj7ix3dpzx4zch0q70sdl3z5lvbb7v3q4i8sf8kas3yv71v")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" - ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) - ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" - ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) - ("go-google-golang-org-appengine-1.1.0" - ,go-google-golang-org-appengine-1.1.0) - ("go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b" - ,go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b) - ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522" - ,go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522) - ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" - ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d" - ,go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d) - ("go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3" - ,go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0) - ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-client9-misspell-0.3.4" - ,go-github-com-client9-misspell-0.3.4) - ("go-github-com-burntsushi-toml-0.3.1" - ,go-github-com-burntsushi-toml-0.3.1) - ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099 - (package - (name "go-honnef-co-go-tools") - (version "0.0.0-20190102054323-c2f93a96b099") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/dominikh/go-tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "07lg29aiap80ca9f201jzng9vjr168cv3qmvjmbd7v5pmww9kmr8")))) - (build-system go-build-system) - (arguments '(#:import-path "honnef.co/go/tools")) - (home-page "https://honnef.co/go/tools") - (synopsis "Documentation") - (description - "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, -offers simplifications, and enforces style rules.") - (license license:expat))) - -(define-public go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55 - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20190819201941-24fa4b261c55") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "109zhaqlfd8zkbr1hk6zqbs6vcxfrk64scjwh2nswph05gr0m84d")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" - ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) - ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) - ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" - ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) - ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" - ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) - ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" - ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-google-golang-org-grpc-1.27.0 - (package - (name "go-google-golang-org-grpc") - (version "1.27.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ijrmgrxyabfn51nm3p9l81iaasq5fg237wnr6mdc4dzsfcg8kd7")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" - ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-github-com-google-go-cmp-0.2.0" - ,go-github-com-google-go-cmp-0.2.0) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2) - ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" - ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) - ("go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473" - ,go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-github-com-google-go-cmp-0.3.0 - (package - (name "go-github-com-google-go-cmp") - (version "0.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1hyxx3434zshl2m9ja78gwlkg1rx9yl6diqa7dnjb31xz5x4gbjj")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd - (package - (name "go-google-golang-org-protobuf") - (version "0.0.0-20200109180630-ec00e32a8dfd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0w6lp9w2avxcpxwzzhspr209ifhyjagvs23k0vykfdqahl1aplrh")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.3.0" - ,go-github-com-google-go-cmp-0.3.0))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.4.0-rc.1 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.0-rc.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "186rirvbfgv6hrxp27ipx2cdpv19qifdd20biqfdm01wiyclqimn")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd" - ,go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd) - ("go-github-com-google-go-cmp-0.3.1" - ,go-github-com-google-go-cmp-0.3.1))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-github-com-google-go-cmp-0.3.1 - (package - (name "go-github-com-google-go-cmp") - (version "0.3.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1caw49i0plkjxir7kdf5qhwls3krqwfmi7g4h392rdfwi3kfahx1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64 - (package - (name "go-google-golang-org-protobuf") - (version "0.0.0-20200221191635-4d8936d0db64") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0563bsvdjj6k0sgwqd5yzrgfiax7sp3lcwh608gync5sv9fx39cy")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.3.1" - ,go-github-com-google-go-cmp-0.3.1) - ("go-github-com-golang-protobuf-1.4.0-rc.1" - ,go-github-com-golang-protobuf-1.4.0-rc.1))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.0-rc.1.0.20200221234624-67d41d38c208") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ykxhg3zixmw25pd435f8h16wnz1g00jpcmmg3xl030kksgqgpp6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64" - ,go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60 - (package - (name "go-google-golang-org-protobuf") - (version "0.0.0-20200228230310-ab0ca4ff8a60") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1rinspcznfp85yz4vrlf4h38hr576virgv8lcs22bsylqga808sd")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208" - ,go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.4.0-rc.2 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.0-rc.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1hd43hjv5zl6bjbmhm5phx74bw4xajsi73m5zky2k56za4mpgzzc")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60" - ,go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967 - (package - (name "go-google-golang-org-protobuf") - (version "1.20.1-0.20200309200217-e05f789c0967") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "17wmy89hnmpkwc63rfcjp50q15s9f1rhmczg06c3z9yy41zk82w9")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.0-rc.2" - ,go-github-com-golang-protobuf-1.4.0-rc.2))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.0-rc.4.0.20200313231945-b860323f09d0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1zj6cwshx0l5n9cn2cpbikzzb79px5dmkpc4p19zy1iif5r5p0z0")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967" - ,go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-1.21.0 - (package - (name "go-google-golang-org-protobuf") - (version "1.21.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12bwln8z1lf9105gdp6ip0rx741i4yfz1520gxnp8861lh9wcl63")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0" - ,go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.4.0 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fjvl5n77abxz5qsd4mgyvjq19x43c5bfvmq62mq3m5plx6zksc8")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.21.0" - ,go-google-golang-org-protobuf-1.21.0) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543 - (package - (name "go-golang-org-x-xerrors") - (version "0.0.0-20191204190536-9bdfabe68543") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/xerrors") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1yjfi1bk9xb81lqn85nnm13zz725wazvrx3b50hx19qmwg7a4b0c")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/xerrors")) - (home-page "https://golang.org/x/xerrors") - (synopsis #f) - (description - "Package xerrors implements functions to manipulate errors. -") - (license license:bsd-3))) - -(define-public go-github-com-google-go-cmp-0.4.0 - (package - (name "go-github-com-google-go-cmp") - (version "0.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1x5pvl3fb5sbyng7i34431xycnhmx8xx94gq2n19g6p0vz68z2v2")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc - (package - (name "go-google-golang-org-protobuf") - (version "1.23.1-0.20200526195155-81db48ad09cc") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "02cpr8rqr5wmpj2fqb32mzilsdnxkh52g1jz95a3ck3gzffc7hh1")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.0" - ,go-github-com-golang-protobuf-1.4.0))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc - (package - (name "go-honnef-co-go-tools") - (version "0.0.0-20190523083050-ea95bdfd59fc") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/dominikh/go-tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1763nw7pwpzkvzfnm63dgzcgbq9hwmq5l1nffchnhh77vgkaq4ic")))) - (build-system go-build-system) - (arguments '(#:import-path "honnef.co/go/tools")) - (home-page "https://honnef.co/go/tools") - (synopsis "Documentation") - (description - "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, -offers simplifications, and enforces style rules.") - (license license:expat))) - -(define-public go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013 - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20200526211855-cb27e3aa2013") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ml73ghqcwbz7ipfk8fnxb5indcml49b5p7vp1fsyny0abyyrmxf")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" - ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) - ("go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc" - ,go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-golang-protobuf-1.4.1" - ,go-github-com-golang-protobuf-1.4.1))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-google-golang-org-protobuf-1.25.0 - (package - (name "go-google-golang-org-protobuf") - (version "1.25.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0apfl42x166dh96zfq5kvv4b4ax9xljik6bq1mnvn2240ir3mc23")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" - ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) - ("go-github-com-google-go-cmp-0.5.0" - ,go-github-com-google-go-cmp-0.5.0) - ("go-github-com-golang-protobuf-1.4.1" - ,go-github-com-golang-protobuf-1.4.1))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-google-golang-org-grpc-1.38.0 - (package - (name "go-google-golang-org-grpc") - (version "1.38.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "08lgqdvbd0i4qwsv1y37qmf8mhsy9ywzx73ixiwih7xhnalrf7xl")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.25.0" - ,go-google-golang-org-protobuf-1.25.0) - ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" - ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) - ("go-github-com-google-go-cmp-0.5.0" - ,go-github-com-google-go-cmp-0.5.0) - ("go-github-com-golang-protobuf-1.4.2" - ,go-github-com-golang-protobuf-1.4.2) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-envoyproxy-go-control-plane-0.9.9-0.20210217033140-668b12f5399d" - ,go-github-com-envoyproxy-go-control-plane-0.9.9-0.20210217033140-668b12f5399d) - ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" - ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-github-com-bketelsen-crypt-0.0.4 - (package - (name "go-github-com-bketelsen-crypt") - (version "0.0.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/bketelsen/crypt") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0fyfcvy73zskd1p1mv0cn03anxkkr5gvlawsc87znqk60hdypq3v")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/bketelsen/crypt")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.38.0" ,go-google-golang-org-grpc-1.38.0) - ("go-google-golang-org-api-0.44.0" ,go-google-golang-org-api-0.44.0) - ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" - ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9) - ("go-go-etcd-io-etcd-client-v2-2.305.0" - ,go-go-etcd-io-etcd-client-v2-2.305.0) - ("go-github-com-hashicorp-consul-api-1.1.0" - ,go-github-com-hashicorp-consul-api-1.1.0) - ("go-cloud-google-com-go-firestore-1.1.0" - ,go-cloud-google-com-go-firestore-1.1.0))) - (home-page "https://github.com/bketelsen/crypt") - (synopsis "crypt") - (description - "You can use crypt as a command line tool or as a configuration library:") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20191005200804-aed5e4c7ecf9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0wsdsbl9n61l99z0cvib2xzg56fsfgky4yc5xapdw9ywx9h0zm3a")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-fsnotify-fsnotify-1.4.9 - (package - (name "go-github-com-fsnotify-fsnotify") - (version "1.4.9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/fsnotify/fsnotify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1i1r72knpbfwwql9frn9bqc3nhfc2ai5m6qllcyr6wban62lr40x")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/fsnotify/fsnotify")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9" - ,go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9))) - (home-page "https://github.com/fsnotify/fsnotify") - (synopsis "File system notifications for Go") - (description - "Package fsnotify provides a platform-independent interface for file system notifications. -") - (license license:bsd-3))) - -(define-public go-github-com-hashicorp-hcl-1.0.0 - (package - (name "go-github-com-hashicorp-hcl") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/hcl") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0q6ml0qqs0yil76mpn4mdx4lp94id8vbv575qm60jzl1ijcl5i66")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/hcl")) - (propagated-inputs - `(("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/hashicorp/hcl") - (synopsis "HCL") - (description "Package hcl decodes HCL into usable Go structures. -") - (license license:mpl2.0))) - -(define-public go-github-com-magiconair-properties-1.8.5 - (package - (name "go-github-com-magiconair-properties") - (version "1.8.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/magiconair/properties") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0v4agnkhc30fblbmhs0gq2bikhdnnmqmpp4phrnza68m04j5hxbn")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/magiconair/properties")) - (home-page "https://github.com/magiconair/properties") - (synopsis "Overview") - (description - "Package properties provides functions for reading and writing -ISO-8859-1 and UTF-8 encoded .properties files and has -support for recursive property expansion. -") - (license license:bsd-2))) - -(define-public go-github-com-mitchellh-mapstructure-1.4.1 - (package - (name "go-github-com-mitchellh-mapstructure") - (version "1.4.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mitchellh/mapstructure") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1m98wiadb6kdnzv21m8p7nk1jb30zpjh47fkb1dg251r3m7bj47v")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mitchellh/mapstructure")) - (home-page "https://github.com/mitchellh/mapstructure") - (synopsis "mapstructure") - (description - "Package mapstructure exposes functionality to convert one arbitrary -Go type into another, typically to convert a map[string]interface{} -into a native Go structure. -") - (license license:expat))) - -(define-public go-github-com-pelletier-go-toml-1.9.3 - (package - (name "go-github-com-pelletier-go-toml") - (version "1.9.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pelletier/go-toml") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0cqwnvlgs1wgdgjxlwv8j52f7d6syniadr51sjh2fya99m5wzvsn")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pelletier/go-toml")) - (home-page "https://github.com/pelletier/go-toml") - (synopsis "go-toml") - (description "Package toml is a TOML parser and manipulation library. -") - (license #f))) - -(define-public go-github-com-gopherjs-gopherjs-0.0.0-20181017120253-0766667cb4d1 - (package - (name "go-github-com-gopherjs-gopherjs") - (version "0.0.0-20181017120253-0766667cb4d1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gopherjs/gopherjs") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "13pfc9sxiwjky2lm1xb3i3lcisn8p6mgjk2d927l7r92ysph8dmw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/gopherjs/gopherjs")) - (home-page "https://github.com/gopherjs/gopherjs") - (synopsis "GopherJS - A compiler from Go to JavaScript") - (description - "GopherJS compiles Go code (@url{https://golang.org/,golang.org}) to pure JavaScript code. Its main purpose is to give you the opportunity to write front-end code in Go which will still run in all browsers.") - (license license:bsd-2))) - -(define-public go-github-com-jtolds-gls-4.20.0+incompatible - (package - (name "go-github-com-jtolds-gls") - (version "4.20.0+incompatible") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/jtolio/gls") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1k7xd2q2ysv2xsh373qs801v6f359240kx0vrl0ydh7731lngvk6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/jtolds/gls")) - (home-page "https://github.com/jtolds/gls") - (synopsis "gls") - (description "Package gls implements goroutine-local storage. -") - (license license:expat))) - -(define-public go-github-com-smartystreets-assertions-0.0.0-20180927180507-b2de0cb4f26d - (package - (name "go-github-com-smartystreets-assertions") - (version "0.0.0-20180927180507-b2de0cb4f26d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/smartystreets/assertions") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1i7ldgavgl35c7gk25p7bvdr282ckng090zr4ch9mk1705akx09y")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/smartystreets/assertions")) - (home-page "https://github.com/smartystreets/assertions") - (synopsis #f) - (description - "Package assertions contains the implementations for all assertions which -are referenced in goconvey's `convey` package -(github.com/smartystreets/goconvey/convey) and gunit (github.com/smartystreets/gunit) -for use with the So(...) method. -They can also be used in traditional Go test functions and even in -applications. -") - (license license:expat))) - -(define-public go-golang-org-x-net-0.0.0-20190311183353-d8887717615a - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190311183353-d8887717615a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1wfm6ngxjyj7v5a2dqib6lw8bb2rdnf1kl48diykxjrsddn0s163")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20190328211700-ab21143f2384 - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20190328211700-ab21143f2384") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "15fk0psk53pplpyghz55bhay0kvsv5rikmn5hwgjnnyxq9vfy178")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-github-com-smartystreets-goconvey-1.6.4 - (package - (name "go-github-com-smartystreets-goconvey") - (version "1.6.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/smartystreets/goconvey") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "07zjxwszayal88z1j2bwnqrsa32vg8l4nivks5yfr9j8xfsw7n6m")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/smartystreets/goconvey")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20190328211700-ab21143f2384" - ,go-golang-org-x-tools-0.0.0-20190328211700-ab21143f2384) - ("go-github-com-smartystreets-assertions-0.0.0-20180927180507-b2de0cb4f26d" - ,go-github-com-smartystreets-assertions-0.0.0-20180927180507-b2de0cb4f26d) - ("go-github-com-jtolds-gls-4.20.0+incompatible" - ,go-github-com-jtolds-gls-4.20.0+incompatible) - ("go-github-com-gopherjs-gopherjs-0.0.0-20181017120253-0766667cb4d1" - ,go-github-com-gopherjs-gopherjs-0.0.0-20181017120253-0766667cb4d1))) - (home-page "https://github.com/smartystreets/goconvey") - (synopsis "GoConvey is awesome Go testing") - (description - "This executable provides an HTTP server that watches for file system changes -to .go files within the working directory (and all nested go packages). -Navigating to the configured host and port in a web browser will display the -latest results of running `go test` in each go package. -") - (license license:expat))) - -(define-public go-github-com-kr-fs-0.1.0 - (package - (name "go-github-com-kr-fs") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/fs") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "11zg176x9hr9q7fsk95r6q0wf214gg4czy02slax4x56n79g6a7q")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/fs")) - (home-page "https://github.com/kr/fs") - (synopsis #f) - (description "Package fs provides filesystem-related functions. -") - (license license:bsd-3))) - -(define-public go-github-com-pkg-errors-0.8.1 - (package - (name "go-github-com-pkg-errors") - (version "0.8.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pkg/errors") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0g5qcb4d4fd96midz0zdk8b9kz8xkzwfa8kr1cliqbg8sxsy5vd1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pkg/errors")) - (home-page "https://github.com/pkg/errors") - (synopsis "errors") - (description "Package errors provides simple error handling primitives. -") - (license license:bsd-2))) - -(define-public go-gopkg-in-yaml-v2-2.2.2 - (package - (name "go-gopkg-in-yaml-v2") - (version "2.2.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "01wj12jzsdqlnidpyjssmj0r4yavlqy7dwrg7adqd8dicjc4ncsa")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v2") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language. -") - (license license:asl2.0))) - -(define-public go-github-com-stretchr-testify-1.4.0 - (package - (name "go-github-com-stretchr-testify") - (version "1.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/testify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "187i5g88sxfy4vxpm7dw1gwv29pa2qaq475lxrdh5livh69wqfjb")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/testify")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) - ("go-github-com-stretchr-objx-0.1.0" - ,go-github-com-stretchr-objx-0.1.0) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.0" - ,go-github-com-davecgh-go-spew-1.1.0))) - (home-page "https://github.com/stretchr/testify") - (synopsis "Testify - Thou Shalt Write Tests") - (description - "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -") - (license license:expat))) - -(define-public go-github-com-pkg-sftp-1.10.1 - (package - (name "go-github-com-pkg-sftp") - (version "1.10.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pkg/sftp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0iw6lijdljwh5xw5hsy0b578cr52h6vvm7hbnzlrvciwhh4sfhhp")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pkg/sftp")) - (propagated-inputs - `(("go-golang-org-x-crypto-0.0.0-20190820162420-60c769a6c586" - ,go-golang-org-x-crypto-0.0.0-20190820162420-60c769a6c586) - ("go-github-com-stretchr-testify-1.4.0" - ,go-github-com-stretchr-testify-1.4.0) - ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) - ("go-github-com-kr-fs-0.1.0" ,go-github-com-kr-fs-0.1.0))) - (home-page "https://github.com/pkg/sftp") - (synopsis "sftp") - (description - "Package sftp implements the SSH File Transfer Protocol as described in -@url{https://tools.ietf.org/html/draft-ietf-secsh-filexfer-02,https://tools.ietf.org/html/draft-ietf-secsh-filexfer-02} -") - (license license:bsd-2))) - -(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190215142949-d0b11bdaac8a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20190308221718-c2843e01d9a2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-text-0.3.0 - (package - (name "go-golang-org-x-text") - (version "0.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/text")) - (home-page "https://golang.org/x/text") - (synopsis "Go Text") - (description - "text is a repository of text-related packages related to internationalization -(i18n) and localization (l10n), such as character encodings, text -transformations, and locale-specific text handling. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190404232315-eb5bcb51f2a3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "17k4g8krxbl84gzcs275b7gsh66dzm15fdxivjnx9xz8q84l4kby")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20190412213103-97732733099d - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190412213103-97732733099d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "118hkp01i4z1f5h6hcjm0ff2ngqhrzj1f7731n0kw8dr6hvbx0sw")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-crypto-0.0.0-20190820162420-60c769a6c586 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20190820162420-60c769a6c586") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1wy2pg38dz29vf1h48yfqf8m3jqvwnbdw8vkk3ldlj5d8fbbbmv8")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" - ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) - ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" - ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-github-com-spf13-afero-1.6.0 - (package - (name "go-github-com-spf13-afero") - (version "1.6.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/spf13/afero") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0yi8p0yxiidpcg4cagxg2iyqcaapsng89rak4qyxmgails2fqg37")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/spf13/afero")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) - ("go-golang-org-x-crypto-0.0.0-20190820162420-60c769a6c586" - ,go-golang-org-x-crypto-0.0.0-20190820162420-60c769a6c586) - ("go-github-com-pkg-sftp-1.10.1" ,go-github-com-pkg-sftp-1.10.1))) - (home-page "https://github.com/spf13/afero") - (synopsis "Overview") - (description - "This package provides a FileSystem Abstraction System for Go") - (license license:asl2.0))) - -(define-public go-github-com-spf13-cast-1.3.1 - (package - (name "go-github-com-spf13-cast") - (version "1.3.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/spf13/cast") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0lb84788glr0qzrq2ifi36rgvp96qrgywvxrr3ggq5hrbr38hgn1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/spf13/cast")) - (propagated-inputs - `(("go-github-com-stretchr-testify-1.2.2" - ,go-github-com-stretchr-testify-1.2.2) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/spf13/cast") - (synopsis "cast") - (description "Package cast provides easy and safe casting in Go. -") - (license license:expat))) - -(define-public go-github-com-davecgh-go-spew-1.1.1 - (package - (name "go-github-com-davecgh-go-spew") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/davecgh/go-spew") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/davecgh/go-spew")) - (home-page "https://github.com/davecgh/go-spew") - (synopsis "go-spew") - (description - "Go-spew implements a deep pretty printer for Go data structures to aid in -debugging. A comprehensive suite of tests with 100% test coverage is provided -to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage -report. Go-spew is licensed under the liberal ISC license, so it may be used in -open source or commercial projects.") - (license license:isc))) - -(define-public go-github-com-stretchr-testify-1.2.2 - (package - (name "go-github-com-stretchr-testify") - (version "1.2.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/testify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0dlszlshlxbmmfxj5hlwgv3r22x0y1af45gn1vd198nvvs3pnvfs")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/testify")) - (home-page "https://github.com/stretchr/testify") - (synopsis "Testify - Thou Shalt Write Tests") - (description - "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -") - (license license:expat))) - -(define-public go-github-com-spf13-jwalterweatherman-1.1.0 - (package - (name "go-github-com-spf13-jwalterweatherman") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/spf13/jwalterweatherman") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ywmkwci5zyd88ijym6f30fj5c0k2yayxarkmnazf5ybljv50q7b")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/spf13/jwalterweatherman")) - (propagated-inputs - `(("go-github-com-stretchr-testify-1.2.2" - ,go-github-com-stretchr-testify-1.2.2) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/spf13/jwalterweatherman") - (synopsis "jWalterWeatherman") - (description - "Seamless printing to the terminal (stdout) and logging to a io.Writer -(file) thatâ\x80\x99s as easy to use as fmt.Println.") - (license license:expat))) - -(define-public go-github-com-davecgh-go-spew-1.1.0 - (package - (name "go-github-com-davecgh-go-spew") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/davecgh/go-spew") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/davecgh/go-spew")) - (home-page "https://github.com/davecgh/go-spew") - (synopsis "go-spew") - (description - "Go-spew implements a deep pretty printer for Go data structures to aid in -debugging. A comprehensive suite of tests with 100% test coverage is provided -to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage -report. Go-spew is licensed under the liberal ISC license, so it may be used in -open source or commercial projects.") - (license license:isc))) - -(define-public go-github-com-stretchr-objx-0.1.0 - (package - (name "go-github-com-stretchr-objx") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/objx") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/objx")) - (home-page "https://github.com/stretchr/objx") - (synopsis "Objx") - (description - "Objx - Go package for dealing with maps, slices, JSON and other data. -") - (license license:expat))) - -(define-public go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c - (package - (name "go-gopkg-in-yaml-v3") - (version "3.0.0-20200313102051-9f266ea9e77c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v3") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1bbai3lzb50m0x2vwsdbagrbhvfylj9k1m32hgbqwldqx4p9ay35")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v3") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language. -") - (license #f))) - -(define-public go-github-com-stretchr-testify-1.7.0 - (package - (name "go-github-com-stretchr-testify") - (version "1.7.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/testify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ixgjsvafr3513pz3r6pmgk074s2dxkll0dadvl25gkf30rkmh10")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/testify")) - (propagated-inputs - `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" - ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) - ("go-github-com-stretchr-objx-0.1.0" - ,go-github-com-stretchr-objx-0.1.0) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.0" - ,go-github-com-davecgh-go-spew-1.1.0))) - (home-page "https://github.com/stretchr/testify") - (synopsis "Testify - Thou Shalt Write Tests") - (description - "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -") - (license license:expat))) - -(define-public go-github-com-subosito-gotenv-1.2.0 - (package - (name "go-github-com-subosito-gotenv") - (version "1.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/subosito/gotenv") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0mav91j7r4arjkpq5zcf9j74f6pww8ic53x43wy7kg3ibw31yjs5")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/subosito/gotenv")) - (home-page "https://github.com/subosito/gotenv") - (synopsis "gotenv") - (description - "Package gotenv provides functionality to dynamically load the environment variables -") - (license license:expat))) - -(define-public go-gopkg-in-ini-v1-1.62.0 - (package - (name "go-gopkg-in-ini-v1") - (version "1.62.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/ini.v1") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1dm9ydqyflasp5li22kb0w73s6kp2swii8naqfhnz64v171gmm5v")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/ini.v1" #:unpack-path "gopkg.in/ini.v1")) - (home-page "https://gopkg.in/ini.v1") - (synopsis "INI") - (description - "Package ini provides INI file read and write functionality in Go. -") - (license license:asl2.0))) - -(define-public go-github-com-spf13-viper-1.8.1 - (package - (name "go-github-com-spf13-viper") - (version "1.8.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/spf13/viper") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0jcsvd9l05pv10rma6zicp44q2mlvxj0qlhnf4zcg2pymb5i0hq6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/spf13/viper")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) - ("go-gopkg-in-ini-v1-1.62.0" ,go-gopkg-in-ini-v1-1.62.0) - ("go-github-com-subosito-gotenv-1.2.0" - ,go-github-com-subosito-gotenv-1.2.0) - ("go-github-com-stretchr-testify-1.7.0" - ,go-github-com-stretchr-testify-1.7.0) - ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) - ("go-github-com-spf13-jwalterweatherman-1.1.0" - ,go-github-com-spf13-jwalterweatherman-1.1.0) - ("go-github-com-spf13-cast-1.3.1" ,go-github-com-spf13-cast-1.3.1) - ("go-github-com-spf13-afero-1.6.0" ,go-github-com-spf13-afero-1.6.0) - ("go-github-com-smartystreets-goconvey-1.6.4" - ,go-github-com-smartystreets-goconvey-1.6.4) - ("go-github-com-pelletier-go-toml-1.9.3" - ,go-github-com-pelletier-go-toml-1.9.3) - ("go-github-com-mitchellh-mapstructure-1.4.1" - ,go-github-com-mitchellh-mapstructure-1.4.1) - ("go-github-com-magiconair-properties-1.8.5" - ,go-github-com-magiconair-properties-1.8.5) - ("go-github-com-hashicorp-hcl-1.0.0" - ,go-github-com-hashicorp-hcl-1.0.0) - ("go-github-com-fsnotify-fsnotify-1.4.9" - ,go-github-com-fsnotify-fsnotify-1.4.9) - ("go-github-com-bketelsen-crypt-0.0.4" - ,go-github-com-bketelsen-crypt-0.0.4))) - (home-page "https://github.com/spf13/viper") - (synopsis "Install") - (description "Many Go projects are built using Viper including:") - (license license:expat))) - -(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 - (package - (name "go-gopkg-in-check-v1") - (version "0.0.0-20161208181325-20d25e280405") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/check.v1") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) - (home-page "https://gopkg.in/check.v1") - (synopsis "Instructions") - (description - "Package check is a rich testing extension for Go's testing package. -") - (license license:bsd-2))) - -(define-public go-gopkg-in-yaml-v2-2.4.0 - (package - (name "go-gopkg-in-yaml-v2") - (version "2.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1pbmrpj7gcws34g8vwna4i2nhm9p6235piww36436xhyaa10cldr")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v2") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language. -") - (license license:asl2.0))) - -(define-public go-github-com-spf13-cobra-1.2.1 - (package - (name "go-github-com-spf13-cobra") - (version "1.2.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/spf13/cobra") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "091kz3xnlsgpqb90fc5nhjr4yfr8b8sjnyl0zd4wm1fgzkpw09jh")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/spf13/cobra")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) - ("go-github-com-spf13-viper-1.8.1" ,go-github-com-spf13-viper-1.8.1) - ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) - ("go-github-com-inconshreveable-mousetrap-1.0.0" - ,go-github-com-inconshreveable-mousetrap-1.0.0) - ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" - ,go-github-com-cpuguy83-go-md2man-v2-2.0.0))) - (home-page "https://github.com/spf13/cobra") - (synopsis "Table of Contents") - (description - "Package cobra is a commander providing a simple interface to create powerful modern CLI interfaces. -In addition to providing an interface, Cobra simultaneously provides a controller to organize your application code. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20210226172049-e18ecbb05110") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1vlq8mdscp7yfaa1lmyv03y5m4c2d67ydg2q1i6smkrxghn3zn3q")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) - ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" - ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) - ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" - ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20210615035016-665e8c7367d1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "11n848csibdbv7b46zjyf4l7sphg37n9sjzqfy1ds7p1jyakwmnv")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20201119102817-f84b799fce68") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1dvhqian5byzkcg1bnqzygqa6ccc6krc2q7j12pp1vhl3y7znnsg")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1 - (package - (name "go-golang-org-x-term") - (version "0.0.0-20201126162022-7de9c90e9dd1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/term") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ba252xmv6qsvf1w1gcy98mngrj0vd4inbjw0lsklqvva65nljna")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/term")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" - ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) - (home-page "https://golang.org/x/term") - (synopsis "Go terminal/console support") - (description - "Package term provides support functions for dealing with terminals, as -commonly found on UNIX systems. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20180917221912-90fa682c2a6e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-golang-org-x-text-0.3.3 - (package - (name "go-golang-org-x-text") - (version "0.3.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19pihqm3phyndmiw6i42pdv6z1rbvlqlsnhsyqf9gsnn0qnmqqlh")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/text")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" - ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) - (home-page "https://golang.org/x/text") - (synopsis "Go Text") - (description - "text is a repository of text-related packages related to internationalization -(i18n) and localization (l10n), such as character encodings, text -transformations, and locale-specific text handling. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-crypto-0.0.0-20210711020723-a769d52b0f97 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20210711020723-a769d52b0f97") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1qdv4yfdl5fbsdgvxkki1yjwwn3whns381c0za74syxdvzhhgiaf")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) - ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" - ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) - ("go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1" - ,go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1) - ("go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110" - ,go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-github-com-inconshreveable-mousetrap-1.0.0 - (package - (name "go-github-com-inconshreveable-mousetrap") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/inconshreveable/mousetrap") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1mn0kg48xkd74brf48qf5hzp0bc6g8cf5a77w895rl3qnlpfw152")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/inconshreveable/mousetrap")) - (home-page "https://github.com/inconshreveable/mousetrap") - (synopsis "mousetrap") - (description "mousetrap is a tiny library that answers a single question.") - (license license:asl2.0))) - -(define-public go-github-com-pmezard-go-difflib-1.0.0 - (package - (name "go-github-com-pmezard-go-difflib") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pmezard/go-difflib") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pmezard/go-difflib")) - (home-page "https://github.com/pmezard/go-difflib") - (synopsis "go-difflib") - (description - "Go-difflib is a partial port of python 3 difflib package. Its main goal -was to make unified and context diff available in pure Go, mostly for -testing purposes.") - (license license:bsd-3))) - -(define-public go-github-com-sergi-go-diff-1.0.0 - (package - (name "go-github-com-sergi-go-diff") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sergi/go-diff") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0swiazj8wphs2zmk1qgq75xza6m19snif94h2m6fi8dqkwqdl7c7")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/sergi/go-diff")) - (home-page "https://github.com/sergi/go-diff") - (synopsis "go-diff") - (description - "go-diff offers algorithms to perform operations required for synchronizing plain text:") - (license license:expat))) - -(define-public go-github-com-spf13-pflag-1.0.5 - (package - (name "go-github-com-spf13-pflag") - (version "1.0.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/spf13/pflag") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0gpmacngd0gpslnbkzi263f5ishigzgh6pbdv9hp092rnjl4nd31")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/spf13/pflag")) - (home-page "https://github.com/spf13/pflag") - (synopsis "Description") - (description - "Package pflag is a drop-in replacement for Go's flag package, implementing -POSIX/GNU-style --flags. -") - (license license:bsd-3))) - -(define-public go-github-com-hpcng-sif-1.6.0 - (package - (name "go-github-com-hpcng-sif") - (version "1.6.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/apptainer/sif") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0fz6h5zcaxk6v8vfx9lxny2bmwnmflvvx9jkyxydz6zlgrbn2qbb")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hpcng/sif")) - (propagated-inputs - `(("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) - ("go-github-com-sergi-go-diff-1.0.0" - ,go-github-com-sergi-go-diff-1.0.0) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-inconshreveable-mousetrap-1.0.0" - ,go-github-com-inconshreveable-mousetrap-1.0.0) - ("go-golang-org-x-crypto-0.0.0-20210711020723-a769d52b0f97" - ,go-golang-org-x-crypto-0.0.0-20210711020723-a769d52b0f97) - ("go-github-com-spf13-cobra-1.2.1" ,go-github-com-spf13-cobra-1.2.1) - ("go-github-com-sebdah-goldie-v2-2.5.3" - ,go-github-com-sebdah-goldie-v2-2.5.3) - ("go-github-com-satori-go-uuid-1.2.1-0.20180404165556-75cca531ea76" - ,go-github-com-satori-go-uuid-1.2.1-0.20180404165556-75cca531ea76))) - (home-page "https://github.com/hpcng/sif") - (synopsis "The Singularity Image Format (SIF)") - (description - "This module contains an open source implementation of the Singularity Image Format (SIF) that makes it easy to create complete and encapsulated container environments stored in a single file.") - (license license:bsd-3))) - -(define-public go-github-com-kardianos-osext-0.0.0-20190222173326-2bc1f35cddc0 - (package - (name "go-github-com-kardianos-osext") - (version "0.0.0-20190222173326-2bc1f35cddc0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kardianos/osext") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1pvrbrvmrf4mx0fxbfaphbzgqgwn8v6lkfk2vyrs0znxrs1xyc5r")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kardianos/osext")) - (home-page "https://github.com/kardianos/osext") - (synopsis "Extensions to the \"os\" package.") - (description "Extensions to the standard \"os\" package. -") - (license license:bsd-3))) - -(define-public go-github-com-creack-pty-1.1.7 - (package - (name "go-github-com-creack-pty") - (version "1.1.7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/creack/pty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1plwwlk1i9b80zv8zdplvv81shfyc9gf0flydnydsh5sr3ib5vrc")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/creack/pty")) - (home-page "https://github.com/creack/pty") - (synopsis "pty") - (description - "Package pty provides functions for working with Unix terminals. -") - (license license:expat))) - -(define-public go-github-com-kr-pty-1.1.8 - (package - (name "go-github-com-kr-pty") - (version "1.1.8") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/pty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1vcl6f90n0f8s8b4fyh0832ilybjqcypqyj233lqj1hx62fvgdbk")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/pty")) - (propagated-inputs - `(("go-github-com-creack-pty-1.1.7" ,go-github-com-creack-pty-1.1.7))) - (home-page "https://github.com/kr/pty") - (synopsis "pty") - (description - "Package pty is a wrapper for github.com/creack/pty, which provides -functions for working with Unix terminals. -") - (license license:expat))) - -(define-public go-github-com-opencontainers-go-digest-1.0.0 - (package - (name "go-github-com-opencontainers-go-digest") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/go-digest") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0i5acjajvr6hi9zb7gxwifd8w28y884cv7cx36adj8lngj647xbi")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/go-digest")) - (home-page "https://github.com/opencontainers/go-digest") - (synopsis "go-digest") - (description - "Package digest provides a generalized type to opaquely represent message -digests and their operations within the registry. The Digest type is -designed to serve as a flexible identifier in a content-addressable system. -More importantly, it provides tools and wrappers to work with -hash.Hash-based digests with little effort. -") - (license (list license:asl2.0 license:cc-by-sa4.0)))) - -(define-public go-github-com-opencontainers-image-spec-1.0.2 - (package - (name "go-github-com-opencontainers-image-spec") - (version "1.0.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/image-spec") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1wcw1z39wjx338406ga86a41f5ird0yc4ab3c70nfhkpkvjjzhkm")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/image-spec")) - (home-page "https://github.com/opencontainers/image-spec") - (synopsis "OCI Image Format Specification") - (description - "The OCI Image Format project creates and maintains the software shipping container image format spec (OCI Image Format).") - (license license:asl2.0))) - -(define-public go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417 - (package - (name "go-github-com-opencontainers-runtime-spec") - (version "1.0.3-0.20210326190908-1c3f411f0417") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/runtime-spec") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1azk8z41ga8af35c966f06vrq9y9hwz6mkm59r3py5qaamzim3qq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) - (home-page "https://github.com/opencontainers/runtime-spec") - (synopsis "Open Container Initiative Runtime Specification") - (description - "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") - (license license:asl2.0))) - -(define-public go-github-com-opencontainers-runtime-tools-0.9.1-0.20210326182921-59cdde06764b - (package - (name "go-github-com-opencontainers-runtime-tools") - (version "0.9.1-0.20210326182921-59cdde06764b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/runtime-tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0f4zy6x1rrrg10bphwijic30m3r4mq934zbavnci6jyi41l1w2r0")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/runtime-tools")) - (home-page "https://github.com/opencontainers/runtime-tools") - (synopsis "oci-runtime-tool") - (description - "oci-runtime-tool is a collection of tools for working with the @url{https://github.com/opencontainers/runtime-spec,OCI runtime specification}. -To build from source code, runtime-tools requires Go 1.10.x or above.") - (license license:asl2.0))) - -(define-public go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20191115151921-52ab43148777") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1kakxbqrb1w2vwg7r1896z68qcx2lfvimsl8cs2niiipbgpi6imx")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-opencontainers-selinux-1.10.0 - (package - (name "go-github-com-opencontainers-selinux") - (version "1.10.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/selinux") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "118q1d9py9zhym4jmyiivasmllkdnkp1zyx4brc6n2cfmxfph6gc")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/selinux")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777" - ,go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777))) - (home-page "https://github.com/opencontainers/selinux") - (synopsis "selinux") - (description "Common SELinux package used across the container ecosystem.") - (license license:asl2.0))) - -(define-public go-github-com-adamkorcz-go-fuzz-headers-0.0.0-20210312213058-32f4d319f0d2 - (package - (name "go-github-com-adamkorcz-go-fuzz-headers") - (version "0.0.0-20210312213058-32f4d319f0d2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/AdamKorcz/go-fuzz-headers") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0r14xxw8c7pkmln0n5vlrahf1785mr7mlyklmfpa11p9kk9pmq5j")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/AdamKorcz/go-fuzz-headers")) - (home-page "https://github.com/AdamKorcz/go-fuzz-headers") - (synopsis #f) - (description #f) - (license #f))) - -(define-public go-github-com-stretchr-testify-1.3.0 - (package - (name "go-github-com-stretchr-testify") - (version "1.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/testify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0wjchp2c8xbgcbbq32w3kvblk6q6yn533g78nxl6iskq6y95lxsy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/testify")) - (propagated-inputs - `(("go-github-com-stretchr-objx-0.1.0" - ,go-github-com-stretchr-objx-0.1.0) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.0" - ,go-github-com-davecgh-go-spew-1.1.0))) - (home-page "https://github.com/stretchr/testify") - (synopsis "Testify - Thou Shalt Write Tests") - (description - "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -") - (license license:expat))) - -(define-public go-github-com-apex-logs-0.0.7 - (package - (name "go-github-com-apex-logs") - (version "0.0.7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/apex/logs") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1h12q9sb7f4yjizajfxvjllzqab1s8scgqj22prwyfbbqg1ilchv")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/apex/logs")) - (propagated-inputs - `(("go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0" - ,go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0) - ("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0))) - (home-page "https://github.com/apex/logs") - (synopsis "Example") - (description "Go client for @url{https://apex.sh/logs/,Apex Logs}.") - (license license:expat))) - -(define-public go-github-com-aphistic-golf-0.0.0-20180712155816-02c07f170c5a - (package - (name "go-github-com-aphistic-golf") - (version "0.0.0-20180712155816-02c07f170c5a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/aphistic/golf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1qixab9bb29wqbr4nc5j3g25hq1j7am93f181rkj7a4qacncx763")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/aphistic/golf")) - (home-page "https://github.com/aphistic/golf") - (synopsis "golf") - (description - "This package provides logging capabilities using the GELF (@url{https://www.graylog.org/resources/gelf-2/,https://www.graylog.org/resources/gelf-2/}) log format -") - (license license:expat))) - -(define-public go-github-com-mattn-go-isatty-0.0.5 - (package - (name "go-github-com-mattn-go-isatty") - (version "0.0.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mattn/go-isatty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "114d5xm8rfxplzd7nxz97gfngb4bhqy102szl084d1afcxsvm4aa")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mattn/go-isatty")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223" - ,go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223))) - (home-page "https://github.com/mattn/go-isatty") - (synopsis "go-isatty") - (description "Package isatty implements interface to isatty -") - (license license:expat))) - -(define-public go-github-com-mattn-go-colorable-0.1.1 - (package - (name "go-github-com-mattn-go-colorable") - (version "0.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mattn/go-colorable") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0l640974j804c1yyjfgyxqlsivz0yrzmbql4mhcw2azryigkp08p")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mattn/go-colorable")) - (propagated-inputs - `(("go-github-com-mattn-go-isatty-0.0.5" - ,go-github-com-mattn-go-isatty-0.0.5))) - (home-page "https://github.com/mattn/go-colorable") - (synopsis "go-colorable") - (description "Colorable writer for windows.") - (license license:expat))) - -(define-public go-github-com-mgutz-ansi-0.0.0-20170206155736-9520e82c474b - (package - (name "go-github-com-mgutz-ansi") - (version "0.0.0-20170206155736-9520e82c474b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mgutz/ansi") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "00bz22314j26736w1f0q4jy9d9dfaml17vn890n5zqy3cmvmww1j")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mgutz/ansi")) - (home-page "https://github.com/mgutz/ansi") - (synopsis "ansi") - (description - "Package ansi is a small, fast library to create ANSI colored strings and codes. -") - (license license:expat))) - -(define-public go-github-com-fsnotify-fsnotify-1.4.7 - (package - (name "go-github-com-fsnotify-fsnotify") - (version "1.4.7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/fsnotify/fsnotify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/fsnotify/fsnotify")) - (home-page "https://github.com/fsnotify/fsnotify") - (synopsis "File system notifications for Go") - (description - "Package fsnotify provides a platform-independent interface for file system notifications. -") - (license license:bsd-3))) - -(define-public go-github-com-hpcloud-tail-1.0.0 - (package - (name "go-github-com-hpcloud-tail") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hpcloud/tail") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1njpzc0pi1acg5zx9y6vj9xi6ksbsc5d387rd6904hy6rh2m6kn0")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hpcloud/tail")) - (home-page "https://github.com/hpcloud/tail") - (synopsis "Go package for tail-ing files") - (description - "This package provides a Go package striving to emulate the features of the BSD @code{tail} program.") - (license license:expat))) - -(define-public go-github-com-onsi-ginkgo-1.6.0 - (package - (name "go-github-com-onsi-ginkgo") - (version "1.6.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/onsi/ginkgo") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0x0gc89vgq38xhgmi2h22bhr73cf2gmk42g89nz89k8dgg9hhr25")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/onsi/ginkgo")) - (home-page "https://github.com/onsi/ginkgo") - (synopsis "Ginkgo 2.0 Release Candidate is available!") - (description "Ginkgo is a BDD-style testing framework for Golang -") - (license license:expat))) - -(define-public go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd - (package - (name "go-golang-org-x-net") - (version "0.0.0-20180906233101-161cd47e91fd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0254ld010iijygbzykib2vags1dc0wlmcmhgh4jl8iny159lhbcv")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20180909124046-d0be0721c37e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "081wyvfnlf842dqg03raxfz6lldlxpmyh1prix9lmrrm65arxb12")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-gopkg-in-fsnotify-v1-1.4.7 - (package - (name "go-gopkg-in-fsnotify-v1") - (version "1.4.7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/fsnotify.v1") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) - (build-system go-build-system) - (arguments - '(#:import-path - "gopkg.in/fsnotify.v1" - #:unpack-path - "gopkg.in/fsnotify.v1")) - (home-page "https://gopkg.in/fsnotify.v1") - (synopsis "File system notifications for Go") - (description - "Package fsnotify provides a platform-independent interface for file system notifications. -") - (license license:bsd-3))) - -(define-public go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7 - (package - (name "go-gopkg-in-tomb-v1") - (version "1.0.0-20141024135613-dd632973f1e7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/tomb.v1") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1lqmq1ag7s4b3gc3ddvr792c5xb5k6sfn0cchr3i2s7f1c231zjv")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/tomb.v1" #:unpack-path "gopkg.in/tomb.v1")) - (home-page "https://gopkg.in/tomb.v1") - (synopsis "Installation and usage") - (description - "The tomb package offers a conventional API for clean goroutine termination. -") - (license license:bsd-3))) - -(define-public go-gopkg-in-yaml-v2-2.2.1 - (package - (name "go-gopkg-in-yaml-v2") - (version "2.2.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0dwjrs2lp2gdlscs7bsrmyc5yf6mm4fvgw71bzr9mv2qrd2q73s1")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v2") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language. -") - (license license:asl2.0))) - -(define-public go-github-com-onsi-gomega-1.5.0 - (package - (name "go-github-com-onsi-gomega") - (version "1.5.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/onsi/gomega") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1n7i4hksdgv410m43v2sw14bl5vy59dkp6nlw5l76nibbh37syr9")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/onsi/gomega")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1) - ("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" - ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) - ("go-gopkg-in-fsnotify-v1-1.4.7" ,go-gopkg-in-fsnotify-v1-1.4.7) - ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e" - ,go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e) - ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" - ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) - ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" - ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) - ("go-github-com-onsi-ginkgo-1.6.0" ,go-github-com-onsi-ginkgo-1.6.0) - ("go-github-com-hpcloud-tail-1.0.0" ,go-github-com-hpcloud-tail-1.0.0) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0) - ("go-github-com-fsnotify-fsnotify-1.4.7" - ,go-github-com-fsnotify-fsnotify-1.4.7))) - (home-page "https://github.com/onsi/gomega") - (synopsis ": a BDD Testing Framework for Golang") - (description - "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library. -") - (license license:expat))) - -(define-public go-github-com-sergi-go-diff-1.0.0 - (package - (name "go-github-com-sergi-go-diff") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sergi/go-diff") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0swiazj8wphs2zmk1qgq75xza6m19snif94h2m6fi8dqkwqdl7c7")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/sergi/go-diff")) - (home-page "https://github.com/sergi/go-diff") - (synopsis "go-diff") - (description - "go-diff offers algorithms to perform operations required for synchronizing plain text:") - (license license:expat))) - -(define-public go-golang-org-x-crypto-0.0.0-20190426145343-a29dc8fdc734 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20190426145343-a29dc8fdc734") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "07f0jj4haqs0ywc1akk1qjwn5msl2j0pry1rxjkkbfcq4r6ihc1p")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" - ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) - ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" - ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-github-com-aphistic-sweet-0.2.0 - (package - (name "go-github-com-aphistic-sweet") - (version "0.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/aphistic/sweet") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1bb4qagfxf6byqn2yx0vq24xfvisz3ah4w6bvqclc8cklvfngw43")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/aphistic/sweet")) - (propagated-inputs - `(("go-golang-org-x-crypto-0.0.0-20190426145343-a29dc8fdc734" - ,go-golang-org-x-crypto-0.0.0-20190426145343-a29dc8fdc734) - ("go-github-com-sergi-go-diff-1.0.0" - ,go-github-com-sergi-go-diff-1.0.0) - ("go-github-com-onsi-gomega-1.5.0" ,go-github-com-onsi-gomega-1.5.0) - ("go-github-com-mgutz-ansi-0.0.0-20170206155736-9520e82c474b" - ,go-github-com-mgutz-ansi-0.0.0-20170206155736-9520e82c474b) - ("go-github-com-mattn-go-colorable-0.1.1" - ,go-github-com-mattn-go-colorable-0.1.1))) - (home-page "https://github.com/aphistic/sweet") - (synopsis "sweet") - (description - "Sweet is a pluggable test runner capable of hooking into standard Go tests. It attempts to provide access to the standard Go test tool as close as possible while adding support for test suites and plugins that can hook into test results to add additional functionality.") - (license license:expat))) - -(define-public go-github-com-jmespath-go-jmespath-0.0.0-20180206201540-c2b33e8439af - (package - (name "go-github-com-jmespath-go-jmespath") - (version "0.0.0-20180206201540-c2b33e8439af") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/jmespath/go-jmespath") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1r6w7ydx8ydryxk3sfhzsk8m6f1nsik9jg3i1zhi69v4kfl4d5cz")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/jmespath/go-jmespath")) - (home-page "https://github.com/jmespath/go-jmespath") - (synopsis "go-jmespath - A JMESPath implementation in Go") - (description - "go-jmespath is a GO implementation of JMESPath, -which is a query language for JSON. It will take a JSON -document and transform it into another JSON document -through a JMESPath expression.") - (license license:asl2.0))) - -(define-public go-github-com-aws-aws-sdk-go-1.20.6 - (package - (name "go-github-com-aws-aws-sdk-go") - (version "1.20.6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/aws/aws-sdk-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "016vy5s9finyfgh08j7rvn2pnwymdgj2ydr59w57pysnri87mdwx")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/aws/aws-sdk-go")) - (propagated-inputs - `(("go-github-com-jmespath-go-jmespath-0.0.0-20180206201540-c2b33e8439af" - ,go-github-com-jmespath-go-jmespath-0.0.0-20180206201540-c2b33e8439af))) - (home-page "https://github.com/aws/aws-sdk-go") - (synopsis "AWS SDK for Go") - (description - "Package sdk is the official AWS SDK for the Go programming language. -") - (license license:asl2.0))) - -(define-public go-github-com-aybabtme-rgbterm-0.0.0-20170906152045-cc83f3b3ce59 - (package - (name "go-github-com-aybabtme-rgbterm") - (version "0.0.0-20170906152045-cc83f3b3ce59") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/aybabtme/rgbterm") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0wvmxvjn64968ikvnxrflb1x8rlcwzpfl53fzbxff2axbx9lq50q")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/aybabtme/rgbterm")) - (home-page "https://github.com/aybabtme/rgbterm") - (synopsis "RGB terminal") - (description - "Package rgbterm colorizes bytes and strings using RGB colors, for a -full range of pretty terminal strings. -") - (license #f))) - -(define-public go-github-com-fatih-color-1.7.0 - (package - (name "go-github-com-fatih-color") - (version "1.7.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/fatih/color") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0v8msvg38r8d1iiq2i5r4xyfx0invhc941kjrsg5gzwvagv55inv")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/fatih/color")) - (home-page "https://github.com/fatih/color") - (synopsis "color") - (description - "Package color is an ANSI color package to output colorized or SGR defined -output to the standard output. The API can be used in several way, pick one -that suits you. -") - (license license:expat))) - -(define-public go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515 - (package - (name "go-github-com-kr-logfmt") - (version "0.0.0-20140226030751-b84e30acd515") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/logfmt") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "02ldzxgznrfdzvghfraslhgp19la1fczcbzh7wm2zdc6lmpd1qq9")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/logfmt")) - (home-page "https://github.com/kr/logfmt") - (synopsis #f) - (description - "Package implements the decoding of logfmt key-value pairs. -") - (license license:expat))) - -(define-public go-github-com-go-logfmt-logfmt-0.4.0 - (package - (name "go-github-com-go-logfmt-logfmt") - (version "0.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/go-logfmt/logfmt") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "06smxc112xmixz78nyvk3b2hmc7wasf2sl5vxj1xz62kqcq9lzm9")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/go-logfmt/logfmt")) - (propagated-inputs - `(("go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515" - ,go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515))) - (home-page "https://github.com/go-logfmt/logfmt") - (synopsis "logfmt") - (description - "Package logfmt implements utilities to marshal and unmarshal data in the -logfmt format. The logfmt format records key/value pairs in a way that -balances readability for humans and simplicity of computer parsing. It is -most commonly used as a more human friendly alternative to JSON for -structured logging. -") - (license license:expat))) - -(define-public go-github-com-golang-protobuf-1.3.1 - (package - (name "go-github-com-golang-protobuf") - (version "1.3.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "15am4s4646qy6iv0g3kkqq52rzykqjhm4bf08dk0fy2r58knpsyl")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-github-com-google-uuid-1.1.1 - (package - (name "go-github-com-google-uuid") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/uuid") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hfxcf9frkb57k6q0rdkrmnfs78ms21r1qfk9fhlqga2yh5xg8zb")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/uuid")) - (home-page "https://github.com/google/uuid") - (synopsis "uuid") - (description "Package uuid generates and inspects UUIDs. -") - (license license:bsd-3))) - -(define-public go-github-com-jpillora-backoff-0.0.0-20180909062703-3050d21c67d7 - (package - (name "go-github-com-jpillora-backoff") - (version "0.0.0-20180909062703-3050d21c67d7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/jpillora/backoff") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1nxapdx9xg5gwiscfhq7m0w14hj4gaxb4avmgf1mx9zd3jnw9jxv")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/jpillora/backoff")) - (home-page "https://github.com/jpillora/backoff") - (synopsis "Backoff") - (description - "Package backoff provides an exponential-backoff implementation. -") - (license license:expat))) - -(define-public go-github-com-kr-pretty-0.2.0 - (package - (name "go-github-com-kr-pretty") - (version "0.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/pretty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ywbfzz1h3a3qd8rpkiqwi1dm4w8ls9ijb4x1b7567grns9f0vnp")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/pretty")) - (propagated-inputs - `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) - (home-page "https://github.com/kr/pretty") - (synopsis #f) - (description - "Package pretty provides pretty-printing for Go values. This is -useful during debugging, to avoid wrapping long output lines in -the terminal. -") - (license license:expat))) - -(define-public go-github-com-mattn-go-colorable-0.1.2 - (package - (name "go-github-com-mattn-go-colorable") - (version "0.1.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mattn/go-colorable") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0512jm3wmzkkn7d99x9wflyqf48n5ri3npy1fqkq6l6adc5mni3n")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mattn/go-colorable")) - (propagated-inputs - `(("go-github-com-mattn-go-isatty-0.0.8" - ,go-github-com-mattn-go-isatty-0.0.8))) - (home-page "https://github.com/mattn/go-colorable") - (synopsis "go-colorable") - (description "Colorable writer for windows.") - (license license:expat))) - -(define-public go-github-com-pkg-errors-0.8.1 - (package - (name "go-github-com-pkg-errors") - (version "0.8.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pkg/errors") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0g5qcb4d4fd96midz0zdk8b9kz8xkzwfa8kr1cliqbg8sxsy5vd1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pkg/errors")) - (home-page "https://github.com/pkg/errors") - (synopsis "errors") - (description "Package errors provides simple error handling primitives. -") - (license license:bsd-2))) - -(define-public go-github-com-rogpeppe-fastuuid-1.1.0 - (package - (name "go-github-com-rogpeppe-fastuuid") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/rogpeppe/fastuuid") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1jlif5pxyz3md02ij93kd2y2j1zz0ajc9k8azvn83vv6l3r5c1zg")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/rogpeppe/fastuuid")) - (home-page "https://github.com/rogpeppe/fastuuid") - (synopsis "fastuuid") - (description - "Package fastuuid provides fast UUID generation of 192 bit -universally unique identifiers. -") - (license license:bsd-3))) - -(define-public go-github-com-smartystreets-go-aws-auth-0.0.0-20180515143844-0c1422d1fdb9 - (package - (name "go-github-com-smartystreets-go-aws-auth") - (version "0.0.0-20180515143844-0c1422d1fdb9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/smartystreets-archives/go-aws-auth") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0krfdpgn3gfii1z9fi8ydfw0wwfqyvp6w3rji7w92m528zkjl93d")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/smartystreets/go-aws-auth")) - (home-page "https://github.com/smartystreets/go-aws-auth") - (synopsis "go-aws-auth") - (description - "Package awsauth implements AWS request signing using Signed Signature Version 2, -Signed Signature Version 3, and Signed Signature Version 4. Supports S3 and STS. -") - (license license:expat))) - -(define-public go-github-com-smartystreets-assertions-1.0.0 - (package - (name "go-github-com-smartystreets-assertions") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/smartystreets/assertions") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1188hs39zvil41sdnxs83h1hp319lfyc5n2rvd1xnhz1dh5qjjh4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/smartystreets/assertions")) - (home-page "https://github.com/smartystreets/assertions") - (synopsis #f) - (description - "Package assertions contains the implementations for all assertions which -are referenced in goconvey's `convey` package -(github.com/smartystreets/goconvey/convey) and gunit (github.com/smartystreets/gunit) -for use with the So(...) method. -They can also be used in traditional Go test functions and even in -applications. -") - (license license:expat))) - -(define-public go-github-com-smartystreets-gunit-1.0.0 - (package - (name "go-github-com-smartystreets-gunit") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/smartystreets/gunit") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "11d09rl5qqpj36a311pjj8w5jkj83d5b8gdcsx8f1zn4j924sm5d")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/smartystreets/gunit")) - (propagated-inputs - `(("go-github-com-smartystreets-assertions-1.0.0" - ,go-github-com-smartystreets-assertions-1.0.0))) - (home-page "https://github.com/smartystreets/gunit") - (synopsis "gunit") - (description - "Package gunit provides \"testing\" package hooks and convenience -functions for writing tests in an xUnit style. -See the README file and the examples folder for examples. -") - (license license:expat))) - -(define-public go-github-com-stretchr-testify-1.4.0 - (package - (name "go-github-com-stretchr-testify") - (version "1.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/testify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "187i5g88sxfy4vxpm7dw1gwv29pa2qaq475lxrdh5livh69wqfjb")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/testify")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) - ("go-github-com-stretchr-objx-0.1.0" - ,go-github-com-stretchr-objx-0.1.0) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.0" - ,go-github-com-davecgh-go-spew-1.1.0))) - (home-page "https://github.com/stretchr/testify") - (synopsis "Testify - Thou Shalt Write Tests") - (description - "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -") - (license license:expat))) - -(define-public go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0 - (package - (name "go-github-com-tj-assert") - (version "0.0.0-20171129193455-018094318fb0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/tj/assert") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "15ika7izp5hkd10dm30apwfvpm0d1yl2rnxs6896q0svz9zvi2z3")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/tj/assert")) - (home-page "https://github.com/tj/assert") - (synopsis "assert") - (description - "Package assert implements the same assertions as the `assert` package but -stops test execution when a test fails. -") - (license license:expat))) - -(define-public go-github-com-tj-go-elastic-0.0.0-20171221160941-36157cbbebc2 - (package - (name "go-github-com-tj-go-elastic") - (version "0.0.0-20171221160941-36157cbbebc2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/tj/go-elastic") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1r94vc4hbfvqvjz74n4mvsw4dy3vbyzlivb90kyn8vn76a4wqk69")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/tj/go-elastic")) - (home-page "https://github.com/tj/go-elastic") - (synopsis "go-elastic") - (description - "Package elastic provides an Elasticsearch client with AWS sigv4 support. -") - (license license:expat))) - -(define-public go-github-com-tj-go-kinesis-0.0.0-20171128231115-08b17f58cb1b - (package - (name "go-github-com-tj-go-kinesis") - (version "0.0.0-20171128231115-08b17f58cb1b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/tj/go-kinesis") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "108c6p5j6rhhc2cnc2v5368yfsw73y6lzlvz02vpvvjph8rhmld4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/tj/go-kinesis")) - (home-page "https://github.com/tj/go-kinesis") - (synopsis "go-kinesis") - (description - "Package kinesis implements a batch producer built on top of the official AWS SDK. -") - (license license:expat))) - -(define-public go-github-com-tj-go-spin-1.1.0 - (package - (name "go-github-com-tj-go-spin") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/tj/go-spin") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "11xr67991m5pwsy1dira3iwd0sr55vmn1cyjwmlqziw4bwpym64s")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/tj/go-spin")) - (home-page "https://github.com/tj/go-spin") - (synopsis #f) - (description #f) - (license #f))) - -(define-public go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190620200207-3b0461eec859") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0l00c8l0a8xnv6qdpwfzxxsr58jggacgzdrwiprrfx2xqm37b6d5")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20180917221912-90fa682c2a6e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-golang-org-x-text-0.3.2 - (package - (name "go-golang-org-x-text") - (version "0.3.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0flv9idw0jm5nm8lx25xqanbkqgfiym6619w575p7nrdh0riqwqh")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/text")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" - ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) - (home-page "https://golang.org/x/text") - (synopsis "Go Text") - (description - "text is a repository of text-related packages related to internationalization -(i18n) and localization (l10n), such as character encodings, text -transformations, and locale-specific text handling. -") - (license license:bsd-3))) - -(define-public go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15 - (package - (name "go-gopkg-in-check-v1") - (version "1.0.0-20190902080502-41f04d3bba15") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/check.v1") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0vfk9czmlxmp6wndq8k17rhnjxal764mxfhrccza7nwlia760pjy")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) - (home-page "https://gopkg.in/check.v1") - (synopsis "Instructions") - (description - "Package check is a rich testing extension for Go's testing package. -") - (license license:bsd-2))) - -(define-public go-github-com-apex-log-1.4.0 - (package - (name "go-github-com-apex-log") - (version "1.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/apex/log") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0711096f04dyjk2vgj5b50491fl36wciwbq80xwvns5wwkqdg2z5")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/apex/log")) - (propagated-inputs - `(("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" - ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) - ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) - ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" - ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) - ("go-github-com-tj-go-spin-1.1.0" ,go-github-com-tj-go-spin-1.1.0) - ("go-github-com-tj-go-kinesis-0.0.0-20171128231115-08b17f58cb1b" - ,go-github-com-tj-go-kinesis-0.0.0-20171128231115-08b17f58cb1b) - ("go-github-com-tj-go-elastic-0.0.0-20171221160941-36157cbbebc2" - ,go-github-com-tj-go-elastic-0.0.0-20171221160941-36157cbbebc2) - ("go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0" - ,go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0) - ("go-github-com-stretchr-testify-1.4.0" - ,go-github-com-stretchr-testify-1.4.0) - ("go-github-com-smartystreets-gunit-1.0.0" - ,go-github-com-smartystreets-gunit-1.0.0) - ("go-github-com-smartystreets-go-aws-auth-0.0.0-20180515143844-0c1422d1fdb9" - ,go-github-com-smartystreets-go-aws-auth-0.0.0-20180515143844-0c1422d1fdb9) - ("go-github-com-rogpeppe-fastuuid-1.1.0" - ,go-github-com-rogpeppe-fastuuid-1.1.0) - ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) - ("go-github-com-mattn-go-colorable-0.1.2" - ,go-github-com-mattn-go-colorable-0.1.2) - ("go-github-com-kr-pretty-0.2.0" ,go-github-com-kr-pretty-0.2.0) - ("go-github-com-jpillora-backoff-0.0.0-20180909062703-3050d21c67d7" - ,go-github-com-jpillora-backoff-0.0.0-20180909062703-3050d21c67d7) - ("go-github-com-google-uuid-1.1.1" ,go-github-com-google-uuid-1.1.1) - ("go-github-com-golang-protobuf-1.3.1" - ,go-github-com-golang-protobuf-1.3.1) - ("go-github-com-go-logfmt-logfmt-0.4.0" - ,go-github-com-go-logfmt-logfmt-0.4.0) - ("go-github-com-fatih-color-1.7.0" ,go-github-com-fatih-color-1.7.0) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1) - ("go-github-com-aybabtme-rgbterm-0.0.0-20170906152045-cc83f3b3ce59" - ,go-github-com-aybabtme-rgbterm-0.0.0-20170906152045-cc83f3b3ce59) - ("go-github-com-aws-aws-sdk-go-1.20.6" - ,go-github-com-aws-aws-sdk-go-1.20.6) - ("go-github-com-aphistic-sweet-0.2.0" - ,go-github-com-aphistic-sweet-0.2.0) - ("go-github-com-aphistic-golf-0.0.0-20180712155816-02c07f170c5a" - ,go-github-com-aphistic-golf-0.0.0-20180712155816-02c07f170c5a) - ("go-github-com-apex-logs-0.0.7" ,go-github-com-apex-logs-0.0.7))) - (home-page "https://github.com/apex/log") - (synopsis "Handlers") - (description - "Package log implements a simple structured logging API designed with few assumptions. Designed for -centralized logging solutions such as Kinesis which require encoding and decoding before fanning-out -to handlers. -") - (license license:expat))) - -(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0 - (package - (name "go-github-com-cpuguy83-go-md2man-v2") - (version "2.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cpuguy83/go-md2man") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) - (propagated-inputs - `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" - ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) - ("go-github-com-russross-blackfriday-v2-2.0.1" - ,go-github-com-russross-blackfriday-v2-2.0.1) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0))) - (home-page "https://github.com/cpuguy83/go-md2man") - (synopsis "go-md2man") - (description "Converts markdown into roff (man pages).") - (license license:expat))) - -(define-public go-github-com-cyphar-filepath-securejoin-0.2.2 - (package - (name "go-github-com-cyphar-filepath-securejoin") - (version "0.2.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cyphar/filepath-securejoin") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0id32zjb92wm569m29nfrzz5mw9z1glr3klayr6j134pp4h1sgq4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/cyphar/filepath-securejoin")) - (home-page "https://github.com/cyphar/filepath-securejoin") - (synopsis #f) - (description - "Package securejoin is an implementation of the hopefully-soon-to-be-included -SecureJoin helper that is meant to be part of the \"path/filepath\" package. -The purpose of this project is to provide a PoC implementation to make the -SecureJoin proposal (@url{https://github.com/golang/go/issues/20126,https://github.com/golang/go/issues/20126}) more -tangible. -") - (license license:bsd-3))) - -(define-public go-github-com-docker-go-units-0.4.0 - (package - (name "go-github-com-docker-go-units") - (version "0.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/docker/go-units") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0k8gja8ql4pqg5rzmqvka42vjfs6rzablak87whcnqba6qxpimvz")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/docker/go-units")) - (home-page "https://github.com/docker/go-units") - (synopsis "Introduction") - (description - "Package units provides helper function to parse and print size and time units -in human-readable format. -") - (license license:asl2.0))) - -(define-public go-google-golang-org-protobuf-1.23.0 - (package - (name "go-google-golang-org-protobuf") - (version "1.23.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "03yan0m1v0zmlr935p4n24fd376mznsg85zy8sywbgisls4s1bzy")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.0" - ,go-github-com-golang-protobuf-1.4.0))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.4.2 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0m5z81im4nsyfgarjhppayk4hqnrwswr3nix9mj8pff8x9jvcjqw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.23.0" - ,go-google-golang-org-protobuf-1.23.0) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-github-com-google-go-cmp-0.5.0 - (package - (name "go-github-com-google-go-cmp") - (version "0.5.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "04pzp583p6b32y34c6jygfxarff9qjs39rarvfh6467z24sdd9k4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") - (license license:bsd-3))) - -(define-public go-github-com-klauspost-compress-1.11.3 - (package - (name "go-github-com-klauspost-compress") - (version "1.11.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/klauspost/compress") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "04wpilw6072fh2wd492ma1nw4br7bvz466mj0vi2m1g4w6d0z88z")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/klauspost/compress")) - (home-page "https://github.com/klauspost/compress") - (synopsis "compress") - (description "This package provides various compression algorithms.") - (license #f))) - -(define-public go-github-com-klauspost-pgzip-1.2.4 - (package - (name "go-github-com-klauspost-pgzip") - (version "1.2.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/klauspost/pgzip") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0mnhfdn0isbkra455jynqjbmrwymx09shlbzbyvgfycih3nbrif0")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/klauspost/pgzip")) - (home-page "https://github.com/klauspost/pgzip") - (synopsis "pgzip") - (description - "Package pgzip implements reading and writing of gzip format compressed files, -as specified in @url{https://rfc-editor.org/rfc/rfc1952.html,RFC 1952}. -") - (license license:expat))) - -(define-public go-github-com-creack-pty-1.1.9 - (package - (name "go-github-com-creack-pty") - (version "1.1.9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/creack/pty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1v52599qq76dwq742mffakzj6mxqqccv2szn3hjicjld56nmd2d3")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/creack/pty")) - (home-page "https://github.com/creack/pty") - (synopsis "pty") - (description - "Package pty provides functions for working with Unix terminals. -") - (license license:expat))) - -(define-public go-github-com-kr-text-0.2.0 - (package - (name "go-github-com-kr-text") - (version "0.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hf58ypz6rxsw6nx3i856whir9lvy4sdx946wbw1nfaf2rdmr9vx")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/text")) - (propagated-inputs - `(("go-github-com-creack-pty-1.1.9" ,go-github-com-creack-pty-1.1.9))) - (home-page "https://github.com/kr/text") - (synopsis #f) - (description - "Package text provides rudimentary functions for manipulating text in -paragraphs. -") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20200116001909-b77594299b42 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200116001909-b77594299b42") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0isfm6kmh4fjhh6m7mrb3zvdjka2y31c5habr5kydl7rg0lwkabv")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-mattn-go-isatty-0.0.12 - (package - (name "go-github-com-mattn-go-isatty") - (version "0.0.12") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mattn/go-isatty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1dfsh27d52wmz0nmmzm2382pfrs2fcijvh6cgir7jbb4pnigr5w4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mattn/go-isatty")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20200116001909-b77594299b42" - ,go-golang-org-x-sys-0.0.0-20200116001909-b77594299b42))) - (home-page "https://github.com/mattn/go-isatty") - (synopsis "go-isatty") - (description "Package isatty implements interface to isatty -") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20200223170610-d5e6a3e2c0ae - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200223170610-d5e6a3e2c0ae") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0lz7vm5dz2p14fzq2j4m1l9p392cl0fa73aaf45gln07ylfajk4n")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-mattn-go-colorable-0.1.6 - (package - (name "go-github-com-mattn-go-colorable") - (version "0.1.6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mattn/go-colorable") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0zv9ix7g0qf71jdhv7gbab9hjfkgbxl22kwhpz9ck1y6m4g1zxaw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mattn/go-colorable")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20200223170610-d5e6a3e2c0ae" - ,go-golang-org-x-sys-0.0.0-20200223170610-d5e6a3e2c0ae) - ("go-github-com-mattn-go-isatty-0.0.12" - ,go-github-com-mattn-go-isatty-0.0.12))) - (home-page "https://github.com/mattn/go-colorable") - (synopsis "go-colorable") - (description "Colorable writer for windows.") - (license license:expat))) - -(define-public go-github-com-mohae-deepcopy-0.0.0-20170929034955-c48cc78d4826 - (package - (name "go-github-com-mohae-deepcopy") - (version "0.0.0-20170929034955-c48cc78d4826") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mohae/deepcopy") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0jdhsz0hsbn0k45rmvm39knbvs024j24ay2q65k5ih8ql8m2c0sd")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mohae/deepcopy")) - (home-page "https://github.com/mohae/deepcopy") - (synopsis "deepCopy") - (description - "deepcopy makes deep copies of things. A standard copy will copy the -pointers: deep copy copies the values pointed to. Unexported field -values are not copied. -") - (license license:expat))) - -(define-public go-github-com-kr-pty-1.1.1 - (package - (name "go-github-com-kr-pty") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/pty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0383f0mb9kqjvncqrfpidsf8y6ns5zlrc91c6a74xpyxjwvzl2y6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/pty")) - (home-page "https://github.com/kr/pty") - (synopsis "pty") - (description - "Package pty is a wrapper for github.com/creack/pty, which provides -functions for working with Unix terminals. -") - (license license:expat))) - -(define-public go-github-com-kr-text-0.1.0 - (package - (name "go-github-com-kr-text") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1gm5bsl01apvc84bw06hasawyqm4q84vx1pm32wr9jnd7a8vjgj1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/text")) - (propagated-inputs - `(("go-github-com-kr-pty-1.1.1" ,go-github-com-kr-pty-1.1.1))) - (home-page "https://github.com/kr/text") - (synopsis #f) - (description - "Package text provides rudimentary functions for manipulating text in -paragraphs. -") - (license license:expat))) - -(define-public go-github-com-niemeyer-pretty-0.0.0-20200227124842-a10e7caefd8e - (package - (name "go-github-com-niemeyer-pretty") - (version "0.0.0-20200227124842-a10e7caefd8e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/niemeyer/pretty") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1jmazh4xzaa3v6g46hz60q2z7nmqs9l9cxdzmmscn3kbcs2znq4v")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/niemeyer/pretty")) - (propagated-inputs - `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) - (home-page "https://github.com/niemeyer/pretty") - (synopsis #f) - (description - "Package pretty provides pretty-printing for Go values. This is -useful during debugging, to avoid wrapping long output lines in -the terminal. -") - (license license:expat))) - -(define-public go-github-com-opencontainers-go-digest-1.0.0 - (package - (name "go-github-com-opencontainers-go-digest") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/go-digest") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0i5acjajvr6hi9zb7gxwifd8w28y884cv7cx36adj8lngj647xbi")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/go-digest")) - (home-page "https://github.com/opencontainers/go-digest") - (synopsis "go-digest") - (description - "Package digest provides a generalized type to opaquely represent message -digests and their operations within the registry. The Digest type is -designed to serve as a flexible identifier in a content-addressable system. -More importantly, it provides tools and wrappers to work with -hash.Hash-based digests with little effort. -") - (license (list license:asl2.0 license:cc-by-sa4.0)))) - -(define-public go-github-com-opencontainers-image-spec-1.0.1 - (package - (name "go-github-com-opencontainers-image-spec") - (version "1.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/image-spec") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "03dvbj3dln8c55v9gp79mgmz2yi2ws3r08iyz2fk41y3i22iaw1q")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/image-spec")) - (home-page "https://github.com/opencontainers/image-spec") - (synopsis "OCI Image Format Specification") - (description - "The OCI Image Format project creates and maintains the software shipping container image format spec (OCI Image Format).") - (license license:asl2.0))) - -(define-public go-github-com-opencontainers-runc-1.0.0-rc90 - (package - (name "go-github-com-opencontainers-runc") - (version "1.0.0-rc90") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/runc") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0pi3rvj585997m4z9ljkxz2z9yxf9p2jr0pmqbqrc7bc95f5hagk")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/runc")) - (home-page "https://github.com/opencontainers/runc") - (synopsis "runc") - (description - "@code{runc} is a CLI tool for spawning and running containers according to the OCI specification.") - (license license:asl2.0))) - -(define-public go-github-com-opencontainers-runtime-spec-1.0.2 - (package - (name "go-github-com-opencontainers-runtime-spec") - (version "1.0.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/runtime-spec") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19w981vcmd5lp2hy0630x6ayb8zz17n2vxqm2py5mg945xflcizg")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) - (home-page "https://github.com/opencontainers/runtime-spec") - (synopsis "Open Container Initiative Runtime Specification") - (description - "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") - (license license:asl2.0))) - -(define-public go-github-com-pkg-errors-0.9.1 - (package - (name "go-github-com-pkg-errors") - (version "0.9.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pkg/errors") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1761pybhc2kqr6v5fm8faj08x9bql8427yqg6vnfv6nhrasx1mwq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pkg/errors")) - (home-page "https://github.com/pkg/errors") - (synopsis "errors") - (description "Package errors provides simple error handling primitives. -") - (license license:bsd-2))) - -(define-public go-github-com-rootless-containers-proto-0.1.0 - (package - (name "go-github-com-rootless-containers-proto") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/rootless-containers/proto") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1yik3b2fxpdkhplni8saabpvf43wnnz4wh6fapak29mkj3lx3mfh")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/rootless-containers/proto")) - (home-page "https://github.com/rootless-containers/proto") - (synopsis #f) - (description - "This project contains the @url{https://developers.google.com/protocol-buffers/,protobuf} definition of the -@code{user.rootlesscontainers} extended attribute. The main purpose of this -attribute is to allow for a interoperable and standardised way of emulating -persistent syscalls in a @url{https://rootlesscontaine.rs/,rootless container} (syscalls -such as @code{chown(2)} which would ordinarily fail).") - (license license:asl2.0))) - -(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.3 - (package - (name "go-github-com-konsorten-go-windows-terminal-sequences") - (version "1.0.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/konsorten/go-windows-terminal-sequences") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1yrsd4s8vhjnxhwbigirymz89dn6qfjnhn28i33vvvdgf96j6ypl")))) - (build-system go-build-system) - (arguments - '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) - (home-page "https://github.com/konsorten/go-windows-terminal-sequences") - (synopsis "Windows Terminal Sequences") - (description - "This library allow for enabling Windows terminal color support for Go.") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190422165155-953cdadca894") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0gkha4whk8xkcv3isigbs250akag99isxnd3v9xmy0kl3g88hxy1")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-sirupsen-logrus-1.6.0 - (package - (name "go-github-com-sirupsen-logrus") - (version "1.6.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sirupsen/logrus") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1zf9is1yxxnna0d1pyag2m9ziy3l27zb2j92p9msm1gx5jjrvzzj")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/sirupsen/logrus")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894" - ,go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894) - ("go-github-com-stretchr-testify-1.2.2" - ,go-github-com-stretchr-testify-1.2.2) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.3" - ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.3) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/sirupsen/logrus") - (synopsis "Logrus") - (description - "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. -") - (license license:expat))) - -(define-public go-github-com-davecgh-go-spew-1.1.0 - (package - (name "go-github-com-davecgh-go-spew") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/davecgh/go-spew") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/davecgh/go-spew")) - (home-page "https://github.com/davecgh/go-spew") - (synopsis "go-spew") - (description - "Go-spew implements a deep pretty printer for Go data structures to aid in -debugging. A comprehensive suite of tests with 100% test coverage is provided -to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage -report. Go-spew is licensed under the liberal ISC license, so it may be used in -open source or commercial projects.") - (license license:isc))) - -(define-public go-github-com-stretchr-objx-0.1.0 - (package - (name "go-github-com-stretchr-objx") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/objx") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/objx")) - (home-page "https://github.com/stretchr/objx") - (synopsis "Objx") - (description - "Objx - Go package for dealing with maps, slices, JSON and other data. -") - (license license:expat))) - -(define-public go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c - (package - (name "go-gopkg-in-yaml-v3") - (version "3.0.0-20200313102051-9f266ea9e77c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v3") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1bbai3lzb50m0x2vwsdbagrbhvfylj9k1m32hgbqwldqx4p9ay35")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v3") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language. -") - (license #f))) - -(define-public go-github-com-stretchr-testify-1.6.1 - (package - (name "go-github-com-stretchr-testify") - (version "1.6.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/testify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1yhiqqzjvi63pf01rgzx68gqkkvjx03fvl5wk30br5l6s81s090l")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/testify")) - (propagated-inputs - `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" - ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) - ("go-github-com-stretchr-objx-0.1.0" - ,go-github-com-stretchr-objx-0.1.0) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.0" - ,go-github-com-davecgh-go-spew-1.1.0))) - (home-page "https://github.com/stretchr/testify") - (synopsis "Testify - Thou Shalt Write Tests") - (description - "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -") - (license license:expat))) - -(define-public go-gopkg-in-yaml-v3-3.0.0-20200605160147-a5ece683394c - (package - (name "go-gopkg-in-yaml-v3") - (version "3.0.0-20200605160147-a5ece683394c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v3") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "03cm7c3p5fh0aa8vnxv5010dgqqr268ivb480ix1salxx3396w68")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v3") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language. -") - (license #f))) - -(define-public go-github-com-tj-assert-0.0.3 - (package - (name "go-github-com-tj-assert") - (version "0.0.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/tj/assert") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1j5swk3fjq1h5fpqkipddz2ccnbidr7qrpm5dpdaflg9q5jnc673")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/tj/assert")) - (propagated-inputs - `(("go-gopkg-in-yaml-v3-3.0.0-20200605160147-a5ece683394c" - ,go-gopkg-in-yaml-v3-3.0.0-20200605160147-a5ece683394c) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/tj/assert") - (synopsis "assert") - (description - "Package assert implements the same assertions as the `assert` package but -stops test execution when a test fails. -") - (license license:expat))) - -(define-public go-github-com-russross-blackfriday-v2-2.0.1 - (package - (name "go-github-com-russross-blackfriday-v2") - (version "2.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/russross/blackfriday") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0nlz7isdd4rgnwzs68499hlwicxz34j2k2a0b8jy0y7ycd2bcr5j")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/russross/blackfriday/v2")) - (home-page "https://github.com/russross/blackfriday") - (synopsis "Blackfriday") - (description "Package blackfriday is a markdown processor. -") - (license license:bsd-2))) - -(define-public go-github-com-shurcool-sanitized-anchor-name-1.0.0 - (package - (name "go-github-com-shurcool-sanitized-anchor-name") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/shurcooL/sanitized_anchor_name") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1gv9p2nr46z80dnfjsklc6zxbgk96349sdsxjz05f3z6wb6m5l8f")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/shurcooL/sanitized_anchor_name")) - (home-page "https://github.com/shurcooL/sanitized_anchor_name") - (synopsis "sanitized_anchor_name") - (description - "Package sanitized_anchor_name provides a func to create sanitized anchor names. -") - (license license:expat))) - -(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d - (package - (name "go-github-com-cpuguy83-go-md2man-v2") - (version "2.0.0-20190314233015-f79a8a8ca69d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cpuguy83/go-md2man") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) - (propagated-inputs - `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" - ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) - ("go-github-com-russross-blackfriday-v2-2.0.1" - ,go-github-com-russross-blackfriday-v2-2.0.1) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0))) - (home-page "https://github.com/cpuguy83/go-md2man") - (synopsis "go-md2man") - (description "Converts markdown into roff (man pages).") - (license license:expat))) - -(define-public go-gopkg-in-yaml-v2-2.2.2 - (package - (name "go-gopkg-in-yaml-v2") - (version "2.2.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "01wj12jzsdqlnidpyjssmj0r4yavlqy7dwrg7adqd8dicjc4ncsa")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v2") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language. -") - (license license:asl2.0))) - -(define-public go-github-com-urfave-cli-1.22.4 - (package - (name "go-github-com-urfave-cli") - (version "1.22.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/urfave/cli") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1s7frsmiih4wh8vpx9z3ck4667c6vpjrmba7b9ymnv1p9khyg8wc")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/urfave/cli")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) - ("go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d" - ,go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d) - ("go-github-com-burntsushi-toml-0.3.1" - ,go-github-com-burntsushi-toml-0.3.1))) - (home-page "https://github.com/urfave/cli") - (synopsis "cli") - (description - "Package cli provides a minimal framework for creating and organizing command line -Go applications. cli is designed to be easy to understand and write, the most simple -cli application can be written as follows: -") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190222072716-a9d3bda3a223") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1w45zc13xrjzl19s1sx74r5mg3lf2z2nm13wygcdq5r5pyjlhdz9")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-mattn-go-isatty-0.0.8 - (package - (name "go-github-com-mattn-go-isatty") - (version "0.0.8") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mattn/go-isatty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0rqfh1rj6f5wm8p2ky7inm8g10152p7w6n2cli17kf9gad797i8h")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mattn/go-isatty")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223" - ,go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223))) - (home-page "https://github.com/mattn/go-isatty") - (synopsis "go-isatty") - (description "Package isatty implements interface to isatty -") - (license license:expat))) - -(define-public go-github-com-mattn-go-colorable-0.1.4 - (package - (name "go-github-com-mattn-go-colorable") - (version "0.1.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mattn/go-colorable") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1yxcz08kminqr1221zxpibnbzfcgs3fafin0z9zqb3gqvf74jywz")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mattn/go-colorable")) - (propagated-inputs - `(("go-github-com-mattn-go-isatty-0.0.8" - ,go-github-com-mattn-go-isatty-0.0.8))) - (home-page "https://github.com/mattn/go-colorable") - (synopsis "go-colorable") - (description "Colorable writer for windows.") - (license license:expat))) - -(define-public go-github-com-mattn-go-isatty-0.0.11 - (package - (name "go-github-com-mattn-go-isatty") - (version "0.0.11") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mattn/go-isatty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0h671sv7hfprja495kavazkalkx7xzaqksjh13brcnwq67ijrali")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mattn/go-isatty")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037" - ,go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037))) - (home-page "https://github.com/mattn/go-isatty") - (synopsis "go-isatty") - (description "Package isatty implements interface to isatty -") - (license license:expat))) - -(define-public go-github-com-fatih-color-1.9.0 - (package - (name "go-github-com-fatih-color") - (version "1.9.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/fatih/color") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "086z8ssmr1fn9ba4mqnw7pnccfpys6l5yfhvycv1gdrsk7n27mvs")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/fatih/color")) - (propagated-inputs - `(("go-github-com-mattn-go-isatty-0.0.11" - ,go-github-com-mattn-go-isatty-0.0.11) - ("go-github-com-mattn-go-colorable-0.1.4" - ,go-github-com-mattn-go-colorable-0.1.4))) - (home-page "https://github.com/fatih/color") - (synopsis "color") - (description - "Package color is an ANSI color package to output colorized or SGR defined -output to the standard output. The API can be used in several way, pick one -that suits you. -") - (license license:expat))) - -(define-public go-github-com-davecgh-go-spew-1.1.1 - (package - (name "go-github-com-davecgh-go-spew") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/davecgh/go-spew") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/davecgh/go-spew")) - (home-page "https://github.com/davecgh/go-spew") - (synopsis "go-spew") - (description - "Go-spew implements a deep pretty printer for Go data structures to aid in -debugging. A comprehensive suite of tests with 100% test coverage is provided -to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage -report. Go-spew is licensed under the liberal ISC license, so it may be used in -open source or commercial projects.") - (license license:isc))) - -(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.1 - (package - (name "go-github-com-konsorten-go-windows-terminal-sequences") - (version "1.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/konsorten/go-windows-terminal-sequences") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1lchgf27n276vma6iyxa0v1xds68n2g8lih5lavqnx5x6q5pw2ip")))) - (build-system go-build-system) - (arguments - '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) - (home-page "https://github.com/konsorten/go-windows-terminal-sequences") - (synopsis "Windows Terminal Sequences") - (description - "This library allow for enabling Windows terminal color support for Go.") - (license license:expat))) - -(define-public go-github-com-pmezard-go-difflib-1.0.0 - (package - (name "go-github-com-pmezard-go-difflib") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pmezard/go-difflib") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pmezard/go-difflib")) - (home-page "https://github.com/pmezard/go-difflib") - (synopsis "go-difflib") - (description - "Go-difflib is a partial port of python 3 difflib package. Its main goal -was to make unified and context diff available in pure Go, mostly for -testing purposes.") - (license license:bsd-3))) - -(define-public go-github-com-stretchr-objx-0.1.1 - (package - (name "go-github-com-stretchr-objx") - (version "0.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/objx") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0iph0qmpyqg4kwv8jsx6a56a7hhqq8swrazv40ycxk9rzr0s8yls")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/objx")) - (home-page "https://github.com/stretchr/objx") - (synopsis "Objx") - (description - "Objx - Go package for dealing with maps, slices, JSON and other data. -") - (license license:expat))) - -(define-public go-github-com-stretchr-testify-1.2.2 - (package - (name "go-github-com-stretchr-testify") - (version "1.2.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/testify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0dlszlshlxbmmfxj5hlwgv3r22x0y1af45gn1vd198nvvs3pnvfs")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/testify")) - (home-page "https://github.com/stretchr/testify") - (synopsis "Testify - Thou Shalt Write Tests") - (description - "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -") - (license license:expat))) - -(define-public go-golang-org-x-crypto-0.0.0-20180904163835-0709b304e793 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20180904163835-0709b304e793") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0i05s09y5pavmfh71fgih7syxg58x7a4krgd8am6d3mnahnmab5c")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20180905080454-ebe1bf3edb33") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0rkspxyjxdmc9f4n09hgkwj8jjd8z5p8mc9z8vwqwqcwrqv4sg7c")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-sirupsen-logrus-1.3.0 - (package - (name "go-github-com-sirupsen-logrus") - (version "1.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sirupsen/logrus") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ib7k8cwxn53dyxd3af1g81z018n77n6q64pm4miznirf7c2c9gk")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/sirupsen/logrus")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33" - ,go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33) - ("go-golang-org-x-crypto-0.0.0-20180904163835-0709b304e793" - ,go-golang-org-x-crypto-0.0.0-20180904163835-0709b304e793) - ("go-github-com-stretchr-testify-1.2.2" - ,go-github-com-stretchr-testify-1.2.2) - ("go-github-com-stretchr-objx-0.1.1" - ,go-github-com-stretchr-objx-0.1.1) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.1" - ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.1) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/sirupsen/logrus") - (synopsis "Logrus") - (description - "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. -") - (license license:expat))) - -(define-public go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20191011191535-87dc89f01550") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0z4i1m2yn3f31ci7wvcm2rxkx2yiv7a78mfzklncmsz2k97rlh2g")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" - ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) - ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" - ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20191026070338-33540a1f6037") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0fjcv0vzvi6za0b4xmnk3932pr9f9gczzf03y0kgq3ry9rqg169y")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-vbatts-go-mtree-0.5.0 - (package - (name "go-github-com-vbatts-go-mtree") - (version "0.5.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/vbatts/go-mtree") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0p42aliw6ngp7zgg5y9mi18z1ka9n0vblbrp5flp93i7qfmc5y0k")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/vbatts/go-mtree")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037" - ,go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037) - ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" - ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550) - ("go-github-com-sirupsen-logrus-1.3.0" - ,go-github-com-sirupsen-logrus-1.3.0) - ("go-github-com-fatih-color-1.9.0" ,go-github-com-fatih-color-1.9.0) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/vbatts/go-mtree") - (synopsis "go-mtree") - (description - "@code{mtree} is a filesystem hierarchy validation tooling and format. -This is a library and simple cli tool for @url{https://www.freebsd.org/cgi/man.cgi?mtree%288%29=,mtree(8)} support.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190404232315-eb5bcb51f2a3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "17k4g8krxbl84gzcs275b7gsh66dzm15fdxivjnx9xz8q84l4kby")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20190412213103-97732733099d - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190412213103-97732733099d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "118hkp01i4z1f5h6hcjm0ff2ngqhrzj1f7731n0kw8dr6hvbx0sw")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-crypto-0.0.0-20200604202706-70a84ac30bf9 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20200604202706-70a84ac30bf9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0zr8np92g3qx7cdgaz4b2z5wnlym9lqyhrvs3xvv1fbsapd2z6i3")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" - ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) - ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" - ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20200622214017-ed371f2e16b4 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200622214017-ed371f2e16b4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "107wfy2fj6z5zps1v72j8drfrfvss1158drb0yqhz5awlbvgrpj7")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-1.22.0 - (package - (name "go-google-golang-org-protobuf") - (version "1.22.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0n7lc4m7kfvj01glc0gnjy0zsnsic7cxnbvlajy0h14cxbab87pj")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.0" - ,go-github-com-golang-protobuf-1.4.0))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.4.1 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0w7ks4vffnnkp0miwgc3chrsnmya45lzvpahb2wmw0jwhdp5kdx7")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.22.0" - ,go-google-golang-org-protobuf-1.22.0) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-github-com-census-instrumentation-opencensus-proto-0.2.1 - (package - (name "go-github-com-census-instrumentation-opencensus-proto") - (version "0.2.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/census-instrumentation/opencensus-proto") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19fcx3sc99i5dsklny6r073z5j20vlwn2xqm6di1q3b1xwchzqfj")))) - (build-system go-build-system) - (arguments - '(#:import-path "github.com/census-instrumentation/opencensus-proto")) - (home-page "https://github.com/census-instrumentation/opencensus-proto") - (synopsis - "OpenCensus Proto - Language Independent Interface Types For OpenCensus") - (description - "Census provides a framework to define and collect stats against metrics and to -break those stats down across user-defined dimensions.") - (license license:asl2.0))) - -(define-public go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4 - (package - (name "go-github-com-prometheus-client-model") - (version "0.0.0-20190812154241-14fe0d1b01d4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/client_model") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0zdmk6rbbx39cvfz0r59v2jg5sg9yd02b4pds5n5llgvivi99550")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/client_model")) - (propagated-inputs - `(("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" - ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0))) - (home-page "https://github.com/prometheus/client_model") - (synopsis "Deprecation note") - (description - "This repository used to contain the code that defined both -the data model and the exposition format of Prometheus metrics.") - (license license:asl2.0))) - -(define-public go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20190311212946-11955173bddd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hlkai67w167wiyivkzd1fgqrnyxkb94l2c6kr51jwcscizfyfn3")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3 - (package - (name "go-golang-org-x-lint") - (version "0.0.0-20190313153728-d0100b6bd8b3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/lint") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0b0amr9x4ji66iv9ayfx7zrfx52k1m5g66qfcxkgj80qrb1y2yn7")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/lint")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" - ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd))) - (home-page "https://golang.org/x/lint") - (synopsis "Installation") - (description "Package lint contains a linter for Go source code. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20190423024810-112230192c58 - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20190423024810-112230192c58") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "05i2k43j2d0llq768hg5pf3hb2yhfzp9la1w5wp0rsnnzblr0lfn")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the -ones provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135 - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20190524140312-2c0ae7006135") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1lsi2ssxajclj3bciz2a41v1vjv768ja3v6wnbyhxy8xphwkp4fk")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" - ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-google-golang-org-grpc-1.23.0 - (package - (name "go-google-golang-org-grpc") - (version "1.23.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1cn33r2gclmq2v1ndpf1n5bmhf2qs8mms7ii5cnl6f9ch4r2c4k3")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" - ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) - ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" - ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) - ("go-google-golang-org-appengine-1.1.0" - ,go-google-golang-org-appengine-1.1.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-google-go-cmp-0.2.0" - ,go-github-com-google-go-cmp-0.2.0) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0) - ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-client9-misspell-0.3.4" - ,go-github-com-client9-misspell-0.3.4) - ("go-github-com-burntsushi-toml-0.3.1" - ,go-github-com-burntsushi-toml-0.3.1) - ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473 - (package - (name "go-github-com-envoyproxy-go-control-plane") - (version "0.9.1-0.20191026205805-5f8ba28d4473") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/envoyproxy/go-control-plane") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1f1s764rd41vd9vgk3r14h1m6fz6pdvxj6fd83q58gxifbc4q5w4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.23.0" ,go-google-golang-org-grpc-1.23.0) - ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" - ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) - ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" - ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2) - ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" - ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) - ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" - ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) - (home-page "https://github.com/envoyproxy/go-control-plane") - (synopsis "control-plane") - (description - "This repository contains a Go-based implementation of an API server that -implements the discovery service APIs defined in -@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") - (license license:asl2.0))) - -(define-public go-github-com-envoyproxy-protoc-gen-validate-0.1.0 - (package - (name "go-github-com-envoyproxy-protoc-gen-validate") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/envoyproxy/protoc-gen-validate") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0kxd3wwh3xwqk0r684hsy281xq4y71cd11d4q2hspcjbnlbwh7cy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/envoyproxy/protoc-gen-validate")) - (home-page "https://github.com/envoyproxy/protoc-gen-validate") - (synopsis "protoc-gen-validate (PGV)") - (description - "PGV is a protoc plugin to generate polyglot message validators. While protocol buffers effectively guarantee the types of structured data, they cannot enforce semantic rules for values. This plugin adds support to protoc-generated code to validate such constraints.") - (license license:asl2.0))) - -(define-public go-github-com-google-go-cmp-0.2.0 - (package - (name "go-github-com-google-go-cmp") - (version "0.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fbv0x27k9sn8svafc0hjwsnckk864lv4yi7bvzrxvmd3d5hskds")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") - (license license:bsd-3))) - -(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20190308221718-c2843e01d9a2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20190311183353-d8887717615a - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190311183353-d8887717615a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1wfm6ngxjyj7v5a2dqib6lw8bb2rdnf1kl48diykxjrsddn0s163")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190215142949-d0b11bdaac8a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.3.2 - (package - (name "go-github-com-golang-protobuf") - (version "1.3.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1k1wb4zr0qbwgpvz9q5ws9zhlal8hq7dmq62pwxxriksayl6hzym")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4 - (package - (name "go-golang-org-x-exp") - (version "0.0.0-20190121172915-509febef88a4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/exp") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "02isrh39z8znrp5znplzy0dip2gnrl3jm1355raliyvhnhg04j6q")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/exp")) - (home-page "https://golang.org/x/exp") - (synopsis "exp") - (description - "This subrepository holds experimental and deprecated (in the @code{old} -directory) packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961 - (package - (name "go-golang-org-x-lint") - (version "0.0.0-20190227174305-5b3e6a55c961") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/lint") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "04zp5vbds9nffmjg36wjpi5vg9zmf890yf78xxasai3ni637ivfw")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/lint")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" - ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c))) - (home-page "https://golang.org/x/lint") - (synopsis "Installation") - (description "Package lint contains a linter for Go source code. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190213061140-3a22650c66bd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12q6fgdkc0742vcms67nzadgdwvi3rnb1gx3vwkljhrvlnwvz7wc")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20181108010431-42b317875d0f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0mrjhk7al7yyh76x9flvxy4jm5jyqh2fxbxagpaazxn1xdgkaif3")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the -ones provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20180724234803-3673e40ba225") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0vx7mz18p480p7fh0w5jv6mfdbsswrlac1sz4i705q7q7ygz59lm")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-google-golang-org-appengine-1.4.0 - (package - (name "go-google-golang-org-appengine") - (version "1.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/appengine") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "06zl7w4sxgdq2pl94wy9ncii6h0z3szl4xpqds0sv3b3wbdlhbnn")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/appengine")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225" - ,go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0))) - (home-page "https://google.golang.org/appengine") - (synopsis "Go App Engine packages") - (description - "Package appengine provides basic functionality for Google App Engine. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20190226205152-f727befe758c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0rpcqw6z13qd33rbasg32zb0gdhgh5lzjla63r6g651zf6hpsak0")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-google-golang-org-appengine-1.4.0" - ,go-google-golang-org-appengine-1.4.0) - ("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" - ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) - ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" - ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-cloud-google-com-go-0.26.0 - (package - (name "go-cloud-google-com-go") - (version "0.26.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-cloud-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "149v3ci17g6wd2pm18mzcncq5qpl9hwdjnz3rlbn5rfidyn46la1")))) - (build-system go-build-system) - (arguments '(#:import-path "cloud.google.com/go")) - (home-page "https://cloud.google.com/go") - (synopsis "Google Cloud Client Libraries for Go") - (description - "Package cloud is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -of sub-packages. -") - (license license:asl2.0))) - -(define-public go-github-com-burntsushi-toml-0.3.1 - (package - (name "go-github-com-burntsushi-toml") - (version "0.3.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/BurntSushi/toml") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fjdwwfzyzllgiwydknf1pwjvy49qxfsczqx5gz3y0izs7as99j6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/BurntSushi/toml")) - (home-page "https://github.com/BurntSushi/toml") - (synopsis "TOML parser and encoder for Go with reflection") - (description - "Package toml implements decoding and encoding of TOML files. -") - (license license:expat))) - -(define-public go-github-com-client9-misspell-0.3.4 - (package - (name "go-github-com-client9-misspell") - (version "0.3.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/client9/misspell") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1vwf33wsc4la25zk9nylpbp9px3svlmldkm0bha4hp56jws4q9cs")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/client9/misspell")) - (home-page "https://github.com/client9/misspell") - (synopsis "Install") - (description - "Package misspell corrects commonly misspelled English words in source files. -") - (license license:expat))) - -(define-public go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b - (package - (name "go-github-com-golang-glog") - (version "0.0.0-20160126235308-23def4e6c14b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/glog") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0jb2834rw5sykfr937fxi8hxi2zy80sj2bdn9b3jb4b26ksqng30")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/glog")) - (home-page "https://github.com/golang/glog") - (synopsis "glog") - (description - "Package glog implements logging analogous to the Google-internal C++ INFO/ERROR/V setup. -It provides functions Info, Warning, Error, Fatal, plus formatting variants such as -Infof. It also provides V-style logging controlled by the -v and -vmodule=file=2 flags. -") - (license license:asl2.0))) - -(define-public go-github-com-golang-mock-1.1.1 - (package - (name "go-github-com-golang-mock") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/mock") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ap8wb6pdl6ccmdb43advjll2ly4sz26wsc3axw0hbrjrybybzgy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/mock")) - (home-page "https://github.com/golang/mock") - (synopsis "gomock") - (description - "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It -integrates well with Go's built-in @code{testing} package, but can be used in other -contexts too.") - (license license:asl2.0))) - -(define-public go-github-com-golang-protobuf-1.2.0 - (package - (name "go-github-com-golang-protobuf") - (version "1.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0kf4b59rcbb1cchfny2dm9jyznp8ri2hsb14n8iak1q8986xa0ab")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3 - (package - (name "go-golang-org-x-lint") - (version "0.0.0-20181026193005-c67002cb31c3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/lint") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0gymbggskjmphqxqcx4s0vnlcz7mygbix0vhwcwv5r67c0bf6765")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/lint")) - (home-page "https://golang.org/x/lint") - (synopsis "Installation") - (description "Package lint contains a linter for Go source code. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d - (package - (name "go-golang-org-x-net") - (version "0.0.0-20180826012351-8a410e7b638d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hp0l8f6fir5gmgrjq0mhh5ikc0rlrm72774228800kfwqjrxxny")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be - (package - (name "go-golang-org-x-oauth2") - (version "0.0.0-20180821212333-d2e6202438be") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/oauth2") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0wbn75fd10485nb93bm4kqldqifdim5xqy4v7r5sdvimvf3fyhn7")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/oauth2")) - (home-page "https://golang.org/x/oauth2") - (synopsis "OAuth2 for Go") - (description - "Package oauth2 provides support for making -OAuth2 authorized and authenticated HTTP requests, -as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -It can additionally grant authorization with Bearer JWT. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20180314180146-1d60e4601c6f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "046jlanz2lkxq1r57x9bl6s4cvfqaic6p2xybsj8mq1120jv4rs6")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the -ones provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20180830151530-49385e6e1522") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0spbldahns09fdxkxflb1x24f8k2awdlnr6k5i7ci4fqd19r1dv4")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-text-0.3.0 - (package - (name "go-golang-org-x-text") - (version "0.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/text")) - (home-page "https://golang.org/x/text") - (synopsis "Go Text") - (description - "text is a repository of text-related packages related to internationalization -(i18n) and localization (l10n), such as character encodings, text -transformations, and locale-specific text handling. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20190114222345-bf090417da8b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1n3xp56k4k3lj06rx7587wr5gnwg0148nvwx6ch0g7ar02hh94hw")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-google-golang-org-appengine-1.1.0 - (package - (name "go-google-golang-org-appengine") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/appengine") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1pz202zszg8f35dk5pfhwgcdi3r6dx1l4yk6x6ly7nb4j45zi96x")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/appengine")) - (home-page "https://google.golang.org/appengine") - (synopsis "Go App Engine packages") - (description - "Package appengine provides basic functionality for Google App Engine. -") - (license license:asl2.0))) - -(define-public go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8 - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20180817151627-c66870c02cf8") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0siq7sv68556ygqi2d2zmvx8l1xjqdc0fylqzci5h1mq2i14bayn")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-google-golang-org-grpc-1.19.0 - (package - (name "go-google-golang-org-grpc") - (version "1.19.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1znqwpj7ix3dpzx4zch0q70sdl3z5lvbb7v3q4i8sf8kas3yv71v")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" - ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) - ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" - ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) - ("go-google-golang-org-appengine-1.1.0" - ,go-google-golang-org-appengine-1.1.0) - ("go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b" - ,go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b) - ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522" - ,go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522) - ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" - ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d" - ,go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d) - ("go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3" - ,go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0) - ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-client9-misspell-0.3.4" - ,go-github-com-client9-misspell-0.3.4) - ("go-github-com-burntsushi-toml-0.3.1" - ,go-github-com-burntsushi-toml-0.3.1) - ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099 - (package - (name "go-honnef-co-go-tools") - (version "0.0.0-20190102054323-c2f93a96b099") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/dominikh/go-tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "07lg29aiap80ca9f201jzng9vjr168cv3qmvjmbd7v5pmww9kmr8")))) - (build-system go-build-system) - (arguments '(#:import-path "honnef.co/go/tools")) - (home-page "https://honnef.co/go/tools") - (synopsis "Documentation") - (description - "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, -offers simplifications, and enforces style rules.") - (license license:expat))) - -(define-public go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55 - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20190819201941-24fa4b261c55") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "109zhaqlfd8zkbr1hk6zqbs6vcxfrk64scjwh2nswph05gr0m84d")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" - ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) - ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) - ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" - ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) - ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" - ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) - ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" - ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-google-golang-org-grpc-1.27.0 - (package - (name "go-google-golang-org-grpc") - (version "1.27.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ijrmgrxyabfn51nm3p9l81iaasq5fg237wnr6mdc4dzsfcg8kd7")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" - ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-github-com-google-go-cmp-0.2.0" - ,go-github-com-google-go-cmp-0.2.0) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2) - ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" - ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) - ("go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473" - ,go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-github-com-google-go-cmp-0.3.0 - (package - (name "go-github-com-google-go-cmp") - (version "0.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1hyxx3434zshl2m9ja78gwlkg1rx9yl6diqa7dnjb31xz5x4gbjj")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd - (package - (name "go-google-golang-org-protobuf") - (version "0.0.0-20200109180630-ec00e32a8dfd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0w6lp9w2avxcpxwzzhspr209ifhyjagvs23k0vykfdqahl1aplrh")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.3.0" - ,go-github-com-google-go-cmp-0.3.0))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.4.0-rc.1 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.0-rc.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "186rirvbfgv6hrxp27ipx2cdpv19qifdd20biqfdm01wiyclqimn")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd" - ,go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd) - ("go-github-com-google-go-cmp-0.3.1" - ,go-github-com-google-go-cmp-0.3.1))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-github-com-google-go-cmp-0.3.1 - (package - (name "go-github-com-google-go-cmp") - (version "0.3.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1caw49i0plkjxir7kdf5qhwls3krqwfmi7g4h392rdfwi3kfahx1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64 - (package - (name "go-google-golang-org-protobuf") - (version "0.0.0-20200221191635-4d8936d0db64") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0563bsvdjj6k0sgwqd5yzrgfiax7sp3lcwh608gync5sv9fx39cy")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.3.1" - ,go-github-com-google-go-cmp-0.3.1) - ("go-github-com-golang-protobuf-1.4.0-rc.1" - ,go-github-com-golang-protobuf-1.4.0-rc.1))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.0-rc.1.0.20200221234624-67d41d38c208") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ykxhg3zixmw25pd435f8h16wnz1g00jpcmmg3xl030kksgqgpp6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64" - ,go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60 - (package - (name "go-google-golang-org-protobuf") - (version "0.0.0-20200228230310-ab0ca4ff8a60") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1rinspcznfp85yz4vrlf4h38hr576virgv8lcs22bsylqga808sd")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208" - ,go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.4.0-rc.2 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.0-rc.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1hd43hjv5zl6bjbmhm5phx74bw4xajsi73m5zky2k56za4mpgzzc")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60" - ,go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967 - (package - (name "go-google-golang-org-protobuf") - (version "1.20.1-0.20200309200217-e05f789c0967") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "17wmy89hnmpkwc63rfcjp50q15s9f1rhmczg06c3z9yy41zk82w9")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.0-rc.2" - ,go-github-com-golang-protobuf-1.4.0-rc.2))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.0-rc.4.0.20200313231945-b860323f09d0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1zj6cwshx0l5n9cn2cpbikzzb79px5dmkpc4p19zy1iif5r5p0z0")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967" - ,go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-1.21.0 - (package - (name "go-google-golang-org-protobuf") - (version "1.21.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12bwln8z1lf9105gdp6ip0rx741i4yfz1520gxnp8861lh9wcl63")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0" - ,go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.4.0 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fjvl5n77abxz5qsd4mgyvjq19x43c5bfvmq62mq3m5plx6zksc8")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.21.0" - ,go-google-golang-org-protobuf-1.21.0) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543 - (package - (name "go-golang-org-x-xerrors") - (version "0.0.0-20191204190536-9bdfabe68543") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/xerrors") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1yjfi1bk9xb81lqn85nnm13zz725wazvrx3b50hx19qmwg7a4b0c")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/xerrors")) - (home-page "https://golang.org/x/xerrors") - (synopsis #f) - (description - "Package xerrors implements functions to manipulate errors. -") - (license license:bsd-3))) - -(define-public go-github-com-google-go-cmp-0.4.0 - (package - (name "go-github-com-google-go-cmp") - (version "0.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1x5pvl3fb5sbyng7i34431xycnhmx8xx94gq2n19g6p0vz68z2v2")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc - (package - (name "go-google-golang-org-protobuf") - (version "1.23.1-0.20200526195155-81db48ad09cc") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "02cpr8rqr5wmpj2fqb32mzilsdnxkh52g1jz95a3ck3gzffc7hh1")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.0" - ,go-github-com-golang-protobuf-1.4.0))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc - (package - (name "go-honnef-co-go-tools") - (version "0.0.0-20190523083050-ea95bdfd59fc") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/dominikh/go-tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1763nw7pwpzkvzfnm63dgzcgbq9hwmq5l1nffchnhh77vgkaq4ic")))) - (build-system go-build-system) - (arguments '(#:import-path "honnef.co/go/tools")) - (home-page "https://honnef.co/go/tools") - (synopsis "Documentation") - (description - "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, -offers simplifications, and enforces style rules.") - (license license:expat))) - -(define-public go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013 - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20200526211855-cb27e3aa2013") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ml73ghqcwbz7ipfk8fnxb5indcml49b5p7vp1fsyny0abyyrmxf")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" - ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) - ("go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc" - ,go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-golang-protobuf-1.4.1" - ,go-github-com-golang-protobuf-1.4.1))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-google-golang-org-protobuf-1.24.0 - (package - (name "go-google-golang-org-protobuf") - (version "1.24.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0x3qyn3rizbs671gs7f8v50rmiwf9h7kbaradpivw9718mhbg1gn")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" - ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.1" - ,go-github-com-golang-protobuf-1.4.1))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-gopkg-in-check-v1-1.0.0-20200227125254-8fa46927fb4f - (package - (name "go-gopkg-in-check-v1") - (version "1.0.0-20200227125254-8fa46927fb4f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/check.v1") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0fx03x0nx9mjwnqphnx852q9p76qg7cazrachvgr1bj357lplrcw")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) - (home-page "https://gopkg.in/check.v1") - (synopsis "Instructions") - (description - "Package check is a rich testing extension for Go's testing package. -") - (license license:bsd-2))) - -(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 - (package - (name "go-gopkg-in-check-v1") - (version "0.0.0-20161208181325-20d25e280405") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/check.v1") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) - (home-page "https://gopkg.in/check.v1") - (synopsis "Instructions") - (description - "Package check is a rich testing extension for Go's testing package. -") - (license license:bsd-2))) - -(define-public go-gopkg-in-yaml-v3-3.0.0-20200615113413-eeeca48fe776 - (package - (name "go-gopkg-in-yaml-v3") - (version "3.0.0-20200615113413-eeeca48fe776") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v3") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "06m3kx5mp6vwfcpjl04c39r1dpbakg2la9ql1jw3zvpi6jk7iwbk")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v3") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language. -") - (license #f))) - -(define-public go-github-com-opencontainers-umoci-0.4.7 - (package - (name "go-github-com-opencontainers-umoci") - (version "0.4.7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/umoci") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0in8kyi4jprvbm3zsl3risbjj8b0ma62yl3rq8rcvcgypx0mn7d4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/umoci")) - (propagated-inputs - `(("go-gopkg-in-yaml-v3-3.0.0-20200615113413-eeeca48fe776" - ,go-gopkg-in-yaml-v3-3.0.0-20200615113413-eeeca48fe776) - ("go-gopkg-in-check-v1-1.0.0-20200227125254-8fa46927fb4f" - ,go-gopkg-in-check-v1-1.0.0-20200227125254-8fa46927fb4f) - ("go-google-golang-org-protobuf-1.24.0" - ,go-google-golang-org-protobuf-1.24.0) - ("go-golang-org-x-sys-0.0.0-20200622214017-ed371f2e16b4" - ,go-golang-org-x-sys-0.0.0-20200622214017-ed371f2e16b4) - ("go-golang-org-x-crypto-0.0.0-20200604202706-70a84ac30bf9" - ,go-golang-org-x-crypto-0.0.0-20200604202706-70a84ac30bf9) - ("go-github-com-vbatts-go-mtree-0.5.0" - ,go-github-com-vbatts-go-mtree-0.5.0) - ("go-github-com-urfave-cli-1.22.4" ,go-github-com-urfave-cli-1.22.4) - ("go-github-com-tj-assert-0.0.3" ,go-github-com-tj-assert-0.0.3) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-sirupsen-logrus-1.6.0" - ,go-github-com-sirupsen-logrus-1.6.0) - ("go-github-com-rootless-containers-proto-0.1.0" - ,go-github-com-rootless-containers-proto-0.1.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-runtime-spec-1.0.2" - ,go-github-com-opencontainers-runtime-spec-1.0.2) - ("go-github-com-opencontainers-runc-1.0.0-rc90" - ,go-github-com-opencontainers-runc-1.0.0-rc90) - ("go-github-com-opencontainers-image-spec-1.0.1" - ,go-github-com-opencontainers-image-spec-1.0.1) - ("go-github-com-opencontainers-go-digest-1.0.0" - ,go-github-com-opencontainers-go-digest-1.0.0) - ("go-github-com-niemeyer-pretty-0.0.0-20200227124842-a10e7caefd8e" - ,go-github-com-niemeyer-pretty-0.0.0-20200227124842-a10e7caefd8e) - ("go-github-com-mohae-deepcopy-0.0.0-20170929034955-c48cc78d4826" - ,go-github-com-mohae-deepcopy-0.0.0-20170929034955-c48cc78d4826) - ("go-github-com-mattn-go-colorable-0.1.6" - ,go-github-com-mattn-go-colorable-0.1.6) - ("go-github-com-kr-text-0.2.0" ,go-github-com-kr-text-0.2.0) - ("go-github-com-klauspost-pgzip-1.2.4" - ,go-github-com-klauspost-pgzip-1.2.4) - ("go-github-com-klauspost-compress-1.11.3" - ,go-github-com-klauspost-compress-1.11.3) - ("go-github-com-google-go-cmp-0.5.0" - ,go-github-com-google-go-cmp-0.5.0) - ("go-github-com-golang-protobuf-1.4.2" - ,go-github-com-golang-protobuf-1.4.2) - ("go-github-com-docker-go-units-0.4.0" - ,go-github-com-docker-go-units-0.4.0) - ("go-github-com-cyphar-filepath-securejoin-0.2.2" - ,go-github-com-cyphar-filepath-securejoin-0.2.2) - ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" - ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) - ("go-github-com-apex-log-1.4.0" ,go-github-com-apex-log-1.4.0) - ("go-github-com-adamkorcz-go-fuzz-headers-0.0.0-20210312213058-32f4d319f0d2" - ,go-github-com-adamkorcz-go-fuzz-headers-0.0.0-20210312213058-32f4d319f0d2))) - (home-page "https://github.com/opencontainers/umoci") - (synopsis "Install") - (description - "@strong{u}moci @strong{m}odifies @strong{O}pen @strong{C}ontainer @strong{i}mages.") - (license license:asl2.0))) - -(define-public go-github-com-pelletier-go-toml-1.9.3 - (package - (name "go-github-com-pelletier-go-toml") - (version "1.9.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pelletier/go-toml") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0cqwnvlgs1wgdgjxlwv8j52f7d6syniadr51sjh2fya99m5wzvsn")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pelletier/go-toml")) - (home-page "https://github.com/pelletier/go-toml") - (synopsis "go-toml") - (description "Package toml is a TOML parser and manipulation library. -") - (license #f))) - -(define-public go-github-com-pkg-errors-0.9.1 - (package - (name "go-github-com-pkg-errors") - (version "0.9.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pkg/errors") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1761pybhc2kqr6v5fm8faj08x9bql8427yqg6vnfv6nhrasx1mwq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pkg/errors")) - (home-page "https://github.com/pkg/errors") - (synopsis "errors") - (description "Package errors provides simple error handling primitives. -") - (license license:bsd-2))) - -(define-public go-github-com-russross-blackfriday-v2-2.1.0 - (package - (name "go-github-com-russross-blackfriday-v2") - (version "2.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/russross/blackfriday") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0d1rg1drrfmabilqjjayklsz5d0n3hkf979sr3wsrw92bfbkivs7")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/russross/blackfriday/v2")) - (home-page "https://github.com/russross/blackfriday") - (synopsis "Blackfriday") - (description "Package blackfriday is a markdown processor. -") - (license license:bsd-2))) - -(define-public go-github-com-satori-go-uuid-1.2.1-0.20180404165556-75cca531ea76 - (package - (name "go-github-com-satori-go-uuid") - (version "1.2.1-0.20180404165556-75cca531ea76") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/satori/go.uuid") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0fi1rc2zl0vyyah6iy8cvsjyxipp6pnzb19x40qkq3j1qlra20qy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/satori/go.uuid")) - (home-page "https://github.com/satori/go.uuid") - (synopsis "UUID package for Go language") - (description - "Package uuid provides implementation of Universally Unique Identifier (UUID). -Supported versions are 1, 3, 4 and 5 (as specified in @url{https://rfc-editor.org/rfc/rfc4122.html,RFC 4122}) and -version 2 (as specified in DCE 1.1). -") - (license license:expat))) - -(define-public go-github-com-blang-semver-3.5.1+incompatible - (package - (name "go-github-com-blang-semver") - (version "3.5.1+incompatible") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/blang/semver") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "13ws259bwcibkclbr82ilhk6zadm63kxklxhk12wayklj8ghhsmy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/blang/semver")) - (home-page "https://github.com/blang/semver") - (synopsis "semver for golang") - (description - "semver is a @url{http://semver.org/,Semantic Versioning} library written in golang. It fully covers spec version @code{2.0.0}.") - (license license:expat))) - -(define-public go-github-com-hashicorp-errwrap-1.0.0 - (package - (name "go-github-com-hashicorp-errwrap") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/errwrap") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0slfb6w3b61xz04r32bi0a1bygc82rjzhqkxj2si2074wynqnr1c")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/errwrap")) - (home-page "https://github.com/hashicorp/errwrap") - (synopsis "errwrap") - (description - "Package errwrap implements methods to formalize error wrapping in Go. -") - (license license:mpl2.0))) - -(define-public go-github-com-hashicorp-go-multierror-1.1.0 - (package - (name "go-github-com-hashicorp-go-multierror") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/go-multierror") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0pmjpzpra7lqgikxzwlcp5mh01b46j2vhyxkixz0v86fr9kf0k3k")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/go-multierror")) - (propagated-inputs - `(("go-github-com-hashicorp-errwrap-1.0.0" - ,go-github-com-hashicorp-errwrap-1.0.0))) - (home-page "https://github.com/hashicorp/go-multierror") - (synopsis "go-multierror") - (description - "@code{go-multierror} is a package for Go that provides a mechanism for -representing a list of @code{error} values as a single @code{error}.") - (license license:mpl2.0))) - -(define-public go-github-com-opencontainers-runtime-spec-1.0.3-0.20200710190001-3e4195d92445 - (package - (name "go-github-com-opencontainers-runtime-spec") - (version "1.0.3-0.20200710190001-3e4195d92445") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/runtime-spec") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "04kfdbap80r89rn7f7xcmkyy0qbpd18dgk65bzapy0x0calpgrlk")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) - (home-page "https://github.com/opencontainers/runtime-spec") - (synopsis "Open Container Initiative Runtime Specification") - (description - "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") - (license license:asl2.0))) - -(define-public go-github-com-opencontainers-runtime-tools-0.9.0 - (package - (name "go-github-com-opencontainers-runtime-tools") - (version "0.9.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/runtime-tools") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1pli3jb1rq9lkzzz83f7jw788vijg7x6ly3vgasdlwri7kiph1sa")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/runtime-tools")) - (home-page "https://github.com/opencontainers/runtime-tools") - (synopsis "oci-runtime-tool") - (description - "oci-runtime-tool is a collection of tools for working with the @url{https://github.com/opencontainers/runtime-spec,OCI runtime specification}. -To build from source code, runtime-tools requires Go 1.10.x or above.") - (license license:asl2.0))) - -(define-public go-github-com-pkg-errors-0.9.1 - (package - (name "go-github-com-pkg-errors") - (version "0.9.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pkg/errors") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1761pybhc2kqr6v5fm8faj08x9bql8427yqg6vnfv6nhrasx1mwq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pkg/errors")) - (home-page "https://github.com/pkg/errors") - (synopsis "errors") - (description "Package errors provides simple error handling primitives. -") - (license license:bsd-2))) - -(define-public go-github-com-willf-bitset-1.1.11-0.20200630133818-d5bec3311243 - (package - (name "go-github-com-willf-bitset") - (version "1.1.11-0.20200630133818-d5bec3311243") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/bits-and-blooms/bitset") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "05nyd0vhp2h9hbqlv2s9l2py6mr8hpz2zyfj09an1q7wd8vph4ja")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/willf/bitset")) - (home-page "https://github.com/willf/bitset") - (synopsis "bitset") - (description - "Package bitset implements bitsets, a mapping -between non-negative integers and boolean values. It should be more -efficient than map[uint] bool. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20191115151921-52ab43148777") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1kakxbqrb1w2vwg7r1896z68qcx2lfvimsl8cs2niiipbgpi6imx")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-opencontainers-selinux-1.6.0 - (package - (name "go-github-com-opencontainers-selinux") - (version "1.6.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/selinux") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ja41zfgrkhk5khixjnxpi1b85xfcxlkhq2q9b7ma6xjfdhg8bq2")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/selinux")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777" - ,go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777) - ("go-github-com-willf-bitset-1.1.11-0.20200630133818-d5bec3311243" - ,go-github-com-willf-bitset-1.1.11-0.20200630133818-d5bec3311243) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) - (home-page "https://github.com/opencontainers/selinux") - (synopsis "selinux") - (description "Common SELinux package used across the container ecosystem.") - (license license:asl2.0))) - -(define-public go-github-com-seccomp-libseccomp-golang-0.9.1 - (package - (name "go-github-com-seccomp-libseccomp-golang") - (version "0.9.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/seccomp/libseccomp-golang") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "022c8prvxz0shrifams7lq4xidvkcqg9xi87wjjcpmbikqi72cna")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/seccomp/libseccomp-golang")) - (home-page "https://github.com/seccomp/libseccomp-golang") - (synopsis #f) - (description - "Package seccomp provides bindings for libseccomp, a library wrapping the Linux -seccomp syscall. Seccomp enables an application to restrict system call use -for itself and its children. -") - (license license:bsd-2))) - -(define-public go-github-com-davecgh-go-spew-1.1.1 - (package - (name "go-github-com-davecgh-go-spew") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/davecgh/go-spew") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/davecgh/go-spew")) - (home-page "https://github.com/davecgh/go-spew") - (synopsis "go-spew") - (description - "Go-spew implements a deep pretty printer for Go data structures to aid in -debugging. A comprehensive suite of tests with 100% test coverage is provided -to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage -report. Go-spew is licensed under the liberal ISC license, so it may be used in -open source or commercial projects.") - (license license:isc))) - -(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.3 - (package - (name "go-github-com-konsorten-go-windows-terminal-sequences") - (version "1.0.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/konsorten/go-windows-terminal-sequences") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1yrsd4s8vhjnxhwbigirymz89dn6qfjnhn28i33vvvdgf96j6ypl")))) - (build-system go-build-system) - (arguments - '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) - (home-page "https://github.com/konsorten/go-windows-terminal-sequences") - (synopsis "Windows Terminal Sequences") - (description - "This library allow for enabling Windows terminal color support for Go.") - (license license:expat))) - -(define-public go-github-com-stretchr-testify-1.2.2 - (package - (name "go-github-com-stretchr-testify") - (version "1.2.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/testify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0dlszlshlxbmmfxj5hlwgv3r22x0y1af45gn1vd198nvvs3pnvfs")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/testify")) - (home-page "https://github.com/stretchr/testify") - (synopsis "Testify - Thou Shalt Write Tests") - (description - "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190422165155-953cdadca894") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0gkha4whk8xkcv3isigbs250akag99isxnd3v9xmy0kl3g88hxy1")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-sirupsen-logrus-1.6.0 - (package - (name "go-github-com-sirupsen-logrus") - (version "1.6.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sirupsen/logrus") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1zf9is1yxxnna0d1pyag2m9ziy3l27zb2j92p9msm1gx5jjrvzzj")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/sirupsen/logrus")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894" - ,go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894) - ("go-github-com-stretchr-testify-1.2.2" - ,go-github-com-stretchr-testify-1.2.2) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.3" - ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.3) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/sirupsen/logrus") - (synopsis "Logrus") - (description - "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. -") - (license license:expat))) - -(define-public go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2 - (package - (name "go-github-com-syndtr-gocapability") - (version "0.0.0-20180916011248-d98352740cb2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/syndtr/gocapability") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "065y16562ynixxzj7iys4f4spb7knilbj3h833qlhds381j8hn93")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/syndtr/gocapability")) - (home-page "https://github.com/syndtr/gocapability") - (synopsis #f) - (description #f) - (license license:bsd-2))) - -(define-public go-github-com-davecgh-go-spew-1.1.0 - (package - (name "go-github-com-davecgh-go-spew") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/davecgh/go-spew") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/davecgh/go-spew")) - (home-page "https://github.com/davecgh/go-spew") - (synopsis "go-spew") - (description - "Go-spew implements a deep pretty printer for Go data structures to aid in -debugging. A comprehensive suite of tests with 100% test coverage is provided -to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage -report. Go-spew is licensed under the liberal ISC license, so it may be used in -open source or commercial projects.") - (license license:isc))) - -(define-public go-github-com-pmezard-go-difflib-1.0.0 - (package - (name "go-github-com-pmezard-go-difflib") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pmezard/go-difflib") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pmezard/go-difflib")) - (home-page "https://github.com/pmezard/go-difflib") - (synopsis "go-difflib") - (description - "Go-difflib is a partial port of python 3 difflib package. Its main goal -was to make unified and context diff available in pure Go, mostly for -testing purposes.") - (license license:bsd-3))) - -(define-public go-github-com-stretchr-objx-0.1.0 - (package - (name "go-github-com-stretchr-objx") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/objx") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/objx")) - (home-page "https://github.com/stretchr/objx") - (synopsis "Objx") - (description - "Objx - Go package for dealing with maps, slices, JSON and other data. -") - (license license:expat))) - -(define-public go-github-com-stretchr-testify-1.3.0 - (package - (name "go-github-com-stretchr-testify") - (version "1.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/testify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0wjchp2c8xbgcbbq32w3kvblk6q6yn533g78nxl6iskq6y95lxsy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/testify")) - (propagated-inputs - `(("go-github-com-stretchr-objx-0.1.0" - ,go-github-com-stretchr-objx-0.1.0) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.0" - ,go-github-com-davecgh-go-spew-1.1.0))) - (home-page "https://github.com/stretchr/testify") - (synopsis "Testify - Thou Shalt Write Tests") - (description - "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -") - (license license:expat))) - -(define-public go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f - (package - (name "go-github-com-xeipuuv-gojsonpointer") - (version "0.0.0-20180127040702-4e3ac2762d5f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/xeipuuv/gojsonpointer") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "13y6iq2nzf9z4ls66bfgnnamj2m3438absmbpqry64bpwjfbsi9q")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/xeipuuv/gojsonpointer")) - (home-page "https://github.com/xeipuuv/gojsonpointer") - (synopsis "gojsonpointer") - (description "An implementation of JSON Pointer - Go language") - (license license:asl2.0))) - -(define-public go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415 - (package - (name "go-github-com-xeipuuv-gojsonreference") - (version "0.0.0-20180127040603-bd5ef7bd5415") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/xeipuuv/gojsonreference") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1xby79padc7bmyb8rfbad8wfnfdzpnh51b1n8c0kibch0kwc1db5")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/xeipuuv/gojsonreference")) - (home-page "https://github.com/xeipuuv/gojsonreference") - (synopsis "gojsonreference") - (description "An implementation of JSON Reference - Go language") - (license license:asl2.0))) - -(define-public go-github-com-xeipuuv-gojsonschema-1.2.0 - (package - (name "go-github-com-xeipuuv-gojsonschema") - (version "1.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/xeipuuv/gojsonschema") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1mqiq0r8qw4qlfp3ls8073r6514rmzwrmdn4j33rppk3zh942i6l")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/xeipuuv/gojsonschema")) - (propagated-inputs - `(("go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415" - ,go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415) - ("go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f" - ,go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f) - ("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0))) - (home-page "https://github.com/xeipuuv/gojsonschema") - (synopsis "gojsonschema") - (description - "An implementation of JSON Schema for the Go programming language. Supports draft-04, draft-06 and draft-07.") - (license license:asl2.0))) - -(define-public go-golang-org-x-sys-0.0.0-20200720211630-cb9d2d5c5666 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200720211630-cb9d2d5c5666") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18b1179cvv3rfn3hhysiqwcn2c15a1kzff74q4494rz69k0j7w4q")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-seccomp-containers-golang-0.6.0 - (package - (name "go-github-com-seccomp-containers-golang") - (version "0.6.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/seccomp/containers-golang") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0clrwdnmr131a65h66br57bsnr17i1s3kq9cc7ljrdaym57y6cfz")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/seccomp/containers-golang")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20200720211630-cb9d2d5c5666" - ,go-golang-org-x-sys-0.0.0-20200720211630-cb9d2d5c5666) - ("go-github-com-xeipuuv-gojsonschema-1.2.0" - ,go-github-com-xeipuuv-gojsonschema-1.2.0) - ("go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2" - ,go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2) - ("go-github-com-sirupsen-logrus-1.6.0" - ,go-github-com-sirupsen-logrus-1.6.0) - ("go-github-com-seccomp-libseccomp-golang-0.9.1" - ,go-github-com-seccomp-libseccomp-golang-0.9.1) - ("go-github-com-opencontainers-selinux-1.6.0" - ,go-github-com-opencontainers-selinux-1.6.0) - ("go-github-com-opencontainers-runtime-tools-0.9.0" - ,go-github-com-opencontainers-runtime-tools-0.9.0) - ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200710190001-3e4195d92445" - ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200710190001-3e4195d92445) - ("go-github-com-hashicorp-go-multierror-1.1.0" - ,go-github-com-hashicorp-go-multierror-1.1.0) - ("go-github-com-blang-semver-3.5.1+incompatible" - ,go-github-com-blang-semver-3.5.1+incompatible))) - (home-page "https://github.com/seccomp/containers-golang") - (synopsis "containers-golang") - (description - "@code{containers-golang} is a set of Go libraries used by container runtimes to generate and load seccomp mappings into the kernel.") - (license license:asl2.0))) - -(define-public go-github-com-seccomp-libseccomp-golang-0.9.1 - (package - (name "go-github-com-seccomp-libseccomp-golang") - (version "0.9.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/seccomp/libseccomp-golang") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "022c8prvxz0shrifams7lq4xidvkcqg9xi87wjjcpmbikqi72cna")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/seccomp/libseccomp-golang")) - (home-page "https://github.com/seccomp/libseccomp-golang") - (synopsis #f) - (description - "Package seccomp provides bindings for libseccomp, a library wrapping the Linux -seccomp syscall. Seccomp enables an application to restrict system call use -for itself and its children. -") - (license license:bsd-2))) - -(define-public go-github-com-russross-blackfriday-v2-2.0.1 - (package - (name "go-github-com-russross-blackfriday-v2") - (version "2.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/russross/blackfriday") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0nlz7isdd4rgnwzs68499hlwicxz34j2k2a0b8jy0y7ycd2bcr5j")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/russross/blackfriday/v2")) - (home-page "https://github.com/russross/blackfriday") - (synopsis "Blackfriday") - (description "Package blackfriday is a markdown processor. -") - (license license:bsd-2))) - -(define-public go-github-com-shurcool-sanitized-anchor-name-1.0.0 - (package - (name "go-github-com-shurcool-sanitized-anchor-name") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/shurcooL/sanitized_anchor_name") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1gv9p2nr46z80dnfjsklc6zxbgk96349sdsxjz05f3z6wb6m5l8f")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/shurcooL/sanitized_anchor_name")) - (home-page "https://github.com/shurcooL/sanitized_anchor_name") - (synopsis "sanitized_anchor_name") - (description - "Package sanitized_anchor_name provides a func to create sanitized anchor names. -") - (license license:expat))) - -(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0 - (package - (name "go-github-com-cpuguy83-go-md2man-v2") - (version "2.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cpuguy83/go-md2man") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) - (propagated-inputs - `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" - ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) - ("go-github-com-russross-blackfriday-v2-2.0.1" - ,go-github-com-russross-blackfriday-v2-2.0.1) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0))) - (home-page "https://github.com/cpuguy83/go-md2man") - (synopsis "go-md2man") - (description "Converts markdown into roff (man pages).") - (license license:expat))) - -(define-public go-github-com-inconshreveable-mousetrap-1.0.0 - (package - (name "go-github-com-inconshreveable-mousetrap") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/inconshreveable/mousetrap") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1mn0kg48xkd74brf48qf5hzp0bc6g8cf5a77w895rl3qnlpfw152")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/inconshreveable/mousetrap")) - (home-page "https://github.com/inconshreveable/mousetrap") - (synopsis "mousetrap") - (description "mousetrap is a tiny library that answers a single question.") - (license license:asl2.0))) - -(define-public go-github-com-hashicorp-go-cleanhttp-0.5.1 - (package - (name "go-github-com-hashicorp-go-cleanhttp") - (version "0.5.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/go-cleanhttp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "07kx3fhryqmaw3czacmm11qwx63js2q8cfq967vphk7xg9q377kk")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/go-cleanhttp")) - (home-page "https://github.com/hashicorp/go-cleanhttp") - (synopsis "cleanhttp") - (description - "Package cleanhttp offers convenience utilities for acquiring \"clean\" -http.Transport and http.Client structs. -") - (license license:mpl2.0))) - -(define-public go-github-com-mitchellh-go-homedir-1.0.0 - (package - (name "go-github-com-mitchellh-go-homedir") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mitchellh/go-homedir") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0f0z0aa4wivk4z1y503dmnw0k0g0g403dly8i4q263gfshs82sbq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mitchellh/go-homedir")) - (home-page "https://github.com/mitchellh/go-homedir") - (synopsis "go-homedir") - (description - "This is a Go library for detecting the user's home directory without -the use of cgo, so the library can be used in cross-compilation environments.") - (license license:expat))) - -(define-public go-github-com-hashicorp-go-rootcerts-1.0.0 - (package - (name "go-github-com-hashicorp-go-rootcerts") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/go-rootcerts") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0wply5zhj1rcybr932zbwm1i18q5wr7kgkhnz6bw6mk1n9yr8lfj")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/go-rootcerts")) - (propagated-inputs - `(("go-github-com-mitchellh-go-homedir-1.0.0" - ,go-github-com-mitchellh-go-homedir-1.0.0))) - (home-page "https://github.com/hashicorp/go-rootcerts") - (synopsis "rootcerts") - (description - "Package rootcerts contains functions to aid in loading CA certificates for -TLS connections. -") - (license license:mpl2.0))) - -(define-public go-github-com-armon-circbuf-0.0.0-20150827004946-bbbad097214e - (package - (name "go-github-com-armon-circbuf") - (version "0.0.0-20150827004946-bbbad097214e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/armon/circbuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1idpr0lzb2px2p3wgfq2276yl7jpaz43df6n91kf790404s4zmk3")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/armon/circbuf")) - (home-page "https://github.com/armon/circbuf") - (synopsis "circbuf") - (description - "This repository provides the @code{circbuf} package. This provides a @code{Buffer} object -which is a circular (or ring) buffer. It has a fixed size, but can be written -to infinitely. Only the last @code{size} bytes are ever retained. The buffer implements -the @code{io.Writer} interface.") - (license license:expat))) - -(define-public go-github-com-hashicorp-go-syslog-1.0.0 - (package - (name "go-github-com-hashicorp-go-syslog") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/go-syslog") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "09vccqggz212cg0jir6vv708d6mx0f9w5bxrcdah3h6chgmal6v1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/go-syslog")) - (home-page "https://github.com/hashicorp/go-syslog") - (synopsis "go-syslog") - (description - "This repository provides a very simple @code{gsyslog} package. The point of this -package is to allow safe importing of syslog without introducing cross-compilation -issues. The stdlib @code{log/syslog} cannot be imported on Windows systems, and without -conditional compilation this adds complications.") - (license license:expat))) - -(define-public go-github-com-hashicorp-go-uuid-1.0.1 - (package - (name "go-github-com-hashicorp-go-uuid") - (version "1.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/go-uuid") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0jvb88m0rq41bwgirsadgw7mnayl27av3gd2vqa3xvxp3fy0hp5k")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/go-uuid")) - (home-page "https://github.com/hashicorp/go-uuid") - (synopsis "uuid") - (description - "Generates UUID-format strings using high quality, bytes. It is @strong{not} intended to be RFC compliant, merely to use a well-understood string representation of a 128-bit value. It can also parse UUID-format strings into their component bytes.") - (license license:mpl2.0))) - -(define-public go-github-com-hashicorp-logutils-1.0.0 - (package - (name "go-github-com-hashicorp-logutils") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/logutils") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "076wf4sh5p3f953ndqk1cc0x7jhmlqrxak9953rz79rcdw77rjvv")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/logutils")) - (home-page "https://github.com/hashicorp/logutils") - (synopsis "logutils") - (description - "Package logutils augments the standard log package with levels. -") - (license license:mpl2.0))) - -(define-public go-github-com-hashicorp-go-net-0.0.1 - (package - (name "go-github-com-hashicorp-go-net") - (version "0.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/go.net") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "06arwi95xp5rxyz7rndvhc3wlwg0jn9a5z6djf3yyg5h9zfab9i4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/go.net")) - (home-page "https://github.com/hashicorp/go.net") - (synopsis #f) - (description #f) - (license license:bsd-3))) - -(define-public go-github-com-hashicorp-mdns-1.0.0 - (package - (name "go-github-com-hashicorp-mdns") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/mdns") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0qr4l91hhi97s8a1isnrw3s4q8pjzacqiks870vnwh15v7ig3axd")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/mdns")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20181026203630-95b1ffbd15a5" - ,go-golang-org-x-sys-0.0.0-20181026203630-95b1ffbd15a5) - ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" - ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) - ("go-golang-org-x-net-0.0.0-20181023162649-9b4f9f5ad519" - ,go-golang-org-x-net-0.0.0-20181023162649-9b4f9f5ad519) - ("go-golang-org-x-crypto-0.0.0-20181029021203-45a5f77698d3" - ,go-golang-org-x-crypto-0.0.0-20181029021203-45a5f77698d3) - ("go-github-com-miekg-dns-1.0.14" ,go-github-com-miekg-dns-1.0.14) - ("go-github-com-hashicorp-go-net-0.0.1" - ,go-github-com-hashicorp-go-net-0.0.1))) - (home-page "https://github.com/hashicorp/mdns") - (synopsis "mdns") - (description - "Simple mDNS client/server library in Golang. mDNS or Multicast DNS can be -used to discover services on the local network without the use of an authoritative -DNS server. This enables peer-to-peer discovery. It is important to note that many -networks restrict the use of multicasting, which prevents mDNS from functioning. -Notably, multicast cannot be used in any sort of cloud, or shared infrastructure -environment. However it works well in most office, home, or private infrastructure -environments.") - (license license:expat))) - -(define-public go-github-com-armon-go-metrics-0.0.0-20180917152333-f0300d1749da - (package - (name "go-github-com-armon-go-metrics") - (version "0.0.0-20180917152333-f0300d1749da") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/armon/go-metrics") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "13l7c35ps0r27vxfil2w0xhhc7w5rh00awvlmn4cz0a937b9ffpv")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/armon/go-metrics")) - (home-page "https://github.com/armon/go-metrics") - (synopsis "go-metrics") - (description - "This library provides a @code{metrics} package which can be used to instrument code, -expose application metrics, and profile runtime performance in a flexible manner.") - (license license:expat))) - -(define-public go-github-com-hashicorp-go-uuid-1.0.0 - (package - (name "go-github-com-hashicorp-go-uuid") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/go-uuid") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1jflywlani7583qm4ysph40hsgx3n66n5zr2k84i057fmwa1ypfy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/go-uuid")) - (home-page "https://github.com/hashicorp/go-uuid") - (synopsis "uuid") - (description - "Generates UUID-format strings using high quality, bytes. It is @strong{not} intended to be RFC compliant, merely to use a well-understood string representation of a 128-bit value. It can also parse UUID-format strings into their component bytes.") - (license license:mpl2.0))) - -(define-public go-github-com-hashicorp-go-immutable-radix-1.0.0 - (package - (name "go-github-com-hashicorp-go-immutable-radix") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/go-immutable-radix") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1v3nmsnk1s8bzpclrhirz7iq0g5xxbw9q5gvrg9ss6w9crs72qr6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/go-immutable-radix")) - (propagated-inputs - `(("go-github-com-hashicorp-golang-lru-0.5.0" - ,go-github-com-hashicorp-golang-lru-0.5.0) - ("go-github-com-hashicorp-go-uuid-1.0.0" - ,go-github-com-hashicorp-go-uuid-1.0.0))) - (home-page "https://github.com/hashicorp/go-immutable-radix") - (synopsis "go-immutable-radix") - (description - "This package provides the @code{iradix} package that implements an immutable @url{http://en.wikipedia.org/wiki/Radix_tree,radix tree}. -The package only provides a single @code{Tree} implementation, optimized for sparse nodes.") - (license license:mpl2.0))) - -(define-public go-github-com-hashicorp-go-msgpack-0.5.3 - (package - (name "go-github-com-hashicorp-go-msgpack") - (version "0.5.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/go-msgpack") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "00jv0ajqd58pkb2yyhlrjp0rv1mvb1ijx3yqjyikcmzvk9jb4h5m")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/go-msgpack")) - (home-page "https://github.com/hashicorp/go-msgpack") - (synopsis "go-codec") - (description "This repository contains the @code{go-codec} library.") - (license license:expat))) - -(define-public go-github-com-hashicorp-go-sockaddr-1.0.0 - (package - (name "go-github-com-hashicorp-go-sockaddr") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/go-sockaddr") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1yn1xq8ysn0lszmkygz3a9lgpswbz1p91jv7q8l20s4749a22xgi")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/go-sockaddr")) - (home-page "https://github.com/hashicorp/go-sockaddr") - (synopsis "go-sockaddr") - (description - "Package sockaddr is a Go implementation of the UNIX socket family data types and -related helper functions. -") - (license license:mpl2.0))) - -(define-public go-github-com-miekg-dns-1.0.14 - (package - (name "go-github-com-miekg-dns") - (version "1.0.14") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/miekg/dns") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1qgli6yp59bv6vc6zag84cwxmcxgnyxm1q2f301yyijk3wy5b2ak")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/miekg/dns")) - (home-page "https://github.com/miekg/dns") - (synopsis "Alternative (more granular) approach to a DNS library") - (description - "Package dns implements a full featured interface to the Domain Name System. -Both server- and client-side programming is supported. The package allows -complete control over what is sent out to the DNS. The API follows the -less-is-more principle, by presenting a small, clean interface. -") - (license license:bsd-3))) - -(define-public go-github-com-sean--seed-0.0.0-20170313163322-e2103e2c3529 - (package - (name "go-github-com-sean--seed") - (version "0.0.0-20170313163322-e2103e2c3529") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sean-/seed") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0glir8jxi1w7aga2jwdb63pp1h8q4whknili7xixsqzwyy716125")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/sean-/seed")) - (home-page "https://github.com/sean-/seed") - (synopsis "- Quickly Seed Go's Random Number Generator") - (description - "Boiler-plate to securely @url{https://en.wikipedia.org/wiki/Random_seed,seed} Go's -random number generator (if possible). This library isn't anything fancy, it's -just a canonical way of seeding Go's random number generator. Cribbed from -@url{https://github.com/hashicorp/nomad/commit/f89a993ec6b91636a3384dd568898245fbc273a1,(code Nomad)} -before it was moved into -@url{https://github.com/hashicorp/consul/commit/d695bcaae6e31ee307c11fdf55bb0bf46ea9fcf4,(code Consul)} -and made into a helper function, and now further modularized to be a super -lightweight and reusable library.") - (license #f))) - -(define-public go-golang-org-x-crypto-0.0.0-20181029021203-45a5f77698d3 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20181029021203-45a5f77698d3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0636jjj89wkzqchajwwzgcn4aafc334p70nawh9jzavg2mkx0ch4")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20181023162649-9b4f9f5ad519 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20181023162649-9b4f9f5ad519") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "06hvxy113h76f31gv1mq6vdr6xja1zv0fdig686l2b4y2b6swych")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20181026203630-95b1ffbd15a5 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20181026203630-95b1ffbd15a5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "06c3lf93wzf5kkfmzmgn75x4c0a7159vrwjrqh6zh9zxzqq5whpq")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-hashicorp-memberlist-0.1.3 - (package - (name "go-github-com-hashicorp-memberlist") - (version "0.1.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/memberlist") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0k1spq7dagvqj3baqw2dhxx1zxrb02y6m3apzr3a7gyirii890g3")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/memberlist")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20181026203630-95b1ffbd15a5" - ,go-golang-org-x-sys-0.0.0-20181026203630-95b1ffbd15a5) - ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" - ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) - ("go-golang-org-x-net-0.0.0-20181023162649-9b4f9f5ad519" - ,go-golang-org-x-net-0.0.0-20181023162649-9b4f9f5ad519) - ("go-golang-org-x-crypto-0.0.0-20181029021203-45a5f77698d3" - ,go-golang-org-x-crypto-0.0.0-20181029021203-45a5f77698d3) - ("go-github-com-stretchr-testify-1.2.2" - ,go-github-com-stretchr-testify-1.2.2) - ("go-github-com-sean--seed-0.0.0-20170313163322-e2103e2c3529" - ,go-github-com-sean--seed-0.0.0-20170313163322-e2103e2c3529) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-pascaldekloe-goe-0.0.0-20180627143212-57f6aae5913c" - ,go-github-com-pascaldekloe-goe-0.0.0-20180627143212-57f6aae5913c) - ("go-github-com-miekg-dns-1.0.14" ,go-github-com-miekg-dns-1.0.14) - ("go-github-com-hashicorp-go-sockaddr-1.0.0" - ,go-github-com-hashicorp-go-sockaddr-1.0.0) - ("go-github-com-hashicorp-go-multierror-1.0.0" - ,go-github-com-hashicorp-go-multierror-1.0.0) - ("go-github-com-hashicorp-go-msgpack-0.5.3" - ,go-github-com-hashicorp-go-msgpack-0.5.3) - ("go-github-com-hashicorp-go-immutable-radix-1.0.0" - ,go-github-com-hashicorp-go-immutable-radix-1.0.0) - ("go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c" - ,go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1) - ("go-github-com-armon-go-metrics-0.0.0-20180917152333-f0300d1749da" - ,go-github-com-armon-go-metrics-0.0.0-20180917152333-f0300d1749da))) - (home-page "https://github.com/hashicorp/memberlist") - (synopsis "memberlist") - (description - "memberlist is a library that manages cluster -membership and member failure detection using a gossip based protocol. -") - (license license:mpl2.0))) - -(define-public go-github-com-armon-go-radix-0.0.0-20180808171621-7fddfc383310 - (package - (name "go-github-com-armon-go-radix") - (version "0.0.0-20180808171621-7fddfc383310") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/armon/go-radix") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0y8chspn14n9xpsfb9gxnnf819rfpriaz64v81p7873a42kkhxb4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/armon/go-radix")) - (home-page "https://github.com/armon/go-radix") - (synopsis "go-radix") - (description - "This package provides the @code{radix} package that implements a @url{http://en.wikipedia.org/wiki/Radix_tree,radix tree}. -The package only provides a single @code{Tree} implementation, optimized for sparse nodes.") - (license license:expat))) - -(define-public go-github-com-bgentry-speakeasy-0.1.0 - (package - (name "go-github-com-bgentry-speakeasy") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/bgentry/speakeasy") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "02dfrj0wyphd3db9zn2mixqxwiz1ivnyc5xc7gkz58l5l27nzp8s")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/bgentry/speakeasy")) - (home-page "https://github.com/bgentry/speakeasy") - (synopsis "Speakeasy") - (description - "This package provides cross-platform Go (#golang) helpers for taking user input -from the terminal while not echoing the input back (similar to @code{getpasswd}). The -package uses syscalls to avoid any dependence on cgo, and is therefore -compatible with cross-compiling.") - (license license:expat))) - -(define-public go-github-com-fatih-color-1.7.0 - (package - (name "go-github-com-fatih-color") - (version "1.7.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/fatih/color") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0v8msvg38r8d1iiq2i5r4xyfx0invhc941kjrsg5gzwvagv55inv")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/fatih/color")) - (home-page "https://github.com/fatih/color") - (synopsis "color") - (description - "Package color is an ANSI color package to output colorized or SGR defined -output to the standard output. The API can be used in several way, pick one -that suits you. -") - (license license:expat))) - -(define-public go-github-com-hashicorp-errwrap-1.0.0 - (package - (name "go-github-com-hashicorp-errwrap") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/errwrap") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0slfb6w3b61xz04r32bi0a1bygc82rjzhqkxj2si2074wynqnr1c")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/errwrap")) - (home-page "https://github.com/hashicorp/errwrap") - (synopsis "errwrap") - (description - "Package errwrap implements methods to formalize error wrapping in Go. -") - (license license:mpl2.0))) - -(define-public go-github-com-hashicorp-go-multierror-1.0.0 - (package - (name "go-github-com-hashicorp-go-multierror") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/go-multierror") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "00nyn8llqzbfm8aflr9kwsvpzi4kv8v45c141v88xskxp5xf6z49")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/go-multierror")) - (propagated-inputs - `(("go-github-com-hashicorp-errwrap-1.0.0" - ,go-github-com-hashicorp-errwrap-1.0.0))) - (home-page "https://github.com/hashicorp/go-multierror") - (synopsis "go-multierror") - (description - "@code{go-multierror} is a package for Go that provides a mechanism for -representing a list of @code{error} values as a single @code{error}.") - (license license:mpl2.0))) - -(define-public go-github-com-mattn-go-colorable-0.0.9 - (package - (name "go-github-com-mattn-go-colorable") - (version "0.0.9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mattn/go-colorable") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1nwjmsppsjicr7anq8na6md7b1z84l9ppnlr045hhxjvbkqwalvx")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mattn/go-colorable")) - (home-page "https://github.com/mattn/go-colorable") - (synopsis "go-colorable") - (description "Colorable writer for windows.") - (license license:expat))) - -(define-public go-github-com-mattn-go-isatty-0.0.3 - (package - (name "go-github-com-mattn-go-isatty") - (version "0.0.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mattn/go-isatty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "06w45aqz2a6yrk25axbly2k5wmsccv8cspb94bfmz4izvw8h927n")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mattn/go-isatty")) - (home-page "https://github.com/mattn/go-isatty") - (synopsis "go-isatty") - (description "Package isatty implements interface to isatty -") - (license license:expat))) - -(define-public go-github-com-posener-complete-1.1.1 - (package - (name "go-github-com-posener-complete") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/posener/complete") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1nbdiybjizbaxbf5q0xwbq0cjqw4bl6jggvsjzrpif0w86fcjda2")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/posener/complete")) - (home-page "https://github.com/posener/complete") - (synopsis "complete") - (description - "Package complete provides a tool for bash writing bash completion in go, and bash completion for the go command line. -") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20180823144017-11551d06cbcc - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20180823144017-11551d06cbcc") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0j34525b9smcyjqmxvvqgcfn87kkx3b2izidmjp2cmhjxzjrgpwm")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-mitchellh-cli-1.0.0 - (package - (name "go-github-com-mitchellh-cli") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mitchellh/cli") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1i9kmr7rcf10d2hji8h4247hmc0nbairv7a0q51393aw2h1bnwg2")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mitchellh/cli")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20180823144017-11551d06cbcc" - ,go-golang-org-x-sys-0.0.0-20180823144017-11551d06cbcc) - ("go-github-com-posener-complete-1.1.1" - ,go-github-com-posener-complete-1.1.1) - ("go-github-com-mattn-go-isatty-0.0.3" - ,go-github-com-mattn-go-isatty-0.0.3) - ("go-github-com-mattn-go-colorable-0.0.9" - ,go-github-com-mattn-go-colorable-0.0.9) - ("go-github-com-hashicorp-go-multierror-1.0.0" - ,go-github-com-hashicorp-go-multierror-1.0.0) - ("go-github-com-fatih-color-1.7.0" ,go-github-com-fatih-color-1.7.0) - ("go-github-com-bgentry-speakeasy-0.1.0" - ,go-github-com-bgentry-speakeasy-0.1.0) - ("go-github-com-armon-go-radix-0.0.0-20180808171621-7fddfc383310" - ,go-github-com-armon-go-radix-0.0.0-20180808171621-7fddfc383310))) - (home-page "https://github.com/mitchellh/cli") - (synopsis "Go CLI Library") - (description - "cli is a library for implementing powerful command-line interfaces in Go. -cli is the library that powers the CLI for -@url{https://github.com/mitchellh/packer,Packer}, -@url{https://github.com/hashicorp/serf,Serf}, -@url{https://github.com/hashicorp/consul,Consul}, -@url{https://github.com/hashicorp/vault,Vault}, -@url{https://github.com/hashicorp/terraform,Terraform}, and -@url{https://github.com/hashicorp/nomad,Nomad}.") - (license license:mpl2.0))) - -(define-public go-github-com-mitchellh-gox-0.4.0 - (package - (name "go-github-com-mitchellh-gox") - (version "0.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mitchellh/gox") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1q4fdkw904mrmh1q5z8pfd3r0gcn5dm776kldqawddy93iiwnp8r")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mitchellh/gox")) - (home-page "https://github.com/mitchellh/gox") - (synopsis "Gox - Simple Go Cross Compilation") - (description - "Gox is a simple, no-frills tool for Go cross compilation that behaves a -lot like standard @code{go build}. Gox will parallelize builds for multiple -platforms. Gox will also build the cross-compilation toolchain for you.") - (license license:mpl2.0))) - -(define-public go-github-com-mitchellh-iochan-1.0.0 - (package - (name "go-github-com-mitchellh-iochan") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mitchellh/iochan") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "058n9bbf536f2nw3pbs7pysrg9cqvgkb28z2zf5wjyrzrknyk53g")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mitchellh/iochan")) - (home-page "https://github.com/mitchellh/iochan") - (synopsis "iochan") - (description - "iochan is a Go library for treating @code{io} readers and writers like channels. -This is useful when sometimes you wish to use @code{io.Reader} and such in @code{select} -statements.") - (license license:expat))) - -(define-public go-github-com-mitchellh-mapstructure-0.0.0-20160808181253-ca63d7c062ee - (package - (name "go-github-com-mitchellh-mapstructure") - (version "0.0.0-20160808181253-ca63d7c062ee") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mitchellh/mapstructure") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1yjwhgi57l5fxlmpdchipdd4jasdn1sa8ccl2f2486v06rv6z7gr")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mitchellh/mapstructure")) - (home-page "https://github.com/mitchellh/mapstructure") - (synopsis "mapstructure") - (description - "Package mapstructure exposes functionality to convert one arbitrary -Go type into another, typically to convert a map[string]interface{} -into a native Go structure. -") - (license license:expat))) - -(define-public go-github-com-ryanuber-columnize-0.0.0-20160712163229-9b3edd62028f - (package - (name "go-github-com-ryanuber-columnize") - (version "0.0.0-20160712163229-9b3edd62028f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/ryanuber/columnize") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ya1idkbb0a9fjlhkcnh5a9yvpwzwfmbyg7d56lpplwr9rqi1da4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/ryanuber/columnize")) - (home-page "https://github.com/ryanuber/columnize") - (synopsis "Columnize") - (description "Easy column-formatted output for golang") - (license license:expat))) - -(define-public go-golang-org-x-net-0.0.0-20181201002055-351d144fa1fc - (package - (name "go-golang-org-x-net") - (version "0.0.0-20181201002055-351d144fa1fc") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1c5x25qjyz83y92bq0lll5kmznyi3m02wd4c54scgf0866gy938k")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-github-com-hashicorp-serf-0.8.2 - (package - (name "go-github-com-hashicorp-serf") - (version "0.8.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/serf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0nrslghvdjhaczr2xp9mn8xgcx1dxl4jgpbk0l61ssmxahpx4iyc")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/serf")) - (propagated-inputs - `(("go-golang-org-x-net-0.0.0-20181201002055-351d144fa1fc" - ,go-golang-org-x-net-0.0.0-20181201002055-351d144fa1fc) - ("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0) - ("go-github-com-ryanuber-columnize-0.0.0-20160712163229-9b3edd62028f" - ,go-github-com-ryanuber-columnize-0.0.0-20160712163229-9b3edd62028f) - ("go-github-com-mitchellh-mapstructure-0.0.0-20160808181253-ca63d7c062ee" - ,go-github-com-mitchellh-mapstructure-0.0.0-20160808181253-ca63d7c062ee) - ("go-github-com-mitchellh-iochan-1.0.0" - ,go-github-com-mitchellh-iochan-1.0.0) - ("go-github-com-mitchellh-gox-0.4.0" - ,go-github-com-mitchellh-gox-0.4.0) - ("go-github-com-mitchellh-cli-1.0.0" - ,go-github-com-mitchellh-cli-1.0.0) - ("go-github-com-hashicorp-memberlist-0.1.3" - ,go-github-com-hashicorp-memberlist-0.1.3) - ("go-github-com-hashicorp-mdns-1.0.0" - ,go-github-com-hashicorp-mdns-1.0.0) - ("go-github-com-hashicorp-logutils-1.0.0" - ,go-github-com-hashicorp-logutils-1.0.0) - ("go-github-com-hashicorp-go-uuid-1.0.1" - ,go-github-com-hashicorp-go-uuid-1.0.1) - ("go-github-com-hashicorp-go-syslog-1.0.0" - ,go-github-com-hashicorp-go-syslog-1.0.0) - ("go-github-com-hashicorp-go-msgpack-0.5.3" - ,go-github-com-hashicorp-go-msgpack-0.5.3) - ("go-github-com-armon-go-metrics-0.0.0-20180917152333-f0300d1749da" - ,go-github-com-armon-go-metrics-0.0.0-20180917152333-f0300d1749da) - ("go-github-com-armon-circbuf-0.0.0-20150827004946-bbbad097214e" - ,go-github-com-armon-circbuf-0.0.0-20150827004946-bbbad097214e))) - (home-page "https://github.com/hashicorp/serf") - (synopsis "Serf") - (description - "Serf is a decentralized solution for service discovery and orchestration -that is lightweight, highly available, and fault tolerant.") - (license license:mpl2.0))) - -(define-public go-github-com-mitchellh-mapstructure-1.1.2 - (package - (name "go-github-com-mitchellh-mapstructure") - (version "1.1.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mitchellh/mapstructure") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "03bpv28jz9zhn4947saqwi328ydj7f6g6pf1m2d4m5zdh5jlfkrr")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mitchellh/mapstructure")) - (home-page "https://github.com/mitchellh/mapstructure") - (synopsis "mapstructure") - (description - "Package mapstructure exposes functionality to convert one arbitrary -Go type into another, typically to convert a map[string]interface{} -into a native Go structure. -") - (license license:expat))) - -(define-public go-github-com-pascaldekloe-goe-0.0.0-20180627143212-57f6aae5913c - (package - (name "go-github-com-pascaldekloe-goe") - (version "0.0.0-20180627143212-57f6aae5913c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pascaldekloe/goe") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1dqd3mfb4z2vmv6pg6fhgvfc53vhndk24wcl9lj1rz02n6m279fq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pascaldekloe/goe")) - (home-page "https://github.com/pascaldekloe/goe") - (synopsis "Go Enterprise") - (description - "Common enterprise features for the Go programming language (golang).") - (license license:cc0))) - -(define-public go-github-com-stretchr-testify-1.3.0 - (package - (name "go-github-com-stretchr-testify") - (version "1.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/testify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0wjchp2c8xbgcbbq32w3kvblk6q6yn533g78nxl6iskq6y95lxsy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/testify")) - (propagated-inputs - `(("go-github-com-stretchr-objx-0.1.0" - ,go-github-com-stretchr-objx-0.1.0) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.0" - ,go-github-com-davecgh-go-spew-1.1.0))) - (home-page "https://github.com/stretchr/testify") - (synopsis "Testify - Thou Shalt Write Tests") - (description - "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -") - (license license:expat))) - -(define-public go-github-com-hashicorp-consul-api-1.1.0 - (package - (name "go-github-com-hashicorp-consul-api") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/consul") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0xm3gl8i7pgsbsc2397bwh9hp2dwnk4cmw5y05acqn3zpyp84sbv")))) - (build-system go-build-system) - (arguments - '(#:import-path - "github.com/hashicorp/consul/api" - #:unpack-path - "github.com/hashicorp/consul")) - (propagated-inputs - `(("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0) - ("go-github-com-pascaldekloe-goe-0.0.0-20180627143212-57f6aae5913c" - ,go-github-com-pascaldekloe-goe-0.0.0-20180627143212-57f6aae5913c) - ("go-github-com-mitchellh-mapstructure-1.1.2" - ,go-github-com-mitchellh-mapstructure-1.1.2) - ("go-github-com-hashicorp-serf-0.8.2" - ,go-github-com-hashicorp-serf-0.8.2) - ("go-github-com-hashicorp-go-uuid-1.0.1" - ,go-github-com-hashicorp-go-uuid-1.0.1) - ("go-github-com-hashicorp-go-rootcerts-1.0.0" - ,go-github-com-hashicorp-go-rootcerts-1.0.0) - ("go-github-com-hashicorp-go-cleanhttp-0.5.1" - ,go-github-com-hashicorp-go-cleanhttp-0.5.1))) - (home-page "https://github.com/hashicorp/consul") - (synopsis "Consul API client") - (description - "This package provides the @code{api} package which attempts to -provide programmatic access to the full Consul API.") - (license license:mpl2.0))) - -(define-public go-github-com-golang-mock-1.5.0 - (package - (name "go-github-com-golang-mock") - (version "1.5.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/mock") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12l7p08pwwk3xn70w7rlm28nz6jf4szlzgjxjfmbssyirxxxy8v1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/mock")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" - ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) - ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0))) - (home-page "https://github.com/golang/mock") - (synopsis "gomock") - (description - "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It -integrates well with Go's built-in @code{testing} package, but can be used in other -contexts too.") - (license license:asl2.0))) - -(define-public go-github-com-google-pprof-0.0.0-20210226084205-cbba55b83ad5 - (package - (name "go-github-com-google-pprof") - (version "0.0.0-20210226084205-cbba55b83ad5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/pprof") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0drr44nqq0s3jillcrl8qa7sklxybs083lvashdh2ad62hrs31l7")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/pprof")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" - ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) - ("go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639" - ,go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639) - ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" - ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) - ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" - ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) - ("go-github-com-chzyer-logex-1.1.10" - ,go-github-com-chzyer-logex-1.1.10))) - (home-page "https://github.com/google/pprof") - (synopsis "Introduction") - (description - "pprof is a tool for collection, manipulation and visualization -of performance profiles. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20210226172049-e18ecbb05110") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1vlq8mdscp7yfaa1lmyv03y5m4c2d67ydg2q1i6smkrxghn3zn3q")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) - ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" - ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) - ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" - ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-github-com-google-pprof-0.0.0-20210122040257-d980be63207e - (package - (name "go-github-com-google-pprof") - (version "0.0.0-20210122040257-d980be63207e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/pprof") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0vg5z6rp5kfd324w8j12hlx9zv049vxljpc6dyqkj2k9vzzzqkw8")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/pprof")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" - ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) - ("go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639" - ,go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639) - ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" - ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) - ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" - ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) - ("go-github-com-chzyer-logex-1.1.10" - ,go-github-com-chzyer-logex-1.1.10))) - (home-page "https://github.com/google/pprof") - (synopsis "Introduction") - (description - "pprof is a tool for collection, manipulation and visualization -of performance profiles. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-mod-0.4.1 - (package - (name "go-golang-org-x-mod") - (version "0.4.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/mod") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0q4p41223d1xh4jmw9vmywjfi0jzn56gbidrwv5x1bzmx2qmj01n")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/mod")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" - ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) - ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" - ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) - ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" - ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) - (home-page "https://golang.org/x/mod") - (synopsis "mod") - (description - "This repository holds packages for writing tools -that work directly with Go module mechanics. -That is, it is for direct manipulation of Go modules themselves.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20210119194325-5f4716e94777 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20210119194325-5f4716e94777") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1xh4hk0fhkzq096z9qbzqfswmmgg4kvb44qvazpandvlpwm4jds2")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) - ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" - ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) - ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" - ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-oauth2-0.0.0-20210218202405-ba52d332ba99 - (package - (name "go-golang-org-x-oauth2") - (version "0.0.0-20210218202405-ba52d332ba99") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/oauth2") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0fdm3fljk3k4xbpzaywccayrhgqdfl79vl18k4z1zw2pl654bqbg")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/oauth2")) - (propagated-inputs - `(("go-google-golang-org-appengine-1.6.6" - ,go-google-golang-org-appengine-1.6.6) - ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" - ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) - ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) - (home-page "https://golang.org/x/oauth2") - (synopsis "OAuth2 for Go") - (description - "Package oauth2 provides support for making -OAuth2 authorized and authenticated HTTP requests, -as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -It can additionally grant authorization with Bearer JWT. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20210220050731-9a76102bfb43 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20210220050731-9a76102bfb43") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "07qn19yla2w604p3dc8h1c75xj2pxc4fajvg0mf0d4c72d5qiss4")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-google-pprof-0.0.0-20201203190320-1bf35d6f28c2 - (package - (name "go-github-com-google-pprof") - (version "0.0.0-20201203190320-1bf35d6f28c2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/pprof") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "140n5hjk2faanrf6v5h1559g755rgavynz1r99s1n15bmgibysvp")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/pprof")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" - ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) - ("go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639" - ,go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639) - ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" - ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) - ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" - ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) - ("go-github-com-chzyer-logex-1.1.10" - ,go-github-com-chzyer-logex-1.1.10))) - (home-page "https://github.com/google/pprof") - (synopsis "Introduction") - (description - "pprof is a tool for collection, manipulation and visualization -of performance profiles. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-mod-0.4.0 - (package - (name "go-golang-org-x-mod") - (version "0.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/mod") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ri003765yxawq6s8jbkbiaijihwrg980c4qwqsaa5x0sq2psrg1")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/mod")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" - ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) - ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" - ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) - ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" - ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) - (home-page "https://golang.org/x/mod") - (synopsis "mod") - (description - "This repository holds packages for writing tools -that work directly with Go module mechanics. -That is, it is for direct manipulation of Go modules themselves.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20201209123823-ac852fbbde11 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20201209123823-ac852fbbde11") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1zmp2fxgf7792xx15qhzcsfs8k0qv7q3m6jlcj6qvdngfzyvna64")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) - ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" - ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) - ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" - ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20201208233053-a543418bbed2 - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20201208233053-a543418bbed2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0r87p89pm2h75yajsz0g2vvy2q3z9gknc0fmsdm5rh427f1qazfr")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" - ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) - ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" - ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) - ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" - ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) - ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) - ("go-github-com-yuin-goldmark-1.2.1" - ,go-github-com-yuin-goldmark-1.2.1))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-github-com-google-martian-v3-3.1.0 - (package - (name "go-github-com-google-martian-v3") - (version "3.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/martian") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1pr9akggfzj2vw11l7ry4sij0hqslpc3gwx4ynbzyvbjhvh64sbc")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/martian/v3")) - (propagated-inputs - `(("go-golang-org-x-net-0.0.0-20190628185345-da137c7871d7" - ,go-golang-org-x-net-0.0.0-20190628185345-da137c7871d7))) - (home-page "https://github.com/google/martian") - (synopsis "Martian Proxy") - (description - "Package martian provides an HTTP/1.1 proxy with an API for configurable -request and response modifiers. -") - (license license:asl2.0))) - -(define-public go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639 - (package - (name "go-github-com-ianlancetaylor-demangle") - (version "0.0.0-20200824232613-28f6c0f3b639") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/ianlancetaylor/demangle") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0rsq3622gd40f1x1l7caidsxrmzg1993ich2higwd94fqbxs1r83")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/ianlancetaylor/demangle")) - (home-page "https://github.com/ianlancetaylor/demangle") - (synopsis "github.com/ianlancetaylor/demangle") - (description - "Package demangle defines functions that demangle GCC/LLVM -C++ and Rust symbol names. -This package recognizes names that were mangled according to the C++ ABI -defined at @url{http://codesourcery.com/cxx-abi/,http://codesourcery.com/cxx-abi/} and the Rust ABI -defined at -@url{https://rust-lang.github.io/rfcs/2603-rust-symbol-name-mangling-v0.html,https://rust-lang.github.io/rfcs/2603-rust-symbol-name-mangling-v0.html} -") - (license license:bsd-3))) - -(define-public go-github-com-google-pprof-0.0.0-20201023163331-3e6fc7fc9c4c - (package - (name "go-github-com-google-pprof") - (version "0.0.0-20201023163331-3e6fc7fc9c4c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/pprof") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1xmy4579gx45lqsy1cgddnc7nmaqfpiwd2kc5dhf8i0wjjvf18hq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/pprof")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" - ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) - ("go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639" - ,go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639) - ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" - ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) - ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" - ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) - ("go-github-com-chzyer-logex-1.1.10" - ,go-github-com-chzyer-logex-1.1.10))) - (home-page "https://github.com/google/pprof") - (synopsis "Introduction") - (description - "pprof is a tool for collection, manipulation and visualization -of performance profiles. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-net-0.0.0-20201031054903-ff519b6c9102 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20201031054903-ff519b6c9102") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "162ssgcc0kgj42ajaki0q3j5lwmixqqwkdqcmz41xg1k8wjm7riw")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) - ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" - ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) - ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" - ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-text-0.3.4 - (package - (name "go-golang-org-x-text") - (version "0.3.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "11jdvix83xcl5xnb039y4zrz4x5skzsps0w1jryp6wrar53cydvz")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/text")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" - ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) - (home-page "https://golang.org/x/text") - (synopsis "Go Text") - (description - "text is a repository of text-related packages related to internationalization -(i18n) and localization (l10n), such as character encodings, text -transformations, and locale-specific text handling. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20201110124207-079ba7bd75cd - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20201110124207-079ba7bd75cd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0g4d7cx480rbnpg16qqc4yycd50lpp2mi2qzvzr6hdny91v7sa05")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" - ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) - ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" - ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) - ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" - ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) - ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) - ("go-github-com-yuin-goldmark-1.2.1" - ,go-github-com-yuin-goldmark-1.2.1))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-github-com-google-go-cmp-0.5.2 - (package - (name "go-github-com-google-go-cmp") - (version "0.5.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0qchy411jm9q2l9mf7x3ry2ycaqp9xdhf2nx14qrpzcxfigv2705")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") - (license license:bsd-3))) - -(define-public go-golang-org-x-oauth2-0.0.0-20200902213428-5d25da1a8d43 - (package - (name "go-golang-org-x-oauth2") - (version "0.0.0-20200902213428-5d25da1a8d43") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/oauth2") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "14jx8sxshbvnx4fggn12mlmz000zcrd1a73n1455b1wgg1xfzq3n")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/oauth2")) - (propagated-inputs - `(("go-google-golang-org-appengine-1.6.6" - ,go-google-golang-org-appengine-1.6.6) - ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" - ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) - ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) - (home-page "https://golang.org/x/oauth2") - (synopsis "OAuth2 for Go") - (description - "Package oauth2 provides support for making -OAuth2 authorized and authenticated HTTP requests, -as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -It can additionally grant authorization with Bearer JWT. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20200905004654-be1d3432aa8f - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200905004654-be1d3432aa8f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1kd3szjsazhpgidv5xjv0s26fm4wvv2cr7j4zk8nblnqkic58as2")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20200904185747-39188db58858 - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20200904185747-39188db58858") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ydyylwqzjwijy4rdp2fmvnfh3s27896dx6g74r2wa6vbhisszvk")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" - ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) - ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" - ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) - ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" - ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) - ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) - ("go-github-com-yuin-goldmark-1.2.1" - ,go-github-com-yuin-goldmark-1.2.1))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-google-golang-org-genproto-0.0.0-20200904004341-0bd0a958aa1d - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20200904004341-0bd0a958aa1d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "01xp4ic4jvdv7n984cjgrgqbpbi9m4bj2xnfrs1s1zn1adx0jivs")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.24.0" - ,go-google-golang-org-protobuf-1.24.0) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-golang-protobuf-1.4.1" - ,go-github-com-golang-protobuf-1.4.1))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-google-golang-org-grpc-1.31.1 - (package - (name "go-google-golang-org-grpc") - (version "1.31.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18565vf9i2zc69znd9b8a2iz0kgv5cms0g0ppj93hnhri8rjqagk")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" - ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.3.3" - ,go-github-com-golang-protobuf-1.3.3) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-envoyproxy-go-control-plane-0.9.4" - ,go-github-com-envoyproxy-go-control-plane-0.9.4) - ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" - ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-google-golang-org-api-0.35.0 - (package - (name "go-google-golang-org-api") - (version "0.35.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-api-go-client") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0fgn21lmrlkw44sl0ivjicygwksibb1pclzp3zyh3ivn7ylvk2jd")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/api")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.31.1" ,go-google-golang-org-grpc-1.31.1) - ("go-google-golang-org-genproto-0.0.0-20200904004341-0bd0a958aa1d" - ,go-google-golang-org-genproto-0.0.0-20200904004341-0bd0a958aa1d) - ("go-google-golang-org-appengine-1.6.6" - ,go-google-golang-org-appengine-1.6.6) - ("go-golang-org-x-tools-0.0.0-20200904185747-39188db58858" - ,go-golang-org-x-tools-0.0.0-20200904185747-39188db58858) - ("go-golang-org-x-sys-0.0.0-20200905004654-be1d3432aa8f" - ,go-golang-org-x-sys-0.0.0-20200905004654-be1d3432aa8f) - ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" - ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) - ("go-golang-org-x-oauth2-0.0.0-20200902213428-5d25da1a8d43" - ,go-golang-org-x-oauth2-0.0.0-20200902213428-5d25da1a8d43) - ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" - ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) - ("go-go-opencensus-io-0.22.4" ,go-go-opencensus-io-0.22.4) - ("go-github-com-googleapis-gax-go-v2-2.0.5" - ,go-github-com-googleapis-gax-go-v2-2.0.5) - ("go-github-com-google-go-cmp-0.5.2" - ,go-github-com-google-go-cmp-0.5.2) - ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) - (home-page "https://google.golang.org/api") - (synopsis "Google APIs Client Library for Go") - (description - "Package api is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of -sub-packages. -") - (license license:bsd-3))) - -(define-public go-google-golang-org-genproto-0.0.0-20201109203340-2640f1f9cdfb - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20201109203340-2640f1f9cdfb") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "00mwybjbdpvmlkvmwsjvdb2z8lzzx2a340y4pf3bxqamalhdka0w")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.24.0" - ,go-google-golang-org-protobuf-1.24.0) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-golang-protobuf-1.4.1" - ,go-github-com-golang-protobuf-1.4.1))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-cloud-google-com-go-0.72.0 - (package - (name "go-cloud-google-com-go") - (version "0.72.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-cloud-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1x4gy466jrzab9l02dwd3lvy2dwy84j34zpjkm5xnxh45za6hpxn")))) - (build-system go-build-system) - (arguments '(#:import-path "cloud.google.com/go")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) - ("go-google-golang-org-genproto-0.0.0-20201109203340-2640f1f9cdfb" - ,go-google-golang-org-genproto-0.0.0-20201109203340-2640f1f9cdfb) - ("go-google-golang-org-api-0.35.0" ,go-google-golang-org-api-0.35.0) - ("go-golang-org-x-tools-0.0.0-20201110124207-079ba7bd75cd" - ,go-golang-org-x-tools-0.0.0-20201110124207-079ba7bd75cd) - ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) - ("go-golang-org-x-oauth2-0.0.0-20200902213428-5d25da1a8d43" - ,go-golang-org-x-oauth2-0.0.0-20200902213428-5d25da1a8d43) - ("go-golang-org-x-net-0.0.0-20201031054903-ff519b6c9102" - ,go-golang-org-x-net-0.0.0-20201031054903-ff519b6c9102) - ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" - ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) - ("go-go-opencensus-io-0.22.5" ,go-go-opencensus-io-0.22.5) - ("go-github-com-jstemmer-go-junit-report-0.9.1" - ,go-github-com-jstemmer-go-junit-report-0.9.1) - ("go-github-com-googleapis-gax-go-v2-2.0.5" - ,go-github-com-googleapis-gax-go-v2-2.0.5) - ("go-github-com-google-pprof-0.0.0-20201023163331-3e6fc7fc9c4c" - ,go-github-com-google-pprof-0.0.0-20201023163331-3e6fc7fc9c4c) - ("go-github-com-google-martian-v3-3.1.0" - ,go-github-com-google-martian-v3-3.1.0) - ("go-github-com-google-go-cmp-0.5.2" - ,go-github-com-google-go-cmp-0.5.2) - ("go-github-com-golang-protobuf-1.4.3" - ,go-github-com-golang-protobuf-1.4.3) - ("go-github-com-golang-mock-1.4.4" ,go-github-com-golang-mock-1.4.4) - ("go-cloud-google-com-go-storage-1.10.0" - ,go-cloud-google-com-go-storage-1.10.0))) - (home-page "https://cloud.google.com/go") - (synopsis "Google Cloud Client Libraries for Go") - (description - "Package cloud is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -of sub-packages. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-oauth2-0.0.0-20201109201403-9fd604954f58 - (package - (name "go-golang-org-x-oauth2") - (version "0.0.0-20201109201403-9fd604954f58") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/oauth2") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "06dj14f6jrgpqmf3v3z74zhcin3yj7yp8mzxljm3a3ihq984kz8v")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/oauth2")) - (propagated-inputs - `(("go-google-golang-org-appengine-1.6.6" - ,go-google-golang-org-appengine-1.6.6) - ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" - ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) - ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) - (home-page "https://golang.org/x/oauth2") - (synopsis "OAuth2 for Go") - (description - "Package oauth2 provides support for making -OAuth2 authorized and authenticated HTTP requests, -as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -It can additionally grant authorization with Bearer JWT. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20201201145000-ef89a241ccb3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0a8myxx2mvdr77a003gpy5jmdzbxbnrf5zppmpl4za4sspxlmwif")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20201201161351-ac6f37ff4c2a - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20201201161351-ac6f37ff4c2a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0akq0z86x51rh556fs7icjmmmgdyaa7rq7cmqlngrmvjb79wnwpl")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" - ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) - ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" - ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) - ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" - ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) - ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) - ("go-github-com-yuin-goldmark-1.2.1" - ,go-github-com-yuin-goldmark-1.2.1))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-google-golang-org-genproto-0.0.0-20201201144952-b05cb90ed32e - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20201201144952-b05cb90ed32e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1n9jlhnn5fg7a41ahdril7wgfli43kxplnpxbdbhrkknjra7xdjd")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.24.0" - ,go-google-golang-org-protobuf-1.24.0) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-golang-protobuf-1.4.1" - ,go-github-com-golang-protobuf-1.4.1))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-google-golang-org-api-0.36.0 - (package - (name "go-google-golang-org-api") - (version "0.36.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-api-go-client") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1x6wlavrqi2r6ss3h2kg94p2lfj0z019kc85zm1pajpf0k23fxp7")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/api")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) - ("go-google-golang-org-genproto-0.0.0-20201201144952-b05cb90ed32e" - ,go-google-golang-org-genproto-0.0.0-20201201144952-b05cb90ed32e) - ("go-google-golang-org-appengine-1.6.7" - ,go-google-golang-org-appengine-1.6.7) - ("go-golang-org-x-tools-0.0.0-20201201161351-ac6f37ff4c2a" - ,go-golang-org-x-tools-0.0.0-20201201161351-ac6f37ff4c2a) - ("go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3" - ,go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3) - ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" - ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) - ("go-golang-org-x-oauth2-0.0.0-20201109201403-9fd604954f58" - ,go-golang-org-x-oauth2-0.0.0-20201109201403-9fd604954f58) - ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" - ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) - ("go-go-opencensus-io-0.22.5" ,go-go-opencensus-io-0.22.5) - ("go-github-com-googleapis-gax-go-v2-2.0.5" - ,go-github-com-googleapis-gax-go-v2-2.0.5) - ("go-github-com-google-go-cmp-0.5.4" - ,go-github-com-google-go-cmp-0.5.4) - ("go-cloud-google-com-go-0.72.0" ,go-cloud-google-com-go-0.72.0))) - (home-page "https://google.golang.org/api") - (synopsis "Google APIs Client Library for Go") - (description - "Package api is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of -sub-packages. -") - (license license:bsd-3))) - -(define-public go-google-golang-org-genproto-0.0.0-20201210142538-e3217bee35cc - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20201210142538-e3217bee35cc") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1bzfa58dw7jmkrp46hikbsq1yyk2r29a1gn51sqlilbvf7lq96p9")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.24.0" - ,go-google-golang-org-protobuf-1.24.0) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-golang-protobuf-1.4.1" - ,go-github-com-golang-protobuf-1.4.1))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-cloud-google-com-go-0.74.0 - (package - (name "go-cloud-google-com-go") - (version "0.74.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-cloud-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "09j1qppf2gf14bn06hsyrj9jaxz9vlbs9d7yrxrdvh2234qsbggy")))) - (build-system go-build-system) - (arguments '(#:import-path "cloud.google.com/go")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.34.0" ,go-google-golang-org-grpc-1.34.0) - ("go-google-golang-org-genproto-0.0.0-20201210142538-e3217bee35cc" - ,go-google-golang-org-genproto-0.0.0-20201210142538-e3217bee35cc) - ("go-google-golang-org-api-0.36.0" ,go-google-golang-org-api-0.36.0) - ("go-golang-org-x-tools-0.0.0-20201208233053-a543418bbed2" - ,go-golang-org-x-tools-0.0.0-20201208233053-a543418bbed2) - ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) - ("go-golang-org-x-oauth2-0.0.0-20201208152858-08078c50e5b5" - ,go-golang-org-x-oauth2-0.0.0-20201208152858-08078c50e5b5) - ("go-golang-org-x-net-0.0.0-20201209123823-ac852fbbde11" - ,go-golang-org-x-net-0.0.0-20201209123823-ac852fbbde11) - ("go-golang-org-x-mod-0.4.0" ,go-golang-org-x-mod-0.4.0) - ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" - ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) - ("go-go-opencensus-io-0.22.5" ,go-go-opencensus-io-0.22.5) - ("go-github-com-jstemmer-go-junit-report-0.9.1" - ,go-github-com-jstemmer-go-junit-report-0.9.1) - ("go-github-com-googleapis-gax-go-v2-2.0.5" - ,go-github-com-googleapis-gax-go-v2-2.0.5) - ("go-github-com-google-pprof-0.0.0-20201203190320-1bf35d6f28c2" - ,go-github-com-google-pprof-0.0.0-20201203190320-1bf35d6f28c2) - ("go-github-com-google-martian-v3-3.1.0" - ,go-github-com-google-martian-v3-3.1.0) - ("go-github-com-google-go-cmp-0.5.4" - ,go-github-com-google-go-cmp-0.5.4) - ("go-github-com-golang-protobuf-1.4.3" - ,go-github-com-golang-protobuf-1.4.3) - ("go-github-com-golang-mock-1.4.4" ,go-github-com-golang-mock-1.4.4) - ("go-cloud-google-com-go-storage-1.10.0" - ,go-cloud-google-com-go-storage-1.10.0))) - (home-page "https://cloud.google.com/go") - (synopsis "Google Cloud Client Libraries for Go") - (description - "Package cloud is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -of sub-packages. -") - (license license:asl2.0))) - -(define-public go-github-com-google-go-cmp-0.5.4 - (package - (name "go-github-com-google-go-cmp") - (version "0.5.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ld9pwb6l22g75g1zpa691l7q9ki7pjgpcqhwgdfr3va1zisr5ci")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") - (license license:bsd-3))) - -(define-public go-go-opencensus-io-0.22.5 - (package - (name "go-go-opencensus-io") - (version "0.22.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/census-instrumentation/opencensus-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18s1d7bk28i8gbs6i587ccd31qp3f8gibgd14dpkzs05gyvlccy6")))) - (build-system go-build-system) - (arguments '(#:import-path "go.opencensus.io")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.20.1" ,go-google-golang-org-grpc-1.20.1) - ("go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb" - ,go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb) - ("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) - ("go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd" - ,go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd) - ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" - ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) - ("go-github-com-stretchr-testify-1.4.0" - ,go-github-com-stretchr-testify-1.4.0) - ("go-github-com-google-go-cmp-0.3.0" - ,go-github-com-google-go-cmp-0.3.0) - ("go-github-com-golang-protobuf-1.3.1" - ,go-github-com-golang-protobuf-1.3.1) - ("go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6" - ,go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6))) - (home-page "https://go.opencensus.io") - (synopsis "OpenCensus Libraries for Go") - (description "Package opencensus contains Go support for OpenCensus. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-oauth2-0.0.0-20201208152858-08078c50e5b5 - (package - (name "go-golang-org-x-oauth2") - (version "0.0.0-20201208152858-08078c50e5b5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/oauth2") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0zynwxw47nhwhs6n1c87c9np43lwl9m9z2w2cmdvjwhsisa93b75")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/oauth2")) - (propagated-inputs - `(("go-google-golang-org-appengine-1.6.6" - ,go-google-golang-org-appengine-1.6.6) - ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" - ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) - ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) - (home-page "https://golang.org/x/oauth2") - (synopsis "OAuth2 for Go") - (description - "Package oauth2 provides support for making -OAuth2 authorized and authenticated HTTP requests, -as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -It can additionally grant authorization with Bearer JWT. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20201207232520-09787c993a3a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1nv4mwi9njkkyc7lwmxrjr8ggfh2cf1c67a9bq85dnss81vpj61y")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the -ones provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20210104204734-6f8348627aad - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20210104204734-6f8348627aad") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0pmz8dwjf4gxr1gwnp4iahh3yh09apcf40kvvybycsx4rfjc2gbl")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20210105154028-b0ab187a4818 - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20210105154028-b0ab187a4818") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "157w706lz7j4s7cwgh7j7mf8v1sah5hm4dlmp8isf6vhnqpixdp7")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" - ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) - ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" - ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) - ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" - ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) - ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) - ("go-github-com-yuin-goldmark-1.2.1" - ,go-github-com-yuin-goldmark-1.2.1))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-google-golang-org-genproto-0.0.0-20201214200347-8c77b98c765d - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20201214200347-8c77b98c765d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1bdpss5xmla0gjz66mdk8bqpsdb5i1xz65g30k9cs2h7vrqlwzn4")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.24.0" - ,go-google-golang-org-protobuf-1.24.0) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-golang-protobuf-1.4.1" - ,go-github-com-golang-protobuf-1.4.1))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-github-com-cncf-udpa-go-0.0.0-20200629203442-efcf912fb354 - (package - (name "go-github-com-cncf-udpa-go") - (version "0.0.0-20200629203442-efcf912fb354") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cncf/udpa") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18b1v01h3id5d7v5gqabc4qsaja17r45rn3fvv38nrfx9l4smv0x")))) - (build-system go-build-system) - (arguments - '(#:import-path - "github.com/cncf/udpa/go" - #:unpack-path - "github.com/cncf/udpa")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2) - ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" - ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0))) - (home-page "https://github.com/cncf/udpa") - (synopsis "Description") - (description - "This library has been deprecated in favor of @code{github.com/cncf/xds/go}. All users are recommended to switch their imports.") - (license license:asl2.0))) - -(define-public go-github-com-envoyproxy-go-control-plane-0.9.7 - (package - (name "go-github-com-envoyproxy-go-control-plane") - (version "0.9.7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/envoyproxy/go-control-plane") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0nx5ybyadkjqr29hndn6amhbcqpi1rkfv12bxp0rk3ay045zxsh8")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.23.0" - ,go-google-golang-org-protobuf-1.23.0) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" - ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) - ("go-github-com-stretchr-testify-1.5.1" - ,go-github-com-stretchr-testify-1.5.1) - ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" - ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.2" - ,go-github-com-golang-protobuf-1.4.2) - ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" - ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) - ("go-github-com-cncf-udpa-go-0.0.0-20200629203442-efcf912fb354" - ,go-github-com-cncf-udpa-go-0.0.0-20200629203442-efcf912fb354) - ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" - ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) - (home-page "https://github.com/envoyproxy/go-control-plane") - (synopsis "control-plane") - (description - "This repository contains a Go-based implementation of an API server that -implements the discovery service APIs defined in -@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") - (license license:asl2.0))) - -(define-public go-google-golang-org-grpc-1.34.0 - (package - (name "go-google-golang-org-grpc") - (version "1.34.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0s8y19qvv0zfy2irq8vv12h65v7pw18k6yqfix1j2370yxmsajgm")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.25.0" - ,go-google-golang-org-protobuf-1.25.0) - ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" - ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) - ("go-github-com-google-go-cmp-0.5.0" - ,go-github-com-google-go-cmp-0.5.0) - ("go-github-com-golang-protobuf-1.4.2" - ,go-github-com-golang-protobuf-1.4.2) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-envoyproxy-go-control-plane-0.9.7" - ,go-github-com-envoyproxy-go-control-plane-0.9.7) - ("go-github-com-cncf-udpa-go-0.0.0-20200629203442-efcf912fb354" - ,go-github-com-cncf-udpa-go-0.0.0-20200629203442-efcf912fb354))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-google-golang-org-api-0.40.0 - (package - (name "go-google-golang-org-api") - (version "0.40.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-api-go-client") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0vs0bnzljg5iib8x01sy49ndgsz3cl1sq53pvy3h6kzp7may0bpc")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/api")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.34.0" ,go-google-golang-org-grpc-1.34.0) - ("go-google-golang-org-genproto-0.0.0-20201214200347-8c77b98c765d" - ,go-google-golang-org-genproto-0.0.0-20201214200347-8c77b98c765d) - ("go-google-golang-org-appengine-1.6.7" - ,go-google-golang-org-appengine-1.6.7) - ("go-golang-org-x-tools-0.0.0-20210105154028-b0ab187a4818" - ,go-golang-org-x-tools-0.0.0-20210105154028-b0ab187a4818) - ("go-golang-org-x-sys-0.0.0-20210104204734-6f8348627aad" - ,go-golang-org-x-sys-0.0.0-20210104204734-6f8348627aad) - ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" - ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) - ("go-golang-org-x-oauth2-0.0.0-20201208152858-08078c50e5b5" - ,go-golang-org-x-oauth2-0.0.0-20201208152858-08078c50e5b5) - ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" - ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) - ("go-go-opencensus-io-0.22.5" ,go-go-opencensus-io-0.22.5) - ("go-github-com-googleapis-gax-go-v2-2.0.5" - ,go-github-com-googleapis-gax-go-v2-2.0.5) - ("go-github-com-google-go-cmp-0.5.4" - ,go-github-com-google-go-cmp-0.5.4) - ("go-cloud-google-com-go-0.74.0" ,go-cloud-google-com-go-0.74.0))) - (home-page "https://google.golang.org/api") - (synopsis "Google APIs Client Library for Go") - (description - "Package api is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of -sub-packages. -") - (license license:bsd-3))) - -(define-public go-google-golang-org-genproto-0.0.0-20210222152913-aa3ee6e6a81c - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20210222152913-aa3ee6e6a81c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "06wa7v3s558rwxsqd1kqz5xy10kigzx50ciqh3zdxsbvxqvjwxrx")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.24.0" - ,go-google-golang-org-protobuf-1.24.0) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-golang-protobuf-1.4.1" - ,go-github-com-golang-protobuf-1.4.1))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-google-golang-org-grpc-1.35.0 - (package - (name "go-google-golang-org-grpc") - (version "1.35.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "15ij5acp9h8dxq0brc0jljj98badri23zpm4yvmsn6gnnxaykl72")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.25.0" - ,go-google-golang-org-protobuf-1.25.0) - ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" - ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) - ("go-github-com-google-go-cmp-0.5.0" - ,go-github-com-google-go-cmp-0.5.0) - ("go-github-com-golang-protobuf-1.4.2" - ,go-github-com-golang-protobuf-1.4.2) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad" - ,go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad) - ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" - ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-cloud-google-com-go-0.78.0 - (package - (name "go-cloud-google-com-go") - (version "0.78.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-cloud-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "11wldladkcz41ivsfnbrqy2hg5wp55d72hnr2wki0zvnhbzsj376")))) - (build-system go-build-system) - (arguments '(#:import-path "cloud.google.com/go")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.35.0" ,go-google-golang-org-grpc-1.35.0) - ("go-google-golang-org-genproto-0.0.0-20210222152913-aa3ee6e6a81c" - ,go-google-golang-org-genproto-0.0.0-20210222152913-aa3ee6e6a81c) - ("go-google-golang-org-api-0.40.0" ,go-google-golang-org-api-0.40.0) - ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) - ("go-golang-org-x-text-0.3.5" ,go-golang-org-x-text-0.3.5) - ("go-golang-org-x-sys-0.0.0-20210220050731-9a76102bfb43" - ,go-golang-org-x-sys-0.0.0-20210220050731-9a76102bfb43) - ("go-golang-org-x-oauth2-0.0.0-20210218202405-ba52d332ba99" - ,go-golang-org-x-oauth2-0.0.0-20210218202405-ba52d332ba99) - ("go-golang-org-x-net-0.0.0-20210119194325-5f4716e94777" - ,go-golang-org-x-net-0.0.0-20210119194325-5f4716e94777) - ("go-golang-org-x-mod-0.4.1" ,go-golang-org-x-mod-0.4.1) - ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" - ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) - ("go-go-opencensus-io-0.22.5" ,go-go-opencensus-io-0.22.5) - ("go-github-com-jstemmer-go-junit-report-0.9.1" - ,go-github-com-jstemmer-go-junit-report-0.9.1) - ("go-github-com-googleapis-gax-go-v2-2.0.5" - ,go-github-com-googleapis-gax-go-v2-2.0.5) - ("go-github-com-google-pprof-0.0.0-20210122040257-d980be63207e" - ,go-github-com-google-pprof-0.0.0-20210122040257-d980be63207e) - ("go-github-com-google-martian-v3-3.1.0" - ,go-github-com-google-martian-v3-3.1.0) - ("go-github-com-google-go-cmp-0.5.4" - ,go-github-com-google-go-cmp-0.5.4) - ("go-github-com-golang-protobuf-1.4.3" - ,go-github-com-golang-protobuf-1.4.3) - ("go-github-com-golang-mock-1.4.4" ,go-github-com-golang-mock-1.4.4) - ("go-cloud-google-com-go-storage-1.10.0" - ,go-cloud-google-com-go-storage-1.10.0))) - (home-page "https://cloud.google.com/go") - (synopsis "Google Cloud Client Libraries for Go") - (description - "Package cloud is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -of sub-packages. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-oauth2-0.0.0-20210220000619-9bb904979d93 - (package - (name "go-golang-org-x-oauth2") - (version "0.0.0-20210220000619-9bb904979d93") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/oauth2") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1rhndpvpvfy5bsaxi974cznlq4hbamhmy6l06ppp9phh12pvn11p")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/oauth2")) - (propagated-inputs - `(("go-google-golang-org-appengine-1.6.6" - ,go-google-golang-org-appengine-1.6.6) - ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" - ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) - ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) - (home-page "https://golang.org/x/oauth2") - (synopsis "OAuth2 for Go") - (description - "Package oauth2 provides support for making -OAuth2 authorized and authenticated HTTP requests, -as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -It can additionally grant authorization with Bearer JWT. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20210305230114-8fe3ee5dd75b - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20210305230114-8fe3ee5dd75b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1x7fn66vplxkac6lbwqv649wwnx7kz0bqdzgr98z7yx7cfdxd7rj")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-google-golang-org-genproto-0.0.0-20210303154014-9728d6b83eeb - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20210303154014-9728d6b83eeb") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1abic7gjp07d1s6imjfn00s316xdirss3zvcric74gr9varr02xn")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.24.0" - ,go-google-golang-org-protobuf-1.24.0) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-golang-protobuf-1.4.1" - ,go-github-com-golang-protobuf-1.4.1))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-google-golang-org-api-0.41.0 - (package - (name "go-google-golang-org-api") - (version "0.41.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-api-go-client") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0yzz534xzl2km3vxr18h204yvnrzqlss02fagg2ign0sy3qnlkhx")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/api")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.36.0" ,go-google-golang-org-grpc-1.36.0) - ("go-google-golang-org-genproto-0.0.0-20210303154014-9728d6b83eeb" - ,go-google-golang-org-genproto-0.0.0-20210303154014-9728d6b83eeb) - ("go-google-golang-org-appengine-1.6.7" - ,go-google-golang-org-appengine-1.6.7) - ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) - ("go-golang-org-x-sys-0.0.0-20210305230114-8fe3ee5dd75b" - ,go-golang-org-x-sys-0.0.0-20210305230114-8fe3ee5dd75b) - ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" - ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) - ("go-golang-org-x-oauth2-0.0.0-20210220000619-9bb904979d93" - ,go-golang-org-x-oauth2-0.0.0-20210220000619-9bb904979d93) - ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" - ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) - ("go-go-opencensus-io-0.23.0" ,go-go-opencensus-io-0.23.0) - ("go-github-com-googleapis-gax-go-v2-2.0.5" - ,go-github-com-googleapis-gax-go-v2-2.0.5) - ("go-github-com-google-go-cmp-0.5.5" - ,go-github-com-google-go-cmp-0.5.5) - ("go-cloud-google-com-go-0.78.0" ,go-cloud-google-com-go-0.78.0))) - (home-page "https://google.golang.org/api") - (synopsis "Google APIs Client Library for Go") - (description - "Package api is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of -sub-packages. -") - (license license:bsd-3))) - -(define-public go-google-golang-org-genproto-0.0.0-20210310155132-4ce2db91004e - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20210310155132-4ce2db91004e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0r5f024c4piqna27pvc28m0h44ms9rhcbihf1zn5l8prf4vvrdw9")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.24.0" - ,go-google-golang-org-protobuf-1.24.0) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-golang-protobuf-1.4.1" - ,go-github-com-golang-protobuf-1.4.1))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-cloud-google-com-go-0.79.0 - (package - (name "go-cloud-google-com-go") - (version "0.79.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-cloud-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "031jrfgyys0slh154593d4swj6iqrjvs9dxwmab99dl6zfws77jv")))) - (build-system go-build-system) - (arguments '(#:import-path "cloud.google.com/go")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.36.0" ,go-google-golang-org-grpc-1.36.0) - ("go-google-golang-org-genproto-0.0.0-20210310155132-4ce2db91004e" - ,go-google-golang-org-genproto-0.0.0-20210310155132-4ce2db91004e) - ("go-google-golang-org-api-0.41.0" ,go-google-golang-org-api-0.41.0) - ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) - ("go-golang-org-x-text-0.3.5" ,go-golang-org-x-text-0.3.5) - ("go-golang-org-x-oauth2-0.0.0-20210220000619-9bb904979d93" - ,go-golang-org-x-oauth2-0.0.0-20210220000619-9bb904979d93) - ("go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110" - ,go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110) - ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" - ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) - ("go-go-opencensus-io-0.23.0" ,go-go-opencensus-io-0.23.0) - ("go-github-com-jstemmer-go-junit-report-0.9.1" - ,go-github-com-jstemmer-go-junit-report-0.9.1) - ("go-github-com-googleapis-gax-go-v2-2.0.5" - ,go-github-com-googleapis-gax-go-v2-2.0.5) - ("go-github-com-google-pprof-0.0.0-20210226084205-cbba55b83ad5" - ,go-github-com-google-pprof-0.0.0-20210226084205-cbba55b83ad5) - ("go-github-com-google-martian-v3-3.1.0" - ,go-github-com-google-martian-v3-3.1.0) - ("go-github-com-google-go-cmp-0.5.5" - ,go-github-com-google-go-cmp-0.5.5) - ("go-github-com-golang-protobuf-1.4.3" - ,go-github-com-golang-protobuf-1.4.3) - ("go-github-com-golang-mock-1.5.0" ,go-github-com-golang-mock-1.5.0) - ("go-cloud-google-com-go-storage-1.10.0" - ,go-cloud-google-com-go-storage-1.10.0))) - (home-page "https://cloud.google.com/go") - (synopsis "Google Cloud Client Libraries for Go") - (description - "Package cloud is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -of sub-packages. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-oauth2-0.0.0-20210313182246-cd4f82c27b84 - (package - (name "go-golang-org-x-oauth2") - (version "0.0.0-20210313182246-cd4f82c27b84") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/oauth2") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1jf68sh1957ji1lv1zrrhsbm6jr3508pw159pfzgyw6hbzsg5amv")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/oauth2")) - (propagated-inputs - `(("go-google-golang-org-appengine-1.6.6" - ,go-google-golang-org-appengine-1.6.6) - ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" - ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) - ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) - (home-page "https://golang.org/x/oauth2") - (synopsis "OAuth2 for Go") - (description - "Package oauth2 provides support for making -OAuth2 authorized and authenticated HTTP requests, -as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -It can additionally grant authorization with Bearer JWT. -") - (license license:bsd-3))) - -(define-public go-google-golang-org-genproto-0.0.0-20210319143718-93e7006c17a6 - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20210319143718-93e7006c17a6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0l143m8rn7zmbfb2rpdawhxs8qjbdpn61hqynf47j5hwsbjci2xs")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.24.0" - ,go-google-golang-org-protobuf-1.24.0) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-golang-protobuf-1.4.1" - ,go-github-com-golang-protobuf-1.4.1))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-google-golang-org-grpc-1.36.0 - (package - (name "go-google-golang-org-grpc") - (version "1.36.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1m4xsfv3ysc84cwqxqqr61fs3d2w04f0q5xbdjijhczjixcxwh5i")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.25.0" - ,go-google-golang-org-protobuf-1.25.0) - ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" - ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) - ("go-github-com-google-go-cmp-0.5.0" - ,go-github-com-google-go-cmp-0.5.0) - ("go-github-com-golang-protobuf-1.4.2" - ,go-github-com-golang-protobuf-1.4.2) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad" - ,go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad) - ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" - ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-google-golang-org-api-0.43.0 - (package - (name "go-google-golang-org-api") - (version "0.43.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-api-go-client") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0wxxbihigjn49warampi7gqfslbnp9nrj5zmk8p3ssq429jpvsib")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/api")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.36.0" ,go-google-golang-org-grpc-1.36.0) - ("go-google-golang-org-genproto-0.0.0-20210319143718-93e7006c17a6" - ,go-google-golang-org-genproto-0.0.0-20210319143718-93e7006c17a6) - ("go-google-golang-org-appengine-1.6.7" - ,go-google-golang-org-appengine-1.6.7) - ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) - ("go-golang-org-x-sys-0.0.0-20210320140829-1e4c9ba3b0c4" - ,go-golang-org-x-sys-0.0.0-20210320140829-1e4c9ba3b0c4) - ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" - ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) - ("go-golang-org-x-oauth2-0.0.0-20210313182246-cd4f82c27b84" - ,go-golang-org-x-oauth2-0.0.0-20210313182246-cd4f82c27b84) - ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" - ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) - ("go-go-opencensus-io-0.23.0" ,go-go-opencensus-io-0.23.0) - ("go-github-com-googleapis-gax-go-v2-2.0.5" - ,go-github-com-googleapis-gax-go-v2-2.0.5) - ("go-github-com-google-go-cmp-0.5.5" - ,go-github-com-google-go-cmp-0.5.5) - ("go-cloud-google-com-go-0.79.0" ,go-cloud-google-com-go-0.79.0))) - (home-page "https://google.golang.org/api") - (synopsis "Google APIs Client Library for Go") - (description - "Package api is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of -sub-packages. -") - (license license:bsd-3))) - -(define-public go-cloud-google-com-go-0.81.0 - (package - (name "go-cloud-google-com-go") - (version "0.81.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-cloud-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "15jgynqb5pbxqbj3a7ii970yn4srsw1dbxzxnhpkfkmplalpgyh3")))) - (build-system go-build-system) - (arguments '(#:import-path "cloud.google.com/go")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.36.1" ,go-google-golang-org-grpc-1.36.1) - ("go-google-golang-org-genproto-0.0.0-20210402141018-6c239bbf2bb1" - ,go-google-golang-org-genproto-0.0.0-20210402141018-6c239bbf2bb1) - ("go-google-golang-org-api-0.43.0" ,go-google-golang-org-api-0.43.0) - ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) - ("go-golang-org-x-text-0.3.5" ,go-golang-org-x-text-0.3.5) - ("go-golang-org-x-oauth2-0.0.0-20210313182246-cd4f82c27b84" - ,go-golang-org-x-oauth2-0.0.0-20210313182246-cd4f82c27b84) - ("go-golang-org-x-net-0.0.0-20210316092652-d523dce5a7f4" - ,go-golang-org-x-net-0.0.0-20210316092652-d523dce5a7f4) - ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" - ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) - ("go-go-opencensus-io-0.23.0" ,go-go-opencensus-io-0.23.0) - ("go-github-com-jstemmer-go-junit-report-0.9.1" - ,go-github-com-jstemmer-go-junit-report-0.9.1) - ("go-github-com-googleapis-gax-go-v2-2.0.5" - ,go-github-com-googleapis-gax-go-v2-2.0.5) - ("go-github-com-google-pprof-0.0.0-20210226084205-cbba55b83ad5" - ,go-github-com-google-pprof-0.0.0-20210226084205-cbba55b83ad5) - ("go-github-com-google-martian-v3-3.1.0" - ,go-github-com-google-martian-v3-3.1.0) - ("go-github-com-google-go-cmp-0.5.5" - ,go-github-com-google-go-cmp-0.5.5) - ("go-github-com-golang-protobuf-1.5.1" - ,go-github-com-golang-protobuf-1.5.1) - ("go-github-com-golang-mock-1.5.0" ,go-github-com-golang-mock-1.5.0) - ("go-cloud-google-com-go-storage-1.10.0" - ,go-cloud-google-com-go-storage-1.10.0))) - (home-page "https://cloud.google.com/go") - (synopsis "Google Cloud Client Libraries for Go") - (description - "Package cloud is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -of sub-packages. -") - (license license:asl2.0))) - -(define-public go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e - (package - (name "go-github-com-golang-groupcache") - (version "0.0.0-20200121045136-8c9f03a8e57e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/groupcache") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0vjjr79r32icjzlb05wn02k59av7jx0rn1jijml8r4whlg7dnkfh")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/groupcache")) - (home-page "https://github.com/golang/groupcache") - (synopsis "groupcache") - (description - "Package groupcache provides a data loading mechanism with caching -and de-duplication that works across a set of peer processes. -") - (license license:asl2.0))) - -(define-public go-github-com-golang-protobuf-1.4.3 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1kf1d7xmyjvy0z6j5czp6nqyvj9zrk6liv6znif08927xqfrzyln")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.23.0" - ,go-google-golang-org-protobuf-1.23.0) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-github-com-google-go-cmp-0.5.3 - (package - (name "go-github-com-google-go-cmp") - (version "0.5.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "011gdkmyk3w7qkcwljhqak4h5npn4n7fwgx1fwpyx9c7wizvgkm5")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") - (license license:bsd-3))) - -(define-public go-github-com-stretchr-testify-1.6.1 - (package - (name "go-github-com-stretchr-testify") - (version "1.6.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/testify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1yhiqqzjvi63pf01rgzx68gqkkvjx03fvl5wk30br5l6s81s090l")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/testify")) - (propagated-inputs - `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" - ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) - ("go-github-com-stretchr-objx-0.1.0" - ,go-github-com-stretchr-objx-0.1.0) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.0" - ,go-github-com-davecgh-go-spew-1.1.0))) - (home-page "https://github.com/stretchr/testify") - (synopsis "Testify - Thou Shalt Write Tests") - (description - "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -") - (license license:expat))) - -(define-public go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b - (package - (name "go-golang-org-x-net") - (version "0.0.0-20201110031124-69a78807bb2b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "176z5k6jbhr9vf0am2avl1lyqwym3q0mri98yb8r572z33qmcw1d")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) - ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" - ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) - ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" - ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-google-golang-org-grpc-1.33.2 - (package - (name "go-google-golang-org-grpc") - (version "1.33.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "03yz4nlf4kqbnpw48f0mvcb2f5zzy0vjd5i2iw0hrjspd0238fzk")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.25.0" - ,go-google-golang-org-protobuf-1.25.0) - ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" - ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) - ("go-github-com-google-go-cmp-0.5.0" - ,go-github-com-google-go-cmp-0.5.0) - ("go-github-com-golang-protobuf-1.4.1" - ,go-github-com-golang-protobuf-1.4.1) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-envoyproxy-go-control-plane-0.9.4" - ,go-github-com-envoyproxy-go-control-plane-0.9.4) - ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" - ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-go-opencensus-io-0.23.0 - (package - (name "go-go-opencensus-io") - (version "0.23.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/census-instrumentation/opencensus-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0gw4f7inf8y2ik00yfb36xganiq9rl4w2d1a41bsjqsh83ajz2km")))) - (build-system go-build-system) - (arguments '(#:import-path "go.opencensus.io")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) - ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" - ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-google-go-cmp-0.5.3" - ,go-github-com-google-go-cmp-0.5.3) - ("go-github-com-golang-protobuf-1.4.3" - ,go-github-com-golang-protobuf-1.4.3) - ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" - ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e))) - (home-page "https://go.opencensus.io") - (synopsis "OpenCensus Libraries for Go") - (description "Package opencensus contains Go support for OpenCensus. -") - (license license:asl2.0))) - -(define-public go-github-com-golang-mock-1.4.4 - (package - (name "go-github-com-golang-mock") - (version "1.4.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/mock") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1lj0dvd6div4jaq1s0afpwqaq9ah8cxhkq93wii2ably1xmp2l0a")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/mock")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262" - ,go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262))) - (home-page "https://github.com/golang/mock") - (synopsis "gomock") - (description - "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It -integrates well with Go's built-in @code{testing} package, but can be used in other -contexts too.") - (license license:asl2.0))) - -(define-public go-golang-org-x-tools-0.0.0-20200825202427-b303f430e36d - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20200825202427-b303f430e36d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0zzf6ifzjvkwin6m97jp2dndbfac0sbdr84ki79j9srhpqdigl75")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) - ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" - ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) - ("go-golang-org-x-net-0.0.0-20200625001655-4c5254603344" - ,go-golang-org-x-net-0.0.0-20200625001655-4c5254603344) - ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) - ("go-github-com-yuin-goldmark-1.1.32" - ,go-github-com-yuin-goldmark-1.1.32))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20190628185345-da137c7871d7 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190628185345-da137c7871d7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1qsiyr3irmb6ii06hivm9p2c7wqyxczms1a9v1ss5698yjr3fg47")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-github-com-google-martian-v3-3.0.0 - (package - (name "go-github-com-google-martian-v3") - (version "3.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/martian") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ngvs4l6a06s8scnliq9i5pwvwpzfpa5wf9skg0gcvysli1rm3fm")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/martian/v3")) - (propagated-inputs - `(("go-golang-org-x-net-0.0.0-20190628185345-da137c7871d7" - ,go-golang-org-x-net-0.0.0-20190628185345-da137c7871d7))) - (home-page "https://github.com/google/martian") - (synopsis "Martian Proxy") - (description - "Package martian provides an HTTP/1.1 proxy with an API for configurable -request and response modifiers. -") - (license license:asl2.0))) - -(define-public go-github-com-google-pprof-0.0.0-20200708004538-1a94d8640e99 - (package - (name "go-github-com-google-pprof") - (version "0.0.0-20200708004538-1a94d8640e99") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/pprof") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0isfwwan9vimwsfjml0phwrqv6kb83mkmk063dcb81k09gzzs3wy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/pprof")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" - ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) - ("go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6" - ,go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6) - ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" - ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) - ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" - ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) - ("go-github-com-chzyer-logex-1.1.10" - ,go-github-com-chzyer-logex-1.1.10))) - (home-page "https://github.com/google/pprof") - (synopsis "Introduction") - (description - "pprof is a tool for collection, manipulation and visualization -of performance profiles. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-net-0.0.0-20200707034311-ab3426394381 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20200707034311-ab3426394381") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1wr7rnnqp210yykkypinb8ciszx28aq5a3l3dvsv6swzxxngs8zn")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" - ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) - ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" - ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20200729194436-6467de6f59a7 - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20200729194436-6467de6f59a7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "14zpkr5idlx2zbm5dp7gk4afppy7k3j4y68s1qvpgi70yazaxzkd")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) - ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" - ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) - ("go-golang-org-x-net-0.0.0-20200625001655-4c5254603344" - ,go-golang-org-x-net-0.0.0-20200625001655-4c5254603344) - ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) - ("go-github-com-yuin-goldmark-1.1.32" - ,go-github-com-yuin-goldmark-1.1.32))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262 - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20190425150028-36563e24a262") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0lasi96f6a1h11gkm8kl33x03pmxp369wrqq2dg7x7xv9nq76d6g")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" - ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-golang-org-x-text-0.0.0-20170915032832-14c0d48ead0c - (package - (name "go-golang-org-x-text") - (version "0.0.0-20170915032832-14c0d48ead0c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/text") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0y0nrj4hw7vby6m3iqklbf4v7njqlsx7s4pwfkwmvh1ryn1kb7d6")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/text")) - (home-page "https://golang.org/x/text") - (synopsis "Go Text") - (description - "text is a repository of text-related packages related to internationalization -(i18n) and localization (l10n), such as character encodings, text -transformations, and locale-specific text handling. -") - (license license:bsd-3))) - -(define-public go-rsc-io-sampler-1.3.0 - (package - (name "go-rsc-io-sampler") - (version "1.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/rsc/sampler") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0byxk2ynba50py805kcvbvjzh59l1r308i1xgyzpw6lff4xx9xjh")))) - (build-system go-build-system) - (arguments '(#:import-path "rsc.io/sampler")) - (propagated-inputs - `(("go-golang-org-x-text-0.0.0-20170915032832-14c0d48ead0c" - ,go-golang-org-x-text-0.0.0-20170915032832-14c0d48ead0c))) - (home-page "https://rsc.io/sampler") - (synopsis #f) - (description "Package sampler shows simple texts. -") - (license license:bsd-3))) - -(define-public go-rsc-io-quote-v3-3.1.0 - (package - (name "go-rsc-io-quote-v3") - (version "3.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/rsc/quote") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0nvv97hwwrl1mx5gzsbdm1ndnwpg3m7i2jb10ig9wily7zmvki0i")))) - (build-system go-build-system) - (arguments - '(#:import-path "rsc.io/quote/v3" #:unpack-path "rsc.io/quote/v3")) - (propagated-inputs `(("go-rsc-io-sampler-1.3.0" ,go-rsc-io-sampler-1.3.0))) - (home-page "https://rsc.io/quote/v3") - (synopsis #f) - (description "Package quote collects pithy sayings. -") - (license license:bsd-3))) - -(define-public go-github-com-golang-mock-1.4.3 - (package - (name "go-github-com-golang-mock") - (version "1.4.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/mock") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1p37xnja1dgq5ykx24n7wincwz2gahjh71b95p8vpw7ss2g8j8wx")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/mock")) - (propagated-inputs - `(("go-rsc-io-quote-v3-3.1.0" ,go-rsc-io-quote-v3-3.1.0) - ("go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262" - ,go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262))) - (home-page "https://github.com/golang/mock") - (synopsis "gomock") - (description - "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It -integrates well with Go's built-in @code{testing} package, but can be used in other -contexts too.") - (license license:asl2.0))) - -(define-public go-github-com-golang-protobuf-1.3.5 - (package - (name "go-github-com-golang-protobuf") - (version "1.3.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1gkd1942vk9n8kfzdwy1iil6wgvlwjq7a3y5jc49ck4lz9rhmgkq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-github-com-chzyer-logex-1.1.10 - (package - (name "go-github-com-chzyer-logex") - (version "1.1.10") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/chzyer/logex") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "08pbjj3wx9acavlwyr055isa8a5hnmllgdv5k6ra60l5y1brmlq4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/chzyer/logex")) - (home-page "https://github.com/chzyer/logex") - (synopsis #f) - (description #f) - (license #f))) - -(define-public go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e - (package - (name "go-github-com-chzyer-readline") - (version "0.0.0-20180603132655-2972be24d48e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/chzyer/readline") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "104q8dazj8yf6b089jjr82fy9h1g80zyyzvp3g8b44a7d8ngjj6r")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/chzyer/readline")) - (home-page "https://github.com/chzyer/readline") - (synopsis "Guide") - (description - "Readline is a pure go implementation for GNU-Readline kind library. -") - (license license:expat))) - -(define-public go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1 - (package - (name "go-github-com-chzyer-test") - (version "0.0.0-20180213035817-a1ea475d72b1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/chzyer/test") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0rns2aqk22i9xsgyap0pq8wi4cfaxsri4d9q6xxhhyma8jjsnj2k")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/chzyer/test")) - (home-page "https://github.com/chzyer/test") - (synopsis "test") - (description #f) - (license license:expat))) - -(define-public go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6 - (package - (name "go-github-com-ianlancetaylor-demangle") - (version "0.0.0-20181102032728-5e5cf60278f6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/ianlancetaylor/demangle") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fhjk11cip9c3jyj1byz9z77n6n2rlxmyz0xjx1zpn1da3cvri75")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/ianlancetaylor/demangle")) - (home-page "https://github.com/ianlancetaylor/demangle") - (synopsis "github.com/ianlancetaylor/demangle") - (description - "Package demangle defines functions that demangle GCC/LLVM -C++ and Rust symbol names. -This package recognizes names that were mangled according to the C++ ABI -defined at @url{http://codesourcery.com/cxx-abi/,http://codesourcery.com/cxx-abi/} and the Rust ABI -defined at -@url{https://rust-lang.github.io/rfcs/2603-rust-symbol-name-mangling-v0.html,https://rust-lang.github.io/rfcs/2603-rust-symbol-name-mangling-v0.html} -") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20191204072324-ce4227a45e2e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1s43wvqfml6ml5ks7iv2bis9d664g77mq86v7mfmjhn56x856g35")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-google-pprof-0.0.0-20200229191704-1ebb73c60ed3 - (package - (name "go-github-com-google-pprof") - (version "0.0.0-20200229191704-1ebb73c60ed3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/pprof") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1gdi9p4j1zfm5xlm488i5l0q3kk4q6hsmbmlk6p729i0di2n3ifa")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/pprof")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" - ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) - ("go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6" - ,go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6) - ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" - ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) - ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" - ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) - ("go-github-com-chzyer-logex-1.1.10" - ,go-github-com-chzyer-logex-1.1.10))) - (home-page "https://github.com/google/pprof") - (synopsis "Introduction") - (description - "pprof is a tool for collection, manipulation and visualization -of performance profiles. -") - (license license:asl2.0))) - -(define-public go-github-com-jstemmer-go-junit-report-0.9.1 - (package - (name "go-github-com-jstemmer-go-junit-report") - (version "0.9.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/jstemmer/go-junit-report") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1knip80yir1cdsjlb3rzy0a4w3kl4ljpiciaz6hjzwqlfhnv7bkw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/jstemmer/go-junit-report")) - (home-page "https://github.com/jstemmer/go-junit-report") - (synopsis "go-junit-report") - (description - "Converts @code{go test} output to an xml report, suitable for applications that -expect junit xml reports (e.g. @url{http://jenkins-ci.org,Jenkins}).") - (license license:expat))) - -(define-public go-golang-org-x-net-0.0.0-20200324143707-d3edc9973b7e - (package - (name "go-golang-org-x-net") - (version "0.0.0-20200324143707-d3edc9973b7e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12zbjwcsh9b0lwycqlkrnbyg5a6a9dzgj8hhgq399bdda5bd97y7")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" - ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-github-com-golang-mock-1.2.0 - (package - (name "go-github-com-golang-mock") - (version "1.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/mock") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12ddj2g8ab87id6n2n67vnbhq6p8dvgsq1pzpqfriym4dk8w54fg")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/mock")) - (home-page "https://github.com/golang/mock") - (synopsis "gomock") - (description - "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It -integrates well with Go's built-in @code{testing} package, but can be used in other -contexts too.") - (license license:asl2.0))) - -(define-public go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c - (package - (name "go-github-com-google-btree") - (version "0.0.0-20180813153112-4030bb1f1f0c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/btree") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ba430m9fbnagacp57krgidsyrgp3ycw5r7dj71brgp5r52g82p6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/btree")) - (home-page "https://github.com/google/btree") - (synopsis "BTree implementation for Go") - (description - "Package btree implements in-memory B-Trees of arbitrary degree. -") - (license license:asl2.0))) - -(define-public go-github-com-google-martian-2.1.0+incompatible - (package - (name "go-github-com-google-martian") - (version "2.1.0+incompatible") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/martian") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "197hil6vrjk50b9wvwyzf61csid83whsjj6ik8mc9r2lryxlyyrp")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/martian")) - (home-page "https://github.com/google/martian") - (synopsis "Martian Proxy") - (description - "Package martian provides an HTTP/1.1 proxy with an API for configurable -request and response modifiers. -") - (license license:asl2.0))) - -(define-public go-github-com-google-pprof-0.0.0-20181206194817-3ea8567a2e57 - (package - (name "go-github-com-google-pprof") - (version "0.0.0-20181206194817-3ea8567a2e57") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/pprof") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "09rhjn3ms0a72dw0yzbp237p7yhqma772zspddn6mgkh3gi3kn4c")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/pprof")) - (home-page "https://github.com/google/pprof") - (synopsis "Introduction") - (description - "pprof is a tool for collection, manipulation and visualization -of performance profiles. -") - (license license:asl2.0))) - -(define-public go-github-com-googleapis-gax-go-v2-2.0.4 - (package - (name "go-github-com-googleapis-gax-go-v2") - (version "2.0.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/gax-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1iwnm6ky1x53lgs44mw3hpdkjzrm5qd0kfs50m0qcq2ml5m1cwdm")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/googleapis/gax-go/v2")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.19.0" - ,go-google-golang-org-grpc-1.19.0))) - (home-page "https://github.com/googleapis/gax-go") - (synopsis #f) - (description - "Package gax contains a set of modules which aid the development of APIs -for clients and servers based on gRPC and Google API conventions. -") - (license license:bsd-3))) - -(define-public go-github-com-jstemmer-go-junit-report-0.0.0-20190106144839-af01ea7f8024 - (package - (name "go-github-com-jstemmer-go-junit-report") - (version "0.0.0-20190106144839-af01ea7f8024") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/jstemmer/go-junit-report") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1lp3n94ris12hac02wi31f3whs88lcrzwgdg43a5j6cafg9p1d0s")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/jstemmer/go-junit-report")) - (home-page "https://github.com/jstemmer/go-junit-report") - (synopsis "go-junit-report") - (description - "Converts @code{go test} output to an xml report, suitable for applications that -expect junit xml reports (e.g. @url{http://jenkins-ci.org,Jenkins}).") - (license license:expat))) - -(define-public go-golang-org-x-text-0.3.1-0.20180807135948-17ff2d5776d2 - (package - (name "go-golang-org-x-text") - (version "0.3.1-0.20180807135948-17ff2d5776d2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/text") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1rrh2mnmyxr45nsvy42zq3w3ly6gw6rl993knwvf1w71kyv0jjnj")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/text")) - (home-page "https://golang.org/x/text") - (synopsis "Go Text") - (description - "text is a repository of text-related packages related to internationalization -(i18n) and localization (l10n), such as character encodings, text -transformations, and locale-specific text handling. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-time-0.0.0-20181108054448-85acf8d2951c - (package - (name "go-golang-org-x-time") - (version "0.0.0-20181108054448-85acf8d2951c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/time") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0yqnxsrarjk4qkda8kcxzmk7y90kkkxzx9iwryzrk7bzs87ky3xc")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/time")) - (home-page "https://golang.org/x/time") - (synopsis "Go Time") - (description "This repository provides supplementary Go time packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f - (package - (name "go-golang-org-x-lint") - (version "0.0.0-20190301231843-5614ed5bae6f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/lint") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0fzn0zjv0x92xvfdq3a0v9w5sgkhr7hxkfy9zaqi8i57807z8bnx")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/lint")) - (home-page "https://golang.org/x/lint") - (synopsis "Installation") - (description "Package lint contains a linter for Go source code. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421 - (package - (name "go-golang-org-x-oauth2") - (version "0.0.0-20190226205417-e64efc72b421") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/oauth2") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0djvwz2avx7knsjbl434vw1wqbrg53xp1kh599gfixn5icrggz4m")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/oauth2")) - (propagated-inputs - `(("go-google-golang-org-appengine-1.4.0" - ,go-google-golang-org-appengine-1.4.0) - ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" - ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) - ("go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e" - ,go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e) - ("go-cloud-google-com-go-0.34.0" ,go-cloud-google-com-go-0.34.0))) - (home-page "https://golang.org/x/oauth2") - (synopsis "OAuth2 for Go") - (description - "Package oauth2 provides support for making -OAuth2 authorized and authenticated HTTP requests, -as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -It can additionally grant authorization with Bearer JWT. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138 - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20190312170243-e65039ee4138") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0c094599cf70wdrms49a3879qkq122pqlp2av444gs2pvc8apdcx")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-google-golang-org-api-0.4.0 - (package - (name "go-google-golang-org-api") - (version "0.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-api-go-client") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1hzgrw5wasmcjlqpxsmryddzzw4cwyzf2vx14i9z51v1plwssijm")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/api")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" - ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) - ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) - ("go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19" - ,go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19) - ("go-google-golang-org-appengine-1.4.0" - ,go-google-golang-org-appengine-1.4.0) - ("go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138" - ,go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138) - ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" - ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) - ("go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421" - ,go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421) - ("go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f" - ,go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f) - ("go-go-opencensus-io-0.21.0" ,go-go-opencensus-io-0.21.0) - ("go-github-com-google-go-cmp-0.2.0" - ,go-github-com-google-go-cmp-0.2.0))) - (home-page "https://google.golang.org/api") - (synopsis "Google APIs Client Library for Go") - (description - "Package api is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of -sub-packages. -") - (license license:bsd-3))) - -(define-public go-google-golang-org-genproto-0.0.0-20190418145605-e7d98fc518a7 - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20190418145605-e7d98fc518a7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1cnavkyawwvfc5yl097ygnfy1ac69v4zc02gdfnq1bvgcvgmvnbi")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" - ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) - ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) - ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" - ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) - ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" - ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) - ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" - ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd) - ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" - ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) - ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" - ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-honnef-co-go-tools-0.0.0-20190106161140-3f1c8253044a - (package - (name "go-honnef-co-go-tools") - (version "0.0.0-20190106161140-3f1c8253044a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/dominikh/go-tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0d3vgh0fgfj1z7i648g1s6x2pwxd07sxfjwg1xn3yagr9h06jh3h")))) - (build-system go-build-system) - (arguments '(#:import-path "honnef.co/go/tools")) - (home-page "https://honnef.co/go/tools") - (synopsis "Documentation") - (description - "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, -offers simplifications, and enforces style rules.") - (license license:expat))) - -(define-public go-cloud-google-com-go-0.38.0 - (package - (name "go-cloud-google-com-go") - (version "0.38.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-cloud-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0n6n13b7lri2fmc4bn4ifszyawj31dpbzvyv0xafsf81440z8cyh")))) - (build-system go-build-system) - (arguments '(#:import-path "cloud.google.com/go")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190106161140-3f1c8253044a" - ,go-honnef-co-go-tools-0.0.0-20190106161140-3f1c8253044a) - ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) - ("go-google-golang-org-genproto-0.0.0-20190418145605-e7d98fc518a7" - ,go-google-golang-org-genproto-0.0.0-20190418145605-e7d98fc518a7) - ("go-google-golang-org-api-0.4.0" ,go-google-golang-org-api-0.4.0) - ("go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138" - ,go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138) - ("go-golang-org-x-time-0.0.0-20181108054448-85acf8d2951c" - ,go-golang-org-x-time-0.0.0-20181108054448-85acf8d2951c) - ("go-golang-org-x-text-0.3.1-0.20180807135948-17ff2d5776d2" - ,go-golang-org-x-text-0.3.1-0.20180807135948-17ff2d5776d2) - ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" - ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) - ("go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421" - ,go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421) - ("go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f" - ,go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f) - ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" - ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) - ("go-go-opencensus-io-0.21.0" ,go-go-opencensus-io-0.21.0) - ("go-github-com-jstemmer-go-junit-report-0.0.0-20190106144839-af01ea7f8024" - ,go-github-com-jstemmer-go-junit-report-0.0.0-20190106144839-af01ea7f8024) - ("go-github-com-googleapis-gax-go-v2-2.0.4" - ,go-github-com-googleapis-gax-go-v2-2.0.4) - ("go-github-com-google-pprof-0.0.0-20181206194817-3ea8567a2e57" - ,go-github-com-google-pprof-0.0.0-20181206194817-3ea8567a2e57) - ("go-github-com-google-martian-2.1.0+incompatible" - ,go-github-com-google-martian-2.1.0+incompatible) - ("go-github-com-google-go-cmp-0.2.0" - ,go-github-com-google-go-cmp-0.2.0) - ("go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c" - ,go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0) - ("go-github-com-golang-mock-1.2.0" ,go-github-com-golang-mock-1.2.0))) - (home-page "https://cloud.google.com/go") - (synopsis "Google Cloud Client Libraries for Go") - (description - "Package cloud is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -of sub-packages. -") - (license license:asl2.0))) - -(define-public go-github-com-hashicorp-golang-lru-0.5.1 - (package - (name "go-github-com-hashicorp-golang-lru") - (version "0.5.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/golang-lru") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "13f870cvk161bzjj6x41l45r5x9i1z9r2ymwmvm7768kg08zznpy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/golang-lru")) - (home-page "https://github.com/hashicorp/golang-lru") - (synopsis "golang-lru") - (description - "Package lru provides three different LRU caches of varying sophistication. -") - (license license:mpl2.0))) - -(define-public go-github-com-hashicorp-golang-lru-0.5.0 - (package - (name "go-github-com-hashicorp-golang-lru") - (version "0.5.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/golang-lru") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12k2cp2k615fjvfa5hyb9k2alian77wivds8s65diwshwv41939f")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/golang-lru")) - (home-page "https://github.com/hashicorp/golang-lru") - (synopsis "golang-lru") - (description - "Package lru provides three different LRU caches of varying sophistication. -") - (license license:mpl2.0))) - -(define-public go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19 - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20190307195333-5fe7a883aa19") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0qjkwig0r42q0j2qv57s4ahsgmmp41dz3ih3rnaqg0619n5w7lbs")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" - ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) - ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) - ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" - ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) - ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" - ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) - ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" - ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd) - ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" - ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) - ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" - ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-go-opencensus-io-0.21.0 - (package - (name "go-go-opencensus-io") - (version "0.21.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/census-instrumentation/opencensus-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "14s0a12xdzjvad0dgksgv8m3hh7nc585abvjkvyk6r67a29lxj6x")))) - (build-system go-build-system) - (arguments '(#:import-path "go.opencensus.io")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) - ("go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19" - ,go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-github-com-hashicorp-golang-lru-0.5.0" - ,go-github-com-hashicorp-golang-lru-0.5.0) - ("go-github-com-google-go-cmp-0.2.0" - ,go-github-com-google-go-cmp-0.2.0) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0))) - (home-page "https://go.opencensus.io") - (synopsis "OpenCensus Libraries for Go") - (description "Package opencensus contains Go support for OpenCensus. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422 - (package - (name "go-golang-org-x-lint") - (version "0.0.0-20190409202823-959b441ac422") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/lint") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1mgcv5f00pkzsbwnq2y7vqvd1b4lr5a3s47cphh2qv4indfk7pck")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/lint")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" - ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd))) - (home-page "https://golang.org/x/lint") - (synopsis "Installation") - (description "Package lint contains a linter for Go source code. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20190503192946-f4e77d36d62c - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190503192946-f4e77d36d62c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0avjnglqqg9ya0cbhp23m4namykii219kxjywxn4cd7pfcc5arha")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45 - (package - (name "go-golang-org-x-oauth2") - (version "0.0.0-20190604053449-0f29369cfe45") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/oauth2") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "06jwpvx0x2gjn2y959drbcir5kd7vg87k0r1216abk6rrdzzrzi2")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/oauth2")) - (propagated-inputs - `(("go-google-golang-org-appengine-1.4.0" - ,go-google-golang-org-appengine-1.4.0) - ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" - ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) - ("go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e" - ,go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e) - ("go-cloud-google-com-go-0.34.0" ,go-cloud-google-com-go-0.34.0))) - (home-page "https://golang.org/x/oauth2") - (synopsis "OAuth2 for Go") - (description - "Package oauth2 provides support for making -OAuth2 authorized and authenticated HTTP requests, -as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -It can additionally grant authorization with Bearer JWT. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190507160741-ecd444e8653b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1vhld4948mzfnlgf20id29mv1bwpk9a3xlbw1mbjzxzxxdv1jds2")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-google-golang-org-appengine-1.5.0 - (package - (name "go-google-golang-org-appengine") - (version "1.5.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/appengine") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0l7mkdnwhidv8m686x432vmx8z5nqcrr9f46ddgvrxbh4wvyfcll")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/appengine")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225" - ,go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0))) - (home-page "https://google.golang.org/appengine") - (synopsis "Go App Engine packages") - (description - "Package appengine provides basic functionality for Google App Engine. -") - (license license:asl2.0))) - -(define-public go-google-golang-org-api-0.20.0 - (package - (name "go-google-golang-org-api") - (version "0.20.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-api-go-client") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "13syr1x33k6mrn5w6l4sgdbzn368w3m60vf6kk2j10fwa45125rg")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/api")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" - ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" - ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) - ("go-google-golang-org-appengine-1.5.0" - ,go-google-golang-org-appengine-1.5.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) - ("go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b" - ,go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b) - ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" - ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) - ("go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45" - ,go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45) - ("go-golang-org-x-net-0.0.0-20190503192946-f4e77d36d62c" - ,go-golang-org-x-net-0.0.0-20190503192946-f4e77d36d62c) - ("go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422" - ,go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422) - ("go-go-opencensus-io-0.21.0" ,go-go-opencensus-io-0.21.0) - ("go-github-com-hashicorp-golang-lru-0.5.1" - ,go-github-com-hashicorp-golang-lru-0.5.1) - ("go-github-com-googleapis-gax-go-v2-2.0.5" - ,go-github-com-googleapis-gax-go-v2-2.0.5) - ("go-github-com-google-go-cmp-0.3.0" - ,go-github-com-google-go-cmp-0.3.0) - ("go-cloud-google-com-go-0.38.0" ,go-cloud-google-com-go-0.38.0))) - (home-page "https://google.golang.org/api") - (synopsis "Google APIs Client Library for Go") - (description - "Package api is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of -sub-packages. -") - (license license:bsd-3))) - -(define-public go-github-com-google-renameio-0.1.0 - (package - (name "go-github-com-google-renameio") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/renameio") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ki2x5a9nrj17sn092d6n4zr29lfg5ydv4xz5cp58z6cw8ip43jx")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/renameio")) - (home-page "https://github.com/google/renameio") - (synopsis "Atomicity vs durability") - (description - "Package renameio provides a way to atomically create or replace a file or -symbolic link. -") - (license license:asl2.0))) - -(define-public go-github-com-kisielk-gotool-1.0.0 - (package - (name "go-github-com-kisielk-gotool") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kisielk/gotool") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "14af2pa0ssyp8bp2mvdw184s5wcysk6akil3wzxmr05wwy951iwn")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kisielk/gotool")) - (home-page "https://github.com/kisielk/gotool") - (synopsis "gotool") - (description - "Package gotool contains utility functions used to implement the standard -\"cmd/go\" tool, provided as a convenience to developers who want to write -tools with similar semantics. -") - (license license:expat))) - -(define-public go-github-com-kr-pty-1.1.1 - (package - (name "go-github-com-kr-pty") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/pty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0383f0mb9kqjvncqrfpidsf8y6ns5zlrc91c6a74xpyxjwvzl2y6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/pty")) - (home-page "https://github.com/kr/pty") - (synopsis "pty") - (description - "Package pty is a wrapper for github.com/creack/pty, which provides -functions for working with Unix terminals. -") - (license license:expat))) - -(define-public go-github-com-kr-text-0.1.0 - (package - (name "go-github-com-kr-text") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1gm5bsl01apvc84bw06hasawyqm4q84vx1pm32wr9jnd7a8vjgj1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/text")) - (propagated-inputs - `(("go-github-com-kr-pty-1.1.1" ,go-github-com-kr-pty-1.1.1))) - (home-page "https://github.com/kr/text") - (synopsis #f) - (description - "Package text provides rudimentary functions for manipulating text in -paragraphs. -") - (license license:expat))) - -(define-public go-github-com-kr-pretty-0.1.0 - (package - (name "go-github-com-kr-pretty") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/pretty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18m4pwg2abd0j9cn5v3k2ksk9ig4vlwxmlw9rrglanziv9l967qp")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/pretty")) - (propagated-inputs - `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) - (home-page "https://github.com/kr/pretty") - (synopsis #f) - (description - "Package pretty provides pretty-printing for Go values. This is -useful during debugging, to avoid wrapping long output lines in -the terminal. -") - (license license:expat))) - -(define-public go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127 - (package - (name "go-gopkg-in-check-v1") - (version "1.0.0-20180628173108-788fd7840127") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/check.v1") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0v3bim0j375z81zrpr5qv42knqs0y2qv2vkjiqi5axvb78slki1a")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) - (home-page "https://gopkg.in/check.v1") - (synopsis "Instructions") - (description - "Package check is a rich testing extension for Go's testing package. -") - (license license:bsd-2))) - -(define-public go-gopkg-in-errgo-v2-2.1.0 - (package - (name "go-gopkg-in-errgo-v2") - (version "2.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/errgo.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "065mbihiy7q67wnql0bzl9y1kkvck5ivra68254zbih52jxwrgr2")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/errgo.v2" #:unpack-path "gopkg.in/errgo.v2")) - (propagated-inputs - `(("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" - ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) - ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0))) - (home-page "https://gopkg.in/errgo.v2") - (synopsis #f) - (description - "Package errgo provides some primitives for error creation and handling.") - (license license:bsd-3))) - -(define-public go-github-com-rogpeppe-go-internal-1.3.0 - (package - (name "go-github-com-rogpeppe-go-internal") - (version "1.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/rogpeppe/go-internal") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0mcdh1licgnnahwml9y2iq6xy5x9xmjw5frcnds2s3wpjyqrl216")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/rogpeppe/go-internal")) - (propagated-inputs - `(("go-gopkg-in-errgo-v2-2.1.0" ,go-gopkg-in-errgo-v2-2.1.0))) - (home-page "https://github.com/rogpeppe/go-internal") - (synopsis #f) - (description - "This repository factors out an opinionated selection of internal packages and functionality from the Go standard -library. Currently this consists mostly of packages and testing code from within the Go tool implementation.") - (license license:bsd-3))) - -(define-public go-golang-org-x-crypto-0.0.0-20190510104115-cbcb75029529 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20190510104115-cbcb75029529") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12831ga1gq04a3jbbcmww7kaqfdfgp7cdv2fj9aqidz8h52ajdmh")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" - ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) - ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" - ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-mod-0.0.0-20190513183733-4bf6d317e70e - (package - (name "go-golang-org-x-mod") - (version "0.0.0-20190513183733-4bf6d317e70e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/mod") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19lg1ly3j31anx92p0hynic1gjk417wwxphfdrb2cq1c19kj3r17")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/mod")) - (propagated-inputs - `(("go-golang-org-x-crypto-0.0.0-20190510104115-cbcb75029529" - ,go-golang-org-x-crypto-0.0.0-20190510104115-cbcb75029529))) - (home-page "https://golang.org/x/mod") - (synopsis "mod") - (description - "This repository holds packages for writing tools -that work directly with Go module mechanics. -That is, it is for direct manipulation of Go modules themselves.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20191130070609-6e064ea0cf2d - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20191130070609-6e064ea0cf2d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1nbki367xspsa37j6276f5q2gv31vfjpb52axn3p3ymz548my75d")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7" - ,go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7) - ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" - ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) - ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" - ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-honnef-co-go-tools-0.0.1-2020.1.3 - (package - (name "go-honnef-co-go-tools") - (version "0.0.1-2020.1.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/dominikh/go-tools") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0pvi1mzhy6zgx4zfgdypbl4zhvgg11hl5qv7blf2qs0a96j2djhf")))) - (build-system go-build-system) - (arguments '(#:import-path "honnef.co/go/tools")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20191130070609-6e064ea0cf2d" - ,go-golang-org-x-tools-0.0.0-20191130070609-6e064ea0cf2d) - ("go-golang-org-x-mod-0.0.0-20190513183733-4bf6d317e70e" - ,go-golang-org-x-mod-0.0.0-20190513183733-4bf6d317e70e) - ("go-github-com-rogpeppe-go-internal-1.3.0" - ,go-github-com-rogpeppe-go-internal-1.3.0) - ("go-github-com-kisielk-gotool-1.0.0" - ,go-github-com-kisielk-gotool-1.0.0) - ("go-github-com-google-renameio-0.1.0" - ,go-github-com-google-renameio-0.1.0) - ("go-github-com-burntsushi-toml-0.3.1" - ,go-github-com-burntsushi-toml-0.3.1))) - (home-page "https://honnef.co/go/tools") - (synopsis "Documentation") - (description - "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, -offers simplifications, and enforces style rules.") - (license license:expat))) - -(define-public go-cloud-google-com-go-0.56.0 - (package - (name "go-cloud-google-com-go") - (version "0.56.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-cloud-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1bpx84q7byxr5rp197qcg3pl56acs8v1q555frxgcqygxwjacszf")))) - (build-system go-build-system) - (arguments '(#:import-path "cloud.google.com/go")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.1-2020.1.3" - ,go-honnef-co-go-tools-0.0.1-2020.1.3) - ("go-google-golang-org-grpc-1.28.0" ,go-google-golang-org-grpc-1.28.0) - ("go-google-golang-org-genproto-0.0.0-20200331122359-1ee6d9798940" - ,go-google-golang-org-genproto-0.0.0-20200331122359-1ee6d9798940) - ("go-google-golang-org-api-0.20.0" ,go-google-golang-org-api-0.20.0) - ("go-golang-org-x-tools-0.0.0-20200331025713-a30bf2db82d4" - ,go-golang-org-x-tools-0.0.0-20200331025713-a30bf2db82d4) - ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) - ("go-golang-org-x-sys-0.0.0-20200331124033-c3d80250170d" - ,go-golang-org-x-sys-0.0.0-20200331124033-c3d80250170d) - ("go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a" - ,go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a) - ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" - ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) - ("go-golang-org-x-net-0.0.0-20200324143707-d3edc9973b7e" - ,go-golang-org-x-net-0.0.0-20200324143707-d3edc9973b7e) - ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" - ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) - ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) - ("go-github-com-jstemmer-go-junit-report-0.9.1" - ,go-github-com-jstemmer-go-junit-report-0.9.1) - ("go-github-com-googleapis-gax-go-v2-2.0.5" - ,go-github-com-googleapis-gax-go-v2-2.0.5) - ("go-github-com-google-pprof-0.0.0-20200229191704-1ebb73c60ed3" - ,go-github-com-google-pprof-0.0.0-20200229191704-1ebb73c60ed3) - ("go-github-com-google-martian-2.1.0+incompatible" - ,go-github-com-google-martian-2.1.0+incompatible) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.3.5" - ,go-github-com-golang-protobuf-1.3.5) - ("go-github-com-golang-mock-1.4.3" ,go-github-com-golang-mock-1.4.3) - ("go-cloud-google-com-go-storage-1.6.0" - ,go-cloud-google-com-go-storage-1.6.0) - ("go-cloud-google-com-go-pubsub-1.2.0" - ,go-cloud-google-com-go-pubsub-1.2.0) - ("go-cloud-google-com-go-datastore-1.1.0" - ,go-cloud-google-com-go-datastore-1.1.0) - ("go-cloud-google-com-go-bigquery-1.4.0" - ,go-cloud-google-com-go-bigquery-1.4.0))) - (home-page "https://cloud.google.com/go") - (synopsis "Google Cloud Client Libraries for Go") - (description - "Package cloud is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -of sub-packages. -") - (license license:asl2.0))) - -(define-public go-go-opencensus-io-0.22.3 - (package - (name "go-go-opencensus-io") - (version "0.22.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/census-instrumentation/opencensus-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0xj16iq5jp26hi2py7lsd8cvqh651fgn39y05gzvjdi88d9xd3nw")))) - (build-system go-build-system) - (arguments '(#:import-path "go.opencensus.io")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.20.1" ,go-google-golang-org-grpc-1.20.1) - ("go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb" - ,go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb) - ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) - ("go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd" - ,go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd) - ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" - ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) - ("go-github-com-stretchr-testify-1.4.0" - ,go-github-com-stretchr-testify-1.4.0) - ("go-github-com-google-go-cmp-0.3.0" - ,go-github-com-google-go-cmp-0.3.0) - ("go-github-com-golang-protobuf-1.3.1" - ,go-github-com-golang-protobuf-1.3.1) - ("go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6" - ,go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6))) - (home-page "https://go.opencensus.io") - (synopsis "OpenCensus Libraries for Go") - (description "Package opencensus contains Go support for OpenCensus. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20200317015054-43a5402ce75a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0j6zrrb81qjr1926kkwmn0di9a0jn8qyjd9dw614rfkihxgq1vsm")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the -ones provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20200331124033-c3d80250170d - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200331124033-c3d80250170d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1nswjhkg7yixla0b3d8xwzf94rawwyjrxipay3ffdvm426n0ld42")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-yuin-goldmark-1.1.25 - (package - (name "go-github-com-yuin-goldmark") - (version "1.1.25") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/yuin/goldmark") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0cr3mk8pr7vsyisgrvln5ailnnn9xhardcy8mkshybk5c3n1kw5k")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/yuin/goldmark")) - (home-page "https://github.com/yuin/goldmark") - (synopsis "goldmark") - (description - "Package goldmark implements functions to convert markdown text to a desired format. -") - (license license:expat))) - -(define-public go-golang-org-x-mod-0.2.0 - (package - (name "go-golang-org-x-mod") - (version "0.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/mod") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fp6885dclq77mh73v7i54v2b9llpv4di193zc8vmsbbkkc483cl")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/mod")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" - ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) - ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" - ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) - ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" - ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) - (home-page "https://golang.org/x/mod") - (synopsis "mod") - (description - "This repository holds packages for writing tools -that work directly with Go module mechanics. -That is, it is for direct manipulation of Go modules themselves.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b - (package - (name "go-golang-org-x-net") - (version "0.0.0-20200226121028-0de0cce0169b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1db7s5kbzyh2zd5lpv05n7hp8wbwdvgk0wpiwrlnig94mkr0y5aq")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20190911185100-cd5d95a43a6e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1nqkyz2y1qvqcma52ijh02s8aiqmkfb95j08f6zcjhbga3ds6hds")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the -ones provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20200331025713-a30bf2db82d4 - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20200331025713-a30bf2db82d4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1rb488ydwi24zmd1zvsv8k8srs3q6xnqqfdar538hssqgljyvp7l")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) - ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" - ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) - ("go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b" - ,go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b) - ("go-golang-org-x-mod-0.2.0" ,go-golang-org-x-mod-0.2.0) - ("go-github-com-yuin-goldmark-1.1.25" - ,go-github-com-yuin-goldmark-1.1.25))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-google-golang-org-appengine-1.6.5 - (package - (name "go-google-golang-org-appengine") - (version "1.6.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/appengine") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "05hbq4cs7bqw0zl17bx8rzdkszid3nyl92100scg3jjrg70dhm7w")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/appengine")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) - ("go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65" - ,go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65) - ("go-github-com-golang-protobuf-1.3.1" - ,go-github-com-golang-protobuf-1.3.1))) - (home-page "https://google.golang.org/appengine") - (synopsis "Go App Engine packages") - (description - "Package appengine provides basic functionality for Google App Engine. -") - (license license:asl2.0))) - -(define-public go-google-golang-org-genproto-0.0.0-20200331122359-1ee6d9798940 - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20200331122359-1ee6d9798940") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1zsp55d7xjc0b3yw5jjpvbsc0gkji1c1j2vxmcwm89dh26rz4jwd")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" - ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-golang-protobuf-1.3.3" - ,go-github-com-golang-protobuf-1.3.3))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-google-golang-org-grpc-1.28.0 - (package - (name "go-google-golang-org-grpc") - (version "1.28.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1m36rg3w2mf4r3383yf0r1pjrz890mdw506h1lpm6bkc8w3kyqz3")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" - ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-github-com-google-go-cmp-0.2.0" - ,go-github-com-google-go-cmp-0.2.0) - ("go-github-com-golang-protobuf-1.3.3" - ,go-github-com-golang-protobuf-1.3.3) - ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" - ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) - ("go-github-com-envoyproxy-go-control-plane-0.9.4" - ,go-github-com-envoyproxy-go-control-plane-0.9.4))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-google-golang-org-api-0.29.0 - (package - (name "go-google-golang-org-api") - (version "0.29.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-api-go-client") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1y6izqcc6krill33pb57fbgbs7ni3jxyf3knm5jkl4qydsj9303h")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/api")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.28.0" ,go-google-golang-org-grpc-1.28.0) - ("go-google-golang-org-genproto-0.0.0-20200331122359-1ee6d9798940" - ,go-google-golang-org-genproto-0.0.0-20200331122359-1ee6d9798940) - ("go-google-golang-org-appengine-1.6.5" - ,go-google-golang-org-appengine-1.6.5) - ("go-golang-org-x-tools-0.0.0-20200331025713-a30bf2db82d4" - ,go-golang-org-x-tools-0.0.0-20200331025713-a30bf2db82d4) - ("go-golang-org-x-sys-0.0.0-20200331124033-c3d80250170d" - ,go-golang-org-x-sys-0.0.0-20200331124033-c3d80250170d) - ("go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a" - ,go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a) - ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" - ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) - ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" - ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) - ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) - ("go-github-com-googleapis-gax-go-v2-2.0.5" - ,go-github-com-googleapis-gax-go-v2-2.0.5) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-cloud-google-com-go-0.56.0" ,go-cloud-google-com-go-0.56.0))) - (home-page "https://google.golang.org/api") - (synopsis "Google APIs Client Library for Go") - (description - "Package api is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of -sub-packages. -") - (license license:bsd-3))) - -(define-public go-google-golang-org-genproto-0.0.0-20200729003335-053ba62fc06f - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20200729003335-053ba62fc06f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1h34qgr4lqy1l0niay3gzqh6pc63y2xh1mmp8757y8jsrdz1s5fv")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.24.0" - ,go-google-golang-org-protobuf-1.24.0) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-golang-protobuf-1.4.1" - ,go-github-com-golang-protobuf-1.4.1))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-google-golang-org-grpc-1.30.0 - (package - (name "go-google-golang-org-grpc") - (version "1.30.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "05pb9xrxd7kpbi8zzby90f87b6sxq65nmpgqx5h3255whmmpzbi9")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" - ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.3.3" - ,go-github-com-golang-protobuf-1.3.3) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-envoyproxy-go-control-plane-0.9.4" - ,go-github-com-envoyproxy-go-control-plane-0.9.4) - ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" - ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-cloud-google-com-go-0.62.0 - (package - (name "go-cloud-google-com-go") - (version "0.62.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-cloud-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "00x1nlq4fvvxrwx24firscav511qwck3zl6ghs9p6zzzixla8r5h")))) - (build-system go-build-system) - (arguments '(#:import-path "cloud.google.com/go")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.25.0" - ,go-google-golang-org-protobuf-1.25.0) - ("go-google-golang-org-grpc-1.30.0" ,go-google-golang-org-grpc-1.30.0) - ("go-google-golang-org-genproto-0.0.0-20200729003335-053ba62fc06f" - ,go-google-golang-org-genproto-0.0.0-20200729003335-053ba62fc06f) - ("go-google-golang-org-api-0.29.0" ,go-google-golang-org-api-0.29.0) - ("go-golang-org-x-tools-0.0.0-20200729194436-6467de6f59a7" - ,go-golang-org-x-tools-0.0.0-20200729194436-6467de6f59a7) - ("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) - ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" - ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) - ("go-golang-org-x-net-0.0.0-20200707034311-ab3426394381" - ,go-golang-org-x-net-0.0.0-20200707034311-ab3426394381) - ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" - ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) - ("go-go-opencensus-io-0.22.4" ,go-go-opencensus-io-0.22.4) - ("go-github-com-jstemmer-go-junit-report-0.9.1" - ,go-github-com-jstemmer-go-junit-report-0.9.1) - ("go-github-com-googleapis-gax-go-v2-2.0.5" - ,go-github-com-googleapis-gax-go-v2-2.0.5) - ("go-github-com-google-pprof-0.0.0-20200708004538-1a94d8640e99" - ,go-github-com-google-pprof-0.0.0-20200708004538-1a94d8640e99) - ("go-github-com-google-martian-v3-3.0.0" - ,go-github-com-google-martian-v3-3.0.0) - ("go-github-com-google-go-cmp-0.5.1" - ,go-github-com-google-go-cmp-0.5.1) - ("go-github-com-golang-protobuf-1.4.2" - ,go-github-com-golang-protobuf-1.4.2) - ("go-github-com-golang-mock-1.4.3" ,go-github-com-golang-mock-1.4.3) - ("go-cloud-google-com-go-storage-1.10.0" - ,go-cloud-google-com-go-storage-1.10.0))) - (home-page "https://cloud.google.com/go") - (synopsis "Google Cloud Client Libraries for Go") - (description - "Package cloud is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -of sub-packages. -") - (license license:asl2.0))) - -(define-public go-github-com-google-go-cmp-0.5.1 - (package - (name "go-github-com-google-go-cmp") - (version "0.5.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1wjdid59brciv09agxgmqac5k9ywg63nhzb0yi9anmqpl38gps0p")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") - (license license:bsd-3))) - -(define-public go-github-com-googleapis-gax-go-v2-2.0.5 - (package - (name "go-github-com-googleapis-gax-go-v2") - (version "2.0.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/gax-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1lxawwngv6miaqd25s3ba0didfzylbwisd2nz7r4gmbmin6jsjrx")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/googleapis/gax-go/v2")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.19.0" - ,go-google-golang-org-grpc-1.19.0))) - (home-page "https://github.com/googleapis/gax-go") - (synopsis #f) - (description - "Package gax contains a set of modules which aid the development of APIs -for clients and servers based on gRPC and Google API conventions. -") - (license license:bsd-3))) - -(define-public go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6 - (package - (name "go-github-com-golang-groupcache") - (version "0.0.0-20190702054246-869f871628b6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/groupcache") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0r4nk8129bvx50qb4xzjaay39b2h6k7cbdqqzdlanmc82ygczsbw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/groupcache")) - (home-page "https://github.com/golang/groupcache") - (synopsis "groupcache") - (description - "Package groupcache provides a data loading mechanism with caching -and de-duplication that works across a set of peer processes. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190502145724-3ef323f4f1fd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "15iw4gjvrnrx98rlny1qcaprp3577rh2b77byb38dr6m3q42rvc6")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6 - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20190227155943-e225da77a7e6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0bh3583smcfw6jw3w6lp0za93rz7hpxfdz8vhxng75b7a6vdlw4p")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the -ones provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20190425155659-357c62f0e4bb") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1h1a0wys83cc86s4w2hqmz78ixijw8f7qchmiwdv5xjvpg0i27c2")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" - ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) - ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) - ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" - ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) - ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" - ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) - ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" - ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd) - ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" - ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) - ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" - ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-google-golang-org-grpc-1.20.1 - (package - (name "go-google-golang-org-grpc") - (version "1.20.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0rj3fs6jillapiwnpkfn3v2jbl7a3zsb0lys4srswl26hjijviqq")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" - ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) - ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" - ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) - ("go-google-golang-org-appengine-1.1.0" - ,go-google-golang-org-appengine-1.1.0) - ("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" - ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" - ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0) - ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-client9-misspell-0.3.4" - ,go-github-com-client9-misspell-0.3.4) - ("go-github-com-burntsushi-toml-0.3.1" - ,go-github-com-burntsushi-toml-0.3.1) - ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-go-opencensus-io-0.22.4 - (package - (name "go-go-opencensus-io") - (version "0.22.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/census-instrumentation/opencensus-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "10skbvs4yxjm3z10yfg5cj2mdzjsna87qk1icp9xv0iwp8wzq6h0")))) - (build-system go-build-system) - (arguments '(#:import-path "go.opencensus.io")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.20.1" ,go-google-golang-org-grpc-1.20.1) - ("go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb" - ,go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb) - ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) - ("go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd" - ,go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd) - ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" - ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) - ("go-github-com-stretchr-testify-1.4.0" - ,go-github-com-stretchr-testify-1.4.0) - ("go-github-com-google-go-cmp-0.3.0" - ,go-github-com-google-go-cmp-0.3.0) - ("go-github-com-golang-protobuf-1.3.1" - ,go-github-com-golang-protobuf-1.3.1) - ("go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6" - ,go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6))) - (home-page "https://go.opencensus.io") - (synopsis "OpenCensus Libraries for Go") - (description "Package opencensus contains Go support for OpenCensus. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b - (package - (name "go-golang-org-x-lint") - (version "0.0.0-20200302205851-738671d3881b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/lint") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0jkiz4py59jjnkyxbxifpf7bsar11lbgmj5jiq2kic5k03shkn9c")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/lint")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7" - ,go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7))) - (home-page "https://golang.org/x/lint") - (synopsis "Installation") - (description "Package lint contains a linter for Go source code. -") - (license license:bsd-3))) - -(define-public go-cloud-google-com-go-0.34.0 - (package - (name "go-cloud-google-com-go") - (version "0.34.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-cloud-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1kclgclwar3r37zbvb9gg3qxbgzkb50zk3s9778zlh2773qikmai")))) - (build-system go-build-system) - (arguments '(#:import-path "cloud.google.com/go")) - (home-page "https://cloud.google.com/go") - (synopsis "Google Cloud Client Libraries for Go") - (description - "Package cloud is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -of sub-packages. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190108225652-1e06a53dbb7e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0lpqqvdccby48nixihvmn8ig1z48b950m1bxfqxn78air308qc3j")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4 - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20181221193216-37e7f081c4d4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1bb0mw6ckb1k7z8v3iil2qlqwfj408fvvp8m1cik2b46p7snyjhm")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the -ones provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d - (package - (name "go-golang-org-x-oauth2") - (version "0.0.0-20200107190931-bf48bf16ab8d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/oauth2") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1sirdib60zwmh93kf9qrx51r8544k1p9rs5mk0797wibz3m4mrdg")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/oauth2")) - (propagated-inputs - `(("go-google-golang-org-appengine-1.4.0" - ,go-google-golang-org-appengine-1.4.0) - ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" - ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) - ("go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e" - ,go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e) - ("go-cloud-google-com-go-0.34.0" ,go-cloud-google-com-go-0.34.0))) - (home-page "https://golang.org/x/oauth2") - (synopsis "OAuth2 for Go") - (description - "Package oauth2 provides support for making -OAuth2 authorized and authenticated HTTP requests, -as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -It can additionally grant authorization with Bearer JWT. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20200803210538-64077c9b5642 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200803210538-64077c9b5642") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1pdrkim9v0wbxipl586d29vz4ci9xib0f02g6yv7c0nang627pag")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-yuin-goldmark-1.1.32 - (package - (name "go-github-com-yuin-goldmark") - (version "1.1.32") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/yuin/goldmark") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "03i9yq6n3yvn5v70xi6x3pn49ndy8zm4217ihwwhlw2nkwhny7a5")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/yuin/goldmark")) - (home-page "https://github.com/yuin/goldmark") - (synopsis "goldmark") - (description - "Package goldmark implements functions to convert markdown text to a desired format. -") - (license license:expat))) - -(define-public go-golang-org-x-net-0.0.0-20200625001655-4c5254603344 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20200625001655-4c5254603344") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1da0a1m488d95vggpi52dkag98n5671ml6sn80nwv6lgbmdx8qbq")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" - ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) - ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" - ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208 - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20200625203802-6e8e738ad208") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1avk27pszd5l5df6ff7j78wgla46ir1hhy2jwfl9a3c0ys602yx9")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the -ones provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20200804011535-6c149bb5ef0d - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20200804011535-6c149bb5ef0d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1l244hp5n0qff7nmvcffggjv7jm4061g63g76z967zvdqcxh23i2")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) - ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" - ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) - ("go-golang-org-x-net-0.0.0-20200625001655-4c5254603344" - ,go-golang-org-x-net-0.0.0-20200625001655-4c5254603344) - ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) - ("go-github-com-yuin-goldmark-1.1.32" - ,go-github-com-yuin-goldmark-1.1.32))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-google-golang-org-genproto-0.0.0-20200804131852-c06518451d9c - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20200804131852-c06518451d9c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0wl9bhr94yf0b8lc947zr0iwm3l20irzy869xczfd6z0a1g54gsa")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.24.0" - ,go-google-golang-org-protobuf-1.24.0) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-golang-protobuf-1.4.1" - ,go-github-com-golang-protobuf-1.4.1))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-google-golang-org-api-0.30.0 - (package - (name "go-google-golang-org-api") - (version "0.30.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-api-go-client") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1vh5rrc6hvzh1rqawrwr4nyilnr3dgqx1pr2njjzdg0prfmflm5p")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/api")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.31.0" ,go-google-golang-org-grpc-1.31.0) - ("go-google-golang-org-genproto-0.0.0-20200804131852-c06518451d9c" - ,go-google-golang-org-genproto-0.0.0-20200804131852-c06518451d9c) - ("go-google-golang-org-appengine-1.6.6" - ,go-google-golang-org-appengine-1.6.6) - ("go-golang-org-x-tools-0.0.0-20200804011535-6c149bb5ef0d" - ,go-golang-org-x-tools-0.0.0-20200804011535-6c149bb5ef0d) - ("go-golang-org-x-sys-0.0.0-20200803210538-64077c9b5642" - ,go-golang-org-x-sys-0.0.0-20200803210538-64077c9b5642) - ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" - ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) - ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" - ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) - ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" - ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) - ("go-go-opencensus-io-0.22.4" ,go-go-opencensus-io-0.22.4) - ("go-github-com-googleapis-gax-go-v2-2.0.5" - ,go-github-com-googleapis-gax-go-v2-2.0.5) - ("go-github-com-google-go-cmp-0.5.1" - ,go-github-com-google-go-cmp-0.5.1) - ("go-cloud-google-com-go-0.62.0" ,go-cloud-google-com-go-0.62.0))) - (home-page "https://google.golang.org/api") - (synopsis "Google APIs Client Library for Go") - (description - "Package api is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of -sub-packages. -") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-1.24.0 - (package - (name "go-google-golang-org-protobuf") - (version "1.24.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0x3qyn3rizbs671gs7f8v50rmiwf9h7kbaradpivw9718mhbg1gn")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" - ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.1" - ,go-github-com-golang-protobuf-1.4.1))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-google-golang-org-genproto-0.0.0-20200825200019-8632dd797987 - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20200825200019-8632dd797987") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0h8s1mz8pbdiwmv2g61afa7f05zin3m6mdy2fmny6wcidz4w2i3k")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.24.0" - ,go-google-golang-org-protobuf-1.24.0) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-golang-protobuf-1.4.1" - ,go-github-com-golang-protobuf-1.4.1))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f - (package - (name "go-github-com-cncf-udpa-go") - (version "0.0.0-20191209042840-269d4d468f6f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cncf/udpa") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0i1jiaw2k3hlwwmg4hap81vb4s1p25xp9kdfww37v0fbgjariccs")))) - (build-system go-build-system) - (arguments - '(#:import-path - "github.com/cncf/udpa/go" - #:unpack-path - "github.com/cncf/udpa")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2) - ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" - ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0))) - (home-page "https://github.com/cncf/udpa") - (synopsis "Description") - (description - "This library has been deprecated in favor of @code{github.com/cncf/xds/go}. All users are recommended to switch their imports.") - (license license:asl2.0))) - -(define-public go-github-com-envoyproxy-go-control-plane-0.9.4 - (package - (name "go-github-com-envoyproxy-go-control-plane") - (version "0.9.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/envoyproxy/go-control-plane") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0m0crzx70lp7vz13v20wxb1fcfdnzp7h3mkh3bn6a8mbfz6w5asj")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) - ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" - ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) - ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" - ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) - ("go-github-com-google-go-cmp-0.2.0" - ,go-github-com-google-go-cmp-0.2.0) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2) - ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" - ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) - ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" - ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f) - ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" - ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) - (home-page "https://github.com/envoyproxy/go-control-plane") - (synopsis "control-plane") - (description - "This repository contains a Go-based implementation of an API server that -implements the discovery service APIs defined in -@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") - (license license:asl2.0))) - -(define-public go-github-com-golang-protobuf-1.3.3 - (package - (name "go-github-com-golang-protobuf") - (version "1.3.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1cyyr52yhj3fzrily3rmsbqyj8va4ld75lmry0857m39rgpv8sy1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-google-golang-org-grpc-1.31.0 - (package - (name "go-google-golang-org-grpc") - (version "1.31.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1y3lilpipmaysjk4skbzw1qa6lv05vzixzw9lg9x73xfb01q4nyz")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" - ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.3.3" - ,go-github-com-golang-protobuf-1.3.3) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-envoyproxy-go-control-plane-0.9.4" - ,go-github-com-envoyproxy-go-control-plane-0.9.4) - ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" - ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-cloud-google-com-go-0.65.0 - (package - (name "go-cloud-google-com-go") - (version "0.65.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-cloud-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0xrcg39jrw90gq8vl8pfq63sp3bkak04wh392yj5rh4lc1a4lxjq")))) - (build-system go-build-system) - (arguments '(#:import-path "cloud.google.com/go")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.31.0" ,go-google-golang-org-grpc-1.31.0) - ("go-google-golang-org-genproto-0.0.0-20200825200019-8632dd797987" - ,go-google-golang-org-genproto-0.0.0-20200825200019-8632dd797987) - ("go-google-golang-org-api-0.30.0" ,go-google-golang-org-api-0.30.0) - ("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" - ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) - ("go-golang-org-x-tools-0.0.0-20200825202427-b303f430e36d" - ,go-golang-org-x-tools-0.0.0-20200825202427-b303f430e36d) - ("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) - ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" - ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) - ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" - ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) - ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" - ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) - ("go-go-opencensus-io-0.22.4" ,go-go-opencensus-io-0.22.4) - ("go-github-com-jstemmer-go-junit-report-0.9.1" - ,go-github-com-jstemmer-go-junit-report-0.9.1) - ("go-github-com-googleapis-gax-go-v2-2.0.5" - ,go-github-com-googleapis-gax-go-v2-2.0.5) - ("go-github-com-google-pprof-0.0.0-20200708004538-1a94d8640e99" - ,go-github-com-google-pprof-0.0.0-20200708004538-1a94d8640e99) - ("go-github-com-google-martian-v3-3.0.0" - ,go-github-com-google-martian-v3-3.0.0) - ("go-github-com-google-go-cmp-0.5.1" - ,go-github-com-google-go-cmp-0.5.1) - ("go-github-com-golang-protobuf-1.4.2" - ,go-github-com-golang-protobuf-1.4.2) - ("go-github-com-golang-mock-1.4.4" ,go-github-com-golang-mock-1.4.4) - ("go-cloud-google-com-go-storage-1.10.0" - ,go-cloud-google-com-go-storage-1.10.0))) - (home-page "https://cloud.google.com/go") - (synopsis "Google Cloud Client Libraries for Go") - (description - "Package cloud is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -of sub-packages. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200323222414-85ca7c5b95cd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1504qkgbhhm4f0bhk77v2r1lj6x171ay5m79alkg78wjb5cign5l")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20200822124328-c89045814202 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20200822124328-c89045814202") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1g3wxilwbcbf2xj20y3mpxh38jka4fyhl48akfqf00vr48zmx96x")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" - ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) - ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" - ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-google-golang-org-appengine-1.6.6 - (package - (name "go-google-golang-org-appengine") - (version "1.6.6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/appengine") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "15c38h6fbv06cnkr6yknygfrpibyms2mya4w0l29kaxf42jn1qi5")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/appengine")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) - ("go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65" - ,go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65) - ("go-github-com-golang-protobuf-1.3.1" - ,go-github-com-golang-protobuf-1.3.1))) - (home-page "https://google.golang.org/appengine") - (synopsis "Go App Engine packages") - (description - "Package appengine provides basic functionality for Google App Engine. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-oauth2-0.0.0-20210402161424-2e8d93401602 - (package - (name "go-golang-org-x-oauth2") - (version "0.0.0-20210402161424-2e8d93401602") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/oauth2") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0j1crxa78gip3hxrds5jngi034j4zm4q3z7r8bqs3rjxnwcki9ig")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/oauth2")) - (propagated-inputs - `(("go-google-golang-org-appengine-1.6.6" - ,go-google-golang-org-appengine-1.6.6) - ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" - ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) - ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) - (home-page "https://golang.org/x/oauth2") - (synopsis "OAuth2 for Go") - (description - "Package oauth2 provides support for making -OAuth2 authorized and authenticated HTTP requests, -as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -It can additionally grant authorization with Bearer JWT. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20210220032951-036812b2e83c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1gl202py3s4gl6arkaxlf8qa6f0jyyg2f95m6f89qnfmr416h85b")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the -ones provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20210403161142-5e06dd20ab57 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20210403161142-5e06dd20ab57") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1acdn06771rxjg38ql9wl8dr1vf23nazjnvk6105z3hddnh14fgb")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.3.1 - (package - (name "go-github-com-golang-protobuf") - (version "1.3.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "15am4s4646qy6iv0g3kkqq52rzykqjhm4bf08dk0fy2r58knpsyl")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190603091049-60506f45cf65") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0827yz7irmnzcdhw8vg74819jaw5ahs4w4v5fvzgfvnxyb9f6zcc")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-text-0.3.2 - (package - (name "go-golang-org-x-text") - (version "0.3.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0flv9idw0jm5nm8lx25xqanbkqgfiym6619w575p7nrdh0riqwqh")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/text")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" - ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) - (home-page "https://golang.org/x/text") - (synopsis "Go Text") - (description - "text is a repository of text-related packages related to internationalization -(i18n) and localization (l10n), such as character encodings, text -transformations, and locale-specific text handling. -") - (license license:bsd-3))) - -(define-public go-google-golang-org-appengine-1.6.7 - (package - (name "go-google-golang-org-appengine") - (version "1.6.7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/appengine") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1wkipg7xxc0ha5p6c3bj0vpgq38l18441n5l6zxdhx0gzvz5z1hs")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/appengine")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) - ("go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65" - ,go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65) - ("go-github-com-golang-protobuf-1.3.1" - ,go-github-com-golang-protobuf-1.3.1))) - (home-page "https://google.golang.org/appengine") - (synopsis "Go App Engine packages") - (description - "Package appengine provides basic functionality for Google App Engine. -") - (license license:asl2.0))) - -(define-public go-github-com-golang-protobuf-1.5.1 - (package - (name "go-github-com-golang-protobuf") - (version "1.5.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1qx8gvsdx1w27vamw6wn1jns2d8pz0g9sji3l0hvs4wl1jf7p32d")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.26.0" - ,go-google-golang-org-protobuf-1.26.0) - ("go-github-com-google-go-cmp-0.5.5" - ,go-github-com-google-go-cmp-0.5.5))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-golang-org-x-mod-0.1.1-0.20191105210325-c90efee705ee - (package - (name "go-golang-org-x-mod") - (version "0.1.1-0.20191105210325-c90efee705ee") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/mod") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0i5md645rmcy5z5ij9ng428k9rz4g3k1kjy3blsq1264rn426gdf")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/mod")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" - ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) - ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" - ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) - (home-page "https://golang.org/x/mod") - (synopsis "mod") - (description - "This repository holds packages for writing tools -that work directly with Go module mechanics. -That is, it is for direct manipulation of Go modules themselves.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7 - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20200130002326-2f3ba24bd6e7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0j3nnmlwnbivf0h9x89vlp8ji3ha41v96bj33cxwmrrjnxq543ww")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" - ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) - ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" - ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) - ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" - ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) - ("go-golang-org-x-mod-0.1.1-0.20191105210325-c90efee705ee" - ,go-golang-org-x-mod-0.1.1-0.20191105210325-c90efee705ee))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5 - (package - (name "go-golang-org-x-lint") - (version "0.0.0-20201208152925-83fdc39ff7b5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/lint") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ms3rs5hvpnm9bxbr5f9743i7hn2bbmqdmvzxq6nmi0f24ypv1l3")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/lint")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7" - ,go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7))) - (home-page "https://golang.org/x/lint") - (synopsis "Installation") - (description "Package lint contains a linter for Go source code. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20210315160823-c6e025ad8005 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20210315160823-c6e025ad8005") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1dy8j3gvbkng0vy2wgdiy48871j4vchgsks2ggfxcx4jg32d2qsr")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20201119102817-f84b799fce68") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1dvhqian5byzkcg1bnqzygqa6ccc6krc2q7j12pp1vhl3y7znnsg")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1 - (package - (name "go-golang-org-x-term") - (version "0.0.0-20201126162022-7de9c90e9dd1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/term") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ba252xmv6qsvf1w1gcy98mngrj0vd4inbjw0lsklqvva65nljna")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/term")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" - ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) - (home-page "https://golang.org/x/term") - (synopsis "Go terminal/console support") - (description - "Package term provides support functions for dealing with terminals, as -commonly found on UNIX systems. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20210316092652-d523dce5a7f4 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20210316092652-d523dce5a7f4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "01hhvh6msyg11adxhgjwzbv4jprq5ajzkxxb16ln3dqv4na9b2k1")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) - ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" - ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) - ("go-golang-org-x-sys-0.0.0-20210315160823-c6e025ad8005" - ,go-golang-org-x-sys-0.0.0-20210315160823-c6e025ad8005))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20210320140829-1e4c9ba3b0c4 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20210320140829-1e4c9ba3b0c4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0nrxjq5j058sba9s5g65l5rdw6b4f335lxa7hhcf57paklym1qgr")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-text-0.3.5 - (package - (name "go-golang-org-x-text") - (version "0.3.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "082s9d7wnh1aa2v08g3h5z4if2f8hl4y01pb788qsvab9329lj0w")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/text")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" - ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) - (home-page "https://golang.org/x/text") - (synopsis "Go Text") - (description - "text is a repository of text-related packages related to internationalization -(i18n) and localization (l10n), such as character encodings, text -transformations, and locale-specific text handling. -") - (license license:bsd-3))) - -(define-public go-github-com-yuin-goldmark-1.2.1 - (package - (name "go-github-com-yuin-goldmark") - (version "1.2.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/yuin/goldmark") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12rsnsf65drcp0jfw2jl9w589vsn3pxdk1zh3v9q908iigngrcmy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/yuin/goldmark")) - (home-page "https://github.com/yuin/goldmark") - (synopsis "goldmark") - (description - "Package goldmark implements functions to convert markdown text to a desired format. -") - (license license:expat))) - -(define-public go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20191011191535-87dc89f01550") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0z4i1m2yn3f31ci7wvcm2rxkx2yiv7a78mfzklncmsz2k97rlh2g")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" - ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) - ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" - ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190620200207-3b0461eec859") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0l00c8l0a8xnv6qdpwfzxxsr58jggacgzdrwiprrfx2xqm37b6d5")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7 - (package - (name "go-golang-org-x-xerrors") - (version "0.0.0-20190717185122-a985d3407aa7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/xerrors") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "00wzr5w8aadipgc3rkk8f11i41znskfj9ix5nhhaxyg7isrslgcj")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/xerrors")) - (home-page "https://golang.org/x/xerrors") - (synopsis #f) - (description - "Package xerrors implements functions to manipulate errors. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20191119224855-298f0cb1881e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0l4pqwib2wnfnix6nvxl0yrq87ipi7ff1rz6z5bxfzy9dki1nzmv")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7" - ,go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7) - ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" - ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) - ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" - ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898 - (package - (name "go-golang-org-x-xerrors") - (version "0.0.0-20191011141410-1b5146add898") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/xerrors") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0w2akj91krxjag0xdhsg78470888nicc5ismc2ap9jqpss6v1zih")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/xerrors")) - (home-page "https://golang.org/x/xerrors") - (synopsis #f) - (description - "Package xerrors implements functions to manipulate errors. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-mod-0.3.0 - (package - (name "go-golang-org-x-mod") - (version "0.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/mod") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ldgbx2zpprbsfn6p8pfgs4nn87gwbfcv2z0fa7n8alwsq2yw78q")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/mod")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" - ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) - ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" - ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) - ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" - ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) - (home-page "https://golang.org/x/mod") - (synopsis "mod") - (description - "This repository holds packages for writing tools -that work directly with Go module mechanics. -That is, it is for direct manipulation of Go modules themselves.") - (license license:bsd-3))) - -(define-public go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20200622213623-75b288015ac9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18vlncvvs11ds3zaaziqjlg5s2vcwi3496nn6qv7p0dp94j5pwa2")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" - ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) - ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" - ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200930185726-fdedc70b468f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1njlfhjbvi4lxvjbq8zswrb0y0q4jd2p6x51h1q6vmyzi9af6869")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20201021035429-f5854403a974 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20201021035429-f5854403a974") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1vw63zpmhi337f3gc432x3wkib4j2ia8dy7if31wxwb9dgqvy222")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) - ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" - ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) - ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" - ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9 - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20201020160332-67f06af15bc9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "093p4panc808ak5bamzz7m9nb0xxib7778jpnr6f0xkz1n4fzyw5")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the -ones provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20210119212857-b64e53b001e4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "16in6bazi0frdkzhqxyvmw7qcvzjavq21dnz9bmrqq8d4dpd2j44")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1 - (package - (name "go-golang-org-x-xerrors") - (version "0.0.0-20200804184101-5ec99f83aff1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/xerrors") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1dbzc3gmf2haazpv7cgmv97rq40g2xzwbglc17vas8dwhgwgwrzb")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/xerrors")) - (home-page "https://golang.org/x/xerrors") - (synopsis #f) - (description - "Package xerrors implements functions to manipulate errors. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.1.0 - (package - (name "go-golang-org-x-tools") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1asrm22kv5x891qkbpap8alg612k321jbs1akc0vwsan251gm507")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" - ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) - ("go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4" - ,go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4) - ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" - ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) - ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" - ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) - ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) - ("go-github-com-yuin-goldmark-1.2.1" - ,go-github-com-yuin-goldmark-1.2.1))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-1.26.0-rc.1 - (package - (name "go-google-golang-org-protobuf") - (version "1.26.0-rc.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1m2jp247qcnix42jncn0q7pwrjgbhiqllb1115hfsz40xfnfhp8j")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.5.5" - ,go-github-com-google-go-cmp-0.5.5))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.5.0 - (package - (name "go-github-com-golang-protobuf") - (version "1.5.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1craaxv34g4g8q3yrv6pr28fx9ihnk7hj5gnbmxcrhcp78423lnf")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.26.0-rc.1" - ,go-google-golang-org-protobuf-1.26.0-rc.1) - ("go-github-com-google-go-cmp-0.5.5" - ,go-github-com-google-go-cmp-0.5.5))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-github-com-google-go-cmp-0.5.5 - (package - (name "go-github-com-google-go-cmp") - (version "0.5.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12fmkdhyv5d4is8s57k78j097zb0phlgnrkqc03agiszxlid69x7")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-1.26.0 - (package - (name "go-google-golang-org-protobuf") - (version "1.26.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0xq6phaps6d0vcv13ga59gzj4306l0ki9kikhmb52h6pq0iwfqlz")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.5.5" - ,go-github-com-google-go-cmp-0.5.5) - ("go-github-com-golang-protobuf-1.5.0" - ,go-github-com-golang-protobuf-1.5.0))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-google-golang-org-genproto-0.0.0-20210402141018-6c239bbf2bb1 - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20210402141018-6c239bbf2bb1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1xih6y4dwjj939ilwc5s6w419kjnkn1hw33jsgml0nkjcnac74wc")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.26.0" - ,go-google-golang-org-protobuf-1.26.0) - ("go-google-golang-org-grpc-1.36.1" ,go-google-golang-org-grpc-1.36.1) - ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) - ("go-golang-org-x-text-0.3.5" ,go-golang-org-x-text-0.3.5) - ("go-golang-org-x-sys-0.0.0-20210320140829-1e4c9ba3b0c4" - ,go-golang-org-x-sys-0.0.0-20210320140829-1e4c9ba3b0c4) - ("go-golang-org-x-net-0.0.0-20210316092652-d523dce5a7f4" - ,go-golang-org-x-net-0.0.0-20210316092652-d523dce5a7f4) - ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" - ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) - ("go-github-com-golang-protobuf-1.5.1" - ,go-github-com-golang-protobuf-1.5.1))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad - (package - (name "go-github-com-envoyproxy-go-control-plane") - (version "0.9.9-0.20201210154907-fd9021fe5dad") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/envoyproxy/go-control-plane") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0piyk6pk36x2qr3bhys2k240pfwz3bv64fhi2l0vx1mzwiddapbm")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.23.0" - ,go-google-golang-org-protobuf-1.23.0) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" - ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) - ("go-github-com-stretchr-testify-1.5.1" - ,go-github-com-stretchr-testify-1.5.1) - ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" - ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.2" - ,go-github-com-golang-protobuf-1.4.2) - ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" - ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) - ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" - ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403) - ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" - ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) - (home-page "https://github.com/envoyproxy/go-control-plane") - (synopsis "control-plane") - (description - "This repository contains a Go-based implementation of an API server that -implements the discovery service APIs defined in -@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") - (license license:asl2.0))) - -(define-public go-google-golang-org-grpc-1.36.1 - (package - (name "go-google-golang-org-grpc") - (version "1.36.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0l3prxp18lb0pagqg4l6c9i0l6gakfxgf6vxcsv589i0xsxw8ivm")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.25.0" - ,go-google-golang-org-protobuf-1.25.0) - ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" - ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) - ("go-github-com-google-go-cmp-0.5.0" - ,go-github-com-google-go-cmp-0.5.0) - ("go-github-com-golang-protobuf-1.4.2" - ,go-github-com-golang-protobuf-1.4.2) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad" - ,go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad) - ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" - ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-google-golang-org-api-0.44.0 - (package - (name "go-google-golang-org-api") - (version "0.44.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-api-go-client") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0sh6qzc3pnyliy10afrmzpfbbbm2mwcyc6mp5422xhgp3p2x370x")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/api")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.36.1" ,go-google-golang-org-grpc-1.36.1) - ("go-google-golang-org-genproto-0.0.0-20210402141018-6c239bbf2bb1" - ,go-google-golang-org-genproto-0.0.0-20210402141018-6c239bbf2bb1) - ("go-google-golang-org-appengine-1.6.7" - ,go-google-golang-org-appengine-1.6.7) - ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) - ("go-golang-org-x-sys-0.0.0-20210403161142-5e06dd20ab57" - ,go-golang-org-x-sys-0.0.0-20210403161142-5e06dd20ab57) - ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" - ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) - ("go-golang-org-x-oauth2-0.0.0-20210402161424-2e8d93401602" - ,go-golang-org-x-oauth2-0.0.0-20210402161424-2e8d93401602) - ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" - ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) - ("go-go-opencensus-io-0.23.0" ,go-go-opencensus-io-0.23.0) - ("go-github-com-googleapis-gax-go-v2-2.0.5" - ,go-github-com-googleapis-gax-go-v2-2.0.5) - ("go-github-com-google-go-cmp-0.5.5" - ,go-github-com-google-go-cmp-0.5.5) - ("go-cloud-google-com-go-0.81.0" ,go-cloud-google-com-go-0.81.0))) - (home-page "https://google.golang.org/api") - (synopsis "Google APIs Client Library for Go") - (description - "Package api is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of -sub-packages. -") - (license license:bsd-3))) - -(define-public go-github-com-envoyproxy-go-control-plane-0.9.0 - (package - (name "go-github-com-envoyproxy-go-control-plane") - (version "0.9.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/envoyproxy/go-control-plane") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1dpvi4wnycyj6hnai78fr8aj58b27b1vcwdp3v0id5v22kvgr3xw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.23.0" ,go-google-golang-org-grpc-1.23.0) - ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" - ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) - ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" - ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2) - ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" - ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) - ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" - ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) - (home-page "https://github.com/envoyproxy/go-control-plane") - (synopsis "control-plane") - (description - "This repository contains a Go-based implementation of an API server that -implements the discovery service APIs defined in -@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") - (license license:asl2.0))) - -(define-public go-google-golang-org-grpc-1.25.1 - (package - (name "go-google-golang-org-grpc") - (version "1.25.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0a136ij9p11yj1vx892yqy40jkh7n5nfbpdvhgydcj823mx51c6f")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" - ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-github-com-google-go-cmp-0.2.0" - ,go-github-com-google-go-cmp-0.2.0) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2) - ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" - ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) - ("go-github-com-envoyproxy-go-control-plane-0.9.0" - ,go-github-com-envoyproxy-go-control-plane-0.9.0))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403 - (package - (name "go-github-com-cncf-udpa-go") - (version "0.0.0-20201120205902-5459f2c99403") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cncf/udpa") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0i3al193dsp91j7iywqrm6fr56y2sz51ci4vf19mb3j4n2x44gsi")))) - (build-system go-build-system) - (arguments - '(#:import-path - "github.com/cncf/udpa/go" - #:unpack-path - "github.com/cncf/udpa")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2) - ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" - ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0))) - (home-page "https://github.com/cncf/udpa") - (synopsis "Description") - (description - "This library has been deprecated in favor of @code{github.com/cncf/xds/go}. All users are recommended to switch their imports.") - (license license:asl2.0))) - -(define-public go-github-com-stretchr-testify-1.5.1 - (package - (name "go-github-com-stretchr-testify") - (version "1.5.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/testify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "09r89m1wy4cjv2nps1ykp00qjpi0531r07q3s34hr7m6njk4srkl")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/testify")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) - ("go-github-com-stretchr-objx-0.1.0" - ,go-github-com-stretchr-objx-0.1.0) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.0" - ,go-github-com-davecgh-go-spew-1.1.0))) - (home-page "https://github.com/stretchr/testify") - (synopsis "Testify - Thou Shalt Write Tests") - (description - "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -") - (license license:expat))) - -(define-public go-github-com-envoyproxy-go-control-plane-0.9.9-0.20210217033140-668b12f5399d - (package - (name "go-github-com-envoyproxy-go-control-plane") - (version "0.9.9-0.20210217033140-668b12f5399d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/envoyproxy/go-control-plane") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0vmhc8ii081x1k2qw4kji7wjyg6l25zp1y6qxi27wq8m341i4rzb")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.23.0" - ,go-google-golang-org-protobuf-1.23.0) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" - ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) - ("go-github-com-stretchr-testify-1.5.1" - ,go-github-com-stretchr-testify-1.5.1) - ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" - ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.2" - ,go-github-com-golang-protobuf-1.4.2) - ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" - ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) - ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" - ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403) - ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" - ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) - (home-page "https://github.com/envoyproxy/go-control-plane") - (synopsis "control-plane") - (description - "This repository contains a Go-based implementation of an API server that -implements the discovery service APIs defined in -@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") - (license license:asl2.0))) - -(define-public go-google-golang-org-protobuf-1.23.0 - (package - (name "go-google-golang-org-protobuf") - (version "1.23.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "03yan0m1v0zmlr935p4n24fd376mznsg85zy8sywbgisls4s1bzy")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.0" - ,go-github-com-golang-protobuf-1.4.0))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.4.2 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0m5z81im4nsyfgarjhppayk4hqnrwswr3nix9mj8pff8x9jvcjqw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.23.0" - ,go-google-golang-org-protobuf-1.23.0) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-github-com-google-uuid-1.1.2 - (package - (name "go-github-com-google-uuid") - (version "1.1.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/uuid") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1rbpfa0v0ly9sdnixcxhf79swki54ikgm1zkwwkj64p1ws66syqd")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/uuid")) - (home-page "https://github.com/google/uuid") - (synopsis "uuid") - (description "Package uuid generates and inspects UUIDs. -") - (license license:bsd-3))) - -(define-public go-github-com-google-go-cmp-0.5.0 - (package - (name "go-github-com-google-go-cmp") - (version "0.5.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "04pzp583p6b32y34c6jygfxarff9qjs39rarvfh6467z24sdd9k4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-1.22.0 - (package - (name "go-google-golang-org-protobuf") - (version "1.22.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0n7lc4m7kfvj01glc0gnjy0zsnsic7cxnbvlajy0h14cxbab87pj")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.0" - ,go-github-com-golang-protobuf-1.4.0))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.4.1 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0w7ks4vffnnkp0miwgc3chrsnmya45lzvpahb2wmw0jwhdp5kdx7")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.22.0" - ,go-google-golang-org-protobuf-1.22.0) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-github-com-census-instrumentation-opencensus-proto-0.2.1 - (package - (name "go-github-com-census-instrumentation-opencensus-proto") - (version "0.2.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/census-instrumentation/opencensus-proto") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19fcx3sc99i5dsklny6r073z5j20vlwn2xqm6di1q3b1xwchzqfj")))) - (build-system go-build-system) - (arguments - '(#:import-path "github.com/census-instrumentation/opencensus-proto")) - (home-page "https://github.com/census-instrumentation/opencensus-proto") - (synopsis - "OpenCensus Proto - Language Independent Interface Types For OpenCensus") - (description - "Census provides a framework to define and collect stats against metrics and to -break those stats down across user-defined dimensions.") - (license license:asl2.0))) - -(define-public go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4 - (package - (name "go-github-com-prometheus-client-model") - (version "0.0.0-20190812154241-14fe0d1b01d4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/client_model") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0zdmk6rbbx39cvfz0r59v2jg5sg9yd02b4pds5n5llgvivi99550")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/client_model")) - (propagated-inputs - `(("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" - ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0))) - (home-page "https://github.com/prometheus/client_model") - (synopsis "Deprecation note") - (description - "This repository used to contain the code that defined both -the data model and the exposition format of Prometheus metrics.") - (license license:asl2.0))) - -(define-public go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20190311212946-11955173bddd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hlkai67w167wiyivkzd1fgqrnyxkb94l2c6kr51jwcscizfyfn3")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3 - (package - (name "go-golang-org-x-lint") - (version "0.0.0-20190313153728-d0100b6bd8b3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/lint") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0b0amr9x4ji66iv9ayfx7zrfx52k1m5g66qfcxkgj80qrb1y2yn7")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/lint")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" - ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd))) - (home-page "https://golang.org/x/lint") - (synopsis "Installation") - (description "Package lint contains a linter for Go source code. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20190423024810-112230192c58 - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20190423024810-112230192c58") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "05i2k43j2d0llq768hg5pf3hb2yhfzp9la1w5wp0rsnnzblr0lfn")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the -ones provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135 - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20190524140312-2c0ae7006135") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1lsi2ssxajclj3bciz2a41v1vjv768ja3v6wnbyhxy8xphwkp4fk")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" - ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-google-golang-org-grpc-1.23.0 - (package - (name "go-google-golang-org-grpc") - (version "1.23.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1cn33r2gclmq2v1ndpf1n5bmhf2qs8mms7ii5cnl6f9ch4r2c4k3")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" - ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) - ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" - ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) - ("go-google-golang-org-appengine-1.1.0" - ,go-google-golang-org-appengine-1.1.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-google-go-cmp-0.2.0" - ,go-github-com-google-go-cmp-0.2.0) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0) - ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-client9-misspell-0.3.4" - ,go-github-com-client9-misspell-0.3.4) - ("go-github-com-burntsushi-toml-0.3.1" - ,go-github-com-burntsushi-toml-0.3.1) - ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473 - (package - (name "go-github-com-envoyproxy-go-control-plane") - (version "0.9.1-0.20191026205805-5f8ba28d4473") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/envoyproxy/go-control-plane") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1f1s764rd41vd9vgk3r14h1m6fz6pdvxj6fd83q58gxifbc4q5w4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.23.0" ,go-google-golang-org-grpc-1.23.0) - ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" - ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) - ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" - ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2) - ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" - ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) - ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" - ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) - (home-page "https://github.com/envoyproxy/go-control-plane") - (synopsis "control-plane") - (description - "This repository contains a Go-based implementation of an API server that -implements the discovery service APIs defined in -@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") - (license license:asl2.0))) - -(define-public go-github-com-envoyproxy-protoc-gen-validate-0.1.0 - (package - (name "go-github-com-envoyproxy-protoc-gen-validate") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/envoyproxy/protoc-gen-validate") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0kxd3wwh3xwqk0r684hsy281xq4y71cd11d4q2hspcjbnlbwh7cy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/envoyproxy/protoc-gen-validate")) - (home-page "https://github.com/envoyproxy/protoc-gen-validate") - (synopsis "protoc-gen-validate (PGV)") - (description - "PGV is a protoc plugin to generate polyglot message validators. While protocol buffers effectively guarantee the types of structured data, they cannot enforce semantic rules for values. This plugin adds support to protoc-generated code to validate such constraints.") - (license license:asl2.0))) - -(define-public go-github-com-google-go-cmp-0.2.0 - (package - (name "go-github-com-google-go-cmp") - (version "0.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fbv0x27k9sn8svafc0hjwsnckk864lv4yi7bvzrxvmd3d5hskds")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.3.2 - (package - (name "go-github-com-golang-protobuf") - (version "1.3.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1k1wb4zr0qbwgpvz9q5ws9zhlal8hq7dmq62pwxxriksayl6hzym")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4 - (package - (name "go-golang-org-x-exp") - (version "0.0.0-20190121172915-509febef88a4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/exp") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "02isrh39z8znrp5znplzy0dip2gnrl3jm1355raliyvhnhg04j6q")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/exp")) - (home-page "https://golang.org/x/exp") - (synopsis "exp") - (description - "This subrepository holds experimental and deprecated (in the @code{old} -directory) packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961 - (package - (name "go-golang-org-x-lint") - (version "0.0.0-20190227174305-5b3e6a55c961") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/lint") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "04zp5vbds9nffmjg36wjpi5vg9zmf890yf78xxasai3ni637ivfw")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/lint")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" - ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c))) - (home-page "https://golang.org/x/lint") - (synopsis "Installation") - (description "Package lint contains a linter for Go source code. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190213061140-3a22650c66bd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12q6fgdkc0742vcms67nzadgdwvi3rnb1gx3vwkljhrvlnwvz7wc")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20181108010431-42b317875d0f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0mrjhk7al7yyh76x9flvxy4jm5jyqh2fxbxagpaazxn1xdgkaif3")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the -ones provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20180724234803-3673e40ba225") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0vx7mz18p480p7fh0w5jv6mfdbsswrlac1sz4i705q7q7ygz59lm")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-google-golang-org-appengine-1.4.0 - (package - (name "go-google-golang-org-appengine") - (version "1.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/appengine") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "06zl7w4sxgdq2pl94wy9ncii6h0z3szl4xpqds0sv3b3wbdlhbnn")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/appengine")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225" - ,go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0))) - (home-page "https://google.golang.org/appengine") - (synopsis "Go App Engine packages") - (description - "Package appengine provides basic functionality for Google App Engine. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20190226205152-f727befe758c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0rpcqw6z13qd33rbasg32zb0gdhgh5lzjla63r6g651zf6hpsak0")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-google-golang-org-appengine-1.4.0" - ,go-google-golang-org-appengine-1.4.0) - ("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" - ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) - ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" - ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-cloud-google-com-go-0.26.0 - (package - (name "go-cloud-google-com-go") - (version "0.26.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-cloud-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "149v3ci17g6wd2pm18mzcncq5qpl9hwdjnz3rlbn5rfidyn46la1")))) - (build-system go-build-system) - (arguments '(#:import-path "cloud.google.com/go")) - (home-page "https://cloud.google.com/go") - (synopsis "Google Cloud Client Libraries for Go") - (description - "Package cloud is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -of sub-packages. -") - (license license:asl2.0))) - -(define-public go-github-com-burntsushi-toml-0.3.1 - (package - (name "go-github-com-burntsushi-toml") - (version "0.3.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/BurntSushi/toml") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fjdwwfzyzllgiwydknf1pwjvy49qxfsczqx5gz3y0izs7as99j6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/BurntSushi/toml")) - (home-page "https://github.com/BurntSushi/toml") - (synopsis "TOML parser and encoder for Go with reflection") - (description - "Package toml implements decoding and encoding of TOML files. -") - (license license:expat))) - -(define-public go-github-com-client9-misspell-0.3.4 - (package - (name "go-github-com-client9-misspell") - (version "0.3.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/client9/misspell") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1vwf33wsc4la25zk9nylpbp9px3svlmldkm0bha4hp56jws4q9cs")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/client9/misspell")) - (home-page "https://github.com/client9/misspell") - (synopsis "Install") - (description - "Package misspell corrects commonly misspelled English words in source files. -") - (license license:expat))) - -(define-public go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b - (package - (name "go-github-com-golang-glog") - (version "0.0.0-20160126235308-23def4e6c14b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/glog") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0jb2834rw5sykfr937fxi8hxi2zy80sj2bdn9b3jb4b26ksqng30")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/glog")) - (home-page "https://github.com/golang/glog") - (synopsis "glog") - (description - "Package glog implements logging analogous to the Google-internal C++ INFO/ERROR/V setup. -It provides functions Info, Warning, Error, Fatal, plus formatting variants such as -Infof. It also provides V-style logging controlled by the -v and -vmodule=file=2 flags. -") - (license license:asl2.0))) - -(define-public go-github-com-golang-mock-1.1.1 - (package - (name "go-github-com-golang-mock") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/mock") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ap8wb6pdl6ccmdb43advjll2ly4sz26wsc3axw0hbrjrybybzgy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/mock")) - (home-page "https://github.com/golang/mock") - (synopsis "gomock") - (description - "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It -integrates well with Go's built-in @code{testing} package, but can be used in other -contexts too.") - (license license:asl2.0))) - -(define-public go-github-com-golang-protobuf-1.2.0 - (package - (name "go-github-com-golang-protobuf") - (version "1.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0kf4b59rcbb1cchfny2dm9jyznp8ri2hsb14n8iak1q8986xa0ab")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3 - (package - (name "go-golang-org-x-lint") - (version "0.0.0-20181026193005-c67002cb31c3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/lint") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0gymbggskjmphqxqcx4s0vnlcz7mygbix0vhwcwv5r67c0bf6765")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/lint")) - (home-page "https://golang.org/x/lint") - (synopsis "Installation") - (description "Package lint contains a linter for Go source code. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d - (package - (name "go-golang-org-x-net") - (version "0.0.0-20180826012351-8a410e7b638d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hp0l8f6fir5gmgrjq0mhh5ikc0rlrm72774228800kfwqjrxxny")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be - (package - (name "go-golang-org-x-oauth2") - (version "0.0.0-20180821212333-d2e6202438be") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/oauth2") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0wbn75fd10485nb93bm4kqldqifdim5xqy4v7r5sdvimvf3fyhn7")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/oauth2")) - (home-page "https://golang.org/x/oauth2") - (synopsis "OAuth2 for Go") - (description - "Package oauth2 provides support for making -OAuth2 authorized and authenticated HTTP requests, -as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -It can additionally grant authorization with Bearer JWT. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20180314180146-1d60e4601c6f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "046jlanz2lkxq1r57x9bl6s4cvfqaic6p2xybsj8mq1120jv4rs6")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the -ones provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20180830151530-49385e6e1522") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0spbldahns09fdxkxflb1x24f8k2awdlnr6k5i7ci4fqd19r1dv4")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20190114222345-bf090417da8b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1n3xp56k4k3lj06rx7587wr5gnwg0148nvwx6ch0g7ar02hh94hw")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-google-golang-org-appengine-1.1.0 - (package - (name "go-google-golang-org-appengine") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/appengine") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1pz202zszg8f35dk5pfhwgcdi3r6dx1l4yk6x6ly7nb4j45zi96x")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/appengine")) - (home-page "https://google.golang.org/appengine") - (synopsis "Go App Engine packages") - (description - "Package appengine provides basic functionality for Google App Engine. -") - (license license:asl2.0))) - -(define-public go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8 - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20180817151627-c66870c02cf8") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0siq7sv68556ygqi2d2zmvx8l1xjqdc0fylqzci5h1mq2i14bayn")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-google-golang-org-grpc-1.19.0 - (package - (name "go-google-golang-org-grpc") - (version "1.19.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1znqwpj7ix3dpzx4zch0q70sdl3z5lvbb7v3q4i8sf8kas3yv71v")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" - ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) - ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" - ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) - ("go-google-golang-org-appengine-1.1.0" - ,go-google-golang-org-appengine-1.1.0) - ("go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b" - ,go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b) - ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522" - ,go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522) - ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" - ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d" - ,go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d) - ("go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3" - ,go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0) - ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-client9-misspell-0.3.4" - ,go-github-com-client9-misspell-0.3.4) - ("go-github-com-burntsushi-toml-0.3.1" - ,go-github-com-burntsushi-toml-0.3.1) - ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099 - (package - (name "go-honnef-co-go-tools") - (version "0.0.0-20190102054323-c2f93a96b099") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/dominikh/go-tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "07lg29aiap80ca9f201jzng9vjr168cv3qmvjmbd7v5pmww9kmr8")))) - (build-system go-build-system) - (arguments '(#:import-path "honnef.co/go/tools")) - (home-page "https://honnef.co/go/tools") - (synopsis "Documentation") - (description - "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, -offers simplifications, and enforces style rules.") - (license license:expat))) - -(define-public go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55 - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20190819201941-24fa4b261c55") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "109zhaqlfd8zkbr1hk6zqbs6vcxfrk64scjwh2nswph05gr0m84d")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" - ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) - ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) - ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" - ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) - ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" - ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) - ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" - ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-google-golang-org-grpc-1.27.0 - (package - (name "go-google-golang-org-grpc") - (version "1.27.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ijrmgrxyabfn51nm3p9l81iaasq5fg237wnr6mdc4dzsfcg8kd7")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" - ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-github-com-google-go-cmp-0.2.0" - ,go-github-com-google-go-cmp-0.2.0) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2) - ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" - ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) - ("go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473" - ,go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-github-com-google-go-cmp-0.3.0 - (package - (name "go-github-com-google-go-cmp") - (version "0.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1hyxx3434zshl2m9ja78gwlkg1rx9yl6diqa7dnjb31xz5x4gbjj")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd - (package - (name "go-google-golang-org-protobuf") - (version "0.0.0-20200109180630-ec00e32a8dfd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0w6lp9w2avxcpxwzzhspr209ifhyjagvs23k0vykfdqahl1aplrh")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.3.0" - ,go-github-com-google-go-cmp-0.3.0))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.4.0-rc.1 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.0-rc.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "186rirvbfgv6hrxp27ipx2cdpv19qifdd20biqfdm01wiyclqimn")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd" - ,go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd) - ("go-github-com-google-go-cmp-0.3.1" - ,go-github-com-google-go-cmp-0.3.1))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-github-com-google-go-cmp-0.3.1 - (package - (name "go-github-com-google-go-cmp") - (version "0.3.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1caw49i0plkjxir7kdf5qhwls3krqwfmi7g4h392rdfwi3kfahx1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64 - (package - (name "go-google-golang-org-protobuf") - (version "0.0.0-20200221191635-4d8936d0db64") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0563bsvdjj6k0sgwqd5yzrgfiax7sp3lcwh608gync5sv9fx39cy")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.3.1" - ,go-github-com-google-go-cmp-0.3.1) - ("go-github-com-golang-protobuf-1.4.0-rc.1" - ,go-github-com-golang-protobuf-1.4.0-rc.1))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.0-rc.1.0.20200221234624-67d41d38c208") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ykxhg3zixmw25pd435f8h16wnz1g00jpcmmg3xl030kksgqgpp6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64" - ,go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60 - (package - (name "go-google-golang-org-protobuf") - (version "0.0.0-20200228230310-ab0ca4ff8a60") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1rinspcznfp85yz4vrlf4h38hr576virgv8lcs22bsylqga808sd")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208" - ,go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.4.0-rc.2 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.0-rc.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1hd43hjv5zl6bjbmhm5phx74bw4xajsi73m5zky2k56za4mpgzzc")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60" - ,go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967 - (package - (name "go-google-golang-org-protobuf") - (version "1.20.1-0.20200309200217-e05f789c0967") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "17wmy89hnmpkwc63rfcjp50q15s9f1rhmczg06c3z9yy41zk82w9")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.0-rc.2" - ,go-github-com-golang-protobuf-1.4.0-rc.2))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.0-rc.4.0.20200313231945-b860323f09d0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1zj6cwshx0l5n9cn2cpbikzzb79px5dmkpc4p19zy1iif5r5p0z0")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967" - ,go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-1.21.0 - (package - (name "go-google-golang-org-protobuf") - (version "1.21.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12bwln8z1lf9105gdp6ip0rx741i4yfz1520gxnp8861lh9wcl63")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0" - ,go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.4.0 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fjvl5n77abxz5qsd4mgyvjq19x43c5bfvmq62mq3m5plx6zksc8")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.21.0" - ,go-google-golang-org-protobuf-1.21.0) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543 - (package - (name "go-golang-org-x-xerrors") - (version "0.0.0-20191204190536-9bdfabe68543") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/xerrors") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1yjfi1bk9xb81lqn85nnm13zz725wazvrx3b50hx19qmwg7a4b0c")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/xerrors")) - (home-page "https://golang.org/x/xerrors") - (synopsis #f) - (description - "Package xerrors implements functions to manipulate errors. -") - (license license:bsd-3))) - -(define-public go-github-com-google-go-cmp-0.4.0 - (package - (name "go-github-com-google-go-cmp") - (version "0.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1x5pvl3fb5sbyng7i34431xycnhmx8xx94gq2n19g6p0vz68z2v2")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc - (package - (name "go-google-golang-org-protobuf") - (version "1.23.1-0.20200526195155-81db48ad09cc") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "02cpr8rqr5wmpj2fqb32mzilsdnxkh52g1jz95a3ck3gzffc7hh1")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.0" - ,go-github-com-golang-protobuf-1.4.0))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc - (package - (name "go-honnef-co-go-tools") - (version "0.0.0-20190523083050-ea95bdfd59fc") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/dominikh/go-tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1763nw7pwpzkvzfnm63dgzcgbq9hwmq5l1nffchnhh77vgkaq4ic")))) - (build-system go-build-system) - (arguments '(#:import-path "honnef.co/go/tools")) - (home-page "https://honnef.co/go/tools") - (synopsis "Documentation") - (description - "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, -offers simplifications, and enforces style rules.") - (license license:expat))) - -(define-public go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013 - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20200526211855-cb27e3aa2013") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ml73ghqcwbz7ipfk8fnxb5indcml49b5p7vp1fsyny0abyyrmxf")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" - ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) - ("go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc" - ,go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-golang-protobuf-1.4.1" - ,go-github-com-golang-protobuf-1.4.1))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-google-golang-org-protobuf-1.25.0 - (package - (name "go-google-golang-org-protobuf") - (version "1.25.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0apfl42x166dh96zfq5kvv4b4ax9xljik6bq1mnvn2240ir3mc23")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" - ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) - ("go-github-com-google-go-cmp-0.5.0" - ,go-github-com-google-go-cmp-0.5.0) - ("go-github-com-golang-protobuf-1.4.1" - ,go-github-com-golang-protobuf-1.4.1))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-google-golang-org-grpc-1.38.0 - (package - (name "go-google-golang-org-grpc") - (version "1.38.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "08lgqdvbd0i4qwsv1y37qmf8mhsy9ywzx73ixiwih7xhnalrf7xl")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.25.0" - ,go-google-golang-org-protobuf-1.25.0) - ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" - ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) - ("go-github-com-google-go-cmp-0.5.0" - ,go-github-com-google-go-cmp-0.5.0) - ("go-github-com-golang-protobuf-1.4.2" - ,go-github-com-golang-protobuf-1.4.2) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-envoyproxy-go-control-plane-0.9.9-0.20210217033140-668b12f5399d" - ,go-github-com-envoyproxy-go-control-plane-0.9.9-0.20210217033140-668b12f5399d) - ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" - ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-github-com-bketelsen-crypt-0.0.4 - (package - (name "go-github-com-bketelsen-crypt") - (version "0.0.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/bketelsen/crypt") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0fyfcvy73zskd1p1mv0cn03anxkkr5gvlawsc87znqk60hdypq3v")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/bketelsen/crypt")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.38.0" ,go-google-golang-org-grpc-1.38.0) - ("go-google-golang-org-api-0.44.0" ,go-google-golang-org-api-0.44.0) - ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" - ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9) - ("go-go-etcd-io-etcd-client-v2-2.305.0" - ,go-go-etcd-io-etcd-client-v2-2.305.0) - ("go-github-com-hashicorp-consul-api-1.1.0" - ,go-github-com-hashicorp-consul-api-1.1.0) - ("go-cloud-google-com-go-firestore-1.1.0" - ,go-cloud-google-com-go-firestore-1.1.0))) - (home-page "https://github.com/bketelsen/crypt") - (synopsis "crypt") - (description - "You can use crypt as a command line tool or as a configuration library:") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20191005200804-aed5e4c7ecf9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0wsdsbl9n61l99z0cvib2xzg56fsfgky4yc5xapdw9ywx9h0zm3a")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-fsnotify-fsnotify-1.4.9 - (package - (name "go-github-com-fsnotify-fsnotify") - (version "1.4.9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/fsnotify/fsnotify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1i1r72knpbfwwql9frn9bqc3nhfc2ai5m6qllcyr6wban62lr40x")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/fsnotify/fsnotify")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9" - ,go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9))) - (home-page "https://github.com/fsnotify/fsnotify") - (synopsis "File system notifications for Go") - (description - "Package fsnotify provides a platform-independent interface for file system notifications. -") - (license license:bsd-3))) - -(define-public go-github-com-hashicorp-hcl-1.0.0 - (package - (name "go-github-com-hashicorp-hcl") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/hcl") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0q6ml0qqs0yil76mpn4mdx4lp94id8vbv575qm60jzl1ijcl5i66")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/hcl")) - (propagated-inputs - `(("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/hashicorp/hcl") - (synopsis "HCL") - (description "Package hcl decodes HCL into usable Go structures. -") - (license license:mpl2.0))) - -(define-public go-github-com-magiconair-properties-1.8.5 - (package - (name "go-github-com-magiconair-properties") - (version "1.8.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/magiconair/properties") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0v4agnkhc30fblbmhs0gq2bikhdnnmqmpp4phrnza68m04j5hxbn")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/magiconair/properties")) - (home-page "https://github.com/magiconair/properties") - (synopsis "Overview") - (description - "Package properties provides functions for reading and writing -ISO-8859-1 and UTF-8 encoded .properties files and has -support for recursive property expansion. -") - (license license:bsd-2))) - -(define-public go-github-com-mitchellh-mapstructure-1.4.1 - (package - (name "go-github-com-mitchellh-mapstructure") - (version "1.4.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mitchellh/mapstructure") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1m98wiadb6kdnzv21m8p7nk1jb30zpjh47fkb1dg251r3m7bj47v")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mitchellh/mapstructure")) - (home-page "https://github.com/mitchellh/mapstructure") - (synopsis "mapstructure") - (description - "Package mapstructure exposes functionality to convert one arbitrary -Go type into another, typically to convert a map[string]interface{} -into a native Go structure. -") - (license license:expat))) - -(define-public go-github-com-pelletier-go-toml-1.9.3 - (package - (name "go-github-com-pelletier-go-toml") - (version "1.9.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pelletier/go-toml") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0cqwnvlgs1wgdgjxlwv8j52f7d6syniadr51sjh2fya99m5wzvsn")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pelletier/go-toml")) - (home-page "https://github.com/pelletier/go-toml") - (synopsis "go-toml") - (description "Package toml is a TOML parser and manipulation library. -") - (license #f))) - -(define-public go-github-com-gopherjs-gopherjs-0.0.0-20181017120253-0766667cb4d1 - (package - (name "go-github-com-gopherjs-gopherjs") - (version "0.0.0-20181017120253-0766667cb4d1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gopherjs/gopherjs") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "13pfc9sxiwjky2lm1xb3i3lcisn8p6mgjk2d927l7r92ysph8dmw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/gopherjs/gopherjs")) - (home-page "https://github.com/gopherjs/gopherjs") - (synopsis "GopherJS - A compiler from Go to JavaScript") - (description - "GopherJS compiles Go code (@url{https://golang.org/,golang.org}) to pure JavaScript code. Its main purpose is to give you the opportunity to write front-end code in Go which will still run in all browsers.") - (license license:bsd-2))) - -(define-public go-github-com-jtolds-gls-4.20.0+incompatible - (package - (name "go-github-com-jtolds-gls") - (version "4.20.0+incompatible") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/jtolio/gls") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1k7xd2q2ysv2xsh373qs801v6f359240kx0vrl0ydh7731lngvk6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/jtolds/gls")) - (home-page "https://github.com/jtolds/gls") - (synopsis "gls") - (description "Package gls implements goroutine-local storage. -") - (license license:expat))) - -(define-public go-github-com-smartystreets-assertions-0.0.0-20180927180507-b2de0cb4f26d - (package - (name "go-github-com-smartystreets-assertions") - (version "0.0.0-20180927180507-b2de0cb4f26d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/smartystreets/assertions") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1i7ldgavgl35c7gk25p7bvdr282ckng090zr4ch9mk1705akx09y")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/smartystreets/assertions")) - (home-page "https://github.com/smartystreets/assertions") - (synopsis #f) - (description - "Package assertions contains the implementations for all assertions which -are referenced in goconvey's `convey` package -(github.com/smartystreets/goconvey/convey) and gunit (github.com/smartystreets/gunit) -for use with the So(...) method. -They can also be used in traditional Go test functions and even in -applications. -") - (license license:expat))) - -(define-public go-golang-org-x-net-0.0.0-20190311183353-d8887717615a - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190311183353-d8887717615a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1wfm6ngxjyj7v5a2dqib6lw8bb2rdnf1kl48diykxjrsddn0s163")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20190328211700-ab21143f2384 - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20190328211700-ab21143f2384") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "15fk0psk53pplpyghz55bhay0kvsv5rikmn5hwgjnnyxq9vfy178")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-github-com-smartystreets-goconvey-1.6.4 - (package - (name "go-github-com-smartystreets-goconvey") - (version "1.6.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/smartystreets/goconvey") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "07zjxwszayal88z1j2bwnqrsa32vg8l4nivks5yfr9j8xfsw7n6m")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/smartystreets/goconvey")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20190328211700-ab21143f2384" - ,go-golang-org-x-tools-0.0.0-20190328211700-ab21143f2384) - ("go-github-com-smartystreets-assertions-0.0.0-20180927180507-b2de0cb4f26d" - ,go-github-com-smartystreets-assertions-0.0.0-20180927180507-b2de0cb4f26d) - ("go-github-com-jtolds-gls-4.20.0+incompatible" - ,go-github-com-jtolds-gls-4.20.0+incompatible) - ("go-github-com-gopherjs-gopherjs-0.0.0-20181017120253-0766667cb4d1" - ,go-github-com-gopherjs-gopherjs-0.0.0-20181017120253-0766667cb4d1))) - (home-page "https://github.com/smartystreets/goconvey") - (synopsis "GoConvey is awesome Go testing") - (description - "This executable provides an HTTP server that watches for file system changes -to .go files within the working directory (and all nested go packages). -Navigating to the configured host and port in a web browser will display the -latest results of running `go test` in each go package. -") - (license license:expat))) - -(define-public go-github-com-kr-fs-0.1.0 - (package - (name "go-github-com-kr-fs") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/fs") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "11zg176x9hr9q7fsk95r6q0wf214gg4czy02slax4x56n79g6a7q")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/fs")) - (home-page "https://github.com/kr/fs") - (synopsis #f) - (description "Package fs provides filesystem-related functions. -") - (license license:bsd-3))) - -(define-public go-github-com-pkg-errors-0.8.1 - (package - (name "go-github-com-pkg-errors") - (version "0.8.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pkg/errors") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0g5qcb4d4fd96midz0zdk8b9kz8xkzwfa8kr1cliqbg8sxsy5vd1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pkg/errors")) - (home-page "https://github.com/pkg/errors") - (synopsis "errors") - (description "Package errors provides simple error handling primitives. -") - (license license:bsd-2))) - -(define-public go-gopkg-in-yaml-v2-2.2.2 - (package - (name "go-gopkg-in-yaml-v2") - (version "2.2.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "01wj12jzsdqlnidpyjssmj0r4yavlqy7dwrg7adqd8dicjc4ncsa")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v2") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language. -") - (license license:asl2.0))) - -(define-public go-github-com-stretchr-testify-1.4.0 - (package - (name "go-github-com-stretchr-testify") - (version "1.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/testify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "187i5g88sxfy4vxpm7dw1gwv29pa2qaq475lxrdh5livh69wqfjb")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/testify")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) - ("go-github-com-stretchr-objx-0.1.0" - ,go-github-com-stretchr-objx-0.1.0) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.0" - ,go-github-com-davecgh-go-spew-1.1.0))) - (home-page "https://github.com/stretchr/testify") - (synopsis "Testify - Thou Shalt Write Tests") - (description - "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -") - (license license:expat))) - -(define-public go-github-com-pkg-sftp-1.10.1 - (package - (name "go-github-com-pkg-sftp") - (version "1.10.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pkg/sftp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0iw6lijdljwh5xw5hsy0b578cr52h6vvm7hbnzlrvciwhh4sfhhp")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pkg/sftp")) - (propagated-inputs - `(("go-golang-org-x-crypto-0.0.0-20190820162420-60c769a6c586" - ,go-golang-org-x-crypto-0.0.0-20190820162420-60c769a6c586) - ("go-github-com-stretchr-testify-1.4.0" - ,go-github-com-stretchr-testify-1.4.0) - ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) - ("go-github-com-kr-fs-0.1.0" ,go-github-com-kr-fs-0.1.0))) - (home-page "https://github.com/pkg/sftp") - (synopsis "sftp") - (description - "Package sftp implements the SSH File Transfer Protocol as described in -@url{https://tools.ietf.org/html/draft-ietf-secsh-filexfer-02,https://tools.ietf.org/html/draft-ietf-secsh-filexfer-02} -") - (license license:bsd-2))) - -(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190215142949-d0b11bdaac8a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20190308221718-c2843e01d9a2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-text-0.3.0 - (package - (name "go-golang-org-x-text") - (version "0.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/text")) - (home-page "https://golang.org/x/text") - (synopsis "Go Text") - (description - "text is a repository of text-related packages related to internationalization -(i18n) and localization (l10n), such as character encodings, text -transformations, and locale-specific text handling. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190404232315-eb5bcb51f2a3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "17k4g8krxbl84gzcs275b7gsh66dzm15fdxivjnx9xz8q84l4kby")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20190412213103-97732733099d - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190412213103-97732733099d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "118hkp01i4z1f5h6hcjm0ff2ngqhrzj1f7731n0kw8dr6hvbx0sw")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-crypto-0.0.0-20190820162420-60c769a6c586 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20190820162420-60c769a6c586") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1wy2pg38dz29vf1h48yfqf8m3jqvwnbdw8vkk3ldlj5d8fbbbmv8")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" - ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) - ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" - ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20180917221912-90fa682c2a6e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-golang-org-x-text-0.3.3 - (package - (name "go-golang-org-x-text") - (version "0.3.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19pihqm3phyndmiw6i42pdv6z1rbvlqlsnhsyqf9gsnn0qnmqqlh")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/text")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" - ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) - (home-page "https://golang.org/x/text") - (synopsis "Go Text") - (description - "text is a repository of text-related packages related to internationalization -(i18n) and localization (l10n), such as character encodings, text -transformations, and locale-specific text handling. -") - (license license:bsd-3))) - -(define-public go-github-com-spf13-afero-1.6.0 - (package - (name "go-github-com-spf13-afero") - (version "1.6.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/spf13/afero") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0yi8p0yxiidpcg4cagxg2iyqcaapsng89rak4qyxmgails2fqg37")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/spf13/afero")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) - ("go-golang-org-x-crypto-0.0.0-20190820162420-60c769a6c586" - ,go-golang-org-x-crypto-0.0.0-20190820162420-60c769a6c586) - ("go-github-com-pkg-sftp-1.10.1" ,go-github-com-pkg-sftp-1.10.1))) - (home-page "https://github.com/spf13/afero") - (synopsis "Overview") - (description - "This package provides a FileSystem Abstraction System for Go") - (license license:asl2.0))) - -(define-public go-github-com-spf13-cast-1.3.1 - (package - (name "go-github-com-spf13-cast") - (version "1.3.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/spf13/cast") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0lb84788glr0qzrq2ifi36rgvp96qrgywvxrr3ggq5hrbr38hgn1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/spf13/cast")) - (propagated-inputs - `(("go-github-com-stretchr-testify-1.2.2" - ,go-github-com-stretchr-testify-1.2.2) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/spf13/cast") - (synopsis "cast") - (description "Package cast provides easy and safe casting in Go. -") - (license license:expat))) - -(define-public go-github-com-davecgh-go-spew-1.1.1 - (package - (name "go-github-com-davecgh-go-spew") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/davecgh/go-spew") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/davecgh/go-spew")) - (home-page "https://github.com/davecgh/go-spew") - (synopsis "go-spew") - (description - "Go-spew implements a deep pretty printer for Go data structures to aid in -debugging. A comprehensive suite of tests with 100% test coverage is provided -to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage -report. Go-spew is licensed under the liberal ISC license, so it may be used in -open source or commercial projects.") - (license license:isc))) - -(define-public go-github-com-stretchr-testify-1.2.2 - (package - (name "go-github-com-stretchr-testify") - (version "1.2.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/testify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0dlszlshlxbmmfxj5hlwgv3r22x0y1af45gn1vd198nvvs3pnvfs")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/testify")) - (home-page "https://github.com/stretchr/testify") - (synopsis "Testify - Thou Shalt Write Tests") - (description - "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -") - (license license:expat))) - -(define-public go-github-com-spf13-jwalterweatherman-1.1.0 - (package - (name "go-github-com-spf13-jwalterweatherman") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/spf13/jwalterweatherman") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ywmkwci5zyd88ijym6f30fj5c0k2yayxarkmnazf5ybljv50q7b")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/spf13/jwalterweatherman")) - (propagated-inputs - `(("go-github-com-stretchr-testify-1.2.2" - ,go-github-com-stretchr-testify-1.2.2) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/spf13/jwalterweatherman") - (synopsis "jWalterWeatherman") - (description - "Seamless printing to the terminal (stdout) and logging to a io.Writer -(file) thatâ\x80\x99s as easy to use as fmt.Println.") - (license license:expat))) - -(define-public go-github-com-spf13-pflag-1.0.5 - (package - (name "go-github-com-spf13-pflag") - (version "1.0.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/spf13/pflag") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0gpmacngd0gpslnbkzi263f5ishigzgh6pbdv9hp092rnjl4nd31")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/spf13/pflag")) - (home-page "https://github.com/spf13/pflag") - (synopsis "Description") - (description - "Package pflag is a drop-in replacement for Go's flag package, implementing -POSIX/GNU-style --flags. -") - (license license:bsd-3))) - -(define-public go-github-com-davecgh-go-spew-1.1.0 - (package - (name "go-github-com-davecgh-go-spew") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/davecgh/go-spew") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/davecgh/go-spew")) - (home-page "https://github.com/davecgh/go-spew") - (synopsis "go-spew") - (description - "Go-spew implements a deep pretty printer for Go data structures to aid in -debugging. A comprehensive suite of tests with 100% test coverage is provided -to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage -report. Go-spew is licensed under the liberal ISC license, so it may be used in -open source or commercial projects.") - (license license:isc))) - -(define-public go-github-com-pmezard-go-difflib-1.0.0 - (package - (name "go-github-com-pmezard-go-difflib") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pmezard/go-difflib") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pmezard/go-difflib")) - (home-page "https://github.com/pmezard/go-difflib") - (synopsis "go-difflib") - (description - "Go-difflib is a partial port of python 3 difflib package. Its main goal -was to make unified and context diff available in pure Go, mostly for -testing purposes.") - (license license:bsd-3))) - -(define-public go-github-com-stretchr-objx-0.1.0 - (package - (name "go-github-com-stretchr-objx") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/objx") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/objx")) - (home-page "https://github.com/stretchr/objx") - (synopsis "Objx") - (description - "Objx - Go package for dealing with maps, slices, JSON and other data. -") - (license license:expat))) - -(define-public go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c - (package - (name "go-gopkg-in-yaml-v3") - (version "3.0.0-20200313102051-9f266ea9e77c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v3") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1bbai3lzb50m0x2vwsdbagrbhvfylj9k1m32hgbqwldqx4p9ay35")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v3") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language. -") - (license #f))) - -(define-public go-github-com-stretchr-testify-1.7.0 - (package - (name "go-github-com-stretchr-testify") - (version "1.7.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/testify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ixgjsvafr3513pz3r6pmgk074s2dxkll0dadvl25gkf30rkmh10")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/testify")) - (propagated-inputs - `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" - ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) - ("go-github-com-stretchr-objx-0.1.0" - ,go-github-com-stretchr-objx-0.1.0) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.0" - ,go-github-com-davecgh-go-spew-1.1.0))) - (home-page "https://github.com/stretchr/testify") - (synopsis "Testify - Thou Shalt Write Tests") - (description - "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -") - (license license:expat))) - -(define-public go-github-com-subosito-gotenv-1.2.0 - (package - (name "go-github-com-subosito-gotenv") - (version "1.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/subosito/gotenv") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0mav91j7r4arjkpq5zcf9j74f6pww8ic53x43wy7kg3ibw31yjs5")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/subosito/gotenv")) - (home-page "https://github.com/subosito/gotenv") - (synopsis "gotenv") - (description - "Package gotenv provides functionality to dynamically load the environment variables -") - (license license:expat))) - -(define-public go-gopkg-in-ini-v1-1.62.0 - (package - (name "go-gopkg-in-ini-v1") - (version "1.62.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/ini.v1") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1dm9ydqyflasp5li22kb0w73s6kp2swii8naqfhnz64v171gmm5v")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/ini.v1" #:unpack-path "gopkg.in/ini.v1")) - (home-page "https://gopkg.in/ini.v1") - (synopsis "INI") - (description - "Package ini provides INI file read and write functionality in Go. -") - (license license:asl2.0))) - -(define-public go-github-com-spf13-viper-1.8.1 - (package - (name "go-github-com-spf13-viper") - (version "1.8.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/spf13/viper") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0jcsvd9l05pv10rma6zicp44q2mlvxj0qlhnf4zcg2pymb5i0hq6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/spf13/viper")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) - ("go-gopkg-in-ini-v1-1.62.0" ,go-gopkg-in-ini-v1-1.62.0) - ("go-github-com-subosito-gotenv-1.2.0" - ,go-github-com-subosito-gotenv-1.2.0) - ("go-github-com-stretchr-testify-1.7.0" - ,go-github-com-stretchr-testify-1.7.0) - ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) - ("go-github-com-spf13-jwalterweatherman-1.1.0" - ,go-github-com-spf13-jwalterweatherman-1.1.0) - ("go-github-com-spf13-cast-1.3.1" ,go-github-com-spf13-cast-1.3.1) - ("go-github-com-spf13-afero-1.6.0" ,go-github-com-spf13-afero-1.6.0) - ("go-github-com-smartystreets-goconvey-1.6.4" - ,go-github-com-smartystreets-goconvey-1.6.4) - ("go-github-com-pelletier-go-toml-1.9.3" - ,go-github-com-pelletier-go-toml-1.9.3) - ("go-github-com-mitchellh-mapstructure-1.4.1" - ,go-github-com-mitchellh-mapstructure-1.4.1) - ("go-github-com-magiconair-properties-1.8.5" - ,go-github-com-magiconair-properties-1.8.5) - ("go-github-com-hashicorp-hcl-1.0.0" - ,go-github-com-hashicorp-hcl-1.0.0) - ("go-github-com-fsnotify-fsnotify-1.4.9" - ,go-github-com-fsnotify-fsnotify-1.4.9) - ("go-github-com-bketelsen-crypt-0.0.4" - ,go-github-com-bketelsen-crypt-0.0.4))) - (home-page "https://github.com/spf13/viper") - (synopsis "Install") - (description "Many Go projects are built using Viper including:") - (license license:expat))) - -(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 - (package - (name "go-gopkg-in-check-v1") - (version "0.0.0-20161208181325-20d25e280405") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/check.v1") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) - (home-page "https://gopkg.in/check.v1") - (synopsis "Instructions") - (description - "Package check is a rich testing extension for Go's testing package. -") - (license license:bsd-2))) - -(define-public go-gopkg-in-yaml-v2-2.4.0 - (package - (name "go-gopkg-in-yaml-v2") - (version "2.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1pbmrpj7gcws34g8vwna4i2nhm9p6235piww36436xhyaa10cldr")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v2") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language. -") - (license license:asl2.0))) - -(define-public go-github-com-spf13-cobra-1.2.1 - (package - (name "go-github-com-spf13-cobra") - (version "1.2.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/spf13/cobra") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "091kz3xnlsgpqb90fc5nhjr4yfr8b8sjnyl0zd4wm1fgzkpw09jh")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/spf13/cobra")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) - ("go-github-com-spf13-viper-1.8.1" ,go-github-com-spf13-viper-1.8.1) - ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) - ("go-github-com-inconshreveable-mousetrap-1.0.0" - ,go-github-com-inconshreveable-mousetrap-1.0.0) - ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" - ,go-github-com-cpuguy83-go-md2man-v2-2.0.0))) - (home-page "https://github.com/spf13/cobra") - (synopsis "Table of Contents") - (description - "Package cobra is a commander providing a simple interface to create powerful modern CLI interfaces. -In addition to providing an interface, Cobra simultaneously provides a controller to organize your application code. -") - (license license:asl2.0))) - -(define-public go-github-com-spf13-pflag-1.0.5 - (package - (name "go-github-com-spf13-pflag") - (version "1.0.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/spf13/pflag") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0gpmacngd0gpslnbkzi263f5ishigzgh6pbdv9hp092rnjl4nd31")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/spf13/pflag")) - (home-page "https://github.com/spf13/pflag") - (synopsis "Description") - (description - "Package pflag is a drop-in replacement for Go's flag package, implementing -POSIX/GNU-style --flags. -") - (license license:bsd-3))) - -(define-public go-github-com-sylabs-json-resp-0.8.0 - (package - (name "go-github-com-sylabs-json-resp") - (version "0.8.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sylabs/json-resp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ygr4mavaj1pp78hkkphhn3ydd923n3klwnx8x7v4ajqzx4cx4id")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/sylabs/json-resp")) - (home-page "https://github.com/sylabs/json-resp") - (synopsis "JSON Response") - (description - "The @code{json-resp} package contains a small set of functions that are used to marshall and unmarshall response data and errors in JSON format.") - (license license:bsd-3))) - -(define-public go-github-com-go-log-log-0.2.0 - (package - (name "go-github-com-go-log-log") - (version "0.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/go-log/log") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1idnqv4yvkmdh3wcsgvhcpak9z6ix8dsifdjq5kfbbnskdq5rmvg")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/go-log/log")) - (home-page "https://github.com/go-log/log") - (synopsis "Log") - (description "Package log provides a log interface -") - (license license:expat))) - -(define-public go-github-com-gorilla-websocket-1.4.2 - (package - (name "go-github-com-gorilla-websocket") - (version "1.4.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gorilla/websocket") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0mkm9w6kjkrlzab5wh8p4qxkc0icqawjbvr01d2nk6ykylrln40s")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/gorilla/websocket")) - (home-page "https://github.com/gorilla/websocket") - (synopsis "Gorilla WebSocket") - (description - "Package websocket implements the WebSocket protocol defined in @url{https://rfc-editor.org/rfc/rfc6455.html,RFC 6455}. -") - (license license:bsd-2))) - -(define-public go-github-com-sylabs-json-resp-0.8.0 - (package - (name "go-github-com-sylabs-json-resp") - (version "0.8.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sylabs/json-resp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ygr4mavaj1pp78hkkphhn3ydd923n3klwnx8x7v4ajqzx4cx4id")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/sylabs/json-resp")) - (home-page "https://github.com/sylabs/json-resp") - (synopsis "JSON Response") - (description - "The @code{json-resp} package contains a small set of functions that are used to marshall and unmarshall response data and errors in JSON format.") - (license license:bsd-3))) - -(define-public go-github-com-sylabs-scs-build-client-0.2.1 - (package - (name "go-github-com-sylabs-scs-build-client") - (version "0.2.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sylabs/scs-build-client") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1brn8w73978hvgrzqm0lsxflb5vp7g5b32bmgfb1diymd2ajlqhv")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/sylabs/scs-build-client")) - (propagated-inputs - `(("go-github-com-sylabs-json-resp-0.8.0" - ,go-github-com-sylabs-json-resp-0.8.0) - ("go-github-com-gorilla-websocket-1.4.2" - ,go-github-com-gorilla-websocket-1.4.2) - ("go-github-com-go-log-log-0.2.0" ,go-github-com-go-log-log-0.2.0))) - (home-page "https://github.com/sylabs/scs-build-client") - (synopsis "SCS Build Client") - (description - "This project provides a Go client for the Singularity Container Services (SCS) Build Service.") - (license license:bsd-3))) - -(define-public go-github-com-sylabs-json-resp-0.7.1 - (package - (name "go-github-com-sylabs-json-resp") - (version "0.7.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sylabs/json-resp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fj07wgc9s8xmy04hdgmb87r4fl968y6kxgxyh0lx3b1mf9xa2dw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/sylabs/json-resp")) - (home-page "https://github.com/sylabs/json-resp") - (synopsis "JSON Response") - (description - "The @code{json-resp} package contains a small set of functions that are used to marshall and unmarshall response data and errors in JSON format.") - (license license:bsd-3))) - -(define-public go-github-com-sylabs-scs-key-client-0.6.2 - (package - (name "go-github-com-sylabs-scs-key-client") - (version "0.6.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sylabs/scs-key-client") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18giffs0ybfr5zw64xlqf9isr3apgh2r3s2fwf0n8d7n21yjg151")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/sylabs/scs-key-client")) - (propagated-inputs - `(("go-github-com-sylabs-json-resp-0.7.1" - ,go-github-com-sylabs-json-resp-0.7.1))) - (home-page "https://github.com/sylabs/scs-key-client") - (synopsis "SCS Key Client") - (description - "This project provides a Go client for the Singularity Container Services (SCS) Key Service.") - (license license:bsd-3))) - -(define-public go-github-com-blang-semver-v4-4.0.0 - (package - (name "go-github-com-blang-semver-v4") - (version "4.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/blang/semver") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "14h9ys4n4kx9cbj42lkdf4i5k3nkll6sd62jcvl7cs565v6fiknz")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/blang/semver/v4")) - (home-page "https://github.com/blang/semver") - (synopsis #f) - (description #f) - (license license:expat))) - -(define-public go-github-com-go-log-log-0.2.0 - (package - (name "go-github-com-go-log-log") - (version "0.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/go-log/log") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1idnqv4yvkmdh3wcsgvhcpak9z6ix8dsifdjq5kfbbnskdq5rmvg")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/go-log/log")) - (home-page "https://github.com/go-log/log") - (synopsis "Log") - (description "Package log provides a log interface -") - (license license:expat))) - -(define-public go-github-com-davecgh-go-spew-1.1.0 - (package - (name "go-github-com-davecgh-go-spew") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/davecgh/go-spew") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/davecgh/go-spew")) - (home-page "https://github.com/davecgh/go-spew") - (synopsis "go-spew") - (description - "Go-spew implements a deep pretty printer for Go data structures to aid in -debugging. A comprehensive suite of tests with 100% test coverage is provided -to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage -report. Go-spew is licensed under the liberal ISC license, so it may be used in -open source or commercial projects.") - (license license:isc))) - -(define-public go-github-com-pmezard-go-difflib-1.0.0 - (package - (name "go-github-com-pmezard-go-difflib") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pmezard/go-difflib") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pmezard/go-difflib")) - (home-page "https://github.com/pmezard/go-difflib") - (synopsis "go-difflib") - (description - "Go-difflib is a partial port of python 3 difflib package. Its main goal -was to make unified and context diff available in pure Go, mostly for -testing purposes.") - (license license:bsd-3))) - -(define-public go-github-com-stretchr-objx-0.1.0 - (package - (name "go-github-com-stretchr-objx") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/objx") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/objx")) - (home-page "https://github.com/stretchr/objx") - (synopsis "Objx") - (description - "Objx - Go package for dealing with maps, slices, JSON and other data. -") - (license license:expat))) - -(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 - (package - (name "go-gopkg-in-check-v1") - (version "0.0.0-20161208181325-20d25e280405") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/check.v1") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) - (home-page "https://gopkg.in/check.v1") - (synopsis "Instructions") - (description - "Package check is a rich testing extension for Go's testing package. -") - (license license:bsd-2))) - -(define-public go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c - (package - (name "go-gopkg-in-yaml-v3") - (version "3.0.0-20200313102051-9f266ea9e77c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v3") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1bbai3lzb50m0x2vwsdbagrbhvfylj9k1m32hgbqwldqx4p9ay35")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v3") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language. -") - (license #f))) - -(define-public go-github-com-stretchr-testify-1.7.0 - (package - (name "go-github-com-stretchr-testify") - (version "1.7.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/testify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ixgjsvafr3513pz3r6pmgk074s2dxkll0dadvl25gkf30rkmh10")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/testify")) - (propagated-inputs - `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" - ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) - ("go-github-com-stretchr-objx-0.1.0" - ,go-github-com-stretchr-objx-0.1.0) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.0" - ,go-github-com-davecgh-go-spew-1.1.0))) - (home-page "https://github.com/stretchr/testify") - (synopsis "Testify - Thou Shalt Write Tests") - (description - "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -") - (license license:expat))) - -(define-public go-github-com-sylabs-json-resp-0.7.1 - (package - (name "go-github-com-sylabs-json-resp") - (version "0.7.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sylabs/json-resp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fj07wgc9s8xmy04hdgmb87r4fl968y6kxgxyh0lx3b1mf9xa2dw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/sylabs/json-resp")) - (home-page "https://github.com/sylabs/json-resp") - (synopsis "JSON Response") - (description - "The @code{json-resp} package contains a small set of functions that are used to marshall and unmarshall response data and errors in JSON format.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20200317015054-43a5402ce75a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0j6zrrb81qjr1926kkwmn0di9a0jn8qyjd9dw614rfkihxgq1vsm")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the -ones provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-github-com-sylabs-scs-library-client-1.0.5 - (package - (name "go-github-com-sylabs-scs-library-client") - (version "1.0.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sylabs/scs-library-client") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1dr8x33gaqm7a6q2hha2v2dyqlnhjig9kmmgarrr0a16z2rpdv0l")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/sylabs/scs-library-client")) - (propagated-inputs - `(("go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a" - ,go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a) - ("go-github-com-sylabs-json-resp-0.7.1" - ,go-github-com-sylabs-json-resp-0.7.1) - ("go-github-com-stretchr-testify-1.7.0" - ,go-github-com-stretchr-testify-1.7.0) - ("go-github-com-go-log-log-0.2.0" ,go-github-com-go-log-log-0.2.0) - ("go-github-com-blang-semver-v4-4.0.0" - ,go-github-com-blang-semver-v4-4.0.0))) - (home-page "https://github.com/sylabs/scs-library-client") - (synopsis "SCS Library Client") - (description - "This project provides a Go client for the Singularity Container Services (SCS) Library Service.") - (license license:bsd-3))) - -(define-public go-github-com-burntsushi-toml-0.3.1 - (package - (name "go-github-com-burntsushi-toml") - (version "0.3.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/BurntSushi/toml") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fjdwwfzyzllgiwydknf1pwjvy49qxfsczqx5gz3y0izs7as99j6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/BurntSushi/toml")) - (home-page "https://github.com/BurntSushi/toml") - (synopsis "TOML parser and encoder for Go with reflection") - (description - "Package toml implements decoding and encoding of TOML files. -") - (license license:expat))) - -(define-public go-github-com-pmezard-go-difflib-1.0.0 - (package - (name "go-github-com-pmezard-go-difflib") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pmezard/go-difflib") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pmezard/go-difflib")) - (home-page "https://github.com/pmezard/go-difflib") - (synopsis "go-difflib") - (description - "Go-difflib is a partial port of python 3 difflib package. Its main goal -was to make unified and context diff available in pure Go, mostly for -testing purposes.") - (license license:bsd-3))) - -(define-public go-github-com-russross-blackfriday-v2-2.0.1 - (package - (name "go-github-com-russross-blackfriday-v2") - (version "2.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/russross/blackfriday") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0nlz7isdd4rgnwzs68499hlwicxz34j2k2a0b8jy0y7ycd2bcr5j")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/russross/blackfriday/v2")) - (home-page "https://github.com/russross/blackfriday") - (synopsis "Blackfriday") - (description "Package blackfriday is a markdown processor. -") - (license license:bsd-2))) - -(define-public go-github-com-shurcool-sanitized-anchor-name-1.0.0 - (package - (name "go-github-com-shurcool-sanitized-anchor-name") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/shurcooL/sanitized_anchor_name") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1gv9p2nr46z80dnfjsklc6zxbgk96349sdsxjz05f3z6wb6m5l8f")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/shurcooL/sanitized_anchor_name")) - (home-page "https://github.com/shurcooL/sanitized_anchor_name") - (synopsis "sanitized_anchor_name") - (description - "Package sanitized_anchor_name provides a func to create sanitized anchor names. -") - (license license:expat))) - -(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d - (package - (name "go-github-com-cpuguy83-go-md2man-v2") - (version "2.0.0-20190314233015-f79a8a8ca69d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cpuguy83/go-md2man") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) - (propagated-inputs - `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" - ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) - ("go-github-com-russross-blackfriday-v2-2.0.1" - ,go-github-com-russross-blackfriday-v2-2.0.1) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0))) - (home-page "https://github.com/cpuguy83/go-md2man") - (synopsis "go-md2man") - (description "Converts markdown into roff (man pages).") - (license license:expat))) - -(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 - (package - (name "go-gopkg-in-check-v1") - (version "0.0.0-20161208181325-20d25e280405") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/check.v1") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) - (home-page "https://gopkg.in/check.v1") - (synopsis "Instructions") - (description - "Package check is a rich testing extension for Go's testing package. -") - (license license:bsd-2))) - -(define-public go-gopkg-in-yaml-v2-2.2.2 - (package - (name "go-gopkg-in-yaml-v2") - (version "2.2.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "01wj12jzsdqlnidpyjssmj0r4yavlqy7dwrg7adqd8dicjc4ncsa")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v2") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language. -") - (license license:asl2.0))) - -(define-public go-github-com-urfave-cli-1.22.5 - (package - (name "go-github-com-urfave-cli") - (version "1.22.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/urfave/cli") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1n8lk58j7bdsp47yh5bcpsw38lhkbyzcy3203ffkawc2rvkf1pp7")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/urfave/cli")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) - ("go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d" - ,go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d) - ("go-github-com-burntsushi-toml-0.3.1" - ,go-github-com-burntsushi-toml-0.3.1))) - (home-page "https://github.com/urfave/cli") - (synopsis "cli") - (description - "Package cli provides a minimal framework for creating and organizing command line -Go applications. cli is designed to be easy to understand and write, the most simple -cli application can be written as follows: -") - (license license:expat))) - -(define-public go-github-com-vividcortex-ewma-1.1.1 - (package - (name "go-github-com-vividcortex-ewma") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/VividCortex/ewma") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "14v2dy5gqchjn7k0sd6cx59ms42v681r6xz7cb1kspp4b28a74rw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/VividCortex/ewma")) - (home-page "https://github.com/VividCortex/ewma") - (synopsis "EWMA") - (description - "Package ewma implements exponentially weighted moving averages. -") - (license license:expat))) - -(define-public go-github-com-acarl005-stripansi-0.0.0-20180116102854-5a71ef0e047d - (package - (name "go-github-com-acarl005-stripansi") - (version "0.0.0-20180116102854-5a71ef0e047d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/acarl005/stripansi") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "02sxiishdixm791jqbkmhdcvc712l0fb8rqmibxzgc61h0qs6rs3")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/acarl005/stripansi")) - (home-page "https://github.com/acarl005/stripansi") - (synopsis "Strip ANSI") - (description "This Go package removes ANSI escape codes from strings.") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190215142949-d0b11bdaac8a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20190308221718-c2843e01d9a2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-text-0.3.0 - (package - (name "go-golang-org-x-text") - (version "0.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/text")) - (home-page "https://golang.org/x/text") - (synopsis "Go Text") - (description - "text is a repository of text-related packages related to internationalization -(i18n) and localization (l10n), such as character encodings, text -transformations, and locale-specific text handling. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190404232315-eb5bcb51f2a3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "17k4g8krxbl84gzcs275b7gsh66dzm15fdxivjnx9xz8q84l4kby")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20190412213103-97732733099d - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190412213103-97732733099d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "118hkp01i4z1f5h6hcjm0ff2ngqhrzj1f7731n0kw8dr6hvbx0sw")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-crypto-0.0.0-20200214034016-1d94cc7ab1c6 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20200214034016-1d94cc7ab1c6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1mkd0gc2p16nddr5b8a5rqkalnhik3cymnqy4wy53zvd7isg6r3x")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" - ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) - ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" - ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20200217220822-9197077df867 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200217220822-9197077df867") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1270yyiqzlgrsygp2j0qavh4agm4xjv3ljfpk4wgqgmg4ph1lmx1")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-vbauerster-mpb-v4-4.12.2 - (package - (name "go-github-com-vbauerster-mpb-v4") - (version "4.12.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/vbauerster/mpb") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "13zq6zs5pv1gay3zzkwzc310rvsy1rf43lgq2l23nsyfkw1fx8fp")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/vbauerster/mpb/v4")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20200217220822-9197077df867" - ,go-golang-org-x-sys-0.0.0-20200217220822-9197077df867) - ("go-golang-org-x-crypto-0.0.0-20200214034016-1d94cc7ab1c6" - ,go-golang-org-x-crypto-0.0.0-20200214034016-1d94cc7ab1c6) - ("go-github-com-acarl005-stripansi-0.0.0-20180116102854-5a71ef0e047d" - ,go-github-com-acarl005-stripansi-0.0.0-20180116102854-5a71ef0e047d) - ("go-github-com-vividcortex-ewma-1.1.1" - ,go-github-com-vividcortex-ewma-1.1.1))) - (home-page "https://github.com/vbauerster/mpb") - (synopsis "Multi Progress Bar") - (description - "Package mpb is a library for rendering progress bars in terminal applications. -") - (license license:unlicense))) - -(define-public go-github-com-vividcortex-ewma-1.2.0 - (package - (name "go-github-com-vividcortex-ewma") - (version "1.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/VividCortex/ewma") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0whx516l9nm4n41spagb605ry7kfnz1qha96mcshnfjlahhnnylq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/VividCortex/ewma")) - (home-page "https://github.com/VividCortex/ewma") - (synopsis "EWMA") - (description - "Package ewma implements exponentially weighted moving averages. -") - (license license:expat))) - -(define-public go-github-com-acarl005-stripansi-0.0.0-20180116102854-5a71ef0e047d - (package - (name "go-github-com-acarl005-stripansi") - (version "0.0.0-20180116102854-5a71ef0e047d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/acarl005/stripansi") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "02sxiishdixm791jqbkmhdcvc712l0fb8rqmibxzgc61h0qs6rs3")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/acarl005/stripansi")) - (home-page "https://github.com/acarl005/stripansi") - (synopsis "Strip ANSI") - (description "This Go package removes ANSI escape codes from strings.") - (license license:expat))) - -(define-public go-github-com-rivo-uniseg-0.1.0 - (package - (name "go-github-com-rivo-uniseg") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/rivo/uniseg") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0flpc1px1l6b1lxzhdxi0mvpkkjchppvgxshxxnlmm40s76i9ww5")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/rivo/uniseg")) - (home-page "https://github.com/rivo/uniseg") - (synopsis "Unicode Text Segmentation for Go") - (description - "Package uniseg implements Unicode Text Segmentation according to Unicode -Standard Annex #29 (@url{http://unicode.org/reports/tr29/,http://unicode.org/reports/tr29/}). -") - (license license:expat))) - -(define-public go-github-com-mattn-go-runewidth-0.0.12 - (package - (name "go-github-com-mattn-go-runewidth") - (version "0.0.12") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mattn/go-runewidth") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "10m8k25anr79mirr9azap3c3a7wxn67qk774xd8hhqa1ffbicxib")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mattn/go-runewidth")) - (propagated-inputs - `(("go-github-com-rivo-uniseg-0.1.0" ,go-github-com-rivo-uniseg-0.1.0))) - (home-page "https://github.com/mattn/go-runewidth") - (synopsis "go-runewidth") - (description - "This package provides functions to get fixed width of the character or string.") - (license license:expat))) - -(define-public go-github-com-rivo-uniseg-0.2.0 - (package - (name "go-github-com-rivo-uniseg") - (version "0.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/rivo/uniseg") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0j7h22vfmjj562vr8gpsyrkrwp1pq9ayh5fylv24skxb467g9f0q")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/rivo/uniseg")) - (home-page "https://github.com/rivo/uniseg") - (synopsis "Unicode Text Segmentation for Go") - (description - "Package uniseg implements Unicode Text Segmentation according to Unicode -Standard Annex #29 (@url{http://unicode.org/reports/tr29/,http://unicode.org/reports/tr29/}). -") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20210514084401-e8d321eab015 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20210514084401-e8d321eab015") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0r4kz2mdfrr0853qmbaiqpj5mqscfjy6za6kqmrw7lv9h7xwqbc4")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-vbauerster-mpb-v6-6.0.4 - (package - (name "go-github-com-vbauerster-mpb-v6") - (version "6.0.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/vbauerster/mpb") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0b3p380pbhlp9qiv794ppwjwsl2k37hzp6k5ic4jx4wmdqlxzbyp")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/vbauerster/mpb/v6")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20210514084401-e8d321eab015" - ,go-golang-org-x-sys-0.0.0-20210514084401-e8d321eab015) - ("go-github-com-rivo-uniseg-0.2.0" ,go-github-com-rivo-uniseg-0.2.0) - ("go-github-com-mattn-go-runewidth-0.0.12" - ,go-github-com-mattn-go-runewidth-0.0.12) - ("go-github-com-acarl005-stripansi-0.0.0-20180116102854-5a71ef0e047d" - ,go-github-com-acarl005-stripansi-0.0.0-20180116102854-5a71ef0e047d) - ("go-github-com-vividcortex-ewma-1.2.0" - ,go-github-com-vividcortex-ewma-1.2.0))) - (home-page "https://github.com/vbauerster/mpb") - (synopsis "Multi Progress Bar") - (description - "Package mpb is a library for rendering progress bars in terminal applications. -") - (license license:unlicense))) - -(define-public go-github-com-xeipuuv-gojsonpointer-0.0.0-20190905194746-02993c407bfb - (package - (name "go-github-com-xeipuuv-gojsonpointer") - (version "0.0.0-20190905194746-02993c407bfb") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/xeipuuv/gojsonpointer") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0y7gmpgsm8c12ax4a0ij9srmd9d424iq224n172ckwfqf37amvzy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/xeipuuv/gojsonpointer")) - (home-page "https://github.com/xeipuuv/gojsonpointer") - (synopsis "gojsonpointer") - (description "An implementation of JSON Pointer - Go language") - (license license:asl2.0))) - -(define-public go-github-com-yvasiyarov-go-metrics-0.0.0-20150112132944-c25f46c4b940 - (package - (name "go-github-com-yvasiyarov-go-metrics") - (version "0.0.0-20150112132944-c25f46c4b940") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/yvasiyarov/go-metrics") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0p1hx4ml4gzgyj8n0fg5lv8bq092zwg00n59lq8v8sphjc1h8i8d")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/yvasiyarov/go-metrics")) - (home-page "https://github.com/yvasiyarov/go-metrics") - (synopsis "go-metrics") - (description "Go port of Coda Hale's Metrics library -") - (license #f))) - -(define-public go-github-com-yvasiyarov-gorelic-0.0.6 - (package - (name "go-github-com-yvasiyarov-gorelic") - (version "0.0.6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/yvasiyarov/gorelic") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0210d8z7l945611b5ynzjhnypqfdyr490ndrap13s4k5z1jgqjnb")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/yvasiyarov/gorelic")) - (home-page "https://github.com/yvasiyarov/gorelic") - (synopsis "GoRelic is deprecated in favour of") - (description - "Package gorelic is an New Relic agent implementation for Go runtime. It collect a lot of metrics about Go scheduler, garbage collector and memory allocator and send them to NewRelic. -") - (license license:bsd-2))) - -(define-public go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20160601141957-9c099fbc30e9 - (package - (name "go-github-com-yvasiyarov-newrelic-platform-go") - (version "0.0.0-20160601141957-9c099fbc30e9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/yvasiyarov/newrelic_platform_go") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0n6jap27qc7b7c37ck1gv9biq5nfl7y06jk0cqgc517yfnb4f07x")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/yvasiyarov/newrelic_platform_go")) - (home-page "https://github.com/yvasiyarov/newrelic_platform_go") - (synopsis "New Relic Platform Agent SDK for Go(golang)") - (description - "Package newrelic_platform_go is New Relic Platform Agent SDK for Go language. -") - (license license:bsd-2))) - -(define-public go-golang-org-x-sys-0.0.0-20210423082822-04245dca01da - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20210423082822-04245dca01da") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "11is2c5cpxk0gf2mxza2wpzfcf71fxb9b3in77f6w2q0pr68ykzx")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20211112202133-69e39bad7dc2 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20211112202133-69e39bad7dc2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0yvg72fb037yh4xvjyfgrr8nsbz7nfiiksvq0a5922z255anamy6")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.6" ,go-golang-org-x-text-0.3.6) - ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" - ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) - ("go-golang-org-x-sys-0.0.0-20210423082822-04245dca01da" - ,go-golang-org-x-sys-0.0.0-20210423082822-04245dca01da))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20210615035016-665e8c7367d1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "11n848csibdbv7b46zjyf4l7sphg37n9sjzqfy1ds7p1jyakwmnv")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20201119102817-f84b799fce68") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1dvhqian5byzkcg1bnqzygqa6ccc6krc2q7j12pp1vhl3y7znnsg")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1 - (package - (name "go-golang-org-x-term") - (version "0.0.0-20201126162022-7de9c90e9dd1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/term") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ba252xmv6qsvf1w1gcy98mngrj0vd4inbjw0lsklqvva65nljna")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/term")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" - ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) - (home-page "https://golang.org/x/term") - (synopsis "Go terminal/console support") - (description - "Package term provides support functions for dealing with terminals, as -commonly found on UNIX systems. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20180917221912-90fa682c2a6e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-golang-org-x-text-0.3.6 - (package - (name "go-golang-org-x-text") - (version "0.3.6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0wzhvdb059vrp2cczqw422ajrb9sbs4l3qd020hlngj33qfhxah0")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/text")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" - ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) - (home-page "https://golang.org/x/text") - (synopsis "Go Text") - (description - "text is a repository of text-related packages related to internationalization -(i18n) and localization (l10n), such as character encodings, text -transformations, and locale-specific text handling. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-crypto-0.0.0-20211117183948-ae814b36b871 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20211117183948-ae814b36b871") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "01d5llpsijgbgm8px6mhaknqwh8g707zc5i5744gcndr8w0649sk")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.6" ,go-golang-org-x-text-0.3.6) - ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" - ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) - ("go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1" - ,go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1) - ("go-golang-org-x-net-0.0.0-20211112202133-69e39bad7dc2" - ,go-golang-org-x-net-0.0.0-20211112202133-69e39bad7dc2))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20211004093028-2c5d950f24ef - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20211004093028-2c5d950f24ef") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "13ac9v54zgxrya9n2dvbmyafhd0rbmnkfb5zrcp96z8vzd9q8zfz")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 - (package - (name "go-gopkg-in-check-v1") - (version "0.0.0-20161208181325-20d25e280405") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/check.v1") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) - (home-page "https://gopkg.in/check.v1") - (synopsis "Instructions") - (description - "Package check is a rich testing extension for Go's testing package. -") - (license license:bsd-2))) - -(define-public go-gopkg-in-yaml-v2-2.4.0 - (package - (name "go-gopkg-in-yaml-v2") - (version "2.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1pbmrpj7gcws34g8vwna4i2nhm9p6235piww36436xhyaa10cldr")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v2") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543 - (package - (name "go-golang-org-x-xerrors") - (version "0.0.0-20191204190536-9bdfabe68543") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/xerrors") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1yjfi1bk9xb81lqn85nnm13zz725wazvrx3b50hx19qmwg7a4b0c")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/xerrors")) - (home-page "https://golang.org/x/xerrors") - (synopsis #f) - (description - "Package xerrors implements functions to manipulate errors. -") - (license license:bsd-3))) - -(define-public go-github-com-google-go-cmp-0.4.0 - (package - (name "go-github-com-google-go-cmp") - (version "0.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1x5pvl3fb5sbyng7i34431xycnhmx8xx94gq2n19g6p0vz68z2v2")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") - (license license:bsd-3))) - -(define-public go-github-com-pkg-errors-0.8.1 - (package - (name "go-github-com-pkg-errors") - (version "0.8.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pkg/errors") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0g5qcb4d4fd96midz0zdk8b9kz8xkzwfa8kr1cliqbg8sxsy5vd1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pkg/errors")) - (home-page "https://github.com/pkg/errors") - (synopsis "errors") - (description "Package errors provides simple error handling primitives. -") - (license license:bsd-2))) - -(define-public go-github-com-spf13-pflag-1.0.3 - (package - (name "go-github-com-spf13-pflag") - (version "1.0.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/spf13/pflag") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1cj3cjm7d3zk0mf1xdybh0jywkbbw7a6yr3y22x9sis31scprswd")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/spf13/pflag")) - (home-page "https://github.com/spf13/pflag") - (synopsis "Description") - (description - "Package pflag is a drop-in replacement for Go's flag package, implementing -POSIX/GNU-style --flags. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190215142949-d0b11bdaac8a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20190308221718-c2843e01d9a2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-text-0.3.0 - (package - (name "go-golang-org-x-text") - (version "0.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/text")) - (home-page "https://golang.org/x/text") - (synopsis "Go Text") - (description - "text is a repository of text-related packages related to internationalization -(i18n) and localization (l10n), such as character encodings, text -transformations, and locale-specific text handling. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20190311183353-d8887717615a - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190311183353-d8887717615a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1wfm6ngxjyj7v5a2dqib6lw8bb2rdnf1kl48diykxjrsddn0s163")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20190423024810-112230192c58 - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20190423024810-112230192c58") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "05i2k43j2d0llq768hg5pf3hb2yhfzp9la1w5wp0rsnnzblr0lfn")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the -ones provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20190624222133-a101b041ded4 - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20190624222133-a101b041ded4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1pm50dybm5wixjjspvfpafjmiy81b1zp08h13gxc5cylrfgncrfl")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" - ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-gotest-tools-v3-3.0.3 - (package - (name "go-gotest-tools-v3") - (version "3.0.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gotestyourself/gotest.tools") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1h316233n33lkfhbak8ljdj5i8df6hcwwm48n200svf22x3d95ww")))) - (build-system go-build-system) - (arguments - '(#:import-path "gotest.tools/v3" #:unpack-path "gotest.tools/v3")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20190624222133-a101b041ded4" - ,go-golang-org-x-tools-0.0.0-20190624222133-a101b041ded4) - ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) - ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0))) - (home-page "https://gotest.tools/v3") - (synopsis "gotest.tools") - (description - "Package gotesttools is a collection of packages to augment `testing` and -support common patterns. -") - (license license:asl2.0))) - -(define-public go-github-com-microsoft-go-winio-0.4.17 - (package - (name "go-github-com-microsoft-go-winio") - (version "0.4.17") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/microsoft/go-winio") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0gmgiak4x4gdyr17zm4b9vvharflk9pz5aj5jayh9hq50133b2f9")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/Microsoft/go-winio")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" - ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) - ("go-github-com-sirupsen-logrus-1.7.0" - ,go-github-com-sirupsen-logrus-1.7.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) - (home-page "https://github.com/Microsoft/go-winio") - (synopsis "go-winio") - (description - "This repository contains utilities for efficiently performing Win32 IO operations in -Go. Currently, this is focused on accessing named pipes and other file handles, and -for using named pipes as a net transport.") - (license license:expat))) - -(define-public go-github-com-cenkalti-backoff-v4-4.1.1 - (package - (name "go-github-com-cenkalti-backoff-v4") - (version "4.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cenkalti/backoff") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "08c28226q612i1pv83161y57qh16631vpc51ai9f76qfrzsy946z")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/cenkalti/backoff/v4")) - (home-page "https://github.com/cenkalti/backoff") - (synopsis "Exponential Backoff") - (description - "Package backoff implements backoff algorithms for retrying operations. -") - (license license:expat))) - -(define-public go-github-com-containerd-containerd-1.4.9 - (package - (name "go-github-com-containerd-containerd") - (version "1.4.9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/containerd") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ykikks6ihgg899ibk9m9m0hqrbss0cx7l7z4yjb873b10bacj52")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/containerd")) - (home-page "https://github.com/containerd/containerd") - (synopsis "Now Recruiting") - (description - "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") - (license license:asl2.0))) - -(define-public go-github-com-microsoft-hcsshim-0.8.23 - (package - (name "go-github-com-microsoft-hcsshim") - (version "0.8.23") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/microsoft/hcsshim") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19gmwvq72vrlw6wvnmz4rjmg6r34c1nbqk71mj4bqq08rpi3i89r")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/Microsoft/hcsshim")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) - ("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) - ("go-golang-org-x-sys-0.0.0-20210324051608-47abb6519492" - ,go-golang-org-x-sys-0.0.0-20210324051608-47abb6519492) - ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" - ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) - ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) - ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) - ("go-github-com-sirupsen-logrus-1.8.1" - ,go-github-com-sirupsen-logrus-1.8.1) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" - ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2) - ("go-github-com-containerd-typeurl-1.0.2" - ,go-github-com-containerd-typeurl-1.0.2) - ("go-github-com-containerd-ttrpc-1.1.0" - ,go-github-com-containerd-ttrpc-1.1.0) - ("go-github-com-containerd-go-runc-1.0.0" - ,go-github-com-containerd-go-runc-1.0.0) - ("go-github-com-containerd-fifo-1.0.0" - ,go-github-com-containerd-fifo-1.0.0) - ("go-github-com-containerd-continuity-0.1.0" - ,go-github-com-containerd-continuity-0.1.0) - ("go-github-com-containerd-containerd-1.4.9" - ,go-github-com-containerd-containerd-1.4.9) - ("go-github-com-containerd-console-1.0.2" - ,go-github-com-containerd-console-1.0.2) - ("go-github-com-containerd-cgroups-1.0.1" - ,go-github-com-containerd-cgroups-1.0.1) - ("go-github-com-cenkalti-backoff-v4-4.1.1" - ,go-github-com-cenkalti-backoff-v4-4.1.1) - ("go-github-com-microsoft-go-winio-0.4.17" - ,go-github-com-microsoft-go-winio-0.4.17))) - (home-page "https://github.com/Microsoft/hcsshim") - (synopsis "hcsshim") - (description - "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") - (license license:expat))) - -(define-public go-github-com-containerd-aufs-1.0.0 - (package - (name "go-github-com-containerd-aufs") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/aufs") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0jyyyf6sr910m602axmp4h4j1l2n680cpp60z09pvprz55zi4ba0")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/aufs")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" - ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" - ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) - ("go-github-com-containerd-containerd-1.5.0-beta.3" - ,go-github-com-containerd-containerd-1.5.0-beta.3))) - (home-page "https://github.com/containerd/aufs") - (synopsis "aufs snapshotter") - (description - "AUFS implementation of the snapshot interface for containerd.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-btrfs-1.0.0 - (package - (name "go-github-com-containerd-btrfs") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/btrfs") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1yf38gg41y1v12m0cl81r9q7d13170a4npzqxhbz7qn32zr23kzn")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/btrfs")) - (propagated-inputs - `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) - (home-page "https://github.com/containerd/btrfs") - (synopsis "go-btrfs") - (description - "Package btrfs provides bindings for working with btrfs partitions from Go. -") - (license license:asl2.0))) - -(define-public go-github-com-cilium-ebpf-0.4.0 - (package - (name "go-github-com-cilium-ebpf") - (version "0.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cilium/ebpf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1j33vfz8mxnqadkd17l0y3ll71gph3ndm8hwrwbwnf5px7bfv9yl")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/cilium/ebpf")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" - ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) - ("go-github-com-google-go-cmp-0.5.4" - ,go-github-com-google-go-cmp-0.5.4) - ("go-github-com-frankban-quicktest-1.11.3" - ,go-github-com-frankban-quicktest-1.11.3))) - (home-page "https://github.com/cilium/ebpf") - (synopsis "eBPF") - (description "Package ebpf is a toolkit for working with eBPF programs. -") - (license license:expat))) - -(define-public go-github-com-containerd-cgroups-1.0.1 - (package - (name "go-github-com-containerd-cgroups") - (version "1.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/cgroups") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1p992w942xba9z77nhhbc6nk5q09c3zxxhq9n7fm5alx3a8fwbpl")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/cgroups")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" - ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) - ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-sirupsen-logrus-1.7.0" - ,go-github-com-sirupsen-logrus-1.7.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-runtime-spec-1.0.2" - ,go-github-com-opencontainers-runtime-spec-1.0.2) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2) - ("go-github-com-godbus-dbus-v5-5.0.3" - ,go-github-com-godbus-dbus-v5-5.0.3) - ("go-github-com-docker-go-units-0.4.0" - ,go-github-com-docker-go-units-0.4.0) - ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" - ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) - ("go-github-com-coreos-go-systemd-v22-22.1.0" - ,go-github-com-coreos-go-systemd-v22-22.1.0) - ("go-github-com-cilium-ebpf-0.4.0" ,go-github-com-cilium-ebpf-0.4.0))) - (home-page "https://github.com/containerd/cgroups") - (synopsis "cgroups") - (description - "Go package for creating, managing, inspecting, and destroying cgroups. -The resources format for settings on the cgroup uses the OCI runtime-spec found -@url{https://github.com/opencontainers/runtime-spec,here}.") - (license license:asl2.0))) - -(define-public go-github-com-mitchellh-go-homedir-1.1.0 - (package - (name "go-github-com-mitchellh-go-homedir") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mitchellh/go-homedir") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ydzkipf28hwj2bfxqmwlww47khyk6d152xax4bnyh60f4lq3nx1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mitchellh/go-homedir")) - (home-page "https://github.com/mitchellh/go-homedir") - (synopsis "go-homedir") - (description - "This is a Go library for detecting the user's home directory without -the use of cgo, so the library can be used in cross-compilation environments.") - (license license:expat))) - -(define-public go-github-com-armon-consul-api-0.0.0-20180202201655-eb2c6b5be1b6 - (package - (name "go-github-com-armon-consul-api") - (version "0.0.0-20180202201655-eb2c6b5be1b6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/armon/consul-api") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1j6fdr1sg36qy4n4xjl7brq739fpm5npq98cmvklzjc9qrx98nk9")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/armon/consul-api")) - (home-page "https://github.com/armon/consul-api") - (synopsis "consul-api") - (description - " Please use @url{https://github.com/hashicorp/consul/tree/master/api,consul api package} instead. -Godocs for that package @url{http://godoc.org/github.com/hashicorp/consul/api,are here}.") - (license license:mpl2.0))) - -(define-public go-github-com-coreos-bbolt-1.3.2 - (package - (name "go-github-com-coreos-bbolt") - (version "1.3.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/etcd-io/bbolt") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "13d5l6p6c5wvkr6vn9hkhz9c593qifn7fgx0hg4d6jcvg1y0bnm2")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/coreos/bbolt")) - (home-page "https://github.com/coreos/bbolt") - (synopsis "bbolt") - (description - "package bbolt implements a low-level key/value store in pure Go. It supports -fully serializable transactions, ACID semantics, and lock-free MVCC with -multiple readers and a single writer. Bolt can be used for projects that -want a simple data store without the need to add large dependencies such as -Postgres or MySQL. -") - (license license:expat))) - -(define-public go-github-com-coreos-etcd-3.3.10+incompatible - (package - (name "go-github-com-coreos-etcd") - (version "3.3.10+incompatible") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/etcd-io/etcd") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1x2ii1hj8jraba8rbxz6dmc03y3sjxdnzipdvg6fywnlq1f3l3wl")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/coreos/etcd")) - (home-page "https://github.com/coreos/etcd") - (synopsis "etcd") - (description - "Package main is a simple wrapper of the real etcd entrypoint package -(located at github.com/coreos/etcd/etcdmain) to ensure that etcd is still -\"go getable\"; e.g. `go get github.com/coreos/etcd` works as expected and -builds a binary in $GOBIN/etcd -") - (license license:asl2.0))) - -(define-public go-github-com-golang-groupcache-0.0.0-20190129154638-5b532d6fd5ef - (package - (name "go-github-com-golang-groupcache") - (version "0.0.0-20190129154638-5b532d6fd5ef") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/groupcache") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ls2i4ixyd4r2556j7c5jmlligjb35gfvxknrdn2abjmcahgqd6h")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/groupcache")) - (home-page "https://github.com/golang/groupcache") - (synopsis "groupcache") - (description - "Package groupcache provides a data loading mechanism with caching -and de-duplication that works across a set of peer processes. -") - (license license:asl2.0))) - -(define-public go-github-com-gorilla-websocket-1.4.0 - (package - (name "go-github-com-gorilla-websocket") - (version "1.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gorilla/websocket") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "00i4vb31nsfkzzk7swvx3i75r2d960js3dri1875vypk3v2s0pzk")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/gorilla/websocket")) - (home-page "https://github.com/gorilla/websocket") - (synopsis "Gorilla WebSocket") - (description - "Package websocket implements the WebSocket protocol defined in @url{https://rfc-editor.org/rfc/rfc6455.html,RFC 6455}. -") - (license license:bsd-2))) - -(define-public go-github-com-grpc-ecosystem-go-grpc-middleware-1.0.0 - (package - (name "go-github-com-grpc-ecosystem-go-grpc-middleware") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc-ecosystem/go-grpc-middleware") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0lwgxih021xfhfb1xb9la5f98bpgpaiz63sbllx77qwwl2rmhrsp")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/grpc-ecosystem/go-grpc-middleware")) - (home-page "https://github.com/grpc-ecosystem/go-grpc-middleware") - (synopsis "Go gRPC Middleware") - (description - "`grpc_middleware` is a collection of gRPC middleware packages: interceptors, helpers and tools. -") - (license license:asl2.0))) - -(define-public go-github-com-grpc-ecosystem-grpc-gateway-1.9.0 - (package - (name "go-github-com-grpc-ecosystem-grpc-gateway") - (version "1.9.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc-ecosystem/grpc-gateway") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1r4y48c76yxc2hpqszfjirvh7zxjb6z72qmk95li12ar79dhv3dy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/grpc-ecosystem/grpc-gateway")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.0.0-20170812160011-eb3733d160e7" - ,go-gopkg-in-yaml-v2-2.0.0-20170812160011-eb3733d160e7) - ("go-gopkg-in-resty-v1-1.12.0" ,go-gopkg-in-resty-v1-1.12.0) - ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" - ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) - ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) - ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" - ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) - ("go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8" - ,go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8) - ("go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3" - ,go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3) - ("go-github-com-rogpeppe-fastuuid-0.0.0-20150106093220-6724a57986af" - ,go-github-com-rogpeppe-fastuuid-0.0.0-20150106093220-6724a57986af) - ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-ghodss-yaml-1.0.0" ,go-github-com-ghodss-yaml-1.0.0))) - (home-page "https://github.com/grpc-ecosystem/grpc-gateway") - (synopsis "grpc-gateway") - (description - "The grpc-gateway is a plugin of the Google protocol buffers compiler -@url{https://github.com/protocolbuffers/protobuf,protoc}. -It reads protobuf service definitions and generates a reverse-proxy server which -translates a RESTful HTTP API into gRPC. This server is generated according to the -@url{https://github.com/googleapis/googleapis/raw/master/google/api/http.proto#L46,(code google.api.http)} -annotations in your service definitions.") - (license license:bsd-3))) - -(define-public go-github-com-magiconair-properties-1.8.0 - (package - (name "go-github-com-magiconair-properties") - (version "1.8.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/magiconair/properties") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1a10362wv8a8qwb818wygn2z48lgzch940hvpv81hv8gc747ajxn")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/magiconair/properties")) - (home-page "https://github.com/magiconair/properties") - (synopsis "Overview") - (description - "Package properties provides functions for reading and writing -ISO-8859-1 and UTF-8 encoded .properties files and has -support for recursive property expansion. -") - (license license:bsd-2))) - -(define-public go-github-com-pelletier-go-toml-1.2.0 - (package - (name "go-github-com-pelletier-go-toml") - (version "1.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pelletier/go-toml") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fjzpcjng60mc3a4b2ql5a00d5gah84wj740dabv9kq67mpg8fxy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pelletier/go-toml")) - (home-page "https://github.com/pelletier/go-toml") - (synopsis "go-toml") - (description "Package toml is a TOML parser and manipulation library. -") - (license #f))) - -(define-public go-github-com-prometheus-common-0.4.0 - (package - (name "go-github-com-prometheus-common") - (version "0.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/common") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "00008pczafy982m59n1j31pnp41f4grbc2c40jccp52xg3m5klmr")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/common")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1) - ("go-gopkg-in-alecthomas-kingpin-v2-2.2.6" - ,go-gopkg-in-alecthomas-kingpin-v2-2.2.6) - ("go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5" - ,go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5) - ("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" - ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) - ("go-golang-org-x-net-0.0.0-20181114220301-adae6a3d119a" - ,go-golang-org-x-net-0.0.0-20181114220301-adae6a3d119a) - ("go-github-com-sirupsen-logrus-1.2.0" - ,go-github-com-sirupsen-logrus-1.2.0) - ("go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d" - ,go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d) - ("go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910" - ,go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910) - ("go-github-com-prometheus-client-golang-0.9.1" - ,go-github-com-prometheus-client-golang-0.9.1) - ("go-github-com-pkg-errors-0.8.0" ,go-github-com-pkg-errors-0.8.0) - ("go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223" - ,go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223) - ("go-github-com-matttproud-golang-protobuf-extensions-1.0.1" - ,go-github-com-matttproud-golang-protobuf-extensions-1.0.1) - ("go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515" - ,go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515) - ("go-github-com-julienschmidt-httprouter-1.2.0" - ,go-github-com-julienschmidt-httprouter-1.2.0) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0) - ("go-github-com-gogo-protobuf-1.1.1" - ,go-github-com-gogo-protobuf-1.1.1) - ("go-github-com-go-stack-stack-1.8.0" - ,go-github-com-go-stack-stack-1.8.0) - ("go-github-com-go-logfmt-logfmt-0.3.0" - ,go-github-com-go-logfmt-logfmt-0.3.0) - ("go-github-com-go-kit-kit-0.8.0" ,go-github-com-go-kit-kit-0.8.0) - ("go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973" - ,go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973) - ("go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf" - ,go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf) - ("go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc" - ,go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc))) - (home-page "https://github.com/prometheus/common") - (synopsis "Common") - (description - "This repository contains Go libraries that are shared across Prometheus -components and libraries. They are considered internal to Prometheus, without -any stability guarantees for external usage.") - (license license:asl2.0))) - -(define-public go-github-com-prometheus-procfs-0.0.0-20190507164030-5867b95ac084 - (package - (name "go-github-com-prometheus-procfs") - (version "0.0.0-20190507164030-5867b95ac084") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/procfs") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1rahdk62ajj4zpfb3mgzjqip773la9fb0m87m7s9a0b39l3fmzvr")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/procfs")) - (propagated-inputs - `(("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" - ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4))) - (home-page "https://github.com/prometheus/procfs") - (synopsis "procfs") - (description - "Package procfs provides functions to retrieve system, kernel and process -metrics from the pseudo-filesystem proc. -") - (license license:asl2.0))) - -(define-public go-github-com-oneofone-xxhash-1.2.2 - (package - (name "go-github-com-oneofone-xxhash") - (version "1.2.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/OneOfOne/xxhash") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1mjfhrwhvxa48rycjnqpqzm521i38h1hdyz6pdwmhd7xb8j6gwi6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/OneOfOne/xxhash")) - (home-page "https://github.com/OneOfOne/xxhash") - (synopsis "xxhash") - (description - "This is a native Go implementation of the excellent @url{https://github.com/Cyan4973/xxHash,xxhash}* algorithm, an extremely fast non-cryptographic Hash algorithm, working at speeds close to RAM limits.") - (license license:asl2.0))) - -(define-public go-github-com-spaolacci-murmur3-0.0.0-20180118202830-f09979ecbc72 - (package - (name "go-github-com-spaolacci-murmur3") - (version "0.0.0-20180118202830-f09979ecbc72") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/spaolacci/murmur3") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1lv3zyz3jy2d76bhvvs8svygx66606iygdvwy5cwc0p5z8yghq25")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/spaolacci/murmur3")) - (home-page "https://github.com/spaolacci/murmur3") - (synopsis "murmur3") - (description - "Package murmur3 implements Austin Appleby's non-cryptographic MurmurHash3. -") - (license license:bsd-3))) - -(define-public go-github-com-cespare-xxhash-1.1.0 - (package - (name "go-github-com-cespare-xxhash") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cespare/xxhash") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1qyzlcdcayavfazvi03izx83fvip8h36kis44zr2sg7xf6sx6l4x")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/cespare/xxhash")) - (propagated-inputs - `(("go-github-com-spaolacci-murmur3-0.0.0-20180118202830-f09979ecbc72" - ,go-github-com-spaolacci-murmur3-0.0.0-20180118202830-f09979ecbc72) - ("go-github-com-oneofone-xxhash-1.2.2" - ,go-github-com-oneofone-xxhash-1.2.2))) - (home-page "https://github.com/cespare/xxhash") - (synopsis "xxhash") - (description - "Package xxhash implements the 64-bit variant of xxHash (XXH64) as described -at @url{http://cyan4973.github.io/xxHash/,http://cyan4973.github.io/xxHash/}. -") - (license license:expat))) - -(define-public go-github-com-dgryski-go-sip13-0.0.0-20181026042036-e10d5fee7954 - (package - (name "go-github-com-dgryski-go-sip13") - (version "0.0.0-20181026042036-e10d5fee7954") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/dgryski/go-sip13") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "15fyibfas209ljz3f7g07kdmfbl3hhyd9n5n7aq5n5p9m5mn41d6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/dgryski/go-sip13")) - (home-page "https://github.com/dgryski/go-sip13") - (synopsis #f) - (description #f) - (license license:expat))) - -(define-public go-github-com-oklog-ulid-1.3.1 - (package - (name "go-github-com-oklog-ulid") - (version "1.3.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/oklog/ulid") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hybwyid820n80axrk863k2py93hbqlq6hxhf84ppmz0qd0ys0gq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/oklog/ulid")) - (home-page "https://github.com/oklog/ulid") - (synopsis "Universally Unique Lexicographically Sortable Identifier") - (description - "This package provides a Go port of @url{https://github.com/alizain/ulid,alizain/ulid} with binary format implemented.") - (license license:asl2.0))) - -(define-public go-github-com-prometheus-common-0.0.0-20181113130724-41aa239b4cce - (package - (name "go-github-com-prometheus-common") - (version "0.0.0-20181113130724-41aa239b4cce") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/common") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0spy10lwanqa5ynks9cagphkq74zz4b3jm4w59vvizdcw4fhd7s6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/common")) - (home-page "https://github.com/prometheus/common") - (synopsis "Common") - (description - "This repository contains Go libraries that are shared across Prometheus -components and libraries. They are considered internal to Prometheus, without -any stability guarantees for external usage.") - (license license:asl2.0))) - -(define-public go-github-com-prometheus-tsdb-0.7.1 - (package - (name "go-github-com-prometheus-tsdb") - (version "0.7.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus-junkyard/tsdb") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1c1da8i5byvhh4fp3vqjfb65aaksjskn3ggb8wg9hcfzjrhgpz04")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/tsdb")) - (propagated-inputs - `(("go-gopkg-in-alecthomas-kingpin-v2-2.2.6" - ,go-gopkg-in-alecthomas-kingpin-v2-2.2.6) - ("go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8" - ,go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8) - ("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" - ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) - ("go-github-com-stretchr-testify-1.2.2" - ,go-github-com-stretchr-testify-1.2.2) - ("go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d" - ,go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d) - ("go-github-com-prometheus-common-0.0.0-20181113130724-41aa239b4cce" - ,go-github-com-prometheus-common-0.0.0-20181113130724-41aa239b4cce) - ("go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910" - ,go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910) - ("go-github-com-prometheus-client-golang-0.9.1" - ,go-github-com-prometheus-client-golang-0.9.1) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-pkg-errors-0.8.0" ,go-github-com-pkg-errors-0.8.0) - ("go-github-com-oklog-ulid-1.3.1" ,go-github-com-oklog-ulid-1.3.1) - ("go-github-com-matttproud-golang-protobuf-extensions-1.0.1" - ,go-github-com-matttproud-golang-protobuf-extensions-1.0.1) - ("go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515" - ,go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0) - ("go-github-com-gogo-protobuf-1.1.1" - ,go-github-com-gogo-protobuf-1.1.1) - ("go-github-com-go-stack-stack-1.8.0" - ,go-github-com-go-stack-stack-1.8.0) - ("go-github-com-go-logfmt-logfmt-0.3.0" - ,go-github-com-go-logfmt-logfmt-0.3.0) - ("go-github-com-go-kit-kit-0.8.0" ,go-github-com-go-kit-kit-0.8.0) - ("go-github-com-dgryski-go-sip13-0.0.0-20181026042036-e10d5fee7954" - ,go-github-com-dgryski-go-sip13-0.0.0-20181026042036-e10d5fee7954) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1) - ("go-github-com-cespare-xxhash-1.1.0" - ,go-github-com-cespare-xxhash-1.1.0) - ("go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973" - ,go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973) - ("go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf" - ,go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf) - ("go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc" - ,go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc))) - (home-page "https://github.com/prometheus/tsdb") - (synopsis "TSDB") - (description - "Package tsdb implements a time series storage for float64 sample data. -") - (license license:asl2.0))) - -(define-public go-github-com-prometheus-client-golang-0.9.3 - (package - (name "go-github-com-prometheus-client-golang") - (version "0.9.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/client_golang") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1608rm1y2p3iv8k2x7wyc6hshvpbfkv2k77hy0x870syms1g3g1p")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/client_golang")) - (propagated-inputs - `(("go-github-com-prometheus-tsdb-0.7.1" - ,go-github-com-prometheus-tsdb-0.7.1) - ("go-github-com-prometheus-procfs-0.0.0-20190507164030-5867b95ac084" - ,go-github-com-prometheus-procfs-0.0.0-20190507164030-5867b95ac084) - ("go-github-com-prometheus-common-0.4.0" - ,go-github-com-prometheus-common-0.4.0) - ("go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90" - ,go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90) - ("go-github-com-golang-protobuf-1.3.1" - ,go-github-com-golang-protobuf-1.3.1) - ("go-github-com-go-logfmt-logfmt-0.4.0" - ,go-github-com-go-logfmt-logfmt-0.4.0) - ("go-github-com-beorn7-perks-1.0.0" - ,go-github-com-beorn7-perks-1.0.0))) - (home-page "https://github.com/prometheus/client_golang") - (synopsis "Prometheus Go client library") - (description - "This is the @url{http://golang.org,Go} client library for -@url{http://prometheus.io,Prometheus}. It has two separate parts, one for -instrumenting application code, and one for creating clients that talk to the -Prometheus HTTP API.") - (license license:asl2.0))) - -(define-public go-github-com-spf13-afero-1.1.2 - (package - (name "go-github-com-spf13-afero") - (version "1.1.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/spf13/afero") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0miv4faf5ihjfifb1zv6aia6f6ik7h1s4954kcb8n6ixzhx9ck6k")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/spf13/afero")) - (home-page "https://github.com/spf13/afero") - (synopsis "Overview") - (description - "This package provides a FileSystem Abstraction System for Go") - (license license:asl2.0))) - -(define-public go-github-com-spf13-cast-1.3.0 - (package - (name "go-github-com-spf13-cast") - (version "1.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/spf13/cast") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0xq1ffqj8y8h7dcnm0m9lfrh0ga7pssnn2c1dnr09chqbpn4bdc5")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/spf13/cast")) - (propagated-inputs - `(("go-github-com-stretchr-testify-1.2.2" - ,go-github-com-stretchr-testify-1.2.2) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/spf13/cast") - (synopsis "cast") - (description "Package cast provides easy and safe casting in Go. -") - (license license:expat))) - -(define-public go-github-com-spf13-jwalterweatherman-1.0.0 - (package - (name "go-github-com-spf13-jwalterweatherman") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/spf13/jwalterweatherman") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "093fmmvavv84pv4q84hav7ph3fmrq87bvspjj899q0qsx37yvdr8")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/spf13/jwalterweatherman")) - (home-page "https://github.com/spf13/jwalterweatherman") - (synopsis "jWalterWeatherman") - (description - "Seamless printing to the terminal (stdout) and logging to a io.Writer -(file) thatâ\x80\x99s as easy to use as fmt.Println.") - (license license:expat))) - -(define-public go-github-com-ugorji-go-1.1.4 - (package - (name "go-github-com-ugorji-go") - (version "1.1.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/ugorji/go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ma2qvn5wqvjidpdz74x832a813qnr1cxbx6n6n125ak9b3wbn5w")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/ugorji/go")) - (home-page "https://github.com/ugorji/go") - (synopsis "go-codec") - (description - "This repository contains the @code{go-codec} library, the @code{codecgen} tool and -benchmarks for comparing against other libraries.") - (license license:expat))) - -(define-public go-github-com-xordataexchange-crypt-0.0.3-0.20170626215501-b2862e3d0a77 - (package - (name "go-github-com-xordataexchange-crypt") - (version "0.0.3-0.20170626215501-b2862e3d0a77") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/xordataexchange/crypt") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "04q3856anpzl4gdfgmg7pbp9cx231nkz3ymq2xp27rnmmwhfxr8y")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/xordataexchange/crypt")) - (home-page "https://github.com/xordataexchange/crypt") - (synopsis "crypt") - (description - "You can use crypt as a command line tool or as a configuration library:") - (license license:expat))) - -(define-public go-go-etcd-io-bbolt-1.3.2 - (package - (name "go-go-etcd-io-bbolt") - (version "1.3.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/etcd-io/bbolt") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "13d5l6p6c5wvkr6vn9hkhz9c593qifn7fgx0hg4d6jcvg1y0bnm2")))) - (build-system go-build-system) - (arguments '(#:import-path "go.etcd.io/bbolt")) - (home-page "https://go.etcd.io/bbolt") - (synopsis "bbolt") - (description - "package bbolt implements a low-level key/value store in pure Go. It supports -fully serializable transactions, ACID semantics, and lock-free MVCC with -multiple readers and a single writer. Bolt can be used for projects that -want a simple data store without the need to add large dependencies such as -Postgres or MySQL. -") - (license license:expat))) - -(define-public go-golang-org-x-time-0.0.0-20190308202827-9d24e82272b4 - (package - (name "go-golang-org-x-time") - (version "0.0.0-20190308202827-9d24e82272b4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/time") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1f5nkr4vys2vbd8wrwyiq2f5wcaahhpxmia85d1gshcbqjqf8dkb")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/time")) - (home-page "https://golang.org/x/time") - (synopsis "Go Time") - (description "This repository provides supplementary Go time packages.") - (license license:bsd-3))) - -(define-public go-github-com-spf13-viper-1.4.0 - (package - (name "go-github-com-spf13-viper") - (version "1.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/spf13/viper") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1zpzxvn13wpvbblbbn73svaq39zgxfjqhci9d68g3qf309pcfy19")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/spf13/viper")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) - ("go-google-golang-org-grpc-1.21.0" ,go-google-golang-org-grpc-1.21.0) - ("go-golang-org-x-time-0.0.0-20190308202827-9d24e82272b4" - ,go-golang-org-x-time-0.0.0-20190308202827-9d24e82272b4) - ("go-golang-org-x-net-0.0.0-20190522155817-f3200d17e092" - ,go-golang-org-x-net-0.0.0-20190522155817-f3200d17e092) - ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) - ("go-go-uber-org-multierr-1.1.0" ,go-go-uber-org-multierr-1.1.0) - ("go-go-uber-org-atomic-1.4.0" ,go-go-uber-org-atomic-1.4.0) - ("go-go-etcd-io-bbolt-1.3.2" ,go-go-etcd-io-bbolt-1.3.2) - ("go-github-com-xordataexchange-crypt-0.0.3-0.20170626215501-b2862e3d0a77" - ,go-github-com-xordataexchange-crypt-0.0.3-0.20170626215501-b2862e3d0a77) - ("go-github-com-xiang90-probing-0.0.0-20190116061207-43a291ad63a2" - ,go-github-com-xiang90-probing-0.0.0-20190116061207-43a291ad63a2) - ("go-github-com-ugorji-go-1.1.4" ,go-github-com-ugorji-go-1.1.4) - ("go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5" - ,go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5) - ("go-github-com-stretchr-testify-1.2.2" - ,go-github-com-stretchr-testify-1.2.2) - ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) - ("go-github-com-spf13-jwalterweatherman-1.0.0" - ,go-github-com-spf13-jwalterweatherman-1.0.0) - ("go-github-com-spf13-cast-1.3.0" ,go-github-com-spf13-cast-1.3.0) - ("go-github-com-spf13-afero-1.1.2" ,go-github-com-spf13-afero-1.1.2) - ("go-github-com-soheilhy-cmux-0.1.4" - ,go-github-com-soheilhy-cmux-0.1.4) - ("go-github-com-prometheus-client-golang-0.9.3" - ,go-github-com-prometheus-client-golang-0.9.3) - ("go-github-com-pelletier-go-toml-1.2.0" - ,go-github-com-pelletier-go-toml-1.2.0) - ("go-github-com-mitchellh-mapstructure-1.1.2" - ,go-github-com-mitchellh-mapstructure-1.1.2) - ("go-github-com-magiconair-properties-1.8.0" - ,go-github-com-magiconair-properties-1.8.0) - ("go-github-com-jonboulle-clockwork-0.1.0" - ,go-github-com-jonboulle-clockwork-0.1.0) - ("go-github-com-hashicorp-hcl-1.0.0" - ,go-github-com-hashicorp-hcl-1.0.0) - ("go-github-com-grpc-ecosystem-grpc-gateway-1.9.0" - ,go-github-com-grpc-ecosystem-grpc-gateway-1.9.0) - ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" - ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) - ("go-github-com-grpc-ecosystem-go-grpc-middleware-1.0.0" - ,go-github-com-grpc-ecosystem-go-grpc-middleware-1.0.0) - ("go-github-com-gorilla-websocket-1.4.0" - ,go-github-com-gorilla-websocket-1.4.0) - ("go-github-com-google-btree-1.0.0" ,go-github-com-google-btree-1.0.0) - ("go-github-com-golang-groupcache-0.0.0-20190129154638-5b532d6fd5ef" - ,go-github-com-golang-groupcache-0.0.0-20190129154638-5b532d6fd5ef) - ("go-github-com-gogo-protobuf-1.2.1" - ,go-github-com-gogo-protobuf-1.2.1) - ("go-github-com-fsnotify-fsnotify-1.4.7" - ,go-github-com-fsnotify-fsnotify-1.4.7) - ("go-github-com-dgrijalva-jwt-go-3.2.0+incompatible" - ,go-github-com-dgrijalva-jwt-go-3.2.0+incompatible) - ("go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f" - ,go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f) - ("go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e" - ,go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e) - ("go-github-com-coreos-go-semver-0.2.0" - ,go-github-com-coreos-go-semver-0.2.0) - ("go-github-com-coreos-etcd-3.3.10+incompatible" - ,go-github-com-coreos-etcd-3.3.10+incompatible) - ("go-github-com-coreos-bbolt-1.3.2" ,go-github-com-coreos-bbolt-1.3.2) - ("go-github-com-armon-consul-api-0.0.0-20180202201655-eb2c6b5be1b6" - ,go-github-com-armon-consul-api-0.0.0-20180202201655-eb2c6b5be1b6))) - (home-page "https://github.com/spf13/viper") - (synopsis "Install") - (description "Many Go projects are built using Viper including:") - (license license:expat))) - -(define-public go-github-com-spf13-cobra-1.0.0 - (package - (name "go-github-com-spf13-cobra") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/spf13/cobra") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0vbppqqhby302a5ayn0296jqr71qkcd4c9am7wzsk6z71fwdsa7h")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/spf13/cobra")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) - ("go-github-com-spf13-viper-1.4.0" ,go-github-com-spf13-viper-1.4.0) - ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) - ("go-github-com-mitchellh-go-homedir-1.1.0" - ,go-github-com-mitchellh-go-homedir-1.1.0) - ("go-github-com-inconshreveable-mousetrap-1.0.0" - ,go-github-com-inconshreveable-mousetrap-1.0.0) - ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" - ,go-github-com-cpuguy83-go-md2man-v2-2.0.0))) - (home-page "https://github.com/spf13/cobra") - (synopsis "Table of Contents") - (description - "Package cobra is a commander providing a simple interface to create powerful modern CLI interfaces. -In addition to providing an interface, Cobra simultaneously provides a controller to organize your application code. -") - (license license:asl2.0))) - -(define-public go-github-com-containerd-continuity-0.1.0 - (package - (name "go-github-com-containerd-continuity") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/continuity") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1h756l1xc31sc4zc1d3hmh64kl9qm5vpbbw0c93hrasn51ki96yz")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/continuity")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" - ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) - ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" - ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) - ("go-github-com-spf13-cobra-1.0.0" ,go-github-com-spf13-cobra-1.0.0) - ("go-github-com-sirupsen-logrus-1.7.0" - ,go-github-com-sirupsen-logrus-1.7.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-go-digest-1.0.0" - ,go-github-com-opencontainers-go-digest-1.0.0) - ("go-github-com-golang-protobuf-1.3.5" - ,go-github-com-golang-protobuf-1.3.5) - ("go-github-com-dustin-go-humanize-1.0.0" - ,go-github-com-dustin-go-humanize-1.0.0) - ("go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898" - ,go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898))) - (home-page "https://github.com/containerd/continuity") - (synopsis "continuity") - (description - "This package provides a transport-agnostic, filesystem metadata manifest system") - (license license:asl2.0))) - -(define-public go-github-com-containerd-fifo-1.0.0 - (package - (name "go-github-com-containerd-fifo") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/fifo") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1l6jy9b4mjcj7pbz1n79zmipni1dz60rf5n66vn5p2ggavbq7h1q")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/fifo")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" - ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) - (home-page "https://github.com/containerd/fifo") - (synopsis "fifo") - (description "Go package for handling fifos in a sane way.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-go-cni-1.0.2 - (package - (name "go-github-com-containerd-go-cni") - (version "1.0.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/go-cni") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1hqwy402qy04slz2vj05s517mhdbmmkdjs6nhfnk184a730whgv6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/go-cni")) - (propagated-inputs - `(("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-onsi-gomega-1.7.1" ,go-github-com-onsi-gomega-1.7.1) - ("go-github-com-onsi-ginkgo-1.10.3" ,go-github-com-onsi-ginkgo-1.10.3) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1) - ("go-github-com-containernetworking-cni-0.8.0" - ,go-github-com-containernetworking-cni-0.8.0))) - (home-page "https://github.com/containerd/go-cni") - (synopsis "go-cni") - (description - "This package provides a generic CNI library to provide APIs for CNI plugin interactions. The library provides APIs to:") - (license license:asl2.0))) - -(define-public go-github-com-containerd-go-runc-1.0.0 - (package - (name "go-github-com-containerd-go-runc") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/go-runc") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0xk30dzzxmd83bnfyilplizlxh1pg1gqz2jrq9wz9rqqkxazc03n")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/go-runc")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f" - ,go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f) - ("go-github-com-sirupsen-logrus-1.7.0" - ,go-github-com-sirupsen-logrus-1.7.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-runtime-spec-1.0.2" - ,go-github-com-opencontainers-runtime-spec-1.0.2) - ("go-github-com-containerd-console-1.0.1" - ,go-github-com-containerd-console-1.0.1))) - (home-page "https://github.com/containerd/go-runc") - (synopsis "go-runc") - (description - "This is a package for consuming the @url{https://github.com/opencontainers/runc,runc} binary in your Go applications. -It tries to expose all the settings and features of the runc CLI. If there is something missing then add it, its opensource!") - (license license:asl2.0))) - -(define-public go-github-com-containerd-zfs-0.0.0-20210315114300-dde8f0fda960 - (package - (name "go-github-com-containerd-zfs") - (version "0.0.0-20210315114300-dde8f0fda960") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/zfs") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ag5p2vqzdavq66wb1z42yw5jzrncsi97g8qk2x9nq51z1nj8rdi")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/zfs")) - (propagated-inputs - `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible" - ,go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible) - ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" - ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) - ("go-github-com-containerd-containerd-1.5.0-beta.3" - ,go-github-com-containerd-containerd-1.5.0-beta.3))) - (home-page "https://github.com/containerd/zfs") - (synopsis "ZFS snapshotter plugin") - (description "ZFS snapshotter plugin for containerd.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-containerd-1.5.0-beta.4 - (package - (name "go-github-com-containerd-containerd") - (version "1.5.0-beta.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/containerd") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "039c26mjq8qs1s4kbx76fc99wnmnx165bqn16b2b9gyvxcphs7iv")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/containerd")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) - ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) - ("go-github-com-golang-protobuf-1.3.5" - ,go-github-com-golang-protobuf-1.3.5) - ("go-github-com-gogo-googleapis-1.3.2" - ,go-github-com-gogo-googleapis-1.3.2) - ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" - ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) - ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) - ("go-k8s-io-cri-api-0.20.1" ,go-k8s-io-cri-api-0.20.1) - ("go-k8s-io-component-base-0.20.1" ,go-k8s-io-component-base-0.20.1) - ("go-k8s-io-client-go-0.20.1" ,go-k8s-io-client-go-0.20.1) - ("go-k8s-io-apiserver-0.20.1" ,go-k8s-io-apiserver-0.20.1) - ("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) - ("go-k8s-io-api-0.20.1" ,go-k8s-io-api-0.20.1) - ("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) - ("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" - ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) - ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" - ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) - ("go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b" - ,go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b) - ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) - ("go-github-com-tchap-go-patricia-2.2.6+incompatible" - ,go-github-com-tchap-go-patricia-2.2.6+incompatible) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-sirupsen-logrus-1.7.0" - ,go-github-com-sirupsen-logrus-1.7.0) - ("go-github-com-prometheus-client-golang-1.7.1" - ,go-github-com-prometheus-client-golang-1.7.1) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-selinux-1.8.0" - ,go-github-com-opencontainers-selinux-1.8.0) - ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" - ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) - ("go-github-com-opencontainers-runc-1.0.0-rc93" - ,go-github-com-opencontainers-runc-1.0.0-rc93) - ("go-github-com-opencontainers-image-spec-1.0.1" - ,go-github-com-opencontainers-image-spec-1.0.1) - ("go-github-com-opencontainers-go-digest-1.0.0" - ,go-github-com-opencontainers-go-digest-1.0.0) - ("go-github-com-moby-sys-symlink-0.1.0" - ,go-github-com-moby-sys-symlink-0.1.0) - ("go-github-com-moby-sys-mountinfo-0.4.1" - ,go-github-com-moby-sys-mountinfo-0.4.1) - ("go-github-com-klauspost-compress-1.11.3" - ,go-github-com-klauspost-compress-1.11.3) - ("go-github-com-imdario-mergo-0.3.11" - ,go-github-com-imdario-mergo-0.3.11) - ("go-github-com-hashicorp-go-multierror-1.0.0" - ,go-github-com-hashicorp-go-multierror-1.0.0) - ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" - ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) - ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) - ("go-github-com-google-go-cmp-0.5.4" - ,go-github-com-google-go-cmp-0.5.4) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2) - ("go-github-com-fsnotify-fsnotify-1.4.9" - ,go-github-com-fsnotify-fsnotify-1.4.9) - ("go-github-com-emicklei-go-restful-2.9.5+incompatible" - ,go-github-com-emicklei-go-restful-2.9.5+incompatible) - ("go-github-com-docker-go-units-0.4.0" - ,go-github-com-docker-go-units-0.4.0) - ("go-github-com-docker-go-metrics-0.0.1" - ,go-github-com-docker-go-metrics-0.0.1) - ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" - ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1) - ("go-github-com-coreos-go-systemd-v22-22.1.0" - ,go-github-com-coreos-go-systemd-v22-22.1.0) - ("go-github-com-containernetworking-plugins-0.8.6" - ,go-github-com-containernetworking-plugins-0.8.6) - ("go-github-com-containerd-zfs-0.0.0-20210315114300-dde8f0fda960" - ,go-github-com-containerd-zfs-0.0.0-20210315114300-dde8f0fda960) - ("go-github-com-containerd-typeurl-1.0.1" - ,go-github-com-containerd-typeurl-1.0.1) - ("go-github-com-containerd-ttrpc-1.0.2" - ,go-github-com-containerd-ttrpc-1.0.2) - ("go-github-com-containerd-nri-0.0.0-20210316161719-dbaa18c31c14" - ,go-github-com-containerd-nri-0.0.0-20210316161719-dbaa18c31c14) - ("go-github-com-containerd-imgcrypt-1.1.1-0.20210312161619-7ed62a527887" - ,go-github-com-containerd-imgcrypt-1.1.1-0.20210312161619-7ed62a527887) - ("go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0" - ,go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0) - ("go-github-com-containerd-go-cni-1.0.1" - ,go-github-com-containerd-go-cni-1.0.1) - ("go-github-com-containerd-fifo-0.0.0-20210316144830-115abcc95a1d" - ,go-github-com-containerd-fifo-0.0.0-20210316144830-115abcc95a1d) - ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" - ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) - ("go-github-com-containerd-console-1.0.1" - ,go-github-com-containerd-console-1.0.1) - ("go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68" - ,go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68) - ("go-github-com-containerd-btrfs-0.0.0-20210316141732-918d888fb676" - ,go-github-com-containerd-btrfs-0.0.0-20210316141732-918d888fb676) - ("go-github-com-containerd-aufs-0.0.0-20210316121734-20793ff83c97" - ,go-github-com-containerd-aufs-0.0.0-20210316121734-20793ff83c97) - ("go-github-com-microsoft-hcsshim-0.8.15" - ,go-github-com-microsoft-hcsshim-0.8.15) - ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" - ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3) - ("go-github-com-burntsushi-toml-0.3.1" - ,go-github-com-burntsushi-toml-0.3.1))) - (home-page "https://github.com/containerd/containerd") - (synopsis "Now Recruiting") - (description - "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") - (license license:asl2.0))) - -(define-public go-golang-org-x-sys-0.0.0-20210324051608-47abb6519492 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20210324051608-47abb6519492") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19g0pa8lazad5kcq396ggg9x1d6sx39rw9brz3hklx71gg1jd3ja")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-microsoft-hcsshim-0.8.16 - (package - (name "go-github-com-microsoft-hcsshim") - (version "0.8.16") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/microsoft/hcsshim") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "15bxkqq4zavwspx3ga8j3vx9jrc7l0jazsa6cs6im9liy6xhkbd6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/Microsoft/hcsshim")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) - ("go-golang-org-x-sys-0.0.0-20210324051608-47abb6519492" - ,go-golang-org-x-sys-0.0.0-20210324051608-47abb6519492) - ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" - ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) - ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) - ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) - ("go-github-com-sirupsen-logrus-1.7.0" - ,go-github-com-sirupsen-logrus-1.7.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" - ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2) - ("go-github-com-containerd-typeurl-1.0.1" - ,go-github-com-containerd-typeurl-1.0.1) - ("go-github-com-containerd-ttrpc-1.0.2" - ,go-github-com-containerd-ttrpc-1.0.2) - ("go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0" - ,go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0) - ("go-github-com-containerd-containerd-1.5.0-beta.4" - ,go-github-com-containerd-containerd-1.5.0-beta.4) - ("go-github-com-containerd-console-1.0.1" - ,go-github-com-containerd-console-1.0.1) - ("go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68" - ,go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68) - ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" - ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3))) - (home-page "https://github.com/Microsoft/hcsshim") - (synopsis "hcsshim") - (description - "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") - (license license:expat))) - -(define-public go-github-com-microsoft-go-winio-0.4.17-0.20210324224401-5516f17a5958 - (package - (name "go-github-com-microsoft-go-winio") - (version "0.4.17-0.20210324224401-5516f17a5958") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/microsoft/go-winio") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0gmgiak4x4gdyr17zm4b9vvharflk9pz5aj5jayh9hq50133b2f9")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/Microsoft/go-winio")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" - ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) - ("go-github-com-sirupsen-logrus-1.7.0" - ,go-github-com-sirupsen-logrus-1.7.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) - (home-page "https://github.com/Microsoft/go-winio") - (synopsis "go-winio") - (description - "This repository contains utilities for efficiently performing Win32 IO operations in -Go. Currently, this is focused on accessing named pipes and other file handles, and -for using named pipes as a net transport.") - (license license:expat))) - -(define-public go-github-com-containerd-aufs-0.0.0-20210316121734-20793ff83c97 - (package - (name "go-github-com-containerd-aufs") - (version "0.0.0-20210316121734-20793ff83c97") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/aufs") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ipr8pafb2xpkchfvnxjcfx9pb48mjr9k8krj9gnagssxhynbkd5")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/aufs")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" - ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" - ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) - ("go-github-com-containerd-containerd-1.5.0-beta.3" - ,go-github-com-containerd-containerd-1.5.0-beta.3))) - (home-page "https://github.com/containerd/aufs") - (synopsis "aufs snapshotter") - (description - "AUFS implementation of the snapshot interface for containerd.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-btrfs-0.0.0-20210316141732-918d888fb676 - (package - (name "go-github-com-containerd-btrfs") - (version "0.0.0-20210316141732-918d888fb676") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/btrfs") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1yf38gg41y1v12m0cl81r9q7d13170a4npzqxhbz7qn32zr23kzn")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/btrfs")) - (propagated-inputs - `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) - (home-page "https://github.com/containerd/btrfs") - (synopsis "go-btrfs") - (description - "Package btrfs provides bindings for working with btrfs partitions from Go. -") - (license license:asl2.0))) - -(define-public go-github-com-containerd-fifo-0.0.0-20210316144830-115abcc95a1d - (package - (name "go-github-com-containerd-fifo") - (version "0.0.0-20210316144830-115abcc95a1d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/fifo") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hqna43p8r6g3xv8g8n985hq1nzipsvjiwm70xpbzbgynh4ym6z5")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/fifo")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" - ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) - (home-page "https://github.com/containerd/fifo") - (synopsis "fifo") - (description "Go package for handling fifos in a sane way.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0 - (package - (name "go-github-com-containerd-go-runc") - (version "0.0.0-20201020171139-16b287bc67d0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/go-runc") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0xk30dzzxmd83bnfyilplizlxh1pg1gqz2jrq9wz9rqqkxazc03n")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/go-runc")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f" - ,go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f) - ("go-github-com-sirupsen-logrus-1.7.0" - ,go-github-com-sirupsen-logrus-1.7.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-runtime-spec-1.0.2" - ,go-github-com-opencontainers-runtime-spec-1.0.2) - ("go-github-com-containerd-console-1.0.1" - ,go-github-com-containerd-console-1.0.1))) - (home-page "https://github.com/containerd/go-runc") - (synopsis "go-runc") - (description - "This is a package for consuming the @url{https://github.com/opencontainers/runc,runc} binary in your Go applications. -It tries to expose all the settings and features of the runc CLI. If there is something missing then add it, its opensource!") - (license license:asl2.0))) - -(define-public go-github-com-containerd-imgcrypt-1.1.1-0.20210312161619-7ed62a527887 - (package - (name "go-github-com-containerd-imgcrypt") - (version "1.1.1-0.20210312161619-7ed62a527887") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/imgcrypt") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "16pgcc0w8m2cxhfjzmmd2h3n6mxzc1nlghrhgjlx0lf4q96hv904")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/imgcrypt")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) - ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" - ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) - ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) - ("go-github-com-sirupsen-logrus-1.7.0" - ,go-github-com-sirupsen-logrus-1.7.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" - ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) - ("go-github-com-opencontainers-image-spec-1.0.1" - ,go-github-com-opencontainers-image-spec-1.0.1) - ("go-github-com-opencontainers-go-digest-1.0.0" - ,go-github-com-opencontainers-go-digest-1.0.0) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2) - ("go-github-com-containers-ocicrypt-1.1.0" - ,go-github-com-containers-ocicrypt-1.1.0) - ("go-github-com-containerd-typeurl-1.0.1" - ,go-github-com-containerd-typeurl-1.0.1) - ("go-github-com-containerd-containerd-1.5.0-beta.3" - ,go-github-com-containerd-containerd-1.5.0-beta.3) - ("go-github-com-containerd-console-1.0.1" - ,go-github-com-containerd-console-1.0.1) - ("go-github-com-microsoft-hcsshim-0.8.15" - ,go-github-com-microsoft-hcsshim-0.8.15) - ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" - ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3))) - (home-page "https://github.com/containerd/imgcrypt") - (synopsis "imgcrypt image encryption library and command line tool") - (description - "Project @code{imgcrypt} is a non-core subproject of containerd.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-nri-0.0.0-20210316161719-dbaa18c31c14 - (package - (name "go-github-com-containerd-nri") - (version "0.0.0-20210316161719-dbaa18c31c14") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/nri") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0kyrvagbga6yib7il0m4zvqz977a4wsv5lgjd3ix53xmr4h7fgm7")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/nri")) - (propagated-inputs - `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-containerd-containerd-1.5.0-beta.3" - ,go-github-com-containerd-containerd-1.5.0-beta.3))) - (home-page "https://github.com/containerd/nri") - (synopsis "nri - Node Resource Interface") - (description - "This project is a WIP for a new, CNI like, interface for managing resources on a node for Pods and Containers.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-zfs-0.0.0-20210324211415-d5c4544f0433 - (package - (name "go-github-com-containerd-zfs") - (version "0.0.0-20210324211415-d5c4544f0433") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/zfs") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1wsqwqv2pyn05asgpm9clgpwq9b8b0fjk4khzkjvscrf5j4v1rx4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/zfs")) - (propagated-inputs - `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible" - ,go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible) - ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" - ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) - ("go-github-com-containerd-containerd-1.5.0-beta.3" - ,go-github-com-containerd-containerd-1.5.0-beta.3))) - (home-page "https://github.com/containerd/zfs") - (synopsis "ZFS snapshotter plugin") - (description "ZFS snapshotter plugin for containerd.") - (license license:asl2.0))) - -(define-public go-k8s-io-apiserver-0.20.4 - (package - (name "go-k8s-io-apiserver") - (version "0.20.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes/apiserver") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1gffl7z6bvi46v0fvphbak4waddsgf4pd5w16khgrzl1sv9skn61")))) - (build-system go-build-system) - (arguments '(#:import-path "k8s.io/apiserver")) - (propagated-inputs - `(("go-k8s-io-component-base-0.20.4" ,go-k8s-io-component-base-0.20.4) - ("go-k8s-io-client-go-0.20.4" ,go-k8s-io-client-go-0.20.4) - ("go-k8s-io-apimachinery-0.20.4" ,go-k8s-io-apimachinery-0.20.4) - ("go-k8s-io-api-0.20.4" ,go-k8s-io-api-0.20.4) - ("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) - ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.2" - ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.2) - ("go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.14" - ,go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.14) - ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" - ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) - ("go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd" - ,go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd) - ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) - ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) - ("go-gopkg-in-square-go-jose-v2-2.2.2" - ,go-gopkg-in-square-go-jose-v2-2.2.2) - ("go-gopkg-in-natefinch-lumberjack-v2-2.0.0" - ,go-gopkg-in-natefinch-lumberjack-v2-2.0.0) - ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) - ("go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a" - ,go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a) - ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" - ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) - ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" - ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) - ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" - ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) - ("go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0" - ,go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0) - ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) - ("go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489" - ,go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489) - ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) - ("go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5" - ,go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) - ("go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021" - ,go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822" - ,go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822) - ("go-github-com-mailru-easyjson-0.7.0" - ,go-github-com-mailru-easyjson-0.7.0) - ("go-github-com-hashicorp-golang-lru-0.5.1" - ,go-github-com-hashicorp-golang-lru-0.5.1) - ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" - ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) - ("go-github-com-gorilla-websocket-1.4.2" - ,go-github-com-gorilla-websocket-1.4.2) - ("go-github-com-googleapis-gnostic-0.4.1" - ,go-github-com-googleapis-gnostic-0.4.1) - ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) - ("go-github-com-google-gofuzz-1.1.0" - ,go-github-com-google-gofuzz-1.1.0) - ("go-github-com-google-go-cmp-0.5.2" - ,go-github-com-google-go-cmp-0.5.2) - ("go-github-com-gogo-protobuf-1.3.1" - ,go-github-com-gogo-protobuf-1.3.1) - ("go-github-com-go-openapi-spec-0.19.3" - ,go-github-com-go-openapi-spec-0.19.3) - ("go-github-com-evanphx-json-patch-4.9.0+incompatible" - ,go-github-com-evanphx-json-patch-4.9.0+incompatible) - ("go-github-com-emicklei-go-restful-2.9.5+incompatible" - ,go-github-com-emicklei-go-restful-2.9.5+incompatible) - ("go-github-com-dustin-go-humanize-1.0.0" - ,go-github-com-dustin-go-humanize-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1) - ("go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f" - ,go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f) - ("go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e" - ,go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e) - ("go-github-com-coreos-go-semver-0.3.0" - ,go-github-com-coreos-go-semver-0.3.0) - ("go-github-com-coreos-go-oidc-2.1.0+incompatible" - ,go-github-com-coreos-go-oidc-2.1.0+incompatible))) - (home-page "https://k8s.io/apiserver") - (synopsis "apiserver") - (description - "Generic library for building a Kubernetes aggregated API server.") - (license license:asl2.0))) - -(define-public go-k8s-io-api-0.20.4 - (package - (name "go-k8s-io-api") - (version "0.20.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes/api") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hjckd94vpsr690kwx7dad8qlb8xjg2bz5ms315s9h6wc5cqwvgy")))) - (build-system go-build-system) - (arguments '(#:import-path "k8s.io/api")) - (propagated-inputs - `(("go-k8s-io-apimachinery-0.20.4" ,go-k8s-io-apimachinery-0.20.4) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-gogo-protobuf-1.3.1" - ,go-github-com-gogo-protobuf-1.3.1))) - (home-page "https://k8s.io/api") - (synopsis "api") - (description - "Schema of the external API types that are served by the Kubernetes API server.") - (license license:asl2.0))) - -(define-public go-k8s-io-apimachinery-0.20.4 - (package - (name "go-k8s-io-apimachinery") - (version "0.20.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes/apimachinery") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "15qc12lbzpd4lgajy0rv24b3ky4hhg5y1l37qxdfiakhz91didfw")))) - (build-system go-build-system) - (arguments '(#:import-path "k8s.io/apimachinery")) - (propagated-inputs - `(("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) - ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.2" - ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.2) - ("go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd" - ,go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd) - ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) - ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) - ("go-gopkg-in-inf-v0-0.9.1" ,go-gopkg-in-inf-v0-0.9.1) - ("go-google-golang-org-protobuf-1.25.0" - ,go-google-golang-org-protobuf-1.25.0) - ("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" - ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) - ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) - ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" - ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) - ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" - ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-onsi-gomega-1.7.0" ,go-github-com-onsi-gomega-1.7.0) - ("go-github-com-onsi-ginkgo-1.11.0" ,go-github-com-onsi-ginkgo-1.11.0) - ("go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f" - ,go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f) - ("go-github-com-modern-go-reflect2-1.0.1" - ,go-github-com-modern-go-reflect2-1.0.1) - ("go-github-com-json-iterator-go-1.1.10" - ,go-github-com-json-iterator-go-1.1.10) - ("go-github-com-hashicorp-golang-lru-0.5.1" - ,go-github-com-hashicorp-golang-lru-0.5.1) - ("go-github-com-googleapis-gnostic-0.4.1" - ,go-github-com-googleapis-gnostic-0.4.1) - ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) - ("go-github-com-google-gofuzz-1.1.0" - ,go-github-com-google-gofuzz-1.1.0) - ("go-github-com-google-go-cmp-0.5.2" - ,go-github-com-google-go-cmp-0.5.2) - ("go-github-com-golang-protobuf-1.4.3" - ,go-github-com-golang-protobuf-1.4.3) - ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" - ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) - ("go-github-com-gogo-protobuf-1.3.1" - ,go-github-com-gogo-protobuf-1.3.1) - ("go-github-com-fsnotify-fsnotify-1.4.9" - ,go-github-com-fsnotify-fsnotify-1.4.9) - ("go-github-com-evanphx-json-patch-4.9.0+incompatible" - ,go-github-com-evanphx-json-patch-4.9.0+incompatible) - ("go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153" - ,go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153) - ("go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96" - ,go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://k8s.io/apimachinery") - (synopsis "apimachinery") - (description - "Scheme, typing, encoding, decoding, and conversion packages for Kubernetes and Kubernetes-like API objects.") - (license license:asl2.0))) - -(define-public go-k8s-io-client-go-0.20.4 - (package - (name "go-k8s-io-client-go") - (version "0.20.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes/client-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0g8x2d59qm6068rql63c0mdhcjz9jsyyf7a5fdg1hyf88dvigfcx")))) - (build-system go-build-system) - (arguments '(#:import-path "k8s.io/client-go")) - (propagated-inputs - `(("go-k8s-io-apimachinery-0.20.4" ,go-k8s-io-apimachinery-0.20.4) - ("go-k8s-io-api-0.20.4" ,go-k8s-io-api-0.20.4) - ("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) - ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" - ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) - ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) - ("go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e" - ,go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e) - ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" - ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) - ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" - ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) - ("go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0" - ,go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) - ("go-github-com-peterbourgon-diskv-2.0.1+incompatible" - ,go-github-com-peterbourgon-diskv-2.0.1+incompatible) - ("go-github-com-imdario-mergo-0.3.5" - ,go-github-com-imdario-mergo-0.3.5) - ("go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7" - ,go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7) - ("go-github-com-googleapis-gnostic-0.4.1" - ,go-github-com-googleapis-gnostic-0.4.1) - ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) - ("go-github-com-google-gofuzz-1.1.0" - ,go-github-com-google-gofuzz-1.1.0) - ("go-github-com-google-go-cmp-0.5.2" - ,go-github-com-google-go-cmp-0.5.2) - ("go-github-com-golang-protobuf-1.4.3" - ,go-github-com-golang-protobuf-1.4.3) - ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" - ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) - ("go-github-com-gogo-protobuf-1.3.1" - ,go-github-com-gogo-protobuf-1.3.1) - ("go-github-com-evanphx-json-patch-4.9.0+incompatible" - ,go-github-com-evanphx-json-patch-4.9.0+incompatible) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1) - ("go-github-com-azure-go-autorest-autorest-adal-0.9.5" - ,go-github-com-azure-go-autorest-autorest-adal-0.9.5) - ("go-github-com-azure-go-autorest-autorest-0.11.1" - ,go-github-com-azure-go-autorest-autorest-0.11.1) - ("go-cloud-google-com-go-0.54.0" ,go-cloud-google-com-go-0.54.0))) - (home-page "https://k8s.io/client-go") - (synopsis "client-go") - (description - "Go clients for talking to a @url{http://kubernetes.io/,kubernetes} cluster.") - (license license:asl2.0))) - -(define-public go-k8s-io-component-base-0.20.4 - (package - (name "go-k8s-io-component-base") - (version "0.20.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes/component-base") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "02b782p63h8z3pg64i1kfgkmxwslxpyl6afkhd1agbig9zd6g7w8")))) - (build-system go-build-system) - (arguments '(#:import-path "k8s.io/component-base")) - (propagated-inputs - `(("go-k8s-io-client-go-0.20.4" ,go-k8s-io-client-go-0.20.4) - ("go-k8s-io-apimachinery-0.20.4" ,go-k8s-io-apimachinery-0.20.4) - ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" - ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) - ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) - ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) - ("go-go-uber-org-multierr-1.1.0" ,go-go-uber-org-multierr-1.1.0) - ("go-go-uber-org-atomic-1.4.0" ,go-go-uber-org-atomic-1.4.0) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) - ("go-github-com-sirupsen-logrus-1.6.0" - ,go-github-com-sirupsen-logrus-1.6.0) - ("go-github-com-prometheus-procfs-0.2.0" - ,go-github-com-prometheus-procfs-0.2.0) - ("go-github-com-prometheus-common-0.10.0" - ,go-github-com-prometheus-common-0.10.0) - ("go-github-com-prometheus-client-model-0.2.0" - ,go-github-com-prometheus-client-model-0.2.0) - ("go-github-com-prometheus-client-golang-1.7.1" - ,go-github-com-prometheus-client-golang-1.7.1) - ("go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd" - ,go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd) - ("go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369" - ,go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369) - ("go-github-com-google-go-cmp-0.5.2" - ,go-github-com-google-go-cmp-0.5.2) - ("go-github-com-go-logr-logr-0.2.0" ,go-github-com-go-logr-logr-0.2.0) - ("go-github-com-blang-semver-3.5.1+incompatible" - ,go-github-com-blang-semver-3.5.1+incompatible))) - (home-page "https://k8s.io/component-base") - (synopsis "component-base") - (description - "Implement KEP 32: @url{https://github.com/kubernetes/enhancements/blob/master/keps/sig-cluster-lifecycle/wgs/783-component-base/README.md,https://github.com/kubernetes/enhancements/blob/master/keps/sig-cluster-lifecycle/wgs/783-component-base/README.md}") - (license license:asl2.0))) - -(define-public go-k8s-io-cri-api-0.20.4 - (package - (name "go-k8s-io-cri-api") - (version "0.20.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes/cri-api") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1r98d0kv42sijdg3404xx2g5jj0zixvfagkky2zla12p68ajm4xr")))) - (build-system go-build-system) - (arguments '(#:import-path "k8s.io/cri-api")) - (propagated-inputs - `(("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" - ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) - ("go-google-golang-org-protobuf-1.25.0" - ,go-google-golang-org-protobuf-1.25.0) - ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) - ("go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a" - ,go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a) - ("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" - ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) - ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) - ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" - ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) - ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" - ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-kr-pretty-0.2.0" ,go-github-com-kr-pretty-0.2.0) - ("go-github-com-google-go-cmp-0.5.2" - ,go-github-com-google-go-cmp-0.5.2) - ("go-github-com-golang-protobuf-1.4.3" - ,go-github-com-golang-protobuf-1.4.3) - ("go-github-com-gogo-protobuf-1.3.1" - ,go-github-com-gogo-protobuf-1.3.1) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://k8s.io/cri-api") - (synopsis "Purpose") - (description - "This repository contains the definitions for the Container Runtime Interface (CRI). -CRI is a plugin interface which enables kubelet to use a wide variety of container runtimes, -without the need to recompile. CRI consists of a protocol buffers and gRPC API.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-containerd-1.5.0-rc.0 - (package - (name "go-github-com-containerd-containerd") - (version "1.5.0-rc.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/containerd") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "148z6782bj0vy3vzbhg2xf53g14llvxfsmdsqkz6x5n49rm6xr4i")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/containerd")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) - ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) - ("go-github-com-golang-protobuf-1.3.5" - ,go-github-com-golang-protobuf-1.3.5) - ("go-github-com-gogo-googleapis-1.3.2" - ,go-github-com-gogo-googleapis-1.3.2) - ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" - ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) - ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) - ("go-k8s-io-cri-api-0.20.4" ,go-k8s-io-cri-api-0.20.4) - ("go-k8s-io-component-base-0.20.4" ,go-k8s-io-component-base-0.20.4) - ("go-k8s-io-client-go-0.20.4" ,go-k8s-io-client-go-0.20.4) - ("go-k8s-io-apiserver-0.20.4" ,go-k8s-io-apiserver-0.20.4) - ("go-k8s-io-apimachinery-0.20.4" ,go-k8s-io-apimachinery-0.20.4) - ("go-k8s-io-api-0.20.4" ,go-k8s-io-api-0.20.4) - ("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) - ("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" - ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) - ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" - ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) - ("go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b" - ,go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b) - ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) - ("go-github-com-tchap-go-patricia-2.2.6+incompatible" - ,go-github-com-tchap-go-patricia-2.2.6+incompatible) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-sirupsen-logrus-1.7.0" - ,go-github-com-sirupsen-logrus-1.7.0) - ("go-github-com-prometheus-client-golang-1.7.1" - ,go-github-com-prometheus-client-golang-1.7.1) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-pelletier-go-toml-1.8.1" - ,go-github-com-pelletier-go-toml-1.8.1) - ("go-github-com-opencontainers-selinux-1.8.0" - ,go-github-com-opencontainers-selinux-1.8.0) - ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" - ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) - ("go-github-com-opencontainers-runc-1.0.0-rc93" - ,go-github-com-opencontainers-runc-1.0.0-rc93) - ("go-github-com-opencontainers-image-spec-1.0.1" - ,go-github-com-opencontainers-image-spec-1.0.1) - ("go-github-com-opencontainers-go-digest-1.0.0" - ,go-github-com-opencontainers-go-digest-1.0.0) - ("go-github-com-moby-sys-symlink-0.1.0" - ,go-github-com-moby-sys-symlink-0.1.0) - ("go-github-com-moby-sys-mountinfo-0.4.1" - ,go-github-com-moby-sys-mountinfo-0.4.1) - ("go-github-com-klauspost-compress-1.11.13" - ,go-github-com-klauspost-compress-1.11.13) - ("go-github-com-imdario-mergo-0.3.11" - ,go-github-com-imdario-mergo-0.3.11) - ("go-github-com-hashicorp-go-multierror-1.0.0" - ,go-github-com-hashicorp-go-multierror-1.0.0) - ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" - ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) - ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) - ("go-github-com-google-go-cmp-0.5.4" - ,go-github-com-google-go-cmp-0.5.4) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2) - ("go-github-com-fsnotify-fsnotify-1.4.9" - ,go-github-com-fsnotify-fsnotify-1.4.9) - ("go-github-com-emicklei-go-restful-2.9.5+incompatible" - ,go-github-com-emicklei-go-restful-2.9.5+incompatible) - ("go-github-com-docker-go-units-0.4.0" - ,go-github-com-docker-go-units-0.4.0) - ("go-github-com-docker-go-metrics-0.0.1" - ,go-github-com-docker-go-metrics-0.0.1) - ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" - ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1) - ("go-github-com-coreos-go-systemd-v22-22.1.0" - ,go-github-com-coreos-go-systemd-v22-22.1.0) - ("go-github-com-containernetworking-plugins-0.8.6" - ,go-github-com-containernetworking-plugins-0.8.6) - ("go-github-com-containerd-zfs-0.0.0-20210324211415-d5c4544f0433" - ,go-github-com-containerd-zfs-0.0.0-20210324211415-d5c4544f0433) - ("go-github-com-containerd-typeurl-1.0.1" - ,go-github-com-containerd-typeurl-1.0.1) - ("go-github-com-containerd-ttrpc-1.0.2" - ,go-github-com-containerd-ttrpc-1.0.2) - ("go-github-com-containerd-nri-0.0.0-20210316161719-dbaa18c31c14" - ,go-github-com-containerd-nri-0.0.0-20210316161719-dbaa18c31c14) - ("go-github-com-containerd-imgcrypt-1.1.1-0.20210312161619-7ed62a527887" - ,go-github-com-containerd-imgcrypt-1.1.1-0.20210312161619-7ed62a527887) - ("go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0" - ,go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0) - ("go-github-com-containerd-go-cni-1.0.1" - ,go-github-com-containerd-go-cni-1.0.1) - ("go-github-com-containerd-fifo-0.0.0-20210316144830-115abcc95a1d" - ,go-github-com-containerd-fifo-0.0.0-20210316144830-115abcc95a1d) - ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" - ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) - ("go-github-com-containerd-console-1.0.1" - ,go-github-com-containerd-console-1.0.1) - ("go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68" - ,go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68) - ("go-github-com-containerd-btrfs-0.0.0-20210316141732-918d888fb676" - ,go-github-com-containerd-btrfs-0.0.0-20210316141732-918d888fb676) - ("go-github-com-containerd-aufs-0.0.0-20210316121734-20793ff83c97" - ,go-github-com-containerd-aufs-0.0.0-20210316121734-20793ff83c97) - ("go-github-com-microsoft-hcsshim-0.8.15" - ,go-github-com-microsoft-hcsshim-0.8.15) - ("go-github-com-microsoft-go-winio-0.4.17-0.20210324224401-5516f17a5958" - ,go-github-com-microsoft-go-winio-0.4.17-0.20210324224401-5516f17a5958))) - (home-page "https://github.com/containerd/containerd") - (synopsis "Now Recruiting") - (description - "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") - (license license:asl2.0))) - -(define-public go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20210322153248-0c34fe9e7dc2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "021szs1czc0xg4chpays7i05dvkax9s8mns314ab01r887kchqxq")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" - ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) - ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" - ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68) - ("go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110" - ,go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-github-com-containers-ocicrypt-1.1.1 - (package - (name "go-github-com-containers-ocicrypt") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containers/ocicrypt") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1l0bfk244sxnakg3my529jsw532pffkmiyk5y1iqblz4mkjfphc8")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containers/ocicrypt")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) - ("go-gopkg-in-square-go-jose-v2-2.5.1" - ,go-gopkg-in-square-go-jose-v2-2.5.1) - ("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) - ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" - ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) - ("go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2" - ,go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2) - ("go-go-mozilla-org-pkcs7-0.0.0-20200128120323-432b2356ecb1" - ,go-go-mozilla-org-pkcs7-0.0.0-20200128120323-432b2356ecb1) - ("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0) - ("go-github-com-stefanberger-go-pkcs11uri-0.0.0-20201008174630-78d3cae3a980" - ,go-github-com-stefanberger-go-pkcs11uri-0.0.0-20201008174630-78d3cae3a980) - ("go-github-com-sirupsen-logrus-1.7.0" - ,go-github-com-sirupsen-logrus-1.7.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-image-spec-1.0.1" - ,go-github-com-opencontainers-image-spec-1.0.1) - ("go-github-com-opencontainers-go-digest-1.0.0" - ,go-github-com-opencontainers-go-digest-1.0.0) - ("go-github-com-miekg-pkcs11-1.0.3" ,go-github-com-miekg-pkcs11-1.0.3) - ("go-github-com-google-go-cmp-0.5.2" - ,go-github-com-google-go-cmp-0.5.2) - ("go-github-com-golang-protobuf-1.4.3" - ,go-github-com-golang-protobuf-1.4.3))) - (home-page "https://github.com/containers/ocicrypt") - (synopsis "OCIcrypt Library") - (description - "The @code{ocicrypt} library is the OCI image spec implementation of container image encryption. More details of the spec can be seen in the @url{https://github.com/opencontainers/image-spec/pull/775,OCI repository}. The purpose of this library is to encode spec structures and consts in code, as well as provide a consistent implementation of image encryption across container runtimes and build tools.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-imgcrypt-1.1.1 - (package - (name "go-github-com-containerd-imgcrypt") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/imgcrypt") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "177fs3p2xzwjsffcxqqllx6wi6ghfyqbvfgn95v3q7a2993yqk4k")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/imgcrypt")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) - ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" - ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) - ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) - ("go-github-com-sirupsen-logrus-1.7.0" - ,go-github-com-sirupsen-logrus-1.7.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" - ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) - ("go-github-com-opencontainers-image-spec-1.0.1" - ,go-github-com-opencontainers-image-spec-1.0.1) - ("go-github-com-opencontainers-go-digest-1.0.0" - ,go-github-com-opencontainers-go-digest-1.0.0) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2) - ("go-github-com-containers-ocicrypt-1.1.1" - ,go-github-com-containers-ocicrypt-1.1.1) - ("go-github-com-containerd-typeurl-1.0.1" - ,go-github-com-containerd-typeurl-1.0.1) - ("go-github-com-containerd-containerd-1.5.0-rc.0" - ,go-github-com-containerd-containerd-1.5.0-rc.0) - ("go-github-com-containerd-console-1.0.2" - ,go-github-com-containerd-console-1.0.2) - ("go-github-com-microsoft-hcsshim-0.8.16" - ,go-github-com-microsoft-hcsshim-0.8.16) - ("go-github-com-microsoft-go-winio-0.4.17-0.20210324224401-5516f17a5958" - ,go-github-com-microsoft-go-winio-0.4.17-0.20210324224401-5516f17a5958))) - (home-page "https://github.com/containerd/imgcrypt") - (synopsis "imgcrypt image encryption library and command line tool") - (description - "Project @code{imgcrypt} is a non-core subproject of containerd.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-nri-0.1.0 - (package - (name "go-github-com-containerd-nri") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/nri") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hqji5qa0n0fdyv9sjdl7mv3bb4fnq9i79pdzlw6m1nigrnb18qp")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/nri")) - (propagated-inputs - `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-containerd-containerd-1.5.0-beta.3" - ,go-github-com-containerd-containerd-1.5.0-beta.3))) - (home-page "https://github.com/containerd/nri") - (synopsis "nri - Node Resource Interface") - (description - "This project is a WIP for a new, CNI like, interface for managing resources on a node for Pods and Containers.") - (license license:asl2.0))) - -(define-public go-google-golang-org-genproto-0.0.0-20200224152610-e50cd9704f63 - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20200224152610-e50cd9704f63") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1392q1dfg4kkfg86w05gsszdlkd0hf424rvich1xzjqbm3ad3lin")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" - ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-golang-protobuf-1.3.3" - ,go-github-com-golang-protobuf-1.3.3))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-ttrpc-1.1.0 - (package - (name "go-github-com-containerd-ttrpc") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/ttrpc") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "13grp3ivmkdyhwpzhnva2w4lv035c4i1m0a2bdci4z44mif86gns")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/ttrpc")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.27.1" - ,go-google-golang-org-protobuf-1.27.1) - ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) - ("go-google-golang-org-genproto-0.0.0-20200224152610-e50cd9704f63" - ,go-google-golang-org-genproto-0.0.0-20200224152610-e50cd9704f63) - ("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" - ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) - ("go-github-com-sirupsen-logrus-1.8.1" - ,go-github-com-sirupsen-logrus-1.8.1) - ("go-github-com-prometheus-procfs-0.6.0" - ,go-github-com-prometheus-procfs-0.6.0) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2))) - (home-page "https://github.com/containerd/ttrpc") - (synopsis "ttrpc") - (description "GRPC for low-memory environments.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-typeurl-1.0.2 - (package - (name "go-github-com-containerd-typeurl") - (version "1.0.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/typeurl") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0wvfxlxgkln11d9s6rxay965c715bnpk203klbsq8m8qpjqrz620")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/typeurl")) - (propagated-inputs - `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2))) - (home-page "https://github.com/containerd/typeurl") - (synopsis "typeurl") - (description - "This package provides a Go package for managing the registration, marshaling, and unmarshaling of encoded types.") - (license license:asl2.0))) - -(define-public go-github-com-microsoft-hcsshim-0.8.15 - (package - (name "go-github-com-microsoft-hcsshim") - (version "0.8.15") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/microsoft/hcsshim") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1119qf7nklpnn9li61m8jrd5wvifhiz7qh7sfjjy04rfvbvlsi6c")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/Microsoft/hcsshim")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.30.0" ,go-google-golang-org-grpc-1.30.0) - ("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" - ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) - ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" - ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) - ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) - ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) - ("go-github-com-sirupsen-logrus-1.7.0" - ,go-github-com-sirupsen-logrus-1.7.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" - ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2) - ("go-github-com-containerd-typeurl-1.0.1" - ,go-github-com-containerd-typeurl-1.0.1) - ("go-github-com-containerd-ttrpc-1.0.2" - ,go-github-com-containerd-ttrpc-1.0.2) - ("go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328" - ,go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328) - ("go-github-com-containerd-containerd-1.5.0-beta.1" - ,go-github-com-containerd-containerd-1.5.0-beta.1) - ("go-github-com-containerd-console-1.0.1" - ,go-github-com-containerd-console-1.0.1) - ("go-github-com-containerd-cgroups-0.0.0-20200824123100-0b889c03f102" - ,go-github-com-containerd-cgroups-0.0.0-20200824123100-0b889c03f102) - ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" - ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3))) - (home-page "https://github.com/Microsoft/hcsshim") - (synopsis "hcsshim") - (description - "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") - (license license:expat))) - -(define-public go-github-com-containerd-containerd-1.4.1 - (package - (name "go-github-com-containerd-containerd") - (version "1.4.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/containerd") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1k6dqaidnldf7kpxdszf0wn6xb8m6vaizm2aza81fri1q0051213")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/containerd")) - (home-page "https://github.com/containerd/containerd") - (synopsis "Now Recruiting") - (description - "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") - (license license:asl2.0))) - -(define-public go-golang-org-x-sys-0.0.0-20200622214017-ed371f2e16b4 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200622214017-ed371f2e16b4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "107wfy2fj6z5zps1v72j8drfrfvss1158drb0yqhz5awlbvgrpj7")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-containerd-aufs-0.0.0-20201003224125-76a6863f2989 - (package - (name "go-github-com-containerd-aufs") - (version "0.0.0-20201003224125-76a6863f2989") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/aufs") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0nsiyqjrgf3vvv6hpiljknpbkzlla1czpkq69i607f7p5jd8bgaq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/aufs")) - (propagated-inputs - `(("go-gotest-tools-v3-3.0.2" ,go-gotest-tools-v3-3.0.2) - ("go-golang-org-x-sys-0.0.0-20200622214017-ed371f2e16b4" - ,go-golang-org-x-sys-0.0.0-20200622214017-ed371f2e16b4) - ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-image-spec-1.0.1" - ,go-github-com-opencontainers-image-spec-1.0.1) - ("go-github-com-google-go-cmp-0.3.1" - ,go-github-com-google-go-cmp-0.3.1) - ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" - ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) - ("go-github-com-containerd-typeurl-1.0.1" - ,go-github-com-containerd-typeurl-1.0.1) - ("go-github-com-containerd-ttrpc-1.0.1" - ,go-github-com-containerd-ttrpc-1.0.1) - ("go-github-com-containerd-continuity-0.0.0-20200710164510-efbc4488d8fe" - ,go-github-com-containerd-continuity-0.0.0-20200710164510-efbc4488d8fe) - ("go-github-com-containerd-containerd-1.4.1" - ,go-github-com-containerd-containerd-1.4.1) - ("go-github-com-microsoft-hcsshim-0.8.9" - ,go-github-com-microsoft-hcsshim-0.8.9))) - (home-page "https://github.com/containerd/aufs") - (synopsis "aufs snapshotter") - (description - "AUFS implementation of the snapshot interface for containerd.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68 - (package - (name "go-github-com-containerd-cgroups") - (version "0.0.0-20210114181951-8a68de567b68") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/cgroups") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0v70kxazvsizx33w9nz341hg14acg2vnbfcpx9yknmsjqdwgqnhs")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/cgroups")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9" - ,go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9) - ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) - ("go-github-com-stretchr-testify-1.2.2" - ,go-github-com-stretchr-testify-1.2.2) - ("go-github-com-sirupsen-logrus-1.7.0" - ,go-github-com-sirupsen-logrus-1.7.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-runtime-spec-1.0.2" - ,go-github-com-opencontainers-runtime-spec-1.0.2) - ("go-github-com-gogo-protobuf-1.3.1" - ,go-github-com-gogo-protobuf-1.3.1) - ("go-github-com-godbus-dbus-v5-5.0.3" - ,go-github-com-godbus-dbus-v5-5.0.3) - ("go-github-com-docker-go-units-0.4.0" - ,go-github-com-docker-go-units-0.4.0) - ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" - ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) - ("go-github-com-coreos-go-systemd-v22-22.1.0" - ,go-github-com-coreos-go-systemd-v22-22.1.0) - ("go-github-com-cilium-ebpf-0.2.0" ,go-github-com-cilium-ebpf-0.2.0))) - (home-page "https://github.com/containerd/cgroups") - (synopsis "cgroups") - (description - "Go package for creating, managing, inspecting, and destroying cgroups. -The resources format for settings on the cgroup uses the OCI runtime-spec found -@url{https://github.com/opencontainers/runtime-spec,here}.") - (license license:asl2.0))) - -(define-public go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3 - (package - (name "go-github-com-microsoft-go-winio") - (version "0.4.17-0.20210211115548-6eac466e5fa3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/microsoft/go-winio") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0w8fmybsl0v5azwi66qa299gwh0mlp907mrg4yaiya7s0cjmjx0d")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/Microsoft/go-winio")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" - ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) - ("go-github-com-sirupsen-logrus-1.7.0" - ,go-github-com-sirupsen-logrus-1.7.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) - (home-page "https://github.com/Microsoft/go-winio") - (synopsis "go-winio") - (description - "This repository contains utilities for efficiently performing Win32 IO operations in -Go. Currently, this is focused on accessing named pipes and other file handles, and -for using named pipes as a net transport.") - (license license:expat))) - -(define-public go-github-com-microsoft-hcsshim-test-0.0.0-20210227013316-43a75bb4edd3 - (package - (name "go-github-com-microsoft-hcsshim-test") - (version "0.0.0-20210227013316-43a75bb4edd3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/microsoft/hcsshim") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1j899w4hdw1mk6rfyy9qsm902iavgc49ykbjdsb02m6wszq1z0wy")))) - (build-system go-build-system) - (arguments - '(#:import-path - "github.com/Microsoft/hcsshim/test" - #:unpack-path - "github.com/Microsoft/hcsshim")) - (propagated-inputs - `(("go-k8s-io-cri-api-0.20.1" ,go-k8s-io-cri-api-0.20.1) - ("go-google-golang-org-grpc-1.30.0" ,go-google-golang-org-grpc-1.30.0) - ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" - ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) - ("go-github-com-sirupsen-logrus-1.7.0" - ,go-github-com-sirupsen-logrus-1.7.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39" - ,go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39) - ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" - ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2) - ("go-github-com-containerd-typeurl-1.0.1" - ,go-github-com-containerd-typeurl-1.0.1) - ("go-github-com-containerd-ttrpc-1.0.2" - ,go-github-com-containerd-ttrpc-1.0.2) - ("go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328" - ,go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328) - ("go-github-com-containerd-containerd-1.5.0-beta.1" - ,go-github-com-containerd-containerd-1.5.0-beta.1) - ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" - ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3))) - (home-page "https://github.com/Microsoft/hcsshim") - (synopsis #f) - (description #f) - (license license:expat))) - -(define-public go-github-com-microsoft-go-winio-0.4.16 - (package - (name "go-github-com-microsoft-go-winio") - (version "0.4.16") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/microsoft/go-winio") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0snwbwdjs34x0my9ri77cvrbnahdiyjh2jlkzf12fy48p7fyk7pq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/Microsoft/go-winio")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3" - ,go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3) - ("go-github-com-sirupsen-logrus-1.4.1" - ,go-github-com-sirupsen-logrus-1.4.1) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) - (home-page "https://github.com/Microsoft/go-winio") - (synopsis "go-winio") - (description - "This repository contains utilities for efficiently performing Win32 IO operations in -Go. Currently, this is focused on accessing named pipes and other file handles, and -for using named pipes as a net transport.") - (license license:expat))) - -(define-public go-github-com-azure-azure-sdk-for-go-16.2.1+incompatible - (package - (name "go-github-com-azure-azure-sdk-for-go") - (version "16.2.1+incompatible") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/Azure/azure-sdk-for-go") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1hwrspsyfs003h4f8zl8b41g3a6jpkqawqrykd1mjw9p6hs1c6k8")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/Azure/azure-sdk-for-go")) - (home-page "https://github.com/Azure/azure-sdk-for-go") - (synopsis "Azure SDK for Go") - (description - "Package sdk provides Go packages for managing and using Azure services. -") - (license license:expat))) - -(define-public go-github-com-azure-go-autorest-10.8.1+incompatible - (package - (name "go-github-com-azure-go-autorest") - (version "10.8.1+incompatible") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/Azure/go-autorest") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "122zfifj93vkix8ggkdh0dz5rmzxh4bql4nry1hws2czmzgxlkdm")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/Azure/go-autorest")) - (home-page "https://github.com/Azure/go-autorest") - (synopsis "go-autorest") - (description - "Package go-autorest provides an HTTP request client for use with Autorest-generated API client packages. -") - (license license:asl2.0))) - -(define-public go-github-com-go-ini-ini-1.25.4 - (package - (name "go-github-com-go-ini-ini") - (version "1.25.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/go-ini/ini") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0b6cql5ripbiyrm18d6bfd1rfjnwcbskppw3d0vb80l0wy72d0c6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/go-ini/ini")) - (home-page "https://github.com/go-ini/ini") - (synopsis "INI") - (description - "Package ini provides INI file read and write functionality in Go. -") - (license license:asl2.0))) - -(define-public go-github-com-jmespath-go-jmespath-0.0.0-20160202185014-0b12d6b521d8 - (package - (name "go-github-com-jmespath-go-jmespath") - (version "0.0.0-20160202185014-0b12d6b521d8") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/jmespath/go-jmespath") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1vv6hph8j6xgv7gwl9vvhlsaaqsm22sxxqmgmldi4v11783pc1ld")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/jmespath/go-jmespath")) - (home-page "https://github.com/jmespath/go-jmespath") - (synopsis "go-jmespath - A JMESPath implementation in Go") - (description - "go-jmespath is a GO implementation of JMESPath, -which is a query language for JSON. It will take a JSON -document and transform it into another JSON document -through a JMESPath expression.") - (license license:asl2.0))) - -(define-public go-github-com-aws-aws-sdk-go-1.15.11 - (package - (name "go-github-com-aws-aws-sdk-go") - (version "1.15.11") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/aws/aws-sdk-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0w960w39k3nyc17p1lvd41cls39qwg7kzfm57vfbdb4h1m5sck99")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/aws/aws-sdk-go")) - (propagated-inputs - `(("go-github-com-jmespath-go-jmespath-0.0.0-20160202185014-0b12d6b521d8" - ,go-github-com-jmespath-go-jmespath-0.0.0-20160202185014-0b12d6b521d8) - ("go-github-com-go-ini-ini-1.25.4" ,go-github-com-go-ini-ini-1.25.4))) - (home-page "https://github.com/aws/aws-sdk-go") - (synopsis "AWS SDK for Go") - (description - "Package sdk is the official AWS SDK for the Go programming language. -") - (license license:asl2.0))) - -(define-public go-github-com-beorn7-perks-0.0.0-20160804104726-4c0e84591b9a - (package - (name "go-github-com-beorn7-perks") - (version "0.0.0-20160804104726-4c0e84591b9a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/beorn7/perks") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1hrybsql68xw57brzj805xx2mghydpdiysv3gbhr7f5wlxj2514y")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/beorn7/perks")) - (home-page "https://github.com/beorn7/perks") - (synopsis "Perks for Go (golang.org)") - (description - "Perks contains the Go package quantile that computes approximate quantiles over -an unbounded data stream within low memory and CPU bounds.") - (license license:expat))) - -(define-public go-github-com-bmizerany-assert-0.0.0-20160611221934-b7ed37b82869 - (package - (name "go-github-com-bmizerany-assert") - (version "0.0.0-20160611221934-b7ed37b82869") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/bmizerany/assert") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18hy1wyl9zdi7sgxafrn3m7fadh6in0rhhb8l0cvkxqzdl0jcw2s")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/bmizerany/assert")) - (home-page "https://github.com/bmizerany/assert") - (synopsis #f) - (description #f) - (license #f))) - -(define-public go-github-com-bshuster-repo-logrus-logstash-hook-0.4.1 - (package - (name "go-github-com-bshuster-repo-logrus-logstash-hook") - (version "0.4.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/bshuster-repo/logrus-logstash-hook") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1kkjzav4i3l2ahgpirysr0cqh60vdq517lpj00cc9z32zfrsw87k")))) - (build-system go-build-system) - (arguments - '(#:import-path "github.com/bshuster-repo/logrus-logstash-hook")) - (home-page "https://github.com/bshuster-repo/logrus-logstash-hook") - (synopsis "Logstash hook for logrus") - (description - "Use this hook to send the logs to @url{https://www.elastic.co/products/logstash,Logstash}.") - (license license:expat))) - -(define-public go-github-com-dgrijalva-jwt-go-0.0.0-20170104182250-a601269ab70c - (package - (name "go-github-com-dgrijalva-jwt-go") - (version "0.0.0-20170104182250-a601269ab70c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/dgrijalva/jwt-go") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1c2dhmj95wh9cs099cr43qghgmp6bqx0mq44vha2dqq5jkbazwfv")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/dgrijalva/jwt-go")) - (home-page "https://github.com/dgrijalva/jwt-go") - (synopsis "jwt-go") - (description - "Package jwt is a Go implementation of JSON Web Tokens: @url{http://self-issued.info/docs/draft-jones-json-web-token.html,http://self-issued.info/docs/draft-jones-json-web-token.html} -") - (license license:expat))) - -(define-public go-github-com-docker-go-metrics-0.0.0-20180209012529-399ea8c73916 - (package - (name "go-github-com-docker-go-metrics") - (version "0.0.0-20180209012529-399ea8c73916") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/docker/go-metrics") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0najfy92fq05b330cnjk5b326yi7dnnmvzfk6g5lsa1fci78yzw4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/docker/go-metrics")) - (home-page "https://github.com/docker/go-metrics") - (synopsis "go-metrics") - (description - "This package is small wrapper around the prometheus go client to help enforce convention and best practices for metrics collection in Docker projects.") - (license (list license:asl2.0 license:cc-by-sa4.0)))) - -(define-public go-github-com-garyburd-redigo-0.0.0-20150301180006-535138d7bcd7 - (package - (name "go-github-com-garyburd-redigo") - (version "0.0.0-20150301180006-535138d7bcd7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/garyburd/redigo") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1m7nc1gvv5yqnq8ii75f33485il6y6prf8gxl97dimsw94qccc5v")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/garyburd/redigo")) - (home-page "https://github.com/garyburd/redigo") - (synopsis #f) - (description - "Future development of Redigo is at -@url{https://github.com/gomodule/redigo,github.com/gomodule/redigo}. Please submit -issues at gomodule/redigo. The repository at github.com/garyburd/redigo is a -read-only snapshot.") - (license license:asl2.0))) - -(define-public go-github-com-gorilla-handlers-0.0.0-20150720190736-60c7bfde3e33 - (package - (name "go-github-com-gorilla-handlers") - (version "0.0.0-20150720190736-60c7bfde3e33") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gorilla/handlers") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0zvpxvybdn8yqpk2cxs134ip9wxmw6c1s0kw9nahf7qw1kfyzycm")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/gorilla/handlers")) - (home-page "https://github.com/gorilla/handlers") - (synopsis "gorilla/handlers") - (description - "Package handlers is a collection of handlers (aka \"HTTP middleware\") for use -with Go's net/http package (or any framework supporting http.Handler). -") - (license license:bsd-2))) - -(define-public go-github-com-gorilla-mux-1.7.2 - (package - (name "go-github-com-gorilla-mux") - (version "1.7.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gorilla/mux") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1gjcbgpdl3snc38i8sj8k6sqbv3inyrxqyggbqvr4jfx2phv2zy6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/gorilla/mux")) - (home-page "https://github.com/gorilla/mux") - (synopsis "gorilla/mux") - (description "Package mux implements a request router and dispatcher. -") - (license license:bsd-3))) - -(define-public go-github-com-jmespath-go-jmespath-0.0.0-20160803190731-bd40a432e4c7 - (package - (name "go-github-com-jmespath-go-jmespath") - (version "0.0.0-20160803190731-bd40a432e4c7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/jmespath/go-jmespath") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1kgzwiyqn24ba9kgpjxlq1h746gnyby0psbjj9mp2yx0h1i0kc4z")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/jmespath/go-jmespath")) - (home-page "https://github.com/jmespath/go-jmespath") - (synopsis "go-jmespath - A JMESPath implementation in Go") - (description - "go-jmespath is a GO implementation of JMESPath, -which is a query language for JSON. It will take a JSON -document and transform it into another JSON document -through a JMESPath expression.") - (license license:asl2.0))) - -(define-public go-github-com-marstr-guid-1.1.0 - (package - (name "go-github-com-marstr-guid") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/marstr/guid") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "081qrar6wwpmb2pq3swv4byh73r9riyhl2dwv0902d8jg3kwricm")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/marstr/guid")) - (home-page "https://github.com/marstr/guid") - (synopsis "Guid") - (description - "Globally unique identifiers offer a quick means of generating non-colliding values across a distributed system. For this implemenation, @url{http://ietf.org/rfc/rfc4122.txt,RFC 4122} governs the desired behavior.") - (license license:expat))) - -(define-public go-github-com-opencontainers-go-digest-0.0.0-20170106003457-a6d0ee40d420 - (package - (name "go-github-com-opencontainers-go-digest") - (version "0.0.0-20170106003457-a6d0ee40d420") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/go-digest") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1paz3na2xkhi10p5bk7f7gbh5yykfgr9f9i2gcc13rb461yq6fmg")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/go-digest")) - (home-page "https://github.com/opencontainers/go-digest") - (synopsis "go-digest") - (description - "Package digest provides a generalized type to opaquely represent message -digests and their operations within the registry. The Digest type is -designed to serve as a flexible identifier in a content-addressable system. -More importantly, it provides tools and wrappers to work with -hash.Hash-based digests with little effort. -") - (license (list license:asl2.0 license:cc-by-sa4.0)))) - -(define-public go-github-com-opencontainers-image-spec-1.0.0 - (package - (name "go-github-com-opencontainers-image-spec") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/image-spec") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "04ax2pylpwzsa5pw6wk94shdpdmfyqf70ys0idhpxsygzc2m5l23")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/image-spec")) - (home-page "https://github.com/opencontainers/image-spec") - (synopsis "OCI Image Format Specification") - (description - "The OCI Image Format project creates and maintains the software shipping container image format spec (OCI Image Format).") - (license license:asl2.0))) - -(define-public go-github-com-prometheus-client-golang-0.0.0-20180209125602-c332b6f63c06 - (package - (name "go-github-com-prometheus-client-golang") - (version "0.0.0-20180209125602-c332b6f63c06") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/client_golang") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "068r759wnh1lxcjhj89z4bqbpl7ydcx2drn2967ygw80nyab30pq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/client_golang")) - (home-page "https://github.com/prometheus/client_golang") - (synopsis "Prometheus Go client library") - (description - "This is the @url{http://golang.org,Go} client library for -@url{http://prometheus.io,Prometheus}. It has two separate parts, one for -instrumenting application code, and one for creating clients that talk to the -Prometheus HTTP API.") - (license license:asl2.0))) - -(define-public go-github-com-prometheus-client-model-0.0.0-20171117100541-99fa1f4be8e5 - (package - (name "go-github-com-prometheus-client-model") - (version "0.0.0-20171117100541-99fa1f4be8e5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/client_model") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19y4ywsivhpxj7ikf2j0gm9k3cmyw37qcbfi78n526jxcc7kw998")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/client_model")) - (home-page "https://github.com/prometheus/client_model") - (synopsis "Deprecation note") - (description - "This repository used to contain the code that defined both -the data model and the exposition format of Prometheus metrics.") - (license license:asl2.0))) - -(define-public go-github-com-prometheus-common-0.0.0-20180110214958-89604d197083 - (package - (name "go-github-com-prometheus-common") - (version "0.0.0-20180110214958-89604d197083") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/common") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "169rdlaf2mk9z4fydz7ajmngyhmf3q1lk96yhvx46bn986x5xkyn")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/common")) - (home-page "https://github.com/prometheus/common") - (synopsis "Common") - (description - "This repository contains Go libraries that are shared across Prometheus -components and libraries. They are considered internal to Prometheus, without -any stability guarantees for external usage.") - (license license:asl2.0))) - -(define-public go-github-com-smartystreets-goconvey-0.0.0-20190330032615-68dc04aab96a - (package - (name "go-github-com-smartystreets-goconvey") - (version "0.0.0-20190330032615-68dc04aab96a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/smartystreets/goconvey") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1kas5v95fzhr88hg4rjy0vp03y4pzvy3pwwgkfz2yhn5nlj29nk6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/smartystreets/goconvey")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20190328211700-ab21143f2384" - ,go-golang-org-x-tools-0.0.0-20190328211700-ab21143f2384) - ("go-github-com-smartystreets-assertions-0.0.0-20180927180507-b2de0cb4f26d" - ,go-github-com-smartystreets-assertions-0.0.0-20180927180507-b2de0cb4f26d) - ("go-github-com-jtolds-gls-4.20.0+incompatible" - ,go-github-com-jtolds-gls-4.20.0+incompatible) - ("go-github-com-gopherjs-gopherjs-0.0.0-20181017120253-0766667cb4d1" - ,go-github-com-gopherjs-gopherjs-0.0.0-20181017120253-0766667cb4d1))) - (home-page "https://github.com/smartystreets/goconvey") - (synopsis "GoConvey is awesome Go testing") - (description - "This executable provides an HTTP server that watches for file system changes -to .go files within the working directory (and all nested go packages). -Navigating to the configured host and port in a web browser will display the -latest results of running `go test` in each go package. -") - (license license:expat))) - -(define-public go-golang-org-x-net-0.0.0-20190619014844-b5b0513f8c1b - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190619014844-b5b0513f8c1b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0sr4gbiq09izkmm6hcmfnia6lz6ngzzqjbwlrzh7jifbzyck53wz")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20190602015325-4c4f7f33c9ed - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190602015325-4c4f7f33c9ed") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "191001bxqyc3xfs46nnqmm7jdk0r73vk7a4zqngfl7zwjv9smwsq")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-docker-distribution-0.0.0-20190905152932-14b96e55d84c - (package - (name "go-github-com-docker-distribution") - (version "0.0.0-20190905152932-14b96e55d84c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/distribution/distribution") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0jd7ccjy7ahznsh6hf9dhqbgn9glwc0db9g5nv8n6sys5d1jdni9")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/docker/distribution")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) - ("go-gopkg-in-check-v1-1.0.0-20141024133853-64131543e789" - ,go-gopkg-in-check-v1-1.0.0-20141024133853-64131543e789) - ("go-google-golang-org-grpc-0.0.0-20160317175043-d3ddb4469d5a" - ,go-google-golang-org-grpc-0.0.0-20160317175043-d3ddb4469d5a) - ("go-google-golang-org-cloud-0.0.0-20151119220103-975617b05ea8" - ,go-google-golang-org-cloud-0.0.0-20151119220103-975617b05ea8) - ("go-google-golang-org-api-0.0.0-20160322025152-9bf6e6e569ff" - ,go-google-golang-org-api-0.0.0-20160322025152-9bf6e6e569ff) - ("go-golang-org-x-sys-0.0.0-20190602015325-4c4f7f33c9ed" - ,go-golang-org-x-sys-0.0.0-20190602015325-4c4f7f33c9ed) - ("go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45" - ,go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45) - ("go-golang-org-x-net-0.0.0-20190619014844-b5b0513f8c1b" - ,go-golang-org-x-net-0.0.0-20190619014844-b5b0513f8c1b) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2) - ("go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20140908184405-b21fdbd4370f" - ,go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20140908184405-b21fdbd4370f) - ("go-github-com-yvasiyarov-gorelic-0.0.0-20141212073537-a9bba5b9ab50" - ,go-github-com-yvasiyarov-gorelic-0.0.0-20141212073537-a9bba5b9ab50) - ("go-github-com-yvasiyarov-go-metrics-0.0.0-20140926110328-57bccd1ccd43" - ,go-github-com-yvasiyarov-go-metrics-0.0.0-20140926110328-57bccd1ccd43) - ("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0) - ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) - ("go-github-com-spf13-cobra-0.0.3" ,go-github-com-spf13-cobra-0.0.3) - ("go-github-com-smartystreets-goconvey-0.0.0-20190330032615-68dc04aab96a" - ,go-github-com-smartystreets-goconvey-0.0.0-20190330032615-68dc04aab96a) - ("go-github-com-sirupsen-logrus-1.4.2" - ,go-github-com-sirupsen-logrus-1.4.2) - ("go-github-com-satori-go-uuid-1.2.0" - ,go-github-com-satori-go-uuid-1.2.0) - ("go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7" - ,go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7) - ("go-github-com-prometheus-common-0.0.0-20180110214958-89604d197083" - ,go-github-com-prometheus-common-0.0.0-20180110214958-89604d197083) - ("go-github-com-prometheus-client-model-0.0.0-20171117100541-99fa1f4be8e5" - ,go-github-com-prometheus-client-model-0.0.0-20171117100541-99fa1f4be8e5) - ("go-github-com-prometheus-client-golang-0.0.0-20180209125602-c332b6f63c06" - ,go-github-com-prometheus-client-golang-0.0.0-20180209125602-c332b6f63c06) - ("go-github-com-opencontainers-image-spec-1.0.0" - ,go-github-com-opencontainers-image-spec-1.0.0) - ("go-github-com-opencontainers-go-digest-0.0.0-20170106003457-a6d0ee40d420" - ,go-github-com-opencontainers-go-digest-0.0.0-20170106003457-a6d0ee40d420) - ("go-github-com-ncw-swift-1.0.47" ,go-github-com-ncw-swift-1.0.47) - ("go-github-com-mitchellh-osext-0.0.0-20151018003038-5e2d6d41470f" - ,go-github-com-mitchellh-osext-0.0.0-20151018003038-5e2d6d41470f) - ("go-github-com-mitchellh-mapstructure-1.1.2" - ,go-github-com-mitchellh-mapstructure-1.1.2) - ("go-github-com-matttproud-golang-protobuf-extensions-1.0.1" - ,go-github-com-matttproud-golang-protobuf-extensions-1.0.1) - ("go-github-com-marstr-guid-1.1.0" ,go-github-com-marstr-guid-1.1.0) - ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) - ("go-github-com-jmespath-go-jmespath-0.0.0-20160803190731-bd40a432e4c7" - ,go-github-com-jmespath-go-jmespath-0.0.0-20160803190731-bd40a432e4c7) - ("go-github-com-inconshreveable-mousetrap-1.0.0" - ,go-github-com-inconshreveable-mousetrap-1.0.0) - ("go-github-com-gorilla-mux-1.7.2" ,go-github-com-gorilla-mux-1.7.2) - ("go-github-com-gorilla-handlers-0.0.0-20150720190736-60c7bfde3e33" - ,go-github-com-gorilla-handlers-0.0.0-20150720190736-60c7bfde3e33) - ("go-github-com-garyburd-redigo-0.0.0-20150301180006-535138d7bcd7" - ,go-github-com-garyburd-redigo-0.0.0-20150301180006-535138d7bcd7) - ("go-github-com-docker-libtrust-0.0.0-20150114040149-fa567046d9b1" - ,go-github-com-docker-libtrust-0.0.0-20150114040149-fa567046d9b1) - ("go-github-com-docker-go-metrics-0.0.0-20180209012529-399ea8c73916" - ,go-github-com-docker-go-metrics-0.0.0-20180209012529-399ea8c73916) - ("go-github-com-dnaeon-go-vcr-1.0.1" - ,go-github-com-dnaeon-go-vcr-1.0.1) - ("go-github-com-dgrijalva-jwt-go-0.0.0-20170104182250-a601269ab70c" - ,go-github-com-dgrijalva-jwt-go-0.0.0-20170104182250-a601269ab70c) - ("go-github-com-denverdino-aliyungo-0.0.0-20190125010748-a747050bb1ba" - ,go-github-com-denverdino-aliyungo-0.0.0-20190125010748-a747050bb1ba) - ("go-github-com-bugsnag-panicwrap-0.0.0-20151223152923-e2c28503fcd0" - ,go-github-com-bugsnag-panicwrap-0.0.0-20151223152923-e2c28503fcd0) - ("go-github-com-bugsnag-osext-0.0.0-20130617224835-0dd3f918b21b" - ,go-github-com-bugsnag-osext-0.0.0-20130617224835-0dd3f918b21b) - ("go-github-com-bugsnag-bugsnag-go-0.0.0-20141110184014-b1d153021fcd" - ,go-github-com-bugsnag-bugsnag-go-0.0.0-20141110184014-b1d153021fcd) - ("go-github-com-bshuster-repo-logrus-logstash-hook-0.4.1" - ,go-github-com-bshuster-repo-logrus-logstash-hook-0.4.1) - ("go-github-com-bmizerany-assert-0.0.0-20160611221934-b7ed37b82869" - ,go-github-com-bmizerany-assert-0.0.0-20160611221934-b7ed37b82869) - ("go-github-com-bitly-go-simplejson-0.5.0" - ,go-github-com-bitly-go-simplejson-0.5.0) - ("go-github-com-beorn7-perks-0.0.0-20160804104726-4c0e84591b9a" - ,go-github-com-beorn7-perks-0.0.0-20160804104726-4c0e84591b9a) - ("go-github-com-aws-aws-sdk-go-1.15.11" - ,go-github-com-aws-aws-sdk-go-1.15.11) - ("go-github-com-shopify-logrus-bugsnag-0.0.0-20171204204709-577dee27f20d" - ,go-github-com-shopify-logrus-bugsnag-0.0.0-20171204204709-577dee27f20d) - ("go-github-com-azure-go-autorest-10.8.1+incompatible" - ,go-github-com-azure-go-autorest-10.8.1+incompatible) - ("go-github-com-azure-azure-sdk-for-go-16.2.1+incompatible" - ,go-github-com-azure-azure-sdk-for-go-16.2.1+incompatible))) - (home-page "https://github.com/docker/distribution") - (synopsis "Distribution") - (description - "Package distribution will define the interfaces for the components of -docker distribution. The goal is to allow users to reliably package, ship -and store content related to docker images. -") - (license license:asl2.0))) - -(define-public go-github-com-gogo-protobuf-1.2.2-0.20190723190241-65acae22fc9d - (package - (name "go-github-com-gogo-protobuf") - (version "1.2.2-0.20190723190241-65acae22fc9d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gogo/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0700alky9z0g9akhrzn20wf4jr1600d0clhs32sm8chnlbvidy46")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/gogo/protobuf")) - (propagated-inputs - `(("go-github-com-kisielk-gotool-1.0.0" - ,go-github-com-kisielk-gotool-1.0.0) - ("go-github-com-kisielk-errcheck-1.2.0" - ,go-github-com-kisielk-errcheck-1.2.0))) - (home-page "https://github.com/gogo/protobuf") - (synopsis "Protocol Buffers for Go with Gadgets") - (description - "gogoprotobuf is a fork of @url{https://github.com/golang/protobuf,golang/protobuf} with extra code generation features.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20190813064441-fde4db37ae7a - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190813064441-fde4db37ae7a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "16k4w4pzziq1kln18k5fg01qgk4hpzb5xsm7175kaky6d6gwyhg3")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-k8s-io-cri-api-0.17.3 - (package - (name "go-k8s-io-cri-api") - (version "0.17.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes/cri-api") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "047wg80q4cb9qikpj0zp2kzcgp599cdqwiqlravfy86bga4r3fgf")))) - (build-system go-build-system) - (arguments '(#:import-path "k8s.io/cri-api")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190813064441-fde4db37ae7a" - ,go-golang-org-x-sys-0.0.0-20190813064441-fde4db37ae7a) - ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) - ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" - ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) - ("go-google-golang-org-grpc-1.23.1" ,go-google-golang-org-grpc-1.23.1) - ("go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873" - ,go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873) - ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) - ("go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9" - ,go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9) - ("go-github-com-stretchr-testify-1.4.0" - ,go-github-com-stretchr-testify-1.4.0) - ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2) - ("go-github-com-gogo-protobuf-1.2.2-0.20190723190241-65acae22fc9d" - ,go-github-com-gogo-protobuf-1.2.2-0.20190723190241-65acae22fc9d) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://k8s.io/cri-api") - (synopsis "Purpose") - (description - "This repository contains the definitions for the Container Runtime Interface (CRI). -CRI is a plugin interface which enables kubelet to use a wide variety of container runtimes, -without the need to recompile. CRI consists of a protocol buffers and gRPC API.") - (license license:asl2.0))) - -(define-public go-github-com-microsoft-hcsshim-test-0.0.0-20201218223536-d3e5debf77da - (package - (name "go-github-com-microsoft-hcsshim-test") - (version "0.0.0-20201218223536-d3e5debf77da") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/microsoft/hcsshim") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0k57knv8zrf32hp7rpv1km9j772w6752pfvdbpd3l711ism48c84")))) - (build-system go-build-system) - (arguments - '(#:import-path - "github.com/Microsoft/hcsshim/test" - #:unpack-path - "github.com/Microsoft/hcsshim")) - (propagated-inputs - `(("go-k8s-io-cri-api-0.17.3" ,go-k8s-io-cri-api-0.17.3) - ("go-google-golang-org-grpc-1.23.1" ,go-google-golang-org-grpc-1.23.1) - ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" - ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) - ("go-go-etcd-io-bbolt-1.3.3" ,go-go-etcd-io-bbolt-1.3.3) - ("go-github-com-xeipuuv-gojsonschema-0.0.0-20180618132009-1d523034197f" - ,go-github-com-xeipuuv-gojsonschema-0.0.0-20180618132009-1d523034197f) - ("go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415" - ,go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415) - ("go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f" - ,go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f) - ("go-github-com-syndtr-gocapability-0.0.0-20170704070218-db04d3cc01c8" - ,go-github-com-syndtr-gocapability-0.0.0-20170704070218-db04d3cc01c8) - ("go-github-com-sirupsen-logrus-1.4.2" - ,go-github-com-sirupsen-logrus-1.4.2) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39" - ,go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39) - ("go-github-com-opencontainers-runtime-spec-1.0.2" - ,go-github-com-opencontainers-runtime-spec-1.0.2) - ("go-github-com-imdario-mergo-0.3.8" - ,go-github-com-imdario-mergo-0.3.8) - ("go-github-com-hashicorp-go-multierror-0.0.0-20161216184304-ed905158d874" - ,go-github-com-hashicorp-go-multierror-0.0.0-20161216184304-ed905158d874) - ("go-github-com-hashicorp-errwrap-0.0.0-20141028054710-7554cd9344ce" - ,go-github-com-hashicorp-errwrap-0.0.0-20141028054710-7554cd9344ce) - ("go-github-com-gogo-protobuf-1.3.1" - ,go-github-com-gogo-protobuf-1.3.1) - ("go-github-com-gogo-googleapis-1.2.0" - ,go-github-com-gogo-googleapis-1.2.0) - ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" - ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) - ("go-github-com-docker-distribution-0.0.0-20190905152932-14b96e55d84c" - ,go-github-com-docker-distribution-0.0.0-20190905152932-14b96e55d84c) - ("go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd" - ,go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd) - ("go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de" - ,go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de) - ("go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3" - ,go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3) - ("go-github-com-containerd-containerd-1.3.2" - ,go-github-com-containerd-containerd-1.3.2) - ("go-github-com-blang-semver-3.1.0+incompatible" - ,go-github-com-blang-semver-3.1.0+incompatible) - ("go-github-com-microsoft-go-winio-0.4.16-0.20201130162521-d1ffc52c7331" - ,go-github-com-microsoft-go-winio-0.4.16-0.20201130162521-d1ffc52c7331))) - (home-page "https://github.com/Microsoft/hcsshim") - (synopsis #f) - (description #f) - (license license:expat))) - -(define-public go-github-com-containerd-aufs-0.0.0-20200908144142-dab0cbea06f4 - (package - (name "go-github-com-containerd-aufs") - (version "0.0.0-20200908144142-dab0cbea06f4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/aufs") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "060iqypyrdmww0ykip1zqi5f2fl1il55vndgdn5aq5zj6530mgsn")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/aufs")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) - ("go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449" - ,go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449) - ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" - ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) - ("go-go-etcd-io-bbolt-1.3.3" ,go-go-etcd-io-bbolt-1.3.3) - ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) - ("go-github-com-opencontainers-runc-1.0.0-rc9" - ,go-github-com-opencontainers-runc-1.0.0-rc9) - ("go-github-com-opencontainers-image-spec-1.0.1" - ,go-github-com-opencontainers-image-spec-1.0.1) - ("go-github-com-opencontainers-go-digest-1.0.0-rc1" - ,go-github-com-opencontainers-go-digest-1.0.0-rc1) - ("go-github-com-google-go-cmp-0.3.1" - ,go-github-com-google-go-cmp-0.3.1) - ("go-github-com-gogo-protobuf-1.3.1" - ,go-github-com-gogo-protobuf-1.3.1) - ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" - ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) - ("go-github-com-containerd-typeurl-0.0.0-20190911142611-5eb25027c9fd" - ,go-github-com-containerd-typeurl-0.0.0-20190911142611-5eb25027c9fd) - ("go-github-com-containerd-ttrpc-0.0.0-20191028202541-4f1b8fe65a5c" - ,go-github-com-containerd-ttrpc-0.0.0-20191028202541-4f1b8fe65a5c) - ("go-github-com-containerd-continuity-0.0.0-20191127005431-f65d91d395eb" - ,go-github-com-containerd-continuity-0.0.0-20191127005431-f65d91d395eb) - ("go-github-com-containerd-containerd-1.3.1-0.20191213020239-082f7e3aed57" - ,go-github-com-containerd-containerd-1.3.1-0.20191213020239-082f7e3aed57) - ("go-github-com-microsoft-hcsshim-0.8.7" - ,go-github-com-microsoft-hcsshim-0.8.7))) - (home-page "https://github.com/containerd/aufs") - (synopsis "aufs snapshotter") - (description - "AUFS implementation of the snapshot interface for containerd.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-btrfs-0.0.0-20201111183144-404b9149801e - (package - (name "go-github-com-containerd-btrfs") - (version "0.0.0-20201111183144-404b9149801e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/btrfs") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "10aakvy9njaly2mfwi1cvys8dxjn27mnd7wnpnmxh8pxb7g2svag")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/btrfs")) - (propagated-inputs - `(("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) - (home-page "https://github.com/containerd/btrfs") - (synopsis "go-btrfs") - (description - "Package btrfs provides bindings for working with btrfs partitions from Go. -") - (license license:asl2.0))) - -(define-public go-github-com-containerd-cgroups-0.0.0-20200824123100-0b889c03f102 - (package - (name "go-github-com-containerd-cgroups") - (version "0.0.0-20200824123100-0b889c03f102") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/cgroups") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1zjmphy2df9y20hzrmwxfpyyvz8vb5lazr4pjyx3c5a5x0j4rv8d")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/cgroups")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9" - ,go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9) - ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) - ("go-github-com-stretchr-testify-1.2.2" - ,go-github-com-stretchr-testify-1.2.2) - ("go-github-com-sirupsen-logrus-1.6.0" - ,go-github-com-sirupsen-logrus-1.6.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-runtime-spec-1.0.2" - ,go-github-com-opencontainers-runtime-spec-1.0.2) - ("go-github-com-gogo-protobuf-1.3.1" - ,go-github-com-gogo-protobuf-1.3.1) - ("go-github-com-godbus-dbus-v5-5.0.3" - ,go-github-com-godbus-dbus-v5-5.0.3) - ("go-github-com-docker-go-units-0.4.0" - ,go-github-com-docker-go-units-0.4.0) - ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" - ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) - ("go-github-com-coreos-go-systemd-v22-22.0.0" - ,go-github-com-coreos-go-systemd-v22-22.0.0) - ("go-github-com-cilium-ebpf-0.0.0-20200702112145-1c8d4c9ef775" - ,go-github-com-cilium-ebpf-0.0.0-20200702112145-1c8d4c9ef775))) - (home-page "https://github.com/containerd/cgroups") - (synopsis "cgroups") - (description - "Go package for creating, managing, inspecting, and destroying cgroups. -The resources format for settings on the cgroup uses the OCI runtime-spec found -@url{https://github.com/opencontainers/runtime-spec,here}.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-continuity-0.0.0-20201208142359-180525291bb7 - (package - (name "go-github-com-containerd-continuity") - (version "0.0.0-20201208142359-180525291bb7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/continuity") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1di4pspqfwfafdni0in84kzyn8h1fhqb6vh4i0g5skqmrc4sxf4h")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/continuity")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3" - ,go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3) - ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" - ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) - ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" - ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) - ("go-github-com-stretchr-testify-1.4.0" - ,go-github-com-stretchr-testify-1.4.0) - ("go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95" - ,go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95) - ("go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee" - ,go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee) - ("go-github-com-sirupsen-logrus-1.6.0" - ,go-github-com-sirupsen-logrus-1.6.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-go-digest-1.0.0" - ,go-github-com-opencontainers-go-digest-1.0.0) - ("go-github-com-inconshreveable-mousetrap-1.0.0" - ,go-github-com-inconshreveable-mousetrap-1.0.0) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0) - ("go-github-com-dustin-go-humanize-1.0.0" - ,go-github-com-dustin-go-humanize-1.0.0) - ("go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898" - ,go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898))) - (home-page "https://github.com/containerd/continuity") - (synopsis "continuity") - (description - "This package provides a transport-agnostic, filesystem metadata manifest system") - (license license:asl2.0))) - -(define-public go-github-com-containerd-fifo-0.0.0-20201026212402-0724c46b320c - (package - (name "go-github-com-containerd-fifo") - (version "0.0.0-20201026212402-0724c46b320c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/fifo") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "11d9j0isblnnqf78ygvwjyijjxn6zdzf7p803v0jv2py4d0pkvj8")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/fifo")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449" - ,go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449) - ("go-github-com-stretchr-testify-1.4.0" - ,go-github-com-stretchr-testify-1.4.0) - ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) - (home-page "https://github.com/containerd/fifo") - (synopsis "fifo") - (description "Go package for handling fifos in a sane way.") - (license license:asl2.0))) - -(define-public go-github-com-containernetworking-cni-0.8.0 - (package - (name "go-github-com-containernetworking-cni") - (version "0.8.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containernetworking/cni") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "16i59dhiq7pc7qs32cdk4yv4w9rjx4vvlw7fb6a6jhq6hxxjrgiw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containernetworking/cni")) - (home-page "https://github.com/containernetworking/cni") - (synopsis "CNI - the Container Network Interface") - (description - "CNI (), a @url{https://cncf.io,Cloud Native Computing Foundation} project, consists of a specification and libraries for writing plugins to configure network interfaces in Linux containers, along with a number of supported plugins. -CNI concerns itself only with network connectivity of containers and removing allocated resources when the container is deleted. -Because of this focus, CNI has a wide range of support and the specification is simple to implement.") - (license license:asl2.0))) - -(define-public go-github-com-onsi-ginkgo-1.10.3 - (package - (name "go-github-com-onsi-ginkgo") - (version "1.10.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/onsi/ginkgo") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "00a40by9f5ylycnar8h3p9b4z5rcsvfvg4j3v5s5mchdqrqjv1pc")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/onsi/ginkgo")) - (home-page "https://github.com/onsi/ginkgo") - (synopsis "Ginkgo 2.0 Release Candidate is available!") - (description "Ginkgo is a BDD-style testing framework for Golang -") - (license license:expat))) - -(define-public go-github-com-stretchr-objx-0.0.0-20180129172003-8a3f7159479f - (package - (name "go-github-com-stretchr-objx") - (version "0.0.0-20180129172003-8a3f7159479f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/objx") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0rbz4x4jbq9vp3zxmv0c2wh1vbg48lmc8ncdgz7zxk7241fc31ki")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/objx")) - (home-page "https://github.com/stretchr/objx") - (synopsis "Objx") - (description - "Objx - Go package for dealing with maps, slices, JSON and other data. -") - (license license:expat))) - -(define-public go-github-com-stretchr-testify-0.0.0-20180303142811-b89eecf5ca5d - (package - (name "go-github-com-stretchr-testify") - (version "0.0.0-20180303142811-b89eecf5ca5d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/testify") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0g946ii8qjaynvidj648z8izl91i6yhy0ir6g3qsrn136im3r8wk")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/testify")) - (home-page "https://github.com/stretchr/testify") - (synopsis "Testify - Thou Shalt Write Tests") - (description - "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -") - (license license:expat))) - -(define-public go-github-com-containerd-go-cni-1.0.1 - (package - (name "go-github-com-containerd-go-cni") - (version "1.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/go-cni") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0sdlwa4d0kzpm3vg9jy6fxqqcfjq8innv1zjcyp8n9qy8vj9b24y")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/go-cni")) - (propagated-inputs - `(("go-github-com-stretchr-testify-0.0.0-20180303142811-b89eecf5ca5d" - ,go-github-com-stretchr-testify-0.0.0-20180303142811-b89eecf5ca5d) - ("go-github-com-stretchr-objx-0.0.0-20180129172003-8a3f7159479f" - ,go-github-com-stretchr-objx-0.0.0-20180129172003-8a3f7159479f) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-onsi-gomega-1.7.1" ,go-github-com-onsi-gomega-1.7.1) - ("go-github-com-onsi-ginkgo-1.10.3" ,go-github-com-onsi-ginkgo-1.10.3) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1) - ("go-github-com-containernetworking-cni-0.8.0" - ,go-github-com-containernetworking-cni-0.8.0))) - (home-page "https://github.com/containerd/go-cni") - (synopsis "go-cni") - (description - "This package provides a generic CNI library to provide APIs for CNI plugin interactions. The library provides APIs to:") - (license license:asl2.0))) - -(define-public go-github-com-containerd-console-0.0.0-20191206165004-02ecf6a7291e - (package - (name "go-github-com-containerd-console") - (version "0.0.0-20191206165004-02ecf6a7291e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/console") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1b3yq446gv8da4fajknbjxr5syz1ypz0nii9sqw066hx8kmqzgqh")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/console")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e" - ,go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e) - ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) - (home-page "https://github.com/containerd/console") - (synopsis "console") - (description - "Golang package for dealing with consoles. Light on deps and a simple API.") - (license license:asl2.0))) - -(define-public go-github-com-opencontainers-runtime-spec-1.0.1 - (package - (name "go-github-com-opencontainers-runtime-spec") - (version "1.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/runtime-spec") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "00qb0q7ndxsll12ilp5a8pqfi4i1jqrlqzv0yf7sn52lkrdrw5f4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) - (home-page "https://github.com/opencontainers/runtime-spec") - (synopsis "Open Container Initiative Runtime Specification") - (description - "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328 - (package - (name "go-github-com-containerd-go-runc") - (version "0.0.0-20200220073739-7016d3ce2328") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/go-runc") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1mx2lvfkxw9kiyhi18g3c6hcpb9r2115zjzyvz6rkdqr08xrij9k")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/go-runc")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449" - ,go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449) - ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) - ("go-github-com-opencontainers-runtime-spec-1.0.1" - ,go-github-com-opencontainers-runtime-spec-1.0.1) - ("go-github-com-containerd-console-0.0.0-20191206165004-02ecf6a7291e" - ,go-github-com-containerd-console-0.0.0-20191206165004-02ecf6a7291e))) - (home-page "https://github.com/containerd/go-runc") - (synopsis "go-runc") - (description - "This is a package for consuming the @url{https://github.com/opencontainers/runc,runc} binary in your Go applications. -It tries to expose all the settings and features of the runc CLI. If there is something missing then add it, its opensource!") - (license license:asl2.0))) - -(define-public go-github-com-microsoft-go-winio-0.4.14 - (package - (name "go-github-com-microsoft-go-winio") - (version "0.4.14") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/microsoft/go-winio") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0n34wi9l9ks2z3cz97j30ljfmqppwf1zxr16hwbnswyrk54fcxm3")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/Microsoft/go-winio")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b" - ,go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b) - ("go-github-com-sirupsen-logrus-1.4.1" - ,go-github-com-sirupsen-logrus-1.4.1) - ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) - (home-page "https://github.com/Microsoft/go-winio") - (synopsis "go-winio") - (description - "This repository contains utilities for efficiently performing Win32 IO operations in -Go. Currently, this is focused on accessing named pipes and other file handles, and -for using named pipes as a net transport.") - (license license:expat))) - -(define-public go-github-com-microsoft-hcsshim-0.8.7-0.20190325164909-8abdbb8205e4 - (package - (name "go-github-com-microsoft-hcsshim") - (version "0.8.7-0.20190325164909-8abdbb8205e4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/microsoft/hcsshim") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0029085clghvprb3bs2m9q7xk4njx5fg2gr5wm3a0y8kqx0awv45")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/Microsoft/hcsshim")) - (home-page "https://github.com/Microsoft/hcsshim") - (synopsis "hcsshim") - (description - "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") - (license license:expat))) - -(define-public go-github-com-containerd-cgroups-0.0.0-20190717030353-c4b9ac5c7601 - (package - (name "go-github-com-containerd-cgroups") - (version "0.0.0-20190717030353-c4b9ac5c7601") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/cgroups") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fpai6nsm7qd5zfd8ykq8j4ngbqcy5v2isw16j086j0qabyw2iiw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/cgroups")) - (home-page "https://github.com/containerd/cgroups") - (synopsis "cgroups") - (description - "Go package for creating, managing, inspecting, and destroying cgroups. -The resources format for settings on the cgroup uses the OCI runtime-spec found -@url{https://github.com/opencontainers/runtime-spec,here}.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-console-0.0.0-20181022165439-0650fd9eeb50 - (package - (name "go-github-com-containerd-console") - (version "0.0.0-20181022165439-0650fd9eeb50") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/console") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0cs11g3gjan15rnbgryf60725sw2hf83fb6y2hwn1rgcm0jab1b8")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/console")) - (home-page "https://github.com/containerd/console") - (synopsis "console") - (description - "Golang package for dealing with consoles. Light on deps and a simple API.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-containerd-1.3.0 - (package - (name "go-github-com-containerd-containerd") - (version "1.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/containerd") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "05mr33l0rhkj49n6wf9lk95ijqvqwhp68ll879rpad1ypfv2f8as")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/containerd")) - (home-page "https://github.com/containerd/containerd") - (synopsis "Now Recruiting") - (description - "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-continuity-0.0.0-20190815185530-f2a389ac0a02 - (package - (name "go-github-com-containerd-continuity") - (version "0.0.0-20190815185530-f2a389ac0a02") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/continuity") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0h8a7npx46sjak0dyypkgg0h5dkq6dqpa4gx1v22ik62rmw0jy8r")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/continuity")) - (home-page "https://github.com/containerd/continuity") - (synopsis "continuity") - (description - "This package provides a transport-agnostic, filesystem metadata manifest system") - (license license:asl2.0))) - -(define-public go-github-com-containerd-fifo-0.0.0-20180307165137-3d5202aec260 - (package - (name "go-github-com-containerd-fifo") - (version "0.0.0-20180307165137-3d5202aec260") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/fifo") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "11jp12vgfj0xg9m2w5cfay72fwrxb6w8za7rkcqw8yy8hypiqqxq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/fifo")) - (home-page "https://github.com/containerd/fifo") - (synopsis "fifo") - (description "Go package for handling fifos in a sane way.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-go-runc-0.0.0-20190911050354-e029b79d8cda - (package - (name "go-github-com-containerd-go-runc") - (version "0.0.0-20190911050354-e029b79d8cda") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/go-runc") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0zwb6bfnfmj09rnz1z3xx1y2pm4wrhyp2ls7vmf7p62j5zyvdpkw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/go-runc")) - (home-page "https://github.com/containerd/go-runc") - (synopsis "go-runc") - (description - "This is a package for consuming the @url{https://github.com/opencontainers/runc,runc} binary in your Go applications. -It tries to expose all the settings and features of the runc CLI. If there is something missing then add it, its opensource!") - (license license:asl2.0))) - -(define-public go-github-com-containerd-ttrpc-0.0.0-20190828172938-92c8520ef9f8 - (package - (name "go-github-com-containerd-ttrpc") - (version "0.0.0-20190828172938-92c8520ef9f8") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/ttrpc") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1kzclhmicw2xkiqsg6npx0xzs5jx36mqmyd0gj5dzv88i7p4b8dx")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/ttrpc")) - (home-page "https://github.com/containerd/ttrpc") - (synopsis "ttrpc") - (description "GRPC for low-memory environments.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-containerd-1.2.10 - (package - (name "go-github-com-containerd-containerd") - (version "1.2.10") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/containerd") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1kddhkd93wkrimk0yjcqiavdrqc818nd39rf3wrgxyilx1mfnrwb")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/containerd")) - (home-page "https://github.com/containerd/containerd") - (synopsis "Now Recruiting") - (description - "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") - (license license:asl2.0))) - -(define-public go-github-com-fullsailor-pkcs7-0.0.0-20190404230743-d7302db945fa - (package - (name "go-github-com-fullsailor-pkcs7") - (version "0.0.0-20190404230743-d7302db945fa") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/fullsailor/pkcs7") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "13d7dpj85j36pxwg1kn7b23rm54va5p9v3vdcx27pma2jjlsxsm1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/fullsailor/pkcs7")) - (home-page "https://github.com/fullsailor/pkcs7") - (synopsis "pkcs7") - (description - "Package pkcs7 implements parsing and generation of some PKCS#7 structures. -") - (license license:expat))) - -(define-public go-golang-org-x-crypto-0.0.0-20190701094942-4def268fd1a4 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20190701094942-4def268fd1a4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1bfsnari529gw34cz0zqk3d9mrkcj1ay35kangri8kbgll0ss5a6")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" - ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) - ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" - ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-gopkg-in-square-go-jose-v2-2.3.1 - (package - (name "go-gopkg-in-square-go-jose-v2") - (version "2.3.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/square/go-jose.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "11r93g9xrcjqj7qvq8sbd5hy5rnbpmim0vdsp6rbav8gl7wimaa3")))) - (build-system go-build-system) - (arguments - '(#:import-path - "gopkg.in/square/go-jose.v2" - #:unpack-path - "gopkg.in/square/go-jose.v2")) - (home-page "https://gopkg.in/square/go-jose.v2") - (synopsis "Go JOSE") - (description - "Package jose aims to provide an implementation of the Javascript Object Signing -and Encryption set of standards. It implements encryption and signing based on -the JSON Web Encryption and JSON Web Signature standards, with optional JSON -Web Token support available in a sub-package. The library supports both the -compact and full serialization formats, and has optional support for multiple -recipients. -") - (license license:asl2.0))) - -(define-public go-github-com-containers-ocicrypt-1.0.1 - (package - (name "go-github-com-containers-ocicrypt") - (version "1.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containers/ocicrypt") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0q27vzgdsimypkpi7iv0rl1xz571554adphyl0j8b5qa8wrf0n7v")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containers/ocicrypt")) - (propagated-inputs - `(("go-gotest-tools-2.2.0+incompatible" - ,go-gotest-tools-2.2.0+incompatible) - ("go-gopkg-in-square-go-jose-v2-2.3.1" - ,go-gopkg-in-square-go-jose-v2-2.3.1) - ("go-google-golang-org-grpc-1.24.0" ,go-google-golang-org-grpc-1.24.0) - ("go-golang-org-x-crypto-0.0.0-20190701094942-4def268fd1a4" - ,go-golang-org-x-crypto-0.0.0-20190701094942-4def268fd1a4) - ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) - ("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0) - ("go-github-com-sirupsen-logrus-1.4.2" - ,go-github-com-sirupsen-logrus-1.4.2) - ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) - ("go-github-com-opencontainers-image-spec-1.0.1" - ,go-github-com-opencontainers-image-spec-1.0.1) - ("go-github-com-opencontainers-go-digest-1.0.0-rc1" - ,go-github-com-opencontainers-go-digest-1.0.0-rc1) - ("go-github-com-fullsailor-pkcs7-0.0.0-20190404230743-d7302db945fa" - ,go-github-com-fullsailor-pkcs7-0.0.0-20190404230743-d7302db945fa) - ("go-github-com-containerd-containerd-1.2.10" - ,go-github-com-containerd-containerd-1.2.10))) - (home-page "https://github.com/containers/ocicrypt") - (synopsis "OCIcrypt Library") - (description - "The @code{ocicrypt} library is the OCI image spec implementation of container image encryption. More details of the spec can be seen in the @url{https://github.com/opencontainers/image-spec/pull/775,OCI repository}. The purpose of this library is to encode spec structures and consts in code, as well as provide a consistent implementation of image encryption across container runtimes and build tools.") - (license license:asl2.0))) - -(define-public go-github-com-coreos-go-systemd-0.0.0-20161114122254-48702e0da86b - (package - (name "go-github-com-coreos-go-systemd") - (version "0.0.0-20161114122254-48702e0da86b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/coreos/go-systemd") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "04zl9ns4j3lpjykf32rv5cb6sj9x5ci8yi90vab1bl27vnqjgdkh")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/coreos/go-systemd")) - (home-page "https://github.com/coreos/go-systemd") - (synopsis "go-systemd") - (description "Go bindings to systemd. The project has several packages:") - (license license:asl2.0))) - -(define-public go-github-com-docker-distribution-2.7.1-0.20190205005809-0d3efadf0154+incompatible - (package - (name "go-github-com-docker-distribution") - (version "2.7.1-0.20190205005809-0d3efadf0154+incompatible") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/distribution/distribution") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1wayhmcxr6l281fqkbw1gh0ymhxlznf4jj1rcldhwrc64l2zjh8l")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/docker/distribution")) - (home-page "https://github.com/docker/distribution") - (synopsis "Distribution") - (description - "Package distribution will define the interfaces for the components of -docker distribution. The goal is to allow users to reliably package, ship -and store content related to docker images. -") - (license license:asl2.0))) - -(define-public go-github-com-docker-go-events-0.0.0-20170721190031-9461782956ad - (package - (name "go-github-com-docker-go-events") - (version "0.0.0-20170721190031-9461782956ad") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/docker/go-events") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0vn0kd0w253jwdk86gv1h6s8p6bzxiyif74xdzlb39zr6fdrr145")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/docker/go-events")) - (home-page "https://github.com/docker/go-events") - (synopsis "Docker Events Package") - (description - "The Docker @code{events} package implements a composable event distribution package -for Go.") - (license license:asl2.0))) - -(define-public go-github-com-godbus-dbus-0.0.0-20151105175453-c7fdd8b5cd55 - (package - (name "go-github-com-godbus-dbus") - (version "0.0.0-20151105175453-c7fdd8b5cd55") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/godbus/dbus") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "09zazkiny2im24xaiac5kbyhhnbqdbhwi9z9n7fj6rhpg8msiq9n")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/godbus/dbus")) - (home-page "https://github.com/godbus/dbus") - (synopsis "dbus") - (description - "Package dbus implements bindings to the D-Bus message bus system. -") - (license license:bsd-2))) - -(define-public go-github-com-gogo-googleapis-1.2.0 - (package - (name "go-github-com-gogo-googleapis") - (version "1.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gogo/googleapis") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1a82n0xp0v8lgjxzl3aa595r0rmy7afgyn2l3kv6z9kzw339i0jp")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/gogo/googleapis")) - (propagated-inputs - `(("go-github-com-gogo-protobuf-1.2.1" - ,go-github-com-gogo-protobuf-1.2.1))) - (home-page "https://github.com/gogo/googleapis") - (synopsis "Google APIs generated by gogoprotobuf") - (description - "The @url{https://github.com/gogo/grpc-example,grpc-example} includes an example usage of this repository.") - (license license:asl2.0))) - -(define-public go-github-com-imdario-mergo-0.3.8 - (package - (name "go-github-com-imdario-mergo") - (version "0.3.8") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/imdario/mergo") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "15xwyrnwng11ib0fxi7clwick2r0njwn0gs3va2g5m1ad418ry57")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/imdario/mergo")) - (home-page "https://github.com/imdario/mergo") - (synopsis "Mergo") - (description - "This package provides a helper to merge structs and maps in Golang. Useful for configuration default values, avoiding messy if-statements. -") - (license license:bsd-3))) - -(define-public go-github-com-opencontainers-go-digest-1.0.0-rc1.0.20180430190053-c9281466c8b2 - (package - (name "go-github-com-opencontainers-go-digest") - (version "1.0.0-rc1.0.20180430190053-c9281466c8b2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/go-digest") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1djdazssy27xn91pjhx3dgb0f11bnlzzbwkh7f8zwnpz011anasi")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/go-digest")) - (home-page "https://github.com/opencontainers/go-digest") - (synopsis "go-digest") - (description - "Package digest provides a generalized type to opaquely represent message -digests and their operations within the registry. The Digest type is -designed to serve as a flexible identifier in a content-addressable system. -More importantly, it provides tools and wrappers to work with -hash.Hash-based digests with little effort. -") - (license (list license:asl2.0 license:cc-by-sa4.0)))) - -(define-public go-github-com-opencontainers-runc-1.0.0-rc8.0.20190926000215-3e425f80a8c9 - (package - (name "go-github-com-opencontainers-runc") - (version "1.0.0-rc8.0.20190926000215-3e425f80a8c9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/runc") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18psc830b2rkwml1x6vxngam5b5wi3pj14mw817rshpzy87prspj")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/runc")) - (home-page "https://github.com/opencontainers/runc") - (synopsis "runc") - (description - "@code{runc} is a CLI tool for spawning and running containers according to the OCI specification.") - (license license:asl2.0))) - -(define-public go-github-com-opencontainers-runtime-spec-1.0.2-0.20190207185410-29686dbc5559 - (package - (name "go-github-com-opencontainers-runtime-spec") - (version "1.0.2-0.20190207185410-29686dbc5559") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/runtime-spec") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0i8q3520jk4yl9rsxs8mn5vsi9i0gd3drysbhciaqwm5l8c30h65")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) - (home-page "https://github.com/opencontainers/runtime-spec") - (synopsis "Open Container Initiative Runtime Specification") - (description - "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") - (license license:asl2.0))) - -(define-public go-github-com-prometheus-procfs-0.0.8 - (package - (name "go-github-com-prometheus-procfs") - (version "0.0.8") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/procfs") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "076wblhz8fjdc73fmz1lg0hafbwg1xv8hszm78lbg9anjpfgacvq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/procfs")) - (propagated-inputs - `(("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" - ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) - ("go-github-com-google-go-cmp-0.3.1" - ,go-github-com-google-go-cmp-0.3.1))) - (home-page "https://github.com/prometheus/procfs") - (synopsis "procfs") - (description - "Package procfs provides functions to retrieve system, kernel and process -metrics from the pseudo-filesystem proc. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-net-0.0.0-20190522155817-f3200d17e092 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190522155817-f3200d17e092") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1mskh7p80dd8j1ffy16917d3cyy7lfh1gb56n4rq9g1bwckz4lwy")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20190812073006-9eafafc0a87e - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190812073006-9eafafc0a87e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0g5wcpiafz47066993mgz77gka9qzww6w6crxpnyir0459j7z07r")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-google-golang-org-grpc-1.24.0 - (package - (name "go-google-golang-org-grpc") - (version "1.24.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0h8mwv74vzcfb7p4ai247x094skxca71vjp4wpj2wzmri0x9p4v6")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" - ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) - ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" - ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) - ("go-google-golang-org-appengine-1.1.0" - ,go-google-golang-org-appengine-1.1.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-google-go-cmp-0.2.0" - ,go-github-com-google-go-cmp-0.2.0) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2) - ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-client9-misspell-0.3.4" - ,go-github-com-client9-misspell-0.3.4) - ("go-github-com-burntsushi-toml-0.3.1" - ,go-github-com-burntsushi-toml-0.3.1) - ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-github-com-containerd-imgcrypt-1.0.1 - (package - (name "go-github-com-containerd-imgcrypt") - (version "1.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/imgcrypt") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0y0gbnp8imckw6rv3sjf3sycp8rc9lyhv0pp0x3q3yksvqmbqh5v")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/imgcrypt")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.24.0" ,go-google-golang-org-grpc-1.24.0) - ("go-golang-org-x-sys-0.0.0-20190812073006-9eafafc0a87e" - ,go-golang-org-x-sys-0.0.0-20190812073006-9eafafc0a87e) - ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" - ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) - ("go-golang-org-x-net-0.0.0-20190522155817-f3200d17e092" - ,go-golang-org-x-net-0.0.0-20190522155817-f3200d17e092) - ("go-go-etcd-io-bbolt-1.3.3" ,go-go-etcd-io-bbolt-1.3.3) - ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) - ("go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2" - ,go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2) - ("go-github-com-sirupsen-logrus-1.4.2" - ,go-github-com-sirupsen-logrus-1.4.2) - ("go-github-com-prometheus-procfs-0.0.8" - ,go-github-com-prometheus-procfs-0.0.8) - ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) - ("go-github-com-opencontainers-runtime-spec-1.0.2-0.20190207185410-29686dbc5559" - ,go-github-com-opencontainers-runtime-spec-1.0.2-0.20190207185410-29686dbc5559) - ("go-github-com-opencontainers-runc-1.0.0-rc8.0.20190926000215-3e425f80a8c9" - ,go-github-com-opencontainers-runc-1.0.0-rc8.0.20190926000215-3e425f80a8c9) - ("go-github-com-opencontainers-image-spec-1.0.1" - ,go-github-com-opencontainers-image-spec-1.0.1) - ("go-github-com-opencontainers-go-digest-1.0.0-rc1.0.20180430190053-c9281466c8b2" - ,go-github-com-opencontainers-go-digest-1.0.0-rc1.0.20180430190053-c9281466c8b2) - ("go-github-com-imdario-mergo-0.3.8" - ,go-github-com-imdario-mergo-0.3.8) - ("go-github-com-gogo-protobuf-1.2.1" - ,go-github-com-gogo-protobuf-1.2.1) - ("go-github-com-gogo-googleapis-1.2.0" - ,go-github-com-gogo-googleapis-1.2.0) - ("go-github-com-godbus-dbus-0.0.0-20151105175453-c7fdd8b5cd55" - ,go-github-com-godbus-dbus-0.0.0-20151105175453-c7fdd8b5cd55) - ("go-github-com-docker-go-units-0.4.0" - ,go-github-com-docker-go-units-0.4.0) - ("go-github-com-docker-go-events-0.0.0-20170721190031-9461782956ad" - ,go-github-com-docker-go-events-0.0.0-20170721190031-9461782956ad) - ("go-github-com-docker-distribution-2.7.1-0.20190205005809-0d3efadf0154+incompatible" - ,go-github-com-docker-distribution-2.7.1-0.20190205005809-0d3efadf0154+incompatible) - ("go-github-com-coreos-go-systemd-0.0.0-20161114122254-48702e0da86b" - ,go-github-com-coreos-go-systemd-0.0.0-20161114122254-48702e0da86b) - ("go-github-com-containers-ocicrypt-1.0.1" - ,go-github-com-containers-ocicrypt-1.0.1) - ("go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd" - ,go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd) - ("go-github-com-containerd-ttrpc-0.0.0-20190828172938-92c8520ef9f8" - ,go-github-com-containerd-ttrpc-0.0.0-20190828172938-92c8520ef9f8) - ("go-github-com-containerd-go-runc-0.0.0-20190911050354-e029b79d8cda" - ,go-github-com-containerd-go-runc-0.0.0-20190911050354-e029b79d8cda) - ("go-github-com-containerd-fifo-0.0.0-20180307165137-3d5202aec260" - ,go-github-com-containerd-fifo-0.0.0-20180307165137-3d5202aec260) - ("go-github-com-containerd-continuity-0.0.0-20190815185530-f2a389ac0a02" - ,go-github-com-containerd-continuity-0.0.0-20190815185530-f2a389ac0a02) - ("go-github-com-containerd-containerd-1.3.0" - ,go-github-com-containerd-containerd-1.3.0) - ("go-github-com-containerd-console-0.0.0-20181022165439-0650fd9eeb50" - ,go-github-com-containerd-console-0.0.0-20181022165439-0650fd9eeb50) - ("go-github-com-containerd-cgroups-0.0.0-20190717030353-c4b9ac5c7601" - ,go-github-com-containerd-cgroups-0.0.0-20190717030353-c4b9ac5c7601) - ("go-github-com-microsoft-hcsshim-0.8.7-0.20190325164909-8abdbb8205e4" - ,go-github-com-microsoft-hcsshim-0.8.7-0.20190325164909-8abdbb8205e4) - ("go-github-com-microsoft-go-winio-0.4.14" - ,go-github-com-microsoft-go-winio-0.4.14))) - (home-page "https://github.com/containerd/imgcrypt") - (synopsis "imgcrypt image encryption library and command line tool") - (description - "Project @code{imgcrypt} is a non-core subproject of containerd.") - (license license:asl2.0))) - -(define-public go-github-com-blang-semver-3.1.0+incompatible - (package - (name "go-github-com-blang-semver") - (version "3.1.0+incompatible") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/blang/semver") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1s80qlij6j6wrh0fhm0l11hbf3qjra67nca5bl7izyfjj4621fcd")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/blang/semver")) - (home-page "https://github.com/blang/semver") - (synopsis "semver for golang") - (description - "semver is a @url{http://semver.org/,Semantic Versioning} library written in golang. It fully covers spec version @code{2.0.0}.") - (license license:expat))) - -(define-public go-github-com-containerd-containerd-1.3.0-beta.2.0.20190828155532-0293cbd26c69 - (package - (name "go-github-com-containerd-containerd") - (version "1.3.0-beta.2.0.20190828155532-0293cbd26c69") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/containerd") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1jhb4a7fczf817d9dwj0a02wfscv46hkymrqh1dcsgpdsp80igkw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/containerd")) - (home-page "https://github.com/containerd/containerd") - (synopsis "Now Recruiting") - (description - "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") - (license license:asl2.0))) - -(define-public go-github-com-hashicorp-errwrap-0.0.0-20141028054710-7554cd9344ce - (package - (name "go-github-com-hashicorp-errwrap") - (version "0.0.0-20141028054710-7554cd9344ce") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/errwrap") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0kmv0p605di6jc8i1778qzass18m0mv9ks9vxxrfsiwcp4la82jf")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/errwrap")) - (home-page "https://github.com/hashicorp/errwrap") - (synopsis "errwrap") - (description - "Package errwrap implements methods to formalize error wrapping in Go. -") - (license license:mpl2.0))) - -(define-public go-github-com-hashicorp-go-multierror-0.0.0-20161216184304-ed905158d874 - (package - (name "go-github-com-hashicorp-go-multierror") - (version "0.0.0-20161216184304-ed905158d874") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/go-multierror") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1bldhx9dmx9q4gjsag3g1xswq1jsf394rs69fdbmgnkj75j3sp70")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/go-multierror")) - (home-page "https://github.com/hashicorp/go-multierror") - (synopsis "go-multierror") - (description - "@code{go-multierror} is a package for Go that provides a mechanism for -representing a list of @code{error} values as a single @code{error}.") - (license license:mpl2.0))) - -(define-public go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39 - (package - (name "go-github-com-opencontainers-runtime-tools") - (version "0.0.0-20181011054405-1d69bd0f9c39") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/runtime-tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1wgisl2v8i1hvy3bf8f16v7rarx2ynyasb0jx4kffp5n5hz2hfcl")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/runtime-tools")) - (home-page "https://github.com/opencontainers/runtime-tools") - (synopsis "oci-runtime-tool") - (description - "oci-runtime-tool is a collection of tools for working with the @url{https://github.com/opencontainers/runtime-spec,OCI runtime specification}. -To build from source code, runtime-tools requires Go 1.10.x or above.") - (license license:asl2.0))) - -(define-public go-github-com-prometheus-procfs-0.0.5 - (package - (name "go-github-com-prometheus-procfs") - (version "0.0.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/procfs") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1nqn8ip9f4f6kqrvand4lxhcxrkk19dwf8s3nh336i9wr2jfhbwa")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/procfs")) - (propagated-inputs - `(("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" - ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) - ("go-github-com-google-go-cmp-0.3.0" - ,go-github-com-google-go-cmp-0.3.0))) - (home-page "https://github.com/prometheus/procfs") - (synopsis "procfs") - (description - "Package procfs provides functions to retrieve system, kernel and process -metrics from the pseudo-filesystem proc. -") - (license license:asl2.0))) - -(define-public go-github-com-syndtr-gocapability-0.0.0-20170704070218-db04d3cc01c8 - (package - (name "go-github-com-syndtr-gocapability") - (version "0.0.0-20170704070218-db04d3cc01c8") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/syndtr/gocapability") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0jwica5kqax70rd4gbc2yjdz54401s4mr6clyn60gcmnxc0wynds")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/syndtr/gocapability")) - (home-page "https://github.com/syndtr/gocapability") - (synopsis #f) - (description #f) - (license license:bsd-2))) - -(define-public go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f - (package - (name "go-github-com-xeipuuv-gojsonpointer") - (version "0.0.0-20180127040702-4e3ac2762d5f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/xeipuuv/gojsonpointer") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "13y6iq2nzf9z4ls66bfgnnamj2m3438absmbpqry64bpwjfbsi9q")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/xeipuuv/gojsonpointer")) - (home-page "https://github.com/xeipuuv/gojsonpointer") - (synopsis "gojsonpointer") - (description "An implementation of JSON Pointer - Go language") - (license license:asl2.0))) - -(define-public go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415 - (package - (name "go-github-com-xeipuuv-gojsonreference") - (version "0.0.0-20180127040603-bd5ef7bd5415") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/xeipuuv/gojsonreference") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1xby79padc7bmyb8rfbad8wfnfdzpnh51b1n8c0kibch0kwc1db5")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/xeipuuv/gojsonreference")) - (home-page "https://github.com/xeipuuv/gojsonreference") - (synopsis "gojsonreference") - (description "An implementation of JSON Reference - Go language") - (license license:asl2.0))) - -(define-public go-github-com-xeipuuv-gojsonschema-0.0.0-20180618132009-1d523034197f - (package - (name "go-github-com-xeipuuv-gojsonschema") - (version "0.0.0-20180618132009-1d523034197f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/xeipuuv/gojsonschema") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1z8c6x8sfh6d1ib2lm2jps7r139qip6h3zik3fxhy1yr1380qbzp")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/xeipuuv/gojsonschema")) - (home-page "https://github.com/xeipuuv/gojsonschema") - (synopsis "gojsonschema") - (description - "An implementation of JSON Schema for the Go programming language. Supports draft-04, draft-06 and draft-07.") - (license license:asl2.0))) - -(define-public go-k8s-io-kubernetes-1.13.0 - (package - (name "go-k8s-io-kubernetes") - (version "1.13.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes/kubernetes") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12cvw8b7l319p8nc2imc2wck7zz7vzrwcjyxq5djqj7l5rbcwmzs")))) - (build-system go-build-system) - (arguments '(#:import-path "k8s.io/kubernetes")) - (home-page "https://k8s.io/kubernetes") - (synopsis "Kubernetes (K8s)") - (description - "Kubernetes, also known as K8s, is an open source system for managing @url{https://kubernetes.io/docs/concepts/overview/what-is-kubernetes/,containerized applications} -across multiple hosts. It provides basic mechanisms for deployment, maintenance, -and scaling of applications.") - (license license:asl2.0))) - -(define-public go-github-com-microsoft-hcsshim-0.8.7 - (package - (name "go-github-com-microsoft-hcsshim") - (version "0.8.7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/microsoft/hcsshim") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1c6ix202ll48n7x00xxb7gzgm3srm9zwwbx2503l6vz3sqclh9xm")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/Microsoft/hcsshim")) - (propagated-inputs - `(("go-k8s-io-kubernetes-1.13.0" ,go-k8s-io-kubernetes-1.13.0) - ("go-gotest-tools-2.2.0+incompatible" - ,go-gotest-tools-2.2.0+incompatible) - ("go-google-golang-org-grpc-1.20.1" ,go-google-golang-org-grpc-1.20.1) - ("go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3" - ,go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3) - ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" - ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) - ("go-go-opencensus-io-0.22.0" ,go-go-opencensus-io-0.22.0) - ("go-github-com-xeipuuv-gojsonschema-0.0.0-20180618132009-1d523034197f" - ,go-github-com-xeipuuv-gojsonschema-0.0.0-20180618132009-1d523034197f) - ("go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415" - ,go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415) - ("go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f" - ,go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f) - ("go-github-com-urfave-cli-0.0.0-20171014202726-7bc6a0acffa5" - ,go-github-com-urfave-cli-0.0.0-20171014202726-7bc6a0acffa5) - ("go-github-com-syndtr-gocapability-0.0.0-20170704070218-db04d3cc01c8" - ,go-github-com-syndtr-gocapability-0.0.0-20170704070218-db04d3cc01c8) - ("go-github-com-sirupsen-logrus-1.4.1" - ,go-github-com-sirupsen-logrus-1.4.1) - ("go-github-com-prometheus-procfs-0.0.5" - ,go-github-com-prometheus-procfs-0.0.5) - ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) - ("go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39" - ,go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39) - ("go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700" - ,go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700) - ("go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f" - ,go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f) - ("go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2" - ,go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2) - ("go-github-com-hashicorp-go-multierror-0.0.0-20161216184304-ed905158d874" - ,go-github-com-hashicorp-go-multierror-0.0.0-20161216184304-ed905158d874) - ("go-github-com-hashicorp-errwrap-0.0.0-20141028054710-7554cd9344ce" - ,go-github-com-hashicorp-errwrap-0.0.0-20141028054710-7554cd9344ce) - ("go-github-com-gogo-protobuf-1.2.1" - ,go-github-com-gogo-protobuf-1.2.1) - ("go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd" - ,go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd) - ("go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de" - ,go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de) - ("go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3" - ,go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3) - ("go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448" - ,go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448) - ("go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc" - ,go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc) - ("go-github-com-containerd-containerd-1.3.0-beta.2.0.20190828155532-0293cbd26c69" - ,go-github-com-containerd-containerd-1.3.0-beta.2.0.20190828155532-0293cbd26c69) - ("go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1" - ,go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1) - ("go-github-com-containerd-cgroups-0.0.0-20190919134610-bf292b21730f" - ,go-github-com-containerd-cgroups-0.0.0-20190919134610-bf292b21730f) - ("go-github-com-blang-semver-3.1.0+incompatible" - ,go-github-com-blang-semver-3.1.0+incompatible) - ("go-github-com-microsoft-go-winio-0.4.15-0.20190919025122-fc70bd9a86b5" - ,go-github-com-microsoft-go-winio-0.4.15-0.20190919025122-fc70bd9a86b5))) - (home-page "https://github.com/Microsoft/hcsshim") - (synopsis "hcsshim") - (description - "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") - (license license:expat))) - -(define-public go-github-com-containerd-containerd-1.3.1-0.20191213020239-082f7e3aed57 - (package - (name "go-github-com-containerd-containerd") - (version "1.3.1-0.20191213020239-082f7e3aed57") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/containerd") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1piaha1adhzhj150l7zhskn5fgl4r2cyvwhrrm8bbm3vnvhmgw7v")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/containerd")) - (home-page "https://github.com/containerd/containerd") - (synopsis "Now Recruiting") - (description - "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-continuity-0.0.0-20191127005431-f65d91d395eb - (package - (name "go-github-com-containerd-continuity") - (version "0.0.0-20191127005431-f65d91d395eb") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/continuity") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "15yh5idl3if8a982gsnq9q72021a7jcs9bdcrqaxbl4dwdqcszki")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/continuity")) - (home-page "https://github.com/containerd/continuity") - (synopsis "continuity") - (description - "This package provides a transport-agnostic, filesystem metadata manifest system") - (license license:asl2.0))) - -(define-public go-golang-org-x-sys-0.0.0-20190522044717-8097e1b27ff5 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190522044717-8097e1b27ff5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1rgflfvh365x5lwdyqdd9qk8hh3ycr88a2488bgqgvfhp5ri5p6x")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-google-golang-org-genproto-0.0.0-20190522204451-c2c4e71fbf69 - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20190522204451-c2c4e71fbf69") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1y44pmyy92pg822fhw80pnciifx1ah0g73i2l0ixickd24wyznnm")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" - ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) - ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) - ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" - ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) - ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" - ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) - ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" - ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) - ("go-github-com-golang-protobuf-1.3.1" - ,go-github-com-golang-protobuf-1.3.1))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-google-golang-org-grpc-1.21.0 - (package - (name "go-google-golang-org-grpc") - (version "1.21.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0zxjlxnvjqfn6zfx7gbmqhadx0j788vxfn95g1ngbmjkgppzsnfp")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" - ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) - ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" - ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) - ("go-google-golang-org-appengine-1.1.0" - ,go-google-golang-org-appengine-1.1.0) - ("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" - ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" - ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-google-go-cmp-0.2.0" - ,go-github-com-google-go-cmp-0.2.0) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0) - ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-client9-misspell-0.3.4" - ,go-github-com-client9-misspell-0.3.4) - ("go-github-com-burntsushi-toml-0.3.1" - ,go-github-com-burntsushi-toml-0.3.1) - ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-github-com-containerd-ttrpc-0.0.0-20191028202541-4f1b8fe65a5c - (package - (name "go-github-com-containerd-ttrpc") - (version "0.0.0-20191028202541-4f1b8fe65a5c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/ttrpc") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19fhm39jagk2sfgi9g5zdqx4rynziwxhaap03x4mdj8kczlz21x8")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/ttrpc")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.21.0" ,go-google-golang-org-grpc-1.21.0) - ("go-google-golang-org-genproto-0.0.0-20190522204451-c2c4e71fbf69" - ,go-google-golang-org-genproto-0.0.0-20190522204451-c2c4e71fbf69) - ("go-golang-org-x-sys-0.0.0-20190522044717-8097e1b27ff5" - ,go-golang-org-x-sys-0.0.0-20190522044717-8097e1b27ff5) - ("go-github-com-sirupsen-logrus-1.4.2" - ,go-github-com-sirupsen-logrus-1.4.2) - ("go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1" - ,go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1) - ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) - ("go-github-com-gogo-protobuf-1.2.1" - ,go-github-com-gogo-protobuf-1.2.1))) - (home-page "https://github.com/containerd/ttrpc") - (synopsis "ttrpc") - (description "GRPC for low-memory environments.") - (license license:asl2.0))) - -(define-public go-github-com-gogo-protobuf-1.3.0 - (package - (name "go-github-com-gogo-protobuf") - (version "1.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gogo/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0slfyrmbpdcppf0z3waar90bpszdhi2gv705ys1b0zx5x6ax8f1a")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/gogo/protobuf")) - (propagated-inputs - `(("go-github-com-kisielk-gotool-1.0.0" - ,go-github-com-kisielk-gotool-1.0.0) - ("go-github-com-kisielk-errcheck-1.2.0" - ,go-github-com-kisielk-errcheck-1.2.0))) - (home-page "https://github.com/gogo/protobuf") - (synopsis "Protocol Buffers for Go with Gadgets") - (description - "gogoprotobuf is a fork of @url{https://github.com/golang/protobuf,golang/protobuf} with extra code generation features.") - (license license:bsd-3))) - -(define-public go-github-com-containerd-typeurl-0.0.0-20190911142611-5eb25027c9fd - (package - (name "go-github-com-containerd-typeurl") - (version "0.0.0-20190911142611-5eb25027c9fd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/typeurl") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fyc2962b9sqgqycnlkxls6n0d701nszl84bayxrdv3r1491jn9v")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/typeurl")) - (propagated-inputs - `(("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) - ("go-github-com-gogo-protobuf-1.3.0" - ,go-github-com-gogo-protobuf-1.3.0))) - (home-page "https://github.com/containerd/typeurl") - (synopsis "typeurl") - (description - "This package provides a Go package for managing the registration, marshaling, and unmarshaling of encoded types.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-zfs-0.0.0-20200918131355-0a33824f23a2 - (package - (name "go-github-com-containerd-zfs") - (version "0.0.0-20200918131355-0a33824f23a2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/zfs") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "112bj6mxc3r2ncybblf3w1fgqa6w0070f6a8vlqcml1g00ljhsz6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/zfs")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) - ("go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449" - ,go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449) - ("go-go-etcd-io-bbolt-1.3.3" ,go-go-etcd-io-bbolt-1.3.3) - ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) - ("go-github-com-opencontainers-runc-1.0.0-rc9" - ,go-github-com-opencontainers-runc-1.0.0-rc9) - ("go-github-com-opencontainers-image-spec-1.0.1" - ,go-github-com-opencontainers-image-spec-1.0.1) - ("go-github-com-opencontainers-go-digest-1.0.0-rc1" - ,go-github-com-opencontainers-go-digest-1.0.0-rc1) - ("go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible" - ,go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible) - ("go-github-com-google-uuid-1.1.1" ,go-github-com-google-uuid-1.1.1) - ("go-github-com-google-go-cmp-0.3.1" - ,go-github-com-google-go-cmp-0.3.1) - ("go-github-com-gogo-protobuf-1.3.1" - ,go-github-com-gogo-protobuf-1.3.1) - ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" - ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) - ("go-github-com-containerd-typeurl-0.0.0-20190911142611-5eb25027c9fd" - ,go-github-com-containerd-typeurl-0.0.0-20190911142611-5eb25027c9fd) - ("go-github-com-containerd-ttrpc-0.0.0-20191028202541-4f1b8fe65a5c" - ,go-github-com-containerd-ttrpc-0.0.0-20191028202541-4f1b8fe65a5c) - ("go-github-com-containerd-continuity-0.0.0-20191127005431-f65d91d395eb" - ,go-github-com-containerd-continuity-0.0.0-20191127005431-f65d91d395eb) - ("go-github-com-containerd-containerd-1.3.1-0.20191213020239-082f7e3aed57" - ,go-github-com-containerd-containerd-1.3.1-0.20191213020239-082f7e3aed57) - ("go-github-com-microsoft-hcsshim-0.8.7" - ,go-github-com-microsoft-hcsshim-0.8.7))) - (home-page "https://github.com/containerd/zfs") - (synopsis "ZFS snapshotter plugin") - (description "ZFS snapshotter plugin for containerd.") - (license license:asl2.0))) - -(define-public go-golang-org-x-sys-0.0.0-20201202213521-69691e467435 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20201202213521-69691e467435") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0lndxdnazszfj1jl87cpz31vd12jrjm1wj0zw1c2p8yg64cfkhna")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-containerd-containerd-1.5.0-beta.1 - (package - (name "go-github-com-containerd-containerd") - (version "1.5.0-beta.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/containerd") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1jki3jwmbfk4mp2qhz4ppd6vgnicalszzv5ffibasa4qj5v19wcd")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/containerd")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) - ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) - ("go-github-com-golang-protobuf-1.3.5" - ,go-github-com-golang-protobuf-1.3.5) - ("go-github-com-gogo-googleapis-1.3.2" - ,go-github-com-gogo-googleapis-1.3.2) - ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" - ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) - ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) - ("go-k8s-io-cri-api-0.20.1" ,go-k8s-io-cri-api-0.20.1) - ("go-k8s-io-component-base-0.20.1" ,go-k8s-io-component-base-0.20.1) - ("go-k8s-io-client-go-0.20.1" ,go-k8s-io-client-go-0.20.1) - ("go-k8s-io-apiserver-0.20.1" ,go-k8s-io-apiserver-0.20.1) - ("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) - ("go-k8s-io-api-0.20.1" ,go-k8s-io-api-0.20.1) - ("go-gotest-tools-v3-3.0.2" ,go-gotest-tools-v3-3.0.2) - ("go-golang-org-x-sys-0.0.0-20201202213521-69691e467435" - ,go-golang-org-x-sys-0.0.0-20201202213521-69691e467435) - ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" - ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) - ("go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b" - ,go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b) - ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) - ("go-github-com-tchap-go-patricia-2.2.6+incompatible" - ,go-github-com-tchap-go-patricia-2.2.6+incompatible) - ("go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635" - ,go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-sirupsen-logrus-1.7.0" - ,go-github-com-sirupsen-logrus-1.7.0) - ("go-github-com-prometheus-client-golang-1.7.1" - ,go-github-com-prometheus-client-golang-1.7.1) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-selinux-1.8.0" - ,go-github-com-opencontainers-selinux-1.8.0) - ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" - ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) - ("go-github-com-opencontainers-runc-1.0.0-rc93" - ,go-github-com-opencontainers-runc-1.0.0-rc93) - ("go-github-com-opencontainers-image-spec-1.0.1" - ,go-github-com-opencontainers-image-spec-1.0.1) - ("go-github-com-opencontainers-go-digest-1.0.0" - ,go-github-com-opencontainers-go-digest-1.0.0) - ("go-github-com-moby-sys-symlink-0.1.0" - ,go-github-com-moby-sys-symlink-0.1.0) - ("go-github-com-moby-sys-mountinfo-0.4.0" - ,go-github-com-moby-sys-mountinfo-0.4.0) - ("go-github-com-klauspost-compress-1.11.3" - ,go-github-com-klauspost-compress-1.11.3) - ("go-github-com-imdario-mergo-0.3.10" - ,go-github-com-imdario-mergo-0.3.10) - ("go-github-com-hashicorp-go-multierror-1.0.0" - ,go-github-com-hashicorp-go-multierror-1.0.0) - ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" - ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) - ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) - ("go-github-com-google-go-cmp-0.5.2" - ,go-github-com-google-go-cmp-0.5.2) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2) - ("go-github-com-fsnotify-fsnotify-1.4.9" - ,go-github-com-fsnotify-fsnotify-1.4.9) - ("go-github-com-emicklei-go-restful-2.9.5+incompatible" - ,go-github-com-emicklei-go-restful-2.9.5+incompatible) - ("go-github-com-docker-go-units-0.4.0" - ,go-github-com-docker-go-units-0.4.0) - ("go-github-com-docker-go-metrics-0.0.1" - ,go-github-com-docker-go-metrics-0.0.1) - ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" - ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1) - ("go-github-com-coreos-go-systemd-v22-22.1.0" - ,go-github-com-coreos-go-systemd-v22-22.1.0) - ("go-github-com-containernetworking-plugins-0.8.6" - ,go-github-com-containernetworking-plugins-0.8.6) - ("go-github-com-containerd-zfs-0.0.0-20200918131355-0a33824f23a2" - ,go-github-com-containerd-zfs-0.0.0-20200918131355-0a33824f23a2) - ("go-github-com-containerd-typeurl-1.0.1" - ,go-github-com-containerd-typeurl-1.0.1) - ("go-github-com-containerd-ttrpc-1.0.2" - ,go-github-com-containerd-ttrpc-1.0.2) - ("go-github-com-containerd-nri-0.0.0-20201007170849-eb1350a75164" - ,go-github-com-containerd-nri-0.0.0-20201007170849-eb1350a75164) - ("go-github-com-containerd-imgcrypt-1.0.1" - ,go-github-com-containerd-imgcrypt-1.0.1) - ("go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328" - ,go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328) - ("go-github-com-containerd-go-cni-1.0.1" - ,go-github-com-containerd-go-cni-1.0.1) - ("go-github-com-containerd-fifo-0.0.0-20201026212402-0724c46b320c" - ,go-github-com-containerd-fifo-0.0.0-20201026212402-0724c46b320c) - ("go-github-com-containerd-continuity-0.0.0-20201208142359-180525291bb7" - ,go-github-com-containerd-continuity-0.0.0-20201208142359-180525291bb7) - ("go-github-com-containerd-console-1.0.1" - ,go-github-com-containerd-console-1.0.1) - ("go-github-com-containerd-cgroups-0.0.0-20200824123100-0b889c03f102" - ,go-github-com-containerd-cgroups-0.0.0-20200824123100-0b889c03f102) - ("go-github-com-containerd-btrfs-0.0.0-20201111183144-404b9149801e" - ,go-github-com-containerd-btrfs-0.0.0-20201111183144-404b9149801e) - ("go-github-com-containerd-aufs-0.0.0-20200908144142-dab0cbea06f4" - ,go-github-com-containerd-aufs-0.0.0-20200908144142-dab0cbea06f4) - ("go-github-com-microsoft-hcsshim-test-0.0.0-20201218223536-d3e5debf77da" - ,go-github-com-microsoft-hcsshim-test-0.0.0-20201218223536-d3e5debf77da) - ("go-github-com-microsoft-hcsshim-0.8.14" - ,go-github-com-microsoft-hcsshim-0.8.14) - ("go-github-com-microsoft-go-winio-0.4.16" - ,go-github-com-microsoft-go-winio-0.4.16) - ("go-github-com-burntsushi-toml-0.3.1" - ,go-github-com-burntsushi-toml-0.3.1))) - (home-page "https://github.com/containerd/containerd") - (synopsis "Now Recruiting") - (description - "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") - (license license:asl2.0))) - -(define-public go-github-com-miekg-pkcs11-1.0.3 - (package - (name "go-github-com-miekg-pkcs11") - (version "1.0.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/miekg/pkcs11") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0rmmgssb6y28x54si5h63gwbdsjjxf5n9xvm3zqdfsf9l10gx2m6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/miekg/pkcs11")) - (home-page "https://github.com/miekg/pkcs11") - (synopsis "PKCS#11") - (description - "Package pkcs11 is a wrapper around the PKCS#11 cryptographic library. -") - (license license:bsd-3))) - -(define-public go-github-com-stefanberger-go-pkcs11uri-0.0.0-20201008174630-78d3cae3a980 - (package - (name "go-github-com-stefanberger-go-pkcs11uri") - (version "0.0.0-20201008174630-78d3cae3a980") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stefanberger/go-pkcs11uri") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "09bnd1fn2v5y5ngsxz751a0x9fsqn8idlfrwyymfv9l57wvmrd2l")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stefanberger/go-pkcs11uri")) - (home-page "https://github.com/stefanberger/go-pkcs11uri") - (synopsis "go-pkcs11uri") - (description - "Welcome to the go-pkcs11uri library. The implementation follows @url{https://tools.ietf.org/html/rfc7512,RFC 7512} and this @url{https://www.rfc-editor.org/errata/rfc7512,errata}.") - (license license:asl2.0))) - -(define-public go-go-mozilla-org-pkcs7-0.0.0-20200128120323-432b2356ecb1 - (package - (name "go-go-mozilla-org-pkcs7") - (version "0.0.0-20200128120323-432b2356ecb1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mozilla-services/pkcs7") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0yncaq6i1x6apykvng92yyqkj5kmzl4c43lmcalr5lq7ks009p40")))) - (build-system go-build-system) - (arguments '(#:import-path "go.mozilla.org/pkcs7")) - (home-page "https://go.mozilla.org/pkcs7") - (synopsis "pkcs7") - (description - "Package pkcs7 implements parsing and generation of some PKCS#7 structures. -") - (license license:expat))) - -(define-public go-golang-org-x-crypto-0.0.0-20200728195943-123391ffb6de - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20200728195943-123391ffb6de") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1a3wnn8yjvckh3smyqzwd2k2gvl3i8dk68pvcap0wha8hmga1vf3")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" - ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) - ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" - ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20200817155316-9781c653f443 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200817155316-9781c653f443") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fkwiydhhmn6cxmd9jb4rj2wp06yxmqc3903b7zawsxm9jpslicm")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-gopkg-in-square-go-jose-v2-2.5.1 - (package - (name "go-gopkg-in-square-go-jose-v2") - (version "2.5.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/square/go-jose.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0z0hbmb5yyvnjkyiyn259wkbqbjxs2pzx87jz472shn2bgggxa4n")))) - (build-system go-build-system) - (arguments - '(#:import-path - "gopkg.in/square/go-jose.v2" - #:unpack-path - "gopkg.in/square/go-jose.v2")) - (home-page "https://gopkg.in/square/go-jose.v2") - (synopsis "Go JOSE") - (description - "Package jose aims to provide an implementation of the Javascript Object Signing -and Encryption set of standards. It implements encryption and signing based on -the JSON Web Encryption and JSON Web Signature standards, with optional JSON -Web Token support available in a sub-package. The library supports both the -compact and full serialization formats, and has optional support for multiple -recipients. -") - (license license:asl2.0))) - -(define-public go-github-com-containers-ocicrypt-1.1.0 - (package - (name "go-github-com-containers-ocicrypt") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containers/ocicrypt") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "13avih8ml00idn6qy96ash3jxkimqxpkz4cy4kgryc8jx303nv6i")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containers/ocicrypt")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.3.0" ,go-gopkg-in-yaml-v2-2.3.0) - ("go-gopkg-in-square-go-jose-v2-2.5.1" - ,go-gopkg-in-square-go-jose-v2-2.5.1) - ("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) - ("go-golang-org-x-sys-0.0.0-20200817155316-9781c653f443" - ,go-golang-org-x-sys-0.0.0-20200817155316-9781c653f443) - ("go-golang-org-x-crypto-0.0.0-20200728195943-123391ffb6de" - ,go-golang-org-x-crypto-0.0.0-20200728195943-123391ffb6de) - ("go-go-mozilla-org-pkcs7-0.0.0-20200128120323-432b2356ecb1" - ,go-go-mozilla-org-pkcs7-0.0.0-20200128120323-432b2356ecb1) - ("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0) - ("go-github-com-stefanberger-go-pkcs11uri-0.0.0-20201008174630-78d3cae3a980" - ,go-github-com-stefanberger-go-pkcs11uri-0.0.0-20201008174630-78d3cae3a980) - ("go-github-com-sirupsen-logrus-1.7.0" - ,go-github-com-sirupsen-logrus-1.7.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-image-spec-1.0.1" - ,go-github-com-opencontainers-image-spec-1.0.1) - ("go-github-com-opencontainers-go-digest-1.0.0" - ,go-github-com-opencontainers-go-digest-1.0.0) - ("go-github-com-miekg-pkcs11-1.0.3" ,go-github-com-miekg-pkcs11-1.0.3) - ("go-github-com-google-go-cmp-0.5.2" - ,go-github-com-google-go-cmp-0.5.2) - ("go-github-com-golang-protobuf-1.4.3" - ,go-github-com-golang-protobuf-1.4.3))) - (home-page "https://github.com/containers/ocicrypt") - (synopsis "OCIcrypt Library") - (description - "The @code{ocicrypt} library is the OCI image spec implementation of container image encryption. More details of the spec can be seen in the @url{https://github.com/opencontainers/image-spec/pull/775,OCI repository}. The purpose of this library is to encode spec structures and consts in code, as well as provide a consistent implementation of image encryption across container runtimes and build tools.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-imgcrypt-1.0.4-0.20210301171431-0ae5c75f59ba - (package - (name "go-github-com-containerd-imgcrypt") - (version "1.0.4-0.20210301171431-0ae5c75f59ba") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/imgcrypt") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0vkwgcxh3mpsn6wp231c9ad3sx6gmnc9948nn3vvbw8bsmjd4i77")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/imgcrypt")) - (propagated-inputs - `(("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) - ("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) - ("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) - ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" - ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) - ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) - ("go-github-com-sirupsen-logrus-1.7.0" - ,go-github-com-sirupsen-logrus-1.7.0) - ("go-github-com-prometheus-procfs-0.6.0" - ,go-github-com-prometheus-procfs-0.6.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" - ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) - ("go-github-com-opencontainers-image-spec-1.0.1" - ,go-github-com-opencontainers-image-spec-1.0.1) - ("go-github-com-opencontainers-go-digest-1.0.0" - ,go-github-com-opencontainers-go-digest-1.0.0) - ("go-github-com-imdario-mergo-0.3.11" - ,go-github-com-imdario-mergo-0.3.11) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2) - ("go-github-com-containers-ocicrypt-1.1.0" - ,go-github-com-containers-ocicrypt-1.1.0) - ("go-github-com-containerd-typeurl-1.0.1" - ,go-github-com-containerd-typeurl-1.0.1) - ("go-github-com-containerd-containerd-1.5.0-beta.1" - ,go-github-com-containerd-containerd-1.5.0-beta.1) - ("go-github-com-containerd-console-1.0.1" - ,go-github-com-containerd-console-1.0.1) - ("go-github-com-microsoft-hcsshim-test-0.0.0-20210227013316-43a75bb4edd3" - ,go-github-com-microsoft-hcsshim-test-0.0.0-20210227013316-43a75bb4edd3) - ("go-github-com-microsoft-hcsshim-0.8.14" - ,go-github-com-microsoft-hcsshim-0.8.14) - ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" - ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3))) - (home-page "https://github.com/containerd/imgcrypt") - (synopsis "imgcrypt image encryption library and command line tool") - (description - "Project @code{imgcrypt} is a non-core subproject of containerd.") - (license license:asl2.0))) - -(define-public go-github-com-microsoft-go-winio-0.4.15-0.20190919025122-fc70bd9a86b5 - (package - (name "go-github-com-microsoft-go-winio") - (version "0.4.15-0.20190919025122-fc70bd9a86b5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/microsoft/go-winio") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "015ra2h3qfaq436d0g7akahgz7bikyvljq48m0l2d2f4k3wki86p")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/Microsoft/go-winio")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3" - ,go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3) - ("go-github-com-sirupsen-logrus-1.4.1" - ,go-github-com-sirupsen-logrus-1.4.1) - ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) - (home-page "https://github.com/Microsoft/go-winio") - (synopsis "go-winio") - (description - "This repository contains utilities for efficiently performing Win32 IO operations in -Go. Currently, this is focused on accessing named pipes and other file handles, and -for using named pipes as a net transport.") - (license license:expat))) - -(define-public go-github-com-godbus-dbus-0.0.0-20190422162347-ade71ed3457e - (package - (name "go-github-com-godbus-dbus") - (version "0.0.0-20190422162347-ade71ed3457e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/godbus/dbus") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12ga9izv32j1zjij1p9f2sdnxjy3v80lw964518dvzirxpvwfszn")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/godbus/dbus")) - (home-page "https://github.com/godbus/dbus") - (synopsis "dbus") - (description - "Package dbus implements bindings to the D-Bus message bus system. -") - (license license:bsd-2))) - -(define-public go-golang-org-x-sys-0.0.0-20190514135907-3a4b5fb9f71f - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190514135907-3a4b5fb9f71f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "122ry2lw2525mqlnw2zc006y1flvj3yhj8rnpxqdwxp71jc3kqii")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-containerd-cgroups-0.0.0-20190919134610-bf292b21730f - (package - (name "go-github-com-containerd-cgroups") - (version "0.0.0-20190919134610-bf292b21730f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/cgroups") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1vvk1vrwm9spilyl4r1r8626sg0zvnx3s3zmzigzinpkzzvbdqpw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/cgroups")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190514135907-3a4b5fb9f71f" - ,go-golang-org-x-sys-0.0.0-20190514135907-3a4b5fb9f71f) - ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) - ("go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700" - ,go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700) - ("go-github-com-gogo-protobuf-1.2.1" - ,go-github-com-gogo-protobuf-1.2.1) - ("go-github-com-godbus-dbus-0.0.0-20190422162347-ade71ed3457e" - ,go-github-com-godbus-dbus-0.0.0-20190422162347-ade71ed3457e) - ("go-github-com-docker-go-units-0.4.0" - ,go-github-com-docker-go-units-0.4.0) - ("go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e" - ,go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e))) - (home-page "https://github.com/containerd/cgroups") - (synopsis "cgroups") - (description - "Go package for creating, managing, inspecting, and destroying cgroups. -The resources format for settings on the cgroup uses the OCI runtime-spec found -@url{https://github.com/opencontainers/runtime-spec,here}.") - (license license:asl2.0))) - -(define-public go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700 - (package - (name "go-github-com-opencontainers-runtime-spec") - (version "0.1.2-0.20190507144316-5b71a03e2700") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/runtime-spec") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1dx0bp4f885vx6l4b5b7h19j6sm0jn9s2qxarfd917f4wp8l0cpl")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) - (home-page "https://github.com/opencontainers/runtime-spec") - (synopsis "Open Container Initiative Runtime Specification") - (description - "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") - (license license:asl2.0))) - -(define-public go-github-com-urfave-cli-0.0.0-20171014202726-7bc6a0acffa5 - (package - (name "go-github-com-urfave-cli") - (version "0.0.0-20171014202726-7bc6a0acffa5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/urfave/cli") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "13li8phkaznh81qxs9vg0r8294ph014rwca4cqf7gxhvyjlaigwp")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/urfave/cli")) - (home-page "https://github.com/urfave/cli") - (synopsis "cli") - (description - "Package cli provides a minimal framework for creating and organizing command line -Go applications. cli is designed to be easy to understand and write, the most simple -cli application can be written as follows: -") - (license license:expat))) - -(define-public go-github-com-microsoft-hcsshim-0.8.9 - (package - (name "go-github-com-microsoft-hcsshim") - (version "0.8.9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/microsoft/hcsshim") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1imyqhh51311fdmp81ffasf7z52rbqhblbhx6477d9w20p74866b")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/Microsoft/hcsshim")) - (propagated-inputs - `(("go-gotest-tools-2.2.0+incompatible" - ,go-gotest-tools-2.2.0+incompatible) - ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) - ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" - ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) - ("go-google-golang-org-grpc-1.23.1" ,go-google-golang-org-grpc-1.23.1) - ("go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873" - ,go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873) - ("go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3" - ,go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3) - ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" - ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) - ("go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9" - ,go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9) - ("go-go-opencensus-io-0.22.0" ,go-go-opencensus-io-0.22.0) - ("go-github-com-urfave-cli-0.0.0-20171014202726-7bc6a0acffa5" - ,go-github-com-urfave-cli-0.0.0-20171014202726-7bc6a0acffa5) - ("go-github-com-stretchr-testify-1.4.0" - ,go-github-com-stretchr-testify-1.4.0) - ("go-github-com-sirupsen-logrus-1.4.2" - ,go-github-com-sirupsen-logrus-1.4.2) - ("go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7" - ,go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7) - ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) - ("go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700" - ,go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700) - ("go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f" - ,go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f) - ("go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2" - ,go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2) - ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2) - ("go-github-com-gogo-protobuf-1.3.1" - ,go-github-com-gogo-protobuf-1.3.1) - ("go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd" - ,go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd) - ("go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de" - ,go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de) - ("go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3" - ,go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3) - ("go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448" - ,go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448) - ("go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc" - ,go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc) - ("go-github-com-containerd-containerd-1.3.2" - ,go-github-com-containerd-containerd-1.3.2) - ("go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1" - ,go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1) - ("go-github-com-containerd-cgroups-0.0.0-20190919134610-bf292b21730f" - ,go-github-com-containerd-cgroups-0.0.0-20190919134610-bf292b21730f) - ("go-github-com-microsoft-go-winio-0.4.15-0.20190919025122-fc70bd9a86b5" - ,go-github-com-microsoft-go-winio-0.4.15-0.20190919025122-fc70bd9a86b5))) - (home-page "https://github.com/Microsoft/hcsshim") - (synopsis "hcsshim") - (description - "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") - (license license:expat))) - -(define-public go-github-com-cilium-ebpf-0.0.0-20200702112145-1c8d4c9ef775 - (package - (name "go-github-com-cilium-ebpf") - (version "0.0.0-20200702112145-1c8d4c9ef775") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cilium/ebpf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1la90b88a1li5hmlqxfx9lgxlyzqb2pd4c2dxmz4s5gg2gz8a5x5")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/cilium/ebpf")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9" - ,go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9))) - (home-page "https://github.com/cilium/ebpf") - (synopsis "eBPF") - (description "Package ebpf is a toolkit for working with eBPF programs. -") - (license license:expat))) - -(define-public go-github-com-containerd-cgroups-0.0.0-20200710171044-318312a37340 - (package - (name "go-github-com-containerd-cgroups") - (version "0.0.0-20200710171044-318312a37340") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/cgroups") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1kizbm55pmlnly2dggymp84a0d9pn4fh7jf31h6wqm385zrs14zp")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/cgroups")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9" - ,go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9) - ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) - ("go-github-com-stretchr-testify-1.2.2" - ,go-github-com-stretchr-testify-1.2.2) - ("go-github-com-sirupsen-logrus-1.6.0" - ,go-github-com-sirupsen-logrus-1.6.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-runtime-spec-1.0.2" - ,go-github-com-opencontainers-runtime-spec-1.0.2) - ("go-github-com-gogo-protobuf-1.3.1" - ,go-github-com-gogo-protobuf-1.3.1) - ("go-github-com-godbus-dbus-v5-5.0.3" - ,go-github-com-godbus-dbus-v5-5.0.3) - ("go-github-com-docker-go-units-0.4.0" - ,go-github-com-docker-go-units-0.4.0) - ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" - ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) - ("go-github-com-coreos-go-systemd-v22-22.0.0" - ,go-github-com-coreos-go-systemd-v22-22.0.0) - ("go-github-com-cilium-ebpf-0.0.0-20200702112145-1c8d4c9ef775" - ,go-github-com-cilium-ebpf-0.0.0-20200702112145-1c8d4c9ef775))) - (home-page "https://github.com/containerd/cgroups") - (synopsis "cgroups") - (description - "Go package for creating, managing, inspecting, and destroying cgroups. -The resources format for settings on the cgroup uses the OCI runtime-spec found -@url{https://github.com/opencontainers/runtime-spec,here}.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-containerd-1.4.0-beta.2.0.20200729163537-40b22ef07410 - (package - (name "go-github-com-containerd-containerd") - (version "1.4.0-beta.2.0.20200729163537-40b22ef07410") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/containerd") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ky7ny5b0rvkr6a58pdlcm35kc9wls6jvl7cdk8py4a16y1f2lx9")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/containerd")) - (home-page "https://github.com/containerd/containerd") - (synopsis "Now Recruiting") - (description - "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") - (license license:asl2.0))) - -(define-public go-github-com-onsi-ginkgo-1.10.1 - (package - (name "go-github-com-onsi-ginkgo") - (version "1.10.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/onsi/ginkgo") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "033a42h1wzmji57p86igg9whvsbp6nvfdsypskw738ys903n3z4d")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/onsi/ginkgo")) - (home-page "https://github.com/onsi/ginkgo") - (synopsis "Ginkgo 2.0 Release Candidate is available!") - (description "Ginkgo is a BDD-style testing framework for Golang -") - (license license:expat))) - -(define-public go-github-com-opencontainers-go-digest-1.0.0-rc1 - (package - (name "go-github-com-opencontainers-go-digest") - (version "1.0.0-rc1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/go-digest") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "01gc7fpn8ax429024p2fcx3yb18axwz5bjf2hqxlii1jbsgw4bh9")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/go-digest")) - (home-page "https://github.com/opencontainers/go-digest") - (synopsis "go-digest") - (description - "Package digest provides a generalized type to opaquely represent message -digests and their operations within the registry. The Digest type is -designed to serve as a flexible identifier in a content-addressable system. -More importantly, it provides tools and wrappers to work with -hash.Hash-based digests with little effort. -") - (license (list license:asl2.0 license:cc-by-sa4.0)))) - -(define-public go-github-com-pkg-errors-0.8.1-0.20171018195549-f15c970de5b7 - (package - (name "go-github-com-pkg-errors") - (version "0.8.1-0.20171018195549-f15c970de5b7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pkg/errors") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18jihrffhfsjvz3rkanlhq9xjcdxkqilmflnijc64s7y7lijlbfm")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pkg/errors")) - (home-page "https://github.com/pkg/errors") - (synopsis "errors") - (description "Package errors provides simple error handling primitives. -") - (license license:bsd-2))) - -(define-public go-github-com-sirupsen-logrus-1.0.4-0.20170822132746-89742aefa4b2 - (package - (name "go-github-com-sirupsen-logrus") - (version "1.0.4-0.20170822132746-89742aefa4b2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sirupsen/logrus") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hk7fabx59msg2y0iik6xvfp80s73ybrwlcshbm9ds91iqbkcxi6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/sirupsen/logrus")) - (home-page "https://github.com/sirupsen/logrus") - (synopsis "Logrus") - (description - "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. -") - (license license:expat))) - -(define-public go-golang-org-x-crypto-0.0.0-20171113213409-9f005a07e0d3 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20171113213409-9f005a07e0d3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1mhmr6ljzl3iafsz4qy8vval7rmr828wh59dlqqqjqx6sqmcs1dv")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-github-com-containerd-continuity-0.0.0-20200710164510-efbc4488d8fe - (package - (name "go-github-com-containerd-continuity") - (version "0.0.0-20200710164510-efbc4488d8fe") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/continuity") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0d638nj7z7y8z19zdwbysamqh5m3kiwvnqny7av6bxax9gg6c3h8")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/continuity")) - (propagated-inputs - `(("go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2" - ,go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2) - ("go-gopkg-in-airbrake-gobrake-v2-2.0.9" - ,go-gopkg-in-airbrake-gobrake-v2-2.0.9) - ("go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e" - ,go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e) - ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" - ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) - ("go-golang-org-x-crypto-0.0.0-20171113213409-9f005a07e0d3" - ,go-golang-org-x-crypto-0.0.0-20171113213409-9f005a07e0d3) - ("go-github-com-stretchr-testify-1.4.0" - ,go-github-com-stretchr-testify-1.4.0) - ("go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95" - ,go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95) - ("go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee" - ,go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee) - ("go-github-com-sirupsen-logrus-1.0.4-0.20170822132746-89742aefa4b2" - ,go-github-com-sirupsen-logrus-1.0.4-0.20170822132746-89742aefa4b2) - ("go-github-com-pkg-errors-0.8.1-0.20171018195549-f15c970de5b7" - ,go-github-com-pkg-errors-0.8.1-0.20171018195549-f15c970de5b7) - ("go-github-com-opencontainers-go-digest-1.0.0-rc1" - ,go-github-com-opencontainers-go-digest-1.0.0-rc1) - ("go-github-com-onsi-gomega-1.7.0" ,go-github-com-onsi-gomega-1.7.0) - ("go-github-com-onsi-ginkgo-1.10.1" ,go-github-com-onsi-ginkgo-1.10.1) - ("go-github-com-inconshreveable-mousetrap-1.0.0" - ,go-github-com-inconshreveable-mousetrap-1.0.0) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0) - ("go-github-com-dustin-go-humanize-0.0.0-20171111073723-bb3d318650d4" - ,go-github-com-dustin-go-humanize-0.0.0-20171111073723-bb3d318650d4) - ("go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898" - ,go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898))) - (home-page "https://github.com/containerd/continuity") - (synopsis "continuity") - (description - "This package provides a transport-agnostic, filesystem metadata manifest system") - (license license:asl2.0))) - -(define-public go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20191210023423-ac6580df4449") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "14gvx65w5lddi20s4wypbbvbg9ni3m8777jhp9nqxhixc61k3dyi")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-containerd-fifo-0.0.0-20200410184934-f15a3290365b - (package - (name "go-github-com-containerd-fifo") - (version "0.0.0-20200410184934-f15a3290365b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/fifo") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1i3pylxr2a4b9gaifjrhfa21n147vvq2z9iqwzz9id532xv9mr48")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/fifo")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449" - ,go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449) - ("go-github-com-stretchr-testify-1.4.0" - ,go-github-com-stretchr-testify-1.4.0) - ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) - (home-page "https://github.com/containerd/fifo") - (synopsis "fifo") - (description "Go package for handling fifos in a sane way.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-ttrpc-1.0.1 - (package - (name "go-github-com-containerd-ttrpc") - (version "1.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/ttrpc") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "02ilz14f1k9zip7caqfjwvfg2nwa7bs6880pi6fxbri1wy6ar45q")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/ttrpc")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.26.0" ,go-google-golang-org-grpc-1.26.0) - ("go-google-golang-org-genproto-0.0.0-20200117163144-32f20d992d24" - ,go-google-golang-org-genproto-0.0.0-20200117163144-32f20d992d24) - ("go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479" - ,go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479) - ("go-github-com-sirupsen-logrus-1.4.2" - ,go-github-com-sirupsen-logrus-1.4.2) - ("go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1" - ,go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.2" - ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.2) - ("go-github-com-gogo-protobuf-1.3.1" - ,go-github-com-gogo-protobuf-1.3.1))) - (home-page "https://github.com/containerd/ttrpc") - (synopsis "ttrpc") - (description "GRPC for low-memory environments.") - (license license:asl2.0))) - -(define-public go-github-com-gogo-googleapis-1.4.0 - (package - (name "go-github-com-gogo-googleapis") - (version "1.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gogo/googleapis") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1kka9qmra1klfkjza0s5papqvsi65f2d349dl8k1lvfq487iv9r4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/gogo/googleapis")) - (propagated-inputs - `(("go-github-com-gogo-protobuf-1.3.1" - ,go-github-com-gogo-protobuf-1.3.1))) - (home-page "https://github.com/gogo/googleapis") - (synopsis "Google APIs generated by gogoprotobuf") - (description - "The @url{https://github.com/gogo/grpc-example,grpc-example} includes an example usage of this repository.") - (license license:asl2.0))) - -(define-public go-github-com-imdario-mergo-0.3.10 - (package - (name "go-github-com-imdario-mergo") - (version "0.3.10") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/imdario/mergo") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "09h765p8yby9r8s0a3hv5kl8n2i382mda76wmvk48w1cc1w9s92p")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/imdario/mergo")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.3.0" ,go-gopkg-in-yaml-v2-2.3.0))) - (home-page "https://github.com/imdario/mergo") - (synopsis "Mergo") - (description - "This package provides a helper to merge structs and maps in Golang. Useful for configuration default values, avoiding messy if-statements. -") - (license license:bsd-3))) - -(define-public go-github-com-opencontainers-runc-0.1.1 - (package - (name "go-github-com-opencontainers-runc") - (version "0.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/runc") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "09fm7f1k4lvx8v3crqb0cli1x2brlz8ka7f7qa8d2sb6ln58h7w7")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/runc")) - (home-page "https://github.com/opencontainers/runc") - (synopsis "runc") - (description - "@code{runc} is a CLI tool for spawning and running containers according to the OCI specification.") - (license license:asl2.0))) - -(define-public go-github-com-willf-bitset-1.1.11-0.20200630133818-d5bec3311243 - (package - (name "go-github-com-willf-bitset") - (version "1.1.11-0.20200630133818-d5bec3311243") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/bits-and-blooms/bitset") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "05nyd0vhp2h9hbqlv2s9l2py6mr8hpz2zyfj09an1q7wd8vph4ja")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/willf/bitset")) - (home-page "https://github.com/willf/bitset") - (synopsis "bitset") - (description - "Package bitset implements bitsets, a mapping -between non-negative integers and boolean values. It should be more -efficient than map[uint] bool. -") - (license license:bsd-3))) - -(define-public go-github-com-opencontainers-selinux-1.6.0 - (package - (name "go-github-com-opencontainers-selinux") - (version "1.6.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/selinux") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ja41zfgrkhk5khixjnxpi1b85xfcxlkhq2q9b7ma6xjfdhg8bq2")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/selinux")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777" - ,go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777) - ("go-github-com-willf-bitset-1.1.11-0.20200630133818-d5bec3311243" - ,go-github-com-willf-bitset-1.1.11-0.20200630133818-d5bec3311243) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) - (home-page "https://github.com/opencontainers/selinux") - (synopsis "selinux") - (description "Common SELinux package used across the container ecosystem.") - (license license:asl2.0))) - -(define-public go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2 - (package - (name "go-github-com-syndtr-gocapability") - (version "0.0.0-20180916011248-d98352740cb2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/syndtr/gocapability") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "065y16562ynixxzj7iys4f4spb7knilbj3h833qlhds381j8hn93")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/syndtr/gocapability")) - (home-page "https://github.com/syndtr/gocapability") - (synopsis #f) - (description #f) - (license license:bsd-2))) - -(define-public go-github-com-containerd-nri-0.0.0-20201007170849-eb1350a75164 - (package - (name "go-github-com-containerd-nri") - (version "0.0.0-20201007170849-eb1350a75164") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/nri") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1yhrxl36fswgxv7ny3p9xi99jsbwyk920gmzkjyfyk6nqs0hqbkg")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/nri")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.30.0" ,go-google-golang-org-grpc-1.30.0) - ("go-golang-org-x-sys-0.0.0-20200728102440-3e129f6d46b1" - ,go-golang-org-x-sys-0.0.0-20200728102440-3e129f6d46b1) - ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" - ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) - ("go-golang-org-x-net-0.0.0-20200707034311-ab3426394381" - ,go-golang-org-x-net-0.0.0-20200707034311-ab3426394381) - ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) - ("go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2" - ,go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-selinux-1.6.0" - ,go-github-com-opencontainers-selinux-1.6.0) - ("go-github-com-opencontainers-runc-0.1.1" - ,go-github-com-opencontainers-runc-0.1.1) - ("go-github-com-opencontainers-image-spec-1.0.1" - ,go-github-com-opencontainers-image-spec-1.0.1) - ("go-github-com-opencontainers-go-digest-1.0.0" - ,go-github-com-opencontainers-go-digest-1.0.0) - ("go-github-com-imdario-mergo-0.3.10" - ,go-github-com-imdario-mergo-0.3.10) - ("go-github-com-google-uuid-1.1.1" ,go-github-com-google-uuid-1.1.1) - ("go-github-com-google-go-cmp-0.5.1" - ,go-github-com-google-go-cmp-0.5.1) - ("go-github-com-gogo-googleapis-1.4.0" - ,go-github-com-gogo-googleapis-1.4.0) - ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" - ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) - ("go-github-com-docker-distribution-2.7.1+incompatible" - ,go-github-com-docker-distribution-2.7.1+incompatible) - ("go-github-com-containerd-typeurl-1.0.1" - ,go-github-com-containerd-typeurl-1.0.1) - ("go-github-com-containerd-ttrpc-1.0.1" - ,go-github-com-containerd-ttrpc-1.0.1) - ("go-github-com-containerd-fifo-0.0.0-20200410184934-f15a3290365b" - ,go-github-com-containerd-fifo-0.0.0-20200410184934-f15a3290365b) - ("go-github-com-containerd-continuity-0.0.0-20200710164510-efbc4488d8fe" - ,go-github-com-containerd-continuity-0.0.0-20200710164510-efbc4488d8fe) - ("go-github-com-containerd-containerd-1.4.0-beta.2.0.20200729163537-40b22ef07410" - ,go-github-com-containerd-containerd-1.4.0-beta.2.0.20200729163537-40b22ef07410) - ("go-github-com-containerd-cgroups-0.0.0-20200710171044-318312a37340" - ,go-github-com-containerd-cgroups-0.0.0-20200710171044-318312a37340) - ("go-github-com-microsoft-hcsshim-0.8.9" - ,go-github-com-microsoft-hcsshim-0.8.9))) - (home-page "https://github.com/containerd/nri") - (synopsis "nri - Node Resource Interface") - (description - "This project is a WIP for a new, CNI like, interface for managing resources on a node for Pods and Containers.") - (license license:asl2.0))) - -(define-public go-github-com-sirupsen-logrus-1.4.1 - (package - (name "go-github-com-sirupsen-logrus") - (version "1.4.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sirupsen/logrus") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1m7ny9jkb98cxqhsp13xa5hnqh1s9f25x04q6arsala4zswsw33c")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/sirupsen/logrus")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33" - ,go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33) - ("go-github-com-stretchr-testify-1.2.2" - ,go-github-com-stretchr-testify-1.2.2) - ("go-github-com-stretchr-objx-0.1.1" - ,go-github-com-stretchr-objx-0.1.1) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.1" - ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.1) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/sirupsen/logrus") - (synopsis "Logrus") - (description - "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. -") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190916202348-b4ddaad3f8a3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "05pa68kqxhpjk71b4cbm8vyzh6527b3ig6war2jr1g4aj3b7f1ak")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-microsoft-go-winio-0.4.16-0.20201130162521-d1ffc52c7331 - (package - (name "go-github-com-microsoft-go-winio") - (version "0.4.16-0.20201130162521-d1ffc52c7331") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/microsoft/go-winio") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0snwbwdjs34x0my9ri77cvrbnahdiyjh2jlkzf12fy48p7fyk7pq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/Microsoft/go-winio")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3" - ,go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3) - ("go-github-com-sirupsen-logrus-1.4.1" - ,go-github-com-sirupsen-logrus-1.4.1) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) - (home-page "https://github.com/Microsoft/go-winio") - (synopsis "go-winio") - (description - "This repository contains utilities for efficiently performing Win32 IO operations in -Go. Currently, this is focused on accessing named pipes and other file handles, and -for using named pipes as a net transport.") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20191022100944-742c48ecaeb7 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20191022100944-742c48ecaeb7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1saf59bplvvb753my15ijxcy4a1jwfg53cmkgb6wkln2x4fgnhkp")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-cilium-ebpf-0.0.0-20200110133405-4032b1d8aae3 - (package - (name "go-github-com-cilium-ebpf") - (version "0.0.0-20200110133405-4032b1d8aae3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cilium/ebpf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "107x63zl8dlw2izn5xw8pnflgq19srpa46bgvjs8q4d61i02q1fr")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/cilium/ebpf")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191022100944-742c48ecaeb7" - ,go-golang-org-x-sys-0.0.0-20191022100944-742c48ecaeb7) - ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) - (home-page "https://github.com/cilium/ebpf") - (synopsis "eBPF") - (description "Package ebpf is a toolkit for working with eBPF programs. -") - (license license:expat))) - -(define-public go-github-com-coreos-go-systemd-v22-22.0.0 - (package - (name "go-github-com-coreos-go-systemd-v22") - (version "22.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/coreos/go-systemd") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0p4sb2fxxm2j1xny2l4fkq4kwj74plvh600gih8nyniqzannhrdx")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/coreos/go-systemd/v22")) - (propagated-inputs - `(("go-github-com-godbus-dbus-v5-5.0.3" - ,go-github-com-godbus-dbus-v5-5.0.3))) - (home-page "https://github.com/coreos/go-systemd") - (synopsis "go-systemd") - (description "Go bindings to systemd. The project has several packages:") - (license license:asl2.0))) - -(define-public go-github-com-containerd-cgroups-0.0.0-20200531161412-0dbf7f05ba59 - (package - (name "go-github-com-containerd-cgroups") - (version "0.0.0-20200531161412-0dbf7f05ba59") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/cgroups") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "10abzkjf77s8pv4mpyvy2jbl8wckhk3j7ykgs01sclal21v8p251")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/cgroups")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479" - ,go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479) - ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) - ("go-github-com-stretchr-testify-1.2.2" - ,go-github-com-stretchr-testify-1.2.2) - ("go-github-com-sirupsen-logrus-1.4.2" - ,go-github-com-sirupsen-logrus-1.4.2) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-runtime-spec-1.0.2" - ,go-github-com-opencontainers-runtime-spec-1.0.2) - ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.2" - ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.2) - ("go-github-com-gogo-protobuf-1.3.1" - ,go-github-com-gogo-protobuf-1.3.1) - ("go-github-com-godbus-dbus-v5-5.0.3" - ,go-github-com-godbus-dbus-v5-5.0.3) - ("go-github-com-docker-go-units-0.4.0" - ,go-github-com-docker-go-units-0.4.0) - ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" - ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) - ("go-github-com-coreos-go-systemd-v22-22.0.0" - ,go-github-com-coreos-go-systemd-v22-22.0.0) - ("go-github-com-cilium-ebpf-0.0.0-20200110133405-4032b1d8aae3" - ,go-github-com-cilium-ebpf-0.0.0-20200110133405-4032b1d8aae3))) - (home-page "https://github.com/containerd/cgroups") - (synopsis "cgroups") - (description - "Go package for creating, managing, inspecting, and destroying cgroups. -The resources format for settings on the cgroup uses the OCI runtime-spec found -@url{https://github.com/opencontainers/runtime-spec,here}.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1 - (package - (name "go-github-com-containerd-console") - (version "0.0.0-20180822173158-c12b1e7919c1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/console") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ylrnmdhn9a2f8w8fsdgsvwnz5j0whhyhppjnhqc4lh8h9p9dpi9")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/console")) - (home-page "https://github.com/containerd/console") - (synopsis "console") - (description - "Golang package for dealing with consoles. Light on deps and a simple API.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-containerd-1.3.2 - (package - (name "go-github-com-containerd-containerd") - (version "1.3.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/containerd") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0qz6ss7a6f2r7gl7aar39pr5ry9l7nh7dn3kclr18nwdv01gmrvc")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/containerd")) - (home-page "https://github.com/containerd/containerd") - (synopsis "Now Recruiting") - (description - "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc - (package - (name "go-github-com-containerd-continuity") - (version "0.0.0-20190426062206-aaeac12a7ffc") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/continuity") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "05caqvxxb831xfvqnga692k98cy8xzkllqg1ibra0fb0ljnhbmca")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/continuity")) - (home-page "https://github.com/containerd/continuity") - (synopsis "continuity") - (description - "This package provides a transport-agnostic, filesystem metadata manifest system") - (license license:asl2.0))) - -(define-public go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448 - (package - (name "go-github-com-containerd-fifo") - (version "0.0.0-20190226154929-a9fb20d87448") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/fifo") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0c0sgfnafjnws4jgziczs6wxh0adjdrp6yyd88b7xy0hv13fsnqa")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/fifo")) - (home-page "https://github.com/containerd/fifo") - (synopsis "fifo") - (description "Go package for handling fifos in a sane way.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3 - (package - (name "go-github-com-containerd-go-runc") - (version "0.0.0-20180907222934-5a6d9f37cfa3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/go-runc") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "07qpxcjy64m238igpmj8g9z7qhf06k5xy1jcgpgvf5n912g4k3vd")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/go-runc")) - (home-page "https://github.com/containerd/go-runc") - (synopsis "go-runc") - (description - "This is a package for consuming the @url{https://github.com/opencontainers/runc,runc} binary in your Go applications. -It tries to expose all the settings and features of the runc CLI. If there is something missing then add it, its opensource!") - (license license:asl2.0))) - -(define-public go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de - (package - (name "go-github-com-containerd-ttrpc") - (version "0.0.0-20190828154514-0e0f228740de") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/ttrpc") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1kzclhmicw2xkiqsg6npx0xzs5jx36mqmyd0gj5dzv88i7p4b8dx")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/ttrpc")) - (home-page "https://github.com/containerd/ttrpc") - (synopsis "ttrpc") - (description "GRPC for low-memory environments.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd - (package - (name "go-github-com-containerd-typeurl") - (version "0.0.0-20180627222232-a93fcdb778cd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/typeurl") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0aqnf5rzc5pldln0czhxlr0fqaf5553ab7wzsq85p90lg1ryqnd6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/typeurl")) - (home-page "https://github.com/containerd/typeurl") - (synopsis "typeurl") - (description - "This package provides a Go package for managing the registration, marshaling, and unmarshaling of encoded types.") - (license license:asl2.0))) - -(define-public go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2 - (package - (name "go-github-com-opencontainers-go-digest") - (version "0.0.0-20180430190053-c9281466c8b2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/go-digest") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1djdazssy27xn91pjhx3dgb0f11bnlzzbwkh7f8zwnpz011anasi")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/go-digest")) - (home-page "https://github.com/opencontainers/go-digest") - (synopsis "go-digest") - (description - "Package digest provides a generalized type to opaquely represent message -digests and their operations within the registry. The Digest type is -designed to serve as a flexible identifier in a content-addressable system. -More importantly, it provides tools and wrappers to work with -hash.Hash-based digests with little effort. -") - (license (list license:asl2.0 license:cc-by-sa4.0)))) - -(define-public go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f - (package - (name "go-github-com-opencontainers-runc") - (version "0.0.0-20190115041553-12f6a991201f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/runc") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0lr4q440pliilq2njyj5glfpma89r9l1cl687niwkp2pzb32dm45")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/runc")) - (home-page "https://github.com/opencontainers/runc") - (synopsis "runc") - (description - "@code{runc} is a CLI tool for spawning and running containers according to the OCI specification.") - (license license:asl2.0))) - -(define-public go-github-com-opencontainers-runtime-spec-1.0.2 - (package - (name "go-github-com-opencontainers-runtime-spec") - (version "1.0.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/runtime-spec") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19w981vcmd5lp2hy0630x6ayb8zz17n2vxqm2py5mg945xflcizg")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) - (home-page "https://github.com/opencontainers/runtime-spec") - (synopsis "Open Container Initiative Runtime Specification") - (description - "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") - (license license:asl2.0))) - -(define-public go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7 - (package - (name "go-github-com-prometheus-procfs") - (version "0.0.0-20180125133057-cb4147076ac7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/procfs") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0zhlrik0f9q1lj6cisgnxgbz4darbcix52hm5abi24l2ahchf5ca")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/procfs")) - (home-page "https://github.com/prometheus/procfs") - (synopsis "procfs") - (description - "Package procfs provides functions to retrieve system, kernel and process -metrics from the pseudo-filesystem proc. -") - (license license:asl2.0))) - -(define-public go-github-com-urfave-cli-1.22.2 - (package - (name "go-github-com-urfave-cli") - (version "1.22.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/urfave/cli") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "10mcnvi5qmn00vpyk6si8gjka7p654wr9hac4zc9w5h3ickhvbdc")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/urfave/cli")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) - ("go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d" - ,go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d) - ("go-github-com-burntsushi-toml-0.3.1" - ,go-github-com-burntsushi-toml-0.3.1))) - (home-page "https://github.com/urfave/cli") - (synopsis "cli") - (description - "Package cli provides a minimal framework for creating and organizing command line -Go applications. cli is designed to be easy to understand and write, the most simple -cli application can be written as follows: -") - (license license:expat))) - -(define-public go-golang-org-x-net-0.0.0-20190501004415-9ce7a6920f09 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190501004415-9ce7a6920f09") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1kbs85jsqbv4v89ii2zam4b8dhmllhsrf46njmi09x0w6s0b9cbk")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-go-opencensus-io-0.22.0 - (package - (name "go-go-opencensus-io") - (version "0.22.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/census-instrumentation/opencensus-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "05jr8gkr2w34i5wwki4zhl5ch0qrgi7cdgag5iy5gpxplhbrvbg9")))) - (build-system go-build-system) - (arguments '(#:import-path "go.opencensus.io")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.20.1" ,go-google-golang-org-grpc-1.20.1) - ("go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb" - ,go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb) - ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) - ("go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd" - ,go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd) - ("go-golang-org-x-net-0.0.0-20190501004415-9ce7a6920f09" - ,go-golang-org-x-net-0.0.0-20190501004415-9ce7a6920f09) - ("go-github-com-hashicorp-golang-lru-0.5.1" - ,go-github-com-hashicorp-golang-lru-0.5.1) - ("go-github-com-google-go-cmp-0.3.0" - ,go-github-com-google-go-cmp-0.3.0) - ("go-github-com-golang-protobuf-1.3.1" - ,go-github-com-golang-protobuf-1.3.1))) - (home-page "https://go.opencensus.io") - (synopsis "OpenCensus Libraries for Go") - (description "Package opencensus contains Go support for OpenCensus. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20191004110552-13f9640d40b9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ba2767lvklnmfvb9jkwvd4m7z6326gaiz3rgylh795g88hy34g1")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873 - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20190502173448-54afdca5d873") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1vm1vggl874jd4wi6qyl7aggc6s6kdsazk4vj0cs2dfcw2xnw8ag")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" - ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) - ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) - ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" - ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) - ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" - ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) - ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" - ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd) - ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" - ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) - ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" - ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-google-golang-org-grpc-1.23.1 - (package - (name "go-google-golang-org-grpc") - (version "1.23.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1d8gjjhrqbiq8pb56lb4x10hb752k7k06wspjvh7v0vpzmf25981")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" - ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) - ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" - ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) - ("go-google-golang-org-appengine-1.1.0" - ,go-google-golang-org-appengine-1.1.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-google-go-cmp-0.2.0" - ,go-github-com-google-go-cmp-0.2.0) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0) - ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-client9-misspell-0.3.4" - ,go-github-com-client9-misspell-0.3.4) - ("go-github-com-burntsushi-toml-0.3.1" - ,go-github-com-burntsushi-toml-0.3.1) - ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-github-com-microsoft-hcsshim-0.8.14 - (package - (name "go-github-com-microsoft-hcsshim") - (version "0.8.14") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/microsoft/hcsshim") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0k57knv8zrf32hp7rpv1km9j772w6752pfvdbpd3l711ism48c84")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/Microsoft/hcsshim")) - (propagated-inputs - `(("go-gotest-tools-2.2.0+incompatible" - ,go-gotest-tools-2.2.0+incompatible) - ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) - ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" - ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) - ("go-google-golang-org-grpc-1.23.1" ,go-google-golang-org-grpc-1.23.1) - ("go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873" - ,go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873) - ("go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3" - ,go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3) - ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" - ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) - ("go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9" - ,go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9) - ("go-go-opencensus-io-0.22.0" ,go-go-opencensus-io-0.22.0) - ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) - ("go-github-com-stretchr-testify-1.4.0" - ,go-github-com-stretchr-testify-1.4.0) - ("go-github-com-sirupsen-logrus-1.4.2" - ,go-github-com-sirupsen-logrus-1.4.2) - ("go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7" - ,go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-runtime-spec-1.0.2" - ,go-github-com-opencontainers-runtime-spec-1.0.2) - ("go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f" - ,go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f) - ("go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2" - ,go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2) - ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2) - ("go-github-com-gogo-protobuf-1.3.1" - ,go-github-com-gogo-protobuf-1.3.1) - ("go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd" - ,go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd) - ("go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de" - ,go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de) - ("go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3" - ,go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3) - ("go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448" - ,go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448) - ("go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc" - ,go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc) - ("go-github-com-containerd-containerd-1.3.2" - ,go-github-com-containerd-containerd-1.3.2) - ("go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1" - ,go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1) - ("go-github-com-containerd-cgroups-0.0.0-20200531161412-0dbf7f05ba59" - ,go-github-com-containerd-cgroups-0.0.0-20200531161412-0dbf7f05ba59) - ("go-github-com-microsoft-go-winio-0.4.16-0.20201130162521-d1ffc52c7331" - ,go-github-com-microsoft-go-winio-0.4.16-0.20201130162521-d1ffc52c7331))) - (home-page "https://github.com/Microsoft/hcsshim") - (synopsis "hcsshim") - (description - "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") - (license license:expat))) - -(define-public go-github-com-containerd-containerd-1.4.3 - (package - (name "go-github-com-containerd-containerd") - (version "1.4.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/containerd") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "09xvhjg5f8h90w1y94kqqnqzhbhd62dcdd9wb9sdqakisjk6zrl0")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/containerd")) - (home-page "https://github.com/containerd/containerd") - (synopsis "Now Recruiting") - (description - "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") - (license license:asl2.0))) - -(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.2 - (package - (name "go-github-com-konsorten-go-windows-terminal-sequences") - (version "1.0.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/konsorten/go-windows-terminal-sequences") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "09mn209ika7ciy87xf2x31dq5fnqw39jidgaljvmqxwk7ff1hnx7")))) - (build-system go-build-system) - (arguments - '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) - (home-page "https://github.com/konsorten/go-windows-terminal-sequences") - (synopsis "Windows Terminal Sequences") - (description - "This library allow for enabling Windows terminal color support for Go.") - (license license:expat))) - -(define-public go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1 - (package - (name "go-github-com-prometheus-procfs") - (version "0.0.0-20190522114515-bc1a522cf7b1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/procfs") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "13ws66kd65zbhk31zmax9qgmh22fzjcgs5ihy4fm1d775w6bmdzx")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/procfs")) - (propagated-inputs - `(("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" - ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4))) - (home-page "https://github.com/prometheus/procfs") - (synopsis "procfs") - (description - "Package procfs provides functions to retrieve system, kernel and process -metrics from the pseudo-filesystem proc. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200120151820-655fe14d7479") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "133yxmdcny5b0r8775m52sj7zja36riv0x2437k7jccywqi8nx32")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-google-golang-org-genproto-0.0.0-20200117163144-32f20d992d24 - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20200117163144-32f20d992d24") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1kl696jd8fykykjjbngqpgqsngajwbbrvrpl1q0804l6hz8qk858")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" - ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) - ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) - ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" - ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) - ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" - ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) - ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" - ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-ttrpc-1.0.2 - (package - (name "go-github-com-containerd-ttrpc") - (version "1.0.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/ttrpc") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0plkm3yrr20vccfl0x8dxys3iphjwnmi285in0pivff6p9djf3yz")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/ttrpc")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.26.0" ,go-google-golang-org-grpc-1.26.0) - ("go-google-golang-org-genproto-0.0.0-20200117163144-32f20d992d24" - ,go-google-golang-org-genproto-0.0.0-20200117163144-32f20d992d24) - ("go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479" - ,go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479) - ("go-github-com-sirupsen-logrus-1.4.2" - ,go-github-com-sirupsen-logrus-1.4.2) - ("go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1" - ,go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.2" - ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.2) - ("go-github-com-gogo-protobuf-1.3.1" - ,go-github-com-gogo-protobuf-1.3.1))) - (home-page "https://github.com/containerd/ttrpc") - (synopsis "ttrpc") - (description "GRPC for low-memory environments.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-typeurl-1.0.1 - (package - (name "go-github-com-containerd-typeurl") - (version "1.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/typeurl") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "09cgrchrw5d36zq0mc321l5qr2gfbdm1z1a3hhkhqr4qay6vglqn")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/typeurl")) - (propagated-inputs - `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-gogo-protobuf-1.3.1" - ,go-github-com-gogo-protobuf-1.3.1))) - (home-page "https://github.com/containerd/typeurl") - (synopsis "typeurl") - (description - "This package provides a Go package for managing the registration, marshaling, and unmarshaling of encoded types.") - (license license:asl2.0))) - -(define-public go-github-com-opencontainers-runc-1.0.0-rc9 - (package - (name "go-github-com-opencontainers-runc") - (version "1.0.0-rc9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/runc") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ss5b46cbbckyqlwgj8dbd5l59c5y0kp679hcpc0ybaj53pmwxj7")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/runc")) - (home-page "https://github.com/opencontainers/runc") - (synopsis "runc") - (description - "@code{runc} is a CLI tool for spawning and running containers according to the OCI specification.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-zfs-0.0.0-20210301145711-11e8f1707f62 - (package - (name "go-github-com-containerd-zfs") - (version "0.0.0-20210301145711-11e8f1707f62") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/zfs") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1919ax45a07v2y56xq5c0xihkn2c5zgyqv68rzx3x5cc20n2p8yg")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/zfs")) - (propagated-inputs - `(("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) - ("go-go-etcd-io-bbolt-1.3.3" ,go-go-etcd-io-bbolt-1.3.3) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-runc-1.0.0-rc9" - ,go-github-com-opencontainers-runc-1.0.0-rc9) - ("go-github-com-opencontainers-image-spec-1.0.1" - ,go-github-com-opencontainers-image-spec-1.0.1) - ("go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible" - ,go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible) - ("go-github-com-google-uuid-1.1.1" ,go-github-com-google-uuid-1.1.1) - ("go-github-com-gogo-protobuf-1.3.1" - ,go-github-com-gogo-protobuf-1.3.1) - ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" - ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) - ("go-github-com-containerd-typeurl-1.0.1" - ,go-github-com-containerd-typeurl-1.0.1) - ("go-github-com-containerd-ttrpc-1.0.2" - ,go-github-com-containerd-ttrpc-1.0.2) - ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" - ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) - ("go-github-com-containerd-containerd-1.4.3" - ,go-github-com-containerd-containerd-1.4.3) - ("go-github-com-microsoft-hcsshim-0.8.14" - ,go-github-com-microsoft-hcsshim-0.8.14))) - (home-page "https://github.com/containerd/zfs") - (synopsis "ZFS snapshotter plugin") - (description "ZFS snapshotter plugin for containerd.") - (license license:asl2.0))) - -(define-public go-github-com-containernetworking-cni-0.7.1 - (package - (name "go-github-com-containernetworking-cni") - (version "0.7.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containernetworking/cni") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "02qn1br8164d99978acalisy1sx294g1axnii4yh1wji0fc735xz")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containernetworking/cni")) - (home-page "https://github.com/containernetworking/cni") - (synopsis "CNI - the Container Network Interface") - (description - "CNI (), a @url{https://cncf.io,Cloud Native Computing Foundation} project, consists of a specification and libraries for writing plugins to configure network interfaces in Linux containers, along with a number of supported plugins. -CNI concerns itself only with network connectivity of containers and removing allocated resources when the container is deleted. -Because of this focus, CNI has a wide range of support and the specification is simple to implement.") - (license license:asl2.0))) - -(define-public go-github-com-coreos-go-iptables-0.4.5 - (package - (name "go-github-com-coreos-go-iptables") - (version "0.4.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/coreos/go-iptables") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "04iqh4hvvrrvjsfjyaa5bdyqklwzrzzy8yiyvja90hvv121f7975")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/coreos/go-iptables")) - (home-page "https://github.com/coreos/go-iptables") - (synopsis "go-iptables") - (description "Go bindings for iptables utility.") - (license license:asl2.0))) - -(define-public go-github-com-onsi-ginkgo-0.0.0-20151202141238-7f8ab55aaf3b - (package - (name "go-github-com-onsi-ginkgo") - (version "0.0.0-20151202141238-7f8ab55aaf3b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/onsi/ginkgo") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0nas6wqdym4jx42kw9wj80b58r69k9qhnvglz009lj34g5gba7rw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/onsi/ginkgo")) - (home-page "https://github.com/onsi/ginkgo") - (synopsis "Ginkgo 2.0 Release Candidate is available!") - (description "Ginkgo is a BDD-style testing framework for Golang -") - (license license:expat))) - -(define-public go-github-com-onsi-gomega-0.0.0-20151007035656-2152b45fa28a - (package - (name "go-github-com-onsi-gomega") - (version "0.0.0-20151007035656-2152b45fa28a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/onsi/gomega") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0amjlkawp84mmdqjgdamf93p1546cla6h4wwrx7hf5r862r2qcw2")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/onsi/gomega")) - (home-page "https://github.com/onsi/gomega") - (synopsis ": a BDD Testing Framework for Golang") - (description - "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library. -") - (license license:expat))) - -(define-public go-github-com-vishvananda-netlink-0.0.0-20181108222139-023a6dafdcdf - (package - (name "go-github-com-vishvananda-netlink") - (version "0.0.0-20181108222139-023a6dafdcdf") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/vishvananda/netlink") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1i5q8r8rg7lxzvq2vhbf25lrkzdlgficfv0bxg9rf7cgg6z819sn")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/vishvananda/netlink")) - (home-page "https://github.com/vishvananda/netlink") - (synopsis "netlink - netlink library for go") - (description - "Package netlink provides a simple library for netlink. Netlink is -the interface a user-space program in linux uses to communicate with -the kernel. It can be used to add and remove interfaces, set up ip -addresses and routes, and confiugre ipsec. Netlink communication -requires elevated privileges, so in most cases this code needs to -be run as root. The low level primitives for netlink are contained -in the nl subpackage. This package attempts to provide a high-level -interface that is loosly modeled on the iproute2 cli. -") - (license license:asl2.0))) - -(define-public go-github-com-vishvananda-netns-0.0.0-20180720170159-13995c7128cc - (package - (name "go-github-com-vishvananda-netns") - (version "0.0.0-20180720170159-13995c7128cc") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/vishvananda/netns") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1zk6w8158qi4niva5rijchbv9ixgmijsgqshh54wdaav4xrhjshn")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/vishvananda/netns")) - (home-page "https://github.com/vishvananda/netns") - (synopsis "netns - network namespaces in go") - (description - "Package netns allows ultra-simple network namespace handling. NsHandles -can be retrieved and set. Note that the current namespace is thread -local so actions that set and reset namespaces should use LockOSThread -to make sure the namespace doesn't change due to a goroutine switch. -It is best to close NsHandles when you are done with them. This can be -accomplished via a `defer ns.Close()` on the handle. Changing namespaces -requires elevated privileges, so in most cases this code needs to be run -as root. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-crypto-0.0.0-20181009213950-7c1a557ab941 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20181009213950-7c1a557ab941") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1f1q9mby8m7ws3gbj90v0prhnf4g2sgf74azmw31kzwd6azlar3m")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20181011144130-49bb7cea24b1 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20181011144130-49bb7cea24b1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "111q4qm3hcjvzvyv9y5rz8ydnyg48rckcygxqy6gv63q618wz6gn")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-github-com-containernetworking-plugins-0.8.6 - (package - (name "go-github-com-containernetworking-plugins") - (version "0.8.6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containernetworking/plugins") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0f1cqxjf26sy1c4aw6y7pyd9lrz0vknby4q5j6xj77a1pab9073m")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containernetworking/plugins")) - (propagated-inputs - `(("go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2" - ,go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2) - ("go-gopkg-in-airbrake-gobrake-v2-2.0.9" - ,go-gopkg-in-airbrake-gobrake-v2-2.0.9) - ("go-golang-org-x-sys-0.0.0-20190616124812-15dcb6c0061f" - ,go-golang-org-x-sys-0.0.0-20190616124812-15dcb6c0061f) - ("go-golang-org-x-net-0.0.0-20181011144130-49bb7cea24b1" - ,go-golang-org-x-net-0.0.0-20181011144130-49bb7cea24b1) - ("go-golang-org-x-crypto-0.0.0-20181009213950-7c1a557ab941" - ,go-golang-org-x-crypto-0.0.0-20181009213950-7c1a557ab941) - ("go-github-com-vishvananda-netns-0.0.0-20180720170159-13995c7128cc" - ,go-github-com-vishvananda-netns-0.0.0-20180720170159-13995c7128cc) - ("go-github-com-vishvananda-netlink-0.0.0-20181108222139-023a6dafdcdf" - ,go-github-com-vishvananda-netlink-0.0.0-20181108222139-023a6dafdcdf) - ("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0) - ("go-github-com-sirupsen-logrus-1.0.6" - ,go-github-com-sirupsen-logrus-1.0.6) - ("go-github-com-safchain-ethtool-0.0.0-20190326074333-42ed695e3de8" - ,go-github-com-safchain-ethtool-0.0.0-20190326074333-42ed695e3de8) - ("go-github-com-onsi-gomega-0.0.0-20151007035656-2152b45fa28a" - ,go-github-com-onsi-gomega-0.0.0-20151007035656-2152b45fa28a) - ("go-github-com-onsi-ginkgo-0.0.0-20151202141238-7f8ab55aaf3b" - ,go-github-com-onsi-ginkgo-0.0.0-20151202141238-7f8ab55aaf3b) - ("go-github-com-mattn-go-shellwords-1.0.3" - ,go-github-com-mattn-go-shellwords-1.0.3) - ("go-github-com-j-keck-arping-0.0.0-20160618110441-2cf9dc699c56" - ,go-github-com-j-keck-arping-0.0.0-20160618110441-2cf9dc699c56) - ("go-github-com-golang-protobuf-1.3.1" - ,go-github-com-golang-protobuf-1.3.1) - ("go-github-com-godbus-dbus-0.0.0-20180201030542-885f9cc04c9c" - ,go-github-com-godbus-dbus-0.0.0-20180201030542-885f9cc04c9c) - ("go-github-com-d2g-hardwareaddr-0.0.0-20190221164911-e7d9fbe030e4" - ,go-github-com-d2g-hardwareaddr-0.0.0-20190221164911-e7d9fbe030e4) - ("go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5" - ,go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5) - ("go-github-com-d2g-dhcp4client-1.0.0" - ,go-github-com-d2g-dhcp4client-1.0.0) - ("go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c" - ,go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c) - ("go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7" - ,go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7) - ("go-github-com-coreos-go-iptables-0.4.5" - ,go-github-com-coreos-go-iptables-0.4.5) - ("go-github-com-containernetworking-cni-0.7.1" - ,go-github-com-containernetworking-cni-0.7.1) - ("go-github-com-buger-jsonparser-0.0.0-20180808090653-f4dd9f5a6b44" - ,go-github-com-buger-jsonparser-0.0.0-20180808090653-f4dd9f5a6b44) - ("go-github-com-alexflint-go-filemutex-0.0.0-20171022225611-72bdc8eae2ae" - ,go-github-com-alexflint-go-filemutex-0.0.0-20171022225611-72bdc8eae2ae) - ("go-github-com-microsoft-hcsshim-0.8.6" - ,go-github-com-microsoft-hcsshim-0.8.6) - ("go-github-com-microsoft-go-winio-0.4.11" - ,go-github-com-microsoft-go-winio-0.4.11))) - (home-page "https://github.com/containernetworking/plugins") - (synopsis "Plugins") - (description - "Some CNI network plugins, maintained by the containernetworking team. For more information, see the @url{https://www.cni.dev,CNI website}.") - (license license:asl2.0))) - -(define-public go-github-com-imdario-mergo-0.3.11 - (package - (name "go-github-com-imdario-mergo") - (version "0.3.11") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/imdario/mergo") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "07iay9j3ry7qrflvn9bgyyggvwacl1s1in1cnbmsp1020ydkph8k")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/imdario/mergo")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.3.0" ,go-gopkg-in-yaml-v2-2.3.0))) - (home-page "https://github.com/imdario/mergo") - (synopsis "Mergo") - (description - "This package provides a helper to merge structs and maps in Golang. Useful for configuration default values, avoiding messy if-statements. -") - (license license:bsd-3))) - -(define-public go-github-com-klauspost-compress-1.11.3 - (package - (name "go-github-com-klauspost-compress") - (version "1.11.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/klauspost/compress") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "04wpilw6072fh2wd492ma1nw4br7bvz466mj0vi2m1g4w6d0z88z")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/klauspost/compress")) - (home-page "https://github.com/klauspost/compress") - (synopsis "compress") - (description "This package provides various compression algorithms.") - (license #f))) - -(define-public go-github-com-checkpoint-restore-go-criu-v4-4.1.0 - (package - (name "go-github-com-checkpoint-restore-go-criu-v4") - (version "4.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/checkpoint-restore/go-criu") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hfgjck015df5h44hczl3x4gg430saczgkl619cp0l6cpaxga5yi")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/checkpoint-restore/go-criu/v4")) - (propagated-inputs - `(("go-github-com-golang-protobuf-1.3.5" - ,go-github-com-golang-protobuf-1.3.5))) - (home-page "https://github.com/checkpoint-restore/go-criu") - (synopsis "go-criu -- Go bindings for") - (description - "This repository provides Go bindings for CRIU. The code is based on the Go based PHaul -implementation from the CRIU repository. For easier inclusion into other Go projects the -CRIU Go bindings have been moved to this repository.") - (license license:asl2.0))) - -(define-public go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200124204421-9fbb57f87de9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0qaz2jjkrxzgkapmjqingdwamrgq2aiblxvzzgrcsv2qhkj0wdps")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-cilium-ebpf-0.2.0 - (package - (name "go-github-com-cilium-ebpf") - (version "0.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cilium/ebpf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0f7my8n5v2c5cmgrcikgi0naamglr7c4khgxkbb1k5wl8mm9465a")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/cilium/ebpf")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9" - ,go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9) - ("go-github-com-google-go-cmp-0.5.2" - ,go-github-com-google-go-cmp-0.5.2))) - (home-page "https://github.com/cilium/ebpf") - (synopsis "eBPF") - (description "Package ebpf is a toolkit for working with eBPF programs. -") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200916030750-2334cc1a136f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1lc7d513gwwpr6r7f55743684n1qsgn9vmg6b79x0hsp1x90z4mr")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-containerd-console-1.0.1 - (package - (name "go-github-com-containerd-console") - (version "1.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/console") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0s837wj6h80fykk2pdmaji75rw9c3863by0gh0cq51hh0lgyjpvg")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/console")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f" - ,go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) - (home-page "https://github.com/containerd/console") - (synopsis "console") - (description - "Golang package for dealing with consoles. Light on deps and a simple API.") - (license license:asl2.0))) - -(define-public go-github-com-coreos-go-systemd-v22-22.1.0 - (package - (name "go-github-com-coreos-go-systemd-v22") - (version "22.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/coreos/go-systemd") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "127dj1iwp69yj74nwh9ckgc0mkk1mv4yzbxmbdxix1r7j6q35z3j")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/coreos/go-systemd/v22")) - (propagated-inputs - `(("go-github-com-godbus-dbus-v5-5.0.3" - ,go-github-com-godbus-dbus-v5-5.0.3))) - (home-page "https://github.com/coreos/go-systemd") - (synopsis "go-systemd") - (description "Go bindings to systemd. The project has several packages:") - (license license:asl2.0))) - -(define-public go-github-com-godbus-dbus-v5-5.0.3 - (package - (name "go-github-com-godbus-dbus-v5") - (version "5.0.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/godbus/dbus") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1bkc904073k807yxg6mvqaxrr6ammmhginr9p54jfb55mz3hfw3s")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/godbus/dbus/v5")) - (home-page "https://github.com/godbus/dbus") - (synopsis "dbus") - (description - "Package dbus implements bindings to the D-Bus message bus system. -") - (license license:bsd-2))) - -(define-public go-github-com-opencontainers-runc-1.0.0-rc93 - (package - (name "go-github-com-opencontainers-runc") - (version "1.0.0-rc93") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/runc") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "008d5wkznic80n5q1vwx727qn5ifalc7cydq68hc1gk9wrhna4v4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/runc")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" - ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68) - ("go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b" - ,go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b) - ("go-github-com-willf-bitset-1.1.11" - ,go-github-com-willf-bitset-1.1.11) - ("go-github-com-vishvananda-netlink-1.1.0" - ,go-github-com-vishvananda-netlink-1.1.0) - ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) - ("go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635" - ,go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635) - ("go-github-com-sirupsen-logrus-1.7.0" - ,go-github-com-sirupsen-logrus-1.7.0) - ("go-github-com-seccomp-libseccomp-golang-0.9.1" - ,go-github-com-seccomp-libseccomp-golang-0.9.1) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-selinux-1.8.0" - ,go-github-com-opencontainers-selinux-1.8.0) - ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" - ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) - ("go-github-com-mrunalp-fileutils-0.5.0" - ,go-github-com-mrunalp-fileutils-0.5.0) - ("go-github-com-moby-sys-mountinfo-0.4.0" - ,go-github-com-moby-sys-mountinfo-0.4.0) - ("go-github-com-golang-protobuf-1.4.3" - ,go-github-com-golang-protobuf-1.4.3) - ("go-github-com-godbus-dbus-v5-5.0.3" - ,go-github-com-godbus-dbus-v5-5.0.3) - ("go-github-com-docker-go-units-0.4.0" - ,go-github-com-docker-go-units-0.4.0) - ("go-github-com-cyphar-filepath-securejoin-0.2.2" - ,go-github-com-cyphar-filepath-securejoin-0.2.2) - ("go-github-com-coreos-go-systemd-v22-22.1.0" - ,go-github-com-coreos-go-systemd-v22-22.1.0) - ("go-github-com-containerd-console-1.0.1" - ,go-github-com-containerd-console-1.0.1) - ("go-github-com-cilium-ebpf-0.2.0" ,go-github-com-cilium-ebpf-0.2.0) - ("go-github-com-checkpoint-restore-go-criu-v4-4.1.0" - ,go-github-com-checkpoint-restore-go-criu-v4-4.1.0))) - (home-page "https://github.com/opencontainers/runc") - (synopsis "runc") - (description - "@code{runc} is a CLI tool for spawning and running containers according to the OCI specification.") - (license license:asl2.0))) - -(define-public go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d - (package - (name "go-github-com-opencontainers-runtime-spec") - (version "1.0.3-0.20200929063507-e6143ca7d51d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/runtime-spec") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "06yk9kjif5mgi46d0hcgqcikdcplf3yflqbj8h6ljxshp6jzc49w")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) - (home-page "https://github.com/opencontainers/runtime-spec") - (synopsis "Open Container Initiative Runtime Specification") - (description - "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") - (license license:asl2.0))) - -(define-public go-github-com-willf-bitset-1.1.11 - (package - (name "go-github-com-willf-bitset") - (version "1.1.11") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/bits-and-blooms/bitset") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1v7wnikdxiyhwdxnsj2wcrsrsi1kb2ssmarvbrda90vmxzafjl7d")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/willf/bitset")) - (home-page "https://github.com/willf/bitset") - (synopsis "bitset") - (description - "Package bitset implements bitsets, a mapping -between non-negative integers and boolean values. It should be more -efficient than map[uint] bool. -") - (license license:bsd-3))) - -(define-public go-github-com-opencontainers-selinux-1.8.0 - (package - (name "go-github-com-opencontainers-selinux") - (version "1.8.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/selinux") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "08aakiva619hk4lgfvyi6kpjgw7hfirs0jlc2jdgzcv7p0gfhbmx")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/selinux")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777" - ,go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777) - ("go-github-com-willf-bitset-1.1.11" - ,go-github-com-willf-bitset-1.1.11) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) - (home-page "https://github.com/opencontainers/selinux") - (synopsis "selinux") - (description "Common SELinux package used across the container ecosystem.") - (license license:asl2.0))) - -(define-public go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.14 - (package - (name "go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client") - (version "0.0.14") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes-sigs/apiserver-network-proxy") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0px41x5apgcssmwmx75cwm000s8b8pgd84dxn56maxx223dzz9vm")))) - (build-system go-build-system) - (arguments - '(#:import-path - "sigs.k8s.io/apiserver-network-proxy/konnectivity-client")) - (propagated-inputs - `(("go-k8s-io-klog-v2-2.0.0" ,go-k8s-io-klog-v2-2.0.0) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-github-com-golang-protobuf-1.4.0" - ,go-github-com-golang-protobuf-1.4.0))) - (home-page - "https://sigs.k8s.io/apiserver-network-proxy/konnectivity-client") - (synopsis #f) - (description #f) - (license license:asl2.0))) - -(define-public go-k8s-io-apiserver-0.20.1 - (package - (name "go-k8s-io-apiserver") - (version "0.20.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes/apiserver") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "03k8kjisscj59i410kk2bz0qfpxa2d2vbwxiwyn93k7a2avbn7cs")))) - (build-system go-build-system) - (arguments '(#:import-path "k8s.io/apiserver")) - (propagated-inputs - `(("go-k8s-io-component-base-0.20.1" ,go-k8s-io-component-base-0.20.1) - ("go-k8s-io-client-go-0.20.1" ,go-k8s-io-client-go-0.20.1) - ("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) - ("go-k8s-io-api-0.20.1" ,go-k8s-io-api-0.20.1) - ("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) - ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.2" - ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.2) - ("go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.14" - ,go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.14) - ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" - ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) - ("go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd" - ,go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd) - ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) - ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) - ("go-gopkg-in-square-go-jose-v2-2.2.2" - ,go-gopkg-in-square-go-jose-v2-2.2.2) - ("go-gopkg-in-natefinch-lumberjack-v2-2.0.0" - ,go-gopkg-in-natefinch-lumberjack-v2-2.0.0) - ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) - ("go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a" - ,go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a) - ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" - ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) - ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" - ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) - ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" - ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) - ("go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0" - ,go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0) - ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) - ("go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489" - ,go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489) - ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) - ("go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5" - ,go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) - ("go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021" - ,go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822" - ,go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822) - ("go-github-com-mailru-easyjson-0.7.0" - ,go-github-com-mailru-easyjson-0.7.0) - ("go-github-com-hashicorp-golang-lru-0.5.1" - ,go-github-com-hashicorp-golang-lru-0.5.1) - ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" - ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) - ("go-github-com-gorilla-websocket-1.4.2" - ,go-github-com-gorilla-websocket-1.4.2) - ("go-github-com-googleapis-gnostic-0.4.1" - ,go-github-com-googleapis-gnostic-0.4.1) - ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) - ("go-github-com-google-gofuzz-1.1.0" - ,go-github-com-google-gofuzz-1.1.0) - ("go-github-com-google-go-cmp-0.5.2" - ,go-github-com-google-go-cmp-0.5.2) - ("go-github-com-gogo-protobuf-1.3.1" - ,go-github-com-gogo-protobuf-1.3.1) - ("go-github-com-go-openapi-spec-0.19.3" - ,go-github-com-go-openapi-spec-0.19.3) - ("go-github-com-evanphx-json-patch-4.9.0+incompatible" - ,go-github-com-evanphx-json-patch-4.9.0+incompatible) - ("go-github-com-emicklei-go-restful-2.9.5+incompatible" - ,go-github-com-emicklei-go-restful-2.9.5+incompatible) - ("go-github-com-dustin-go-humanize-1.0.0" - ,go-github-com-dustin-go-humanize-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1) - ("go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f" - ,go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f) - ("go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e" - ,go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e) - ("go-github-com-coreos-go-semver-0.3.0" - ,go-github-com-coreos-go-semver-0.3.0) - ("go-github-com-coreos-go-oidc-2.1.0+incompatible" - ,go-github-com-coreos-go-oidc-2.1.0+incompatible))) - (home-page "https://k8s.io/apiserver") - (synopsis "apiserver") - (description - "Generic library for building a Kubernetes aggregated API server.") - (license license:asl2.0))) - -(define-public go-k8s-io-api-0.20.1 - (package - (name "go-k8s-io-api") - (version "0.20.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes/api") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "051nl7g66k0jkc9rmfbvwdsmqkn36nq71kvnfym3lhnjcgg53k0l")))) - (build-system go-build-system) - (arguments '(#:import-path "k8s.io/api")) - (propagated-inputs - `(("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-gogo-protobuf-1.3.1" - ,go-github-com-gogo-protobuf-1.3.1))) - (home-page "https://k8s.io/api") - (synopsis "api") - (description - "Schema of the external API types that are served by the Kubernetes API server.") - (license license:asl2.0))) - -(define-public go-k8s-io-apimachinery-0.20.1 - (package - (name "go-k8s-io-apimachinery") - (version "0.20.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes/apimachinery") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "15qc12lbzpd4lgajy0rv24b3ky4hhg5y1l37qxdfiakhz91didfw")))) - (build-system go-build-system) - (arguments '(#:import-path "k8s.io/apimachinery")) - (propagated-inputs - `(("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) - ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.2" - ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.2) - ("go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd" - ,go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd) - ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) - ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) - ("go-gopkg-in-inf-v0-0.9.1" ,go-gopkg-in-inf-v0-0.9.1) - ("go-google-golang-org-protobuf-1.25.0" - ,go-google-golang-org-protobuf-1.25.0) - ("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" - ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) - ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) - ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" - ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) - ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" - ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-onsi-gomega-1.7.0" ,go-github-com-onsi-gomega-1.7.0) - ("go-github-com-onsi-ginkgo-1.11.0" ,go-github-com-onsi-ginkgo-1.11.0) - ("go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f" - ,go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f) - ("go-github-com-modern-go-reflect2-1.0.1" - ,go-github-com-modern-go-reflect2-1.0.1) - ("go-github-com-json-iterator-go-1.1.10" - ,go-github-com-json-iterator-go-1.1.10) - ("go-github-com-hashicorp-golang-lru-0.5.1" - ,go-github-com-hashicorp-golang-lru-0.5.1) - ("go-github-com-googleapis-gnostic-0.4.1" - ,go-github-com-googleapis-gnostic-0.4.1) - ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) - ("go-github-com-google-gofuzz-1.1.0" - ,go-github-com-google-gofuzz-1.1.0) - ("go-github-com-google-go-cmp-0.5.2" - ,go-github-com-google-go-cmp-0.5.2) - ("go-github-com-golang-protobuf-1.4.3" - ,go-github-com-golang-protobuf-1.4.3) - ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" - ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) - ("go-github-com-gogo-protobuf-1.3.1" - ,go-github-com-gogo-protobuf-1.3.1) - ("go-github-com-fsnotify-fsnotify-1.4.9" - ,go-github-com-fsnotify-fsnotify-1.4.9) - ("go-github-com-evanphx-json-patch-4.9.0+incompatible" - ,go-github-com-evanphx-json-patch-4.9.0+incompatible) - ("go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153" - ,go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153) - ("go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96" - ,go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://k8s.io/apimachinery") - (synopsis "apimachinery") - (description - "Scheme, typing, encoding, decoding, and conversion packages for Kubernetes and Kubernetes-like API objects.") - (license license:asl2.0))) - -(define-public go-k8s-io-client-go-0.20.1 - (package - (name "go-k8s-io-client-go") - (version "0.20.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes/client-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "02jrzwwcrdlya91fga2wvf8dsl1yka3kky194dm6l9pmd754qwzs")))) - (build-system go-build-system) - (arguments '(#:import-path "k8s.io/client-go")) - (propagated-inputs - `(("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) - ("go-k8s-io-api-0.20.1" ,go-k8s-io-api-0.20.1) - ("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) - ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" - ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) - ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) - ("go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e" - ,go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e) - ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" - ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) - ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" - ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) - ("go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0" - ,go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) - ("go-github-com-peterbourgon-diskv-2.0.1+incompatible" - ,go-github-com-peterbourgon-diskv-2.0.1+incompatible) - ("go-github-com-imdario-mergo-0.3.5" - ,go-github-com-imdario-mergo-0.3.5) - ("go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7" - ,go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7) - ("go-github-com-googleapis-gnostic-0.4.1" - ,go-github-com-googleapis-gnostic-0.4.1) - ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) - ("go-github-com-google-gofuzz-1.1.0" - ,go-github-com-google-gofuzz-1.1.0) - ("go-github-com-google-go-cmp-0.5.2" - ,go-github-com-google-go-cmp-0.5.2) - ("go-github-com-golang-protobuf-1.4.3" - ,go-github-com-golang-protobuf-1.4.3) - ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" - ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) - ("go-github-com-gogo-protobuf-1.3.1" - ,go-github-com-gogo-protobuf-1.3.1) - ("go-github-com-evanphx-json-patch-4.9.0+incompatible" - ,go-github-com-evanphx-json-patch-4.9.0+incompatible) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1) - ("go-github-com-azure-go-autorest-autorest-adal-0.9.5" - ,go-github-com-azure-go-autorest-autorest-adal-0.9.5) - ("go-github-com-azure-go-autorest-autorest-0.11.1" - ,go-github-com-azure-go-autorest-autorest-0.11.1) - ("go-cloud-google-com-go-0.54.0" ,go-cloud-google-com-go-0.54.0))) - (home-page "https://k8s.io/client-go") - (synopsis "client-go") - (description - "Go clients for talking to a @url{http://kubernetes.io/,kubernetes} cluster.") - (license license:asl2.0))) - -(define-public go-k8s-io-component-base-0.20.1 - (package - (name "go-k8s-io-component-base") - (version "0.20.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes/component-base") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "05x3mv1lxh7s6ckfh1s9wwmb0n9rg14a9637ai9bhxdfps47sz0v")))) - (build-system go-build-system) - (arguments '(#:import-path "k8s.io/component-base")) - (propagated-inputs - `(("go-k8s-io-client-go-0.20.1" ,go-k8s-io-client-go-0.20.1) - ("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) - ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" - ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) - ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) - ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) - ("go-go-uber-org-multierr-1.1.0" ,go-go-uber-org-multierr-1.1.0) - ("go-go-uber-org-atomic-1.4.0" ,go-go-uber-org-atomic-1.4.0) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) - ("go-github-com-sirupsen-logrus-1.6.0" - ,go-github-com-sirupsen-logrus-1.6.0) - ("go-github-com-prometheus-procfs-0.2.0" - ,go-github-com-prometheus-procfs-0.2.0) - ("go-github-com-prometheus-common-0.10.0" - ,go-github-com-prometheus-common-0.10.0) - ("go-github-com-prometheus-client-model-0.2.0" - ,go-github-com-prometheus-client-model-0.2.0) - ("go-github-com-prometheus-client-golang-1.7.1" - ,go-github-com-prometheus-client-golang-1.7.1) - ("go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd" - ,go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd) - ("go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369" - ,go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369) - ("go-github-com-google-go-cmp-0.5.2" - ,go-github-com-google-go-cmp-0.5.2) - ("go-github-com-go-logr-logr-0.2.0" ,go-github-com-go-logr-logr-0.2.0) - ("go-github-com-blang-semver-3.5.1+incompatible" - ,go-github-com-blang-semver-3.5.1+incompatible))) - (home-page "https://k8s.io/component-base") - (synopsis "component-base") - (description - "Implement KEP 32: @url{https://github.com/kubernetes/enhancements/blob/master/keps/sig-cluster-lifecycle/wgs/783-component-base/README.md,https://github.com/kubernetes/enhancements/blob/master/keps/sig-cluster-lifecycle/wgs/783-component-base/README.md}") - (license license:asl2.0))) - -(define-public go-k8s-io-cri-api-0.20.1 - (package - (name "go-k8s-io-cri-api") - (version "0.20.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes/cri-api") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1r98d0kv42sijdg3404xx2g5jj0zixvfagkky2zla12p68ajm4xr")))) - (build-system go-build-system) - (arguments '(#:import-path "k8s.io/cri-api")) - (propagated-inputs - `(("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" - ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) - ("go-google-golang-org-protobuf-1.25.0" - ,go-google-golang-org-protobuf-1.25.0) - ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) - ("go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a" - ,go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a) - ("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" - ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) - ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) - ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" - ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) - ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" - ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-kr-pretty-0.2.0" ,go-github-com-kr-pretty-0.2.0) - ("go-github-com-google-go-cmp-0.5.2" - ,go-github-com-google-go-cmp-0.5.2) - ("go-github-com-golang-protobuf-1.4.3" - ,go-github-com-golang-protobuf-1.4.3) - ("go-github-com-gogo-protobuf-1.3.1" - ,go-github-com-gogo-protobuf-1.3.1) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://k8s.io/cri-api") - (synopsis "Purpose") - (description - "This repository contains the definitions for the Container Runtime Interface (CRI). -CRI is a plugin interface which enables kubelet to use a wide variety of container runtimes, -without the need to recompile. CRI consists of a protocol buffers and gRPC API.") - (license license:asl2.0))) - -(define-public go-github-com-containerd-containerd-1.5.0-beta.3 - (package - (name "go-github-com-containerd-containerd") - (version "1.5.0-beta.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/containerd") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0fbd4llrwg5hi5adfkmfndma5y129yl9wwz3c3fjn7cfhc64hlqf")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/containerd")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) - ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) - ("go-github-com-golang-protobuf-1.3.5" - ,go-github-com-golang-protobuf-1.3.5) - ("go-github-com-gogo-googleapis-1.3.2" - ,go-github-com-gogo-googleapis-1.3.2) - ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" - ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) - ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) - ("go-k8s-io-cri-api-0.20.1" ,go-k8s-io-cri-api-0.20.1) - ("go-k8s-io-component-base-0.20.1" ,go-k8s-io-component-base-0.20.1) - ("go-k8s-io-client-go-0.20.1" ,go-k8s-io-client-go-0.20.1) - ("go-k8s-io-apiserver-0.20.1" ,go-k8s-io-apiserver-0.20.1) - ("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) - ("go-k8s-io-api-0.20.1" ,go-k8s-io-api-0.20.1) - ("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) - ("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" - ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) - ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" - ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) - ("go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b" - ,go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b) - ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) - ("go-github-com-tchap-go-patricia-2.2.6+incompatible" - ,go-github-com-tchap-go-patricia-2.2.6+incompatible) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-sirupsen-logrus-1.7.0" - ,go-github-com-sirupsen-logrus-1.7.0) - ("go-github-com-prometheus-client-golang-1.7.1" - ,go-github-com-prometheus-client-golang-1.7.1) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-selinux-1.8.0" - ,go-github-com-opencontainers-selinux-1.8.0) - ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" - ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) - ("go-github-com-opencontainers-runc-1.0.0-rc93" - ,go-github-com-opencontainers-runc-1.0.0-rc93) - ("go-github-com-opencontainers-image-spec-1.0.1" - ,go-github-com-opencontainers-image-spec-1.0.1) - ("go-github-com-opencontainers-go-digest-1.0.0" - ,go-github-com-opencontainers-go-digest-1.0.0) - ("go-github-com-moby-sys-symlink-0.1.0" - ,go-github-com-moby-sys-symlink-0.1.0) - ("go-github-com-moby-sys-mountinfo-0.4.0" - ,go-github-com-moby-sys-mountinfo-0.4.0) - ("go-github-com-klauspost-compress-1.11.3" - ,go-github-com-klauspost-compress-1.11.3) - ("go-github-com-imdario-mergo-0.3.11" - ,go-github-com-imdario-mergo-0.3.11) - ("go-github-com-hashicorp-go-multierror-1.0.0" - ,go-github-com-hashicorp-go-multierror-1.0.0) - ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" - ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) - ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) - ("go-github-com-google-go-cmp-0.5.4" - ,go-github-com-google-go-cmp-0.5.4) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2) - ("go-github-com-fsnotify-fsnotify-1.4.9" - ,go-github-com-fsnotify-fsnotify-1.4.9) - ("go-github-com-emicklei-go-restful-2.9.5+incompatible" - ,go-github-com-emicklei-go-restful-2.9.5+incompatible) - ("go-github-com-docker-go-units-0.4.0" - ,go-github-com-docker-go-units-0.4.0) - ("go-github-com-docker-go-metrics-0.0.1" - ,go-github-com-docker-go-metrics-0.0.1) - ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" - ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1) - ("go-github-com-coreos-go-systemd-v22-22.1.0" - ,go-github-com-coreos-go-systemd-v22-22.1.0) - ("go-github-com-containernetworking-plugins-0.8.6" - ,go-github-com-containernetworking-plugins-0.8.6) - ("go-github-com-containerd-zfs-0.0.0-20210301145711-11e8f1707f62" - ,go-github-com-containerd-zfs-0.0.0-20210301145711-11e8f1707f62) - ("go-github-com-containerd-typeurl-1.0.1" - ,go-github-com-containerd-typeurl-1.0.1) - ("go-github-com-containerd-ttrpc-1.0.2" - ,go-github-com-containerd-ttrpc-1.0.2) - ("go-github-com-containerd-nri-0.0.0-20201007170849-eb1350a75164" - ,go-github-com-containerd-nri-0.0.0-20201007170849-eb1350a75164) - ("go-github-com-containerd-imgcrypt-1.0.4-0.20210301171431-0ae5c75f59ba" - ,go-github-com-containerd-imgcrypt-1.0.4-0.20210301171431-0ae5c75f59ba) - ("go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328" - ,go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328) - ("go-github-com-containerd-go-cni-1.0.1" - ,go-github-com-containerd-go-cni-1.0.1) - ("go-github-com-containerd-fifo-0.0.0-20201026212402-0724c46b320c" - ,go-github-com-containerd-fifo-0.0.0-20201026212402-0724c46b320c) - ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" - ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) - ("go-github-com-containerd-console-1.0.1" - ,go-github-com-containerd-console-1.0.1) - ("go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68" - ,go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68) - ("go-github-com-containerd-btrfs-0.0.0-20201111183144-404b9149801e" - ,go-github-com-containerd-btrfs-0.0.0-20201111183144-404b9149801e) - ("go-github-com-containerd-aufs-0.0.0-20201003224125-76a6863f2989" - ,go-github-com-containerd-aufs-0.0.0-20201003224125-76a6863f2989) - ("go-github-com-microsoft-hcsshim-test-0.0.0-20210227013316-43a75bb4edd3" - ,go-github-com-microsoft-hcsshim-test-0.0.0-20210227013316-43a75bb4edd3) - ("go-github-com-microsoft-hcsshim-0.8.15" - ,go-github-com-microsoft-hcsshim-0.8.15) - ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" - ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3) - ("go-github-com-burntsushi-toml-0.3.1" - ,go-github-com-burntsushi-toml-0.3.1))) - (home-page "https://github.com/containerd/containerd") - (synopsis "Now Recruiting") - (description - "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") - (license license:asl2.0))) - -(define-public go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898 - (package - (name "go-bazil-org-fuse") - (version "0.0.0-20160811212531-371fbbdaa898") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/bazil/fuse") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1x5p301py7mcxgwklfm6pqqkzssln0nfzllng49pnk60m03ilp4w")))) - (build-system go-build-system) - (arguments '(#:import-path "bazil.org/fuse")) - (home-page "https://bazil.org/fuse") - (synopsis "bazil.org/fuse -- Filesystems in Go") - (description - "Package fuse enables writing FUSE file systems on Linux and FreeBSD. -") - (license #f))) - -(define-public go-github-com-sirupsen-logrus-1.7.0 - (package - (name "go-github-com-sirupsen-logrus") - (version "1.7.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sirupsen/logrus") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1a59pw7zimvm8k423iq9l4f4qjj1ia1xc6pkmhwl2mxc46y2n442")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/sirupsen/logrus")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037" - ,go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037) - ("go-github-com-stretchr-testify-1.2.2" - ,go-github-com-stretchr-testify-1.2.2) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/sirupsen/logrus") - (synopsis "Logrus") - (description - "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. -") - (license license:expat))) - -(define-public go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee - (package - (name "go-github-com-spf13-cobra") - (version "0.0.2-0.20171109065643-2da4a54c5cee") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/spf13/cobra") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18qbrp774fx6dyibjcy9snld705gslq6z2sql1biyjahxkm1vpfy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/spf13/cobra")) - (home-page "https://github.com/spf13/cobra") - (synopsis "Table of Contents") - (description - "Package cobra is a commander providing a simple interface to create powerful modern CLI interfaces. -In addition to providing an interface, Cobra simultaneously provides a controller to organize your application code. -") - (license license:asl2.0))) - -(define-public go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95 - (package - (name "go-github-com-spf13-pflag") - (version "1.0.1-0.20171106142849-4c012f6dcd95") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/spf13/pflag") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0plmm67lkm25ir0lczwh7hmanyilrs1vxmbp8a0dyr282ji1dqm5")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/spf13/pflag")) - (home-page "https://github.com/spf13/pflag") - (synopsis "Description") - (description - "Package pflag is a drop-in replacement for Go's flag package, implementing -POSIX/GNU-style --flags. -") - (license license:bsd-3))) - -(define-public go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e - (package - (name "go-github-com-containerd-continuity") - (version "0.0.0-20210208174643-50096c924a4e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/continuity") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1drmxbb2l4z12b19dq3vvh1ss7b4z8fq1n5g6c8ln13mjgz6cq48")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/continuity")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3" - ,go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3) - ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" - ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) - ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" - ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) - ("go-github-com-stretchr-testify-1.4.0" - ,go-github-com-stretchr-testify-1.4.0) - ("go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95" - ,go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95) - ("go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee" - ,go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee) - ("go-github-com-sirupsen-logrus-1.7.0" - ,go-github-com-sirupsen-logrus-1.7.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-go-digest-1.0.0" - ,go-github-com-opencontainers-go-digest-1.0.0) - ("go-github-com-inconshreveable-mousetrap-1.0.0" - ,go-github-com-inconshreveable-mousetrap-1.0.0) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0) - ("go-github-com-dustin-go-humanize-1.0.0" - ,go-github-com-dustin-go-humanize-1.0.0) - ("go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898" - ,go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898))) - (home-page "https://github.com/containerd/continuity") - (synopsis "continuity") - (description - "This package provides a transport-agnostic, filesystem metadata manifest system") - (license license:asl2.0))) - -(define-public go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible - (package - (name "go-github-com-mistifyio-go-zfs") - (version "2.1.2-0.20190413222219-f784269be439+incompatible") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mistifyio/go-zfs") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0x6ncjaqjm06c615kbwkqbd5wcdg9nmrbl7wm4w185s6kq6l8fpw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mistifyio/go-zfs")) - (home-page "https://github.com/mistifyio/go-zfs") - (synopsis "Go Wrapper for ZFS") - (description - "Package zfs provides wrappers around the ZFS command line tools. -") - (license license:asl2.0))) - -(define-public go-github-com-containerd-zfs-1.0.0 - (package - (name "go-github-com-containerd-zfs") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/zfs") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "10shqmcdxlxxi90kwgs5cljz12589yz5cm78aimv9m4cgwiv3wl3")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/zfs")) - (propagated-inputs - `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible" - ,go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible) - ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" - ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) - ("go-github-com-containerd-containerd-1.5.0-beta.3" - ,go-github-com-containerd-containerd-1.5.0-beta.3))) - (home-page "https://github.com/containerd/zfs") - (synopsis "ZFS snapshotter plugin") - (description "ZFS snapshotter plugin for containerd.") - (license license:asl2.0))) - -(define-public go-github-com-microsoft-go-winio-0.4.11 - (package - (name "go-github-com-microsoft-go-winio") - (version "0.4.11") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/microsoft/go-winio") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "14y1gryr3pb3zy09v2g8dh89m363rfd9sch0wgbabh531hfx72vn")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/Microsoft/go-winio")) - (home-page "https://github.com/Microsoft/go-winio") - (synopsis "go-winio") - (description - "This repository contains utilities for efficiently performing Win32 IO operations in -Go. Currently, this is focused on accessing named pipes and other file handles, and -for using named pipes as a net transport.") - (license license:expat))) - -(define-public go-github-com-microsoft-hcsshim-0.8.6 - (package - (name "go-github-com-microsoft-hcsshim") - (version "0.8.6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/microsoft/hcsshim") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "05arx8y4b6rvhjcnwizhc8svzab3ld0njkgj8vijgs27az84z6pw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/Microsoft/hcsshim")) - (home-page "https://github.com/Microsoft/hcsshim") - (synopsis "hcsshim") - (description - "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") - (license license:expat))) - -(define-public go-github-com-alexflint-go-filemutex-0.0.0-20171022225611-72bdc8eae2ae - (package - (name "go-github-com-alexflint-go-filemutex") - (version "0.0.0-20171022225611-72bdc8eae2ae") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/alexflint/go-filemutex") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "082y6y9zv40q3kaqvsv6fyaw2fc42j0sn9z0dl9rbiz4szixj3c4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/alexflint/go-filemutex")) - (home-page "https://github.com/alexflint/go-filemutex") - (synopsis "FileMutex") - (description - "FileMutex is similar to @code{sync.RWMutex}, but also synchronizes across processes. -On Linux, OSX, and other POSIX systems it uses the flock system call. On windows -it uses the LockFileEx and UnlockFileEx system calls.") - (license license:expat))) - -(define-public go-github-com-buger-jsonparser-0.0.0-20180808090653-f4dd9f5a6b44 - (package - (name "go-github-com-buger-jsonparser") - (version "0.0.0-20180808090653-f4dd9f5a6b44") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/buger/jsonparser") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12qa2n33s7yz88ywpr3k9kg3b4gm6rqgnv28iyikyxw8h5jascz5")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/buger/jsonparser")) - (home-page "https://github.com/buger/jsonparser") - (synopsis - "Alternative JSON parser for Go (10x times faster standard library)") - (description - "It does not require you to know the structure of the payload (eg. create structs), and allows accessing fields by providing the path to them. It is up to @strong{10 times faster} than standard @code{encoding/json} package (depending on payload size and usage), @strong{allocates no memory}. See benchmarks below.") - (license license:expat))) - -(define-public go-github-com-containernetworking-cni-0.8.1 - (package - (name "go-github-com-containernetworking-cni") - (version "0.8.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containernetworking/cni") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ydzsiq6kfwjghf5dd4ld2rv3cxgbjq6c1523jxmib1phwf0s75z")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containernetworking/cni")) - (home-page "https://github.com/containernetworking/cni") - (synopsis "CNI - the Container Network Interface") - (description - "CNI (), a @url{https://cncf.io,Cloud Native Computing Foundation} project, consists of a specification and libraries for writing plugins to configure network interfaces in Linux containers, along with a number of supported plugins. -CNI concerns itself only with network connectivity of containers and removing allocated resources when the container is deleted. -Because of this focus, CNI has a wide range of support and the specification is simple to implement.") - (license license:asl2.0))) - -(define-public go-github-com-coreos-go-iptables-0.5.0 - (package - (name "go-github-com-coreos-go-iptables") - (version "0.5.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/coreos/go-iptables") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0syxjad9b3d19sjy7cy7zjpx5bx60yvbhidz8r9cdv43iqadxmp7")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/coreos/go-iptables")) - (home-page "https://github.com/coreos/go-iptables") - (synopsis "go-iptables") - (description "Go bindings for iptables utility.") - (license license:asl2.0))) - -(define-public go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c - (package - (name "go-github-com-d2g-dhcp4") - (version "0.0.0-20170904100407-a1d1b6c41b1c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/d2g/dhcp4") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "191hzw6yqzkm042h6miyycq3g0zrhqjhhpl27f8vhwzp4wanasiz")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/d2g/dhcp4")) - (home-page "https://github.com/d2g/dhcp4") - (synopsis "DHCP4 - A DHCP library written in Go.") - (description - "Warning: This library is still being developed. Function calls will change.") - (license license:bsd-3))) - -(define-public go-github-com-d2g-dhcp4client-1.0.0 - (package - (name "go-github-com-d2g-dhcp4client") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/d2g/dhcp4client") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1n4qrn7xsgvnshmddq56hr8g2si5vfmxi0wnp0w71lmdfsxvvx0q")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/d2g/dhcp4client")) - (home-page "https://github.com/d2g/dhcp4client") - (synopsis "dhcp4client") - (description "DHCP Client") - (license license:mpl2.0))) - -(define-public go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5 - (package - (name "go-github-com-d2g-dhcp4server") - (version "0.0.0-20181031114812-7d4a0a7f59a5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/d2g/dhcp4server") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "03ibq32flr74pxfly1yca9qicb6f15xgl159jjg3svgnzfjpblwl")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/d2g/dhcp4server")) - (home-page "https://github.com/d2g/dhcp4server") - (synopsis "dhcp4server") - (description "DHCP Server") - (license license:mpl2.0))) - -(define-public go-github-com-d2g-hardwareaddr-0.0.0-20190221164911-e7d9fbe030e4 - (package - (name "go-github-com-d2g-hardwareaddr") - (version "0.0.0-20190221164911-e7d9fbe030e4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/d2g/hardwareaddr") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "09nm5py9xbb9klwhzqkf6786i3b59ynba78xkrv9jx4ari7ibh8q")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/d2g/hardwareaddr")) - (home-page "https://github.com/d2g/hardwareaddr") - (synopsis "hardwareaddr") - (description "Generate Hardware Addresses") - (license license:mpl2.0))) - -(define-public go-github-com-godbus-dbus-0.0.0-20180201030542-885f9cc04c9c - (package - (name "go-github-com-godbus-dbus") - (version "0.0.0-20180201030542-885f9cc04c9c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/godbus/dbus") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0wjpaj4vr5lvpnwc5faf3qizd7zd2v9yq0fm0558wap1hiyqb8x8")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/godbus/dbus")) - (home-page "https://github.com/godbus/dbus") - (synopsis "dbus") - (description - "Package dbus implements bindings to the D-Bus message bus system. -") - (license license:bsd-2))) - -(define-public go-github-com-j-keck-arping-0.0.0-20160618110441-2cf9dc699c56 - (package - (name "go-github-com-j-keck-arping") - (version "0.0.0-20160618110441-2cf9dc699c56") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/j-keck/arping") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1bid8mpx3j4546ni0a6q5xyz7hb854g95qnxqmg5jzs9vrcird3c")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/j-keck/arping")) - (home-page "https://github.com/j-keck/arping") - (synopsis "arping") - (description - "Package arping is a native go library to ping a host per arp datagram, or query a host mac address -") - (license license:expat))) - -(define-public go-github-com-mattn-go-shellwords-1.0.3 - (package - (name "go-github-com-mattn-go-shellwords") - (version "1.0.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mattn/go-shellwords") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1pg7pl25wvpl2dbpyrv9p1r7prnqimxlf6136vn0dfm54j2x4mnr")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mattn/go-shellwords")) - (home-page "https://github.com/mattn/go-shellwords") - (synopsis "go-shellwords") - (description "Parse line as shell words.") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20190904154756-749cb33beabd - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190904154756-749cb33beabd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0dm3257q3rv2kyn5lmqqim2fqg634v6rhrqq4glvbk4wx4l3v337")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-nxadm-tail-1.4.4 - (package - (name "go-github-com-nxadm-tail") - (version "1.4.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/nxadm/tail") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1czmwqii0fc8v3ar5bwqpfanprkxg19waly405zlvcflzvj53wwc")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/nxadm/tail")) - (propagated-inputs - `(("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" - ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) - ("go-golang-org-x-sys-0.0.0-20190904154756-749cb33beabd" - ,go-golang-org-x-sys-0.0.0-20190904154756-749cb33beabd) - ("go-github-com-fsnotify-fsnotify-1.4.7" - ,go-github-com-fsnotify-fsnotify-1.4.7))) - (home-page "https://github.com/nxadm/tail") - (synopsis "tail functionality in Go") - (description - "nxadm/tail provides a Go library that emulates the features of the BSD `tail` -program. The library comes with full support for truncation/move detection as -it is designed to work with log rotation tools. The library works on all -operating systems supported by Go, including POSIX systems like Linux and -*BSD, and MS Windows. Go 1.9 is the oldest compiler release supported. -") - (license license:expat))) - -(define-public go-github-com-onsi-gomega-1.7.1 - (package - (name "go-github-com-onsi-gomega") - (version "1.7.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/onsi/gomega") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "06p3x0910cdaa64l7d44s728d4j3yhps315dlcvrbjzhljjj7mam")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/onsi/gomega")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.4" ,go-gopkg-in-yaml-v2-2.2.4) - ("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" - ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) - ("go-gopkg-in-fsnotify-v1-1.4.7" ,go-gopkg-in-fsnotify-v1-1.4.7) - ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e" - ,go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e) - ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" - ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) - ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" - ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) - ("go-github-com-onsi-ginkgo-1.6.0" ,go-github-com-onsi-ginkgo-1.6.0) - ("go-github-com-hpcloud-tail-1.0.0" ,go-github-com-hpcloud-tail-1.0.0) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0) - ("go-github-com-fsnotify-fsnotify-1.4.7" - ,go-github-com-fsnotify-fsnotify-1.4.7))) - (home-page "https://github.com/onsi/gomega") - (synopsis ": a BDD Testing Framework for Golang") - (description - "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library. -") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20191120155948-bd437916bb0e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1i8x26frmlin55k69k936zd1rp5sqnq14y5ms4rkxbfzhasdm2rx")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-onsi-ginkgo-1.12.1 - (package - (name "go-github-com-onsi-ginkgo") - (version "1.12.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/onsi/ginkgo") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0xs9724l2b0bwjwrvw5cs3akxaw0n1j5kyxrb1ggfsdjz0zmjcxh")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/onsi/ginkgo")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e" - ,go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e) - ("go-github-com-onsi-gomega-1.7.1" ,go-github-com-onsi-gomega-1.7.1) - ("go-github-com-nxadm-tail-1.4.4" ,go-github-com-nxadm-tail-1.4.4))) - (home-page "https://github.com/onsi/ginkgo") - (synopsis "Ginkgo 2.0 Release Candidate is available!") - (description "Ginkgo is a BDD-style testing framework for Golang -") - (license license:expat))) - -(define-public go-golang-org-x-net-0.0.0-20201006153459-a7d1128ccaa0 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20201006153459-a7d1128ccaa0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1iqqq7s95b2a29bspfxv68qnby8vwjvy9f8gl2262p6f9hhp21d2")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) - ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" - ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) - ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" - ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-github-com-onsi-gomega-1.10.3 - (package - (name "go-github-com-onsi-gomega") - (version "1.10.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/onsi/gomega") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1jvp5wlny86ncsqak5rz70qfn61y3ajc64w0hrj4840zgh90zb06")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/onsi/gomega")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.3.0" ,go-gopkg-in-yaml-v2-2.3.0) - ("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) - ("go-golang-org-x-net-0.0.0-20201006153459-a7d1128ccaa0" - ,go-golang-org-x-net-0.0.0-20201006153459-a7d1128ccaa0) - ("go-github-com-onsi-ginkgo-1.12.1" ,go-github-com-onsi-ginkgo-1.12.1) - ("go-github-com-golang-protobuf-1.4.2" - ,go-github-com-golang-protobuf-1.4.2))) - (home-page "https://github.com/onsi/gomega") - (synopsis ": a BDD Testing Framework for Golang") - (description - "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library. -") - (license license:expat))) - -(define-public go-github-com-safchain-ethtool-0.0.0-20190326074333-42ed695e3de8 - (package - (name "go-github-com-safchain-ethtool") - (version "0.0.0-20190326074333-42ed695e3de8") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/safchain/ethtool") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0n5hkrzc1bh46nidcssx4539kvcmgj501v3kzh2pljpg27509daj")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/safchain/ethtool")) - (home-page "https://github.com/safchain/ethtool") - (synopsis "ethtool go package") - (description - "Package ethtool aims to provide a library giving a simple access to the -Linux SIOCETHTOOL ioctl operations. It can be used to retrieve informations -from a network device like statistics, driver related informations or -even the peer of a VETH interface. -") - (license license:asl2.0))) - -(define-public go-github-com-sirupsen-logrus-1.0.6 - (package - (name "go-github-com-sirupsen-logrus") - (version "1.0.6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sirupsen/logrus") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "029irw2lsbqi944gdrbkwdw0m2794sqni4g21gsnmz142hbzds8c")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/sirupsen/logrus")) - (home-page "https://github.com/sirupsen/logrus") - (synopsis "Logrus") - (description - "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. -") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20200217220822-9197077df867 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200217220822-9197077df867") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1270yyiqzlgrsygp2j0qavh4agm4xjv3ljfpk4wgqgmg4ph1lmx1")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-vishvananda-netns-0.0.0-20200728191858-db3c7e526aae - (package - (name "go-github-com-vishvananda-netns") - (version "0.0.0-20200728191858-db3c7e526aae") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/vishvananda/netns") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1gx41r06by67q5yyyvjpr0cyqqs2pcksfaqxy0s36cx4vpjn5x9r")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/vishvananda/netns")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20200217220822-9197077df867" - ,go-golang-org-x-sys-0.0.0-20200217220822-9197077df867))) - (home-page "https://github.com/vishvananda/netns") - (synopsis "netns - network namespaces in go") - (description - "Package netns allows ultra-simple network namespace handling. NsHandles -can be retrieved and set. Note that the current namespace is thread -local so actions that set and reset namespaces should use LockOSThread -to make sure the namespace doesn't change due to a goroutine switch. -It is best to close NsHandles when you are done with them. This can be -accomplished via a `defer ns.Close()` on the handle. Changing namespaces -requires elevated privileges, so in most cases this code needs to be run -as root. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-sys-0.0.0-20200728102440-3e129f6d46b1 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200728102440-3e129f6d46b1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "02wcaghvpysqijiqsiimk52vma7lx99g5kvdid2r1qsf9hmwgvy2")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-vishvananda-netlink-1.1.1-0.20201029203352-d40f9887b852 - (package - (name "go-github-com-vishvananda-netlink") - (version "1.1.1-0.20201029203352-d40f9887b852") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/vishvananda/netlink") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1aq13npm7vd153vxrk1vhsg36r2g9hrh21cvk422ssrf57qy2fsj")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/vishvananda/netlink")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20200728102440-3e129f6d46b1" - ,go-golang-org-x-sys-0.0.0-20200728102440-3e129f6d46b1) - ("go-github-com-vishvananda-netns-0.0.0-20200728191858-db3c7e526aae" - ,go-github-com-vishvananda-netns-0.0.0-20200728191858-db3c7e526aae))) - (home-page "https://github.com/vishvananda/netlink") - (synopsis "netlink - netlink library for go") - (description - "Package netlink provides a simple library for netlink. Netlink is -the interface a user-space program in linux uses to communicate with -the kernel. It can be used to add and remove interfaces, set up ip -addresses and routes, and confiugre ipsec. Netlink communication -requires elevated privileges, so in most cases this code needs to -be run as root. The low level primitives for netlink are contained -in the nl subpackage. This package attempts to provide a high-level -interface that is loosly modeled on the iproute2 cli. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-sys-0.0.0-20201117170446-d9b008d0a637 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20201117170446-d9b008d0a637") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "06pp1nrhzx6nm6rwwzm0xzf8bs3r1mfsrkclyhlhnr7x5r0a0ppi")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-gopkg-in-airbrake-gobrake-v2-2.0.9 - (package - (name "go-gopkg-in-airbrake-gobrake-v2") - (version "2.0.9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/airbrake/gobrake.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1x06f7n7qlyzqgyz0sdfcidf3w4ldn6zs6qx2mhibggk2z4whcjw")))) - (build-system go-build-system) - (arguments - '(#:import-path - "gopkg.in/airbrake/gobrake.v2" - #:unpack-path - "gopkg.in/airbrake/gobrake.v2")) - (home-page "https://gopkg.in/airbrake/gobrake.v2") - (synopsis "Airbrake Golang Notifier") - (description - "You can use @url{https://github.com/airbrake/glog,glog fork} to send your logs to Airbrake.") - (license license:bsd-3))) - -(define-public go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2 - (package - (name "go-gopkg-in-gemnasium-logrus-airbrake-hook-v2") - (version "2.1.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/gemnasium/logrus-airbrake-hook.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0sbg0dn6cysmf8f2bi209jwl4jnpiwp4rdghnxlzirw3c32ms5y5")))) - (build-system go-build-system) - (arguments - '(#:import-path - "gopkg.in/gemnasium/logrus-airbrake-hook.v2" - #:unpack-path - "gopkg.in/gemnasium/logrus-airbrake-hook.v2")) - (home-page "https://gopkg.in/gemnasium/logrus-airbrake-hook.v2") - (synopsis "Airbrake Hook for Logrus") - (description - "Use this hook to send your errors to @url{https://airbrake.io/,Airbrake}. -This hook is using the @url{https://github.com/airbrake/gobrake,official airbrake go package}, and will hit the api V3. -The hook is synchronous and will send the error for @code{log.Error}, @code{log.Fatal} and @code{log.Panic} levels.") - (license license:expat))) - -(define-public go-github-com-containernetworking-plugins-0.9.1 - (package - (name "go-github-com-containernetworking-plugins") - (version "0.9.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containernetworking/plugins") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "17rafngfa9b0ybs3j4lvjjqdva6jkamhnbb1n0qnv685g0asvqwz")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containernetworking/plugins")) - (propagated-inputs - `(("go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2" - ,go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2) - ("go-gopkg-in-airbrake-gobrake-v2-2.0.9" - ,go-gopkg-in-airbrake-gobrake-v2-2.0.9) - ("go-golang-org-x-sys-0.0.0-20201117170446-d9b008d0a637" - ,go-golang-org-x-sys-0.0.0-20201117170446-d9b008d0a637) - ("go-github-com-vishvananda-netlink-1.1.1-0.20201029203352-d40f9887b852" - ,go-github-com-vishvananda-netlink-1.1.1-0.20201029203352-d40f9887b852) - ("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0) - ("go-github-com-sirupsen-logrus-1.0.6" - ,go-github-com-sirupsen-logrus-1.0.6) - ("go-github-com-safchain-ethtool-0.0.0-20190326074333-42ed695e3de8" - ,go-github-com-safchain-ethtool-0.0.0-20190326074333-42ed695e3de8) - ("go-github-com-onsi-gomega-1.10.3" ,go-github-com-onsi-gomega-1.10.3) - ("go-github-com-onsi-ginkgo-1.12.1" ,go-github-com-onsi-ginkgo-1.12.1) - ("go-github-com-mattn-go-shellwords-1.0.3" - ,go-github-com-mattn-go-shellwords-1.0.3) - ("go-github-com-j-keck-arping-0.0.0-20160618110441-2cf9dc699c56" - ,go-github-com-j-keck-arping-0.0.0-20160618110441-2cf9dc699c56) - ("go-github-com-godbus-dbus-0.0.0-20180201030542-885f9cc04c9c" - ,go-github-com-godbus-dbus-0.0.0-20180201030542-885f9cc04c9c) - ("go-github-com-d2g-hardwareaddr-0.0.0-20190221164911-e7d9fbe030e4" - ,go-github-com-d2g-hardwareaddr-0.0.0-20190221164911-e7d9fbe030e4) - ("go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5" - ,go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5) - ("go-github-com-d2g-dhcp4client-1.0.0" - ,go-github-com-d2g-dhcp4client-1.0.0) - ("go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c" - ,go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c) - ("go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7" - ,go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7) - ("go-github-com-coreos-go-iptables-0.5.0" - ,go-github-com-coreos-go-iptables-0.5.0) - ("go-github-com-containernetworking-cni-0.8.1" - ,go-github-com-containernetworking-cni-0.8.1) - ("go-github-com-buger-jsonparser-0.0.0-20180808090653-f4dd9f5a6b44" - ,go-github-com-buger-jsonparser-0.0.0-20180808090653-f4dd9f5a6b44) - ("go-github-com-alexflint-go-filemutex-0.0.0-20171022225611-72bdc8eae2ae" - ,go-github-com-alexflint-go-filemutex-0.0.0-20171022225611-72bdc8eae2ae) - ("go-github-com-microsoft-hcsshim-0.8.6" - ,go-github-com-microsoft-hcsshim-0.8.6) - ("go-github-com-microsoft-go-winio-0.4.11" - ,go-github-com-microsoft-go-winio-0.4.11))) - (home-page "https://github.com/containernetworking/plugins") - (synopsis "Plugins") - (description - "Some CNI network plugins, maintained by the containernetworking team. For more information, see the @url{https://www.cni.dev,CNI website}.") - (license license:asl2.0))) - -(define-public go-github-com-google-uuid-1.2.0 - (package - (name "go-github-com-google-uuid") - (version "1.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/uuid") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "08wqig98w23cg2ngjijhgm6s0mdayb95awa3cn3bs69lg20gryac")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/uuid")) - (home-page "https://github.com/google/uuid") - (synopsis "uuid") - (description "Package uuid generates and inspects UUIDs. -") - (license license:bsd-3))) - -(define-public go-gopkg-in-yaml-v2-2.3.0 - (package - (name "go-gopkg-in-yaml-v2") - (version "2.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1md0hlyd9s6myv3663i9l59y74n4xjazifmmyxn43g86fgkc5lzj")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v2") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language. -") - (license license:asl2.0))) - -(define-public go-github-com-imdario-mergo-0.3.12 - (package - (name "go-github-com-imdario-mergo") - (version "0.3.12") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/imdario/mergo") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "15s6807vcm7xq4l6my7rnw1i7x57712jvdidjli5bip79jfaxw90")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/imdario/mergo")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.3.0" ,go-gopkg-in-yaml-v2-2.3.0))) - (home-page "https://github.com/imdario/mergo") - (synopsis "Mergo") - (description - "This package provides a helper to merge structs and maps in Golang. Useful for configuration default values, avoiding messy if-statements. -") - (license license:bsd-3))) - -(define-public go-github-com-opencontainers-image-spec-1.0.1 - (package - (name "go-github-com-opencontainers-image-spec") - (version "1.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/image-spec") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "03dvbj3dln8c55v9gp79mgmz2yi2ws3r08iyz2fk41y3i22iaw1q")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/image-spec")) - (home-page "https://github.com/opencontainers/image-spec") - (synopsis "OCI Image Format Specification") - (description - "The OCI Image Format project creates and maintains the software shipping container image format spec (OCI Image Format).") - (license license:asl2.0))) - -(define-public go-github-com-checkpoint-restore-go-criu-v5-5.0.0 - (package - (name "go-github-com-checkpoint-restore-go-criu-v5") - (version "5.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/checkpoint-restore/go-criu") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "07dal5a9y43azkkh61jf6s81h7anbl17drkh2mal9mzcsi8wa2z8")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/checkpoint-restore/go-criu/v5")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.23.0" - ,go-google-golang-org-protobuf-1.23.0) - ("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" - ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) - ("go-github-com-golang-protobuf-1.4.3" - ,go-github-com-golang-protobuf-1.4.3))) - (home-page "https://github.com/checkpoint-restore/go-criu") - (synopsis "go-criu -- Go bindings for CRIU") - (description - "This repository provides Go bindings for @url{https://criu.org/,CRIU}. The code is based on the Go-based PHaul -implementation from the CRIU repository. For easier inclusion into other Go projects the -CRIU Go bindings have been moved to this repository.") - (license license:asl2.0))) - -(define-public go-github-com-kr-pretty-0.2.1 - (package - (name "go-github-com-kr-pretty") - (version "0.2.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/pretty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0vzfz06y9q8gs2nxx0kys0591vzp78k0fvpb8digi5n15h3b25hy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/pretty")) - (propagated-inputs - `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) - (home-page "https://github.com/kr/pretty") - (synopsis #f) - (description - "Package pretty provides pretty-printing for Go values. This is -useful during debugging, to avoid wrapping long output lines in -the terminal. -") - (license license:expat))) - -(define-public go-github-com-frankban-quicktest-1.11.3 - (package - (name "go-github-com-frankban-quicktest") - (version "1.11.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/frankban/quicktest") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0d5njmwkfq2809vlimnlvy8ir6kln0c4cgdwr680fwsclpbr43qs")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/frankban/quicktest")) - (propagated-inputs - `(("go-github-com-kr-pretty-0.2.1" ,go-github-com-kr-pretty-0.2.1) - ("go-github-com-google-go-cmp-0.5.4" - ,go-github-com-google-go-cmp-0.5.4))) - (home-page "https://github.com/frankban/quicktest") - (synopsis "quicktest") - (description - "Package quicktest provides a collection of Go helpers for writing tests. -") - (license license:expat))) - -(define-public go-github-com-cilium-ebpf-0.6.2 - (package - (name "go-github-com-cilium-ebpf") - (version "0.6.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cilium/ebpf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0x64sg0kyc8bbsp75dpv8g2jfmpdldsshf9ni49jh6rgsnnqhpf8")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/cilium/ebpf")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" - ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) - ("go-github-com-google-go-cmp-0.5.4" - ,go-github-com-google-go-cmp-0.5.4) - ("go-github-com-frankban-quicktest-1.11.3" - ,go-github-com-frankban-quicktest-1.11.3))) - (home-page "https://github.com/cilium/ebpf") - (synopsis "eBPF") - (description "Package ebpf is a toolkit for working with eBPF programs. -") - (license license:expat))) - -(define-public go-github-com-containerd-console-1.0.2 - (package - (name "go-github-com-containerd-console") - (version "1.0.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/console") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0rxwgq578hphs2ldx1gg6c9fq1qm8rgqfx3vgi2sbrsmxn6m2438")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/console")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" - ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) - (home-page "https://github.com/containerd/console") - (synopsis "console") - (description - "Golang package for dealing with consoles. Light on deps and a simple API.") - (license license:asl2.0))) - -(define-public go-github-com-coreos-go-systemd-v22-22.3.2 - (package - (name "go-github-com-coreos-go-systemd-v22") - (version "22.3.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/coreos/go-systemd") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ndi86b8va84ha93njqgafypz4di7yxfd5r5kf1r0s3y3ghcjajq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/coreos/go-systemd/v22")) - (propagated-inputs - `(("go-github-com-godbus-dbus-v5-5.0.4" - ,go-github-com-godbus-dbus-v5-5.0.4))) - (home-page "https://github.com/coreos/go-systemd") - (synopsis "go-systemd") - (description "Go bindings to systemd. The project has several packages:") - (license license:asl2.0))) - -(define-public go-github-com-cyphar-filepath-securejoin-0.2.2 - (package - (name "go-github-com-cyphar-filepath-securejoin") - (version "0.2.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cyphar/filepath-securejoin") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0id32zjb92wm569m29nfrzz5mw9z1glr3klayr6j134pp4h1sgq4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/cyphar/filepath-securejoin")) - (home-page "https://github.com/cyphar/filepath-securejoin") - (synopsis #f) - (description - "Package securejoin is an implementation of the hopefully-soon-to-be-included -SecureJoin helper that is meant to be part of the \"path/filepath\" package. -The purpose of this project is to provide a PoC implementation to make the -SecureJoin proposal (@url{https://github.com/golang/go/issues/20126,https://github.com/golang/go/issues/20126}) more -tangible. -") - (license license:bsd-3))) - -(define-public go-github-com-godbus-dbus-v5-5.0.4 - (package - (name "go-github-com-godbus-dbus-v5") - (version "5.0.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/godbus/dbus") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0znax8kskb5gmp5fj75w56bc9p7b22wrdswzlh4d04sprlc471yi")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/godbus/dbus/v5")) - (home-page "https://github.com/godbus/dbus") - (synopsis "dbus") - (description - "Package dbus implements bindings to the D-Bus message bus system. -") - (license license:bsd-2))) - -(define-public go-github-com-mrunalp-fileutils-0.5.0 - (package - (name "go-github-com-mrunalp-fileutils") - (version "0.5.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mrunalp/fileutils") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1zrs959gf4zgi6ijwkdn4dcqk0svfblpaikkqy63q30rqz4swm0x")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mrunalp/fileutils")) - (home-page "https://github.com/mrunalp/fileutils") - (synopsis "fileutils") - (description "Collection of utilities for file manipulation in golang") - (license license:asl2.0))) - -(define-public go-github-com-seccomp-libseccomp-golang-0.9.1 - (package - (name "go-github-com-seccomp-libseccomp-golang") - (version "0.9.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/seccomp/libseccomp-golang") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "022c8prvxz0shrifams7lq4xidvkcqg9xi87wjjcpmbikqi72cna")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/seccomp/libseccomp-golang")) - (home-page "https://github.com/seccomp/libseccomp-golang") - (synopsis #f) - (description - "Package seccomp provides bindings for libseccomp, a library wrapping the Linux -seccomp syscall. Seccomp enables an application to restrict system call use -for itself and its children. -") - (license license:bsd-2))) - -(define-public go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635 - (package - (name "go-github-com-syndtr-gocapability") - (version "0.0.0-20200815063812-42c35b437635") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/syndtr/gocapability") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "00zi0k190ydlm9drnafvj9p4cf6axm858wr71pbmq1p3r94iqws4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/syndtr/gocapability")) - (home-page "https://github.com/syndtr/gocapability") - (synopsis #f) - (description #f) - (license license:bsd-2))) - -(define-public go-github-com-vishvananda-netns-0.0.0-20191106174202-0a2b9b5464df - (package - (name "go-github-com-vishvananda-netns") - (version "0.0.0-20191106174202-0a2b9b5464df") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/vishvananda/netns") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1k1zb7pzc4r4wicq7ncspf6zsvq298lvpsq963ibj813shg657xw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/vishvananda/netns")) - (home-page "https://github.com/vishvananda/netns") - (synopsis "netns - network namespaces in go") - (description - "Package netns allows ultra-simple network namespace handling. NsHandles -can be retrieved and set. Note that the current namespace is thread -local so actions that set and reset namespaces should use LockOSThread -to make sure the namespace doesn't change due to a goroutine switch. -It is best to close NsHandles when you are done with them. This can be -accomplished via a `defer ns.Close()` on the handle. Changing namespaces -requires elevated privileges, so in most cases this code needs to be run -as root. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-sys-0.0.0-20190606203320-7fc4e5ec1444 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190606203320-7fc4e5ec1444") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18rv3m1kksv3758aqiaac2l6j334g0bapic6ibsj999agcn7y9fg")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-vishvananda-netlink-1.1.0 - (package - (name "go-github-com-vishvananda-netlink") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/vishvananda/netlink") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1vhl30p1gx636a088ls4h6a0l8jjyfvz79fr5w0qzdrg4qg9h08h")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/vishvananda/netlink")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190606203320-7fc4e5ec1444" - ,go-golang-org-x-sys-0.0.0-20190606203320-7fc4e5ec1444) - ("go-github-com-vishvananda-netns-0.0.0-20191106174202-0a2b9b5464df" - ,go-github-com-vishvananda-netns-0.0.0-20191106174202-0a2b9b5464df))) - (home-page "https://github.com/vishvananda/netlink") - (synopsis "netlink - netlink library for go") - (description - "Package netlink provides a simple library for netlink. Netlink is -the interface a user-space program in linux uses to communicate with -the kernel. It can be used to add and remove interfaces, set up ip -addresses and routes, and confiugre ipsec. Netlink communication -requires elevated privileges, so in most cases this code needs to -be run as root. The low level primitives for netlink are contained -in the nl subpackage. This package attempts to provide a high-level -interface that is loosly modeled on the iproute2 cli. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b - (package - (name "go-golang-org-x-net") - (version "0.0.0-20201224014010-6772e930b67b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0zlr39dxbg0fxfdrc20c4x0pw43n9kz749ssml97cdzqy116p5qa")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) - ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" - ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) - ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" - ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-github-com-opencontainers-runc-1.0.2 - (package - (name "go-github-com-opencontainers-runc") - (version "1.0.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/runc") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1bpckghjah0rczciw1a1ab8z718lb2d3k4mjm4zb45lpm3njmrcp")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/runc")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.26.0" - ,go-google-golang-org-protobuf-1.26.0) - ("go-golang-org-x-sys-0.0.0-20210426230700-d19ff857e887" - ,go-golang-org-x-sys-0.0.0-20210426230700-d19ff857e887) - ("go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b" - ,go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b) - ("go-github-com-vishvananda-netlink-1.1.0" - ,go-github-com-vishvananda-netlink-1.1.0) - ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) - ("go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635" - ,go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635) - ("go-github-com-sirupsen-logrus-1.8.1" - ,go-github-com-sirupsen-logrus-1.8.1) - ("go-github-com-seccomp-libseccomp-golang-0.9.1" - ,go-github-com-seccomp-libseccomp-golang-0.9.1) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-selinux-1.8.2" - ,go-github-com-opencontainers-selinux-1.8.2) - ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417" - ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417) - ("go-github-com-mrunalp-fileutils-0.5.0" - ,go-github-com-mrunalp-fileutils-0.5.0) - ("go-github-com-moby-sys-mountinfo-0.4.1" - ,go-github-com-moby-sys-mountinfo-0.4.1) - ("go-github-com-godbus-dbus-v5-5.0.4" - ,go-github-com-godbus-dbus-v5-5.0.4) - ("go-github-com-docker-go-units-0.4.0" - ,go-github-com-docker-go-units-0.4.0) - ("go-github-com-cyphar-filepath-securejoin-0.2.2" - ,go-github-com-cyphar-filepath-securejoin-0.2.2) - ("go-github-com-coreos-go-systemd-v22-22.3.2" - ,go-github-com-coreos-go-systemd-v22-22.3.2) - ("go-github-com-containerd-console-1.0.2" - ,go-github-com-containerd-console-1.0.2) - ("go-github-com-cilium-ebpf-0.6.2" ,go-github-com-cilium-ebpf-0.6.2) - ("go-github-com-checkpoint-restore-go-criu-v5-5.0.0" - ,go-github-com-checkpoint-restore-go-criu-v5-5.0.0) - ("go-github-com-bits-and-blooms-bitset-1.2.0" - ,go-github-com-bits-and-blooms-bitset-1.2.0))) - (home-page "https://github.com/opencontainers/runc") - (synopsis "runc") - (description - "@code{runc} is a CLI tool for spawning and running containers according to the OCI specification.") - (license license:asl2.0))) - -(define-public go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417 - (package - (name "go-github-com-opencontainers-runtime-spec") - (version "1.0.3-0.20210326190908-1c3f411f0417") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/runtime-spec") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1azk8z41ga8af35c966f06vrq9y9hwz6mkm59r3py5qaamzim3qq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) - (home-page "https://github.com/opencontainers/runtime-spec") - (synopsis "Open Container Initiative Runtime Specification") - (description - "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") - (license license:asl2.0))) - -(define-public go-github-com-bits-and-blooms-bitset-1.2.0 - (package - (name "go-github-com-bits-and-blooms-bitset") - (version "1.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/bits-and-blooms/bitset") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0r9f7lvz6znl7yr6njg77m8hj472yhdshf1qaybwyw7j8as6c4r3")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/bits-and-blooms/bitset")) - (home-page "https://github.com/bits-and-blooms/bitset") - (synopsis "bitset") - (description - "Package bitset implements bitsets, a mapping -between non-negative integers and boolean values. It should be more -efficient than map[uint] bool. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20191115151921-52ab43148777") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1kakxbqrb1w2vwg7r1896z68qcx2lfvimsl8cs2niiipbgpi6imx")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-opencontainers-selinux-1.8.2 - (package - (name "go-github-com-opencontainers-selinux") - (version "1.8.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/selinux") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1dl1h8nzpyhsfki1dcjphm5h4n52qwilahyl6qlnwgzcc76pwizq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/selinux")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777" - ,go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-bits-and-blooms-bitset-1.2.0" - ,go-github-com-bits-and-blooms-bitset-1.2.0))) - (home-page "https://github.com/opencontainers/selinux") - (synopsis "selinux") - (description "Common SELinux package used across the container ecosystem.") - (license license:asl2.0))) - -(define-public go-github-com-pelletier-go-toml-1.8.1 - (package - (name "go-github-com-pelletier-go-toml") - (version "1.8.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pelletier/go-toml") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1pi1r9ds0vxjza4qrbk52y98wxrzh1ghwzc9c2v1w6i02pdwdcz9")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pelletier/go-toml")) - (propagated-inputs - `(("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/pelletier/go-toml") - (synopsis "go-toml") - (description "Package toml is a TOML parser and manipulation library. -") - (license #f))) - -(define-public go-github-com-satori-go-uuid-1.2.0 - (package - (name "go-github-com-satori-go-uuid") - (version "1.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/satori/go.uuid") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1j4s5pfg2ldm35y8ls8jah4dya2grfnx2drb4jcbjsyrp4cm5yfb")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/satori/go.uuid")) - (home-page "https://github.com/satori/go.uuid") - (synopsis "UUID package for Go language") - (description - "Package uuid provides implementation of Universally Unique Identifier (UUID). -Supported versions are 1, 3, 4 and 5 (as specified in @url{https://rfc-editor.org/rfc/rfc4122.html,RFC 4122}) and -version 2 (as specified in DCE 1.1). -") - (license license:expat))) - -(define-public go-github-com-tchap-go-patricia-2.2.6+incompatible - (package - (name "go-github-com-tchap-go-patricia") - (version "2.2.6+incompatible") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/tchap/go-patricia") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1yy1s3pnll52iyzphwi50drvz36lx628vn3xfy5ld29fxqngrckb")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/tchap/go-patricia")) - (home-page "https://github.com/tchap/go-patricia") - (synopsis "go-patricia") - (description - "@strong{Documentation}: @url{http://godoc.org/github.com/tchap/go-patricia/patricia,GoDoc} -@strong{Test Coverage}: @url{https://coveralls.io/r/tchap/go-patricia,(img (@ (src https://coveralls.io/repos/tchap/go-patricia/badge.png) (alt CoverageStatus)))}") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20210426230700-d19ff857e887 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20210426230700-d19ff857e887") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12m35a34dfm99agcv2ln9zvvyczigaxfwqbzqirvwn1lw4784whn")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-gotest-tools-v3-3.0.3 - (package - (name "go-gotest-tools-v3") - (version "3.0.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gotestyourself/gotest.tools") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1h316233n33lkfhbak8ljdj5i8df6hcwwm48n200svf22x3d95ww")))) - (build-system go-build-system) - (arguments - '(#:import-path "gotest.tools/v3" #:unpack-path "gotest.tools/v3")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20190624222133-a101b041ded4" - ,go-golang-org-x-tools-0.0.0-20190624222133-a101b041ded4) - ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) - ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0))) - (home-page "https://gotest.tools/v3") - (synopsis "gotest.tools") - (description - "Package gotesttools is a collection of packages to augment `testing` and -support common patterns. -") - (license license:asl2.0))) - -(define-public go-github-com-coreos-go-oidc-2.1.0+incompatible - (package - (name "go-github-com-coreos-go-oidc") - (version "2.1.0+incompatible") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/coreos/go-oidc") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0y9vxack1whvxy766jrc6xhh2rfkvnznwxi356si2kabzjv2lp6h")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/coreos/go-oidc")) - (home-page "https://github.com/coreos/go-oidc") - (synopsis "go-oidc") - (description - "Package oidc implements OpenID Connect client logic for the golang.org/x/oauth2 package. -") - (license license:asl2.0))) - -(define-public go-github-com-coreos-go-semver-0.3.0 - (package - (name "go-github-com-coreos-go-semver") - (version "0.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/coreos/go-semver") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0770h1mpig2j5sbiha3abnwaw8p6dg9i87r8pc7cf6m4kwml3sc9")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/coreos/go-semver")) - (home-page "https://github.com/coreos/go-semver") - (synopsis "go-semver - Semantic Versioning Library") - (description - "go-semver is a @url{http://semver.org/,semantic versioning} library for Go. It lets you parse -and compare two semantic version strings.") - (license license:asl2.0))) - -(define-public go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e - (package - (name "go-github-com-coreos-go-systemd") - (version "0.0.0-20190321100706-95778dfbb74e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/coreos/go-systemd") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1s3bg9p78wkixn2bqb2p23wbsqfg949ml6crw2b498s71mwh8rcf")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/coreos/go-systemd")) - (home-page "https://github.com/coreos/go-systemd") - (synopsis "go-systemd") - (description "Go bindings to systemd. The project has several packages:") - (license license:asl2.0))) - -(define-public go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f - (package - (name "go-github-com-coreos-pkg") - (version "0.0.0-20180928190104-399ea9e2e55f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/coreos/pkg") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0nxbn0m7lr4dg0yrwnvlkfiyg3ndv8vdpssjx7b714nivpc6ar0y")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/coreos/pkg")) - (home-page "https://github.com/coreos/pkg") - (synopsis #f) - (description "a collection of go utility packages") - (license license:asl2.0))) - -(define-public go-github-com-dustin-go-humanize-1.0.0 - (package - (name "go-github-com-dustin-go-humanize") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/dustin/go-humanize") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1kqf1kavdyvjk7f8kx62pnm7fbypn9z1vbf8v2qdh3y7z7a0cbl3")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/dustin/go-humanize")) - (home-page "https://github.com/dustin/go-humanize") - (synopsis "Humane Units") - (description - "Package humanize converts boring ugly numbers to human-friendly strings and back. -") - (license license:expat))) - -(define-public go-github-com-emicklei-go-restful-2.9.5+incompatible - (package - (name "go-github-com-emicklei-go-restful") - (version "2.9.5+incompatible") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/emicklei/go-restful") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0258y7q2krih98zznc4jsym9mf689afn6nsnsif1jhshrj653k36")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/emicklei/go-restful")) - (home-page "https://github.com/emicklei/go-restful") - (synopsis "go-restful") - (description - "Package restful , a lean package for creating REST-style WebServices without magic. -") - (license license:expat))) - -(define-public go-github-com-gorilla-websocket-1.4.2 - (package - (name "go-github-com-gorilla-websocket") - (version "1.4.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gorilla/websocket") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0mkm9w6kjkrlzab5wh8p4qxkc0icqawjbvr01d2nk6ykylrln40s")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/gorilla/websocket")) - (home-page "https://github.com/gorilla/websocket") - (synopsis "Gorilla WebSocket") - (description - "Package websocket implements the WebSocket protocol defined in @url{https://rfc-editor.org/rfc/rfc6455.html,RFC 6455}. -") - (license license:bsd-2))) - -(define-public go-github-com-mailru-easyjson-0.7.0 - (package - (name "go-github-com-mailru-easyjson") - (version "0.7.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mailru/easyjson") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "13zv5fvjp3nr65lhqhiw6i6mlmqvyls882rlmcas0ab35alsxni8")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mailru/easyjson")) - (home-page "https://github.com/mailru/easyjson") - (synopsis "easyjson") - (description - "Package easyjson contains marshaler/unmarshaler interfaces and helper functions. -") - (license license:expat))) - -(define-public go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822 - (package - (name "go-github-com-munnerz-goautoneg") - (version "0.0.0-20191010083416-a7dc8b61c822") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/munnerz/goautoneg") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1m4v6bw6yf1g0kvpc46isjp0qfhx2y8gnvlnyjf637jy64613mgg")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/munnerz/goautoneg")) - (home-page "https://github.com/munnerz/goautoneg") - (synopsis #f) - (description #f) - (license license:bsd-3))) - -(define-public go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021 - (package - (name "go-github-com-pquerna-cachecontrol") - (version "0.0.0-20171018203845-0dec1b30a021") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pquerna/cachecontrol") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "14yyfhrv60rvb983rqm7s916nwvn9kcmbvnrcna2md0s3mkzs3yh")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pquerna/cachecontrol")) - (home-page "https://github.com/pquerna/cachecontrol") - (synopsis "cachecontrol: HTTP Caching Parser and Interpretation") - (description - "Package cachecontrol implements the logic for HTTP Caching -") - (license license:asl2.0))) - -(define-public go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5 - (package - (name "go-github-com-tmc-grpc-websocket-proxy") - (version "0.0.0-20190109142713-0ad062ec5ee5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/tmc/grpc-websocket-proxy") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1anw4v9wspnw9xf2z5r9w0sszwjklyanl0l85wgg6nxak9gnrqp4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/tmc/grpc-websocket-proxy")) - (home-page "https://github.com/tmc/grpc-websocket-proxy") - (synopsis "grpc-websocket-proxy") - (description - "Wrap your grpc-gateway mux with this helper to expose streaming endpoints over websockets.") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20200202164722-d101bd2416d5 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200202164722-d101bd2416d5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ksxf37b0ym21n8j29m3wgbaiw1kcjw3hgf88kipc1ry2j13l98p")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-go-etcd-io-bbolt-1.3.5 - (package - (name "go-go-etcd-io-bbolt") - (version "1.3.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/etcd-io/bbolt") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1h64gipvcg7060byv5wjlf524kqwj12p3v08kfh4ygv46vpm8p2r")))) - (build-system go-build-system) - (arguments '(#:import-path "go.etcd.io/bbolt")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20200202164722-d101bd2416d5" - ,go-golang-org-x-sys-0.0.0-20200202164722-d101bd2416d5))) - (home-page "https://go.etcd.io/bbolt") - (synopsis "bbolt") - (description - "package bbolt implements a low-level key/value store in pure Go. It supports -fully serializable transactions, ACID semantics, and lock-free MVCC with -multiple readers and a single writer. Bolt can be used for projects that -want a simple data store without the need to add large dependencies such as -Postgres or MySQL. -") - (license license:expat))) - -(define-public go-github-com-cockroachdb-datadriven-0.0.0-20190809214429-80d97fb3cbaa - (package - (name "go-github-com-cockroachdb-datadriven") - (version "0.0.0-20190809214429-80d97fb3cbaa") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cockroachdb/datadriven") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0rvavka9zhri6r50n8fy98247fl5vycb1hffjrhshsicjv1frmlp")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/cockroachdb/datadriven")) - (home-page "https://github.com/cockroachdb/datadriven") - (synopsis "Data-Driven Tests for Go") - (description - "This repository implements an extension of @url{https://github.com/golang/go/wiki/TableDrivenTests,Table-Driven Testing}. Instead of -building and iterating over a table in the test code, the input is further -separated into files (or inline strings). For certain classes of tests, this -can significantly reduce the friction involved in writing and reading these -tests.") - (license license:asl2.0))) - -(define-public go-github-com-coreos-go-semver-0.2.0 - (package - (name "go-github-com-coreos-go-semver") - (version "0.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/coreos/go-semver") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1gghi5bnqj50hfxhqc1cxmynqmh2yk9ii7ab9gsm75y5cp94ymk0")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/coreos/go-semver")) - (home-page "https://github.com/coreos/go-semver") - (synopsis "go-semver - Semantic Versioning Library") - (description - "go-semver is a @url{http://semver.org/,semantic versioning} library for Go. It lets you parse -and compare two semantic version strings.") - (license license:asl2.0))) - -(define-public go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7 - (package - (name "go-github-com-coreos-go-systemd") - (version "0.0.0-20180511133405-39ca1b05acc7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/coreos/go-systemd") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1kzqrrzqspa5qm7kwslxl3m16lqzns23c24rv474ajzwmj3ixmx1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/coreos/go-systemd")) - (home-page "https://github.com/coreos/go-systemd") - (synopsis "go-systemd") - (description "Go bindings to systemd. The project has several packages:") - (license license:asl2.0))) - -(define-public go-github-com-coreos-pkg-0.0.0-20160727233714-3ac0863d7acf - (package - (name "go-github-com-coreos-pkg") - (version "0.0.0-20160727233714-3ac0863d7acf") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/coreos/pkg") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0l5ans1ls2gknkrnhymgc0zbgg5nqjbjbqc51r611adcr0m6gg8l")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/coreos/pkg")) - (home-page "https://github.com/coreos/pkg") - (synopsis #f) - (description "a collection of go utility packages") - (license license:asl2.0))) - -(define-public go-github-com-creack-pty-1.1.7 - (package - (name "go-github-com-creack-pty") - (version "1.1.7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/creack/pty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1plwwlk1i9b80zv8zdplvv81shfyc9gf0flydnydsh5sr3ib5vrc")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/creack/pty")) - (home-page "https://github.com/creack/pty") - (synopsis "pty") - (description - "Package pty provides functions for working with Unix terminals. -") - (license license:expat))) - -(define-public go-github-com-dgrijalva-jwt-go-3.2.0+incompatible - (package - (name "go-github-com-dgrijalva-jwt-go") - (version "3.2.0+incompatible") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/dgrijalva/jwt-go") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "08m27vlms74pfy5z79w67f9lk9zkx6a9jd68k3c4msxy75ry36mp")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/dgrijalva/jwt-go")) - (home-page "https://github.com/dgrijalva/jwt-go") - (synopsis "jwt-go") - (description - "Package jwt is a Go implementation of JSON Web Tokens: @url{http://self-issued.info/docs/draft-jones-json-web-token.html,http://self-issued.info/docs/draft-jones-json-web-token.html} -") - (license license:expat))) - -(define-public go-github-com-dustin-go-humanize-0.0.0-20171111073723-bb3d318650d4 - (package - (name "go-github-com-dustin-go-humanize") - (version "0.0.0-20171111073723-bb3d318650d4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/dustin/go-humanize") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1lqd8ix3cb164j5iazjby2jpa6bdsflhy0h9mi4yldvvcvrc194c")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/dustin/go-humanize")) - (home-page "https://github.com/dustin/go-humanize") - (synopsis "Humane Units") - (description - "Package humanize converts boring ugly numbers to human-friendly strings and back. -") - (license license:expat))) - -(define-public go-golang-org-x-tools-0.0.0-20180221164845-07fd8470d635 - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20180221164845-07fd8470d635") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "193g0a1zxb9ikph7r2klc6rdqxqzfmmr8d5bcibyhsm2l63s17mx")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-github-com-kisielk-errcheck-1.1.0 - (package - (name "go-github-com-kisielk-errcheck") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kisielk/errcheck") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19vd4rxmqbk5lpiav3pf7df3yjlz0l0dwx9mn0gjq5f998iyhy6y")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kisielk/errcheck")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20180221164845-07fd8470d635" - ,go-golang-org-x-tools-0.0.0-20180221164845-07fd8470d635) - ("go-github-com-kisielk-gotool-1.0.0" - ,go-github-com-kisielk-gotool-1.0.0))) - (home-page "https://github.com/kisielk/errcheck") - (synopsis "errcheck") - (description - "errcheck is a program for checking for unchecked errors in go programs.") - (license license:expat))) - -(define-public go-github-com-gogo-protobuf-1.2.1 - (package - (name "go-github-com-gogo-protobuf") - (version "1.2.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gogo/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "06yqa6h0kw3gr5pc3qmas7f7435a96zf7iw7p0l00r2hqf6fqq6m")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/gogo/protobuf")) - (propagated-inputs - `(("go-github-com-kisielk-errcheck-1.1.0" - ,go-github-com-kisielk-errcheck-1.1.0))) - (home-page "https://github.com/gogo/protobuf") - (synopsis "Protocol Buffers for Go with Gadgets") - (description - "gogoprotobuf is a fork of @url{https://github.com/golang/protobuf,golang/protobuf} with extra code generation features.") - (license license:bsd-3))) - -(define-public go-github-com-golang-groupcache-0.0.0-20160516000752-02826c3e7903 - (package - (name "go-github-com-golang-groupcache") - (version "0.0.0-20160516000752-02826c3e7903") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/groupcache") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0w46bsllddfij66nrg8jbfjsr54birvfww8a2fj9fmgyig5syn2x")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/groupcache")) - (home-page "https://github.com/golang/groupcache") - (synopsis "groupcache") - (description - "Package groupcache provides a data loading mechanism with caching -and de-duplication that works across a set of peer processes. -") - (license license:asl2.0))) - -(define-public go-github-com-google-btree-1.0.0 - (package - (name "go-github-com-google-btree") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/btree") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ba430m9fbnagacp57krgidsyrgp3ycw5r7dj71brgp5r52g82p6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/btree")) - (home-page "https://github.com/google/btree") - (synopsis "BTree implementation for Go") - (description - "Package btree implements in-memory B-Trees of arbitrary degree. -") - (license license:asl2.0))) - -(define-public go-github-com-google-uuid-1.0.0 - (package - (name "go-github-com-google-uuid") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/uuid") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1922bjrnx66692dm0rrc1ckmznsaqx920ww4jzsds3xzrwf15mqv")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/uuid")) - (home-page "https://github.com/google/uuid") - (synopsis "uuid") - (description "Package uuid generates and inspects UUIDs. -") - (license license:bsd-3))) - -(define-public go-github-com-gorilla-websocket-0.0.0-20170926233335-4201258b820c - (package - (name "go-github-com-gorilla-websocket") - (version "0.0.0-20170926233335-4201258b820c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gorilla/websocket") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1kpdg3m46kp15ixl9ahhchhadyiblz0qpcxzylp8jhffc1rnxjb7")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/gorilla/websocket")) - (home-page "https://github.com/gorilla/websocket") - (synopsis "Gorilla WebSocket") - (description - "Package websocket implements the WebSocket protocol defined in @url{https://rfc-editor.org/rfc/rfc6455.html,RFC 6455}. -") - (license license:bsd-2))) - -(define-public go-github-com-grpc-ecosystem-go-grpc-middleware-1.0.1-0.20190118093823-f849b5445de4 - (package - (name "go-github-com-grpc-ecosystem-go-grpc-middleware") - (version "1.0.1-0.20190118093823-f849b5445de4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc-ecosystem/go-grpc-middleware") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hscypgj0nd1407jp6y4qrnrr0mrhc4wgxz9b3mj1cs3pkvi61vc")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/grpc-ecosystem/go-grpc-middleware")) - (home-page "https://github.com/grpc-ecosystem/go-grpc-middleware") - (synopsis "Go gRPC Middleware") - (description - "`grpc_middleware` is a collection of gRPC middleware packages: interceptors, helpers and tools. -") - (license license:asl2.0))) - -(define-public go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0 - (package - (name "go-github-com-grpc-ecosystem-go-grpc-prometheus") - (version "1.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc-ecosystem/go-grpc-prometheus") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1lzk54h7np32b3acidg1ggbn8ppbnns0m71gcg9d1qkkdh8zrijl")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/grpc-ecosystem/go-grpc-prometheus")) - (home-page "https://github.com/grpc-ecosystem/go-grpc-prometheus") - (synopsis "Go gRPC Interceptors for Prometheus monitoring") - (description - "@url{https://prometheus.io/,Prometheus} monitoring for your @url{https://github.com/grpc/grpc-go,gRPC Go} servers and clients.") - (license license:asl2.0))) - -(define-public go-github-com-ghodss-yaml-1.0.0 - (package - (name "go-github-com-ghodss-yaml") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/ghodss/yaml") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0skwmimpy7hlh7pva2slpcplnm912rp3igs98xnqmn859kwa5v8g")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/ghodss/yaml")) - (home-page "https://github.com/ghodss/yaml") - (synopsis "YAML marshaling and unmarshaling support for Go") - (description - "Copyright 2013 The Go Authors. All rights reserved. -Use of this source code is governed by a BSD-style -license that can be found in the LICENSE file. -") - (license #f))) - -(define-public go-github-com-rogpeppe-fastuuid-0.0.0-20150106093220-6724a57986af - (package - (name "go-github-com-rogpeppe-fastuuid") - (version "0.0.0-20150106093220-6724a57986af") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/rogpeppe/fastuuid") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12s65phfx6hxj4v0b5kj8akgrbf5mxpa101fyzw03h6hld1f70cz")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/rogpeppe/fastuuid")) - (home-page "https://github.com/rogpeppe/fastuuid") - (synopsis "fastuuid") - (description - "Package fastuuid provides fast UUID generation of 192 bit -universally unique identifiers. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20181107165924-66b7b1311ac8") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "00ny4r2bbj6rz939iy9g699acqydq7rfi6r6awn25w9i2dld9m13")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20181220203305-927f97764cc3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0np7b766gb92vbm514yhdl7cjmqvn0dxdxskd84aas2ri1fkpgw5")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-gopkg-in-resty-v1-1.12.0 - (package - (name "go-gopkg-in-resty-v1") - (version "1.12.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/resty.v1") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "062mn735rqzhha5ag07z4gz08hxzrfm2yx067jfmaaxmb6797lmp")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/resty.v1" #:unpack-path "gopkg.in/resty.v1")) - (propagated-inputs - `(("go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3" - ,go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3))) - (home-page "https://gopkg.in/resty.v1") - (synopsis "News") - (description - "Package resty provides Simple HTTP and REST client library for Go. -") - (license license:expat))) - -(define-public go-gopkg-in-yaml-v2-2.0.0-20170812160011-eb3733d160e7 - (package - (name "go-gopkg-in-yaml-v2") - (version "2.0.0-20170812160011-eb3733d160e7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v2") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1srhvcaa9db3a6xj29mkjr5kg33y71pclrlx4vcwz5m1lgb5c7q6")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) - (home-page "https://gopkg.in/yaml.v2") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language. -") - (license license:asl2.0))) - -(define-public go-github-com-grpc-ecosystem-grpc-gateway-1.9.5 - (package - (name "go-github-com-grpc-ecosystem-grpc-gateway") - (version "1.9.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc-ecosystem/grpc-gateway") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0acpbxa1i1bxcpkclkcif2macbcfrlywb58vly5pzwsj261mg58a")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/grpc-ecosystem/grpc-gateway")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.0.0-20170812160011-eb3733d160e7" - ,go-gopkg-in-yaml-v2-2.0.0-20170812160011-eb3733d160e7) - ("go-gopkg-in-resty-v1-1.12.0" ,go-gopkg-in-resty-v1-1.12.0) - ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" - ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) - ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) - ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" - ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) - ("go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8" - ,go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8) - ("go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3" - ,go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3) - ("go-github-com-rogpeppe-fastuuid-0.0.0-20150106093220-6724a57986af" - ,go-github-com-rogpeppe-fastuuid-0.0.0-20150106093220-6724a57986af) - ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-ghodss-yaml-1.0.0" ,go-github-com-ghodss-yaml-1.0.0))) - (home-page "https://github.com/grpc-ecosystem/grpc-gateway") - (synopsis "grpc-gateway") - (description - "The grpc-gateway is a plugin of the Google protocol buffers compiler -@url{https://github.com/protocolbuffers/protobuf,protoc}. -It reads protobuf service definitions and generates a reverse-proxy server which -translates a RESTful HTTP API into gRPC. This server is generated according to the -@url{https://github.com/googleapis/googleapis/raw/master/google/api/http.proto#L46,(code google.api.http)} -annotations in your service definitions.") - (license license:bsd-3))) - -(define-public go-github-com-jonboulle-clockwork-0.1.0 - (package - (name "go-github-com-jonboulle-clockwork") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/jonboulle/clockwork") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1pqxhsdavbp1n5grgyx2j6ylvql2fzn2cvpsgkc8li69dil7sibl")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/jonboulle/clockwork")) - (home-page "https://github.com/jonboulle/clockwork") - (synopsis "clockwork") - (description - "Replace uses of the @code{time} package with the @code{clockwork.Clock} interface instead.") - (license license:asl2.0))) - -(define-public go-github-com-mattn-go-isatty-0.0.4 - (package - (name "go-github-com-mattn-go-isatty") - (version "0.0.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mattn/go-isatty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0zs92j2cqaw9j8qx1sdxpv3ap0rgbs0vrvi72m40mg8aa36gd39w")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mattn/go-isatty")) - (home-page "https://github.com/mattn/go-isatty") - (synopsis "go-isatty") - (description "Package isatty implements interface to isatty -") - (license license:expat))) - -(define-public go-github-com-mattn-go-runewidth-0.0.2 - (package - (name "go-github-com-mattn-go-runewidth") - (version "0.0.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mattn/go-runewidth") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0vkrfrz3fzn5n6ix4k8s0cg0b448459sldq8bp4riavsxm932jzb")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mattn/go-runewidth")) - (home-page "https://github.com/mattn/go-runewidth") - (synopsis "go-runewidth") - (description - "This package provides functions to get fixed width of the character or string.") - (license license:expat))) - -(define-public go-github-com-olekukonko-tablewriter-0.0.0-20170122224234-a0225b3f23b5 - (package - (name "go-github-com-olekukonko-tablewriter") - (version "0.0.0-20170122224234-a0225b3f23b5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/olekukonko/tablewriter") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0bp9r6xzy6d3p7l2hjmvr25y3rp3p8c9xv1agkllkksm45ng6681")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/olekukonko/tablewriter")) - (home-page "https://github.com/olekukonko/tablewriter") - (synopsis "ASCII Table Writer") - (description "Create & Generate text based table -") - (license license:expat))) - -(define-public go-github-com-soheilhy-cmux-0.1.4 - (package - (name "go-github-com-soheilhy-cmux") - (version "0.1.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/soheilhy/cmux") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1f736g68d9vwlyfb6g0fxkr0r875369xafk30cz8kaq5niaqwv0h")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/soheilhy/cmux")) - (home-page "https://github.com/soheilhy/cmux") - (synopsis "cmux: Connection Mux") - (description - "Package cmux is a library to multiplex network connections based on -their payload. Using cmux, you can serve different protocols from the -same listener. -") - (license license:asl2.0))) - -(define-public go-github-com-spf13-pflag-1.0.1 - (package - (name "go-github-com-spf13-pflag") - (version "1.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/spf13/pflag") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0nr4mdpfhhk94hq4ymn5b2sxc47b29p1akxd8b0hx4dvdybmipb5")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/spf13/pflag")) - (home-page "https://github.com/spf13/pflag") - (synopsis "Description") - (description - "Package pflag is a drop-in replacement for Go's flag package, implementing -POSIX/GNU-style --flags. -") - (license license:bsd-3))) - -(define-public go-github-com-tmc-grpc-websocket-proxy-0.0.0-20170815181823-89b8d40f7ca8 - (package - (name "go-github-com-tmc-grpc-websocket-proxy") - (version "0.0.0-20170815181823-89b8d40f7ca8") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/tmc/grpc-websocket-proxy") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1bg6m0cycy5sww175zkbnhi9lvzb08iicc8xka8klrgaa9mc5nsk")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/tmc/grpc-websocket-proxy")) - (home-page "https://github.com/tmc/grpc-websocket-proxy") - (synopsis "grpc-websocket-proxy") - (description - "Wrap your grpc-gateway mux with this helper to expose streaming endpoints over websockets.") - (license license:expat))) - -(define-public go-github-com-urfave-cli-1.20.0 - (package - (name "go-github-com-urfave-cli") - (version "1.20.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/urfave/cli") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0y6f4sbzkiiwrxbl15biivj8c7qwxnvm3zl2dd3mw4wzg4x10ygj")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/urfave/cli")) - (home-page "https://github.com/urfave/cli") - (synopsis "cli") - (description - "Package cli provides a minimal framework for creating and organizing command line -Go applications. cli is designed to be easy to understand and write, the most simple -cli application can be written as follows: -") - (license license:expat))) - -(define-public go-github-com-xiang90-probing-0.0.0-20190116061207-43a291ad63a2 - (package - (name "go-github-com-xiang90-probing") - (version "0.0.0-20190116061207-43a291ad63a2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/xiang90/probing") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1z22ms16j5j42775mf31isanwx2pwr1d8wqw8006dczjv36qnz5i")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/xiang90/probing")) - (home-page "https://github.com/xiang90/probing") - (synopsis "Getting Started") - (description "We first need to serve the probing HTTP handler.") - (license license:expat))) - -(define-public go-go-etcd-io-bbolt-1.3.3 - (package - (name "go-go-etcd-io-bbolt") - (version "1.3.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/etcd-io/bbolt") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0dn0zngks9xiz0rrrb3911f73ghl64z84jsmzai2yfmzqr7cdkqc")))) - (build-system go-build-system) - (arguments '(#:import-path "go.etcd.io/bbolt")) - (home-page "https://go.etcd.io/bbolt") - (synopsis "bbolt") - (description - "package bbolt implements a low-level key/value store in pure Go. It supports -fully serializable transactions, ACID semantics, and lock-free MVCC with -multiple readers and a single writer. Bolt can be used for projects that -want a simple data store without the need to add large dependencies such as -Postgres or MySQL. -") - (license license:expat))) - -(define-public go-go-uber-org-atomic-1.3.2 - (package - (name "go-go-uber-org-atomic") - (version "1.3.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/uber-go/atomic") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "11pzvjys5ddjjgrv94pgk9pnip9yyb54z7idf33zk7p7xylpnsv6")))) - (build-system go-build-system) - (arguments '(#:import-path "go.uber.org/atomic")) - (home-page "https://go.uber.org/atomic") - (synopsis "atomic") - (description - "Package atomic provides simple wrappers around numerics to enforce atomic -access. -") - (license license:expat))) - -(define-public go-golang-org-x-net-0.0.0-20190813141303-74dc4d7220e7 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190813141303-74dc4d7220e7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0563yswwqknxx2gsvl0qikn0lmwalilbng8i12iw4d3v40n23s0l")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20190826190057-c7b8b68b1456 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190826190057-c7b8b68b1456") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0lqnnrx5prrvkinnhgyvzzhcyvi8x5w54rlp336xjhpslkgqn132")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-time-0.0.0-20180412165947-fbb02b2291d2 - (package - (name "go-golang-org-x-time") - (version "0.0.0-20180412165947-fbb02b2291d2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/time") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0jjqcv6rzihlgg4i797q80g1f6ch5diz2kxqh6488gwkb6nds4h4")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/time")) - (home-page "https://golang.org/x/time") - (synopsis "Go Time") - (description "This repository provides supplementary Go time packages.") - (license license:bsd-3))) - -(define-public go-google-golang-org-grpc-1.26.0 - (package - (name "go-google-golang-org-grpc") - (version "1.26.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1qsb2mcswpp3vd7i9gfvz4a3ypdwk2svhhn09nyywgb1vvw80krv")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" - ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-github-com-google-go-cmp-0.2.0" - ,go-github-com-google-go-cmp-0.2.0) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2) - ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" - ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) - ("go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473" - ,go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-gopkg-in-cheggaaa-pb-v1-1.0.25 - (package - (name "go-gopkg-in-cheggaaa-pb-v1") - (version "1.0.25") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/cheggaaa/pb.v1") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0vxqiw6f3xyv0zy3g4lksf8za0z8i0hvfpw92hqimsy84f79j3dp")))) - (build-system go-build-system) - (arguments - '(#:import-path - "gopkg.in/cheggaaa/pb.v1" - #:unpack-path - "gopkg.in/cheggaaa/pb.v1")) - (home-page "https://gopkg.in/cheggaaa/pb.v1") - (synopsis "Terminal progress bar for Go") - (description "Simple console progress bars -") - (license license:bsd-3))) - -(define-public go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489 - (package - (name "go-go-etcd-io-etcd") - (version "0.5.0-alpha.5.0.20200910180754-dd1b699fc489") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/etcd-io/etcd") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "11zkvkq7ipqi0n8y05zgn8lf7qm59xdk75x7jbxj5sflx38yfa0k")))) - (build-system go-build-system) - (arguments '(#:import-path "go.etcd.io/etcd")) - (propagated-inputs - `(("go-sigs-k8s-io-yaml-1.1.0" ,go-sigs-k8s-io-yaml-1.1.0) - ("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" - ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) - ("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) - ("go-gopkg-in-cheggaaa-pb-v1-1.0.25" - ,go-gopkg-in-cheggaaa-pb-v1-1.0.25) - ("go-google-golang-org-grpc-1.26.0" ,go-google-golang-org-grpc-1.26.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-time-0.0.0-20180412165947-fbb02b2291d2" - ,go-golang-org-x-time-0.0.0-20180412165947-fbb02b2291d2) - ("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) - ("go-golang-org-x-sys-0.0.0-20190826190057-c7b8b68b1456" - ,go-golang-org-x-sys-0.0.0-20190826190057-c7b8b68b1456) - ("go-golang-org-x-net-0.0.0-20190813141303-74dc4d7220e7" - ,go-golang-org-x-net-0.0.0-20190813141303-74dc4d7220e7) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2) - ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) - ("go-go-uber-org-multierr-1.1.0" ,go-go-uber-org-multierr-1.1.0) - ("go-go-uber-org-atomic-1.3.2" ,go-go-uber-org-atomic-1.3.2) - ("go-go-etcd-io-bbolt-1.3.3" ,go-go-etcd-io-bbolt-1.3.3) - ("go-github-com-xiang90-probing-0.0.0-20190116061207-43a291ad63a2" - ,go-github-com-xiang90-probing-0.0.0-20190116061207-43a291ad63a2) - ("go-github-com-urfave-cli-1.20.0" ,go-github-com-urfave-cli-1.20.0) - ("go-github-com-tmc-grpc-websocket-proxy-0.0.0-20170815181823-89b8d40f7ca8" - ,go-github-com-tmc-grpc-websocket-proxy-0.0.0-20170815181823-89b8d40f7ca8) - ("go-github-com-spf13-pflag-1.0.1" ,go-github-com-spf13-pflag-1.0.1) - ("go-github-com-spf13-cobra-0.0.3" ,go-github-com-spf13-cobra-0.0.3) - ("go-github-com-soheilhy-cmux-0.1.4" - ,go-github-com-soheilhy-cmux-0.1.4) - ("go-github-com-sirupsen-logrus-1.4.2" - ,go-github-com-sirupsen-logrus-1.4.2) - ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" - ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) - ("go-github-com-prometheus-client-golang-1.0.0" - ,go-github-com-prometheus-client-golang-1.0.0) - ("go-github-com-olekukonko-tablewriter-0.0.0-20170122224234-a0225b3f23b5" - ,go-github-com-olekukonko-tablewriter-0.0.0-20170122224234-a0225b3f23b5) - ("go-github-com-modern-go-reflect2-1.0.1" - ,go-github-com-modern-go-reflect2-1.0.1) - ("go-github-com-mattn-go-runewidth-0.0.2" - ,go-github-com-mattn-go-runewidth-0.0.2) - ("go-github-com-mattn-go-isatty-0.0.4" - ,go-github-com-mattn-go-isatty-0.0.4) - ("go-github-com-mattn-go-colorable-0.0.9" - ,go-github-com-mattn-go-colorable-0.0.9) - ("go-github-com-json-iterator-go-1.1.7" - ,go-github-com-json-iterator-go-1.1.7) - ("go-github-com-jonboulle-clockwork-0.1.0" - ,go-github-com-jonboulle-clockwork-0.1.0) - ("go-github-com-inconshreveable-mousetrap-1.0.0" - ,go-github-com-inconshreveable-mousetrap-1.0.0) - ("go-github-com-grpc-ecosystem-grpc-gateway-1.9.5" - ,go-github-com-grpc-ecosystem-grpc-gateway-1.9.5) - ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" - ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) - ("go-github-com-grpc-ecosystem-go-grpc-middleware-1.0.1-0.20190118093823-f849b5445de4" - ,go-github-com-grpc-ecosystem-go-grpc-middleware-1.0.1-0.20190118093823-f849b5445de4) - ("go-github-com-gorilla-websocket-0.0.0-20170926233335-4201258b820c" - ,go-github-com-gorilla-websocket-0.0.0-20170926233335-4201258b820c) - ("go-github-com-google-uuid-1.0.0" ,go-github-com-google-uuid-1.0.0) - ("go-github-com-google-btree-1.0.0" ,go-github-com-google-btree-1.0.0) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2) - ("go-github-com-golang-groupcache-0.0.0-20160516000752-02826c3e7903" - ,go-github-com-golang-groupcache-0.0.0-20160516000752-02826c3e7903) - ("go-github-com-gogo-protobuf-1.2.1" - ,go-github-com-gogo-protobuf-1.2.1) - ("go-github-com-fatih-color-1.7.0" ,go-github-com-fatih-color-1.7.0) - ("go-github-com-dustin-go-humanize-0.0.0-20171111073723-bb3d318650d4" - ,go-github-com-dustin-go-humanize-0.0.0-20171111073723-bb3d318650d4) - ("go-github-com-dgrijalva-jwt-go-3.2.0+incompatible" - ,go-github-com-dgrijalva-jwt-go-3.2.0+incompatible) - ("go-github-com-creack-pty-1.1.7" ,go-github-com-creack-pty-1.1.7) - ("go-github-com-coreos-pkg-0.0.0-20160727233714-3ac0863d7acf" - ,go-github-com-coreos-pkg-0.0.0-20160727233714-3ac0863d7acf) - ("go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7" - ,go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7) - ("go-github-com-coreos-go-semver-0.2.0" - ,go-github-com-coreos-go-semver-0.2.0) - ("go-github-com-cockroachdb-datadriven-0.0.0-20190809214429-80d97fb3cbaa" - ,go-github-com-cockroachdb-datadriven-0.0.0-20190809214429-80d97fb3cbaa) - ("go-github-com-bgentry-speakeasy-0.1.0" - ,go-github-com-bgentry-speakeasy-0.1.0))) - (home-page "https://go.etcd.io/etcd") - (synopsis "etcd") - (description - "Package main is a simple wrapper of the real etcd entrypoint package -(located at github.com/coreos/etcd/etcdmain) to ensure that etcd is still -\"go getable\"; e.g. `go get github.com/coreos/etcd` works as expected and -builds a binary in $GOBIN/etcd -") - (license license:asl2.0))) - -(define-public go-gopkg-in-natefinch-lumberjack-v2-2.0.0 - (package - (name "go-gopkg-in-natefinch-lumberjack-v2") - (version "2.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/natefinch/lumberjack.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1m2sxypk7p805jvc68padvylyx5v7cwkh5klnnxxr0340kgspf08")))) - (build-system go-build-system) - (arguments - '(#:import-path - "gopkg.in/natefinch/lumberjack.v2" - #:unpack-path - "gopkg.in/natefinch/lumberjack.v2")) - (home-page "https://gopkg.in/natefinch/lumberjack.v2") - (synopsis "lumberjack") - (description "Package lumberjack provides a rolling logger. -") - (license license:expat))) - -(define-public go-gopkg-in-square-go-jose-v2-2.2.2 - (package - (name "go-gopkg-in-square-go-jose-v2") - (version "2.2.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/square/go-jose.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1cpvfqw7pw8m8wfj8nda4kam0z48q3gp6b9a3a0wr90zv9ldszbv")))) - (build-system go-build-system) - (arguments - '(#:import-path - "gopkg.in/square/go-jose.v2" - #:unpack-path - "gopkg.in/square/go-jose.v2")) - (home-page "https://gopkg.in/square/go-jose.v2") - (synopsis "Go JOSE") - (description - "Package jose aims to provide an implementation of the Javascript Object Signing -and Encryption set of standards. It implements encryption and signing based on -the JSON Web Encryption and JSON Web Signature standards, with optional JSON -Web Token support available in a sub-package. The library supports both the -compact and full serialization formats, and has optional support for multiple -recipients. -") - (license license:asl2.0))) - -(define-public go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.15 - (package - (name "go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client") - (version "0.0.15") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes-sigs/apiserver-network-proxy") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "00ad9yjr3g1pj118xy063z7rnydkilqmvz9xf89vdva2kjqd7fal")))) - (build-system go-build-system) - (arguments - '(#:import-path - "sigs.k8s.io/apiserver-network-proxy/konnectivity-client")) - (propagated-inputs - `(("go-k8s-io-klog-v2-2.0.0" ,go-k8s-io-klog-v2-2.0.0) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-github-com-golang-protobuf-1.4.0" - ,go-github-com-golang-protobuf-1.4.0))) - (home-page - "https://sigs.k8s.io/apiserver-network-proxy/konnectivity-client") - (synopsis #f) - (description #f) - (license license:asl2.0))) - -(define-public go-k8s-io-apiserver-0.20.6 - (package - (name "go-k8s-io-apiserver") - (version "0.20.6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes/apiserver") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0b53aw2cp9i2v5kg1m2s5kwkz7525ii8vs1g7d8yc2j980aar9y3")))) - (build-system go-build-system) - (arguments '(#:import-path "k8s.io/apiserver")) - (propagated-inputs - `(("go-k8s-io-component-base-0.20.6" ,go-k8s-io-component-base-0.20.6) - ("go-k8s-io-client-go-0.20.6" ,go-k8s-io-client-go-0.20.6) - ("go-k8s-io-apimachinery-0.20.6" ,go-k8s-io-apimachinery-0.20.6) - ("go-k8s-io-api-0.20.6" ,go-k8s-io-api-0.20.6) - ("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) - ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.3" - ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.3) - ("go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.15" - ,go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.15) - ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" - ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) - ("go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd" - ,go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd) - ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) - ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) - ("go-gopkg-in-square-go-jose-v2-2.2.2" - ,go-gopkg-in-square-go-jose-v2-2.2.2) - ("go-gopkg-in-natefinch-lumberjack-v2-2.0.0" - ,go-gopkg-in-natefinch-lumberjack-v2-2.0.0) - ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) - ("go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a" - ,go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a) - ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" - ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) - ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" - ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) - ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" - ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) - ("go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0" - ,go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0) - ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) - ("go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489" - ,go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489) - ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) - ("go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5" - ,go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) - ("go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021" - ,go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822" - ,go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822) - ("go-github-com-mailru-easyjson-0.7.0" - ,go-github-com-mailru-easyjson-0.7.0) - ("go-github-com-hashicorp-golang-lru-0.5.1" - ,go-github-com-hashicorp-golang-lru-0.5.1) - ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" - ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) - ("go-github-com-gorilla-websocket-1.4.2" - ,go-github-com-gorilla-websocket-1.4.2) - ("go-github-com-googleapis-gnostic-0.4.1" - ,go-github-com-googleapis-gnostic-0.4.1) - ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) - ("go-github-com-google-gofuzz-1.1.0" - ,go-github-com-google-gofuzz-1.1.0) - ("go-github-com-google-go-cmp-0.5.2" - ,go-github-com-google-go-cmp-0.5.2) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2) - ("go-github-com-go-openapi-spec-0.19.3" - ,go-github-com-go-openapi-spec-0.19.3) - ("go-github-com-evanphx-json-patch-4.9.0+incompatible" - ,go-github-com-evanphx-json-patch-4.9.0+incompatible) - ("go-github-com-emicklei-go-restful-2.9.5+incompatible" - ,go-github-com-emicklei-go-restful-2.9.5+incompatible) - ("go-github-com-dustin-go-humanize-1.0.0" - ,go-github-com-dustin-go-humanize-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1) - ("go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f" - ,go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f) - ("go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e" - ,go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e) - ("go-github-com-coreos-go-semver-0.3.0" - ,go-github-com-coreos-go-semver-0.3.0) - ("go-github-com-coreos-go-oidc-2.1.0+incompatible" - ,go-github-com-coreos-go-oidc-2.1.0+incompatible))) - (home-page "https://k8s.io/apiserver") - (synopsis "apiserver") - (description - "Generic library for building a Kubernetes aggregated API server.") - (license license:asl2.0))) - -(define-public go-github-com-blang-semver-3.5.1+incompatible - (package - (name "go-github-com-blang-semver") - (version "3.5.1+incompatible") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/blang/semver") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "13ws259bwcibkclbr82ilhk6zadm63kxklxhk12wayklj8ghhsmy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/blang/semver")) - (home-page "https://github.com/blang/semver") - (synopsis "semver for golang") - (description - "semver is a @url{http://semver.org/,Semantic Versioning} library written in golang. It fully covers spec version @code{2.0.0}.") - (license license:expat))) - -(define-public go-github-com-prometheus-procfs-0.2.0 - (package - (name "go-github-com-prometheus-procfs") - (version "0.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/procfs") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0rkpyq1grk3qyfahnfry5qkxjg5qb10yh1l8cvm8b79nqsmdyjbm")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/procfs")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20200106162015-b016eb3dc98e" - ,go-golang-org-x-sys-0.0.0-20200106162015-b016eb3dc98e) - ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" - ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) - ("go-github-com-google-go-cmp-0.3.1" - ,go-github-com-google-go-cmp-0.3.1))) - (home-page "https://github.com/prometheus/procfs") - (synopsis "procfs") - (description - "Package procfs provides functions to retrieve system, kernel and process -metrics from the pseudo-filesystem proc. -") - (license license:asl2.0))) - -(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.3 - (package - (name "go-github-com-konsorten-go-windows-terminal-sequences") - (version "1.0.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/konsorten/go-windows-terminal-sequences") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1yrsd4s8vhjnxhwbigirymz89dn6qfjnhn28i33vvvdgf96j6ypl")))) - (build-system go-build-system) - (arguments - '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) - (home-page "https://github.com/konsorten/go-windows-terminal-sequences") - (synopsis "Windows Terminal Sequences") - (description - "This library allow for enabling Windows terminal color support for Go.") - (license license:expat))) - -(define-public go-github-com-sirupsen-logrus-1.6.0 - (package - (name "go-github-com-sirupsen-logrus") - (version "1.6.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sirupsen/logrus") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1zf9is1yxxnna0d1pyag2m9ziy3l27zb2j92p9msm1gx5jjrvzzj")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/sirupsen/logrus")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894" - ,go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894) - ("go-github-com-stretchr-testify-1.2.2" - ,go-github-com-stretchr-testify-1.2.2) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.3" - ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.3) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/sirupsen/logrus") - (synopsis "Logrus") - (description - "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. -") - (license license:expat))) - -(define-public go-go-uber-org-atomic-1.4.0 - (package - (name "go-go-uber-org-atomic") - (version "1.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/uber-go/atomic") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0c6yzx15c20719xii3dm0vyjd8i9jx45m0wh5yp1zf29b0gbljcy")))) - (build-system go-build-system) - (arguments '(#:import-path "go.uber.org/atomic")) - (home-page "https://go.uber.org/atomic") - (synopsis "atomic") - (description - "Package atomic provides simple wrappers around numerics to enforce atomic -access. -") - (license license:expat))) - -(define-public go-go-uber-org-multierr-1.1.0 - (package - (name "go-go-uber-org-multierr") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/uber-go/multierr") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1slfc6syvw8cvr6rbrjsy6ja5w8gsx0f8aq8qm16rp2x5c2pj07w")))) - (build-system go-build-system) - (arguments '(#:import-path "go.uber.org/multierr")) - (home-page "https://go.uber.org/multierr") - (synopsis "multierr") - (description - "Package multierr allows combining one or more errors together. -") - (license license:expat))) - -(define-public go-go-uber-org-zap-1.10.0 - (package - (name "go-go-uber-org-zap") - (version "1.10.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/uber-go/zap") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "10hdzr1rghwbsl6bbd30779dx44fh9mg9pq8d2cgqlknqxxpvpvr")))) - (build-system go-build-system) - (arguments '(#:import-path "go.uber.org/zap")) - (home-page "https://go.uber.org/zap") - (synopsis "â\x9a¡ zap") - (description "Package zap provides fast, structured, leveled logging. -") - (license license:expat))) - -(define-public go-github-com-golang-mock-1.4.1 - (package - (name "go-github-com-golang-mock") - (version "1.4.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/mock") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1zb4n285mv85dh3y2f8fqbs30h2dhzw7vbczr6z0zg2gqr6vzg0q")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/mock")) - (propagated-inputs - `(("go-rsc-io-quote-v3-3.1.0" ,go-rsc-io-quote-v3-3.1.0) - ("go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262" - ,go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262))) - (home-page "https://github.com/golang/mock") - (synopsis "gomock") - (description - "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It -integrates well with Go's built-in @code{testing} package, but can be used in other -contexts too.") - (license license:asl2.0))) - -(define-public go-github-com-golang-protobuf-1.3.4 - (package - (name "go-github-com-golang-protobuf") - (version "1.3.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12dclmj2if8l0069fby4psrpqby7p810dr1dr63nwx93g9jhvkmx")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20200301022130-244492dfa37a - (package - (name "go-golang-org-x-net") - (version "0.0.0-20200301022130-244492dfa37a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0vm2q44phz4vjnzq9428rjk58c82fxf003whczp7c9ryn9fazh7s")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20200304193943-95d2e580d8eb - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20200304193943-95d2e580d8eb") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0f46657xsdc12lr29ksqg80fp0j8v2iqgihzh788avcj5cmhnqyl")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) - ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" - ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) - ("go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b" - ,go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b) - ("go-golang-org-x-mod-0.2.0" ,go-golang-org-x-mod-0.2.0))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-google-golang-org-genproto-0.0.0-20200305110556-506484158171 - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20200305110556-506484158171") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19h7sxkfjcrkm7majd0pyzzirdnk1qlsxc3h5zklhm234d8jg407")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" - ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-golang-protobuf-1.3.3" - ,go-github-com-golang-protobuf-1.3.3))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-cloud-google-com-go-0.54.0 - (package - (name "go-cloud-google-com-go") - (version "0.54.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-cloud-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ilqqymrphg546c66jc0npd48dlr88wbgrg462h1jgm2ykbnq1ba")))) - (build-system go-build-system) - (arguments '(#:import-path "cloud.google.com/go")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.1-2020.1.3" - ,go-honnef-co-go-tools-0.0.1-2020.1.3) - ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) - ("go-google-golang-org-genproto-0.0.0-20200305110556-506484158171" - ,go-google-golang-org-genproto-0.0.0-20200305110556-506484158171) - ("go-google-golang-org-api-0.20.0" ,go-google-golang-org-api-0.20.0) - ("go-golang-org-x-tools-0.0.0-20200304193943-95d2e580d8eb" - ,go-golang-org-x-tools-0.0.0-20200304193943-95d2e580d8eb) - ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) - ("go-golang-org-x-sys-0.0.0-20200302150141-5c8b2ff67527" - ,go-golang-org-x-sys-0.0.0-20200302150141-5c8b2ff67527) - ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" - ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) - ("go-golang-org-x-net-0.0.0-20200301022130-244492dfa37a" - ,go-golang-org-x-net-0.0.0-20200301022130-244492dfa37a) - ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" - ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) - ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) - ("go-github-com-jstemmer-go-junit-report-0.9.1" - ,go-github-com-jstemmer-go-junit-report-0.9.1) - ("go-github-com-googleapis-gax-go-v2-2.0.5" - ,go-github-com-googleapis-gax-go-v2-2.0.5) - ("go-github-com-google-pprof-0.0.0-20200229191704-1ebb73c60ed3" - ,go-github-com-google-pprof-0.0.0-20200229191704-1ebb73c60ed3) - ("go-github-com-google-martian-2.1.0+incompatible" - ,go-github-com-google-martian-2.1.0+incompatible) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.3.4" - ,go-github-com-golang-protobuf-1.3.4) - ("go-github-com-golang-mock-1.4.1" ,go-github-com-golang-mock-1.4.1) - ("go-cloud-google-com-go-storage-1.6.0" - ,go-cloud-google-com-go-storage-1.6.0) - ("go-cloud-google-com-go-pubsub-1.2.0" - ,go-cloud-google-com-go-pubsub-1.2.0) - ("go-cloud-google-com-go-datastore-1.1.0" - ,go-cloud-google-com-go-datastore-1.1.0) - ("go-cloud-google-com-go-bigquery-1.4.0" - ,go-cloud-google-com-go-bigquery-1.4.0))) - (home-page "https://cloud.google.com/go") - (synopsis "Google Cloud Client Libraries for Go") - (description - "Package cloud is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -of sub-packages. -") - (license license:asl2.0))) - -(define-public go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7 - (package - (name "go-github-com-gregjones-httpcache") - (version "0.0.0-20180305231024-9cad4c3443a7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gregjones/httpcache") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0wjdwcwqqcx2d5y68qvhg6qyj977il5ijmnn9h9cd6wjbdy0ay6s")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/gregjones/httpcache")) - (home-page "https://github.com/gregjones/httpcache") - (synopsis "httpcache") - (description - "Package httpcache provides a http.RoundTripper implementation that works as a -mostly RFC-compliant cache for http responses. -") - (license license:expat))) - -(define-public go-github-com-imdario-mergo-0.3.5 - (package - (name "go-github-com-imdario-mergo") - (version "0.3.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/imdario/mergo") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1mvgn89vp39gcpvhiq4n7nw5ipj7fk6h03jgc6fjwgvwvss213pb")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/imdario/mergo")) - (home-page "https://github.com/imdario/mergo") - (synopsis "Mergo") - (description - "This package provides a helper to merge structs and maps in Golang. Useful for configuration default values, avoiding messy if-statements. -") - (license license:bsd-3))) - -(define-public go-github-com-peterbourgon-diskv-2.0.1+incompatible - (package - (name "go-github-com-peterbourgon-diskv") - (version "2.0.1+incompatible") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/peterbourgon/diskv") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1mxpa5aad08x30qcbffzk80g9540wvbca4blc1r2qyzl65b8929b")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/peterbourgon/diskv")) - (home-page "https://github.com/peterbourgon/diskv") - (synopsis "What is diskv?") - (description - "Diskv (disk-vee) is a simple, persistent key-value store written in the Go -language. It starts with an incredibly simple API for storing arbitrary data on -a filesystem by key, and builds several layers of performance-enhancing -abstraction on top. The end result is a conceptually simple, but highly -performant, disk-backed storage system.") - (license license:expat))) - -(define-public go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20201002170205-7f63de1d35b0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1dr89jfs4dmpr3jqfshqqvfpzzdx4r76nkzhrvmixfrmn6wxrnd1")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" - ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) - ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" - ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e - (package - (name "go-golang-org-x-time") - (version "0.0.0-20200630173020-3af7569d3a1e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/time") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "05hqhw3vlssi499y6m41zgdp1yyjsw2kj95ahymlw6pkhsssh2vq")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/time")) - (home-page "https://golang.org/x/time") - (synopsis "Go Time") - (description "This repository provides supplementary Go time packages.") - (license license:bsd-3))) - -(define-public go-k8s-io-api-0.20.6 - (package - (name "go-k8s-io-api") - (version "0.20.6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes/api") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0mm6a91a4nrlsvnfcbgn2574vdwxf1nxpgrd5avklh8mym2ngimw")))) - (build-system go-build-system) - (arguments '(#:import-path "k8s.io/api")) - (propagated-inputs - `(("go-k8s-io-apimachinery-0.20.6" ,go-k8s-io-apimachinery-0.20.6) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2))) - (home-page "https://k8s.io/api") - (synopsis "api") - (description - "Schema of the external API types that are served by the Kubernetes API server.") - (license license:asl2.0))) - -(define-public go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96 - (package - (name "go-github-com-docker-spdystream") - (version "0.0.0-20160310174837-449fdfce4d96") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/moby/spdystream") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1412cpiis971iq1kxrirzirhj2708ispjh0x0dh879b66x8507sl")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/docker/spdystream")) - (home-page "https://github.com/docker/spdystream") - (synopsis "SpdyStream") - (description - "This package provides a multiplexed stream library using spdy") - (license license:asl2.0))) - -(define-public go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153 - (package - (name "go-github-com-elazarl-goproxy") - (version "0.0.0-20180725130230-947c36da3153") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/elazarl/goproxy") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0lmsnr5xmda89wig8sw62llg6acjb5caghz5jmdhnm85rm6rnssk")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/elazarl/goproxy")) - (home-page "https://github.com/elazarl/goproxy") - (synopsis "Introduction") - (description - "Taken from $GOROOT/src/pkg/net/http/chunked -needed to write https responses to client. -") - (license license:bsd-3))) - -(define-public go-github-com-evanphx-json-patch-4.9.0+incompatible - (package - (name "go-github-com-evanphx-json-patch") - (version "4.9.0+incompatible") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/evanphx/json-patch") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1r88qpzjxsx8skij9s5pi4a5qcv4bm18vq8sy21gpwgzp3qf6qzx")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/evanphx/json-patch")) - (home-page "https://github.com/evanphx/json-patch") - (synopsis "JSON-Patch") - (description - "@code{jsonpatch} is a library which provides functionality for both applying -@url{http://tools.ietf.org/html/rfc6902,RFC6902 JSON patches} against documents, as -well as for calculating & applying @url{https://tools.ietf.org/html/rfc7396,RFC7396 JSON merge patches}.") - (license license:bsd-3))) - -(define-public go-github-com-google-gofuzz-1.1.0 - (package - (name "go-github-com-google-gofuzz") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/gofuzz") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0si2fiigj45vr4jnw4grjhls7nw56wkwinnn93gqbl9ng9ynw8rx")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/gofuzz")) - (home-page "https://github.com/google/gofuzz") - (synopsis "gofuzz") - (description - "Package fuzz is a library for populating go objects with random values. -") - (license license:asl2.0))) - -(define-public go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f - (package - (name "go-github-com-mxk-go-flowrate") - (version "0.0.0-20140419014527-cca7078d478f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mxk/go-flowrate") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0zqs39923ja0yypdmiqk6x8pgmfs3ms5x5sl1dqv9z6zyx2xy541")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mxk/go-flowrate")) - (home-page "https://github.com/mxk/go-flowrate") - (synopsis #f) - (description #f) - (license license:bsd-3))) - -(define-public go-github-com-onsi-ginkgo-1.11.0 - (package - (name "go-github-com-onsi-ginkgo") - (version "1.11.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/onsi/ginkgo") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1vxmb5k89bq50m2kzcw5l3bdvci4czpifkgxd4nbq1yzv5ir03kp")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/onsi/ginkgo")) - (home-page "https://github.com/onsi/ginkgo") - (synopsis "Ginkgo 2.0 Release Candidate is available!") - (description "Ginkgo is a BDD-style testing framework for Golang -") - (license license:expat))) - -(define-public go-github-com-fsnotify-fsnotify-1.4.7 - (package - (name "go-github-com-fsnotify-fsnotify") - (version "1.4.7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/fsnotify/fsnotify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/fsnotify/fsnotify")) - (home-page "https://github.com/fsnotify/fsnotify") - (synopsis "File system notifications for Go") - (description - "Package fsnotify provides a platform-independent interface for file system notifications. -") - (license license:bsd-3))) - -(define-public go-github-com-hpcloud-tail-1.0.0 - (package - (name "go-github-com-hpcloud-tail") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hpcloud/tail") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1njpzc0pi1acg5zx9y6vj9xi6ksbsc5d387rd6904hy6rh2m6kn0")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hpcloud/tail")) - (home-page "https://github.com/hpcloud/tail") - (synopsis "Go package for tail-ing files") - (description - "This package provides a Go package striving to emulate the features of the BSD @code{tail} program.") - (license license:expat))) - -(define-public go-github-com-onsi-ginkgo-1.6.0 - (package - (name "go-github-com-onsi-ginkgo") - (version "1.6.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/onsi/ginkgo") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0x0gc89vgq38xhgmi2h22bhr73cf2gmk42g89nz89k8dgg9hhr25")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/onsi/ginkgo")) - (home-page "https://github.com/onsi/ginkgo") - (synopsis "Ginkgo 2.0 Release Candidate is available!") - (description "Ginkgo is a BDD-style testing framework for Golang -") - (license license:expat))) - -(define-public go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd - (package - (name "go-golang-org-x-net") - (version "0.0.0-20180906233101-161cd47e91fd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0254ld010iijygbzykib2vags1dc0wlmcmhgh4jl8iny159lhbcv")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20180909124046-d0be0721c37e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "081wyvfnlf842dqg03raxfz6lldlxpmyh1prix9lmrrm65arxb12")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-gopkg-in-fsnotify-v1-1.4.7 - (package - (name "go-gopkg-in-fsnotify-v1") - (version "1.4.7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/fsnotify.v1") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) - (build-system go-build-system) - (arguments - '(#:import-path - "gopkg.in/fsnotify.v1" - #:unpack-path - "gopkg.in/fsnotify.v1")) - (home-page "https://gopkg.in/fsnotify.v1") - (synopsis "File system notifications for Go") - (description - "Package fsnotify provides a platform-independent interface for file system notifications. -") - (license license:bsd-3))) - -(define-public go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7 - (package - (name "go-gopkg-in-tomb-v1") - (version "1.0.0-20141024135613-dd632973f1e7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/tomb.v1") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1lqmq1ag7s4b3gc3ddvr792c5xb5k6sfn0cchr3i2s7f1c231zjv")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/tomb.v1" #:unpack-path "gopkg.in/tomb.v1")) - (home-page "https://gopkg.in/tomb.v1") - (synopsis "Installation and usage") - (description - "The tomb package offers a conventional API for clean goroutine termination. -") - (license license:bsd-3))) - -(define-public go-github-com-onsi-gomega-1.7.0 - (package - (name "go-github-com-onsi-gomega") - (version "1.7.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/onsi/gomega") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "09j6wq425wgzzsbwm9ckhfgl2capv3yyqbrf45qyrjwkzm49i02y")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/onsi/gomega")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1) - ("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" - ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) - ("go-gopkg-in-fsnotify-v1-1.4.7" ,go-gopkg-in-fsnotify-v1-1.4.7) - ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e" - ,go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e) - ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" - ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) - ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" - ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) - ("go-github-com-onsi-ginkgo-1.6.0" ,go-github-com-onsi-ginkgo-1.6.0) - ("go-github-com-hpcloud-tail-1.0.0" ,go-github-com-hpcloud-tail-1.0.0) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0) - ("go-github-com-fsnotify-fsnotify-1.4.7" - ,go-github-com-fsnotify-fsnotify-1.4.7))) - (home-page "https://github.com/onsi/gomega") - (synopsis ": a BDD Testing Framework for Golang") - (description - "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library. -") - (license license:expat))) - -(define-public go-gopkg-in-inf-v0-0.9.1 - (package - (name "go-gopkg-in-inf-v0") - (version "0.9.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/inf.v0") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "00k5iqjcp371fllqxncv7jkf80hn1zww92zm78cclbcn4ybigkng")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/inf.v0" #:unpack-path "gopkg.in/inf.v0")) - (home-page "https://gopkg.in/inf.v0") - (synopsis #f) - (description - "Package inf (type inf.Dec) implements \"infinite-precision\" decimal -arithmetic. -\"Infinite precision\" describes two characteristics: practically unlimited -precision for decimal number representation and no support for calculating -with any specific fixed precision. -(Although there is no practical limit on precision, inf.Dec can only -represent finite decimals.) -") - (license license:bsd-3))) - -(define-public go-github-com-nytimes-gziphandler-0.0.0-20170623195520-56545f4a5d46 - (package - (name "go-github-com-nytimes-gziphandler") - (version "0.0.0-20170623195520-56545f4a5d46") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/nytimes/gziphandler") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fwk9wz6vrvq72f2gq8jhvd1nvv6grqgwrjq66vjpm0726pxar72")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/NYTimes/gziphandler")) - (home-page "https://github.com/NYTimes/gziphandler") - (synopsis "Gzip Handler") - (description - "This is a tiny Go package which wraps HTTP handlers to transparently gzip the -response body, for clients which support it. Although it's usually simpler to -leave that to a reverse proxy (like nginx or Varnish), this package is useful -when that's undesirable.") - (license license:asl2.0))) - -(define-public go-github-com-asaskevich-govalidator-0.0.0-20190424111038-f61b66f89f4a - (package - (name "go-github-com-asaskevich-govalidator") - (version "0.0.0-20190424111038-f61b66f89f4a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/asaskevich/govalidator") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1jzjd9ak4byb83bwhbyrrdclnhrgglyxcbr4d4qh39a6ywvcijm5")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/asaskevich/govalidator")) - (home-page "https://github.com/asaskevich/govalidator") - (synopsis "govalidator") - (description - "Package govalidator is package of validators and sanitizers for strings, structs and collections. -") - (license license:expat))) - -(define-public go-github-com-emicklei-go-restful-0.0.0-20170410110728-ff4f55a20633 - (package - (name "go-github-com-emicklei-go-restful") - (version "0.0.0-20170410110728-ff4f55a20633") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/emicklei/go-restful") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1v5lj5142abz3gvbygp6xghpdx4ps2lwswl8559ivaidahwnc21c")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/emicklei/go-restful")) - (home-page "https://github.com/emicklei/go-restful") - (synopsis "go-restful") - (description - "Package restful , a lean package for creating REST-style WebServices without magic. -") - (license license:expat))) - -(define-public go-github-com-ghodss-yaml-0.0.0-20150909031657-73d445a93680 - (package - (name "go-github-com-ghodss-yaml") - (version "0.0.0-20150909031657-73d445a93680") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/ghodss/yaml") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0pg53ky4sy3sp9j4n7vgf1p3gw4nbckwqfldcmmi9rf13kjh0mr7")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/ghodss/yaml")) - (home-page "https://github.com/ghodss/yaml") - (synopsis "YAML marshaling and unmarshaling support for Go") - (description - "Copyright 2013 The Go Authors. All rights reserved. -Use of this source code is governed by a BSD-style -license that can be found in the LICENSE file. -") - (license #f))) - -(define-public go-github-com-go-openapi-jsonreference-0.19.3 - (package - (name "go-github-com-go-openapi-jsonreference") - (version "0.19.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/go-openapi/jsonreference") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ln21xai74fynwmi4ck5j0c70yszjy96wfagc705y8khjxsgncsw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/go-openapi/jsonreference")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) - ("go-golang-org-x-net-0.0.0-20190827160401-ba9fcec4b297" - ,go-golang-org-x-net-0.0.0-20190827160401-ba9fcec4b297) - ("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0) - ("go-github-com-go-openapi-jsonpointer-0.19.3" - ,go-github-com-go-openapi-jsonpointer-0.19.3) - ("go-github-com-puerkitobio-urlesc-0.0.0-20170810143723-de5bf2ad4578" - ,go-github-com-puerkitobio-urlesc-0.0.0-20170810143723-de5bf2ad4578) - ("go-github-com-puerkitobio-purell-1.1.1" - ,go-github-com-puerkitobio-purell-1.1.1))) - (home-page "https://github.com/go-openapi/jsonreference") - (synopsis "gojsonreference") - (description - "@url{https://raw.githubusercontent.com/go-openapi/jsonreference/master/LICENSE,(img (@ (src http://img.shields.io/badge/license-Apache%20v2-orange.svg) (alt license)))} @url{http://godoc.org/github.com/go-openapi/jsonreference,(img (@ (src https://godoc.org/github.com/go-openapi/jsonreference?status.svg=) (alt GoDoc)))} -An implementation of JSON Reference - Go language") - (license license:asl2.0))) - -(define-public go-github-com-mailru-easyjson-0.0.0-20190626092158-b2ccc519800e - (package - (name "go-github-com-mailru-easyjson") - (version "0.0.0-20190626092158-b2ccc519800e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mailru/easyjson") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0q85h383mhbkcjm2vqm72bi8n2252fv3c56q3lclzb8n2crnjcdk")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mailru/easyjson")) - (home-page "https://github.com/mailru/easyjson") - (synopsis "easyjson") - (description - "Package easyjson contains marshaler/unmarshaler interfaces and helper functions. -") - (license license:expat))) - -(define-public go-github-com-go-openapi-jsonpointer-0.19.3 - (package - (name "go-github-com-go-openapi-jsonpointer") - (version "0.19.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/go-openapi/jsonpointer") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1m4bb7c5y8ss2s8wl50k7lsk84nl4lcldkbkphrfdl21y51gz4jr")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/go-openapi/jsonpointer")) - (propagated-inputs - `(("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0) - ("go-github-com-mailru-easyjson-0.0.0-20190626092158-b2ccc519800e" - ,go-github-com-mailru-easyjson-0.0.0-20190626092158-b2ccc519800e) - ("go-github-com-go-openapi-swag-0.19.5" - ,go-github-com-go-openapi-swag-0.19.5))) - (home-page "https://github.com/go-openapi/jsonpointer") - (synopsis "gojsonpointer") - (description - "@url{https://raw.githubusercontent.com/go-openapi/jsonpointer/master/LICENSE,(img (@ (src http://img.shields.io/badge/license-Apache%20v2-orange.svg) (alt license)))} @url{http://godoc.org/github.com/go-openapi/jsonpointer,(img (@ (src https://godoc.org/github.com/go-openapi/jsonpointer?status.svg=) (alt GoDoc)))} -An implementation of JSON Pointer - Go language") - (license license:asl2.0))) - -(define-public go-github-com-puerkitobio-purell-1.1.1 - (package - (name "go-github-com-puerkitobio-purell") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/PuerkitoBio/purell") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0c525frsxmalrn55hzzsxy17ng8avkd40ga0wxfw9haxsdjgqdqy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/PuerkitoBio/purell")) - (home-page "https://github.com/PuerkitoBio/purell") - (synopsis "Purell") - (description - "Package purell offers URL normalization as described on the wikipedia page: -@url{http://en.wikipedia.org/wiki/URL_normalization,http://en.wikipedia.org/wiki/URL_normalization} -") - (license license:bsd-3))) - -(define-public go-github-com-puerkitobio-urlesc-0.0.0-20170810143723-de5bf2ad4578 - (package - (name "go-github-com-puerkitobio-urlesc") - (version "0.0.0-20170810143723-de5bf2ad4578") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/PuerkitoBio/urlesc") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0n0srpqwbaan1wrhh2b7ysz543pjs1xw2rghvqyffg9l0g8kzgcw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/PuerkitoBio/urlesc")) - (home-page "https://github.com/PuerkitoBio/urlesc") - (synopsis "urlesc") - (description - "Package urlesc implements query escaping as per @url{https://rfc-editor.org/rfc/rfc3986.html,RFC 3986}. -It contains some parts of the net/url package, modified so as to allow -some reserved characters incorrectly escaped by net/url. -See @url{https://github.com/golang/go/issues/5684,https://github.com/golang/go/issues/5684} -") - (license license:bsd-3))) - -(define-public go-github-com-go-openapi-swag-0.19.2 - (package - (name "go-github-com-go-openapi-swag") - (version "0.19.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/go-openapi/swag") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1mlxlajx2p9wjm72rmqjrx5g49q2sn04y45s3nrykkf6jqlq1v4z")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/go-openapi/swag")) - (propagated-inputs - `(("go-github-com-sourcegraph-go-diff-0.5.1" - ,go-github-com-sourcegraph-go-diff-0.5.1) - ("go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422" - ,go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422) - ("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) - ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" - ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) - ("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0) - ("go-github-com-mailru-easyjson-0.0.0-20190614124828-94de47d64c63" - ,go-github-com-mailru-easyjson-0.0.0-20190614124828-94de47d64c63) - ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/go-openapi/swag") - (synopsis "Swag") - (description - "Package swag contains a bunch of helper functions for go-openapi and go-swagger projects. -") - (license license:asl2.0))) - -(define-public go-github-com-go-openapi-jsonpointer-0.19.2 - (package - (name "go-github-com-go-openapi-jsonpointer") - (version "0.19.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/go-openapi/jsonpointer") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1s3cqf4svrbygvvpvi7hf122szsgihas52vqh0bba3avf4w03g9n")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/go-openapi/jsonpointer")) - (propagated-inputs - `(("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0) - ("go-github-com-go-openapi-swag-0.19.2" - ,go-github-com-go-openapi-swag-0.19.2))) - (home-page "https://github.com/go-openapi/jsonpointer") - (synopsis "gojsonpointer") - (description - "@url{https://raw.githubusercontent.com/go-openapi/jsonpointer/master/LICENSE,(img (@ (src http://img.shields.io/badge/license-Apache%20v2-orange.svg) (alt license)))} @url{http://godoc.org/github.com/go-openapi/jsonpointer,(img (@ (src https://godoc.org/github.com/go-openapi/jsonpointer?status.svg=) (alt GoDoc)))} -An implementation of JSON Pointer - Go language") - (license license:asl2.0))) - -(define-public go-github-com-go-openapi-jsonreference-0.19.2 - (package - (name "go-github-com-go-openapi-jsonreference") - (version "0.19.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/go-openapi/jsonreference") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0v933yvcwyzzlpdxwb9204ki7lls2rwfd96ww2i901ndvz37kdf8")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/go-openapi/jsonreference")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) - ("go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980" - ,go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980) - ("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0) - ("go-github-com-go-openapi-jsonpointer-0.19.2" - ,go-github-com-go-openapi-jsonpointer-0.19.2) - ("go-github-com-puerkitobio-urlesc-0.0.0-20170810143723-de5bf2ad4578" - ,go-github-com-puerkitobio-urlesc-0.0.0-20170810143723-de5bf2ad4578) - ("go-github-com-puerkitobio-purell-1.1.1" - ,go-github-com-puerkitobio-purell-1.1.1))) - (home-page "https://github.com/go-openapi/jsonreference") - (synopsis "gojsonreference") - (description - "@url{https://raw.githubusercontent.com/go-openapi/jsonreference/master/LICENSE,(img (@ (src http://img.shields.io/badge/license-Apache%20v2-orange.svg) (alt license)))} @url{http://godoc.org/github.com/go-openapi/jsonreference,(img (@ (src https://godoc.org/github.com/go-openapi/jsonreference?status.svg=) (alt GoDoc)))} -An implementation of JSON Reference - Go language") - (license license:asl2.0))) - -(define-public go-github-com-kr-pty-1.1.5 - (package - (name "go-github-com-kr-pty") - (version "1.1.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/pty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1bpq77b90z72cv9h66dvxsg2j197ylpgcps23xsjfbs752bykfw1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/pty")) - (home-page "https://github.com/kr/pty") - (synopsis "pty") - (description - "Package pty is a wrapper for github.com/creack/pty, which provides -functions for working with Unix terminals. -") - (license license:expat))) - -(define-public go-github-com-stretchr-objx-0.2.0 - (package - (name "go-github-com-stretchr-objx") - (version "0.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/objx") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0pcdvakxgddaiwcdj73ra4da05a3q4cgwbpm2w75ycq4kzv8ij8k")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/objx")) - (propagated-inputs - `(("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/stretchr/objx") - (synopsis "Objx") - (description - "Objx - Go package for dealing with maps, slices, JSON and other data. -") - (license license:expat))) - -(define-public go-golang-org-x-crypto-0.0.0-20190611184440-5c40567a22f8 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20190611184440-5c40567a22f8") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "17g8fb9vy2sqq8vgz8jdvf6c6d2290gm2qs0i4yzsd86mgn4dlrg")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" - ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) - ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" - ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20190827160401-ba9fcec4b297 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190827160401-ba9fcec4b297") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1hbqvy6r0s5h0dpdqw8fynl3cq0acin3iyqki9xvl5r8h33yb9bx")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20190616124812-15dcb6c0061f - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190616124812-15dcb6c0061f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1qfkkysbyn44nyx57cq8mmw1cjgpxi9gi9xrf6kljmd9c1416zdd")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20190614205625-5aca471b1d59 - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20190614205625-5aca471b1d59") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1i4h3q83w4y9s065w0wnnnwlssy69jbrj08k47ppsa8dnv85kyrf")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" - ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-github-com-go-openapi-spec-0.19.3 - (package - (name "go-github-com-go-openapi-spec") - (version "0.19.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/go-openapi/spec") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1dikq1p550vj5i9y918s075pgk0fxkixxk3fb70ri7wkm51s6nlj")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/go-openapi/spec")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) - ("go-golang-org-x-tools-0.0.0-20190614205625-5aca471b1d59" - ,go-golang-org-x-tools-0.0.0-20190614205625-5aca471b1d59) - ("go-golang-org-x-sys-0.0.0-20190616124812-15dcb6c0061f" - ,go-golang-org-x-sys-0.0.0-20190616124812-15dcb6c0061f) - ("go-golang-org-x-net-0.0.0-20190827160401-ba9fcec4b297" - ,go-golang-org-x-net-0.0.0-20190827160401-ba9fcec4b297) - ("go-golang-org-x-crypto-0.0.0-20190611184440-5c40567a22f8" - ,go-golang-org-x-crypto-0.0.0-20190611184440-5c40567a22f8) - ("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0) - ("go-github-com-stretchr-objx-0.2.0" - ,go-github-com-stretchr-objx-0.2.0) - ("go-github-com-kr-pty-1.1.5" ,go-github-com-kr-pty-1.1.5) - ("go-github-com-go-openapi-swag-0.19.5" - ,go-github-com-go-openapi-swag-0.19.5) - ("go-github-com-go-openapi-jsonreference-0.19.2" - ,go-github-com-go-openapi-jsonreference-0.19.2) - ("go-github-com-go-openapi-jsonpointer-0.19.3" - ,go-github-com-go-openapi-jsonpointer-0.19.3))) - (home-page "https://github.com/go-openapi/spec") - (synopsis "OAI object model") - (description "The object model for OpenAPI specification documents.") - (license license:asl2.0))) - -(define-public go-github-com-mailru-easyjson-0.0.0-20190614124828-94de47d64c63 - (package - (name "go-github-com-mailru-easyjson") - (version "0.0.0-20190614124828-94de47d64c63") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mailru/easyjson") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1km0kkh7cf7dlz5pqi9yr1wamv0167y41cyv1dbrcxfdmwgpfd23")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mailru/easyjson")) - (home-page "https://github.com/mailru/easyjson") - (synopsis "easyjson") - (description - "Package easyjson contains marshaler/unmarshaler interfaces and helper functions. -") - (license license:expat))) - -(define-public go-github-com-shurcool-go-0.0.0-20180423040247-9e1955d9fb6e - (package - (name "go-github-com-shurcool-go") - (version "0.0.0-20180423040247-9e1955d9fb6e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/shurcooL/go") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1lad9bvs75jsn61cfza19739c2c057k0bqxg2b4xz3z3l4w1mkqj")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/shurcooL/go")) - (home-page "https://github.com/shurcooL/go") - (synopsis "go") - (description "Common Go code.") - (license license:expat))) - -(define-public go-github-com-shurcool-go-goon-0.0.0-20170922171312-37c2f522c041 - (package - (name "go-github-com-shurcool-go-goon") - (version "0.0.0-20170922171312-37c2f522c041") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/shurcooL/go-goon") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "17ac6j6msdcxbmfhq6pxhw5z339b87bd6ciln9909drjv2szyxqv")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/shurcooL/go-goon")) - (home-page "https://github.com/shurcooL/go-goon") - (synopsis "goon") - (description - "Package goon is a deep pretty printer with Go-like notation. It implements the goon specification. -") - (license license:expat))) - -(define-public go-sourcegraph-com-sqs-pbtypes-0.0.0-20180604144634-d3ebe8f20ae4 - (package - (name "go-sourcegraph-com-sqs-pbtypes") - (version "0.0.0-20180604144634-d3ebe8f20ae4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sqs/pbtypes") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0vcyqq4jc2jv1wh288qdxv51qxcfj07lvnlf37pjicsd2yrb7yrr")))) - (build-system go-build-system) - (arguments '(#:import-path "sourcegraph.com/sqs/pbtypes")) - (home-page "https://sourcegraph.com/sqs/pbtypes") - (synopsis "pbtypes") - (description - "Package pbtypes contains protocol buffer types (Timestamp, Void, -etc.) and related helpers. -") - (license license:asl2.0))) - -(define-public go-github-com-sourcegraph-go-diff-0.5.1 - (package - (name "go-github-com-sourcegraph-go-diff") - (version "0.5.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sourcegraph/go-diff") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0acabccjmxgdvhyd7fr0krlf7ymc7mngdq292n03hfys9nrnb0b2")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/sourcegraph/go-diff")) - (propagated-inputs - `(("go-sourcegraph-com-sqs-pbtypes-0.0.0-20180604144634-d3ebe8f20ae4" - ,go-sourcegraph-com-sqs-pbtypes-0.0.0-20180604144634-d3ebe8f20ae4) - ("go-github-com-shurcool-go-goon-0.0.0-20170922171312-37c2f522c041" - ,go-github-com-shurcool-go-goon-0.0.0-20170922171312-37c2f522c041) - ("go-github-com-shurcool-go-0.0.0-20180423040247-9e1955d9fb6e" - ,go-github-com-shurcool-go-0.0.0-20180423040247-9e1955d9fb6e) - ("go-github-com-gogo-protobuf-1.1.1" - ,go-github-com-gogo-protobuf-1.1.1))) - (home-page "https://github.com/sourcegraph/go-diff") - (synopsis "go-diff") - (description "Diff parser and printer for Go.") - (license license:expat))) - -(define-public go-github-com-go-openapi-swag-0.19.5 - (package - (name "go-github-com-go-openapi-swag") - (version "0.19.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/go-openapi/swag") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1z34vqc5yz6rzvarrvlhkimxx33p74iaxb28l1mv716njvlsmjhg")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/go-openapi/swag")) - (propagated-inputs - `(("go-github-com-sourcegraph-go-diff-0.5.1" - ,go-github-com-sourcegraph-go-diff-0.5.1) - ("go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422" - ,go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422) - ("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) - ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" - ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) - ("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0) - ("go-github-com-mailru-easyjson-0.0.0-20190614124828-94de47d64c63" - ,go-github-com-mailru-easyjson-0.0.0-20190614124828-94de47d64c63) - ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/go-openapi/swag") - (synopsis "Swag") - (description - "Package swag contains a bunch of helper functions for go-openapi and go-swagger projects. -") - (license license:asl2.0))) - -(define-public go-github-com-google-uuid-1.1.1 - (package - (name "go-github-com-google-uuid") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/uuid") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hfxcf9frkb57k6q0rdkrmnfs78ms21r1qfk9fhlqga2yh5xg8zb")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/uuid")) - (home-page "https://github.com/google/uuid") - (synopsis "uuid") - (description "Package uuid generates and inspects UUIDs. -") - (license license:bsd-3))) - -(define-public go-github-com-docopt-docopt-go-0.0.0-20180111231733-ee0de3bc6815 - (package - (name "go-github-com-docopt-docopt-go") - (version "0.0.0-20180111231733-ee0de3bc6815") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/docopt/docopt.go") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hlra7rmi5pmd7d93rv56ahiy4qkgmq8a6mz0jpadvbi5qh8lq6j")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/docopt/docopt-go")) - (home-page "https://github.com/docopt/docopt-go") - (synopsis "docopt-go") - (description - "Package docopt parses command-line arguments based on a help message. -") - (license license:expat))) - -(define-public go-github-com-googleapis-gnostic-0.4.1 - (package - (name "go-github-com-googleapis-gnostic") - (version "0.4.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/gnostic") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fw28m3ach5pkcdh4ijd6s7w09j0n88p6mah3hp0k8918jsc6mj9")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/googleapis/gnostic")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) - ("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" - ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) - ("go-github-com-kr-pretty-0.2.0" ,go-github-com-kr-pretty-0.2.0) - ("go-github-com-golang-protobuf-1.3.3" - ,go-github-com-golang-protobuf-1.3.3) - ("go-github-com-docopt-docopt-go-0.0.0-20180111231733-ee0de3bc6815" - ,go-github-com-docopt-docopt-go-0.0.0-20180111231733-ee0de3bc6815))) - (home-page "https://github.com/googleapis/gnostic") - (synopsis "â¨\x81 gnostic") - (description - "Gnostic is a tool for building better REST APIs through knowledge. -") - (license license:asl2.0))) - -(define-public go-github-com-munnerz-goautoneg-0.0.0-20120707110453-a547fc61f48d - (package - (name "go-github-com-munnerz-goautoneg") - (version "0.0.0-20120707110453-a547fc61f48d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/munnerz/goautoneg") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19khhn5xhqv1yp7d6k987gh5w5rhrjnp4p0c6fyrd8z6lzz5h9qi")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/munnerz/goautoneg")) - (home-page "https://github.com/munnerz/goautoneg") - (synopsis #f) - (description #f) - (license license:bsd-3))) - -(define-public go-github-com-onsi-ginkgo-0.0.0-20170829012221-11459a886d9c - (package - (name "go-github-com-onsi-ginkgo") - (version "0.0.0-20170829012221-11459a886d9c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/onsi/ginkgo") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1nswc1fnrrs792qbix05h91bilj8rr3wxmxgwi97p2gjk0r292zh")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/onsi/ginkgo")) - (home-page "https://github.com/onsi/ginkgo") - (synopsis "Ginkgo 2.0 Release Candidate is available!") - (description "Ginkgo is a BDD-style testing framework for Golang -") - (license license:expat))) - -(define-public go-github-com-onsi-gomega-0.0.0-20170829124025-dcabb60a477c - (package - (name "go-github-com-onsi-gomega") - (version "0.0.0-20170829124025-dcabb60a477c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/onsi/gomega") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1775lv5jbsgv3ghq5v2827slqlhqdadrzc1nkpq4y0hdv2qzrgkm")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/onsi/gomega")) - (home-page "https://github.com/onsi/gomega") - (synopsis ": a BDD Testing Framework for Golang") - (description - "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library. -") - (license license:expat))) - -(define-public go-github-com-spf13-pflag-0.0.0-20170130214245-9ff6c6923cff - (package - (name "go-github-com-spf13-pflag") - (version "0.0.0-20170130214245-9ff6c6923cff") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/spf13/pflag") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0mfrxzyl8x7araa126lh8l3sihbbgfbzgkrg3v3cx7y4n3wrsqvn")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/spf13/pflag")) - (home-page "https://github.com/spf13/pflag") - (synopsis "Description") - (description - "Package pflag is a drop-in replacement for Go's flag package, implementing -POSIX/GNU-style --flags. -") - (license license:bsd-3))) - -(define-public go-k8s-io-gengo-0.0.0-20200413195148-3a45101e95ac - (package - (name "go-k8s-io-gengo") - (version "0.0.0-20200413195148-3a45101e95ac") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes/gengo") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0x46jq6rv8z0y96231rfgzvfscgy5hp5aacid3r93zy0rq9r37g6")))) - (build-system go-build-system) - (arguments '(#:import-path "k8s.io/gengo")) - (home-page "https://k8s.io/gengo") - (synopsis "gengo") - (description - "This package provides a package for generating things based on go files. This mechanism was first used -in Kubernetes and is split out here for ease of reuse and maintainability.") - (license license:asl2.0))) - -(define-public go-sigs-k8s-io-structured-merge-diff-v4-4.0.2 - (package - (name "go-sigs-k8s-io-structured-merge-diff-v4") - (version "4.0.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes-sigs/structured-merge-diff") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1z60sw6nrlzyddyx5pvh6afwf8jvmn8c2zw15hklq17iyvj3lj7a")))) - (build-system go-build-system) - (arguments - '(#:import-path - "sigs.k8s.io/structured-merge-diff/v4" - #:unpack-path - "sigs.k8s.io/structured-merge-diff/v4")) - (propagated-inputs - `(("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0) - ("go-github-com-modern-go-reflect2-1.0.1" - ,go-github-com-modern-go-reflect2-1.0.1) - ("go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd" - ,go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd) - ("go-github-com-json-iterator-go-1.1.6" - ,go-github-com-json-iterator-go-1.1.6) - ("go-github-com-google-gofuzz-1.0.0" - ,go-github-com-google-gofuzz-1.0.0) - ("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1))) - (home-page "https://sigs.k8s.io/structured-merge-diff/v4") - (synopsis "Structured Merge and Diff") - (description - "This repo contains code which implements the Kubernetes \"apply\" operation.") - (license license:asl2.0))) - -(define-public go-sigs-k8s-io-yaml-1.1.0 - (package - (name "go-sigs-k8s-io-yaml") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes-sigs/yaml") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1p7hvjdr5jsyk7nys1g1pmgnf3ys6n320i6hds85afppk81k01kb")))) - (build-system go-build-system) - (arguments '(#:import-path "sigs.k8s.io/yaml")) - (home-page "https://sigs.k8s.io/yaml") - (synopsis "YAML marshaling and unmarshaling support for Go") - (description - "kubernetes-sigs/yaml is a permanent fork of @url{https://github.com/ghodss/yaml,ghodss/yaml}.") - (license #f))) - -(define-public go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd - (package - (name "go-k8s-io-kube-openapi") - (version "0.0.0-20201113171705-d219536bb9fd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes/kube-openapi") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "11d420a3rxznh3f6x5a6xp22zjwv6jfq4w1gb6srqb4vn9rhgrka")))) - (build-system go-build-system) - (arguments '(#:import-path "k8s.io/kube-openapi")) - (propagated-inputs - `(("go-sigs-k8s-io-yaml-1.1.0" ,go-sigs-k8s-io-yaml-1.1.0) - ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.2" - ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.2) - ("go-k8s-io-klog-v2-2.0.0" ,go-k8s-io-klog-v2-2.0.0) - ("go-k8s-io-gengo-0.0.0-20200413195148-3a45101e95ac" - ,go-k8s-io-gengo-0.0.0-20200413195148-3a45101e95ac) - ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) - ("go-golang-org-x-net-0.0.0-20200324143707-d3edc9973b7e" - ,go-golang-org-x-net-0.0.0-20200324143707-d3edc9973b7e) - ("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0) - ("go-github-com-spf13-pflag-0.0.0-20170130214245-9ff6c6923cff" - ,go-github-com-spf13-pflag-0.0.0-20170130214245-9ff6c6923cff) - ("go-github-com-onsi-gomega-0.0.0-20170829124025-dcabb60a477c" - ,go-github-com-onsi-gomega-0.0.0-20170829124025-dcabb60a477c) - ("go-github-com-onsi-ginkgo-0.0.0-20170829012221-11459a886d9c" - ,go-github-com-onsi-ginkgo-0.0.0-20170829012221-11459a886d9c) - ("go-github-com-munnerz-goautoneg-0.0.0-20120707110453-a547fc61f48d" - ,go-github-com-munnerz-goautoneg-0.0.0-20120707110453-a547fc61f48d) - ("go-github-com-mitchellh-mapstructure-1.1.2" - ,go-github-com-mitchellh-mapstructure-1.1.2) - ("go-github-com-json-iterator-go-1.1.6" - ,go-github-com-json-iterator-go-1.1.6) - ("go-github-com-googleapis-gnostic-0.4.1" - ,go-github-com-googleapis-gnostic-0.4.1) - ("go-github-com-google-uuid-1.1.1" ,go-github-com-google-uuid-1.1.1) - ("go-github-com-google-gofuzz-1.0.0" - ,go-github-com-google-gofuzz-1.0.0) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.3.3" - ,go-github-com-golang-protobuf-1.3.3) - ("go-github-com-go-openapi-swag-0.19.5" - ,go-github-com-go-openapi-swag-0.19.5) - ("go-github-com-go-openapi-spec-0.19.3" - ,go-github-com-go-openapi-spec-0.19.3) - ("go-github-com-go-openapi-jsonreference-0.19.3" - ,go-github-com-go-openapi-jsonreference-0.19.3) - ("go-github-com-go-openapi-jsonpointer-0.19.3" - ,go-github-com-go-openapi-jsonpointer-0.19.3) - ("go-github-com-ghodss-yaml-0.0.0-20150909031657-73d445a93680" - ,go-github-com-ghodss-yaml-0.0.0-20150909031657-73d445a93680) - ("go-github-com-emicklei-go-restful-0.0.0-20170410110728-ff4f55a20633" - ,go-github-com-emicklei-go-restful-0.0.0-20170410110728-ff4f55a20633) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1) - ("go-github-com-asaskevich-govalidator-0.0.0-20190424111038-f61b66f89f4a" - ,go-github-com-asaskevich-govalidator-0.0.0-20190424111038-f61b66f89f4a) - ("go-github-com-nytimes-gziphandler-0.0.0-20170623195520-56545f4a5d46" - ,go-github-com-nytimes-gziphandler-0.0.0-20170623195520-56545f4a5d46))) - (home-page "https://k8s.io/kube-openapi") - (synopsis "Kube OpenAPI") - (description - "This repo is the home for Kubernetes OpenAPI discovery spec generation. The goal -is to support a subset of OpenAPI features to satisfy kubernetes use-cases but -implement that subset with little to no assumption about the structure of the -code or routes. Thus, there should be no kubernetes specific code in this repo.") - (license license:asl2.0))) - -(define-public go-sigs-k8s-io-structured-merge-diff-v4-4.0.3 - (package - (name "go-sigs-k8s-io-structured-merge-diff-v4") - (version "4.0.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes-sigs/structured-merge-diff") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1jv60bkk0z437bsz5ldjyc006k20njmpl0xfl8p3g1q0bx0fkypa")))) - (build-system go-build-system) - (arguments - '(#:import-path - "sigs.k8s.io/structured-merge-diff/v4" - #:unpack-path - "sigs.k8s.io/structured-merge-diff/v4")) - (propagated-inputs - `(("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0) - ("go-github-com-modern-go-reflect2-1.0.1" - ,go-github-com-modern-go-reflect2-1.0.1) - ("go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd" - ,go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd) - ("go-github-com-json-iterator-go-1.1.6" - ,go-github-com-json-iterator-go-1.1.6) - ("go-github-com-google-gofuzz-1.0.0" - ,go-github-com-google-gofuzz-1.0.0) - ("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1))) - (home-page "https://sigs.k8s.io/structured-merge-diff/v4") - (synopsis "Structured Merge and Diff") - (description - "This repo contains code which implements the Kubernetes \"apply\" operation.") - (license license:asl2.0))) - -(define-public go-gopkg-in-yaml-v2-2.2.8 - (package - (name "go-gopkg-in-yaml-v2") - (version "2.2.8") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1inf7svydzscwv9fcjd2rm61a4xjk6jkswknybmns2n58shimapw")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v2") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language. -") - (license license:asl2.0))) - -(define-public go-sigs-k8s-io-yaml-1.2.0 - (package - (name "go-sigs-k8s-io-yaml") - (version "1.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes-sigs/yaml") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "059a1chkd6afyvqszrx7h93k6cgik3ia92x29f5whpwi66461pzq")))) - (build-system go-build-system) - (arguments '(#:import-path "sigs.k8s.io/yaml")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://sigs.k8s.io/yaml") - (synopsis "YAML marshaling and unmarshaling support for Go") - (description - "kubernetes-sigs/yaml is a permanent fork of @url{https://github.com/ghodss/yaml,ghodss/yaml}.") - (license #f))) - -(define-public go-k8s-io-apimachinery-0.20.6 - (package - (name "go-k8s-io-apimachinery") - (version "0.20.6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes/apimachinery") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "16952v7zjk3pdyw5r3wy28qkcfx3risid0847pwdw8gmalwxr237")))) - (build-system go-build-system) - (arguments '(#:import-path "k8s.io/apimachinery")) - (propagated-inputs - `(("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) - ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.3" - ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.3) - ("go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd" - ,go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd) - ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) - ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) - ("go-gopkg-in-inf-v0-0.9.1" ,go-gopkg-in-inf-v0-0.9.1) - ("go-google-golang-org-protobuf-1.25.0" - ,go-google-golang-org-protobuf-1.25.0) - ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) - ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" - ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) - ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" - ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-onsi-gomega-1.7.0" ,go-github-com-onsi-gomega-1.7.0) - ("go-github-com-onsi-ginkgo-1.11.0" ,go-github-com-onsi-ginkgo-1.11.0) - ("go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f" - ,go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f) - ("go-github-com-modern-go-reflect2-1.0.1" - ,go-github-com-modern-go-reflect2-1.0.1) - ("go-github-com-json-iterator-go-1.1.10" - ,go-github-com-json-iterator-go-1.1.10) - ("go-github-com-hashicorp-golang-lru-0.5.1" - ,go-github-com-hashicorp-golang-lru-0.5.1) - ("go-github-com-googleapis-gnostic-0.4.1" - ,go-github-com-googleapis-gnostic-0.4.1) - ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) - ("go-github-com-google-gofuzz-1.1.0" - ,go-github-com-google-gofuzz-1.1.0) - ("go-github-com-google-go-cmp-0.5.2" - ,go-github-com-google-go-cmp-0.5.2) - ("go-github-com-golang-protobuf-1.4.3" - ,go-github-com-golang-protobuf-1.4.3) - ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" - ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2) - ("go-github-com-fsnotify-fsnotify-1.4.9" - ,go-github-com-fsnotify-fsnotify-1.4.9) - ("go-github-com-evanphx-json-patch-4.9.0+incompatible" - ,go-github-com-evanphx-json-patch-4.9.0+incompatible) - ("go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153" - ,go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153) - ("go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96" - ,go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://k8s.io/apimachinery") - (synopsis "apimachinery") - (description - "Scheme, typing, encoding, decoding, and conversion packages for Kubernetes and Kubernetes-like API objects.") - (license license:asl2.0))) - -(define-public go-k8s-io-client-go-0.20.6 - (package - (name "go-k8s-io-client-go") - (version "0.20.6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes/client-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fpz56pfadbfp8mlzmzicfmlgk5zqbk2rdwnr8c8h6ypjd5xjcvz")))) - (build-system go-build-system) - (arguments '(#:import-path "k8s.io/client-go")) - (propagated-inputs - `(("go-k8s-io-apimachinery-0.20.6" ,go-k8s-io-apimachinery-0.20.6) - ("go-k8s-io-api-0.20.6" ,go-k8s-io-api-0.20.6) - ("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) - ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" - ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) - ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) - ("go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e" - ,go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e) - ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" - ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) - ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" - ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) - ("go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0" - ,go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) - ("go-github-com-peterbourgon-diskv-2.0.1+incompatible" - ,go-github-com-peterbourgon-diskv-2.0.1+incompatible) - ("go-github-com-imdario-mergo-0.3.5" - ,go-github-com-imdario-mergo-0.3.5) - ("go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7" - ,go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7) - ("go-github-com-googleapis-gnostic-0.4.1" - ,go-github-com-googleapis-gnostic-0.4.1) - ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) - ("go-github-com-google-gofuzz-1.1.0" - ,go-github-com-google-gofuzz-1.1.0) - ("go-github-com-google-go-cmp-0.5.2" - ,go-github-com-google-go-cmp-0.5.2) - ("go-github-com-golang-protobuf-1.4.3" - ,go-github-com-golang-protobuf-1.4.3) - ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" - ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2) - ("go-github-com-evanphx-json-patch-4.9.0+incompatible" - ,go-github-com-evanphx-json-patch-4.9.0+incompatible) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1) - ("go-github-com-azure-go-autorest-autorest-adal-0.9.5" - ,go-github-com-azure-go-autorest-autorest-adal-0.9.5) - ("go-github-com-azure-go-autorest-autorest-0.11.1" - ,go-github-com-azure-go-autorest-autorest-0.11.1) - ("go-cloud-google-com-go-0.54.0" ,go-cloud-google-com-go-0.54.0))) - (home-page "https://k8s.io/client-go") - (synopsis "client-go") - (description - "Go clients for talking to a @url{http://kubernetes.io/,kubernetes} cluster.") - (license license:asl2.0))) - -(define-public go-k8s-io-component-base-0.20.6 - (package - (name "go-k8s-io-component-base") - (version "0.20.6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes/component-base") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1987vm5lhbnn4ynrpzdgz3873lp78664cpdpkbv9jwnhzqdhpyhf")))) - (build-system go-build-system) - (arguments '(#:import-path "k8s.io/component-base")) - (propagated-inputs - `(("go-k8s-io-client-go-0.20.6" ,go-k8s-io-client-go-0.20.6) - ("go-k8s-io-apimachinery-0.20.6" ,go-k8s-io-apimachinery-0.20.6) - ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" - ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) - ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) - ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) - ("go-go-uber-org-multierr-1.1.0" ,go-go-uber-org-multierr-1.1.0) - ("go-go-uber-org-atomic-1.4.0" ,go-go-uber-org-atomic-1.4.0) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) - ("go-github-com-sirupsen-logrus-1.6.0" - ,go-github-com-sirupsen-logrus-1.6.0) - ("go-github-com-prometheus-procfs-0.2.0" - ,go-github-com-prometheus-procfs-0.2.0) - ("go-github-com-prometheus-common-0.10.0" - ,go-github-com-prometheus-common-0.10.0) - ("go-github-com-prometheus-client-model-0.2.0" - ,go-github-com-prometheus-client-model-0.2.0) - ("go-github-com-prometheus-client-golang-1.7.1" - ,go-github-com-prometheus-client-golang-1.7.1) - ("go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd" - ,go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd) - ("go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369" - ,go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369) - ("go-github-com-google-go-cmp-0.5.2" - ,go-github-com-google-go-cmp-0.5.2) - ("go-github-com-go-logr-logr-0.2.0" ,go-github-com-go-logr-logr-0.2.0) - ("go-github-com-blang-semver-3.5.1+incompatible" - ,go-github-com-blang-semver-3.5.1+incompatible))) - (home-page "https://k8s.io/component-base") - (synopsis "component-base") - (description - "Implement KEP 32: @url{https://github.com/kubernetes/enhancements/blob/master/keps/sig-cluster-lifecycle/wgs/783-component-base/README.md,https://github.com/kubernetes/enhancements/blob/master/keps/sig-cluster-lifecycle/wgs/783-component-base/README.md}") - (license license:asl2.0))) - -(define-public go-github-com-kr-pretty-0.2.0 - (package - (name "go-github-com-kr-pretty") - (version "0.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/pretty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ywbfzz1h3a3qd8rpkiqwi1dm4w8ls9ijb4x1b7567grns9f0vnp")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/pretty")) - (propagated-inputs - `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) - (home-page "https://github.com/kr/pretty") - (synopsis #f) - (description - "Package pretty provides pretty-printing for Go values. This is -useful during debugging, to avoid wrapping long output lines in -the terminal. -") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20201112073958-5cba982894dd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "08dvnwmi2p4slmhyx7gzkmzfp51mmnkzi0ngwhvv0vip1s3s3zjc")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20201110150050-8816d57aaa9a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0cbfam4w9jr5gib43v3s2r5j8mhd3hl6ks3azwsahaff6idggg20")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.24.0" - ,go-google-golang-org-protobuf-1.24.0) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-golang-protobuf-1.4.1" - ,go-github-com-golang-protobuf-1.4.1))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-k8s-io-cri-api-0.20.6 - (package - (name "go-k8s-io-cri-api") - (version "0.20.6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes/cri-api") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0yp4rfxjn4h78z4sbmwhcqm8mva9bsvsc5jky2qa76npp0hycjhx")))) - (build-system go-build-system) - (arguments '(#:import-path "k8s.io/cri-api")) - (propagated-inputs - `(("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" - ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) - ("go-google-golang-org-protobuf-1.25.0" - ,go-google-golang-org-protobuf-1.25.0) - ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) - ("go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a" - ,go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a) - ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) - ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" - ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) - ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" - ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-kr-pretty-0.2.0" ,go-github-com-kr-pretty-0.2.0) - ("go-github-com-google-go-cmp-0.5.2" - ,go-github-com-google-go-cmp-0.5.2) - ("go-github-com-golang-protobuf-1.4.3" - ,go-github-com-golang-protobuf-1.4.3) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://k8s.io/cri-api") - (synopsis "Purpose") - (description - "This repository contains the definitions for the Container Runtime Interface (CRI). -CRI is a plugin interface which enables kubelet to use a wide variety of container runtimes, -without the need to recompile. CRI consists of a protocol buffers and gRPC API.") - (license license:asl2.0))) - -(define-public go-github-com-go-logr-logr-0.2.0 - (package - (name "go-github-com-go-logr-logr") - (version "0.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/go-logr/logr") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "06xh4pw53z38vyi300mgpnr4pkqgknw9xakdyk1xzqfg9zd60d7d")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/go-logr/logr")) - (home-page "https://github.com/go-logr/logr") - (synopsis "A minimal logging API for Go") - (description - "Package logr defines a general-purpose logging API and abstract interfaces -to back that API. Packages in the Go ecosystem can depend on this package, -while callers can implement logging with whatever backend is appropriate. -") - (license license:asl2.0))) - -(define-public go-k8s-io-klog-v2-2.4.0 - (package - (name "go-k8s-io-klog-v2") - (version "2.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes/klog") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1zjih6bgdalga5hqaa2fwwidslq6lv358gkj88a8wwj7w253wc8c")))) - (build-system go-build-system) - (arguments - '(#:import-path "k8s.io/klog/v2" #:unpack-path "k8s.io/klog/v2")) - (propagated-inputs - `(("go-github-com-go-logr-logr-0.2.0" - ,go-github-com-go-logr-logr-0.2.0))) - (home-page "https://k8s.io/klog/v2") - (synopsis "klog") - (description - "Package klog implements logging analogous to the Google-internal C++ INFO/ERROR/V setup. -It provides functions Info, Warning, Error, Fatal, plus formatting variants such as -Infof. It also provides V-style logging controlled by the -v and -vmodule=file=2 flags. -") - (license license:asl2.0))) - -(define-public go-github-com-spf13-afero-1.2.2 - (package - (name "go-github-com-spf13-afero") - (version "1.2.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/spf13/afero") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0j9r65qgd58324m85lkl49vk9dgwd62g7dwvkfcm3k6i9dc555a9")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/spf13/afero")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0))) - (home-page "https://github.com/spf13/afero") - (synopsis "Overview") - (description - "This package provides a FileSystem Abstraction System for Go") - (license license:asl2.0))) - -(define-public go-github-com-go-logr-logr-0.1.0 - (package - (name "go-github-com-go-logr-logr") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/go-logr/logr") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0fhijjhxz4n2j5i24ckzv8r9kri3v44jdyklgbqjfq0xm7izqg14")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/go-logr/logr")) - (home-page "https://github.com/go-logr/logr") - (synopsis "A minimal logging API for Go") - (description - "Package logr defines a general-purpose logging API and abstract interfaces -to back that API. Packages in the Go ecosystem can depend on this package, -while callers can implement logging with whatever backend is appropriate. -") - (license license:asl2.0))) - -(define-public go-k8s-io-klog-v2-2.0.0 - (package - (name "go-k8s-io-klog-v2") - (version "2.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes/klog") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "09vqm0n5l64lzpk3xqm4njbncnphx52qk21gwx8nsgyivlxx1n8g")))) - (build-system go-build-system) - (arguments - '(#:import-path "k8s.io/klog/v2" #:unpack-path "k8s.io/klog/v2")) - (propagated-inputs - `(("go-github-com-go-logr-logr-0.1.0" - ,go-github-com-go-logr-logr-0.1.0))) - (home-page "https://k8s.io/klog/v2") - (synopsis "klog") - (description - "Package klog implements logging analogous to the Google-internal C++ INFO/ERROR/V setup. -It provides functions Info, Warning, Error, Fatal, plus formatting variants such as -Infof. It also provides V-style logging controlled by the -v and -vmodule=file=2 flags. -") - (license license:asl2.0))) - -(define-public go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920 - (package - (name "go-k8s-io-utils") - (version "0.0.0-20201110183641-67b214c5f920") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kubernetes/utils") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19rc9v5xin0a8qbf25my3rd0jd74cin2mk2a38j2dwplqy3s9crl")))) - (build-system go-build-system) - (arguments '(#:import-path "k8s.io/utils")) - (propagated-inputs - `(("go-k8s-io-klog-v2-2.0.0" ,go-k8s-io-klog-v2-2.0.0) - ("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0) - ("go-github-com-spf13-afero-1.2.2" ,go-github-com-spf13-afero-1.2.2) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://k8s.io/utils") - (synopsis "Utils") - (description - "This package provides a set of Go libraries that provide low-level, kubernetes-independent packages -supplementing the @url{https://golang.org/pkg/#stdlib,Go standard libs}.") - (license license:asl2.0))) - -(define-public go-golang-org-x-tools-0.0.0-20181030221726-6c7e314b6563 - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20181030221726-6c7e314b6563") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1m1n6r8v6mrlh0yvlz3qxz4s7jc7nis0zf3dfl1i6hqh5xblkwnw")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-github-com-kisielk-errcheck-1.2.0 - (package - (name "go-github-com-kisielk-errcheck") - (version "1.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kisielk/errcheck") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0am6g10ipdxw84byscm7shda654882wjcbinq5c4696m6mhi2qrd")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kisielk/errcheck")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20181030221726-6c7e314b6563" - ,go-golang-org-x-tools-0.0.0-20181030221726-6c7e314b6563))) - (home-page "https://github.com/kisielk/errcheck") - (synopsis "errcheck") - (description - "errcheck is a program for checking for unchecked errors in go programs.") - (license license:expat))) - -(define-public go-github-com-gogo-protobuf-1.3.1 - (package - (name "go-github-com-gogo-protobuf") - (version "1.3.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gogo/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0x77x64sxjgfhmbijqfzmj8h4ar25l2w97h01q3cqs1wk7zfnkhp")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/gogo/protobuf")) - (propagated-inputs - `(("go-github-com-kisielk-gotool-1.0.0" - ,go-github-com-kisielk-gotool-1.0.0) - ("go-github-com-kisielk-errcheck-1.2.0" - ,go-github-com-kisielk-errcheck-1.2.0))) - (home-page "https://github.com/gogo/protobuf") - (synopsis "Protocol Buffers for Go with Gadgets") - (description - "gogoprotobuf is a fork of @url{https://github.com/golang/protobuf,golang/protobuf} with extra code generation features.") - (license license:bsd-3))) - -(define-public go-github-com-gogo-googleapis-1.3.2 - (package - (name "go-github-com-gogo-googleapis") - (version "1.3.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gogo/googleapis") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "10670qprmk151n6pa1yclr89kgrvmalzvkq221xqbid83iv59s2h")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/gogo/googleapis")) - (propagated-inputs - `(("go-github-com-gogo-protobuf-1.3.1" - ,go-github-com-gogo-protobuf-1.3.1))) - (home-page "https://github.com/gogo/googleapis") - (synopsis "Google APIs generated by gogoprotobuf") - (description - "The @url{https://github.com/gogo/grpc-example,grpc-example} includes an example usage of this repository.") - (license license:asl2.0))) - -(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d - (package - (name "go-github-com-cpuguy83-go-md2man-v2") - (version "2.0.0-20190314233015-f79a8a8ca69d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cpuguy83/go-md2man") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) - (propagated-inputs - `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" - ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) - ("go-github-com-russross-blackfriday-v2-2.0.1" - ,go-github-com-russross-blackfriday-v2-2.0.1) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0))) - (home-page "https://github.com/cpuguy83/go-md2man") - (synopsis "go-md2man") - (description "Converts markdown into roff (man pages).") - (license license:expat))) - -(define-public go-github-com-urfave-cli-1.22.1 - (package - (name "go-github-com-urfave-cli") - (version "1.22.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/urfave/cli") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "04ymak18flqlfcn8lycmg8r3931al8dvr8f1cg9n4yjaskmg72v8")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/urfave/cli")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) - ("go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d" - ,go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d) - ("go-github-com-burntsushi-toml-0.3.1" - ,go-github-com-burntsushi-toml-0.3.1))) - (home-page "https://github.com/urfave/cli") - (synopsis "cli") - (description - "Package cli provides a minimal framework for creating and organizing command line -Go applications. cli is designed to be easy to understand and write, the most simple -cli application can be written as follows: -") - (license license:expat))) - -(define-public go-google-golang-org-grpc-1.27.1 - (package - (name "go-google-golang-org-grpc") - (version "1.27.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "09phrrsafgq6hnbw8cawvx44bdpk1p584fys17x1bwn0j0451zzs")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" - ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-github-com-google-go-cmp-0.2.0" - ,go-github-com-google-go-cmp-0.2.0) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2) - ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" - ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) - ("go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473" - ,go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-github-com-containerd-containerd-1.5.8 - (package - (name "go-github-com-containerd-containerd") - (version "1.5.8") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/containerd") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18lzmpbhbk1kq1nwdp6zcxb577kp425l2ikcmb45jcwgqdwzla6l")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/containerd")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) - ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) - ("go-github-com-golang-protobuf-1.3.5" - ,go-github-com-golang-protobuf-1.3.5) - ("go-github-com-gogo-googleapis-1.3.2" - ,go-github-com-gogo-googleapis-1.3.2) - ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" - ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) - ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) - ("go-k8s-io-cri-api-0.20.6" ,go-k8s-io-cri-api-0.20.6) - ("go-k8s-io-component-base-0.20.6" ,go-k8s-io-component-base-0.20.6) - ("go-k8s-io-client-go-0.20.6" ,go-k8s-io-client-go-0.20.6) - ("go-k8s-io-apiserver-0.20.6" ,go-k8s-io-apiserver-0.20.6) - ("go-k8s-io-apimachinery-0.20.6" ,go-k8s-io-apimachinery-0.20.6) - ("go-k8s-io-api-0.20.6" ,go-k8s-io-api-0.20.6) - ("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) - ("go-golang-org-x-sys-0.0.0-20210426230700-d19ff857e887" - ,go-golang-org-x-sys-0.0.0-20210426230700-d19ff857e887) - ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" - ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) - ("go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110" - ,go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110) - ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) - ("go-github-com-tchap-go-patricia-2.2.6+incompatible" - ,go-github-com-tchap-go-patricia-2.2.6+incompatible) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-sirupsen-logrus-1.8.1" - ,go-github-com-sirupsen-logrus-1.8.1) - ("go-github-com-satori-go-uuid-1.2.0" - ,go-github-com-satori-go-uuid-1.2.0) - ("go-github-com-prometheus-client-golang-1.7.1" - ,go-github-com-prometheus-client-golang-1.7.1) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-pelletier-go-toml-1.8.1" - ,go-github-com-pelletier-go-toml-1.8.1) - ("go-github-com-opencontainers-selinux-1.8.2" - ,go-github-com-opencontainers-selinux-1.8.2) - ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417" - ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417) - ("go-github-com-opencontainers-runc-1.0.2" - ,go-github-com-opencontainers-runc-1.0.2) - ("go-github-com-opencontainers-image-spec-1.0.1" - ,go-github-com-opencontainers-image-spec-1.0.1) - ("go-github-com-opencontainers-go-digest-1.0.0" - ,go-github-com-opencontainers-go-digest-1.0.0) - ("go-github-com-moby-sys-symlink-0.1.0" - ,go-github-com-moby-sys-symlink-0.1.0) - ("go-github-com-moby-sys-mountinfo-0.4.1" - ,go-github-com-moby-sys-mountinfo-0.4.1) - ("go-github-com-moby-locker-1.0.1" ,go-github-com-moby-locker-1.0.1) - ("go-github-com-klauspost-compress-1.11.13" - ,go-github-com-klauspost-compress-1.11.13) - ("go-github-com-imdario-mergo-0.3.12" - ,go-github-com-imdario-mergo-0.3.12) - ("go-github-com-hashicorp-go-multierror-1.0.0" - ,go-github-com-hashicorp-go-multierror-1.0.0) - ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" - ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) - ("go-github-com-google-uuid-1.2.0" ,go-github-com-google-uuid-1.2.0) - ("go-github-com-google-go-cmp-0.5.5" - ,go-github-com-google-go-cmp-0.5.5) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2) - ("go-github-com-fsnotify-fsnotify-1.4.9" - ,go-github-com-fsnotify-fsnotify-1.4.9) - ("go-github-com-emicklei-go-restful-2.9.5+incompatible" - ,go-github-com-emicklei-go-restful-2.9.5+incompatible) - ("go-github-com-docker-go-units-0.4.0" - ,go-github-com-docker-go-units-0.4.0) - ("go-github-com-docker-go-metrics-0.0.1" - ,go-github-com-docker-go-metrics-0.0.1) - ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" - ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1) - ("go-github-com-coreos-go-systemd-v22-22.3.2" - ,go-github-com-coreos-go-systemd-v22-22.3.2) - ("go-github-com-containernetworking-plugins-0.9.1" - ,go-github-com-containernetworking-plugins-0.9.1) - ("go-github-com-containerd-zfs-1.0.0" - ,go-github-com-containerd-zfs-1.0.0) - ("go-github-com-containerd-typeurl-1.0.2" - ,go-github-com-containerd-typeurl-1.0.2) - ("go-github-com-containerd-ttrpc-1.1.0" - ,go-github-com-containerd-ttrpc-1.1.0) - ("go-github-com-containerd-nri-0.1.0" - ,go-github-com-containerd-nri-0.1.0) - ("go-github-com-containerd-imgcrypt-1.1.1" - ,go-github-com-containerd-imgcrypt-1.1.1) - ("go-github-com-containerd-go-runc-1.0.0" - ,go-github-com-containerd-go-runc-1.0.0) - ("go-github-com-containerd-go-cni-1.0.2" - ,go-github-com-containerd-go-cni-1.0.2) - ("go-github-com-containerd-fifo-1.0.0" - ,go-github-com-containerd-fifo-1.0.0) - ("go-github-com-containerd-continuity-0.1.0" - ,go-github-com-containerd-continuity-0.1.0) - ("go-github-com-containerd-console-1.0.2" - ,go-github-com-containerd-console-1.0.2) - ("go-github-com-containerd-cgroups-1.0.1" - ,go-github-com-containerd-cgroups-1.0.1) - ("go-github-com-containerd-btrfs-1.0.0" - ,go-github-com-containerd-btrfs-1.0.0) - ("go-github-com-containerd-aufs-1.0.0" - ,go-github-com-containerd-aufs-1.0.0) - ("go-github-com-microsoft-hcsshim-0.8.23" - ,go-github-com-microsoft-hcsshim-0.8.23) - ("go-github-com-microsoft-go-winio-0.4.17" - ,go-github-com-microsoft-go-winio-0.4.17))) - (home-page "https://github.com/containerd/containerd") - (synopsis "Now Recruiting") - (description - "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") - (license license:asl2.0))) - -(define-public go-github-com-azure-azure-sdk-for-go-56.3.0+incompatible - (package - (name "go-github-com-azure-azure-sdk-for-go") - (version "56.3.0+incompatible") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/Azure/azure-sdk-for-go") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1c2z9wnjkm9v6294pdfh26ksxyiy9slfidc297xk0jbclnddf6k5")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/Azure/azure-sdk-for-go")) - (home-page "https://github.com/Azure/azure-sdk-for-go") - (synopsis "Azure SDK for Go") - (description - "Package sdk provides Go packages for managing and using Azure services. -") - (license license:expat))) - -(define-public go-github-com-go-sql-driver-mysql-1.5.0 - (package - (name "go-github-com-go-sql-driver-mysql") - (version "1.5.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/go-sql-driver/mysql") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "11x0m9yf3kdnf6981182r824psgxwfaqhn3x3in4yiidp0w0hk3v")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/go-sql-driver/mysql")) - (home-page "https://github.com/go-sql-driver/mysql") - (synopsis "Go-MySQL-Driver") - (description - "Package mysql provides a MySQL driver for Go's database/sql package. -") - (license license:mpl2.0))) - -(define-public go-github-com-jmespath-go-jmespath-0.3.0 - (package - (name "go-github-com-jmespath-go-jmespath") - (version "0.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/jmespath/go-jmespath") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12qgp7yb7yfjxhd311kb820fcjmg7gd4hp2fc4v6x8s7121pwnjp")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/jmespath/go-jmespath")) - (propagated-inputs - `(("go-github-com-stretchr-testify-1.5.1" - ,go-github-com-stretchr-testify-1.5.1))) - (home-page "https://github.com/jmespath/go-jmespath") - (synopsis "go-jmespath - A JMESPath implementation in Go") - (description - "go-jmespath is a GO implementation of JMESPath, -which is a query language for JSON. It will take a JSON -document and transform it into another JSON document -through a JMESPath expression.") - (license license:asl2.0))) - -(define-public go-golang-org-x-net-0.0.0-20200202094626-16171245cfb2 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20200202094626-16171245cfb2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0pb4ap1h28cc4kr59lz94895wvsd2pf1vmd2by6b11ww8mkicn4s")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-github-com-aws-aws-sdk-go-1.34.9 - (package - (name "go-github-com-aws-aws-sdk-go") - (version "1.34.9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/aws/aws-sdk-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0sjh7m6bf4wvyfzx6wx46n4bg5d9vrwwjy0h5ykqwfh8cq3f77ib")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/aws/aws-sdk-go")) - (propagated-inputs - `(("go-golang-org-x-net-0.0.0-20200202094626-16171245cfb2" - ,go-golang-org-x-net-0.0.0-20200202094626-16171245cfb2) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-jmespath-go-jmespath-0.3.0" - ,go-github-com-jmespath-go-jmespath-0.3.0) - ("go-github-com-go-sql-driver-mysql-1.5.0" - ,go-github-com-go-sql-driver-mysql-1.5.0))) - (home-page "https://github.com/aws/aws-sdk-go") - (synopsis "AWS SDK for Go") - (description - "Package sdk is the official AWS SDK for the Go programming language. -") - (license license:asl2.0))) - -(define-public go-github-com-bitly-go-simplejson-0.5.0 - (package - (name "go-github-com-bitly-go-simplejson") - (version "0.5.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/bitly/go-simplejson") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0n9f9dz1jn1jx86d48569nznpjn9fmq3knn7r65xpy7jhih284jj")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/bitly/go-simplejson")) - (home-page "https://github.com/bitly/go-simplejson") - (synopsis "go-simplejson") - (description "a Go package to interact with arbitrary JSON") - (license license:expat))) - -(define-public go-github-com-denverdino-aliyungo-0.0.0-20190125010748-a747050bb1ba - (package - (name "go-github-com-denverdino-aliyungo") - (version "0.0.0-20190125010748-a747050bb1ba") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/denverdino/aliyungo") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0rc16ciz8gjpn36fhp0qz1ns0inlvjaz07z1qffl9ni4b49hhwkn")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/denverdino/aliyungo")) - (home-page "https://github.com/denverdino/aliyungo") - (synopsis "AliyunGo: Go SDK for Aliyun Services") - (description - "This is an unofficial Go SDK for Aliyun services. You are welcome for contribution.") - (license license:asl2.0))) - -(define-public go-github-com-dnaeon-go-vcr-1.0.1 - (package - (name "go-github-com-dnaeon-go-vcr") - (version "1.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/dnaeon/go-vcr") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1d0kpqr12qrqlamz5a47bp05mx49za2v6l1k7c6z71xahfmb7v2d")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/dnaeon/go-vcr")) - (home-page "https://github.com/dnaeon/go-vcr") - (synopsis "go-vcr") - (description - "@code{go-vcr} simplifies testing by recording your HTTP interactions and -replaying them in future runs in order to provide fast, deterministic -and accurate testing of your code.") - (license license:bsd-2))) - -(define-public go-github-com-gofrs-uuid-4.0.0+incompatible - (package - (name "go-github-com-gofrs-uuid") - (version "4.0.0+incompatible") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gofrs/uuid") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "08ma37vvrni836fxlswjd3bl2sdqyw3nxv6zdi1nyncnl9l0421k")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/gofrs/uuid")) - (home-page "https://github.com/gofrs/uuid") - (synopsis "UUID") - (description - "Package uuid provides implementations of the Universally Unique Identifier -(UUID), as specified in RFC-4122 and the Peabody RFC Draft (revision 02). -") - (license license:expat))) - -(define-public go-github-com-mitchellh-osext-0.0.0-20151018003038-5e2d6d41470f - (package - (name "go-github-com-mitchellh-osext") - (version "0.0.0-20151018003038-5e2d6d41470f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mitchellh/osext") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0j635c1cx7crs5wlirlk713l36x70pnlmqrzd3x3bjgnjg194jrk")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mitchellh/osext")) - (home-page "https://github.com/mitchellh/osext") - (synopsis "osext") - (description "Extensions to the standard \"os\" package. -") - (license license:zlib))) - -(define-public go-github-com-ncw-swift-1.0.47 - (package - (name "go-github-com-ncw-swift") - (version "1.0.47") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/ncw/swift") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0wxz4lvy6pjabghq8inby2fyh58ysclayccziawc8fd7a67kh4cd")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/ncw/swift")) - (home-page "https://github.com/ncw/swift") - (synopsis "Swift") - (description - "Package swift provides an easy to use interface to Swift / Openstack Object Storage / Rackspace Cloud Files -") - (license license:expat))) - -(define-public go-github-com-spf13-cobra-0.0.3 - (package - (name "go-github-com-spf13-cobra") - (version "0.0.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/spf13/cobra") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1q1nsx05svyv9fv3fy6xv6gs9ffimkyzsfm49flvl3wnvf1ncrkd")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/spf13/cobra")) - (home-page "https://github.com/spf13/cobra") - (synopsis "Table of Contents") - (description - "Package cobra is a commander providing a simple interface to create powerful modern CLI interfaces. -In addition to providing an interface, Cobra simultaneously provides a controller to organize your application code. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-crypto-0.0.0-20210817164053-32db794688a5 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20210817164053-32db794688a5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0arh5rhahrjzmlifmbgswwc0kjkgmhps6g4hzia0i6ismsk74n48")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) - ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" - ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) - ("go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1" - ,go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1) - ("go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110" - ,go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-google-golang-org-api-0.0.0-20160322025152-9bf6e6e569ff - (package - (name "go-google-golang-org-api") - (version "0.0.0-20160322025152-9bf6e6e569ff") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-api-go-client") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "02zn0zr4jrkdnxhxa0h3vm30j27bsc4lcswrffilkrafbspjsrxz")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/api")) - (home-page "https://google.golang.org/api") - (synopsis "Google APIs Client Library for Go") - (description - "Package api is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of -sub-packages. -") - (license license:bsd-3))) - -(define-public go-google-golang-org-cloud-0.0.0-20151119220103-975617b05ea8 - (package - (name "go-google-golang-org-cloud") - (version "0.0.0-20151119220103-975617b05ea8") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-cloud-go") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "156jhn1kakr98jfk830y4yr8lhisdj6qs38ypa42ddmgza9qcmdd")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/cloud")) - (home-page "https://google.golang.org/cloud") - (synopsis "Google Cloud Client Libraries for Go") - (description - "Package cloud is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -of sub-packages. -") - (license license:asl2.0))) - -(define-public go-google-golang-org-grpc-0.0.0-20160317175043-d3ddb4469d5a - (package - (name "go-google-golang-org-grpc") - (version "0.0.0-20160317175043-d3ddb4469d5a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0p45by0s66ragvx9hs8gkz1k1gy8456y794b5zspa0b86y2b53w9")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-gopkg-in-check-v1-1.0.0-20141024133853-64131543e789 - (package - (name "go-gopkg-in-check-v1") - (version "1.0.0-20141024133853-64131543e789") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/check.v1") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "01sz40asq0zwf6j7q2hww33wr1cflglngq8xazw466c9d1f9kyyh")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) - (home-page "https://gopkg.in/check.v1") - (synopsis "Instructions") - (description - "Package check is a rich testing extension for Go's testing package. -") - (license license:bsd-2))) - -(define-public go-github-com-distribution-distribution-v3-3.0.0-20211118083504-a29a3c99a684 - (package - (name "go-github-com-distribution-distribution-v3") - (version "3.0.0-20211118083504-a29a3c99a684") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/distribution/distribution") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1v0larzrvgm4hyq5hj4s7sx0rdximk715n95z294mqr7kpsbjfrh")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/distribution/distribution/v3")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) - ("go-gopkg-in-check-v1-1.0.0-20141024133853-64131543e789" - ,go-gopkg-in-check-v1-1.0.0-20141024133853-64131543e789) - ("go-google-golang-org-grpc-0.0.0-20160317175043-d3ddb4469d5a" - ,go-google-golang-org-grpc-0.0.0-20160317175043-d3ddb4469d5a) - ("go-google-golang-org-cloud-0.0.0-20151119220103-975617b05ea8" - ,go-google-golang-org-cloud-0.0.0-20151119220103-975617b05ea8) - ("go-google-golang-org-api-0.0.0-20160322025152-9bf6e6e569ff" - ,go-google-golang-org-api-0.0.0-20160322025152-9bf6e6e569ff) - ("go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45" - ,go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45) - ("go-golang-org-x-crypto-0.0.0-20210817164053-32db794688a5" - ,go-golang-org-x-crypto-0.0.0-20210817164053-32db794688a5) - ("go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20140908184405-b21fdbd4370f" - ,go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20140908184405-b21fdbd4370f) - ("go-github-com-yvasiyarov-gorelic-0.0.0-20141212073537-a9bba5b9ab50" - ,go-github-com-yvasiyarov-gorelic-0.0.0-20141212073537-a9bba5b9ab50) - ("go-github-com-yvasiyarov-go-metrics-0.0.0-20140926110328-57bccd1ccd43" - ,go-github-com-yvasiyarov-go-metrics-0.0.0-20140926110328-57bccd1ccd43) - ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) - ("go-github-com-spf13-cobra-0.0.3" ,go-github-com-spf13-cobra-0.0.3) - ("go-github-com-sirupsen-logrus-1.8.1" - ,go-github-com-sirupsen-logrus-1.8.1) - ("go-github-com-opencontainers-image-spec-1.0.2" - ,go-github-com-opencontainers-image-spec-1.0.2) - ("go-github-com-opencontainers-go-digest-1.0.0" - ,go-github-com-opencontainers-go-digest-1.0.0) - ("go-github-com-ncw-swift-1.0.47" ,go-github-com-ncw-swift-1.0.47) - ("go-github-com-mitchellh-osext-0.0.0-20151018003038-5e2d6d41470f" - ,go-github-com-mitchellh-osext-0.0.0-20151018003038-5e2d6d41470f) - ("go-github-com-mitchellh-mapstructure-1.1.2" - ,go-github-com-mitchellh-mapstructure-1.1.2) - ("go-github-com-inconshreveable-mousetrap-1.0.0" - ,go-github-com-inconshreveable-mousetrap-1.0.0) - ("go-github-com-gorilla-mux-1.8.0" ,go-github-com-gorilla-mux-1.8.0) - ("go-github-com-gorilla-handlers-1.5.1" - ,go-github-com-gorilla-handlers-1.5.1) - ("go-github-com-gomodule-redigo-1.8.2" - ,go-github-com-gomodule-redigo-1.8.2) - ("go-github-com-gofrs-uuid-4.0.0+incompatible" - ,go-github-com-gofrs-uuid-4.0.0+incompatible) - ("go-github-com-docker-libtrust-0.0.0-20150114040149-fa567046d9b1" - ,go-github-com-docker-libtrust-0.0.0-20150114040149-fa567046d9b1) - ("go-github-com-docker-go-metrics-0.0.1" - ,go-github-com-docker-go-metrics-0.0.1) - ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" - ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) - ("go-github-com-dnaeon-go-vcr-1.0.1" - ,go-github-com-dnaeon-go-vcr-1.0.1) - ("go-github-com-denverdino-aliyungo-0.0.0-20190125010748-a747050bb1ba" - ,go-github-com-denverdino-aliyungo-0.0.0-20190125010748-a747050bb1ba) - ("go-github-com-bugsnag-panicwrap-0.0.0-20151223152923-e2c28503fcd0" - ,go-github-com-bugsnag-panicwrap-0.0.0-20151223152923-e2c28503fcd0) - ("go-github-com-bugsnag-osext-0.0.0-20130617224835-0dd3f918b21b" - ,go-github-com-bugsnag-osext-0.0.0-20130617224835-0dd3f918b21b) - ("go-github-com-bugsnag-bugsnag-go-0.0.0-20141110184014-b1d153021fcd" - ,go-github-com-bugsnag-bugsnag-go-0.0.0-20141110184014-b1d153021fcd) - ("go-github-com-bshuster-repo-logrus-logstash-hook-1.0.0" - ,go-github-com-bshuster-repo-logrus-logstash-hook-1.0.0) - ("go-github-com-bitly-go-simplejson-0.5.0" - ,go-github-com-bitly-go-simplejson-0.5.0) - ("go-github-com-aws-aws-sdk-go-1.34.9" - ,go-github-com-aws-aws-sdk-go-1.34.9) - ("go-github-com-shopify-logrus-bugsnag-0.0.0-20171204204709-577dee27f20d" - ,go-github-com-shopify-logrus-bugsnag-0.0.0-20171204204709-577dee27f20d) - ("go-github-com-azure-go-autorest-autorest-to-0.4.0" - ,go-github-com-azure-go-autorest-autorest-to-0.4.0) - ("go-github-com-azure-go-autorest-autorest-adal-0.9.15" - ,go-github-com-azure-go-autorest-autorest-adal-0.9.15) - ("go-github-com-azure-go-autorest-autorest-0.11.20" - ,go-github-com-azure-go-autorest-autorest-0.11.20) - ("go-github-com-azure-azure-sdk-for-go-56.3.0+incompatible" - ,go-github-com-azure-azure-sdk-for-go-56.3.0+incompatible))) - (home-page "https://github.com/distribution/distribution") - (synopsis "Distribution") - (description - "Package distribution will define the interfaces for the components of -docker distribution. The goal is to allow users to reliably package, ship -and store content related to docker images. -") - (license license:asl2.0))) - -(define-public go-github-com-docker-cli-20.10.11+incompatible - (package - (name "go-github-com-docker-cli") - (version "20.10.11+incompatible") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/docker/cli") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0dmmxn9ahyq2yq935fvp1b6ka6s43ih9nh6wwx8v6rjg7y35rb1n")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/docker/cli")) - (home-page "https://github.com/docker/cli") - (synopsis "docker/cli") - (description - "This repository is the home of the cli used in the Docker CE and -Docker EE products.") - (license license:asl2.0))) - -(define-public go-github-com-docker-docker-20.10.11+incompatible - (package - (name "go-github-com-docker-docker") - (version "20.10.11+incompatible") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/moby/moby") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1h1r66j57l073iba6hwrhcz779vaym68l1gfycdiw2d2gglfrdgr")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/docker/docker")) - (home-page "https://github.com/docker/docker") - (synopsis "The Moby Project") - (description - "Moby is an open-source project created by Docker to enable and accelerate software containerization.") - (license license:asl2.0))) - -(define-public go-github-com-opencontainers-go-digest-1.0.0 - (package - (name "go-github-com-opencontainers-go-digest") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/go-digest") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0i5acjajvr6hi9zb7gxwifd8w28y884cv7cx36adj8lngj647xbi")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/go-digest")) - (home-page "https://github.com/opencontainers/go-digest") - (synopsis "go-digest") - (description - "Package digest provides a generalized type to opaquely represent message -digests and their operations within the registry. The Digest type is -designed to serve as a flexible identifier in a content-addressable system. -More importantly, it provides tools and wrappers to work with -hash.Hash-based digests with little effort. -") - (license (list license:asl2.0 license:cc-by-sa4.0)))) - -(define-public go-github-com-opencontainers-image-spec-1.0.2 - (package - (name "go-github-com-opencontainers-image-spec") - (version "1.0.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/image-spec") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1wcw1z39wjx338406ga86a41f5ird0yc4ab3c70nfhkpkvjjzhkm")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/image-spec")) - (home-page "https://github.com/opencontainers/image-spec") - (synopsis "OCI Image Format Specification") - (description - "The OCI Image Format project creates and maintains the software shipping container image format spec (OCI Image Format).") - (license license:asl2.0))) - -(define-public go-github-com-phayes-freeport-0.0.0-20180830031419-95f893ade6f2 - (package - (name "go-github-com-phayes-freeport") - (version "0.0.0-20180830031419-95f893ade6f2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/phayes/freeport") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "09kkm359hg8xl6qj8fqrs5fkrzn82i7frr5i0vy1kkfvd9ng6n90")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/phayes/freeport")) - (home-page "https://github.com/phayes/freeport") - (synopsis "FreePort") - (description "Get a free open TCP port that is ready to use.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20191026070338-33540a1f6037") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0fjcv0vzvi6za0b4xmnk3932pr9f9gczzf03y0kgq3ry9rqg169y")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-sirupsen-logrus-1.8.1 - (package - (name "go-github-com-sirupsen-logrus") - (version "1.8.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sirupsen/logrus") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0rvqzic2zz7fpxyizmqxwmhv1m52ii9bgxnqa6km8wsa0l08wh42")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/sirupsen/logrus")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037" - ,go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037) - ("go-github-com-stretchr-testify-1.2.2" - ,go-github-com-stretchr-testify-1.2.2) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/sirupsen/logrus") - (synopsis "Logrus") - (description - "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. -") - (license license:expat))) - -(define-public go-github-com-russross-blackfriday-v2-2.0.1 - (package - (name "go-github-com-russross-blackfriday-v2") - (version "2.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/russross/blackfriday") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0nlz7isdd4rgnwzs68499hlwicxz34j2k2a0b8jy0y7ycd2bcr5j")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/russross/blackfriday/v2")) - (home-page "https://github.com/russross/blackfriday") - (synopsis "Blackfriday") - (description "Package blackfriday is a markdown processor. -") - (license license:bsd-2))) - -(define-public go-github-com-shurcool-sanitized-anchor-name-1.0.0 - (package - (name "go-github-com-shurcool-sanitized-anchor-name") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/shurcooL/sanitized_anchor_name") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1gv9p2nr46z80dnfjsklc6zxbgk96349sdsxjz05f3z6wb6m5l8f")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/shurcooL/sanitized_anchor_name")) - (home-page "https://github.com/shurcooL/sanitized_anchor_name") - (synopsis "sanitized_anchor_name") - (description - "Package sanitized_anchor_name provides a func to create sanitized anchor names. -") - (license license:expat))) - -(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0 - (package - (name "go-github-com-cpuguy83-go-md2man-v2") - (version "2.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cpuguy83/go-md2man") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) - (propagated-inputs - `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" - ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) - ("go-github-com-russross-blackfriday-v2-2.0.1" - ,go-github-com-russross-blackfriday-v2-2.0.1) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0))) - (home-page "https://github.com/cpuguy83/go-md2man") - (synopsis "go-md2man") - (description "Converts markdown into roff (man pages).") - (license license:expat))) - -(define-public go-github-com-hashicorp-go-cleanhttp-0.5.1 - (package - (name "go-github-com-hashicorp-go-cleanhttp") - (version "0.5.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/go-cleanhttp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "07kx3fhryqmaw3czacmm11qwx63js2q8cfq967vphk7xg9q377kk")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/go-cleanhttp")) - (home-page "https://github.com/hashicorp/go-cleanhttp") - (synopsis "cleanhttp") - (description - "Package cleanhttp offers convenience utilities for acquiring \"clean\" -http.Transport and http.Client structs. -") - (license license:mpl2.0))) - -(define-public go-github-com-mitchellh-go-homedir-1.0.0 - (package - (name "go-github-com-mitchellh-go-homedir") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mitchellh/go-homedir") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0f0z0aa4wivk4z1y503dmnw0k0g0g403dly8i4q263gfshs82sbq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mitchellh/go-homedir")) - (home-page "https://github.com/mitchellh/go-homedir") - (synopsis "go-homedir") - (description - "This is a Go library for detecting the user's home directory without -the use of cgo, so the library can be used in cross-compilation environments.") - (license license:expat))) - -(define-public go-github-com-hashicorp-go-rootcerts-1.0.0 - (package - (name "go-github-com-hashicorp-go-rootcerts") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/go-rootcerts") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0wply5zhj1rcybr932zbwm1i18q5wr7kgkhnz6bw6mk1n9yr8lfj")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/go-rootcerts")) - (propagated-inputs - `(("go-github-com-mitchellh-go-homedir-1.0.0" - ,go-github-com-mitchellh-go-homedir-1.0.0))) - (home-page "https://github.com/hashicorp/go-rootcerts") - (synopsis "rootcerts") - (description - "Package rootcerts contains functions to aid in loading CA certificates for -TLS connections. -") - (license license:mpl2.0))) - -(define-public go-github-com-armon-circbuf-0.0.0-20150827004946-bbbad097214e - (package - (name "go-github-com-armon-circbuf") - (version "0.0.0-20150827004946-bbbad097214e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/armon/circbuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1idpr0lzb2px2p3wgfq2276yl7jpaz43df6n91kf790404s4zmk3")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/armon/circbuf")) - (home-page "https://github.com/armon/circbuf") - (synopsis "circbuf") - (description - "This repository provides the @code{circbuf} package. This provides a @code{Buffer} object -which is a circular (or ring) buffer. It has a fixed size, but can be written -to infinitely. Only the last @code{size} bytes are ever retained. The buffer implements -the @code{io.Writer} interface.") - (license license:expat))) - -(define-public go-github-com-hashicorp-go-syslog-1.0.0 - (package - (name "go-github-com-hashicorp-go-syslog") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/go-syslog") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "09vccqggz212cg0jir6vv708d6mx0f9w5bxrcdah3h6chgmal6v1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/go-syslog")) - (home-page "https://github.com/hashicorp/go-syslog") - (synopsis "go-syslog") - (description - "This repository provides a very simple @code{gsyslog} package. The point of this -package is to allow safe importing of syslog without introducing cross-compilation -issues. The stdlib @code{log/syslog} cannot be imported on Windows systems, and without -conditional compilation this adds complications.") - (license license:expat))) - -(define-public go-github-com-hashicorp-go-uuid-1.0.1 - (package - (name "go-github-com-hashicorp-go-uuid") - (version "1.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/go-uuid") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0jvb88m0rq41bwgirsadgw7mnayl27av3gd2vqa3xvxp3fy0hp5k")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/go-uuid")) - (home-page "https://github.com/hashicorp/go-uuid") - (synopsis "uuid") - (description - "Generates UUID-format strings using high quality, bytes. It is @strong{not} intended to be RFC compliant, merely to use a well-understood string representation of a 128-bit value. It can also parse UUID-format strings into their component bytes.") - (license license:mpl2.0))) - -(define-public go-github-com-hashicorp-logutils-1.0.0 - (package - (name "go-github-com-hashicorp-logutils") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/logutils") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "076wf4sh5p3f953ndqk1cc0x7jhmlqrxak9953rz79rcdw77rjvv")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/logutils")) - (home-page "https://github.com/hashicorp/logutils") - (synopsis "logutils") - (description - "Package logutils augments the standard log package with levels. -") - (license license:mpl2.0))) - -(define-public go-github-com-hashicorp-go-net-0.0.1 - (package - (name "go-github-com-hashicorp-go-net") - (version "0.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/go.net") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "06arwi95xp5rxyz7rndvhc3wlwg0jn9a5z6djf3yyg5h9zfab9i4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/go.net")) - (home-page "https://github.com/hashicorp/go.net") - (synopsis #f) - (description #f) - (license license:bsd-3))) - -(define-public go-github-com-hashicorp-mdns-1.0.0 - (package - (name "go-github-com-hashicorp-mdns") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/mdns") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0qr4l91hhi97s8a1isnrw3s4q8pjzacqiks870vnwh15v7ig3axd")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/mdns")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20181026203630-95b1ffbd15a5" - ,go-golang-org-x-sys-0.0.0-20181026203630-95b1ffbd15a5) - ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" - ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) - ("go-golang-org-x-net-0.0.0-20181023162649-9b4f9f5ad519" - ,go-golang-org-x-net-0.0.0-20181023162649-9b4f9f5ad519) - ("go-golang-org-x-crypto-0.0.0-20181029021203-45a5f77698d3" - ,go-golang-org-x-crypto-0.0.0-20181029021203-45a5f77698d3) - ("go-github-com-miekg-dns-1.0.14" ,go-github-com-miekg-dns-1.0.14) - ("go-github-com-hashicorp-go-net-0.0.1" - ,go-github-com-hashicorp-go-net-0.0.1))) - (home-page "https://github.com/hashicorp/mdns") - (synopsis "mdns") - (description - "Simple mDNS client/server library in Golang. mDNS or Multicast DNS can be -used to discover services on the local network without the use of an authoritative -DNS server. This enables peer-to-peer discovery. It is important to note that many -networks restrict the use of multicasting, which prevents mDNS from functioning. -Notably, multicast cannot be used in any sort of cloud, or shared infrastructure -environment. However it works well in most office, home, or private infrastructure -environments.") - (license license:expat))) - -(define-public go-github-com-armon-go-metrics-0.0.0-20180917152333-f0300d1749da - (package - (name "go-github-com-armon-go-metrics") - (version "0.0.0-20180917152333-f0300d1749da") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/armon/go-metrics") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "13l7c35ps0r27vxfil2w0xhhc7w5rh00awvlmn4cz0a937b9ffpv")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/armon/go-metrics")) - (home-page "https://github.com/armon/go-metrics") - (synopsis "go-metrics") - (description - "This library provides a @code{metrics} package which can be used to instrument code, -expose application metrics, and profile runtime performance in a flexible manner.") - (license license:expat))) - -(define-public go-github-com-hashicorp-go-uuid-1.0.0 - (package - (name "go-github-com-hashicorp-go-uuid") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/go-uuid") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1jflywlani7583qm4ysph40hsgx3n66n5zr2k84i057fmwa1ypfy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/go-uuid")) - (home-page "https://github.com/hashicorp/go-uuid") - (synopsis "uuid") - (description - "Generates UUID-format strings using high quality, bytes. It is @strong{not} intended to be RFC compliant, merely to use a well-understood string representation of a 128-bit value. It can also parse UUID-format strings into their component bytes.") - (license license:mpl2.0))) - -(define-public go-github-com-hashicorp-go-immutable-radix-1.0.0 - (package - (name "go-github-com-hashicorp-go-immutable-radix") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/go-immutable-radix") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1v3nmsnk1s8bzpclrhirz7iq0g5xxbw9q5gvrg9ss6w9crs72qr6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/go-immutable-radix")) - (propagated-inputs - `(("go-github-com-hashicorp-golang-lru-0.5.0" - ,go-github-com-hashicorp-golang-lru-0.5.0) - ("go-github-com-hashicorp-go-uuid-1.0.0" - ,go-github-com-hashicorp-go-uuid-1.0.0))) - (home-page "https://github.com/hashicorp/go-immutable-radix") - (synopsis "go-immutable-radix") - (description - "This package provides the @code{iradix} package that implements an immutable @url{http://en.wikipedia.org/wiki/Radix_tree,radix tree}. -The package only provides a single @code{Tree} implementation, optimized for sparse nodes.") - (license license:mpl2.0))) - -(define-public go-github-com-hashicorp-go-msgpack-0.5.3 - (package - (name "go-github-com-hashicorp-go-msgpack") - (version "0.5.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/go-msgpack") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "00jv0ajqd58pkb2yyhlrjp0rv1mvb1ijx3yqjyikcmzvk9jb4h5m")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/go-msgpack")) - (home-page "https://github.com/hashicorp/go-msgpack") - (synopsis "go-codec") - (description "This repository contains the @code{go-codec} library.") - (license license:expat))) - -(define-public go-github-com-hashicorp-go-sockaddr-1.0.0 - (package - (name "go-github-com-hashicorp-go-sockaddr") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/go-sockaddr") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1yn1xq8ysn0lszmkygz3a9lgpswbz1p91jv7q8l20s4749a22xgi")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/go-sockaddr")) - (home-page "https://github.com/hashicorp/go-sockaddr") - (synopsis "go-sockaddr") - (description - "Package sockaddr is a Go implementation of the UNIX socket family data types and -related helper functions. -") - (license license:mpl2.0))) - -(define-public go-github-com-miekg-dns-1.0.14 - (package - (name "go-github-com-miekg-dns") - (version "1.0.14") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/miekg/dns") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1qgli6yp59bv6vc6zag84cwxmcxgnyxm1q2f301yyijk3wy5b2ak")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/miekg/dns")) - (home-page "https://github.com/miekg/dns") - (synopsis "Alternative (more granular) approach to a DNS library") - (description - "Package dns implements a full featured interface to the Domain Name System. -Both server- and client-side programming is supported. The package allows -complete control over what is sent out to the DNS. The API follows the -less-is-more principle, by presenting a small, clean interface. -") - (license license:bsd-3))) - -(define-public go-github-com-sean--seed-0.0.0-20170313163322-e2103e2c3529 - (package - (name "go-github-com-sean--seed") - (version "0.0.0-20170313163322-e2103e2c3529") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sean-/seed") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0glir8jxi1w7aga2jwdb63pp1h8q4whknili7xixsqzwyy716125")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/sean-/seed")) - (home-page "https://github.com/sean-/seed") - (synopsis "- Quickly Seed Go's Random Number Generator") - (description - "Boiler-plate to securely @url{https://en.wikipedia.org/wiki/Random_seed,seed} Go's -random number generator (if possible). This library isn't anything fancy, it's -just a canonical way of seeding Go's random number generator. Cribbed from -@url{https://github.com/hashicorp/nomad/commit/f89a993ec6b91636a3384dd568898245fbc273a1,(code Nomad)} -before it was moved into -@url{https://github.com/hashicorp/consul/commit/d695bcaae6e31ee307c11fdf55bb0bf46ea9fcf4,(code Consul)} -and made into a helper function, and now further modularized to be a super -lightweight and reusable library.") - (license #f))) - -(define-public go-golang-org-x-crypto-0.0.0-20181029021203-45a5f77698d3 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20181029021203-45a5f77698d3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0636jjj89wkzqchajwwzgcn4aafc334p70nawh9jzavg2mkx0ch4")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20181023162649-9b4f9f5ad519 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20181023162649-9b4f9f5ad519") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "06hvxy113h76f31gv1mq6vdr6xja1zv0fdig686l2b4y2b6swych")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20181026203630-95b1ffbd15a5 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20181026203630-95b1ffbd15a5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "06c3lf93wzf5kkfmzmgn75x4c0a7159vrwjrqh6zh9zxzqq5whpq")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-hashicorp-memberlist-0.1.3 - (package - (name "go-github-com-hashicorp-memberlist") - (version "0.1.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/memberlist") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0k1spq7dagvqj3baqw2dhxx1zxrb02y6m3apzr3a7gyirii890g3")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/memberlist")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20181026203630-95b1ffbd15a5" - ,go-golang-org-x-sys-0.0.0-20181026203630-95b1ffbd15a5) - ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" - ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) - ("go-golang-org-x-net-0.0.0-20181023162649-9b4f9f5ad519" - ,go-golang-org-x-net-0.0.0-20181023162649-9b4f9f5ad519) - ("go-golang-org-x-crypto-0.0.0-20181029021203-45a5f77698d3" - ,go-golang-org-x-crypto-0.0.0-20181029021203-45a5f77698d3) - ("go-github-com-stretchr-testify-1.2.2" - ,go-github-com-stretchr-testify-1.2.2) - ("go-github-com-sean--seed-0.0.0-20170313163322-e2103e2c3529" - ,go-github-com-sean--seed-0.0.0-20170313163322-e2103e2c3529) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-pascaldekloe-goe-0.0.0-20180627143212-57f6aae5913c" - ,go-github-com-pascaldekloe-goe-0.0.0-20180627143212-57f6aae5913c) - ("go-github-com-miekg-dns-1.0.14" ,go-github-com-miekg-dns-1.0.14) - ("go-github-com-hashicorp-go-sockaddr-1.0.0" - ,go-github-com-hashicorp-go-sockaddr-1.0.0) - ("go-github-com-hashicorp-go-multierror-1.0.0" - ,go-github-com-hashicorp-go-multierror-1.0.0) - ("go-github-com-hashicorp-go-msgpack-0.5.3" - ,go-github-com-hashicorp-go-msgpack-0.5.3) - ("go-github-com-hashicorp-go-immutable-radix-1.0.0" - ,go-github-com-hashicorp-go-immutable-radix-1.0.0) - ("go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c" - ,go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1) - ("go-github-com-armon-go-metrics-0.0.0-20180917152333-f0300d1749da" - ,go-github-com-armon-go-metrics-0.0.0-20180917152333-f0300d1749da))) - (home-page "https://github.com/hashicorp/memberlist") - (synopsis "memberlist") - (description - "memberlist is a library that manages cluster -membership and member failure detection using a gossip based protocol. -") - (license license:mpl2.0))) - -(define-public go-github-com-armon-go-radix-0.0.0-20180808171621-7fddfc383310 - (package - (name "go-github-com-armon-go-radix") - (version "0.0.0-20180808171621-7fddfc383310") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/armon/go-radix") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0y8chspn14n9xpsfb9gxnnf819rfpriaz64v81p7873a42kkhxb4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/armon/go-radix")) - (home-page "https://github.com/armon/go-radix") - (synopsis "go-radix") - (description - "This package provides the @code{radix} package that implements a @url{http://en.wikipedia.org/wiki/Radix_tree,radix tree}. -The package only provides a single @code{Tree} implementation, optimized for sparse nodes.") - (license license:expat))) - -(define-public go-github-com-bgentry-speakeasy-0.1.0 - (package - (name "go-github-com-bgentry-speakeasy") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/bgentry/speakeasy") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "02dfrj0wyphd3db9zn2mixqxwiz1ivnyc5xc7gkz58l5l27nzp8s")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/bgentry/speakeasy")) - (home-page "https://github.com/bgentry/speakeasy") - (synopsis "Speakeasy") - (description - "This package provides cross-platform Go (#golang) helpers for taking user input -from the terminal while not echoing the input back (similar to @code{getpasswd}). The -package uses syscalls to avoid any dependence on cgo, and is therefore -compatible with cross-compiling.") - (license license:expat))) - -(define-public go-github-com-fatih-color-1.7.0 - (package - (name "go-github-com-fatih-color") - (version "1.7.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/fatih/color") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0v8msvg38r8d1iiq2i5r4xyfx0invhc941kjrsg5gzwvagv55inv")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/fatih/color")) - (home-page "https://github.com/fatih/color") - (synopsis "color") - (description - "Package color is an ANSI color package to output colorized or SGR defined -output to the standard output. The API can be used in several way, pick one -that suits you. -") - (license license:expat))) - -(define-public go-github-com-hashicorp-errwrap-1.0.0 - (package - (name "go-github-com-hashicorp-errwrap") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/errwrap") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0slfb6w3b61xz04r32bi0a1bygc82rjzhqkxj2si2074wynqnr1c")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/errwrap")) - (home-page "https://github.com/hashicorp/errwrap") - (synopsis "errwrap") - (description - "Package errwrap implements methods to formalize error wrapping in Go. -") - (license license:mpl2.0))) - -(define-public go-github-com-hashicorp-go-multierror-1.0.0 - (package - (name "go-github-com-hashicorp-go-multierror") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/go-multierror") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "00nyn8llqzbfm8aflr9kwsvpzi4kv8v45c141v88xskxp5xf6z49")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/go-multierror")) - (propagated-inputs - `(("go-github-com-hashicorp-errwrap-1.0.0" - ,go-github-com-hashicorp-errwrap-1.0.0))) - (home-page "https://github.com/hashicorp/go-multierror") - (synopsis "go-multierror") - (description - "@code{go-multierror} is a package for Go that provides a mechanism for -representing a list of @code{error} values as a single @code{error}.") - (license license:mpl2.0))) - -(define-public go-github-com-mattn-go-colorable-0.0.9 - (package - (name "go-github-com-mattn-go-colorable") - (version "0.0.9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mattn/go-colorable") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1nwjmsppsjicr7anq8na6md7b1z84l9ppnlr045hhxjvbkqwalvx")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mattn/go-colorable")) - (home-page "https://github.com/mattn/go-colorable") - (synopsis "go-colorable") - (description "Colorable writer for windows.") - (license license:expat))) - -(define-public go-github-com-mattn-go-isatty-0.0.3 - (package - (name "go-github-com-mattn-go-isatty") - (version "0.0.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mattn/go-isatty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "06w45aqz2a6yrk25axbly2k5wmsccv8cspb94bfmz4izvw8h927n")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mattn/go-isatty")) - (home-page "https://github.com/mattn/go-isatty") - (synopsis "go-isatty") - (description "Package isatty implements interface to isatty -") - (license license:expat))) - -(define-public go-github-com-posener-complete-1.1.1 - (package - (name "go-github-com-posener-complete") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/posener/complete") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1nbdiybjizbaxbf5q0xwbq0cjqw4bl6jggvsjzrpif0w86fcjda2")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/posener/complete")) - (home-page "https://github.com/posener/complete") - (synopsis "complete") - (description - "Package complete provides a tool for bash writing bash completion in go, and bash completion for the go command line. -") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20180823144017-11551d06cbcc - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20180823144017-11551d06cbcc") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0j34525b9smcyjqmxvvqgcfn87kkx3b2izidmjp2cmhjxzjrgpwm")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-mitchellh-cli-1.0.0 - (package - (name "go-github-com-mitchellh-cli") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mitchellh/cli") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1i9kmr7rcf10d2hji8h4247hmc0nbairv7a0q51393aw2h1bnwg2")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mitchellh/cli")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20180823144017-11551d06cbcc" - ,go-golang-org-x-sys-0.0.0-20180823144017-11551d06cbcc) - ("go-github-com-posener-complete-1.1.1" - ,go-github-com-posener-complete-1.1.1) - ("go-github-com-mattn-go-isatty-0.0.3" - ,go-github-com-mattn-go-isatty-0.0.3) - ("go-github-com-mattn-go-colorable-0.0.9" - ,go-github-com-mattn-go-colorable-0.0.9) - ("go-github-com-hashicorp-go-multierror-1.0.0" - ,go-github-com-hashicorp-go-multierror-1.0.0) - ("go-github-com-fatih-color-1.7.0" ,go-github-com-fatih-color-1.7.0) - ("go-github-com-bgentry-speakeasy-0.1.0" - ,go-github-com-bgentry-speakeasy-0.1.0) - ("go-github-com-armon-go-radix-0.0.0-20180808171621-7fddfc383310" - ,go-github-com-armon-go-radix-0.0.0-20180808171621-7fddfc383310))) - (home-page "https://github.com/mitchellh/cli") - (synopsis "Go CLI Library") - (description - "cli is a library for implementing powerful command-line interfaces in Go. -cli is the library that powers the CLI for -@url{https://github.com/mitchellh/packer,Packer}, -@url{https://github.com/hashicorp/serf,Serf}, -@url{https://github.com/hashicorp/consul,Consul}, -@url{https://github.com/hashicorp/vault,Vault}, -@url{https://github.com/hashicorp/terraform,Terraform}, and -@url{https://github.com/hashicorp/nomad,Nomad}.") - (license license:mpl2.0))) - -(define-public go-github-com-mitchellh-gox-0.4.0 - (package - (name "go-github-com-mitchellh-gox") - (version "0.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mitchellh/gox") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1q4fdkw904mrmh1q5z8pfd3r0gcn5dm776kldqawddy93iiwnp8r")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mitchellh/gox")) - (home-page "https://github.com/mitchellh/gox") - (synopsis "Gox - Simple Go Cross Compilation") - (description - "Gox is a simple, no-frills tool for Go cross compilation that behaves a -lot like standard @code{go build}. Gox will parallelize builds for multiple -platforms. Gox will also build the cross-compilation toolchain for you.") - (license license:mpl2.0))) - -(define-public go-github-com-mitchellh-iochan-1.0.0 - (package - (name "go-github-com-mitchellh-iochan") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mitchellh/iochan") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "058n9bbf536f2nw3pbs7pysrg9cqvgkb28z2zf5wjyrzrknyk53g")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mitchellh/iochan")) - (home-page "https://github.com/mitchellh/iochan") - (synopsis "iochan") - (description - "iochan is a Go library for treating @code{io} readers and writers like channels. -This is useful when sometimes you wish to use @code{io.Reader} and such in @code{select} -statements.") - (license license:expat))) - -(define-public go-github-com-mitchellh-mapstructure-0.0.0-20160808181253-ca63d7c062ee - (package - (name "go-github-com-mitchellh-mapstructure") - (version "0.0.0-20160808181253-ca63d7c062ee") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mitchellh/mapstructure") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1yjwhgi57l5fxlmpdchipdd4jasdn1sa8ccl2f2486v06rv6z7gr")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mitchellh/mapstructure")) - (home-page "https://github.com/mitchellh/mapstructure") - (synopsis "mapstructure") - (description - "Package mapstructure exposes functionality to convert one arbitrary -Go type into another, typically to convert a map[string]interface{} -into a native Go structure. -") - (license license:expat))) - -(define-public go-github-com-ryanuber-columnize-0.0.0-20160712163229-9b3edd62028f - (package - (name "go-github-com-ryanuber-columnize") - (version "0.0.0-20160712163229-9b3edd62028f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/ryanuber/columnize") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ya1idkbb0a9fjlhkcnh5a9yvpwzwfmbyg7d56lpplwr9rqi1da4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/ryanuber/columnize")) - (home-page "https://github.com/ryanuber/columnize") - (synopsis "Columnize") - (description "Easy column-formatted output for golang") - (license license:expat))) - -(define-public go-golang-org-x-net-0.0.0-20181201002055-351d144fa1fc - (package - (name "go-golang-org-x-net") - (version "0.0.0-20181201002055-351d144fa1fc") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1c5x25qjyz83y92bq0lll5kmznyi3m02wd4c54scgf0866gy938k")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-github-com-hashicorp-serf-0.8.2 - (package - (name "go-github-com-hashicorp-serf") - (version "0.8.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/serf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0nrslghvdjhaczr2xp9mn8xgcx1dxl4jgpbk0l61ssmxahpx4iyc")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/serf")) - (propagated-inputs - `(("go-golang-org-x-net-0.0.0-20181201002055-351d144fa1fc" - ,go-golang-org-x-net-0.0.0-20181201002055-351d144fa1fc) - ("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0) - ("go-github-com-ryanuber-columnize-0.0.0-20160712163229-9b3edd62028f" - ,go-github-com-ryanuber-columnize-0.0.0-20160712163229-9b3edd62028f) - ("go-github-com-mitchellh-mapstructure-0.0.0-20160808181253-ca63d7c062ee" - ,go-github-com-mitchellh-mapstructure-0.0.0-20160808181253-ca63d7c062ee) - ("go-github-com-mitchellh-iochan-1.0.0" - ,go-github-com-mitchellh-iochan-1.0.0) - ("go-github-com-mitchellh-gox-0.4.0" - ,go-github-com-mitchellh-gox-0.4.0) - ("go-github-com-mitchellh-cli-1.0.0" - ,go-github-com-mitchellh-cli-1.0.0) - ("go-github-com-hashicorp-memberlist-0.1.3" - ,go-github-com-hashicorp-memberlist-0.1.3) - ("go-github-com-hashicorp-mdns-1.0.0" - ,go-github-com-hashicorp-mdns-1.0.0) - ("go-github-com-hashicorp-logutils-1.0.0" - ,go-github-com-hashicorp-logutils-1.0.0) - ("go-github-com-hashicorp-go-uuid-1.0.1" - ,go-github-com-hashicorp-go-uuid-1.0.1) - ("go-github-com-hashicorp-go-syslog-1.0.0" - ,go-github-com-hashicorp-go-syslog-1.0.0) - ("go-github-com-hashicorp-go-msgpack-0.5.3" - ,go-github-com-hashicorp-go-msgpack-0.5.3) - ("go-github-com-armon-go-metrics-0.0.0-20180917152333-f0300d1749da" - ,go-github-com-armon-go-metrics-0.0.0-20180917152333-f0300d1749da) - ("go-github-com-armon-circbuf-0.0.0-20150827004946-bbbad097214e" - ,go-github-com-armon-circbuf-0.0.0-20150827004946-bbbad097214e))) - (home-page "https://github.com/hashicorp/serf") - (synopsis "Serf") - (description - "Serf is a decentralized solution for service discovery and orchestration -that is lightweight, highly available, and fault tolerant.") - (license license:mpl2.0))) - -(define-public go-github-com-mitchellh-mapstructure-1.1.2 - (package - (name "go-github-com-mitchellh-mapstructure") - (version "1.1.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mitchellh/mapstructure") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "03bpv28jz9zhn4947saqwi328ydj7f6g6pf1m2d4m5zdh5jlfkrr")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mitchellh/mapstructure")) - (home-page "https://github.com/mitchellh/mapstructure") - (synopsis "mapstructure") - (description - "Package mapstructure exposes functionality to convert one arbitrary -Go type into another, typically to convert a map[string]interface{} -into a native Go structure. -") - (license license:expat))) - -(define-public go-github-com-pascaldekloe-goe-0.0.0-20180627143212-57f6aae5913c - (package - (name "go-github-com-pascaldekloe-goe") - (version "0.0.0-20180627143212-57f6aae5913c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pascaldekloe/goe") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1dqd3mfb4z2vmv6pg6fhgvfc53vhndk24wcl9lj1rz02n6m279fq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pascaldekloe/goe")) - (home-page "https://github.com/pascaldekloe/goe") - (synopsis "Go Enterprise") - (description - "Common enterprise features for the Go programming language (golang).") - (license license:cc0))) - -(define-public go-github-com-hashicorp-consul-api-1.1.0 - (package - (name "go-github-com-hashicorp-consul-api") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/consul") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0xm3gl8i7pgsbsc2397bwh9hp2dwnk4cmw5y05acqn3zpyp84sbv")))) - (build-system go-build-system) - (arguments - '(#:import-path - "github.com/hashicorp/consul/api" - #:unpack-path - "github.com/hashicorp/consul")) - (propagated-inputs - `(("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0) - ("go-github-com-pascaldekloe-goe-0.0.0-20180627143212-57f6aae5913c" - ,go-github-com-pascaldekloe-goe-0.0.0-20180627143212-57f6aae5913c) - ("go-github-com-mitchellh-mapstructure-1.1.2" - ,go-github-com-mitchellh-mapstructure-1.1.2) - ("go-github-com-hashicorp-serf-0.8.2" - ,go-github-com-hashicorp-serf-0.8.2) - ("go-github-com-hashicorp-go-uuid-1.0.1" - ,go-github-com-hashicorp-go-uuid-1.0.1) - ("go-github-com-hashicorp-go-rootcerts-1.0.0" - ,go-github-com-hashicorp-go-rootcerts-1.0.0) - ("go-github-com-hashicorp-go-cleanhttp-0.5.1" - ,go-github-com-hashicorp-go-cleanhttp-0.5.1))) - (home-page "https://github.com/hashicorp/consul") - (synopsis "Consul API client") - (description - "This package provides the @code{api} package which attempts to -provide programmatic access to the full Consul API.") - (license license:mpl2.0))) - -(define-public go-github-com-golang-mock-1.5.0 - (package - (name "go-github-com-golang-mock") - (version "1.5.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/mock") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12l7p08pwwk3xn70w7rlm28nz6jf4szlzgjxjfmbssyirxxxy8v1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/mock")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" - ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) - ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0))) - (home-page "https://github.com/golang/mock") - (synopsis "gomock") - (description - "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It -integrates well with Go's built-in @code{testing} package, but can be used in other -contexts too.") - (license license:asl2.0))) - -(define-public go-github-com-google-pprof-0.0.0-20210226084205-cbba55b83ad5 - (package - (name "go-github-com-google-pprof") - (version "0.0.0-20210226084205-cbba55b83ad5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/pprof") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0drr44nqq0s3jillcrl8qa7sklxybs083lvashdh2ad62hrs31l7")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/pprof")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" - ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) - ("go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639" - ,go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639) - ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" - ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) - ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" - ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) - ("go-github-com-chzyer-logex-1.1.10" - ,go-github-com-chzyer-logex-1.1.10))) - (home-page "https://github.com/google/pprof") - (synopsis "Introduction") - (description - "pprof is a tool for collection, manipulation and visualization -of performance profiles. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20210226172049-e18ecbb05110") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1vlq8mdscp7yfaa1lmyv03y5m4c2d67ydg2q1i6smkrxghn3zn3q")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) - ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" - ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) - ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" - ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-github-com-google-pprof-0.0.0-20210122040257-d980be63207e - (package - (name "go-github-com-google-pprof") - (version "0.0.0-20210122040257-d980be63207e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/pprof") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0vg5z6rp5kfd324w8j12hlx9zv049vxljpc6dyqkj2k9vzzzqkw8")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/pprof")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" - ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) - ("go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639" - ,go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639) - ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" - ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) - ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" - ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) - ("go-github-com-chzyer-logex-1.1.10" - ,go-github-com-chzyer-logex-1.1.10))) - (home-page "https://github.com/google/pprof") - (synopsis "Introduction") - (description - "pprof is a tool for collection, manipulation and visualization -of performance profiles. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-mod-0.4.1 - (package - (name "go-golang-org-x-mod") - (version "0.4.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/mod") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0q4p41223d1xh4jmw9vmywjfi0jzn56gbidrwv5x1bzmx2qmj01n")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/mod")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" - ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) - ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" - ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) - ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" - ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) - (home-page "https://golang.org/x/mod") - (synopsis "mod") - (description - "This repository holds packages for writing tools -that work directly with Go module mechanics. -That is, it is for direct manipulation of Go modules themselves.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20210119194325-5f4716e94777 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20210119194325-5f4716e94777") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1xh4hk0fhkzq096z9qbzqfswmmgg4kvb44qvazpandvlpwm4jds2")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) - ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" - ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) - ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" - ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-oauth2-0.0.0-20210218202405-ba52d332ba99 - (package - (name "go-golang-org-x-oauth2") - (version "0.0.0-20210218202405-ba52d332ba99") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/oauth2") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0fdm3fljk3k4xbpzaywccayrhgqdfl79vl18k4z1zw2pl654bqbg")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/oauth2")) - (propagated-inputs - `(("go-google-golang-org-appengine-1.6.6" - ,go-google-golang-org-appengine-1.6.6) - ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" - ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) - ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) - (home-page "https://golang.org/x/oauth2") - (synopsis "OAuth2 for Go") - (description - "Package oauth2 provides support for making -OAuth2 authorized and authenticated HTTP requests, -as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -It can additionally grant authorization with Bearer JWT. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20210220050731-9a76102bfb43 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20210220050731-9a76102bfb43") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "07qn19yla2w604p3dc8h1c75xj2pxc4fajvg0mf0d4c72d5qiss4")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-google-pprof-0.0.0-20201203190320-1bf35d6f28c2 - (package - (name "go-github-com-google-pprof") - (version "0.0.0-20201203190320-1bf35d6f28c2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/pprof") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "140n5hjk2faanrf6v5h1559g755rgavynz1r99s1n15bmgibysvp")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/pprof")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" - ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) - ("go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639" - ,go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639) - ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" - ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) - ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" - ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) - ("go-github-com-chzyer-logex-1.1.10" - ,go-github-com-chzyer-logex-1.1.10))) - (home-page "https://github.com/google/pprof") - (synopsis "Introduction") - (description - "pprof is a tool for collection, manipulation and visualization -of performance profiles. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-mod-0.4.0 - (package - (name "go-golang-org-x-mod") - (version "0.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/mod") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ri003765yxawq6s8jbkbiaijihwrg980c4qwqsaa5x0sq2psrg1")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/mod")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" - ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) - ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" - ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) - ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" - ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) - (home-page "https://golang.org/x/mod") - (synopsis "mod") - (description - "This repository holds packages for writing tools -that work directly with Go module mechanics. -That is, it is for direct manipulation of Go modules themselves.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20201209123823-ac852fbbde11 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20201209123823-ac852fbbde11") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1zmp2fxgf7792xx15qhzcsfs8k0qv7q3m6jlcj6qvdngfzyvna64")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) - ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" - ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) - ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" - ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20201208233053-a543418bbed2 - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20201208233053-a543418bbed2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0r87p89pm2h75yajsz0g2vvy2q3z9gknc0fmsdm5rh427f1qazfr")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" - ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) - ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" - ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) - ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" - ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) - ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) - ("go-github-com-yuin-goldmark-1.2.1" - ,go-github-com-yuin-goldmark-1.2.1))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-github-com-google-martian-v3-3.1.0 - (package - (name "go-github-com-google-martian-v3") - (version "3.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/martian") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1pr9akggfzj2vw11l7ry4sij0hqslpc3gwx4ynbzyvbjhvh64sbc")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/martian/v3")) - (propagated-inputs - `(("go-golang-org-x-net-0.0.0-20190628185345-da137c7871d7" - ,go-golang-org-x-net-0.0.0-20190628185345-da137c7871d7))) - (home-page "https://github.com/google/martian") - (synopsis "Martian Proxy") - (description - "Package martian provides an HTTP/1.1 proxy with an API for configurable -request and response modifiers. -") - (license license:asl2.0))) - -(define-public go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639 - (package - (name "go-github-com-ianlancetaylor-demangle") - (version "0.0.0-20200824232613-28f6c0f3b639") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/ianlancetaylor/demangle") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0rsq3622gd40f1x1l7caidsxrmzg1993ich2higwd94fqbxs1r83")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/ianlancetaylor/demangle")) - (home-page "https://github.com/ianlancetaylor/demangle") - (synopsis "github.com/ianlancetaylor/demangle") - (description - "Package demangle defines functions that demangle GCC/LLVM -C++ and Rust symbol names. -This package recognizes names that were mangled according to the C++ ABI -defined at @url{http://codesourcery.com/cxx-abi/,http://codesourcery.com/cxx-abi/} and the Rust ABI -defined at -@url{https://rust-lang.github.io/rfcs/2603-rust-symbol-name-mangling-v0.html,https://rust-lang.github.io/rfcs/2603-rust-symbol-name-mangling-v0.html} -") - (license license:bsd-3))) - -(define-public go-github-com-google-pprof-0.0.0-20201023163331-3e6fc7fc9c4c - (package - (name "go-github-com-google-pprof") - (version "0.0.0-20201023163331-3e6fc7fc9c4c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/pprof") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1xmy4579gx45lqsy1cgddnc7nmaqfpiwd2kc5dhf8i0wjjvf18hq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/pprof")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" - ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) - ("go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639" - ,go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639) - ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" - ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) - ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" - ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) - ("go-github-com-chzyer-logex-1.1.10" - ,go-github-com-chzyer-logex-1.1.10))) - (home-page "https://github.com/google/pprof") - (synopsis "Introduction") - (description - "pprof is a tool for collection, manipulation and visualization -of performance profiles. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-net-0.0.0-20201031054903-ff519b6c9102 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20201031054903-ff519b6c9102") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "162ssgcc0kgj42ajaki0q3j5lwmixqqwkdqcmz41xg1k8wjm7riw")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) - ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" - ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) - ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" - ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-text-0.3.4 - (package - (name "go-golang-org-x-text") - (version "0.3.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "11jdvix83xcl5xnb039y4zrz4x5skzsps0w1jryp6wrar53cydvz")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/text")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" - ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) - (home-page "https://golang.org/x/text") - (synopsis "Go Text") - (description - "text is a repository of text-related packages related to internationalization -(i18n) and localization (l10n), such as character encodings, text -transformations, and locale-specific text handling. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20201110124207-079ba7bd75cd - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20201110124207-079ba7bd75cd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0g4d7cx480rbnpg16qqc4yycd50lpp2mi2qzvzr6hdny91v7sa05")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" - ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) - ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" - ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) - ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" - ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) - ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) - ("go-github-com-yuin-goldmark-1.2.1" - ,go-github-com-yuin-goldmark-1.2.1))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-github-com-google-go-cmp-0.5.2 - (package - (name "go-github-com-google-go-cmp") - (version "0.5.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0qchy411jm9q2l9mf7x3ry2ycaqp9xdhf2nx14qrpzcxfigv2705")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") - (license license:bsd-3))) - -(define-public go-golang-org-x-oauth2-0.0.0-20200902213428-5d25da1a8d43 - (package - (name "go-golang-org-x-oauth2") - (version "0.0.0-20200902213428-5d25da1a8d43") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/oauth2") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "14jx8sxshbvnx4fggn12mlmz000zcrd1a73n1455b1wgg1xfzq3n")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/oauth2")) - (propagated-inputs - `(("go-google-golang-org-appengine-1.6.6" - ,go-google-golang-org-appengine-1.6.6) - ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" - ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) - ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) - (home-page "https://golang.org/x/oauth2") - (synopsis "OAuth2 for Go") - (description - "Package oauth2 provides support for making -OAuth2 authorized and authenticated HTTP requests, -as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -It can additionally grant authorization with Bearer JWT. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20200905004654-be1d3432aa8f - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200905004654-be1d3432aa8f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1kd3szjsazhpgidv5xjv0s26fm4wvv2cr7j4zk8nblnqkic58as2")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20200904185747-39188db58858 - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20200904185747-39188db58858") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ydyylwqzjwijy4rdp2fmvnfh3s27896dx6g74r2wa6vbhisszvk")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" - ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) - ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" - ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) - ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" - ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) - ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) - ("go-github-com-yuin-goldmark-1.2.1" - ,go-github-com-yuin-goldmark-1.2.1))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-google-golang-org-genproto-0.0.0-20200904004341-0bd0a958aa1d - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20200904004341-0bd0a958aa1d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "01xp4ic4jvdv7n984cjgrgqbpbi9m4bj2xnfrs1s1zn1adx0jivs")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.24.0" - ,go-google-golang-org-protobuf-1.24.0) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-golang-protobuf-1.4.1" - ,go-github-com-golang-protobuf-1.4.1))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-google-golang-org-grpc-1.31.1 - (package - (name "go-google-golang-org-grpc") - (version "1.31.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18565vf9i2zc69znd9b8a2iz0kgv5cms0g0ppj93hnhri8rjqagk")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" - ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.3.3" - ,go-github-com-golang-protobuf-1.3.3) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-envoyproxy-go-control-plane-0.9.4" - ,go-github-com-envoyproxy-go-control-plane-0.9.4) - ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" - ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-google-golang-org-api-0.35.0 - (package - (name "go-google-golang-org-api") - (version "0.35.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-api-go-client") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0fgn21lmrlkw44sl0ivjicygwksibb1pclzp3zyh3ivn7ylvk2jd")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/api")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.31.1" ,go-google-golang-org-grpc-1.31.1) - ("go-google-golang-org-genproto-0.0.0-20200904004341-0bd0a958aa1d" - ,go-google-golang-org-genproto-0.0.0-20200904004341-0bd0a958aa1d) - ("go-google-golang-org-appengine-1.6.6" - ,go-google-golang-org-appengine-1.6.6) - ("go-golang-org-x-tools-0.0.0-20200904185747-39188db58858" - ,go-golang-org-x-tools-0.0.0-20200904185747-39188db58858) - ("go-golang-org-x-sys-0.0.0-20200905004654-be1d3432aa8f" - ,go-golang-org-x-sys-0.0.0-20200905004654-be1d3432aa8f) - ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" - ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) - ("go-golang-org-x-oauth2-0.0.0-20200902213428-5d25da1a8d43" - ,go-golang-org-x-oauth2-0.0.0-20200902213428-5d25da1a8d43) - ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" - ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) - ("go-go-opencensus-io-0.22.4" ,go-go-opencensus-io-0.22.4) - ("go-github-com-googleapis-gax-go-v2-2.0.5" - ,go-github-com-googleapis-gax-go-v2-2.0.5) - ("go-github-com-google-go-cmp-0.5.2" - ,go-github-com-google-go-cmp-0.5.2) - ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) - (home-page "https://google.golang.org/api") - (synopsis "Google APIs Client Library for Go") - (description - "Package api is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of -sub-packages. -") - (license license:bsd-3))) - -(define-public go-google-golang-org-genproto-0.0.0-20201109203340-2640f1f9cdfb - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20201109203340-2640f1f9cdfb") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "00mwybjbdpvmlkvmwsjvdb2z8lzzx2a340y4pf3bxqamalhdka0w")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.24.0" - ,go-google-golang-org-protobuf-1.24.0) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-golang-protobuf-1.4.1" - ,go-github-com-golang-protobuf-1.4.1))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-cloud-google-com-go-0.72.0 - (package - (name "go-cloud-google-com-go") - (version "0.72.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-cloud-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1x4gy466jrzab9l02dwd3lvy2dwy84j34zpjkm5xnxh45za6hpxn")))) - (build-system go-build-system) - (arguments '(#:import-path "cloud.google.com/go")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) - ("go-google-golang-org-genproto-0.0.0-20201109203340-2640f1f9cdfb" - ,go-google-golang-org-genproto-0.0.0-20201109203340-2640f1f9cdfb) - ("go-google-golang-org-api-0.35.0" ,go-google-golang-org-api-0.35.0) - ("go-golang-org-x-tools-0.0.0-20201110124207-079ba7bd75cd" - ,go-golang-org-x-tools-0.0.0-20201110124207-079ba7bd75cd) - ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) - ("go-golang-org-x-oauth2-0.0.0-20200902213428-5d25da1a8d43" - ,go-golang-org-x-oauth2-0.0.0-20200902213428-5d25da1a8d43) - ("go-golang-org-x-net-0.0.0-20201031054903-ff519b6c9102" - ,go-golang-org-x-net-0.0.0-20201031054903-ff519b6c9102) - ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" - ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) - ("go-go-opencensus-io-0.22.5" ,go-go-opencensus-io-0.22.5) - ("go-github-com-jstemmer-go-junit-report-0.9.1" - ,go-github-com-jstemmer-go-junit-report-0.9.1) - ("go-github-com-googleapis-gax-go-v2-2.0.5" - ,go-github-com-googleapis-gax-go-v2-2.0.5) - ("go-github-com-google-pprof-0.0.0-20201023163331-3e6fc7fc9c4c" - ,go-github-com-google-pprof-0.0.0-20201023163331-3e6fc7fc9c4c) - ("go-github-com-google-martian-v3-3.1.0" - ,go-github-com-google-martian-v3-3.1.0) - ("go-github-com-google-go-cmp-0.5.2" - ,go-github-com-google-go-cmp-0.5.2) - ("go-github-com-golang-protobuf-1.4.3" - ,go-github-com-golang-protobuf-1.4.3) - ("go-github-com-golang-mock-1.4.4" ,go-github-com-golang-mock-1.4.4) - ("go-cloud-google-com-go-storage-1.10.0" - ,go-cloud-google-com-go-storage-1.10.0))) - (home-page "https://cloud.google.com/go") - (synopsis "Google Cloud Client Libraries for Go") - (description - "Package cloud is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -of sub-packages. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-oauth2-0.0.0-20201109201403-9fd604954f58 - (package - (name "go-golang-org-x-oauth2") - (version "0.0.0-20201109201403-9fd604954f58") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/oauth2") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "06dj14f6jrgpqmf3v3z74zhcin3yj7yp8mzxljm3a3ihq984kz8v")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/oauth2")) - (propagated-inputs - `(("go-google-golang-org-appengine-1.6.6" - ,go-google-golang-org-appengine-1.6.6) - ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" - ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) - ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) - (home-page "https://golang.org/x/oauth2") - (synopsis "OAuth2 for Go") - (description - "Package oauth2 provides support for making -OAuth2 authorized and authenticated HTTP requests, -as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -It can additionally grant authorization with Bearer JWT. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20201201145000-ef89a241ccb3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0a8myxx2mvdr77a003gpy5jmdzbxbnrf5zppmpl4za4sspxlmwif")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20201201161351-ac6f37ff4c2a - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20201201161351-ac6f37ff4c2a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0akq0z86x51rh556fs7icjmmmgdyaa7rq7cmqlngrmvjb79wnwpl")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" - ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) - ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" - ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) - ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" - ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) - ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) - ("go-github-com-yuin-goldmark-1.2.1" - ,go-github-com-yuin-goldmark-1.2.1))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-google-golang-org-genproto-0.0.0-20201201144952-b05cb90ed32e - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20201201144952-b05cb90ed32e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1n9jlhnn5fg7a41ahdril7wgfli43kxplnpxbdbhrkknjra7xdjd")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.24.0" - ,go-google-golang-org-protobuf-1.24.0) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-golang-protobuf-1.4.1" - ,go-github-com-golang-protobuf-1.4.1))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-google-golang-org-api-0.36.0 - (package - (name "go-google-golang-org-api") - (version "0.36.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-api-go-client") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1x6wlavrqi2r6ss3h2kg94p2lfj0z019kc85zm1pajpf0k23fxp7")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/api")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) - ("go-google-golang-org-genproto-0.0.0-20201201144952-b05cb90ed32e" - ,go-google-golang-org-genproto-0.0.0-20201201144952-b05cb90ed32e) - ("go-google-golang-org-appengine-1.6.7" - ,go-google-golang-org-appengine-1.6.7) - ("go-golang-org-x-tools-0.0.0-20201201161351-ac6f37ff4c2a" - ,go-golang-org-x-tools-0.0.0-20201201161351-ac6f37ff4c2a) - ("go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3" - ,go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3) - ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" - ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) - ("go-golang-org-x-oauth2-0.0.0-20201109201403-9fd604954f58" - ,go-golang-org-x-oauth2-0.0.0-20201109201403-9fd604954f58) - ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" - ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) - ("go-go-opencensus-io-0.22.5" ,go-go-opencensus-io-0.22.5) - ("go-github-com-googleapis-gax-go-v2-2.0.5" - ,go-github-com-googleapis-gax-go-v2-2.0.5) - ("go-github-com-google-go-cmp-0.5.4" - ,go-github-com-google-go-cmp-0.5.4) - ("go-cloud-google-com-go-0.72.0" ,go-cloud-google-com-go-0.72.0))) - (home-page "https://google.golang.org/api") - (synopsis "Google APIs Client Library for Go") - (description - "Package api is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of -sub-packages. -") - (license license:bsd-3))) - -(define-public go-google-golang-org-genproto-0.0.0-20201210142538-e3217bee35cc - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20201210142538-e3217bee35cc") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1bzfa58dw7jmkrp46hikbsq1yyk2r29a1gn51sqlilbvf7lq96p9")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.24.0" - ,go-google-golang-org-protobuf-1.24.0) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-golang-protobuf-1.4.1" - ,go-github-com-golang-protobuf-1.4.1))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-cloud-google-com-go-0.74.0 - (package - (name "go-cloud-google-com-go") - (version "0.74.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-cloud-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "09j1qppf2gf14bn06hsyrj9jaxz9vlbs9d7yrxrdvh2234qsbggy")))) - (build-system go-build-system) - (arguments '(#:import-path "cloud.google.com/go")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.34.0" ,go-google-golang-org-grpc-1.34.0) - ("go-google-golang-org-genproto-0.0.0-20201210142538-e3217bee35cc" - ,go-google-golang-org-genproto-0.0.0-20201210142538-e3217bee35cc) - ("go-google-golang-org-api-0.36.0" ,go-google-golang-org-api-0.36.0) - ("go-golang-org-x-tools-0.0.0-20201208233053-a543418bbed2" - ,go-golang-org-x-tools-0.0.0-20201208233053-a543418bbed2) - ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) - ("go-golang-org-x-oauth2-0.0.0-20201208152858-08078c50e5b5" - ,go-golang-org-x-oauth2-0.0.0-20201208152858-08078c50e5b5) - ("go-golang-org-x-net-0.0.0-20201209123823-ac852fbbde11" - ,go-golang-org-x-net-0.0.0-20201209123823-ac852fbbde11) - ("go-golang-org-x-mod-0.4.0" ,go-golang-org-x-mod-0.4.0) - ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" - ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) - ("go-go-opencensus-io-0.22.5" ,go-go-opencensus-io-0.22.5) - ("go-github-com-jstemmer-go-junit-report-0.9.1" - ,go-github-com-jstemmer-go-junit-report-0.9.1) - ("go-github-com-googleapis-gax-go-v2-2.0.5" - ,go-github-com-googleapis-gax-go-v2-2.0.5) - ("go-github-com-google-pprof-0.0.0-20201203190320-1bf35d6f28c2" - ,go-github-com-google-pprof-0.0.0-20201203190320-1bf35d6f28c2) - ("go-github-com-google-martian-v3-3.1.0" - ,go-github-com-google-martian-v3-3.1.0) - ("go-github-com-google-go-cmp-0.5.4" - ,go-github-com-google-go-cmp-0.5.4) - ("go-github-com-golang-protobuf-1.4.3" - ,go-github-com-golang-protobuf-1.4.3) - ("go-github-com-golang-mock-1.4.4" ,go-github-com-golang-mock-1.4.4) - ("go-cloud-google-com-go-storage-1.10.0" - ,go-cloud-google-com-go-storage-1.10.0))) - (home-page "https://cloud.google.com/go") - (synopsis "Google Cloud Client Libraries for Go") - (description - "Package cloud is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -of sub-packages. -") - (license license:asl2.0))) - -(define-public go-go-opencensus-io-0.22.5 - (package - (name "go-go-opencensus-io") - (version "0.22.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/census-instrumentation/opencensus-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18s1d7bk28i8gbs6i587ccd31qp3f8gibgd14dpkzs05gyvlccy6")))) - (build-system go-build-system) - (arguments '(#:import-path "go.opencensus.io")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.20.1" ,go-google-golang-org-grpc-1.20.1) - ("go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb" - ,go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb) - ("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) - ("go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd" - ,go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd) - ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" - ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) - ("go-github-com-stretchr-testify-1.4.0" - ,go-github-com-stretchr-testify-1.4.0) - ("go-github-com-google-go-cmp-0.3.0" - ,go-github-com-google-go-cmp-0.3.0) - ("go-github-com-golang-protobuf-1.3.1" - ,go-github-com-golang-protobuf-1.3.1) - ("go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6" - ,go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6))) - (home-page "https://go.opencensus.io") - (synopsis "OpenCensus Libraries for Go") - (description "Package opencensus contains Go support for OpenCensus. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-oauth2-0.0.0-20201208152858-08078c50e5b5 - (package - (name "go-golang-org-x-oauth2") - (version "0.0.0-20201208152858-08078c50e5b5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/oauth2") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0zynwxw47nhwhs6n1c87c9np43lwl9m9z2w2cmdvjwhsisa93b75")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/oauth2")) - (propagated-inputs - `(("go-google-golang-org-appengine-1.6.6" - ,go-google-golang-org-appengine-1.6.6) - ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" - ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) - ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) - (home-page "https://golang.org/x/oauth2") - (synopsis "OAuth2 for Go") - (description - "Package oauth2 provides support for making -OAuth2 authorized and authenticated HTTP requests, -as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -It can additionally grant authorization with Bearer JWT. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20210104204734-6f8348627aad - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20210104204734-6f8348627aad") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0pmz8dwjf4gxr1gwnp4iahh3yh09apcf40kvvybycsx4rfjc2gbl")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20210105154028-b0ab187a4818 - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20210105154028-b0ab187a4818") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "157w706lz7j4s7cwgh7j7mf8v1sah5hm4dlmp8isf6vhnqpixdp7")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" - ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) - ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" - ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) - ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" - ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) - ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) - ("go-github-com-yuin-goldmark-1.2.1" - ,go-github-com-yuin-goldmark-1.2.1))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-google-golang-org-genproto-0.0.0-20201214200347-8c77b98c765d - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20201214200347-8c77b98c765d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1bdpss5xmla0gjz66mdk8bqpsdb5i1xz65g30k9cs2h7vrqlwzn4")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.24.0" - ,go-google-golang-org-protobuf-1.24.0) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-golang-protobuf-1.4.1" - ,go-github-com-golang-protobuf-1.4.1))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-github-com-cncf-udpa-go-0.0.0-20200629203442-efcf912fb354 - (package - (name "go-github-com-cncf-udpa-go") - (version "0.0.0-20200629203442-efcf912fb354") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cncf/udpa") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18b1v01h3id5d7v5gqabc4qsaja17r45rn3fvv38nrfx9l4smv0x")))) - (build-system go-build-system) - (arguments - '(#:import-path - "github.com/cncf/udpa/go" - #:unpack-path - "github.com/cncf/udpa")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2) - ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" - ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0))) - (home-page "https://github.com/cncf/udpa") - (synopsis "Description") - (description - "This library has been deprecated in favor of @code{github.com/cncf/xds/go}. All users are recommended to switch their imports.") - (license license:asl2.0))) - -(define-public go-github-com-envoyproxy-go-control-plane-0.9.7 - (package - (name "go-github-com-envoyproxy-go-control-plane") - (version "0.9.7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/envoyproxy/go-control-plane") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0nx5ybyadkjqr29hndn6amhbcqpi1rkfv12bxp0rk3ay045zxsh8")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.23.0" - ,go-google-golang-org-protobuf-1.23.0) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" - ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) - ("go-github-com-stretchr-testify-1.5.1" - ,go-github-com-stretchr-testify-1.5.1) - ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" - ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.2" - ,go-github-com-golang-protobuf-1.4.2) - ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" - ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) - ("go-github-com-cncf-udpa-go-0.0.0-20200629203442-efcf912fb354" - ,go-github-com-cncf-udpa-go-0.0.0-20200629203442-efcf912fb354) - ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" - ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) - (home-page "https://github.com/envoyproxy/go-control-plane") - (synopsis "control-plane") - (description - "This repository contains a Go-based implementation of an API server that -implements the discovery service APIs defined in -@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") - (license license:asl2.0))) - -(define-public go-google-golang-org-grpc-1.34.0 - (package - (name "go-google-golang-org-grpc") - (version "1.34.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0s8y19qvv0zfy2irq8vv12h65v7pw18k6yqfix1j2370yxmsajgm")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.25.0" - ,go-google-golang-org-protobuf-1.25.0) - ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" - ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) - ("go-github-com-google-go-cmp-0.5.0" - ,go-github-com-google-go-cmp-0.5.0) - ("go-github-com-golang-protobuf-1.4.2" - ,go-github-com-golang-protobuf-1.4.2) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-envoyproxy-go-control-plane-0.9.7" - ,go-github-com-envoyproxy-go-control-plane-0.9.7) - ("go-github-com-cncf-udpa-go-0.0.0-20200629203442-efcf912fb354" - ,go-github-com-cncf-udpa-go-0.0.0-20200629203442-efcf912fb354))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-google-golang-org-api-0.40.0 - (package - (name "go-google-golang-org-api") - (version "0.40.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-api-go-client") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0vs0bnzljg5iib8x01sy49ndgsz3cl1sq53pvy3h6kzp7may0bpc")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/api")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.34.0" ,go-google-golang-org-grpc-1.34.0) - ("go-google-golang-org-genproto-0.0.0-20201214200347-8c77b98c765d" - ,go-google-golang-org-genproto-0.0.0-20201214200347-8c77b98c765d) - ("go-google-golang-org-appengine-1.6.7" - ,go-google-golang-org-appengine-1.6.7) - ("go-golang-org-x-tools-0.0.0-20210105154028-b0ab187a4818" - ,go-golang-org-x-tools-0.0.0-20210105154028-b0ab187a4818) - ("go-golang-org-x-sys-0.0.0-20210104204734-6f8348627aad" - ,go-golang-org-x-sys-0.0.0-20210104204734-6f8348627aad) - ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" - ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) - ("go-golang-org-x-oauth2-0.0.0-20201208152858-08078c50e5b5" - ,go-golang-org-x-oauth2-0.0.0-20201208152858-08078c50e5b5) - ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" - ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) - ("go-go-opencensus-io-0.22.5" ,go-go-opencensus-io-0.22.5) - ("go-github-com-googleapis-gax-go-v2-2.0.5" - ,go-github-com-googleapis-gax-go-v2-2.0.5) - ("go-github-com-google-go-cmp-0.5.4" - ,go-github-com-google-go-cmp-0.5.4) - ("go-cloud-google-com-go-0.74.0" ,go-cloud-google-com-go-0.74.0))) - (home-page "https://google.golang.org/api") - (synopsis "Google APIs Client Library for Go") - (description - "Package api is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of -sub-packages. -") - (license license:bsd-3))) - -(define-public go-google-golang-org-genproto-0.0.0-20210222152913-aa3ee6e6a81c - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20210222152913-aa3ee6e6a81c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "06wa7v3s558rwxsqd1kqz5xy10kigzx50ciqh3zdxsbvxqvjwxrx")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.24.0" - ,go-google-golang-org-protobuf-1.24.0) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-golang-protobuf-1.4.1" - ,go-github-com-golang-protobuf-1.4.1))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-google-golang-org-grpc-1.35.0 - (package - (name "go-google-golang-org-grpc") - (version "1.35.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "15ij5acp9h8dxq0brc0jljj98badri23zpm4yvmsn6gnnxaykl72")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.25.0" - ,go-google-golang-org-protobuf-1.25.0) - ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" - ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) - ("go-github-com-google-go-cmp-0.5.0" - ,go-github-com-google-go-cmp-0.5.0) - ("go-github-com-golang-protobuf-1.4.2" - ,go-github-com-golang-protobuf-1.4.2) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad" - ,go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad) - ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" - ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-cloud-google-com-go-0.78.0 - (package - (name "go-cloud-google-com-go") - (version "0.78.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-cloud-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "11wldladkcz41ivsfnbrqy2hg5wp55d72hnr2wki0zvnhbzsj376")))) - (build-system go-build-system) - (arguments '(#:import-path "cloud.google.com/go")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.35.0" ,go-google-golang-org-grpc-1.35.0) - ("go-google-golang-org-genproto-0.0.0-20210222152913-aa3ee6e6a81c" - ,go-google-golang-org-genproto-0.0.0-20210222152913-aa3ee6e6a81c) - ("go-google-golang-org-api-0.40.0" ,go-google-golang-org-api-0.40.0) - ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) - ("go-golang-org-x-text-0.3.5" ,go-golang-org-x-text-0.3.5) - ("go-golang-org-x-sys-0.0.0-20210220050731-9a76102bfb43" - ,go-golang-org-x-sys-0.0.0-20210220050731-9a76102bfb43) - ("go-golang-org-x-oauth2-0.0.0-20210218202405-ba52d332ba99" - ,go-golang-org-x-oauth2-0.0.0-20210218202405-ba52d332ba99) - ("go-golang-org-x-net-0.0.0-20210119194325-5f4716e94777" - ,go-golang-org-x-net-0.0.0-20210119194325-5f4716e94777) - ("go-golang-org-x-mod-0.4.1" ,go-golang-org-x-mod-0.4.1) - ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" - ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) - ("go-go-opencensus-io-0.22.5" ,go-go-opencensus-io-0.22.5) - ("go-github-com-jstemmer-go-junit-report-0.9.1" - ,go-github-com-jstemmer-go-junit-report-0.9.1) - ("go-github-com-googleapis-gax-go-v2-2.0.5" - ,go-github-com-googleapis-gax-go-v2-2.0.5) - ("go-github-com-google-pprof-0.0.0-20210122040257-d980be63207e" - ,go-github-com-google-pprof-0.0.0-20210122040257-d980be63207e) - ("go-github-com-google-martian-v3-3.1.0" - ,go-github-com-google-martian-v3-3.1.0) - ("go-github-com-google-go-cmp-0.5.4" - ,go-github-com-google-go-cmp-0.5.4) - ("go-github-com-golang-protobuf-1.4.3" - ,go-github-com-golang-protobuf-1.4.3) - ("go-github-com-golang-mock-1.4.4" ,go-github-com-golang-mock-1.4.4) - ("go-cloud-google-com-go-storage-1.10.0" - ,go-cloud-google-com-go-storage-1.10.0))) - (home-page "https://cloud.google.com/go") - (synopsis "Google Cloud Client Libraries for Go") - (description - "Package cloud is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -of sub-packages. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-oauth2-0.0.0-20210220000619-9bb904979d93 - (package - (name "go-golang-org-x-oauth2") - (version "0.0.0-20210220000619-9bb904979d93") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/oauth2") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1rhndpvpvfy5bsaxi974cznlq4hbamhmy6l06ppp9phh12pvn11p")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/oauth2")) - (propagated-inputs - `(("go-google-golang-org-appengine-1.6.6" - ,go-google-golang-org-appengine-1.6.6) - ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" - ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) - ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) - (home-page "https://golang.org/x/oauth2") - (synopsis "OAuth2 for Go") - (description - "Package oauth2 provides support for making -OAuth2 authorized and authenticated HTTP requests, -as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -It can additionally grant authorization with Bearer JWT. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20210305230114-8fe3ee5dd75b - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20210305230114-8fe3ee5dd75b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1x7fn66vplxkac6lbwqv649wwnx7kz0bqdzgr98z7yx7cfdxd7rj")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-google-golang-org-genproto-0.0.0-20210303154014-9728d6b83eeb - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20210303154014-9728d6b83eeb") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1abic7gjp07d1s6imjfn00s316xdirss3zvcric74gr9varr02xn")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.24.0" - ,go-google-golang-org-protobuf-1.24.0) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-golang-protobuf-1.4.1" - ,go-github-com-golang-protobuf-1.4.1))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-google-golang-org-api-0.41.0 - (package - (name "go-google-golang-org-api") - (version "0.41.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-api-go-client") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0yzz534xzl2km3vxr18h204yvnrzqlss02fagg2ign0sy3qnlkhx")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/api")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.36.0" ,go-google-golang-org-grpc-1.36.0) - ("go-google-golang-org-genproto-0.0.0-20210303154014-9728d6b83eeb" - ,go-google-golang-org-genproto-0.0.0-20210303154014-9728d6b83eeb) - ("go-google-golang-org-appengine-1.6.7" - ,go-google-golang-org-appengine-1.6.7) - ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) - ("go-golang-org-x-sys-0.0.0-20210305230114-8fe3ee5dd75b" - ,go-golang-org-x-sys-0.0.0-20210305230114-8fe3ee5dd75b) - ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" - ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) - ("go-golang-org-x-oauth2-0.0.0-20210220000619-9bb904979d93" - ,go-golang-org-x-oauth2-0.0.0-20210220000619-9bb904979d93) - ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" - ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) - ("go-go-opencensus-io-0.23.0" ,go-go-opencensus-io-0.23.0) - ("go-github-com-googleapis-gax-go-v2-2.0.5" - ,go-github-com-googleapis-gax-go-v2-2.0.5) - ("go-github-com-google-go-cmp-0.5.5" - ,go-github-com-google-go-cmp-0.5.5) - ("go-cloud-google-com-go-0.78.0" ,go-cloud-google-com-go-0.78.0))) - (home-page "https://google.golang.org/api") - (synopsis "Google APIs Client Library for Go") - (description - "Package api is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of -sub-packages. -") - (license license:bsd-3))) - -(define-public go-google-golang-org-genproto-0.0.0-20210310155132-4ce2db91004e - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20210310155132-4ce2db91004e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0r5f024c4piqna27pvc28m0h44ms9rhcbihf1zn5l8prf4vvrdw9")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.24.0" - ,go-google-golang-org-protobuf-1.24.0) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-golang-protobuf-1.4.1" - ,go-github-com-golang-protobuf-1.4.1))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-cloud-google-com-go-0.79.0 - (package - (name "go-cloud-google-com-go") - (version "0.79.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-cloud-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "031jrfgyys0slh154593d4swj6iqrjvs9dxwmab99dl6zfws77jv")))) - (build-system go-build-system) - (arguments '(#:import-path "cloud.google.com/go")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.36.0" ,go-google-golang-org-grpc-1.36.0) - ("go-google-golang-org-genproto-0.0.0-20210310155132-4ce2db91004e" - ,go-google-golang-org-genproto-0.0.0-20210310155132-4ce2db91004e) - ("go-google-golang-org-api-0.41.0" ,go-google-golang-org-api-0.41.0) - ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) - ("go-golang-org-x-text-0.3.5" ,go-golang-org-x-text-0.3.5) - ("go-golang-org-x-oauth2-0.0.0-20210220000619-9bb904979d93" - ,go-golang-org-x-oauth2-0.0.0-20210220000619-9bb904979d93) - ("go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110" - ,go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110) - ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" - ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) - ("go-go-opencensus-io-0.23.0" ,go-go-opencensus-io-0.23.0) - ("go-github-com-jstemmer-go-junit-report-0.9.1" - ,go-github-com-jstemmer-go-junit-report-0.9.1) - ("go-github-com-googleapis-gax-go-v2-2.0.5" - ,go-github-com-googleapis-gax-go-v2-2.0.5) - ("go-github-com-google-pprof-0.0.0-20210226084205-cbba55b83ad5" - ,go-github-com-google-pprof-0.0.0-20210226084205-cbba55b83ad5) - ("go-github-com-google-martian-v3-3.1.0" - ,go-github-com-google-martian-v3-3.1.0) - ("go-github-com-google-go-cmp-0.5.5" - ,go-github-com-google-go-cmp-0.5.5) - ("go-github-com-golang-protobuf-1.4.3" - ,go-github-com-golang-protobuf-1.4.3) - ("go-github-com-golang-mock-1.5.0" ,go-github-com-golang-mock-1.5.0) - ("go-cloud-google-com-go-storage-1.10.0" - ,go-cloud-google-com-go-storage-1.10.0))) - (home-page "https://cloud.google.com/go") - (synopsis "Google Cloud Client Libraries for Go") - (description - "Package cloud is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -of sub-packages. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-oauth2-0.0.0-20210313182246-cd4f82c27b84 - (package - (name "go-golang-org-x-oauth2") - (version "0.0.0-20210313182246-cd4f82c27b84") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/oauth2") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1jf68sh1957ji1lv1zrrhsbm6jr3508pw159pfzgyw6hbzsg5amv")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/oauth2")) - (propagated-inputs - `(("go-google-golang-org-appengine-1.6.6" - ,go-google-golang-org-appengine-1.6.6) - ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" - ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) - ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) - (home-page "https://golang.org/x/oauth2") - (synopsis "OAuth2 for Go") - (description - "Package oauth2 provides support for making -OAuth2 authorized and authenticated HTTP requests, -as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -It can additionally grant authorization with Bearer JWT. -") - (license license:bsd-3))) - -(define-public go-google-golang-org-genproto-0.0.0-20210319143718-93e7006c17a6 - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20210319143718-93e7006c17a6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0l143m8rn7zmbfb2rpdawhxs8qjbdpn61hqynf47j5hwsbjci2xs")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.24.0" - ,go-google-golang-org-protobuf-1.24.0) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-golang-protobuf-1.4.1" - ,go-github-com-golang-protobuf-1.4.1))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-google-golang-org-grpc-1.36.0 - (package - (name "go-google-golang-org-grpc") - (version "1.36.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1m4xsfv3ysc84cwqxqqr61fs3d2w04f0q5xbdjijhczjixcxwh5i")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.25.0" - ,go-google-golang-org-protobuf-1.25.0) - ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" - ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) - ("go-github-com-google-go-cmp-0.5.0" - ,go-github-com-google-go-cmp-0.5.0) - ("go-github-com-golang-protobuf-1.4.2" - ,go-github-com-golang-protobuf-1.4.2) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad" - ,go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad) - ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" - ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-google-golang-org-api-0.43.0 - (package - (name "go-google-golang-org-api") - (version "0.43.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-api-go-client") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0wxxbihigjn49warampi7gqfslbnp9nrj5zmk8p3ssq429jpvsib")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/api")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.36.0" ,go-google-golang-org-grpc-1.36.0) - ("go-google-golang-org-genproto-0.0.0-20210319143718-93e7006c17a6" - ,go-google-golang-org-genproto-0.0.0-20210319143718-93e7006c17a6) - ("go-google-golang-org-appengine-1.6.7" - ,go-google-golang-org-appengine-1.6.7) - ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) - ("go-golang-org-x-sys-0.0.0-20210320140829-1e4c9ba3b0c4" - ,go-golang-org-x-sys-0.0.0-20210320140829-1e4c9ba3b0c4) - ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" - ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) - ("go-golang-org-x-oauth2-0.0.0-20210313182246-cd4f82c27b84" - ,go-golang-org-x-oauth2-0.0.0-20210313182246-cd4f82c27b84) - ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" - ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) - ("go-go-opencensus-io-0.23.0" ,go-go-opencensus-io-0.23.0) - ("go-github-com-googleapis-gax-go-v2-2.0.5" - ,go-github-com-googleapis-gax-go-v2-2.0.5) - ("go-github-com-google-go-cmp-0.5.5" - ,go-github-com-google-go-cmp-0.5.5) - ("go-cloud-google-com-go-0.79.0" ,go-cloud-google-com-go-0.79.0))) - (home-page "https://google.golang.org/api") - (synopsis "Google APIs Client Library for Go") - (description - "Package api is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of -sub-packages. -") - (license license:bsd-3))) - -(define-public go-cloud-google-com-go-0.81.0 - (package - (name "go-cloud-google-com-go") - (version "0.81.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-cloud-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "15jgynqb5pbxqbj3a7ii970yn4srsw1dbxzxnhpkfkmplalpgyh3")))) - (build-system go-build-system) - (arguments '(#:import-path "cloud.google.com/go")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.36.1" ,go-google-golang-org-grpc-1.36.1) - ("go-google-golang-org-genproto-0.0.0-20210402141018-6c239bbf2bb1" - ,go-google-golang-org-genproto-0.0.0-20210402141018-6c239bbf2bb1) - ("go-google-golang-org-api-0.43.0" ,go-google-golang-org-api-0.43.0) - ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) - ("go-golang-org-x-text-0.3.5" ,go-golang-org-x-text-0.3.5) - ("go-golang-org-x-oauth2-0.0.0-20210313182246-cd4f82c27b84" - ,go-golang-org-x-oauth2-0.0.0-20210313182246-cd4f82c27b84) - ("go-golang-org-x-net-0.0.0-20210316092652-d523dce5a7f4" - ,go-golang-org-x-net-0.0.0-20210316092652-d523dce5a7f4) - ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" - ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) - ("go-go-opencensus-io-0.23.0" ,go-go-opencensus-io-0.23.0) - ("go-github-com-jstemmer-go-junit-report-0.9.1" - ,go-github-com-jstemmer-go-junit-report-0.9.1) - ("go-github-com-googleapis-gax-go-v2-2.0.5" - ,go-github-com-googleapis-gax-go-v2-2.0.5) - ("go-github-com-google-pprof-0.0.0-20210226084205-cbba55b83ad5" - ,go-github-com-google-pprof-0.0.0-20210226084205-cbba55b83ad5) - ("go-github-com-google-martian-v3-3.1.0" - ,go-github-com-google-martian-v3-3.1.0) - ("go-github-com-google-go-cmp-0.5.5" - ,go-github-com-google-go-cmp-0.5.5) - ("go-github-com-golang-protobuf-1.5.1" - ,go-github-com-golang-protobuf-1.5.1) - ("go-github-com-golang-mock-1.5.0" ,go-github-com-golang-mock-1.5.0) - ("go-cloud-google-com-go-storage-1.10.0" - ,go-cloud-google-com-go-storage-1.10.0))) - (home-page "https://cloud.google.com/go") - (synopsis "Google Cloud Client Libraries for Go") - (description - "Package cloud is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -of sub-packages. -") - (license license:asl2.0))) - -(define-public go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e - (package - (name "go-github-com-golang-groupcache") - (version "0.0.0-20200121045136-8c9f03a8e57e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/groupcache") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0vjjr79r32icjzlb05wn02k59av7jx0rn1jijml8r4whlg7dnkfh")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/groupcache")) - (home-page "https://github.com/golang/groupcache") - (synopsis "groupcache") - (description - "Package groupcache provides a data loading mechanism with caching -and de-duplication that works across a set of peer processes. -") - (license license:asl2.0))) - -(define-public go-github-com-golang-protobuf-1.4.3 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1kf1d7xmyjvy0z6j5czp6nqyvj9zrk6liv6znif08927xqfrzyln")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.23.0" - ,go-google-golang-org-protobuf-1.23.0) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-github-com-google-go-cmp-0.5.3 - (package - (name "go-github-com-google-go-cmp") - (version "0.5.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "011gdkmyk3w7qkcwljhqak4h5npn4n7fwgx1fwpyx9c7wizvgkm5")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") - (license license:bsd-3))) - -(define-public go-github-com-stretchr-testify-1.6.1 - (package - (name "go-github-com-stretchr-testify") - (version "1.6.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/testify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1yhiqqzjvi63pf01rgzx68gqkkvjx03fvl5wk30br5l6s81s090l")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/testify")) - (propagated-inputs - `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" - ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) - ("go-github-com-stretchr-objx-0.1.0" - ,go-github-com-stretchr-objx-0.1.0) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.0" - ,go-github-com-davecgh-go-spew-1.1.0))) - (home-page "https://github.com/stretchr/testify") - (synopsis "Testify - Thou Shalt Write Tests") - (description - "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -") - (license license:expat))) - -(define-public go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b - (package - (name "go-golang-org-x-net") - (version "0.0.0-20201110031124-69a78807bb2b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "176z5k6jbhr9vf0am2avl1lyqwym3q0mri98yb8r572z33qmcw1d")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) - ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" - ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) - ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" - ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-google-golang-org-grpc-1.33.2 - (package - (name "go-google-golang-org-grpc") - (version "1.33.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "03yz4nlf4kqbnpw48f0mvcb2f5zzy0vjd5i2iw0hrjspd0238fzk")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.25.0" - ,go-google-golang-org-protobuf-1.25.0) - ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" - ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) - ("go-github-com-google-go-cmp-0.5.0" - ,go-github-com-google-go-cmp-0.5.0) - ("go-github-com-golang-protobuf-1.4.1" - ,go-github-com-golang-protobuf-1.4.1) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-envoyproxy-go-control-plane-0.9.4" - ,go-github-com-envoyproxy-go-control-plane-0.9.4) - ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" - ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-go-opencensus-io-0.23.0 - (package - (name "go-go-opencensus-io") - (version "0.23.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/census-instrumentation/opencensus-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0gw4f7inf8y2ik00yfb36xganiq9rl4w2d1a41bsjqsh83ajz2km")))) - (build-system go-build-system) - (arguments '(#:import-path "go.opencensus.io")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) - ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" - ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-google-go-cmp-0.5.3" - ,go-github-com-google-go-cmp-0.5.3) - ("go-github-com-golang-protobuf-1.4.3" - ,go-github-com-golang-protobuf-1.4.3) - ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" - ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e))) - (home-page "https://go.opencensus.io") - (synopsis "OpenCensus Libraries for Go") - (description "Package opencensus contains Go support for OpenCensus. -") - (license license:asl2.0))) - -(define-public go-github-com-golang-mock-1.4.4 - (package - (name "go-github-com-golang-mock") - (version "1.4.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/mock") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1lj0dvd6div4jaq1s0afpwqaq9ah8cxhkq93wii2ably1xmp2l0a")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/mock")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262" - ,go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262))) - (home-page "https://github.com/golang/mock") - (synopsis "gomock") - (description - "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It -integrates well with Go's built-in @code{testing} package, but can be used in other -contexts too.") - (license license:asl2.0))) - -(define-public go-golang-org-x-tools-0.0.0-20200825202427-b303f430e36d - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20200825202427-b303f430e36d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0zzf6ifzjvkwin6m97jp2dndbfac0sbdr84ki79j9srhpqdigl75")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) - ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" - ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) - ("go-golang-org-x-net-0.0.0-20200625001655-4c5254603344" - ,go-golang-org-x-net-0.0.0-20200625001655-4c5254603344) - ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) - ("go-github-com-yuin-goldmark-1.1.32" - ,go-github-com-yuin-goldmark-1.1.32))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20190628185345-da137c7871d7 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190628185345-da137c7871d7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1qsiyr3irmb6ii06hivm9p2c7wqyxczms1a9v1ss5698yjr3fg47")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-github-com-google-martian-v3-3.0.0 - (package - (name "go-github-com-google-martian-v3") - (version "3.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/martian") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ngvs4l6a06s8scnliq9i5pwvwpzfpa5wf9skg0gcvysli1rm3fm")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/martian/v3")) - (propagated-inputs - `(("go-golang-org-x-net-0.0.0-20190628185345-da137c7871d7" - ,go-golang-org-x-net-0.0.0-20190628185345-da137c7871d7))) - (home-page "https://github.com/google/martian") - (synopsis "Martian Proxy") - (description - "Package martian provides an HTTP/1.1 proxy with an API for configurable -request and response modifiers. -") - (license license:asl2.0))) - -(define-public go-github-com-google-pprof-0.0.0-20200708004538-1a94d8640e99 - (package - (name "go-github-com-google-pprof") - (version "0.0.0-20200708004538-1a94d8640e99") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/pprof") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0isfwwan9vimwsfjml0phwrqv6kb83mkmk063dcb81k09gzzs3wy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/pprof")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" - ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) - ("go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6" - ,go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6) - ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" - ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) - ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" - ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) - ("go-github-com-chzyer-logex-1.1.10" - ,go-github-com-chzyer-logex-1.1.10))) - (home-page "https://github.com/google/pprof") - (synopsis "Introduction") - (description - "pprof is a tool for collection, manipulation and visualization -of performance profiles. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-net-0.0.0-20200707034311-ab3426394381 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20200707034311-ab3426394381") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1wr7rnnqp210yykkypinb8ciszx28aq5a3l3dvsv6swzxxngs8zn")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" - ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) - ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" - ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20200729194436-6467de6f59a7 - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20200729194436-6467de6f59a7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "14zpkr5idlx2zbm5dp7gk4afppy7k3j4y68s1qvpgi70yazaxzkd")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) - ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" - ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) - ("go-golang-org-x-net-0.0.0-20200625001655-4c5254603344" - ,go-golang-org-x-net-0.0.0-20200625001655-4c5254603344) - ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) - ("go-github-com-yuin-goldmark-1.1.32" - ,go-github-com-yuin-goldmark-1.1.32))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262 - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20190425150028-36563e24a262") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0lasi96f6a1h11gkm8kl33x03pmxp369wrqq2dg7x7xv9nq76d6g")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" - ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-golang-org-x-text-0.0.0-20170915032832-14c0d48ead0c - (package - (name "go-golang-org-x-text") - (version "0.0.0-20170915032832-14c0d48ead0c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/text") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0y0nrj4hw7vby6m3iqklbf4v7njqlsx7s4pwfkwmvh1ryn1kb7d6")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/text")) - (home-page "https://golang.org/x/text") - (synopsis "Go Text") - (description - "text is a repository of text-related packages related to internationalization -(i18n) and localization (l10n), such as character encodings, text -transformations, and locale-specific text handling. -") - (license license:bsd-3))) - -(define-public go-rsc-io-sampler-1.3.0 - (package - (name "go-rsc-io-sampler") - (version "1.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/rsc/sampler") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0byxk2ynba50py805kcvbvjzh59l1r308i1xgyzpw6lff4xx9xjh")))) - (build-system go-build-system) - (arguments '(#:import-path "rsc.io/sampler")) - (propagated-inputs - `(("go-golang-org-x-text-0.0.0-20170915032832-14c0d48ead0c" - ,go-golang-org-x-text-0.0.0-20170915032832-14c0d48ead0c))) - (home-page "https://rsc.io/sampler") - (synopsis #f) - (description "Package sampler shows simple texts. -") - (license license:bsd-3))) - -(define-public go-rsc-io-quote-v3-3.1.0 - (package - (name "go-rsc-io-quote-v3") - (version "3.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/rsc/quote") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0nvv97hwwrl1mx5gzsbdm1ndnwpg3m7i2jb10ig9wily7zmvki0i")))) - (build-system go-build-system) - (arguments - '(#:import-path "rsc.io/quote/v3" #:unpack-path "rsc.io/quote/v3")) - (propagated-inputs `(("go-rsc-io-sampler-1.3.0" ,go-rsc-io-sampler-1.3.0))) - (home-page "https://rsc.io/quote/v3") - (synopsis #f) - (description "Package quote collects pithy sayings. -") - (license license:bsd-3))) - -(define-public go-github-com-golang-mock-1.4.3 - (package - (name "go-github-com-golang-mock") - (version "1.4.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/mock") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1p37xnja1dgq5ykx24n7wincwz2gahjh71b95p8vpw7ss2g8j8wx")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/mock")) - (propagated-inputs - `(("go-rsc-io-quote-v3-3.1.0" ,go-rsc-io-quote-v3-3.1.0) - ("go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262" - ,go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262))) - (home-page "https://github.com/golang/mock") - (synopsis "gomock") - (description - "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It -integrates well with Go's built-in @code{testing} package, but can be used in other -contexts too.") - (license license:asl2.0))) - -(define-public go-github-com-golang-protobuf-1.3.5 - (package - (name "go-github-com-golang-protobuf") - (version "1.3.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1gkd1942vk9n8kfzdwy1iil6wgvlwjq7a3y5jc49ck4lz9rhmgkq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-github-com-chzyer-logex-1.1.10 - (package - (name "go-github-com-chzyer-logex") - (version "1.1.10") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/chzyer/logex") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "08pbjj3wx9acavlwyr055isa8a5hnmllgdv5k6ra60l5y1brmlq4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/chzyer/logex")) - (home-page "https://github.com/chzyer/logex") - (synopsis #f) - (description #f) - (license #f))) - -(define-public go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e - (package - (name "go-github-com-chzyer-readline") - (version "0.0.0-20180603132655-2972be24d48e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/chzyer/readline") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "104q8dazj8yf6b089jjr82fy9h1g80zyyzvp3g8b44a7d8ngjj6r")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/chzyer/readline")) - (home-page "https://github.com/chzyer/readline") - (synopsis "Guide") - (description - "Readline is a pure go implementation for GNU-Readline kind library. -") - (license license:expat))) - -(define-public go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1 - (package - (name "go-github-com-chzyer-test") - (version "0.0.0-20180213035817-a1ea475d72b1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/chzyer/test") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0rns2aqk22i9xsgyap0pq8wi4cfaxsri4d9q6xxhhyma8jjsnj2k")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/chzyer/test")) - (home-page "https://github.com/chzyer/test") - (synopsis "test") - (description #f) - (license license:expat))) - -(define-public go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6 - (package - (name "go-github-com-ianlancetaylor-demangle") - (version "0.0.0-20181102032728-5e5cf60278f6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/ianlancetaylor/demangle") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fhjk11cip9c3jyj1byz9z77n6n2rlxmyz0xjx1zpn1da3cvri75")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/ianlancetaylor/demangle")) - (home-page "https://github.com/ianlancetaylor/demangle") - (synopsis "github.com/ianlancetaylor/demangle") - (description - "Package demangle defines functions that demangle GCC/LLVM -C++ and Rust symbol names. -This package recognizes names that were mangled according to the C++ ABI -defined at @url{http://codesourcery.com/cxx-abi/,http://codesourcery.com/cxx-abi/} and the Rust ABI -defined at -@url{https://rust-lang.github.io/rfcs/2603-rust-symbol-name-mangling-v0.html,https://rust-lang.github.io/rfcs/2603-rust-symbol-name-mangling-v0.html} -") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20191204072324-ce4227a45e2e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1s43wvqfml6ml5ks7iv2bis9d664g77mq86v7mfmjhn56x856g35")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-google-pprof-0.0.0-20200229191704-1ebb73c60ed3 - (package - (name "go-github-com-google-pprof") - (version "0.0.0-20200229191704-1ebb73c60ed3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/pprof") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1gdi9p4j1zfm5xlm488i5l0q3kk4q6hsmbmlk6p729i0di2n3ifa")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/pprof")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" - ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) - ("go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6" - ,go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6) - ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" - ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) - ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" - ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) - ("go-github-com-chzyer-logex-1.1.10" - ,go-github-com-chzyer-logex-1.1.10))) - (home-page "https://github.com/google/pprof") - (synopsis "Introduction") - (description - "pprof is a tool for collection, manipulation and visualization -of performance profiles. -") - (license license:asl2.0))) - -(define-public go-github-com-jstemmer-go-junit-report-0.9.1 - (package - (name "go-github-com-jstemmer-go-junit-report") - (version "0.9.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/jstemmer/go-junit-report") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1knip80yir1cdsjlb3rzy0a4w3kl4ljpiciaz6hjzwqlfhnv7bkw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/jstemmer/go-junit-report")) - (home-page "https://github.com/jstemmer/go-junit-report") - (synopsis "go-junit-report") - (description - "Converts @code{go test} output to an xml report, suitable for applications that -expect junit xml reports (e.g. @url{http://jenkins-ci.org,Jenkins}).") - (license license:expat))) - -(define-public go-golang-org-x-net-0.0.0-20200324143707-d3edc9973b7e - (package - (name "go-golang-org-x-net") - (version "0.0.0-20200324143707-d3edc9973b7e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12zbjwcsh9b0lwycqlkrnbyg5a6a9dzgj8hhgq399bdda5bd97y7")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" - ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-github-com-golang-mock-1.2.0 - (package - (name "go-github-com-golang-mock") - (version "1.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/mock") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12ddj2g8ab87id6n2n67vnbhq6p8dvgsq1pzpqfriym4dk8w54fg")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/mock")) - (home-page "https://github.com/golang/mock") - (synopsis "gomock") - (description - "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It -integrates well with Go's built-in @code{testing} package, but can be used in other -contexts too.") - (license license:asl2.0))) - -(define-public go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c - (package - (name "go-github-com-google-btree") - (version "0.0.0-20180813153112-4030bb1f1f0c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/btree") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ba430m9fbnagacp57krgidsyrgp3ycw5r7dj71brgp5r52g82p6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/btree")) - (home-page "https://github.com/google/btree") - (synopsis "BTree implementation for Go") - (description - "Package btree implements in-memory B-Trees of arbitrary degree. -") - (license license:asl2.0))) - -(define-public go-github-com-google-martian-2.1.0+incompatible - (package - (name "go-github-com-google-martian") - (version "2.1.0+incompatible") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/martian") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "197hil6vrjk50b9wvwyzf61csid83whsjj6ik8mc9r2lryxlyyrp")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/martian")) - (home-page "https://github.com/google/martian") - (synopsis "Martian Proxy") - (description - "Package martian provides an HTTP/1.1 proxy with an API for configurable -request and response modifiers. -") - (license license:asl2.0))) - -(define-public go-github-com-google-pprof-0.0.0-20181206194817-3ea8567a2e57 - (package - (name "go-github-com-google-pprof") - (version "0.0.0-20181206194817-3ea8567a2e57") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/pprof") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "09rhjn3ms0a72dw0yzbp237p7yhqma772zspddn6mgkh3gi3kn4c")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/pprof")) - (home-page "https://github.com/google/pprof") - (synopsis "Introduction") - (description - "pprof is a tool for collection, manipulation and visualization -of performance profiles. -") - (license license:asl2.0))) - -(define-public go-github-com-googleapis-gax-go-v2-2.0.4 - (package - (name "go-github-com-googleapis-gax-go-v2") - (version "2.0.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/gax-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1iwnm6ky1x53lgs44mw3hpdkjzrm5qd0kfs50m0qcq2ml5m1cwdm")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/googleapis/gax-go/v2")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.19.0" - ,go-google-golang-org-grpc-1.19.0))) - (home-page "https://github.com/googleapis/gax-go") - (synopsis #f) - (description - "Package gax contains a set of modules which aid the development of APIs -for clients and servers based on gRPC and Google API conventions. -") - (license license:bsd-3))) - -(define-public go-github-com-jstemmer-go-junit-report-0.0.0-20190106144839-af01ea7f8024 - (package - (name "go-github-com-jstemmer-go-junit-report") - (version "0.0.0-20190106144839-af01ea7f8024") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/jstemmer/go-junit-report") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1lp3n94ris12hac02wi31f3whs88lcrzwgdg43a5j6cafg9p1d0s")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/jstemmer/go-junit-report")) - (home-page "https://github.com/jstemmer/go-junit-report") - (synopsis "go-junit-report") - (description - "Converts @code{go test} output to an xml report, suitable for applications that -expect junit xml reports (e.g. @url{http://jenkins-ci.org,Jenkins}).") - (license license:expat))) - -(define-public go-golang-org-x-text-0.3.1-0.20180807135948-17ff2d5776d2 - (package - (name "go-golang-org-x-text") - (version "0.3.1-0.20180807135948-17ff2d5776d2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/text") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1rrh2mnmyxr45nsvy42zq3w3ly6gw6rl993knwvf1w71kyv0jjnj")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/text")) - (home-page "https://golang.org/x/text") - (synopsis "Go Text") - (description - "text is a repository of text-related packages related to internationalization -(i18n) and localization (l10n), such as character encodings, text -transformations, and locale-specific text handling. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-time-0.0.0-20181108054448-85acf8d2951c - (package - (name "go-golang-org-x-time") - (version "0.0.0-20181108054448-85acf8d2951c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/time") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0yqnxsrarjk4qkda8kcxzmk7y90kkkxzx9iwryzrk7bzs87ky3xc")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/time")) - (home-page "https://golang.org/x/time") - (synopsis "Go Time") - (description "This repository provides supplementary Go time packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f - (package - (name "go-golang-org-x-lint") - (version "0.0.0-20190301231843-5614ed5bae6f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/lint") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0fzn0zjv0x92xvfdq3a0v9w5sgkhr7hxkfy9zaqi8i57807z8bnx")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/lint")) - (home-page "https://golang.org/x/lint") - (synopsis "Installation") - (description "Package lint contains a linter for Go source code. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421 - (package - (name "go-golang-org-x-oauth2") - (version "0.0.0-20190226205417-e64efc72b421") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/oauth2") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0djvwz2avx7knsjbl434vw1wqbrg53xp1kh599gfixn5icrggz4m")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/oauth2")) - (propagated-inputs - `(("go-google-golang-org-appengine-1.4.0" - ,go-google-golang-org-appengine-1.4.0) - ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" - ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) - ("go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e" - ,go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e) - ("go-cloud-google-com-go-0.34.0" ,go-cloud-google-com-go-0.34.0))) - (home-page "https://golang.org/x/oauth2") - (synopsis "OAuth2 for Go") - (description - "Package oauth2 provides support for making -OAuth2 authorized and authenticated HTTP requests, -as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -It can additionally grant authorization with Bearer JWT. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138 - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20190312170243-e65039ee4138") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0c094599cf70wdrms49a3879qkq122pqlp2av444gs2pvc8apdcx")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-google-golang-org-api-0.4.0 - (package - (name "go-google-golang-org-api") - (version "0.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-api-go-client") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1hzgrw5wasmcjlqpxsmryddzzw4cwyzf2vx14i9z51v1plwssijm")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/api")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" - ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) - ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) - ("go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19" - ,go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19) - ("go-google-golang-org-appengine-1.4.0" - ,go-google-golang-org-appengine-1.4.0) - ("go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138" - ,go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138) - ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" - ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) - ("go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421" - ,go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421) - ("go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f" - ,go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f) - ("go-go-opencensus-io-0.21.0" ,go-go-opencensus-io-0.21.0) - ("go-github-com-google-go-cmp-0.2.0" - ,go-github-com-google-go-cmp-0.2.0))) - (home-page "https://google.golang.org/api") - (synopsis "Google APIs Client Library for Go") - (description - "Package api is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of -sub-packages. -") - (license license:bsd-3))) - -(define-public go-google-golang-org-genproto-0.0.0-20190418145605-e7d98fc518a7 - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20190418145605-e7d98fc518a7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1cnavkyawwvfc5yl097ygnfy1ac69v4zc02gdfnq1bvgcvgmvnbi")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" - ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) - ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) - ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" - ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) - ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" - ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) - ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" - ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd) - ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" - ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) - ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" - ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-honnef-co-go-tools-0.0.0-20190106161140-3f1c8253044a - (package - (name "go-honnef-co-go-tools") - (version "0.0.0-20190106161140-3f1c8253044a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/dominikh/go-tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0d3vgh0fgfj1z7i648g1s6x2pwxd07sxfjwg1xn3yagr9h06jh3h")))) - (build-system go-build-system) - (arguments '(#:import-path "honnef.co/go/tools")) - (home-page "https://honnef.co/go/tools") - (synopsis "Documentation") - (description - "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, -offers simplifications, and enforces style rules.") - (license license:expat))) - -(define-public go-cloud-google-com-go-0.38.0 - (package - (name "go-cloud-google-com-go") - (version "0.38.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-cloud-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0n6n13b7lri2fmc4bn4ifszyawj31dpbzvyv0xafsf81440z8cyh")))) - (build-system go-build-system) - (arguments '(#:import-path "cloud.google.com/go")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190106161140-3f1c8253044a" - ,go-honnef-co-go-tools-0.0.0-20190106161140-3f1c8253044a) - ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) - ("go-google-golang-org-genproto-0.0.0-20190418145605-e7d98fc518a7" - ,go-google-golang-org-genproto-0.0.0-20190418145605-e7d98fc518a7) - ("go-google-golang-org-api-0.4.0" ,go-google-golang-org-api-0.4.0) - ("go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138" - ,go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138) - ("go-golang-org-x-time-0.0.0-20181108054448-85acf8d2951c" - ,go-golang-org-x-time-0.0.0-20181108054448-85acf8d2951c) - ("go-golang-org-x-text-0.3.1-0.20180807135948-17ff2d5776d2" - ,go-golang-org-x-text-0.3.1-0.20180807135948-17ff2d5776d2) - ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" - ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) - ("go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421" - ,go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421) - ("go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f" - ,go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f) - ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" - ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) - ("go-go-opencensus-io-0.21.0" ,go-go-opencensus-io-0.21.0) - ("go-github-com-jstemmer-go-junit-report-0.0.0-20190106144839-af01ea7f8024" - ,go-github-com-jstemmer-go-junit-report-0.0.0-20190106144839-af01ea7f8024) - ("go-github-com-googleapis-gax-go-v2-2.0.4" - ,go-github-com-googleapis-gax-go-v2-2.0.4) - ("go-github-com-google-pprof-0.0.0-20181206194817-3ea8567a2e57" - ,go-github-com-google-pprof-0.0.0-20181206194817-3ea8567a2e57) - ("go-github-com-google-martian-2.1.0+incompatible" - ,go-github-com-google-martian-2.1.0+incompatible) - ("go-github-com-google-go-cmp-0.2.0" - ,go-github-com-google-go-cmp-0.2.0) - ("go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c" - ,go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0) - ("go-github-com-golang-mock-1.2.0" ,go-github-com-golang-mock-1.2.0))) - (home-page "https://cloud.google.com/go") - (synopsis "Google Cloud Client Libraries for Go") - (description - "Package cloud is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -of sub-packages. -") - (license license:asl2.0))) - -(define-public go-github-com-hashicorp-golang-lru-0.5.1 - (package - (name "go-github-com-hashicorp-golang-lru") - (version "0.5.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/golang-lru") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "13f870cvk161bzjj6x41l45r5x9i1z9r2ymwmvm7768kg08zznpy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/golang-lru")) - (home-page "https://github.com/hashicorp/golang-lru") - (synopsis "golang-lru") - (description - "Package lru provides three different LRU caches of varying sophistication. -") - (license license:mpl2.0))) - -(define-public go-github-com-hashicorp-golang-lru-0.5.0 - (package - (name "go-github-com-hashicorp-golang-lru") - (version "0.5.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/golang-lru") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12k2cp2k615fjvfa5hyb9k2alian77wivds8s65diwshwv41939f")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/golang-lru")) - (home-page "https://github.com/hashicorp/golang-lru") - (synopsis "golang-lru") - (description - "Package lru provides three different LRU caches of varying sophistication. -") - (license license:mpl2.0))) - -(define-public go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19 - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20190307195333-5fe7a883aa19") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0qjkwig0r42q0j2qv57s4ahsgmmp41dz3ih3rnaqg0619n5w7lbs")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" - ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) - ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) - ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" - ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) - ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" - ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) - ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" - ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd) - ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" - ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) - ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" - ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-go-opencensus-io-0.21.0 - (package - (name "go-go-opencensus-io") - (version "0.21.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/census-instrumentation/opencensus-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "14s0a12xdzjvad0dgksgv8m3hh7nc585abvjkvyk6r67a29lxj6x")))) - (build-system go-build-system) - (arguments '(#:import-path "go.opencensus.io")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) - ("go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19" - ,go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-github-com-hashicorp-golang-lru-0.5.0" - ,go-github-com-hashicorp-golang-lru-0.5.0) - ("go-github-com-google-go-cmp-0.2.0" - ,go-github-com-google-go-cmp-0.2.0) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0))) - (home-page "https://go.opencensus.io") - (synopsis "OpenCensus Libraries for Go") - (description "Package opencensus contains Go support for OpenCensus. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422 - (package - (name "go-golang-org-x-lint") - (version "0.0.0-20190409202823-959b441ac422") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/lint") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1mgcv5f00pkzsbwnq2y7vqvd1b4lr5a3s47cphh2qv4indfk7pck")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/lint")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" - ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd))) - (home-page "https://golang.org/x/lint") - (synopsis "Installation") - (description "Package lint contains a linter for Go source code. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20190503192946-f4e77d36d62c - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190503192946-f4e77d36d62c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0avjnglqqg9ya0cbhp23m4namykii219kxjywxn4cd7pfcc5arha")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45 - (package - (name "go-golang-org-x-oauth2") - (version "0.0.0-20190604053449-0f29369cfe45") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/oauth2") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "06jwpvx0x2gjn2y959drbcir5kd7vg87k0r1216abk6rrdzzrzi2")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/oauth2")) - (propagated-inputs - `(("go-google-golang-org-appengine-1.4.0" - ,go-google-golang-org-appengine-1.4.0) - ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" - ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) - ("go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e" - ,go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e) - ("go-cloud-google-com-go-0.34.0" ,go-cloud-google-com-go-0.34.0))) - (home-page "https://golang.org/x/oauth2") - (synopsis "OAuth2 for Go") - (description - "Package oauth2 provides support for making -OAuth2 authorized and authenticated HTTP requests, -as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -It can additionally grant authorization with Bearer JWT. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190507160741-ecd444e8653b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1vhld4948mzfnlgf20id29mv1bwpk9a3xlbw1mbjzxzxxdv1jds2")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-google-golang-org-appengine-1.5.0 - (package - (name "go-google-golang-org-appengine") - (version "1.5.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/appengine") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0l7mkdnwhidv8m686x432vmx8z5nqcrr9f46ddgvrxbh4wvyfcll")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/appengine")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225" - ,go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0))) - (home-page "https://google.golang.org/appengine") - (synopsis "Go App Engine packages") - (description - "Package appengine provides basic functionality for Google App Engine. -") - (license license:asl2.0))) - -(define-public go-google-golang-org-api-0.20.0 - (package - (name "go-google-golang-org-api") - (version "0.20.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-api-go-client") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "13syr1x33k6mrn5w6l4sgdbzn368w3m60vf6kk2j10fwa45125rg")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/api")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" - ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" - ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) - ("go-google-golang-org-appengine-1.5.0" - ,go-google-golang-org-appengine-1.5.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) - ("go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b" - ,go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b) - ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" - ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) - ("go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45" - ,go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45) - ("go-golang-org-x-net-0.0.0-20190503192946-f4e77d36d62c" - ,go-golang-org-x-net-0.0.0-20190503192946-f4e77d36d62c) - ("go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422" - ,go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422) - ("go-go-opencensus-io-0.21.0" ,go-go-opencensus-io-0.21.0) - ("go-github-com-hashicorp-golang-lru-0.5.1" - ,go-github-com-hashicorp-golang-lru-0.5.1) - ("go-github-com-googleapis-gax-go-v2-2.0.5" - ,go-github-com-googleapis-gax-go-v2-2.0.5) - ("go-github-com-google-go-cmp-0.3.0" - ,go-github-com-google-go-cmp-0.3.0) - ("go-cloud-google-com-go-0.38.0" ,go-cloud-google-com-go-0.38.0))) - (home-page "https://google.golang.org/api") - (synopsis "Google APIs Client Library for Go") - (description - "Package api is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of -sub-packages. -") - (license license:bsd-3))) - -(define-public go-github-com-google-renameio-0.1.0 - (package - (name "go-github-com-google-renameio") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/renameio") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ki2x5a9nrj17sn092d6n4zr29lfg5ydv4xz5cp58z6cw8ip43jx")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/renameio")) - (home-page "https://github.com/google/renameio") - (synopsis "Atomicity vs durability") - (description - "Package renameio provides a way to atomically create or replace a file or -symbolic link. -") - (license license:asl2.0))) - -(define-public go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127 - (package - (name "go-gopkg-in-check-v1") - (version "1.0.0-20180628173108-788fd7840127") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/check.v1") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0v3bim0j375z81zrpr5qv42knqs0y2qv2vkjiqi5axvb78slki1a")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) - (home-page "https://gopkg.in/check.v1") - (synopsis "Instructions") - (description - "Package check is a rich testing extension for Go's testing package. -") - (license license:bsd-2))) - -(define-public go-gopkg-in-errgo-v2-2.1.0 - (package - (name "go-gopkg-in-errgo-v2") - (version "2.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/errgo.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "065mbihiy7q67wnql0bzl9y1kkvck5ivra68254zbih52jxwrgr2")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/errgo.v2" #:unpack-path "gopkg.in/errgo.v2")) - (propagated-inputs - `(("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" - ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) - ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0))) - (home-page "https://gopkg.in/errgo.v2") - (synopsis #f) - (description - "Package errgo provides some primitives for error creation and handling.") - (license license:bsd-3))) - -(define-public go-github-com-rogpeppe-go-internal-1.3.0 - (package - (name "go-github-com-rogpeppe-go-internal") - (version "1.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/rogpeppe/go-internal") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0mcdh1licgnnahwml9y2iq6xy5x9xmjw5frcnds2s3wpjyqrl216")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/rogpeppe/go-internal")) - (propagated-inputs - `(("go-gopkg-in-errgo-v2-2.1.0" ,go-gopkg-in-errgo-v2-2.1.0))) - (home-page "https://github.com/rogpeppe/go-internal") - (synopsis #f) - (description - "This repository factors out an opinionated selection of internal packages and functionality from the Go standard -library. Currently this consists mostly of packages and testing code from within the Go tool implementation.") - (license license:bsd-3))) - -(define-public go-golang-org-x-crypto-0.0.0-20190510104115-cbcb75029529 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20190510104115-cbcb75029529") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12831ga1gq04a3jbbcmww7kaqfdfgp7cdv2fj9aqidz8h52ajdmh")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" - ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) - ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" - ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-mod-0.0.0-20190513183733-4bf6d317e70e - (package - (name "go-golang-org-x-mod") - (version "0.0.0-20190513183733-4bf6d317e70e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/mod") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19lg1ly3j31anx92p0hynic1gjk417wwxphfdrb2cq1c19kj3r17")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/mod")) - (propagated-inputs - `(("go-golang-org-x-crypto-0.0.0-20190510104115-cbcb75029529" - ,go-golang-org-x-crypto-0.0.0-20190510104115-cbcb75029529))) - (home-page "https://golang.org/x/mod") - (synopsis "mod") - (description - "This repository holds packages for writing tools -that work directly with Go module mechanics. -That is, it is for direct manipulation of Go modules themselves.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20191130070609-6e064ea0cf2d - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20191130070609-6e064ea0cf2d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1nbki367xspsa37j6276f5q2gv31vfjpb52axn3p3ymz548my75d")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7" - ,go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7) - ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" - ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) - ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" - ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-honnef-co-go-tools-0.0.1-2020.1.3 - (package - (name "go-honnef-co-go-tools") - (version "0.0.1-2020.1.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/dominikh/go-tools") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0pvi1mzhy6zgx4zfgdypbl4zhvgg11hl5qv7blf2qs0a96j2djhf")))) - (build-system go-build-system) - (arguments '(#:import-path "honnef.co/go/tools")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20191130070609-6e064ea0cf2d" - ,go-golang-org-x-tools-0.0.0-20191130070609-6e064ea0cf2d) - ("go-golang-org-x-mod-0.0.0-20190513183733-4bf6d317e70e" - ,go-golang-org-x-mod-0.0.0-20190513183733-4bf6d317e70e) - ("go-github-com-rogpeppe-go-internal-1.3.0" - ,go-github-com-rogpeppe-go-internal-1.3.0) - ("go-github-com-kisielk-gotool-1.0.0" - ,go-github-com-kisielk-gotool-1.0.0) - ("go-github-com-google-renameio-0.1.0" - ,go-github-com-google-renameio-0.1.0) - ("go-github-com-burntsushi-toml-0.3.1" - ,go-github-com-burntsushi-toml-0.3.1))) - (home-page "https://honnef.co/go/tools") - (synopsis "Documentation") - (description - "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, -offers simplifications, and enforces style rules.") - (license license:expat))) - -(define-public go-cloud-google-com-go-0.56.0 - (package - (name "go-cloud-google-com-go") - (version "0.56.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-cloud-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1bpx84q7byxr5rp197qcg3pl56acs8v1q555frxgcqygxwjacszf")))) - (build-system go-build-system) - (arguments '(#:import-path "cloud.google.com/go")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.1-2020.1.3" - ,go-honnef-co-go-tools-0.0.1-2020.1.3) - ("go-google-golang-org-grpc-1.28.0" ,go-google-golang-org-grpc-1.28.0) - ("go-google-golang-org-genproto-0.0.0-20200331122359-1ee6d9798940" - ,go-google-golang-org-genproto-0.0.0-20200331122359-1ee6d9798940) - ("go-google-golang-org-api-0.20.0" ,go-google-golang-org-api-0.20.0) - ("go-golang-org-x-tools-0.0.0-20200331025713-a30bf2db82d4" - ,go-golang-org-x-tools-0.0.0-20200331025713-a30bf2db82d4) - ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) - ("go-golang-org-x-sys-0.0.0-20200331124033-c3d80250170d" - ,go-golang-org-x-sys-0.0.0-20200331124033-c3d80250170d) - ("go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a" - ,go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a) - ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" - ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) - ("go-golang-org-x-net-0.0.0-20200324143707-d3edc9973b7e" - ,go-golang-org-x-net-0.0.0-20200324143707-d3edc9973b7e) - ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" - ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) - ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) - ("go-github-com-jstemmer-go-junit-report-0.9.1" - ,go-github-com-jstemmer-go-junit-report-0.9.1) - ("go-github-com-googleapis-gax-go-v2-2.0.5" - ,go-github-com-googleapis-gax-go-v2-2.0.5) - ("go-github-com-google-pprof-0.0.0-20200229191704-1ebb73c60ed3" - ,go-github-com-google-pprof-0.0.0-20200229191704-1ebb73c60ed3) - ("go-github-com-google-martian-2.1.0+incompatible" - ,go-github-com-google-martian-2.1.0+incompatible) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.3.5" - ,go-github-com-golang-protobuf-1.3.5) - ("go-github-com-golang-mock-1.4.3" ,go-github-com-golang-mock-1.4.3) - ("go-cloud-google-com-go-storage-1.6.0" - ,go-cloud-google-com-go-storage-1.6.0) - ("go-cloud-google-com-go-pubsub-1.2.0" - ,go-cloud-google-com-go-pubsub-1.2.0) - ("go-cloud-google-com-go-datastore-1.1.0" - ,go-cloud-google-com-go-datastore-1.1.0) - ("go-cloud-google-com-go-bigquery-1.4.0" - ,go-cloud-google-com-go-bigquery-1.4.0))) - (home-page "https://cloud.google.com/go") - (synopsis "Google Cloud Client Libraries for Go") - (description - "Package cloud is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -of sub-packages. -") - (license license:asl2.0))) - -(define-public go-go-opencensus-io-0.22.3 - (package - (name "go-go-opencensus-io") - (version "0.22.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/census-instrumentation/opencensus-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0xj16iq5jp26hi2py7lsd8cvqh651fgn39y05gzvjdi88d9xd3nw")))) - (build-system go-build-system) - (arguments '(#:import-path "go.opencensus.io")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.20.1" ,go-google-golang-org-grpc-1.20.1) - ("go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb" - ,go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb) - ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) - ("go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd" - ,go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd) - ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" - ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) - ("go-github-com-stretchr-testify-1.4.0" - ,go-github-com-stretchr-testify-1.4.0) - ("go-github-com-google-go-cmp-0.3.0" - ,go-github-com-google-go-cmp-0.3.0) - ("go-github-com-golang-protobuf-1.3.1" - ,go-github-com-golang-protobuf-1.3.1) - ("go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6" - ,go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6))) - (home-page "https://go.opencensus.io") - (synopsis "OpenCensus Libraries for Go") - (description "Package opencensus contains Go support for OpenCensus. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20200317015054-43a5402ce75a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0j6zrrb81qjr1926kkwmn0di9a0jn8qyjd9dw614rfkihxgq1vsm")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the -ones provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20200331124033-c3d80250170d - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200331124033-c3d80250170d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1nswjhkg7yixla0b3d8xwzf94rawwyjrxipay3ffdvm426n0ld42")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-yuin-goldmark-1.1.25 - (package - (name "go-github-com-yuin-goldmark") - (version "1.1.25") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/yuin/goldmark") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0cr3mk8pr7vsyisgrvln5ailnnn9xhardcy8mkshybk5c3n1kw5k")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/yuin/goldmark")) - (home-page "https://github.com/yuin/goldmark") - (synopsis "goldmark") - (description - "Package goldmark implements functions to convert markdown text to a desired format. -") - (license license:expat))) - -(define-public go-golang-org-x-tools-0.0.0-20200331025713-a30bf2db82d4 - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20200331025713-a30bf2db82d4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1rb488ydwi24zmd1zvsv8k8srs3q6xnqqfdar538hssqgljyvp7l")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) - ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" - ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) - ("go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b" - ,go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b) - ("go-golang-org-x-mod-0.2.0" ,go-golang-org-x-mod-0.2.0) - ("go-github-com-yuin-goldmark-1.1.25" - ,go-github-com-yuin-goldmark-1.1.25))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-google-golang-org-appengine-1.6.5 - (package - (name "go-google-golang-org-appengine") - (version "1.6.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/appengine") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "05hbq4cs7bqw0zl17bx8rzdkszid3nyl92100scg3jjrg70dhm7w")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/appengine")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) - ("go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65" - ,go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65) - ("go-github-com-golang-protobuf-1.3.1" - ,go-github-com-golang-protobuf-1.3.1))) - (home-page "https://google.golang.org/appengine") - (synopsis "Go App Engine packages") - (description - "Package appengine provides basic functionality for Google App Engine. -") - (license license:asl2.0))) - -(define-public go-google-golang-org-genproto-0.0.0-20200331122359-1ee6d9798940 - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20200331122359-1ee6d9798940") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1zsp55d7xjc0b3yw5jjpvbsc0gkji1c1j2vxmcwm89dh26rz4jwd")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" - ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-golang-protobuf-1.3.3" - ,go-github-com-golang-protobuf-1.3.3))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-google-golang-org-grpc-1.28.0 - (package - (name "go-google-golang-org-grpc") - (version "1.28.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1m36rg3w2mf4r3383yf0r1pjrz890mdw506h1lpm6bkc8w3kyqz3")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" - ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-github-com-google-go-cmp-0.2.0" - ,go-github-com-google-go-cmp-0.2.0) - ("go-github-com-golang-protobuf-1.3.3" - ,go-github-com-golang-protobuf-1.3.3) - ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" - ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) - ("go-github-com-envoyproxy-go-control-plane-0.9.4" - ,go-github-com-envoyproxy-go-control-plane-0.9.4))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-google-golang-org-api-0.29.0 - (package - (name "go-google-golang-org-api") - (version "0.29.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-api-go-client") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1y6izqcc6krill33pb57fbgbs7ni3jxyf3knm5jkl4qydsj9303h")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/api")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.28.0" ,go-google-golang-org-grpc-1.28.0) - ("go-google-golang-org-genproto-0.0.0-20200331122359-1ee6d9798940" - ,go-google-golang-org-genproto-0.0.0-20200331122359-1ee6d9798940) - ("go-google-golang-org-appengine-1.6.5" - ,go-google-golang-org-appengine-1.6.5) - ("go-golang-org-x-tools-0.0.0-20200331025713-a30bf2db82d4" - ,go-golang-org-x-tools-0.0.0-20200331025713-a30bf2db82d4) - ("go-golang-org-x-sys-0.0.0-20200331124033-c3d80250170d" - ,go-golang-org-x-sys-0.0.0-20200331124033-c3d80250170d) - ("go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a" - ,go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a) - ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" - ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) - ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" - ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) - ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) - ("go-github-com-googleapis-gax-go-v2-2.0.5" - ,go-github-com-googleapis-gax-go-v2-2.0.5) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-cloud-google-com-go-0.56.0" ,go-cloud-google-com-go-0.56.0))) - (home-page "https://google.golang.org/api") - (synopsis "Google APIs Client Library for Go") - (description - "Package api is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of -sub-packages. -") - (license license:bsd-3))) - -(define-public go-google-golang-org-genproto-0.0.0-20200729003335-053ba62fc06f - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20200729003335-053ba62fc06f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1h34qgr4lqy1l0niay3gzqh6pc63y2xh1mmp8757y8jsrdz1s5fv")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.24.0" - ,go-google-golang-org-protobuf-1.24.0) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-golang-protobuf-1.4.1" - ,go-github-com-golang-protobuf-1.4.1))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-google-golang-org-grpc-1.30.0 - (package - (name "go-google-golang-org-grpc") - (version "1.30.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "05pb9xrxd7kpbi8zzby90f87b6sxq65nmpgqx5h3255whmmpzbi9")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" - ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.3.3" - ,go-github-com-golang-protobuf-1.3.3) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-envoyproxy-go-control-plane-0.9.4" - ,go-github-com-envoyproxy-go-control-plane-0.9.4) - ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" - ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-cloud-google-com-go-0.62.0 - (package - (name "go-cloud-google-com-go") - (version "0.62.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-cloud-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "00x1nlq4fvvxrwx24firscav511qwck3zl6ghs9p6zzzixla8r5h")))) - (build-system go-build-system) - (arguments '(#:import-path "cloud.google.com/go")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.25.0" - ,go-google-golang-org-protobuf-1.25.0) - ("go-google-golang-org-grpc-1.30.0" ,go-google-golang-org-grpc-1.30.0) - ("go-google-golang-org-genproto-0.0.0-20200729003335-053ba62fc06f" - ,go-google-golang-org-genproto-0.0.0-20200729003335-053ba62fc06f) - ("go-google-golang-org-api-0.29.0" ,go-google-golang-org-api-0.29.0) - ("go-golang-org-x-tools-0.0.0-20200729194436-6467de6f59a7" - ,go-golang-org-x-tools-0.0.0-20200729194436-6467de6f59a7) - ("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) - ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" - ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) - ("go-golang-org-x-net-0.0.0-20200707034311-ab3426394381" - ,go-golang-org-x-net-0.0.0-20200707034311-ab3426394381) - ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" - ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) - ("go-go-opencensus-io-0.22.4" ,go-go-opencensus-io-0.22.4) - ("go-github-com-jstemmer-go-junit-report-0.9.1" - ,go-github-com-jstemmer-go-junit-report-0.9.1) - ("go-github-com-googleapis-gax-go-v2-2.0.5" - ,go-github-com-googleapis-gax-go-v2-2.0.5) - ("go-github-com-google-pprof-0.0.0-20200708004538-1a94d8640e99" - ,go-github-com-google-pprof-0.0.0-20200708004538-1a94d8640e99) - ("go-github-com-google-martian-v3-3.0.0" - ,go-github-com-google-martian-v3-3.0.0) - ("go-github-com-google-go-cmp-0.5.1" - ,go-github-com-google-go-cmp-0.5.1) - ("go-github-com-golang-protobuf-1.4.2" - ,go-github-com-golang-protobuf-1.4.2) - ("go-github-com-golang-mock-1.4.3" ,go-github-com-golang-mock-1.4.3) - ("go-cloud-google-com-go-storage-1.10.0" - ,go-cloud-google-com-go-storage-1.10.0))) - (home-page "https://cloud.google.com/go") - (synopsis "Google Cloud Client Libraries for Go") - (description - "Package cloud is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -of sub-packages. -") - (license license:asl2.0))) - -(define-public go-github-com-google-go-cmp-0.5.1 - (package - (name "go-github-com-google-go-cmp") - (version "0.5.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1wjdid59brciv09agxgmqac5k9ywg63nhzb0yi9anmqpl38gps0p")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") - (license license:bsd-3))) - -(define-public go-github-com-googleapis-gax-go-v2-2.0.5 - (package - (name "go-github-com-googleapis-gax-go-v2") - (version "2.0.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/gax-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1lxawwngv6miaqd25s3ba0didfzylbwisd2nz7r4gmbmin6jsjrx")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/googleapis/gax-go/v2")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.19.0" - ,go-google-golang-org-grpc-1.19.0))) - (home-page "https://github.com/googleapis/gax-go") - (synopsis #f) - (description - "Package gax contains a set of modules which aid the development of APIs -for clients and servers based on gRPC and Google API conventions. -") - (license license:bsd-3))) - -(define-public go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6 - (package - (name "go-github-com-golang-groupcache") - (version "0.0.0-20190702054246-869f871628b6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/groupcache") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0r4nk8129bvx50qb4xzjaay39b2h6k7cbdqqzdlanmc82ygczsbw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/groupcache")) - (home-page "https://github.com/golang/groupcache") - (synopsis "groupcache") - (description - "Package groupcache provides a data loading mechanism with caching -and de-duplication that works across a set of peer processes. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190502145724-3ef323f4f1fd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "15iw4gjvrnrx98rlny1qcaprp3577rh2b77byb38dr6m3q42rvc6")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6 - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20190227155943-e225da77a7e6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0bh3583smcfw6jw3w6lp0za93rz7hpxfdz8vhxng75b7a6vdlw4p")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the -ones provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20190425155659-357c62f0e4bb") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1h1a0wys83cc86s4w2hqmz78ixijw8f7qchmiwdv5xjvpg0i27c2")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" - ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) - ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) - ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" - ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) - ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" - ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) - ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" - ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd) - ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" - ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) - ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" - ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-google-golang-org-grpc-1.20.1 - (package - (name "go-google-golang-org-grpc") - (version "1.20.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0rj3fs6jillapiwnpkfn3v2jbl7a3zsb0lys4srswl26hjijviqq")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" - ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) - ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" - ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) - ("go-google-golang-org-appengine-1.1.0" - ,go-google-golang-org-appengine-1.1.0) - ("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" - ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" - ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0) - ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-client9-misspell-0.3.4" - ,go-github-com-client9-misspell-0.3.4) - ("go-github-com-burntsushi-toml-0.3.1" - ,go-github-com-burntsushi-toml-0.3.1) - ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-go-opencensus-io-0.22.4 - (package - (name "go-go-opencensus-io") - (version "0.22.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/census-instrumentation/opencensus-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "10skbvs4yxjm3z10yfg5cj2mdzjsna87qk1icp9xv0iwp8wzq6h0")))) - (build-system go-build-system) - (arguments '(#:import-path "go.opencensus.io")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.20.1" ,go-google-golang-org-grpc-1.20.1) - ("go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb" - ,go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb) - ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) - ("go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd" - ,go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd) - ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" - ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) - ("go-github-com-stretchr-testify-1.4.0" - ,go-github-com-stretchr-testify-1.4.0) - ("go-github-com-google-go-cmp-0.3.0" - ,go-github-com-google-go-cmp-0.3.0) - ("go-github-com-golang-protobuf-1.3.1" - ,go-github-com-golang-protobuf-1.3.1) - ("go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6" - ,go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6))) - (home-page "https://go.opencensus.io") - (synopsis "OpenCensus Libraries for Go") - (description "Package opencensus contains Go support for OpenCensus. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b - (package - (name "go-golang-org-x-lint") - (version "0.0.0-20200302205851-738671d3881b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/lint") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0jkiz4py59jjnkyxbxifpf7bsar11lbgmj5jiq2kic5k03shkn9c")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/lint")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7" - ,go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7))) - (home-page "https://golang.org/x/lint") - (synopsis "Installation") - (description "Package lint contains a linter for Go source code. -") - (license license:bsd-3))) - -(define-public go-cloud-google-com-go-0.34.0 - (package - (name "go-cloud-google-com-go") - (version "0.34.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-cloud-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1kclgclwar3r37zbvb9gg3qxbgzkb50zk3s9778zlh2773qikmai")))) - (build-system go-build-system) - (arguments '(#:import-path "cloud.google.com/go")) - (home-page "https://cloud.google.com/go") - (synopsis "Google Cloud Client Libraries for Go") - (description - "Package cloud is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -of sub-packages. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190108225652-1e06a53dbb7e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0lpqqvdccby48nixihvmn8ig1z48b950m1bxfqxn78air308qc3j")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d - (package - (name "go-golang-org-x-oauth2") - (version "0.0.0-20200107190931-bf48bf16ab8d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/oauth2") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1sirdib60zwmh93kf9qrx51r8544k1p9rs5mk0797wibz3m4mrdg")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/oauth2")) - (propagated-inputs - `(("go-google-golang-org-appengine-1.4.0" - ,go-google-golang-org-appengine-1.4.0) - ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" - ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) - ("go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e" - ,go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e) - ("go-cloud-google-com-go-0.34.0" ,go-cloud-google-com-go-0.34.0))) - (home-page "https://golang.org/x/oauth2") - (synopsis "OAuth2 for Go") - (description - "Package oauth2 provides support for making -OAuth2 authorized and authenticated HTTP requests, -as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -It can additionally grant authorization with Bearer JWT. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20200803210538-64077c9b5642 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200803210538-64077c9b5642") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1pdrkim9v0wbxipl586d29vz4ci9xib0f02g6yv7c0nang627pag")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-yuin-goldmark-1.1.32 - (package - (name "go-github-com-yuin-goldmark") - (version "1.1.32") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/yuin/goldmark") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "03i9yq6n3yvn5v70xi6x3pn49ndy8zm4217ihwwhlw2nkwhny7a5")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/yuin/goldmark")) - (home-page "https://github.com/yuin/goldmark") - (synopsis "goldmark") - (description - "Package goldmark implements functions to convert markdown text to a desired format. -") - (license license:expat))) - -(define-public go-golang-org-x-net-0.0.0-20200625001655-4c5254603344 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20200625001655-4c5254603344") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1da0a1m488d95vggpi52dkag98n5671ml6sn80nwv6lgbmdx8qbq")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" - ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) - ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" - ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208 - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20200625203802-6e8e738ad208") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1avk27pszd5l5df6ff7j78wgla46ir1hhy2jwfl9a3c0ys602yx9")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the -ones provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20200804011535-6c149bb5ef0d - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20200804011535-6c149bb5ef0d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1l244hp5n0qff7nmvcffggjv7jm4061g63g76z967zvdqcxh23i2")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) - ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" - ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) - ("go-golang-org-x-net-0.0.0-20200625001655-4c5254603344" - ,go-golang-org-x-net-0.0.0-20200625001655-4c5254603344) - ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) - ("go-github-com-yuin-goldmark-1.1.32" - ,go-github-com-yuin-goldmark-1.1.32))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-google-golang-org-genproto-0.0.0-20200804131852-c06518451d9c - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20200804131852-c06518451d9c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0wl9bhr94yf0b8lc947zr0iwm3l20irzy869xczfd6z0a1g54gsa")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.24.0" - ,go-google-golang-org-protobuf-1.24.0) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-golang-protobuf-1.4.1" - ,go-github-com-golang-protobuf-1.4.1))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-google-golang-org-api-0.30.0 - (package - (name "go-google-golang-org-api") - (version "0.30.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-api-go-client") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1vh5rrc6hvzh1rqawrwr4nyilnr3dgqx1pr2njjzdg0prfmflm5p")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/api")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.31.0" ,go-google-golang-org-grpc-1.31.0) - ("go-google-golang-org-genproto-0.0.0-20200804131852-c06518451d9c" - ,go-google-golang-org-genproto-0.0.0-20200804131852-c06518451d9c) - ("go-google-golang-org-appengine-1.6.6" - ,go-google-golang-org-appengine-1.6.6) - ("go-golang-org-x-tools-0.0.0-20200804011535-6c149bb5ef0d" - ,go-golang-org-x-tools-0.0.0-20200804011535-6c149bb5ef0d) - ("go-golang-org-x-sys-0.0.0-20200803210538-64077c9b5642" - ,go-golang-org-x-sys-0.0.0-20200803210538-64077c9b5642) - ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" - ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) - ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" - ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) - ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" - ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) - ("go-go-opencensus-io-0.22.4" ,go-go-opencensus-io-0.22.4) - ("go-github-com-googleapis-gax-go-v2-2.0.5" - ,go-github-com-googleapis-gax-go-v2-2.0.5) - ("go-github-com-google-go-cmp-0.5.1" - ,go-github-com-google-go-cmp-0.5.1) - ("go-cloud-google-com-go-0.62.0" ,go-cloud-google-com-go-0.62.0))) - (home-page "https://google.golang.org/api") - (synopsis "Google APIs Client Library for Go") - (description - "Package api is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of -sub-packages. -") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-1.24.0 - (package - (name "go-google-golang-org-protobuf") - (version "1.24.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0x3qyn3rizbs671gs7f8v50rmiwf9h7kbaradpivw9718mhbg1gn")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" - ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.1" - ,go-github-com-golang-protobuf-1.4.1))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-google-golang-org-genproto-0.0.0-20200825200019-8632dd797987 - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20200825200019-8632dd797987") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0h8s1mz8pbdiwmv2g61afa7f05zin3m6mdy2fmny6wcidz4w2i3k")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.24.0" - ,go-google-golang-org-protobuf-1.24.0) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-golang-protobuf-1.4.1" - ,go-github-com-golang-protobuf-1.4.1))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f - (package - (name "go-github-com-cncf-udpa-go") - (version "0.0.0-20191209042840-269d4d468f6f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cncf/udpa") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0i1jiaw2k3hlwwmg4hap81vb4s1p25xp9kdfww37v0fbgjariccs")))) - (build-system go-build-system) - (arguments - '(#:import-path - "github.com/cncf/udpa/go" - #:unpack-path - "github.com/cncf/udpa")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2) - ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" - ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0))) - (home-page "https://github.com/cncf/udpa") - (synopsis "Description") - (description - "This library has been deprecated in favor of @code{github.com/cncf/xds/go}. All users are recommended to switch their imports.") - (license license:asl2.0))) - -(define-public go-github-com-envoyproxy-go-control-plane-0.9.4 - (package - (name "go-github-com-envoyproxy-go-control-plane") - (version "0.9.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/envoyproxy/go-control-plane") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0m0crzx70lp7vz13v20wxb1fcfdnzp7h3mkh3bn6a8mbfz6w5asj")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) - ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" - ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) - ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" - ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) - ("go-github-com-google-go-cmp-0.2.0" - ,go-github-com-google-go-cmp-0.2.0) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2) - ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" - ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) - ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" - ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f) - ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" - ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) - (home-page "https://github.com/envoyproxy/go-control-plane") - (synopsis "control-plane") - (description - "This repository contains a Go-based implementation of an API server that -implements the discovery service APIs defined in -@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") - (license license:asl2.0))) - -(define-public go-github-com-golang-protobuf-1.3.3 - (package - (name "go-github-com-golang-protobuf") - (version "1.3.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1cyyr52yhj3fzrily3rmsbqyj8va4ld75lmry0857m39rgpv8sy1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-google-golang-org-grpc-1.31.0 - (package - (name "go-google-golang-org-grpc") - (version "1.31.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1y3lilpipmaysjk4skbzw1qa6lv05vzixzw9lg9x73xfb01q4nyz")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" - ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.3.3" - ,go-github-com-golang-protobuf-1.3.3) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-envoyproxy-go-control-plane-0.9.4" - ,go-github-com-envoyproxy-go-control-plane-0.9.4) - ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" - ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-cloud-google-com-go-0.65.0 - (package - (name "go-cloud-google-com-go") - (version "0.65.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-cloud-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0xrcg39jrw90gq8vl8pfq63sp3bkak04wh392yj5rh4lc1a4lxjq")))) - (build-system go-build-system) - (arguments '(#:import-path "cloud.google.com/go")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.31.0" ,go-google-golang-org-grpc-1.31.0) - ("go-google-golang-org-genproto-0.0.0-20200825200019-8632dd797987" - ,go-google-golang-org-genproto-0.0.0-20200825200019-8632dd797987) - ("go-google-golang-org-api-0.30.0" ,go-google-golang-org-api-0.30.0) - ("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" - ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) - ("go-golang-org-x-tools-0.0.0-20200825202427-b303f430e36d" - ,go-golang-org-x-tools-0.0.0-20200825202427-b303f430e36d) - ("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) - ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" - ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) - ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" - ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) - ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" - ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) - ("go-go-opencensus-io-0.22.4" ,go-go-opencensus-io-0.22.4) - ("go-github-com-jstemmer-go-junit-report-0.9.1" - ,go-github-com-jstemmer-go-junit-report-0.9.1) - ("go-github-com-googleapis-gax-go-v2-2.0.5" - ,go-github-com-googleapis-gax-go-v2-2.0.5) - ("go-github-com-google-pprof-0.0.0-20200708004538-1a94d8640e99" - ,go-github-com-google-pprof-0.0.0-20200708004538-1a94d8640e99) - ("go-github-com-google-martian-v3-3.0.0" - ,go-github-com-google-martian-v3-3.0.0) - ("go-github-com-google-go-cmp-0.5.1" - ,go-github-com-google-go-cmp-0.5.1) - ("go-github-com-golang-protobuf-1.4.2" - ,go-github-com-golang-protobuf-1.4.2) - ("go-github-com-golang-mock-1.4.4" ,go-github-com-golang-mock-1.4.4) - ("go-cloud-google-com-go-storage-1.10.0" - ,go-cloud-google-com-go-storage-1.10.0))) - (home-page "https://cloud.google.com/go") - (synopsis "Google Cloud Client Libraries for Go") - (description - "Package cloud is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -of sub-packages. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200323222414-85ca7c5b95cd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1504qkgbhhm4f0bhk77v2r1lj6x171ay5m79alkg78wjb5cign5l")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20200822124328-c89045814202 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20200822124328-c89045814202") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1g3wxilwbcbf2xj20y3mpxh38jka4fyhl48akfqf00vr48zmx96x")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" - ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) - ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" - ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-google-golang-org-appengine-1.6.6 - (package - (name "go-google-golang-org-appengine") - (version "1.6.6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/appengine") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "15c38h6fbv06cnkr6yknygfrpibyms2mya4w0l29kaxf42jn1qi5")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/appengine")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) - ("go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65" - ,go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65) - ("go-github-com-golang-protobuf-1.3.1" - ,go-github-com-golang-protobuf-1.3.1))) - (home-page "https://google.golang.org/appengine") - (synopsis "Go App Engine packages") - (description - "Package appengine provides basic functionality for Google App Engine. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-oauth2-0.0.0-20210402161424-2e8d93401602 - (package - (name "go-golang-org-x-oauth2") - (version "0.0.0-20210402161424-2e8d93401602") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/oauth2") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0j1crxa78gip3hxrds5jngi034j4zm4q3z7r8bqs3rjxnwcki9ig")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/oauth2")) - (propagated-inputs - `(("go-google-golang-org-appengine-1.6.6" - ,go-google-golang-org-appengine-1.6.6) - ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" - ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) - ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) - (home-page "https://golang.org/x/oauth2") - (synopsis "OAuth2 for Go") - (description - "Package oauth2 provides support for making -OAuth2 authorized and authenticated HTTP requests, -as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -It can additionally grant authorization with Bearer JWT. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20210403161142-5e06dd20ab57 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20210403161142-5e06dd20ab57") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1acdn06771rxjg38ql9wl8dr1vf23nazjnvk6105z3hddnh14fgb")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190603091049-60506f45cf65") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0827yz7irmnzcdhw8vg74819jaw5ahs4w4v5fvzgfvnxyb9f6zcc")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-text-0.3.2 - (package - (name "go-golang-org-x-text") - (version "0.3.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0flv9idw0jm5nm8lx25xqanbkqgfiym6619w575p7nrdh0riqwqh")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/text")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" - ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) - (home-page "https://golang.org/x/text") - (synopsis "Go Text") - (description - "text is a repository of text-related packages related to internationalization -(i18n) and localization (l10n), such as character encodings, text -transformations, and locale-specific text handling. -") - (license license:bsd-3))) - -(define-public go-google-golang-org-appengine-1.6.7 - (package - (name "go-google-golang-org-appengine") - (version "1.6.7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/appengine") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1wkipg7xxc0ha5p6c3bj0vpgq38l18441n5l6zxdhx0gzvz5z1hs")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/appengine")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) - ("go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65" - ,go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65) - ("go-github-com-golang-protobuf-1.3.1" - ,go-github-com-golang-protobuf-1.3.1))) - (home-page "https://google.golang.org/appengine") - (synopsis "Go App Engine packages") - (description - "Package appengine provides basic functionality for Google App Engine. -") - (license license:asl2.0))) - -(define-public go-github-com-golang-protobuf-1.5.1 - (package - (name "go-github-com-golang-protobuf") - (version "1.5.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1qx8gvsdx1w27vamw6wn1jns2d8pz0g9sji3l0hvs4wl1jf7p32d")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.26.0" - ,go-google-golang-org-protobuf-1.26.0) - ("go-github-com-google-go-cmp-0.5.5" - ,go-github-com-google-go-cmp-0.5.5))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5 - (package - (name "go-golang-org-x-lint") - (version "0.0.0-20201208152925-83fdc39ff7b5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/lint") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ms3rs5hvpnm9bxbr5f9743i7hn2bbmqdmvzxq6nmi0f24ypv1l3")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/lint")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7" - ,go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7))) - (home-page "https://golang.org/x/lint") - (synopsis "Installation") - (description "Package lint contains a linter for Go source code. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20210315160823-c6e025ad8005 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20210315160823-c6e025ad8005") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1dy8j3gvbkng0vy2wgdiy48871j4vchgsks2ggfxcx4jg32d2qsr")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20210316092652-d523dce5a7f4 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20210316092652-d523dce5a7f4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "01hhvh6msyg11adxhgjwzbv4jprq5ajzkxxb16ln3dqv4na9b2k1")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) - ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" - ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) - ("go-golang-org-x-sys-0.0.0-20210315160823-c6e025ad8005" - ,go-golang-org-x-sys-0.0.0-20210315160823-c6e025ad8005))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20210320140829-1e4c9ba3b0c4 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20210320140829-1e4c9ba3b0c4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0nrxjq5j058sba9s5g65l5rdw6b4f335lxa7hhcf57paklym1qgr")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.1.0 - (package - (name "go-golang-org-x-tools") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1asrm22kv5x891qkbpap8alg612k321jbs1akc0vwsan251gm507")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" - ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) - ("go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4" - ,go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4) - ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" - ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) - ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" - ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) - ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) - ("go-github-com-yuin-goldmark-1.2.1" - ,go-github-com-yuin-goldmark-1.2.1))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-google-golang-org-genproto-0.0.0-20210402141018-6c239bbf2bb1 - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20210402141018-6c239bbf2bb1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1xih6y4dwjj939ilwc5s6w419kjnkn1hw33jsgml0nkjcnac74wc")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.26.0" - ,go-google-golang-org-protobuf-1.26.0) - ("go-google-golang-org-grpc-1.36.1" ,go-google-golang-org-grpc-1.36.1) - ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) - ("go-golang-org-x-text-0.3.5" ,go-golang-org-x-text-0.3.5) - ("go-golang-org-x-sys-0.0.0-20210320140829-1e4c9ba3b0c4" - ,go-golang-org-x-sys-0.0.0-20210320140829-1e4c9ba3b0c4) - ("go-golang-org-x-net-0.0.0-20210316092652-d523dce5a7f4" - ,go-golang-org-x-net-0.0.0-20210316092652-d523dce5a7f4) - ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" - ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) - ("go-github-com-golang-protobuf-1.5.1" - ,go-github-com-golang-protobuf-1.5.1))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad - (package - (name "go-github-com-envoyproxy-go-control-plane") - (version "0.9.9-0.20201210154907-fd9021fe5dad") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/envoyproxy/go-control-plane") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0piyk6pk36x2qr3bhys2k240pfwz3bv64fhi2l0vx1mzwiddapbm")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.23.0" - ,go-google-golang-org-protobuf-1.23.0) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" - ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) - ("go-github-com-stretchr-testify-1.5.1" - ,go-github-com-stretchr-testify-1.5.1) - ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" - ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.2" - ,go-github-com-golang-protobuf-1.4.2) - ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" - ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) - ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" - ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403) - ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" - ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) - (home-page "https://github.com/envoyproxy/go-control-plane") - (synopsis "control-plane") - (description - "This repository contains a Go-based implementation of an API server that -implements the discovery service APIs defined in -@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") - (license license:asl2.0))) - -(define-public go-google-golang-org-grpc-1.36.1 - (package - (name "go-google-golang-org-grpc") - (version "1.36.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0l3prxp18lb0pagqg4l6c9i0l6gakfxgf6vxcsv589i0xsxw8ivm")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.25.0" - ,go-google-golang-org-protobuf-1.25.0) - ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" - ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) - ("go-github-com-google-go-cmp-0.5.0" - ,go-github-com-google-go-cmp-0.5.0) - ("go-github-com-golang-protobuf-1.4.2" - ,go-github-com-golang-protobuf-1.4.2) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad" - ,go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad) - ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" - ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-google-golang-org-api-0.44.0 - (package - (name "go-google-golang-org-api") - (version "0.44.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-api-go-client") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0sh6qzc3pnyliy10afrmzpfbbbm2mwcyc6mp5422xhgp3p2x370x")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/api")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.36.1" ,go-google-golang-org-grpc-1.36.1) - ("go-google-golang-org-genproto-0.0.0-20210402141018-6c239bbf2bb1" - ,go-google-golang-org-genproto-0.0.0-20210402141018-6c239bbf2bb1) - ("go-google-golang-org-appengine-1.6.7" - ,go-google-golang-org-appengine-1.6.7) - ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) - ("go-golang-org-x-sys-0.0.0-20210403161142-5e06dd20ab57" - ,go-golang-org-x-sys-0.0.0-20210403161142-5e06dd20ab57) - ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" - ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) - ("go-golang-org-x-oauth2-0.0.0-20210402161424-2e8d93401602" - ,go-golang-org-x-oauth2-0.0.0-20210402161424-2e8d93401602) - ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" - ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) - ("go-go-opencensus-io-0.23.0" ,go-go-opencensus-io-0.23.0) - ("go-github-com-googleapis-gax-go-v2-2.0.5" - ,go-github-com-googleapis-gax-go-v2-2.0.5) - ("go-github-com-google-go-cmp-0.5.5" - ,go-github-com-google-go-cmp-0.5.5) - ("go-cloud-google-com-go-0.81.0" ,go-cloud-google-com-go-0.81.0))) - (home-page "https://google.golang.org/api") - (synopsis "Google APIs Client Library for Go") - (description - "Package api is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of -sub-packages. -") - (license license:bsd-3))) - -(define-public go-github-com-bketelsen-crypt-0.0.4 - (package - (name "go-github-com-bketelsen-crypt") - (version "0.0.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/bketelsen/crypt") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0fyfcvy73zskd1p1mv0cn03anxkkr5gvlawsc87znqk60hdypq3v")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/bketelsen/crypt")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.38.0" ,go-google-golang-org-grpc-1.38.0) - ("go-google-golang-org-api-0.44.0" ,go-google-golang-org-api-0.44.0) - ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" - ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9) - ("go-go-etcd-io-etcd-client-v2-2.305.0" - ,go-go-etcd-io-etcd-client-v2-2.305.0) - ("go-github-com-hashicorp-consul-api-1.1.0" - ,go-github-com-hashicorp-consul-api-1.1.0) - ("go-cloud-google-com-go-firestore-1.1.0" - ,go-cloud-google-com-go-firestore-1.1.0))) - (home-page "https://github.com/bketelsen/crypt") - (synopsis "crypt") - (description - "You can use crypt as a command line tool or as a configuration library:") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20191005200804-aed5e4c7ecf9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0wsdsbl9n61l99z0cvib2xzg56fsfgky4yc5xapdw9ywx9h0zm3a")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-fsnotify-fsnotify-1.4.9 - (package - (name "go-github-com-fsnotify-fsnotify") - (version "1.4.9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/fsnotify/fsnotify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1i1r72knpbfwwql9frn9bqc3nhfc2ai5m6qllcyr6wban62lr40x")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/fsnotify/fsnotify")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9" - ,go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9))) - (home-page "https://github.com/fsnotify/fsnotify") - (synopsis "File system notifications for Go") - (description - "Package fsnotify provides a platform-independent interface for file system notifications. -") - (license license:bsd-3))) - -(define-public go-github-com-hashicorp-hcl-1.0.0 - (package - (name "go-github-com-hashicorp-hcl") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/hcl") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0q6ml0qqs0yil76mpn4mdx4lp94id8vbv575qm60jzl1ijcl5i66")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/hcl")) - (propagated-inputs - `(("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/hashicorp/hcl") - (synopsis "HCL") - (description "Package hcl decodes HCL into usable Go structures. -") - (license license:mpl2.0))) - -(define-public go-github-com-magiconair-properties-1.8.5 - (package - (name "go-github-com-magiconair-properties") - (version "1.8.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/magiconair/properties") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0v4agnkhc30fblbmhs0gq2bikhdnnmqmpp4phrnza68m04j5hxbn")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/magiconair/properties")) - (home-page "https://github.com/magiconair/properties") - (synopsis "Overview") - (description - "Package properties provides functions for reading and writing -ISO-8859-1 and UTF-8 encoded .properties files and has -support for recursive property expansion. -") - (license license:bsd-2))) - -(define-public go-github-com-mitchellh-mapstructure-1.4.1 - (package - (name "go-github-com-mitchellh-mapstructure") - (version "1.4.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mitchellh/mapstructure") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1m98wiadb6kdnzv21m8p7nk1jb30zpjh47fkb1dg251r3m7bj47v")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mitchellh/mapstructure")) - (home-page "https://github.com/mitchellh/mapstructure") - (synopsis "mapstructure") - (description - "Package mapstructure exposes functionality to convert one arbitrary -Go type into another, typically to convert a map[string]interface{} -into a native Go structure. -") - (license license:expat))) - -(define-public go-github-com-pelletier-go-toml-1.9.3 - (package - (name "go-github-com-pelletier-go-toml") - (version "1.9.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pelletier/go-toml") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0cqwnvlgs1wgdgjxlwv8j52f7d6syniadr51sjh2fya99m5wzvsn")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pelletier/go-toml")) - (home-page "https://github.com/pelletier/go-toml") - (synopsis "go-toml") - (description "Package toml is a TOML parser and manipulation library. -") - (license #f))) - -(define-public go-github-com-gopherjs-gopherjs-0.0.0-20181017120253-0766667cb4d1 - (package - (name "go-github-com-gopherjs-gopherjs") - (version "0.0.0-20181017120253-0766667cb4d1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gopherjs/gopherjs") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "13pfc9sxiwjky2lm1xb3i3lcisn8p6mgjk2d927l7r92ysph8dmw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/gopherjs/gopherjs")) - (home-page "https://github.com/gopherjs/gopherjs") - (synopsis "GopherJS - A compiler from Go to JavaScript") - (description - "GopherJS compiles Go code (@url{https://golang.org/,golang.org}) to pure JavaScript code. Its main purpose is to give you the opportunity to write front-end code in Go which will still run in all browsers.") - (license license:bsd-2))) - -(define-public go-github-com-jtolds-gls-4.20.0+incompatible - (package - (name "go-github-com-jtolds-gls") - (version "4.20.0+incompatible") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/jtolio/gls") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1k7xd2q2ysv2xsh373qs801v6f359240kx0vrl0ydh7731lngvk6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/jtolds/gls")) - (home-page "https://github.com/jtolds/gls") - (synopsis "gls") - (description "Package gls implements goroutine-local storage. -") - (license license:expat))) - -(define-public go-github-com-smartystreets-assertions-0.0.0-20180927180507-b2de0cb4f26d - (package - (name "go-github-com-smartystreets-assertions") - (version "0.0.0-20180927180507-b2de0cb4f26d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/smartystreets/assertions") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1i7ldgavgl35c7gk25p7bvdr282ckng090zr4ch9mk1705akx09y")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/smartystreets/assertions")) - (home-page "https://github.com/smartystreets/assertions") - (synopsis #f) - (description - "Package assertions contains the implementations for all assertions which -are referenced in goconvey's `convey` package -(github.com/smartystreets/goconvey/convey) and gunit (github.com/smartystreets/gunit) -for use with the So(...) method. -They can also be used in traditional Go test functions and even in -applications. -") - (license license:expat))) - -(define-public go-golang-org-x-tools-0.0.0-20190328211700-ab21143f2384 - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20190328211700-ab21143f2384") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "15fk0psk53pplpyghz55bhay0kvsv5rikmn5hwgjnnyxq9vfy178")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-github-com-smartystreets-goconvey-1.6.4 - (package - (name "go-github-com-smartystreets-goconvey") - (version "1.6.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/smartystreets/goconvey") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "07zjxwszayal88z1j2bwnqrsa32vg8l4nivks5yfr9j8xfsw7n6m")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/smartystreets/goconvey")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20190328211700-ab21143f2384" - ,go-golang-org-x-tools-0.0.0-20190328211700-ab21143f2384) - ("go-github-com-smartystreets-assertions-0.0.0-20180927180507-b2de0cb4f26d" - ,go-github-com-smartystreets-assertions-0.0.0-20180927180507-b2de0cb4f26d) - ("go-github-com-jtolds-gls-4.20.0+incompatible" - ,go-github-com-jtolds-gls-4.20.0+incompatible) - ("go-github-com-gopherjs-gopherjs-0.0.0-20181017120253-0766667cb4d1" - ,go-github-com-gopherjs-gopherjs-0.0.0-20181017120253-0766667cb4d1))) - (home-page "https://github.com/smartystreets/goconvey") - (synopsis "GoConvey is awesome Go testing") - (description - "This executable provides an HTTP server that watches for file system changes -to .go files within the working directory (and all nested go packages). -Navigating to the configured host and port in a web browser will display the -latest results of running `go test` in each go package. -") - (license license:expat))) - -(define-public go-github-com-kr-fs-0.1.0 - (package - (name "go-github-com-kr-fs") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/fs") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "11zg176x9hr9q7fsk95r6q0wf214gg4czy02slax4x56n79g6a7q")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/fs")) - (home-page "https://github.com/kr/fs") - (synopsis #f) - (description "Package fs provides filesystem-related functions. -") - (license license:bsd-3))) - -(define-public go-github-com-pkg-sftp-1.10.1 - (package - (name "go-github-com-pkg-sftp") - (version "1.10.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pkg/sftp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0iw6lijdljwh5xw5hsy0b578cr52h6vvm7hbnzlrvciwhh4sfhhp")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pkg/sftp")) - (propagated-inputs - `(("go-golang-org-x-crypto-0.0.0-20190820162420-60c769a6c586" - ,go-golang-org-x-crypto-0.0.0-20190820162420-60c769a6c586) - ("go-github-com-stretchr-testify-1.4.0" - ,go-github-com-stretchr-testify-1.4.0) - ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) - ("go-github-com-kr-fs-0.1.0" ,go-github-com-kr-fs-0.1.0))) - (home-page "https://github.com/pkg/sftp") - (synopsis "sftp") - (description - "Package sftp implements the SSH File Transfer Protocol as described in -@url{https://tools.ietf.org/html/draft-ietf-secsh-filexfer-02,https://tools.ietf.org/html/draft-ietf-secsh-filexfer-02} -") - (license license:bsd-2))) - -(define-public go-golang-org-x-crypto-0.0.0-20190820162420-60c769a6c586 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20190820162420-60c769a6c586") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1wy2pg38dz29vf1h48yfqf8m3jqvwnbdw8vkk3ldlj5d8fbbbmv8")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" - ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) - ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" - ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-github-com-spf13-afero-1.6.0 - (package - (name "go-github-com-spf13-afero") - (version "1.6.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/spf13/afero") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0yi8p0yxiidpcg4cagxg2iyqcaapsng89rak4qyxmgails2fqg37")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/spf13/afero")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) - ("go-golang-org-x-crypto-0.0.0-20190820162420-60c769a6c586" - ,go-golang-org-x-crypto-0.0.0-20190820162420-60c769a6c586) - ("go-github-com-pkg-sftp-1.10.1" ,go-github-com-pkg-sftp-1.10.1))) - (home-page "https://github.com/spf13/afero") - (synopsis "Overview") - (description - "This package provides a FileSystem Abstraction System for Go") - (license license:asl2.0))) - -(define-public go-github-com-spf13-cast-1.3.1 - (package - (name "go-github-com-spf13-cast") - (version "1.3.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/spf13/cast") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0lb84788glr0qzrq2ifi36rgvp96qrgywvxrr3ggq5hrbr38hgn1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/spf13/cast")) - (propagated-inputs - `(("go-github-com-stretchr-testify-1.2.2" - ,go-github-com-stretchr-testify-1.2.2) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/spf13/cast") - (synopsis "cast") - (description "Package cast provides easy and safe casting in Go. -") - (license license:expat))) - -(define-public go-github-com-spf13-jwalterweatherman-1.1.0 - (package - (name "go-github-com-spf13-jwalterweatherman") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/spf13/jwalterweatherman") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ywmkwci5zyd88ijym6f30fj5c0k2yayxarkmnazf5ybljv50q7b")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/spf13/jwalterweatherman")) - (propagated-inputs - `(("go-github-com-stretchr-testify-1.2.2" - ,go-github-com-stretchr-testify-1.2.2) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/spf13/jwalterweatherman") - (synopsis "jWalterWeatherman") - (description - "Seamless printing to the terminal (stdout) and logging to a io.Writer -(file) thatâ\x80\x99s as easy to use as fmt.Println.") - (license license:expat))) - -(define-public go-github-com-subosito-gotenv-1.2.0 - (package - (name "go-github-com-subosito-gotenv") - (version "1.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/subosito/gotenv") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0mav91j7r4arjkpq5zcf9j74f6pww8ic53x43wy7kg3ibw31yjs5")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/subosito/gotenv")) - (home-page "https://github.com/subosito/gotenv") - (synopsis "gotenv") - (description - "Package gotenv provides functionality to dynamically load the environment variables -") - (license license:expat))) - -(define-public go-gopkg-in-ini-v1-1.62.0 - (package - (name "go-gopkg-in-ini-v1") - (version "1.62.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/ini.v1") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1dm9ydqyflasp5li22kb0w73s6kp2swii8naqfhnz64v171gmm5v")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/ini.v1" #:unpack-path "gopkg.in/ini.v1")) - (home-page "https://gopkg.in/ini.v1") - (synopsis "INI") - (description - "Package ini provides INI file read and write functionality in Go. -") - (license license:asl2.0))) - -(define-public go-github-com-spf13-viper-1.8.1 - (package - (name "go-github-com-spf13-viper") - (version "1.8.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/spf13/viper") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0jcsvd9l05pv10rma6zicp44q2mlvxj0qlhnf4zcg2pymb5i0hq6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/spf13/viper")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) - ("go-gopkg-in-ini-v1-1.62.0" ,go-gopkg-in-ini-v1-1.62.0) - ("go-github-com-subosito-gotenv-1.2.0" - ,go-github-com-subosito-gotenv-1.2.0) - ("go-github-com-stretchr-testify-1.7.0" - ,go-github-com-stretchr-testify-1.7.0) - ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) - ("go-github-com-spf13-jwalterweatherman-1.1.0" - ,go-github-com-spf13-jwalterweatherman-1.1.0) - ("go-github-com-spf13-cast-1.3.1" ,go-github-com-spf13-cast-1.3.1) - ("go-github-com-spf13-afero-1.6.0" ,go-github-com-spf13-afero-1.6.0) - ("go-github-com-smartystreets-goconvey-1.6.4" - ,go-github-com-smartystreets-goconvey-1.6.4) - ("go-github-com-pelletier-go-toml-1.9.3" - ,go-github-com-pelletier-go-toml-1.9.3) - ("go-github-com-mitchellh-mapstructure-1.4.1" - ,go-github-com-mitchellh-mapstructure-1.4.1) - ("go-github-com-magiconair-properties-1.8.5" - ,go-github-com-magiconair-properties-1.8.5) - ("go-github-com-hashicorp-hcl-1.0.0" - ,go-github-com-hashicorp-hcl-1.0.0) - ("go-github-com-fsnotify-fsnotify-1.4.9" - ,go-github-com-fsnotify-fsnotify-1.4.9) - ("go-github-com-bketelsen-crypt-0.0.4" - ,go-github-com-bketelsen-crypt-0.0.4))) - (home-page "https://github.com/spf13/viper") - (synopsis "Install") - (description "Many Go projects are built using Viper including:") - (license license:expat))) - -(define-public go-github-com-spf13-cobra-1.2.1 - (package - (name "go-github-com-spf13-cobra") - (version "1.2.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/spf13/cobra") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "091kz3xnlsgpqb90fc5nhjr4yfr8b8sjnyl0zd4wm1fgzkpw09jh")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/spf13/cobra")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) - ("go-github-com-spf13-viper-1.8.1" ,go-github-com-spf13-viper-1.8.1) - ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) - ("go-github-com-inconshreveable-mousetrap-1.0.0" - ,go-github-com-inconshreveable-mousetrap-1.0.0) - ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" - ,go-github-com-cpuguy83-go-md2man-v2-2.0.0))) - (home-page "https://github.com/spf13/cobra") - (synopsis "Table of Contents") - (description - "Package cobra is a commander providing a simple interface to create powerful modern CLI interfaces. -In addition to providing an interface, Cobra simultaneously provides a controller to organize your application code. -") - (license license:asl2.0))) - -(define-public go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c - (package - (name "go-gopkg-in-yaml-v3") - (version "3.0.0-20200313102051-9f266ea9e77c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v3") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1bbai3lzb50m0x2vwsdbagrbhvfylj9k1m32hgbqwldqx4p9ay35")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v3") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language. -") - (license #f))) - -(define-public go-github-com-stretchr-testify-1.7.0 - (package - (name "go-github-com-stretchr-testify") - (version "1.7.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/testify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ixgjsvafr3513pz3r6pmgk074s2dxkll0dadvl25gkf30rkmh10")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/testify")) - (propagated-inputs - `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" - ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) - ("go-github-com-stretchr-objx-0.1.0" - ,go-github-com-stretchr-objx-0.1.0) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.0" - ,go-github-com-davecgh-go-spew-1.1.0))) - (home-page "https://github.com/stretchr/testify") - (synopsis "Testify - Thou Shalt Write Tests") - (description - "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -") - (license license:expat))) - -(define-public go-golang-org-x-crypto-0.0.0-20211117183948-ae814b36b871 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20211117183948-ae814b36b871") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "01d5llpsijgbgm8px6mhaknqwh8g707zc5i5744gcndr8w0649sk")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.6" ,go-golang-org-x-text-0.3.6) - ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" - ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) - ("go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1" - ,go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1) - ("go-golang-org-x-net-0.0.0-20211112202133-69e39bad7dc2" - ,go-golang-org-x-net-0.0.0-20211112202133-69e39bad7dc2))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-github-com-shopify-logrus-bugsnag-0.0.0-20171204204709-577dee27f20d - (package - (name "go-github-com-shopify-logrus-bugsnag") - (version "0.0.0-20171204204709-577dee27f20d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/Shopify/logrus-bugsnag") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1l3yahk77vzgmjs7baf8g14sv33jj04rw73iind4wayg40lfgrp8")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/Shopify/logrus-bugsnag")) - (home-page "https://github.com/Shopify/logrus-bugsnag") - (synopsis "logrus-bugsnag") - (description - "logrus-bugsnag is a hook that allows @url{https://github.com/sirupsen/logrus,Logrus} to interface with @url{https://bugsnag.com,Bugsnag}.") - (license license:expat))) - -(define-public go-github-com-bshuster-repo-logrus-logstash-hook-1.0.0 - (package - (name "go-github-com-bshuster-repo-logrus-logstash-hook") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/bshuster-repo/logrus-logstash-hook") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1akr33xzj4jr65mc9kvfjh1wlhw8fbr3hbh4rr816kxfns3c0gwd")))) - (build-system go-build-system) - (arguments - '(#:import-path "github.com/bshuster-repo/logrus-logstash-hook")) - (home-page "https://github.com/bshuster-repo/logrus-logstash-hook") - (synopsis "Logstash hook for logrus") - (description - "Use this hook to send the logs to @url{https://www.elastic.co/products/logstash,Logstash}.") - (license license:expat))) - -(define-public go-github-com-bugsnag-bugsnag-go-0.0.0-20141110184014-b1d153021fcd - (package - (name "go-github-com-bugsnag-bugsnag-go") - (version "0.0.0-20141110184014-b1d153021fcd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/bugsnag/bugsnag-go") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "057vwigfzq42p9vkk9yhy8vkvgdmh6653rc988jmvmrkwbgvb352")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/bugsnag/bugsnag-go")) - (home-page "https://github.com/bugsnag/bugsnag-go") - (synopsis "Bugsnag error reporter for Go") - (description - "Package bugsnag captures errors in real-time and reports them to Bugsnag (@url{http://bugsnag.com,http://bugsnag.com}). -") - (license license:expat))) - -(define-public go-github-com-bugsnag-osext-0.0.0-20130617224835-0dd3f918b21b - (package - (name "go-github-com-bugsnag-osext") - (version "0.0.0-20130617224835-0dd3f918b21b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/bugsnag/osext") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "02pczqml6p1mnfdrygm3rs02g0r65qx8v1bi3x24dx8wv9dr5y23")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/bugsnag/osext")) - (home-page "https://github.com/bugsnag/osext") - (synopsis #f) - (description "Extensions to the standard \"os\" package. -") - (license license:zlib))) - -(define-public go-github-com-bugsnag-panicwrap-0.0.0-20151223152923-e2c28503fcd0 - (package - (name "go-github-com-bugsnag-panicwrap") - (version "0.0.0-20151223152923-e2c28503fcd0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/bugsnag/panicwrap") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "02z1q18s83xhfsz3n8bzv071a6n0irlad11yxppaf7015a7dl446")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/bugsnag/panicwrap")) - (home-page "https://github.com/bugsnag/panicwrap") - (synopsis "panicwrap") - (description - "The panicwrap package provides functions for capturing and handling -panics in your application. It does this by re-executing the running -application and monitoring stderr for any panics. At the same time, -stdout/stderr/etc. are set to the same values so that data is shuttled -through properly, making the existence of panicwrap mostly transparent. -") - (license license:expat))) - -(define-public go-github-com-docker-distribution-2.7.1+incompatible - (package - (name "go-github-com-docker-distribution") - (version "2.7.1+incompatible") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/distribution/distribution") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1nx8b5a68rn81alp8wkkw6qd5v32mgf0fk23mxm60zdf63qk1nzw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/docker/distribution")) - (home-page "https://github.com/docker/distribution") - (synopsis "Distribution") - (description - "Package distribution will define the interfaces for the components of -docker distribution. The goal is to allow users to reliably package, ship -and store content related to docker images. -") - (license license:asl2.0))) - -(define-public go-github-com-danieljoos-wincred-1.1.0 - (package - (name "go-github-com-danieljoos-wincred") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/danieljoos/wincred") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0fllr8lwk70qb8gfndkgshfq5c7p8zdpp47bcd3816giv5w78vxi")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/danieljoos/wincred")) - (propagated-inputs - `(("go-github-com-stretchr-testify-1.5.1" - ,go-github-com-stretchr-testify-1.5.1))) - (home-page "https://github.com/danieljoos/wincred") - (synopsis "wincred") - (description - "Package wincred provides primitives for accessing the Windows Credentials Management API. -This includes functions for retrieval, listing and storage of credentials as well as Go structures for convenient access to the credential data. -") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20210119212857-b64e53b001e4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "16in6bazi0frdkzhqxyvmw7qcvzjavq21dnz9bmrqq8d4dpd2j44")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-docker-docker-credential-helpers-0.6.4 - (package - (name "go-github-com-docker-docker-credential-helpers") - (version "0.6.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/docker/docker-credential-helpers") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0xsz8zgil2xrv835p3i6qbk7s81jz62sgasfvmmxi6lrkirahmh6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/docker/docker-credential-helpers")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4" - ,go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4) - ("go-github-com-danieljoos-wincred-1.1.0" - ,go-github-com-danieljoos-wincred-1.1.0))) - (home-page "https://github.com/docker/docker-credential-helpers") - (synopsis "Introduction") - (description - "docker-credential-helpers is a suite of programs to use native stores to keep Docker credentials safe.") - (license license:expat))) - -(define-public go-github-com-docker-go-connections-0.4.0 - (package - (name "go-github-com-docker-go-connections") - (version "0.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/docker/go-connections") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0mv6f6b5nljc17dmwmc28hc0y11pqglz7x0d2mjrwdmfxf64hwqq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/docker/go-connections")) - (home-page "https://github.com/docker/go-connections") - (synopsis "Introduction") - (description - "Package connections provides libraries to work with network connections. -This library is divided in several components for specific usage. -") - (license license:asl2.0))) - -(define-public go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c - (package - (name "go-github-com-docker-go-events") - (version "0.0.0-20190806004212-e31b211e4f1c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/docker/go-events") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "09gm4z43g23isbklabnsnfb87bwf8kjdgvvyi3vfjq2bqdjdg7cl")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/docker/go-events")) - (home-page "https://github.com/docker/go-events") - (synopsis "Docker Events Package") - (description - "The Docker @code{events} package implements a composable event distribution package -for Go.") - (license license:asl2.0))) - -(define-public go-github-com-json-iterator-go-1.1.7 - (package - (name "go-github-com-json-iterator-go") - (version "1.1.7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/json-iterator/go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0n79p4s67zl5zprxv7diayw3vavnmmfqkmd6snz0i9bxp825dsyz")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/json-iterator/go")) - (propagated-inputs - `(("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0) - ("go-github-com-modern-go-reflect2-0.0.0-20180701023420-4b7aa43c6742" - ,go-github-com-modern-go-reflect2-0.0.0-20180701023420-4b7aa43c6742) - ("go-github-com-modern-go-concurrent-0.0.0-20180228061459-e0a39a4cb421" - ,go-github-com-modern-go-concurrent-0.0.0-20180228061459-e0a39a4cb421) - ("go-github-com-google-gofuzz-1.0.0" - ,go-github-com-google-gofuzz-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/json-iterator/go") - (synopsis "Benchmark") - (description - "Package jsoniter implements encoding and decoding of JSON as defined in -@url{https://rfc-editor.org/rfc/rfc4627.html,RFC 4627} and provides interfaces with identical syntax of standard lib encoding/json. -Converting from encoding/json to jsoniter is no more than replacing the package with jsoniter -and variable type declarations (if any). -jsoniter interfaces gives 100% compatibility with code using standard lib. -") - (license license:expat))) - -(define-public go-github-com-prometheus-common-0.6.0 - (package - (name "go-github-com-prometheus-common") - (version "0.6.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/common") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1q16br348117ffycxdwsldb0i39p34miclfa8z93k6vjwnrqbh2l")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/common")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1) - ("go-gopkg-in-alecthomas-kingpin-v2-2.2.6" - ,go-gopkg-in-alecthomas-kingpin-v2-2.2.6) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980" - ,go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980) - ("go-github-com-sirupsen-logrus-1.2.0" - ,go-github-com-sirupsen-logrus-1.2.0) - ("go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90" - ,go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90) - ("go-github-com-prometheus-client-golang-1.0.0" - ,go-github-com-prometheus-client-golang-1.0.0) - ("go-github-com-pkg-errors-0.8.0" ,go-github-com-pkg-errors-0.8.0) - ("go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223" - ,go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223) - ("go-github-com-matttproud-golang-protobuf-extensions-1.0.1" - ,go-github-com-matttproud-golang-protobuf-extensions-1.0.1) - ("go-github-com-julienschmidt-httprouter-1.2.0" - ,go-github-com-julienschmidt-httprouter-1.2.0) - ("go-github-com-golang-protobuf-1.3.1" - ,go-github-com-golang-protobuf-1.3.1) - ("go-github-com-go-logfmt-logfmt-0.4.0" - ,go-github-com-go-logfmt-logfmt-0.4.0) - ("go-github-com-go-kit-kit-0.8.0" ,go-github-com-go-kit-kit-0.8.0))) - (home-page "https://github.com/prometheus/common") - (synopsis "Common") - (description - "This repository contains Go libraries that are shared across Prometheus -components and libraries. They are considered internal to Prometheus, without -any stability guarantees for external usage.") - (license license:asl2.0))) - -(define-public go-github-com-prometheus-procfs-0.0.3 - (package - (name "go-github-com-prometheus-procfs") - (version "0.0.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/procfs") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18c4m795fwng8f8qa395f3crvamlbk5y5afk8b5rzyisnmjq774y")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/procfs")) - (propagated-inputs - `(("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" - ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) - ("go-github-com-google-go-cmp-0.3.0" - ,go-github-com-google-go-cmp-0.3.0))) - (home-page "https://github.com/prometheus/procfs") - (synopsis "procfs") - (description - "Package procfs provides functions to retrieve system, kernel and process -metrics from the pseudo-filesystem proc. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-sys-0.0.0-20190801041406-cbf593c0f2f3 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190801041406-cbf593c0f2f3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1zmcmckinhclcwlvznjqvs31aww8jnf6pjm9is0nq8lqlvipg5ls")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-prometheus-client-golang-1.1.0 - (package - (name "go-github-com-prometheus-client-golang") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/client_golang") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1r0irxkmfnj6ininb06w6ybknini5lz02idawrbkk2i5lq1qcvvf")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/client_golang")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190801041406-cbf593c0f2f3" - ,go-golang-org-x-sys-0.0.0-20190801041406-cbf593c0f2f3) - ("go-github-com-prometheus-procfs-0.0.3" - ,go-github-com-prometheus-procfs-0.0.3) - ("go-github-com-prometheus-common-0.6.0" - ,go-github-com-prometheus-common-0.6.0) - ("go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90" - ,go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90) - ("go-github-com-json-iterator-go-1.1.7" - ,go-github-com-json-iterator-go-1.1.7) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2) - ("go-github-com-beorn7-perks-1.0.1" - ,go-github-com-beorn7-perks-1.0.1))) - (home-page "https://github.com/prometheus/client_golang") - (synopsis "Prometheus Go client library") - (description - "This is the @url{http://golang.org,Go} client library for -@url{http://prometheus.io,Prometheus}. It has two separate parts, one for -instrumenting application code, and one for creating clients that talk to the -Prometheus HTTP API.") - (license license:asl2.0))) - -(define-public go-github-com-docker-go-metrics-0.0.1 - (package - (name "go-github-com-docker-go-metrics") - (version "0.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/docker/go-metrics") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1b6f1889chmwlsgrqxylnks2jic16j2dqhsdd1dvaklk48ky95ga")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/docker/go-metrics")) - (propagated-inputs - `(("go-github-com-prometheus-client-golang-1.1.0" - ,go-github-com-prometheus-client-golang-1.1.0))) - (home-page "https://github.com/docker/go-metrics") - (synopsis "go-metrics") - (description - "This package is small wrapper around the prometheus go client to help enforce convention and best practices for metrics collection in Docker projects.") - (license (list license:asl2.0 license:cc-by-sa4.0)))) - -(define-public go-github-com-docker-go-units-0.4.0 - (package - (name "go-github-com-docker-go-units") - (version "0.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/docker/go-units") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0k8gja8ql4pqg5rzmqvka42vjfs6rzablak87whcnqba6qxpimvz")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/docker/go-units")) - (home-page "https://github.com/docker/go-units") - (synopsis "Introduction") - (description - "Package units provides helper function to parse and print size and time units -in human-readable format. -") - (license license:asl2.0))) - -(define-public go-github-com-docker-libtrust-0.0.0-20150114040149-fa567046d9b1 - (package - (name "go-github-com-docker-libtrust") - (version "0.0.0-20150114040149-fa567046d9b1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/docker/libtrust") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1121c7fxarzyr3fvxyzfw8qs4hb8k92dsix26s5vxncgszl5svf2")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/docker/libtrust")) - (home-page "https://github.com/docker/libtrust") - (synopsis "libtrust") - (description - "Package libtrust provides an interface for managing authentication and -authorization using public key cryptography. Authentication is handled -using the identity attached to the public key and verified through TLS -x509 certificates, a key challenge, or signature. Authorization and -access control is managed through a trust graph distributed between -both remote trust servers and locally cached and managed data. -") - (license license:asl2.0))) - -(define-public go-github-com-yuin-goldmark-1.1.27 - (package - (name "go-github-com-yuin-goldmark") - (version "1.1.27") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/yuin/goldmark") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1872cqnii0kwiqcy81yin0idvjy5mdy4zlzz0csb319lcjs3b923")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/yuin/goldmark")) - (home-page "https://github.com/yuin/goldmark") - (synopsis "goldmark") - (description - "Package goldmark implements functions to convert markdown text to a desired format. -") - (license license:expat))) - -(define-public go-golang-org-x-mod-0.2.0 - (package - (name "go-golang-org-x-mod") - (version "0.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/mod") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fp6885dclq77mh73v7i54v2b9llpv4di193zc8vmsbbkkc483cl")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/mod")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" - ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) - ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" - ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) - ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" - ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) - (home-page "https://golang.org/x/mod") - (synopsis "mod") - (description - "This repository holds packages for writing tools -that work directly with Go module mechanics. -That is, it is for direct manipulation of Go modules themselves.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b - (package - (name "go-golang-org-x-net") - (version "0.0.0-20200226121028-0de0cce0169b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1db7s5kbzyh2zd5lpv05n7hp8wbwdvgk0wpiwrlnig94mkr0y5aq")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20200619180055-7c47624df98f - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20200619180055-7c47624df98f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fhzwd32j7w9g3algq0zj8g7ivx3f0mn9nx9mj046wdscryn49mk")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) - ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" - ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) - ("go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b" - ,go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b) - ("go-golang-org-x-mod-0.2.0" ,go-golang-org-x-mod-0.2.0) - ("go-github-com-yuin-goldmark-1.1.27" - ,go-github-com-yuin-goldmark-1.1.27))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-github-com-kisielk-errcheck-1.5.0 - (package - (name "go-github-com-kisielk-errcheck") - (version "1.5.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kisielk/errcheck") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ci3jz2px74pfmr42jv7dpx7fdzx08vai4czp9fkiyb0gcaiqsk6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kisielk/errcheck")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20200619180055-7c47624df98f" - ,go-golang-org-x-tools-0.0.0-20200619180055-7c47624df98f))) - (home-page "https://github.com/kisielk/errcheck") - (synopsis "errcheck") - (description - "errcheck is a program for checking for unchecked errors in go programs.") - (license license:expat))) - -(define-public go-github-com-kisielk-gotool-1.0.0 - (package - (name "go-github-com-kisielk-gotool") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kisielk/gotool") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "14af2pa0ssyp8bp2mvdw184s5wcysk6akil3wzxmr05wwy951iwn")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kisielk/gotool")) - (home-page "https://github.com/kisielk/gotool") - (synopsis "gotool") - (description - "Package gotool contains utility functions used to implement the standard -\"cmd/go\" tool, provided as a convenience to developers who want to write -tools with similar semantics. -") - (license license:expat))) - -(define-public go-github-com-yuin-goldmark-1.2.1 - (package - (name "go-github-com-yuin-goldmark") - (version "1.2.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/yuin/goldmark") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12rsnsf65drcp0jfw2jl9w589vsn3pxdk1zh3v9q908iigngrcmy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/yuin/goldmark")) - (home-page "https://github.com/yuin/goldmark") - (synopsis "goldmark") - (description - "Package goldmark implements functions to convert markdown text to a desired format. -") - (license license:expat))) - -(define-public go-golang-org-x-mod-0.3.0 - (package - (name "go-golang-org-x-mod") - (version "0.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/mod") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ldgbx2zpprbsfn6p8pfgs4nn87gwbfcv2z0fa7n8alwsq2yw78q")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/mod")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" - ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) - ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" - ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) - ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" - ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) - (home-page "https://golang.org/x/mod") - (synopsis "mod") - (description - "This repository holds packages for writing tools -that work directly with Go module mechanics. -That is, it is for direct manipulation of Go modules themselves.") - (license license:bsd-3))) - -(define-public go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20200622213623-75b288015ac9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18vlncvvs11ds3zaaziqjlg5s2vcwi3496nn6qv7p0dp94j5pwa2")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" - ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) - ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" - ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200930185726-fdedc70b468f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1njlfhjbvi4lxvjbq8zswrb0y0q4jd2p6x51h1q6vmyzi9af6869")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20201021035429-f5854403a974 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20201021035429-f5854403a974") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1vw63zpmhi337f3gc432x3wkib4j2ia8dy7if31wxwb9dgqvy222")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) - ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" - ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) - ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" - ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9 - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20201020160332-67f06af15bc9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "093p4panc808ak5bamzz7m9nb0xxib7778jpnr6f0xkz1n4fzyw5")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the -ones provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20210106214847-113979e3529a - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20210106214847-113979e3529a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0pq1a7hkamqdwsajyfrb27s56cvxz5838krsgyqz346s2djwdrzl")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" - ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) - ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" - ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) - ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" - ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) - ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) - ("go-github-com-yuin-goldmark-1.2.1" - ,go-github-com-yuin-goldmark-1.2.1))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-github-com-gogo-protobuf-1.3.2 - (package - (name "go-github-com-gogo-protobuf") - (version "1.3.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gogo/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0dfv1bhx5zhb5bsj5sj757nkacf2swp1ajpcyj9d0b37n602m18a")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/gogo/protobuf")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20210106214847-113979e3529a" - ,go-golang-org-x-tools-0.0.0-20210106214847-113979e3529a) - ("go-github-com-kisielk-gotool-1.0.0" - ,go-github-com-kisielk-gotool-1.0.0) - ("go-github-com-kisielk-errcheck-1.5.0" - ,go-github-com-kisielk-errcheck-1.5.0))) - (home-page "https://github.com/gogo/protobuf") - (synopsis "Protocol Buffers for Go with Gadgets") - (description - "gogoprotobuf is a fork of @url{https://github.com/golang/protobuf,golang/protobuf} with extra code generation features.") - (license license:bsd-3))) - -(define-public go-github-com-gomodule-redigo-1.8.2 - (package - (name "go-github-com-gomodule-redigo") - (version "1.8.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gomodule/redigo") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0wp37175n4lgkq234px9vx0c7mdx8sx3d45zky73az8zbabirwga")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/gomodule/redigo")) - (propagated-inputs - `(("go-github-com-stretchr-testify-1.5.1" - ,go-github-com-stretchr-testify-1.5.1))) - (home-page "https://github.com/gomodule/redigo") - (synopsis "Redigo") - (description - "Redigo is a @url{http://golang.org/,Go} client for the @url{http://redis.io/,Redis} database.") - (license license:asl2.0))) - -(define-public go-github-com-felixge-httpsnoop-1.0.1 - (package - (name "go-github-com-felixge-httpsnoop") - (version "1.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/felixge/httpsnoop") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ncd8lar5zxiwjhsp315s4hsl4bhnm271h49jhyxc66r5yffgmac")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/felixge/httpsnoop")) - (home-page "https://github.com/felixge/httpsnoop") - (synopsis "httpsnoop") - (description - "Package httpsnoop provides an easy way to capture http related metrics (i.e. -response time, bytes written, and http status code) from your application's -http.Handlers. -") - (license license:expat))) - -(define-public go-github-com-gorilla-handlers-1.5.1 - (package - (name "go-github-com-gorilla-handlers") - (version "1.5.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gorilla/handlers") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "15gycdz9lkjnsvvichsbdf25vf6pi1sfn41khhz53iqf300l0w0s")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/gorilla/handlers")) - (propagated-inputs - `(("go-github-com-felixge-httpsnoop-1.0.1" - ,go-github-com-felixge-httpsnoop-1.0.1))) - (home-page "https://github.com/gorilla/handlers") - (synopsis "gorilla/handlers") - (description - "Package handlers is a collection of handlers (aka \"HTTP middleware\") for use -with Go's net/http package (or any framework supporting http.Handler). -") - (license license:bsd-2))) - -(define-public go-github-com-gorilla-mux-1.8.0 - (package - (name "go-github-com-gorilla-mux") - (version "1.8.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gorilla/mux") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18f0q9qxgq1yh4ji07mqhiydfcwvi56z9d775v7dc7yckj33kpdk")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/gorilla/mux")) - (home-page "https://github.com/gorilla/mux") - (synopsis "gorilla/mux") - (description "Package mux implements a request router and dispatcher. -") - (license license:bsd-3))) - -(define-public go-github-com-inconshreveable-mousetrap-1.0.0 - (package - (name "go-github-com-inconshreveable-mousetrap") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/inconshreveable/mousetrap") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1mn0kg48xkd74brf48qf5hzp0bc6g8cf5a77w895rl3qnlpfw152")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/inconshreveable/mousetrap")) - (home-page "https://github.com/inconshreveable/mousetrap") - (synopsis "mousetrap") - (description "mousetrap is a tiny library that answers a single question.") - (license license:asl2.0))) - -(define-public go-github-com-klauspost-compress-1.11.13 - (package - (name "go-github-com-klauspost-compress") - (version "1.11.13") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/klauspost/compress") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19l2rbh6vg0ly4qp2gn5lf39ijggf7asav7lxziikkhjqqb4223j")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/klauspost/compress")) - (home-page "https://github.com/klauspost/compress") - (synopsis "compress") - (description "This package provides various compression algorithms.") - (license #f))) - -(define-public go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369 - (package - (name "go-github-com-matttproud-golang-protobuf-extensions") - (version "1.0.2-0.20181231171920-c182affec369") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/matttproud/golang_protobuf_extensions") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1xqsf9vpcrd4hp95rl6kgmjvkv1df4aicfw4l5vfcxcwxknfx2xs")))) - (build-system go-build-system) - (arguments - '(#:import-path "github.com/matttproud/golang_protobuf_extensions")) - (propagated-inputs - `(("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" - ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0))) - (home-page "https://github.com/matttproud/golang_protobuf_extensions") - (synopsis "Overview") - (description - "This repository provides various Protocol Buffer extensions for the Go -language (golang), namely support for record length-delimited message -streaming.") - (license license:asl2.0))) - -(define-public go-github-com-moby-locker-1.0.1 - (package - (name "go-github-com-moby-locker") - (version "1.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/moby/locker") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "07rc2c6h35f9mcy81jp382a030f6xmcifi9n5jnlayybfwxmpjir")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/moby/locker")) - (home-page "https://github.com/moby/locker") - (synopsis "Locker") - (description - "Package locker provides a mechanism for creating finer-grained locking to help -free up more global locks to handle other tasks. -") - (license license:asl2.0))) - -(define-public go-github-com-azure-go-ansiterm-0.0.0-20170929234023-d6e3b3328b78 - (package - (name "go-github-com-azure-go-ansiterm") - (version "0.0.0-20170929234023-d6e3b3328b78") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/Azure/go-ansiterm") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "010khrkhkf9cxlvvb6ncqv4c1qcdmpbz9jn38g4fxf4xsma8xx1q")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/Azure/go-ansiterm")) - (home-page "https://github.com/Azure/go-ansiterm") - (synopsis "go-ansiterm") - (description - "This is a cross platform Ansi Terminal Emulation library. It reads a stream of Ansi characters and produces the appropriate function calls. The results of the function calls are platform dependent.") - (license license:expat))) - -(define-public go-github-com-pkg-errors-0.9.1 - (package - (name "go-github-com-pkg-errors") - (version "0.9.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pkg/errors") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1761pybhc2kqr6v5fm8faj08x9bql8427yqg6vnfv6nhrasx1mwq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pkg/errors")) - (home-page "https://github.com/pkg/errors") - (synopsis "errors") - (description "Package errors provides simple error handling primitives. -") - (license license:bsd-2))) - -(define-public go-golang-org-x-sys-0.0.0-20200302150141-5c8b2ff67527 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200302150141-5c8b2ff67527") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0r5s7f4w7crrbcf5ydpr2xzsq0svjm332vsds41yp58kwi2lvh2v")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-gotest-tools-2.2.0+incompatible - (package - (name "go-gotest-tools") - (version "2.2.0+incompatible") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gotestyourself/gotest.tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0yif3gdyckmf8i54jq0xn00kflla5rhib9sarw66ngnbl7bn9kyl")))) - (build-system go-build-system) - (arguments '(#:import-path "gotest.tools")) - (home-page "https://gotest.tools") - (synopsis "gotest.tools") - (description - "Package gotesttools is a collection of packages to augment `testing` and -support common patterns. -") - (license license:asl2.0))) - -(define-public go-github-com-spf13-pflag-1.0.3 - (package - (name "go-github-com-spf13-pflag") - (version "1.0.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/spf13/pflag") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1cj3cjm7d3zk0mf1xdybh0jywkbbw7a6yr3y22x9sis31scprswd")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/spf13/pflag")) - (home-page "https://github.com/spf13/pflag") - (synopsis "Description") - (description - "Package pflag is a drop-in replacement for Go's flag package, implementing -POSIX/GNU-style --flags. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20190624222133-a101b041ded4 - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20190624222133-a101b041ded4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1pm50dybm5wixjjspvfpafjmiy81b1zp08h13gxc5cylrfgncrfl")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" - ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-gotest-tools-v3-3.0.2 - (package - (name "go-gotest-tools-v3") - (version "3.0.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gotestyourself/gotest.tools") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0cap2aq2wphnbkkzkck5zdjxb64q3jqxfwpkgqys7279rbr8cvjm")))) - (build-system go-build-system) - (arguments - '(#:import-path "gotest.tools/v3" #:unpack-path "gotest.tools/v3")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20190624222133-a101b041ded4" - ,go-golang-org-x-tools-0.0.0-20190624222133-a101b041ded4) - ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) - ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) - ("go-github-com-google-go-cmp-0.3.0" - ,go-github-com-google-go-cmp-0.3.0))) - (home-page "https://gotest.tools/v3") - (synopsis "gotest.tools") - (description - "Package gotesttools is a collection of packages to augment `testing` and -support common patterns. -") - (license license:asl2.0))) - -(define-public go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd - (package - (name "go-github-com-moby-term") - (version "0.0.0-20200312100748-672ec06f55cd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/moby/term") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0xspasm3d101hmjsayrbx6az4r4ybbg5gkj13qybhpq674a6kkwn")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/moby/term")) - (propagated-inputs - `(("go-gotest-tools-v3-3.0.2" ,go-gotest-tools-v3-3.0.2) - ("go-gotest-tools-2.2.0+incompatible" - ,go-gotest-tools-2.2.0+incompatible) - ("go-golang-org-x-sys-0.0.0-20200302150141-5c8b2ff67527" - ,go-golang-org-x-sys-0.0.0-20200302150141-5c8b2ff67527) - ("go-github-com-sirupsen-logrus-1.4.2" - ,go-github-com-sirupsen-logrus-1.4.2) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-google-go-cmp-0.3.1" - ,go-github-com-google-go-cmp-0.3.1) - ("go-github-com-azure-go-ansiterm-0.0.0-20170929234023-d6e3b3328b78" - ,go-github-com-azure-go-ansiterm-0.0.0-20170929234023-d6e3b3328b78))) - (home-page "https://github.com/moby/term") - (synopsis "term - utilities for dealing with terminals") - (description - "Package term provides structures and helper functions to work with -terminal (state, sizes). -") - (license license:asl2.0))) - -(define-public go-github-com-morikuni-aec-1.0.0 - (package - (name "go-github-com-morikuni-aec") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/morikuni/aec") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1qaqh0lk9wrqgff0yrxnbznvmwyhdxy3g9b2hjpazp5bw4nj0dp7")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/morikuni/aec")) - (home-page "https://github.com/morikuni/aec") - (synopsis "aec") - (description "Go wrapper for ANSI escape code.") - (license license:expat))) - -(define-public go-github-com-beorn7-perks-1.0.1 - (package - (name "go-github-com-beorn7-perks") - (version "1.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/beorn7/perks") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "17n4yygjxa6p499dj3yaqzfww2g7528165cl13haj97hlx94dgl7")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/beorn7/perks")) - (home-page "https://github.com/beorn7/perks") - (synopsis "Perks for Go (golang.org)") - (description - "Perks contains the Go package quantile that computes approximate quantiles over -an unbounded data stream within low memory and CPU bounds.") - (license license:expat))) - -(define-public go-github-com-cespare-xxhash-v2-2.1.1 - (package - (name "go-github-com-cespare-xxhash-v2") - (version "2.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cespare/xxhash") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0rl5rs8546zj1vzggv38w93wx0b5dvav7yy5hzxa8kw7iikv1cgr")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/cespare/xxhash/v2")) - (home-page "https://github.com/cespare/xxhash") - (synopsis "xxhash") - (description - "Package xxhash implements the 64-bit variant of xxHash (XXH64) as described -at @url{http://cyan4973.github.io/xxHash/,http://cyan4973.github.io/xxHash/}. -") - (license license:expat))) - -(define-public go-github-com-google-gofuzz-1.0.0 - (package - (name "go-github-com-google-gofuzz") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/gofuzz") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0qz439qvccm91w0mmjz4fqgx48clxdwagkvvx89cr43q1d4iry36")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/gofuzz")) - (home-page "https://github.com/google/gofuzz") - (synopsis "gofuzz") - (description - "Package fuzz is a library for populating go objects with random values. -") - (license license:asl2.0))) - -(define-public go-github-com-modern-go-concurrent-0.0.0-20180228061459-e0a39a4cb421 - (package - (name "go-github-com-modern-go-concurrent") - (version "0.0.0-20180228061459-e0a39a4cb421") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/modern-go/concurrent") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hamz1zimsxm9vl0ih19v7sbibglwq2j6473w4j9k7ib80fmxdzr")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/modern-go/concurrent")) - (home-page "https://github.com/modern-go/concurrent") - (synopsis "concurrent") - (description - "because sync.Map is only available in go 1.9, we can use concurrent.Map to make code portable") - (license license:asl2.0))) - -(define-public go-github-com-modern-go-reflect2-0.0.0-20180701023420-4b7aa43c6742 - (package - (name "go-github-com-modern-go-reflect2") - (version "0.0.0-20180701023420-4b7aa43c6742") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/modern-go/reflect2") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1721y3yr3dpx5dx5ashf063qczk2awy5zjir1jvp1h5hn7qz4i49")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/modern-go/reflect2")) - (home-page "https://github.com/modern-go/reflect2") - (synopsis "reflect2") - (description "reflect api that avoids runtime reflect.Value cost") - (license license:asl2.0))) - -(define-public go-github-com-json-iterator-go-1.1.10 - (package - (name "go-github-com-json-iterator-go") - (version "1.1.10") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/json-iterator/go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "134zwc2pmf8nd90r8065wsl6vv1mwjl23bs70i08dzhw5h98drr4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/json-iterator/go")) - (propagated-inputs - `(("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0) - ("go-github-com-modern-go-reflect2-0.0.0-20180701023420-4b7aa43c6742" - ,go-github-com-modern-go-reflect2-0.0.0-20180701023420-4b7aa43c6742) - ("go-github-com-modern-go-concurrent-0.0.0-20180228061459-e0a39a4cb421" - ,go-github-com-modern-go-concurrent-0.0.0-20180228061459-e0a39a4cb421) - ("go-github-com-google-gofuzz-1.0.0" - ,go-github-com-google-gofuzz-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/json-iterator/go") - (synopsis "Benchmark") - (description - "Package jsoniter implements encoding and decoding of JSON as defined in -@url{https://rfc-editor.org/rfc/rfc4627.html,RFC 4627} and provides interfaces with identical syntax of standard lib encoding/json. -Converting from encoding/json to jsoniter is no more than replacing the package with jsoniter -and variable type declarations (if any). -jsoniter interfaces gives 100% compatibility with code using standard lib. -") - (license license:expat))) - -(define-public go-github-com-kr-pty-1.1.1 - (package - (name "go-github-com-kr-pty") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/pty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0383f0mb9kqjvncqrfpidsf8y6ns5zlrc91c6a74xpyxjwvzl2y6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/pty")) - (home-page "https://github.com/kr/pty") - (synopsis "pty") - (description - "Package pty is a wrapper for github.com/creack/pty, which provides -functions for working with Unix terminals. -") - (license license:expat))) - -(define-public go-github-com-kr-text-0.1.0 - (package - (name "go-github-com-kr-text") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1gm5bsl01apvc84bw06hasawyqm4q84vx1pm32wr9jnd7a8vjgj1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/text")) - (propagated-inputs - `(("go-github-com-kr-pty-1.1.1" ,go-github-com-kr-pty-1.1.1))) - (home-page "https://github.com/kr/text") - (synopsis #f) - (description - "Package text provides rudimentary functions for manipulating text in -paragraphs. -") - (license license:expat))) - -(define-public go-github-com-kr-pretty-0.1.0 - (package - (name "go-github-com-kr-pretty") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/pretty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18m4pwg2abd0j9cn5v3k2ksk9ig4vlwxmlw9rrglanziv9l967qp")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/pretty")) - (propagated-inputs - `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) - (home-page "https://github.com/kr/pretty") - (synopsis #f) - (description - "Package pretty provides pretty-printing for Go values. This is -useful during debugging, to avoid wrapping long output lines in -the terminal. -") - (license license:expat))) - -(define-public go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20190911185100-cd5d95a43a6e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1nqkyz2y1qvqcma52ijh02s8aiqmkfb95j08f6zcjhbga3ds6hds")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the -ones provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20200106162015-b016eb3dc98e - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200106162015-b016eb3dc98e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1k0qr26046d228gi6ngkfxp4m1rjgxk4jj75h0kh1cpyp91n5rja")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-prometheus-procfs-0.1.3 - (package - (name "go-github-com-prometheus-procfs") - (version "0.1.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/procfs") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "09wmlmvmjf49nchidqffc99wn6vl98v5k9qgyyrhqgv0015xskwa")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/procfs")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20200106162015-b016eb3dc98e" - ,go-golang-org-x-sys-0.0.0-20200106162015-b016eb3dc98e) - ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" - ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) - ("go-github-com-google-go-cmp-0.3.1" - ,go-github-com-google-go-cmp-0.3.1))) - (home-page "https://github.com/prometheus/procfs") - (synopsis "procfs") - (description - "Package procfs provides functions to retrieve system, kernel and process -metrics from the pseudo-filesystem proc. -") - (license license:asl2.0))) - -(define-public go-github-com-stretchr-testify-1.4.0 - (package - (name "go-github-com-stretchr-testify") - (version "1.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/testify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "187i5g88sxfy4vxpm7dw1gwv29pa2qaq475lxrdh5livh69wqfjb")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/testify")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) - ("go-github-com-stretchr-objx-0.1.0" - ,go-github-com-stretchr-objx-0.1.0) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.0" - ,go-github-com-davecgh-go-spew-1.1.0))) - (home-page "https://github.com/stretchr/testify") - (synopsis "Testify - Thou Shalt Write Tests") - (description - "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20200615200032-f1bc736245b1 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200615200032-f1bc736245b1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fbmih4n2xw53qbpmc7msqf2660i4ryr0chbrsbj8mdalfrjr0vp")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15 - (package - (name "go-gopkg-in-check-v1") - (version "1.0.0-20190902080502-41f04d3bba15") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/check.v1") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0vfk9czmlxmp6wndq8k17rhnjxal764mxfhrccza7nwlia760pjy")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) - (home-page "https://gopkg.in/check.v1") - (synopsis "Instructions") - (description - "Package check is a rich testing extension for Go's testing package. -") - (license license:bsd-2))) - -(define-public go-gopkg-in-yaml-v2-2.2.5 - (package - (name "go-gopkg-in-yaml-v2") - (version "2.2.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "08smz8dfyxp02ha74my9iszqa5qzgl3ksi28ilyp8lqipssiq6fg")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v2") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language. -") - (license license:asl2.0))) - -(define-public go-github-com-prometheus-client-golang-1.7.1 - (package - (name "go-github-com-prometheus-client-golang") - (version "1.7.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/client_golang") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0i9wbwjq3idgp9y0vv7fvg6g7zrqi9qlfw915xc49ahw83q2h61w")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/client_golang")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.5" ,go-gopkg-in-yaml-v2-2.2.5) - ("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" - ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) - ("go-golang-org-x-sys-0.0.0-20200615200032-f1bc736245b1" - ,go-golang-org-x-sys-0.0.0-20200615200032-f1bc736245b1) - ("go-github-com-stretchr-testify-1.4.0" - ,go-github-com-stretchr-testify-1.4.0) - ("go-github-com-prometheus-procfs-0.1.3" - ,go-github-com-prometheus-procfs-0.1.3) - ("go-github-com-prometheus-common-0.10.0" - ,go-github-com-prometheus-common-0.10.0) - ("go-github-com-prometheus-client-model-0.2.0" - ,go-github-com-prometheus-client-model-0.2.0) - ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) - ("go-github-com-json-iterator-go-1.1.10" - ,go-github-com-json-iterator-go-1.1.10) - ("go-github-com-golang-protobuf-1.4.2" - ,go-github-com-golang-protobuf-1.4.2) - ("go-github-com-cespare-xxhash-v2-2.1.1" - ,go-github-com-cespare-xxhash-v2-2.1.1) - ("go-github-com-beorn7-perks-1.0.1" - ,go-github-com-beorn7-perks-1.0.1))) - (home-page "https://github.com/prometheus/client_golang") - (synopsis "Prometheus Go client library") - (description - "This is the @url{http://golang.org,Go} client library for -@url{http://prometheus.io,Prometheus}. It has two separate parts, one for -instrumenting application code, and one for creating clients that talk to the -Prometheus HTTP API.") - (license license:asl2.0))) - -(define-public go-github-com-alecthomas-template-0.0.0-20190718012654-fb15b899a751 - (package - (name "go-github-com-alecthomas-template") - (version "0.0.0-20190718012654-fb15b899a751") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/alecthomas/template") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1vlasv4dgycydh5wx6jdcvz40zdv90zz1h7836z7lhsi2ymvii26")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/alecthomas/template")) - (home-page "https://github.com/alecthomas/template") - (synopsis "Go's") - (description - "Package template implements data-driven templates for generating textual output. -") - (license license:bsd-3))) - -(define-public go-github-com-alecthomas-units-0.0.0-20190717042225-c3de453c63f4 - (package - (name "go-github-com-alecthomas-units") - (version "0.0.0-20190717042225-c3de453c63f4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/alecthomas/units") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0js37zlgv37y61j4a2d46jh72xm5kxmpaiw0ya9v944bjpc386my")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/alecthomas/units")) - (home-page "https://github.com/alecthomas/units") - (synopsis "Units - Helpful unit multipliers and functions for Go") - (description - "Package units provides helpful unit multipliers and functions for Go. -") - (license license:expat))) - -(define-public go-github-com-go-kit-kit-0.9.0 - (package - (name "go-github-com-go-kit-kit") - (version "0.9.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/go-kit/kit") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "09038mnw705h7isbjp8dzgp2i04bp5rqkmifxvwc5xkh75s00qpw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/go-kit/kit")) - (home-page "https://github.com/go-kit/kit") - (synopsis "Go kit") - (description - "@strong{Go kit} is a @strong{programming toolkit} for building microservices -(or elegant monoliths) in Go. We solve common problems in distributed -systems and application architecture so you can focus on delivering -business value.") - (license license:expat))) - -(define-public go-github-com-go-logfmt-logfmt-0.4.0 - (package - (name "go-github-com-go-logfmt-logfmt") - (version "0.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/go-logfmt/logfmt") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "06smxc112xmixz78nyvk3b2hmc7wasf2sl5vxj1xz62kqcq9lzm9")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/go-logfmt/logfmt")) - (propagated-inputs - `(("go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515" - ,go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515))) - (home-page "https://github.com/go-logfmt/logfmt") - (synopsis "logfmt") - (description - "Package logfmt implements utilities to marshal and unmarshal data in the -logfmt format. The logfmt format records key/value pairs in a way that -balances readability for humans and simplicity of computer parsing. It is -most commonly used as a more human friendly alternative to JSON for -structured logging. -") - (license license:expat))) - -(define-public go-github-com-pkg-errors-0.8.1 - (package - (name "go-github-com-pkg-errors") - (version "0.8.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pkg/errors") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0g5qcb4d4fd96midz0zdk8b9kz8xkzwfa8kr1cliqbg8sxsy5vd1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pkg/errors")) - (home-page "https://github.com/pkg/errors") - (synopsis "errors") - (description "Package errors provides simple error handling primitives. -") - (license license:bsd-2))) - -(define-public go-github-com-beorn7-perks-1.0.0 - (package - (name "go-github-com-beorn7-perks") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/beorn7/perks") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1i1nz1f6g55xi2y3aiaz5kqfgvknarbfl4f0sx4nyyb4s7xb1z9x")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/beorn7/perks")) - (home-page "https://github.com/beorn7/perks") - (synopsis "Perks for Go (golang.org)") - (description - "Perks contains the Go package quantile that computes approximate quantiles over -an unbounded data stream within low memory and CPU bounds.") - (license license:expat))) - -(define-public go-github-com-golang-protobuf-1.3.1 - (package - (name "go-github-com-golang-protobuf") - (version "1.3.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "15am4s4646qy6iv0g3kkqq52rzykqjhm4bf08dk0fy2r58knpsyl")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-github-com-json-iterator-go-1.1.6 - (package - (name "go-github-com-json-iterator-go") - (version "1.1.6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/json-iterator/go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "08caswxvdn7nvaqyj5kyny6ghpygandlbw9vxdj7l5vkp7q0s43r")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/json-iterator/go")) - (home-page "https://github.com/json-iterator/go") - (synopsis "Benchmark") - (description - "Package jsoniter implements encoding and decoding of JSON as defined in -@url{https://rfc-editor.org/rfc/rfc4627.html,RFC 4627} and provides interfaces with identical syntax of standard lib encoding/json. -Converting from encoding/json to jsoniter is no more than replacing the package with jsoniter -and variable type declarations (if any). -jsoniter interfaces gives 100% compatibility with code using standard lib. -") - (license license:expat))) - -(define-public go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd - (package - (name "go-github-com-modern-go-concurrent") - (version "0.0.0-20180306012644-bacd9c7ef1dd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/modern-go/concurrent") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0s0fxccsyb8icjmiym5k7prcqx36hvgdwl588y0491gi18k5i4zs")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/modern-go/concurrent")) - (home-page "https://github.com/modern-go/concurrent") - (synopsis "concurrent") - (description - "because sync.Map is only available in go 1.9, we can use concurrent.Map to make code portable") - (license license:asl2.0))) - -(define-public go-github-com-modern-go-reflect2-1.0.1 - (package - (name "go-github-com-modern-go-reflect2") - (version "1.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/modern-go/reflect2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "06a3sablw53n1dqqbr2f53jyksbxdmmk8axaas4yvnhyfi55k4lf")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/modern-go/reflect2")) - (home-page "https://github.com/modern-go/reflect2") - (synopsis "reflect2") - (description "reflect api that avoids runtime reflect.Value cost") - (license license:asl2.0))) - -(define-public go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90 - (package - (name "go-github-com-prometheus-client-model") - (version "0.0.0-20190129233127-fd36f4220a90") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/client_model") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1bs5d72k361llflgl94c22n0w53j30rsfh84smgk8mbjbcmjsaa5")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/client_model")) - (propagated-inputs - `(("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" - ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0))) - (home-page "https://github.com/prometheus/client_model") - (synopsis "Deprecation note") - (description - "This repository used to contain the code that defined both -the data model and the exposition format of Prometheus metrics.") - (license license:asl2.0))) - -(define-public go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc - (package - (name "go-github-com-alecthomas-template") - (version "0.0.0-20160405071501-a0175ee3bccc") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/alecthomas/template") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0qjgvvh26vk1cyfq9fadyhfgdj36f1iapbmr5xp6zqipldz8ffxj")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/alecthomas/template")) - (home-page "https://github.com/alecthomas/template") - (synopsis "Go's") - (description - "Package template implements data-driven templates for generating textual output. -") - (license license:bsd-3))) - -(define-public go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf - (package - (name "go-github-com-alecthomas-units") - (version "0.0.0-20151022065526-2efee857e7cf") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/alecthomas/units") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1j65b91qb9sbrml9cpabfrcf07wmgzzghrl7809hjjhrmbzri5bl")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/alecthomas/units")) - (home-page "https://github.com/alecthomas/units") - (synopsis "Units - Helpful unit multipliers and functions for Go") - (description - "Package units provides helpful unit multipliers and functions for Go. -") - (license license:expat))) - -(define-public go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973 - (package - (name "go-github-com-beorn7-perks") - (version "0.0.0-20180321164747-3a771d992973") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/beorn7/perks") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1l2lns4f5jabp61201sh88zf3b0q793w4zdgp9nll7mmfcxxjif3")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/beorn7/perks")) - (home-page "https://github.com/beorn7/perks") - (synopsis "Perks for Go (golang.org)") - (description - "Perks contains the Go package quantile that computes approximate quantiles over -an unbounded data stream within low memory and CPU bounds.") - (license license:expat))) - -(define-public go-github-com-go-kit-kit-0.8.0 - (package - (name "go-github-com-go-kit-kit") - (version "0.8.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/go-kit/kit") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1rcywbc2pvab06qyf8pc2rdfjv7r6kxdv2v4wnpqnjhz225wqvc0")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/go-kit/kit")) - (home-page "https://github.com/go-kit/kit") - (synopsis "Go kit") - (description - "@strong{Go kit} is a @strong{programming toolkit} for building microservices -(or elegant monoliths) in Go. We solve common problems in distributed -systems and application architecture so you can focus on delivering -business value.") - (license license:expat))) - -(define-public go-github-com-go-logfmt-logfmt-0.3.0 - (package - (name "go-github-com-go-logfmt-logfmt") - (version "0.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/go-logfmt/logfmt") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1gkgh3k5w1xwb2qbjq52p6azq3h1c1rr6pfwjlwj1zrijpzn2xb9")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/go-logfmt/logfmt")) - (home-page "https://github.com/go-logfmt/logfmt") - (synopsis "logfmt") - (description - "Package logfmt implements utilities to marshal and unmarshal data in the -logfmt format. The logfmt format records key/value pairs in a way that -balances readability for humans and simplicity of computer parsing. It is -most commonly used as a more human friendly alternative to JSON for -structured logging. -") - (license license:expat))) - -(define-public go-github-com-go-stack-stack-1.8.0 - (package - (name "go-github-com-go-stack-stack") - (version "1.8.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/go-stack/stack") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0wk25751ryyvxclyp8jdk5c3ar0cmfr8lrjb66qbg4808x66b96v")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/go-stack/stack")) - (home-page "https://github.com/go-stack/stack") - (synopsis "stack") - (description - "Package stack implements utilities to capture, manipulate, and format call -stacks. It provides a simpler API than package runtime. -") - (license license:expat))) - -(define-public go-github-com-gogo-protobuf-1.1.1 - (package - (name "go-github-com-gogo-protobuf") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gogo/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1525pq7r6h3s8dncvq8gxi893p2nq8dxpzvq0nfl5b4p6mq0v1c2")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/gogo/protobuf")) - (home-page "https://github.com/gogo/protobuf") - (synopsis "Protocol Buffers for Go with Gadgets") - (description - "gogoprotobuf is a fork of @url{https://github.com/golang/protobuf,golang/protobuf} with extra code generation features.") - (license license:bsd-3))) - -(define-public go-github-com-julienschmidt-httprouter-1.2.0 - (package - (name "go-github-com-julienschmidt-httprouter") - (version "1.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/julienschmidt/httprouter") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1k8bylc9s4vpvf5xhqh9h246dl1snxrzzz0614zz88cdh8yzs666")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/julienschmidt/httprouter")) - (home-page "https://github.com/julienschmidt/httprouter") - (synopsis "HttpRouter") - (description - "Package httprouter is a trie based high performance HTTP request router. -") - (license license:bsd-3))) - -(define-public go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515 - (package - (name "go-github-com-kr-logfmt") - (version "0.0.0-20140226030751-b84e30acd515") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/logfmt") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "02ldzxgznrfdzvghfraslhgp19la1fczcbzh7wm2zdc6lmpd1qq9")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/logfmt")) - (home-page "https://github.com/kr/logfmt") - (synopsis #f) - (description - "Package implements the decoding of logfmt key-value pairs. -") - (license license:expat))) - -(define-public go-github-com-matttproud-golang-protobuf-extensions-1.0.1 - (package - (name "go-github-com-matttproud-golang-protobuf-extensions") - (version "1.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/matttproud/golang_protobuf_extensions") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1d0c1isd2lk9pnfq2nk0aih356j30k3h1gi2w0ixsivi5csl7jya")))) - (build-system go-build-system) - (arguments - '(#:import-path "github.com/matttproud/golang_protobuf_extensions")) - (home-page "https://github.com/matttproud/golang_protobuf_extensions") - (synopsis "Overview") - (description - "This repository provides various Protocol Buffer extensions for the Go -language (golang), namely support for record length-delimited message -streaming.") - (license license:asl2.0))) - -(define-public go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223 - (package - (name "go-github-com-mwitkow-go-conntrack") - (version "0.0.0-20161129095857-cc309e4a2223") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mwitkow/go-conntrack") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0nbrnpk7bkmqg9mzwsxlm0y8m7s9qd9phr1q30qlx2qmdmz7c1mf")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mwitkow/go-conntrack")) - (home-page "https://github.com/mwitkow/go-conntrack") - (synopsis "Go tracing and monitoring (Prometheus) for") - (description - "@url{https://prometheus.io/,Prometheus} monitoring and @url{https://godoc.org/golang.org/x/net/trace#EventLog,(code x/net/trace)} tracing wrappers @code{net.Conn}, both inbound (@code{net.Listener}) and outbound (@code{net.Dialer}).") - (license license:asl2.0))) - -(define-public go-github-com-pkg-errors-0.8.0 - (package - (name "go-github-com-pkg-errors") - (version "0.8.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pkg/errors") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "001i6n71ghp2l6kdl3qq1v2vmghcz3kicv9a5wgcihrzigm75pp5")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pkg/errors")) - (home-page "https://github.com/pkg/errors") - (synopsis "errors") - (description "Package errors provides simple error handling primitives. -") - (license license:bsd-2))) - -(define-public go-github-com-prometheus-client-golang-0.9.1 - (package - (name "go-github-com-prometheus-client-golang") - (version "0.9.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/client_golang") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "01gnylazia30pcp069xcng482gwmm3xcx5zgrlwdkhic1lyb6i9l")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/client_golang")) - (home-page "https://github.com/prometheus/client_golang") - (synopsis "Prometheus Go client library") - (description - "This is the @url{http://golang.org,Go} client library for -@url{http://prometheus.io,Prometheus}. It has two separate parts, one for -instrumenting application code, and one for creating clients that talk to the -Prometheus HTTP API.") - (license license:asl2.0))) - -(define-public go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910 - (package - (name "go-github-com-prometheus-client-model") - (version "0.0.0-20180712105110-5c3871d89910") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/client_model") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "04psf81l9fjcwascsys428v03fx4fi894h7fhrj2vvcz723q57k0")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/client_model")) - (home-page "https://github.com/prometheus/client_model") - (synopsis "Deprecation note") - (description - "This repository used to contain the code that defined both -the data model and the exposition format of Prometheus metrics.") - (license license:asl2.0))) - -(define-public go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d - (package - (name "go-github-com-prometheus-procfs") - (version "0.0.0-20181005140218-185b4288413d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/procfs") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0d85429kdw5dgj5zhyiz1sq3i5691vj2gjnda93nnxxzx9acg8cv")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/procfs")) - (home-page "https://github.com/prometheus/procfs") - (synopsis "procfs") - (description - "Package procfs provides functions to retrieve system, kernel and process -metrics from the pseudo-filesystem proc. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-crypto-0.0.0-20180904163835-0709b304e793 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20180904163835-0709b304e793") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0i05s09y5pavmfh71fgih7syxg58x7a4krgd8am6d3mnahnmab5c")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20180905080454-ebe1bf3edb33") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0rkspxyjxdmc9f4n09hgkwj8jjd8z5p8mc9z8vwqwqcwrqv4sg7c")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-sirupsen-logrus-1.2.0 - (package - (name "go-github-com-sirupsen-logrus") - (version "1.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sirupsen/logrus") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0r6334x2bls8ddznvzaldx4g88msjjns4mlks95rqrrg7h0ijigg")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/sirupsen/logrus")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33" - ,go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33) - ("go-golang-org-x-crypto-0.0.0-20180904163835-0709b304e793" - ,go-golang-org-x-crypto-0.0.0-20180904163835-0709b304e793) - ("go-github-com-stretchr-testify-1.2.2" - ,go-github-com-stretchr-testify-1.2.2) - ("go-github-com-stretchr-objx-0.1.1" - ,go-github-com-stretchr-objx-0.1.1) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.1" - ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.1) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/sirupsen/logrus") - (synopsis "Logrus") - (description - "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. -") - (license license:expat))) - -(define-public go-golang-org-x-net-0.0.0-20181114220301-adae6a3d119a - (package - (name "go-golang-org-x-net") - (version "0.0.0-20181114220301-adae6a3d119a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fx860zsgzqk28j7lmp96qsfrgb0kzbfjvr294hywswcbwdwkb01")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-gopkg-in-yaml-v2-2.2.1 - (package - (name "go-gopkg-in-yaml-v2") - (version "2.2.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0dwjrs2lp2gdlscs7bsrmyc5yf6mm4fvgw71bzr9mv2qrd2q73s1")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v2") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language. -") - (license license:asl2.0))) - -(define-public go-github-com-prometheus-common-0.4.1 - (package - (name "go-github-com-prometheus-common") - (version "0.4.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/common") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0sf4sjdckblz1hqdfvripk3zyp8xq89w7q75kbsyg4c078af896s")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/common")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1) - ("go-gopkg-in-alecthomas-kingpin-v2-2.2.6" - ,go-gopkg-in-alecthomas-kingpin-v2-2.2.6) - ("go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5" - ,go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5) - ("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" - ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) - ("go-golang-org-x-net-0.0.0-20181114220301-adae6a3d119a" - ,go-golang-org-x-net-0.0.0-20181114220301-adae6a3d119a) - ("go-github-com-sirupsen-logrus-1.2.0" - ,go-github-com-sirupsen-logrus-1.2.0) - ("go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d" - ,go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d) - ("go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910" - ,go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910) - ("go-github-com-prometheus-client-golang-0.9.1" - ,go-github-com-prometheus-client-golang-0.9.1) - ("go-github-com-pkg-errors-0.8.0" ,go-github-com-pkg-errors-0.8.0) - ("go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223" - ,go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223) - ("go-github-com-matttproud-golang-protobuf-extensions-1.0.1" - ,go-github-com-matttproud-golang-protobuf-extensions-1.0.1) - ("go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515" - ,go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515) - ("go-github-com-julienschmidt-httprouter-1.2.0" - ,go-github-com-julienschmidt-httprouter-1.2.0) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0) - ("go-github-com-gogo-protobuf-1.1.1" - ,go-github-com-gogo-protobuf-1.1.1) - ("go-github-com-go-stack-stack-1.8.0" - ,go-github-com-go-stack-stack-1.8.0) - ("go-github-com-go-logfmt-logfmt-0.3.0" - ,go-github-com-go-logfmt-logfmt-0.3.0) - ("go-github-com-go-kit-kit-0.8.0" ,go-github-com-go-kit-kit-0.8.0) - ("go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973" - ,go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973) - ("go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf" - ,go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf) - ("go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc" - ,go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc))) - (home-page "https://github.com/prometheus/common") - (synopsis "Common") - (description - "This repository contains Go libraries that are shared across Prometheus -components and libraries. They are considered internal to Prometheus, without -any stability guarantees for external usage.") - (license license:asl2.0))) - -(define-public go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4 - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20181221193216-37e7f081c4d4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1bb0mw6ckb1k7z8v3iil2qlqwfj408fvvp8m1cik2b46p7snyjhm")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the -ones provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-github-com-prometheus-procfs-0.0.2 - (package - (name "go-github-com-prometheus-procfs") - (version "0.0.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/procfs") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0s7pvs7fgnfpmym3cd0k219av321h9sf3yvdlnn3qy0ps280lg7k")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/procfs")) - (propagated-inputs - `(("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" - ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4))) - (home-page "https://github.com/prometheus/procfs") - (synopsis "procfs") - (description - "Package procfs provides functions to retrieve system, kernel and process -metrics from the pseudo-filesystem proc. -") - (license license:asl2.0))) - -(define-public go-github-com-stretchr-testify-1.3.0 - (package - (name "go-github-com-stretchr-testify") - (version "1.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/testify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0wjchp2c8xbgcbbq32w3kvblk6q6yn533g78nxl6iskq6y95lxsy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/testify")) - (propagated-inputs - `(("go-github-com-stretchr-objx-0.1.0" - ,go-github-com-stretchr-objx-0.1.0) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.0" - ,go-github-com-davecgh-go-spew-1.1.0))) - (home-page "https://github.com/stretchr/testify") - (synopsis "Testify - Thou Shalt Write Tests") - (description - "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20181116152217-5ac8a444bdc5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "00zdrighflwc4iyizsag184nvl1cbkk02v73kpl5miprdrvzqlr4")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-prometheus-client-golang-1.0.0 - (package - (name "go-github-com-prometheus-client-golang") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/client_golang") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1f03ndyi3jq7zdxinnvzimz3s4z2374r6dikkc8i42xzb6d1bli6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/client_golang")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5" - ,go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5) - ("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0) - ("go-github-com-prometheus-procfs-0.0.2" - ,go-github-com-prometheus-procfs-0.0.2) - ("go-github-com-prometheus-common-0.4.1" - ,go-github-com-prometheus-common-0.4.1) - ("go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90" - ,go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90) - ("go-github-com-modern-go-reflect2-1.0.1" - ,go-github-com-modern-go-reflect2-1.0.1) - ("go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd" - ,go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd) - ("go-github-com-json-iterator-go-1.1.6" - ,go-github-com-json-iterator-go-1.1.6) - ("go-github-com-golang-protobuf-1.3.1" - ,go-github-com-golang-protobuf-1.3.1) - ("go-github-com-beorn7-perks-1.0.0" - ,go-github-com-beorn7-perks-1.0.0))) - (home-page "https://github.com/prometheus/client_golang") - (synopsis "Prometheus Go client library") - (description - "This is the @url{http://golang.org,Go} client library for -@url{http://prometheus.io,Prometheus}. It has two separate parts, one for -instrumenting application code, and one for creating clients that talk to the -Prometheus HTTP API.") - (license license:asl2.0))) - -(define-public go-github-com-prometheus-client-model-0.2.0 - (package - (name "go-github-com-prometheus-client-model") - (version "0.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/client_model") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0jffnz94d6ff39fr96b5w8i8yk26pwnrfggzz8jhi8k0yihg2c9d")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/client_model")) - (propagated-inputs - `(("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" - ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0))) - (home-page "https://github.com/prometheus/client_model") - (synopsis "Deprecation note") - (description - "This repository used to contain the code that defined both -the data model and the exposition format of Prometheus metrics.") - (license license:asl2.0))) - -(define-public go-github-com-davecgh-go-spew-1.1.1 - (package - (name "go-github-com-davecgh-go-spew") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/davecgh/go-spew") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/davecgh/go-spew")) - (home-page "https://github.com/davecgh/go-spew") - (synopsis "go-spew") - (description - "Go-spew implements a deep pretty printer for Go data structures to aid in -debugging. A comprehensive suite of tests with 100% test coverage is provided -to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage -report. Go-spew is licensed under the liberal ISC license, so it may be used in -open source or commercial projects.") - (license license:isc))) - -(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.1 - (package - (name "go-github-com-konsorten-go-windows-terminal-sequences") - (version "1.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/konsorten/go-windows-terminal-sequences") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1lchgf27n276vma6iyxa0v1xds68n2g8lih5lavqnx5x6q5pw2ip")))) - (build-system go-build-system) - (arguments - '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) - (home-page "https://github.com/konsorten/go-windows-terminal-sequences") - (synopsis "Windows Terminal Sequences") - (description - "This library allow for enabling Windows terminal color support for Go.") - (license license:expat))) - -(define-public go-github-com-stretchr-objx-0.1.1 - (package - (name "go-github-com-stretchr-objx") - (version "0.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/objx") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0iph0qmpyqg4kwv8jsx6a56a7hhqq8swrazv40ycxk9rzr0s8yls")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/objx")) - (home-page "https://github.com/stretchr/objx") - (synopsis "Objx") - (description - "Objx - Go package for dealing with maps, slices, JSON and other data. -") - (license license:expat))) - -(define-public go-github-com-stretchr-testify-1.2.2 - (package - (name "go-github-com-stretchr-testify") - (version "1.2.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/testify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0dlszlshlxbmmfxj5hlwgv3r22x0y1af45gn1vd198nvvs3pnvfs")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/testify")) - (home-page "https://github.com/stretchr/testify") - (synopsis "Testify - Thou Shalt Write Tests") - (description - "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -") - (license license:expat))) - -(define-public go-github-com-sirupsen-logrus-1.4.2 - (package - (name "go-github-com-sirupsen-logrus") - (version "1.4.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sirupsen/logrus") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "087k2lxrr9p9dh68yw71d05h5g9p5v26zbwd6j7lghinjfaw334x")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/sirupsen/logrus")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894" - ,go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894) - ("go-github-com-stretchr-testify-1.2.2" - ,go-github-com-stretchr-testify-1.2.2) - ("go-github-com-stretchr-objx-0.1.1" - ,go-github-com-stretchr-objx-0.1.1) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.1" - ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.1) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/sirupsen/logrus") - (synopsis "Logrus") - (description - "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. -") - (license license:expat))) - -(define-public go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190613194153-d28f0bde5980") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18xj31h70m7xxb7gc86n9i21w6d7djbjz67zfaljm4jqskz6hxkf")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190422165155-953cdadca894") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0gkha4whk8xkcv3isigbs250akag99isxnd3v9xmy0kl3g88hxy1")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-gopkg-in-alecthomas-kingpin-v2-2.2.6 - (package - (name "go-gopkg-in-alecthomas-kingpin-v2") - (version "2.2.6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/alecthomas/kingpin.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0mndnv3hdngr3bxp7yxfd47cas4prv98sqw534mx7vp38gd88n5r")))) - (build-system go-build-system) - (arguments - '(#:import-path - "gopkg.in/alecthomas/kingpin.v2" - #:unpack-path - "gopkg.in/alecthomas/kingpin.v2")) - (home-page "https://gopkg.in/alecthomas/kingpin.v2") - (synopsis "Kingpin - A Go (golang) command line and flag parser") - (description - "Package kingpin provides command line interfaces like this: -") - (license license:expat))) - -(define-public go-gopkg-in-yaml-v2-2.2.4 - (package - (name "go-gopkg-in-yaml-v2") - (version "2.2.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "11bwj757wi8kdrcnlgfqb8vv2d2xdhlghmyagd19i62khrkchsg2")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v2") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language. -") - (license license:asl2.0))) - -(define-public go-github-com-prometheus-common-0.10.0 - (package - (name "go-github-com-prometheus-common") - (version "0.10.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/common") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ra7zfqsnvgfizzsxn3rk0dwhk7nx8p8082zgpvadbv2b0j1k01i")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/common")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.4" ,go-gopkg-in-yaml-v2-2.2.4) - ("go-gopkg-in-alecthomas-kingpin-v2-2.2.6" - ,go-gopkg-in-alecthomas-kingpin-v2-2.2.6) - ("go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894" - ,go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894) - ("go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980" - ,go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980) - ("go-github-com-sirupsen-logrus-1.4.2" - ,go-github-com-sirupsen-logrus-1.4.2) - ("go-github-com-prometheus-client-model-0.2.0" - ,go-github-com-prometheus-client-model-0.2.0) - ("go-github-com-prometheus-client-golang-1.0.0" - ,go-github-com-prometheus-client-golang-1.0.0) - ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) - ("go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223" - ,go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223) - ("go-github-com-matttproud-golang-protobuf-extensions-1.0.1" - ,go-github-com-matttproud-golang-protobuf-extensions-1.0.1) - ("go-github-com-julienschmidt-httprouter-1.2.0" - ,go-github-com-julienschmidt-httprouter-1.2.0) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2) - ("go-github-com-go-logfmt-logfmt-0.4.0" - ,go-github-com-go-logfmt-logfmt-0.4.0) - ("go-github-com-go-kit-kit-0.9.0" ,go-github-com-go-kit-kit-0.9.0) - ("go-github-com-alecthomas-units-0.0.0-20190717042225-c3de453c63f4" - ,go-github-com-alecthomas-units-0.0.0-20190717042225-c3de453c63f4) - ("go-github-com-alecthomas-template-0.0.0-20190718012654-fb15b899a751" - ,go-github-com-alecthomas-template-0.0.0-20190718012654-fb15b899a751))) - (home-page "https://github.com/prometheus/common") - (synopsis "Common") - (description - "This repository contains Go libraries that are shared across Prometheus -components and libraries. They are considered internal to Prometheus, without -any stability guarantees for external usage.") - (license license:asl2.0))) - -(define-public go-github-com-google-go-cmp-0.5.4 - (package - (name "go-github-com-google-go-cmp") - (version "0.5.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ld9pwb6l22g75g1zpa691l7q9ki7pjgpcqhwgdfr3va1zisr5ci")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20201207232520-09787c993a3a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1nv4mwi9njkkyc7lwmxrjr8ggfh2cf1c67a9bq85dnss81vpj61y")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the -ones provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20210124154548-22da62e12c0c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "17gp3dl75wq3x7j9z1pqgcyvjhvy9jaln1wbscy57al3whdsjp07")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-prometheus-procfs-0.6.0 - (package - (name "go-github-com-prometheus-procfs") - (version "0.6.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/procfs") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0czzw37dq0sfq7rivxmxxw5hy287grqnng6q6hfz6mkqmhqgm1m6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/procfs")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" - ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) - ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" - ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) - ("go-github-com-google-go-cmp-0.5.4" - ,go-github-com-google-go-cmp-0.5.4))) - (home-page "https://github.com/prometheus/procfs") - (synopsis "procfs") - (description - "Package procfs provides functions to retrieve system, kernel and process -metrics from the pseudo-filesystem proc. -") - (license license:asl2.0))) - -(define-public go-github-com-spf13-pflag-1.0.5 - (package - (name "go-github-com-spf13-pflag") - (version "1.0.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/spf13/pflag") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0gpmacngd0gpslnbkzi263f5ishigzgh6pbdv9hp092rnjl4nd31")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/spf13/pflag")) - (home-page "https://github.com/spf13/pflag") - (synopsis "Description") - (description - "Package pflag is a drop-in replacement for Go's flag package, implementing -POSIX/GNU-style --flags. -") - (license license:bsd-3))) - -(define-public go-github-com-yvasiyarov-go-metrics-0.0.0-20140926110328-57bccd1ccd43 - (package - (name "go-github-com-yvasiyarov-go-metrics") - (version "0.0.0-20140926110328-57bccd1ccd43") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/yvasiyarov/go-metrics") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1rwlq9k3iii54da90fjivi13zacx2h6znppkzncvl653xhjpm26g")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/yvasiyarov/go-metrics")) - (home-page "https://github.com/yvasiyarov/go-metrics") - (synopsis "go-metrics") - (description "Go port of Coda Hale's Metrics library -") - (license #f))) - -(define-public go-github-com-yvasiyarov-gorelic-0.0.0-20141212073537-a9bba5b9ab50 - (package - (name "go-github-com-yvasiyarov-gorelic") - (version "0.0.0-20141212073537-a9bba5b9ab50") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/yvasiyarov/gorelic") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1niwv40k9rx2g5h6wddci9ykf1sm1d5ml9mjgdjd1ahm4wfq08gn")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/yvasiyarov/gorelic")) - (home-page "https://github.com/yvasiyarov/gorelic") - (synopsis "GoRelic is deprecated in favour of") - (description - "Package gorelic is an New Relic agent implementation for Go runtime. It collect a lot of metrics about Go scheduler, garbage collector and memory allocator and send them to NewRelic. -") - (license license:bsd-2))) - -(define-public go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20140908184405-b21fdbd4370f - (package - (name "go-github-com-yvasiyarov-newrelic-platform-go") - (version "0.0.0-20140908184405-b21fdbd4370f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/yvasiyarov/newrelic_platform_go") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0a4yncdxwsy0rn3bhkadfysm817b7ndzmh9fkg8hh92pnw5aabzw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/yvasiyarov/newrelic_platform_go")) - (home-page "https://github.com/yvasiyarov/newrelic_platform_go") - (synopsis "New Relic Platform Agent SDK for Go(golang)") - (description - "Package newrelic_platform_go is New Relic Platform Agent SDK for Go language. -") - (license license:bsd-2))) - -(define-public go-golang-org-x-sys-0.0.0-20210423082822-04245dca01da - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20210423082822-04245dca01da") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "11is2c5cpxk0gf2mxza2wpzfcf71fxb9b3in77f6w2q0pr68ykzx")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20211112202133-69e39bad7dc2 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20211112202133-69e39bad7dc2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0yvg72fb037yh4xvjyfgrr8nsbz7nfiiksvq0a5922z255anamy6")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.6" ,go-golang-org-x-text-0.3.6) - ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" - ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) - ("go-golang-org-x-sys-0.0.0-20210423082822-04245dca01da" - ,go-golang-org-x-sys-0.0.0-20210423082822-04245dca01da))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20210615035016-665e8c7367d1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "11n848csibdbv7b46zjyf4l7sphg37n9sjzqfy1ds7p1jyakwmnv")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-text-0.3.6 - (package - (name "go-golang-org-x-text") - (version "0.3.6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0wzhvdb059vrp2cczqw422ajrb9sbs4l3qd020hlngj33qfhxah0")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/text")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" - ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) - (home-page "https://golang.org/x/text") - (synopsis "Go Text") - (description - "text is a repository of text-related packages related to internationalization -(i18n) and localization (l10n), such as character encodings, text -transformations, and locale-specific text handling. -") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.5.2 - (package - (name "go-github-com-golang-protobuf") - (version "1.5.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1mh5fyim42dn821nsd3afnmgscrzzhn3h8rag635d2jnr23r1zhk")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.26.0" - ,go-google-golang-org-protobuf-1.26.0) - ("go-github-com-google-go-cmp-0.5.5" - ,go-github-com-google-go-cmp-0.5.5))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-golang-org-x-mod-0.1.1-0.20191105210325-c90efee705ee - (package - (name "go-golang-org-x-mod") - (version "0.1.1-0.20191105210325-c90efee705ee") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/mod") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0i5md645rmcy5z5ij9ng428k9rz4g3k1kjy3blsq1264rn426gdf")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/mod")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" - ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) - ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" - ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) - (home-page "https://golang.org/x/mod") - (synopsis "mod") - (description - "This repository holds packages for writing tools -that work directly with Go module mechanics. -That is, it is for direct manipulation of Go modules themselves.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7 - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20200130002326-2f3ba24bd6e7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0j3nnmlwnbivf0h9x89vlp8ji3ha41v96bj33cxwmrrjnxq543ww")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" - ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) - ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" - ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) - ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" - ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) - ("go-golang-org-x-mod-0.1.1-0.20191105210325-c90efee705ee" - ,go-golang-org-x-mod-0.1.1-0.20191105210325-c90efee705ee))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-golang-org-x-lint-0.0.0-20210508222113-6edffad5e616 - (package - (name "go-golang-org-x-lint") - (version "0.0.0-20210508222113-6edffad5e616") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/lint") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1n7lrr3282q3li4f06afms444qy13rfd316za0drqihakwyki2jk")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/lint")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7" - ,go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7))) - (home-page "https://golang.org/x/lint") - (synopsis "Installation") - (description "Package lint contains a linter for Go source code. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-text-0.3.5 - (package - (name "go-golang-org-x-text") - (version "0.3.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "082s9d7wnh1aa2v08g3h5z4if2f8hl4y01pb788qsvab9329lj0w")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/text")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" - ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) - (home-page "https://golang.org/x/text") - (synopsis "Go Text") - (description - "text is a repository of text-related packages related to internationalization -(i18n) and localization (l10n), such as character encodings, text -transformations, and locale-specific text handling. -") - (license license:bsd-3))) - -(define-public go-github-com-yuin-goldmark-1.3.5 - (package - (name "go-github-com-yuin-goldmark") - (version "1.3.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/yuin/goldmark") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "08rrhfji92hixiv3v0wvamwcy56f90wsw84w7lyvad7g90kbsknx")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/yuin/goldmark")) - (home-page "https://github.com/yuin/goldmark") - (synopsis "goldmark") - (description - "Package goldmark implements functions to convert markdown text to a desired format. -") - (license license:expat))) - -(define-public go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190404232315-eb5bcb51f2a3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "17k4g8krxbl84gzcs275b7gsh66dzm15fdxivjnx9xz8q84l4kby")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20190412213103-97732733099d - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190412213103-97732733099d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "118hkp01i4z1f5h6hcjm0ff2ngqhrzj1f7731n0kw8dr6hvbx0sw")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20191011191535-87dc89f01550") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0z4i1m2yn3f31ci7wvcm2rxkx2yiv7a78mfzklncmsz2k97rlh2g")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" - ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) - ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" - ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190620200207-3b0461eec859") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0l00c8l0a8xnv6qdpwfzxxsr58jggacgzdrwiprrfx2xqm37b6d5")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7 - (package - (name "go-golang-org-x-xerrors") - (version "0.0.0-20190717185122-a985d3407aa7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/xerrors") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "00wzr5w8aadipgc3rkk8f11i41znskfj9ix5nhhaxyg7isrslgcj")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/xerrors")) - (home-page "https://golang.org/x/xerrors") - (synopsis #f) - (description - "Package xerrors implements functions to manipulate errors. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20191119224855-298f0cb1881e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0l4pqwib2wnfnix6nvxl0yrq87ipi7ff1rz6z5bxfzy9dki1nzmv")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7" - ,go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7) - ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" - ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) - ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" - ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898 - (package - (name "go-golang-org-x-xerrors") - (version "0.0.0-20191011141410-1b5146add898") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/xerrors") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0w2akj91krxjag0xdhsg78470888nicc5ismc2ap9jqpss6v1zih")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/xerrors")) - (home-page "https://golang.org/x/xerrors") - (synopsis #f) - (description - "Package xerrors implements functions to manipulate errors. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-mod-0.4.2 - (package - (name "go-golang-org-x-mod") - (version "0.4.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/mod") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0z1p17i291z2k6va08i80ljyzyij2b6qsz78lnz0wi8zsnkfdz43")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/mod")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" - ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) - ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" - ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) - ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" - ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) - (home-page "https://golang.org/x/mod") - (synopsis "mod") - (description - "This repository holds packages for writing tools -that work directly with Go module mechanics. -That is, it is for direct manipulation of Go modules themselves.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20210330210617-4fbd30eecc44 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20210330210617-4fbd30eecc44") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "02mmymbm7wb3vdp3z9hm8p0f45708fybyd38qm8qxzwm19zqnp56")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20201119102817-f84b799fce68") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1dvhqian5byzkcg1bnqzygqa6ccc6krc2q7j12pp1vhl3y7znnsg")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1 - (package - (name "go-golang-org-x-term") - (version "0.0.0-20201126162022-7de9c90e9dd1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/term") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ba252xmv6qsvf1w1gcy98mngrj0vd4inbjw0lsklqvva65nljna")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/term")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" - ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) - (home-page "https://golang.org/x/term") - (synopsis "Go terminal/console support") - (description - "Package term provides support functions for dealing with terminals, as -commonly found on UNIX systems. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20180917221912-90fa682c2a6e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-golang-org-x-text-0.3.3 - (package - (name "go-golang-org-x-text") - (version "0.3.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19pihqm3phyndmiw6i42pdv6z1rbvlqlsnhsyqf9gsnn0qnmqqlh")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/text")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" - ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) - (home-page "https://golang.org/x/text") - (synopsis "Go Text") - (description - "text is a repository of text-related packages related to internationalization -(i18n) and localization (l10n), such as character encodings, text -transformations, and locale-specific text handling. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20210405180319-a5a99cb37ef4 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20210405180319-a5a99cb37ef4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0z90hpmxdw9i8vfhd6vf7hd63c86f1128qfb5f3y4kinvlpjy3rl")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) - ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" - ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) - ("go-golang-org-x-sys-0.0.0-20210330210617-4fbd30eecc44" - ,go-golang-org-x-sys-0.0.0-20210330210617-4fbd30eecc44))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20210220032951-036812b2e83c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1gl202py3s4gl6arkaxlf8qa6f0jyyg2f95m6f89qnfmr416h85b")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the -ones provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20210510120138-977fb7262007 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20210510120138-977fb7262007") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0d2vnblgzxgvis2kly99gv10kadyl3v0cpv1lskjqg2v5d11r6hd")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1 - (package - (name "go-golang-org-x-xerrors") - (version "0.0.0-20200804184101-5ec99f83aff1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/xerrors") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1dbzc3gmf2haazpv7cgmv97rq40g2xzwbglc17vas8dwhgwgwrzb")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/xerrors")) - (home-page "https://golang.org/x/xerrors") - (synopsis #f) - (description - "Package xerrors implements functions to manipulate errors. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.1.2 - (package - (name "go-golang-org-x-tools") - (version "0.1.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "047qwlvxs8whsal3yjjhywr9w0xrp5ky7q969mfxb1x9r20k76ci")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" - ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) - ("go-golang-org-x-sys-0.0.0-20210510120138-977fb7262007" - ,go-golang-org-x-sys-0.0.0-20210510120138-977fb7262007) - ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" - ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) - ("go-golang-org-x-net-0.0.0-20210405180319-a5a99cb37ef4" - ,go-golang-org-x-net-0.0.0-20210405180319-a5a99cb37ef4) - ("go-golang-org-x-mod-0.4.2" ,go-golang-org-x-mod-0.4.2) - ("go-github-com-yuin-goldmark-1.3.5" - ,go-github-com-yuin-goldmark-1.3.5))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-1.26.0 - (package - (name "go-google-golang-org-protobuf") - (version "1.26.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0xq6phaps6d0vcv13ga59gzj4306l0ki9kikhmb52h6pq0iwfqlz")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.5.5" - ,go-github-com-google-go-cmp-0.5.5) - ("go-github-com-golang-protobuf-1.5.0" - ,go-github-com-golang-protobuf-1.5.0))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-google-golang-org-genproto-0.0.0-20210602131652-f16073e35f0c - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20210602131652-f16073e35f0c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "06n5npgcjk8is2ajf0786nma5wjwpbwca273gv3yqq7dr3bkzv48")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.26.0" - ,go-google-golang-org-protobuf-1.26.0) - ("go-google-golang-org-grpc-1.38.0" ,go-google-golang-org-grpc-1.38.0) - ("go-golang-org-x-tools-0.1.2" ,go-golang-org-x-tools-0.1.2) - ("go-golang-org-x-text-0.3.5" ,go-golang-org-x-text-0.3.5) - ("go-golang-org-x-lint-0.0.0-20210508222113-6edffad5e616" - ,go-golang-org-x-lint-0.0.0-20210508222113-6edffad5e616) - ("go-github-com-golang-protobuf-1.5.2" - ,go-github-com-golang-protobuf-1.5.2))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-github-com-envoyproxy-go-control-plane-0.9.0 - (package - (name "go-github-com-envoyproxy-go-control-plane") - (version "0.9.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/envoyproxy/go-control-plane") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1dpvi4wnycyj6hnai78fr8aj58b27b1vcwdp3v0id5v22kvgr3xw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.23.0" ,go-google-golang-org-grpc-1.23.0) - ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" - ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) - ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" - ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2) - ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" - ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) - ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" - ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) - (home-page "https://github.com/envoyproxy/go-control-plane") - (synopsis "control-plane") - (description - "This repository contains a Go-based implementation of an API server that -implements the discovery service APIs defined in -@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") - (license license:asl2.0))) - -(define-public go-google-golang-org-grpc-1.25.1 - (package - (name "go-google-golang-org-grpc") - (version "1.25.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0a136ij9p11yj1vx892yqy40jkh7n5nfbpdvhgydcj823mx51c6f")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" - ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-github-com-google-go-cmp-0.2.0" - ,go-github-com-google-go-cmp-0.2.0) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2) - ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" - ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) - ("go-github-com-envoyproxy-go-control-plane-0.9.0" - ,go-github-com-envoyproxy-go-control-plane-0.9.0))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403 - (package - (name "go-github-com-cncf-udpa-go") - (version "0.0.0-20201120205902-5459f2c99403") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cncf/udpa") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0i3al193dsp91j7iywqrm6fr56y2sz51ci4vf19mb3j4n2x44gsi")))) - (build-system go-build-system) - (arguments - '(#:import-path - "github.com/cncf/udpa/go" - #:unpack-path - "github.com/cncf/udpa")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2) - ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" - ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0))) - (home-page "https://github.com/cncf/udpa") - (synopsis "Description") - (description - "This library has been deprecated in favor of @code{github.com/cncf/xds/go}. All users are recommended to switch their imports.") - (license license:asl2.0))) - -(define-public go-github-com-davecgh-go-spew-1.1.0 - (package - (name "go-github-com-davecgh-go-spew") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/davecgh/go-spew") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/davecgh/go-spew")) - (home-page "https://github.com/davecgh/go-spew") - (synopsis "go-spew") - (description - "Go-spew implements a deep pretty printer for Go data structures to aid in -debugging. A comprehensive suite of tests with 100% test coverage is provided -to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage -report. Go-spew is licensed under the liberal ISC license, so it may be used in -open source or commercial projects.") - (license license:isc))) - -(define-public go-github-com-pmezard-go-difflib-1.0.0 - (package - (name "go-github-com-pmezard-go-difflib") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pmezard/go-difflib") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pmezard/go-difflib")) - (home-page "https://github.com/pmezard/go-difflib") - (synopsis "go-difflib") - (description - "Go-difflib is a partial port of python 3 difflib package. Its main goal -was to make unified and context diff available in pure Go, mostly for -testing purposes.") - (license license:bsd-3))) - -(define-public go-github-com-stretchr-objx-0.1.0 - (package - (name "go-github-com-stretchr-objx") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/objx") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/objx")) - (home-page "https://github.com/stretchr/objx") - (synopsis "Objx") - (description - "Objx - Go package for dealing with maps, slices, JSON and other data. -") - (license license:expat))) - -(define-public go-gopkg-in-yaml-v2-2.2.2 - (package - (name "go-gopkg-in-yaml-v2") - (version "2.2.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "01wj12jzsdqlnidpyjssmj0r4yavlqy7dwrg7adqd8dicjc4ncsa")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v2") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language. -") - (license license:asl2.0))) - -(define-public go-github-com-stretchr-testify-1.5.1 - (package - (name "go-github-com-stretchr-testify") - (version "1.5.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/testify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "09r89m1wy4cjv2nps1ykp00qjpi0531r07q3s34hr7m6njk4srkl")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/testify")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) - ("go-github-com-stretchr-objx-0.1.0" - ,go-github-com-stretchr-objx-0.1.0) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.0" - ,go-github-com-davecgh-go-spew-1.1.0))) - (home-page "https://github.com/stretchr/testify") - (synopsis "Testify - Thou Shalt Write Tests") - (description - "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -") - (license license:expat))) - -(define-public go-github-com-envoyproxy-go-control-plane-0.9.9-0.20210217033140-668b12f5399d - (package - (name "go-github-com-envoyproxy-go-control-plane") - (version "0.9.9-0.20210217033140-668b12f5399d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/envoyproxy/go-control-plane") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0vmhc8ii081x1k2qw4kji7wjyg6l25zp1y6qxi27wq8m341i4rzb")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.23.0" - ,go-google-golang-org-protobuf-1.23.0) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" - ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) - ("go-github-com-stretchr-testify-1.5.1" - ,go-github-com-stretchr-testify-1.5.1) - ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" - ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.2" - ,go-github-com-golang-protobuf-1.4.2) - ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" - ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) - ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" - ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403) - ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" - ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) - (home-page "https://github.com/envoyproxy/go-control-plane") - (synopsis "control-plane") - (description - "This repository contains a Go-based implementation of an API server that -implements the discovery service APIs defined in -@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") - (license license:asl2.0))) - -(define-public go-google-golang-org-protobuf-1.23.0 - (package - (name "go-google-golang-org-protobuf") - (version "1.23.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "03yan0m1v0zmlr935p4n24fd376mznsg85zy8sywbgisls4s1bzy")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.0" - ,go-github-com-golang-protobuf-1.4.0))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.4.2 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0m5z81im4nsyfgarjhppayk4hqnrwswr3nix9mj8pff8x9jvcjqw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.23.0" - ,go-google-golang-org-protobuf-1.23.0) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-github-com-google-uuid-1.1.2 - (package - (name "go-github-com-google-uuid") - (version "1.1.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/uuid") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1rbpfa0v0ly9sdnixcxhf79swki54ikgm1zkwwkj64p1ws66syqd")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/uuid")) - (home-page "https://github.com/google/uuid") - (synopsis "uuid") - (description "Package uuid generates and inspects UUIDs. -") - (license license:bsd-3))) - -(define-public go-github-com-google-go-cmp-0.5.0 - (package - (name "go-github-com-google-go-cmp") - (version "0.5.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "04pzp583p6b32y34c6jygfxarff9qjs39rarvfh6467z24sdd9k4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-1.22.0 - (package - (name "go-google-golang-org-protobuf") - (version "1.22.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0n7lc4m7kfvj01glc0gnjy0zsnsic7cxnbvlajy0h14cxbab87pj")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.0" - ,go-github-com-golang-protobuf-1.4.0))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.4.1 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0w7ks4vffnnkp0miwgc3chrsnmya45lzvpahb2wmw0jwhdp5kdx7")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.22.0" - ,go-google-golang-org-protobuf-1.22.0) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-github-com-census-instrumentation-opencensus-proto-0.2.1 - (package - (name "go-github-com-census-instrumentation-opencensus-proto") - (version "0.2.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/census-instrumentation/opencensus-proto") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19fcx3sc99i5dsklny6r073z5j20vlwn2xqm6di1q3b1xwchzqfj")))) - (build-system go-build-system) - (arguments - '(#:import-path "github.com/census-instrumentation/opencensus-proto")) - (home-page "https://github.com/census-instrumentation/opencensus-proto") - (synopsis - "OpenCensus Proto - Language Independent Interface Types For OpenCensus") - (description - "Census provides a framework to define and collect stats against metrics and to -break those stats down across user-defined dimensions.") - (license license:asl2.0))) - -(define-public go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4 - (package - (name "go-github-com-prometheus-client-model") - (version "0.0.0-20190812154241-14fe0d1b01d4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/client_model") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0zdmk6rbbx39cvfz0r59v2jg5sg9yd02b4pds5n5llgvivi99550")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/client_model")) - (propagated-inputs - `(("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" - ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0))) - (home-page "https://github.com/prometheus/client_model") - (synopsis "Deprecation note") - (description - "This repository used to contain the code that defined both -the data model and the exposition format of Prometheus metrics.") - (license license:asl2.0))) - -(define-public go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20190311212946-11955173bddd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hlkai67w167wiyivkzd1fgqrnyxkb94l2c6kr51jwcscizfyfn3")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3 - (package - (name "go-golang-org-x-lint") - (version "0.0.0-20190313153728-d0100b6bd8b3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/lint") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0b0amr9x4ji66iv9ayfx7zrfx52k1m5g66qfcxkgj80qrb1y2yn7")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/lint")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" - ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd))) - (home-page "https://golang.org/x/lint") - (synopsis "Installation") - (description "Package lint contains a linter for Go source code. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20190423024810-112230192c58 - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20190423024810-112230192c58") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "05i2k43j2d0llq768hg5pf3hb2yhfzp9la1w5wp0rsnnzblr0lfn")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the -ones provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135 - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20190524140312-2c0ae7006135") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1lsi2ssxajclj3bciz2a41v1vjv768ja3v6wnbyhxy8xphwkp4fk")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" - ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-google-golang-org-grpc-1.23.0 - (package - (name "go-google-golang-org-grpc") - (version "1.23.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1cn33r2gclmq2v1ndpf1n5bmhf2qs8mms7ii5cnl6f9ch4r2c4k3")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" - ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) - ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" - ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) - ("go-google-golang-org-appengine-1.1.0" - ,go-google-golang-org-appengine-1.1.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-google-go-cmp-0.2.0" - ,go-github-com-google-go-cmp-0.2.0) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0) - ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-client9-misspell-0.3.4" - ,go-github-com-client9-misspell-0.3.4) - ("go-github-com-burntsushi-toml-0.3.1" - ,go-github-com-burntsushi-toml-0.3.1) - ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473 - (package - (name "go-github-com-envoyproxy-go-control-plane") - (version "0.9.1-0.20191026205805-5f8ba28d4473") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/envoyproxy/go-control-plane") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1f1s764rd41vd9vgk3r14h1m6fz6pdvxj6fd83q58gxifbc4q5w4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.23.0" ,go-google-golang-org-grpc-1.23.0) - ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" - ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) - ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" - ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2) - ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" - ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) - ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" - ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) - (home-page "https://github.com/envoyproxy/go-control-plane") - (synopsis "control-plane") - (description - "This repository contains a Go-based implementation of an API server that -implements the discovery service APIs defined in -@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") - (license license:asl2.0))) - -(define-public go-github-com-envoyproxy-protoc-gen-validate-0.1.0 - (package - (name "go-github-com-envoyproxy-protoc-gen-validate") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/envoyproxy/protoc-gen-validate") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0kxd3wwh3xwqk0r684hsy281xq4y71cd11d4q2hspcjbnlbwh7cy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/envoyproxy/protoc-gen-validate")) - (home-page "https://github.com/envoyproxy/protoc-gen-validate") - (synopsis "protoc-gen-validate (PGV)") - (description - "PGV is a protoc plugin to generate polyglot message validators. While protocol buffers effectively guarantee the types of structured data, they cannot enforce semantic rules for values. This plugin adds support to protoc-generated code to validate such constraints.") - (license license:asl2.0))) - -(define-public go-github-com-google-go-cmp-0.2.0 - (package - (name "go-github-com-google-go-cmp") - (version "0.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fbv0x27k9sn8svafc0hjwsnckk864lv4yi7bvzrxvmd3d5hskds")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") - (license license:bsd-3))) - -(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20190308221718-c2843e01d9a2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20190311183353-d8887717615a - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190311183353-d8887717615a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1wfm6ngxjyj7v5a2dqib6lw8bb2rdnf1kl48diykxjrsddn0s163")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190215142949-d0b11bdaac8a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.3.2 - (package - (name "go-github-com-golang-protobuf") - (version "1.3.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1k1wb4zr0qbwgpvz9q5ws9zhlal8hq7dmq62pwxxriksayl6hzym")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4 - (package - (name "go-golang-org-x-exp") - (version "0.0.0-20190121172915-509febef88a4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/exp") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "02isrh39z8znrp5znplzy0dip2gnrl3jm1355raliyvhnhg04j6q")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/exp")) - (home-page "https://golang.org/x/exp") - (synopsis "exp") - (description - "This subrepository holds experimental and deprecated (in the @code{old} -directory) packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961 - (package - (name "go-golang-org-x-lint") - (version "0.0.0-20190227174305-5b3e6a55c961") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/lint") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "04zp5vbds9nffmjg36wjpi5vg9zmf890yf78xxasai3ni637ivfw")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/lint")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" - ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c))) - (home-page "https://golang.org/x/lint") - (synopsis "Installation") - (description "Package lint contains a linter for Go source code. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190213061140-3a22650c66bd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12q6fgdkc0742vcms67nzadgdwvi3rnb1gx3vwkljhrvlnwvz7wc")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20181108010431-42b317875d0f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0mrjhk7al7yyh76x9flvxy4jm5jyqh2fxbxagpaazxn1xdgkaif3")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the -ones provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20180724234803-3673e40ba225") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0vx7mz18p480p7fh0w5jv6mfdbsswrlac1sz4i705q7q7ygz59lm")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-google-golang-org-appengine-1.4.0 - (package - (name "go-google-golang-org-appengine") - (version "1.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/appengine") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "06zl7w4sxgdq2pl94wy9ncii6h0z3szl4xpqds0sv3b3wbdlhbnn")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/appengine")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225" - ,go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0))) - (home-page "https://google.golang.org/appengine") - (synopsis "Go App Engine packages") - (description - "Package appengine provides basic functionality for Google App Engine. -") - (license license:asl2.0))) - -(define-public go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20190226205152-f727befe758c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0rpcqw6z13qd33rbasg32zb0gdhgh5lzjla63r6g651zf6hpsak0")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-google-golang-org-appengine-1.4.0" - ,go-google-golang-org-appengine-1.4.0) - ("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" - ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) - ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" - ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-cloud-google-com-go-0.26.0 - (package - (name "go-cloud-google-com-go") - (version "0.26.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-cloud-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "149v3ci17g6wd2pm18mzcncq5qpl9hwdjnz3rlbn5rfidyn46la1")))) - (build-system go-build-system) - (arguments '(#:import-path "cloud.google.com/go")) - (home-page "https://cloud.google.com/go") - (synopsis "Google Cloud Client Libraries for Go") - (description - "Package cloud is the root of the packages used to access Google Cloud -Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -of sub-packages. -") - (license license:asl2.0))) - -(define-public go-github-com-burntsushi-toml-0.3.1 - (package - (name "go-github-com-burntsushi-toml") - (version "0.3.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/BurntSushi/toml") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fjdwwfzyzllgiwydknf1pwjvy49qxfsczqx5gz3y0izs7as99j6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/BurntSushi/toml")) - (home-page "https://github.com/BurntSushi/toml") - (synopsis "TOML parser and encoder for Go with reflection") - (description - "Package toml implements decoding and encoding of TOML files. -") - (license license:expat))) - -(define-public go-github-com-client9-misspell-0.3.4 - (package - (name "go-github-com-client9-misspell") - (version "0.3.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/client9/misspell") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1vwf33wsc4la25zk9nylpbp9px3svlmldkm0bha4hp56jws4q9cs")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/client9/misspell")) - (home-page "https://github.com/client9/misspell") - (synopsis "Install") - (description - "Package misspell corrects commonly misspelled English words in source files. -") - (license license:expat))) - -(define-public go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b - (package - (name "go-github-com-golang-glog") - (version "0.0.0-20160126235308-23def4e6c14b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/glog") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0jb2834rw5sykfr937fxi8hxi2zy80sj2bdn9b3jb4b26ksqng30")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/glog")) - (home-page "https://github.com/golang/glog") - (synopsis "glog") - (description - "Package glog implements logging analogous to the Google-internal C++ INFO/ERROR/V setup. -It provides functions Info, Warning, Error, Fatal, plus formatting variants such as -Infof. It also provides V-style logging controlled by the -v and -vmodule=file=2 flags. -") - (license license:asl2.0))) - -(define-public go-github-com-golang-mock-1.1.1 - (package - (name "go-github-com-golang-mock") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/mock") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ap8wb6pdl6ccmdb43advjll2ly4sz26wsc3axw0hbrjrybybzgy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/mock")) - (home-page "https://github.com/golang/mock") - (synopsis "gomock") - (description - "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It -integrates well with Go's built-in @code{testing} package, but can be used in other -contexts too.") - (license license:asl2.0))) - -(define-public go-github-com-golang-protobuf-1.2.0 - (package - (name "go-github-com-golang-protobuf") - (version "1.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0kf4b59rcbb1cchfny2dm9jyznp8ri2hsb14n8iak1q8986xa0ab")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3 - (package - (name "go-golang-org-x-lint") - (version "0.0.0-20181026193005-c67002cb31c3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/lint") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0gymbggskjmphqxqcx4s0vnlcz7mygbix0vhwcwv5r67c0bf6765")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/lint")) - (home-page "https://golang.org/x/lint") - (synopsis "Installation") - (description "Package lint contains a linter for Go source code. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d - (package - (name "go-golang-org-x-net") - (version "0.0.0-20180826012351-8a410e7b638d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hp0l8f6fir5gmgrjq0mhh5ikc0rlrm72774228800kfwqjrxxny")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be - (package - (name "go-golang-org-x-oauth2") - (version "0.0.0-20180821212333-d2e6202438be") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/oauth2") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0wbn75fd10485nb93bm4kqldqifdim5xqy4v7r5sdvimvf3fyhn7")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/oauth2")) - (home-page "https://golang.org/x/oauth2") - (synopsis "OAuth2 for Go") - (description - "Package oauth2 provides support for making -OAuth2 authorized and authenticated HTTP requests, -as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -It can additionally grant authorization with Bearer JWT. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20180314180146-1d60e4601c6f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "046jlanz2lkxq1r57x9bl6s4cvfqaic6p2xybsj8mq1120jv4rs6")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the -ones provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20180830151530-49385e6e1522") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0spbldahns09fdxkxflb1x24f8k2awdlnr6k5i7ci4fqd19r1dv4")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-text-0.3.0 - (package - (name "go-golang-org-x-text") - (version "0.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/text")) - (home-page "https://golang.org/x/text") - (synopsis "Go Text") - (description - "text is a repository of text-related packages related to internationalization -(i18n) and localization (l10n), such as character encodings, text -transformations, and locale-specific text handling. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20190114222345-bf090417da8b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1n3xp56k4k3lj06rx7587wr5gnwg0148nvwx6ch0g7ar02hh94hw")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-google-golang-org-appengine-1.1.0 - (package - (name "go-google-golang-org-appengine") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/appengine") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1pz202zszg8f35dk5pfhwgcdi3r6dx1l4yk6x6ly7nb4j45zi96x")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/appengine")) - (home-page "https://google.golang.org/appengine") - (synopsis "Go App Engine packages") - (description - "Package appengine provides basic functionality for Google App Engine. -") - (license license:asl2.0))) - -(define-public go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8 - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20180817151627-c66870c02cf8") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0siq7sv68556ygqi2d2zmvx8l1xjqdc0fylqzci5h1mq2i14bayn")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-google-golang-org-grpc-1.19.0 - (package - (name "go-google-golang-org-grpc") - (version "1.19.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1znqwpj7ix3dpzx4zch0q70sdl3z5lvbb7v3q4i8sf8kas3yv71v")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" - ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) - ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" - ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) - ("go-google-golang-org-appengine-1.1.0" - ,go-google-golang-org-appengine-1.1.0) - ("go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b" - ,go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b) - ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522" - ,go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522) - ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" - ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d" - ,go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d) - ("go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3" - ,go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0) - ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-client9-misspell-0.3.4" - ,go-github-com-client9-misspell-0.3.4) - ("go-github-com-burntsushi-toml-0.3.1" - ,go-github-com-burntsushi-toml-0.3.1) - ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099 - (package - (name "go-honnef-co-go-tools") - (version "0.0.0-20190102054323-c2f93a96b099") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/dominikh/go-tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "07lg29aiap80ca9f201jzng9vjr168cv3qmvjmbd7v5pmww9kmr8")))) - (build-system go-build-system) - (arguments '(#:import-path "honnef.co/go/tools")) - (home-page "https://honnef.co/go/tools") - (synopsis "Documentation") - (description - "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, -offers simplifications, and enforces style rules.") - (license license:expat))) - -(define-public go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55 - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20190819201941-24fa4b261c55") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "109zhaqlfd8zkbr1hk6zqbs6vcxfrk64scjwh2nswph05gr0m84d")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" - ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) - ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) - ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" - ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) - ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" - ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) - ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" - ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-google-golang-org-grpc-1.27.0 - (package - (name "go-google-golang-org-grpc") - (version "1.27.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ijrmgrxyabfn51nm3p9l81iaasq5fg237wnr6mdc4dzsfcg8kd7")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" - ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-github-com-google-go-cmp-0.2.0" - ,go-github-com-google-go-cmp-0.2.0) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2) - ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" - ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) - ("go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473" - ,go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-github-com-google-go-cmp-0.3.0 - (package - (name "go-github-com-google-go-cmp") - (version "0.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1hyxx3434zshl2m9ja78gwlkg1rx9yl6diqa7dnjb31xz5x4gbjj")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd - (package - (name "go-google-golang-org-protobuf") - (version "0.0.0-20200109180630-ec00e32a8dfd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0w6lp9w2avxcpxwzzhspr209ifhyjagvs23k0vykfdqahl1aplrh")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.3.0" - ,go-github-com-google-go-cmp-0.3.0))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.4.0-rc.1 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.0-rc.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "186rirvbfgv6hrxp27ipx2cdpv19qifdd20biqfdm01wiyclqimn")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd" - ,go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd) - ("go-github-com-google-go-cmp-0.3.1" - ,go-github-com-google-go-cmp-0.3.1))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-github-com-google-go-cmp-0.3.1 - (package - (name "go-github-com-google-go-cmp") - (version "0.3.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1caw49i0plkjxir7kdf5qhwls3krqwfmi7g4h392rdfwi3kfahx1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64 - (package - (name "go-google-golang-org-protobuf") - (version "0.0.0-20200221191635-4d8936d0db64") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0563bsvdjj6k0sgwqd5yzrgfiax7sp3lcwh608gync5sv9fx39cy")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.3.1" - ,go-github-com-google-go-cmp-0.3.1) - ("go-github-com-golang-protobuf-1.4.0-rc.1" - ,go-github-com-golang-protobuf-1.4.0-rc.1))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.0-rc.1.0.20200221234624-67d41d38c208") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ykxhg3zixmw25pd435f8h16wnz1g00jpcmmg3xl030kksgqgpp6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64" - ,go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60 - (package - (name "go-google-golang-org-protobuf") - (version "0.0.0-20200228230310-ab0ca4ff8a60") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1rinspcznfp85yz4vrlf4h38hr576virgv8lcs22bsylqga808sd")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208" - ,go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.4.0-rc.2 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.0-rc.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1hd43hjv5zl6bjbmhm5phx74bw4xajsi73m5zky2k56za4mpgzzc")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60" - ,go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967 - (package - (name "go-google-golang-org-protobuf") - (version "1.20.1-0.20200309200217-e05f789c0967") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "17wmy89hnmpkwc63rfcjp50q15s9f1rhmczg06c3z9yy41zk82w9")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.0-rc.2" - ,go-github-com-golang-protobuf-1.4.0-rc.2))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.0-rc.4.0.20200313231945-b860323f09d0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1zj6cwshx0l5n9cn2cpbikzzb79px5dmkpc4p19zy1iif5r5p0z0")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967" - ,go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-1.21.0 - (package - (name "go-google-golang-org-protobuf") - (version "1.21.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12bwln8z1lf9105gdp6ip0rx741i4yfz1520gxnp8861lh9wcl63")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0" - ,go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.4.0 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fjvl5n77abxz5qsd4mgyvjq19x43c5bfvmq62mq3m5plx6zksc8")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.21.0" - ,go-google-golang-org-protobuf-1.21.0) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-github-com-google-go-cmp-0.4.0 - (package - (name "go-github-com-google-go-cmp") - (version "0.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1x5pvl3fb5sbyng7i34431xycnhmx8xx94gq2n19g6p0vz68z2v2")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc - (package - (name "go-google-golang-org-protobuf") - (version "1.23.1-0.20200526195155-81db48ad09cc") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "02cpr8rqr5wmpj2fqb32mzilsdnxkh52g1jz95a3ck3gzffc7hh1")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.0" - ,go-github-com-golang-protobuf-1.4.0))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc - (package - (name "go-honnef-co-go-tools") - (version "0.0.0-20190523083050-ea95bdfd59fc") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/dominikh/go-tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1763nw7pwpzkvzfnm63dgzcgbq9hwmq5l1nffchnhh77vgkaq4ic")))) - (build-system go-build-system) - (arguments '(#:import-path "honnef.co/go/tools")) - (home-page "https://honnef.co/go/tools") - (synopsis "Documentation") - (description - "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, -offers simplifications, and enforces style rules.") - (license license:expat))) - -(define-public go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013 - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20200526211855-cb27e3aa2013") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ml73ghqcwbz7ipfk8fnxb5indcml49b5p7vp1fsyny0abyyrmxf")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" - ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) - ("go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc" - ,go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-golang-protobuf-1.4.1" - ,go-github-com-golang-protobuf-1.4.1))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -APIs.") - (license license:asl2.0))) - -(define-public go-google-golang-org-protobuf-1.25.0 - (package - (name "go-google-golang-org-protobuf") - (version "1.25.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0apfl42x166dh96zfq5kvv4b4ax9xljik6bq1mnvn2240ir3mc23")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" - ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) - ("go-github-com-google-go-cmp-0.5.0" - ,go-github-com-google-go-cmp-0.5.0) - ("go-github-com-golang-protobuf-1.4.1" - ,go-github-com-golang-protobuf-1.4.1))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-google-golang-org-grpc-1.38.0 - (package - (name "go-google-golang-org-grpc") - (version "1.38.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "08lgqdvbd0i4qwsv1y37qmf8mhsy9ywzx73ixiwih7xhnalrf7xl")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.25.0" - ,go-google-golang-org-protobuf-1.25.0) - ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" - ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) - ("go-github-com-google-go-cmp-0.5.0" - ,go-github-com-google-go-cmp-0.5.0) - ("go-github-com-golang-protobuf-1.4.2" - ,go-github-com-golang-protobuf-1.4.2) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-envoyproxy-go-control-plane-0.9.9-0.20210217033140-668b12f5399d" - ,go-github-com-envoyproxy-go-control-plane-0.9.9-0.20210217033140-668b12f5399d) - ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" - ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC. -") - (license license:asl2.0))) - -(define-public go-google-golang-org-protobuf-1.26.0-rc.1 - (package - (name "go-google-golang-org-protobuf") - (version "1.26.0-rc.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1m2jp247qcnix42jncn0q7pwrjgbhiqllb1115hfsz40xfnfhp8j")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.5.5" - ,go-github-com-google-go-cmp-0.5.5))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.5.0 - (package - (name "go-github-com-golang-protobuf") - (version "1.5.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1craaxv34g4g8q3yrv6pr28fx9ihnk7hj5gnbmxcrhcp78423lnf")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.26.0-rc.1" - ,go-google-golang-org-protobuf-1.26.0-rc.1) - ("go-github-com-google-go-cmp-0.5.5" - ,go-github-com-google-go-cmp-0.5.5))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module -(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543 - (package - (name "go-golang-org-x-xerrors") - (version "0.0.0-20191204190536-9bdfabe68543") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/xerrors") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1yjfi1bk9xb81lqn85nnm13zz725wazvrx3b50hx19qmwg7a4b0c")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/xerrors")) - (home-page "https://golang.org/x/xerrors") - (synopsis #f) - (description - "Package xerrors implements functions to manipulate errors. -") - (license license:bsd-3))) - -(define-public go-github-com-google-go-cmp-0.5.5 - (package - (name "go-github-com-google-go-cmp") - (version "0.5.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12fmkdhyv5d4is8s57k78j097zb0phlgnrkqc03agiszxlid69x7")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-1.27.1 - (package - (name "go-google-golang-org-protobuf") - (version "1.27.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0aszb7cv8fq1m8akgd4kjyg5q7g5z9fdqnry6057ygq9r8r2yif2")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.5.5" - ,go-github-com-google-go-cmp-0.5.5) - ("go-github-com-golang-protobuf-1.5.0" - ,go-github-com-golang-protobuf-1.5.0))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-gopkg-in-yaml-v2-2.4.0 - (package - (name "go-gopkg-in-yaml-v2") - (version "2.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1pbmrpj7gcws34g8vwna4i2nhm9p6235piww36436xhyaa10cldr")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v2") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language. -") - (license license:asl2.0))) - -(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 - (package - (name "go-gopkg-in-check-v1") - (version "0.0.0-20161208181325-20d25e280405") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/check.v1") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) - (home-page "https://gopkg.in/check.v1") - (synopsis "Instructions") - (description - "Package check is a rich testing extension for Go's testing package. -") - (license license:bsd-2))) - -(define-public go-gopkg-in-yaml-v3-3.0.0-20210107192922-496545a6307b - (package - (name "go-gopkg-in-yaml-v3") - (version "3.0.0-20210107192922-496545a6307b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v3") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "06f4lnrp494wqaygv09dggr2dwf3z2bawqhnlnnwiamg5y787k4g")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v3") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language. -") - (license #f))) - -(define-public go-oras-land-oras-go-1.0.0 - (package - (name "go-oras-land-oras-go") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/oras-project/oras-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1pqix8xj298229c886ahdggsvbg4srm4izjr66icvfjjx7rndagz")))) - (build-system go-build-system) - (arguments '(#:import-path "oras.land/oras-go")) - (propagated-inputs - `(("go-gopkg-in-yaml-v3-3.0.0-20210107192922-496545a6307b" - ,go-gopkg-in-yaml-v3-3.0.0-20210107192922-496545a6307b) - ("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) - ("go-google-golang-org-protobuf-1.27.1" - ,go-google-golang-org-protobuf-1.27.1) - ("go-google-golang-org-grpc-1.38.0" ,go-google-golang-org-grpc-1.38.0) - ("go-google-golang-org-genproto-0.0.0-20210602131652-f16073e35f0c" - ,go-google-golang-org-genproto-0.0.0-20210602131652-f16073e35f0c) - ("go-golang-org-x-text-0.3.6" ,go-golang-org-x-text-0.3.6) - ("go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1" - ,go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1) - ("go-golang-org-x-net-0.0.0-20211112202133-69e39bad7dc2" - ,go-golang-org-x-net-0.0.0-20211112202133-69e39bad7dc2) - ("go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20140908184405-b21fdbd4370f" - ,go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20140908184405-b21fdbd4370f) - ("go-github-com-yvasiyarov-gorelic-0.0.0-20141212073537-a9bba5b9ab50" - ,go-github-com-yvasiyarov-gorelic-0.0.0-20141212073537-a9bba5b9ab50) - ("go-github-com-yvasiyarov-go-metrics-0.0.0-20140926110328-57bccd1ccd43" - ,go-github-com-yvasiyarov-go-metrics-0.0.0-20140926110328-57bccd1ccd43) - ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) - ("go-github-com-prometheus-procfs-0.6.0" - ,go-github-com-prometheus-procfs-0.6.0) - ("go-github-com-prometheus-common-0.10.0" - ,go-github-com-prometheus-common-0.10.0) - ("go-github-com-prometheus-client-model-0.2.0" - ,go-github-com-prometheus-client-model-0.2.0) - ("go-github-com-prometheus-client-golang-1.7.1" - ,go-github-com-prometheus-client-golang-1.7.1) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-morikuni-aec-1.0.0" ,go-github-com-morikuni-aec-1.0.0) - ("go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd" - ,go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd) - ("go-github-com-moby-locker-1.0.1" ,go-github-com-moby-locker-1.0.1) - ("go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369" - ,go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369) - ("go-github-com-klauspost-compress-1.11.13" - ,go-github-com-klauspost-compress-1.11.13) - ("go-github-com-inconshreveable-mousetrap-1.0.0" - ,go-github-com-inconshreveable-mousetrap-1.0.0) - ("go-github-com-gorilla-mux-1.8.0" ,go-github-com-gorilla-mux-1.8.0) - ("go-github-com-gorilla-handlers-1.5.1" - ,go-github-com-gorilla-handlers-1.5.1) - ("go-github-com-gomodule-redigo-1.8.2" - ,go-github-com-gomodule-redigo-1.8.2) - ("go-github-com-golang-protobuf-1.5.2" - ,go-github-com-golang-protobuf-1.5.2) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2) - ("go-github-com-felixge-httpsnoop-1.0.1" - ,go-github-com-felixge-httpsnoop-1.0.1) - ("go-github-com-docker-libtrust-0.0.0-20150114040149-fa567046d9b1" - ,go-github-com-docker-libtrust-0.0.0-20150114040149-fa567046d9b1) - ("go-github-com-docker-go-units-0.4.0" - ,go-github-com-docker-go-units-0.4.0) - ("go-github-com-docker-go-metrics-0.0.1" - ,go-github-com-docker-go-metrics-0.0.1) - ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" - ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) - ("go-github-com-docker-go-connections-0.4.0" - ,go-github-com-docker-go-connections-0.4.0) - ("go-github-com-docker-docker-credential-helpers-0.6.4" - ,go-github-com-docker-docker-credential-helpers-0.6.4) - ("go-github-com-docker-distribution-2.7.1+incompatible" - ,go-github-com-docker-distribution-2.7.1+incompatible) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1) - ("go-github-com-cespare-xxhash-v2-2.1.1" - ,go-github-com-cespare-xxhash-v2-2.1.1) - ("go-github-com-bugsnag-panicwrap-0.0.0-20151223152923-e2c28503fcd0" - ,go-github-com-bugsnag-panicwrap-0.0.0-20151223152923-e2c28503fcd0) - ("go-github-com-bugsnag-osext-0.0.0-20130617224835-0dd3f918b21b" - ,go-github-com-bugsnag-osext-0.0.0-20130617224835-0dd3f918b21b) - ("go-github-com-bugsnag-bugsnag-go-0.0.0-20141110184014-b1d153021fcd" - ,go-github-com-bugsnag-bugsnag-go-0.0.0-20141110184014-b1d153021fcd) - ("go-github-com-bshuster-repo-logrus-logstash-hook-1.0.0" - ,go-github-com-bshuster-repo-logrus-logstash-hook-1.0.0) - ("go-github-com-beorn7-perks-1.0.1" ,go-github-com-beorn7-perks-1.0.1) - ("go-github-com-shopify-logrus-bugsnag-0.0.0-20171204204709-577dee27f20d" - ,go-github-com-shopify-logrus-bugsnag-0.0.0-20171204204709-577dee27f20d) - ("go-github-com-azure-go-ansiterm-0.0.0-20170929234023-d6e3b3328b78" - ,go-github-com-azure-go-ansiterm-0.0.0-20170929234023-d6e3b3328b78) - ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" - ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) - ("go-golang-org-x-crypto-0.0.0-20211117183948-ae814b36b871" - ,go-golang-org-x-crypto-0.0.0-20211117183948-ae814b36b871) - ("go-github-com-stretchr-testify-1.7.0" - ,go-github-com-stretchr-testify-1.7.0) - ("go-github-com-spf13-cobra-1.2.1" ,go-github-com-spf13-cobra-1.2.1) - ("go-github-com-sirupsen-logrus-1.8.1" - ,go-github-com-sirupsen-logrus-1.8.1) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-phayes-freeport-0.0.0-20180830031419-95f893ade6f2" - ,go-github-com-phayes-freeport-0.0.0-20180830031419-95f893ade6f2) - ("go-github-com-opencontainers-image-spec-1.0.2" - ,go-github-com-opencontainers-image-spec-1.0.2) - ("go-github-com-opencontainers-go-digest-1.0.0" - ,go-github-com-opencontainers-go-digest-1.0.0) - ("go-github-com-docker-docker-20.10.11+incompatible" - ,go-github-com-docker-docker-20.10.11+incompatible) - ("go-github-com-docker-cli-20.10.11+incompatible" - ,go-github-com-docker-cli-20.10.11+incompatible) - ("go-github-com-distribution-distribution-v3-3.0.0-20211118083504-a29a3c99a684" - ,go-github-com-distribution-distribution-v3-3.0.0-20211118083504-a29a3c99a684) - ("go-github-com-containerd-containerd-1.5.8" - ,go-github-com-containerd-containerd-1.5.8))) - (home-page "https://oras.land/oras-go") - (synopsis "ORAS Go library") - (description - "Documentation for the ORAS Go library is located on -the project website: @url{https://oras.land/client_libraries/go/,oras.land/client_libraries/go}") - (license license:asl2.0))) - -(define-public go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20210226172049-e18ecbb05110") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1vlq8mdscp7yfaa1lmyv03y5m4c2d67ydg2q1i6smkrxghn3zn3q")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) - ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" - ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) - ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" - ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20210615035016-665e8c7367d1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "11n848csibdbv7b46zjyf4l7sphg37n9sjzqfy1ds7p1jyakwmnv")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20201119102817-f84b799fce68") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1dvhqian5byzkcg1bnqzygqa6ccc6krc2q7j12pp1vhl3y7znnsg")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1 - (package - (name "go-golang-org-x-term") - (version "0.0.0-20201126162022-7de9c90e9dd1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/term") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ba252xmv6qsvf1w1gcy98mngrj0vd4inbjw0lsklqvva65nljna")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/term")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" - ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) - (home-page "https://golang.org/x/term") - (synopsis "Go terminal/console support") - (description - "Package term provides support functions for dealing with terminals, as -commonly found on UNIX systems. -") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20180917221912-90fa682c2a6e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-golang-org-x-text-0.3.3 - (package - (name "go-golang-org-x-text") - (version "0.3.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19pihqm3phyndmiw6i42pdv6z1rbvlqlsnhsyqf9gsnn0qnmqqlh")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/text")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" - ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) - (home-page "https://golang.org/x/text") - (synopsis "Go Text") - (description - "text is a repository of text-related packages related to internationalization -(i18n) and localization (l10n), such as character encodings, text -transformations, and locale-specific text handling. -") - (license license:bsd-3))) - -(define-public go-github-com-hpcng-golang-x-crypto-0.0.0-20210830200829-e6b35e3fb874 - (package - (name "go-github-com-hpcng-golang-x-crypto") - (version "0.0.0-20210830200829-e6b35e3fb874") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hpcng/golang-x-crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "17zbxn6m550dkfcx7hi6wvl7f5gm39hx72bfkdjgpzq05fdb1bfk")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hpcng/golang-x-crypto")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) - ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" - ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) - ("go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1" - ,go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1) - ("go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110" - ,go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110))) - (home-page "https://github.com/hpcng/golang-x-crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) +;(define-public go-github-com-adamkorcz-go-fuzz-headers-0.0.0-20210319161527-f761c2329661 +; (package +; (name "go-github-com-adamkorcz-go-fuzz-headers") +; (version "0.0.0-20210319161527-f761c2329661") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/AdamKorcz/go-fuzz-headers") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "043a8lialk5kmxy2g5ka1pss8k71d42y4g0ikkv0ls8kgvxw3cc6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/AdamKorcz/go-fuzz-headers")) +; (home-page "https://github.com/AdamKorcz/go-fuzz-headers") +; (synopsis #f) +; (description #f) +; (license #f))) +; +;(define-public go-github-com-netflix-go-expect-0.0.0-20190729225929-0e00d9168667 +; (package +; (name "go-github-com-netflix-go-expect") +; (version "0.0.0-20190729225929-0e00d9168667") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/Netflix/go-expect") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0kzas7m7fllyj3cn2ijasaw7xkv2yvqxli2l1j3jqsi0ln51fa52")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/Netflix/go-expect")) +; (home-page "https://github.com/Netflix/go-expect") +; (synopsis "go-expect") +; (description +; "Package expect provides an expect-like interface to automate control of +;applications. It is unlike expect in that it does not spawn or manage +;process lifecycle. This package only focuses on expecting output and sending +;input through it's psuedoterminal. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-docker-distribution-2.7.1+incompatible +; (package +; (name "go-github-com-docker-distribution") +; (version "2.7.1+incompatible") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/distribution/distribution") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1nx8b5a68rn81alp8wkkw6qd5v32mgf0fk23mxm60zdf63qk1nzw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/docker/distribution")) +; (home-page "https://github.com/docker/distribution") +; (synopsis "Distribution") +; (description +; "Package distribution will define the interfaces for the components of +;docker distribution. The goal is to allow users to reliably package, ship +;and store content related to docker images. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-docker-libtrust-0.0.0-20160708172513-aabc10ec26b7 +; (package +; (name "go-github-com-docker-libtrust") +; (version "0.0.0-20160708172513-aabc10ec26b7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/docker/libtrust") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1lwslbggzc2b0c4wxl5pn6i2nfgz5jz8f7s7vnid9mrlsk59h7s1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/docker/libtrust")) +; (home-page "https://github.com/docker/libtrust") +; (synopsis "libtrust") +; (description +; "Package libtrust provides an interface for managing authentication and +;authorization using public key cryptography. Authentication is handled +;using the identity attached to the public key and verified through TLS +;x509 certificates, a key challenge, or signature. Authorization and +;access control is managed through a trust graph distributed between +;both remote trust servers and locally cached and managed data. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-gorilla-mux-1.7.4 +; (package +; (name "go-github-com-gorilla-mux") +; (version "1.7.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/gorilla/mux") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1d0sy1paa055ic84sp3766s9pa24q008hf77dc842vrgvn8p3wmh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/gorilla/mux")) +; (home-page "https://github.com/gorilla/mux") +; (synopsis "gorilla/mux") +; (description "Package mux implements a request router and dispatcher. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-davecgh-go-spew-1.1.1 +; (package +; (name "go-github-com-davecgh-go-spew") +; (version "1.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/davecgh/go-spew") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/davecgh/go-spew")) +; (home-page "https://github.com/davecgh/go-spew") +; (synopsis "go-spew") +; (description +; "Go-spew implements a deep pretty printer for Go data structures to aid in +;debugging. A comprehensive suite of tests with 100% test coverage is provided +;to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage +;report. Go-spew is licensed under the liberal ISC license, so it may be used in +;open source or commercial projects.") +; (license license:isc))) +; +;(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.1 +; (package +; (name "go-github-com-konsorten-go-windows-terminal-sequences") +; (version "1.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/konsorten/go-windows-terminal-sequences") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1lchgf27n276vma6iyxa0v1xds68n2g8lih5lavqnx5x6q5pw2ip")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) +; (home-page "https://github.com/konsorten/go-windows-terminal-sequences") +; (synopsis "Windows Terminal Sequences") +; (description +; "This library allow for enabling Windows terminal color support for Go.") +; (license license:expat))) +; +;(define-public go-github-com-pmezard-go-difflib-1.0.0 +; (package +; (name "go-github-com-pmezard-go-difflib") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/pmezard/go-difflib") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/pmezard/go-difflib")) +; (home-page "https://github.com/pmezard/go-difflib") +; (synopsis "go-difflib") +; (description +; "Go-difflib is a partial port of python 3 difflib package. Its main goal +;was to make unified and context diff available in pure Go, mostly for +;testing purposes.") +; (license license:bsd-3))) +; +;(define-public go-github-com-stretchr-objx-0.1.1 +; (package +; (name "go-github-com-stretchr-objx") +; (version "0.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/objx") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0iph0qmpyqg4kwv8jsx6a56a7hhqq8swrazv40ycxk9rzr0s8yls")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/objx")) +; (home-page "https://github.com/stretchr/objx") +; (synopsis "Objx") +; (description +; "Objx - Go package for dealing with maps, slices, JSON and other data. +;") +; (license license:expat))) +; +;(define-public go-github-com-stretchr-testify-1.2.2 +; (package +; (name "go-github-com-stretchr-testify") +; (version "1.2.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/testify") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0dlszlshlxbmmfxj5hlwgv3r22x0y1af45gn1vd198nvvs3pnvfs")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/testify")) +; (home-page "https://github.com/stretchr/testify") +; (synopsis "Testify - Thou Shalt Write Tests") +; (description +; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190422165155-953cdadca894") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0gkha4whk8xkcv3isigbs250akag99isxnd3v9xmy0kl3g88hxy1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-sirupsen-logrus-1.4.2 +; (package +; (name "go-github-com-sirupsen-logrus") +; (version "1.4.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/sirupsen/logrus") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "087k2lxrr9p9dh68yw71d05h5g9p5v26zbwd6j7lghinjfaw334x")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/sirupsen/logrus")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894" +; ,go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894) +; ("go-github-com-stretchr-testify-1.2.2" +; ,go-github-com-stretchr-testify-1.2.2) +; ("go-github-com-stretchr-objx-0.1.1" +; ,go-github-com-stretchr-objx-0.1.1) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.1" +; ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.1) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://github.com/sirupsen/logrus") +; (synopsis "Logrus") +; (description +; "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. +;") +; (license license:expat))) +; +;(define-public go-github-com-adigunhammedolalekan-registry-auth-0.0.0-20200730122110-8cde180a3a60 +; (package +; (name "go-github-com-adigunhammedolalekan-registry-auth") +; (version "0.0.0-20200730122110-8cde180a3a60") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/adigunhammedolalekan/registry-auth") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0855a5c0ifi6q2ghb6gax0kwwra5j7pd2lplq4wp8r83dnv4vwj0")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "github.com/adigunhammedolalekan/registry-auth")) +; (propagated-inputs +; `(("go-github-com-sirupsen-logrus-1.4.2" +; ,go-github-com-sirupsen-logrus-1.4.2) +; ("go-github-com-gorilla-mux-1.7.4" ,go-github-com-gorilla-mux-1.7.4) +; ("go-github-com-docker-libtrust-0.0.0-20160708172513-aabc10ec26b7" +; ,go-github-com-docker-libtrust-0.0.0-20160708172513-aabc10ec26b7) +; ("go-github-com-docker-distribution-2.7.1+incompatible" +; ,go-github-com-docker-distribution-2.7.1+incompatible))) +; (home-page "https://github.com/adigunhammedolalekan/registry-auth") +; (synopsis "registry-auth") +; (description +; "a package to implements docker registry token authentication server as described here [https://github.com/docker/distribution/blob/1b9ab303a477ded9bdd3fc97e9119fa8f9e58fca/docs/spec/auth/index.md]") +; (license license:expat))) +; +;(define-public go-github-com-alexflint-go-filemutex-0.0.0-20171028004239-d358565f3c3f +; (package +; (name "go-github-com-alexflint-go-filemutex") +; (version "0.0.0-20171028004239-d358565f3c3f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/alexflint/go-filemutex") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19fzbm0x8821awsmqj9ig49dxxkd72p1yfqbijmdwwszvw2r0ggz")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/alexflint/go-filemutex")) +; (home-page "https://github.com/alexflint/go-filemutex") +; (synopsis "FileMutex") +; (description +; "FileMutex is similar to @code{sync.RWMutex}, but also synchronizes across processes. +;On Linux, OSX, and other POSIX systems it uses the flock system call. On windows +;it uses the LockFileEx and UnlockFileEx system calls.") +; (license license:expat))) +; +;(define-public go-github-com-stretchr-testify-1.3.0 +; (package +; (name "go-github-com-stretchr-testify") +; (version "1.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/testify") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0wjchp2c8xbgcbbq32w3kvblk6q6yn533g78nxl6iskq6y95lxsy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/testify")) +; (propagated-inputs +; `(("go-github-com-stretchr-objx-0.1.0" +; ,go-github-com-stretchr-objx-0.1.0) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.0" +; ,go-github-com-davecgh-go-spew-1.1.0))) +; (home-page "https://github.com/stretchr/testify") +; (synopsis "Testify - Thou Shalt Write Tests") +; (description +; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +;") +; (license license:expat))) +; +;(define-public go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0 +; (package +; (name "go-github-com-tj-assert") +; (version "0.0.0-20171129193455-018094318fb0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/tj/assert") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "15ika7izp5hkd10dm30apwfvpm0d1yl2rnxs6896q0svz9zvi2z3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/tj/assert")) +; (home-page "https://github.com/tj/assert") +; (synopsis "assert") +; (description +; "Package assert implements the same assertions as the `assert` package but +;stops test execution when a test fails. +;") +; (license license:expat))) +; +;(define-public go-github-com-apex-logs-1.0.0 +; (package +; (name "go-github-com-apex-logs") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/apex/logs") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1kysjp3s8718p02ngpr60gnjjspv0a69biksfjqa1540svrbi850")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/apex/logs")) +; (propagated-inputs +; `(("go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0" +; ,go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0) +; ("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0))) +; (home-page "https://github.com/apex/logs") +; (synopsis "Example") +; (description "Go client for @url{https://apex.sh/logs/,Apex Logs}.") +; (license license:expat))) +; +;(define-public go-github-com-aphistic-golf-0.0.0-20180712155816-02c07f170c5a +; (package +; (name "go-github-com-aphistic-golf") +; (version "0.0.0-20180712155816-02c07f170c5a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/aphistic/golf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1qixab9bb29wqbr4nc5j3g25hq1j7am93f181rkj7a4qacncx763")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/aphistic/golf")) +; (home-page "https://github.com/aphistic/golf") +; (synopsis "golf") +; (description +; "This package provides logging capabilities using the GELF (@url{https://www.graylog.org/resources/gelf-2/,https://www.graylog.org/resources/gelf-2/}) log format +;") +; (license license:expat))) +; +;(define-public go-github-com-mattn-go-isatty-0.0.5 +; (package +; (name "go-github-com-mattn-go-isatty") +; (version "0.0.5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mattn/go-isatty") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "114d5xm8rfxplzd7nxz97gfngb4bhqy102szl084d1afcxsvm4aa")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mattn/go-isatty")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223" +; ,go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223))) +; (home-page "https://github.com/mattn/go-isatty") +; (synopsis "go-isatty") +; (description "Package isatty implements interface to isatty +;") +; (license license:expat))) +; +;(define-public go-github-com-mattn-go-colorable-0.1.1 +; (package +; (name "go-github-com-mattn-go-colorable") +; (version "0.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mattn/go-colorable") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0l640974j804c1yyjfgyxqlsivz0yrzmbql4mhcw2azryigkp08p")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mattn/go-colorable")) +; (propagated-inputs +; `(("go-github-com-mattn-go-isatty-0.0.5" +; ,go-github-com-mattn-go-isatty-0.0.5))) +; (home-page "https://github.com/mattn/go-colorable") +; (synopsis "go-colorable") +; (description "Colorable writer for windows.") +; (license license:expat))) +; +;(define-public go-github-com-mgutz-ansi-0.0.0-20170206155736-9520e82c474b +; (package +; (name "go-github-com-mgutz-ansi") +; (version "0.0.0-20170206155736-9520e82c474b") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mgutz/ansi") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "00bz22314j26736w1f0q4jy9d9dfaml17vn890n5zqy3cmvmww1j")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mgutz/ansi")) +; (home-page "https://github.com/mgutz/ansi") +; (synopsis "ansi") +; (description +; "Package ansi is a small, fast library to create ANSI colored strings and codes. +;") +; (license license:expat))) +; +;(define-public go-github-com-fsnotify-fsnotify-1.4.7 +; (package +; (name "go-github-com-fsnotify-fsnotify") +; (version "1.4.7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/fsnotify/fsnotify") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/fsnotify/fsnotify")) +; (home-page "https://github.com/fsnotify/fsnotify") +; (synopsis "File system notifications for Go") +; (description +; "Package fsnotify provides a platform-independent interface for file system notifications. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.2.0 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0kf4b59rcbb1cchfny2dm9jyznp8ri2hsb14n8iak1q8986xa0ab")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-github-com-hpcloud-tail-1.0.0 +; (package +; (name "go-github-com-hpcloud-tail") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hpcloud/tail") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1njpzc0pi1acg5zx9y6vj9xi6ksbsc5d387rd6904hy6rh2m6kn0")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hpcloud/tail")) +; (home-page "https://github.com/hpcloud/tail") +; (synopsis "Go package for tail-ing files") +; (description +; "This package provides a Go package striving to emulate the features of the BSD @code{tail} program.") +; (license license:expat))) +; +;(define-public go-github-com-onsi-ginkgo-1.6.0 +; (package +; (name "go-github-com-onsi-ginkgo") +; (version "1.6.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/onsi/ginkgo") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0x0gc89vgq38xhgmi2h22bhr73cf2gmk42g89nz89k8dgg9hhr25")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/onsi/ginkgo")) +; (home-page "https://github.com/onsi/ginkgo") +; (synopsis "Ginkgo 2.0 Release Candidate is available!") +; (description "Ginkgo is a BDD-style testing framework for Golang +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20180906233101-161cd47e91fd") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0254ld010iijygbzykib2vags1dc0wlmcmhgh4jl8iny159lhbcv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f +; (package +; (name "go-golang-org-x-sync") +; (version "0.0.0-20180314180146-1d60e4601c6f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sync") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "046jlanz2lkxq1r57x9bl6s4cvfqaic6p2xybsj8mq1120jv4rs6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sync")) +; (home-page "https://golang.org/x/sync") +; (synopsis "Go Sync") +; (description +; "This repository provides Go concurrency primitives in addition to the +;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20180909124046-d0be0721c37e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "081wyvfnlf842dqg03raxfz6lldlxpmyh1prix9lmrrm65arxb12")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-gopkg-in-fsnotify-v1-1.4.7 +; (package +; (name "go-gopkg-in-fsnotify-v1") +; (version "1.4.7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/fsnotify.v1") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path +; "gopkg.in/fsnotify.v1" +; #:unpack-path +; "gopkg.in/fsnotify.v1")) +; (home-page "https://gopkg.in/fsnotify.v1") +; (synopsis "File system notifications for Go") +; (description +; "Package fsnotify provides a platform-independent interface for file system notifications. +;") +; (license license:bsd-3))) +; +;(define-public go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7 +; (package +; (name "go-gopkg-in-tomb-v1") +; (version "1.0.0-20141024135613-dd632973f1e7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/tomb.v1") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1lqmq1ag7s4b3gc3ddvr792c5xb5k6sfn0cchr3i2s7f1c231zjv")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/tomb.v1" #:unpack-path "gopkg.in/tomb.v1")) +; (home-page "https://gopkg.in/tomb.v1") +; (synopsis "Installation and usage") +; (description +; "The tomb package offers a conventional API for clean goroutine termination. +;") +; (license license:bsd-3))) +; +;(define-public go-gopkg-in-yaml-v2-2.2.1 +; (package +; (name "go-gopkg-in-yaml-v2") +; (version "2.2.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/yaml.v2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0dwjrs2lp2gdlscs7bsrmyc5yf6mm4fvgw71bzr9mv2qrd2q73s1")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" +; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) +; (home-page "https://gopkg.in/yaml.v2") +; (synopsis "YAML support for the Go language") +; (description "Package yaml implements YAML support for the Go language. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-onsi-gomega-1.5.0 +; (package +; (name "go-github-com-onsi-gomega") +; (version "1.5.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/onsi/gomega") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1n7i4hksdgv410m43v2sw14bl5vy59dkp6nlw5l76nibbh37syr9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/onsi/gomega")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1) +; ("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" +; ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) +; ("go-gopkg-in-fsnotify-v1-1.4.7" ,go-gopkg-in-fsnotify-v1-1.4.7) +; ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e" +; ,go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e) +; ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" +; ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) +; ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" +; ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) +; ("go-github-com-onsi-ginkgo-1.6.0" ,go-github-com-onsi-ginkgo-1.6.0) +; ("go-github-com-hpcloud-tail-1.0.0" ,go-github-com-hpcloud-tail-1.0.0) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0) +; ("go-github-com-fsnotify-fsnotify-1.4.7" +; ,go-github-com-fsnotify-fsnotify-1.4.7))) +; (home-page "https://github.com/onsi/gomega") +; (synopsis ": a BDD Testing Framework for Golang") +; (description +; "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library. +;") +; (license license:expat))) +; +;(define-public go-github-com-sergi-go-diff-1.0.0 +; (package +; (name "go-github-com-sergi-go-diff") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/sergi/go-diff") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0swiazj8wphs2zmk1qgq75xza6m19snif94h2m6fi8dqkwqdl7c7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/sergi/go-diff")) +; (home-page "https://github.com/sergi/go-diff") +; (synopsis "go-diff") +; (description +; "go-diff offers algorithms to perform operations required for synchronizing plain text:") +; (license license:expat))) +; +;(define-public go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190404232315-eb5bcb51f2a3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "17k4g8krxbl84gzcs275b7gsh66dzm15fdxivjnx9xz8q84l4kby")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190412213103-97732733099d +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190412213103-97732733099d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "118hkp01i4z1f5h6hcjm0ff2ngqhrzj1f7731n0kw8dr6hvbx0sw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20190426145343-a29dc8fdc734 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20190426145343-a29dc8fdc734") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "07f0jj4haqs0ywc1akk1qjwn5msl2j0pry1rxjkkbfcq4r6ihc1p")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" +; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) +; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" +; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-github-com-aphistic-sweet-0.2.0 +; (package +; (name "go-github-com-aphistic-sweet") +; (version "0.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/aphistic/sweet") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1bb4qagfxf6byqn2yx0vq24xfvisz3ah4w6bvqclc8cklvfngw43")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/aphistic/sweet")) +; (propagated-inputs +; `(("go-golang-org-x-crypto-0.0.0-20190426145343-a29dc8fdc734" +; ,go-golang-org-x-crypto-0.0.0-20190426145343-a29dc8fdc734) +; ("go-github-com-sergi-go-diff-1.0.0" +; ,go-github-com-sergi-go-diff-1.0.0) +; ("go-github-com-onsi-gomega-1.5.0" ,go-github-com-onsi-gomega-1.5.0) +; ("go-github-com-mgutz-ansi-0.0.0-20170206155736-9520e82c474b" +; ,go-github-com-mgutz-ansi-0.0.0-20170206155736-9520e82c474b) +; ("go-github-com-mattn-go-colorable-0.1.1" +; ,go-github-com-mattn-go-colorable-0.1.1))) +; (home-page "https://github.com/aphistic/sweet") +; (synopsis "sweet") +; (description +; "Sweet is a pluggable test runner capable of hooking into standard Go tests. It attempts to provide access to the standard Go test tool as close as possible while adding support for test suites and plugins that can hook into test results to add additional functionality.") +; (license license:expat))) +; +;(define-public go-github-com-jmespath-go-jmespath-0.0.0-20180206201540-c2b33e8439af +; (package +; (name "go-github-com-jmespath-go-jmespath") +; (version "0.0.0-20180206201540-c2b33e8439af") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/jmespath/go-jmespath") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1r6w7ydx8ydryxk3sfhzsk8m6f1nsik9jg3i1zhi69v4kfl4d5cz")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/jmespath/go-jmespath")) +; (home-page "https://github.com/jmespath/go-jmespath") +; (synopsis "go-jmespath - A JMESPath implementation in Go") +; (description +; "go-jmespath is a GO implementation of JMESPath, +;which is a query language for JSON. It will take a JSON +;document and transform it into another JSON document +;through a JMESPath expression.") +; (license license:asl2.0))) +; +;(define-public go-github-com-aws-aws-sdk-go-1.20.6 +; (package +; (name "go-github-com-aws-aws-sdk-go") +; (version "1.20.6") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/aws/aws-sdk-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "016vy5s9finyfgh08j7rvn2pnwymdgj2ydr59w57pysnri87mdwx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/aws/aws-sdk-go")) +; (propagated-inputs +; `(("go-github-com-jmespath-go-jmespath-0.0.0-20180206201540-c2b33e8439af" +; ,go-github-com-jmespath-go-jmespath-0.0.0-20180206201540-c2b33e8439af))) +; (home-page "https://github.com/aws/aws-sdk-go") +; (synopsis "AWS SDK for Go") +; (description +; "Package sdk is the official AWS SDK for the Go programming language. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-aybabtme-rgbterm-0.0.0-20170906152045-cc83f3b3ce59 +; (package +; (name "go-github-com-aybabtme-rgbterm") +; (version "0.0.0-20170906152045-cc83f3b3ce59") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/aybabtme/rgbterm") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0wvmxvjn64968ikvnxrflb1x8rlcwzpfl53fzbxff2axbx9lq50q")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/aybabtme/rgbterm")) +; (home-page "https://github.com/aybabtme/rgbterm") +; (synopsis "RGB terminal") +; (description +; "Package rgbterm colorizes bytes and strings using RGB colors, for a +;full range of pretty terminal strings. +;") +; (license #f))) +; +;(define-public go-github-com-fatih-color-1.7.0 +; (package +; (name "go-github-com-fatih-color") +; (version "1.7.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/fatih/color") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0v8msvg38r8d1iiq2i5r4xyfx0invhc941kjrsg5gzwvagv55inv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/fatih/color")) +; (home-page "https://github.com/fatih/color") +; (synopsis "color") +; (description +; "Package color is an ANSI color package to output colorized or SGR defined +;output to the standard output. The API can be used in several way, pick one +;that suits you. +;") +; (license license:expat))) +; +;(define-public go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515 +; (package +; (name "go-github-com-kr-logfmt") +; (version "0.0.0-20140226030751-b84e30acd515") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kr/logfmt") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "02ldzxgznrfdzvghfraslhgp19la1fczcbzh7wm2zdc6lmpd1qq9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kr/logfmt")) +; (home-page "https://github.com/kr/logfmt") +; (synopsis #f) +; (description +; "Package implements the decoding of logfmt key-value pairs. +;") +; (license license:expat))) +; +;(define-public go-github-com-go-logfmt-logfmt-0.4.0 +; (package +; (name "go-github-com-go-logfmt-logfmt") +; (version "0.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/go-logfmt/logfmt") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "06smxc112xmixz78nyvk3b2hmc7wasf2sl5vxj1xz62kqcq9lzm9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/go-logfmt/logfmt")) +; (propagated-inputs +; `(("go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515" +; ,go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515))) +; (home-page "https://github.com/go-logfmt/logfmt") +; (synopsis "logfmt") +; (description +; "Package logfmt implements utilities to marshal and unmarshal data in the +;logfmt format. The logfmt format records key/value pairs in a way that +;balances readability for humans and simplicity of computer parsing. It is +;most commonly used as a more human friendly alternative to JSON for +;structured logging. +;") +; (license license:expat))) +; +;(define-public go-github-com-golang-protobuf-1.3.1 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.3.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "15am4s4646qy6iv0g3kkqq52rzykqjhm4bf08dk0fy2r58knpsyl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-github-com-google-uuid-1.1.1 +; (package +; (name "go-github-com-google-uuid") +; (version "1.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/uuid") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0hfxcf9frkb57k6q0rdkrmnfs78ms21r1qfk9fhlqga2yh5xg8zb")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/uuid")) +; (home-page "https://github.com/google/uuid") +; (synopsis "uuid") +; (description "Package uuid generates and inspects UUIDs. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-jpillora-backoff-0.0.0-20180909062703-3050d21c67d7 +; (package +; (name "go-github-com-jpillora-backoff") +; (version "0.0.0-20180909062703-3050d21c67d7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/jpillora/backoff") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1nxapdx9xg5gwiscfhq7m0w14hj4gaxb4avmgf1mx9zd3jnw9jxv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/jpillora/backoff")) +; (home-page "https://github.com/jpillora/backoff") +; (synopsis "Backoff") +; (description +; "Package backoff provides an exponential-backoff implementation. +;") +; (license license:expat))) +; +;(define-public go-github-com-kr-pty-1.1.1 +; (package +; (name "go-github-com-kr-pty") +; (version "1.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kr/pty") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0383f0mb9kqjvncqrfpidsf8y6ns5zlrc91c6a74xpyxjwvzl2y6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kr/pty")) +; (home-page "https://github.com/kr/pty") +; (synopsis "pty") +; (description +; "Package pty is a wrapper for github.com/creack/pty, which provides +;functions for working with Unix terminals. +;") +; (license license:expat))) +; +;(define-public go-github-com-kr-text-0.1.0 +; (package +; (name "go-github-com-kr-text") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kr/text") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1gm5bsl01apvc84bw06hasawyqm4q84vx1pm32wr9jnd7a8vjgj1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kr/text")) +; (propagated-inputs +; `(("go-github-com-kr-pty-1.1.1" ,go-github-com-kr-pty-1.1.1))) +; (home-page "https://github.com/kr/text") +; (synopsis #f) +; (description +; "Package text provides rudimentary functions for manipulating text in +;paragraphs. +;") +; (license license:expat))) +; +;(define-public go-github-com-kr-pretty-0.2.0 +; (package +; (name "go-github-com-kr-pretty") +; (version "0.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kr/pretty") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ywbfzz1h3a3qd8rpkiqwi1dm4w8ls9ijb4x1b7567grns9f0vnp")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kr/pretty")) +; (propagated-inputs +; `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) +; (home-page "https://github.com/kr/pretty") +; (synopsis #f) +; (description +; "Package pretty provides pretty-printing for Go values. This is +;useful during debugging, to avoid wrapping long output lines in +;the terminal. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190222072716-a9d3bda3a223") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1w45zc13xrjzl19s1sx74r5mg3lf2z2nm13wygcdq5r5pyjlhdz9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-mattn-go-isatty-0.0.8 +; (package +; (name "go-github-com-mattn-go-isatty") +; (version "0.0.8") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mattn/go-isatty") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0rqfh1rj6f5wm8p2ky7inm8g10152p7w6n2cli17kf9gad797i8h")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mattn/go-isatty")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223" +; ,go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223))) +; (home-page "https://github.com/mattn/go-isatty") +; (synopsis "go-isatty") +; (description "Package isatty implements interface to isatty +;") +; (license license:expat))) +; +;(define-public go-github-com-mattn-go-colorable-0.1.2 +; (package +; (name "go-github-com-mattn-go-colorable") +; (version "0.1.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mattn/go-colorable") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0512jm3wmzkkn7d99x9wflyqf48n5ri3npy1fqkq6l6adc5mni3n")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mattn/go-colorable")) +; (propagated-inputs +; `(("go-github-com-mattn-go-isatty-0.0.8" +; ,go-github-com-mattn-go-isatty-0.0.8))) +; (home-page "https://github.com/mattn/go-colorable") +; (synopsis "go-colorable") +; (description "Colorable writer for windows.") +; (license license:expat))) +; +;(define-public go-github-com-pkg-errors-0.8.1 +; (package +; (name "go-github-com-pkg-errors") +; (version "0.8.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/pkg/errors") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0g5qcb4d4fd96midz0zdk8b9kz8xkzwfa8kr1cliqbg8sxsy5vd1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/pkg/errors")) +; (home-page "https://github.com/pkg/errors") +; (synopsis "errors") +; (description "Package errors provides simple error handling primitives. +;") +; (license license:bsd-2))) +; +;(define-public go-github-com-rogpeppe-fastuuid-1.1.0 +; (package +; (name "go-github-com-rogpeppe-fastuuid") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/rogpeppe/fastuuid") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1jlif5pxyz3md02ij93kd2y2j1zz0ajc9k8azvn83vv6l3r5c1zg")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/rogpeppe/fastuuid")) +; (home-page "https://github.com/rogpeppe/fastuuid") +; (synopsis "fastuuid") +; (description +; "Package fastuuid provides fast UUID generation of 192 bit +;universally unique identifiers. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-smartystreets-go-aws-auth-0.0.0-20180515143844-0c1422d1fdb9 +; (package +; (name "go-github-com-smartystreets-go-aws-auth") +; (version "0.0.0-20180515143844-0c1422d1fdb9") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/smartystreets-archives/go-aws-auth") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0krfdpgn3gfii1z9fi8ydfw0wwfqyvp6w3rji7w92m528zkjl93d")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/smartystreets/go-aws-auth")) +; (home-page "https://github.com/smartystreets/go-aws-auth") +; (synopsis "go-aws-auth") +; (description +; "Package awsauth implements AWS request signing using Signed Signature Version 2, +;Signed Signature Version 3, and Signed Signature Version 4. Supports S3 and STS. +;") +; (license license:expat))) +; +;(define-public go-github-com-smartystreets-assertions-1.0.0 +; (package +; (name "go-github-com-smartystreets-assertions") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/smartystreets/assertions") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1188hs39zvil41sdnxs83h1hp319lfyc5n2rvd1xnhz1dh5qjjh4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/smartystreets/assertions")) +; (home-page "https://github.com/smartystreets/assertions") +; (synopsis #f) +; (description +; "Package assertions contains the implementations for all assertions which +;are referenced in goconvey's `convey` package +;(github.com/smartystreets/goconvey/convey) and gunit (github.com/smartystreets/gunit) +;for use with the So(...) method. +;They can also be used in traditional Go test functions and even in +;applications. +;") +; (license license:expat))) +; +;(define-public go-github-com-smartystreets-gunit-1.0.0 +; (package +; (name "go-github-com-smartystreets-gunit") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/smartystreets/gunit") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "11d09rl5qqpj36a311pjj8w5jkj83d5b8gdcsx8f1zn4j924sm5d")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/smartystreets/gunit")) +; (propagated-inputs +; `(("go-github-com-smartystreets-assertions-1.0.0" +; ,go-github-com-smartystreets-assertions-1.0.0))) +; (home-page "https://github.com/smartystreets/gunit") +; (synopsis "gunit") +; (description +; "Package gunit provides \"testing\" package hooks and convenience +;functions for writing tests in an xUnit style. +;See the README file and the examples folder for examples. +;") +; (license license:expat))) +; +;(define-public go-github-com-davecgh-go-spew-1.1.1 +; (package +; (name "go-github-com-davecgh-go-spew") +; (version "1.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/davecgh/go-spew") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/davecgh/go-spew")) +; (home-page "https://github.com/davecgh/go-spew") +; (synopsis "go-spew") +; (description +; "Go-spew implements a deep pretty printer for Go data structures to aid in +;debugging. A comprehensive suite of tests with 100% test coverage is provided +;to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage +;report. Go-spew is licensed under the liberal ISC license, so it may be used in +;open source or commercial projects.") +; (license license:isc))) +; +;(define-public go-github-com-davecgh-go-spew-1.1.0 +; (package +; (name "go-github-com-davecgh-go-spew") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/davecgh/go-spew") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/davecgh/go-spew")) +; (home-page "https://github.com/davecgh/go-spew") +; (synopsis "go-spew") +; (description +; "Go-spew implements a deep pretty printer for Go data structures to aid in +;debugging. A comprehensive suite of tests with 100% test coverage is provided +;to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage +;report. Go-spew is licensed under the liberal ISC license, so it may be used in +;open source or commercial projects.") +; (license license:isc))) +; +;(define-public go-github-com-pmezard-go-difflib-1.0.0 +; (package +; (name "go-github-com-pmezard-go-difflib") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/pmezard/go-difflib") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/pmezard/go-difflib")) +; (home-page "https://github.com/pmezard/go-difflib") +; (synopsis "go-difflib") +; (description +; "Go-difflib is a partial port of python 3 difflib package. Its main goal +;was to make unified and context diff available in pure Go, mostly for +;testing purposes.") +; (license license:bsd-3))) +; +;(define-public go-github-com-stretchr-objx-0.1.0 +; (package +; (name "go-github-com-stretchr-objx") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/objx") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/objx")) +; (home-page "https://github.com/stretchr/objx") +; (synopsis "Objx") +; (description +; "Objx - Go package for dealing with maps, slices, JSON and other data. +;") +; (license license:expat))) +; +;(define-public go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c +; (package +; (name "go-gopkg-in-yaml-v3") +; (version "3.0.0-20200313102051-9f266ea9e77c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/yaml.v3") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1bbai3lzb50m0x2vwsdbagrbhvfylj9k1m32hgbqwldqx4p9ay35")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" +; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) +; (home-page "https://gopkg.in/yaml.v3") +; (synopsis "YAML support for the Go language") +; (description "Package yaml implements YAML support for the Go language. +;") +; (license #f))) +; +;(define-public go-github-com-stretchr-testify-1.6.1 +; (package +; (name "go-github-com-stretchr-testify") +; (version "1.6.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/testify") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1yhiqqzjvi63pf01rgzx68gqkkvjx03fvl5wk30br5l6s81s090l")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/testify")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" +; ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) +; ("go-github-com-stretchr-objx-0.1.0" +; ,go-github-com-stretchr-objx-0.1.0) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.0" +; ,go-github-com-davecgh-go-spew-1.1.0))) +; (home-page "https://github.com/stretchr/testify") +; (synopsis "Testify - Thou Shalt Write Tests") +; (description +; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +;") +; (license license:expat))) +; +;(define-public go-gopkg-in-yaml-v3-3.0.0-20200605160147-a5ece683394c +; (package +; (name "go-gopkg-in-yaml-v3") +; (version "3.0.0-20200605160147-a5ece683394c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/yaml.v3") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "03cm7c3p5fh0aa8vnxv5010dgqqr268ivb480ix1salxx3396w68")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" +; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) +; (home-page "https://gopkg.in/yaml.v3") +; (synopsis "YAML support for the Go language") +; (description "Package yaml implements YAML support for the Go language. +;") +; (license #f))) +; +;(define-public go-github-com-tj-assert-0.0.3 +; (package +; (name "go-github-com-tj-assert") +; (version "0.0.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/tj/assert") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1j5swk3fjq1h5fpqkipddz2ccnbidr7qrpm5dpdaflg9q5jnc673")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/tj/assert")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v3-3.0.0-20200605160147-a5ece683394c" +; ,go-gopkg-in-yaml-v3-3.0.0-20200605160147-a5ece683394c) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://github.com/tj/assert") +; (synopsis "assert") +; (description +; "Package assert implements the same assertions as the `assert` package but +;stops test execution when a test fails. +;") +; (license license:expat))) +; +;(define-public go-github-com-tj-go-buffer-1.1.0 +; (package +; (name "go-github-com-tj-go-buffer") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/tj/go-buffer") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1qdxpa069pjjbzh217aadpzz1aq1n6h32lhp60yjcpi7hr4q8fxx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/tj/go-buffer")) +; (propagated-inputs +; `(("go-github-com-tj-assert-0.0.3" ,go-github-com-tj-assert-0.0.3))) +; (home-page "https://github.com/tj/go-buffer") +; (synopsis "Buffer") +; (description +; "Package buffer provides a generic buffer or batching mechanism for flushing +;entries at a given size or interval, useful for cases such as batching log +;events. +;") +; (license license:expat))) +; +;(define-public go-github-com-tj-go-elastic-0.0.0-20171221160941-36157cbbebc2 +; (package +; (name "go-github-com-tj-go-elastic") +; (version "0.0.0-20171221160941-36157cbbebc2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/tj/go-elastic") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1r94vc4hbfvqvjz74n4mvsw4dy3vbyzlivb90kyn8vn76a4wqk69")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/tj/go-elastic")) +; (home-page "https://github.com/tj/go-elastic") +; (synopsis "go-elastic") +; (description +; "Package elastic provides an Elasticsearch client with AWS sigv4 support. +;") +; (license license:expat))) +; +;(define-public go-github-com-tj-go-kinesis-0.0.0-20171128231115-08b17f58cb1b +; (package +; (name "go-github-com-tj-go-kinesis") +; (version "0.0.0-20171128231115-08b17f58cb1b") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/tj/go-kinesis") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "108c6p5j6rhhc2cnc2v5368yfsw73y6lzlvz02vpvvjph8rhmld4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/tj/go-kinesis")) +; (home-page "https://github.com/tj/go-kinesis") +; (synopsis "go-kinesis") +; (description +; "Package kinesis implements a batch producer built on top of the official AWS SDK. +;") +; (license license:expat))) +; +;(define-public go-github-com-tj-go-spin-1.1.0 +; (package +; (name "go-github-com-tj-go-spin") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/tj/go-spin") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "11xr67991m5pwsy1dira3iwd0sr55vmn1cyjwmlqziw4bwpym64s")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/tj/go-spin")) +; (home-page "https://github.com/tj/go-spin") +; (synopsis #f) +; (description #f) +; (license #f))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20190308221718-c2843e01d9a2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190215142949-d0b11bdaac8a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-text-0.3.0 +; (package +; (name "go-golang-org-x-text") +; (version "0.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/text") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/text")) +; (home-page "https://golang.org/x/text") +; (synopsis "Go Text") +; (description +; "text is a repository of text-related packages related to internationalization +;(i18n) and localization (l10n), such as character encodings, text +;transformations, and locale-specific text handling. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190620200207-3b0461eec859") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0l00c8l0a8xnv6qdpwfzxxsr58jggacgzdrwiprrfx2xqm37b6d5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20180917221912-90fa682c2a6e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-text-0.3.2 +; (package +; (name "go-golang-org-x-text") +; (version "0.3.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/text") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0flv9idw0jm5nm8lx25xqanbkqgfiym6619w575p7nrdh0riqwqh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/text")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" +; ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) +; (home-page "https://golang.org/x/text") +; (synopsis "Go Text") +; (description +; "text is a repository of text-related packages related to internationalization +;(i18n) and localization (l10n), such as character encodings, text +;transformations, and locale-specific text handling. +;") +; (license license:bsd-3))) +; +;(define-public go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15 +; (package +; (name "go-gopkg-in-check-v1") +; (version "1.0.0-20190902080502-41f04d3bba15") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/check.v1") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0vfk9czmlxmp6wndq8k17rhnjxal764mxfhrccza7nwlia760pjy")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) +; (home-page "https://gopkg.in/check.v1") +; (synopsis "Instructions") +; (description +; "Package check is a rich testing extension for Go's testing package. +;") +; (license license:bsd-2))) +; +;(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 +; (package +; (name "go-gopkg-in-check-v1") +; (version "0.0.0-20161208181325-20d25e280405") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/check.v1") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) +; (home-page "https://gopkg.in/check.v1") +; (synopsis "Instructions") +; (description +; "Package check is a rich testing extension for Go's testing package. +;") +; (license license:bsd-2))) +; +;(define-public go-gopkg-in-yaml-v2-2.2.2 +; (package +; (name "go-gopkg-in-yaml-v2") +; (version "2.2.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/yaml.v2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "01wj12jzsdqlnidpyjssmj0r4yavlqy7dwrg7adqd8dicjc4ncsa")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" +; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) +; (home-page "https://gopkg.in/yaml.v2") +; (synopsis "YAML support for the Go language") +; (description "Package yaml implements YAML support for the Go language. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-apex-log-1.9.0 +; (package +; (name "go-github-com-apex-log") +; (version "1.9.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/apex/log") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ibqkncnb8wcwilg2kyfyl5541g69rg551iy6m61q6iwdn5vfhi2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/apex/log")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) +; ("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" +; ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) +; ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) +; ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" +; ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) +; ("go-github-com-tj-go-spin-1.1.0" ,go-github-com-tj-go-spin-1.1.0) +; ("go-github-com-tj-go-kinesis-0.0.0-20171128231115-08b17f58cb1b" +; ,go-github-com-tj-go-kinesis-0.0.0-20171128231115-08b17f58cb1b) +; ("go-github-com-tj-go-elastic-0.0.0-20171221160941-36157cbbebc2" +; ,go-github-com-tj-go-elastic-0.0.0-20171221160941-36157cbbebc2) +; ("go-github-com-tj-go-buffer-1.1.0" ,go-github-com-tj-go-buffer-1.1.0) +; ("go-github-com-tj-assert-0.0.3" ,go-github-com-tj-assert-0.0.3) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-smartystreets-gunit-1.0.0" +; ,go-github-com-smartystreets-gunit-1.0.0) +; ("go-github-com-smartystreets-go-aws-auth-0.0.0-20180515143844-0c1422d1fdb9" +; ,go-github-com-smartystreets-go-aws-auth-0.0.0-20180515143844-0c1422d1fdb9) +; ("go-github-com-rogpeppe-fastuuid-1.1.0" +; ,go-github-com-rogpeppe-fastuuid-1.1.0) +; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) +; ("go-github-com-mattn-go-colorable-0.1.2" +; ,go-github-com-mattn-go-colorable-0.1.2) +; ("go-github-com-kr-pretty-0.2.0" ,go-github-com-kr-pretty-0.2.0) +; ("go-github-com-jpillora-backoff-0.0.0-20180909062703-3050d21c67d7" +; ,go-github-com-jpillora-backoff-0.0.0-20180909062703-3050d21c67d7) +; ("go-github-com-google-uuid-1.1.1" ,go-github-com-google-uuid-1.1.1) +; ("go-github-com-golang-protobuf-1.3.1" +; ,go-github-com-golang-protobuf-1.3.1) +; ("go-github-com-go-logfmt-logfmt-0.4.0" +; ,go-github-com-go-logfmt-logfmt-0.4.0) +; ("go-github-com-fatih-color-1.7.0" ,go-github-com-fatih-color-1.7.0) +; ("go-github-com-aybabtme-rgbterm-0.0.0-20170906152045-cc83f3b3ce59" +; ,go-github-com-aybabtme-rgbterm-0.0.0-20170906152045-cc83f3b3ce59) +; ("go-github-com-aws-aws-sdk-go-1.20.6" +; ,go-github-com-aws-aws-sdk-go-1.20.6) +; ("go-github-com-aphistic-sweet-0.2.0" +; ,go-github-com-aphistic-sweet-0.2.0) +; ("go-github-com-aphistic-golf-0.0.0-20180712155816-02c07f170c5a" +; ,go-github-com-aphistic-golf-0.0.0-20180712155816-02c07f170c5a) +; ("go-github-com-apex-logs-1.0.0" ,go-github-com-apex-logs-1.0.0))) +; (home-page "https://github.com/apex/log") +; (synopsis "Handlers") +; (description +; "Package log implements a simple structured logging API designed with few assumptions. Designed for +;centralized logging solutions such as Kinesis which require encoding and decoding before fanning-out +;to handlers. +;") +; (license license:expat))) +; +;(define-public go-github-com-blang-semver-v4-4.0.0 +; (package +; (name "go-github-com-blang-semver-v4") +; (version "4.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/blang/semver") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "14h9ys4n4kx9cbj42lkdf4i5k3nkll6sd62jcvl7cs565v6fiknz")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/blang/semver/v4")) +; (home-page "https://github.com/blang/semver") +; (synopsis #f) +; (description #f) +; (license license:expat))) +; +;(define-public go-github-com-buger-jsonparser-1.1.1 +; (package +; (name "go-github-com-buger-jsonparser") +; (version "1.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/buger/jsonparser") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0qv2lsh2biwxn927941gqiv5pqg7n4v58j0i536pjp7pr17pq7dp")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/buger/jsonparser")) +; (home-page "https://github.com/buger/jsonparser") +; (synopsis +; "Alternative JSON parser for Go (10x times faster standard library)") +; (description +; "It does not require you to know the structure of the payload (eg. create structs), and allows accessing fields by providing the path to them. It is up to @strong{10 times faster} than standard @code{encoding/json} package (depending on payload size and usage), @strong{allocates no memory}. See benchmarks below.") +; (license license:expat))) +; +;(define-public go-github-com-bugsnag-bugsnag-go-1.5.1 +; (package +; (name "go-github-com-bugsnag-bugsnag-go") +; (version "1.5.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/bugsnag/bugsnag-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "133yi7x5ygwg7iabl246nj2i3lqkkh0pmhpcw4maq2g0b8d7np54")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/bugsnag/bugsnag-go")) +; (home-page "https://github.com/bugsnag/bugsnag-go") +; (synopsis "Bugsnag error reporter for Go") +; (description +; "Package bugsnag captures errors in real-time and reports them to Bugsnag (@url{http://bugsnag.com,http://bugsnag.com}). +;") +; (license license:expat))) +; +;(define-public go-github-com-bugsnag-panicwrap-1.2.0 +; (package +; (name "go-github-com-bugsnag-panicwrap") +; (version "1.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/bugsnag/panicwrap") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1dzsnpdy4b16h8gh6qr9k3bl5dfch7vmglqhsbcxwyli8s09pimx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/bugsnag/panicwrap")) +; (home-page "https://github.com/bugsnag/panicwrap") +; (synopsis "panicwrap") +; (description +; "The panicwrap package provides functions for capturing and handling +;panics in your application. It does this by re-executing the running +;application and monitoring stderr for any panics. At the same time, +;stdout/stderr/etc. are set to the same values so that data is shuttled +;through properly, making the existence of panicwrap mostly transparent. +;") +; (license license:expat))) +; +;(define-public go-github-com-kr-pty-1.1.1 +; (package +; (name "go-github-com-kr-pty") +; (version "1.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kr/pty") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0383f0mb9kqjvncqrfpidsf8y6ns5zlrc91c6a74xpyxjwvzl2y6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kr/pty")) +; (home-page "https://github.com/kr/pty") +; (synopsis "pty") +; (description +; "Package pty is a wrapper for github.com/creack/pty, which provides +;functions for working with Unix terminals. +;") +; (license license:expat))) +; +;(define-public go-github-com-kr-text-0.1.0 +; (package +; (name "go-github-com-kr-text") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kr/text") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1gm5bsl01apvc84bw06hasawyqm4q84vx1pm32wr9jnd7a8vjgj1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kr/text")) +; (propagated-inputs +; `(("go-github-com-kr-pty-1.1.1" ,go-github-com-kr-pty-1.1.1))) +; (home-page "https://github.com/kr/text") +; (synopsis #f) +; (description +; "Package text provides rudimentary functions for manipulating text in +;paragraphs. +;") +; (license license:expat))) +; +;(define-public go-github-com-kr-pretty-0.2.1 +; (package +; (name "go-github-com-kr-pretty") +; (version "0.2.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kr/pretty") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0vzfz06y9q8gs2nxx0kys0591vzp78k0fvpb8digi5n15h3b25hy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kr/pretty")) +; (propagated-inputs +; `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) +; (home-page "https://github.com/kr/pretty") +; (synopsis #f) +; (description +; "Package pretty provides pretty-printing for Go values. This is +;useful during debugging, to avoid wrapping long output lines in +;the terminal. +;") +; (license license:expat))) +; +;(define-public go-github-com-frankban-quicktest-1.11.3 +; (package +; (name "go-github-com-frankban-quicktest") +; (version "1.11.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/frankban/quicktest") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0d5njmwkfq2809vlimnlvy8ir6kln0c4cgdwr680fwsclpbr43qs")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/frankban/quicktest")) +; (propagated-inputs +; `(("go-github-com-kr-pretty-0.2.1" ,go-github-com-kr-pretty-0.2.1) +; ("go-github-com-google-go-cmp-0.5.4" +; ,go-github-com-google-go-cmp-0.5.4))) +; (home-page "https://github.com/frankban/quicktest") +; (synopsis "quicktest") +; (description +; "Package quicktest provides a collection of Go helpers for writing tests. +;") +; (license license:expat))) +; +;(define-public go-github-com-google-go-cmp-0.5.4 +; (package +; (name "go-github-com-google-go-cmp") +; (version "0.5.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/go-cmp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ld9pwb6l22g75g1zpa691l7q9ki7pjgpcqhwgdfr3va1zisr5ci")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/go-cmp")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" +; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) +; (home-page "https://github.com/google/go-cmp") +; (synopsis "Package for equality of Go values") +; (description +; "This package is intended to be a more powerful and safer alternative to +;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") +; (license license:bsd-3))) +; +;(define-public go-github-com-cilium-ebpf-0.4.0 +; (package +; (name "go-github-com-cilium-ebpf") +; (version "0.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/cilium/ebpf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1j33vfz8mxnqadkd17l0y3ll71gph3ndm8hwrwbwnf5px7bfv9yl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/cilium/ebpf")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" +; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) +; ("go-github-com-google-go-cmp-0.5.4" +; ,go-github-com-google-go-cmp-0.5.4) +; ("go-github-com-frankban-quicktest-1.11.3" +; ,go-github-com-frankban-quicktest-1.11.3))) +; (home-page "https://github.com/cilium/ebpf") +; (synopsis "eBPF") +; (description "Package ebpf is a toolkit for working with eBPF programs. +;") +; (license license:expat))) +; +;(define-public go-github-com-coreos-go-systemd-v22-22.1.0 +; (package +; (name "go-github-com-coreos-go-systemd-v22") +; (version "22.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/coreos/go-systemd") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "127dj1iwp69yj74nwh9ckgc0mkk1mv4yzbxmbdxix1r7j6q35z3j")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/coreos/go-systemd/v22")) +; (propagated-inputs +; `(("go-github-com-godbus-dbus-v5-5.0.3" +; ,go-github-com-godbus-dbus-v5-5.0.3))) +; (home-page "https://github.com/coreos/go-systemd") +; (synopsis "go-systemd") +; (description "Go bindings to systemd. The project has several packages:") +; (license license:asl2.0))) +; +;(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0 +; (package +; (name "go-github-com-cpuguy83-go-md2man-v2") +; (version "2.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/cpuguy83/go-md2man") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) +; (propagated-inputs +; `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" +; ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) +; ("go-github-com-russross-blackfriday-v2-2.0.1" +; ,go-github-com-russross-blackfriday-v2-2.0.1) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0))) +; (home-page "https://github.com/cpuguy83/go-md2man") +; (synopsis "go-md2man") +; (description "Converts markdown into roff (man pages).") +; (license license:expat))) +; +;(define-public go-github-com-docker-go-units-0.4.0 +; (package +; (name "go-github-com-docker-go-units") +; (version "0.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/docker/go-units") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0k8gja8ql4pqg5rzmqvka42vjfs6rzablak87whcnqba6qxpimvz")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/docker/go-units")) +; (home-page "https://github.com/docker/go-units") +; (synopsis "Introduction") +; (description +; "Package units provides helper function to parse and print size and time units +;in human-readable format. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-godbus-dbus-v5-5.0.3 +; (package +; (name "go-github-com-godbus-dbus-v5") +; (version "5.0.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/godbus/dbus") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1bkc904073k807yxg6mvqaxrr6ammmhginr9p54jfb55mz3hfw3s")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/godbus/dbus/v5")) +; (home-page "https://github.com/godbus/dbus") +; (synopsis "dbus") +; (description +; "Package dbus implements bindings to the D-Bus message bus system. +;") +; (license license:bsd-2))) +; +;(define-public go-github-com-yuin-goldmark-1.1.27 +; (package +; (name "go-github-com-yuin-goldmark") +; (version "1.1.27") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/yuin/goldmark") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1872cqnii0kwiqcy81yin0idvjy5mdy4zlzz0csb319lcjs3b923")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/yuin/goldmark")) +; (home-page "https://github.com/yuin/goldmark") +; (synopsis "goldmark") +; (description +; "Package goldmark implements functions to convert markdown text to a desired format. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-mod-0.2.0 +; (package +; (name "go-golang-org-x-mod") +; (version "0.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/mod") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1fp6885dclq77mh73v7i54v2b9llpv4di193zc8vmsbbkkc483cl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/mod")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" +; ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) +; ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" +; ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) +; ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" +; ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) +; (home-page "https://golang.org/x/mod") +; (synopsis "mod") +; (description +; "This repository holds packages for writing tools +;that work directly with Go module mechanics. +;That is, it is for direct manipulation of Go modules themselves.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20200226121028-0de0cce0169b") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1db7s5kbzyh2zd5lpv05n7hp8wbwdvgk0wpiwrlnig94mkr0y5aq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e +; (package +; (name "go-golang-org-x-sync") +; (version "0.0.0-20190911185100-cd5d95a43a6e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sync") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1nqkyz2y1qvqcma52ijh02s8aiqmkfb95j08f6zcjhbga3ds6hds")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sync")) +; (home-page "https://golang.org/x/sync") +; (synopsis "Go Sync") +; (description +; "This repository provides Go concurrency primitives in addition to the +;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543 +; (package +; (name "go-golang-org-x-xerrors") +; (version "0.0.0-20191204190536-9bdfabe68543") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/xerrors") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1yjfi1bk9xb81lqn85nnm13zz725wazvrx3b50hx19qmwg7a4b0c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/xerrors")) +; (home-page "https://golang.org/x/xerrors") +; (synopsis #f) +; (description +; "Package xerrors implements functions to manipulate errors. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20200619180055-7c47624df98f +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20200619180055-7c47624df98f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1fhzwd32j7w9g3algq0zj8g7ivx3f0mn9nx9mj046wdscryn49mk")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" +; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) +; ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" +; ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) +; ("go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b" +; ,go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b) +; ("go-golang-org-x-mod-0.2.0" ,go-golang-org-x-mod-0.2.0) +; ("go-github-com-yuin-goldmark-1.1.27" +; ,go-github-com-yuin-goldmark-1.1.27))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-github-com-kisielk-errcheck-1.5.0 +; (package +; (name "go-github-com-kisielk-errcheck") +; (version "1.5.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kisielk/errcheck") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ci3jz2px74pfmr42jv7dpx7fdzx08vai4czp9fkiyb0gcaiqsk6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kisielk/errcheck")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20200619180055-7c47624df98f" +; ,go-golang-org-x-tools-0.0.0-20200619180055-7c47624df98f))) +; (home-page "https://github.com/kisielk/errcheck") +; (synopsis "errcheck") +; (description +; "errcheck is a program for checking for unchecked errors in go programs.") +; (license license:expat))) +; +;(define-public go-github-com-kisielk-gotool-1.0.0 +; (package +; (name "go-github-com-kisielk-gotool") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kisielk/gotool") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "14af2pa0ssyp8bp2mvdw184s5wcysk6akil3wzxmr05wwy951iwn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kisielk/gotool")) +; (home-page "https://github.com/kisielk/gotool") +; (synopsis "gotool") +; (description +; "Package gotool contains utility functions used to implement the standard +;\"cmd/go\" tool, provided as a convenience to developers who want to write +;tools with similar semantics. +;") +; (license license:expat))) +; +;(define-public go-github-com-yuin-goldmark-1.2.1 +; (package +; (name "go-github-com-yuin-goldmark") +; (version "1.2.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/yuin/goldmark") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "12rsnsf65drcp0jfw2jl9w589vsn3pxdk1zh3v9q908iigngrcmy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/yuin/goldmark")) +; (home-page "https://github.com/yuin/goldmark") +; (synopsis "goldmark") +; (description +; "Package goldmark implements functions to convert markdown text to a desired format. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20191011191535-87dc89f01550") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0z4i1m2yn3f31ci7wvcm2rxkx2yiv7a78mfzklncmsz2k97rlh2g")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" +; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) +; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" +; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190620200207-3b0461eec859") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0l00c8l0a8xnv6qdpwfzxxsr58jggacgzdrwiprrfx2xqm37b6d5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sync-0.0.0-20190423024810-112230192c58 +; (package +; (name "go-golang-org-x-sync") +; (version "0.0.0-20190423024810-112230192c58") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sync") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "05i2k43j2d0llq768hg5pf3hb2yhfzp9la1w5wp0rsnnzblr0lfn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sync")) +; (home-page "https://golang.org/x/sync") +; (synopsis "Go Sync") +; (description +; "This repository provides Go concurrency primitives in addition to the +;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7 +; (package +; (name "go-golang-org-x-xerrors") +; (version "0.0.0-20190717185122-a985d3407aa7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/xerrors") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "00wzr5w8aadipgc3rkk8f11i41znskfj9ix5nhhaxyg7isrslgcj")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/xerrors")) +; (home-page "https://golang.org/x/xerrors") +; (synopsis #f) +; (description +; "Package xerrors implements functions to manipulate errors. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20191119224855-298f0cb1881e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0l4pqwib2wnfnix6nvxl0yrq87ipi7ff1rz6z5bxfzy9dki1nzmv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7" +; ,go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7) +; ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" +; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) +; ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" +; ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898 +; (package +; (name "go-golang-org-x-xerrors") +; (version "0.0.0-20191011141410-1b5146add898") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/xerrors") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0w2akj91krxjag0xdhsg78470888nicc5ismc2ap9jqpss6v1zih")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/xerrors")) +; (home-page "https://golang.org/x/xerrors") +; (synopsis #f) +; (description +; "Package xerrors implements functions to manipulate errors. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-mod-0.3.0 +; (package +; (name "go-golang-org-x-mod") +; (version "0.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/mod") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ldgbx2zpprbsfn6p8pfgs4nn87gwbfcv2z0fa7n8alwsq2yw78q")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/mod")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" +; ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) +; ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" +; ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) +; ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" +; ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) +; (home-page "https://golang.org/x/mod") +; (synopsis "mod") +; (description +; "This repository holds packages for writing tools +;that work directly with Go module mechanics. +;That is, it is for direct manipulation of Go modules themselves.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190215142949-d0b11bdaac8a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20190308221718-c2843e01d9a2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-text-0.3.0 +; (package +; (name "go-golang-org-x-text") +; (version "0.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/text") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/text")) +; (home-page "https://golang.org/x/text") +; (synopsis "Go Text") +; (description +; "text is a repository of text-related packages related to internationalization +;(i18n) and localization (l10n), such as character encodings, text +;transformations, and locale-specific text handling. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190404232315-eb5bcb51f2a3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "17k4g8krxbl84gzcs275b7gsh66dzm15fdxivjnx9xz8q84l4kby")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190412213103-97732733099d +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190412213103-97732733099d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "118hkp01i4z1f5h6hcjm0ff2ngqhrzj1f7731n0kw8dr6hvbx0sw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20200622213623-75b288015ac9") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "18vlncvvs11ds3zaaziqjlg5s2vcwi3496nn6qv7p0dp94j5pwa2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" +; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) +; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" +; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20200930185726-fdedc70b468f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1njlfhjbvi4lxvjbq8zswrb0y0q4jd2p6x51h1q6vmyzi9af6869")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20180917221912-90fa682c2a6e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-text-0.3.3 +; (package +; (name "go-golang-org-x-text") +; (version "0.3.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/text") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19pihqm3phyndmiw6i42pdv6z1rbvlqlsnhsyqf9gsnn0qnmqqlh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/text")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" +; ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) +; (home-page "https://golang.org/x/text") +; (synopsis "Go Text") +; (description +; "text is a repository of text-related packages related to internationalization +;(i18n) and localization (l10n), such as character encodings, text +;transformations, and locale-specific text handling. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20201021035429-f5854403a974 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20201021035429-f5854403a974") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1vw63zpmhi337f3gc432x3wkib4j2ia8dy7if31wxwb9dgqvy222")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) +; ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" +; ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) +; ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" +; ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9 +; (package +; (name "go-golang-org-x-sync") +; (version "0.0.0-20201020160332-67f06af15bc9") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sync") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "093p4panc808ak5bamzz7m9nb0xxib7778jpnr6f0xkz1n4fzyw5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sync")) +; (home-page "https://golang.org/x/sync") +; (synopsis "Go Sync") +; (description +; "This repository provides Go concurrency primitives in addition to the +;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1 +; (package +; (name "go-golang-org-x-xerrors") +; (version "0.0.0-20200804184101-5ec99f83aff1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/xerrors") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1dbzc3gmf2haazpv7cgmv97rq40g2xzwbglc17vas8dwhgwgwrzb")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/xerrors")) +; (home-page "https://golang.org/x/xerrors") +; (synopsis #f) +; (description +; "Package xerrors implements functions to manipulate errors. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20210106214847-113979e3529a +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20210106214847-113979e3529a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0pq1a7hkamqdwsajyfrb27s56cvxz5838krsgyqz346s2djwdrzl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" +; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) +; ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" +; ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) +; ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" +; ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) +; ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) +; ("go-github-com-yuin-goldmark-1.2.1" +; ,go-github-com-yuin-goldmark-1.2.1))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-github-com-gogo-protobuf-1.3.2 +; (package +; (name "go-github-com-gogo-protobuf") +; (version "1.3.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/gogo/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0dfv1bhx5zhb5bsj5sj757nkacf2swp1ajpcyj9d0b37n602m18a")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/gogo/protobuf")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20210106214847-113979e3529a" +; ,go-golang-org-x-tools-0.0.0-20210106214847-113979e3529a) +; ("go-github-com-kisielk-gotool-1.0.0" +; ,go-github-com-kisielk-gotool-1.0.0) +; ("go-github-com-kisielk-errcheck-1.5.0" +; ,go-github-com-kisielk-errcheck-1.5.0))) +; (home-page "https://github.com/gogo/protobuf") +; (synopsis "Protocol Buffers for Go with Gadgets") +; (description +; "gogoprotobuf is a fork of @url{https://github.com/golang/protobuf,golang/protobuf} with extra code generation features.") +; (license license:bsd-3))) +; +;(define-public go-github-com-opencontainers-runtime-spec-1.0.2 +; (package +; (name "go-github-com-opencontainers-runtime-spec") +; (version "1.0.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/runtime-spec") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19w981vcmd5lp2hy0630x6ayb8zz17n2vxqm2py5mg945xflcizg")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) +; (home-page "https://github.com/opencontainers/runtime-spec") +; (synopsis "Open Container Initiative Runtime Specification") +; (description +; "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") +; (license license:asl2.0))) +; +;(define-public go-github-com-pkg-errors-0.9.1 +; (package +; (name "go-github-com-pkg-errors") +; (version "0.9.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/pkg/errors") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1761pybhc2kqr6v5fm8faj08x9bql8427yqg6vnfv6nhrasx1mwq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/pkg/errors")) +; (home-page "https://github.com/pkg/errors") +; (synopsis "errors") +; (description "Package errors provides simple error handling primitives. +;") +; (license license:bsd-2))) +; +;(define-public go-github-com-davecgh-go-spew-1.1.1 +; (package +; (name "go-github-com-davecgh-go-spew") +; (version "1.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/davecgh/go-spew") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/davecgh/go-spew")) +; (home-page "https://github.com/davecgh/go-spew") +; (synopsis "go-spew") +; (description +; "Go-spew implements a deep pretty printer for Go data structures to aid in +;debugging. A comprehensive suite of tests with 100% test coverage is provided +;to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage +;report. Go-spew is licensed under the liberal ISC license, so it may be used in +;open source or commercial projects.") +; (license license:isc))) +; +;(define-public go-github-com-stretchr-testify-1.2.2 +; (package +; (name "go-github-com-stretchr-testify") +; (version "1.2.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/testify") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0dlszlshlxbmmfxj5hlwgv3r22x0y1af45gn1vd198nvvs3pnvfs")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/testify")) +; (home-page "https://github.com/stretchr/testify") +; (synopsis "Testify - Thou Shalt Write Tests") +; (description +; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20191026070338-33540a1f6037") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0fjcv0vzvi6za0b4xmnk3932pr9f9gczzf03y0kgq3ry9rqg169y")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-sirupsen-logrus-1.7.0 +; (package +; (name "go-github-com-sirupsen-logrus") +; (version "1.7.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/sirupsen/logrus") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1a59pw7zimvm8k423iq9l4f4qjj1ia1xc6pkmhwl2mxc46y2n442")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/sirupsen/logrus")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037" +; ,go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037) +; ("go-github-com-stretchr-testify-1.2.2" +; ,go-github-com-stretchr-testify-1.2.2) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://github.com/sirupsen/logrus") +; (synopsis "Logrus") +; (description +; "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. +;") +; (license license:expat))) +; +;(define-public go-github-com-davecgh-go-spew-1.1.0 +; (package +; (name "go-github-com-davecgh-go-spew") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/davecgh/go-spew") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/davecgh/go-spew")) +; (home-page "https://github.com/davecgh/go-spew") +; (synopsis "go-spew") +; (description +; "Go-spew implements a deep pretty printer for Go data structures to aid in +;debugging. A comprehensive suite of tests with 100% test coverage is provided +;to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage +;report. Go-spew is licensed under the liberal ISC license, so it may be used in +;open source or commercial projects.") +; (license license:isc))) +; +;(define-public go-github-com-stretchr-objx-0.1.0 +; (package +; (name "go-github-com-stretchr-objx") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/objx") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/objx")) +; (home-page "https://github.com/stretchr/objx") +; (synopsis "Objx") +; (description +; "Objx - Go package for dealing with maps, slices, JSON and other data. +;") +; (license license:expat))) +; +;(define-public go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c +; (package +; (name "go-gopkg-in-yaml-v3") +; (version "3.0.0-20200313102051-9f266ea9e77c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/yaml.v3") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1bbai3lzb50m0x2vwsdbagrbhvfylj9k1m32hgbqwldqx4p9ay35")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" +; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) +; (home-page "https://gopkg.in/yaml.v3") +; (synopsis "YAML support for the Go language") +; (description "Package yaml implements YAML support for the Go language. +;") +; (license #f))) +; +;(define-public go-github-com-stretchr-testify-1.6.1 +; (package +; (name "go-github-com-stretchr-testify") +; (version "1.6.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/testify") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1yhiqqzjvi63pf01rgzx68gqkkvjx03fvl5wk30br5l6s81s090l")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/testify")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" +; ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) +; ("go-github-com-stretchr-objx-0.1.0" +; ,go-github-com-stretchr-objx-0.1.0) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.0" +; ,go-github-com-davecgh-go-spew-1.1.0))) +; (home-page "https://github.com/stretchr/testify") +; (synopsis "Testify - Thou Shalt Write Tests") +; (description +; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +;") +; (license license:expat))) +; +;(define-public go-github-com-burntsushi-toml-0.3.1 +; (package +; (name "go-github-com-burntsushi-toml") +; (version "0.3.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/BurntSushi/toml") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1fjdwwfzyzllgiwydknf1pwjvy49qxfsczqx5gz3y0izs7as99j6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/BurntSushi/toml")) +; (home-page "https://github.com/BurntSushi/toml") +; (synopsis "TOML parser and encoder for Go with reflection") +; (description +; "Package toml implements decoding and encoding of TOML files. +;") +; (license license:expat))) +; +;(define-public go-github-com-pmezard-go-difflib-1.0.0 +; (package +; (name "go-github-com-pmezard-go-difflib") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/pmezard/go-difflib") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/pmezard/go-difflib")) +; (home-page "https://github.com/pmezard/go-difflib") +; (synopsis "go-difflib") +; (description +; "Go-difflib is a partial port of python 3 difflib package. Its main goal +;was to make unified and context diff available in pure Go, mostly for +;testing purposes.") +; (license license:bsd-3))) +; +;(define-public go-github-com-russross-blackfriday-v2-2.0.1 +; (package +; (name "go-github-com-russross-blackfriday-v2") +; (version "2.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/russross/blackfriday") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0nlz7isdd4rgnwzs68499hlwicxz34j2k2a0b8jy0y7ycd2bcr5j")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/russross/blackfriday/v2")) +; (home-page "https://github.com/russross/blackfriday") +; (synopsis "Blackfriday") +; (description "Package blackfriday is a markdown processor. +;") +; (license license:bsd-2))) +; +;(define-public go-github-com-shurcool-sanitized-anchor-name-1.0.0 +; (package +; (name "go-github-com-shurcool-sanitized-anchor-name") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/shurcooL/sanitized_anchor_name") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1gv9p2nr46z80dnfjsklc6zxbgk96349sdsxjz05f3z6wb6m5l8f")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/shurcooL/sanitized_anchor_name")) +; (home-page "https://github.com/shurcooL/sanitized_anchor_name") +; (synopsis "sanitized_anchor_name") +; (description +; "Package sanitized_anchor_name provides a func to create sanitized anchor names. +;") +; (license license:expat))) +; +;(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d +; (package +; (name "go-github-com-cpuguy83-go-md2man-v2") +; (version "2.0.0-20190314233015-f79a8a8ca69d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/cpuguy83/go-md2man") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) +; (propagated-inputs +; `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" +; ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) +; ("go-github-com-russross-blackfriday-v2-2.0.1" +; ,go-github-com-russross-blackfriday-v2-2.0.1) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0))) +; (home-page "https://github.com/cpuguy83/go-md2man") +; (synopsis "go-md2man") +; (description "Converts markdown into roff (man pages).") +; (license license:expat))) +; +;(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 +; (package +; (name "go-gopkg-in-check-v1") +; (version "0.0.0-20161208181325-20d25e280405") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/check.v1") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) +; (home-page "https://gopkg.in/check.v1") +; (synopsis "Instructions") +; (description +; "Package check is a rich testing extension for Go's testing package. +;") +; (license license:bsd-2))) +; +;(define-public go-gopkg-in-yaml-v2-2.2.2 +; (package +; (name "go-gopkg-in-yaml-v2") +; (version "2.2.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/yaml.v2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "01wj12jzsdqlnidpyjssmj0r4yavlqy7dwrg7adqd8dicjc4ncsa")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" +; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) +; (home-page "https://gopkg.in/yaml.v2") +; (synopsis "YAML support for the Go language") +; (description "Package yaml implements YAML support for the Go language. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-urfave-cli-1.22.2 +; (package +; (name "go-github-com-urfave-cli") +; (version "1.22.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/urfave/cli") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "10mcnvi5qmn00vpyk6si8gjka7p654wr9hac4zc9w5h3ickhvbdc")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/urfave/cli")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) +; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d" +; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d) +; ("go-github-com-burntsushi-toml-0.3.1" +; ,go-github-com-burntsushi-toml-0.3.1))) +; (home-page "https://github.com/urfave/cli") +; (synopsis "cli") +; (description +; "Package cli provides a minimal framework for creating and organizing command line +;Go applications. cli is designed to be easy to understand and write, the most simple +;cli application can be written as follows: +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20210124154548-22da62e12c0c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "17gp3dl75wq3x7j9z1pqgcyvjhvy9jaln1wbscy57al3whdsjp07")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-containerd-cgroups-1.0.1 +; (package +; (name "go-github-com-containerd-cgroups") +; (version "1.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/cgroups") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1p992w942xba9z77nhhbc6nk5q09c3zxxhq9n7fm5alx3a8fwbpl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/cgroups")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" +; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) +; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-sirupsen-logrus-1.7.0" +; ,go-github-com-sirupsen-logrus-1.7.0) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-runtime-spec-1.0.2" +; ,go-github-com-opencontainers-runtime-spec-1.0.2) +; ("go-github-com-gogo-protobuf-1.3.2" +; ,go-github-com-gogo-protobuf-1.3.2) +; ("go-github-com-godbus-dbus-v5-5.0.3" +; ,go-github-com-godbus-dbus-v5-5.0.3) +; ("go-github-com-docker-go-units-0.4.0" +; ,go-github-com-docker-go-units-0.4.0) +; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" +; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) +; ("go-github-com-coreos-go-systemd-v22-22.1.0" +; ,go-github-com-coreos-go-systemd-v22-22.1.0) +; ("go-github-com-cilium-ebpf-0.4.0" ,go-github-com-cilium-ebpf-0.4.0))) +; (home-page "https://github.com/containerd/cgroups") +; (synopsis "cgroups") +; (description +; "Go package for creating, managing, inspecting, and destroying cgroups. +;The resources format for settings on the cgroup uses the OCI runtime-spec found +;@url{https://github.com/opencontainers/runtime-spec,here}.") +; (license license:asl2.0))) +; +;(define-public go-github-com-microsoft-go-winio-0.4.17 +; (package +; (name "go-github-com-microsoft-go-winio") +; (version "0.4.17") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/microsoft/go-winio") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0gmgiak4x4gdyr17zm4b9vvharflk9pz5aj5jayh9hq50133b2f9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/Microsoft/go-winio")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" +; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) +; ("go-github-com-sirupsen-logrus-1.7.0" +; ,go-github-com-sirupsen-logrus-1.7.0) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) +; (home-page "https://github.com/Microsoft/go-winio") +; (synopsis "go-winio") +; (description +; "This repository contains utilities for efficiently performing Win32 IO operations in +;Go. Currently, this is focused on accessing named pipes and other file handles, and +;for using named pipes as a net transport.") +; (license license:expat))) +; +;(define-public go-github-com-cenkalti-backoff-v4-4.1.1 +; (package +; (name "go-github-com-cenkalti-backoff-v4") +; (version "4.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/cenkalti/backoff") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "08c28226q612i1pv83161y57qh16631vpc51ai9f76qfrzsy946z")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/cenkalti/backoff/v4")) +; (home-page "https://github.com/cenkalti/backoff") +; (synopsis "Exponential Backoff") +; (description +; "Package backoff implements backoff algorithms for retrying operations. +;") +; (license license:expat))) +; +;(define-public go-github-com-containerd-containerd-1.4.9 +; (package +; (name "go-github-com-containerd-containerd") +; (version "1.4.9") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/containerd") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ykikks6ihgg899ibk9m9m0hqrbss0cx7l7z4yjb873b10bacj52")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/containerd")) +; (home-page "https://github.com/containerd/containerd") +; (synopsis "Now Recruiting") +; (description +; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") +; (license license:asl2.0))) +; +;(define-public go-github-com-microsoft-hcsshim-0.8.23 +; (package +; (name "go-github-com-microsoft-hcsshim") +; (version "0.8.23") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/microsoft/hcsshim") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19gmwvq72vrlw6wvnmz4rjmg6r34c1nbqk71mj4bqq08rpi3i89r")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/Microsoft/hcsshim")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) +; ("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) +; ("go-golang-org-x-sys-0.0.0-20210324051608-47abb6519492" +; ,go-golang-org-x-sys-0.0.0-20210324051608-47abb6519492) +; ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" +; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) +; ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) +; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) +; ("go-github-com-sirupsen-logrus-1.8.1" +; ,go-github-com-sirupsen-logrus-1.8.1) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" +; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) +; ("go-github-com-gogo-protobuf-1.3.2" +; ,go-github-com-gogo-protobuf-1.3.2) +; ("go-github-com-containerd-typeurl-1.0.2" +; ,go-github-com-containerd-typeurl-1.0.2) +; ("go-github-com-containerd-ttrpc-1.1.0" +; ,go-github-com-containerd-ttrpc-1.1.0) +; ("go-github-com-containerd-go-runc-1.0.0" +; ,go-github-com-containerd-go-runc-1.0.0) +; ("go-github-com-containerd-fifo-1.0.0" +; ,go-github-com-containerd-fifo-1.0.0) +; ("go-github-com-containerd-continuity-0.1.0" +; ,go-github-com-containerd-continuity-0.1.0) +; ("go-github-com-containerd-containerd-1.4.9" +; ,go-github-com-containerd-containerd-1.4.9) +; ("go-github-com-containerd-console-1.0.2" +; ,go-github-com-containerd-console-1.0.2) +; ("go-github-com-containerd-cgroups-1.0.1" +; ,go-github-com-containerd-cgroups-1.0.1) +; ("go-github-com-cenkalti-backoff-v4-4.1.1" +; ,go-github-com-cenkalti-backoff-v4-4.1.1) +; ("go-github-com-microsoft-go-winio-0.4.17" +; ,go-github-com-microsoft-go-winio-0.4.17))) +; (home-page "https://github.com/Microsoft/hcsshim") +; (synopsis "hcsshim") +; (description +; "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") +; (license license:expat))) +; +;(define-public go-github-com-containerd-aufs-1.0.0 +; (package +; (name "go-github-com-containerd-aufs") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/aufs") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0jyyyf6sr910m602axmp4h4j1l2n680cpp60z09pvprz55zi4ba0")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/aufs")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" +; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" +; ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) +; ("go-github-com-containerd-containerd-1.5.0-beta.3" +; ,go-github-com-containerd-containerd-1.5.0-beta.3))) +; (home-page "https://github.com/containerd/aufs") +; (synopsis "aufs snapshotter") +; (description +; "AUFS implementation of the snapshot interface for containerd.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-btrfs-1.0.0 +; (package +; (name "go-github-com-containerd-btrfs") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/btrfs") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1yf38gg41y1v12m0cl81r9q7d13170a4npzqxhbz7qn32zr23kzn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/btrfs")) +; (propagated-inputs +; `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) +; (home-page "https://github.com/containerd/btrfs") +; (synopsis "go-btrfs") +; (description +; "Package btrfs provides bindings for working with btrfs partitions from Go. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-cilium-ebpf-0.4.0 +; (package +; (name "go-github-com-cilium-ebpf") +; (version "0.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/cilium/ebpf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1j33vfz8mxnqadkd17l0y3ll71gph3ndm8hwrwbwnf5px7bfv9yl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/cilium/ebpf")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" +; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) +; ("go-github-com-google-go-cmp-0.5.4" +; ,go-github-com-google-go-cmp-0.5.4) +; ("go-github-com-frankban-quicktest-1.11.3" +; ,go-github-com-frankban-quicktest-1.11.3))) +; (home-page "https://github.com/cilium/ebpf") +; (synopsis "eBPF") +; (description "Package ebpf is a toolkit for working with eBPF programs. +;") +; (license license:expat))) +; +;(define-public go-github-com-containerd-cgroups-1.0.1 +; (package +; (name "go-github-com-containerd-cgroups") +; (version "1.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/cgroups") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1p992w942xba9z77nhhbc6nk5q09c3zxxhq9n7fm5alx3a8fwbpl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/cgroups")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" +; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) +; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-sirupsen-logrus-1.7.0" +; ,go-github-com-sirupsen-logrus-1.7.0) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-runtime-spec-1.0.2" +; ,go-github-com-opencontainers-runtime-spec-1.0.2) +; ("go-github-com-gogo-protobuf-1.3.2" +; ,go-github-com-gogo-protobuf-1.3.2) +; ("go-github-com-godbus-dbus-v5-5.0.3" +; ,go-github-com-godbus-dbus-v5-5.0.3) +; ("go-github-com-docker-go-units-0.4.0" +; ,go-github-com-docker-go-units-0.4.0) +; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" +; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) +; ("go-github-com-coreos-go-systemd-v22-22.1.0" +; ,go-github-com-coreos-go-systemd-v22-22.1.0) +; ("go-github-com-cilium-ebpf-0.4.0" ,go-github-com-cilium-ebpf-0.4.0))) +; (home-page "https://github.com/containerd/cgroups") +; (synopsis "cgroups") +; (description +; "Go package for creating, managing, inspecting, and destroying cgroups. +;The resources format for settings on the cgroup uses the OCI runtime-spec found +;@url{https://github.com/opencontainers/runtime-spec,here}.") +; (license license:asl2.0))) +; +;(define-public go-github-com-mitchellh-go-homedir-1.1.0 +; (package +; (name "go-github-com-mitchellh-go-homedir") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mitchellh/go-homedir") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ydzkipf28hwj2bfxqmwlww47khyk6d152xax4bnyh60f4lq3nx1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mitchellh/go-homedir")) +; (home-page "https://github.com/mitchellh/go-homedir") +; (synopsis "go-homedir") +; (description +; "This is a Go library for detecting the user's home directory without +;the use of cgo, so the library can be used in cross-compilation environments.") +; (license license:expat))) +; +;(define-public go-github-com-armon-consul-api-0.0.0-20180202201655-eb2c6b5be1b6 +; (package +; (name "go-github-com-armon-consul-api") +; (version "0.0.0-20180202201655-eb2c6b5be1b6") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/armon/consul-api") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1j6fdr1sg36qy4n4xjl7brq739fpm5npq98cmvklzjc9qrx98nk9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/armon/consul-api")) +; (home-page "https://github.com/armon/consul-api") +; (synopsis "consul-api") +; (description +; " Please use @url{https://github.com/hashicorp/consul/tree/master/api,consul api package} instead. +;Godocs for that package @url{http://godoc.org/github.com/hashicorp/consul/api,are here}.") +; (license license:mpl2.0))) +; +;(define-public go-github-com-coreos-bbolt-1.3.2 +; (package +; (name "go-github-com-coreos-bbolt") +; (version "1.3.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/etcd-io/bbolt") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "13d5l6p6c5wvkr6vn9hkhz9c593qifn7fgx0hg4d6jcvg1y0bnm2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/coreos/bbolt")) +; (home-page "https://github.com/coreos/bbolt") +; (synopsis "bbolt") +; (description +; "package bbolt implements a low-level key/value store in pure Go. It supports +;fully serializable transactions, ACID semantics, and lock-free MVCC with +;multiple readers and a single writer. Bolt can be used for projects that +;want a simple data store without the need to add large dependencies such as +;Postgres or MySQL. +;") +; (license license:expat))) +; +;(define-public go-github-com-coreos-etcd-3.3.10+incompatible +; (package +; (name "go-github-com-coreos-etcd") +; (version "3.3.10+incompatible") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/etcd-io/etcd") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1x2ii1hj8jraba8rbxz6dmc03y3sjxdnzipdvg6fywnlq1f3l3wl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/coreos/etcd")) +; (home-page "https://github.com/coreos/etcd") +; (synopsis "etcd") +; (description +; "Package main is a simple wrapper of the real etcd entrypoint package +;(located at github.com/coreos/etcd/etcdmain) to ensure that etcd is still +;\"go getable\"; e.g. `go get github.com/coreos/etcd` works as expected and +;builds a binary in $GOBIN/etcd +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-golang-groupcache-0.0.0-20190129154638-5b532d6fd5ef +; (package +; (name "go-github-com-golang-groupcache") +; (version "0.0.0-20190129154638-5b532d6fd5ef") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/groupcache") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ls2i4ixyd4r2556j7c5jmlligjb35gfvxknrdn2abjmcahgqd6h")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/groupcache")) +; (home-page "https://github.com/golang/groupcache") +; (synopsis "groupcache") +; (description +; "Package groupcache provides a data loading mechanism with caching +;and de-duplication that works across a set of peer processes. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-gorilla-websocket-1.4.0 +; (package +; (name "go-github-com-gorilla-websocket") +; (version "1.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/gorilla/websocket") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "00i4vb31nsfkzzk7swvx3i75r2d960js3dri1875vypk3v2s0pzk")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/gorilla/websocket")) +; (home-page "https://github.com/gorilla/websocket") +; (synopsis "Gorilla WebSocket") +; (description +; "Package websocket implements the WebSocket protocol defined in @url{https://rfc-editor.org/rfc/rfc6455.html,RFC 6455}. +;") +; (license license:bsd-2))) +; +;(define-public go-github-com-grpc-ecosystem-go-grpc-middleware-1.0.0 +; (package +; (name "go-github-com-grpc-ecosystem-go-grpc-middleware") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc-ecosystem/go-grpc-middleware") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0lwgxih021xfhfb1xb9la5f98bpgpaiz63sbllx77qwwl2rmhrsp")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/grpc-ecosystem/go-grpc-middleware")) +; (home-page "https://github.com/grpc-ecosystem/go-grpc-middleware") +; (synopsis "Go gRPC Middleware") +; (description +; "`grpc_middleware` is a collection of gRPC middleware packages: interceptors, helpers and tools. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-grpc-ecosystem-grpc-gateway-1.9.0 +; (package +; (name "go-github-com-grpc-ecosystem-grpc-gateway") +; (version "1.9.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc-ecosystem/grpc-gateway") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1r4y48c76yxc2hpqszfjirvh7zxjb6z72qmk95li12ar79dhv3dy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/grpc-ecosystem/grpc-gateway")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.0.0-20170812160011-eb3733d160e7" +; ,go-gopkg-in-yaml-v2-2.0.0-20170812160011-eb3733d160e7) +; ("go-gopkg-in-resty-v1-1.12.0" ,go-gopkg-in-resty-v1-1.12.0) +; ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" +; ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) +; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) +; ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" +; ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) +; ("go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8" +; ,go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8) +; ("go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3" +; ,go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3) +; ("go-github-com-rogpeppe-fastuuid-0.0.0-20150106093220-6724a57986af" +; ,go-github-com-rogpeppe-fastuuid-0.0.0-20150106093220-6724a57986af) +; ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-ghodss-yaml-1.0.0" ,go-github-com-ghodss-yaml-1.0.0))) +; (home-page "https://github.com/grpc-ecosystem/grpc-gateway") +; (synopsis "grpc-gateway") +; (description +; "The grpc-gateway is a plugin of the Google protocol buffers compiler +;@url{https://github.com/protocolbuffers/protobuf,protoc}. +;It reads protobuf service definitions and generates a reverse-proxy server which +;translates a RESTful HTTP API into gRPC. This server is generated according to the +;@url{https://github.com/googleapis/googleapis/raw/master/google/api/http.proto#L46,(code google.api.http)} +;annotations in your service definitions.") +; (license license:bsd-3))) +; +;(define-public go-github-com-hashicorp-hcl-1.0.0 +; (package +; (name "go-github-com-hashicorp-hcl") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/hcl") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0q6ml0qqs0yil76mpn4mdx4lp94id8vbv575qm60jzl1ijcl5i66")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hashicorp/hcl")) +; (propagated-inputs +; `(("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://github.com/hashicorp/hcl") +; (synopsis "HCL") +; (description "Package hcl decodes HCL into usable Go structures. +;") +; (license license:mpl2.0))) +; +;(define-public go-github-com-magiconair-properties-1.8.0 +; (package +; (name "go-github-com-magiconair-properties") +; (version "1.8.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/magiconair/properties") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1a10362wv8a8qwb818wygn2z48lgzch940hvpv81hv8gc747ajxn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/magiconair/properties")) +; (home-page "https://github.com/magiconair/properties") +; (synopsis "Overview") +; (description +; "Package properties provides functions for reading and writing +;ISO-8859-1 and UTF-8 encoded .properties files and has +;support for recursive property expansion. +;") +; (license license:bsd-2))) +; +;(define-public go-github-com-pelletier-go-toml-1.2.0 +; (package +; (name "go-github-com-pelletier-go-toml") +; (version "1.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/pelletier/go-toml") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1fjzpcjng60mc3a4b2ql5a00d5gah84wj740dabv9kq67mpg8fxy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/pelletier/go-toml")) +; (home-page "https://github.com/pelletier/go-toml") +; (synopsis "go-toml") +; (description "Package toml is a TOML parser and manipulation library. +;") +; (license #f))) +; +;(define-public go-github-com-prometheus-common-0.4.0 +; (package +; (name "go-github-com-prometheus-common") +; (version "0.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/common") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "00008pczafy982m59n1j31pnp41f4grbc2c40jccp52xg3m5klmr")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/common")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1) +; ("go-gopkg-in-alecthomas-kingpin-v2-2.2.6" +; ,go-gopkg-in-alecthomas-kingpin-v2-2.2.6) +; ("go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5" +; ,go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5) +; ("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" +; ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) +; ("go-golang-org-x-net-0.0.0-20181114220301-adae6a3d119a" +; ,go-golang-org-x-net-0.0.0-20181114220301-adae6a3d119a) +; ("go-github-com-sirupsen-logrus-1.2.0" +; ,go-github-com-sirupsen-logrus-1.2.0) +; ("go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d" +; ,go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d) +; ("go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910" +; ,go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910) +; ("go-github-com-prometheus-client-golang-0.9.1" +; ,go-github-com-prometheus-client-golang-0.9.1) +; ("go-github-com-pkg-errors-0.8.0" ,go-github-com-pkg-errors-0.8.0) +; ("go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223" +; ,go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223) +; ("go-github-com-matttproud-golang-protobuf-extensions-1.0.1" +; ,go-github-com-matttproud-golang-protobuf-extensions-1.0.1) +; ("go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515" +; ,go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515) +; ("go-github-com-julienschmidt-httprouter-1.2.0" +; ,go-github-com-julienschmidt-httprouter-1.2.0) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0) +; ("go-github-com-gogo-protobuf-1.1.1" +; ,go-github-com-gogo-protobuf-1.1.1) +; ("go-github-com-go-stack-stack-1.8.0" +; ,go-github-com-go-stack-stack-1.8.0) +; ("go-github-com-go-logfmt-logfmt-0.3.0" +; ,go-github-com-go-logfmt-logfmt-0.3.0) +; ("go-github-com-go-kit-kit-0.8.0" ,go-github-com-go-kit-kit-0.8.0) +; ("go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973" +; ,go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973) +; ("go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf" +; ,go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf) +; ("go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc" +; ,go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc))) +; (home-page "https://github.com/prometheus/common") +; (synopsis "Common") +; (description +; "This repository contains Go libraries that are shared across Prometheus +;components and libraries. They are considered internal to Prometheus, without +;any stability guarantees for external usage.") +; (license license:asl2.0))) +; +;(define-public go-github-com-prometheus-procfs-0.0.0-20190507164030-5867b95ac084 +; (package +; (name "go-github-com-prometheus-procfs") +; (version "0.0.0-20190507164030-5867b95ac084") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/procfs") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1rahdk62ajj4zpfb3mgzjqip773la9fb0m87m7s9a0b39l3fmzvr")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/procfs")) +; (propagated-inputs +; `(("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" +; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4))) +; (home-page "https://github.com/prometheus/procfs") +; (synopsis "procfs") +; (description +; "Package procfs provides functions to retrieve system, kernel and process +;metrics from the pseudo-filesystem proc. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-oneofone-xxhash-1.2.2 +; (package +; (name "go-github-com-oneofone-xxhash") +; (version "1.2.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/OneOfOne/xxhash") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1mjfhrwhvxa48rycjnqpqzm521i38h1hdyz6pdwmhd7xb8j6gwi6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/OneOfOne/xxhash")) +; (home-page "https://github.com/OneOfOne/xxhash") +; (synopsis "xxhash") +; (description +; "This is a native Go implementation of the excellent @url{https://github.com/Cyan4973/xxHash,xxhash}* algorithm, an extremely fast non-cryptographic Hash algorithm, working at speeds close to RAM limits.") +; (license license:asl2.0))) +; +;(define-public go-github-com-spaolacci-murmur3-0.0.0-20180118202830-f09979ecbc72 +; (package +; (name "go-github-com-spaolacci-murmur3") +; (version "0.0.0-20180118202830-f09979ecbc72") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/spaolacci/murmur3") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1lv3zyz3jy2d76bhvvs8svygx66606iygdvwy5cwc0p5z8yghq25")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/spaolacci/murmur3")) +; (home-page "https://github.com/spaolacci/murmur3") +; (synopsis "murmur3") +; (description +; "Package murmur3 implements Austin Appleby's non-cryptographic MurmurHash3. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-cespare-xxhash-1.1.0 +; (package +; (name "go-github-com-cespare-xxhash") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/cespare/xxhash") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1qyzlcdcayavfazvi03izx83fvip8h36kis44zr2sg7xf6sx6l4x")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/cespare/xxhash")) +; (propagated-inputs +; `(("go-github-com-spaolacci-murmur3-0.0.0-20180118202830-f09979ecbc72" +; ,go-github-com-spaolacci-murmur3-0.0.0-20180118202830-f09979ecbc72) +; ("go-github-com-oneofone-xxhash-1.2.2" +; ,go-github-com-oneofone-xxhash-1.2.2))) +; (home-page "https://github.com/cespare/xxhash") +; (synopsis "xxhash") +; (description +; "Package xxhash implements the 64-bit variant of xxHash (XXH64) as described +;at @url{http://cyan4973.github.io/xxHash/,http://cyan4973.github.io/xxHash/}. +;") +; (license license:expat))) +; +;(define-public go-github-com-dgryski-go-sip13-0.0.0-20181026042036-e10d5fee7954 +; (package +; (name "go-github-com-dgryski-go-sip13") +; (version "0.0.0-20181026042036-e10d5fee7954") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/dgryski/go-sip13") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "15fyibfas209ljz3f7g07kdmfbl3hhyd9n5n7aq5n5p9m5mn41d6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/dgryski/go-sip13")) +; (home-page "https://github.com/dgryski/go-sip13") +; (synopsis #f) +; (description #f) +; (license license:expat))) +; +;(define-public go-github-com-oklog-ulid-1.3.1 +; (package +; (name "go-github-com-oklog-ulid") +; (version "1.3.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/oklog/ulid") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0hybwyid820n80axrk863k2py93hbqlq6hxhf84ppmz0qd0ys0gq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/oklog/ulid")) +; (home-page "https://github.com/oklog/ulid") +; (synopsis "Universally Unique Lexicographically Sortable Identifier") +; (description +; "This package provides a Go port of @url{https://github.com/alizain/ulid,alizain/ulid} with binary format implemented.") +; (license license:asl2.0))) +; +;(define-public go-github-com-prometheus-common-0.0.0-20181113130724-41aa239b4cce +; (package +; (name "go-github-com-prometheus-common") +; (version "0.0.0-20181113130724-41aa239b4cce") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/common") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0spy10lwanqa5ynks9cagphkq74zz4b3jm4w59vvizdcw4fhd7s6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/common")) +; (home-page "https://github.com/prometheus/common") +; (synopsis "Common") +; (description +; "This repository contains Go libraries that are shared across Prometheus +;components and libraries. They are considered internal to Prometheus, without +;any stability guarantees for external usage.") +; (license license:asl2.0))) +; +;(define-public go-github-com-prometheus-tsdb-0.7.1 +; (package +; (name "go-github-com-prometheus-tsdb") +; (version "0.7.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus-junkyard/tsdb") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1c1da8i5byvhh4fp3vqjfb65aaksjskn3ggb8wg9hcfzjrhgpz04")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/tsdb")) +; (propagated-inputs +; `(("go-gopkg-in-alecthomas-kingpin-v2-2.2.6" +; ,go-gopkg-in-alecthomas-kingpin-v2-2.2.6) +; ("go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8" +; ,go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8) +; ("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" +; ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) +; ("go-github-com-stretchr-testify-1.2.2" +; ,go-github-com-stretchr-testify-1.2.2) +; ("go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d" +; ,go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d) +; ("go-github-com-prometheus-common-0.0.0-20181113130724-41aa239b4cce" +; ,go-github-com-prometheus-common-0.0.0-20181113130724-41aa239b4cce) +; ("go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910" +; ,go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910) +; ("go-github-com-prometheus-client-golang-0.9.1" +; ,go-github-com-prometheus-client-golang-0.9.1) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-pkg-errors-0.8.0" ,go-github-com-pkg-errors-0.8.0) +; ("go-github-com-oklog-ulid-1.3.1" ,go-github-com-oklog-ulid-1.3.1) +; ("go-github-com-matttproud-golang-protobuf-extensions-1.0.1" +; ,go-github-com-matttproud-golang-protobuf-extensions-1.0.1) +; ("go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515" +; ,go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0) +; ("go-github-com-gogo-protobuf-1.1.1" +; ,go-github-com-gogo-protobuf-1.1.1) +; ("go-github-com-go-stack-stack-1.8.0" +; ,go-github-com-go-stack-stack-1.8.0) +; ("go-github-com-go-logfmt-logfmt-0.3.0" +; ,go-github-com-go-logfmt-logfmt-0.3.0) +; ("go-github-com-go-kit-kit-0.8.0" ,go-github-com-go-kit-kit-0.8.0) +; ("go-github-com-dgryski-go-sip13-0.0.0-20181026042036-e10d5fee7954" +; ,go-github-com-dgryski-go-sip13-0.0.0-20181026042036-e10d5fee7954) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1) +; ("go-github-com-cespare-xxhash-1.1.0" +; ,go-github-com-cespare-xxhash-1.1.0) +; ("go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973" +; ,go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973) +; ("go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf" +; ,go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf) +; ("go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc" +; ,go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc))) +; (home-page "https://github.com/prometheus/tsdb") +; (synopsis "TSDB") +; (description +; "Package tsdb implements a time series storage for float64 sample data. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-prometheus-client-golang-0.9.3 +; (package +; (name "go-github-com-prometheus-client-golang") +; (version "0.9.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/client_golang") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1608rm1y2p3iv8k2x7wyc6hshvpbfkv2k77hy0x870syms1g3g1p")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/client_golang")) +; (propagated-inputs +; `(("go-github-com-prometheus-tsdb-0.7.1" +; ,go-github-com-prometheus-tsdb-0.7.1) +; ("go-github-com-prometheus-procfs-0.0.0-20190507164030-5867b95ac084" +; ,go-github-com-prometheus-procfs-0.0.0-20190507164030-5867b95ac084) +; ("go-github-com-prometheus-common-0.4.0" +; ,go-github-com-prometheus-common-0.4.0) +; ("go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90" +; ,go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90) +; ("go-github-com-golang-protobuf-1.3.1" +; ,go-github-com-golang-protobuf-1.3.1) +; ("go-github-com-go-logfmt-logfmt-0.4.0" +; ,go-github-com-go-logfmt-logfmt-0.4.0) +; ("go-github-com-beorn7-perks-1.0.0" +; ,go-github-com-beorn7-perks-1.0.0))) +; (home-page "https://github.com/prometheus/client_golang") +; (synopsis "Prometheus Go client library") +; (description +; "This is the @url{http://golang.org,Go} client library for +;@url{http://prometheus.io,Prometheus}. It has two separate parts, one for +;instrumenting application code, and one for creating clients that talk to the +;Prometheus HTTP API.") +; (license license:asl2.0))) +; +;(define-public go-github-com-spf13-afero-1.1.2 +; (package +; (name "go-github-com-spf13-afero") +; (version "1.1.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/spf13/afero") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0miv4faf5ihjfifb1zv6aia6f6ik7h1s4954kcb8n6ixzhx9ck6k")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/spf13/afero")) +; (home-page "https://github.com/spf13/afero") +; (synopsis "Overview") +; (description +; "This package provides a FileSystem Abstraction System for Go") +; (license license:asl2.0))) +; +;(define-public go-github-com-spf13-cast-1.3.0 +; (package +; (name "go-github-com-spf13-cast") +; (version "1.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/spf13/cast") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0xq1ffqj8y8h7dcnm0m9lfrh0ga7pssnn2c1dnr09chqbpn4bdc5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/spf13/cast")) +; (propagated-inputs +; `(("go-github-com-stretchr-testify-1.2.2" +; ,go-github-com-stretchr-testify-1.2.2) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://github.com/spf13/cast") +; (synopsis "cast") +; (description "Package cast provides easy and safe casting in Go. +;") +; (license license:expat))) +; +;(define-public go-github-com-spf13-jwalterweatherman-1.0.0 +; (package +; (name "go-github-com-spf13-jwalterweatherman") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/spf13/jwalterweatherman") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "093fmmvavv84pv4q84hav7ph3fmrq87bvspjj899q0qsx37yvdr8")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/spf13/jwalterweatherman")) +; (home-page "https://github.com/spf13/jwalterweatherman") +; (synopsis "jWalterWeatherman") +; (description +; "Seamless printing to the terminal (stdout) and logging to a io.Writer +;(file) thatâ\x80\x99s as easy to use as fmt.Println.") +; (license license:expat))) +; +;(define-public go-github-com-ugorji-go-1.1.4 +; (package +; (name "go-github-com-ugorji-go") +; (version "1.1.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/ugorji/go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ma2qvn5wqvjidpdz74x832a813qnr1cxbx6n6n125ak9b3wbn5w")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/ugorji/go")) +; (home-page "https://github.com/ugorji/go") +; (synopsis "go-codec") +; (description +; "This repository contains the @code{go-codec} library, the @code{codecgen} tool and +;benchmarks for comparing against other libraries.") +; (license license:expat))) +; +;(define-public go-github-com-xordataexchange-crypt-0.0.3-0.20170626215501-b2862e3d0a77 +; (package +; (name "go-github-com-xordataexchange-crypt") +; (version "0.0.3-0.20170626215501-b2862e3d0a77") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/xordataexchange/crypt") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "04q3856anpzl4gdfgmg7pbp9cx231nkz3ymq2xp27rnmmwhfxr8y")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/xordataexchange/crypt")) +; (home-page "https://github.com/xordataexchange/crypt") +; (synopsis "crypt") +; (description +; "You can use crypt as a command line tool or as a configuration library:") +; (license license:expat))) +; +;(define-public go-go-etcd-io-bbolt-1.3.2 +; (package +; (name "go-go-etcd-io-bbolt") +; (version "1.3.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/etcd-io/bbolt") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "13d5l6p6c5wvkr6vn9hkhz9c593qifn7fgx0hg4d6jcvg1y0bnm2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "go.etcd.io/bbolt")) +; (home-page "https://go.etcd.io/bbolt") +; (synopsis "bbolt") +; (description +; "package bbolt implements a low-level key/value store in pure Go. It supports +;fully serializable transactions, ACID semantics, and lock-free MVCC with +;multiple readers and a single writer. Bolt can be used for projects that +;want a simple data store without the need to add large dependencies such as +;Postgres or MySQL. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-time-0.0.0-20190308202827-9d24e82272b4 +; (package +; (name "go-golang-org-x-time") +; (version "0.0.0-20190308202827-9d24e82272b4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/time") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1f5nkr4vys2vbd8wrwyiq2f5wcaahhpxmia85d1gshcbqjqf8dkb")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/time")) +; (home-page "https://golang.org/x/time") +; (synopsis "Go Time") +; (description "This repository provides supplementary Go time packages.") +; (license license:bsd-3))) +; +;(define-public go-github-com-spf13-viper-1.4.0 +; (package +; (name "go-github-com-spf13-viper") +; (version "1.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/spf13/viper") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1zpzxvn13wpvbblbbn73svaq39zgxfjqhci9d68g3qf309pcfy19")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/spf13/viper")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) +; ("go-google-golang-org-grpc-1.21.0" ,go-google-golang-org-grpc-1.21.0) +; ("go-golang-org-x-time-0.0.0-20190308202827-9d24e82272b4" +; ,go-golang-org-x-time-0.0.0-20190308202827-9d24e82272b4) +; ("go-golang-org-x-net-0.0.0-20190522155817-f3200d17e092" +; ,go-golang-org-x-net-0.0.0-20190522155817-f3200d17e092) +; ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) +; ("go-go-uber-org-multierr-1.1.0" ,go-go-uber-org-multierr-1.1.0) +; ("go-go-uber-org-atomic-1.4.0" ,go-go-uber-org-atomic-1.4.0) +; ("go-go-etcd-io-bbolt-1.3.2" ,go-go-etcd-io-bbolt-1.3.2) +; ("go-github-com-xordataexchange-crypt-0.0.3-0.20170626215501-b2862e3d0a77" +; ,go-github-com-xordataexchange-crypt-0.0.3-0.20170626215501-b2862e3d0a77) +; ("go-github-com-xiang90-probing-0.0.0-20190116061207-43a291ad63a2" +; ,go-github-com-xiang90-probing-0.0.0-20190116061207-43a291ad63a2) +; ("go-github-com-ugorji-go-1.1.4" ,go-github-com-ugorji-go-1.1.4) +; ("go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5" +; ,go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5) +; ("go-github-com-stretchr-testify-1.2.2" +; ,go-github-com-stretchr-testify-1.2.2) +; ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) +; ("go-github-com-spf13-jwalterweatherman-1.0.0" +; ,go-github-com-spf13-jwalterweatherman-1.0.0) +; ("go-github-com-spf13-cast-1.3.0" ,go-github-com-spf13-cast-1.3.0) +; ("go-github-com-spf13-afero-1.1.2" ,go-github-com-spf13-afero-1.1.2) +; ("go-github-com-soheilhy-cmux-0.1.4" +; ,go-github-com-soheilhy-cmux-0.1.4) +; ("go-github-com-prometheus-client-golang-0.9.3" +; ,go-github-com-prometheus-client-golang-0.9.3) +; ("go-github-com-pelletier-go-toml-1.2.0" +; ,go-github-com-pelletier-go-toml-1.2.0) +; ("go-github-com-mitchellh-mapstructure-1.1.2" +; ,go-github-com-mitchellh-mapstructure-1.1.2) +; ("go-github-com-magiconair-properties-1.8.0" +; ,go-github-com-magiconair-properties-1.8.0) +; ("go-github-com-jonboulle-clockwork-0.1.0" +; ,go-github-com-jonboulle-clockwork-0.1.0) +; ("go-github-com-hashicorp-hcl-1.0.0" +; ,go-github-com-hashicorp-hcl-1.0.0) +; ("go-github-com-grpc-ecosystem-grpc-gateway-1.9.0" +; ,go-github-com-grpc-ecosystem-grpc-gateway-1.9.0) +; ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" +; ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) +; ("go-github-com-grpc-ecosystem-go-grpc-middleware-1.0.0" +; ,go-github-com-grpc-ecosystem-go-grpc-middleware-1.0.0) +; ("go-github-com-gorilla-websocket-1.4.0" +; ,go-github-com-gorilla-websocket-1.4.0) +; ("go-github-com-google-btree-1.0.0" ,go-github-com-google-btree-1.0.0) +; ("go-github-com-golang-groupcache-0.0.0-20190129154638-5b532d6fd5ef" +; ,go-github-com-golang-groupcache-0.0.0-20190129154638-5b532d6fd5ef) +; ("go-github-com-gogo-protobuf-1.2.1" +; ,go-github-com-gogo-protobuf-1.2.1) +; ("go-github-com-fsnotify-fsnotify-1.4.7" +; ,go-github-com-fsnotify-fsnotify-1.4.7) +; ("go-github-com-dgrijalva-jwt-go-3.2.0+incompatible" +; ,go-github-com-dgrijalva-jwt-go-3.2.0+incompatible) +; ("go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f" +; ,go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f) +; ("go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e" +; ,go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e) +; ("go-github-com-coreos-go-semver-0.2.0" +; ,go-github-com-coreos-go-semver-0.2.0) +; ("go-github-com-coreos-etcd-3.3.10+incompatible" +; ,go-github-com-coreos-etcd-3.3.10+incompatible) +; ("go-github-com-coreos-bbolt-1.3.2" ,go-github-com-coreos-bbolt-1.3.2) +; ("go-github-com-armon-consul-api-0.0.0-20180202201655-eb2c6b5be1b6" +; ,go-github-com-armon-consul-api-0.0.0-20180202201655-eb2c6b5be1b6))) +; (home-page "https://github.com/spf13/viper") +; (synopsis "Install") +; (description "Many Go projects are built using Viper including:") +; (license license:expat))) +; +;(define-public go-github-com-spf13-cobra-1.0.0 +; (package +; (name "go-github-com-spf13-cobra") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/spf13/cobra") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0vbppqqhby302a5ayn0296jqr71qkcd4c9am7wzsk6z71fwdsa7h")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/spf13/cobra")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) +; ("go-github-com-spf13-viper-1.4.0" ,go-github-com-spf13-viper-1.4.0) +; ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) +; ("go-github-com-mitchellh-go-homedir-1.1.0" +; ,go-github-com-mitchellh-go-homedir-1.1.0) +; ("go-github-com-inconshreveable-mousetrap-1.0.0" +; ,go-github-com-inconshreveable-mousetrap-1.0.0) +; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" +; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0))) +; (home-page "https://github.com/spf13/cobra") +; (synopsis "Table of Contents") +; (description +; "Package cobra is a commander providing a simple interface to create powerful modern CLI interfaces. +;In addition to providing an interface, Cobra simultaneously provides a controller to organize your application code. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-continuity-0.1.0 +; (package +; (name "go-github-com-containerd-continuity") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/continuity") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1h756l1xc31sc4zc1d3hmh64kl9qm5vpbbw0c93hrasn51ki96yz")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/continuity")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" +; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) +; ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" +; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) +; ("go-github-com-spf13-cobra-1.0.0" ,go-github-com-spf13-cobra-1.0.0) +; ("go-github-com-sirupsen-logrus-1.7.0" +; ,go-github-com-sirupsen-logrus-1.7.0) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-go-digest-1.0.0" +; ,go-github-com-opencontainers-go-digest-1.0.0) +; ("go-github-com-golang-protobuf-1.3.5" +; ,go-github-com-golang-protobuf-1.3.5) +; ("go-github-com-dustin-go-humanize-1.0.0" +; ,go-github-com-dustin-go-humanize-1.0.0) +; ("go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898" +; ,go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898))) +; (home-page "https://github.com/containerd/continuity") +; (synopsis "continuity") +; (description +; "This package provides a transport-agnostic, filesystem metadata manifest system") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-fifo-1.0.0 +; (package +; (name "go-github-com-containerd-fifo") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/fifo") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1l6jy9b4mjcj7pbz1n79zmipni1dz60rf5n66vn5p2ggavbq7h1q")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/fifo")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" +; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) +; (home-page "https://github.com/containerd/fifo") +; (synopsis "fifo") +; (description "Go package for handling fifos in a sane way.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-go-cni-1.0.2 +; (package +; (name "go-github-com-containerd-go-cni") +; (version "1.0.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/go-cni") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1hqwy402qy04slz2vj05s517mhdbmmkdjs6nhfnk184a730whgv6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/go-cni")) +; (propagated-inputs +; `(("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-onsi-gomega-1.7.1" ,go-github-com-onsi-gomega-1.7.1) +; ("go-github-com-onsi-ginkgo-1.10.3" ,go-github-com-onsi-ginkgo-1.10.3) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1) +; ("go-github-com-containernetworking-cni-0.8.0" +; ,go-github-com-containernetworking-cni-0.8.0))) +; (home-page "https://github.com/containerd/go-cni") +; (synopsis "go-cni") +; (description +; "This package provides a generic CNI library to provide APIs for CNI plugin interactions. The library provides APIs to:") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-go-runc-1.0.0 +; (package +; (name "go-github-com-containerd-go-runc") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/go-runc") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0xk30dzzxmd83bnfyilplizlxh1pg1gqz2jrq9wz9rqqkxazc03n")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/go-runc")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f" +; ,go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f) +; ("go-github-com-sirupsen-logrus-1.7.0" +; ,go-github-com-sirupsen-logrus-1.7.0) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-runtime-spec-1.0.2" +; ,go-github-com-opencontainers-runtime-spec-1.0.2) +; ("go-github-com-containerd-console-1.0.1" +; ,go-github-com-containerd-console-1.0.1))) +; (home-page "https://github.com/containerd/go-runc") +; (synopsis "go-runc") +; (description +; "This is a package for consuming the @url{https://github.com/opencontainers/runc,runc} binary in your Go applications. +;It tries to expose all the settings and features of the runc CLI. If there is something missing then add it, its opensource!") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-zfs-0.0.0-20210315114300-dde8f0fda960 +; (package +; (name "go-github-com-containerd-zfs") +; (version "0.0.0-20210315114300-dde8f0fda960") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/zfs") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ag5p2vqzdavq66wb1z42yw5jzrncsi97g8qk2x9nq51z1nj8rdi")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/zfs")) +; (propagated-inputs +; `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible" +; ,go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible) +; ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" +; ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) +; ("go-github-com-containerd-containerd-1.5.0-beta.3" +; ,go-github-com-containerd-containerd-1.5.0-beta.3))) +; (home-page "https://github.com/containerd/zfs") +; (synopsis "ZFS snapshotter plugin") +; (description "ZFS snapshotter plugin for containerd.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-containerd-1.5.0-beta.4 +; (package +; (name "go-github-com-containerd-containerd") +; (version "1.5.0-beta.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/containerd") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "039c26mjq8qs1s4kbx76fc99wnmnx165bqn16b2b9gyvxcphs7iv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/containerd")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) +; ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) +; ("go-github-com-golang-protobuf-1.3.5" +; ,go-github-com-golang-protobuf-1.3.5) +; ("go-github-com-gogo-googleapis-1.3.2" +; ,go-github-com-gogo-googleapis-1.3.2) +; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" +; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) +; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) +; ("go-k8s-io-cri-api-0.20.1" ,go-k8s-io-cri-api-0.20.1) +; ("go-k8s-io-component-base-0.20.1" ,go-k8s-io-component-base-0.20.1) +; ("go-k8s-io-client-go-0.20.1" ,go-k8s-io-client-go-0.20.1) +; ("go-k8s-io-apiserver-0.20.1" ,go-k8s-io-apiserver-0.20.1) +; ("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) +; ("go-k8s-io-api-0.20.1" ,go-k8s-io-api-0.20.1) +; ("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) +; ("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" +; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) +; ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" +; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) +; ("go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b" +; ,go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b) +; ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) +; ("go-github-com-tchap-go-patricia-2.2.6+incompatible" +; ,go-github-com-tchap-go-patricia-2.2.6+incompatible) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-sirupsen-logrus-1.7.0" +; ,go-github-com-sirupsen-logrus-1.7.0) +; ("go-github-com-prometheus-client-golang-1.7.1" +; ,go-github-com-prometheus-client-golang-1.7.1) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-selinux-1.8.0" +; ,go-github-com-opencontainers-selinux-1.8.0) +; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" +; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) +; ("go-github-com-opencontainers-runc-1.0.0-rc93" +; ,go-github-com-opencontainers-runc-1.0.0-rc93) +; ("go-github-com-opencontainers-image-spec-1.0.1" +; ,go-github-com-opencontainers-image-spec-1.0.1) +; ("go-github-com-opencontainers-go-digest-1.0.0" +; ,go-github-com-opencontainers-go-digest-1.0.0) +; ("go-github-com-moby-sys-symlink-0.1.0" +; ,go-github-com-moby-sys-symlink-0.1.0) +; ("go-github-com-moby-sys-mountinfo-0.4.1" +; ,go-github-com-moby-sys-mountinfo-0.4.1) +; ("go-github-com-klauspost-compress-1.11.3" +; ,go-github-com-klauspost-compress-1.11.3) +; ("go-github-com-imdario-mergo-0.3.11" +; ,go-github-com-imdario-mergo-0.3.11) +; ("go-github-com-hashicorp-go-multierror-1.0.0" +; ,go-github-com-hashicorp-go-multierror-1.0.0) +; ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" +; ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) +; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) +; ("go-github-com-google-go-cmp-0.5.4" +; ,go-github-com-google-go-cmp-0.5.4) +; ("go-github-com-gogo-protobuf-1.3.2" +; ,go-github-com-gogo-protobuf-1.3.2) +; ("go-github-com-fsnotify-fsnotify-1.4.9" +; ,go-github-com-fsnotify-fsnotify-1.4.9) +; ("go-github-com-emicklei-go-restful-2.9.5+incompatible" +; ,go-github-com-emicklei-go-restful-2.9.5+incompatible) +; ("go-github-com-docker-go-units-0.4.0" +; ,go-github-com-docker-go-units-0.4.0) +; ("go-github-com-docker-go-metrics-0.0.1" +; ,go-github-com-docker-go-metrics-0.0.1) +; ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" +; ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1) +; ("go-github-com-coreos-go-systemd-v22-22.1.0" +; ,go-github-com-coreos-go-systemd-v22-22.1.0) +; ("go-github-com-containernetworking-plugins-0.8.6" +; ,go-github-com-containernetworking-plugins-0.8.6) +; ("go-github-com-containerd-zfs-0.0.0-20210315114300-dde8f0fda960" +; ,go-github-com-containerd-zfs-0.0.0-20210315114300-dde8f0fda960) +; ("go-github-com-containerd-typeurl-1.0.1" +; ,go-github-com-containerd-typeurl-1.0.1) +; ("go-github-com-containerd-ttrpc-1.0.2" +; ,go-github-com-containerd-ttrpc-1.0.2) +; ("go-github-com-containerd-nri-0.0.0-20210316161719-dbaa18c31c14" +; ,go-github-com-containerd-nri-0.0.0-20210316161719-dbaa18c31c14) +; ("go-github-com-containerd-imgcrypt-1.1.1-0.20210312161619-7ed62a527887" +; ,go-github-com-containerd-imgcrypt-1.1.1-0.20210312161619-7ed62a527887) +; ("go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0" +; ,go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0) +; ("go-github-com-containerd-go-cni-1.0.1" +; ,go-github-com-containerd-go-cni-1.0.1) +; ("go-github-com-containerd-fifo-0.0.0-20210316144830-115abcc95a1d" +; ,go-github-com-containerd-fifo-0.0.0-20210316144830-115abcc95a1d) +; ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" +; ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) +; ("go-github-com-containerd-console-1.0.1" +; ,go-github-com-containerd-console-1.0.1) +; ("go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68" +; ,go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68) +; ("go-github-com-containerd-btrfs-0.0.0-20210316141732-918d888fb676" +; ,go-github-com-containerd-btrfs-0.0.0-20210316141732-918d888fb676) +; ("go-github-com-containerd-aufs-0.0.0-20210316121734-20793ff83c97" +; ,go-github-com-containerd-aufs-0.0.0-20210316121734-20793ff83c97) +; ("go-github-com-microsoft-hcsshim-0.8.15" +; ,go-github-com-microsoft-hcsshim-0.8.15) +; ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" +; ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3) +; ("go-github-com-burntsushi-toml-0.3.1" +; ,go-github-com-burntsushi-toml-0.3.1))) +; (home-page "https://github.com/containerd/containerd") +; (synopsis "Now Recruiting") +; (description +; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-sys-0.0.0-20210324051608-47abb6519492 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20210324051608-47abb6519492") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19g0pa8lazad5kcq396ggg9x1d6sx39rw9brz3hklx71gg1jd3ja")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-microsoft-hcsshim-0.8.16 +; (package +; (name "go-github-com-microsoft-hcsshim") +; (version "0.8.16") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/microsoft/hcsshim") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "15bxkqq4zavwspx3ga8j3vx9jrc7l0jazsa6cs6im9liy6xhkbd6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/Microsoft/hcsshim")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) +; ("go-golang-org-x-sys-0.0.0-20210324051608-47abb6519492" +; ,go-golang-org-x-sys-0.0.0-20210324051608-47abb6519492) +; ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" +; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) +; ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) +; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) +; ("go-github-com-sirupsen-logrus-1.7.0" +; ,go-github-com-sirupsen-logrus-1.7.0) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" +; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) +; ("go-github-com-gogo-protobuf-1.3.2" +; ,go-github-com-gogo-protobuf-1.3.2) +; ("go-github-com-containerd-typeurl-1.0.1" +; ,go-github-com-containerd-typeurl-1.0.1) +; ("go-github-com-containerd-ttrpc-1.0.2" +; ,go-github-com-containerd-ttrpc-1.0.2) +; ("go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0" +; ,go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0) +; ("go-github-com-containerd-containerd-1.5.0-beta.4" +; ,go-github-com-containerd-containerd-1.5.0-beta.4) +; ("go-github-com-containerd-console-1.0.1" +; ,go-github-com-containerd-console-1.0.1) +; ("go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68" +; ,go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68) +; ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" +; ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3))) +; (home-page "https://github.com/Microsoft/hcsshim") +; (synopsis "hcsshim") +; (description +; "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") +; (license license:expat))) +; +;(define-public go-github-com-microsoft-go-winio-0.4.17-0.20210324224401-5516f17a5958 +; (package +; (name "go-github-com-microsoft-go-winio") +; (version "0.4.17-0.20210324224401-5516f17a5958") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/microsoft/go-winio") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0gmgiak4x4gdyr17zm4b9vvharflk9pz5aj5jayh9hq50133b2f9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/Microsoft/go-winio")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" +; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) +; ("go-github-com-sirupsen-logrus-1.7.0" +; ,go-github-com-sirupsen-logrus-1.7.0) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) +; (home-page "https://github.com/Microsoft/go-winio") +; (synopsis "go-winio") +; (description +; "This repository contains utilities for efficiently performing Win32 IO operations in +;Go. Currently, this is focused on accessing named pipes and other file handles, and +;for using named pipes as a net transport.") +; (license license:expat))) +; +;(define-public go-github-com-containerd-aufs-0.0.0-20210316121734-20793ff83c97 +; (package +; (name "go-github-com-containerd-aufs") +; (version "0.0.0-20210316121734-20793ff83c97") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/aufs") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ipr8pafb2xpkchfvnxjcfx9pb48mjr9k8krj9gnagssxhynbkd5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/aufs")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" +; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" +; ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) +; ("go-github-com-containerd-containerd-1.5.0-beta.3" +; ,go-github-com-containerd-containerd-1.5.0-beta.3))) +; (home-page "https://github.com/containerd/aufs") +; (synopsis "aufs snapshotter") +; (description +; "AUFS implementation of the snapshot interface for containerd.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-btrfs-0.0.0-20210316141732-918d888fb676 +; (package +; (name "go-github-com-containerd-btrfs") +; (version "0.0.0-20210316141732-918d888fb676") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/btrfs") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1yf38gg41y1v12m0cl81r9q7d13170a4npzqxhbz7qn32zr23kzn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/btrfs")) +; (propagated-inputs +; `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) +; (home-page "https://github.com/containerd/btrfs") +; (synopsis "go-btrfs") +; (description +; "Package btrfs provides bindings for working with btrfs partitions from Go. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-fifo-0.0.0-20210316144830-115abcc95a1d +; (package +; (name "go-github-com-containerd-fifo") +; (version "0.0.0-20210316144830-115abcc95a1d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/fifo") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0hqna43p8r6g3xv8g8n985hq1nzipsvjiwm70xpbzbgynh4ym6z5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/fifo")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" +; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) +; (home-page "https://github.com/containerd/fifo") +; (synopsis "fifo") +; (description "Go package for handling fifos in a sane way.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0 +; (package +; (name "go-github-com-containerd-go-runc") +; (version "0.0.0-20201020171139-16b287bc67d0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/go-runc") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0xk30dzzxmd83bnfyilplizlxh1pg1gqz2jrq9wz9rqqkxazc03n")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/go-runc")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f" +; ,go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f) +; ("go-github-com-sirupsen-logrus-1.7.0" +; ,go-github-com-sirupsen-logrus-1.7.0) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-runtime-spec-1.0.2" +; ,go-github-com-opencontainers-runtime-spec-1.0.2) +; ("go-github-com-containerd-console-1.0.1" +; ,go-github-com-containerd-console-1.0.1))) +; (home-page "https://github.com/containerd/go-runc") +; (synopsis "go-runc") +; (description +; "This is a package for consuming the @url{https://github.com/opencontainers/runc,runc} binary in your Go applications. +;It tries to expose all the settings and features of the runc CLI. If there is something missing then add it, its opensource!") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-imgcrypt-1.1.1-0.20210312161619-7ed62a527887 +; (package +; (name "go-github-com-containerd-imgcrypt") +; (version "1.1.1-0.20210312161619-7ed62a527887") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/imgcrypt") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "16pgcc0w8m2cxhfjzmmd2h3n6mxzc1nlghrhgjlx0lf4q96hv904")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/imgcrypt")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) +; ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" +; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) +; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) +; ("go-github-com-sirupsen-logrus-1.7.0" +; ,go-github-com-sirupsen-logrus-1.7.0) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" +; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) +; ("go-github-com-opencontainers-image-spec-1.0.1" +; ,go-github-com-opencontainers-image-spec-1.0.1) +; ("go-github-com-opencontainers-go-digest-1.0.0" +; ,go-github-com-opencontainers-go-digest-1.0.0) +; ("go-github-com-gogo-protobuf-1.3.2" +; ,go-github-com-gogo-protobuf-1.3.2) +; ("go-github-com-containers-ocicrypt-1.1.0" +; ,go-github-com-containers-ocicrypt-1.1.0) +; ("go-github-com-containerd-typeurl-1.0.1" +; ,go-github-com-containerd-typeurl-1.0.1) +; ("go-github-com-containerd-containerd-1.5.0-beta.3" +; ,go-github-com-containerd-containerd-1.5.0-beta.3) +; ("go-github-com-containerd-console-1.0.1" +; ,go-github-com-containerd-console-1.0.1) +; ("go-github-com-microsoft-hcsshim-0.8.15" +; ,go-github-com-microsoft-hcsshim-0.8.15) +; ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" +; ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3))) +; (home-page "https://github.com/containerd/imgcrypt") +; (synopsis "imgcrypt image encryption library and command line tool") +; (description +; "Project @code{imgcrypt} is a non-core subproject of containerd.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-nri-0.0.0-20210316161719-dbaa18c31c14 +; (package +; (name "go-github-com-containerd-nri") +; (version "0.0.0-20210316161719-dbaa18c31c14") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/nri") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0kyrvagbga6yib7il0m4zvqz977a4wsv5lgjd3ix53xmr4h7fgm7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/nri")) +; (propagated-inputs +; `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-containerd-containerd-1.5.0-beta.3" +; ,go-github-com-containerd-containerd-1.5.0-beta.3))) +; (home-page "https://github.com/containerd/nri") +; (synopsis "nri - Node Resource Interface") +; (description +; "This project is a WIP for a new, CNI like, interface for managing resources on a node for Pods and Containers.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-zfs-0.0.0-20210324211415-d5c4544f0433 +; (package +; (name "go-github-com-containerd-zfs") +; (version "0.0.0-20210324211415-d5c4544f0433") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/zfs") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1wsqwqv2pyn05asgpm9clgpwq9b8b0fjk4khzkjvscrf5j4v1rx4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/zfs")) +; (propagated-inputs +; `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible" +; ,go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible) +; ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" +; ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) +; ("go-github-com-containerd-containerd-1.5.0-beta.3" +; ,go-github-com-containerd-containerd-1.5.0-beta.3))) +; (home-page "https://github.com/containerd/zfs") +; (synopsis "ZFS snapshotter plugin") +; (description "ZFS snapshotter plugin for containerd.") +; (license license:asl2.0))) +; +;(define-public go-k8s-io-apiserver-0.20.4 +; (package +; (name "go-k8s-io-apiserver") +; (version "0.20.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes/apiserver") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1gffl7z6bvi46v0fvphbak4waddsgf4pd5w16khgrzl1sv9skn61")))) +; (build-system go-build-system) +; (arguments '(#:import-path "k8s.io/apiserver")) +; (propagated-inputs +; `(("go-k8s-io-component-base-0.20.4" ,go-k8s-io-component-base-0.20.4) +; ("go-k8s-io-client-go-0.20.4" ,go-k8s-io-client-go-0.20.4) +; ("go-k8s-io-apimachinery-0.20.4" ,go-k8s-io-apimachinery-0.20.4) +; ("go-k8s-io-api-0.20.4" ,go-k8s-io-api-0.20.4) +; ("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) +; ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.2" +; ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.2) +; ("go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.14" +; ,go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.14) +; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" +; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) +; ("go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd" +; ,go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd) +; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) +; ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) +; ("go-gopkg-in-square-go-jose-v2-2.2.2" +; ,go-gopkg-in-square-go-jose-v2-2.2.2) +; ("go-gopkg-in-natefinch-lumberjack-v2-2.0.0" +; ,go-gopkg-in-natefinch-lumberjack-v2-2.0.0) +; ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) +; ("go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a" +; ,go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a) +; ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" +; ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) +; ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" +; ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) +; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" +; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) +; ("go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0" +; ,go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0) +; ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) +; ("go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489" +; ,go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489) +; ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) +; ("go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5" +; ,go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) +; ("go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021" +; ,go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822" +; ,go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822) +; ("go-github-com-mailru-easyjson-0.7.0" +; ,go-github-com-mailru-easyjson-0.7.0) +; ("go-github-com-hashicorp-golang-lru-0.5.1" +; ,go-github-com-hashicorp-golang-lru-0.5.1) +; ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" +; ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) +; ("go-github-com-gorilla-websocket-1.4.2" +; ,go-github-com-gorilla-websocket-1.4.2) +; ("go-github-com-googleapis-gnostic-0.4.1" +; ,go-github-com-googleapis-gnostic-0.4.1) +; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) +; ("go-github-com-google-gofuzz-1.1.0" +; ,go-github-com-google-gofuzz-1.1.0) +; ("go-github-com-google-go-cmp-0.5.2" +; ,go-github-com-google-go-cmp-0.5.2) +; ("go-github-com-gogo-protobuf-1.3.1" +; ,go-github-com-gogo-protobuf-1.3.1) +; ("go-github-com-go-openapi-spec-0.19.3" +; ,go-github-com-go-openapi-spec-0.19.3) +; ("go-github-com-evanphx-json-patch-4.9.0+incompatible" +; ,go-github-com-evanphx-json-patch-4.9.0+incompatible) +; ("go-github-com-emicklei-go-restful-2.9.5+incompatible" +; ,go-github-com-emicklei-go-restful-2.9.5+incompatible) +; ("go-github-com-dustin-go-humanize-1.0.0" +; ,go-github-com-dustin-go-humanize-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1) +; ("go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f" +; ,go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f) +; ("go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e" +; ,go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e) +; ("go-github-com-coreos-go-semver-0.3.0" +; ,go-github-com-coreos-go-semver-0.3.0) +; ("go-github-com-coreos-go-oidc-2.1.0+incompatible" +; ,go-github-com-coreos-go-oidc-2.1.0+incompatible))) +; (home-page "https://k8s.io/apiserver") +; (synopsis "apiserver") +; (description +; "Generic library for building a Kubernetes aggregated API server.") +; (license license:asl2.0))) +; +;(define-public go-k8s-io-api-0.20.4 +; (package +; (name "go-k8s-io-api") +; (version "0.20.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes/api") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0hjckd94vpsr690kwx7dad8qlb8xjg2bz5ms315s9h6wc5cqwvgy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "k8s.io/api")) +; (propagated-inputs +; `(("go-k8s-io-apimachinery-0.20.4" ,go-k8s-io-apimachinery-0.20.4) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-gogo-protobuf-1.3.1" +; ,go-github-com-gogo-protobuf-1.3.1))) +; (home-page "https://k8s.io/api") +; (synopsis "api") +; (description +; "Schema of the external API types that are served by the Kubernetes API server.") +; (license license:asl2.0))) +; +;(define-public go-k8s-io-apimachinery-0.20.4 +; (package +; (name "go-k8s-io-apimachinery") +; (version "0.20.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes/apimachinery") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "15qc12lbzpd4lgajy0rv24b3ky4hhg5y1l37qxdfiakhz91didfw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "k8s.io/apimachinery")) +; (propagated-inputs +; `(("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) +; ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.2" +; ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.2) +; ("go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd" +; ,go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd) +; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) +; ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) +; ("go-gopkg-in-inf-v0-0.9.1" ,go-gopkg-in-inf-v0-0.9.1) +; ("go-google-golang-org-protobuf-1.25.0" +; ,go-google-golang-org-protobuf-1.25.0) +; ("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" +; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) +; ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) +; ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" +; ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) +; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" +; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-onsi-gomega-1.7.0" ,go-github-com-onsi-gomega-1.7.0) +; ("go-github-com-onsi-ginkgo-1.11.0" ,go-github-com-onsi-ginkgo-1.11.0) +; ("go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f" +; ,go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f) +; ("go-github-com-modern-go-reflect2-1.0.1" +; ,go-github-com-modern-go-reflect2-1.0.1) +; ("go-github-com-json-iterator-go-1.1.10" +; ,go-github-com-json-iterator-go-1.1.10) +; ("go-github-com-hashicorp-golang-lru-0.5.1" +; ,go-github-com-hashicorp-golang-lru-0.5.1) +; ("go-github-com-googleapis-gnostic-0.4.1" +; ,go-github-com-googleapis-gnostic-0.4.1) +; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) +; ("go-github-com-google-gofuzz-1.1.0" +; ,go-github-com-google-gofuzz-1.1.0) +; ("go-github-com-google-go-cmp-0.5.2" +; ,go-github-com-google-go-cmp-0.5.2) +; ("go-github-com-golang-protobuf-1.4.3" +; ,go-github-com-golang-protobuf-1.4.3) +; ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" +; ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) +; ("go-github-com-gogo-protobuf-1.3.1" +; ,go-github-com-gogo-protobuf-1.3.1) +; ("go-github-com-fsnotify-fsnotify-1.4.9" +; ,go-github-com-fsnotify-fsnotify-1.4.9) +; ("go-github-com-evanphx-json-patch-4.9.0+incompatible" +; ,go-github-com-evanphx-json-patch-4.9.0+incompatible) +; ("go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153" +; ,go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153) +; ("go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96" +; ,go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://k8s.io/apimachinery") +; (synopsis "apimachinery") +; (description +; "Scheme, typing, encoding, decoding, and conversion packages for Kubernetes and Kubernetes-like API objects.") +; (license license:asl2.0))) +; +;(define-public go-k8s-io-client-go-0.20.4 +; (package +; (name "go-k8s-io-client-go") +; (version "0.20.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes/client-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0g8x2d59qm6068rql63c0mdhcjz9jsyyf7a5fdg1hyf88dvigfcx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "k8s.io/client-go")) +; (propagated-inputs +; `(("go-k8s-io-apimachinery-0.20.4" ,go-k8s-io-apimachinery-0.20.4) +; ("go-k8s-io-api-0.20.4" ,go-k8s-io-api-0.20.4) +; ("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) +; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" +; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) +; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) +; ("go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e" +; ,go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e) +; ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" +; ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) +; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" +; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) +; ("go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0" +; ,go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) +; ("go-github-com-peterbourgon-diskv-2.0.1+incompatible" +; ,go-github-com-peterbourgon-diskv-2.0.1+incompatible) +; ("go-github-com-imdario-mergo-0.3.5" +; ,go-github-com-imdario-mergo-0.3.5) +; ("go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7" +; ,go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7) +; ("go-github-com-googleapis-gnostic-0.4.1" +; ,go-github-com-googleapis-gnostic-0.4.1) +; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) +; ("go-github-com-google-gofuzz-1.1.0" +; ,go-github-com-google-gofuzz-1.1.0) +; ("go-github-com-google-go-cmp-0.5.2" +; ,go-github-com-google-go-cmp-0.5.2) +; ("go-github-com-golang-protobuf-1.4.3" +; ,go-github-com-golang-protobuf-1.4.3) +; ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" +; ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) +; ("go-github-com-gogo-protobuf-1.3.1" +; ,go-github-com-gogo-protobuf-1.3.1) +; ("go-github-com-evanphx-json-patch-4.9.0+incompatible" +; ,go-github-com-evanphx-json-patch-4.9.0+incompatible) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1) +; ("go-github-com-azure-go-autorest-autorest-adal-0.9.5" +; ,go-github-com-azure-go-autorest-autorest-adal-0.9.5) +; ("go-github-com-azure-go-autorest-autorest-0.11.1" +; ,go-github-com-azure-go-autorest-autorest-0.11.1) +; ("go-cloud-google-com-go-0.54.0" ,go-cloud-google-com-go-0.54.0))) +; (home-page "https://k8s.io/client-go") +; (synopsis "client-go") +; (description +; "Go clients for talking to a @url{http://kubernetes.io/,kubernetes} cluster.") +; (license license:asl2.0))) +; +;(define-public go-k8s-io-component-base-0.20.4 +; (package +; (name "go-k8s-io-component-base") +; (version "0.20.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes/component-base") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "02b782p63h8z3pg64i1kfgkmxwslxpyl6afkhd1agbig9zd6g7w8")))) +; (build-system go-build-system) +; (arguments '(#:import-path "k8s.io/component-base")) +; (propagated-inputs +; `(("go-k8s-io-client-go-0.20.4" ,go-k8s-io-client-go-0.20.4) +; ("go-k8s-io-apimachinery-0.20.4" ,go-k8s-io-apimachinery-0.20.4) +; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" +; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) +; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) +; ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) +; ("go-go-uber-org-multierr-1.1.0" ,go-go-uber-org-multierr-1.1.0) +; ("go-go-uber-org-atomic-1.4.0" ,go-go-uber-org-atomic-1.4.0) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) +; ("go-github-com-sirupsen-logrus-1.6.0" +; ,go-github-com-sirupsen-logrus-1.6.0) +; ("go-github-com-prometheus-procfs-0.2.0" +; ,go-github-com-prometheus-procfs-0.2.0) +; ("go-github-com-prometheus-common-0.10.0" +; ,go-github-com-prometheus-common-0.10.0) +; ("go-github-com-prometheus-client-model-0.2.0" +; ,go-github-com-prometheus-client-model-0.2.0) +; ("go-github-com-prometheus-client-golang-1.7.1" +; ,go-github-com-prometheus-client-golang-1.7.1) +; ("go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd" +; ,go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd) +; ("go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369" +; ,go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369) +; ("go-github-com-google-go-cmp-0.5.2" +; ,go-github-com-google-go-cmp-0.5.2) +; ("go-github-com-go-logr-logr-0.2.0" ,go-github-com-go-logr-logr-0.2.0) +; ("go-github-com-blang-semver-3.5.1+incompatible" +; ,go-github-com-blang-semver-3.5.1+incompatible))) +; (home-page "https://k8s.io/component-base") +; (synopsis "component-base") +; (description +; "Implement KEP 32: @url{https://github.com/kubernetes/enhancements/blob/master/keps/sig-cluster-lifecycle/wgs/783-component-base/README.md,https://github.com/kubernetes/enhancements/blob/master/keps/sig-cluster-lifecycle/wgs/783-component-base/README.md}") +; (license license:asl2.0))) +; +;(define-public go-k8s-io-cri-api-0.20.4 +; (package +; (name "go-k8s-io-cri-api") +; (version "0.20.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes/cri-api") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1r98d0kv42sijdg3404xx2g5jj0zixvfagkky2zla12p68ajm4xr")))) +; (build-system go-build-system) +; (arguments '(#:import-path "k8s.io/cri-api")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" +; ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) +; ("go-google-golang-org-protobuf-1.25.0" +; ,go-google-golang-org-protobuf-1.25.0) +; ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) +; ("go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a" +; ,go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a) +; ("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" +; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) +; ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) +; ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" +; ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) +; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" +; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-kr-pretty-0.2.0" ,go-github-com-kr-pretty-0.2.0) +; ("go-github-com-google-go-cmp-0.5.2" +; ,go-github-com-google-go-cmp-0.5.2) +; ("go-github-com-golang-protobuf-1.4.3" +; ,go-github-com-golang-protobuf-1.4.3) +; ("go-github-com-gogo-protobuf-1.3.1" +; ,go-github-com-gogo-protobuf-1.3.1) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://k8s.io/cri-api") +; (synopsis "Purpose") +; (description +; "This repository contains the definitions for the Container Runtime Interface (CRI). +;CRI is a plugin interface which enables kubelet to use a wide variety of container runtimes, +;without the need to recompile. CRI consists of a protocol buffers and gRPC API.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-containerd-1.5.0-rc.0 +; (package +; (name "go-github-com-containerd-containerd") +; (version "1.5.0-rc.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/containerd") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "148z6782bj0vy3vzbhg2xf53g14llvxfsmdsqkz6x5n49rm6xr4i")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/containerd")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) +; ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) +; ("go-github-com-golang-protobuf-1.3.5" +; ,go-github-com-golang-protobuf-1.3.5) +; ("go-github-com-gogo-googleapis-1.3.2" +; ,go-github-com-gogo-googleapis-1.3.2) +; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" +; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) +; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) +; ("go-k8s-io-cri-api-0.20.4" ,go-k8s-io-cri-api-0.20.4) +; ("go-k8s-io-component-base-0.20.4" ,go-k8s-io-component-base-0.20.4) +; ("go-k8s-io-client-go-0.20.4" ,go-k8s-io-client-go-0.20.4) +; ("go-k8s-io-apiserver-0.20.4" ,go-k8s-io-apiserver-0.20.4) +; ("go-k8s-io-apimachinery-0.20.4" ,go-k8s-io-apimachinery-0.20.4) +; ("go-k8s-io-api-0.20.4" ,go-k8s-io-api-0.20.4) +; ("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) +; ("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" +; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) +; ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" +; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) +; ("go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b" +; ,go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b) +; ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) +; ("go-github-com-tchap-go-patricia-2.2.6+incompatible" +; ,go-github-com-tchap-go-patricia-2.2.6+incompatible) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-sirupsen-logrus-1.7.0" +; ,go-github-com-sirupsen-logrus-1.7.0) +; ("go-github-com-prometheus-client-golang-1.7.1" +; ,go-github-com-prometheus-client-golang-1.7.1) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-pelletier-go-toml-1.8.1" +; ,go-github-com-pelletier-go-toml-1.8.1) +; ("go-github-com-opencontainers-selinux-1.8.0" +; ,go-github-com-opencontainers-selinux-1.8.0) +; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" +; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) +; ("go-github-com-opencontainers-runc-1.0.0-rc93" +; ,go-github-com-opencontainers-runc-1.0.0-rc93) +; ("go-github-com-opencontainers-image-spec-1.0.1" +; ,go-github-com-opencontainers-image-spec-1.0.1) +; ("go-github-com-opencontainers-go-digest-1.0.0" +; ,go-github-com-opencontainers-go-digest-1.0.0) +; ("go-github-com-moby-sys-symlink-0.1.0" +; ,go-github-com-moby-sys-symlink-0.1.0) +; ("go-github-com-moby-sys-mountinfo-0.4.1" +; ,go-github-com-moby-sys-mountinfo-0.4.1) +; ("go-github-com-klauspost-compress-1.11.13" +; ,go-github-com-klauspost-compress-1.11.13) +; ("go-github-com-imdario-mergo-0.3.11" +; ,go-github-com-imdario-mergo-0.3.11) +; ("go-github-com-hashicorp-go-multierror-1.0.0" +; ,go-github-com-hashicorp-go-multierror-1.0.0) +; ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" +; ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) +; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) +; ("go-github-com-google-go-cmp-0.5.4" +; ,go-github-com-google-go-cmp-0.5.4) +; ("go-github-com-gogo-protobuf-1.3.2" +; ,go-github-com-gogo-protobuf-1.3.2) +; ("go-github-com-fsnotify-fsnotify-1.4.9" +; ,go-github-com-fsnotify-fsnotify-1.4.9) +; ("go-github-com-emicklei-go-restful-2.9.5+incompatible" +; ,go-github-com-emicklei-go-restful-2.9.5+incompatible) +; ("go-github-com-docker-go-units-0.4.0" +; ,go-github-com-docker-go-units-0.4.0) +; ("go-github-com-docker-go-metrics-0.0.1" +; ,go-github-com-docker-go-metrics-0.0.1) +; ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" +; ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1) +; ("go-github-com-coreos-go-systemd-v22-22.1.0" +; ,go-github-com-coreos-go-systemd-v22-22.1.0) +; ("go-github-com-containernetworking-plugins-0.8.6" +; ,go-github-com-containernetworking-plugins-0.8.6) +; ("go-github-com-containerd-zfs-0.0.0-20210324211415-d5c4544f0433" +; ,go-github-com-containerd-zfs-0.0.0-20210324211415-d5c4544f0433) +; ("go-github-com-containerd-typeurl-1.0.1" +; ,go-github-com-containerd-typeurl-1.0.1) +; ("go-github-com-containerd-ttrpc-1.0.2" +; ,go-github-com-containerd-ttrpc-1.0.2) +; ("go-github-com-containerd-nri-0.0.0-20210316161719-dbaa18c31c14" +; ,go-github-com-containerd-nri-0.0.0-20210316161719-dbaa18c31c14) +; ("go-github-com-containerd-imgcrypt-1.1.1-0.20210312161619-7ed62a527887" +; ,go-github-com-containerd-imgcrypt-1.1.1-0.20210312161619-7ed62a527887) +; ("go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0" +; ,go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0) +; ("go-github-com-containerd-go-cni-1.0.1" +; ,go-github-com-containerd-go-cni-1.0.1) +; ("go-github-com-containerd-fifo-0.0.0-20210316144830-115abcc95a1d" +; ,go-github-com-containerd-fifo-0.0.0-20210316144830-115abcc95a1d) +; ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" +; ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) +; ("go-github-com-containerd-console-1.0.1" +; ,go-github-com-containerd-console-1.0.1) +; ("go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68" +; ,go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68) +; ("go-github-com-containerd-btrfs-0.0.0-20210316141732-918d888fb676" +; ,go-github-com-containerd-btrfs-0.0.0-20210316141732-918d888fb676) +; ("go-github-com-containerd-aufs-0.0.0-20210316121734-20793ff83c97" +; ,go-github-com-containerd-aufs-0.0.0-20210316121734-20793ff83c97) +; ("go-github-com-microsoft-hcsshim-0.8.15" +; ,go-github-com-microsoft-hcsshim-0.8.15) +; ("go-github-com-microsoft-go-winio-0.4.17-0.20210324224401-5516f17a5958" +; ,go-github-com-microsoft-go-winio-0.4.17-0.20210324224401-5516f17a5958))) +; (home-page "https://github.com/containerd/containerd") +; (synopsis "Now Recruiting") +; (description +; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20210322153248-0c34fe9e7dc2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "021szs1czc0xg4chpays7i05dvkax9s8mns314ab01r887kchqxq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (propagated-inputs +; `(("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" +; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) +; ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" +; ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68) +; ("go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110" +; ,go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110))) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-github-com-containers-ocicrypt-1.1.1 +; (package +; (name "go-github-com-containers-ocicrypt") +; (version "1.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containers/ocicrypt") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1l0bfk244sxnakg3my529jsw532pffkmiyk5y1iqblz4mkjfphc8")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containers/ocicrypt")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) +; ("go-gopkg-in-square-go-jose-v2-2.5.1" +; ,go-gopkg-in-square-go-jose-v2-2.5.1) +; ("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) +; ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" +; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) +; ("go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2" +; ,go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2) +; ("go-go-mozilla-org-pkcs7-0.0.0-20200128120323-432b2356ecb1" +; ,go-go-mozilla-org-pkcs7-0.0.0-20200128120323-432b2356ecb1) +; ("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0) +; ("go-github-com-stefanberger-go-pkcs11uri-0.0.0-20201008174630-78d3cae3a980" +; ,go-github-com-stefanberger-go-pkcs11uri-0.0.0-20201008174630-78d3cae3a980) +; ("go-github-com-sirupsen-logrus-1.7.0" +; ,go-github-com-sirupsen-logrus-1.7.0) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-image-spec-1.0.1" +; ,go-github-com-opencontainers-image-spec-1.0.1) +; ("go-github-com-opencontainers-go-digest-1.0.0" +; ,go-github-com-opencontainers-go-digest-1.0.0) +; ("go-github-com-miekg-pkcs11-1.0.3" ,go-github-com-miekg-pkcs11-1.0.3) +; ("go-github-com-google-go-cmp-0.5.2" +; ,go-github-com-google-go-cmp-0.5.2) +; ("go-github-com-golang-protobuf-1.4.3" +; ,go-github-com-golang-protobuf-1.4.3))) +; (home-page "https://github.com/containers/ocicrypt") +; (synopsis "OCIcrypt Library") +; (description +; "The @code{ocicrypt} library is the OCI image spec implementation of container image encryption. More details of the spec can be seen in the @url{https://github.com/opencontainers/image-spec/pull/775,OCI repository}. The purpose of this library is to encode spec structures and consts in code, as well as provide a consistent implementation of image encryption across container runtimes and build tools.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-imgcrypt-1.1.1 +; (package +; (name "go-github-com-containerd-imgcrypt") +; (version "1.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/imgcrypt") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "177fs3p2xzwjsffcxqqllx6wi6ghfyqbvfgn95v3q7a2993yqk4k")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/imgcrypt")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) +; ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" +; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) +; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) +; ("go-github-com-sirupsen-logrus-1.7.0" +; ,go-github-com-sirupsen-logrus-1.7.0) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" +; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) +; ("go-github-com-opencontainers-image-spec-1.0.1" +; ,go-github-com-opencontainers-image-spec-1.0.1) +; ("go-github-com-opencontainers-go-digest-1.0.0" +; ,go-github-com-opencontainers-go-digest-1.0.0) +; ("go-github-com-gogo-protobuf-1.3.2" +; ,go-github-com-gogo-protobuf-1.3.2) +; ("go-github-com-containers-ocicrypt-1.1.1" +; ,go-github-com-containers-ocicrypt-1.1.1) +; ("go-github-com-containerd-typeurl-1.0.1" +; ,go-github-com-containerd-typeurl-1.0.1) +; ("go-github-com-containerd-containerd-1.5.0-rc.0" +; ,go-github-com-containerd-containerd-1.5.0-rc.0) +; ("go-github-com-containerd-console-1.0.2" +; ,go-github-com-containerd-console-1.0.2) +; ("go-github-com-microsoft-hcsshim-0.8.16" +; ,go-github-com-microsoft-hcsshim-0.8.16) +; ("go-github-com-microsoft-go-winio-0.4.17-0.20210324224401-5516f17a5958" +; ,go-github-com-microsoft-go-winio-0.4.17-0.20210324224401-5516f17a5958))) +; (home-page "https://github.com/containerd/imgcrypt") +; (synopsis "imgcrypt image encryption library and command line tool") +; (description +; "Project @code{imgcrypt} is a non-core subproject of containerd.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-nri-0.1.0 +; (package +; (name "go-github-com-containerd-nri") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/nri") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0hqji5qa0n0fdyv9sjdl7mv3bb4fnq9i79pdzlw6m1nigrnb18qp")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/nri")) +; (propagated-inputs +; `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-containerd-containerd-1.5.0-beta.3" +; ,go-github-com-containerd-containerd-1.5.0-beta.3))) +; (home-page "https://github.com/containerd/nri") +; (synopsis "nri - Node Resource Interface") +; (description +; "This project is a WIP for a new, CNI like, interface for managing resources on a node for Pods and Containers.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20200224152610-e50cd9704f63 +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20200224152610-e50cd9704f63") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1392q1dfg4kkfg86w05gsszdlkd0hf424rvich1xzjqbm3ad3lin")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" +; ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) +; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) +; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" +; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-github-com-golang-protobuf-1.3.3" +; ,go-github-com-golang-protobuf-1.3.3))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-protobuf-1.27.1 +; (package +; (name "go-google-golang-org-protobuf") +; (version "1.27.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0aszb7cv8fq1m8akgd4kjyg5q7g5z9fdqnry6057ygq9r8r2yif2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.5.5" +; ,go-github-com-google-go-cmp-0.5.5) +; ("go-github-com-golang-protobuf-1.5.0" +; ,go-github-com-golang-protobuf-1.5.0))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-github-com-containerd-ttrpc-1.1.0 +; (package +; (name "go-github-com-containerd-ttrpc") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/ttrpc") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "13grp3ivmkdyhwpzhnva2w4lv035c4i1m0a2bdci4z44mif86gns")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/ttrpc")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.27.1" +; ,go-google-golang-org-protobuf-1.27.1) +; ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) +; ("go-google-golang-org-genproto-0.0.0-20200224152610-e50cd9704f63" +; ,go-google-golang-org-genproto-0.0.0-20200224152610-e50cd9704f63) +; ("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" +; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) +; ("go-github-com-sirupsen-logrus-1.8.1" +; ,go-github-com-sirupsen-logrus-1.8.1) +; ("go-github-com-prometheus-procfs-0.6.0" +; ,go-github-com-prometheus-procfs-0.6.0) +; ("go-github-com-gogo-protobuf-1.3.2" +; ,go-github-com-gogo-protobuf-1.3.2))) +; (home-page "https://github.com/containerd/ttrpc") +; (synopsis "ttrpc") +; (description "GRPC for low-memory environments.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-typeurl-1.0.2 +; (package +; (name "go-github-com-containerd-typeurl") +; (version "1.0.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/typeurl") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0wvfxlxgkln11d9s6rxay965c715bnpk203klbsq8m8qpjqrz620")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/typeurl")) +; (propagated-inputs +; `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-gogo-protobuf-1.3.2" +; ,go-github-com-gogo-protobuf-1.3.2))) +; (home-page "https://github.com/containerd/typeurl") +; (synopsis "typeurl") +; (description +; "This package provides a Go package for managing the registration, marshaling, and unmarshaling of encoded types.") +; (license license:asl2.0))) +; +;(define-public go-github-com-microsoft-hcsshim-0.8.15 +; (package +; (name "go-github-com-microsoft-hcsshim") +; (version "0.8.15") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/microsoft/hcsshim") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1119qf7nklpnn9li61m8jrd5wvifhiz7qh7sfjjy04rfvbvlsi6c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/Microsoft/hcsshim")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.30.0" ,go-google-golang-org-grpc-1.30.0) +; ("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" +; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) +; ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" +; ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) +; ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) +; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) +; ("go-github-com-sirupsen-logrus-1.7.0" +; ,go-github-com-sirupsen-logrus-1.7.0) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" +; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) +; ("go-github-com-gogo-protobuf-1.3.2" +; ,go-github-com-gogo-protobuf-1.3.2) +; ("go-github-com-containerd-typeurl-1.0.1" +; ,go-github-com-containerd-typeurl-1.0.1) +; ("go-github-com-containerd-ttrpc-1.0.2" +; ,go-github-com-containerd-ttrpc-1.0.2) +; ("go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328" +; ,go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328) +; ("go-github-com-containerd-containerd-1.5.0-beta.1" +; ,go-github-com-containerd-containerd-1.5.0-beta.1) +; ("go-github-com-containerd-console-1.0.1" +; ,go-github-com-containerd-console-1.0.1) +; ("go-github-com-containerd-cgroups-0.0.0-20200824123100-0b889c03f102" +; ,go-github-com-containerd-cgroups-0.0.0-20200824123100-0b889c03f102) +; ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" +; ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3))) +; (home-page "https://github.com/Microsoft/hcsshim") +; (synopsis "hcsshim") +; (description +; "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") +; (license license:expat))) +; +;(define-public go-github-com-containerd-containerd-1.4.1 +; (package +; (name "go-github-com-containerd-containerd") +; (version "1.4.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/containerd") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1k6dqaidnldf7kpxdszf0wn6xb8m6vaizm2aza81fri1q0051213")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/containerd")) +; (home-page "https://github.com/containerd/containerd") +; (synopsis "Now Recruiting") +; (description +; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-sys-0.0.0-20200622214017-ed371f2e16b4 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20200622214017-ed371f2e16b4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "107wfy2fj6z5zps1v72j8drfrfvss1158drb0yqhz5awlbvgrpj7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-containerd-aufs-0.0.0-20201003224125-76a6863f2989 +; (package +; (name "go-github-com-containerd-aufs") +; (version "0.0.0-20201003224125-76a6863f2989") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/aufs") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0nsiyqjrgf3vvv6hpiljknpbkzlla1czpkq69i607f7p5jd8bgaq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/aufs")) +; (propagated-inputs +; `(("go-gotest-tools-v3-3.0.2" ,go-gotest-tools-v3-3.0.2) +; ("go-golang-org-x-sys-0.0.0-20200622214017-ed371f2e16b4" +; ,go-golang-org-x-sys-0.0.0-20200622214017-ed371f2e16b4) +; ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-image-spec-1.0.1" +; ,go-github-com-opencontainers-image-spec-1.0.1) +; ("go-github-com-google-go-cmp-0.3.1" +; ,go-github-com-google-go-cmp-0.3.1) +; ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" +; ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) +; ("go-github-com-containerd-typeurl-1.0.1" +; ,go-github-com-containerd-typeurl-1.0.1) +; ("go-github-com-containerd-ttrpc-1.0.1" +; ,go-github-com-containerd-ttrpc-1.0.1) +; ("go-github-com-containerd-continuity-0.0.0-20200710164510-efbc4488d8fe" +; ,go-github-com-containerd-continuity-0.0.0-20200710164510-efbc4488d8fe) +; ("go-github-com-containerd-containerd-1.4.1" +; ,go-github-com-containerd-containerd-1.4.1) +; ("go-github-com-microsoft-hcsshim-0.8.9" +; ,go-github-com-microsoft-hcsshim-0.8.9))) +; (home-page "https://github.com/containerd/aufs") +; (synopsis "aufs snapshotter") +; (description +; "AUFS implementation of the snapshot interface for containerd.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68 +; (package +; (name "go-github-com-containerd-cgroups") +; (version "0.0.0-20210114181951-8a68de567b68") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/cgroups") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0v70kxazvsizx33w9nz341hg14acg2vnbfcpx9yknmsjqdwgqnhs")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/cgroups")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9" +; ,go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9) +; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) +; ("go-github-com-stretchr-testify-1.2.2" +; ,go-github-com-stretchr-testify-1.2.2) +; ("go-github-com-sirupsen-logrus-1.7.0" +; ,go-github-com-sirupsen-logrus-1.7.0) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-runtime-spec-1.0.2" +; ,go-github-com-opencontainers-runtime-spec-1.0.2) +; ("go-github-com-gogo-protobuf-1.3.1" +; ,go-github-com-gogo-protobuf-1.3.1) +; ("go-github-com-godbus-dbus-v5-5.0.3" +; ,go-github-com-godbus-dbus-v5-5.0.3) +; ("go-github-com-docker-go-units-0.4.0" +; ,go-github-com-docker-go-units-0.4.0) +; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" +; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) +; ("go-github-com-coreos-go-systemd-v22-22.1.0" +; ,go-github-com-coreos-go-systemd-v22-22.1.0) +; ("go-github-com-cilium-ebpf-0.2.0" ,go-github-com-cilium-ebpf-0.2.0))) +; (home-page "https://github.com/containerd/cgroups") +; (synopsis "cgroups") +; (description +; "Go package for creating, managing, inspecting, and destroying cgroups. +;The resources format for settings on the cgroup uses the OCI runtime-spec found +;@url{https://github.com/opencontainers/runtime-spec,here}.") +; (license license:asl2.0))) +; +;(define-public go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3 +; (package +; (name "go-github-com-microsoft-go-winio") +; (version "0.4.17-0.20210211115548-6eac466e5fa3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/microsoft/go-winio") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0w8fmybsl0v5azwi66qa299gwh0mlp907mrg4yaiya7s0cjmjx0d")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/Microsoft/go-winio")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" +; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) +; ("go-github-com-sirupsen-logrus-1.7.0" +; ,go-github-com-sirupsen-logrus-1.7.0) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) +; (home-page "https://github.com/Microsoft/go-winio") +; (synopsis "go-winio") +; (description +; "This repository contains utilities for efficiently performing Win32 IO operations in +;Go. Currently, this is focused on accessing named pipes and other file handles, and +;for using named pipes as a net transport.") +; (license license:expat))) +; +;(define-public go-github-com-microsoft-hcsshim-test-0.0.0-20210227013316-43a75bb4edd3 +; (package +; (name "go-github-com-microsoft-hcsshim-test") +; (version "0.0.0-20210227013316-43a75bb4edd3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/microsoft/hcsshim") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1j899w4hdw1mk6rfyy9qsm902iavgc49ykbjdsb02m6wszq1z0wy")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path +; "github.com/Microsoft/hcsshim/test" +; #:unpack-path +; "github.com/Microsoft/hcsshim")) +; (propagated-inputs +; `(("go-k8s-io-cri-api-0.20.1" ,go-k8s-io-cri-api-0.20.1) +; ("go-google-golang-org-grpc-1.30.0" ,go-google-golang-org-grpc-1.30.0) +; ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" +; ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) +; ("go-github-com-sirupsen-logrus-1.7.0" +; ,go-github-com-sirupsen-logrus-1.7.0) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39" +; ,go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39) +; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" +; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) +; ("go-github-com-gogo-protobuf-1.3.2" +; ,go-github-com-gogo-protobuf-1.3.2) +; ("go-github-com-containerd-typeurl-1.0.1" +; ,go-github-com-containerd-typeurl-1.0.1) +; ("go-github-com-containerd-ttrpc-1.0.2" +; ,go-github-com-containerd-ttrpc-1.0.2) +; ("go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328" +; ,go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328) +; ("go-github-com-containerd-containerd-1.5.0-beta.1" +; ,go-github-com-containerd-containerd-1.5.0-beta.1) +; ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" +; ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3))) +; (home-page "https://github.com/Microsoft/hcsshim") +; (synopsis #f) +; (description #f) +; (license license:expat))) +; +;(define-public go-github-com-microsoft-go-winio-0.4.16 +; (package +; (name "go-github-com-microsoft-go-winio") +; (version "0.4.16") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/microsoft/go-winio") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0snwbwdjs34x0my9ri77cvrbnahdiyjh2jlkzf12fy48p7fyk7pq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/Microsoft/go-winio")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3" +; ,go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3) +; ("go-github-com-sirupsen-logrus-1.4.1" +; ,go-github-com-sirupsen-logrus-1.4.1) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) +; (home-page "https://github.com/Microsoft/go-winio") +; (synopsis "go-winio") +; (description +; "This repository contains utilities for efficiently performing Win32 IO operations in +;Go. Currently, this is focused on accessing named pipes and other file handles, and +;for using named pipes as a net transport.") +; (license license:expat))) +; +;(define-public go-github-com-azure-azure-sdk-for-go-16.2.1+incompatible +; (package +; (name "go-github-com-azure-azure-sdk-for-go") +; (version "16.2.1+incompatible") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/Azure/azure-sdk-for-go") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1hwrspsyfs003h4f8zl8b41g3a6jpkqawqrykd1mjw9p6hs1c6k8")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/Azure/azure-sdk-for-go")) +; (home-page "https://github.com/Azure/azure-sdk-for-go") +; (synopsis "Azure SDK for Go") +; (description +; "Package sdk provides Go packages for managing and using Azure services. +;") +; (license license:expat))) +; +;(define-public go-github-com-azure-go-autorest-10.8.1+incompatible +; (package +; (name "go-github-com-azure-go-autorest") +; (version "10.8.1+incompatible") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/Azure/go-autorest") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "122zfifj93vkix8ggkdh0dz5rmzxh4bql4nry1hws2czmzgxlkdm")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/Azure/go-autorest")) +; (home-page "https://github.com/Azure/go-autorest") +; (synopsis "go-autorest") +; (description +; "Package go-autorest provides an HTTP request client for use with Autorest-generated API client packages. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-shopify-logrus-bugsnag-0.0.0-20171204204709-577dee27f20d +; (package +; (name "go-github-com-shopify-logrus-bugsnag") +; (version "0.0.0-20171204204709-577dee27f20d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/Shopify/logrus-bugsnag") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1l3yahk77vzgmjs7baf8g14sv33jj04rw73iind4wayg40lfgrp8")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/Shopify/logrus-bugsnag")) +; (home-page "https://github.com/Shopify/logrus-bugsnag") +; (synopsis "logrus-bugsnag") +; (description +; "logrus-bugsnag is a hook that allows @url{https://github.com/sirupsen/logrus,Logrus} to interface with @url{https://bugsnag.com,Bugsnag}.") +; (license license:expat))) +; +;(define-public go-github-com-go-ini-ini-1.25.4 +; (package +; (name "go-github-com-go-ini-ini") +; (version "1.25.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/go-ini/ini") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0b6cql5ripbiyrm18d6bfd1rfjnwcbskppw3d0vb80l0wy72d0c6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/go-ini/ini")) +; (home-page "https://github.com/go-ini/ini") +; (synopsis "INI") +; (description +; "Package ini provides INI file read and write functionality in Go. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-jmespath-go-jmespath-0.0.0-20160202185014-0b12d6b521d8 +; (package +; (name "go-github-com-jmespath-go-jmespath") +; (version "0.0.0-20160202185014-0b12d6b521d8") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/jmespath/go-jmespath") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1vv6hph8j6xgv7gwl9vvhlsaaqsm22sxxqmgmldi4v11783pc1ld")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/jmespath/go-jmespath")) +; (home-page "https://github.com/jmespath/go-jmespath") +; (synopsis "go-jmespath - A JMESPath implementation in Go") +; (description +; "go-jmespath is a GO implementation of JMESPath, +;which is a query language for JSON. It will take a JSON +;document and transform it into another JSON document +;through a JMESPath expression.") +; (license license:asl2.0))) +; +;(define-public go-github-com-aws-aws-sdk-go-1.15.11 +; (package +; (name "go-github-com-aws-aws-sdk-go") +; (version "1.15.11") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/aws/aws-sdk-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0w960w39k3nyc17p1lvd41cls39qwg7kzfm57vfbdb4h1m5sck99")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/aws/aws-sdk-go")) +; (propagated-inputs +; `(("go-github-com-jmespath-go-jmespath-0.0.0-20160202185014-0b12d6b521d8" +; ,go-github-com-jmespath-go-jmespath-0.0.0-20160202185014-0b12d6b521d8) +; ("go-github-com-go-ini-ini-1.25.4" ,go-github-com-go-ini-ini-1.25.4))) +; (home-page "https://github.com/aws/aws-sdk-go") +; (synopsis "AWS SDK for Go") +; (description +; "Package sdk is the official AWS SDK for the Go programming language. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-beorn7-perks-0.0.0-20160804104726-4c0e84591b9a +; (package +; (name "go-github-com-beorn7-perks") +; (version "0.0.0-20160804104726-4c0e84591b9a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/beorn7/perks") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1hrybsql68xw57brzj805xx2mghydpdiysv3gbhr7f5wlxj2514y")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/beorn7/perks")) +; (home-page "https://github.com/beorn7/perks") +; (synopsis "Perks for Go (golang.org)") +; (description +; "Perks contains the Go package quantile that computes approximate quantiles over +;an unbounded data stream within low memory and CPU bounds.") +; (license license:expat))) +; +;(define-public go-github-com-bitly-go-simplejson-0.5.0 +; (package +; (name "go-github-com-bitly-go-simplejson") +; (version "0.5.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/bitly/go-simplejson") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0n9f9dz1jn1jx86d48569nznpjn9fmq3knn7r65xpy7jhih284jj")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/bitly/go-simplejson")) +; (home-page "https://github.com/bitly/go-simplejson") +; (synopsis "go-simplejson") +; (description "a Go package to interact with arbitrary JSON") +; (license license:expat))) +; +;(define-public go-github-com-bmizerany-assert-0.0.0-20160611221934-b7ed37b82869 +; (package +; (name "go-github-com-bmizerany-assert") +; (version "0.0.0-20160611221934-b7ed37b82869") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/bmizerany/assert") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "18hy1wyl9zdi7sgxafrn3m7fadh6in0rhhb8l0cvkxqzdl0jcw2s")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/bmizerany/assert")) +; (home-page "https://github.com/bmizerany/assert") +; (synopsis #f) +; (description #f) +; (license #f))) +; +;(define-public go-github-com-bshuster-repo-logrus-logstash-hook-0.4.1 +; (package +; (name "go-github-com-bshuster-repo-logrus-logstash-hook") +; (version "0.4.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/bshuster-repo/logrus-logstash-hook") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1kkjzav4i3l2ahgpirysr0cqh60vdq517lpj00cc9z32zfrsw87k")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "github.com/bshuster-repo/logrus-logstash-hook")) +; (home-page "https://github.com/bshuster-repo/logrus-logstash-hook") +; (synopsis "Logstash hook for logrus") +; (description +; "Use this hook to send the logs to @url{https://www.elastic.co/products/logstash,Logstash}.") +; (license license:expat))) +; +;(define-public go-github-com-bugsnag-bugsnag-go-0.0.0-20141110184014-b1d153021fcd +; (package +; (name "go-github-com-bugsnag-bugsnag-go") +; (version "0.0.0-20141110184014-b1d153021fcd") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/bugsnag/bugsnag-go") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "057vwigfzq42p9vkk9yhy8vkvgdmh6653rc988jmvmrkwbgvb352")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/bugsnag/bugsnag-go")) +; (home-page "https://github.com/bugsnag/bugsnag-go") +; (synopsis "Bugsnag error reporter for Go") +; (description +; "Package bugsnag captures errors in real-time and reports them to Bugsnag (@url{http://bugsnag.com,http://bugsnag.com}). +;") +; (license license:expat))) +; +;(define-public go-github-com-bugsnag-osext-0.0.0-20130617224835-0dd3f918b21b +; (package +; (name "go-github-com-bugsnag-osext") +; (version "0.0.0-20130617224835-0dd3f918b21b") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/bugsnag/osext") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "02pczqml6p1mnfdrygm3rs02g0r65qx8v1bi3x24dx8wv9dr5y23")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/bugsnag/osext")) +; (home-page "https://github.com/bugsnag/osext") +; (synopsis #f) +; (description "Extensions to the standard \"os\" package. +;") +; (license license:zlib))) +; +;(define-public go-github-com-bugsnag-panicwrap-0.0.0-20151223152923-e2c28503fcd0 +; (package +; (name "go-github-com-bugsnag-panicwrap") +; (version "0.0.0-20151223152923-e2c28503fcd0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/bugsnag/panicwrap") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "02z1q18s83xhfsz3n8bzv071a6n0irlad11yxppaf7015a7dl446")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/bugsnag/panicwrap")) +; (home-page "https://github.com/bugsnag/panicwrap") +; (synopsis "panicwrap") +; (description +; "The panicwrap package provides functions for capturing and handling +;panics in your application. It does this by re-executing the running +;application and monitoring stderr for any panics. At the same time, +;stdout/stderr/etc. are set to the same values so that data is shuttled +;through properly, making the existence of panicwrap mostly transparent. +;") +; (license license:expat))) +; +;(define-public go-github-com-denverdino-aliyungo-0.0.0-20190125010748-a747050bb1ba +; (package +; (name "go-github-com-denverdino-aliyungo") +; (version "0.0.0-20190125010748-a747050bb1ba") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/denverdino/aliyungo") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0rc16ciz8gjpn36fhp0qz1ns0inlvjaz07z1qffl9ni4b49hhwkn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/denverdino/aliyungo")) +; (home-page "https://github.com/denverdino/aliyungo") +; (synopsis "AliyunGo: Go SDK for Aliyun Services") +; (description +; "This is an unofficial Go SDK for Aliyun services. You are welcome for contribution.") +; (license license:asl2.0))) +; +;(define-public go-github-com-dgrijalva-jwt-go-0.0.0-20170104182250-a601269ab70c +; (package +; (name "go-github-com-dgrijalva-jwt-go") +; (version "0.0.0-20170104182250-a601269ab70c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/dgrijalva/jwt-go") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1c2dhmj95wh9cs099cr43qghgmp6bqx0mq44vha2dqq5jkbazwfv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/dgrijalva/jwt-go")) +; (home-page "https://github.com/dgrijalva/jwt-go") +; (synopsis "jwt-go") +; (description +; "Package jwt is a Go implementation of JSON Web Tokens: @url{http://self-issued.info/docs/draft-jones-json-web-token.html,http://self-issued.info/docs/draft-jones-json-web-token.html} +;") +; (license license:expat))) +; +;(define-public go-github-com-dnaeon-go-vcr-1.0.1 +; (package +; (name "go-github-com-dnaeon-go-vcr") +; (version "1.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/dnaeon/go-vcr") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1d0kpqr12qrqlamz5a47bp05mx49za2v6l1k7c6z71xahfmb7v2d")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/dnaeon/go-vcr")) +; (home-page "https://github.com/dnaeon/go-vcr") +; (synopsis "go-vcr") +; (description +; "@code{go-vcr} simplifies testing by recording your HTTP interactions and +;replaying them in future runs in order to provide fast, deterministic +;and accurate testing of your code.") +; (license license:bsd-2))) +; +;(define-public go-github-com-docker-go-metrics-0.0.0-20180209012529-399ea8c73916 +; (package +; (name "go-github-com-docker-go-metrics") +; (version "0.0.0-20180209012529-399ea8c73916") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/docker/go-metrics") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0najfy92fq05b330cnjk5b326yi7dnnmvzfk6g5lsa1fci78yzw4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/docker/go-metrics")) +; (home-page "https://github.com/docker/go-metrics") +; (synopsis "go-metrics") +; (description +; "This package is small wrapper around the prometheus go client to help enforce convention and best practices for metrics collection in Docker projects.") +; (license (list license:asl2.0 license:cc-by-sa4.0)))) +; +;(define-public go-github-com-docker-libtrust-0.0.0-20150114040149-fa567046d9b1 +; (package +; (name "go-github-com-docker-libtrust") +; (version "0.0.0-20150114040149-fa567046d9b1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/docker/libtrust") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1121c7fxarzyr3fvxyzfw8qs4hb8k92dsix26s5vxncgszl5svf2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/docker/libtrust")) +; (home-page "https://github.com/docker/libtrust") +; (synopsis "libtrust") +; (description +; "Package libtrust provides an interface for managing authentication and +;authorization using public key cryptography. Authentication is handled +;using the identity attached to the public key and verified through TLS +;x509 certificates, a key challenge, or signature. Authorization and +;access control is managed through a trust graph distributed between +;both remote trust servers and locally cached and managed data. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-garyburd-redigo-0.0.0-20150301180006-535138d7bcd7 +; (package +; (name "go-github-com-garyburd-redigo") +; (version "0.0.0-20150301180006-535138d7bcd7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/garyburd/redigo") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1m7nc1gvv5yqnq8ii75f33485il6y6prf8gxl97dimsw94qccc5v")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/garyburd/redigo")) +; (home-page "https://github.com/garyburd/redigo") +; (synopsis #f) +; (description +; "Future development of Redigo is at +;@url{https://github.com/gomodule/redigo,github.com/gomodule/redigo}. Please submit +;issues at gomodule/redigo. The repository at github.com/garyburd/redigo is a +;read-only snapshot.") +; (license license:asl2.0))) +; +;(define-public go-github-com-gorilla-handlers-0.0.0-20150720190736-60c7bfde3e33 +; (package +; (name "go-github-com-gorilla-handlers") +; (version "0.0.0-20150720190736-60c7bfde3e33") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/gorilla/handlers") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0zvpxvybdn8yqpk2cxs134ip9wxmw6c1s0kw9nahf7qw1kfyzycm")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/gorilla/handlers")) +; (home-page "https://github.com/gorilla/handlers") +; (synopsis "gorilla/handlers") +; (description +; "Package handlers is a collection of handlers (aka \"HTTP middleware\") for use +;with Go's net/http package (or any framework supporting http.Handler). +;") +; (license license:bsd-2))) +; +;(define-public go-github-com-gorilla-mux-1.7.2 +; (package +; (name "go-github-com-gorilla-mux") +; (version "1.7.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/gorilla/mux") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1gjcbgpdl3snc38i8sj8k6sqbv3inyrxqyggbqvr4jfx2phv2zy6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/gorilla/mux")) +; (home-page "https://github.com/gorilla/mux") +; (synopsis "gorilla/mux") +; (description "Package mux implements a request router and dispatcher. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-jmespath-go-jmespath-0.0.0-20160803190731-bd40a432e4c7 +; (package +; (name "go-github-com-jmespath-go-jmespath") +; (version "0.0.0-20160803190731-bd40a432e4c7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/jmespath/go-jmespath") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1kgzwiyqn24ba9kgpjxlq1h746gnyby0psbjj9mp2yx0h1i0kc4z")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/jmespath/go-jmespath")) +; (home-page "https://github.com/jmespath/go-jmespath") +; (synopsis "go-jmespath - A JMESPath implementation in Go") +; (description +; "go-jmespath is a GO implementation of JMESPath, +;which is a query language for JSON. It will take a JSON +;document and transform it into another JSON document +;through a JMESPath expression.") +; (license license:asl2.0))) +; +;(define-public go-github-com-marstr-guid-1.1.0 +; (package +; (name "go-github-com-marstr-guid") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/marstr/guid") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "081qrar6wwpmb2pq3swv4byh73r9riyhl2dwv0902d8jg3kwricm")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/marstr/guid")) +; (home-page "https://github.com/marstr/guid") +; (synopsis "Guid") +; (description +; "Globally unique identifiers offer a quick means of generating non-colliding values across a distributed system. For this implemenation, @url{http://ietf.org/rfc/rfc4122.txt,RFC 4122} governs the desired behavior.") +; (license license:expat))) +; +;(define-public go-github-com-mitchellh-osext-0.0.0-20151018003038-5e2d6d41470f +; (package +; (name "go-github-com-mitchellh-osext") +; (version "0.0.0-20151018003038-5e2d6d41470f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mitchellh/osext") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0j635c1cx7crs5wlirlk713l36x70pnlmqrzd3x3bjgnjg194jrk")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mitchellh/osext")) +; (home-page "https://github.com/mitchellh/osext") +; (synopsis "osext") +; (description "Extensions to the standard \"os\" package. +;") +; (license license:zlib))) +; +;(define-public go-github-com-ncw-swift-1.0.47 +; (package +; (name "go-github-com-ncw-swift") +; (version "1.0.47") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/ncw/swift") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0wxz4lvy6pjabghq8inby2fyh58ysclayccziawc8fd7a67kh4cd")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/ncw/swift")) +; (home-page "https://github.com/ncw/swift") +; (synopsis "Swift") +; (description +; "Package swift provides an easy to use interface to Swift / Openstack Object Storage / Rackspace Cloud Files +;") +; (license license:expat))) +; +;(define-public go-github-com-opencontainers-go-digest-0.0.0-20170106003457-a6d0ee40d420 +; (package +; (name "go-github-com-opencontainers-go-digest") +; (version "0.0.0-20170106003457-a6d0ee40d420") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/go-digest") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1paz3na2xkhi10p5bk7f7gbh5yykfgr9f9i2gcc13rb461yq6fmg")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/go-digest")) +; (home-page "https://github.com/opencontainers/go-digest") +; (synopsis "go-digest") +; (description +; "Package digest provides a generalized type to opaquely represent message +;digests and their operations within the registry. The Digest type is +;designed to serve as a flexible identifier in a content-addressable system. +;More importantly, it provides tools and wrappers to work with +;hash.Hash-based digests with little effort. +;") +; (license (list license:asl2.0 license:cc-by-sa4.0)))) +; +;(define-public go-github-com-opencontainers-image-spec-1.0.0 +; (package +; (name "go-github-com-opencontainers-image-spec") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/image-spec") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "04ax2pylpwzsa5pw6wk94shdpdmfyqf70ys0idhpxsygzc2m5l23")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/image-spec")) +; (home-page "https://github.com/opencontainers/image-spec") +; (synopsis "OCI Image Format Specification") +; (description +; "The OCI Image Format project creates and maintains the software shipping container image format spec (OCI Image Format).") +; (license license:asl2.0))) +; +;(define-public go-github-com-prometheus-client-golang-0.0.0-20180209125602-c332b6f63c06 +; (package +; (name "go-github-com-prometheus-client-golang") +; (version "0.0.0-20180209125602-c332b6f63c06") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/client_golang") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "068r759wnh1lxcjhj89z4bqbpl7ydcx2drn2967ygw80nyab30pq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/client_golang")) +; (home-page "https://github.com/prometheus/client_golang") +; (synopsis "Prometheus Go client library") +; (description +; "This is the @url{http://golang.org,Go} client library for +;@url{http://prometheus.io,Prometheus}. It has two separate parts, one for +;instrumenting application code, and one for creating clients that talk to the +;Prometheus HTTP API.") +; (license license:asl2.0))) +; +;(define-public go-github-com-prometheus-client-model-0.0.0-20171117100541-99fa1f4be8e5 +; (package +; (name "go-github-com-prometheus-client-model") +; (version "0.0.0-20171117100541-99fa1f4be8e5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/client_model") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19y4ywsivhpxj7ikf2j0gm9k3cmyw37qcbfi78n526jxcc7kw998")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/client_model")) +; (home-page "https://github.com/prometheus/client_model") +; (synopsis "Deprecation note") +; (description +; "This repository used to contain the code that defined both +;the data model and the exposition format of Prometheus metrics.") +; (license license:asl2.0))) +; +;(define-public go-github-com-prometheus-common-0.0.0-20180110214958-89604d197083 +; (package +; (name "go-github-com-prometheus-common") +; (version "0.0.0-20180110214958-89604d197083") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/common") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "169rdlaf2mk9z4fydz7ajmngyhmf3q1lk96yhvx46bn986x5xkyn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/common")) +; (home-page "https://github.com/prometheus/common") +; (synopsis "Common") +; (description +; "This repository contains Go libraries that are shared across Prometheus +;components and libraries. They are considered internal to Prometheus, without +;any stability guarantees for external usage.") +; (license license:asl2.0))) +; +;(define-public go-github-com-gopherjs-gopherjs-0.0.0-20181017120253-0766667cb4d1 +; (package +; (name "go-github-com-gopherjs-gopherjs") +; (version "0.0.0-20181017120253-0766667cb4d1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/gopherjs/gopherjs") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "13pfc9sxiwjky2lm1xb3i3lcisn8p6mgjk2d927l7r92ysph8dmw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/gopherjs/gopherjs")) +; (home-page "https://github.com/gopherjs/gopherjs") +; (synopsis "GopherJS - A compiler from Go to JavaScript") +; (description +; "GopherJS compiles Go code (@url{https://golang.org/,golang.org}) to pure JavaScript code. Its main purpose is to give you the opportunity to write front-end code in Go which will still run in all browsers.") +; (license license:bsd-2))) +; +;(define-public go-github-com-jtolds-gls-4.20.0+incompatible +; (package +; (name "go-github-com-jtolds-gls") +; (version "4.20.0+incompatible") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/jtolio/gls") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1k7xd2q2ysv2xsh373qs801v6f359240kx0vrl0ydh7731lngvk6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/jtolds/gls")) +; (home-page "https://github.com/jtolds/gls") +; (synopsis "gls") +; (description "Package gls implements goroutine-local storage. +;") +; (license license:expat))) +; +;(define-public go-github-com-smartystreets-assertions-0.0.0-20180927180507-b2de0cb4f26d +; (package +; (name "go-github-com-smartystreets-assertions") +; (version "0.0.0-20180927180507-b2de0cb4f26d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/smartystreets/assertions") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1i7ldgavgl35c7gk25p7bvdr282ckng090zr4ch9mk1705akx09y")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/smartystreets/assertions")) +; (home-page "https://github.com/smartystreets/assertions") +; (synopsis #f) +; (description +; "Package assertions contains the implementations for all assertions which +;are referenced in goconvey's `convey` package +;(github.com/smartystreets/goconvey/convey) and gunit (github.com/smartystreets/gunit) +;for use with the So(...) method. +;They can also be used in traditional Go test functions and even in +;applications. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-tools-0.0.0-20190328211700-ab21143f2384 +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20190328211700-ab21143f2384") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "15fk0psk53pplpyghz55bhay0kvsv5rikmn5hwgjnnyxq9vfy178")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-github-com-smartystreets-goconvey-0.0.0-20190330032615-68dc04aab96a +; (package +; (name "go-github-com-smartystreets-goconvey") +; (version "0.0.0-20190330032615-68dc04aab96a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/smartystreets/goconvey") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1kas5v95fzhr88hg4rjy0vp03y4pzvy3pwwgkfz2yhn5nlj29nk6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/smartystreets/goconvey")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20190328211700-ab21143f2384" +; ,go-golang-org-x-tools-0.0.0-20190328211700-ab21143f2384) +; ("go-github-com-smartystreets-assertions-0.0.0-20180927180507-b2de0cb4f26d" +; ,go-github-com-smartystreets-assertions-0.0.0-20180927180507-b2de0cb4f26d) +; ("go-github-com-jtolds-gls-4.20.0+incompatible" +; ,go-github-com-jtolds-gls-4.20.0+incompatible) +; ("go-github-com-gopherjs-gopherjs-0.0.0-20181017120253-0766667cb4d1" +; ,go-github-com-gopherjs-gopherjs-0.0.0-20181017120253-0766667cb4d1))) +; (home-page "https://github.com/smartystreets/goconvey") +; (synopsis "GoConvey is awesome Go testing") +; (description +; "This executable provides an HTTP server that watches for file system changes +;to .go files within the working directory (and all nested go packages). +;Navigating to the configured host and port in a web browser will display the +;latest results of running `go test` in each go package. +;") +; (license license:expat))) +; +;(define-public go-github-com-yvasiyarov-go-metrics-0.0.0-20140926110328-57bccd1ccd43 +; (package +; (name "go-github-com-yvasiyarov-go-metrics") +; (version "0.0.0-20140926110328-57bccd1ccd43") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/yvasiyarov/go-metrics") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1rwlq9k3iii54da90fjivi13zacx2h6znppkzncvl653xhjpm26g")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/yvasiyarov/go-metrics")) +; (home-page "https://github.com/yvasiyarov/go-metrics") +; (synopsis "go-metrics") +; (description "Go port of Coda Hale's Metrics library +;") +; (license #f))) +; +;(define-public go-github-com-yvasiyarov-gorelic-0.0.0-20141212073537-a9bba5b9ab50 +; (package +; (name "go-github-com-yvasiyarov-gorelic") +; (version "0.0.0-20141212073537-a9bba5b9ab50") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/yvasiyarov/gorelic") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1niwv40k9rx2g5h6wddci9ykf1sm1d5ml9mjgdjd1ahm4wfq08gn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/yvasiyarov/gorelic")) +; (home-page "https://github.com/yvasiyarov/gorelic") +; (synopsis "GoRelic is deprecated in favour of") +; (description +; "Package gorelic is an New Relic agent implementation for Go runtime. It collect a lot of metrics about Go scheduler, garbage collector and memory allocator and send them to NewRelic. +;") +; (license license:bsd-2))) +; +;(define-public go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20140908184405-b21fdbd4370f +; (package +; (name "go-github-com-yvasiyarov-newrelic-platform-go") +; (version "0.0.0-20140908184405-b21fdbd4370f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/yvasiyarov/newrelic_platform_go") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0a4yncdxwsy0rn3bhkadfysm817b7ndzmh9fkg8hh92pnw5aabzw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/yvasiyarov/newrelic_platform_go")) +; (home-page "https://github.com/yvasiyarov/newrelic_platform_go") +; (synopsis "New Relic Platform Agent SDK for Go(golang)") +; (description +; "Package newrelic_platform_go is New Relic Platform Agent SDK for Go language. +;") +; (license license:bsd-2))) +; +;(define-public go-golang-org-x-net-0.0.0-20190619014844-b5b0513f8c1b +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190619014844-b5b0513f8c1b") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0sr4gbiq09izkmm6hcmfnia6lz6ngzzqjbwlrzh7jifbzyck53wz")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190602015325-4c4f7f33c9ed +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190602015325-4c4f7f33c9ed") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "191001bxqyc3xfs46nnqmm7jdk0r73vk7a4zqngfl7zwjv9smwsq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-api-0.0.0-20160322025152-9bf6e6e569ff +; (package +; (name "go-google-golang-org-api") +; (version "0.0.0-20160322025152-9bf6e6e569ff") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-api-go-client") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "02zn0zr4jrkdnxhxa0h3vm30j27bsc4lcswrffilkrafbspjsrxz")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/api")) +; (home-page "https://google.golang.org/api") +; (synopsis "Google APIs Client Library for Go") +; (description +; "Package api is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of +;sub-packages. +;") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-cloud-0.0.0-20151119220103-975617b05ea8 +; (package +; (name "go-google-golang-org-cloud") +; (version "0.0.0-20151119220103-975617b05ea8") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-cloud-go") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "156jhn1kakr98jfk830y4yr8lhisdj6qs38ypa42ddmgza9qcmdd")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/cloud")) +; (home-page "https://google.golang.org/cloud") +; (synopsis "Google Cloud Client Libraries for Go") +; (description +; "Package cloud is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +;of sub-packages. +;") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-grpc-0.0.0-20160317175043-d3ddb4469d5a +; (package +; (name "go-google-golang-org-grpc") +; (version "0.0.0-20160317175043-d3ddb4469d5a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0p45by0s66ragvx9hs8gkz1k1gy8456y794b5zspa0b86y2b53w9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-gopkg-in-check-v1-1.0.0-20141024133853-64131543e789 +; (package +; (name "go-gopkg-in-check-v1") +; (version "1.0.0-20141024133853-64131543e789") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/check.v1") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "01sz40asq0zwf6j7q2hww33wr1cflglngq8xazw466c9d1f9kyyh")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) +; (home-page "https://gopkg.in/check.v1") +; (synopsis "Instructions") +; (description +; "Package check is a rich testing extension for Go's testing package. +;") +; (license license:bsd-2))) +; +;(define-public go-github-com-docker-distribution-0.0.0-20190905152932-14b96e55d84c +; (package +; (name "go-github-com-docker-distribution") +; (version "0.0.0-20190905152932-14b96e55d84c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/distribution/distribution") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0jd7ccjy7ahznsh6hf9dhqbgn9glwc0db9g5nv8n6sys5d1jdni9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/docker/distribution")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) +; ("go-gopkg-in-check-v1-1.0.0-20141024133853-64131543e789" +; ,go-gopkg-in-check-v1-1.0.0-20141024133853-64131543e789) +; ("go-google-golang-org-grpc-0.0.0-20160317175043-d3ddb4469d5a" +; ,go-google-golang-org-grpc-0.0.0-20160317175043-d3ddb4469d5a) +; ("go-google-golang-org-cloud-0.0.0-20151119220103-975617b05ea8" +; ,go-google-golang-org-cloud-0.0.0-20151119220103-975617b05ea8) +; ("go-google-golang-org-api-0.0.0-20160322025152-9bf6e6e569ff" +; ,go-google-golang-org-api-0.0.0-20160322025152-9bf6e6e569ff) +; ("go-golang-org-x-sys-0.0.0-20190602015325-4c4f7f33c9ed" +; ,go-golang-org-x-sys-0.0.0-20190602015325-4c4f7f33c9ed) +; ("go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45" +; ,go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45) +; ("go-golang-org-x-net-0.0.0-20190619014844-b5b0513f8c1b" +; ,go-golang-org-x-net-0.0.0-20190619014844-b5b0513f8c1b) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2) +; ("go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20140908184405-b21fdbd4370f" +; ,go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20140908184405-b21fdbd4370f) +; ("go-github-com-yvasiyarov-gorelic-0.0.0-20141212073537-a9bba5b9ab50" +; ,go-github-com-yvasiyarov-gorelic-0.0.0-20141212073537-a9bba5b9ab50) +; ("go-github-com-yvasiyarov-go-metrics-0.0.0-20140926110328-57bccd1ccd43" +; ,go-github-com-yvasiyarov-go-metrics-0.0.0-20140926110328-57bccd1ccd43) +; ("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0) +; ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) +; ("go-github-com-spf13-cobra-0.0.3" ,go-github-com-spf13-cobra-0.0.3) +; ("go-github-com-smartystreets-goconvey-0.0.0-20190330032615-68dc04aab96a" +; ,go-github-com-smartystreets-goconvey-0.0.0-20190330032615-68dc04aab96a) +; ("go-github-com-sirupsen-logrus-1.4.2" +; ,go-github-com-sirupsen-logrus-1.4.2) +; ("go-github-com-satori-go-uuid-1.2.0" +; ,go-github-com-satori-go-uuid-1.2.0) +; ("go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7" +; ,go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7) +; ("go-github-com-prometheus-common-0.0.0-20180110214958-89604d197083" +; ,go-github-com-prometheus-common-0.0.0-20180110214958-89604d197083) +; ("go-github-com-prometheus-client-model-0.0.0-20171117100541-99fa1f4be8e5" +; ,go-github-com-prometheus-client-model-0.0.0-20171117100541-99fa1f4be8e5) +; ("go-github-com-prometheus-client-golang-0.0.0-20180209125602-c332b6f63c06" +; ,go-github-com-prometheus-client-golang-0.0.0-20180209125602-c332b6f63c06) +; ("go-github-com-opencontainers-image-spec-1.0.0" +; ,go-github-com-opencontainers-image-spec-1.0.0) +; ("go-github-com-opencontainers-go-digest-0.0.0-20170106003457-a6d0ee40d420" +; ,go-github-com-opencontainers-go-digest-0.0.0-20170106003457-a6d0ee40d420) +; ("go-github-com-ncw-swift-1.0.47" ,go-github-com-ncw-swift-1.0.47) +; ("go-github-com-mitchellh-osext-0.0.0-20151018003038-5e2d6d41470f" +; ,go-github-com-mitchellh-osext-0.0.0-20151018003038-5e2d6d41470f) +; ("go-github-com-mitchellh-mapstructure-1.1.2" +; ,go-github-com-mitchellh-mapstructure-1.1.2) +; ("go-github-com-matttproud-golang-protobuf-extensions-1.0.1" +; ,go-github-com-matttproud-golang-protobuf-extensions-1.0.1) +; ("go-github-com-marstr-guid-1.1.0" ,go-github-com-marstr-guid-1.1.0) +; ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) +; ("go-github-com-jmespath-go-jmespath-0.0.0-20160803190731-bd40a432e4c7" +; ,go-github-com-jmespath-go-jmespath-0.0.0-20160803190731-bd40a432e4c7) +; ("go-github-com-inconshreveable-mousetrap-1.0.0" +; ,go-github-com-inconshreveable-mousetrap-1.0.0) +; ("go-github-com-gorilla-mux-1.7.2" ,go-github-com-gorilla-mux-1.7.2) +; ("go-github-com-gorilla-handlers-0.0.0-20150720190736-60c7bfde3e33" +; ,go-github-com-gorilla-handlers-0.0.0-20150720190736-60c7bfde3e33) +; ("go-github-com-garyburd-redigo-0.0.0-20150301180006-535138d7bcd7" +; ,go-github-com-garyburd-redigo-0.0.0-20150301180006-535138d7bcd7) +; ("go-github-com-docker-libtrust-0.0.0-20150114040149-fa567046d9b1" +; ,go-github-com-docker-libtrust-0.0.0-20150114040149-fa567046d9b1) +; ("go-github-com-docker-go-metrics-0.0.0-20180209012529-399ea8c73916" +; ,go-github-com-docker-go-metrics-0.0.0-20180209012529-399ea8c73916) +; ("go-github-com-dnaeon-go-vcr-1.0.1" +; ,go-github-com-dnaeon-go-vcr-1.0.1) +; ("go-github-com-dgrijalva-jwt-go-0.0.0-20170104182250-a601269ab70c" +; ,go-github-com-dgrijalva-jwt-go-0.0.0-20170104182250-a601269ab70c) +; ("go-github-com-denverdino-aliyungo-0.0.0-20190125010748-a747050bb1ba" +; ,go-github-com-denverdino-aliyungo-0.0.0-20190125010748-a747050bb1ba) +; ("go-github-com-bugsnag-panicwrap-0.0.0-20151223152923-e2c28503fcd0" +; ,go-github-com-bugsnag-panicwrap-0.0.0-20151223152923-e2c28503fcd0) +; ("go-github-com-bugsnag-osext-0.0.0-20130617224835-0dd3f918b21b" +; ,go-github-com-bugsnag-osext-0.0.0-20130617224835-0dd3f918b21b) +; ("go-github-com-bugsnag-bugsnag-go-0.0.0-20141110184014-b1d153021fcd" +; ,go-github-com-bugsnag-bugsnag-go-0.0.0-20141110184014-b1d153021fcd) +; ("go-github-com-bshuster-repo-logrus-logstash-hook-0.4.1" +; ,go-github-com-bshuster-repo-logrus-logstash-hook-0.4.1) +; ("go-github-com-bmizerany-assert-0.0.0-20160611221934-b7ed37b82869" +; ,go-github-com-bmizerany-assert-0.0.0-20160611221934-b7ed37b82869) +; ("go-github-com-bitly-go-simplejson-0.5.0" +; ,go-github-com-bitly-go-simplejson-0.5.0) +; ("go-github-com-beorn7-perks-0.0.0-20160804104726-4c0e84591b9a" +; ,go-github-com-beorn7-perks-0.0.0-20160804104726-4c0e84591b9a) +; ("go-github-com-aws-aws-sdk-go-1.15.11" +; ,go-github-com-aws-aws-sdk-go-1.15.11) +; ("go-github-com-shopify-logrus-bugsnag-0.0.0-20171204204709-577dee27f20d" +; ,go-github-com-shopify-logrus-bugsnag-0.0.0-20171204204709-577dee27f20d) +; ("go-github-com-azure-go-autorest-10.8.1+incompatible" +; ,go-github-com-azure-go-autorest-10.8.1+incompatible) +; ("go-github-com-azure-azure-sdk-for-go-16.2.1+incompatible" +; ,go-github-com-azure-azure-sdk-for-go-16.2.1+incompatible))) +; (home-page "https://github.com/docker/distribution") +; (synopsis "Distribution") +; (description +; "Package distribution will define the interfaces for the components of +;docker distribution. The goal is to allow users to reliably package, ship +;and store content related to docker images. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-gogo-protobuf-1.2.2-0.20190723190241-65acae22fc9d +; (package +; (name "go-github-com-gogo-protobuf") +; (version "1.2.2-0.20190723190241-65acae22fc9d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/gogo/protobuf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0700alky9z0g9akhrzn20wf4jr1600d0clhs32sm8chnlbvidy46")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/gogo/protobuf")) +; (propagated-inputs +; `(("go-github-com-kisielk-gotool-1.0.0" +; ,go-github-com-kisielk-gotool-1.0.0) +; ("go-github-com-kisielk-errcheck-1.2.0" +; ,go-github-com-kisielk-errcheck-1.2.0))) +; (home-page "https://github.com/gogo/protobuf") +; (synopsis "Protocol Buffers for Go with Gadgets") +; (description +; "gogoprotobuf is a fork of @url{https://github.com/golang/protobuf,golang/protobuf} with extra code generation features.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190813064441-fde4db37ae7a +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190813064441-fde4db37ae7a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "16k4w4pzziq1kln18k5fg01qgk4hpzb5xsm7175kaky6d6gwyhg3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-k8s-io-cri-api-0.17.3 +; (package +; (name "go-k8s-io-cri-api") +; (version "0.17.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes/cri-api") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "047wg80q4cb9qikpj0zp2kzcgp599cdqwiqlravfy86bga4r3fgf")))) +; (build-system go-build-system) +; (arguments '(#:import-path "k8s.io/cri-api")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190813064441-fde4db37ae7a" +; ,go-golang-org-x-sys-0.0.0-20190813064441-fde4db37ae7a) +; ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) +; ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" +; ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) +; ("go-google-golang-org-grpc-1.23.1" ,go-google-golang-org-grpc-1.23.1) +; ("go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873" +; ,go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873) +; ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) +; ("go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9" +; ,go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9) +; ("go-github-com-stretchr-testify-1.4.0" +; ,go-github-com-stretchr-testify-1.4.0) +; ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2) +; ("go-github-com-gogo-protobuf-1.2.2-0.20190723190241-65acae22fc9d" +; ,go-github-com-gogo-protobuf-1.2.2-0.20190723190241-65acae22fc9d) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://k8s.io/cri-api") +; (synopsis "Purpose") +; (description +; "This repository contains the definitions for the Container Runtime Interface (CRI). +;CRI is a plugin interface which enables kubelet to use a wide variety of container runtimes, +;without the need to recompile. CRI consists of a protocol buffers and gRPC API.") +; (license license:asl2.0))) +; +;(define-public go-github-com-microsoft-hcsshim-test-0.0.0-20201218223536-d3e5debf77da +; (package +; (name "go-github-com-microsoft-hcsshim-test") +; (version "0.0.0-20201218223536-d3e5debf77da") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/microsoft/hcsshim") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0k57knv8zrf32hp7rpv1km9j772w6752pfvdbpd3l711ism48c84")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path +; "github.com/Microsoft/hcsshim/test" +; #:unpack-path +; "github.com/Microsoft/hcsshim")) +; (propagated-inputs +; `(("go-k8s-io-cri-api-0.17.3" ,go-k8s-io-cri-api-0.17.3) +; ("go-google-golang-org-grpc-1.23.1" ,go-google-golang-org-grpc-1.23.1) +; ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" +; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) +; ("go-go-etcd-io-bbolt-1.3.3" ,go-go-etcd-io-bbolt-1.3.3) +; ("go-github-com-xeipuuv-gojsonschema-0.0.0-20180618132009-1d523034197f" +; ,go-github-com-xeipuuv-gojsonschema-0.0.0-20180618132009-1d523034197f) +; ("go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415" +; ,go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415) +; ("go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f" +; ,go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f) +; ("go-github-com-syndtr-gocapability-0.0.0-20170704070218-db04d3cc01c8" +; ,go-github-com-syndtr-gocapability-0.0.0-20170704070218-db04d3cc01c8) +; ("go-github-com-sirupsen-logrus-1.4.2" +; ,go-github-com-sirupsen-logrus-1.4.2) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39" +; ,go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39) +; ("go-github-com-opencontainers-runtime-spec-1.0.2" +; ,go-github-com-opencontainers-runtime-spec-1.0.2) +; ("go-github-com-imdario-mergo-0.3.8" +; ,go-github-com-imdario-mergo-0.3.8) +; ("go-github-com-hashicorp-go-multierror-0.0.0-20161216184304-ed905158d874" +; ,go-github-com-hashicorp-go-multierror-0.0.0-20161216184304-ed905158d874) +; ("go-github-com-hashicorp-errwrap-0.0.0-20141028054710-7554cd9344ce" +; ,go-github-com-hashicorp-errwrap-0.0.0-20141028054710-7554cd9344ce) +; ("go-github-com-gogo-protobuf-1.3.1" +; ,go-github-com-gogo-protobuf-1.3.1) +; ("go-github-com-gogo-googleapis-1.2.0" +; ,go-github-com-gogo-googleapis-1.2.0) +; ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" +; ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) +; ("go-github-com-docker-distribution-0.0.0-20190905152932-14b96e55d84c" +; ,go-github-com-docker-distribution-0.0.0-20190905152932-14b96e55d84c) +; ("go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd" +; ,go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd) +; ("go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de" +; ,go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de) +; ("go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3" +; ,go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3) +; ("go-github-com-containerd-containerd-1.3.2" +; ,go-github-com-containerd-containerd-1.3.2) +; ("go-github-com-blang-semver-3.1.0+incompatible" +; ,go-github-com-blang-semver-3.1.0+incompatible) +; ("go-github-com-microsoft-go-winio-0.4.16-0.20201130162521-d1ffc52c7331" +; ,go-github-com-microsoft-go-winio-0.4.16-0.20201130162521-d1ffc52c7331))) +; (home-page "https://github.com/Microsoft/hcsshim") +; (synopsis #f) +; (description #f) +; (license license:expat))) +; +;(define-public go-github-com-containerd-aufs-0.0.0-20200908144142-dab0cbea06f4 +; (package +; (name "go-github-com-containerd-aufs") +; (version "0.0.0-20200908144142-dab0cbea06f4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/aufs") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "060iqypyrdmww0ykip1zqi5f2fl1il55vndgdn5aq5zj6530mgsn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/aufs")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) +; ("go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449" +; ,go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449) +; ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" +; ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) +; ("go-go-etcd-io-bbolt-1.3.3" ,go-go-etcd-io-bbolt-1.3.3) +; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) +; ("go-github-com-opencontainers-runc-1.0.0-rc9" +; ,go-github-com-opencontainers-runc-1.0.0-rc9) +; ("go-github-com-opencontainers-image-spec-1.0.1" +; ,go-github-com-opencontainers-image-spec-1.0.1) +; ("go-github-com-opencontainers-go-digest-1.0.0-rc1" +; ,go-github-com-opencontainers-go-digest-1.0.0-rc1) +; ("go-github-com-google-go-cmp-0.3.1" +; ,go-github-com-google-go-cmp-0.3.1) +; ("go-github-com-gogo-protobuf-1.3.1" +; ,go-github-com-gogo-protobuf-1.3.1) +; ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" +; ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) +; ("go-github-com-containerd-typeurl-0.0.0-20190911142611-5eb25027c9fd" +; ,go-github-com-containerd-typeurl-0.0.0-20190911142611-5eb25027c9fd) +; ("go-github-com-containerd-ttrpc-0.0.0-20191028202541-4f1b8fe65a5c" +; ,go-github-com-containerd-ttrpc-0.0.0-20191028202541-4f1b8fe65a5c) +; ("go-github-com-containerd-continuity-0.0.0-20191127005431-f65d91d395eb" +; ,go-github-com-containerd-continuity-0.0.0-20191127005431-f65d91d395eb) +; ("go-github-com-containerd-containerd-1.3.1-0.20191213020239-082f7e3aed57" +; ,go-github-com-containerd-containerd-1.3.1-0.20191213020239-082f7e3aed57) +; ("go-github-com-microsoft-hcsshim-0.8.7" +; ,go-github-com-microsoft-hcsshim-0.8.7))) +; (home-page "https://github.com/containerd/aufs") +; (synopsis "aufs snapshotter") +; (description +; "AUFS implementation of the snapshot interface for containerd.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-btrfs-0.0.0-20201111183144-404b9149801e +; (package +; (name "go-github-com-containerd-btrfs") +; (version "0.0.0-20201111183144-404b9149801e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/btrfs") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "10aakvy9njaly2mfwi1cvys8dxjn27mnd7wnpnmxh8pxb7g2svag")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/btrfs")) +; (propagated-inputs +; `(("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) +; (home-page "https://github.com/containerd/btrfs") +; (synopsis "go-btrfs") +; (description +; "Package btrfs provides bindings for working with btrfs partitions from Go. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-cgroups-0.0.0-20200824123100-0b889c03f102 +; (package +; (name "go-github-com-containerd-cgroups") +; (version "0.0.0-20200824123100-0b889c03f102") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/cgroups") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1zjmphy2df9y20hzrmwxfpyyvz8vb5lazr4pjyx3c5a5x0j4rv8d")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/cgroups")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9" +; ,go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9) +; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) +; ("go-github-com-stretchr-testify-1.2.2" +; ,go-github-com-stretchr-testify-1.2.2) +; ("go-github-com-sirupsen-logrus-1.6.0" +; ,go-github-com-sirupsen-logrus-1.6.0) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-runtime-spec-1.0.2" +; ,go-github-com-opencontainers-runtime-spec-1.0.2) +; ("go-github-com-gogo-protobuf-1.3.1" +; ,go-github-com-gogo-protobuf-1.3.1) +; ("go-github-com-godbus-dbus-v5-5.0.3" +; ,go-github-com-godbus-dbus-v5-5.0.3) +; ("go-github-com-docker-go-units-0.4.0" +; ,go-github-com-docker-go-units-0.4.0) +; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" +; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) +; ("go-github-com-coreos-go-systemd-v22-22.0.0" +; ,go-github-com-coreos-go-systemd-v22-22.0.0) +; ("go-github-com-cilium-ebpf-0.0.0-20200702112145-1c8d4c9ef775" +; ,go-github-com-cilium-ebpf-0.0.0-20200702112145-1c8d4c9ef775))) +; (home-page "https://github.com/containerd/cgroups") +; (synopsis "cgroups") +; (description +; "Go package for creating, managing, inspecting, and destroying cgroups. +;The resources format for settings on the cgroup uses the OCI runtime-spec found +;@url{https://github.com/opencontainers/runtime-spec,here}.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-continuity-0.0.0-20201208142359-180525291bb7 +; (package +; (name "go-github-com-containerd-continuity") +; (version "0.0.0-20201208142359-180525291bb7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/continuity") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1di4pspqfwfafdni0in84kzyn8h1fhqb6vh4i0g5skqmrc4sxf4h")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/continuity")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3" +; ,go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3) +; ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" +; ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) +; ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" +; ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) +; ("go-github-com-stretchr-testify-1.4.0" +; ,go-github-com-stretchr-testify-1.4.0) +; ("go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95" +; ,go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95) +; ("go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee" +; ,go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee) +; ("go-github-com-sirupsen-logrus-1.6.0" +; ,go-github-com-sirupsen-logrus-1.6.0) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-go-digest-1.0.0" +; ,go-github-com-opencontainers-go-digest-1.0.0) +; ("go-github-com-inconshreveable-mousetrap-1.0.0" +; ,go-github-com-inconshreveable-mousetrap-1.0.0) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0) +; ("go-github-com-dustin-go-humanize-1.0.0" +; ,go-github-com-dustin-go-humanize-1.0.0) +; ("go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898" +; ,go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898))) +; (home-page "https://github.com/containerd/continuity") +; (synopsis "continuity") +; (description +; "This package provides a transport-agnostic, filesystem metadata manifest system") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-fifo-0.0.0-20201026212402-0724c46b320c +; (package +; (name "go-github-com-containerd-fifo") +; (version "0.0.0-20201026212402-0724c46b320c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/fifo") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "11d9j0isblnnqf78ygvwjyijjxn6zdzf7p803v0jv2py4d0pkvj8")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/fifo")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449" +; ,go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449) +; ("go-github-com-stretchr-testify-1.4.0" +; ,go-github-com-stretchr-testify-1.4.0) +; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) +; (home-page "https://github.com/containerd/fifo") +; (synopsis "fifo") +; (description "Go package for handling fifos in a sane way.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containernetworking-cni-0.8.0 +; (package +; (name "go-github-com-containernetworking-cni") +; (version "0.8.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containernetworking/cni") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "16i59dhiq7pc7qs32cdk4yv4w9rjx4vvlw7fb6a6jhq6hxxjrgiw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containernetworking/cni")) +; (home-page "https://github.com/containernetworking/cni") +; (synopsis "CNI - the Container Network Interface") +; (description +; "CNI (), a @url{https://cncf.io,Cloud Native Computing Foundation} project, consists of a specification and libraries for writing plugins to configure network interfaces in Linux containers, along with a number of supported plugins. +;CNI concerns itself only with network connectivity of containers and removing allocated resources when the container is deleted. +;Because of this focus, CNI has a wide range of support and the specification is simple to implement.") +; (license license:asl2.0))) +; +;(define-public go-github-com-onsi-ginkgo-1.10.3 +; (package +; (name "go-github-com-onsi-ginkgo") +; (version "1.10.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/onsi/ginkgo") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "00a40by9f5ylycnar8h3p9b4z5rcsvfvg4j3v5s5mchdqrqjv1pc")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/onsi/ginkgo")) +; (home-page "https://github.com/onsi/ginkgo") +; (synopsis "Ginkgo 2.0 Release Candidate is available!") +; (description "Ginkgo is a BDD-style testing framework for Golang +;") +; (license license:expat))) +; +;(define-public go-github-com-stretchr-objx-0.0.0-20180129172003-8a3f7159479f +; (package +; (name "go-github-com-stretchr-objx") +; (version "0.0.0-20180129172003-8a3f7159479f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/objx") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0rbz4x4jbq9vp3zxmv0c2wh1vbg48lmc8ncdgz7zxk7241fc31ki")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/objx")) +; (home-page "https://github.com/stretchr/objx") +; (synopsis "Objx") +; (description +; "Objx - Go package for dealing with maps, slices, JSON and other data. +;") +; (license license:expat))) +; +;(define-public go-github-com-stretchr-testify-0.0.0-20180303142811-b89eecf5ca5d +; (package +; (name "go-github-com-stretchr-testify") +; (version "0.0.0-20180303142811-b89eecf5ca5d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/testify") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0g946ii8qjaynvidj648z8izl91i6yhy0ir6g3qsrn136im3r8wk")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/testify")) +; (home-page "https://github.com/stretchr/testify") +; (synopsis "Testify - Thou Shalt Write Tests") +; (description +; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +;") +; (license license:expat))) +; +;(define-public go-github-com-containerd-go-cni-1.0.1 +; (package +; (name "go-github-com-containerd-go-cni") +; (version "1.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/go-cni") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0sdlwa4d0kzpm3vg9jy6fxqqcfjq8innv1zjcyp8n9qy8vj9b24y")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/go-cni")) +; (propagated-inputs +; `(("go-github-com-stretchr-testify-0.0.0-20180303142811-b89eecf5ca5d" +; ,go-github-com-stretchr-testify-0.0.0-20180303142811-b89eecf5ca5d) +; ("go-github-com-stretchr-objx-0.0.0-20180129172003-8a3f7159479f" +; ,go-github-com-stretchr-objx-0.0.0-20180129172003-8a3f7159479f) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-onsi-gomega-1.7.1" ,go-github-com-onsi-gomega-1.7.1) +; ("go-github-com-onsi-ginkgo-1.10.3" ,go-github-com-onsi-ginkgo-1.10.3) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1) +; ("go-github-com-containernetworking-cni-0.8.0" +; ,go-github-com-containernetworking-cni-0.8.0))) +; (home-page "https://github.com/containerd/go-cni") +; (synopsis "go-cni") +; (description +; "This package provides a generic CNI library to provide APIs for CNI plugin interactions. The library provides APIs to:") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-console-0.0.0-20191206165004-02ecf6a7291e +; (package +; (name "go-github-com-containerd-console") +; (version "0.0.0-20191206165004-02ecf6a7291e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/console") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1b3yq446gv8da4fajknbjxr5syz1ypz0nii9sqw066hx8kmqzgqh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/console")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e" +; ,go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e) +; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) +; (home-page "https://github.com/containerd/console") +; (synopsis "console") +; (description +; "Golang package for dealing with consoles. Light on deps and a simple API.") +; (license license:asl2.0))) +; +;(define-public go-github-com-opencontainers-runtime-spec-1.0.1 +; (package +; (name "go-github-com-opencontainers-runtime-spec") +; (version "1.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/runtime-spec") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "00qb0q7ndxsll12ilp5a8pqfi4i1jqrlqzv0yf7sn52lkrdrw5f4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) +; (home-page "https://github.com/opencontainers/runtime-spec") +; (synopsis "Open Container Initiative Runtime Specification") +; (description +; "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328 +; (package +; (name "go-github-com-containerd-go-runc") +; (version "0.0.0-20200220073739-7016d3ce2328") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/go-runc") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1mx2lvfkxw9kiyhi18g3c6hcpb9r2115zjzyvz6rkdqr08xrij9k")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/go-runc")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449" +; ,go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449) +; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) +; ("go-github-com-opencontainers-runtime-spec-1.0.1" +; ,go-github-com-opencontainers-runtime-spec-1.0.1) +; ("go-github-com-containerd-console-0.0.0-20191206165004-02ecf6a7291e" +; ,go-github-com-containerd-console-0.0.0-20191206165004-02ecf6a7291e))) +; (home-page "https://github.com/containerd/go-runc") +; (synopsis "go-runc") +; (description +; "This is a package for consuming the @url{https://github.com/opencontainers/runc,runc} binary in your Go applications. +;It tries to expose all the settings and features of the runc CLI. If there is something missing then add it, its opensource!") +; (license license:asl2.0))) +; +;(define-public go-github-com-microsoft-go-winio-0.4.14 +; (package +; (name "go-github-com-microsoft-go-winio") +; (version "0.4.14") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/microsoft/go-winio") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0n34wi9l9ks2z3cz97j30ljfmqppwf1zxr16hwbnswyrk54fcxm3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/Microsoft/go-winio")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b" +; ,go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b) +; ("go-github-com-sirupsen-logrus-1.4.1" +; ,go-github-com-sirupsen-logrus-1.4.1) +; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) +; (home-page "https://github.com/Microsoft/go-winio") +; (synopsis "go-winio") +; (description +; "This repository contains utilities for efficiently performing Win32 IO operations in +;Go. Currently, this is focused on accessing named pipes and other file handles, and +;for using named pipes as a net transport.") +; (license license:expat))) +; +;(define-public go-github-com-microsoft-hcsshim-0.8.7-0.20190325164909-8abdbb8205e4 +; (package +; (name "go-github-com-microsoft-hcsshim") +; (version "0.8.7-0.20190325164909-8abdbb8205e4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/microsoft/hcsshim") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0029085clghvprb3bs2m9q7xk4njx5fg2gr5wm3a0y8kqx0awv45")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/Microsoft/hcsshim")) +; (home-page "https://github.com/Microsoft/hcsshim") +; (synopsis "hcsshim") +; (description +; "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") +; (license license:expat))) +; +;(define-public go-github-com-containerd-cgroups-0.0.0-20190717030353-c4b9ac5c7601 +; (package +; (name "go-github-com-containerd-cgroups") +; (version "0.0.0-20190717030353-c4b9ac5c7601") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/cgroups") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1fpai6nsm7qd5zfd8ykq8j4ngbqcy5v2isw16j086j0qabyw2iiw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/cgroups")) +; (home-page "https://github.com/containerd/cgroups") +; (synopsis "cgroups") +; (description +; "Go package for creating, managing, inspecting, and destroying cgroups. +;The resources format for settings on the cgroup uses the OCI runtime-spec found +;@url{https://github.com/opencontainers/runtime-spec,here}.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-console-0.0.0-20181022165439-0650fd9eeb50 +; (package +; (name "go-github-com-containerd-console") +; (version "0.0.0-20181022165439-0650fd9eeb50") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/console") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0cs11g3gjan15rnbgryf60725sw2hf83fb6y2hwn1rgcm0jab1b8")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/console")) +; (home-page "https://github.com/containerd/console") +; (synopsis "console") +; (description +; "Golang package for dealing with consoles. Light on deps and a simple API.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-containerd-1.3.0 +; (package +; (name "go-github-com-containerd-containerd") +; (version "1.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/containerd") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "05mr33l0rhkj49n6wf9lk95ijqvqwhp68ll879rpad1ypfv2f8as")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/containerd")) +; (home-page "https://github.com/containerd/containerd") +; (synopsis "Now Recruiting") +; (description +; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-continuity-0.0.0-20190815185530-f2a389ac0a02 +; (package +; (name "go-github-com-containerd-continuity") +; (version "0.0.0-20190815185530-f2a389ac0a02") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/continuity") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0h8a7npx46sjak0dyypkgg0h5dkq6dqpa4gx1v22ik62rmw0jy8r")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/continuity")) +; (home-page "https://github.com/containerd/continuity") +; (synopsis "continuity") +; (description +; "This package provides a transport-agnostic, filesystem metadata manifest system") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-fifo-0.0.0-20180307165137-3d5202aec260 +; (package +; (name "go-github-com-containerd-fifo") +; (version "0.0.0-20180307165137-3d5202aec260") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/fifo") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "11jp12vgfj0xg9m2w5cfay72fwrxb6w8za7rkcqw8yy8hypiqqxq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/fifo")) +; (home-page "https://github.com/containerd/fifo") +; (synopsis "fifo") +; (description "Go package for handling fifos in a sane way.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-go-runc-0.0.0-20190911050354-e029b79d8cda +; (package +; (name "go-github-com-containerd-go-runc") +; (version "0.0.0-20190911050354-e029b79d8cda") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/go-runc") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0zwb6bfnfmj09rnz1z3xx1y2pm4wrhyp2ls7vmf7p62j5zyvdpkw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/go-runc")) +; (home-page "https://github.com/containerd/go-runc") +; (synopsis "go-runc") +; (description +; "This is a package for consuming the @url{https://github.com/opencontainers/runc,runc} binary in your Go applications. +;It tries to expose all the settings and features of the runc CLI. If there is something missing then add it, its opensource!") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-ttrpc-0.0.0-20190828172938-92c8520ef9f8 +; (package +; (name "go-github-com-containerd-ttrpc") +; (version "0.0.0-20190828172938-92c8520ef9f8") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/ttrpc") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1kzclhmicw2xkiqsg6npx0xzs5jx36mqmyd0gj5dzv88i7p4b8dx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/ttrpc")) +; (home-page "https://github.com/containerd/ttrpc") +; (synopsis "ttrpc") +; (description "GRPC for low-memory environments.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-containerd-1.2.10 +; (package +; (name "go-github-com-containerd-containerd") +; (version "1.2.10") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/containerd") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1kddhkd93wkrimk0yjcqiavdrqc818nd39rf3wrgxyilx1mfnrwb")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/containerd")) +; (home-page "https://github.com/containerd/containerd") +; (synopsis "Now Recruiting") +; (description +; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") +; (license license:asl2.0))) +; +;(define-public go-github-com-fullsailor-pkcs7-0.0.0-20190404230743-d7302db945fa +; (package +; (name "go-github-com-fullsailor-pkcs7") +; (version "0.0.0-20190404230743-d7302db945fa") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/fullsailor/pkcs7") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "13d7dpj85j36pxwg1kn7b23rm54va5p9v3vdcx27pma2jjlsxsm1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/fullsailor/pkcs7")) +; (home-page "https://github.com/fullsailor/pkcs7") +; (synopsis "pkcs7") +; (description +; "Package pkcs7 implements parsing and generation of some PKCS#7 structures. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20190701094942-4def268fd1a4 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20190701094942-4def268fd1a4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1bfsnari529gw34cz0zqk3d9mrkcj1ay35kangri8kbgll0ss5a6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" +; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) +; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" +; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-gopkg-in-square-go-jose-v2-2.3.1 +; (package +; (name "go-gopkg-in-square-go-jose-v2") +; (version "2.3.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/square/go-jose.v2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "11r93g9xrcjqj7qvq8sbd5hy5rnbpmim0vdsp6rbav8gl7wimaa3")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path +; "gopkg.in/square/go-jose.v2" +; #:unpack-path +; "gopkg.in/square/go-jose.v2")) +; (home-page "https://gopkg.in/square/go-jose.v2") +; (synopsis "Go JOSE") +; (description +; "Package jose aims to provide an implementation of the Javascript Object Signing +;and Encryption set of standards. It implements encryption and signing based on +;the JSON Web Encryption and JSON Web Signature standards, with optional JSON +;Web Token support available in a sub-package. The library supports both the +;compact and full serialization formats, and has optional support for multiple +;recipients. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-containers-ocicrypt-1.0.1 +; (package +; (name "go-github-com-containers-ocicrypt") +; (version "1.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containers/ocicrypt") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0q27vzgdsimypkpi7iv0rl1xz571554adphyl0j8b5qa8wrf0n7v")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containers/ocicrypt")) +; (propagated-inputs +; `(("go-gotest-tools-2.2.0+incompatible" +; ,go-gotest-tools-2.2.0+incompatible) +; ("go-gopkg-in-square-go-jose-v2-2.3.1" +; ,go-gopkg-in-square-go-jose-v2-2.3.1) +; ("go-google-golang-org-grpc-1.24.0" ,go-google-golang-org-grpc-1.24.0) +; ("go-golang-org-x-crypto-0.0.0-20190701094942-4def268fd1a4" +; ,go-golang-org-x-crypto-0.0.0-20190701094942-4def268fd1a4) +; ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) +; ("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0) +; ("go-github-com-sirupsen-logrus-1.4.2" +; ,go-github-com-sirupsen-logrus-1.4.2) +; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) +; ("go-github-com-opencontainers-image-spec-1.0.1" +; ,go-github-com-opencontainers-image-spec-1.0.1) +; ("go-github-com-opencontainers-go-digest-1.0.0-rc1" +; ,go-github-com-opencontainers-go-digest-1.0.0-rc1) +; ("go-github-com-fullsailor-pkcs7-0.0.0-20190404230743-d7302db945fa" +; ,go-github-com-fullsailor-pkcs7-0.0.0-20190404230743-d7302db945fa) +; ("go-github-com-containerd-containerd-1.2.10" +; ,go-github-com-containerd-containerd-1.2.10))) +; (home-page "https://github.com/containers/ocicrypt") +; (synopsis "OCIcrypt Library") +; (description +; "The @code{ocicrypt} library is the OCI image spec implementation of container image encryption. More details of the spec can be seen in the @url{https://github.com/opencontainers/image-spec/pull/775,OCI repository}. The purpose of this library is to encode spec structures and consts in code, as well as provide a consistent implementation of image encryption across container runtimes and build tools.") +; (license license:asl2.0))) +; +;(define-public go-github-com-coreos-go-systemd-0.0.0-20161114122254-48702e0da86b +; (package +; (name "go-github-com-coreos-go-systemd") +; (version "0.0.0-20161114122254-48702e0da86b") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/coreos/go-systemd") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "04zl9ns4j3lpjykf32rv5cb6sj9x5ci8yi90vab1bl27vnqjgdkh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/coreos/go-systemd")) +; (home-page "https://github.com/coreos/go-systemd") +; (synopsis "go-systemd") +; (description "Go bindings to systemd. The project has several packages:") +; (license license:asl2.0))) +; +;(define-public go-github-com-docker-distribution-2.7.1-0.20190205005809-0d3efadf0154+incompatible +; (package +; (name "go-github-com-docker-distribution") +; (version "2.7.1-0.20190205005809-0d3efadf0154+incompatible") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/distribution/distribution") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1wayhmcxr6l281fqkbw1gh0ymhxlznf4jj1rcldhwrc64l2zjh8l")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/docker/distribution")) +; (home-page "https://github.com/docker/distribution") +; (synopsis "Distribution") +; (description +; "Package distribution will define the interfaces for the components of +;docker distribution. The goal is to allow users to reliably package, ship +;and store content related to docker images. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-docker-go-events-0.0.0-20170721190031-9461782956ad +; (package +; (name "go-github-com-docker-go-events") +; (version "0.0.0-20170721190031-9461782956ad") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/docker/go-events") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0vn0kd0w253jwdk86gv1h6s8p6bzxiyif74xdzlb39zr6fdrr145")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/docker/go-events")) +; (home-page "https://github.com/docker/go-events") +; (synopsis "Docker Events Package") +; (description +; "The Docker @code{events} package implements a composable event distribution package +;for Go.") +; (license license:asl2.0))) +; +;(define-public go-github-com-godbus-dbus-0.0.0-20151105175453-c7fdd8b5cd55 +; (package +; (name "go-github-com-godbus-dbus") +; (version "0.0.0-20151105175453-c7fdd8b5cd55") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/godbus/dbus") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "09zazkiny2im24xaiac5kbyhhnbqdbhwi9z9n7fj6rhpg8msiq9n")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/godbus/dbus")) +; (home-page "https://github.com/godbus/dbus") +; (synopsis "dbus") +; (description +; "Package dbus implements bindings to the D-Bus message bus system. +;") +; (license license:bsd-2))) +; +;(define-public go-github-com-gogo-googleapis-1.2.0 +; (package +; (name "go-github-com-gogo-googleapis") +; (version "1.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/gogo/googleapis") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1a82n0xp0v8lgjxzl3aa595r0rmy7afgyn2l3kv6z9kzw339i0jp")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/gogo/googleapis")) +; (propagated-inputs +; `(("go-github-com-gogo-protobuf-1.2.1" +; ,go-github-com-gogo-protobuf-1.2.1))) +; (home-page "https://github.com/gogo/googleapis") +; (synopsis "Google APIs generated by gogoprotobuf") +; (description +; "The @url{https://github.com/gogo/grpc-example,grpc-example} includes an example usage of this repository.") +; (license license:asl2.0))) +; +;(define-public go-github-com-imdario-mergo-0.3.8 +; (package +; (name "go-github-com-imdario-mergo") +; (version "0.3.8") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/imdario/mergo") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "15xwyrnwng11ib0fxi7clwick2r0njwn0gs3va2g5m1ad418ry57")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/imdario/mergo")) +; (home-page "https://github.com/imdario/mergo") +; (synopsis "Mergo") +; (description +; "This package provides a helper to merge structs and maps in Golang. Useful for configuration default values, avoiding messy if-statements. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-opencontainers-go-digest-1.0.0-rc1.0.20180430190053-c9281466c8b2 +; (package +; (name "go-github-com-opencontainers-go-digest") +; (version "1.0.0-rc1.0.20180430190053-c9281466c8b2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/go-digest") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1djdazssy27xn91pjhx3dgb0f11bnlzzbwkh7f8zwnpz011anasi")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/go-digest")) +; (home-page "https://github.com/opencontainers/go-digest") +; (synopsis "go-digest") +; (description +; "Package digest provides a generalized type to opaquely represent message +;digests and their operations within the registry. The Digest type is +;designed to serve as a flexible identifier in a content-addressable system. +;More importantly, it provides tools and wrappers to work with +;hash.Hash-based digests with little effort. +;") +; (license (list license:asl2.0 license:cc-by-sa4.0)))) +; +;(define-public go-github-com-opencontainers-runc-1.0.0-rc8.0.20190926000215-3e425f80a8c9 +; (package +; (name "go-github-com-opencontainers-runc") +; (version "1.0.0-rc8.0.20190926000215-3e425f80a8c9") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/runc") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "18psc830b2rkwml1x6vxngam5b5wi3pj14mw817rshpzy87prspj")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/runc")) +; (home-page "https://github.com/opencontainers/runc") +; (synopsis "runc") +; (description +; "@code{runc} is a CLI tool for spawning and running containers according to the OCI specification.") +; (license license:asl2.0))) +; +;(define-public go-github-com-opencontainers-runtime-spec-1.0.2-0.20190207185410-29686dbc5559 +; (package +; (name "go-github-com-opencontainers-runtime-spec") +; (version "1.0.2-0.20190207185410-29686dbc5559") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/runtime-spec") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0i8q3520jk4yl9rsxs8mn5vsi9i0gd3drysbhciaqwm5l8c30h65")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) +; (home-page "https://github.com/opencontainers/runtime-spec") +; (synopsis "Open Container Initiative Runtime Specification") +; (description +; "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") +; (license license:asl2.0))) +; +;(define-public go-github-com-prometheus-procfs-0.0.8 +; (package +; (name "go-github-com-prometheus-procfs") +; (version "0.0.8") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/procfs") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "076wblhz8fjdc73fmz1lg0hafbwg1xv8hszm78lbg9anjpfgacvq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/procfs")) +; (propagated-inputs +; `(("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" +; ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) +; ("go-github-com-google-go-cmp-0.3.1" +; ,go-github-com-google-go-cmp-0.3.1))) +; (home-page "https://github.com/prometheus/procfs") +; (synopsis "procfs") +; (description +; "Package procfs provides functions to retrieve system, kernel and process +;metrics from the pseudo-filesystem proc. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-net-0.0.0-20190522155817-f3200d17e092 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190522155817-f3200d17e092") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1mskh7p80dd8j1ffy16917d3cyy7lfh1gb56n4rq9g1bwckz4lwy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190812073006-9eafafc0a87e +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190812073006-9eafafc0a87e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0g5wcpiafz47066993mgz77gka9qzww6w6crxpnyir0459j7z07r")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-grpc-1.24.0 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.24.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0h8mwv74vzcfb7p4ai247x094skxca71vjp4wpj2wzmri0x9p4v6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" +; ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) +; ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" +; ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) +; ("go-google-golang-org-appengine-1.1.0" +; ,go-google-golang-org-appengine-1.1.0) +; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" +; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-github-com-google-go-cmp-0.2.0" +; ,go-github-com-google-go-cmp-0.2.0) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2) +; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-client9-misspell-0.3.4" +; ,go-github-com-client9-misspell-0.3.4) +; ("go-github-com-burntsushi-toml-0.3.1" +; ,go-github-com-burntsushi-toml-0.3.1) +; ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-imgcrypt-1.0.1 +; (package +; (name "go-github-com-containerd-imgcrypt") +; (version "1.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/imgcrypt") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0y0gbnp8imckw6rv3sjf3sycp8rc9lyhv0pp0x3q3yksvqmbqh5v")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/imgcrypt")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.24.0" ,go-google-golang-org-grpc-1.24.0) +; ("go-golang-org-x-sys-0.0.0-20190812073006-9eafafc0a87e" +; ,go-golang-org-x-sys-0.0.0-20190812073006-9eafafc0a87e) +; ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" +; ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) +; ("go-golang-org-x-net-0.0.0-20190522155817-f3200d17e092" +; ,go-golang-org-x-net-0.0.0-20190522155817-f3200d17e092) +; ("go-go-etcd-io-bbolt-1.3.3" ,go-go-etcd-io-bbolt-1.3.3) +; ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) +; ("go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2" +; ,go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2) +; ("go-github-com-sirupsen-logrus-1.4.2" +; ,go-github-com-sirupsen-logrus-1.4.2) +; ("go-github-com-prometheus-procfs-0.0.8" +; ,go-github-com-prometheus-procfs-0.0.8) +; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) +; ("go-github-com-opencontainers-runtime-spec-1.0.2-0.20190207185410-29686dbc5559" +; ,go-github-com-opencontainers-runtime-spec-1.0.2-0.20190207185410-29686dbc5559) +; ("go-github-com-opencontainers-runc-1.0.0-rc8.0.20190926000215-3e425f80a8c9" +; ,go-github-com-opencontainers-runc-1.0.0-rc8.0.20190926000215-3e425f80a8c9) +; ("go-github-com-opencontainers-image-spec-1.0.1" +; ,go-github-com-opencontainers-image-spec-1.0.1) +; ("go-github-com-opencontainers-go-digest-1.0.0-rc1.0.20180430190053-c9281466c8b2" +; ,go-github-com-opencontainers-go-digest-1.0.0-rc1.0.20180430190053-c9281466c8b2) +; ("go-github-com-imdario-mergo-0.3.8" +; ,go-github-com-imdario-mergo-0.3.8) +; ("go-github-com-gogo-protobuf-1.2.1" +; ,go-github-com-gogo-protobuf-1.2.1) +; ("go-github-com-gogo-googleapis-1.2.0" +; ,go-github-com-gogo-googleapis-1.2.0) +; ("go-github-com-godbus-dbus-0.0.0-20151105175453-c7fdd8b5cd55" +; ,go-github-com-godbus-dbus-0.0.0-20151105175453-c7fdd8b5cd55) +; ("go-github-com-docker-go-units-0.4.0" +; ,go-github-com-docker-go-units-0.4.0) +; ("go-github-com-docker-go-events-0.0.0-20170721190031-9461782956ad" +; ,go-github-com-docker-go-events-0.0.0-20170721190031-9461782956ad) +; ("go-github-com-docker-distribution-2.7.1-0.20190205005809-0d3efadf0154+incompatible" +; ,go-github-com-docker-distribution-2.7.1-0.20190205005809-0d3efadf0154+incompatible) +; ("go-github-com-coreos-go-systemd-0.0.0-20161114122254-48702e0da86b" +; ,go-github-com-coreos-go-systemd-0.0.0-20161114122254-48702e0da86b) +; ("go-github-com-containers-ocicrypt-1.0.1" +; ,go-github-com-containers-ocicrypt-1.0.1) +; ("go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd" +; ,go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd) +; ("go-github-com-containerd-ttrpc-0.0.0-20190828172938-92c8520ef9f8" +; ,go-github-com-containerd-ttrpc-0.0.0-20190828172938-92c8520ef9f8) +; ("go-github-com-containerd-go-runc-0.0.0-20190911050354-e029b79d8cda" +; ,go-github-com-containerd-go-runc-0.0.0-20190911050354-e029b79d8cda) +; ("go-github-com-containerd-fifo-0.0.0-20180307165137-3d5202aec260" +; ,go-github-com-containerd-fifo-0.0.0-20180307165137-3d5202aec260) +; ("go-github-com-containerd-continuity-0.0.0-20190815185530-f2a389ac0a02" +; ,go-github-com-containerd-continuity-0.0.0-20190815185530-f2a389ac0a02) +; ("go-github-com-containerd-containerd-1.3.0" +; ,go-github-com-containerd-containerd-1.3.0) +; ("go-github-com-containerd-console-0.0.0-20181022165439-0650fd9eeb50" +; ,go-github-com-containerd-console-0.0.0-20181022165439-0650fd9eeb50) +; ("go-github-com-containerd-cgroups-0.0.0-20190717030353-c4b9ac5c7601" +; ,go-github-com-containerd-cgroups-0.0.0-20190717030353-c4b9ac5c7601) +; ("go-github-com-microsoft-hcsshim-0.8.7-0.20190325164909-8abdbb8205e4" +; ,go-github-com-microsoft-hcsshim-0.8.7-0.20190325164909-8abdbb8205e4) +; ("go-github-com-microsoft-go-winio-0.4.14" +; ,go-github-com-microsoft-go-winio-0.4.14))) +; (home-page "https://github.com/containerd/imgcrypt") +; (synopsis "imgcrypt image encryption library and command line tool") +; (description +; "Project @code{imgcrypt} is a non-core subproject of containerd.") +; (license license:asl2.0))) +; +;(define-public go-github-com-blang-semver-3.1.0+incompatible +; (package +; (name "go-github-com-blang-semver") +; (version "3.1.0+incompatible") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/blang/semver") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1s80qlij6j6wrh0fhm0l11hbf3qjra67nca5bl7izyfjj4621fcd")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/blang/semver")) +; (home-page "https://github.com/blang/semver") +; (synopsis "semver for golang") +; (description +; "semver is a @url{http://semver.org/,Semantic Versioning} library written in golang. It fully covers spec version @code{2.0.0}.") +; (license license:expat))) +; +;(define-public go-github-com-containerd-containerd-1.3.0-beta.2.0.20190828155532-0293cbd26c69 +; (package +; (name "go-github-com-containerd-containerd") +; (version "1.3.0-beta.2.0.20190828155532-0293cbd26c69") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/containerd") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1jhb4a7fczf817d9dwj0a02wfscv46hkymrqh1dcsgpdsp80igkw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/containerd")) +; (home-page "https://github.com/containerd/containerd") +; (synopsis "Now Recruiting") +; (description +; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") +; (license license:asl2.0))) +; +;(define-public go-github-com-hashicorp-errwrap-0.0.0-20141028054710-7554cd9344ce +; (package +; (name "go-github-com-hashicorp-errwrap") +; (version "0.0.0-20141028054710-7554cd9344ce") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/errwrap") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0kmv0p605di6jc8i1778qzass18m0mv9ks9vxxrfsiwcp4la82jf")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hashicorp/errwrap")) +; (home-page "https://github.com/hashicorp/errwrap") +; (synopsis "errwrap") +; (description +; "Package errwrap implements methods to formalize error wrapping in Go. +;") +; (license license:mpl2.0))) +; +;(define-public go-github-com-hashicorp-go-multierror-0.0.0-20161216184304-ed905158d874 +; (package +; (name "go-github-com-hashicorp-go-multierror") +; (version "0.0.0-20161216184304-ed905158d874") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/go-multierror") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1bldhx9dmx9q4gjsag3g1xswq1jsf394rs69fdbmgnkj75j3sp70")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hashicorp/go-multierror")) +; (home-page "https://github.com/hashicorp/go-multierror") +; (synopsis "go-multierror") +; (description +; "@code{go-multierror} is a package for Go that provides a mechanism for +;representing a list of @code{error} values as a single @code{error}.") +; (license license:mpl2.0))) +; +;(define-public go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39 +; (package +; (name "go-github-com-opencontainers-runtime-tools") +; (version "0.0.0-20181011054405-1d69bd0f9c39") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/runtime-tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1wgisl2v8i1hvy3bf8f16v7rarx2ynyasb0jx4kffp5n5hz2hfcl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/runtime-tools")) +; (home-page "https://github.com/opencontainers/runtime-tools") +; (synopsis "oci-runtime-tool") +; (description +; "oci-runtime-tool is a collection of tools for working with the @url{https://github.com/opencontainers/runtime-spec,OCI runtime specification}. +;To build from source code, runtime-tools requires Go 1.10.x or above.") +; (license license:asl2.0))) +; +;(define-public go-github-com-prometheus-procfs-0.0.5 +; (package +; (name "go-github-com-prometheus-procfs") +; (version "0.0.5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/procfs") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1nqn8ip9f4f6kqrvand4lxhcxrkk19dwf8s3nh336i9wr2jfhbwa")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/procfs")) +; (propagated-inputs +; `(("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" +; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) +; ("go-github-com-google-go-cmp-0.3.0" +; ,go-github-com-google-go-cmp-0.3.0))) +; (home-page "https://github.com/prometheus/procfs") +; (synopsis "procfs") +; (description +; "Package procfs provides functions to retrieve system, kernel and process +;metrics from the pseudo-filesystem proc. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-syndtr-gocapability-0.0.0-20170704070218-db04d3cc01c8 +; (package +; (name "go-github-com-syndtr-gocapability") +; (version "0.0.0-20170704070218-db04d3cc01c8") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/syndtr/gocapability") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0jwica5kqax70rd4gbc2yjdz54401s4mr6clyn60gcmnxc0wynds")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/syndtr/gocapability")) +; (home-page "https://github.com/syndtr/gocapability") +; (synopsis #f) +; (description #f) +; (license license:bsd-2))) +; +;(define-public go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f +; (package +; (name "go-github-com-xeipuuv-gojsonpointer") +; (version "0.0.0-20180127040702-4e3ac2762d5f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/xeipuuv/gojsonpointer") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "13y6iq2nzf9z4ls66bfgnnamj2m3438absmbpqry64bpwjfbsi9q")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/xeipuuv/gojsonpointer")) +; (home-page "https://github.com/xeipuuv/gojsonpointer") +; (synopsis "gojsonpointer") +; (description "An implementation of JSON Pointer - Go language") +; (license license:asl2.0))) +; +;(define-public go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415 +; (package +; (name "go-github-com-xeipuuv-gojsonreference") +; (version "0.0.0-20180127040603-bd5ef7bd5415") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/xeipuuv/gojsonreference") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1xby79padc7bmyb8rfbad8wfnfdzpnh51b1n8c0kibch0kwc1db5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/xeipuuv/gojsonreference")) +; (home-page "https://github.com/xeipuuv/gojsonreference") +; (synopsis "gojsonreference") +; (description "An implementation of JSON Reference - Go language") +; (license license:asl2.0))) +; +;(define-public go-github-com-xeipuuv-gojsonschema-0.0.0-20180618132009-1d523034197f +; (package +; (name "go-github-com-xeipuuv-gojsonschema") +; (version "0.0.0-20180618132009-1d523034197f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/xeipuuv/gojsonschema") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1z8c6x8sfh6d1ib2lm2jps7r139qip6h3zik3fxhy1yr1380qbzp")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/xeipuuv/gojsonschema")) +; (home-page "https://github.com/xeipuuv/gojsonschema") +; (synopsis "gojsonschema") +; (description +; "An implementation of JSON Schema for the Go programming language. Supports draft-04, draft-06 and draft-07.") +; (license license:asl2.0))) +; +;(define-public go-k8s-io-kubernetes-1.13.0 +; (package +; (name "go-k8s-io-kubernetes") +; (version "1.13.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes/kubernetes") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "12cvw8b7l319p8nc2imc2wck7zz7vzrwcjyxq5djqj7l5rbcwmzs")))) +; (build-system go-build-system) +; (arguments '(#:import-path "k8s.io/kubernetes")) +; (home-page "https://k8s.io/kubernetes") +; (synopsis "Kubernetes (K8s)") +; (description +; "Kubernetes, also known as K8s, is an open source system for managing @url{https://kubernetes.io/docs/concepts/overview/what-is-kubernetes/,containerized applications} +;across multiple hosts. It provides basic mechanisms for deployment, maintenance, +;and scaling of applications.") +; (license license:asl2.0))) +; +;(define-public go-github-com-microsoft-hcsshim-0.8.7 +; (package +; (name "go-github-com-microsoft-hcsshim") +; (version "0.8.7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/microsoft/hcsshim") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1c6ix202ll48n7x00xxb7gzgm3srm9zwwbx2503l6vz3sqclh9xm")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/Microsoft/hcsshim")) +; (propagated-inputs +; `(("go-k8s-io-kubernetes-1.13.0" ,go-k8s-io-kubernetes-1.13.0) +; ("go-gotest-tools-2.2.0+incompatible" +; ,go-gotest-tools-2.2.0+incompatible) +; ("go-google-golang-org-grpc-1.20.1" ,go-google-golang-org-grpc-1.20.1) +; ("go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3" +; ,go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3) +; ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" +; ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) +; ("go-go-opencensus-io-0.22.0" ,go-go-opencensus-io-0.22.0) +; ("go-github-com-xeipuuv-gojsonschema-0.0.0-20180618132009-1d523034197f" +; ,go-github-com-xeipuuv-gojsonschema-0.0.0-20180618132009-1d523034197f) +; ("go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415" +; ,go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415) +; ("go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f" +; ,go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f) +; ("go-github-com-urfave-cli-0.0.0-20171014202726-7bc6a0acffa5" +; ,go-github-com-urfave-cli-0.0.0-20171014202726-7bc6a0acffa5) +; ("go-github-com-syndtr-gocapability-0.0.0-20170704070218-db04d3cc01c8" +; ,go-github-com-syndtr-gocapability-0.0.0-20170704070218-db04d3cc01c8) +; ("go-github-com-sirupsen-logrus-1.4.1" +; ,go-github-com-sirupsen-logrus-1.4.1) +; ("go-github-com-prometheus-procfs-0.0.5" +; ,go-github-com-prometheus-procfs-0.0.5) +; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) +; ("go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39" +; ,go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39) +; ("go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700" +; ,go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700) +; ("go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f" +; ,go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f) +; ("go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2" +; ,go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2) +; ("go-github-com-hashicorp-go-multierror-0.0.0-20161216184304-ed905158d874" +; ,go-github-com-hashicorp-go-multierror-0.0.0-20161216184304-ed905158d874) +; ("go-github-com-hashicorp-errwrap-0.0.0-20141028054710-7554cd9344ce" +; ,go-github-com-hashicorp-errwrap-0.0.0-20141028054710-7554cd9344ce) +; ("go-github-com-gogo-protobuf-1.2.1" +; ,go-github-com-gogo-protobuf-1.2.1) +; ("go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd" +; ,go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd) +; ("go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de" +; ,go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de) +; ("go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3" +; ,go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3) +; ("go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448" +; ,go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448) +; ("go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc" +; ,go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc) +; ("go-github-com-containerd-containerd-1.3.0-beta.2.0.20190828155532-0293cbd26c69" +; ,go-github-com-containerd-containerd-1.3.0-beta.2.0.20190828155532-0293cbd26c69) +; ("go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1" +; ,go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1) +; ("go-github-com-containerd-cgroups-0.0.0-20190919134610-bf292b21730f" +; ,go-github-com-containerd-cgroups-0.0.0-20190919134610-bf292b21730f) +; ("go-github-com-blang-semver-3.1.0+incompatible" +; ,go-github-com-blang-semver-3.1.0+incompatible) +; ("go-github-com-microsoft-go-winio-0.4.15-0.20190919025122-fc70bd9a86b5" +; ,go-github-com-microsoft-go-winio-0.4.15-0.20190919025122-fc70bd9a86b5))) +; (home-page "https://github.com/Microsoft/hcsshim") +; (synopsis "hcsshim") +; (description +; "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") +; (license license:expat))) +; +;(define-public go-github-com-containerd-containerd-1.3.1-0.20191213020239-082f7e3aed57 +; (package +; (name "go-github-com-containerd-containerd") +; (version "1.3.1-0.20191213020239-082f7e3aed57") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/containerd") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1piaha1adhzhj150l7zhskn5fgl4r2cyvwhrrm8bbm3vnvhmgw7v")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/containerd")) +; (home-page "https://github.com/containerd/containerd") +; (synopsis "Now Recruiting") +; (description +; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-continuity-0.0.0-20191127005431-f65d91d395eb +; (package +; (name "go-github-com-containerd-continuity") +; (version "0.0.0-20191127005431-f65d91d395eb") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/continuity") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "15yh5idl3if8a982gsnq9q72021a7jcs9bdcrqaxbl4dwdqcszki")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/continuity")) +; (home-page "https://github.com/containerd/continuity") +; (synopsis "continuity") +; (description +; "This package provides a transport-agnostic, filesystem metadata manifest system") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190522044717-8097e1b27ff5 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190522044717-8097e1b27ff5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1rgflfvh365x5lwdyqdd9qk8hh3ycr88a2488bgqgvfhp5ri5p6x")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20190522204451-c2c4e71fbf69 +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20190522204451-c2c4e71fbf69") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1y44pmyy92pg822fhw80pnciifx1ah0g73i2l0ixickd24wyznnm")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" +; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) +; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) +; ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" +; ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) +; ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" +; ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) +; ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" +; ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) +; ("go-github-com-golang-protobuf-1.3.1" +; ,go-github-com-golang-protobuf-1.3.1))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-grpc-1.21.0 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.21.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0zxjlxnvjqfn6zfx7gbmqhadx0j788vxfn95g1ngbmjkgppzsnfp")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" +; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) +; ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" +; ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) +; ("go-google-golang-org-appengine-1.1.0" +; ,go-google-golang-org-appengine-1.1.0) +; ("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" +; ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" +; ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-github-com-google-go-cmp-0.2.0" +; ,go-github-com-google-go-cmp-0.2.0) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0) +; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-client9-misspell-0.3.4" +; ,go-github-com-client9-misspell-0.3.4) +; ("go-github-com-burntsushi-toml-0.3.1" +; ,go-github-com-burntsushi-toml-0.3.1) +; ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-ttrpc-0.0.0-20191028202541-4f1b8fe65a5c +; (package +; (name "go-github-com-containerd-ttrpc") +; (version "0.0.0-20191028202541-4f1b8fe65a5c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/ttrpc") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19fhm39jagk2sfgi9g5zdqx4rynziwxhaap03x4mdj8kczlz21x8")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/ttrpc")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.21.0" ,go-google-golang-org-grpc-1.21.0) +; ("go-google-golang-org-genproto-0.0.0-20190522204451-c2c4e71fbf69" +; ,go-google-golang-org-genproto-0.0.0-20190522204451-c2c4e71fbf69) +; ("go-golang-org-x-sys-0.0.0-20190522044717-8097e1b27ff5" +; ,go-golang-org-x-sys-0.0.0-20190522044717-8097e1b27ff5) +; ("go-github-com-sirupsen-logrus-1.4.2" +; ,go-github-com-sirupsen-logrus-1.4.2) +; ("go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1" +; ,go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1) +; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) +; ("go-github-com-gogo-protobuf-1.2.1" +; ,go-github-com-gogo-protobuf-1.2.1))) +; (home-page "https://github.com/containerd/ttrpc") +; (synopsis "ttrpc") +; (description "GRPC for low-memory environments.") +; (license license:asl2.0))) +; +;(define-public go-github-com-gogo-protobuf-1.3.0 +; (package +; (name "go-github-com-gogo-protobuf") +; (version "1.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/gogo/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0slfyrmbpdcppf0z3waar90bpszdhi2gv705ys1b0zx5x6ax8f1a")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/gogo/protobuf")) +; (propagated-inputs +; `(("go-github-com-kisielk-gotool-1.0.0" +; ,go-github-com-kisielk-gotool-1.0.0) +; ("go-github-com-kisielk-errcheck-1.2.0" +; ,go-github-com-kisielk-errcheck-1.2.0))) +; (home-page "https://github.com/gogo/protobuf") +; (synopsis "Protocol Buffers for Go with Gadgets") +; (description +; "gogoprotobuf is a fork of @url{https://github.com/golang/protobuf,golang/protobuf} with extra code generation features.") +; (license license:bsd-3))) +; +;(define-public go-github-com-containerd-typeurl-0.0.0-20190911142611-5eb25027c9fd +; (package +; (name "go-github-com-containerd-typeurl") +; (version "0.0.0-20190911142611-5eb25027c9fd") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/typeurl") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1fyc2962b9sqgqycnlkxls6n0d701nszl84bayxrdv3r1491jn9v")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/typeurl")) +; (propagated-inputs +; `(("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) +; ("go-github-com-gogo-protobuf-1.3.0" +; ,go-github-com-gogo-protobuf-1.3.0))) +; (home-page "https://github.com/containerd/typeurl") +; (synopsis "typeurl") +; (description +; "This package provides a Go package for managing the registration, marshaling, and unmarshaling of encoded types.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-zfs-0.0.0-20200918131355-0a33824f23a2 +; (package +; (name "go-github-com-containerd-zfs") +; (version "0.0.0-20200918131355-0a33824f23a2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/zfs") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "112bj6mxc3r2ncybblf3w1fgqa6w0070f6a8vlqcml1g00ljhsz6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/zfs")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) +; ("go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449" +; ,go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449) +; ("go-go-etcd-io-bbolt-1.3.3" ,go-go-etcd-io-bbolt-1.3.3) +; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) +; ("go-github-com-opencontainers-runc-1.0.0-rc9" +; ,go-github-com-opencontainers-runc-1.0.0-rc9) +; ("go-github-com-opencontainers-image-spec-1.0.1" +; ,go-github-com-opencontainers-image-spec-1.0.1) +; ("go-github-com-opencontainers-go-digest-1.0.0-rc1" +; ,go-github-com-opencontainers-go-digest-1.0.0-rc1) +; ("go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible" +; ,go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible) +; ("go-github-com-google-uuid-1.1.1" ,go-github-com-google-uuid-1.1.1) +; ("go-github-com-google-go-cmp-0.3.1" +; ,go-github-com-google-go-cmp-0.3.1) +; ("go-github-com-gogo-protobuf-1.3.1" +; ,go-github-com-gogo-protobuf-1.3.1) +; ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" +; ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) +; ("go-github-com-containerd-typeurl-0.0.0-20190911142611-5eb25027c9fd" +; ,go-github-com-containerd-typeurl-0.0.0-20190911142611-5eb25027c9fd) +; ("go-github-com-containerd-ttrpc-0.0.0-20191028202541-4f1b8fe65a5c" +; ,go-github-com-containerd-ttrpc-0.0.0-20191028202541-4f1b8fe65a5c) +; ("go-github-com-containerd-continuity-0.0.0-20191127005431-f65d91d395eb" +; ,go-github-com-containerd-continuity-0.0.0-20191127005431-f65d91d395eb) +; ("go-github-com-containerd-containerd-1.3.1-0.20191213020239-082f7e3aed57" +; ,go-github-com-containerd-containerd-1.3.1-0.20191213020239-082f7e3aed57) +; ("go-github-com-microsoft-hcsshim-0.8.7" +; ,go-github-com-microsoft-hcsshim-0.8.7))) +; (home-page "https://github.com/containerd/zfs") +; (synopsis "ZFS snapshotter plugin") +; (description "ZFS snapshotter plugin for containerd.") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-sys-0.0.0-20201202213521-69691e467435 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20201202213521-69691e467435") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0lndxdnazszfj1jl87cpz31vd12jrjm1wj0zw1c2p8yg64cfkhna")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-containerd-containerd-1.5.0-beta.1 +; (package +; (name "go-github-com-containerd-containerd") +; (version "1.5.0-beta.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/containerd") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1jki3jwmbfk4mp2qhz4ppd6vgnicalszzv5ffibasa4qj5v19wcd")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/containerd")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) +; ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) +; ("go-github-com-golang-protobuf-1.3.5" +; ,go-github-com-golang-protobuf-1.3.5) +; ("go-github-com-gogo-googleapis-1.3.2" +; ,go-github-com-gogo-googleapis-1.3.2) +; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" +; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) +; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) +; ("go-k8s-io-cri-api-0.20.1" ,go-k8s-io-cri-api-0.20.1) +; ("go-k8s-io-component-base-0.20.1" ,go-k8s-io-component-base-0.20.1) +; ("go-k8s-io-client-go-0.20.1" ,go-k8s-io-client-go-0.20.1) +; ("go-k8s-io-apiserver-0.20.1" ,go-k8s-io-apiserver-0.20.1) +; ("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) +; ("go-k8s-io-api-0.20.1" ,go-k8s-io-api-0.20.1) +; ("go-gotest-tools-v3-3.0.2" ,go-gotest-tools-v3-3.0.2) +; ("go-golang-org-x-sys-0.0.0-20201202213521-69691e467435" +; ,go-golang-org-x-sys-0.0.0-20201202213521-69691e467435) +; ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" +; ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) +; ("go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b" +; ,go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b) +; ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) +; ("go-github-com-tchap-go-patricia-2.2.6+incompatible" +; ,go-github-com-tchap-go-patricia-2.2.6+incompatible) +; ("go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635" +; ,go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-sirupsen-logrus-1.7.0" +; ,go-github-com-sirupsen-logrus-1.7.0) +; ("go-github-com-prometheus-client-golang-1.7.1" +; ,go-github-com-prometheus-client-golang-1.7.1) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-selinux-1.8.0" +; ,go-github-com-opencontainers-selinux-1.8.0) +; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" +; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) +; ("go-github-com-opencontainers-runc-1.0.0-rc93" +; ,go-github-com-opencontainers-runc-1.0.0-rc93) +; ("go-github-com-opencontainers-image-spec-1.0.1" +; ,go-github-com-opencontainers-image-spec-1.0.1) +; ("go-github-com-opencontainers-go-digest-1.0.0" +; ,go-github-com-opencontainers-go-digest-1.0.0) +; ("go-github-com-moby-sys-symlink-0.1.0" +; ,go-github-com-moby-sys-symlink-0.1.0) +; ("go-github-com-moby-sys-mountinfo-0.4.0" +; ,go-github-com-moby-sys-mountinfo-0.4.0) +; ("go-github-com-klauspost-compress-1.11.3" +; ,go-github-com-klauspost-compress-1.11.3) +; ("go-github-com-imdario-mergo-0.3.10" +; ,go-github-com-imdario-mergo-0.3.10) +; ("go-github-com-hashicorp-go-multierror-1.0.0" +; ,go-github-com-hashicorp-go-multierror-1.0.0) +; ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" +; ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) +; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) +; ("go-github-com-google-go-cmp-0.5.2" +; ,go-github-com-google-go-cmp-0.5.2) +; ("go-github-com-gogo-protobuf-1.3.2" +; ,go-github-com-gogo-protobuf-1.3.2) +; ("go-github-com-fsnotify-fsnotify-1.4.9" +; ,go-github-com-fsnotify-fsnotify-1.4.9) +; ("go-github-com-emicklei-go-restful-2.9.5+incompatible" +; ,go-github-com-emicklei-go-restful-2.9.5+incompatible) +; ("go-github-com-docker-go-units-0.4.0" +; ,go-github-com-docker-go-units-0.4.0) +; ("go-github-com-docker-go-metrics-0.0.1" +; ,go-github-com-docker-go-metrics-0.0.1) +; ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" +; ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1) +; ("go-github-com-coreos-go-systemd-v22-22.1.0" +; ,go-github-com-coreos-go-systemd-v22-22.1.0) +; ("go-github-com-containernetworking-plugins-0.8.6" +; ,go-github-com-containernetworking-plugins-0.8.6) +; ("go-github-com-containerd-zfs-0.0.0-20200918131355-0a33824f23a2" +; ,go-github-com-containerd-zfs-0.0.0-20200918131355-0a33824f23a2) +; ("go-github-com-containerd-typeurl-1.0.1" +; ,go-github-com-containerd-typeurl-1.0.1) +; ("go-github-com-containerd-ttrpc-1.0.2" +; ,go-github-com-containerd-ttrpc-1.0.2) +; ("go-github-com-containerd-nri-0.0.0-20201007170849-eb1350a75164" +; ,go-github-com-containerd-nri-0.0.0-20201007170849-eb1350a75164) +; ("go-github-com-containerd-imgcrypt-1.0.1" +; ,go-github-com-containerd-imgcrypt-1.0.1) +; ("go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328" +; ,go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328) +; ("go-github-com-containerd-go-cni-1.0.1" +; ,go-github-com-containerd-go-cni-1.0.1) +; ("go-github-com-containerd-fifo-0.0.0-20201026212402-0724c46b320c" +; ,go-github-com-containerd-fifo-0.0.0-20201026212402-0724c46b320c) +; ("go-github-com-containerd-continuity-0.0.0-20201208142359-180525291bb7" +; ,go-github-com-containerd-continuity-0.0.0-20201208142359-180525291bb7) +; ("go-github-com-containerd-console-1.0.1" +; ,go-github-com-containerd-console-1.0.1) +; ("go-github-com-containerd-cgroups-0.0.0-20200824123100-0b889c03f102" +; ,go-github-com-containerd-cgroups-0.0.0-20200824123100-0b889c03f102) +; ("go-github-com-containerd-btrfs-0.0.0-20201111183144-404b9149801e" +; ,go-github-com-containerd-btrfs-0.0.0-20201111183144-404b9149801e) +; ("go-github-com-containerd-aufs-0.0.0-20200908144142-dab0cbea06f4" +; ,go-github-com-containerd-aufs-0.0.0-20200908144142-dab0cbea06f4) +; ("go-github-com-microsoft-hcsshim-test-0.0.0-20201218223536-d3e5debf77da" +; ,go-github-com-microsoft-hcsshim-test-0.0.0-20201218223536-d3e5debf77da) +; ("go-github-com-microsoft-hcsshim-0.8.14" +; ,go-github-com-microsoft-hcsshim-0.8.14) +; ("go-github-com-microsoft-go-winio-0.4.16" +; ,go-github-com-microsoft-go-winio-0.4.16) +; ("go-github-com-burntsushi-toml-0.3.1" +; ,go-github-com-burntsushi-toml-0.3.1))) +; (home-page "https://github.com/containerd/containerd") +; (synopsis "Now Recruiting") +; (description +; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") +; (license license:asl2.0))) +; +;(define-public go-github-com-miekg-pkcs11-1.0.3 +; (package +; (name "go-github-com-miekg-pkcs11") +; (version "1.0.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/miekg/pkcs11") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0rmmgssb6y28x54si5h63gwbdsjjxf5n9xvm3zqdfsf9l10gx2m6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/miekg/pkcs11")) +; (home-page "https://github.com/miekg/pkcs11") +; (synopsis "PKCS#11") +; (description +; "Package pkcs11 is a wrapper around the PKCS#11 cryptographic library. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-stefanberger-go-pkcs11uri-0.0.0-20201008174630-78d3cae3a980 +; (package +; (name "go-github-com-stefanberger-go-pkcs11uri") +; (version "0.0.0-20201008174630-78d3cae3a980") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stefanberger/go-pkcs11uri") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "09bnd1fn2v5y5ngsxz751a0x9fsqn8idlfrwyymfv9l57wvmrd2l")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stefanberger/go-pkcs11uri")) +; (home-page "https://github.com/stefanberger/go-pkcs11uri") +; (synopsis "go-pkcs11uri") +; (description +; "Welcome to the go-pkcs11uri library. The implementation follows @url{https://tools.ietf.org/html/rfc7512,RFC 7512} and this @url{https://www.rfc-editor.org/errata/rfc7512,errata}.") +; (license license:asl2.0))) +; +;(define-public go-go-mozilla-org-pkcs7-0.0.0-20200128120323-432b2356ecb1 +; (package +; (name "go-go-mozilla-org-pkcs7") +; (version "0.0.0-20200128120323-432b2356ecb1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mozilla-services/pkcs7") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0yncaq6i1x6apykvng92yyqkj5kmzl4c43lmcalr5lq7ks009p40")))) +; (build-system go-build-system) +; (arguments '(#:import-path "go.mozilla.org/pkcs7")) +; (home-page "https://go.mozilla.org/pkcs7") +; (synopsis "pkcs7") +; (description +; "Package pkcs7 implements parsing and generation of some PKCS#7 structures. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20200728195943-123391ffb6de +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20200728195943-123391ffb6de") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1a3wnn8yjvckh3smyqzwd2k2gvl3i8dk68pvcap0wha8hmga1vf3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" +; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) +; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" +; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20200817155316-9781c653f443 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20200817155316-9781c653f443") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1fkwiydhhmn6cxmd9jb4rj2wp06yxmqc3903b7zawsxm9jpslicm")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-gopkg-in-square-go-jose-v2-2.5.1 +; (package +; (name "go-gopkg-in-square-go-jose-v2") +; (version "2.5.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/square/go-jose.v2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0z0hbmb5yyvnjkyiyn259wkbqbjxs2pzx87jz472shn2bgggxa4n")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path +; "gopkg.in/square/go-jose.v2" +; #:unpack-path +; "gopkg.in/square/go-jose.v2")) +; (home-page "https://gopkg.in/square/go-jose.v2") +; (synopsis "Go JOSE") +; (description +; "Package jose aims to provide an implementation of the Javascript Object Signing +;and Encryption set of standards. It implements encryption and signing based on +;the JSON Web Encryption and JSON Web Signature standards, with optional JSON +;Web Token support available in a sub-package. The library supports both the +;compact and full serialization formats, and has optional support for multiple +;recipients. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-containers-ocicrypt-1.1.0 +; (package +; (name "go-github-com-containers-ocicrypt") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containers/ocicrypt") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "13avih8ml00idn6qy96ash3jxkimqxpkz4cy4kgryc8jx303nv6i")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containers/ocicrypt")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.3.0" ,go-gopkg-in-yaml-v2-2.3.0) +; ("go-gopkg-in-square-go-jose-v2-2.5.1" +; ,go-gopkg-in-square-go-jose-v2-2.5.1) +; ("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) +; ("go-golang-org-x-sys-0.0.0-20200817155316-9781c653f443" +; ,go-golang-org-x-sys-0.0.0-20200817155316-9781c653f443) +; ("go-golang-org-x-crypto-0.0.0-20200728195943-123391ffb6de" +; ,go-golang-org-x-crypto-0.0.0-20200728195943-123391ffb6de) +; ("go-go-mozilla-org-pkcs7-0.0.0-20200128120323-432b2356ecb1" +; ,go-go-mozilla-org-pkcs7-0.0.0-20200128120323-432b2356ecb1) +; ("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0) +; ("go-github-com-stefanberger-go-pkcs11uri-0.0.0-20201008174630-78d3cae3a980" +; ,go-github-com-stefanberger-go-pkcs11uri-0.0.0-20201008174630-78d3cae3a980) +; ("go-github-com-sirupsen-logrus-1.7.0" +; ,go-github-com-sirupsen-logrus-1.7.0) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-image-spec-1.0.1" +; ,go-github-com-opencontainers-image-spec-1.0.1) +; ("go-github-com-opencontainers-go-digest-1.0.0" +; ,go-github-com-opencontainers-go-digest-1.0.0) +; ("go-github-com-miekg-pkcs11-1.0.3" ,go-github-com-miekg-pkcs11-1.0.3) +; ("go-github-com-google-go-cmp-0.5.2" +; ,go-github-com-google-go-cmp-0.5.2) +; ("go-github-com-golang-protobuf-1.4.3" +; ,go-github-com-golang-protobuf-1.4.3))) +; (home-page "https://github.com/containers/ocicrypt") +; (synopsis "OCIcrypt Library") +; (description +; "The @code{ocicrypt} library is the OCI image spec implementation of container image encryption. More details of the spec can be seen in the @url{https://github.com/opencontainers/image-spec/pull/775,OCI repository}. The purpose of this library is to encode spec structures and consts in code, as well as provide a consistent implementation of image encryption across container runtimes and build tools.") +; (license license:asl2.0))) +; +;(define-public go-github-com-prometheus-procfs-0.6.0 +; (package +; (name "go-github-com-prometheus-procfs") +; (version "0.6.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/procfs") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0czzw37dq0sfq7rivxmxxw5hy287grqnng6q6hfz6mkqmhqgm1m6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/procfs")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" +; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) +; ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" +; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) +; ("go-github-com-google-go-cmp-0.5.4" +; ,go-github-com-google-go-cmp-0.5.4))) +; (home-page "https://github.com/prometheus/procfs") +; (synopsis "procfs") +; (description +; "Package procfs provides functions to retrieve system, kernel and process +;metrics from the pseudo-filesystem proc. +;") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-grpc-1.33.2 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.33.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "03yz4nlf4kqbnpw48f0mvcb2f5zzy0vjd5i2iw0hrjspd0238fzk")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.25.0" +; ,go-google-golang-org-protobuf-1.25.0) +; ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" +; ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) +; ("go-github-com-google-go-cmp-0.5.0" +; ,go-github-com-google-go-cmp-0.5.0) +; ("go-github-com-golang-protobuf-1.4.1" +; ,go-github-com-golang-protobuf-1.4.1) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-envoyproxy-go-control-plane-0.9.4" +; ,go-github-com-envoyproxy-go-control-plane-0.9.4) +; ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" +; ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-gopkg-in-yaml-v2-2.4.0 +; (package +; (name "go-gopkg-in-yaml-v2") +; (version "2.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/yaml.v2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1pbmrpj7gcws34g8vwna4i2nhm9p6235piww36436xhyaa10cldr")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" +; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) +; (home-page "https://gopkg.in/yaml.v2") +; (synopsis "YAML support for the Go language") +; (description "Package yaml implements YAML support for the Go language. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-imgcrypt-1.0.4-0.20210301171431-0ae5c75f59ba +; (package +; (name "go-github-com-containerd-imgcrypt") +; (version "1.0.4-0.20210301171431-0ae5c75f59ba") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/imgcrypt") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0vkwgcxh3mpsn6wp231c9ad3sx6gmnc9948nn3vvbw8bsmjd4i77")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/imgcrypt")) +; (propagated-inputs +; `(("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) +; ("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) +; ("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) +; ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" +; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) +; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) +; ("go-github-com-sirupsen-logrus-1.7.0" +; ,go-github-com-sirupsen-logrus-1.7.0) +; ("go-github-com-prometheus-procfs-0.6.0" +; ,go-github-com-prometheus-procfs-0.6.0) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" +; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) +; ("go-github-com-opencontainers-image-spec-1.0.1" +; ,go-github-com-opencontainers-image-spec-1.0.1) +; ("go-github-com-opencontainers-go-digest-1.0.0" +; ,go-github-com-opencontainers-go-digest-1.0.0) +; ("go-github-com-imdario-mergo-0.3.11" +; ,go-github-com-imdario-mergo-0.3.11) +; ("go-github-com-gogo-protobuf-1.3.2" +; ,go-github-com-gogo-protobuf-1.3.2) +; ("go-github-com-containers-ocicrypt-1.1.0" +; ,go-github-com-containers-ocicrypt-1.1.0) +; ("go-github-com-containerd-typeurl-1.0.1" +; ,go-github-com-containerd-typeurl-1.0.1) +; ("go-github-com-containerd-containerd-1.5.0-beta.1" +; ,go-github-com-containerd-containerd-1.5.0-beta.1) +; ("go-github-com-containerd-console-1.0.1" +; ,go-github-com-containerd-console-1.0.1) +; ("go-github-com-microsoft-hcsshim-test-0.0.0-20210227013316-43a75bb4edd3" +; ,go-github-com-microsoft-hcsshim-test-0.0.0-20210227013316-43a75bb4edd3) +; ("go-github-com-microsoft-hcsshim-0.8.14" +; ,go-github-com-microsoft-hcsshim-0.8.14) +; ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" +; ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3))) +; (home-page "https://github.com/containerd/imgcrypt") +; (synopsis "imgcrypt image encryption library and command line tool") +; (description +; "Project @code{imgcrypt} is a non-core subproject of containerd.") +; (license license:asl2.0))) +; +;(define-public go-github-com-microsoft-go-winio-0.4.15-0.20190919025122-fc70bd9a86b5 +; (package +; (name "go-github-com-microsoft-go-winio") +; (version "0.4.15-0.20190919025122-fc70bd9a86b5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/microsoft/go-winio") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "015ra2h3qfaq436d0g7akahgz7bikyvljq48m0l2d2f4k3wki86p")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/Microsoft/go-winio")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3" +; ,go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3) +; ("go-github-com-sirupsen-logrus-1.4.1" +; ,go-github-com-sirupsen-logrus-1.4.1) +; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) +; (home-page "https://github.com/Microsoft/go-winio") +; (synopsis "go-winio") +; (description +; "This repository contains utilities for efficiently performing Win32 IO operations in +;Go. Currently, this is focused on accessing named pipes and other file handles, and +;for using named pipes as a net transport.") +; (license license:expat))) +; +;(define-public go-github-com-godbus-dbus-0.0.0-20190422162347-ade71ed3457e +; (package +; (name "go-github-com-godbus-dbus") +; (version "0.0.0-20190422162347-ade71ed3457e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/godbus/dbus") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "12ga9izv32j1zjij1p9f2sdnxjy3v80lw964518dvzirxpvwfszn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/godbus/dbus")) +; (home-page "https://github.com/godbus/dbus") +; (synopsis "dbus") +; (description +; "Package dbus implements bindings to the D-Bus message bus system. +;") +; (license license:bsd-2))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190514135907-3a4b5fb9f71f +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190514135907-3a4b5fb9f71f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "122ry2lw2525mqlnw2zc006y1flvj3yhj8rnpxqdwxp71jc3kqii")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-containerd-cgroups-0.0.0-20190919134610-bf292b21730f +; (package +; (name "go-github-com-containerd-cgroups") +; (version "0.0.0-20190919134610-bf292b21730f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/cgroups") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1vvk1vrwm9spilyl4r1r8626sg0zvnx3s3zmzigzinpkzzvbdqpw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/cgroups")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190514135907-3a4b5fb9f71f" +; ,go-golang-org-x-sys-0.0.0-20190514135907-3a4b5fb9f71f) +; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) +; ("go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700" +; ,go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700) +; ("go-github-com-gogo-protobuf-1.2.1" +; ,go-github-com-gogo-protobuf-1.2.1) +; ("go-github-com-godbus-dbus-0.0.0-20190422162347-ade71ed3457e" +; ,go-github-com-godbus-dbus-0.0.0-20190422162347-ade71ed3457e) +; ("go-github-com-docker-go-units-0.4.0" +; ,go-github-com-docker-go-units-0.4.0) +; ("go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e" +; ,go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e))) +; (home-page "https://github.com/containerd/cgroups") +; (synopsis "cgroups") +; (description +; "Go package for creating, managing, inspecting, and destroying cgroups. +;The resources format for settings on the cgroup uses the OCI runtime-spec found +;@url{https://github.com/opencontainers/runtime-spec,here}.") +; (license license:asl2.0))) +; +;(define-public go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700 +; (package +; (name "go-github-com-opencontainers-runtime-spec") +; (version "0.1.2-0.20190507144316-5b71a03e2700") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/runtime-spec") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1dx0bp4f885vx6l4b5b7h19j6sm0jn9s2qxarfd917f4wp8l0cpl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) +; (home-page "https://github.com/opencontainers/runtime-spec") +; (synopsis "Open Container Initiative Runtime Specification") +; (description +; "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") +; (license license:asl2.0))) +; +;(define-public go-github-com-urfave-cli-0.0.0-20171014202726-7bc6a0acffa5 +; (package +; (name "go-github-com-urfave-cli") +; (version "0.0.0-20171014202726-7bc6a0acffa5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/urfave/cli") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "13li8phkaznh81qxs9vg0r8294ph014rwca4cqf7gxhvyjlaigwp")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/urfave/cli")) +; (home-page "https://github.com/urfave/cli") +; (synopsis "cli") +; (description +; "Package cli provides a minimal framework for creating and organizing command line +;Go applications. cli is designed to be easy to understand and write, the most simple +;cli application can be written as follows: +;") +; (license license:expat))) +; +;(define-public go-github-com-microsoft-hcsshim-0.8.9 +; (package +; (name "go-github-com-microsoft-hcsshim") +; (version "0.8.9") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/microsoft/hcsshim") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1imyqhh51311fdmp81ffasf7z52rbqhblbhx6477d9w20p74866b")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/Microsoft/hcsshim")) +; (propagated-inputs +; `(("go-gotest-tools-2.2.0+incompatible" +; ,go-gotest-tools-2.2.0+incompatible) +; ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) +; ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" +; ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) +; ("go-google-golang-org-grpc-1.23.1" ,go-google-golang-org-grpc-1.23.1) +; ("go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873" +; ,go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873) +; ("go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3" +; ,go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3) +; ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" +; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) +; ("go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9" +; ,go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9) +; ("go-go-opencensus-io-0.22.0" ,go-go-opencensus-io-0.22.0) +; ("go-github-com-urfave-cli-0.0.0-20171014202726-7bc6a0acffa5" +; ,go-github-com-urfave-cli-0.0.0-20171014202726-7bc6a0acffa5) +; ("go-github-com-stretchr-testify-1.4.0" +; ,go-github-com-stretchr-testify-1.4.0) +; ("go-github-com-sirupsen-logrus-1.4.2" +; ,go-github-com-sirupsen-logrus-1.4.2) +; ("go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7" +; ,go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7) +; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) +; ("go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700" +; ,go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700) +; ("go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f" +; ,go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f) +; ("go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2" +; ,go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2) +; ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2) +; ("go-github-com-gogo-protobuf-1.3.1" +; ,go-github-com-gogo-protobuf-1.3.1) +; ("go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd" +; ,go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd) +; ("go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de" +; ,go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de) +; ("go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3" +; ,go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3) +; ("go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448" +; ,go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448) +; ("go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc" +; ,go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc) +; ("go-github-com-containerd-containerd-1.3.2" +; ,go-github-com-containerd-containerd-1.3.2) +; ("go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1" +; ,go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1) +; ("go-github-com-containerd-cgroups-0.0.0-20190919134610-bf292b21730f" +; ,go-github-com-containerd-cgroups-0.0.0-20190919134610-bf292b21730f) +; ("go-github-com-microsoft-go-winio-0.4.15-0.20190919025122-fc70bd9a86b5" +; ,go-github-com-microsoft-go-winio-0.4.15-0.20190919025122-fc70bd9a86b5))) +; (home-page "https://github.com/Microsoft/hcsshim") +; (synopsis "hcsshim") +; (description +; "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") +; (license license:expat))) +; +;(define-public go-github-com-cilium-ebpf-0.0.0-20200702112145-1c8d4c9ef775 +; (package +; (name "go-github-com-cilium-ebpf") +; (version "0.0.0-20200702112145-1c8d4c9ef775") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/cilium/ebpf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1la90b88a1li5hmlqxfx9lgxlyzqb2pd4c2dxmz4s5gg2gz8a5x5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/cilium/ebpf")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9" +; ,go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9))) +; (home-page "https://github.com/cilium/ebpf") +; (synopsis "eBPF") +; (description "Package ebpf is a toolkit for working with eBPF programs. +;") +; (license license:expat))) +; +;(define-public go-github-com-containerd-cgroups-0.0.0-20200710171044-318312a37340 +; (package +; (name "go-github-com-containerd-cgroups") +; (version "0.0.0-20200710171044-318312a37340") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/cgroups") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1kizbm55pmlnly2dggymp84a0d9pn4fh7jf31h6wqm385zrs14zp")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/cgroups")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9" +; ,go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9) +; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) +; ("go-github-com-stretchr-testify-1.2.2" +; ,go-github-com-stretchr-testify-1.2.2) +; ("go-github-com-sirupsen-logrus-1.6.0" +; ,go-github-com-sirupsen-logrus-1.6.0) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-runtime-spec-1.0.2" +; ,go-github-com-opencontainers-runtime-spec-1.0.2) +; ("go-github-com-gogo-protobuf-1.3.1" +; ,go-github-com-gogo-protobuf-1.3.1) +; ("go-github-com-godbus-dbus-v5-5.0.3" +; ,go-github-com-godbus-dbus-v5-5.0.3) +; ("go-github-com-docker-go-units-0.4.0" +; ,go-github-com-docker-go-units-0.4.0) +; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" +; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) +; ("go-github-com-coreos-go-systemd-v22-22.0.0" +; ,go-github-com-coreos-go-systemd-v22-22.0.0) +; ("go-github-com-cilium-ebpf-0.0.0-20200702112145-1c8d4c9ef775" +; ,go-github-com-cilium-ebpf-0.0.0-20200702112145-1c8d4c9ef775))) +; (home-page "https://github.com/containerd/cgroups") +; (synopsis "cgroups") +; (description +; "Go package for creating, managing, inspecting, and destroying cgroups. +;The resources format for settings on the cgroup uses the OCI runtime-spec found +;@url{https://github.com/opencontainers/runtime-spec,here}.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-containerd-1.4.0-beta.2.0.20200729163537-40b22ef07410 +; (package +; (name "go-github-com-containerd-containerd") +; (version "1.4.0-beta.2.0.20200729163537-40b22ef07410") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/containerd") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ky7ny5b0rvkr6a58pdlcm35kc9wls6jvl7cdk8py4a16y1f2lx9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/containerd")) +; (home-page "https://github.com/containerd/containerd") +; (synopsis "Now Recruiting") +; (description +; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") +; (license license:asl2.0))) +; +;(define-public go-github-com-onsi-ginkgo-1.10.1 +; (package +; (name "go-github-com-onsi-ginkgo") +; (version "1.10.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/onsi/ginkgo") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "033a42h1wzmji57p86igg9whvsbp6nvfdsypskw738ys903n3z4d")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/onsi/ginkgo")) +; (home-page "https://github.com/onsi/ginkgo") +; (synopsis "Ginkgo 2.0 Release Candidate is available!") +; (description "Ginkgo is a BDD-style testing framework for Golang +;") +; (license license:expat))) +; +;(define-public go-github-com-opencontainers-go-digest-1.0.0-rc1 +; (package +; (name "go-github-com-opencontainers-go-digest") +; (version "1.0.0-rc1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/go-digest") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "01gc7fpn8ax429024p2fcx3yb18axwz5bjf2hqxlii1jbsgw4bh9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/go-digest")) +; (home-page "https://github.com/opencontainers/go-digest") +; (synopsis "go-digest") +; (description +; "Package digest provides a generalized type to opaquely represent message +;digests and their operations within the registry. The Digest type is +;designed to serve as a flexible identifier in a content-addressable system. +;More importantly, it provides tools and wrappers to work with +;hash.Hash-based digests with little effort. +;") +; (license (list license:asl2.0 license:cc-by-sa4.0)))) +; +;(define-public go-github-com-pkg-errors-0.8.1-0.20171018195549-f15c970de5b7 +; (package +; (name "go-github-com-pkg-errors") +; (version "0.8.1-0.20171018195549-f15c970de5b7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/pkg/errors") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "18jihrffhfsjvz3rkanlhq9xjcdxkqilmflnijc64s7y7lijlbfm")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/pkg/errors")) +; (home-page "https://github.com/pkg/errors") +; (synopsis "errors") +; (description "Package errors provides simple error handling primitives. +;") +; (license license:bsd-2))) +; +;(define-public go-github-com-sirupsen-logrus-1.0.4-0.20170822132746-89742aefa4b2 +; (package +; (name "go-github-com-sirupsen-logrus") +; (version "1.0.4-0.20170822132746-89742aefa4b2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/sirupsen/logrus") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0hk7fabx59msg2y0iik6xvfp80s73ybrwlcshbm9ds91iqbkcxi6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/sirupsen/logrus")) +; (home-page "https://github.com/sirupsen/logrus") +; (synopsis "Logrus") +; (description +; "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20171113213409-9f005a07e0d3 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20171113213409-9f005a07e0d3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1mhmr6ljzl3iafsz4qy8vval7rmr828wh59dlqqqjqx6sqmcs1dv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-github-com-containerd-continuity-0.0.0-20200710164510-efbc4488d8fe +; (package +; (name "go-github-com-containerd-continuity") +; (version "0.0.0-20200710164510-efbc4488d8fe") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/continuity") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0d638nj7z7y8z19zdwbysamqh5m3kiwvnqny7av6bxax9gg6c3h8")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/continuity")) +; (propagated-inputs +; `(("go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2" +; ,go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2) +; ("go-gopkg-in-airbrake-gobrake-v2-2.0.9" +; ,go-gopkg-in-airbrake-gobrake-v2-2.0.9) +; ("go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e" +; ,go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e) +; ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" +; ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) +; ("go-golang-org-x-crypto-0.0.0-20171113213409-9f005a07e0d3" +; ,go-golang-org-x-crypto-0.0.0-20171113213409-9f005a07e0d3) +; ("go-github-com-stretchr-testify-1.4.0" +; ,go-github-com-stretchr-testify-1.4.0) +; ("go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95" +; ,go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95) +; ("go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee" +; ,go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee) +; ("go-github-com-sirupsen-logrus-1.0.4-0.20170822132746-89742aefa4b2" +; ,go-github-com-sirupsen-logrus-1.0.4-0.20170822132746-89742aefa4b2) +; ("go-github-com-pkg-errors-0.8.1-0.20171018195549-f15c970de5b7" +; ,go-github-com-pkg-errors-0.8.1-0.20171018195549-f15c970de5b7) +; ("go-github-com-opencontainers-go-digest-1.0.0-rc1" +; ,go-github-com-opencontainers-go-digest-1.0.0-rc1) +; ("go-github-com-onsi-gomega-1.7.0" ,go-github-com-onsi-gomega-1.7.0) +; ("go-github-com-onsi-ginkgo-1.10.1" ,go-github-com-onsi-ginkgo-1.10.1) +; ("go-github-com-inconshreveable-mousetrap-1.0.0" +; ,go-github-com-inconshreveable-mousetrap-1.0.0) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0) +; ("go-github-com-dustin-go-humanize-0.0.0-20171111073723-bb3d318650d4" +; ,go-github-com-dustin-go-humanize-0.0.0-20171111073723-bb3d318650d4) +; ("go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898" +; ,go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898))) +; (home-page "https://github.com/containerd/continuity") +; (synopsis "continuity") +; (description +; "This package provides a transport-agnostic, filesystem metadata manifest system") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20191210023423-ac6580df4449") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "14gvx65w5lddi20s4wypbbvbg9ni3m8777jhp9nqxhixc61k3dyi")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-containerd-fifo-0.0.0-20200410184934-f15a3290365b +; (package +; (name "go-github-com-containerd-fifo") +; (version "0.0.0-20200410184934-f15a3290365b") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/fifo") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1i3pylxr2a4b9gaifjrhfa21n147vvq2z9iqwzz9id532xv9mr48")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/fifo")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449" +; ,go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449) +; ("go-github-com-stretchr-testify-1.4.0" +; ,go-github-com-stretchr-testify-1.4.0) +; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) +; (home-page "https://github.com/containerd/fifo") +; (synopsis "fifo") +; (description "Go package for handling fifos in a sane way.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-ttrpc-1.0.1 +; (package +; (name "go-github-com-containerd-ttrpc") +; (version "1.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/ttrpc") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "02ilz14f1k9zip7caqfjwvfg2nwa7bs6880pi6fxbri1wy6ar45q")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/ttrpc")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.26.0" ,go-google-golang-org-grpc-1.26.0) +; ("go-google-golang-org-genproto-0.0.0-20200117163144-32f20d992d24" +; ,go-google-golang-org-genproto-0.0.0-20200117163144-32f20d992d24) +; ("go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479" +; ,go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479) +; ("go-github-com-sirupsen-logrus-1.4.2" +; ,go-github-com-sirupsen-logrus-1.4.2) +; ("go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1" +; ,go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.2" +; ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.2) +; ("go-github-com-gogo-protobuf-1.3.1" +; ,go-github-com-gogo-protobuf-1.3.1))) +; (home-page "https://github.com/containerd/ttrpc") +; (synopsis "ttrpc") +; (description "GRPC for low-memory environments.") +; (license license:asl2.0))) +; +;(define-public go-github-com-docker-distribution-2.7.1+incompatible +; (package +; (name "go-github-com-docker-distribution") +; (version "2.7.1+incompatible") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/distribution/distribution") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1nx8b5a68rn81alp8wkkw6qd5v32mgf0fk23mxm60zdf63qk1nzw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/docker/distribution")) +; (home-page "https://github.com/docker/distribution") +; (synopsis "Distribution") +; (description +; "Package distribution will define the interfaces for the components of +;docker distribution. The goal is to allow users to reliably package, ship +;and store content related to docker images. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-gogo-googleapis-1.4.0 +; (package +; (name "go-github-com-gogo-googleapis") +; (version "1.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/gogo/googleapis") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1kka9qmra1klfkjza0s5papqvsi65f2d349dl8k1lvfq487iv9r4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/gogo/googleapis")) +; (propagated-inputs +; `(("go-github-com-gogo-protobuf-1.3.1" +; ,go-github-com-gogo-protobuf-1.3.1))) +; (home-page "https://github.com/gogo/googleapis") +; (synopsis "Google APIs generated by gogoprotobuf") +; (description +; "The @url{https://github.com/gogo/grpc-example,grpc-example} includes an example usage of this repository.") +; (license license:asl2.0))) +; +;(define-public go-github-com-google-go-cmp-0.5.1 +; (package +; (name "go-github-com-google-go-cmp") +; (version "0.5.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/go-cmp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1wjdid59brciv09agxgmqac5k9ywg63nhzb0yi9anmqpl38gps0p")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/go-cmp")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" +; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) +; (home-page "https://github.com/google/go-cmp") +; (synopsis "Package for equality of Go values") +; (description +; "This package is intended to be a more powerful and safer alternative to +;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") +; (license license:bsd-3))) +; +;(define-public go-github-com-imdario-mergo-0.3.10 +; (package +; (name "go-github-com-imdario-mergo") +; (version "0.3.10") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/imdario/mergo") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "09h765p8yby9r8s0a3hv5kl8n2i382mda76wmvk48w1cc1w9s92p")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/imdario/mergo")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.3.0" ,go-gopkg-in-yaml-v2-2.3.0))) +; (home-page "https://github.com/imdario/mergo") +; (synopsis "Mergo") +; (description +; "This package provides a helper to merge structs and maps in Golang. Useful for configuration default values, avoiding messy if-statements. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-opencontainers-runc-0.1.1 +; (package +; (name "go-github-com-opencontainers-runc") +; (version "0.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/runc") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "09fm7f1k4lvx8v3crqb0cli1x2brlz8ka7f7qa8d2sb6ln58h7w7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/runc")) +; (home-page "https://github.com/opencontainers/runc") +; (synopsis "runc") +; (description +; "@code{runc} is a CLI tool for spawning and running containers according to the OCI specification.") +; (license license:asl2.0))) +; +;(define-public go-github-com-willf-bitset-1.1.11-0.20200630133818-d5bec3311243 +; (package +; (name "go-github-com-willf-bitset") +; (version "1.1.11-0.20200630133818-d5bec3311243") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/bits-and-blooms/bitset") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "05nyd0vhp2h9hbqlv2s9l2py6mr8hpz2zyfj09an1q7wd8vph4ja")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/willf/bitset")) +; (home-page "https://github.com/willf/bitset") +; (synopsis "bitset") +; (description +; "Package bitset implements bitsets, a mapping +;between non-negative integers and boolean values. It should be more +;efficient than map[uint] bool. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-opencontainers-selinux-1.6.0 +; (package +; (name "go-github-com-opencontainers-selinux") +; (version "1.6.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/selinux") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ja41zfgrkhk5khixjnxpi1b85xfcxlkhq2q9b7ma6xjfdhg8bq2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/selinux")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777" +; ,go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777) +; ("go-github-com-willf-bitset-1.1.11-0.20200630133818-d5bec3311243" +; ,go-github-com-willf-bitset-1.1.11-0.20200630133818-d5bec3311243) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) +; (home-page "https://github.com/opencontainers/selinux") +; (synopsis "selinux") +; (description "Common SELinux package used across the container ecosystem.") +; (license license:asl2.0))) +; +;(define-public go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2 +; (package +; (name "go-github-com-syndtr-gocapability") +; (version "0.0.0-20180916011248-d98352740cb2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/syndtr/gocapability") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "065y16562ynixxzj7iys4f4spb7knilbj3h833qlhds381j8hn93")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/syndtr/gocapability")) +; (home-page "https://github.com/syndtr/gocapability") +; (synopsis #f) +; (description #f) +; (license license:bsd-2))) +; +;(define-public go-golang-org-x-net-0.0.0-20200707034311-ab3426394381 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20200707034311-ab3426394381") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1wr7rnnqp210yykkypinb8ciszx28aq5a3l3dvsv6swzxxngs8zn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" +; ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) +; ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" +; ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208 +; (package +; (name "go-golang-org-x-sync") +; (version "0.0.0-20200625203802-6e8e738ad208") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sync") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1avk27pszd5l5df6ff7j78wgla46ir1hhy2jwfl9a3c0ys602yx9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sync")) +; (home-page "https://golang.org/x/sync") +; (synopsis "Go Sync") +; (description +; "This repository provides Go concurrency primitives in addition to the +;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") +; (license license:bsd-3))) +; +;(define-public go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f +; (package +; (name "go-github-com-cncf-udpa-go") +; (version "0.0.0-20191209042840-269d4d468f6f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/cncf/udpa") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0i1jiaw2k3hlwwmg4hap81vb4s1p25xp9kdfww37v0fbgjariccs")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path +; "github.com/cncf/udpa/go" +; #:unpack-path +; "github.com/cncf/udpa")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2) +; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" +; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0))) +; (home-page "https://github.com/cncf/udpa") +; (synopsis "Description") +; (description +; "This library has been deprecated in favor of @code{github.com/cncf/xds/go}. All users are recommended to switch their imports.") +; (license license:asl2.0))) +; +;(define-public go-github-com-envoyproxy-go-control-plane-0.9.0 +; (package +; (name "go-github-com-envoyproxy-go-control-plane") +; (version "0.9.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/envoyproxy/go-control-plane") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1dpvi4wnycyj6hnai78fr8aj58b27b1vcwdp3v0id5v22kvgr3xw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.23.0" ,go-google-golang-org-grpc-1.23.0) +; ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" +; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) +; ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" +; ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2) +; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" +; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) +; ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" +; ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) +; (home-page "https://github.com/envoyproxy/go-control-plane") +; (synopsis "control-plane") +; (description +; "This repository contains a Go-based implementation of an API server that +;implements the discovery service APIs defined in +;@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-grpc-1.25.1 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.25.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0a136ij9p11yj1vx892yqy40jkh7n5nfbpdvhgydcj823mx51c6f")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" +; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-github-com-google-go-cmp-0.2.0" +; ,go-github-com-google-go-cmp-0.2.0) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2) +; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" +; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) +; ("go-github-com-envoyproxy-go-control-plane-0.9.0" +; ,go-github-com-envoyproxy-go-control-plane-0.9.0))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-envoyproxy-go-control-plane-0.9.4 +; (package +; (name "go-github-com-envoyproxy-go-control-plane") +; (version "0.9.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/envoyproxy/go-control-plane") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0m0crzx70lp7vz13v20wxb1fcfdnzp7h3mkh3bn6a8mbfz6w5asj")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) +; ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" +; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) +; ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" +; ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) +; ("go-github-com-google-go-cmp-0.2.0" +; ,go-github-com-google-go-cmp-0.2.0) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2) +; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" +; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) +; ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" +; ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f) +; ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" +; ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) +; (home-page "https://github.com/envoyproxy/go-control-plane") +; (synopsis "control-plane") +; (description +; "This repository contains a Go-based implementation of an API server that +;implements the discovery service APIs defined in +;@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-grpc-1.30.0 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.30.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "05pb9xrxd7kpbi8zzby90f87b6sxq65nmpgqx5h3255whmmpzbi9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" +; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.3.3" +; ,go-github-com-golang-protobuf-1.3.3) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-envoyproxy-go-control-plane-0.9.4" +; ,go-github-com-envoyproxy-go-control-plane-0.9.4) +; ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" +; ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-nri-0.0.0-20201007170849-eb1350a75164 +; (package +; (name "go-github-com-containerd-nri") +; (version "0.0.0-20201007170849-eb1350a75164") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/nri") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1yhrxl36fswgxv7ny3p9xi99jsbwyk920gmzkjyfyk6nqs0hqbkg")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/nri")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.30.0" ,go-google-golang-org-grpc-1.30.0) +; ("go-golang-org-x-sys-0.0.0-20200728102440-3e129f6d46b1" +; ,go-golang-org-x-sys-0.0.0-20200728102440-3e129f6d46b1) +; ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" +; ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) +; ("go-golang-org-x-net-0.0.0-20200707034311-ab3426394381" +; ,go-golang-org-x-net-0.0.0-20200707034311-ab3426394381) +; ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) +; ("go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2" +; ,go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-selinux-1.6.0" +; ,go-github-com-opencontainers-selinux-1.6.0) +; ("go-github-com-opencontainers-runc-0.1.1" +; ,go-github-com-opencontainers-runc-0.1.1) +; ("go-github-com-opencontainers-image-spec-1.0.1" +; ,go-github-com-opencontainers-image-spec-1.0.1) +; ("go-github-com-opencontainers-go-digest-1.0.0" +; ,go-github-com-opencontainers-go-digest-1.0.0) +; ("go-github-com-imdario-mergo-0.3.10" +; ,go-github-com-imdario-mergo-0.3.10) +; ("go-github-com-google-uuid-1.1.1" ,go-github-com-google-uuid-1.1.1) +; ("go-github-com-google-go-cmp-0.5.1" +; ,go-github-com-google-go-cmp-0.5.1) +; ("go-github-com-gogo-googleapis-1.4.0" +; ,go-github-com-gogo-googleapis-1.4.0) +; ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" +; ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) +; ("go-github-com-docker-distribution-2.7.1+incompatible" +; ,go-github-com-docker-distribution-2.7.1+incompatible) +; ("go-github-com-containerd-typeurl-1.0.1" +; ,go-github-com-containerd-typeurl-1.0.1) +; ("go-github-com-containerd-ttrpc-1.0.1" +; ,go-github-com-containerd-ttrpc-1.0.1) +; ("go-github-com-containerd-fifo-0.0.0-20200410184934-f15a3290365b" +; ,go-github-com-containerd-fifo-0.0.0-20200410184934-f15a3290365b) +; ("go-github-com-containerd-continuity-0.0.0-20200710164510-efbc4488d8fe" +; ,go-github-com-containerd-continuity-0.0.0-20200710164510-efbc4488d8fe) +; ("go-github-com-containerd-containerd-1.4.0-beta.2.0.20200729163537-40b22ef07410" +; ,go-github-com-containerd-containerd-1.4.0-beta.2.0.20200729163537-40b22ef07410) +; ("go-github-com-containerd-cgroups-0.0.0-20200710171044-318312a37340" +; ,go-github-com-containerd-cgroups-0.0.0-20200710171044-318312a37340) +; ("go-github-com-microsoft-hcsshim-0.8.9" +; ,go-github-com-microsoft-hcsshim-0.8.9))) +; (home-page "https://github.com/containerd/nri") +; (synopsis "nri - Node Resource Interface") +; (description +; "This project is a WIP for a new, CNI like, interface for managing resources on a node for Pods and Containers.") +; (license license:asl2.0))) +; +;(define-public go-github-com-sirupsen-logrus-1.4.1 +; (package +; (name "go-github-com-sirupsen-logrus") +; (version "1.4.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/sirupsen/logrus") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1m7ny9jkb98cxqhsp13xa5hnqh1s9f25x04q6arsala4zswsw33c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/sirupsen/logrus")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33" +; ,go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33) +; ("go-github-com-stretchr-testify-1.2.2" +; ,go-github-com-stretchr-testify-1.2.2) +; ("go-github-com-stretchr-objx-0.1.1" +; ,go-github-com-stretchr-objx-0.1.1) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.1" +; ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.1) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://github.com/sirupsen/logrus") +; (synopsis "Logrus") +; (description +; "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190916202348-b4ddaad3f8a3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "05pa68kqxhpjk71b4cbm8vyzh6527b3ig6war2jr1g4aj3b7f1ak")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-microsoft-go-winio-0.4.16-0.20201130162521-d1ffc52c7331 +; (package +; (name "go-github-com-microsoft-go-winio") +; (version "0.4.16-0.20201130162521-d1ffc52c7331") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/microsoft/go-winio") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0snwbwdjs34x0my9ri77cvrbnahdiyjh2jlkzf12fy48p7fyk7pq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/Microsoft/go-winio")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3" +; ,go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3) +; ("go-github-com-sirupsen-logrus-1.4.1" +; ,go-github-com-sirupsen-logrus-1.4.1) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) +; (home-page "https://github.com/Microsoft/go-winio") +; (synopsis "go-winio") +; (description +; "This repository contains utilities for efficiently performing Win32 IO operations in +;Go. Currently, this is focused on accessing named pipes and other file handles, and +;for using named pipes as a net transport.") +; (license license:expat))) +; +;(define-public go-golang-org-x-sys-0.0.0-20191022100944-742c48ecaeb7 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20191022100944-742c48ecaeb7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1saf59bplvvb753my15ijxcy4a1jwfg53cmkgb6wkln2x4fgnhkp")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-cilium-ebpf-0.0.0-20200110133405-4032b1d8aae3 +; (package +; (name "go-github-com-cilium-ebpf") +; (version "0.0.0-20200110133405-4032b1d8aae3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/cilium/ebpf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "107x63zl8dlw2izn5xw8pnflgq19srpa46bgvjs8q4d61i02q1fr")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/cilium/ebpf")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20191022100944-742c48ecaeb7" +; ,go-golang-org-x-sys-0.0.0-20191022100944-742c48ecaeb7) +; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) +; (home-page "https://github.com/cilium/ebpf") +; (synopsis "eBPF") +; (description "Package ebpf is a toolkit for working with eBPF programs. +;") +; (license license:expat))) +; +;(define-public go-github-com-coreos-go-systemd-v22-22.0.0 +; (package +; (name "go-github-com-coreos-go-systemd-v22") +; (version "22.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/coreos/go-systemd") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0p4sb2fxxm2j1xny2l4fkq4kwj74plvh600gih8nyniqzannhrdx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/coreos/go-systemd/v22")) +; (propagated-inputs +; `(("go-github-com-godbus-dbus-v5-5.0.3" +; ,go-github-com-godbus-dbus-v5-5.0.3))) +; (home-page "https://github.com/coreos/go-systemd") +; (synopsis "go-systemd") +; (description "Go bindings to systemd. The project has several packages:") +; (license license:asl2.0))) +; +;(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0 +; (package +; (name "go-github-com-cpuguy83-go-md2man-v2") +; (version "2.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/cpuguy83/go-md2man") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) +; (propagated-inputs +; `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" +; ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) +; ("go-github-com-russross-blackfriday-v2-2.0.1" +; ,go-github-com-russross-blackfriday-v2-2.0.1) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0))) +; (home-page "https://github.com/cpuguy83/go-md2man") +; (synopsis "go-md2man") +; (description "Converts markdown into roff (man pages).") +; (license license:expat))) +; +;(define-public go-github-com-containerd-cgroups-0.0.0-20200531161412-0dbf7f05ba59 +; (package +; (name "go-github-com-containerd-cgroups") +; (version "0.0.0-20200531161412-0dbf7f05ba59") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/cgroups") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "10abzkjf77s8pv4mpyvy2jbl8wckhk3j7ykgs01sclal21v8p251")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/cgroups")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479" +; ,go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479) +; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) +; ("go-github-com-stretchr-testify-1.2.2" +; ,go-github-com-stretchr-testify-1.2.2) +; ("go-github-com-sirupsen-logrus-1.4.2" +; ,go-github-com-sirupsen-logrus-1.4.2) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-runtime-spec-1.0.2" +; ,go-github-com-opencontainers-runtime-spec-1.0.2) +; ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.2" +; ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.2) +; ("go-github-com-gogo-protobuf-1.3.1" +; ,go-github-com-gogo-protobuf-1.3.1) +; ("go-github-com-godbus-dbus-v5-5.0.3" +; ,go-github-com-godbus-dbus-v5-5.0.3) +; ("go-github-com-docker-go-units-0.4.0" +; ,go-github-com-docker-go-units-0.4.0) +; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" +; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) +; ("go-github-com-coreos-go-systemd-v22-22.0.0" +; ,go-github-com-coreos-go-systemd-v22-22.0.0) +; ("go-github-com-cilium-ebpf-0.0.0-20200110133405-4032b1d8aae3" +; ,go-github-com-cilium-ebpf-0.0.0-20200110133405-4032b1d8aae3))) +; (home-page "https://github.com/containerd/cgroups") +; (synopsis "cgroups") +; (description +; "Go package for creating, managing, inspecting, and destroying cgroups. +;The resources format for settings on the cgroup uses the OCI runtime-spec found +;@url{https://github.com/opencontainers/runtime-spec,here}.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1 +; (package +; (name "go-github-com-containerd-console") +; (version "0.0.0-20180822173158-c12b1e7919c1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/console") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ylrnmdhn9a2f8w8fsdgsvwnz5j0whhyhppjnhqc4lh8h9p9dpi9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/console")) +; (home-page "https://github.com/containerd/console") +; (synopsis "console") +; (description +; "Golang package for dealing with consoles. Light on deps and a simple API.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-containerd-1.3.2 +; (package +; (name "go-github-com-containerd-containerd") +; (version "1.3.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/containerd") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0qz6ss7a6f2r7gl7aar39pr5ry9l7nh7dn3kclr18nwdv01gmrvc")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/containerd")) +; (home-page "https://github.com/containerd/containerd") +; (synopsis "Now Recruiting") +; (description +; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc +; (package +; (name "go-github-com-containerd-continuity") +; (version "0.0.0-20190426062206-aaeac12a7ffc") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/continuity") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "05caqvxxb831xfvqnga692k98cy8xzkllqg1ibra0fb0ljnhbmca")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/continuity")) +; (home-page "https://github.com/containerd/continuity") +; (synopsis "continuity") +; (description +; "This package provides a transport-agnostic, filesystem metadata manifest system") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448 +; (package +; (name "go-github-com-containerd-fifo") +; (version "0.0.0-20190226154929-a9fb20d87448") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/fifo") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0c0sgfnafjnws4jgziczs6wxh0adjdrp6yyd88b7xy0hv13fsnqa")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/fifo")) +; (home-page "https://github.com/containerd/fifo") +; (synopsis "fifo") +; (description "Go package for handling fifos in a sane way.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3 +; (package +; (name "go-github-com-containerd-go-runc") +; (version "0.0.0-20180907222934-5a6d9f37cfa3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/go-runc") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "07qpxcjy64m238igpmj8g9z7qhf06k5xy1jcgpgvf5n912g4k3vd")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/go-runc")) +; (home-page "https://github.com/containerd/go-runc") +; (synopsis "go-runc") +; (description +; "This is a package for consuming the @url{https://github.com/opencontainers/runc,runc} binary in your Go applications. +;It tries to expose all the settings and features of the runc CLI. If there is something missing then add it, its opensource!") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de +; (package +; (name "go-github-com-containerd-ttrpc") +; (version "0.0.0-20190828154514-0e0f228740de") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/ttrpc") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1kzclhmicw2xkiqsg6npx0xzs5jx36mqmyd0gj5dzv88i7p4b8dx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/ttrpc")) +; (home-page "https://github.com/containerd/ttrpc") +; (synopsis "ttrpc") +; (description "GRPC for low-memory environments.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd +; (package +; (name "go-github-com-containerd-typeurl") +; (version "0.0.0-20180627222232-a93fcdb778cd") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/typeurl") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0aqnf5rzc5pldln0czhxlr0fqaf5553ab7wzsq85p90lg1ryqnd6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/typeurl")) +; (home-page "https://github.com/containerd/typeurl") +; (synopsis "typeurl") +; (description +; "This package provides a Go package for managing the registration, marshaling, and unmarshaling of encoded types.") +; (license license:asl2.0))) +; +;(define-public go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2 +; (package +; (name "go-github-com-opencontainers-go-digest") +; (version "0.0.0-20180430190053-c9281466c8b2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/go-digest") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1djdazssy27xn91pjhx3dgb0f11bnlzzbwkh7f8zwnpz011anasi")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/go-digest")) +; (home-page "https://github.com/opencontainers/go-digest") +; (synopsis "go-digest") +; (description +; "Package digest provides a generalized type to opaquely represent message +;digests and their operations within the registry. The Digest type is +;designed to serve as a flexible identifier in a content-addressable system. +;More importantly, it provides tools and wrappers to work with +;hash.Hash-based digests with little effort. +;") +; (license (list license:asl2.0 license:cc-by-sa4.0)))) +; +;(define-public go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f +; (package +; (name "go-github-com-opencontainers-runc") +; (version "0.0.0-20190115041553-12f6a991201f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/runc") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0lr4q440pliilq2njyj5glfpma89r9l1cl687niwkp2pzb32dm45")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/runc")) +; (home-page "https://github.com/opencontainers/runc") +; (synopsis "runc") +; (description +; "@code{runc} is a CLI tool for spawning and running containers according to the OCI specification.") +; (license license:asl2.0))) +; +;(define-public go-github-com-opencontainers-runtime-spec-1.0.2 +; (package +; (name "go-github-com-opencontainers-runtime-spec") +; (version "1.0.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/runtime-spec") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19w981vcmd5lp2hy0630x6ayb8zz17n2vxqm2py5mg945xflcizg")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) +; (home-page "https://github.com/opencontainers/runtime-spec") +; (synopsis "Open Container Initiative Runtime Specification") +; (description +; "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") +; (license license:asl2.0))) +; +;(define-public go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7 +; (package +; (name "go-github-com-prometheus-procfs") +; (version "0.0.0-20180125133057-cb4147076ac7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/procfs") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0zhlrik0f9q1lj6cisgnxgbz4darbcix52hm5abi24l2ahchf5ca")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/procfs")) +; (home-page "https://github.com/prometheus/procfs") +; (synopsis "procfs") +; (description +; "Package procfs provides functions to retrieve system, kernel and process +;metrics from the pseudo-filesystem proc. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-urfave-cli-1.22.2 +; (package +; (name "go-github-com-urfave-cli") +; (version "1.22.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/urfave/cli") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "10mcnvi5qmn00vpyk6si8gjka7p654wr9hac4zc9w5h3ickhvbdc")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/urfave/cli")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) +; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d" +; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d) +; ("go-github-com-burntsushi-toml-0.3.1" +; ,go-github-com-burntsushi-toml-0.3.1))) +; (home-page "https://github.com/urfave/cli") +; (synopsis "cli") +; (description +; "Package cli provides a minimal framework for creating and organizing command line +;Go applications. cli is designed to be easy to understand and write, the most simple +;cli application can be written as follows: +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-net-0.0.0-20190501004415-9ce7a6920f09 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190501004415-9ce7a6920f09") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1kbs85jsqbv4v89ii2zam4b8dhmllhsrf46njmi09x0w6s0b9cbk")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-go-opencensus-io-0.22.0 +; (package +; (name "go-go-opencensus-io") +; (version "0.22.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/census-instrumentation/opencensus-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "05jr8gkr2w34i5wwki4zhl5ch0qrgi7cdgag5iy5gpxplhbrvbg9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "go.opencensus.io")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.20.1" ,go-google-golang-org-grpc-1.20.1) +; ("go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb" +; ,go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb) +; ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) +; ("go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd" +; ,go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd) +; ("go-golang-org-x-net-0.0.0-20190501004415-9ce7a6920f09" +; ,go-golang-org-x-net-0.0.0-20190501004415-9ce7a6920f09) +; ("go-github-com-hashicorp-golang-lru-0.5.1" +; ,go-github-com-hashicorp-golang-lru-0.5.1) +; ("go-github-com-google-go-cmp-0.3.0" +; ,go-github-com-google-go-cmp-0.3.0) +; ("go-github-com-golang-protobuf-1.3.1" +; ,go-github-com-golang-protobuf-1.3.1))) +; (home-page "https://go.opencensus.io") +; (synopsis "OpenCensus Libraries for Go") +; (description "Package opencensus contains Go support for OpenCensus. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20191004110552-13f9640d40b9") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ba2767lvklnmfvb9jkwvd4m7z6326gaiz3rgylh795g88hy34g1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873 +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20190502173448-54afdca5d873") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1vm1vggl874jd4wi6qyl7aggc6s6kdsazk4vj0cs2dfcw2xnw8ag")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" +; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) +; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) +; ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" +; ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) +; ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" +; ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) +; ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" +; ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd) +; ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" +; ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) +; ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" +; ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-grpc-1.23.1 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.23.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1d8gjjhrqbiq8pb56lb4x10hb752k7k06wspjvh7v0vpzmf25981")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" +; ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) +; ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" +; ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) +; ("go-google-golang-org-appengine-1.1.0" +; ,go-google-golang-org-appengine-1.1.0) +; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" +; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-github-com-google-go-cmp-0.2.0" +; ,go-github-com-google-go-cmp-0.2.0) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0) +; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-client9-misspell-0.3.4" +; ,go-github-com-client9-misspell-0.3.4) +; ("go-github-com-burntsushi-toml-0.3.1" +; ,go-github-com-burntsushi-toml-0.3.1) +; ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-microsoft-hcsshim-0.8.14 +; (package +; (name "go-github-com-microsoft-hcsshim") +; (version "0.8.14") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/microsoft/hcsshim") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0k57knv8zrf32hp7rpv1km9j772w6752pfvdbpd3l711ism48c84")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/Microsoft/hcsshim")) +; (propagated-inputs +; `(("go-gotest-tools-2.2.0+incompatible" +; ,go-gotest-tools-2.2.0+incompatible) +; ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) +; ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" +; ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) +; ("go-google-golang-org-grpc-1.23.1" ,go-google-golang-org-grpc-1.23.1) +; ("go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873" +; ,go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873) +; ("go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3" +; ,go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3) +; ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" +; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) +; ("go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9" +; ,go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9) +; ("go-go-opencensus-io-0.22.0" ,go-go-opencensus-io-0.22.0) +; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) +; ("go-github-com-stretchr-testify-1.4.0" +; ,go-github-com-stretchr-testify-1.4.0) +; ("go-github-com-sirupsen-logrus-1.4.2" +; ,go-github-com-sirupsen-logrus-1.4.2) +; ("go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7" +; ,go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-runtime-spec-1.0.2" +; ,go-github-com-opencontainers-runtime-spec-1.0.2) +; ("go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f" +; ,go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f) +; ("go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2" +; ,go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2) +; ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2) +; ("go-github-com-gogo-protobuf-1.3.1" +; ,go-github-com-gogo-protobuf-1.3.1) +; ("go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd" +; ,go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd) +; ("go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de" +; ,go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de) +; ("go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3" +; ,go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3) +; ("go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448" +; ,go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448) +; ("go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc" +; ,go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc) +; ("go-github-com-containerd-containerd-1.3.2" +; ,go-github-com-containerd-containerd-1.3.2) +; ("go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1" +; ,go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1) +; ("go-github-com-containerd-cgroups-0.0.0-20200531161412-0dbf7f05ba59" +; ,go-github-com-containerd-cgroups-0.0.0-20200531161412-0dbf7f05ba59) +; ("go-github-com-microsoft-go-winio-0.4.16-0.20201130162521-d1ffc52c7331" +; ,go-github-com-microsoft-go-winio-0.4.16-0.20201130162521-d1ffc52c7331))) +; (home-page "https://github.com/Microsoft/hcsshim") +; (synopsis "hcsshim") +; (description +; "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") +; (license license:expat))) +; +;(define-public go-github-com-containerd-containerd-1.4.3 +; (package +; (name "go-github-com-containerd-containerd") +; (version "1.4.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/containerd") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "09xvhjg5f8h90w1y94kqqnqzhbhd62dcdd9wb9sdqakisjk6zrl0")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/containerd")) +; (home-page "https://github.com/containerd/containerd") +; (synopsis "Now Recruiting") +; (description +; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") +; (license license:asl2.0))) +; +;(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.2 +; (package +; (name "go-github-com-konsorten-go-windows-terminal-sequences") +; (version "1.0.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/konsorten/go-windows-terminal-sequences") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "09mn209ika7ciy87xf2x31dq5fnqw39jidgaljvmqxwk7ff1hnx7")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) +; (home-page "https://github.com/konsorten/go-windows-terminal-sequences") +; (synopsis "Windows Terminal Sequences") +; (description +; "This library allow for enabling Windows terminal color support for Go.") +; (license license:expat))) +; +;(define-public go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1 +; (package +; (name "go-github-com-prometheus-procfs") +; (version "0.0.0-20190522114515-bc1a522cf7b1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/procfs") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "13ws66kd65zbhk31zmax9qgmh22fzjcgs5ihy4fm1d775w6bmdzx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/procfs")) +; (propagated-inputs +; `(("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" +; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4))) +; (home-page "https://github.com/prometheus/procfs") +; (synopsis "procfs") +; (description +; "Package procfs provides functions to retrieve system, kernel and process +;metrics from the pseudo-filesystem proc. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20200120151820-655fe14d7479") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "133yxmdcny5b0r8775m52sj7zja36riv0x2437k7jccywqi8nx32")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20200117163144-32f20d992d24 +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20200117163144-32f20d992d24") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1kl696jd8fykykjjbngqpgqsngajwbbrvrpl1q0804l6hz8qk858")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" +; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) +; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) +; ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" +; ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) +; ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" +; ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) +; ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" +; ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-ttrpc-1.0.2 +; (package +; (name "go-github-com-containerd-ttrpc") +; (version "1.0.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/ttrpc") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0plkm3yrr20vccfl0x8dxys3iphjwnmi285in0pivff6p9djf3yz")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/ttrpc")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.26.0" ,go-google-golang-org-grpc-1.26.0) +; ("go-google-golang-org-genproto-0.0.0-20200117163144-32f20d992d24" +; ,go-google-golang-org-genproto-0.0.0-20200117163144-32f20d992d24) +; ("go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479" +; ,go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479) +; ("go-github-com-sirupsen-logrus-1.4.2" +; ,go-github-com-sirupsen-logrus-1.4.2) +; ("go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1" +; ,go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.2" +; ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.2) +; ("go-github-com-gogo-protobuf-1.3.1" +; ,go-github-com-gogo-protobuf-1.3.1))) +; (home-page "https://github.com/containerd/ttrpc") +; (synopsis "ttrpc") +; (description "GRPC for low-memory environments.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-typeurl-1.0.1 +; (package +; (name "go-github-com-containerd-typeurl") +; (version "1.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/typeurl") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "09cgrchrw5d36zq0mc321l5qr2gfbdm1z1a3hhkhqr4qay6vglqn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/typeurl")) +; (propagated-inputs +; `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-gogo-protobuf-1.3.1" +; ,go-github-com-gogo-protobuf-1.3.1))) +; (home-page "https://github.com/containerd/typeurl") +; (synopsis "typeurl") +; (description +; "This package provides a Go package for managing the registration, marshaling, and unmarshaling of encoded types.") +; (license license:asl2.0))) +; +;(define-public go-github-com-opencontainers-runc-1.0.0-rc9 +; (package +; (name "go-github-com-opencontainers-runc") +; (version "1.0.0-rc9") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/runc") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ss5b46cbbckyqlwgj8dbd5l59c5y0kp679hcpc0ybaj53pmwxj7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/runc")) +; (home-page "https://github.com/opencontainers/runc") +; (synopsis "runc") +; (description +; "@code{runc} is a CLI tool for spawning and running containers according to the OCI specification.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-zfs-0.0.0-20210301145711-11e8f1707f62 +; (package +; (name "go-github-com-containerd-zfs") +; (version "0.0.0-20210301145711-11e8f1707f62") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/zfs") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1919ax45a07v2y56xq5c0xihkn2c5zgyqv68rzx3x5cc20n2p8yg")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/zfs")) +; (propagated-inputs +; `(("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) +; ("go-go-etcd-io-bbolt-1.3.3" ,go-go-etcd-io-bbolt-1.3.3) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-runc-1.0.0-rc9" +; ,go-github-com-opencontainers-runc-1.0.0-rc9) +; ("go-github-com-opencontainers-image-spec-1.0.1" +; ,go-github-com-opencontainers-image-spec-1.0.1) +; ("go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible" +; ,go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible) +; ("go-github-com-google-uuid-1.1.1" ,go-github-com-google-uuid-1.1.1) +; ("go-github-com-gogo-protobuf-1.3.1" +; ,go-github-com-gogo-protobuf-1.3.1) +; ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" +; ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) +; ("go-github-com-containerd-typeurl-1.0.1" +; ,go-github-com-containerd-typeurl-1.0.1) +; ("go-github-com-containerd-ttrpc-1.0.2" +; ,go-github-com-containerd-ttrpc-1.0.2) +; ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" +; ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) +; ("go-github-com-containerd-containerd-1.4.3" +; ,go-github-com-containerd-containerd-1.4.3) +; ("go-github-com-microsoft-hcsshim-0.8.14" +; ,go-github-com-microsoft-hcsshim-0.8.14))) +; (home-page "https://github.com/containerd/zfs") +; (synopsis "ZFS snapshotter plugin") +; (description "ZFS snapshotter plugin for containerd.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containernetworking-cni-0.7.1 +; (package +; (name "go-github-com-containernetworking-cni") +; (version "0.7.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containernetworking/cni") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "02qn1br8164d99978acalisy1sx294g1axnii4yh1wji0fc735xz")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containernetworking/cni")) +; (home-page "https://github.com/containernetworking/cni") +; (synopsis "CNI - the Container Network Interface") +; (description +; "CNI (), a @url{https://cncf.io,Cloud Native Computing Foundation} project, consists of a specification and libraries for writing plugins to configure network interfaces in Linux containers, along with a number of supported plugins. +;CNI concerns itself only with network connectivity of containers and removing allocated resources when the container is deleted. +;Because of this focus, CNI has a wide range of support and the specification is simple to implement.") +; (license license:asl2.0))) +; +;(define-public go-github-com-coreos-go-iptables-0.4.5 +; (package +; (name "go-github-com-coreos-go-iptables") +; (version "0.4.5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/coreos/go-iptables") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "04iqh4hvvrrvjsfjyaa5bdyqklwzrzzy8yiyvja90hvv121f7975")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/coreos/go-iptables")) +; (home-page "https://github.com/coreos/go-iptables") +; (synopsis "go-iptables") +; (description "Go bindings for iptables utility.") +; (license license:asl2.0))) +; +;(define-public go-github-com-onsi-ginkgo-0.0.0-20151202141238-7f8ab55aaf3b +; (package +; (name "go-github-com-onsi-ginkgo") +; (version "0.0.0-20151202141238-7f8ab55aaf3b") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/onsi/ginkgo") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0nas6wqdym4jx42kw9wj80b58r69k9qhnvglz009lj34g5gba7rw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/onsi/ginkgo")) +; (home-page "https://github.com/onsi/ginkgo") +; (synopsis "Ginkgo 2.0 Release Candidate is available!") +; (description "Ginkgo is a BDD-style testing framework for Golang +;") +; (license license:expat))) +; +;(define-public go-github-com-onsi-gomega-0.0.0-20151007035656-2152b45fa28a +; (package +; (name "go-github-com-onsi-gomega") +; (version "0.0.0-20151007035656-2152b45fa28a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/onsi/gomega") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0amjlkawp84mmdqjgdamf93p1546cla6h4wwrx7hf5r862r2qcw2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/onsi/gomega")) +; (home-page "https://github.com/onsi/gomega") +; (synopsis ": a BDD Testing Framework for Golang") +; (description +; "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library. +;") +; (license license:expat))) +; +;(define-public go-github-com-vishvananda-netlink-0.0.0-20181108222139-023a6dafdcdf +; (package +; (name "go-github-com-vishvananda-netlink") +; (version "0.0.0-20181108222139-023a6dafdcdf") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/vishvananda/netlink") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1i5q8r8rg7lxzvq2vhbf25lrkzdlgficfv0bxg9rf7cgg6z819sn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/vishvananda/netlink")) +; (home-page "https://github.com/vishvananda/netlink") +; (synopsis "netlink - netlink library for go") +; (description +; "Package netlink provides a simple library for netlink. Netlink is +;the interface a user-space program in linux uses to communicate with +;the kernel. It can be used to add and remove interfaces, set up ip +;addresses and routes, and confiugre ipsec. Netlink communication +;requires elevated privileges, so in most cases this code needs to +;be run as root. The low level primitives for netlink are contained +;in the nl subpackage. This package attempts to provide a high-level +;interface that is loosly modeled on the iproute2 cli. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-vishvananda-netns-0.0.0-20180720170159-13995c7128cc +; (package +; (name "go-github-com-vishvananda-netns") +; (version "0.0.0-20180720170159-13995c7128cc") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/vishvananda/netns") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1zk6w8158qi4niva5rijchbv9ixgmijsgqshh54wdaav4xrhjshn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/vishvananda/netns")) +; (home-page "https://github.com/vishvananda/netns") +; (synopsis "netns - network namespaces in go") +; (description +; "Package netns allows ultra-simple network namespace handling. NsHandles +;can be retrieved and set. Note that the current namespace is thread +;local so actions that set and reset namespaces should use LockOSThread +;to make sure the namespace doesn't change due to a goroutine switch. +;It is best to close NsHandles when you are done with them. This can be +;accomplished via a `defer ns.Close()` on the handle. Changing namespaces +;requires elevated privileges, so in most cases this code needs to be run +;as root. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20181009213950-7c1a557ab941 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20181009213950-7c1a557ab941") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1f1q9mby8m7ws3gbj90v0prhnf4g2sgf74azmw31kzwd6azlar3m")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20181011144130-49bb7cea24b1 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20181011144130-49bb7cea24b1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "111q4qm3hcjvzvyv9y5rz8ydnyg48rckcygxqy6gv63q618wz6gn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-github-com-containernetworking-plugins-0.8.6 +; (package +; (name "go-github-com-containernetworking-plugins") +; (version "0.8.6") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containernetworking/plugins") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0f1cqxjf26sy1c4aw6y7pyd9lrz0vknby4q5j6xj77a1pab9073m")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containernetworking/plugins")) +; (propagated-inputs +; `(("go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2" +; ,go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2) +; ("go-gopkg-in-airbrake-gobrake-v2-2.0.9" +; ,go-gopkg-in-airbrake-gobrake-v2-2.0.9) +; ("go-golang-org-x-sys-0.0.0-20190616124812-15dcb6c0061f" +; ,go-golang-org-x-sys-0.0.0-20190616124812-15dcb6c0061f) +; ("go-golang-org-x-net-0.0.0-20181011144130-49bb7cea24b1" +; ,go-golang-org-x-net-0.0.0-20181011144130-49bb7cea24b1) +; ("go-golang-org-x-crypto-0.0.0-20181009213950-7c1a557ab941" +; ,go-golang-org-x-crypto-0.0.0-20181009213950-7c1a557ab941) +; ("go-github-com-vishvananda-netns-0.0.0-20180720170159-13995c7128cc" +; ,go-github-com-vishvananda-netns-0.0.0-20180720170159-13995c7128cc) +; ("go-github-com-vishvananda-netlink-0.0.0-20181108222139-023a6dafdcdf" +; ,go-github-com-vishvananda-netlink-0.0.0-20181108222139-023a6dafdcdf) +; ("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0) +; ("go-github-com-sirupsen-logrus-1.0.6" +; ,go-github-com-sirupsen-logrus-1.0.6) +; ("go-github-com-safchain-ethtool-0.0.0-20190326074333-42ed695e3de8" +; ,go-github-com-safchain-ethtool-0.0.0-20190326074333-42ed695e3de8) +; ("go-github-com-onsi-gomega-0.0.0-20151007035656-2152b45fa28a" +; ,go-github-com-onsi-gomega-0.0.0-20151007035656-2152b45fa28a) +; ("go-github-com-onsi-ginkgo-0.0.0-20151202141238-7f8ab55aaf3b" +; ,go-github-com-onsi-ginkgo-0.0.0-20151202141238-7f8ab55aaf3b) +; ("go-github-com-mattn-go-shellwords-1.0.3" +; ,go-github-com-mattn-go-shellwords-1.0.3) +; ("go-github-com-j-keck-arping-0.0.0-20160618110441-2cf9dc699c56" +; ,go-github-com-j-keck-arping-0.0.0-20160618110441-2cf9dc699c56) +; ("go-github-com-golang-protobuf-1.3.1" +; ,go-github-com-golang-protobuf-1.3.1) +; ("go-github-com-godbus-dbus-0.0.0-20180201030542-885f9cc04c9c" +; ,go-github-com-godbus-dbus-0.0.0-20180201030542-885f9cc04c9c) +; ("go-github-com-d2g-hardwareaddr-0.0.0-20190221164911-e7d9fbe030e4" +; ,go-github-com-d2g-hardwareaddr-0.0.0-20190221164911-e7d9fbe030e4) +; ("go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5" +; ,go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5) +; ("go-github-com-d2g-dhcp4client-1.0.0" +; ,go-github-com-d2g-dhcp4client-1.0.0) +; ("go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c" +; ,go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c) +; ("go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7" +; ,go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7) +; ("go-github-com-coreos-go-iptables-0.4.5" +; ,go-github-com-coreos-go-iptables-0.4.5) +; ("go-github-com-containernetworking-cni-0.7.1" +; ,go-github-com-containernetworking-cni-0.7.1) +; ("go-github-com-buger-jsonparser-0.0.0-20180808090653-f4dd9f5a6b44" +; ,go-github-com-buger-jsonparser-0.0.0-20180808090653-f4dd9f5a6b44) +; ("go-github-com-alexflint-go-filemutex-0.0.0-20171022225611-72bdc8eae2ae" +; ,go-github-com-alexflint-go-filemutex-0.0.0-20171022225611-72bdc8eae2ae) +; ("go-github-com-microsoft-hcsshim-0.8.6" +; ,go-github-com-microsoft-hcsshim-0.8.6) +; ("go-github-com-microsoft-go-winio-0.4.11" +; ,go-github-com-microsoft-go-winio-0.4.11))) +; (home-page "https://github.com/containernetworking/plugins") +; (synopsis "Plugins") +; (description +; "Some CNI network plugins, maintained by the containernetworking team. For more information, see the @url{https://www.cni.dev,CNI website}.") +; (license license:asl2.0))) +; +;(define-public go-github-com-imdario-mergo-0.3.11 +; (package +; (name "go-github-com-imdario-mergo") +; (version "0.3.11") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/imdario/mergo") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "07iay9j3ry7qrflvn9bgyyggvwacl1s1in1cnbmsp1020ydkph8k")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/imdario/mergo")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.3.0" ,go-gopkg-in-yaml-v2-2.3.0))) +; (home-page "https://github.com/imdario/mergo") +; (synopsis "Mergo") +; (description +; "This package provides a helper to merge structs and maps in Golang. Useful for configuration default values, avoiding messy if-statements. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-klauspost-compress-1.11.3 +; (package +; (name "go-github-com-klauspost-compress") +; (version "1.11.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/klauspost/compress") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "04wpilw6072fh2wd492ma1nw4br7bvz466mj0vi2m1g4w6d0z88z")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/klauspost/compress")) +; (home-page "https://github.com/klauspost/compress") +; (synopsis "compress") +; (description "This package provides various compression algorithms.") +; (license #f))) +; +;(define-public go-github-com-checkpoint-restore-go-criu-v4-4.1.0 +; (package +; (name "go-github-com-checkpoint-restore-go-criu-v4") +; (version "4.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/checkpoint-restore/go-criu") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0hfgjck015df5h44hczl3x4gg430saczgkl619cp0l6cpaxga5yi")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/checkpoint-restore/go-criu/v4")) +; (propagated-inputs +; `(("go-github-com-golang-protobuf-1.3.5" +; ,go-github-com-golang-protobuf-1.3.5))) +; (home-page "https://github.com/checkpoint-restore/go-criu") +; (synopsis "go-criu -- Go bindings for") +; (description +; "This repository provides Go bindings for CRIU. The code is based on the Go based PHaul +;implementation from the CRIU repository. For easier inclusion into other Go projects the +;CRIU Go bindings have been moved to this repository.") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20200124204421-9fbb57f87de9") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0qaz2jjkrxzgkapmjqingdwamrgq2aiblxvzzgrcsv2qhkj0wdps")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-cilium-ebpf-0.2.0 +; (package +; (name "go-github-com-cilium-ebpf") +; (version "0.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/cilium/ebpf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0f7my8n5v2c5cmgrcikgi0naamglr7c4khgxkbb1k5wl8mm9465a")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/cilium/ebpf")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9" +; ,go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9) +; ("go-github-com-google-go-cmp-0.5.2" +; ,go-github-com-google-go-cmp-0.5.2))) +; (home-page "https://github.com/cilium/ebpf") +; (synopsis "eBPF") +; (description "Package ebpf is a toolkit for working with eBPF programs. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20200916030750-2334cc1a136f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1lc7d513gwwpr6r7f55743684n1qsgn9vmg6b79x0hsp1x90z4mr")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-containerd-console-1.0.1 +; (package +; (name "go-github-com-containerd-console") +; (version "1.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/console") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0s837wj6h80fykk2pdmaji75rw9c3863by0gh0cq51hh0lgyjpvg")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/console")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f" +; ,go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) +; (home-page "https://github.com/containerd/console") +; (synopsis "console") +; (description +; "Golang package for dealing with consoles. Light on deps and a simple API.") +; (license license:asl2.0))) +; +;(define-public go-github-com-coreos-go-systemd-v22-22.1.0 +; (package +; (name "go-github-com-coreos-go-systemd-v22") +; (version "22.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/coreos/go-systemd") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "127dj1iwp69yj74nwh9ckgc0mkk1mv4yzbxmbdxix1r7j6q35z3j")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/coreos/go-systemd/v22")) +; (propagated-inputs +; `(("go-github-com-godbus-dbus-v5-5.0.3" +; ,go-github-com-godbus-dbus-v5-5.0.3))) +; (home-page "https://github.com/coreos/go-systemd") +; (synopsis "go-systemd") +; (description "Go bindings to systemd. The project has several packages:") +; (license license:asl2.0))) +; +;(define-public go-github-com-godbus-dbus-v5-5.0.3 +; (package +; (name "go-github-com-godbus-dbus-v5") +; (version "5.0.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/godbus/dbus") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1bkc904073k807yxg6mvqaxrr6ammmhginr9p54jfb55mz3hfw3s")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/godbus/dbus/v5")) +; (home-page "https://github.com/godbus/dbus") +; (synopsis "dbus") +; (description +; "Package dbus implements bindings to the D-Bus message bus system. +;") +; (license license:bsd-2))) +; +;(define-public go-github-com-opencontainers-runc-1.0.0-rc93 +; (package +; (name "go-github-com-opencontainers-runc") +; (version "1.0.0-rc93") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/runc") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "008d5wkznic80n5q1vwx727qn5ifalc7cydq68hc1gk9wrhna4v4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/runc")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" +; ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68) +; ("go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b" +; ,go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b) +; ("go-github-com-willf-bitset-1.1.11" +; ,go-github-com-willf-bitset-1.1.11) +; ("go-github-com-vishvananda-netlink-1.1.0" +; ,go-github-com-vishvananda-netlink-1.1.0) +; ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) +; ("go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635" +; ,go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635) +; ("go-github-com-sirupsen-logrus-1.7.0" +; ,go-github-com-sirupsen-logrus-1.7.0) +; ("go-github-com-seccomp-libseccomp-golang-0.9.1" +; ,go-github-com-seccomp-libseccomp-golang-0.9.1) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-selinux-1.8.0" +; ,go-github-com-opencontainers-selinux-1.8.0) +; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" +; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) +; ("go-github-com-mrunalp-fileutils-0.5.0" +; ,go-github-com-mrunalp-fileutils-0.5.0) +; ("go-github-com-moby-sys-mountinfo-0.4.0" +; ,go-github-com-moby-sys-mountinfo-0.4.0) +; ("go-github-com-golang-protobuf-1.4.3" +; ,go-github-com-golang-protobuf-1.4.3) +; ("go-github-com-godbus-dbus-v5-5.0.3" +; ,go-github-com-godbus-dbus-v5-5.0.3) +; ("go-github-com-docker-go-units-0.4.0" +; ,go-github-com-docker-go-units-0.4.0) +; ("go-github-com-cyphar-filepath-securejoin-0.2.2" +; ,go-github-com-cyphar-filepath-securejoin-0.2.2) +; ("go-github-com-coreos-go-systemd-v22-22.1.0" +; ,go-github-com-coreos-go-systemd-v22-22.1.0) +; ("go-github-com-containerd-console-1.0.1" +; ,go-github-com-containerd-console-1.0.1) +; ("go-github-com-cilium-ebpf-0.2.0" ,go-github-com-cilium-ebpf-0.2.0) +; ("go-github-com-checkpoint-restore-go-criu-v4-4.1.0" +; ,go-github-com-checkpoint-restore-go-criu-v4-4.1.0))) +; (home-page "https://github.com/opencontainers/runc") +; (synopsis "runc") +; (description +; "@code{runc} is a CLI tool for spawning and running containers according to the OCI specification.") +; (license license:asl2.0))) +; +;(define-public go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d +; (package +; (name "go-github-com-opencontainers-runtime-spec") +; (version "1.0.3-0.20200929063507-e6143ca7d51d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/runtime-spec") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "06yk9kjif5mgi46d0hcgqcikdcplf3yflqbj8h6ljxshp6jzc49w")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) +; (home-page "https://github.com/opencontainers/runtime-spec") +; (synopsis "Open Container Initiative Runtime Specification") +; (description +; "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") +; (license license:asl2.0))) +; +;(define-public go-github-com-willf-bitset-1.1.11 +; (package +; (name "go-github-com-willf-bitset") +; (version "1.1.11") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/bits-and-blooms/bitset") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1v7wnikdxiyhwdxnsj2wcrsrsi1kb2ssmarvbrda90vmxzafjl7d")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/willf/bitset")) +; (home-page "https://github.com/willf/bitset") +; (synopsis "bitset") +; (description +; "Package bitset implements bitsets, a mapping +;between non-negative integers and boolean values. It should be more +;efficient than map[uint] bool. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-opencontainers-selinux-1.8.0 +; (package +; (name "go-github-com-opencontainers-selinux") +; (version "1.8.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/selinux") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "08aakiva619hk4lgfvyi6kpjgw7hfirs0jlc2jdgzcv7p0gfhbmx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/selinux")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777" +; ,go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777) +; ("go-github-com-willf-bitset-1.1.11" +; ,go-github-com-willf-bitset-1.1.11) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) +; (home-page "https://github.com/opencontainers/selinux") +; (synopsis "selinux") +; (description "Common SELinux package used across the container ecosystem.") +; (license license:asl2.0))) +; +;(define-public go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.14 +; (package +; (name "go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client") +; (version "0.0.14") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes-sigs/apiserver-network-proxy") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0px41x5apgcssmwmx75cwm000s8b8pgd84dxn56maxx223dzz9vm")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path +; "sigs.k8s.io/apiserver-network-proxy/konnectivity-client")) +; (propagated-inputs +; `(("go-k8s-io-klog-v2-2.0.0" ,go-k8s-io-klog-v2-2.0.0) +; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) +; ("go-github-com-golang-protobuf-1.4.0" +; ,go-github-com-golang-protobuf-1.4.0))) +; (home-page +; "https://sigs.k8s.io/apiserver-network-proxy/konnectivity-client") +; (synopsis #f) +; (description #f) +; (license license:asl2.0))) +; +;(define-public go-k8s-io-apiserver-0.20.1 +; (package +; (name "go-k8s-io-apiserver") +; (version "0.20.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes/apiserver") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "03k8kjisscj59i410kk2bz0qfpxa2d2vbwxiwyn93k7a2avbn7cs")))) +; (build-system go-build-system) +; (arguments '(#:import-path "k8s.io/apiserver")) +; (propagated-inputs +; `(("go-k8s-io-component-base-0.20.1" ,go-k8s-io-component-base-0.20.1) +; ("go-k8s-io-client-go-0.20.1" ,go-k8s-io-client-go-0.20.1) +; ("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) +; ("go-k8s-io-api-0.20.1" ,go-k8s-io-api-0.20.1) +; ("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) +; ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.2" +; ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.2) +; ("go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.14" +; ,go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.14) +; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" +; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) +; ("go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd" +; ,go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd) +; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) +; ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) +; ("go-gopkg-in-square-go-jose-v2-2.2.2" +; ,go-gopkg-in-square-go-jose-v2-2.2.2) +; ("go-gopkg-in-natefinch-lumberjack-v2-2.0.0" +; ,go-gopkg-in-natefinch-lumberjack-v2-2.0.0) +; ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) +; ("go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a" +; ,go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a) +; ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" +; ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) +; ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" +; ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) +; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" +; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) +; ("go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0" +; ,go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0) +; ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) +; ("go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489" +; ,go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489) +; ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) +; ("go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5" +; ,go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) +; ("go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021" +; ,go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822" +; ,go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822) +; ("go-github-com-mailru-easyjson-0.7.0" +; ,go-github-com-mailru-easyjson-0.7.0) +; ("go-github-com-hashicorp-golang-lru-0.5.1" +; ,go-github-com-hashicorp-golang-lru-0.5.1) +; ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" +; ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) +; ("go-github-com-gorilla-websocket-1.4.2" +; ,go-github-com-gorilla-websocket-1.4.2) +; ("go-github-com-googleapis-gnostic-0.4.1" +; ,go-github-com-googleapis-gnostic-0.4.1) +; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) +; ("go-github-com-google-gofuzz-1.1.0" +; ,go-github-com-google-gofuzz-1.1.0) +; ("go-github-com-google-go-cmp-0.5.2" +; ,go-github-com-google-go-cmp-0.5.2) +; ("go-github-com-gogo-protobuf-1.3.1" +; ,go-github-com-gogo-protobuf-1.3.1) +; ("go-github-com-go-openapi-spec-0.19.3" +; ,go-github-com-go-openapi-spec-0.19.3) +; ("go-github-com-evanphx-json-patch-4.9.0+incompatible" +; ,go-github-com-evanphx-json-patch-4.9.0+incompatible) +; ("go-github-com-emicklei-go-restful-2.9.5+incompatible" +; ,go-github-com-emicklei-go-restful-2.9.5+incompatible) +; ("go-github-com-dustin-go-humanize-1.0.0" +; ,go-github-com-dustin-go-humanize-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1) +; ("go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f" +; ,go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f) +; ("go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e" +; ,go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e) +; ("go-github-com-coreos-go-semver-0.3.0" +; ,go-github-com-coreos-go-semver-0.3.0) +; ("go-github-com-coreos-go-oidc-2.1.0+incompatible" +; ,go-github-com-coreos-go-oidc-2.1.0+incompatible))) +; (home-page "https://k8s.io/apiserver") +; (synopsis "apiserver") +; (description +; "Generic library for building a Kubernetes aggregated API server.") +; (license license:asl2.0))) +; +;(define-public go-k8s-io-api-0.20.1 +; (package +; (name "go-k8s-io-api") +; (version "0.20.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes/api") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "051nl7g66k0jkc9rmfbvwdsmqkn36nq71kvnfym3lhnjcgg53k0l")))) +; (build-system go-build-system) +; (arguments '(#:import-path "k8s.io/api")) +; (propagated-inputs +; `(("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-gogo-protobuf-1.3.1" +; ,go-github-com-gogo-protobuf-1.3.1))) +; (home-page "https://k8s.io/api") +; (synopsis "api") +; (description +; "Schema of the external API types that are served by the Kubernetes API server.") +; (license license:asl2.0))) +; +;(define-public go-k8s-io-apimachinery-0.20.1 +; (package +; (name "go-k8s-io-apimachinery") +; (version "0.20.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes/apimachinery") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "15qc12lbzpd4lgajy0rv24b3ky4hhg5y1l37qxdfiakhz91didfw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "k8s.io/apimachinery")) +; (propagated-inputs +; `(("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) +; ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.2" +; ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.2) +; ("go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd" +; ,go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd) +; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) +; ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) +; ("go-gopkg-in-inf-v0-0.9.1" ,go-gopkg-in-inf-v0-0.9.1) +; ("go-google-golang-org-protobuf-1.25.0" +; ,go-google-golang-org-protobuf-1.25.0) +; ("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" +; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) +; ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) +; ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" +; ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) +; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" +; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-onsi-gomega-1.7.0" ,go-github-com-onsi-gomega-1.7.0) +; ("go-github-com-onsi-ginkgo-1.11.0" ,go-github-com-onsi-ginkgo-1.11.0) +; ("go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f" +; ,go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f) +; ("go-github-com-modern-go-reflect2-1.0.1" +; ,go-github-com-modern-go-reflect2-1.0.1) +; ("go-github-com-json-iterator-go-1.1.10" +; ,go-github-com-json-iterator-go-1.1.10) +; ("go-github-com-hashicorp-golang-lru-0.5.1" +; ,go-github-com-hashicorp-golang-lru-0.5.1) +; ("go-github-com-googleapis-gnostic-0.4.1" +; ,go-github-com-googleapis-gnostic-0.4.1) +; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) +; ("go-github-com-google-gofuzz-1.1.0" +; ,go-github-com-google-gofuzz-1.1.0) +; ("go-github-com-google-go-cmp-0.5.2" +; ,go-github-com-google-go-cmp-0.5.2) +; ("go-github-com-golang-protobuf-1.4.3" +; ,go-github-com-golang-protobuf-1.4.3) +; ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" +; ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) +; ("go-github-com-gogo-protobuf-1.3.1" +; ,go-github-com-gogo-protobuf-1.3.1) +; ("go-github-com-fsnotify-fsnotify-1.4.9" +; ,go-github-com-fsnotify-fsnotify-1.4.9) +; ("go-github-com-evanphx-json-patch-4.9.0+incompatible" +; ,go-github-com-evanphx-json-patch-4.9.0+incompatible) +; ("go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153" +; ,go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153) +; ("go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96" +; ,go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://k8s.io/apimachinery") +; (synopsis "apimachinery") +; (description +; "Scheme, typing, encoding, decoding, and conversion packages for Kubernetes and Kubernetes-like API objects.") +; (license license:asl2.0))) +; +;(define-public go-k8s-io-client-go-0.20.1 +; (package +; (name "go-k8s-io-client-go") +; (version "0.20.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes/client-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "02jrzwwcrdlya91fga2wvf8dsl1yka3kky194dm6l9pmd754qwzs")))) +; (build-system go-build-system) +; (arguments '(#:import-path "k8s.io/client-go")) +; (propagated-inputs +; `(("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) +; ("go-k8s-io-api-0.20.1" ,go-k8s-io-api-0.20.1) +; ("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) +; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" +; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) +; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) +; ("go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e" +; ,go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e) +; ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" +; ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) +; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" +; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) +; ("go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0" +; ,go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) +; ("go-github-com-peterbourgon-diskv-2.0.1+incompatible" +; ,go-github-com-peterbourgon-diskv-2.0.1+incompatible) +; ("go-github-com-imdario-mergo-0.3.5" +; ,go-github-com-imdario-mergo-0.3.5) +; ("go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7" +; ,go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7) +; ("go-github-com-googleapis-gnostic-0.4.1" +; ,go-github-com-googleapis-gnostic-0.4.1) +; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) +; ("go-github-com-google-gofuzz-1.1.0" +; ,go-github-com-google-gofuzz-1.1.0) +; ("go-github-com-google-go-cmp-0.5.2" +; ,go-github-com-google-go-cmp-0.5.2) +; ("go-github-com-golang-protobuf-1.4.3" +; ,go-github-com-golang-protobuf-1.4.3) +; ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" +; ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) +; ("go-github-com-gogo-protobuf-1.3.1" +; ,go-github-com-gogo-protobuf-1.3.1) +; ("go-github-com-evanphx-json-patch-4.9.0+incompatible" +; ,go-github-com-evanphx-json-patch-4.9.0+incompatible) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1) +; ("go-github-com-azure-go-autorest-autorest-adal-0.9.5" +; ,go-github-com-azure-go-autorest-autorest-adal-0.9.5) +; ("go-github-com-azure-go-autorest-autorest-0.11.1" +; ,go-github-com-azure-go-autorest-autorest-0.11.1) +; ("go-cloud-google-com-go-0.54.0" ,go-cloud-google-com-go-0.54.0))) +; (home-page "https://k8s.io/client-go") +; (synopsis "client-go") +; (description +; "Go clients for talking to a @url{http://kubernetes.io/,kubernetes} cluster.") +; (license license:asl2.0))) +; +;(define-public go-k8s-io-component-base-0.20.1 +; (package +; (name "go-k8s-io-component-base") +; (version "0.20.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes/component-base") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "05x3mv1lxh7s6ckfh1s9wwmb0n9rg14a9637ai9bhxdfps47sz0v")))) +; (build-system go-build-system) +; (arguments '(#:import-path "k8s.io/component-base")) +; (propagated-inputs +; `(("go-k8s-io-client-go-0.20.1" ,go-k8s-io-client-go-0.20.1) +; ("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) +; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" +; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) +; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) +; ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) +; ("go-go-uber-org-multierr-1.1.0" ,go-go-uber-org-multierr-1.1.0) +; ("go-go-uber-org-atomic-1.4.0" ,go-go-uber-org-atomic-1.4.0) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) +; ("go-github-com-sirupsen-logrus-1.6.0" +; ,go-github-com-sirupsen-logrus-1.6.0) +; ("go-github-com-prometheus-procfs-0.2.0" +; ,go-github-com-prometheus-procfs-0.2.0) +; ("go-github-com-prometheus-common-0.10.0" +; ,go-github-com-prometheus-common-0.10.0) +; ("go-github-com-prometheus-client-model-0.2.0" +; ,go-github-com-prometheus-client-model-0.2.0) +; ("go-github-com-prometheus-client-golang-1.7.1" +; ,go-github-com-prometheus-client-golang-1.7.1) +; ("go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd" +; ,go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd) +; ("go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369" +; ,go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369) +; ("go-github-com-google-go-cmp-0.5.2" +; ,go-github-com-google-go-cmp-0.5.2) +; ("go-github-com-go-logr-logr-0.2.0" ,go-github-com-go-logr-logr-0.2.0) +; ("go-github-com-blang-semver-3.5.1+incompatible" +; ,go-github-com-blang-semver-3.5.1+incompatible))) +; (home-page "https://k8s.io/component-base") +; (synopsis "component-base") +; (description +; "Implement KEP 32: @url{https://github.com/kubernetes/enhancements/blob/master/keps/sig-cluster-lifecycle/wgs/783-component-base/README.md,https://github.com/kubernetes/enhancements/blob/master/keps/sig-cluster-lifecycle/wgs/783-component-base/README.md}") +; (license license:asl2.0))) +; +;(define-public go-k8s-io-cri-api-0.20.1 +; (package +; (name "go-k8s-io-cri-api") +; (version "0.20.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes/cri-api") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1r98d0kv42sijdg3404xx2g5jj0zixvfagkky2zla12p68ajm4xr")))) +; (build-system go-build-system) +; (arguments '(#:import-path "k8s.io/cri-api")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" +; ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) +; ("go-google-golang-org-protobuf-1.25.0" +; ,go-google-golang-org-protobuf-1.25.0) +; ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) +; ("go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a" +; ,go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a) +; ("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" +; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) +; ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) +; ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" +; ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) +; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" +; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-kr-pretty-0.2.0" ,go-github-com-kr-pretty-0.2.0) +; ("go-github-com-google-go-cmp-0.5.2" +; ,go-github-com-google-go-cmp-0.5.2) +; ("go-github-com-golang-protobuf-1.4.3" +; ,go-github-com-golang-protobuf-1.4.3) +; ("go-github-com-gogo-protobuf-1.3.1" +; ,go-github-com-gogo-protobuf-1.3.1) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://k8s.io/cri-api") +; (synopsis "Purpose") +; (description +; "This repository contains the definitions for the Container Runtime Interface (CRI). +;CRI is a plugin interface which enables kubelet to use a wide variety of container runtimes, +;without the need to recompile. CRI consists of a protocol buffers and gRPC API.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-containerd-1.5.0-beta.3 +; (package +; (name "go-github-com-containerd-containerd") +; (version "1.5.0-beta.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/containerd") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0fbd4llrwg5hi5adfkmfndma5y129yl9wwz3c3fjn7cfhc64hlqf")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/containerd")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) +; ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) +; ("go-github-com-golang-protobuf-1.3.5" +; ,go-github-com-golang-protobuf-1.3.5) +; ("go-github-com-gogo-googleapis-1.3.2" +; ,go-github-com-gogo-googleapis-1.3.2) +; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" +; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) +; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) +; ("go-k8s-io-cri-api-0.20.1" ,go-k8s-io-cri-api-0.20.1) +; ("go-k8s-io-component-base-0.20.1" ,go-k8s-io-component-base-0.20.1) +; ("go-k8s-io-client-go-0.20.1" ,go-k8s-io-client-go-0.20.1) +; ("go-k8s-io-apiserver-0.20.1" ,go-k8s-io-apiserver-0.20.1) +; ("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) +; ("go-k8s-io-api-0.20.1" ,go-k8s-io-api-0.20.1) +; ("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) +; ("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" +; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) +; ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" +; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) +; ("go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b" +; ,go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b) +; ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) +; ("go-github-com-tchap-go-patricia-2.2.6+incompatible" +; ,go-github-com-tchap-go-patricia-2.2.6+incompatible) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-sirupsen-logrus-1.7.0" +; ,go-github-com-sirupsen-logrus-1.7.0) +; ("go-github-com-prometheus-client-golang-1.7.1" +; ,go-github-com-prometheus-client-golang-1.7.1) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-selinux-1.8.0" +; ,go-github-com-opencontainers-selinux-1.8.0) +; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" +; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) +; ("go-github-com-opencontainers-runc-1.0.0-rc93" +; ,go-github-com-opencontainers-runc-1.0.0-rc93) +; ("go-github-com-opencontainers-image-spec-1.0.1" +; ,go-github-com-opencontainers-image-spec-1.0.1) +; ("go-github-com-opencontainers-go-digest-1.0.0" +; ,go-github-com-opencontainers-go-digest-1.0.0) +; ("go-github-com-moby-sys-symlink-0.1.0" +; ,go-github-com-moby-sys-symlink-0.1.0) +; ("go-github-com-moby-sys-mountinfo-0.4.0" +; ,go-github-com-moby-sys-mountinfo-0.4.0) +; ("go-github-com-klauspost-compress-1.11.3" +; ,go-github-com-klauspost-compress-1.11.3) +; ("go-github-com-imdario-mergo-0.3.11" +; ,go-github-com-imdario-mergo-0.3.11) +; ("go-github-com-hashicorp-go-multierror-1.0.0" +; ,go-github-com-hashicorp-go-multierror-1.0.0) +; ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" +; ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) +; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) +; ("go-github-com-google-go-cmp-0.5.4" +; ,go-github-com-google-go-cmp-0.5.4) +; ("go-github-com-gogo-protobuf-1.3.2" +; ,go-github-com-gogo-protobuf-1.3.2) +; ("go-github-com-fsnotify-fsnotify-1.4.9" +; ,go-github-com-fsnotify-fsnotify-1.4.9) +; ("go-github-com-emicklei-go-restful-2.9.5+incompatible" +; ,go-github-com-emicklei-go-restful-2.9.5+incompatible) +; ("go-github-com-docker-go-units-0.4.0" +; ,go-github-com-docker-go-units-0.4.0) +; ("go-github-com-docker-go-metrics-0.0.1" +; ,go-github-com-docker-go-metrics-0.0.1) +; ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" +; ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1) +; ("go-github-com-coreos-go-systemd-v22-22.1.0" +; ,go-github-com-coreos-go-systemd-v22-22.1.0) +; ("go-github-com-containernetworking-plugins-0.8.6" +; ,go-github-com-containernetworking-plugins-0.8.6) +; ("go-github-com-containerd-zfs-0.0.0-20210301145711-11e8f1707f62" +; ,go-github-com-containerd-zfs-0.0.0-20210301145711-11e8f1707f62) +; ("go-github-com-containerd-typeurl-1.0.1" +; ,go-github-com-containerd-typeurl-1.0.1) +; ("go-github-com-containerd-ttrpc-1.0.2" +; ,go-github-com-containerd-ttrpc-1.0.2) +; ("go-github-com-containerd-nri-0.0.0-20201007170849-eb1350a75164" +; ,go-github-com-containerd-nri-0.0.0-20201007170849-eb1350a75164) +; ("go-github-com-containerd-imgcrypt-1.0.4-0.20210301171431-0ae5c75f59ba" +; ,go-github-com-containerd-imgcrypt-1.0.4-0.20210301171431-0ae5c75f59ba) +; ("go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328" +; ,go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328) +; ("go-github-com-containerd-go-cni-1.0.1" +; ,go-github-com-containerd-go-cni-1.0.1) +; ("go-github-com-containerd-fifo-0.0.0-20201026212402-0724c46b320c" +; ,go-github-com-containerd-fifo-0.0.0-20201026212402-0724c46b320c) +; ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" +; ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) +; ("go-github-com-containerd-console-1.0.1" +; ,go-github-com-containerd-console-1.0.1) +; ("go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68" +; ,go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68) +; ("go-github-com-containerd-btrfs-0.0.0-20201111183144-404b9149801e" +; ,go-github-com-containerd-btrfs-0.0.0-20201111183144-404b9149801e) +; ("go-github-com-containerd-aufs-0.0.0-20201003224125-76a6863f2989" +; ,go-github-com-containerd-aufs-0.0.0-20201003224125-76a6863f2989) +; ("go-github-com-microsoft-hcsshim-test-0.0.0-20210227013316-43a75bb4edd3" +; ,go-github-com-microsoft-hcsshim-test-0.0.0-20210227013316-43a75bb4edd3) +; ("go-github-com-microsoft-hcsshim-0.8.15" +; ,go-github-com-microsoft-hcsshim-0.8.15) +; ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" +; ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3) +; ("go-github-com-burntsushi-toml-0.3.1" +; ,go-github-com-burntsushi-toml-0.3.1))) +; (home-page "https://github.com/containerd/containerd") +; (synopsis "Now Recruiting") +; (description +; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") +; (license license:asl2.0))) +; +;(define-public go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898 +; (package +; (name "go-bazil-org-fuse") +; (version "0.0.0-20160811212531-371fbbdaa898") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/bazil/fuse") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1x5p301py7mcxgwklfm6pqqkzssln0nfzllng49pnk60m03ilp4w")))) +; (build-system go-build-system) +; (arguments '(#:import-path "bazil.org/fuse")) +; (home-page "https://bazil.org/fuse") +; (synopsis "bazil.org/fuse -- Filesystems in Go") +; (description +; "Package fuse enables writing FUSE file systems on Linux and FreeBSD. +;") +; (license #f))) +; +;(define-public go-github-com-sirupsen-logrus-1.7.0 +; (package +; (name "go-github-com-sirupsen-logrus") +; (version "1.7.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/sirupsen/logrus") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1a59pw7zimvm8k423iq9l4f4qjj1ia1xc6pkmhwl2mxc46y2n442")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/sirupsen/logrus")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037" +; ,go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037) +; ("go-github-com-stretchr-testify-1.2.2" +; ,go-github-com-stretchr-testify-1.2.2) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://github.com/sirupsen/logrus") +; (synopsis "Logrus") +; (description +; "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. +;") +; (license license:expat))) +; +;(define-public go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee +; (package +; (name "go-github-com-spf13-cobra") +; (version "0.0.2-0.20171109065643-2da4a54c5cee") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/spf13/cobra") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "18qbrp774fx6dyibjcy9snld705gslq6z2sql1biyjahxkm1vpfy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/spf13/cobra")) +; (home-page "https://github.com/spf13/cobra") +; (synopsis "Table of Contents") +; (description +; "Package cobra is a commander providing a simple interface to create powerful modern CLI interfaces. +;In addition to providing an interface, Cobra simultaneously provides a controller to organize your application code. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95 +; (package +; (name "go-github-com-spf13-pflag") +; (version "1.0.1-0.20171106142849-4c012f6dcd95") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/spf13/pflag") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0plmm67lkm25ir0lczwh7hmanyilrs1vxmbp8a0dyr282ji1dqm5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/spf13/pflag")) +; (home-page "https://github.com/spf13/pflag") +; (synopsis "Description") +; (description +; "Package pflag is a drop-in replacement for Go's flag package, implementing +;POSIX/GNU-style --flags. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20201201145000-ef89a241ccb3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0a8myxx2mvdr77a003gpy5jmdzbxbnrf5zppmpl4za4sspxlmwif")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e +; (package +; (name "go-github-com-containerd-continuity") +; (version "0.0.0-20210208174643-50096c924a4e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/continuity") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1drmxbb2l4z12b19dq3vvh1ss7b4z8fq1n5g6c8ln13mjgz6cq48")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/continuity")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3" +; ,go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3) +; ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" +; ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) +; ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" +; ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) +; ("go-github-com-stretchr-testify-1.4.0" +; ,go-github-com-stretchr-testify-1.4.0) +; ("go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95" +; ,go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95) +; ("go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee" +; ,go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee) +; ("go-github-com-sirupsen-logrus-1.7.0" +; ,go-github-com-sirupsen-logrus-1.7.0) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-go-digest-1.0.0" +; ,go-github-com-opencontainers-go-digest-1.0.0) +; ("go-github-com-inconshreveable-mousetrap-1.0.0" +; ,go-github-com-inconshreveable-mousetrap-1.0.0) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0) +; ("go-github-com-dustin-go-humanize-1.0.0" +; ,go-github-com-dustin-go-humanize-1.0.0) +; ("go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898" +; ,go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898))) +; (home-page "https://github.com/containerd/continuity") +; (synopsis "continuity") +; (description +; "This package provides a transport-agnostic, filesystem metadata manifest system") +; (license license:asl2.0))) +; +;(define-public go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible +; (package +; (name "go-github-com-mistifyio-go-zfs") +; (version "2.1.2-0.20190413222219-f784269be439+incompatible") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mistifyio/go-zfs") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0x6ncjaqjm06c615kbwkqbd5wcdg9nmrbl7wm4w185s6kq6l8fpw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mistifyio/go-zfs")) +; (home-page "https://github.com/mistifyio/go-zfs") +; (synopsis "Go Wrapper for ZFS") +; (description +; "Package zfs provides wrappers around the ZFS command line tools. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-zfs-1.0.0 +; (package +; (name "go-github-com-containerd-zfs") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/zfs") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "10shqmcdxlxxi90kwgs5cljz12589yz5cm78aimv9m4cgwiv3wl3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/zfs")) +; (propagated-inputs +; `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible" +; ,go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible) +; ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" +; ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) +; ("go-github-com-containerd-containerd-1.5.0-beta.3" +; ,go-github-com-containerd-containerd-1.5.0-beta.3))) +; (home-page "https://github.com/containerd/zfs") +; (synopsis "ZFS snapshotter plugin") +; (description "ZFS snapshotter plugin for containerd.") +; (license license:asl2.0))) +; +;(define-public go-github-com-microsoft-go-winio-0.4.11 +; (package +; (name "go-github-com-microsoft-go-winio") +; (version "0.4.11") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/microsoft/go-winio") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "14y1gryr3pb3zy09v2g8dh89m363rfd9sch0wgbabh531hfx72vn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/Microsoft/go-winio")) +; (home-page "https://github.com/Microsoft/go-winio") +; (synopsis "go-winio") +; (description +; "This repository contains utilities for efficiently performing Win32 IO operations in +;Go. Currently, this is focused on accessing named pipes and other file handles, and +;for using named pipes as a net transport.") +; (license license:expat))) +; +;(define-public go-github-com-microsoft-hcsshim-0.8.6 +; (package +; (name "go-github-com-microsoft-hcsshim") +; (version "0.8.6") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/microsoft/hcsshim") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "05arx8y4b6rvhjcnwizhc8svzab3ld0njkgj8vijgs27az84z6pw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/Microsoft/hcsshim")) +; (home-page "https://github.com/Microsoft/hcsshim") +; (synopsis "hcsshim") +; (description +; "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") +; (license license:expat))) +; +;(define-public go-github-com-alexflint-go-filemutex-0.0.0-20171022225611-72bdc8eae2ae +; (package +; (name "go-github-com-alexflint-go-filemutex") +; (version "0.0.0-20171022225611-72bdc8eae2ae") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/alexflint/go-filemutex") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "082y6y9zv40q3kaqvsv6fyaw2fc42j0sn9z0dl9rbiz4szixj3c4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/alexflint/go-filemutex")) +; (home-page "https://github.com/alexflint/go-filemutex") +; (synopsis "FileMutex") +; (description +; "FileMutex is similar to @code{sync.RWMutex}, but also synchronizes across processes. +;On Linux, OSX, and other POSIX systems it uses the flock system call. On windows +;it uses the LockFileEx and UnlockFileEx system calls.") +; (license license:expat))) +; +;(define-public go-github-com-buger-jsonparser-0.0.0-20180808090653-f4dd9f5a6b44 +; (package +; (name "go-github-com-buger-jsonparser") +; (version "0.0.0-20180808090653-f4dd9f5a6b44") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/buger/jsonparser") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "12qa2n33s7yz88ywpr3k9kg3b4gm6rqgnv28iyikyxw8h5jascz5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/buger/jsonparser")) +; (home-page "https://github.com/buger/jsonparser") +; (synopsis +; "Alternative JSON parser for Go (10x times faster standard library)") +; (description +; "It does not require you to know the structure of the payload (eg. create structs), and allows accessing fields by providing the path to them. It is up to @strong{10 times faster} than standard @code{encoding/json} package (depending on payload size and usage), @strong{allocates no memory}. See benchmarks below.") +; (license license:expat))) +; +;(define-public go-github-com-containernetworking-cni-0.8.1 +; (package +; (name "go-github-com-containernetworking-cni") +; (version "0.8.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containernetworking/cni") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ydzsiq6kfwjghf5dd4ld2rv3cxgbjq6c1523jxmib1phwf0s75z")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containernetworking/cni")) +; (home-page "https://github.com/containernetworking/cni") +; (synopsis "CNI - the Container Network Interface") +; (description +; "CNI (), a @url{https://cncf.io,Cloud Native Computing Foundation} project, consists of a specification and libraries for writing plugins to configure network interfaces in Linux containers, along with a number of supported plugins. +;CNI concerns itself only with network connectivity of containers and removing allocated resources when the container is deleted. +;Because of this focus, CNI has a wide range of support and the specification is simple to implement.") +; (license license:asl2.0))) +; +;(define-public go-github-com-coreos-go-iptables-0.5.0 +; (package +; (name "go-github-com-coreos-go-iptables") +; (version "0.5.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/coreos/go-iptables") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0syxjad9b3d19sjy7cy7zjpx5bx60yvbhidz8r9cdv43iqadxmp7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/coreos/go-iptables")) +; (home-page "https://github.com/coreos/go-iptables") +; (synopsis "go-iptables") +; (description "Go bindings for iptables utility.") +; (license license:asl2.0))) +; +;(define-public go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c +; (package +; (name "go-github-com-d2g-dhcp4") +; (version "0.0.0-20170904100407-a1d1b6c41b1c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/d2g/dhcp4") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "191hzw6yqzkm042h6miyycq3g0zrhqjhhpl27f8vhwzp4wanasiz")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/d2g/dhcp4")) +; (home-page "https://github.com/d2g/dhcp4") +; (synopsis "DHCP4 - A DHCP library written in Go.") +; (description +; "Warning: This library is still being developed. Function calls will change.") +; (license license:bsd-3))) +; +;(define-public go-github-com-d2g-dhcp4client-1.0.0 +; (package +; (name "go-github-com-d2g-dhcp4client") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/d2g/dhcp4client") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1n4qrn7xsgvnshmddq56hr8g2si5vfmxi0wnp0w71lmdfsxvvx0q")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/d2g/dhcp4client")) +; (home-page "https://github.com/d2g/dhcp4client") +; (synopsis "dhcp4client") +; (description "DHCP Client") +; (license license:mpl2.0))) +; +;(define-public go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5 +; (package +; (name "go-github-com-d2g-dhcp4server") +; (version "0.0.0-20181031114812-7d4a0a7f59a5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/d2g/dhcp4server") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "03ibq32flr74pxfly1yca9qicb6f15xgl159jjg3svgnzfjpblwl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/d2g/dhcp4server")) +; (home-page "https://github.com/d2g/dhcp4server") +; (synopsis "dhcp4server") +; (description "DHCP Server") +; (license license:mpl2.0))) +; +;(define-public go-github-com-d2g-hardwareaddr-0.0.0-20190221164911-e7d9fbe030e4 +; (package +; (name "go-github-com-d2g-hardwareaddr") +; (version "0.0.0-20190221164911-e7d9fbe030e4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/d2g/hardwareaddr") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "09nm5py9xbb9klwhzqkf6786i3b59ynba78xkrv9jx4ari7ibh8q")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/d2g/hardwareaddr")) +; (home-page "https://github.com/d2g/hardwareaddr") +; (synopsis "hardwareaddr") +; (description "Generate Hardware Addresses") +; (license license:mpl2.0))) +; +;(define-public go-github-com-godbus-dbus-0.0.0-20180201030542-885f9cc04c9c +; (package +; (name "go-github-com-godbus-dbus") +; (version "0.0.0-20180201030542-885f9cc04c9c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/godbus/dbus") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0wjpaj4vr5lvpnwc5faf3qizd7zd2v9yq0fm0558wap1hiyqb8x8")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/godbus/dbus")) +; (home-page "https://github.com/godbus/dbus") +; (synopsis "dbus") +; (description +; "Package dbus implements bindings to the D-Bus message bus system. +;") +; (license license:bsd-2))) +; +;(define-public go-github-com-j-keck-arping-0.0.0-20160618110441-2cf9dc699c56 +; (package +; (name "go-github-com-j-keck-arping") +; (version "0.0.0-20160618110441-2cf9dc699c56") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/j-keck/arping") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1bid8mpx3j4546ni0a6q5xyz7hb854g95qnxqmg5jzs9vrcird3c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/j-keck/arping")) +; (home-page "https://github.com/j-keck/arping") +; (synopsis "arping") +; (description +; "Package arping is a native go library to ping a host per arp datagram, or query a host mac address +;") +; (license license:expat))) +; +;(define-public go-github-com-mattn-go-shellwords-1.0.3 +; (package +; (name "go-github-com-mattn-go-shellwords") +; (version "1.0.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mattn/go-shellwords") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1pg7pl25wvpl2dbpyrv9p1r7prnqimxlf6136vn0dfm54j2x4mnr")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mattn/go-shellwords")) +; (home-page "https://github.com/mattn/go-shellwords") +; (synopsis "go-shellwords") +; (description "Parse line as shell words.") +; (license license:expat))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190904154756-749cb33beabd +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190904154756-749cb33beabd") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0dm3257q3rv2kyn5lmqqim2fqg634v6rhrqq4glvbk4wx4l3v337")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-nxadm-tail-1.4.4 +; (package +; (name "go-github-com-nxadm-tail") +; (version "1.4.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/nxadm/tail") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1czmwqii0fc8v3ar5bwqpfanprkxg19waly405zlvcflzvj53wwc")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/nxadm/tail")) +; (propagated-inputs +; `(("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" +; ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) +; ("go-golang-org-x-sys-0.0.0-20190904154756-749cb33beabd" +; ,go-golang-org-x-sys-0.0.0-20190904154756-749cb33beabd) +; ("go-github-com-fsnotify-fsnotify-1.4.7" +; ,go-github-com-fsnotify-fsnotify-1.4.7))) +; (home-page "https://github.com/nxadm/tail") +; (synopsis "tail functionality in Go") +; (description +; "nxadm/tail provides a Go library that emulates the features of the BSD `tail` +;program. The library comes with full support for truncation/move detection as +;it is designed to work with log rotation tools. The library works on all +;operating systems supported by Go, including POSIX systems like Linux and +;*BSD, and MS Windows. Go 1.9 is the oldest compiler release supported. +;") +; (license license:expat))) +; +;(define-public go-github-com-onsi-gomega-1.7.1 +; (package +; (name "go-github-com-onsi-gomega") +; (version "1.7.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/onsi/gomega") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "06p3x0910cdaa64l7d44s728d4j3yhps315dlcvrbjzhljjj7mam")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/onsi/gomega")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.2.4" ,go-gopkg-in-yaml-v2-2.2.4) +; ("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" +; ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) +; ("go-gopkg-in-fsnotify-v1-1.4.7" ,go-gopkg-in-fsnotify-v1-1.4.7) +; ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e" +; ,go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e) +; ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" +; ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) +; ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" +; ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) +; ("go-github-com-onsi-ginkgo-1.6.0" ,go-github-com-onsi-ginkgo-1.6.0) +; ("go-github-com-hpcloud-tail-1.0.0" ,go-github-com-hpcloud-tail-1.0.0) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0) +; ("go-github-com-fsnotify-fsnotify-1.4.7" +; ,go-github-com-fsnotify-fsnotify-1.4.7))) +; (home-page "https://github.com/onsi/gomega") +; (synopsis ": a BDD Testing Framework for Golang") +; (description +; "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20191120155948-bd437916bb0e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1i8x26frmlin55k69k936zd1rp5sqnq14y5ms4rkxbfzhasdm2rx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-onsi-ginkgo-1.12.1 +; (package +; (name "go-github-com-onsi-ginkgo") +; (version "1.12.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/onsi/ginkgo") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0xs9724l2b0bwjwrvw5cs3akxaw0n1j5kyxrb1ggfsdjz0zmjcxh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/onsi/ginkgo")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e" +; ,go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e) +; ("go-github-com-onsi-gomega-1.7.1" ,go-github-com-onsi-gomega-1.7.1) +; ("go-github-com-nxadm-tail-1.4.4" ,go-github-com-nxadm-tail-1.4.4))) +; (home-page "https://github.com/onsi/ginkgo") +; (synopsis "Ginkgo 2.0 Release Candidate is available!") +; (description "Ginkgo is a BDD-style testing framework for Golang +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-net-0.0.0-20201006153459-a7d1128ccaa0 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20201006153459-a7d1128ccaa0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1iqqq7s95b2a29bspfxv68qnby8vwjvy9f8gl2262p6f9hhp21d2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) +; ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" +; ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) +; ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" +; ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-github-com-onsi-gomega-1.10.3 +; (package +; (name "go-github-com-onsi-gomega") +; (version "1.10.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/onsi/gomega") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1jvp5wlny86ncsqak5rz70qfn61y3ajc64w0hrj4840zgh90zb06")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/onsi/gomega")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.3.0" ,go-gopkg-in-yaml-v2-2.3.0) +; ("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" +; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) +; ("go-golang-org-x-net-0.0.0-20201006153459-a7d1128ccaa0" +; ,go-golang-org-x-net-0.0.0-20201006153459-a7d1128ccaa0) +; ("go-github-com-onsi-ginkgo-1.12.1" ,go-github-com-onsi-ginkgo-1.12.1) +; ("go-github-com-golang-protobuf-1.4.2" +; ,go-github-com-golang-protobuf-1.4.2))) +; (home-page "https://github.com/onsi/gomega") +; (synopsis ": a BDD Testing Framework for Golang") +; (description +; "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library. +;") +; (license license:expat))) +; +;(define-public go-github-com-safchain-ethtool-0.0.0-20190326074333-42ed695e3de8 +; (package +; (name "go-github-com-safchain-ethtool") +; (version "0.0.0-20190326074333-42ed695e3de8") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/safchain/ethtool") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0n5hkrzc1bh46nidcssx4539kvcmgj501v3kzh2pljpg27509daj")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/safchain/ethtool")) +; (home-page "https://github.com/safchain/ethtool") +; (synopsis "ethtool go package") +; (description +; "Package ethtool aims to provide a library giving a simple access to the +;Linux SIOCETHTOOL ioctl operations. It can be used to retrieve informations +;from a network device like statistics, driver related informations or +;even the peer of a VETH interface. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-sirupsen-logrus-1.0.6 +; (package +; (name "go-github-com-sirupsen-logrus") +; (version "1.0.6") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/sirupsen/logrus") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "029irw2lsbqi944gdrbkwdw0m2794sqni4g21gsnmz142hbzds8c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/sirupsen/logrus")) +; (home-page "https://github.com/sirupsen/logrus") +; (synopsis "Logrus") +; (description +; "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-sys-0.0.0-20200217220822-9197077df867 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20200217220822-9197077df867") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1270yyiqzlgrsygp2j0qavh4agm4xjv3ljfpk4wgqgmg4ph1lmx1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-vishvananda-netns-0.0.0-20200728191858-db3c7e526aae +; (package +; (name "go-github-com-vishvananda-netns") +; (version "0.0.0-20200728191858-db3c7e526aae") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/vishvananda/netns") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1gx41r06by67q5yyyvjpr0cyqqs2pcksfaqxy0s36cx4vpjn5x9r")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/vishvananda/netns")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20200217220822-9197077df867" +; ,go-golang-org-x-sys-0.0.0-20200217220822-9197077df867))) +; (home-page "https://github.com/vishvananda/netns") +; (synopsis "netns - network namespaces in go") +; (description +; "Package netns allows ultra-simple network namespace handling. NsHandles +;can be retrieved and set. Note that the current namespace is thread +;local so actions that set and reset namespaces should use LockOSThread +;to make sure the namespace doesn't change due to a goroutine switch. +;It is best to close NsHandles when you are done with them. This can be +;accomplished via a `defer ns.Close()` on the handle. Changing namespaces +;requires elevated privileges, so in most cases this code needs to be run +;as root. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-sys-0.0.0-20200728102440-3e129f6d46b1 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20200728102440-3e129f6d46b1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "02wcaghvpysqijiqsiimk52vma7lx99g5kvdid2r1qsf9hmwgvy2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-vishvananda-netlink-1.1.1-0.20201029203352-d40f9887b852 +; (package +; (name "go-github-com-vishvananda-netlink") +; (version "1.1.1-0.20201029203352-d40f9887b852") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/vishvananda/netlink") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1aq13npm7vd153vxrk1vhsg36r2g9hrh21cvk422ssrf57qy2fsj")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/vishvananda/netlink")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20200728102440-3e129f6d46b1" +; ,go-golang-org-x-sys-0.0.0-20200728102440-3e129f6d46b1) +; ("go-github-com-vishvananda-netns-0.0.0-20200728191858-db3c7e526aae" +; ,go-github-com-vishvananda-netns-0.0.0-20200728191858-db3c7e526aae))) +; (home-page "https://github.com/vishvananda/netlink") +; (synopsis "netlink - netlink library for go") +; (description +; "Package netlink provides a simple library for netlink. Netlink is +;the interface a user-space program in linux uses to communicate with +;the kernel. It can be used to add and remove interfaces, set up ip +;addresses and routes, and confiugre ipsec. Netlink communication +;requires elevated privileges, so in most cases this code needs to +;be run as root. The low level primitives for netlink are contained +;in the nl subpackage. This package attempts to provide a high-level +;interface that is loosly modeled on the iproute2 cli. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-sys-0.0.0-20201117170446-d9b008d0a637 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20201117170446-d9b008d0a637") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "06pp1nrhzx6nm6rwwzm0xzf8bs3r1mfsrkclyhlhnr7x5r0a0ppi")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-gopkg-in-airbrake-gobrake-v2-2.0.9 +; (package +; (name "go-gopkg-in-airbrake-gobrake-v2") +; (version "2.0.9") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/airbrake/gobrake.v2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1x06f7n7qlyzqgyz0sdfcidf3w4ldn6zs6qx2mhibggk2z4whcjw")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path +; "gopkg.in/airbrake/gobrake.v2" +; #:unpack-path +; "gopkg.in/airbrake/gobrake.v2")) +; (home-page "https://gopkg.in/airbrake/gobrake.v2") +; (synopsis "Airbrake Golang Notifier") +; (description +; "You can use @url{https://github.com/airbrake/glog,glog fork} to send your logs to Airbrake.") +; (license license:bsd-3))) +; +;(define-public go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2 +; (package +; (name "go-gopkg-in-gemnasium-logrus-airbrake-hook-v2") +; (version "2.1.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/gemnasium/logrus-airbrake-hook.v2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0sbg0dn6cysmf8f2bi209jwl4jnpiwp4rdghnxlzirw3c32ms5y5")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path +; "gopkg.in/gemnasium/logrus-airbrake-hook.v2" +; #:unpack-path +; "gopkg.in/gemnasium/logrus-airbrake-hook.v2")) +; (home-page "https://gopkg.in/gemnasium/logrus-airbrake-hook.v2") +; (synopsis "Airbrake Hook for Logrus") +; (description +; "Use this hook to send your errors to @url{https://airbrake.io/,Airbrake}. +;This hook is using the @url{https://github.com/airbrake/gobrake,official airbrake go package}, and will hit the api V3. +;The hook is synchronous and will send the error for @code{log.Error}, @code{log.Fatal} and @code{log.Panic} levels.") +; (license license:expat))) +; +;(define-public go-github-com-containernetworking-plugins-0.9.1 +; (package +; (name "go-github-com-containernetworking-plugins") +; (version "0.9.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containernetworking/plugins") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "17rafngfa9b0ybs3j4lvjjqdva6jkamhnbb1n0qnv685g0asvqwz")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containernetworking/plugins")) +; (propagated-inputs +; `(("go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2" +; ,go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2) +; ("go-gopkg-in-airbrake-gobrake-v2-2.0.9" +; ,go-gopkg-in-airbrake-gobrake-v2-2.0.9) +; ("go-golang-org-x-sys-0.0.0-20201117170446-d9b008d0a637" +; ,go-golang-org-x-sys-0.0.0-20201117170446-d9b008d0a637) +; ("go-github-com-vishvananda-netlink-1.1.1-0.20201029203352-d40f9887b852" +; ,go-github-com-vishvananda-netlink-1.1.1-0.20201029203352-d40f9887b852) +; ("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0) +; ("go-github-com-sirupsen-logrus-1.0.6" +; ,go-github-com-sirupsen-logrus-1.0.6) +; ("go-github-com-safchain-ethtool-0.0.0-20190326074333-42ed695e3de8" +; ,go-github-com-safchain-ethtool-0.0.0-20190326074333-42ed695e3de8) +; ("go-github-com-onsi-gomega-1.10.3" ,go-github-com-onsi-gomega-1.10.3) +; ("go-github-com-onsi-ginkgo-1.12.1" ,go-github-com-onsi-ginkgo-1.12.1) +; ("go-github-com-mattn-go-shellwords-1.0.3" +; ,go-github-com-mattn-go-shellwords-1.0.3) +; ("go-github-com-j-keck-arping-0.0.0-20160618110441-2cf9dc699c56" +; ,go-github-com-j-keck-arping-0.0.0-20160618110441-2cf9dc699c56) +; ("go-github-com-godbus-dbus-0.0.0-20180201030542-885f9cc04c9c" +; ,go-github-com-godbus-dbus-0.0.0-20180201030542-885f9cc04c9c) +; ("go-github-com-d2g-hardwareaddr-0.0.0-20190221164911-e7d9fbe030e4" +; ,go-github-com-d2g-hardwareaddr-0.0.0-20190221164911-e7d9fbe030e4) +; ("go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5" +; ,go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5) +; ("go-github-com-d2g-dhcp4client-1.0.0" +; ,go-github-com-d2g-dhcp4client-1.0.0) +; ("go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c" +; ,go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c) +; ("go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7" +; ,go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7) +; ("go-github-com-coreos-go-iptables-0.5.0" +; ,go-github-com-coreos-go-iptables-0.5.0) +; ("go-github-com-containernetworking-cni-0.8.1" +; ,go-github-com-containernetworking-cni-0.8.1) +; ("go-github-com-buger-jsonparser-0.0.0-20180808090653-f4dd9f5a6b44" +; ,go-github-com-buger-jsonparser-0.0.0-20180808090653-f4dd9f5a6b44) +; ("go-github-com-alexflint-go-filemutex-0.0.0-20171022225611-72bdc8eae2ae" +; ,go-github-com-alexflint-go-filemutex-0.0.0-20171022225611-72bdc8eae2ae) +; ("go-github-com-microsoft-hcsshim-0.8.6" +; ,go-github-com-microsoft-hcsshim-0.8.6) +; ("go-github-com-microsoft-go-winio-0.4.11" +; ,go-github-com-microsoft-go-winio-0.4.11))) +; (home-page "https://github.com/containernetworking/plugins") +; (synopsis "Plugins") +; (description +; "Some CNI network plugins, maintained by the containernetworking team. For more information, see the @url{https://www.cni.dev,CNI website}.") +; (license license:asl2.0))) +; +;(define-public go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c +; (package +; (name "go-github-com-docker-go-events") +; (version "0.0.0-20190806004212-e31b211e4f1c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/docker/go-events") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "09gm4z43g23isbklabnsnfb87bwf8kjdgvvyi3vfjq2bqdjdg7cl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/docker/go-events")) +; (home-page "https://github.com/docker/go-events") +; (synopsis "Docker Events Package") +; (description +; "The Docker @code{events} package implements a composable event distribution package +;for Go.") +; (license license:asl2.0))) +; +;(define-public go-github-com-prometheus-common-0.6.0 +; (package +; (name "go-github-com-prometheus-common") +; (version "0.6.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/common") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1q16br348117ffycxdwsldb0i39p34miclfa8z93k6vjwnrqbh2l")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/common")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1) +; ("go-gopkg-in-alecthomas-kingpin-v2-2.2.6" +; ,go-gopkg-in-alecthomas-kingpin-v2-2.2.6) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980" +; ,go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980) +; ("go-github-com-sirupsen-logrus-1.2.0" +; ,go-github-com-sirupsen-logrus-1.2.0) +; ("go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90" +; ,go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90) +; ("go-github-com-prometheus-client-golang-1.0.0" +; ,go-github-com-prometheus-client-golang-1.0.0) +; ("go-github-com-pkg-errors-0.8.0" ,go-github-com-pkg-errors-0.8.0) +; ("go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223" +; ,go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223) +; ("go-github-com-matttproud-golang-protobuf-extensions-1.0.1" +; ,go-github-com-matttproud-golang-protobuf-extensions-1.0.1) +; ("go-github-com-julienschmidt-httprouter-1.2.0" +; ,go-github-com-julienschmidt-httprouter-1.2.0) +; ("go-github-com-golang-protobuf-1.3.1" +; ,go-github-com-golang-protobuf-1.3.1) +; ("go-github-com-go-logfmt-logfmt-0.4.0" +; ,go-github-com-go-logfmt-logfmt-0.4.0) +; ("go-github-com-go-kit-kit-0.8.0" ,go-github-com-go-kit-kit-0.8.0))) +; (home-page "https://github.com/prometheus/common") +; (synopsis "Common") +; (description +; "This repository contains Go libraries that are shared across Prometheus +;components and libraries. They are considered internal to Prometheus, without +;any stability guarantees for external usage.") +; (license license:asl2.0))) +; +;(define-public go-github-com-prometheus-procfs-0.0.3 +; (package +; (name "go-github-com-prometheus-procfs") +; (version "0.0.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/procfs") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "18c4m795fwng8f8qa395f3crvamlbk5y5afk8b5rzyisnmjq774y")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/procfs")) +; (propagated-inputs +; `(("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" +; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) +; ("go-github-com-google-go-cmp-0.3.0" +; ,go-github-com-google-go-cmp-0.3.0))) +; (home-page "https://github.com/prometheus/procfs") +; (synopsis "procfs") +; (description +; "Package procfs provides functions to retrieve system, kernel and process +;metrics from the pseudo-filesystem proc. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190801041406-cbf593c0f2f3 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190801041406-cbf593c0f2f3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1zmcmckinhclcwlvznjqvs31aww8jnf6pjm9is0nq8lqlvipg5ls")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-prometheus-client-golang-1.1.0 +; (package +; (name "go-github-com-prometheus-client-golang") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/client_golang") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1r0irxkmfnj6ininb06w6ybknini5lz02idawrbkk2i5lq1qcvvf")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/client_golang")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190801041406-cbf593c0f2f3" +; ,go-golang-org-x-sys-0.0.0-20190801041406-cbf593c0f2f3) +; ("go-github-com-prometheus-procfs-0.0.3" +; ,go-github-com-prometheus-procfs-0.0.3) +; ("go-github-com-prometheus-common-0.6.0" +; ,go-github-com-prometheus-common-0.6.0) +; ("go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90" +; ,go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90) +; ("go-github-com-json-iterator-go-1.1.7" +; ,go-github-com-json-iterator-go-1.1.7) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2) +; ("go-github-com-beorn7-perks-1.0.1" +; ,go-github-com-beorn7-perks-1.0.1))) +; (home-page "https://github.com/prometheus/client_golang") +; (synopsis "Prometheus Go client library") +; (description +; "This is the @url{http://golang.org,Go} client library for +;@url{http://prometheus.io,Prometheus}. It has two separate parts, one for +;instrumenting application code, and one for creating clients that talk to the +;Prometheus HTTP API.") +; (license license:asl2.0))) +; +;(define-public go-github-com-docker-go-metrics-0.0.1 +; (package +; (name "go-github-com-docker-go-metrics") +; (version "0.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/docker/go-metrics") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1b6f1889chmwlsgrqxylnks2jic16j2dqhsdd1dvaklk48ky95ga")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/docker/go-metrics")) +; (propagated-inputs +; `(("go-github-com-prometheus-client-golang-1.1.0" +; ,go-github-com-prometheus-client-golang-1.1.0))) +; (home-page "https://github.com/docker/go-metrics") +; (synopsis "go-metrics") +; (description +; "This package is small wrapper around the prometheus go client to help enforce convention and best practices for metrics collection in Docker projects.") +; (license (list license:asl2.0 license:cc-by-sa4.0)))) +; +;(define-public go-github-com-google-uuid-1.2.0 +; (package +; (name "go-github-com-google-uuid") +; (version "1.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/uuid") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "08wqig98w23cg2ngjijhgm6s0mdayb95awa3cn3bs69lg20gryac")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/uuid")) +; (home-page "https://github.com/google/uuid") +; (synopsis "uuid") +; (description "Package uuid generates and inspects UUIDs. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-hashicorp-errwrap-1.0.0 +; (package +; (name "go-github-com-hashicorp-errwrap") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/errwrap") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0slfb6w3b61xz04r32bi0a1bygc82rjzhqkxj2si2074wynqnr1c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hashicorp/errwrap")) +; (home-page "https://github.com/hashicorp/errwrap") +; (synopsis "errwrap") +; (description +; "Package errwrap implements methods to formalize error wrapping in Go. +;") +; (license license:mpl2.0))) +; +;(define-public go-github-com-hashicorp-go-multierror-1.0.0 +; (package +; (name "go-github-com-hashicorp-go-multierror") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/go-multierror") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "00nyn8llqzbfm8aflr9kwsvpzi4kv8v45c141v88xskxp5xf6z49")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hashicorp/go-multierror")) +; (propagated-inputs +; `(("go-github-com-hashicorp-errwrap-1.0.0" +; ,go-github-com-hashicorp-errwrap-1.0.0))) +; (home-page "https://github.com/hashicorp/go-multierror") +; (synopsis "go-multierror") +; (description +; "@code{go-multierror} is a package for Go that provides a mechanism for +;representing a list of @code{error} values as a single @code{error}.") +; (license license:mpl2.0))) +; +;(define-public go-gopkg-in-yaml-v2-2.3.0 +; (package +; (name "go-gopkg-in-yaml-v2") +; (version "2.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/yaml.v2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1md0hlyd9s6myv3663i9l59y74n4xjazifmmyxn43g86fgkc5lzj")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" +; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) +; (home-page "https://gopkg.in/yaml.v2") +; (synopsis "YAML support for the Go language") +; (description "Package yaml implements YAML support for the Go language. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-imdario-mergo-0.3.12 +; (package +; (name "go-github-com-imdario-mergo") +; (version "0.3.12") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/imdario/mergo") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "15s6807vcm7xq4l6my7rnw1i7x57712jvdidjli5bip79jfaxw90")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/imdario/mergo")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.3.0" ,go-gopkg-in-yaml-v2-2.3.0))) +; (home-page "https://github.com/imdario/mergo") +; (synopsis "Mergo") +; (description +; "This package provides a helper to merge structs and maps in Golang. Useful for configuration default values, avoiding messy if-statements. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-klauspost-compress-1.11.13 +; (package +; (name "go-github-com-klauspost-compress") +; (version "1.11.13") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/klauspost/compress") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19l2rbh6vg0ly4qp2gn5lf39ijggf7asav7lxziikkhjqqb4223j")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/klauspost/compress")) +; (home-page "https://github.com/klauspost/compress") +; (synopsis "compress") +; (description "This package provides various compression algorithms.") +; (license #f))) +; +;(define-public go-github-com-moby-locker-1.0.1 +; (package +; (name "go-github-com-moby-locker") +; (version "1.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/moby/locker") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "07rc2c6h35f9mcy81jp382a030f6xmcifi9n5jnlayybfwxmpjir")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/moby/locker")) +; (home-page "https://github.com/moby/locker") +; (synopsis "Locker") +; (description +; "Package locker provides a mechanism for creating finer-grained locking to help +;free up more global locks to handle other tasks. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-opencontainers-go-digest-1.0.0 +; (package +; (name "go-github-com-opencontainers-go-digest") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/go-digest") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0i5acjajvr6hi9zb7gxwifd8w28y884cv7cx36adj8lngj647xbi")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/go-digest")) +; (home-page "https://github.com/opencontainers/go-digest") +; (synopsis "go-digest") +; (description +; "Package digest provides a generalized type to opaquely represent message +;digests and their operations within the registry. The Digest type is +;designed to serve as a flexible identifier in a content-addressable system. +;More importantly, it provides tools and wrappers to work with +;hash.Hash-based digests with little effort. +;") +; (license (list license:asl2.0 license:cc-by-sa4.0)))) +; +;(define-public go-github-com-opencontainers-image-spec-1.0.1 +; (package +; (name "go-github-com-opencontainers-image-spec") +; (version "1.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/image-spec") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "03dvbj3dln8c55v9gp79mgmz2yi2ws3r08iyz2fk41y3i22iaw1q")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/image-spec")) +; (home-page "https://github.com/opencontainers/image-spec") +; (synopsis "OCI Image Format Specification") +; (description +; "The OCI Image Format project creates and maintains the software shipping container image format spec (OCI Image Format).") +; (license license:asl2.0))) +; +;(define-public go-github-com-checkpoint-restore-go-criu-v5-5.0.0 +; (package +; (name "go-github-com-checkpoint-restore-go-criu-v5") +; (version "5.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/checkpoint-restore/go-criu") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "07dal5a9y43azkkh61jf6s81h7anbl17drkh2mal9mzcsi8wa2z8")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/checkpoint-restore/go-criu/v5")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.23.0" +; ,go-google-golang-org-protobuf-1.23.0) +; ("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" +; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) +; ("go-github-com-golang-protobuf-1.4.3" +; ,go-github-com-golang-protobuf-1.4.3))) +; (home-page "https://github.com/checkpoint-restore/go-criu") +; (synopsis "go-criu -- Go bindings for CRIU") +; (description +; "This repository provides Go bindings for @url{https://criu.org/,CRIU}. The code is based on the Go-based PHaul +;implementation from the CRIU repository. For easier inclusion into other Go projects the +;CRIU Go bindings have been moved to this repository.") +; (license license:asl2.0))) +; +;(define-public go-github-com-kr-pretty-0.2.1 +; (package +; (name "go-github-com-kr-pretty") +; (version "0.2.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kr/pretty") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0vzfz06y9q8gs2nxx0kys0591vzp78k0fvpb8digi5n15h3b25hy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kr/pretty")) +; (propagated-inputs +; `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) +; (home-page "https://github.com/kr/pretty") +; (synopsis #f) +; (description +; "Package pretty provides pretty-printing for Go values. This is +;useful during debugging, to avoid wrapping long output lines in +;the terminal. +;") +; (license license:expat))) +; +;(define-public go-github-com-frankban-quicktest-1.11.3 +; (package +; (name "go-github-com-frankban-quicktest") +; (version "1.11.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/frankban/quicktest") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0d5njmwkfq2809vlimnlvy8ir6kln0c4cgdwr680fwsclpbr43qs")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/frankban/quicktest")) +; (propagated-inputs +; `(("go-github-com-kr-pretty-0.2.1" ,go-github-com-kr-pretty-0.2.1) +; ("go-github-com-google-go-cmp-0.5.4" +; ,go-github-com-google-go-cmp-0.5.4))) +; (home-page "https://github.com/frankban/quicktest") +; (synopsis "quicktest") +; (description +; "Package quicktest provides a collection of Go helpers for writing tests. +;") +; (license license:expat))) +; +;(define-public go-github-com-google-go-cmp-0.5.4 +; (package +; (name "go-github-com-google-go-cmp") +; (version "0.5.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/go-cmp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ld9pwb6l22g75g1zpa691l7q9ki7pjgpcqhwgdfr3va1zisr5ci")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/go-cmp")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" +; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) +; (home-page "https://github.com/google/go-cmp") +; (synopsis "Package for equality of Go values") +; (description +; "This package is intended to be a more powerful and safer alternative to +;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") +; (license license:bsd-3))) +; +;(define-public go-github-com-cilium-ebpf-0.6.2 +; (package +; (name "go-github-com-cilium-ebpf") +; (version "0.6.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/cilium/ebpf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0x64sg0kyc8bbsp75dpv8g2jfmpdldsshf9ni49jh6rgsnnqhpf8")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/cilium/ebpf")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" +; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) +; ("go-github-com-google-go-cmp-0.5.4" +; ,go-github-com-google-go-cmp-0.5.4) +; ("go-github-com-frankban-quicktest-1.11.3" +; ,go-github-com-frankban-quicktest-1.11.3))) +; (home-page "https://github.com/cilium/ebpf") +; (synopsis "eBPF") +; (description "Package ebpf is a toolkit for working with eBPF programs. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20210124154548-22da62e12c0c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "17gp3dl75wq3x7j9z1pqgcyvjhvy9jaln1wbscy57al3whdsjp07")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-containerd-console-1.0.2 +; (package +; (name "go-github-com-containerd-console") +; (version "1.0.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/console") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0rxwgq578hphs2ldx1gg6c9fq1qm8rgqfx3vgi2sbrsmxn6m2438")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/console")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" +; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) +; (home-page "https://github.com/containerd/console") +; (synopsis "console") +; (description +; "Golang package for dealing with consoles. Light on deps and a simple API.") +; (license license:asl2.0))) +; +;(define-public go-github-com-coreos-go-systemd-v22-22.3.2 +; (package +; (name "go-github-com-coreos-go-systemd-v22") +; (version "22.3.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/coreos/go-systemd") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ndi86b8va84ha93njqgafypz4di7yxfd5r5kf1r0s3y3ghcjajq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/coreos/go-systemd/v22")) +; (propagated-inputs +; `(("go-github-com-godbus-dbus-v5-5.0.4" +; ,go-github-com-godbus-dbus-v5-5.0.4))) +; (home-page "https://github.com/coreos/go-systemd") +; (synopsis "go-systemd") +; (description "Go bindings to systemd. The project has several packages:") +; (license license:asl2.0))) +; +;(define-public go-github-com-cyphar-filepath-securejoin-0.2.2 +; (package +; (name "go-github-com-cyphar-filepath-securejoin") +; (version "0.2.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/cyphar/filepath-securejoin") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0id32zjb92wm569m29nfrzz5mw9z1glr3klayr6j134pp4h1sgq4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/cyphar/filepath-securejoin")) +; (home-page "https://github.com/cyphar/filepath-securejoin") +; (synopsis #f) +; (description +; "Package securejoin is an implementation of the hopefully-soon-to-be-included +;SecureJoin helper that is meant to be part of the \"path/filepath\" package. +;The purpose of this project is to provide a PoC implementation to make the +;SecureJoin proposal (@url{https://github.com/golang/go/issues/20126,https://github.com/golang/go/issues/20126}) more +;tangible. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-docker-go-units-0.4.0 +; (package +; (name "go-github-com-docker-go-units") +; (version "0.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/docker/go-units") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0k8gja8ql4pqg5rzmqvka42vjfs6rzablak87whcnqba6qxpimvz")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/docker/go-units")) +; (home-page "https://github.com/docker/go-units") +; (synopsis "Introduction") +; (description +; "Package units provides helper function to parse and print size and time units +;in human-readable format. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-godbus-dbus-v5-5.0.4 +; (package +; (name "go-github-com-godbus-dbus-v5") +; (version "5.0.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/godbus/dbus") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0znax8kskb5gmp5fj75w56bc9p7b22wrdswzlh4d04sprlc471yi")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/godbus/dbus/v5")) +; (home-page "https://github.com/godbus/dbus") +; (synopsis "dbus") +; (description +; "Package dbus implements bindings to the D-Bus message bus system. +;") +; (license license:bsd-2))) +; +;(define-public go-github-com-mrunalp-fileutils-0.5.0 +; (package +; (name "go-github-com-mrunalp-fileutils") +; (version "0.5.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mrunalp/fileutils") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1zrs959gf4zgi6ijwkdn4dcqk0svfblpaikkqy63q30rqz4swm0x")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mrunalp/fileutils")) +; (home-page "https://github.com/mrunalp/fileutils") +; (synopsis "fileutils") +; (description "Collection of utilities for file manipulation in golang") +; (license license:asl2.0))) +; +;(define-public go-github-com-seccomp-libseccomp-golang-0.9.1 +; (package +; (name "go-github-com-seccomp-libseccomp-golang") +; (version "0.9.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/seccomp/libseccomp-golang") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "022c8prvxz0shrifams7lq4xidvkcqg9xi87wjjcpmbikqi72cna")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/seccomp/libseccomp-golang")) +; (home-page "https://github.com/seccomp/libseccomp-golang") +; (synopsis #f) +; (description +; "Package seccomp provides bindings for libseccomp, a library wrapping the Linux +;seccomp syscall. Seccomp enables an application to restrict system call use +;for itself and its children. +;") +; (license license:bsd-2))) +; +;(define-public go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635 +; (package +; (name "go-github-com-syndtr-gocapability") +; (version "0.0.0-20200815063812-42c35b437635") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/syndtr/gocapability") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "00zi0k190ydlm9drnafvj9p4cf6axm858wr71pbmq1p3r94iqws4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/syndtr/gocapability")) +; (home-page "https://github.com/syndtr/gocapability") +; (synopsis #f) +; (description #f) +; (license license:bsd-2))) +; +;(define-public go-github-com-vishvananda-netns-0.0.0-20191106174202-0a2b9b5464df +; (package +; (name "go-github-com-vishvananda-netns") +; (version "0.0.0-20191106174202-0a2b9b5464df") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/vishvananda/netns") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1k1zb7pzc4r4wicq7ncspf6zsvq298lvpsq963ibj813shg657xw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/vishvananda/netns")) +; (home-page "https://github.com/vishvananda/netns") +; (synopsis "netns - network namespaces in go") +; (description +; "Package netns allows ultra-simple network namespace handling. NsHandles +;can be retrieved and set. Note that the current namespace is thread +;local so actions that set and reset namespaces should use LockOSThread +;to make sure the namespace doesn't change due to a goroutine switch. +;It is best to close NsHandles when you are done with them. This can be +;accomplished via a `defer ns.Close()` on the handle. Changing namespaces +;requires elevated privileges, so in most cases this code needs to be run +;as root. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190606203320-7fc4e5ec1444 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190606203320-7fc4e5ec1444") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "18rv3m1kksv3758aqiaac2l6j334g0bapic6ibsj999agcn7y9fg")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-vishvananda-netlink-1.1.0 +; (package +; (name "go-github-com-vishvananda-netlink") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/vishvananda/netlink") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1vhl30p1gx636a088ls4h6a0l8jjyfvz79fr5w0qzdrg4qg9h08h")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/vishvananda/netlink")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190606203320-7fc4e5ec1444" +; ,go-golang-org-x-sys-0.0.0-20190606203320-7fc4e5ec1444) +; ("go-github-com-vishvananda-netns-0.0.0-20191106174202-0a2b9b5464df" +; ,go-github-com-vishvananda-netns-0.0.0-20191106174202-0a2b9b5464df))) +; (home-page "https://github.com/vishvananda/netlink") +; (synopsis "netlink - netlink library for go") +; (description +; "Package netlink provides a simple library for netlink. Netlink is +;the interface a user-space program in linux uses to communicate with +;the kernel. It can be used to add and remove interfaces, set up ip +;addresses and routes, and confiugre ipsec. Netlink communication +;requires elevated privileges, so in most cases this code needs to +;be run as root. The low level primitives for netlink are contained +;in the nl subpackage. This package attempts to provide a high-level +;interface that is loosly modeled on the iproute2 cli. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20201224014010-6772e930b67b") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0zlr39dxbg0fxfdrc20c4x0pw43n9kz749ssml97cdzqy116p5qa")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) +; ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" +; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) +; ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" +; ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-1.26.0-rc.1 +; (package +; (name "go-google-golang-org-protobuf") +; (version "1.26.0-rc.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1m2jp247qcnix42jncn0q7pwrjgbhiqllb1115hfsz40xfnfhp8j")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.5.5" +; ,go-github-com-google-go-cmp-0.5.5))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.5.0 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.5.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1craaxv34g4g8q3yrv6pr28fx9ihnk7hj5gnbmxcrhcp78423lnf")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.26.0-rc.1" +; ,go-google-golang-org-protobuf-1.26.0-rc.1) +; ("go-github-com-google-go-cmp-0.5.5" +; ,go-github-com-google-go-cmp-0.5.5))) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-github-com-google-go-cmp-0.5.5 +; (package +; (name "go-github-com-google-go-cmp") +; (version "0.5.5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/go-cmp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "12fmkdhyv5d4is8s57k78j097zb0phlgnrkqc03agiszxlid69x7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/go-cmp")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" +; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) +; (home-page "https://github.com/google/go-cmp") +; (synopsis "Package for equality of Go values") +; (description +; "This package is intended to be a more powerful and safer alternative to +;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-1.26.0 +; (package +; (name "go-google-golang-org-protobuf") +; (version "1.26.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0xq6phaps6d0vcv13ga59gzj4306l0ki9kikhmb52h6pq0iwfqlz")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.5.5" +; ,go-github-com-google-go-cmp-0.5.5) +; ("go-github-com-golang-protobuf-1.5.0" +; ,go-github-com-golang-protobuf-1.5.0))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-github-com-opencontainers-runc-1.0.2 +; (package +; (name "go-github-com-opencontainers-runc") +; (version "1.0.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/runc") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1bpckghjah0rczciw1a1ab8z718lb2d3k4mjm4zb45lpm3njmrcp")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/runc")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.26.0" +; ,go-google-golang-org-protobuf-1.26.0) +; ("go-golang-org-x-sys-0.0.0-20210426230700-d19ff857e887" +; ,go-golang-org-x-sys-0.0.0-20210426230700-d19ff857e887) +; ("go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b" +; ,go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b) +; ("go-github-com-vishvananda-netlink-1.1.0" +; ,go-github-com-vishvananda-netlink-1.1.0) +; ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) +; ("go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635" +; ,go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635) +; ("go-github-com-sirupsen-logrus-1.8.1" +; ,go-github-com-sirupsen-logrus-1.8.1) +; ("go-github-com-seccomp-libseccomp-golang-0.9.1" +; ,go-github-com-seccomp-libseccomp-golang-0.9.1) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-selinux-1.8.2" +; ,go-github-com-opencontainers-selinux-1.8.2) +; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417" +; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417) +; ("go-github-com-mrunalp-fileutils-0.5.0" +; ,go-github-com-mrunalp-fileutils-0.5.0) +; ("go-github-com-moby-sys-mountinfo-0.4.1" +; ,go-github-com-moby-sys-mountinfo-0.4.1) +; ("go-github-com-godbus-dbus-v5-5.0.4" +; ,go-github-com-godbus-dbus-v5-5.0.4) +; ("go-github-com-docker-go-units-0.4.0" +; ,go-github-com-docker-go-units-0.4.0) +; ("go-github-com-cyphar-filepath-securejoin-0.2.2" +; ,go-github-com-cyphar-filepath-securejoin-0.2.2) +; ("go-github-com-coreos-go-systemd-v22-22.3.2" +; ,go-github-com-coreos-go-systemd-v22-22.3.2) +; ("go-github-com-containerd-console-1.0.2" +; ,go-github-com-containerd-console-1.0.2) +; ("go-github-com-cilium-ebpf-0.6.2" ,go-github-com-cilium-ebpf-0.6.2) +; ("go-github-com-checkpoint-restore-go-criu-v5-5.0.0" +; ,go-github-com-checkpoint-restore-go-criu-v5-5.0.0) +; ("go-github-com-bits-and-blooms-bitset-1.2.0" +; ,go-github-com-bits-and-blooms-bitset-1.2.0))) +; (home-page "https://github.com/opencontainers/runc") +; (synopsis "runc") +; (description +; "@code{runc} is a CLI tool for spawning and running containers according to the OCI specification.") +; (license license:asl2.0))) +; +;(define-public go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417 +; (package +; (name "go-github-com-opencontainers-runtime-spec") +; (version "1.0.3-0.20210326190908-1c3f411f0417") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/runtime-spec") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1azk8z41ga8af35c966f06vrq9y9hwz6mkm59r3py5qaamzim3qq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) +; (home-page "https://github.com/opencontainers/runtime-spec") +; (synopsis "Open Container Initiative Runtime Specification") +; (description +; "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") +; (license license:asl2.0))) +; +;(define-public go-github-com-bits-and-blooms-bitset-1.2.0 +; (package +; (name "go-github-com-bits-and-blooms-bitset") +; (version "1.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/bits-and-blooms/bitset") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0r9f7lvz6znl7yr6njg77m8hj472yhdshf1qaybwyw7j8as6c4r3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/bits-and-blooms/bitset")) +; (home-page "https://github.com/bits-and-blooms/bitset") +; (synopsis "bitset") +; (description +; "Package bitset implements bitsets, a mapping +;between non-negative integers and boolean values. It should be more +;efficient than map[uint] bool. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20191115151921-52ab43148777") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1kakxbqrb1w2vwg7r1896z68qcx2lfvimsl8cs2niiipbgpi6imx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-opencontainers-selinux-1.8.2 +; (package +; (name "go-github-com-opencontainers-selinux") +; (version "1.8.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/selinux") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1dl1h8nzpyhsfki1dcjphm5h4n52qwilahyl6qlnwgzcc76pwizq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/selinux")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777" +; ,go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-bits-and-blooms-bitset-1.2.0" +; ,go-github-com-bits-and-blooms-bitset-1.2.0))) +; (home-page "https://github.com/opencontainers/selinux") +; (synopsis "selinux") +; (description "Common SELinux package used across the container ecosystem.") +; (license license:asl2.0))) +; +;(define-public go-github-com-pelletier-go-toml-1.8.1 +; (package +; (name "go-github-com-pelletier-go-toml") +; (version "1.8.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/pelletier/go-toml") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1pi1r9ds0vxjza4qrbk52y98wxrzh1ghwzc9c2v1w6i02pdwdcz9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/pelletier/go-toml")) +; (propagated-inputs +; `(("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://github.com/pelletier/go-toml") +; (synopsis "go-toml") +; (description "Package toml is a TOML parser and manipulation library. +;") +; (license #f))) +; +;(define-public go-github-com-satori-go-uuid-1.2.0 +; (package +; (name "go-github-com-satori-go-uuid") +; (version "1.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/satori/go.uuid") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1j4s5pfg2ldm35y8ls8jah4dya2grfnx2drb4jcbjsyrp4cm5yfb")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/satori/go.uuid")) +; (home-page "https://github.com/satori/go.uuid") +; (synopsis "UUID package for Go language") +; (description +; "Package uuid provides implementation of Universally Unique Identifier (UUID). +;Supported versions are 1, 3, 4 and 5 (as specified in @url{https://rfc-editor.org/rfc/rfc4122.html,RFC 4122}) and +;version 2 (as specified in DCE 1.1). +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20191026070338-33540a1f6037") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0fjcv0vzvi6za0b4xmnk3932pr9f9gczzf03y0kgq3ry9rqg169y")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-sirupsen-logrus-1.8.1 +; (package +; (name "go-github-com-sirupsen-logrus") +; (version "1.8.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/sirupsen/logrus") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0rvqzic2zz7fpxyizmqxwmhv1m52ii9bgxnqa6km8wsa0l08wh42")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/sirupsen/logrus")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037" +; ,go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037) +; ("go-github-com-stretchr-testify-1.2.2" +; ,go-github-com-stretchr-testify-1.2.2) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://github.com/sirupsen/logrus") +; (synopsis "Logrus") +; (description +; "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. +;") +; (license license:expat))) +; +;(define-public go-github-com-tchap-go-patricia-2.2.6+incompatible +; (package +; (name "go-github-com-tchap-go-patricia") +; (version "2.2.6+incompatible") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/tchap/go-patricia") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1yy1s3pnll52iyzphwi50drvz36lx628vn3xfy5ld29fxqngrckb")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/tchap/go-patricia")) +; (home-page "https://github.com/tchap/go-patricia") +; (synopsis "go-patricia") +; (description +; "@strong{Documentation}: @url{http://godoc.org/github.com/tchap/go-patricia/patricia,GoDoc} +;@strong{Test Coverage}: @url{https://coveralls.io/r/tchap/go-patricia,(img (@ (src https://coveralls.io/repos/tchap/go-patricia/badge.png) (alt CoverageStatus)))}") +; (license license:expat))) +; +;(define-public go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20201119102817-f84b799fce68") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1dvhqian5byzkcg1bnqzygqa6ccc6krc2q7j12pp1vhl3y7znnsg")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1 +; (package +; (name "go-golang-org-x-term") +; (version "0.0.0-20201126162022-7de9c90e9dd1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/term") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ba252xmv6qsvf1w1gcy98mngrj0vd4inbjw0lsklqvva65nljna")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/term")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" +; ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) +; (home-page "https://golang.org/x/term") +; (synopsis "Go terminal/console support") +; (description +; "Package term provides support functions for dealing with terminals, as +;commonly found on UNIX systems. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20210226172049-e18ecbb05110") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1vlq8mdscp7yfaa1lmyv03y5m4c2d67ydg2q1i6smkrxghn3zn3q")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) +; ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" +; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) +; ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" +; ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a +; (package +; (name "go-golang-org-x-sync") +; (version "0.0.0-20201207232520-09787c993a3a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sync") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1nv4mwi9njkkyc7lwmxrjr8ggfh2cf1c67a9bq85dnss81vpj61y")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sync")) +; (home-page "https://golang.org/x/sync") +; (synopsis "Go Sync") +; (description +; "This repository provides Go concurrency primitives in addition to the +;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20210426230700-d19ff857e887 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20210426230700-d19ff857e887") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "12m35a34dfm99agcv2ln9zvvyczigaxfwqbzqirvwn1lw4784whn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-gotest-tools-v3-3.0.3 +; (package +; (name "go-gotest-tools-v3") +; (version "3.0.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/gotestyourself/gotest.tools") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1h316233n33lkfhbak8ljdj5i8df6hcwwm48n200svf22x3d95ww")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gotest.tools/v3" #:unpack-path "gotest.tools/v3")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20190624222133-a101b041ded4" +; ,go-golang-org-x-tools-0.0.0-20190624222133-a101b041ded4) +; ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) +; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0))) +; (home-page "https://gotest.tools/v3") +; (synopsis "gotest.tools") +; (description +; "Package gotesttools is a collection of packages to augment `testing` and +;support common patterns. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-coreos-go-oidc-2.1.0+incompatible +; (package +; (name "go-github-com-coreos-go-oidc") +; (version "2.1.0+incompatible") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/coreos/go-oidc") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0y9vxack1whvxy766jrc6xhh2rfkvnznwxi356si2kabzjv2lp6h")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/coreos/go-oidc")) +; (home-page "https://github.com/coreos/go-oidc") +; (synopsis "go-oidc") +; (description +; "Package oidc implements OpenID Connect client logic for the golang.org/x/oauth2 package. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-coreos-go-semver-0.3.0 +; (package +; (name "go-github-com-coreos-go-semver") +; (version "0.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/coreos/go-semver") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0770h1mpig2j5sbiha3abnwaw8p6dg9i87r8pc7cf6m4kwml3sc9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/coreos/go-semver")) +; (home-page "https://github.com/coreos/go-semver") +; (synopsis "go-semver - Semantic Versioning Library") +; (description +; "go-semver is a @url{http://semver.org/,semantic versioning} library for Go. It lets you parse +;and compare two semantic version strings.") +; (license license:asl2.0))) +; +;(define-public go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e +; (package +; (name "go-github-com-coreos-go-systemd") +; (version "0.0.0-20190321100706-95778dfbb74e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/coreos/go-systemd") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1s3bg9p78wkixn2bqb2p23wbsqfg949ml6crw2b498s71mwh8rcf")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/coreos/go-systemd")) +; (home-page "https://github.com/coreos/go-systemd") +; (synopsis "go-systemd") +; (description "Go bindings to systemd. The project has several packages:") +; (license license:asl2.0))) +; +;(define-public go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f +; (package +; (name "go-github-com-coreos-pkg") +; (version "0.0.0-20180928190104-399ea9e2e55f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/coreos/pkg") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0nxbn0m7lr4dg0yrwnvlkfiyg3ndv8vdpssjx7b714nivpc6ar0y")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/coreos/pkg")) +; (home-page "https://github.com/coreos/pkg") +; (synopsis #f) +; (description "a collection of go utility packages") +; (license license:asl2.0))) +; +;(define-public go-github-com-dustin-go-humanize-1.0.0 +; (package +; (name "go-github-com-dustin-go-humanize") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/dustin/go-humanize") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1kqf1kavdyvjk7f8kx62pnm7fbypn9z1vbf8v2qdh3y7z7a0cbl3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/dustin/go-humanize")) +; (home-page "https://github.com/dustin/go-humanize") +; (synopsis "Humane Units") +; (description +; "Package humanize converts boring ugly numbers to human-friendly strings and back. +;") +; (license license:expat))) +; +;(define-public go-github-com-emicklei-go-restful-2.9.5+incompatible +; (package +; (name "go-github-com-emicklei-go-restful") +; (version "2.9.5+incompatible") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/emicklei/go-restful") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0258y7q2krih98zznc4jsym9mf689afn6nsnsif1jhshrj653k36")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/emicklei/go-restful")) +; (home-page "https://github.com/emicklei/go-restful") +; (synopsis "go-restful") +; (description +; "Package restful , a lean package for creating REST-style WebServices without magic. +;") +; (license license:expat))) +; +;(define-public go-github-com-gorilla-websocket-1.4.2 +; (package +; (name "go-github-com-gorilla-websocket") +; (version "1.4.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/gorilla/websocket") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0mkm9w6kjkrlzab5wh8p4qxkc0icqawjbvr01d2nk6ykylrln40s")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/gorilla/websocket")) +; (home-page "https://github.com/gorilla/websocket") +; (synopsis "Gorilla WebSocket") +; (description +; "Package websocket implements the WebSocket protocol defined in @url{https://rfc-editor.org/rfc/rfc6455.html,RFC 6455}. +;") +; (license license:bsd-2))) +; +;(define-public go-github-com-mailru-easyjson-0.7.0 +; (package +; (name "go-github-com-mailru-easyjson") +; (version "0.7.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mailru/easyjson") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "13zv5fvjp3nr65lhqhiw6i6mlmqvyls882rlmcas0ab35alsxni8")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mailru/easyjson")) +; (home-page "https://github.com/mailru/easyjson") +; (synopsis "easyjson") +; (description +; "Package easyjson contains marshaler/unmarshaler interfaces and helper functions. +;") +; (license license:expat))) +; +;(define-public go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822 +; (package +; (name "go-github-com-munnerz-goautoneg") +; (version "0.0.0-20191010083416-a7dc8b61c822") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/munnerz/goautoneg") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1m4v6bw6yf1g0kvpc46isjp0qfhx2y8gnvlnyjf637jy64613mgg")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/munnerz/goautoneg")) +; (home-page "https://github.com/munnerz/goautoneg") +; (synopsis #f) +; (description #f) +; (license license:bsd-3))) +; +;(define-public go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021 +; (package +; (name "go-github-com-pquerna-cachecontrol") +; (version "0.0.0-20171018203845-0dec1b30a021") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/pquerna/cachecontrol") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "14yyfhrv60rvb983rqm7s916nwvn9kcmbvnrcna2md0s3mkzs3yh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/pquerna/cachecontrol")) +; (home-page "https://github.com/pquerna/cachecontrol") +; (synopsis "cachecontrol: HTTP Caching Parser and Interpretation") +; (description +; "Package cachecontrol implements the logic for HTTP Caching +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5 +; (package +; (name "go-github-com-tmc-grpc-websocket-proxy") +; (version "0.0.0-20190109142713-0ad062ec5ee5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/tmc/grpc-websocket-proxy") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1anw4v9wspnw9xf2z5r9w0sszwjklyanl0l85wgg6nxak9gnrqp4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/tmc/grpc-websocket-proxy")) +; (home-page "https://github.com/tmc/grpc-websocket-proxy") +; (synopsis "grpc-websocket-proxy") +; (description +; "Wrap your grpc-gateway mux with this helper to expose streaming endpoints over websockets.") +; (license license:expat))) +; +;(define-public go-golang-org-x-sys-0.0.0-20200202164722-d101bd2416d5 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20200202164722-d101bd2416d5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ksxf37b0ym21n8j29m3wgbaiw1kcjw3hgf88kipc1ry2j13l98p")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-go-etcd-io-bbolt-1.3.5 +; (package +; (name "go-go-etcd-io-bbolt") +; (version "1.3.5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/etcd-io/bbolt") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1h64gipvcg7060byv5wjlf524kqwj12p3v08kfh4ygv46vpm8p2r")))) +; (build-system go-build-system) +; (arguments '(#:import-path "go.etcd.io/bbolt")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20200202164722-d101bd2416d5" +; ,go-golang-org-x-sys-0.0.0-20200202164722-d101bd2416d5))) +; (home-page "https://go.etcd.io/bbolt") +; (synopsis "bbolt") +; (description +; "package bbolt implements a low-level key/value store in pure Go. It supports +;fully serializable transactions, ACID semantics, and lock-free MVCC with +;multiple readers and a single writer. Bolt can be used for projects that +;want a simple data store without the need to add large dependencies such as +;Postgres or MySQL. +;") +; (license license:expat))) +; +;(define-public go-github-com-bgentry-speakeasy-0.1.0 +; (package +; (name "go-github-com-bgentry-speakeasy") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/bgentry/speakeasy") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "02dfrj0wyphd3db9zn2mixqxwiz1ivnyc5xc7gkz58l5l27nzp8s")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/bgentry/speakeasy")) +; (home-page "https://github.com/bgentry/speakeasy") +; (synopsis "Speakeasy") +; (description +; "This package provides cross-platform Go (#golang) helpers for taking user input +;from the terminal while not echoing the input back (similar to @code{getpasswd}). The +;package uses syscalls to avoid any dependence on cgo, and is therefore +;compatible with cross-compiling.") +; (license license:expat))) +; +;(define-public go-github-com-cockroachdb-datadriven-0.0.0-20190809214429-80d97fb3cbaa +; (package +; (name "go-github-com-cockroachdb-datadriven") +; (version "0.0.0-20190809214429-80d97fb3cbaa") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/cockroachdb/datadriven") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0rvavka9zhri6r50n8fy98247fl5vycb1hffjrhshsicjv1frmlp")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/cockroachdb/datadriven")) +; (home-page "https://github.com/cockroachdb/datadriven") +; (synopsis "Data-Driven Tests for Go") +; (description +; "This repository implements an extension of @url{https://github.com/golang/go/wiki/TableDrivenTests,Table-Driven Testing}. Instead of +;building and iterating over a table in the test code, the input is further +;separated into files (or inline strings). For certain classes of tests, this +;can significantly reduce the friction involved in writing and reading these +;tests.") +; (license license:asl2.0))) +; +;(define-public go-github-com-coreos-go-semver-0.2.0 +; (package +; (name "go-github-com-coreos-go-semver") +; (version "0.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/coreos/go-semver") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1gghi5bnqj50hfxhqc1cxmynqmh2yk9ii7ab9gsm75y5cp94ymk0")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/coreos/go-semver")) +; (home-page "https://github.com/coreos/go-semver") +; (synopsis "go-semver - Semantic Versioning Library") +; (description +; "go-semver is a @url{http://semver.org/,semantic versioning} library for Go. It lets you parse +;and compare two semantic version strings.") +; (license license:asl2.0))) +; +;(define-public go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7 +; (package +; (name "go-github-com-coreos-go-systemd") +; (version "0.0.0-20180511133405-39ca1b05acc7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/coreos/go-systemd") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1kzqrrzqspa5qm7kwslxl3m16lqzns23c24rv474ajzwmj3ixmx1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/coreos/go-systemd")) +; (home-page "https://github.com/coreos/go-systemd") +; (synopsis "go-systemd") +; (description "Go bindings to systemd. The project has several packages:") +; (license license:asl2.0))) +; +;(define-public go-github-com-coreos-pkg-0.0.0-20160727233714-3ac0863d7acf +; (package +; (name "go-github-com-coreos-pkg") +; (version "0.0.0-20160727233714-3ac0863d7acf") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/coreos/pkg") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0l5ans1ls2gknkrnhymgc0zbgg5nqjbjbqc51r611adcr0m6gg8l")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/coreos/pkg")) +; (home-page "https://github.com/coreos/pkg") +; (synopsis #f) +; (description "a collection of go utility packages") +; (license license:asl2.0))) +; +;(define-public go-github-com-creack-pty-1.1.7 +; (package +; (name "go-github-com-creack-pty") +; (version "1.1.7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/creack/pty") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1plwwlk1i9b80zv8zdplvv81shfyc9gf0flydnydsh5sr3ib5vrc")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/creack/pty")) +; (home-page "https://github.com/creack/pty") +; (synopsis "pty") +; (description +; "Package pty provides functions for working with Unix terminals. +;") +; (license license:expat))) +; +;(define-public go-github-com-dgrijalva-jwt-go-3.2.0+incompatible +; (package +; (name "go-github-com-dgrijalva-jwt-go") +; (version "3.2.0+incompatible") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/dgrijalva/jwt-go") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "08m27vlms74pfy5z79w67f9lk9zkx6a9jd68k3c4msxy75ry36mp")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/dgrijalva/jwt-go")) +; (home-page "https://github.com/dgrijalva/jwt-go") +; (synopsis "jwt-go") +; (description +; "Package jwt is a Go implementation of JSON Web Tokens: @url{http://self-issued.info/docs/draft-jones-json-web-token.html,http://self-issued.info/docs/draft-jones-json-web-token.html} +;") +; (license license:expat))) +; +;(define-public go-github-com-dustin-go-humanize-0.0.0-20171111073723-bb3d318650d4 +; (package +; (name "go-github-com-dustin-go-humanize") +; (version "0.0.0-20171111073723-bb3d318650d4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/dustin/go-humanize") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1lqd8ix3cb164j5iazjby2jpa6bdsflhy0h9mi4yldvvcvrc194c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/dustin/go-humanize")) +; (home-page "https://github.com/dustin/go-humanize") +; (synopsis "Humane Units") +; (description +; "Package humanize converts boring ugly numbers to human-friendly strings and back. +;") +; (license license:expat))) +; +;(define-public go-github-com-fatih-color-1.7.0 +; (package +; (name "go-github-com-fatih-color") +; (version "1.7.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/fatih/color") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0v8msvg38r8d1iiq2i5r4xyfx0invhc941kjrsg5gzwvagv55inv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/fatih/color")) +; (home-page "https://github.com/fatih/color") +; (synopsis "color") +; (description +; "Package color is an ANSI color package to output colorized or SGR defined +;output to the standard output. The API can be used in several way, pick one +;that suits you. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-tools-0.0.0-20180221164845-07fd8470d635 +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20180221164845-07fd8470d635") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "193g0a1zxb9ikph7r2klc6rdqxqzfmmr8d5bcibyhsm2l63s17mx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-github-com-kisielk-errcheck-1.1.0 +; (package +; (name "go-github-com-kisielk-errcheck") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kisielk/errcheck") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19vd4rxmqbk5lpiav3pf7df3yjlz0l0dwx9mn0gjq5f998iyhy6y")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kisielk/errcheck")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20180221164845-07fd8470d635" +; ,go-golang-org-x-tools-0.0.0-20180221164845-07fd8470d635) +; ("go-github-com-kisielk-gotool-1.0.0" +; ,go-github-com-kisielk-gotool-1.0.0))) +; (home-page "https://github.com/kisielk/errcheck") +; (synopsis "errcheck") +; (description +; "errcheck is a program for checking for unchecked errors in go programs.") +; (license license:expat))) +; +;(define-public go-github-com-gogo-protobuf-1.2.1 +; (package +; (name "go-github-com-gogo-protobuf") +; (version "1.2.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/gogo/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "06yqa6h0kw3gr5pc3qmas7f7435a96zf7iw7p0l00r2hqf6fqq6m")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/gogo/protobuf")) +; (propagated-inputs +; `(("go-github-com-kisielk-errcheck-1.1.0" +; ,go-github-com-kisielk-errcheck-1.1.0))) +; (home-page "https://github.com/gogo/protobuf") +; (synopsis "Protocol Buffers for Go with Gadgets") +; (description +; "gogoprotobuf is a fork of @url{https://github.com/golang/protobuf,golang/protobuf} with extra code generation features.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-groupcache-0.0.0-20160516000752-02826c3e7903 +; (package +; (name "go-github-com-golang-groupcache") +; (version "0.0.0-20160516000752-02826c3e7903") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/groupcache") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0w46bsllddfij66nrg8jbfjsr54birvfww8a2fj9fmgyig5syn2x")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/groupcache")) +; (home-page "https://github.com/golang/groupcache") +; (synopsis "groupcache") +; (description +; "Package groupcache provides a data loading mechanism with caching +;and de-duplication that works across a set of peer processes. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-google-btree-1.0.0 +; (package +; (name "go-github-com-google-btree") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/btree") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ba430m9fbnagacp57krgidsyrgp3ycw5r7dj71brgp5r52g82p6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/btree")) +; (home-page "https://github.com/google/btree") +; (synopsis "BTree implementation for Go") +; (description +; "Package btree implements in-memory B-Trees of arbitrary degree. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-google-uuid-1.0.0 +; (package +; (name "go-github-com-google-uuid") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/uuid") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1922bjrnx66692dm0rrc1ckmznsaqx920ww4jzsds3xzrwf15mqv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/uuid")) +; (home-page "https://github.com/google/uuid") +; (synopsis "uuid") +; (description "Package uuid generates and inspects UUIDs. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-gorilla-websocket-0.0.0-20170926233335-4201258b820c +; (package +; (name "go-github-com-gorilla-websocket") +; (version "0.0.0-20170926233335-4201258b820c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/gorilla/websocket") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1kpdg3m46kp15ixl9ahhchhadyiblz0qpcxzylp8jhffc1rnxjb7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/gorilla/websocket")) +; (home-page "https://github.com/gorilla/websocket") +; (synopsis "Gorilla WebSocket") +; (description +; "Package websocket implements the WebSocket protocol defined in @url{https://rfc-editor.org/rfc/rfc6455.html,RFC 6455}. +;") +; (license license:bsd-2))) +; +;(define-public go-github-com-grpc-ecosystem-go-grpc-middleware-1.0.1-0.20190118093823-f849b5445de4 +; (package +; (name "go-github-com-grpc-ecosystem-go-grpc-middleware") +; (version "1.0.1-0.20190118093823-f849b5445de4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc-ecosystem/go-grpc-middleware") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0hscypgj0nd1407jp6y4qrnrr0mrhc4wgxz9b3mj1cs3pkvi61vc")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/grpc-ecosystem/go-grpc-middleware")) +; (home-page "https://github.com/grpc-ecosystem/go-grpc-middleware") +; (synopsis "Go gRPC Middleware") +; (description +; "`grpc_middleware` is a collection of gRPC middleware packages: interceptors, helpers and tools. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0 +; (package +; (name "go-github-com-grpc-ecosystem-go-grpc-prometheus") +; (version "1.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc-ecosystem/go-grpc-prometheus") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1lzk54h7np32b3acidg1ggbn8ppbnns0m71gcg9d1qkkdh8zrijl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/grpc-ecosystem/go-grpc-prometheus")) +; (home-page "https://github.com/grpc-ecosystem/go-grpc-prometheus") +; (synopsis "Go gRPC Interceptors for Prometheus monitoring") +; (description +; "@url{https://prometheus.io/,Prometheus} monitoring for your @url{https://github.com/grpc/grpc-go,gRPC Go} servers and clients.") +; (license license:asl2.0))) +; +;(define-public go-github-com-ghodss-yaml-1.0.0 +; (package +; (name "go-github-com-ghodss-yaml") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/ghodss/yaml") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0skwmimpy7hlh7pva2slpcplnm912rp3igs98xnqmn859kwa5v8g")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/ghodss/yaml")) +; (home-page "https://github.com/ghodss/yaml") +; (synopsis "YAML marshaling and unmarshaling support for Go") +; (description +; "Copyright 2013 The Go Authors. All rights reserved. +;Use of this source code is governed by a BSD-style +;license that can be found in the LICENSE file. +;") +; (license #f))) +; +;(define-public go-github-com-rogpeppe-fastuuid-0.0.0-20150106093220-6724a57986af +; (package +; (name "go-github-com-rogpeppe-fastuuid") +; (version "0.0.0-20150106093220-6724a57986af") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/rogpeppe/fastuuid") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "12s65phfx6hxj4v0b5kj8akgrbf5mxpa101fyzw03h6hld1f70cz")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/rogpeppe/fastuuid")) +; (home-page "https://github.com/rogpeppe/fastuuid") +; (synopsis "fastuuid") +; (description +; "Package fastuuid provides fast UUID generation of 192 bit +;universally unique identifiers. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20181107165924-66b7b1311ac8") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "00ny4r2bbj6rz939iy9g699acqydq7rfi6r6awn25w9i2dld9m13")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20181220203305-927f97764cc3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0np7b766gb92vbm514yhdl7cjmqvn0dxdxskd84aas2ri1fkpgw5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-gopkg-in-resty-v1-1.12.0 +; (package +; (name "go-gopkg-in-resty-v1") +; (version "1.12.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/resty.v1") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "062mn735rqzhha5ag07z4gz08hxzrfm2yx067jfmaaxmb6797lmp")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/resty.v1" #:unpack-path "gopkg.in/resty.v1")) +; (propagated-inputs +; `(("go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3" +; ,go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3))) +; (home-page "https://gopkg.in/resty.v1") +; (synopsis "News") +; (description +; "Package resty provides Simple HTTP and REST client library for Go. +;") +; (license license:expat))) +; +;(define-public go-gopkg-in-yaml-v2-2.0.0-20170812160011-eb3733d160e7 +; (package +; (name "go-gopkg-in-yaml-v2") +; (version "2.0.0-20170812160011-eb3733d160e7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/yaml.v2") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1srhvcaa9db3a6xj29mkjr5kg33y71pclrlx4vcwz5m1lgb5c7q6")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) +; (home-page "https://gopkg.in/yaml.v2") +; (synopsis "YAML support for the Go language") +; (description "Package yaml implements YAML support for the Go language. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-grpc-ecosystem-grpc-gateway-1.9.5 +; (package +; (name "go-github-com-grpc-ecosystem-grpc-gateway") +; (version "1.9.5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc-ecosystem/grpc-gateway") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0acpbxa1i1bxcpkclkcif2macbcfrlywb58vly5pzwsj261mg58a")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/grpc-ecosystem/grpc-gateway")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.0.0-20170812160011-eb3733d160e7" +; ,go-gopkg-in-yaml-v2-2.0.0-20170812160011-eb3733d160e7) +; ("go-gopkg-in-resty-v1-1.12.0" ,go-gopkg-in-resty-v1-1.12.0) +; ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" +; ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) +; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) +; ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" +; ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) +; ("go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8" +; ,go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8) +; ("go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3" +; ,go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3) +; ("go-github-com-rogpeppe-fastuuid-0.0.0-20150106093220-6724a57986af" +; ,go-github-com-rogpeppe-fastuuid-0.0.0-20150106093220-6724a57986af) +; ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-ghodss-yaml-1.0.0" ,go-github-com-ghodss-yaml-1.0.0))) +; (home-page "https://github.com/grpc-ecosystem/grpc-gateway") +; (synopsis "grpc-gateway") +; (description +; "The grpc-gateway is a plugin of the Google protocol buffers compiler +;@url{https://github.com/protocolbuffers/protobuf,protoc}. +;It reads protobuf service definitions and generates a reverse-proxy server which +;translates a RESTful HTTP API into gRPC. This server is generated according to the +;@url{https://github.com/googleapis/googleapis/raw/master/google/api/http.proto#L46,(code google.api.http)} +;annotations in your service definitions.") +; (license license:bsd-3))) +; +;(define-public go-github-com-inconshreveable-mousetrap-1.0.0 +; (package +; (name "go-github-com-inconshreveable-mousetrap") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/inconshreveable/mousetrap") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1mn0kg48xkd74brf48qf5hzp0bc6g8cf5a77w895rl3qnlpfw152")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/inconshreveable/mousetrap")) +; (home-page "https://github.com/inconshreveable/mousetrap") +; (synopsis "mousetrap") +; (description "mousetrap is a tiny library that answers a single question.") +; (license license:asl2.0))) +; +;(define-public go-github-com-jonboulle-clockwork-0.1.0 +; (package +; (name "go-github-com-jonboulle-clockwork") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/jonboulle/clockwork") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1pqxhsdavbp1n5grgyx2j6ylvql2fzn2cvpsgkc8li69dil7sibl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/jonboulle/clockwork")) +; (home-page "https://github.com/jonboulle/clockwork") +; (synopsis "clockwork") +; (description +; "Replace uses of the @code{time} package with the @code{clockwork.Clock} interface instead.") +; (license license:asl2.0))) +; +;(define-public go-github-com-json-iterator-go-1.1.7 +; (package +; (name "go-github-com-json-iterator-go") +; (version "1.1.7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/json-iterator/go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0n79p4s67zl5zprxv7diayw3vavnmmfqkmd6snz0i9bxp825dsyz")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/json-iterator/go")) +; (propagated-inputs +; `(("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0) +; ("go-github-com-modern-go-reflect2-0.0.0-20180701023420-4b7aa43c6742" +; ,go-github-com-modern-go-reflect2-0.0.0-20180701023420-4b7aa43c6742) +; ("go-github-com-modern-go-concurrent-0.0.0-20180228061459-e0a39a4cb421" +; ,go-github-com-modern-go-concurrent-0.0.0-20180228061459-e0a39a4cb421) +; ("go-github-com-google-gofuzz-1.0.0" +; ,go-github-com-google-gofuzz-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://github.com/json-iterator/go") +; (synopsis "Benchmark") +; (description +; "Package jsoniter implements encoding and decoding of JSON as defined in +;@url{https://rfc-editor.org/rfc/rfc4627.html,RFC 4627} and provides interfaces with identical syntax of standard lib encoding/json. +;Converting from encoding/json to jsoniter is no more than replacing the package with jsoniter +;and variable type declarations (if any). +;jsoniter interfaces gives 100% compatibility with code using standard lib. +;") +; (license license:expat))) +; +;(define-public go-github-com-mattn-go-colorable-0.0.9 +; (package +; (name "go-github-com-mattn-go-colorable") +; (version "0.0.9") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mattn/go-colorable") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1nwjmsppsjicr7anq8na6md7b1z84l9ppnlr045hhxjvbkqwalvx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mattn/go-colorable")) +; (home-page "https://github.com/mattn/go-colorable") +; (synopsis "go-colorable") +; (description "Colorable writer for windows.") +; (license license:expat))) +; +;(define-public go-github-com-mattn-go-isatty-0.0.4 +; (package +; (name "go-github-com-mattn-go-isatty") +; (version "0.0.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mattn/go-isatty") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0zs92j2cqaw9j8qx1sdxpv3ap0rgbs0vrvi72m40mg8aa36gd39w")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mattn/go-isatty")) +; (home-page "https://github.com/mattn/go-isatty") +; (synopsis "go-isatty") +; (description "Package isatty implements interface to isatty +;") +; (license license:expat))) +; +;(define-public go-github-com-mattn-go-runewidth-0.0.2 +; (package +; (name "go-github-com-mattn-go-runewidth") +; (version "0.0.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mattn/go-runewidth") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0vkrfrz3fzn5n6ix4k8s0cg0b448459sldq8bp4riavsxm932jzb")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mattn/go-runewidth")) +; (home-page "https://github.com/mattn/go-runewidth") +; (synopsis "go-runewidth") +; (description +; "This package provides functions to get fixed width of the character or string.") +; (license license:expat))) +; +;(define-public go-github-com-olekukonko-tablewriter-0.0.0-20170122224234-a0225b3f23b5 +; (package +; (name "go-github-com-olekukonko-tablewriter") +; (version "0.0.0-20170122224234-a0225b3f23b5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/olekukonko/tablewriter") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0bp9r6xzy6d3p7l2hjmvr25y3rp3p8c9xv1agkllkksm45ng6681")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/olekukonko/tablewriter")) +; (home-page "https://github.com/olekukonko/tablewriter") +; (synopsis "ASCII Table Writer") +; (description "Create & Generate text based table +;") +; (license license:expat))) +; +;(define-public go-github-com-soheilhy-cmux-0.1.4 +; (package +; (name "go-github-com-soheilhy-cmux") +; (version "0.1.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/soheilhy/cmux") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1f736g68d9vwlyfb6g0fxkr0r875369xafk30cz8kaq5niaqwv0h")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/soheilhy/cmux")) +; (home-page "https://github.com/soheilhy/cmux") +; (synopsis "cmux: Connection Mux") +; (description +; "Package cmux is a library to multiplex network connections based on +;their payload. Using cmux, you can serve different protocols from the +;same listener. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-spf13-cobra-0.0.3 +; (package +; (name "go-github-com-spf13-cobra") +; (version "0.0.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/spf13/cobra") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1q1nsx05svyv9fv3fy6xv6gs9ffimkyzsfm49flvl3wnvf1ncrkd")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/spf13/cobra")) +; (home-page "https://github.com/spf13/cobra") +; (synopsis "Table of Contents") +; (description +; "Package cobra is a commander providing a simple interface to create powerful modern CLI interfaces. +;In addition to providing an interface, Cobra simultaneously provides a controller to organize your application code. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-spf13-pflag-1.0.1 +; (package +; (name "go-github-com-spf13-pflag") +; (version "1.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/spf13/pflag") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0nr4mdpfhhk94hq4ymn5b2sxc47b29p1akxd8b0hx4dvdybmipb5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/spf13/pflag")) +; (home-page "https://github.com/spf13/pflag") +; (synopsis "Description") +; (description +; "Package pflag is a drop-in replacement for Go's flag package, implementing +;POSIX/GNU-style --flags. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-tmc-grpc-websocket-proxy-0.0.0-20170815181823-89b8d40f7ca8 +; (package +; (name "go-github-com-tmc-grpc-websocket-proxy") +; (version "0.0.0-20170815181823-89b8d40f7ca8") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/tmc/grpc-websocket-proxy") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1bg6m0cycy5sww175zkbnhi9lvzb08iicc8xka8klrgaa9mc5nsk")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/tmc/grpc-websocket-proxy")) +; (home-page "https://github.com/tmc/grpc-websocket-proxy") +; (synopsis "grpc-websocket-proxy") +; (description +; "Wrap your grpc-gateway mux with this helper to expose streaming endpoints over websockets.") +; (license license:expat))) +; +;(define-public go-github-com-urfave-cli-1.20.0 +; (package +; (name "go-github-com-urfave-cli") +; (version "1.20.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/urfave/cli") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0y6f4sbzkiiwrxbl15biivj8c7qwxnvm3zl2dd3mw4wzg4x10ygj")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/urfave/cli")) +; (home-page "https://github.com/urfave/cli") +; (synopsis "cli") +; (description +; "Package cli provides a minimal framework for creating and organizing command line +;Go applications. cli is designed to be easy to understand and write, the most simple +;cli application can be written as follows: +;") +; (license license:expat))) +; +;(define-public go-github-com-xiang90-probing-0.0.0-20190116061207-43a291ad63a2 +; (package +; (name "go-github-com-xiang90-probing") +; (version "0.0.0-20190116061207-43a291ad63a2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/xiang90/probing") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1z22ms16j5j42775mf31isanwx2pwr1d8wqw8006dczjv36qnz5i")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/xiang90/probing")) +; (home-page "https://github.com/xiang90/probing") +; (synopsis "Getting Started") +; (description "We first need to serve the probing HTTP handler.") +; (license license:expat))) +; +;(define-public go-go-etcd-io-bbolt-1.3.3 +; (package +; (name "go-go-etcd-io-bbolt") +; (version "1.3.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/etcd-io/bbolt") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0dn0zngks9xiz0rrrb3911f73ghl64z84jsmzai2yfmzqr7cdkqc")))) +; (build-system go-build-system) +; (arguments '(#:import-path "go.etcd.io/bbolt")) +; (home-page "https://go.etcd.io/bbolt") +; (synopsis "bbolt") +; (description +; "package bbolt implements a low-level key/value store in pure Go. It supports +;fully serializable transactions, ACID semantics, and lock-free MVCC with +;multiple readers and a single writer. Bolt can be used for projects that +;want a simple data store without the need to add large dependencies such as +;Postgres or MySQL. +;") +; (license license:expat))) +; +;(define-public go-go-uber-org-atomic-1.3.2 +; (package +; (name "go-go-uber-org-atomic") +; (version "1.3.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/uber-go/atomic") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "11pzvjys5ddjjgrv94pgk9pnip9yyb54z7idf33zk7p7xylpnsv6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "go.uber.org/atomic")) +; (home-page "https://go.uber.org/atomic") +; (synopsis "atomic") +; (description +; "Package atomic provides simple wrappers around numerics to enforce atomic +;access. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-net-0.0.0-20190813141303-74dc4d7220e7 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190813141303-74dc4d7220e7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0563yswwqknxx2gsvl0qikn0lmwalilbng8i12iw4d3v40n23s0l")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190826190057-c7b8b68b1456 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190826190057-c7b8b68b1456") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0lqnnrx5prrvkinnhgyvzzhcyvi8x5w54rlp336xjhpslkgqn132")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-time-0.0.0-20180412165947-fbb02b2291d2 +; (package +; (name "go-golang-org-x-time") +; (version "0.0.0-20180412165947-fbb02b2291d2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/time") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0jjqcv6rzihlgg4i797q80g1f6ch5diz2kxqh6488gwkb6nds4h4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/time")) +; (home-page "https://golang.org/x/time") +; (synopsis "Go Time") +; (description "This repository provides supplementary Go time packages.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-grpc-1.26.0 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.26.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1qsb2mcswpp3vd7i9gfvz4a3ypdwk2svhhn09nyywgb1vvw80krv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" +; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-github-com-google-go-cmp-0.2.0" +; ,go-github-com-google-go-cmp-0.2.0) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2) +; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" +; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) +; ("go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473" +; ,go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-gopkg-in-cheggaaa-pb-v1-1.0.25 +; (package +; (name "go-gopkg-in-cheggaaa-pb-v1") +; (version "1.0.25") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/cheggaaa/pb.v1") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0vxqiw6f3xyv0zy3g4lksf8za0z8i0hvfpw92hqimsy84f79j3dp")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path +; "gopkg.in/cheggaaa/pb.v1" +; #:unpack-path +; "gopkg.in/cheggaaa/pb.v1")) +; (home-page "https://gopkg.in/cheggaaa/pb.v1") +; (synopsis "Terminal progress bar for Go") +; (description "Simple console progress bars +;") +; (license license:bsd-3))) +; +;(define-public go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489 +; (package +; (name "go-go-etcd-io-etcd") +; (version "0.5.0-alpha.5.0.20200910180754-dd1b699fc489") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/etcd-io/etcd") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "11zkvkq7ipqi0n8y05zgn8lf7qm59xdk75x7jbxj5sflx38yfa0k")))) +; (build-system go-build-system) +; (arguments '(#:import-path "go.etcd.io/etcd")) +; (propagated-inputs +; `(("go-sigs-k8s-io-yaml-1.1.0" ,go-sigs-k8s-io-yaml-1.1.0) +; ("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" +; ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) +; ("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) +; ("go-gopkg-in-cheggaaa-pb-v1-1.0.25" +; ,go-gopkg-in-cheggaaa-pb-v1-1.0.25) +; ("go-google-golang-org-grpc-1.26.0" ,go-google-golang-org-grpc-1.26.0) +; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" +; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) +; ("go-golang-org-x-time-0.0.0-20180412165947-fbb02b2291d2" +; ,go-golang-org-x-time-0.0.0-20180412165947-fbb02b2291d2) +; ("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) +; ("go-golang-org-x-sys-0.0.0-20190826190057-c7b8b68b1456" +; ,go-golang-org-x-sys-0.0.0-20190826190057-c7b8b68b1456) +; ("go-golang-org-x-net-0.0.0-20190813141303-74dc4d7220e7" +; ,go-golang-org-x-net-0.0.0-20190813141303-74dc4d7220e7) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2) +; ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) +; ("go-go-uber-org-multierr-1.1.0" ,go-go-uber-org-multierr-1.1.0) +; ("go-go-uber-org-atomic-1.3.2" ,go-go-uber-org-atomic-1.3.2) +; ("go-go-etcd-io-bbolt-1.3.3" ,go-go-etcd-io-bbolt-1.3.3) +; ("go-github-com-xiang90-probing-0.0.0-20190116061207-43a291ad63a2" +; ,go-github-com-xiang90-probing-0.0.0-20190116061207-43a291ad63a2) +; ("go-github-com-urfave-cli-1.20.0" ,go-github-com-urfave-cli-1.20.0) +; ("go-github-com-tmc-grpc-websocket-proxy-0.0.0-20170815181823-89b8d40f7ca8" +; ,go-github-com-tmc-grpc-websocket-proxy-0.0.0-20170815181823-89b8d40f7ca8) +; ("go-github-com-spf13-pflag-1.0.1" ,go-github-com-spf13-pflag-1.0.1) +; ("go-github-com-spf13-cobra-0.0.3" ,go-github-com-spf13-cobra-0.0.3) +; ("go-github-com-soheilhy-cmux-0.1.4" +; ,go-github-com-soheilhy-cmux-0.1.4) +; ("go-github-com-sirupsen-logrus-1.4.2" +; ,go-github-com-sirupsen-logrus-1.4.2) +; ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" +; ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) +; ("go-github-com-prometheus-client-golang-1.0.0" +; ,go-github-com-prometheus-client-golang-1.0.0) +; ("go-github-com-olekukonko-tablewriter-0.0.0-20170122224234-a0225b3f23b5" +; ,go-github-com-olekukonko-tablewriter-0.0.0-20170122224234-a0225b3f23b5) +; ("go-github-com-modern-go-reflect2-1.0.1" +; ,go-github-com-modern-go-reflect2-1.0.1) +; ("go-github-com-mattn-go-runewidth-0.0.2" +; ,go-github-com-mattn-go-runewidth-0.0.2) +; ("go-github-com-mattn-go-isatty-0.0.4" +; ,go-github-com-mattn-go-isatty-0.0.4) +; ("go-github-com-mattn-go-colorable-0.0.9" +; ,go-github-com-mattn-go-colorable-0.0.9) +; ("go-github-com-json-iterator-go-1.1.7" +; ,go-github-com-json-iterator-go-1.1.7) +; ("go-github-com-jonboulle-clockwork-0.1.0" +; ,go-github-com-jonboulle-clockwork-0.1.0) +; ("go-github-com-inconshreveable-mousetrap-1.0.0" +; ,go-github-com-inconshreveable-mousetrap-1.0.0) +; ("go-github-com-grpc-ecosystem-grpc-gateway-1.9.5" +; ,go-github-com-grpc-ecosystem-grpc-gateway-1.9.5) +; ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" +; ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) +; ("go-github-com-grpc-ecosystem-go-grpc-middleware-1.0.1-0.20190118093823-f849b5445de4" +; ,go-github-com-grpc-ecosystem-go-grpc-middleware-1.0.1-0.20190118093823-f849b5445de4) +; ("go-github-com-gorilla-websocket-0.0.0-20170926233335-4201258b820c" +; ,go-github-com-gorilla-websocket-0.0.0-20170926233335-4201258b820c) +; ("go-github-com-google-uuid-1.0.0" ,go-github-com-google-uuid-1.0.0) +; ("go-github-com-google-btree-1.0.0" ,go-github-com-google-btree-1.0.0) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2) +; ("go-github-com-golang-groupcache-0.0.0-20160516000752-02826c3e7903" +; ,go-github-com-golang-groupcache-0.0.0-20160516000752-02826c3e7903) +; ("go-github-com-gogo-protobuf-1.2.1" +; ,go-github-com-gogo-protobuf-1.2.1) +; ("go-github-com-fatih-color-1.7.0" ,go-github-com-fatih-color-1.7.0) +; ("go-github-com-dustin-go-humanize-0.0.0-20171111073723-bb3d318650d4" +; ,go-github-com-dustin-go-humanize-0.0.0-20171111073723-bb3d318650d4) +; ("go-github-com-dgrijalva-jwt-go-3.2.0+incompatible" +; ,go-github-com-dgrijalva-jwt-go-3.2.0+incompatible) +; ("go-github-com-creack-pty-1.1.7" ,go-github-com-creack-pty-1.1.7) +; ("go-github-com-coreos-pkg-0.0.0-20160727233714-3ac0863d7acf" +; ,go-github-com-coreos-pkg-0.0.0-20160727233714-3ac0863d7acf) +; ("go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7" +; ,go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7) +; ("go-github-com-coreos-go-semver-0.2.0" +; ,go-github-com-coreos-go-semver-0.2.0) +; ("go-github-com-cockroachdb-datadriven-0.0.0-20190809214429-80d97fb3cbaa" +; ,go-github-com-cockroachdb-datadriven-0.0.0-20190809214429-80d97fb3cbaa) +; ("go-github-com-bgentry-speakeasy-0.1.0" +; ,go-github-com-bgentry-speakeasy-0.1.0))) +; (home-page "https://go.etcd.io/etcd") +; (synopsis "etcd") +; (description +; "Package main is a simple wrapper of the real etcd entrypoint package +;(located at github.com/coreos/etcd/etcdmain) to ensure that etcd is still +;\"go getable\"; e.g. `go get github.com/coreos/etcd` works as expected and +;builds a binary in $GOBIN/etcd +;") +; (license license:asl2.0))) +; +;(define-public go-gopkg-in-natefinch-lumberjack-v2-2.0.0 +; (package +; (name "go-gopkg-in-natefinch-lumberjack-v2") +; (version "2.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/natefinch/lumberjack.v2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1m2sxypk7p805jvc68padvylyx5v7cwkh5klnnxxr0340kgspf08")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path +; "gopkg.in/natefinch/lumberjack.v2" +; #:unpack-path +; "gopkg.in/natefinch/lumberjack.v2")) +; (home-page "https://gopkg.in/natefinch/lumberjack.v2") +; (synopsis "lumberjack") +; (description "Package lumberjack provides a rolling logger. +;") +; (license license:expat))) +; +;(define-public go-gopkg-in-square-go-jose-v2-2.2.2 +; (package +; (name "go-gopkg-in-square-go-jose-v2") +; (version "2.2.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/square/go-jose.v2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1cpvfqw7pw8m8wfj8nda4kam0z48q3gp6b9a3a0wr90zv9ldszbv")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path +; "gopkg.in/square/go-jose.v2" +; #:unpack-path +; "gopkg.in/square/go-jose.v2")) +; (home-page "https://gopkg.in/square/go-jose.v2") +; (synopsis "Go JOSE") +; (description +; "Package jose aims to provide an implementation of the Javascript Object Signing +;and Encryption set of standards. It implements encryption and signing based on +;the JSON Web Encryption and JSON Web Signature standards, with optional JSON +;Web Token support available in a sub-package. The library supports both the +;compact and full serialization formats, and has optional support for multiple +;recipients. +;") +; (license license:asl2.0))) +; +;(define-public go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.15 +; (package +; (name "go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client") +; (version "0.0.15") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes-sigs/apiserver-network-proxy") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "00ad9yjr3g1pj118xy063z7rnydkilqmvz9xf89vdva2kjqd7fal")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path +; "sigs.k8s.io/apiserver-network-proxy/konnectivity-client")) +; (propagated-inputs +; `(("go-k8s-io-klog-v2-2.0.0" ,go-k8s-io-klog-v2-2.0.0) +; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) +; ("go-github-com-golang-protobuf-1.4.0" +; ,go-github-com-golang-protobuf-1.4.0))) +; (home-page +; "https://sigs.k8s.io/apiserver-network-proxy/konnectivity-client") +; (synopsis #f) +; (description #f) +; (license license:asl2.0))) +; +;(define-public go-k8s-io-apiserver-0.20.6 +; (package +; (name "go-k8s-io-apiserver") +; (version "0.20.6") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes/apiserver") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0b53aw2cp9i2v5kg1m2s5kwkz7525ii8vs1g7d8yc2j980aar9y3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "k8s.io/apiserver")) +; (propagated-inputs +; `(("go-k8s-io-component-base-0.20.6" ,go-k8s-io-component-base-0.20.6) +; ("go-k8s-io-client-go-0.20.6" ,go-k8s-io-client-go-0.20.6) +; ("go-k8s-io-apimachinery-0.20.6" ,go-k8s-io-apimachinery-0.20.6) +; ("go-k8s-io-api-0.20.6" ,go-k8s-io-api-0.20.6) +; ("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) +; ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.3" +; ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.3) +; ("go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.15" +; ,go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.15) +; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" +; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) +; ("go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd" +; ,go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd) +; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) +; ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) +; ("go-gopkg-in-square-go-jose-v2-2.2.2" +; ,go-gopkg-in-square-go-jose-v2-2.2.2) +; ("go-gopkg-in-natefinch-lumberjack-v2-2.0.0" +; ,go-gopkg-in-natefinch-lumberjack-v2-2.0.0) +; ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) +; ("go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a" +; ,go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a) +; ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" +; ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) +; ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" +; ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) +; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" +; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) +; ("go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0" +; ,go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0) +; ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) +; ("go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489" +; ,go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489) +; ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) +; ("go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5" +; ,go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) +; ("go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021" +; ,go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822" +; ,go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822) +; ("go-github-com-mailru-easyjson-0.7.0" +; ,go-github-com-mailru-easyjson-0.7.0) +; ("go-github-com-hashicorp-golang-lru-0.5.1" +; ,go-github-com-hashicorp-golang-lru-0.5.1) +; ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" +; ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) +; ("go-github-com-gorilla-websocket-1.4.2" +; ,go-github-com-gorilla-websocket-1.4.2) +; ("go-github-com-googleapis-gnostic-0.4.1" +; ,go-github-com-googleapis-gnostic-0.4.1) +; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) +; ("go-github-com-google-gofuzz-1.1.0" +; ,go-github-com-google-gofuzz-1.1.0) +; ("go-github-com-google-go-cmp-0.5.2" +; ,go-github-com-google-go-cmp-0.5.2) +; ("go-github-com-gogo-protobuf-1.3.2" +; ,go-github-com-gogo-protobuf-1.3.2) +; ("go-github-com-go-openapi-spec-0.19.3" +; ,go-github-com-go-openapi-spec-0.19.3) +; ("go-github-com-evanphx-json-patch-4.9.0+incompatible" +; ,go-github-com-evanphx-json-patch-4.9.0+incompatible) +; ("go-github-com-emicklei-go-restful-2.9.5+incompatible" +; ,go-github-com-emicklei-go-restful-2.9.5+incompatible) +; ("go-github-com-dustin-go-humanize-1.0.0" +; ,go-github-com-dustin-go-humanize-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1) +; ("go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f" +; ,go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f) +; ("go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e" +; ,go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e) +; ("go-github-com-coreos-go-semver-0.3.0" +; ,go-github-com-coreos-go-semver-0.3.0) +; ("go-github-com-coreos-go-oidc-2.1.0+incompatible" +; ,go-github-com-coreos-go-oidc-2.1.0+incompatible))) +; (home-page "https://k8s.io/apiserver") +; (synopsis "apiserver") +; (description +; "Generic library for building a Kubernetes aggregated API server.") +; (license license:asl2.0))) +; +;(define-public go-github-com-blang-semver-3.5.1+incompatible +; (package +; (name "go-github-com-blang-semver") +; (version "3.5.1+incompatible") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/blang/semver") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "13ws259bwcibkclbr82ilhk6zadm63kxklxhk12wayklj8ghhsmy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/blang/semver")) +; (home-page "https://github.com/blang/semver") +; (synopsis "semver for golang") +; (description +; "semver is a @url{http://semver.org/,Semantic Versioning} library written in golang. It fully covers spec version @code{2.0.0}.") +; (license license:expat))) +; +;(define-public go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369 +; (package +; (name "go-github-com-matttproud-golang-protobuf-extensions") +; (version "1.0.2-0.20181231171920-c182affec369") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/matttproud/golang_protobuf_extensions") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1xqsf9vpcrd4hp95rl6kgmjvkv1df4aicfw4l5vfcxcwxknfx2xs")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "github.com/matttproud/golang_protobuf_extensions")) +; (propagated-inputs +; `(("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" +; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0))) +; (home-page "https://github.com/matttproud/golang_protobuf_extensions") +; (synopsis "Overview") +; (description +; "This repository provides various Protocol Buffer extensions for the Go +;language (golang), namely support for record length-delimited message +;streaming.") +; (license license:asl2.0))) +; +;(define-public go-github-com-azure-go-ansiterm-0.0.0-20170929234023-d6e3b3328b78 +; (package +; (name "go-github-com-azure-go-ansiterm") +; (version "0.0.0-20170929234023-d6e3b3328b78") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/Azure/go-ansiterm") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "010khrkhkf9cxlvvb6ncqv4c1qcdmpbz9jn38g4fxf4xsma8xx1q")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/Azure/go-ansiterm")) +; (home-page "https://github.com/Azure/go-ansiterm") +; (synopsis "go-ansiterm") +; (description +; "This is a cross platform Ansi Terminal Emulation library. It reads a stream of Ansi characters and produces the appropriate function calls. The results of the function calls are platform dependent.") +; (license license:expat))) +; +;(define-public go-gotest-tools-2.2.0+incompatible +; (package +; (name "go-gotest-tools") +; (version "2.2.0+incompatible") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/gotestyourself/gotest.tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0yif3gdyckmf8i54jq0xn00kflla5rhib9sarw66ngnbl7bn9kyl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "gotest.tools")) +; (home-page "https://gotest.tools") +; (synopsis "gotest.tools") +; (description +; "Package gotesttools is a collection of packages to augment `testing` and +;support common patterns. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-spf13-pflag-1.0.3 +; (package +; (name "go-github-com-spf13-pflag") +; (version "1.0.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/spf13/pflag") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1cj3cjm7d3zk0mf1xdybh0jywkbbw7a6yr3y22x9sis31scprswd")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/spf13/pflag")) +; (home-page "https://github.com/spf13/pflag") +; (synopsis "Description") +; (description +; "Package pflag is a drop-in replacement for Go's flag package, implementing +;POSIX/GNU-style --flags. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20190624222133-a101b041ded4 +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20190624222133-a101b041ded4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1pm50dybm5wixjjspvfpafjmiy81b1zp08h13gxc5cylrfgncrfl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" +; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-gotest-tools-v3-3.0.2 +; (package +; (name "go-gotest-tools-v3") +; (version "3.0.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/gotestyourself/gotest.tools") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0cap2aq2wphnbkkzkck5zdjxb64q3jqxfwpkgqys7279rbr8cvjm")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gotest.tools/v3" #:unpack-path "gotest.tools/v3")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20190624222133-a101b041ded4" +; ,go-golang-org-x-tools-0.0.0-20190624222133-a101b041ded4) +; ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) +; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) +; ("go-github-com-google-go-cmp-0.3.0" +; ,go-github-com-google-go-cmp-0.3.0))) +; (home-page "https://gotest.tools/v3") +; (synopsis "gotest.tools") +; (description +; "Package gotesttools is a collection of packages to augment `testing` and +;support common patterns. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd +; (package +; (name "go-github-com-moby-term") +; (version "0.0.0-20200312100748-672ec06f55cd") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/moby/term") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0xspasm3d101hmjsayrbx6az4r4ybbg5gkj13qybhpq674a6kkwn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/moby/term")) +; (propagated-inputs +; `(("go-gotest-tools-v3-3.0.2" ,go-gotest-tools-v3-3.0.2) +; ("go-gotest-tools-2.2.0+incompatible" +; ,go-gotest-tools-2.2.0+incompatible) +; ("go-golang-org-x-sys-0.0.0-20200302150141-5c8b2ff67527" +; ,go-golang-org-x-sys-0.0.0-20200302150141-5c8b2ff67527) +; ("go-github-com-sirupsen-logrus-1.4.2" +; ,go-github-com-sirupsen-logrus-1.4.2) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-google-go-cmp-0.3.1" +; ,go-github-com-google-go-cmp-0.3.1) +; ("go-github-com-azure-go-ansiterm-0.0.0-20170929234023-d6e3b3328b78" +; ,go-github-com-azure-go-ansiterm-0.0.0-20170929234023-d6e3b3328b78))) +; (home-page "https://github.com/moby/term") +; (synopsis "term - utilities for dealing with terminals") +; (description +; "Package term provides structures and helper functions to work with +;terminal (state, sizes). +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-beorn7-perks-1.0.1 +; (package +; (name "go-github-com-beorn7-perks") +; (version "1.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/beorn7/perks") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "17n4yygjxa6p499dj3yaqzfww2g7528165cl13haj97hlx94dgl7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/beorn7/perks")) +; (home-page "https://github.com/beorn7/perks") +; (synopsis "Perks for Go (golang.org)") +; (description +; "Perks contains the Go package quantile that computes approximate quantiles over +;an unbounded data stream within low memory and CPU bounds.") +; (license license:expat))) +; +;(define-public go-github-com-cespare-xxhash-v2-2.1.1 +; (package +; (name "go-github-com-cespare-xxhash-v2") +; (version "2.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/cespare/xxhash") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0rl5rs8546zj1vzggv38w93wx0b5dvav7yy5hzxa8kw7iikv1cgr")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/cespare/xxhash/v2")) +; (home-page "https://github.com/cespare/xxhash") +; (synopsis "xxhash") +; (description +; "Package xxhash implements the 64-bit variant of xxHash (XXH64) as described +;at @url{http://cyan4973.github.io/xxHash/,http://cyan4973.github.io/xxHash/}. +;") +; (license license:expat))) +; +;(define-public go-github-com-golang-protobuf-1.4.2 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.4.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0m5z81im4nsyfgarjhppayk4hqnrwswr3nix9mj8pff8x9jvcjqw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.23.0" +; ,go-google-golang-org-protobuf-1.23.0) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0))) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-github-com-prometheus-procfs-0.1.3 +; (package +; (name "go-github-com-prometheus-procfs") +; (version "0.1.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/procfs") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "09wmlmvmjf49nchidqffc99wn6vl98v5k9qgyyrhqgv0015xskwa")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/procfs")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20200106162015-b016eb3dc98e" +; ,go-golang-org-x-sys-0.0.0-20200106162015-b016eb3dc98e) +; ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" +; ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) +; ("go-github-com-google-go-cmp-0.3.1" +; ,go-github-com-google-go-cmp-0.3.1))) +; (home-page "https://github.com/prometheus/procfs") +; (synopsis "procfs") +; (description +; "Package procfs provides functions to retrieve system, kernel and process +;metrics from the pseudo-filesystem proc. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-sys-0.0.0-20200615200032-f1bc736245b1 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20200615200032-f1bc736245b1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1fbmih4n2xw53qbpmc7msqf2660i4ryr0chbrsbj8mdalfrjr0vp")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-gopkg-in-yaml-v2-2.2.5 +; (package +; (name "go-gopkg-in-yaml-v2") +; (version "2.2.5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/yaml.v2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "08smz8dfyxp02ha74my9iszqa5qzgl3ksi28ilyp8lqipssiq6fg")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" +; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) +; (home-page "https://gopkg.in/yaml.v2") +; (synopsis "YAML support for the Go language") +; (description "Package yaml implements YAML support for the Go language. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-prometheus-client-golang-1.7.1 +; (package +; (name "go-github-com-prometheus-client-golang") +; (version "1.7.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/client_golang") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0i9wbwjq3idgp9y0vv7fvg6g7zrqi9qlfw915xc49ahw83q2h61w")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/client_golang")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.2.5" ,go-gopkg-in-yaml-v2-2.2.5) +; ("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" +; ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) +; ("go-golang-org-x-sys-0.0.0-20200615200032-f1bc736245b1" +; ,go-golang-org-x-sys-0.0.0-20200615200032-f1bc736245b1) +; ("go-github-com-stretchr-testify-1.4.0" +; ,go-github-com-stretchr-testify-1.4.0) +; ("go-github-com-prometheus-procfs-0.1.3" +; ,go-github-com-prometheus-procfs-0.1.3) +; ("go-github-com-prometheus-common-0.10.0" +; ,go-github-com-prometheus-common-0.10.0) +; ("go-github-com-prometheus-client-model-0.2.0" +; ,go-github-com-prometheus-client-model-0.2.0) +; ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) +; ("go-github-com-json-iterator-go-1.1.10" +; ,go-github-com-json-iterator-go-1.1.10) +; ("go-github-com-golang-protobuf-1.4.2" +; ,go-github-com-golang-protobuf-1.4.2) +; ("go-github-com-cespare-xxhash-v2-2.1.1" +; ,go-github-com-cespare-xxhash-v2-2.1.1) +; ("go-github-com-beorn7-perks-1.0.1" +; ,go-github-com-beorn7-perks-1.0.1))) +; (home-page "https://github.com/prometheus/client_golang") +; (synopsis "Prometheus Go client library") +; (description +; "This is the @url{http://golang.org,Go} client library for +;@url{http://prometheus.io,Prometheus}. It has two separate parts, one for +;instrumenting application code, and one for creating clients that talk to the +;Prometheus HTTP API.") +; (license license:asl2.0))) +; +;(define-public go-github-com-alecthomas-template-0.0.0-20190718012654-fb15b899a751 +; (package +; (name "go-github-com-alecthomas-template") +; (version "0.0.0-20190718012654-fb15b899a751") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/alecthomas/template") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1vlasv4dgycydh5wx6jdcvz40zdv90zz1h7836z7lhsi2ymvii26")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/alecthomas/template")) +; (home-page "https://github.com/alecthomas/template") +; (synopsis "Go's") +; (description +; "Package template implements data-driven templates for generating textual output. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-alecthomas-units-0.0.0-20190717042225-c3de453c63f4 +; (package +; (name "go-github-com-alecthomas-units") +; (version "0.0.0-20190717042225-c3de453c63f4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/alecthomas/units") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0js37zlgv37y61j4a2d46jh72xm5kxmpaiw0ya9v944bjpc386my")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/alecthomas/units")) +; (home-page "https://github.com/alecthomas/units") +; (synopsis "Units - Helpful unit multipliers and functions for Go") +; (description +; "Package units provides helpful unit multipliers and functions for Go. +;") +; (license license:expat))) +; +;(define-public go-github-com-go-kit-kit-0.9.0 +; (package +; (name "go-github-com-go-kit-kit") +; (version "0.9.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/go-kit/kit") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "09038mnw705h7isbjp8dzgp2i04bp5rqkmifxvwc5xkh75s00qpw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/go-kit/kit")) +; (home-page "https://github.com/go-kit/kit") +; (synopsis "Go kit") +; (description +; "@strong{Go kit} is a @strong{programming toolkit} for building microservices +;(or elegant monoliths) in Go. We solve common problems in distributed +;systems and application architecture so you can focus on delivering +;business value.") +; (license license:expat))) +; +;(define-public go-github-com-go-logfmt-logfmt-0.4.0 +; (package +; (name "go-github-com-go-logfmt-logfmt") +; (version "0.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/go-logfmt/logfmt") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "06smxc112xmixz78nyvk3b2hmc7wasf2sl5vxj1xz62kqcq9lzm9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/go-logfmt/logfmt")) +; (propagated-inputs +; `(("go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515" +; ,go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515))) +; (home-page "https://github.com/go-logfmt/logfmt") +; (synopsis "logfmt") +; (description +; "Package logfmt implements utilities to marshal and unmarshal data in the +;logfmt format. The logfmt format records key/value pairs in a way that +;balances readability for humans and simplicity of computer parsing. It is +;most commonly used as a more human friendly alternative to JSON for +;structured logging. +;") +; (license license:expat))) +; +;(define-public go-github-com-pkg-errors-0.8.1 +; (package +; (name "go-github-com-pkg-errors") +; (version "0.8.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/pkg/errors") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0g5qcb4d4fd96midz0zdk8b9kz8xkzwfa8kr1cliqbg8sxsy5vd1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/pkg/errors")) +; (home-page "https://github.com/pkg/errors") +; (synopsis "errors") +; (description "Package errors provides simple error handling primitives. +;") +; (license license:bsd-2))) +; +;(define-public go-github-com-beorn7-perks-1.0.0 +; (package +; (name "go-github-com-beorn7-perks") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/beorn7/perks") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1i1nz1f6g55xi2y3aiaz5kqfgvknarbfl4f0sx4nyyb4s7xb1z9x")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/beorn7/perks")) +; (home-page "https://github.com/beorn7/perks") +; (synopsis "Perks for Go (golang.org)") +; (description +; "Perks contains the Go package quantile that computes approximate quantiles over +;an unbounded data stream within low memory and CPU bounds.") +; (license license:expat))) +; +;(define-public go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90 +; (package +; (name "go-github-com-prometheus-client-model") +; (version "0.0.0-20190129233127-fd36f4220a90") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/client_model") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1bs5d72k361llflgl94c22n0w53j30rsfh84smgk8mbjbcmjsaa5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/client_model")) +; (propagated-inputs +; `(("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" +; ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0))) +; (home-page "https://github.com/prometheus/client_model") +; (synopsis "Deprecation note") +; (description +; "This repository used to contain the code that defined both +;the data model and the exposition format of Prometheus metrics.") +; (license license:asl2.0))) +; +;(define-public go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc +; (package +; (name "go-github-com-alecthomas-template") +; (version "0.0.0-20160405071501-a0175ee3bccc") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/alecthomas/template") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0qjgvvh26vk1cyfq9fadyhfgdj36f1iapbmr5xp6zqipldz8ffxj")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/alecthomas/template")) +; (home-page "https://github.com/alecthomas/template") +; (synopsis "Go's") +; (description +; "Package template implements data-driven templates for generating textual output. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf +; (package +; (name "go-github-com-alecthomas-units") +; (version "0.0.0-20151022065526-2efee857e7cf") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/alecthomas/units") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1j65b91qb9sbrml9cpabfrcf07wmgzzghrl7809hjjhrmbzri5bl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/alecthomas/units")) +; (home-page "https://github.com/alecthomas/units") +; (synopsis "Units - Helpful unit multipliers and functions for Go") +; (description +; "Package units provides helpful unit multipliers and functions for Go. +;") +; (license license:expat))) +; +;(define-public go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973 +; (package +; (name "go-github-com-beorn7-perks") +; (version "0.0.0-20180321164747-3a771d992973") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/beorn7/perks") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1l2lns4f5jabp61201sh88zf3b0q793w4zdgp9nll7mmfcxxjif3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/beorn7/perks")) +; (home-page "https://github.com/beorn7/perks") +; (synopsis "Perks for Go (golang.org)") +; (description +; "Perks contains the Go package quantile that computes approximate quantiles over +;an unbounded data stream within low memory and CPU bounds.") +; (license license:expat))) +; +;(define-public go-github-com-go-kit-kit-0.8.0 +; (package +; (name "go-github-com-go-kit-kit") +; (version "0.8.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/go-kit/kit") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1rcywbc2pvab06qyf8pc2rdfjv7r6kxdv2v4wnpqnjhz225wqvc0")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/go-kit/kit")) +; (home-page "https://github.com/go-kit/kit") +; (synopsis "Go kit") +; (description +; "@strong{Go kit} is a @strong{programming toolkit} for building microservices +;(or elegant monoliths) in Go. We solve common problems in distributed +;systems and application architecture so you can focus on delivering +;business value.") +; (license license:expat))) +; +;(define-public go-github-com-go-logfmt-logfmt-0.3.0 +; (package +; (name "go-github-com-go-logfmt-logfmt") +; (version "0.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/go-logfmt/logfmt") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1gkgh3k5w1xwb2qbjq52p6azq3h1c1rr6pfwjlwj1zrijpzn2xb9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/go-logfmt/logfmt")) +; (home-page "https://github.com/go-logfmt/logfmt") +; (synopsis "logfmt") +; (description +; "Package logfmt implements utilities to marshal and unmarshal data in the +;logfmt format. The logfmt format records key/value pairs in a way that +;balances readability for humans and simplicity of computer parsing. It is +;most commonly used as a more human friendly alternative to JSON for +;structured logging. +;") +; (license license:expat))) +; +;(define-public go-github-com-go-stack-stack-1.8.0 +; (package +; (name "go-github-com-go-stack-stack") +; (version "1.8.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/go-stack/stack") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0wk25751ryyvxclyp8jdk5c3ar0cmfr8lrjb66qbg4808x66b96v")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/go-stack/stack")) +; (home-page "https://github.com/go-stack/stack") +; (synopsis "stack") +; (description +; "Package stack implements utilities to capture, manipulate, and format call +;stacks. It provides a simpler API than package runtime. +;") +; (license license:expat))) +; +;(define-public go-github-com-julienschmidt-httprouter-1.2.0 +; (package +; (name "go-github-com-julienschmidt-httprouter") +; (version "1.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/julienschmidt/httprouter") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1k8bylc9s4vpvf5xhqh9h246dl1snxrzzz0614zz88cdh8yzs666")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/julienschmidt/httprouter")) +; (home-page "https://github.com/julienschmidt/httprouter") +; (synopsis "HttpRouter") +; (description +; "Package httprouter is a trie based high performance HTTP request router. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515 +; (package +; (name "go-github-com-kr-logfmt") +; (version "0.0.0-20140226030751-b84e30acd515") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kr/logfmt") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "02ldzxgznrfdzvghfraslhgp19la1fczcbzh7wm2zdc6lmpd1qq9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kr/logfmt")) +; (home-page "https://github.com/kr/logfmt") +; (synopsis #f) +; (description +; "Package implements the decoding of logfmt key-value pairs. +;") +; (license license:expat))) +; +;(define-public go-github-com-matttproud-golang-protobuf-extensions-1.0.1 +; (package +; (name "go-github-com-matttproud-golang-protobuf-extensions") +; (version "1.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/matttproud/golang_protobuf_extensions") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1d0c1isd2lk9pnfq2nk0aih356j30k3h1gi2w0ixsivi5csl7jya")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "github.com/matttproud/golang_protobuf_extensions")) +; (home-page "https://github.com/matttproud/golang_protobuf_extensions") +; (synopsis "Overview") +; (description +; "This repository provides various Protocol Buffer extensions for the Go +;language (golang), namely support for record length-delimited message +;streaming.") +; (license license:asl2.0))) +; +;(define-public go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223 +; (package +; (name "go-github-com-mwitkow-go-conntrack") +; (version "0.0.0-20161129095857-cc309e4a2223") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mwitkow/go-conntrack") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0nbrnpk7bkmqg9mzwsxlm0y8m7s9qd9phr1q30qlx2qmdmz7c1mf")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mwitkow/go-conntrack")) +; (home-page "https://github.com/mwitkow/go-conntrack") +; (synopsis "Go tracing and monitoring (Prometheus) for") +; (description +; "@url{https://prometheus.io/,Prometheus} monitoring and @url{https://godoc.org/golang.org/x/net/trace#EventLog,(code x/net/trace)} tracing wrappers @code{net.Conn}, both inbound (@code{net.Listener}) and outbound (@code{net.Dialer}).") +; (license license:asl2.0))) +; +;(define-public go-github-com-pkg-errors-0.8.0 +; (package +; (name "go-github-com-pkg-errors") +; (version "0.8.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/pkg/errors") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "001i6n71ghp2l6kdl3qq1v2vmghcz3kicv9a5wgcihrzigm75pp5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/pkg/errors")) +; (home-page "https://github.com/pkg/errors") +; (synopsis "errors") +; (description "Package errors provides simple error handling primitives. +;") +; (license license:bsd-2))) +; +;(define-public go-github-com-prometheus-client-golang-0.9.1 +; (package +; (name "go-github-com-prometheus-client-golang") +; (version "0.9.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/client_golang") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "01gnylazia30pcp069xcng482gwmm3xcx5zgrlwdkhic1lyb6i9l")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/client_golang")) +; (home-page "https://github.com/prometheus/client_golang") +; (synopsis "Prometheus Go client library") +; (description +; "This is the @url{http://golang.org,Go} client library for +;@url{http://prometheus.io,Prometheus}. It has two separate parts, one for +;instrumenting application code, and one for creating clients that talk to the +;Prometheus HTTP API.") +; (license license:asl2.0))) +; +;(define-public go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910 +; (package +; (name "go-github-com-prometheus-client-model") +; (version "0.0.0-20180712105110-5c3871d89910") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/client_model") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "04psf81l9fjcwascsys428v03fx4fi894h7fhrj2vvcz723q57k0")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/client_model")) +; (home-page "https://github.com/prometheus/client_model") +; (synopsis "Deprecation note") +; (description +; "This repository used to contain the code that defined both +;the data model and the exposition format of Prometheus metrics.") +; (license license:asl2.0))) +; +;(define-public go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d +; (package +; (name "go-github-com-prometheus-procfs") +; (version "0.0.0-20181005140218-185b4288413d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/procfs") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0d85429kdw5dgj5zhyiz1sq3i5691vj2gjnda93nnxxzx9acg8cv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/procfs")) +; (home-page "https://github.com/prometheus/procfs") +; (synopsis "procfs") +; (description +; "Package procfs provides functions to retrieve system, kernel and process +;metrics from the pseudo-filesystem proc. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20180904163835-0709b304e793 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20180904163835-0709b304e793") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0i05s09y5pavmfh71fgih7syxg58x7a4krgd8am6d3mnahnmab5c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20180905080454-ebe1bf3edb33") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0rkspxyjxdmc9f4n09hgkwj8jjd8z5p8mc9z8vwqwqcwrqv4sg7c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-sirupsen-logrus-1.2.0 +; (package +; (name "go-github-com-sirupsen-logrus") +; (version "1.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/sirupsen/logrus") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0r6334x2bls8ddznvzaldx4g88msjjns4mlks95rqrrg7h0ijigg")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/sirupsen/logrus")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33" +; ,go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33) +; ("go-golang-org-x-crypto-0.0.0-20180904163835-0709b304e793" +; ,go-golang-org-x-crypto-0.0.0-20180904163835-0709b304e793) +; ("go-github-com-stretchr-testify-1.2.2" +; ,go-github-com-stretchr-testify-1.2.2) +; ("go-github-com-stretchr-objx-0.1.1" +; ,go-github-com-stretchr-objx-0.1.1) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.1" +; ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.1) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://github.com/sirupsen/logrus") +; (synopsis "Logrus") +; (description +; "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-net-0.0.0-20181114220301-adae6a3d119a +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20181114220301-adae6a3d119a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1fx860zsgzqk28j7lmp96qsfrgb0kzbfjvr294hywswcbwdwkb01")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-github-com-prometheus-common-0.4.1 +; (package +; (name "go-github-com-prometheus-common") +; (version "0.4.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/common") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0sf4sjdckblz1hqdfvripk3zyp8xq89w7q75kbsyg4c078af896s")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/common")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1) +; ("go-gopkg-in-alecthomas-kingpin-v2-2.2.6" +; ,go-gopkg-in-alecthomas-kingpin-v2-2.2.6) +; ("go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5" +; ,go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5) +; ("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" +; ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) +; ("go-golang-org-x-net-0.0.0-20181114220301-adae6a3d119a" +; ,go-golang-org-x-net-0.0.0-20181114220301-adae6a3d119a) +; ("go-github-com-sirupsen-logrus-1.2.0" +; ,go-github-com-sirupsen-logrus-1.2.0) +; ("go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d" +; ,go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d) +; ("go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910" +; ,go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910) +; ("go-github-com-prometheus-client-golang-0.9.1" +; ,go-github-com-prometheus-client-golang-0.9.1) +; ("go-github-com-pkg-errors-0.8.0" ,go-github-com-pkg-errors-0.8.0) +; ("go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223" +; ,go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223) +; ("go-github-com-matttproud-golang-protobuf-extensions-1.0.1" +; ,go-github-com-matttproud-golang-protobuf-extensions-1.0.1) +; ("go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515" +; ,go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515) +; ("go-github-com-julienschmidt-httprouter-1.2.0" +; ,go-github-com-julienschmidt-httprouter-1.2.0) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0) +; ("go-github-com-gogo-protobuf-1.1.1" +; ,go-github-com-gogo-protobuf-1.1.1) +; ("go-github-com-go-stack-stack-1.8.0" +; ,go-github-com-go-stack-stack-1.8.0) +; ("go-github-com-go-logfmt-logfmt-0.3.0" +; ,go-github-com-go-logfmt-logfmt-0.3.0) +; ("go-github-com-go-kit-kit-0.8.0" ,go-github-com-go-kit-kit-0.8.0) +; ("go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973" +; ,go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973) +; ("go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf" +; ,go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf) +; ("go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc" +; ,go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc))) +; (home-page "https://github.com/prometheus/common") +; (synopsis "Common") +; (description +; "This repository contains Go libraries that are shared across Prometheus +;components and libraries. They are considered internal to Prometheus, without +;any stability guarantees for external usage.") +; (license license:asl2.0))) +; +;(define-public go-github-com-prometheus-procfs-0.0.2 +; (package +; (name "go-github-com-prometheus-procfs") +; (version "0.0.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/procfs") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0s7pvs7fgnfpmym3cd0k219av321h9sf3yvdlnn3qy0ps280lg7k")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/procfs")) +; (propagated-inputs +; `(("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" +; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4))) +; (home-page "https://github.com/prometheus/procfs") +; (synopsis "procfs") +; (description +; "Package procfs provides functions to retrieve system, kernel and process +;metrics from the pseudo-filesystem proc. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20181116152217-5ac8a444bdc5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "00zdrighflwc4iyizsag184nvl1cbkk02v73kpl5miprdrvzqlr4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-prometheus-client-golang-1.0.0 +; (package +; (name "go-github-com-prometheus-client-golang") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/client_golang") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1f03ndyi3jq7zdxinnvzimz3s4z2374r6dikkc8i42xzb6d1bli6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/client_golang")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5" +; ,go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5) +; ("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0) +; ("go-github-com-prometheus-procfs-0.0.2" +; ,go-github-com-prometheus-procfs-0.0.2) +; ("go-github-com-prometheus-common-0.4.1" +; ,go-github-com-prometheus-common-0.4.1) +; ("go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90" +; ,go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90) +; ("go-github-com-modern-go-reflect2-1.0.1" +; ,go-github-com-modern-go-reflect2-1.0.1) +; ("go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd" +; ,go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd) +; ("go-github-com-json-iterator-go-1.1.6" +; ,go-github-com-json-iterator-go-1.1.6) +; ("go-github-com-golang-protobuf-1.3.1" +; ,go-github-com-golang-protobuf-1.3.1) +; ("go-github-com-beorn7-perks-1.0.0" +; ,go-github-com-beorn7-perks-1.0.0))) +; (home-page "https://github.com/prometheus/client_golang") +; (synopsis "Prometheus Go client library") +; (description +; "This is the @url{http://golang.org,Go} client library for +;@url{http://prometheus.io,Prometheus}. It has two separate parts, one for +;instrumenting application code, and one for creating clients that talk to the +;Prometheus HTTP API.") +; (license license:asl2.0))) +; +;(define-public go-github-com-prometheus-client-model-0.2.0 +; (package +; (name "go-github-com-prometheus-client-model") +; (version "0.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/client_model") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0jffnz94d6ff39fr96b5w8i8yk26pwnrfggzz8jhi8k0yihg2c9d")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/client_model")) +; (propagated-inputs +; `(("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" +; ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0))) +; (home-page "https://github.com/prometheus/client_model") +; (synopsis "Deprecation note") +; (description +; "This repository used to contain the code that defined both +;the data model and the exposition format of Prometheus metrics.") +; (license license:asl2.0))) +; +;(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.1 +; (package +; (name "go-github-com-konsorten-go-windows-terminal-sequences") +; (version "1.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/konsorten/go-windows-terminal-sequences") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1lchgf27n276vma6iyxa0v1xds68n2g8lih5lavqnx5x6q5pw2ip")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) +; (home-page "https://github.com/konsorten/go-windows-terminal-sequences") +; (synopsis "Windows Terminal Sequences") +; (description +; "This library allow for enabling Windows terminal color support for Go.") +; (license license:expat))) +; +;(define-public go-github-com-stretchr-objx-0.1.1 +; (package +; (name "go-github-com-stretchr-objx") +; (version "0.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/objx") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0iph0qmpyqg4kwv8jsx6a56a7hhqq8swrazv40ycxk9rzr0s8yls")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/objx")) +; (home-page "https://github.com/stretchr/objx") +; (synopsis "Objx") +; (description +; "Objx - Go package for dealing with maps, slices, JSON and other data. +;") +; (license license:expat))) +; +;(define-public go-github-com-sirupsen-logrus-1.4.2 +; (package +; (name "go-github-com-sirupsen-logrus") +; (version "1.4.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/sirupsen/logrus") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "087k2lxrr9p9dh68yw71d05h5g9p5v26zbwd6j7lghinjfaw334x")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/sirupsen/logrus")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894" +; ,go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894) +; ("go-github-com-stretchr-testify-1.2.2" +; ,go-github-com-stretchr-testify-1.2.2) +; ("go-github-com-stretchr-objx-0.1.1" +; ,go-github-com-stretchr-objx-0.1.1) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.1" +; ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.1) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://github.com/sirupsen/logrus") +; (synopsis "Logrus") +; (description +; "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. +;") +; (license license:expat))) +; +;(define-public go-gopkg-in-alecthomas-kingpin-v2-2.2.6 +; (package +; (name "go-gopkg-in-alecthomas-kingpin-v2") +; (version "2.2.6") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/alecthomas/kingpin.v2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0mndnv3hdngr3bxp7yxfd47cas4prv98sqw534mx7vp38gd88n5r")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path +; "gopkg.in/alecthomas/kingpin.v2" +; #:unpack-path +; "gopkg.in/alecthomas/kingpin.v2")) +; (home-page "https://gopkg.in/alecthomas/kingpin.v2") +; (synopsis "Kingpin - A Go (golang) command line and flag parser") +; (description +; "Package kingpin provides command line interfaces like this: +;") +; (license license:expat))) +; +;(define-public go-gopkg-in-yaml-v2-2.2.4 +; (package +; (name "go-gopkg-in-yaml-v2") +; (version "2.2.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/yaml.v2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "11bwj757wi8kdrcnlgfqb8vv2d2xdhlghmyagd19i62khrkchsg2")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" +; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) +; (home-page "https://gopkg.in/yaml.v2") +; (synopsis "YAML support for the Go language") +; (description "Package yaml implements YAML support for the Go language. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-prometheus-common-0.10.0 +; (package +; (name "go-github-com-prometheus-common") +; (version "0.10.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/common") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ra7zfqsnvgfizzsxn3rk0dwhk7nx8p8082zgpvadbv2b0j1k01i")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/common")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.2.4" ,go-gopkg-in-yaml-v2-2.2.4) +; ("go-gopkg-in-alecthomas-kingpin-v2-2.2.6" +; ,go-gopkg-in-alecthomas-kingpin-v2-2.2.6) +; ("go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894" +; ,go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894) +; ("go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980" +; ,go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980) +; ("go-github-com-sirupsen-logrus-1.4.2" +; ,go-github-com-sirupsen-logrus-1.4.2) +; ("go-github-com-prometheus-client-model-0.2.0" +; ,go-github-com-prometheus-client-model-0.2.0) +; ("go-github-com-prometheus-client-golang-1.0.0" +; ,go-github-com-prometheus-client-golang-1.0.0) +; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) +; ("go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223" +; ,go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223) +; ("go-github-com-matttproud-golang-protobuf-extensions-1.0.1" +; ,go-github-com-matttproud-golang-protobuf-extensions-1.0.1) +; ("go-github-com-julienschmidt-httprouter-1.2.0" +; ,go-github-com-julienschmidt-httprouter-1.2.0) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2) +; ("go-github-com-go-logfmt-logfmt-0.4.0" +; ,go-github-com-go-logfmt-logfmt-0.4.0) +; ("go-github-com-go-kit-kit-0.9.0" ,go-github-com-go-kit-kit-0.9.0) +; ("go-github-com-alecthomas-units-0.0.0-20190717042225-c3de453c63f4" +; ,go-github-com-alecthomas-units-0.0.0-20190717042225-c3de453c63f4) +; ("go-github-com-alecthomas-template-0.0.0-20190718012654-fb15b899a751" +; ,go-github-com-alecthomas-template-0.0.0-20190718012654-fb15b899a751))) +; (home-page "https://github.com/prometheus/common") +; (synopsis "Common") +; (description +; "This repository contains Go libraries that are shared across Prometheus +;components and libraries. They are considered internal to Prometheus, without +;any stability guarantees for external usage.") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-sys-0.0.0-20200106162015-b016eb3dc98e +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20200106162015-b016eb3dc98e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1k0qr26046d228gi6ngkfxp4m1rjgxk4jj75h0kh1cpyp91n5rja")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-prometheus-procfs-0.2.0 +; (package +; (name "go-github-com-prometheus-procfs") +; (version "0.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/procfs") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0rkpyq1grk3qyfahnfry5qkxjg5qb10yh1l8cvm8b79nqsmdyjbm")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/procfs")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20200106162015-b016eb3dc98e" +; ,go-golang-org-x-sys-0.0.0-20200106162015-b016eb3dc98e) +; ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" +; ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) +; ("go-github-com-google-go-cmp-0.3.1" +; ,go-github-com-google-go-cmp-0.3.1))) +; (home-page "https://github.com/prometheus/procfs") +; (synopsis "procfs") +; (description +; "Package procfs provides functions to retrieve system, kernel and process +;metrics from the pseudo-filesystem proc. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.3 +; (package +; (name "go-github-com-konsorten-go-windows-terminal-sequences") +; (version "1.0.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/konsorten/go-windows-terminal-sequences") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1yrsd4s8vhjnxhwbigirymz89dn6qfjnhn28i33vvvdgf96j6ypl")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) +; (home-page "https://github.com/konsorten/go-windows-terminal-sequences") +; (synopsis "Windows Terminal Sequences") +; (description +; "This library allow for enabling Windows terminal color support for Go.") +; (license license:expat))) +; +;(define-public go-github-com-stretchr-testify-1.2.2 +; (package +; (name "go-github-com-stretchr-testify") +; (version "1.2.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/testify") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0dlszlshlxbmmfxj5hlwgv3r22x0y1af45gn1vd198nvvs3pnvfs")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/testify")) +; (home-page "https://github.com/stretchr/testify") +; (synopsis "Testify - Thou Shalt Write Tests") +; (description +; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190422165155-953cdadca894") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0gkha4whk8xkcv3isigbs250akag99isxnd3v9xmy0kl3g88hxy1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-sirupsen-logrus-1.6.0 +; (package +; (name "go-github-com-sirupsen-logrus") +; (version "1.6.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/sirupsen/logrus") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1zf9is1yxxnna0d1pyag2m9ziy3l27zb2j92p9msm1gx5jjrvzzj")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/sirupsen/logrus")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894" +; ,go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894) +; ("go-github-com-stretchr-testify-1.2.2" +; ,go-github-com-stretchr-testify-1.2.2) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.3" +; ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.3) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://github.com/sirupsen/logrus") +; (synopsis "Logrus") +; (description +; "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. +;") +; (license license:expat))) +; +;(define-public go-go-uber-org-atomic-1.4.0 +; (package +; (name "go-go-uber-org-atomic") +; (version "1.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/uber-go/atomic") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0c6yzx15c20719xii3dm0vyjd8i9jx45m0wh5yp1zf29b0gbljcy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "go.uber.org/atomic")) +; (home-page "https://go.uber.org/atomic") +; (synopsis "atomic") +; (description +; "Package atomic provides simple wrappers around numerics to enforce atomic +;access. +;") +; (license license:expat))) +; +;(define-public go-go-uber-org-multierr-1.1.0 +; (package +; (name "go-go-uber-org-multierr") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/uber-go/multierr") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1slfc6syvw8cvr6rbrjsy6ja5w8gsx0f8aq8qm16rp2x5c2pj07w")))) +; (build-system go-build-system) +; (arguments '(#:import-path "go.uber.org/multierr")) +; (home-page "https://go.uber.org/multierr") +; (synopsis "multierr") +; (description +; "Package multierr allows combining one or more errors together. +;") +; (license license:expat))) +; +;(define-public go-go-uber-org-zap-1.10.0 +; (package +; (name "go-go-uber-org-zap") +; (version "1.10.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/uber-go/zap") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "10hdzr1rghwbsl6bbd30779dx44fh9mg9pq8d2cgqlknqxxpvpvr")))) +; (build-system go-build-system) +; (arguments '(#:import-path "go.uber.org/zap")) +; (home-page "https://go.uber.org/zap") +; (synopsis "â\x9a¡ zap") +; (description "Package zap provides fast, structured, leveled logging. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262 +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20190425150028-36563e24a262") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0lasi96f6a1h11gkm8kl33x03pmxp369wrqq2dg7x7xv9nq76d6g")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" +; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-text-0.0.0-20170915032832-14c0d48ead0c +; (package +; (name "go-golang-org-x-text") +; (version "0.0.0-20170915032832-14c0d48ead0c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/text") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0y0nrj4hw7vby6m3iqklbf4v7njqlsx7s4pwfkwmvh1ryn1kb7d6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/text")) +; (home-page "https://golang.org/x/text") +; (synopsis "Go Text") +; (description +; "text is a repository of text-related packages related to internationalization +;(i18n) and localization (l10n), such as character encodings, text +;transformations, and locale-specific text handling. +;") +; (license license:bsd-3))) +; +;(define-public go-rsc-io-sampler-1.3.0 +; (package +; (name "go-rsc-io-sampler") +; (version "1.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/rsc/sampler") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0byxk2ynba50py805kcvbvjzh59l1r308i1xgyzpw6lff4xx9xjh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "rsc.io/sampler")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.0.0-20170915032832-14c0d48ead0c" +; ,go-golang-org-x-text-0.0.0-20170915032832-14c0d48ead0c))) +; (home-page "https://rsc.io/sampler") +; (synopsis #f) +; (description "Package sampler shows simple texts. +;") +; (license license:bsd-3))) +; +;(define-public go-rsc-io-quote-v3-3.1.0 +; (package +; (name "go-rsc-io-quote-v3") +; (version "3.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/rsc/quote") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0nvv97hwwrl1mx5gzsbdm1ndnwpg3m7i2jb10ig9wily7zmvki0i")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "rsc.io/quote/v3" #:unpack-path "rsc.io/quote/v3")) +; (propagated-inputs `(("go-rsc-io-sampler-1.3.0" ,go-rsc-io-sampler-1.3.0))) +; (home-page "https://rsc.io/quote/v3") +; (synopsis #f) +; (description "Package quote collects pithy sayings. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-mock-1.4.1 +; (package +; (name "go-github-com-golang-mock") +; (version "1.4.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/mock") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1zb4n285mv85dh3y2f8fqbs30h2dhzw7vbczr6z0zg2gqr6vzg0q")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/mock")) +; (propagated-inputs +; `(("go-rsc-io-quote-v3-3.1.0" ,go-rsc-io-quote-v3-3.1.0) +; ("go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262" +; ,go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262))) +; (home-page "https://github.com/golang/mock") +; (synopsis "gomock") +; (description +; "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It +;integrates well with Go's built-in @code{testing} package, but can be used in other +;contexts too.") +; (license license:asl2.0))) +; +;(define-public go-github-com-golang-protobuf-1.3.4 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.3.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "12dclmj2if8l0069fby4psrpqby7p810dr1dr63nwx93g9jhvkmx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-github-com-chzyer-logex-1.1.10 +; (package +; (name "go-github-com-chzyer-logex") +; (version "1.1.10") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/chzyer/logex") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "08pbjj3wx9acavlwyr055isa8a5hnmllgdv5k6ra60l5y1brmlq4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/chzyer/logex")) +; (home-page "https://github.com/chzyer/logex") +; (synopsis #f) +; (description #f) +; (license #f))) +; +;(define-public go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e +; (package +; (name "go-github-com-chzyer-readline") +; (version "0.0.0-20180603132655-2972be24d48e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/chzyer/readline") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "104q8dazj8yf6b089jjr82fy9h1g80zyyzvp3g8b44a7d8ngjj6r")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/chzyer/readline")) +; (home-page "https://github.com/chzyer/readline") +; (synopsis "Guide") +; (description +; "Readline is a pure go implementation for GNU-Readline kind library. +;") +; (license license:expat))) +; +;(define-public go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1 +; (package +; (name "go-github-com-chzyer-test") +; (version "0.0.0-20180213035817-a1ea475d72b1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/chzyer/test") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0rns2aqk22i9xsgyap0pq8wi4cfaxsri4d9q6xxhhyma8jjsnj2k")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/chzyer/test")) +; (home-page "https://github.com/chzyer/test") +; (synopsis "test") +; (description #f) +; (license license:expat))) +; +;(define-public go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6 +; (package +; (name "go-github-com-ianlancetaylor-demangle") +; (version "0.0.0-20181102032728-5e5cf60278f6") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/ianlancetaylor/demangle") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1fhjk11cip9c3jyj1byz9z77n6n2rlxmyz0xjx1zpn1da3cvri75")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/ianlancetaylor/demangle")) +; (home-page "https://github.com/ianlancetaylor/demangle") +; (synopsis "github.com/ianlancetaylor/demangle") +; (description +; "Package demangle defines functions that demangle GCC/LLVM +;C++ and Rust symbol names. +;This package recognizes names that were mangled according to the C++ ABI +;defined at @url{http://codesourcery.com/cxx-abi/,http://codesourcery.com/cxx-abi/} and the Rust ABI +;defined at +;@url{https://rust-lang.github.io/rfcs/2603-rust-symbol-name-mangling-v0.html,https://rust-lang.github.io/rfcs/2603-rust-symbol-name-mangling-v0.html} +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20191204072324-ce4227a45e2e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1s43wvqfml6ml5ks7iv2bis9d664g77mq86v7mfmjhn56x856g35")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-google-pprof-0.0.0-20200229191704-1ebb73c60ed3 +; (package +; (name "go-github-com-google-pprof") +; (version "0.0.0-20200229191704-1ebb73c60ed3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/pprof") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1gdi9p4j1zfm5xlm488i5l0q3kk4q6hsmbmlk6p729i0di2n3ifa")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/pprof")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" +; ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) +; ("go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6" +; ,go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6) +; ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" +; ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) +; ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" +; ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) +; ("go-github-com-chzyer-logex-1.1.10" +; ,go-github-com-chzyer-logex-1.1.10))) +; (home-page "https://github.com/google/pprof") +; (synopsis "Introduction") +; (description +; "pprof is a tool for collection, manipulation and visualization +;of performance profiles. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-jstemmer-go-junit-report-0.9.1 +; (package +; (name "go-github-com-jstemmer-go-junit-report") +; (version "0.9.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/jstemmer/go-junit-report") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1knip80yir1cdsjlb3rzy0a4w3kl4ljpiciaz6hjzwqlfhnv7bkw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/jstemmer/go-junit-report")) +; (home-page "https://github.com/jstemmer/go-junit-report") +; (synopsis "go-junit-report") +; (description +; "Converts @code{go test} output to an xml report, suitable for applications that +;expect junit xml reports (e.g. @url{http://jenkins-ci.org,Jenkins}).") +; (license license:expat))) +; +;(define-public go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6 +; (package +; (name "go-github-com-golang-groupcache") +; (version "0.0.0-20190702054246-869f871628b6") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/groupcache") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0r4nk8129bvx50qb4xzjaay39b2h6k7cbdqqzdlanmc82ygczsbw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/groupcache")) +; (home-page "https://github.com/golang/groupcache") +; (synopsis "groupcache") +; (description +; "Package groupcache provides a data loading mechanism with caching +;and de-duplication that works across a set of peer processes. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-golang-protobuf-1.3.1 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.3.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "15am4s4646qy6iv0g3kkqq52rzykqjhm4bf08dk0fy2r58knpsyl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-github-com-stretchr-testify-1.4.0 +; (package +; (name "go-github-com-stretchr-testify") +; (version "1.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/testify") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "187i5g88sxfy4vxpm7dw1gwv29pa2qaq475lxrdh5livh69wqfjb")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/testify")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) +; ("go-github-com-stretchr-objx-0.1.0" +; ,go-github-com-stretchr-objx-0.1.0) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.0" +; ,go-github-com-davecgh-go-spew-1.1.0))) +; (home-page "https://github.com/stretchr/testify") +; (synopsis "Testify - Thou Shalt Write Tests") +; (description +; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190502145724-3ef323f4f1fd") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "15iw4gjvrnrx98rlny1qcaprp3577rh2b77byb38dr6m3q42rvc6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20190425155659-357c62f0e4bb") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1h1a0wys83cc86s4w2hqmz78ixijw8f7qchmiwdv5xjvpg0i27c2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" +; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) +; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) +; ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" +; ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) +; ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" +; ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) +; ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" +; ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd) +; ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" +; ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) +; ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" +; ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-grpc-1.20.1 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.20.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0rj3fs6jillapiwnpkfn3v2jbl7a3zsb0lys4srswl26hjijviqq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" +; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) +; ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" +; ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) +; ("go-google-golang-org-appengine-1.1.0" +; ,go-google-golang-org-appengine-1.1.0) +; ("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" +; ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" +; ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0) +; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-client9-misspell-0.3.4" +; ,go-github-com-client9-misspell-0.3.4) +; ("go-github-com-burntsushi-toml-0.3.1" +; ,go-github-com-burntsushi-toml-0.3.1) +; ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-go-opencensus-io-0.22.3 +; (package +; (name "go-go-opencensus-io") +; (version "0.22.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/census-instrumentation/opencensus-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0xj16iq5jp26hi2py7lsd8cvqh651fgn39y05gzvjdi88d9xd3nw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "go.opencensus.io")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.20.1" ,go-google-golang-org-grpc-1.20.1) +; ("go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb" +; ,go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb) +; ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) +; ("go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd" +; ,go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd) +; ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" +; ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) +; ("go-github-com-stretchr-testify-1.4.0" +; ,go-github-com-stretchr-testify-1.4.0) +; ("go-github-com-google-go-cmp-0.3.0" +; ,go-github-com-google-go-cmp-0.3.0) +; ("go-github-com-golang-protobuf-1.3.1" +; ,go-github-com-golang-protobuf-1.3.1) +; ("go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6" +; ,go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6))) +; (home-page "https://go.opencensus.io") +; (synopsis "OpenCensus Libraries for Go") +; (description "Package opencensus contains Go support for OpenCensus. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-mod-0.1.1-0.20191105210325-c90efee705ee +; (package +; (name "go-golang-org-x-mod") +; (version "0.1.1-0.20191105210325-c90efee705ee") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/mod") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0i5md645rmcy5z5ij9ng428k9rz4g3k1kjy3blsq1264rn426gdf")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/mod")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" +; ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) +; ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" +; ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) +; (home-page "https://golang.org/x/mod") +; (synopsis "mod") +; (description +; "This repository holds packages for writing tools +;that work directly with Go module mechanics. +;That is, it is for direct manipulation of Go modules themselves.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7 +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20200130002326-2f3ba24bd6e7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0j3nnmlwnbivf0h9x89vlp8ji3ha41v96bj33cxwmrrjnxq543ww")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" +; ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) +; ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" +; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) +; ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" +; ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) +; ("go-golang-org-x-mod-0.1.1-0.20191105210325-c90efee705ee" +; ,go-golang-org-x-mod-0.1.1-0.20191105210325-c90efee705ee))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b +; (package +; (name "go-golang-org-x-lint") +; (version "0.0.0-20200302205851-738671d3881b") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/lint") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0jkiz4py59jjnkyxbxifpf7bsar11lbgmj5jiq2kic5k03shkn9c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/lint")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7" +; ,go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7))) +; (home-page "https://golang.org/x/lint") +; (synopsis "Installation") +; (description "Package lint contains a linter for Go source code. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20200301022130-244492dfa37a +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20200301022130-244492dfa37a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0vm2q44phz4vjnzq9428rjk58c82fxf003whczp7c9ryn9fazh7s")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20200302150141-5c8b2ff67527 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20200302150141-5c8b2ff67527") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0r5s7f4w7crrbcf5ydpr2xzsq0svjm332vsds41yp58kwi2lvh2v")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20200304193943-95d2e580d8eb +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20200304193943-95d2e580d8eb") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0f46657xsdc12lr29ksqg80fp0j8v2iqgihzh788avcj5cmhnqyl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" +; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) +; ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" +; ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) +; ("go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b" +; ,go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b) +; ("go-golang-org-x-mod-0.2.0" ,go-golang-org-x-mod-0.2.0))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-mock-1.2.0 +; (package +; (name "go-github-com-golang-mock") +; (version "1.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/mock") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "12ddj2g8ab87id6n2n67vnbhq6p8dvgsq1pzpqfriym4dk8w54fg")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/mock")) +; (home-page "https://github.com/golang/mock") +; (synopsis "gomock") +; (description +; "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It +;integrates well with Go's built-in @code{testing} package, but can be used in other +;contexts too.") +; (license license:asl2.0))) +; +;(define-public go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c +; (package +; (name "go-github-com-google-btree") +; (version "0.0.0-20180813153112-4030bb1f1f0c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/btree") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ba430m9fbnagacp57krgidsyrgp3ycw5r7dj71brgp5r52g82p6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/btree")) +; (home-page "https://github.com/google/btree") +; (synopsis "BTree implementation for Go") +; (description +; "Package btree implements in-memory B-Trees of arbitrary degree. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-google-martian-2.1.0+incompatible +; (package +; (name "go-github-com-google-martian") +; (version "2.1.0+incompatible") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/martian") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "197hil6vrjk50b9wvwyzf61csid83whsjj6ik8mc9r2lryxlyyrp")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/martian")) +; (home-page "https://github.com/google/martian") +; (synopsis "Martian Proxy") +; (description +; "Package martian provides an HTTP/1.1 proxy with an API for configurable +;request and response modifiers. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-google-pprof-0.0.0-20181206194817-3ea8567a2e57 +; (package +; (name "go-github-com-google-pprof") +; (version "0.0.0-20181206194817-3ea8567a2e57") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/pprof") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "09rhjn3ms0a72dw0yzbp237p7yhqma772zspddn6mgkh3gi3kn4c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/pprof")) +; (home-page "https://github.com/google/pprof") +; (synopsis "Introduction") +; (description +; "pprof is a tool for collection, manipulation and visualization +;of performance profiles. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-googleapis-gax-go-v2-2.0.4 +; (package +; (name "go-github-com-googleapis-gax-go-v2") +; (version "2.0.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/gax-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1iwnm6ky1x53lgs44mw3hpdkjzrm5qd0kfs50m0qcq2ml5m1cwdm")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/googleapis/gax-go/v2")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.19.0" +; ,go-google-golang-org-grpc-1.19.0))) +; (home-page "https://github.com/googleapis/gax-go") +; (synopsis #f) +; (description +; "Package gax contains a set of modules which aid the development of APIs +;for clients and servers based on gRPC and Google API conventions. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-jstemmer-go-junit-report-0.0.0-20190106144839-af01ea7f8024 +; (package +; (name "go-github-com-jstemmer-go-junit-report") +; (version "0.0.0-20190106144839-af01ea7f8024") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/jstemmer/go-junit-report") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1lp3n94ris12hac02wi31f3whs88lcrzwgdg43a5j6cafg9p1d0s")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/jstemmer/go-junit-report")) +; (home-page "https://github.com/jstemmer/go-junit-report") +; (synopsis "go-junit-report") +; (description +; "Converts @code{go test} output to an xml report, suitable for applications that +;expect junit xml reports (e.g. @url{http://jenkins-ci.org,Jenkins}).") +; (license license:expat))) +; +;(define-public go-golang-org-x-text-0.3.1-0.20180807135948-17ff2d5776d2 +; (package +; (name "go-golang-org-x-text") +; (version "0.3.1-0.20180807135948-17ff2d5776d2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/text") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1rrh2mnmyxr45nsvy42zq3w3ly6gw6rl993knwvf1w71kyv0jjnj")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/text")) +; (home-page "https://golang.org/x/text") +; (synopsis "Go Text") +; (description +; "text is a repository of text-related packages related to internationalization +;(i18n) and localization (l10n), such as character encodings, text +;transformations, and locale-specific text handling. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-time-0.0.0-20181108054448-85acf8d2951c +; (package +; (name "go-golang-org-x-time") +; (version "0.0.0-20181108054448-85acf8d2951c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/time") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0yqnxsrarjk4qkda8kcxzmk7y90kkkxzx9iwryzrk7bzs87ky3xc")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/time")) +; (home-page "https://golang.org/x/time") +; (synopsis "Go Time") +; (description "This repository provides supplementary Go time packages.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f +; (package +; (name "go-golang-org-x-lint") +; (version "0.0.0-20190301231843-5614ed5bae6f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/lint") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0fzn0zjv0x92xvfdq3a0v9w5sgkhr7hxkfy9zaqi8i57807z8bnx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/lint")) +; (home-page "https://golang.org/x/lint") +; (synopsis "Installation") +; (description "Package lint contains a linter for Go source code. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421 +; (package +; (name "go-golang-org-x-oauth2") +; (version "0.0.0-20190226205417-e64efc72b421") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/oauth2") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0djvwz2avx7knsjbl434vw1wqbrg53xp1kh599gfixn5icrggz4m")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/oauth2")) +; (propagated-inputs +; `(("go-google-golang-org-appengine-1.4.0" +; ,go-google-golang-org-appengine-1.4.0) +; ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" +; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) +; ("go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e" +; ,go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e) +; ("go-cloud-google-com-go-0.34.0" ,go-cloud-google-com-go-0.34.0))) +; (home-page "https://golang.org/x/oauth2") +; (synopsis "OAuth2 for Go") +; (description +; "Package oauth2 provides support for making +;OAuth2 authorized and authenticated HTTP requests, +;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +;It can additionally grant authorization with Bearer JWT. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138 +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20190312170243-e65039ee4138") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0c094599cf70wdrms49a3879qkq122pqlp2av444gs2pvc8apdcx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-api-0.4.0 +; (package +; (name "go-google-golang-org-api") +; (version "0.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-api-go-client") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1hzgrw5wasmcjlqpxsmryddzzw4cwyzf2vx14i9z51v1plwssijm")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/api")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" +; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) +; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) +; ("go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19" +; ,go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19) +; ("go-google-golang-org-appengine-1.4.0" +; ,go-google-golang-org-appengine-1.4.0) +; ("go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138" +; ,go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138) +; ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" +; ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) +; ("go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421" +; ,go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421) +; ("go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f" +; ,go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f) +; ("go-go-opencensus-io-0.21.0" ,go-go-opencensus-io-0.21.0) +; ("go-github-com-google-go-cmp-0.2.0" +; ,go-github-com-google-go-cmp-0.2.0))) +; (home-page "https://google.golang.org/api") +; (synopsis "Google APIs Client Library for Go") +; (description +; "Package api is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of +;sub-packages. +;") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20190418145605-e7d98fc518a7 +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20190418145605-e7d98fc518a7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1cnavkyawwvfc5yl097ygnfy1ac69v4zc02gdfnq1bvgcvgmvnbi")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" +; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) +; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) +; ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" +; ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) +; ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" +; ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) +; ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" +; ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd) +; ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" +; ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) +; ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" +; ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-honnef-co-go-tools-0.0.0-20190106161140-3f1c8253044a +; (package +; (name "go-honnef-co-go-tools") +; (version "0.0.0-20190106161140-3f1c8253044a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/dominikh/go-tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0d3vgh0fgfj1z7i648g1s6x2pwxd07sxfjwg1xn3yagr9h06jh3h")))) +; (build-system go-build-system) +; (arguments '(#:import-path "honnef.co/go/tools")) +; (home-page "https://honnef.co/go/tools") +; (synopsis "Documentation") +; (description +; "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, +;offers simplifications, and enforces style rules.") +; (license license:expat))) +; +;(define-public go-cloud-google-com-go-0.38.0 +; (package +; (name "go-cloud-google-com-go") +; (version "0.38.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-cloud-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0n6n13b7lri2fmc4bn4ifszyawj31dpbzvyv0xafsf81440z8cyh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "cloud.google.com/go")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190106161140-3f1c8253044a" +; ,go-honnef-co-go-tools-0.0.0-20190106161140-3f1c8253044a) +; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) +; ("go-google-golang-org-genproto-0.0.0-20190418145605-e7d98fc518a7" +; ,go-google-golang-org-genproto-0.0.0-20190418145605-e7d98fc518a7) +; ("go-google-golang-org-api-0.4.0" ,go-google-golang-org-api-0.4.0) +; ("go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138" +; ,go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138) +; ("go-golang-org-x-time-0.0.0-20181108054448-85acf8d2951c" +; ,go-golang-org-x-time-0.0.0-20181108054448-85acf8d2951c) +; ("go-golang-org-x-text-0.3.1-0.20180807135948-17ff2d5776d2" +; ,go-golang-org-x-text-0.3.1-0.20180807135948-17ff2d5776d2) +; ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" +; ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) +; ("go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421" +; ,go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421) +; ("go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f" +; ,go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f) +; ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" +; ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) +; ("go-go-opencensus-io-0.21.0" ,go-go-opencensus-io-0.21.0) +; ("go-github-com-jstemmer-go-junit-report-0.0.0-20190106144839-af01ea7f8024" +; ,go-github-com-jstemmer-go-junit-report-0.0.0-20190106144839-af01ea7f8024) +; ("go-github-com-googleapis-gax-go-v2-2.0.4" +; ,go-github-com-googleapis-gax-go-v2-2.0.4) +; ("go-github-com-google-pprof-0.0.0-20181206194817-3ea8567a2e57" +; ,go-github-com-google-pprof-0.0.0-20181206194817-3ea8567a2e57) +; ("go-github-com-google-martian-2.1.0+incompatible" +; ,go-github-com-google-martian-2.1.0+incompatible) +; ("go-github-com-google-go-cmp-0.2.0" +; ,go-github-com-google-go-cmp-0.2.0) +; ("go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c" +; ,go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0) +; ("go-github-com-golang-mock-1.2.0" ,go-github-com-golang-mock-1.2.0))) +; (home-page "https://cloud.google.com/go") +; (synopsis "Google Cloud Client Libraries for Go") +; (description +; "Package cloud is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +;of sub-packages. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-googleapis-gax-go-v2-2.0.5 +; (package +; (name "go-github-com-googleapis-gax-go-v2") +; (version "2.0.5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/gax-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1lxawwngv6miaqd25s3ba0didfzylbwisd2nz7r4gmbmin6jsjrx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/googleapis/gax-go/v2")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.19.0" +; ,go-google-golang-org-grpc-1.19.0))) +; (home-page "https://github.com/googleapis/gax-go") +; (synopsis #f) +; (description +; "Package gax contains a set of modules which aid the development of APIs +;for clients and servers based on gRPC and Google API conventions. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-hashicorp-golang-lru-0.5.0 +; (package +; (name "go-github-com-hashicorp-golang-lru") +; (version "0.5.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/golang-lru") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "12k2cp2k615fjvfa5hyb9k2alian77wivds8s65diwshwv41939f")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hashicorp/golang-lru")) +; (home-page "https://github.com/hashicorp/golang-lru") +; (synopsis "golang-lru") +; (description +; "Package lru provides three different LRU caches of varying sophistication. +;") +; (license license:mpl2.0))) +; +;(define-public go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6 +; (package +; (name "go-golang-org-x-sync") +; (version "0.0.0-20190227155943-e225da77a7e6") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sync") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0bh3583smcfw6jw3w6lp0za93rz7hpxfdz8vhxng75b7a6vdlw4p")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sync")) +; (home-page "https://golang.org/x/sync") +; (synopsis "Go Sync") +; (description +; "This repository provides Go concurrency primitives in addition to the +;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19 +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20190307195333-5fe7a883aa19") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0qjkwig0r42q0j2qv57s4ahsgmmp41dz3ih3rnaqg0619n5w7lbs")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" +; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) +; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) +; ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" +; ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) +; ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" +; ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) +; ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" +; ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd) +; ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" +; ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) +; ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" +; ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-go-opencensus-io-0.21.0 +; (package +; (name "go-go-opencensus-io") +; (version "0.21.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/census-instrumentation/opencensus-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "14s0a12xdzjvad0dgksgv8m3hh7nc585abvjkvyk6r67a29lxj6x")))) +; (build-system go-build-system) +; (arguments '(#:import-path "go.opencensus.io")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) +; ("go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19" +; ,go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-github-com-hashicorp-golang-lru-0.5.0" +; ,go-github-com-hashicorp-golang-lru-0.5.0) +; ("go-github-com-google-go-cmp-0.2.0" +; ,go-github-com-google-go-cmp-0.2.0) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0))) +; (home-page "https://go.opencensus.io") +; (synopsis "OpenCensus Libraries for Go") +; (description "Package opencensus contains Go support for OpenCensus. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-net-0.0.0-20190503192946-f4e77d36d62c +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190503192946-f4e77d36d62c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0avjnglqqg9ya0cbhp23m4namykii219kxjywxn4cd7pfcc5arha")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45 +; (package +; (name "go-golang-org-x-oauth2") +; (version "0.0.0-20190604053449-0f29369cfe45") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/oauth2") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "06jwpvx0x2gjn2y959drbcir5kd7vg87k0r1216abk6rrdzzrzi2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/oauth2")) +; (propagated-inputs +; `(("go-google-golang-org-appengine-1.4.0" +; ,go-google-golang-org-appengine-1.4.0) +; ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" +; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) +; ("go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e" +; ,go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e) +; ("go-cloud-google-com-go-0.34.0" ,go-cloud-google-com-go-0.34.0))) +; (home-page "https://golang.org/x/oauth2") +; (synopsis "OAuth2 for Go") +; (description +; "Package oauth2 provides support for making +;OAuth2 authorized and authenticated HTTP requests, +;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +;It can additionally grant authorization with Bearer JWT. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190507160741-ecd444e8653b") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1vhld4948mzfnlgf20id29mv1bwpk9a3xlbw1mbjzxzxxdv1jds2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-appengine-1.5.0 +; (package +; (name "go-google-golang-org-appengine") +; (version "1.5.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/appengine") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0l7mkdnwhidv8m686x432vmx8z5nqcrr9f46ddgvrxbh4wvyfcll")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/appengine")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225" +; ,go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0))) +; (home-page "https://google.golang.org/appengine") +; (synopsis "Go App Engine packages") +; (description +; "Package appengine provides basic functionality for Google App Engine. +;") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-api-0.20.0 +; (package +; (name "go-google-golang-org-api") +; (version "0.20.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-api-go-client") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "13syr1x33k6mrn5w6l4sgdbzn368w3m60vf6kk2j10fwa45125rg")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/api")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" +; ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) +; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) +; ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" +; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) +; ("go-google-golang-org-appengine-1.5.0" +; ,go-google-golang-org-appengine-1.5.0) +; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" +; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) +; ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) +; ("go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b" +; ,go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b) +; ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" +; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) +; ("go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45" +; ,go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45) +; ("go-golang-org-x-net-0.0.0-20190503192946-f4e77d36d62c" +; ,go-golang-org-x-net-0.0.0-20190503192946-f4e77d36d62c) +; ("go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422" +; ,go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422) +; ("go-go-opencensus-io-0.21.0" ,go-go-opencensus-io-0.21.0) +; ("go-github-com-hashicorp-golang-lru-0.5.1" +; ,go-github-com-hashicorp-golang-lru-0.5.1) +; ("go-github-com-googleapis-gax-go-v2-2.0.5" +; ,go-github-com-googleapis-gax-go-v2-2.0.5) +; ("go-github-com-google-go-cmp-0.3.0" +; ,go-github-com-google-go-cmp-0.3.0) +; ("go-cloud-google-com-go-0.38.0" ,go-cloud-google-com-go-0.38.0))) +; (home-page "https://google.golang.org/api") +; (synopsis "Google APIs Client Library for Go") +; (description +; "Package api is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of +;sub-packages. +;") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20200305110556-506484158171 +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20200305110556-506484158171") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19h7sxkfjcrkm7majd0pyzzirdnk1qlsxc3h5zklhm234d8jg407")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" +; ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) +; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) +; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" +; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-github-com-golang-protobuf-1.3.3" +; ,go-github-com-golang-protobuf-1.3.3))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-github-com-google-renameio-0.1.0 +; (package +; (name "go-github-com-google-renameio") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/renameio") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ki2x5a9nrj17sn092d6n4zr29lfg5ydv4xz5cp58z6cw8ip43jx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/renameio")) +; (home-page "https://github.com/google/renameio") +; (synopsis "Atomicity vs durability") +; (description +; "Package renameio provides a way to atomically create or replace a file or +;symbolic link. +;") +; (license license:asl2.0))) +; +;(define-public go-gopkg-in-errgo-v2-2.1.0 +; (package +; (name "go-gopkg-in-errgo-v2") +; (version "2.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/errgo.v2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "065mbihiy7q67wnql0bzl9y1kkvck5ivra68254zbih52jxwrgr2")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/errgo.v2" #:unpack-path "gopkg.in/errgo.v2")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" +; ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) +; ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0))) +; (home-page "https://gopkg.in/errgo.v2") +; (synopsis #f) +; (description +; "Package errgo provides some primitives for error creation and handling.") +; (license license:bsd-3))) +; +;(define-public go-github-com-rogpeppe-go-internal-1.3.0 +; (package +; (name "go-github-com-rogpeppe-go-internal") +; (version "1.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/rogpeppe/go-internal") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0mcdh1licgnnahwml9y2iq6xy5x9xmjw5frcnds2s3wpjyqrl216")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/rogpeppe/go-internal")) +; (propagated-inputs +; `(("go-gopkg-in-errgo-v2-2.1.0" ,go-gopkg-in-errgo-v2-2.1.0))) +; (home-page "https://github.com/rogpeppe/go-internal") +; (synopsis #f) +; (description +; "This repository factors out an opinionated selection of internal packages and functionality from the Go standard +;library. Currently this consists mostly of packages and testing code from within the Go tool implementation.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20190510104115-cbcb75029529 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20190510104115-cbcb75029529") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "12831ga1gq04a3jbbcmww7kaqfdfgp7cdv2fj9aqidz8h52ajdmh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" +; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) +; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" +; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-mod-0.0.0-20190513183733-4bf6d317e70e +; (package +; (name "go-golang-org-x-mod") +; (version "0.0.0-20190513183733-4bf6d317e70e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/mod") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19lg1ly3j31anx92p0hynic1gjk417wwxphfdrb2cq1c19kj3r17")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/mod")) +; (propagated-inputs +; `(("go-golang-org-x-crypto-0.0.0-20190510104115-cbcb75029529" +; ,go-golang-org-x-crypto-0.0.0-20190510104115-cbcb75029529))) +; (home-page "https://golang.org/x/mod") +; (synopsis "mod") +; (description +; "This repository holds packages for writing tools +;that work directly with Go module mechanics. +;That is, it is for direct manipulation of Go modules themselves.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20191130070609-6e064ea0cf2d +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20191130070609-6e064ea0cf2d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1nbki367xspsa37j6276f5q2gv31vfjpb52axn3p3ymz548my75d")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7" +; ,go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7) +; ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" +; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) +; ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" +; ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-honnef-co-go-tools-0.0.1-2020.1.3 +; (package +; (name "go-honnef-co-go-tools") +; (version "0.0.1-2020.1.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/dominikh/go-tools") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0pvi1mzhy6zgx4zfgdypbl4zhvgg11hl5qv7blf2qs0a96j2djhf")))) +; (build-system go-build-system) +; (arguments '(#:import-path "honnef.co/go/tools")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20191130070609-6e064ea0cf2d" +; ,go-golang-org-x-tools-0.0.0-20191130070609-6e064ea0cf2d) +; ("go-golang-org-x-mod-0.0.0-20190513183733-4bf6d317e70e" +; ,go-golang-org-x-mod-0.0.0-20190513183733-4bf6d317e70e) +; ("go-github-com-rogpeppe-go-internal-1.3.0" +; ,go-github-com-rogpeppe-go-internal-1.3.0) +; ("go-github-com-kisielk-gotool-1.0.0" +; ,go-github-com-kisielk-gotool-1.0.0) +; ("go-github-com-google-renameio-0.1.0" +; ,go-github-com-google-renameio-0.1.0) +; ("go-github-com-burntsushi-toml-0.3.1" +; ,go-github-com-burntsushi-toml-0.3.1))) +; (home-page "https://honnef.co/go/tools") +; (synopsis "Documentation") +; (description +; "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, +;offers simplifications, and enforces style rules.") +; (license license:expat))) +; +;(define-public go-cloud-google-com-go-0.54.0 +; (package +; (name "go-cloud-google-com-go") +; (version "0.54.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-cloud-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ilqqymrphg546c66jc0npd48dlr88wbgrg462h1jgm2ykbnq1ba")))) +; (build-system go-build-system) +; (arguments '(#:import-path "cloud.google.com/go")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.1-2020.1.3" +; ,go-honnef-co-go-tools-0.0.1-2020.1.3) +; ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) +; ("go-google-golang-org-genproto-0.0.0-20200305110556-506484158171" +; ,go-google-golang-org-genproto-0.0.0-20200305110556-506484158171) +; ("go-google-golang-org-api-0.20.0" ,go-google-golang-org-api-0.20.0) +; ("go-golang-org-x-tools-0.0.0-20200304193943-95d2e580d8eb" +; ,go-golang-org-x-tools-0.0.0-20200304193943-95d2e580d8eb) +; ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) +; ("go-golang-org-x-sys-0.0.0-20200302150141-5c8b2ff67527" +; ,go-golang-org-x-sys-0.0.0-20200302150141-5c8b2ff67527) +; ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" +; ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) +; ("go-golang-org-x-net-0.0.0-20200301022130-244492dfa37a" +; ,go-golang-org-x-net-0.0.0-20200301022130-244492dfa37a) +; ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" +; ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) +; ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) +; ("go-github-com-jstemmer-go-junit-report-0.9.1" +; ,go-github-com-jstemmer-go-junit-report-0.9.1) +; ("go-github-com-googleapis-gax-go-v2-2.0.5" +; ,go-github-com-googleapis-gax-go-v2-2.0.5) +; ("go-github-com-google-pprof-0.0.0-20200229191704-1ebb73c60ed3" +; ,go-github-com-google-pprof-0.0.0-20200229191704-1ebb73c60ed3) +; ("go-github-com-google-martian-2.1.0+incompatible" +; ,go-github-com-google-martian-2.1.0+incompatible) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.3.4" +; ,go-github-com-golang-protobuf-1.3.4) +; ("go-github-com-golang-mock-1.4.1" ,go-github-com-golang-mock-1.4.1) +; ("go-cloud-google-com-go-storage-1.6.0" +; ,go-cloud-google-com-go-storage-1.6.0) +; ("go-cloud-google-com-go-pubsub-1.2.0" +; ,go-cloud-google-com-go-pubsub-1.2.0) +; ("go-cloud-google-com-go-datastore-1.1.0" +; ,go-cloud-google-com-go-datastore-1.1.0) +; ("go-cloud-google-com-go-bigquery-1.4.0" +; ,go-cloud-google-com-go-bigquery-1.4.0))) +; (home-page "https://cloud.google.com/go") +; (synopsis "Google Cloud Client Libraries for Go") +; (description +; "Package cloud is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +;of sub-packages. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7 +; (package +; (name "go-github-com-gregjones-httpcache") +; (version "0.0.0-20180305231024-9cad4c3443a7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/gregjones/httpcache") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0wjdwcwqqcx2d5y68qvhg6qyj977il5ijmnn9h9cd6wjbdy0ay6s")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/gregjones/httpcache")) +; (home-page "https://github.com/gregjones/httpcache") +; (synopsis "httpcache") +; (description +; "Package httpcache provides a http.RoundTripper implementation that works as a +;mostly RFC-compliant cache for http responses. +;") +; (license license:expat))) +; +;(define-public go-github-com-imdario-mergo-0.3.5 +; (package +; (name "go-github-com-imdario-mergo") +; (version "0.3.5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/imdario/mergo") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1mvgn89vp39gcpvhiq4n7nw5ipj7fk6h03jgc6fjwgvwvss213pb")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/imdario/mergo")) +; (home-page "https://github.com/imdario/mergo") +; (synopsis "Mergo") +; (description +; "This package provides a helper to merge structs and maps in Golang. Useful for configuration default values, avoiding messy if-statements. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-peterbourgon-diskv-2.0.1+incompatible +; (package +; (name "go-github-com-peterbourgon-diskv") +; (version "2.0.1+incompatible") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/peterbourgon/diskv") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1mxpa5aad08x30qcbffzk80g9540wvbca4blc1r2qyzl65b8929b")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/peterbourgon/diskv")) +; (home-page "https://github.com/peterbourgon/diskv") +; (synopsis "What is diskv?") +; (description +; "Diskv (disk-vee) is a simple, persistent key-value store written in the Go +;language. It starts with an incredibly simple API for storing arbitrary data on +;a filesystem by key, and builds several layers of performance-enhancing +;abstraction on top. The end result is a conceptually simple, but highly +;performant, disk-backed storage system.") +; (license license:expat))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20201002170205-7f63de1d35b0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1dr89jfs4dmpr3jqfshqqvfpzzdx4r76nkzhrvmixfrmn6wxrnd1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" +; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) +; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" +; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-cloud-google-com-go-0.34.0 +; (package +; (name "go-cloud-google-com-go") +; (version "0.34.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-cloud-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1kclgclwar3r37zbvb9gg3qxbgzkb50zk3s9778zlh2773qikmai")))) +; (build-system go-build-system) +; (arguments '(#:import-path "cloud.google.com/go")) +; (home-page "https://cloud.google.com/go") +; (synopsis "Google Cloud Client Libraries for Go") +; (description +; "Package cloud is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +;of sub-packages. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190108225652-1e06a53dbb7e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0lpqqvdccby48nixihvmn8ig1z48b950m1bxfqxn78air308qc3j")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4 +; (package +; (name "go-golang-org-x-sync") +; (version "0.0.0-20181221193216-37e7f081c4d4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sync") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1bb0mw6ckb1k7z8v3iil2qlqwfj408fvvp8m1cik2b46p7snyjhm")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sync")) +; (home-page "https://golang.org/x/sync") +; (synopsis "Go Sync") +; (description +; "This repository provides Go concurrency primitives in addition to the +;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d +; (package +; (name "go-golang-org-x-oauth2") +; (version "0.0.0-20200107190931-bf48bf16ab8d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/oauth2") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1sirdib60zwmh93kf9qrx51r8544k1p9rs5mk0797wibz3m4mrdg")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/oauth2")) +; (propagated-inputs +; `(("go-google-golang-org-appengine-1.4.0" +; ,go-google-golang-org-appengine-1.4.0) +; ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" +; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) +; ("go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e" +; ,go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e) +; ("go-cloud-google-com-go-0.34.0" ,go-cloud-google-com-go-0.34.0))) +; (home-page "https://golang.org/x/oauth2") +; (synopsis "OAuth2 for Go") +; (description +; "Package oauth2 provides support for making +;OAuth2 authorized and authenticated HTTP requests, +;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +;It can additionally grant authorization with Bearer JWT. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e +; (package +; (name "go-golang-org-x-time") +; (version "0.0.0-20200630173020-3af7569d3a1e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/time") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "05hqhw3vlssi499y6m41zgdp1yyjsw2kj95ahymlw6pkhsssh2vq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/time")) +; (home-page "https://golang.org/x/time") +; (synopsis "Go Time") +; (description "This repository provides supplementary Go time packages.") +; (license license:bsd-3))) +; +;(define-public go-k8s-io-api-0.20.6 +; (package +; (name "go-k8s-io-api") +; (version "0.20.6") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes/api") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0mm6a91a4nrlsvnfcbgn2574vdwxf1nxpgrd5avklh8mym2ngimw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "k8s.io/api")) +; (propagated-inputs +; `(("go-k8s-io-apimachinery-0.20.6" ,go-k8s-io-apimachinery-0.20.6) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-gogo-protobuf-1.3.2" +; ,go-github-com-gogo-protobuf-1.3.2))) +; (home-page "https://k8s.io/api") +; (synopsis "api") +; (description +; "Schema of the external API types that are served by the Kubernetes API server.") +; (license license:asl2.0))) +; +;(define-public go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96 +; (package +; (name "go-github-com-docker-spdystream") +; (version "0.0.0-20160310174837-449fdfce4d96") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/moby/spdystream") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1412cpiis971iq1kxrirzirhj2708ispjh0x0dh879b66x8507sl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/docker/spdystream")) +; (home-page "https://github.com/docker/spdystream") +; (synopsis "SpdyStream") +; (description +; "This package provides a multiplexed stream library using spdy") +; (license license:asl2.0))) +; +;(define-public go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153 +; (package +; (name "go-github-com-elazarl-goproxy") +; (version "0.0.0-20180725130230-947c36da3153") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/elazarl/goproxy") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0lmsnr5xmda89wig8sw62llg6acjb5caghz5jmdhnm85rm6rnssk")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/elazarl/goproxy")) +; (home-page "https://github.com/elazarl/goproxy") +; (synopsis "Introduction") +; (description +; "Taken from $GOROOT/src/pkg/net/http/chunked +;needed to write https responses to client. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-evanphx-json-patch-4.9.0+incompatible +; (package +; (name "go-github-com-evanphx-json-patch") +; (version "4.9.0+incompatible") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/evanphx/json-patch") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1r88qpzjxsx8skij9s5pi4a5qcv4bm18vq8sy21gpwgzp3qf6qzx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/evanphx/json-patch")) +; (home-page "https://github.com/evanphx/json-patch") +; (synopsis "JSON-Patch") +; (description +; "@code{jsonpatch} is a library which provides functionality for both applying +;@url{http://tools.ietf.org/html/rfc6902,RFC6902 JSON patches} against documents, as +;well as for calculating & applying @url{https://tools.ietf.org/html/rfc7396,RFC7396 JSON merge patches}.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20191005200804-aed5e4c7ecf9") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0wsdsbl9n61l99z0cvib2xzg56fsfgky4yc5xapdw9ywx9h0zm3a")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-fsnotify-fsnotify-1.4.9 +; (package +; (name "go-github-com-fsnotify-fsnotify") +; (version "1.4.9") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/fsnotify/fsnotify") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1i1r72knpbfwwql9frn9bqc3nhfc2ai5m6qllcyr6wban62lr40x")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/fsnotify/fsnotify")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9" +; ,go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9))) +; (home-page "https://github.com/fsnotify/fsnotify") +; (synopsis "File system notifications for Go") +; (description +; "Package fsnotify provides a platform-independent interface for file system notifications. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e +; (package +; (name "go-github-com-golang-groupcache") +; (version "0.0.0-20200121045136-8c9f03a8e57e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/groupcache") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0vjjr79r32icjzlb05wn02k59av7jx0rn1jijml8r4whlg7dnkfh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/groupcache")) +; (home-page "https://github.com/golang/groupcache") +; (synopsis "groupcache") +; (description +; "Package groupcache provides a data loading mechanism with caching +;and de-duplication that works across a set of peer processes. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-google-gofuzz-1.1.0 +; (package +; (name "go-github-com-google-gofuzz") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/gofuzz") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0si2fiigj45vr4jnw4grjhls7nw56wkwinnn93gqbl9ng9ynw8rx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/gofuzz")) +; (home-page "https://github.com/google/gofuzz") +; (synopsis "gofuzz") +; (description +; "Package fuzz is a library for populating go objects with random values. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-google-uuid-1.1.2 +; (package +; (name "go-github-com-google-uuid") +; (version "1.1.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/uuid") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1rbpfa0v0ly9sdnixcxhf79swki54ikgm1zkwwkj64p1ws66syqd")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/uuid")) +; (home-page "https://github.com/google/uuid") +; (synopsis "uuid") +; (description "Package uuid generates and inspects UUIDs. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-hashicorp-golang-lru-0.5.1 +; (package +; (name "go-github-com-hashicorp-golang-lru") +; (version "0.5.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/golang-lru") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "13f870cvk161bzjj6x41l45r5x9i1z9r2ymwmvm7768kg08zznpy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hashicorp/golang-lru")) +; (home-page "https://github.com/hashicorp/golang-lru") +; (synopsis "golang-lru") +; (description +; "Package lru provides three different LRU caches of varying sophistication. +;") +; (license license:mpl2.0))) +; +;(define-public go-github-com-modern-go-concurrent-0.0.0-20180228061459-e0a39a4cb421 +; (package +; (name "go-github-com-modern-go-concurrent") +; (version "0.0.0-20180228061459-e0a39a4cb421") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/modern-go/concurrent") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0hamz1zimsxm9vl0ih19v7sbibglwq2j6473w4j9k7ib80fmxdzr")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/modern-go/concurrent")) +; (home-page "https://github.com/modern-go/concurrent") +; (synopsis "concurrent") +; (description +; "because sync.Map is only available in go 1.9, we can use concurrent.Map to make code portable") +; (license license:asl2.0))) +; +;(define-public go-github-com-modern-go-reflect2-0.0.0-20180701023420-4b7aa43c6742 +; (package +; (name "go-github-com-modern-go-reflect2") +; (version "0.0.0-20180701023420-4b7aa43c6742") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/modern-go/reflect2") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1721y3yr3dpx5dx5ashf063qczk2awy5zjir1jvp1h5hn7qz4i49")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/modern-go/reflect2")) +; (home-page "https://github.com/modern-go/reflect2") +; (synopsis "reflect2") +; (description "reflect api that avoids runtime reflect.Value cost") +; (license license:asl2.0))) +; +;(define-public go-github-com-json-iterator-go-1.1.10 +; (package +; (name "go-github-com-json-iterator-go") +; (version "1.1.10") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/json-iterator/go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "134zwc2pmf8nd90r8065wsl6vv1mwjl23bs70i08dzhw5h98drr4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/json-iterator/go")) +; (propagated-inputs +; `(("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0) +; ("go-github-com-modern-go-reflect2-0.0.0-20180701023420-4b7aa43c6742" +; ,go-github-com-modern-go-reflect2-0.0.0-20180701023420-4b7aa43c6742) +; ("go-github-com-modern-go-concurrent-0.0.0-20180228061459-e0a39a4cb421" +; ,go-github-com-modern-go-concurrent-0.0.0-20180228061459-e0a39a4cb421) +; ("go-github-com-google-gofuzz-1.0.0" +; ,go-github-com-google-gofuzz-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://github.com/json-iterator/go") +; (synopsis "Benchmark") +; (description +; "Package jsoniter implements encoding and decoding of JSON as defined in +;@url{https://rfc-editor.org/rfc/rfc4627.html,RFC 4627} and provides interfaces with identical syntax of standard lib encoding/json. +;Converting from encoding/json to jsoniter is no more than replacing the package with jsoniter +;and variable type declarations (if any). +;jsoniter interfaces gives 100% compatibility with code using standard lib. +;") +; (license license:expat))) +; +;(define-public go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f +; (package +; (name "go-github-com-mxk-go-flowrate") +; (version "0.0.0-20140419014527-cca7078d478f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mxk/go-flowrate") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0zqs39923ja0yypdmiqk6x8pgmfs3ms5x5sl1dqv9z6zyx2xy541")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mxk/go-flowrate")) +; (home-page "https://github.com/mxk/go-flowrate") +; (synopsis #f) +; (description #f) +; (license license:bsd-3))) +; +;(define-public go-github-com-onsi-ginkgo-1.11.0 +; (package +; (name "go-github-com-onsi-ginkgo") +; (version "1.11.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/onsi/ginkgo") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1vxmb5k89bq50m2kzcw5l3bdvci4czpifkgxd4nbq1yzv5ir03kp")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/onsi/ginkgo")) +; (home-page "https://github.com/onsi/ginkgo") +; (synopsis "Ginkgo 2.0 Release Candidate is available!") +; (description "Ginkgo is a BDD-style testing framework for Golang +;") +; (license license:expat))) +; +;(define-public go-github-com-fsnotify-fsnotify-1.4.7 +; (package +; (name "go-github-com-fsnotify-fsnotify") +; (version "1.4.7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/fsnotify/fsnotify") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/fsnotify/fsnotify")) +; (home-page "https://github.com/fsnotify/fsnotify") +; (synopsis "File system notifications for Go") +; (description +; "Package fsnotify provides a platform-independent interface for file system notifications. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-hpcloud-tail-1.0.0 +; (package +; (name "go-github-com-hpcloud-tail") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hpcloud/tail") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1njpzc0pi1acg5zx9y6vj9xi6ksbsc5d387rd6904hy6rh2m6kn0")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hpcloud/tail")) +; (home-page "https://github.com/hpcloud/tail") +; (synopsis "Go package for tail-ing files") +; (description +; "This package provides a Go package striving to emulate the features of the BSD @code{tail} program.") +; (license license:expat))) +; +;(define-public go-github-com-onsi-ginkgo-1.6.0 +; (package +; (name "go-github-com-onsi-ginkgo") +; (version "1.6.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/onsi/ginkgo") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0x0gc89vgq38xhgmi2h22bhr73cf2gmk42g89nz89k8dgg9hhr25")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/onsi/ginkgo")) +; (home-page "https://github.com/onsi/ginkgo") +; (synopsis "Ginkgo 2.0 Release Candidate is available!") +; (description "Ginkgo is a BDD-style testing framework for Golang +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20180906233101-161cd47e91fd") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0254ld010iijygbzykib2vags1dc0wlmcmhgh4jl8iny159lhbcv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20180909124046-d0be0721c37e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "081wyvfnlf842dqg03raxfz6lldlxpmyh1prix9lmrrm65arxb12")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-gopkg-in-fsnotify-v1-1.4.7 +; (package +; (name "go-gopkg-in-fsnotify-v1") +; (version "1.4.7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/fsnotify.v1") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path +; "gopkg.in/fsnotify.v1" +; #:unpack-path +; "gopkg.in/fsnotify.v1")) +; (home-page "https://gopkg.in/fsnotify.v1") +; (synopsis "File system notifications for Go") +; (description +; "Package fsnotify provides a platform-independent interface for file system notifications. +;") +; (license license:bsd-3))) +; +;(define-public go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7 +; (package +; (name "go-gopkg-in-tomb-v1") +; (version "1.0.0-20141024135613-dd632973f1e7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/tomb.v1") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1lqmq1ag7s4b3gc3ddvr792c5xb5k6sfn0cchr3i2s7f1c231zjv")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/tomb.v1" #:unpack-path "gopkg.in/tomb.v1")) +; (home-page "https://gopkg.in/tomb.v1") +; (synopsis "Installation and usage") +; (description +; "The tomb package offers a conventional API for clean goroutine termination. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-onsi-gomega-1.7.0 +; (package +; (name "go-github-com-onsi-gomega") +; (version "1.7.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/onsi/gomega") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "09j6wq425wgzzsbwm9ckhfgl2capv3yyqbrf45qyrjwkzm49i02y")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/onsi/gomega")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1) +; ("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" +; ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) +; ("go-gopkg-in-fsnotify-v1-1.4.7" ,go-gopkg-in-fsnotify-v1-1.4.7) +; ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e" +; ,go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e) +; ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" +; ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) +; ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" +; ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) +; ("go-github-com-onsi-ginkgo-1.6.0" ,go-github-com-onsi-ginkgo-1.6.0) +; ("go-github-com-hpcloud-tail-1.0.0" ,go-github-com-hpcloud-tail-1.0.0) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0) +; ("go-github-com-fsnotify-fsnotify-1.4.7" +; ,go-github-com-fsnotify-fsnotify-1.4.7))) +; (home-page "https://github.com/onsi/gomega") +; (synopsis ": a BDD Testing Framework for Golang") +; (description +; "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library. +;") +; (license license:expat))) +; +;(define-public go-github-com-pkg-errors-0.9.1 +; (package +; (name "go-github-com-pkg-errors") +; (version "0.9.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/pkg/errors") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1761pybhc2kqr6v5fm8faj08x9bql8427yqg6vnfv6nhrasx1mwq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/pkg/errors")) +; (home-page "https://github.com/pkg/errors") +; (synopsis "errors") +; (description "Package errors provides simple error handling primitives. +;") +; (license license:bsd-2))) +; +;(define-public go-github-com-spf13-pflag-1.0.5 +; (package +; (name "go-github-com-spf13-pflag") +; (version "1.0.5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/spf13/pflag") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0gpmacngd0gpslnbkzi263f5ishigzgh6pbdv9hp092rnjl4nd31")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/spf13/pflag")) +; (home-page "https://github.com/spf13/pflag") +; (synopsis "Description") +; (description +; "Package pflag is a drop-in replacement for Go's flag package, implementing +;POSIX/GNU-style --flags. +;") +; (license license:bsd-3))) +; +;(define-public go-gopkg-in-inf-v0-0.9.1 +; (package +; (name "go-gopkg-in-inf-v0") +; (version "0.9.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/inf.v0") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "00k5iqjcp371fllqxncv7jkf80hn1zww92zm78cclbcn4ybigkng")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/inf.v0" #:unpack-path "gopkg.in/inf.v0")) +; (home-page "https://gopkg.in/inf.v0") +; (synopsis #f) +; (description +; "Package inf (type inf.Dec) implements \"infinite-precision\" decimal +;arithmetic. +;\"Infinite precision\" describes two characteristics: practically unlimited +;precision for decimal number representation and no support for calculating +;with any specific fixed precision. +;(Although there is no practical limit on precision, inf.Dec can only +;represent finite decimals.) +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-nytimes-gziphandler-0.0.0-20170623195520-56545f4a5d46 +; (package +; (name "go-github-com-nytimes-gziphandler") +; (version "0.0.0-20170623195520-56545f4a5d46") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/nytimes/gziphandler") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1fwk9wz6vrvq72f2gq8jhvd1nvv6grqgwrjq66vjpm0726pxar72")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/NYTimes/gziphandler")) +; (home-page "https://github.com/NYTimes/gziphandler") +; (synopsis "Gzip Handler") +; (description +; "This is a tiny Go package which wraps HTTP handlers to transparently gzip the +;response body, for clients which support it. Although it's usually simpler to +;leave that to a reverse proxy (like nginx or Varnish), this package is useful +;when that's undesirable.") +; (license license:asl2.0))) +; +;(define-public go-github-com-asaskevich-govalidator-0.0.0-20190424111038-f61b66f89f4a +; (package +; (name "go-github-com-asaskevich-govalidator") +; (version "0.0.0-20190424111038-f61b66f89f4a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/asaskevich/govalidator") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1jzjd9ak4byb83bwhbyrrdclnhrgglyxcbr4d4qh39a6ywvcijm5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/asaskevich/govalidator")) +; (home-page "https://github.com/asaskevich/govalidator") +; (synopsis "govalidator") +; (description +; "Package govalidator is package of validators and sanitizers for strings, structs and collections. +;") +; (license license:expat))) +; +;(define-public go-github-com-emicklei-go-restful-0.0.0-20170410110728-ff4f55a20633 +; (package +; (name "go-github-com-emicklei-go-restful") +; (version "0.0.0-20170410110728-ff4f55a20633") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/emicklei/go-restful") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1v5lj5142abz3gvbygp6xghpdx4ps2lwswl8559ivaidahwnc21c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/emicklei/go-restful")) +; (home-page "https://github.com/emicklei/go-restful") +; (synopsis "go-restful") +; (description +; "Package restful , a lean package for creating REST-style WebServices without magic. +;") +; (license license:expat))) +; +;(define-public go-github-com-ghodss-yaml-0.0.0-20150909031657-73d445a93680 +; (package +; (name "go-github-com-ghodss-yaml") +; (version "0.0.0-20150909031657-73d445a93680") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/ghodss/yaml") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0pg53ky4sy3sp9j4n7vgf1p3gw4nbckwqfldcmmi9rf13kjh0mr7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/ghodss/yaml")) +; (home-page "https://github.com/ghodss/yaml") +; (synopsis "YAML marshaling and unmarshaling support for Go") +; (description +; "Copyright 2013 The Go Authors. All rights reserved. +;Use of this source code is governed by a BSD-style +;license that can be found in the LICENSE file. +;") +; (license #f))) +; +;(define-public go-github-com-go-openapi-jsonreference-0.19.3 +; (package +; (name "go-github-com-go-openapi-jsonreference") +; (version "0.19.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/go-openapi/jsonreference") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ln21xai74fynwmi4ck5j0c70yszjy96wfagc705y8khjxsgncsw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/go-openapi/jsonreference")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) +; ("go-golang-org-x-net-0.0.0-20190827160401-ba9fcec4b297" +; ,go-golang-org-x-net-0.0.0-20190827160401-ba9fcec4b297) +; ("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0) +; ("go-github-com-go-openapi-jsonpointer-0.19.3" +; ,go-github-com-go-openapi-jsonpointer-0.19.3) +; ("go-github-com-puerkitobio-urlesc-0.0.0-20170810143723-de5bf2ad4578" +; ,go-github-com-puerkitobio-urlesc-0.0.0-20170810143723-de5bf2ad4578) +; ("go-github-com-puerkitobio-purell-1.1.1" +; ,go-github-com-puerkitobio-purell-1.1.1))) +; (home-page "https://github.com/go-openapi/jsonreference") +; (synopsis "gojsonreference") +; (description +; "@url{https://raw.githubusercontent.com/go-openapi/jsonreference/master/LICENSE,(img (@ (src http://img.shields.io/badge/license-Apache%20v2-orange.svg) (alt license)))} @url{http://godoc.org/github.com/go-openapi/jsonreference,(img (@ (src https://godoc.org/github.com/go-openapi/jsonreference?status.svg=) (alt GoDoc)))} +;An implementation of JSON Reference - Go language") +; (license license:asl2.0))) +; +;(define-public go-github-com-mailru-easyjson-0.0.0-20190626092158-b2ccc519800e +; (package +; (name "go-github-com-mailru-easyjson") +; (version "0.0.0-20190626092158-b2ccc519800e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mailru/easyjson") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0q85h383mhbkcjm2vqm72bi8n2252fv3c56q3lclzb8n2crnjcdk")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mailru/easyjson")) +; (home-page "https://github.com/mailru/easyjson") +; (synopsis "easyjson") +; (description +; "Package easyjson contains marshaler/unmarshaler interfaces and helper functions. +;") +; (license license:expat))) +; +;(define-public go-github-com-go-openapi-jsonpointer-0.19.3 +; (package +; (name "go-github-com-go-openapi-jsonpointer") +; (version "0.19.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/go-openapi/jsonpointer") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1m4bb7c5y8ss2s8wl50k7lsk84nl4lcldkbkphrfdl21y51gz4jr")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/go-openapi/jsonpointer")) +; (propagated-inputs +; `(("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0) +; ("go-github-com-mailru-easyjson-0.0.0-20190626092158-b2ccc519800e" +; ,go-github-com-mailru-easyjson-0.0.0-20190626092158-b2ccc519800e) +; ("go-github-com-go-openapi-swag-0.19.5" +; ,go-github-com-go-openapi-swag-0.19.5))) +; (home-page "https://github.com/go-openapi/jsonpointer") +; (synopsis "gojsonpointer") +; (description +; "@url{https://raw.githubusercontent.com/go-openapi/jsonpointer/master/LICENSE,(img (@ (src http://img.shields.io/badge/license-Apache%20v2-orange.svg) (alt license)))} @url{http://godoc.org/github.com/go-openapi/jsonpointer,(img (@ (src https://godoc.org/github.com/go-openapi/jsonpointer?status.svg=) (alt GoDoc)))} +;An implementation of JSON Pointer - Go language") +; (license license:asl2.0))) +; +;(define-public go-github-com-puerkitobio-purell-1.1.1 +; (package +; (name "go-github-com-puerkitobio-purell") +; (version "1.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/PuerkitoBio/purell") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0c525frsxmalrn55hzzsxy17ng8avkd40ga0wxfw9haxsdjgqdqy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/PuerkitoBio/purell")) +; (home-page "https://github.com/PuerkitoBio/purell") +; (synopsis "Purell") +; (description +; "Package purell offers URL normalization as described on the wikipedia page: +;@url{http://en.wikipedia.org/wiki/URL_normalization,http://en.wikipedia.org/wiki/URL_normalization} +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-puerkitobio-urlesc-0.0.0-20170810143723-de5bf2ad4578 +; (package +; (name "go-github-com-puerkitobio-urlesc") +; (version "0.0.0-20170810143723-de5bf2ad4578") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/PuerkitoBio/urlesc") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0n0srpqwbaan1wrhh2b7ysz543pjs1xw2rghvqyffg9l0g8kzgcw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/PuerkitoBio/urlesc")) +; (home-page "https://github.com/PuerkitoBio/urlesc") +; (synopsis "urlesc") +; (description +; "Package urlesc implements query escaping as per @url{https://rfc-editor.org/rfc/rfc3986.html,RFC 3986}. +;It contains some parts of the net/url package, modified so as to allow +;some reserved characters incorrectly escaped by net/url. +;See @url{https://github.com/golang/go/issues/5684,https://github.com/golang/go/issues/5684} +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-go-openapi-swag-0.19.2 +; (package +; (name "go-github-com-go-openapi-swag") +; (version "0.19.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/go-openapi/swag") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1mlxlajx2p9wjm72rmqjrx5g49q2sn04y45s3nrykkf6jqlq1v4z")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/go-openapi/swag")) +; (propagated-inputs +; `(("go-github-com-sourcegraph-go-diff-0.5.1" +; ,go-github-com-sourcegraph-go-diff-0.5.1) +; ("go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422" +; ,go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422) +; ("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) +; ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" +; ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) +; ("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0) +; ("go-github-com-mailru-easyjson-0.0.0-20190614124828-94de47d64c63" +; ,go-github-com-mailru-easyjson-0.0.0-20190614124828-94de47d64c63) +; ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://github.com/go-openapi/swag") +; (synopsis "Swag") +; (description +; "Package swag contains a bunch of helper functions for go-openapi and go-swagger projects. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-go-openapi-jsonpointer-0.19.2 +; (package +; (name "go-github-com-go-openapi-jsonpointer") +; (version "0.19.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/go-openapi/jsonpointer") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1s3cqf4svrbygvvpvi7hf122szsgihas52vqh0bba3avf4w03g9n")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/go-openapi/jsonpointer")) +; (propagated-inputs +; `(("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0) +; ("go-github-com-go-openapi-swag-0.19.2" +; ,go-github-com-go-openapi-swag-0.19.2))) +; (home-page "https://github.com/go-openapi/jsonpointer") +; (synopsis "gojsonpointer") +; (description +; "@url{https://raw.githubusercontent.com/go-openapi/jsonpointer/master/LICENSE,(img (@ (src http://img.shields.io/badge/license-Apache%20v2-orange.svg) (alt license)))} @url{http://godoc.org/github.com/go-openapi/jsonpointer,(img (@ (src https://godoc.org/github.com/go-openapi/jsonpointer?status.svg=) (alt GoDoc)))} +;An implementation of JSON Pointer - Go language") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190613194153-d28f0bde5980") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "18xj31h70m7xxb7gc86n9i21w6d7djbjz67zfaljm4jqskz6hxkf")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-text-0.3.2 +; (package +; (name "go-golang-org-x-text") +; (version "0.3.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/text") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0flv9idw0jm5nm8lx25xqanbkqgfiym6619w575p7nrdh0riqwqh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/text")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" +; ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) +; (home-page "https://golang.org/x/text") +; (synopsis "Go Text") +; (description +; "text is a repository of text-related packages related to internationalization +;(i18n) and localization (l10n), such as character encodings, text +;transformations, and locale-specific text handling. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-go-openapi-jsonreference-0.19.2 +; (package +; (name "go-github-com-go-openapi-jsonreference") +; (version "0.19.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/go-openapi/jsonreference") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0v933yvcwyzzlpdxwb9204ki7lls2rwfd96ww2i901ndvz37kdf8")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/go-openapi/jsonreference")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) +; ("go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980" +; ,go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980) +; ("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0) +; ("go-github-com-go-openapi-jsonpointer-0.19.2" +; ,go-github-com-go-openapi-jsonpointer-0.19.2) +; ("go-github-com-puerkitobio-urlesc-0.0.0-20170810143723-de5bf2ad4578" +; ,go-github-com-puerkitobio-urlesc-0.0.0-20170810143723-de5bf2ad4578) +; ("go-github-com-puerkitobio-purell-1.1.1" +; ,go-github-com-puerkitobio-purell-1.1.1))) +; (home-page "https://github.com/go-openapi/jsonreference") +; (synopsis "gojsonreference") +; (description +; "@url{https://raw.githubusercontent.com/go-openapi/jsonreference/master/LICENSE,(img (@ (src http://img.shields.io/badge/license-Apache%20v2-orange.svg) (alt license)))} @url{http://godoc.org/github.com/go-openapi/jsonreference,(img (@ (src https://godoc.org/github.com/go-openapi/jsonreference?status.svg=) (alt GoDoc)))} +;An implementation of JSON Reference - Go language") +; (license license:asl2.0))) +; +;(define-public go-github-com-kr-pty-1.1.5 +; (package +; (name "go-github-com-kr-pty") +; (version "1.1.5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kr/pty") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1bpq77b90z72cv9h66dvxsg2j197ylpgcps23xsjfbs752bykfw1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kr/pty")) +; (home-page "https://github.com/kr/pty") +; (synopsis "pty") +; (description +; "Package pty is a wrapper for github.com/creack/pty, which provides +;functions for working with Unix terminals. +;") +; (license license:expat))) +; +;(define-public go-github-com-stretchr-objx-0.2.0 +; (package +; (name "go-github-com-stretchr-objx") +; (version "0.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/objx") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0pcdvakxgddaiwcdj73ra4da05a3q4cgwbpm2w75ycq4kzv8ij8k")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/objx")) +; (propagated-inputs +; `(("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://github.com/stretchr/objx") +; (synopsis "Objx") +; (description +; "Objx - Go package for dealing with maps, slices, JSON and other data. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20190611184440-5c40567a22f8 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20190611184440-5c40567a22f8") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "17g8fb9vy2sqq8vgz8jdvf6c6d2290gm2qs0i4yzsd86mgn4dlrg")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" +; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) +; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" +; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20190827160401-ba9fcec4b297 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190827160401-ba9fcec4b297") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1hbqvy6r0s5h0dpdqw8fynl3cq0acin3iyqki9xvl5r8h33yb9bx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190616124812-15dcb6c0061f +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190616124812-15dcb6c0061f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1qfkkysbyn44nyx57cq8mmw1cjgpxi9gi9xrf6kljmd9c1416zdd")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20190614205625-5aca471b1d59 +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20190614205625-5aca471b1d59") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1i4h3q83w4y9s065w0wnnnwlssy69jbrj08k47ppsa8dnv85kyrf")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" +; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-github-com-go-openapi-spec-0.19.3 +; (package +; (name "go-github-com-go-openapi-spec") +; (version "0.19.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/go-openapi/spec") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1dikq1p550vj5i9y918s075pgk0fxkixxk3fb70ri7wkm51s6nlj")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/go-openapi/spec")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) +; ("go-golang-org-x-tools-0.0.0-20190614205625-5aca471b1d59" +; ,go-golang-org-x-tools-0.0.0-20190614205625-5aca471b1d59) +; ("go-golang-org-x-sys-0.0.0-20190616124812-15dcb6c0061f" +; ,go-golang-org-x-sys-0.0.0-20190616124812-15dcb6c0061f) +; ("go-golang-org-x-net-0.0.0-20190827160401-ba9fcec4b297" +; ,go-golang-org-x-net-0.0.0-20190827160401-ba9fcec4b297) +; ("go-golang-org-x-crypto-0.0.0-20190611184440-5c40567a22f8" +; ,go-golang-org-x-crypto-0.0.0-20190611184440-5c40567a22f8) +; ("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0) +; ("go-github-com-stretchr-objx-0.2.0" +; ,go-github-com-stretchr-objx-0.2.0) +; ("go-github-com-kr-pty-1.1.5" ,go-github-com-kr-pty-1.1.5) +; ("go-github-com-go-openapi-swag-0.19.5" +; ,go-github-com-go-openapi-swag-0.19.5) +; ("go-github-com-go-openapi-jsonreference-0.19.2" +; ,go-github-com-go-openapi-jsonreference-0.19.2) +; ("go-github-com-go-openapi-jsonpointer-0.19.3" +; ,go-github-com-go-openapi-jsonpointer-0.19.3))) +; (home-page "https://github.com/go-openapi/spec") +; (synopsis "OAI object model") +; (description "The object model for OpenAPI specification documents.") +; (license license:asl2.0))) +; +;(define-public go-github-com-kr-pretty-0.1.0 +; (package +; (name "go-github-com-kr-pretty") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kr/pretty") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "18m4pwg2abd0j9cn5v3k2ksk9ig4vlwxmlw9rrglanziv9l967qp")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kr/pretty")) +; (propagated-inputs +; `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) +; (home-page "https://github.com/kr/pretty") +; (synopsis #f) +; (description +; "Package pretty provides pretty-printing for Go values. This is +;useful during debugging, to avoid wrapping long output lines in +;the terminal. +;") +; (license license:expat))) +; +;(define-public go-github-com-mailru-easyjson-0.0.0-20190614124828-94de47d64c63 +; (package +; (name "go-github-com-mailru-easyjson") +; (version "0.0.0-20190614124828-94de47d64c63") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mailru/easyjson") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1km0kkh7cf7dlz5pqi9yr1wamv0167y41cyv1dbrcxfdmwgpfd23")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mailru/easyjson")) +; (home-page "https://github.com/mailru/easyjson") +; (synopsis "easyjson") +; (description +; "Package easyjson contains marshaler/unmarshaler interfaces and helper functions. +;") +; (license license:expat))) +; +;(define-public go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127 +; (package +; (name "go-gopkg-in-check-v1") +; (version "1.0.0-20180628173108-788fd7840127") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/check.v1") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0v3bim0j375z81zrpr5qv42knqs0y2qv2vkjiqi5axvb78slki1a")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) +; (home-page "https://gopkg.in/check.v1") +; (synopsis "Instructions") +; (description +; "Package check is a rich testing extension for Go's testing package. +;") +; (license license:bsd-2))) +; +;(define-public go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422 +; (package +; (name "go-golang-org-x-lint") +; (version "0.0.0-20190409202823-959b441ac422") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/lint") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1mgcv5f00pkzsbwnq2y7vqvd1b4lr5a3s47cphh2qv4indfk7pck")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/lint")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" +; ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd))) +; (home-page "https://golang.org/x/lint") +; (synopsis "Installation") +; (description "Package lint contains a linter for Go source code. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-gogo-protobuf-1.1.1 +; (package +; (name "go-github-com-gogo-protobuf") +; (version "1.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/gogo/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1525pq7r6h3s8dncvq8gxi893p2nq8dxpzvq0nfl5b4p6mq0v1c2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/gogo/protobuf")) +; (home-page "https://github.com/gogo/protobuf") +; (synopsis "Protocol Buffers for Go with Gadgets") +; (description +; "gogoprotobuf is a fork of @url{https://github.com/golang/protobuf,golang/protobuf} with extra code generation features.") +; (license license:bsd-3))) +; +;(define-public go-github-com-shurcool-go-0.0.0-20180423040247-9e1955d9fb6e +; (package +; (name "go-github-com-shurcool-go") +; (version "0.0.0-20180423040247-9e1955d9fb6e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/shurcooL/go") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1lad9bvs75jsn61cfza19739c2c057k0bqxg2b4xz3z3l4w1mkqj")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/shurcooL/go")) +; (home-page "https://github.com/shurcooL/go") +; (synopsis "go") +; (description "Common Go code.") +; (license license:expat))) +; +;(define-public go-github-com-shurcool-go-goon-0.0.0-20170922171312-37c2f522c041 +; (package +; (name "go-github-com-shurcool-go-goon") +; (version "0.0.0-20170922171312-37c2f522c041") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/shurcooL/go-goon") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "17ac6j6msdcxbmfhq6pxhw5z339b87bd6ciln9909drjv2szyxqv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/shurcooL/go-goon")) +; (home-page "https://github.com/shurcooL/go-goon") +; (synopsis "goon") +; (description +; "Package goon is a deep pretty printer with Go-like notation. It implements the goon specification. +;") +; (license license:expat))) +; +;(define-public go-sourcegraph-com-sqs-pbtypes-0.0.0-20180604144634-d3ebe8f20ae4 +; (package +; (name "go-sourcegraph-com-sqs-pbtypes") +; (version "0.0.0-20180604144634-d3ebe8f20ae4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/sqs/pbtypes") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0vcyqq4jc2jv1wh288qdxv51qxcfj07lvnlf37pjicsd2yrb7yrr")))) +; (build-system go-build-system) +; (arguments '(#:import-path "sourcegraph.com/sqs/pbtypes")) +; (home-page "https://sourcegraph.com/sqs/pbtypes") +; (synopsis "pbtypes") +; (description +; "Package pbtypes contains protocol buffer types (Timestamp, Void, +;etc.) and related helpers. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-sourcegraph-go-diff-0.5.1 +; (package +; (name "go-github-com-sourcegraph-go-diff") +; (version "0.5.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/sourcegraph/go-diff") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0acabccjmxgdvhyd7fr0krlf7ymc7mngdq292n03hfys9nrnb0b2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/sourcegraph/go-diff")) +; (propagated-inputs +; `(("go-sourcegraph-com-sqs-pbtypes-0.0.0-20180604144634-d3ebe8f20ae4" +; ,go-sourcegraph-com-sqs-pbtypes-0.0.0-20180604144634-d3ebe8f20ae4) +; ("go-github-com-shurcool-go-goon-0.0.0-20170922171312-37c2f522c041" +; ,go-github-com-shurcool-go-goon-0.0.0-20170922171312-37c2f522c041) +; ("go-github-com-shurcool-go-0.0.0-20180423040247-9e1955d9fb6e" +; ,go-github-com-shurcool-go-0.0.0-20180423040247-9e1955d9fb6e) +; ("go-github-com-gogo-protobuf-1.1.1" +; ,go-github-com-gogo-protobuf-1.1.1))) +; (home-page "https://github.com/sourcegraph/go-diff") +; (synopsis "go-diff") +; (description "Diff parser and printer for Go.") +; (license license:expat))) +; +;(define-public go-github-com-go-openapi-swag-0.19.5 +; (package +; (name "go-github-com-go-openapi-swag") +; (version "0.19.5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/go-openapi/swag") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1z34vqc5yz6rzvarrvlhkimxx33p74iaxb28l1mv716njvlsmjhg")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/go-openapi/swag")) +; (propagated-inputs +; `(("go-github-com-sourcegraph-go-diff-0.5.1" +; ,go-github-com-sourcegraph-go-diff-0.5.1) +; ("go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422" +; ,go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422) +; ("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) +; ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" +; ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) +; ("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0) +; ("go-github-com-mailru-easyjson-0.0.0-20190614124828-94de47d64c63" +; ,go-github-com-mailru-easyjson-0.0.0-20190614124828-94de47d64c63) +; ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://github.com/go-openapi/swag") +; (synopsis "Swag") +; (description +; "Package swag contains a bunch of helper functions for go-openapi and go-swagger projects. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-google-uuid-1.1.1 +; (package +; (name "go-github-com-google-uuid") +; (version "1.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/uuid") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0hfxcf9frkb57k6q0rdkrmnfs78ms21r1qfk9fhlqga2yh5xg8zb")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/uuid")) +; (home-page "https://github.com/google/uuid") +; (synopsis "uuid") +; (description "Package uuid generates and inspects UUIDs. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-docopt-docopt-go-0.0.0-20180111231733-ee0de3bc6815 +; (package +; (name "go-github-com-docopt-docopt-go") +; (version "0.0.0-20180111231733-ee0de3bc6815") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/docopt/docopt.go") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0hlra7rmi5pmd7d93rv56ahiy4qkgmq8a6mz0jpadvbi5qh8lq6j")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/docopt/docopt-go")) +; (home-page "https://github.com/docopt/docopt-go") +; (synopsis "docopt-go") +; (description +; "Package docopt parses command-line arguments based on a help message. +;") +; (license license:expat))) +; +;(define-public go-github-com-golang-protobuf-1.3.3 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.3.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1cyyr52yhj3fzrily3rmsbqyj8va4ld75lmry0857m39rgpv8sy1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-github-com-googleapis-gnostic-0.4.1 +; (package +; (name "go-github-com-googleapis-gnostic") +; (version "0.4.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/gnostic") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1fw28m3ach5pkcdh4ijd6s7w09j0n88p6mah3hp0k8918jsc6mj9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/googleapis/gnostic")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) +; ("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" +; ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) +; ("go-github-com-kr-pretty-0.2.0" ,go-github-com-kr-pretty-0.2.0) +; ("go-github-com-golang-protobuf-1.3.3" +; ,go-github-com-golang-protobuf-1.3.3) +; ("go-github-com-docopt-docopt-go-0.0.0-20180111231733-ee0de3bc6815" +; ,go-github-com-docopt-docopt-go-0.0.0-20180111231733-ee0de3bc6815))) +; (home-page "https://github.com/googleapis/gnostic") +; (synopsis "â¨\x81 gnostic") +; (description +; "Gnostic is a tool for building better REST APIs through knowledge. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-mitchellh-mapstructure-1.1.2 +; (package +; (name "go-github-com-mitchellh-mapstructure") +; (version "1.1.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mitchellh/mapstructure") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "03bpv28jz9zhn4947saqwi328ydj7f6g6pf1m2d4m5zdh5jlfkrr")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mitchellh/mapstructure")) +; (home-page "https://github.com/mitchellh/mapstructure") +; (synopsis "mapstructure") +; (description +; "Package mapstructure exposes functionality to convert one arbitrary +;Go type into another, typically to convert a map[string]interface{} +;into a native Go structure. +;") +; (license license:expat))) +; +;(define-public go-github-com-munnerz-goautoneg-0.0.0-20120707110453-a547fc61f48d +; (package +; (name "go-github-com-munnerz-goautoneg") +; (version "0.0.0-20120707110453-a547fc61f48d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/munnerz/goautoneg") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19khhn5xhqv1yp7d6k987gh5w5rhrjnp4p0c6fyrd8z6lzz5h9qi")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/munnerz/goautoneg")) +; (home-page "https://github.com/munnerz/goautoneg") +; (synopsis #f) +; (description #f) +; (license license:bsd-3))) +; +;(define-public go-github-com-onsi-ginkgo-0.0.0-20170829012221-11459a886d9c +; (package +; (name "go-github-com-onsi-ginkgo") +; (version "0.0.0-20170829012221-11459a886d9c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/onsi/ginkgo") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1nswc1fnrrs792qbix05h91bilj8rr3wxmxgwi97p2gjk0r292zh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/onsi/ginkgo")) +; (home-page "https://github.com/onsi/ginkgo") +; (synopsis "Ginkgo 2.0 Release Candidate is available!") +; (description "Ginkgo is a BDD-style testing framework for Golang +;") +; (license license:expat))) +; +;(define-public go-github-com-onsi-gomega-0.0.0-20170829124025-dcabb60a477c +; (package +; (name "go-github-com-onsi-gomega") +; (version "0.0.0-20170829124025-dcabb60a477c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/onsi/gomega") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1775lv5jbsgv3ghq5v2827slqlhqdadrzc1nkpq4y0hdv2qzrgkm")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/onsi/gomega")) +; (home-page "https://github.com/onsi/gomega") +; (synopsis ": a BDD Testing Framework for Golang") +; (description +; "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library. +;") +; (license license:expat))) +; +;(define-public go-github-com-spf13-pflag-0.0.0-20170130214245-9ff6c6923cff +; (package +; (name "go-github-com-spf13-pflag") +; (version "0.0.0-20170130214245-9ff6c6923cff") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/spf13/pflag") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0mfrxzyl8x7araa126lh8l3sihbbgfbzgkrg3v3cx7y4n3wrsqvn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/spf13/pflag")) +; (home-page "https://github.com/spf13/pflag") +; (synopsis "Description") +; (description +; "Package pflag is a drop-in replacement for Go's flag package, implementing +;POSIX/GNU-style --flags. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20200323222414-85ca7c5b95cd") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1504qkgbhhm4f0bhk77v2r1lj6x171ay5m79alkg78wjb5cign5l")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20200324143707-d3edc9973b7e +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20200324143707-d3edc9973b7e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "12zbjwcsh9b0lwycqlkrnbyg5a6a9dzgj8hhgq399bdda5bd97y7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" +; ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-k8s-io-gengo-0.0.0-20200413195148-3a45101e95ac +; (package +; (name "go-k8s-io-gengo") +; (version "0.0.0-20200413195148-3a45101e95ac") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes/gengo") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0x46jq6rv8z0y96231rfgzvfscgy5hp5aacid3r93zy0rq9r37g6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "k8s.io/gengo")) +; (home-page "https://k8s.io/gengo") +; (synopsis "gengo") +; (description +; "This package provides a package for generating things based on go files. This mechanism was first used +;in Kubernetes and is split out here for ease of reuse and maintainability.") +; (license license:asl2.0))) +; +;(define-public go-sigs-k8s-io-structured-merge-diff-v4-4.0.2 +; (package +; (name "go-sigs-k8s-io-structured-merge-diff-v4") +; (version "4.0.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes-sigs/structured-merge-diff") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1z60sw6nrlzyddyx5pvh6afwf8jvmn8c2zw15hklq17iyvj3lj7a")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path +; "sigs.k8s.io/structured-merge-diff/v4" +; #:unpack-path +; "sigs.k8s.io/structured-merge-diff/v4")) +; (propagated-inputs +; `(("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0) +; ("go-github-com-modern-go-reflect2-1.0.1" +; ,go-github-com-modern-go-reflect2-1.0.1) +; ("go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd" +; ,go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd) +; ("go-github-com-json-iterator-go-1.1.6" +; ,go-github-com-json-iterator-go-1.1.6) +; ("go-github-com-google-gofuzz-1.0.0" +; ,go-github-com-google-gofuzz-1.0.0) +; ("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1))) +; (home-page "https://sigs.k8s.io/structured-merge-diff/v4") +; (synopsis "Structured Merge and Diff") +; (description +; "This repo contains code which implements the Kubernetes \"apply\" operation.") +; (license license:asl2.0))) +; +;(define-public go-sigs-k8s-io-yaml-1.1.0 +; (package +; (name "go-sigs-k8s-io-yaml") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes-sigs/yaml") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1p7hvjdr5jsyk7nys1g1pmgnf3ys6n320i6hds85afppk81k01kb")))) +; (build-system go-build-system) +; (arguments '(#:import-path "sigs.k8s.io/yaml")) +; (home-page "https://sigs.k8s.io/yaml") +; (synopsis "YAML marshaling and unmarshaling support for Go") +; (description +; "kubernetes-sigs/yaml is a permanent fork of @url{https://github.com/ghodss/yaml,ghodss/yaml}.") +; (license #f))) +; +;(define-public go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd +; (package +; (name "go-k8s-io-kube-openapi") +; (version "0.0.0-20201113171705-d219536bb9fd") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes/kube-openapi") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "11d420a3rxznh3f6x5a6xp22zjwv6jfq4w1gb6srqb4vn9rhgrka")))) +; (build-system go-build-system) +; (arguments '(#:import-path "k8s.io/kube-openapi")) +; (propagated-inputs +; `(("go-sigs-k8s-io-yaml-1.1.0" ,go-sigs-k8s-io-yaml-1.1.0) +; ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.2" +; ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.2) +; ("go-k8s-io-klog-v2-2.0.0" ,go-k8s-io-klog-v2-2.0.0) +; ("go-k8s-io-gengo-0.0.0-20200413195148-3a45101e95ac" +; ,go-k8s-io-gengo-0.0.0-20200413195148-3a45101e95ac) +; ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) +; ("go-golang-org-x-net-0.0.0-20200324143707-d3edc9973b7e" +; ,go-golang-org-x-net-0.0.0-20200324143707-d3edc9973b7e) +; ("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0) +; ("go-github-com-spf13-pflag-0.0.0-20170130214245-9ff6c6923cff" +; ,go-github-com-spf13-pflag-0.0.0-20170130214245-9ff6c6923cff) +; ("go-github-com-onsi-gomega-0.0.0-20170829124025-dcabb60a477c" +; ,go-github-com-onsi-gomega-0.0.0-20170829124025-dcabb60a477c) +; ("go-github-com-onsi-ginkgo-0.0.0-20170829012221-11459a886d9c" +; ,go-github-com-onsi-ginkgo-0.0.0-20170829012221-11459a886d9c) +; ("go-github-com-munnerz-goautoneg-0.0.0-20120707110453-a547fc61f48d" +; ,go-github-com-munnerz-goautoneg-0.0.0-20120707110453-a547fc61f48d) +; ("go-github-com-mitchellh-mapstructure-1.1.2" +; ,go-github-com-mitchellh-mapstructure-1.1.2) +; ("go-github-com-json-iterator-go-1.1.6" +; ,go-github-com-json-iterator-go-1.1.6) +; ("go-github-com-googleapis-gnostic-0.4.1" +; ,go-github-com-googleapis-gnostic-0.4.1) +; ("go-github-com-google-uuid-1.1.1" ,go-github-com-google-uuid-1.1.1) +; ("go-github-com-google-gofuzz-1.0.0" +; ,go-github-com-google-gofuzz-1.0.0) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.3.3" +; ,go-github-com-golang-protobuf-1.3.3) +; ("go-github-com-go-openapi-swag-0.19.5" +; ,go-github-com-go-openapi-swag-0.19.5) +; ("go-github-com-go-openapi-spec-0.19.3" +; ,go-github-com-go-openapi-spec-0.19.3) +; ("go-github-com-go-openapi-jsonreference-0.19.3" +; ,go-github-com-go-openapi-jsonreference-0.19.3) +; ("go-github-com-go-openapi-jsonpointer-0.19.3" +; ,go-github-com-go-openapi-jsonpointer-0.19.3) +; ("go-github-com-ghodss-yaml-0.0.0-20150909031657-73d445a93680" +; ,go-github-com-ghodss-yaml-0.0.0-20150909031657-73d445a93680) +; ("go-github-com-emicklei-go-restful-0.0.0-20170410110728-ff4f55a20633" +; ,go-github-com-emicklei-go-restful-0.0.0-20170410110728-ff4f55a20633) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1) +; ("go-github-com-asaskevich-govalidator-0.0.0-20190424111038-f61b66f89f4a" +; ,go-github-com-asaskevich-govalidator-0.0.0-20190424111038-f61b66f89f4a) +; ("go-github-com-nytimes-gziphandler-0.0.0-20170623195520-56545f4a5d46" +; ,go-github-com-nytimes-gziphandler-0.0.0-20170623195520-56545f4a5d46))) +; (home-page "https://k8s.io/kube-openapi") +; (synopsis "Kube OpenAPI") +; (description +; "This repo is the home for Kubernetes OpenAPI discovery spec generation. The goal +;is to support a subset of OpenAPI features to satisfy kubernetes use-cases but +;implement that subset with little to no assumption about the structure of the +;code or routes. Thus, there should be no kubernetes specific code in this repo.") +; (license license:asl2.0))) +; +;(define-public go-gopkg-in-yaml-v2-2.2.1 +; (package +; (name "go-gopkg-in-yaml-v2") +; (version "2.2.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/yaml.v2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0dwjrs2lp2gdlscs7bsrmyc5yf6mm4fvgw71bzr9mv2qrd2q73s1")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" +; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) +; (home-page "https://gopkg.in/yaml.v2") +; (synopsis "YAML support for the Go language") +; (description "Package yaml implements YAML support for the Go language. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-google-gofuzz-1.0.0 +; (package +; (name "go-github-com-google-gofuzz") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/gofuzz") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0qz439qvccm91w0mmjz4fqgx48clxdwagkvvx89cr43q1d4iry36")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/gofuzz")) +; (home-page "https://github.com/google/gofuzz") +; (synopsis "gofuzz") +; (description +; "Package fuzz is a library for populating go objects with random values. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-json-iterator-go-1.1.6 +; (package +; (name "go-github-com-json-iterator-go") +; (version "1.1.6") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/json-iterator/go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "08caswxvdn7nvaqyj5kyny6ghpygandlbw9vxdj7l5vkp7q0s43r")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/json-iterator/go")) +; (home-page "https://github.com/json-iterator/go") +; (synopsis "Benchmark") +; (description +; "Package jsoniter implements encoding and decoding of JSON as defined in +;@url{https://rfc-editor.org/rfc/rfc4627.html,RFC 4627} and provides interfaces with identical syntax of standard lib encoding/json. +;Converting from encoding/json to jsoniter is no more than replacing the package with jsoniter +;and variable type declarations (if any). +;jsoniter interfaces gives 100% compatibility with code using standard lib. +;") +; (license license:expat))) +; +;(define-public go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd +; (package +; (name "go-github-com-modern-go-concurrent") +; (version "0.0.0-20180306012644-bacd9c7ef1dd") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/modern-go/concurrent") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0s0fxccsyb8icjmiym5k7prcqx36hvgdwl588y0491gi18k5i4zs")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/modern-go/concurrent")) +; (home-page "https://github.com/modern-go/concurrent") +; (synopsis "concurrent") +; (description +; "because sync.Map is only available in go 1.9, we can use concurrent.Map to make code portable") +; (license license:asl2.0))) +; +;(define-public go-github-com-modern-go-reflect2-1.0.1 +; (package +; (name "go-github-com-modern-go-reflect2") +; (version "1.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/modern-go/reflect2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "06a3sablw53n1dqqbr2f53jyksbxdmmk8axaas4yvnhyfi55k4lf")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/modern-go/reflect2")) +; (home-page "https://github.com/modern-go/reflect2") +; (synopsis "reflect2") +; (description "reflect api that avoids runtime reflect.Value cost") +; (license license:asl2.0))) +; +;(define-public go-sigs-k8s-io-structured-merge-diff-v4-4.0.3 +; (package +; (name "go-sigs-k8s-io-structured-merge-diff-v4") +; (version "4.0.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes-sigs/structured-merge-diff") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1jv60bkk0z437bsz5ldjyc006k20njmpl0xfl8p3g1q0bx0fkypa")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path +; "sigs.k8s.io/structured-merge-diff/v4" +; #:unpack-path +; "sigs.k8s.io/structured-merge-diff/v4")) +; (propagated-inputs +; `(("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0) +; ("go-github-com-modern-go-reflect2-1.0.1" +; ,go-github-com-modern-go-reflect2-1.0.1) +; ("go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd" +; ,go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd) +; ("go-github-com-json-iterator-go-1.1.6" +; ,go-github-com-json-iterator-go-1.1.6) +; ("go-github-com-google-gofuzz-1.0.0" +; ,go-github-com-google-gofuzz-1.0.0) +; ("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1))) +; (home-page "https://sigs.k8s.io/structured-merge-diff/v4") +; (synopsis "Structured Merge and Diff") +; (description +; "This repo contains code which implements the Kubernetes \"apply\" operation.") +; (license license:asl2.0))) +; +;(define-public go-gopkg-in-yaml-v2-2.2.8 +; (package +; (name "go-gopkg-in-yaml-v2") +; (version "2.2.8") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/yaml.v2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1inf7svydzscwv9fcjd2rm61a4xjk6jkswknybmns2n58shimapw")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" +; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) +; (home-page "https://gopkg.in/yaml.v2") +; (synopsis "YAML support for the Go language") +; (description "Package yaml implements YAML support for the Go language. +;") +; (license license:asl2.0))) +; +;(define-public go-sigs-k8s-io-yaml-1.2.0 +; (package +; (name "go-sigs-k8s-io-yaml") +; (version "1.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes-sigs/yaml") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "059a1chkd6afyvqszrx7h93k6cgik3ia92x29f5whpwi66461pzq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "sigs.k8s.io/yaml")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://sigs.k8s.io/yaml") +; (synopsis "YAML marshaling and unmarshaling support for Go") +; (description +; "kubernetes-sigs/yaml is a permanent fork of @url{https://github.com/ghodss/yaml,ghodss/yaml}.") +; (license #f))) +; +;(define-public go-k8s-io-apimachinery-0.20.6 +; (package +; (name "go-k8s-io-apimachinery") +; (version "0.20.6") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes/apimachinery") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "16952v7zjk3pdyw5r3wy28qkcfx3risid0847pwdw8gmalwxr237")))) +; (build-system go-build-system) +; (arguments '(#:import-path "k8s.io/apimachinery")) +; (propagated-inputs +; `(("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) +; ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.3" +; ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.3) +; ("go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd" +; ,go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd) +; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) +; ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) +; ("go-gopkg-in-inf-v0-0.9.1" ,go-gopkg-in-inf-v0-0.9.1) +; ("go-google-golang-org-protobuf-1.25.0" +; ,go-google-golang-org-protobuf-1.25.0) +; ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) +; ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" +; ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) +; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" +; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-onsi-gomega-1.7.0" ,go-github-com-onsi-gomega-1.7.0) +; ("go-github-com-onsi-ginkgo-1.11.0" ,go-github-com-onsi-ginkgo-1.11.0) +; ("go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f" +; ,go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f) +; ("go-github-com-modern-go-reflect2-1.0.1" +; ,go-github-com-modern-go-reflect2-1.0.1) +; ("go-github-com-json-iterator-go-1.1.10" +; ,go-github-com-json-iterator-go-1.1.10) +; ("go-github-com-hashicorp-golang-lru-0.5.1" +; ,go-github-com-hashicorp-golang-lru-0.5.1) +; ("go-github-com-googleapis-gnostic-0.4.1" +; ,go-github-com-googleapis-gnostic-0.4.1) +; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) +; ("go-github-com-google-gofuzz-1.1.0" +; ,go-github-com-google-gofuzz-1.1.0) +; ("go-github-com-google-go-cmp-0.5.2" +; ,go-github-com-google-go-cmp-0.5.2) +; ("go-github-com-golang-protobuf-1.4.3" +; ,go-github-com-golang-protobuf-1.4.3) +; ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" +; ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) +; ("go-github-com-gogo-protobuf-1.3.2" +; ,go-github-com-gogo-protobuf-1.3.2) +; ("go-github-com-fsnotify-fsnotify-1.4.9" +; ,go-github-com-fsnotify-fsnotify-1.4.9) +; ("go-github-com-evanphx-json-patch-4.9.0+incompatible" +; ,go-github-com-evanphx-json-patch-4.9.0+incompatible) +; ("go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153" +; ,go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153) +; ("go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96" +; ,go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://k8s.io/apimachinery") +; (synopsis "apimachinery") +; (description +; "Scheme, typing, encoding, decoding, and conversion packages for Kubernetes and Kubernetes-like API objects.") +; (license license:asl2.0))) +; +;(define-public go-k8s-io-client-go-0.20.6 +; (package +; (name "go-k8s-io-client-go") +; (version "0.20.6") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes/client-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1fpz56pfadbfp8mlzmzicfmlgk5zqbk2rdwnr8c8h6ypjd5xjcvz")))) +; (build-system go-build-system) +; (arguments '(#:import-path "k8s.io/client-go")) +; (propagated-inputs +; `(("go-k8s-io-apimachinery-0.20.6" ,go-k8s-io-apimachinery-0.20.6) +; ("go-k8s-io-api-0.20.6" ,go-k8s-io-api-0.20.6) +; ("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) +; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" +; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) +; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) +; ("go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e" +; ,go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e) +; ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" +; ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) +; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" +; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) +; ("go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0" +; ,go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) +; ("go-github-com-peterbourgon-diskv-2.0.1+incompatible" +; ,go-github-com-peterbourgon-diskv-2.0.1+incompatible) +; ("go-github-com-imdario-mergo-0.3.5" +; ,go-github-com-imdario-mergo-0.3.5) +; ("go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7" +; ,go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7) +; ("go-github-com-googleapis-gnostic-0.4.1" +; ,go-github-com-googleapis-gnostic-0.4.1) +; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) +; ("go-github-com-google-gofuzz-1.1.0" +; ,go-github-com-google-gofuzz-1.1.0) +; ("go-github-com-google-go-cmp-0.5.2" +; ,go-github-com-google-go-cmp-0.5.2) +; ("go-github-com-golang-protobuf-1.4.3" +; ,go-github-com-golang-protobuf-1.4.3) +; ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" +; ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) +; ("go-github-com-gogo-protobuf-1.3.2" +; ,go-github-com-gogo-protobuf-1.3.2) +; ("go-github-com-evanphx-json-patch-4.9.0+incompatible" +; ,go-github-com-evanphx-json-patch-4.9.0+incompatible) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1) +; ("go-github-com-azure-go-autorest-autorest-adal-0.9.5" +; ,go-github-com-azure-go-autorest-autorest-adal-0.9.5) +; ("go-github-com-azure-go-autorest-autorest-0.11.1" +; ,go-github-com-azure-go-autorest-autorest-0.11.1) +; ("go-cloud-google-com-go-0.54.0" ,go-cloud-google-com-go-0.54.0))) +; (home-page "https://k8s.io/client-go") +; (synopsis "client-go") +; (description +; "Go clients for talking to a @url{http://kubernetes.io/,kubernetes} cluster.") +; (license license:asl2.0))) +; +;(define-public go-k8s-io-component-base-0.20.6 +; (package +; (name "go-k8s-io-component-base") +; (version "0.20.6") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes/component-base") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1987vm5lhbnn4ynrpzdgz3873lp78664cpdpkbv9jwnhzqdhpyhf")))) +; (build-system go-build-system) +; (arguments '(#:import-path "k8s.io/component-base")) +; (propagated-inputs +; `(("go-k8s-io-client-go-0.20.6" ,go-k8s-io-client-go-0.20.6) +; ("go-k8s-io-apimachinery-0.20.6" ,go-k8s-io-apimachinery-0.20.6) +; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" +; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) +; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) +; ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) +; ("go-go-uber-org-multierr-1.1.0" ,go-go-uber-org-multierr-1.1.0) +; ("go-go-uber-org-atomic-1.4.0" ,go-go-uber-org-atomic-1.4.0) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) +; ("go-github-com-sirupsen-logrus-1.6.0" +; ,go-github-com-sirupsen-logrus-1.6.0) +; ("go-github-com-prometheus-procfs-0.2.0" +; ,go-github-com-prometheus-procfs-0.2.0) +; ("go-github-com-prometheus-common-0.10.0" +; ,go-github-com-prometheus-common-0.10.0) +; ("go-github-com-prometheus-client-model-0.2.0" +; ,go-github-com-prometheus-client-model-0.2.0) +; ("go-github-com-prometheus-client-golang-1.7.1" +; ,go-github-com-prometheus-client-golang-1.7.1) +; ("go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd" +; ,go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd) +; ("go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369" +; ,go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369) +; ("go-github-com-google-go-cmp-0.5.2" +; ,go-github-com-google-go-cmp-0.5.2) +; ("go-github-com-go-logr-logr-0.2.0" ,go-github-com-go-logr-logr-0.2.0) +; ("go-github-com-blang-semver-3.5.1+incompatible" +; ,go-github-com-blang-semver-3.5.1+incompatible))) +; (home-page "https://k8s.io/component-base") +; (synopsis "component-base") +; (description +; "Implement KEP 32: @url{https://github.com/kubernetes/enhancements/blob/master/keps/sig-cluster-lifecycle/wgs/783-component-base/README.md,https://github.com/kubernetes/enhancements/blob/master/keps/sig-cluster-lifecycle/wgs/783-component-base/README.md}") +; (license license:asl2.0))) +; +;(define-public go-github-com-yuin-goldmark-1.1.27 +; (package +; (name "go-github-com-yuin-goldmark") +; (version "1.1.27") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/yuin/goldmark") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1872cqnii0kwiqcy81yin0idvjy5mdy4zlzz0csb319lcjs3b923")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/yuin/goldmark")) +; (home-page "https://github.com/yuin/goldmark") +; (synopsis "goldmark") +; (description +; "Package goldmark implements functions to convert markdown text to a desired format. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-mod-0.2.0 +; (package +; (name "go-golang-org-x-mod") +; (version "0.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/mod") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1fp6885dclq77mh73v7i54v2b9llpv4di193zc8vmsbbkkc483cl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/mod")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" +; ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) +; ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" +; ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) +; ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" +; ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) +; (home-page "https://golang.org/x/mod") +; (synopsis "mod") +; (description +; "This repository holds packages for writing tools +;that work directly with Go module mechanics. +;That is, it is for direct manipulation of Go modules themselves.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20200226121028-0de0cce0169b") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1db7s5kbzyh2zd5lpv05n7hp8wbwdvgk0wpiwrlnig94mkr0y5aq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e +; (package +; (name "go-golang-org-x-sync") +; (version "0.0.0-20190911185100-cd5d95a43a6e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sync") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1nqkyz2y1qvqcma52ijh02s8aiqmkfb95j08f6zcjhbga3ds6hds")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sync")) +; (home-page "https://golang.org/x/sync") +; (synopsis "Go Sync") +; (description +; "This repository provides Go concurrency primitives in addition to the +;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20200619180055-7c47624df98f +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20200619180055-7c47624df98f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1fhzwd32j7w9g3algq0zj8g7ivx3f0mn9nx9mj046wdscryn49mk")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" +; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) +; ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" +; ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) +; ("go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b" +; ,go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b) +; ("go-golang-org-x-mod-0.2.0" ,go-golang-org-x-mod-0.2.0) +; ("go-github-com-yuin-goldmark-1.1.27" +; ,go-github-com-yuin-goldmark-1.1.27))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-github-com-kisielk-errcheck-1.5.0 +; (package +; (name "go-github-com-kisielk-errcheck") +; (version "1.5.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kisielk/errcheck") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ci3jz2px74pfmr42jv7dpx7fdzx08vai4czp9fkiyb0gcaiqsk6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kisielk/errcheck")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20200619180055-7c47624df98f" +; ,go-golang-org-x-tools-0.0.0-20200619180055-7c47624df98f))) +; (home-page "https://github.com/kisielk/errcheck") +; (synopsis "errcheck") +; (description +; "errcheck is a program for checking for unchecked errors in go programs.") +; (license license:expat))) +; +;(define-public go-github-com-yuin-goldmark-1.2.1 +; (package +; (name "go-github-com-yuin-goldmark") +; (version "1.2.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/yuin/goldmark") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "12rsnsf65drcp0jfw2jl9w589vsn3pxdk1zh3v9q908iigngrcmy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/yuin/goldmark")) +; (home-page "https://github.com/yuin/goldmark") +; (synopsis "goldmark") +; (description +; "Package goldmark implements functions to convert markdown text to a desired format. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20191011191535-87dc89f01550") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0z4i1m2yn3f31ci7wvcm2rxkx2yiv7a78mfzklncmsz2k97rlh2g")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" +; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) +; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" +; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190620200207-3b0461eec859") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0l00c8l0a8xnv6qdpwfzxxsr58jggacgzdrwiprrfx2xqm37b6d5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7 +; (package +; (name "go-golang-org-x-xerrors") +; (version "0.0.0-20190717185122-a985d3407aa7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/xerrors") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "00wzr5w8aadipgc3rkk8f11i41znskfj9ix5nhhaxyg7isrslgcj")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/xerrors")) +; (home-page "https://golang.org/x/xerrors") +; (synopsis #f) +; (description +; "Package xerrors implements functions to manipulate errors. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20191119224855-298f0cb1881e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0l4pqwib2wnfnix6nvxl0yrq87ipi7ff1rz6z5bxfzy9dki1nzmv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7" +; ,go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7) +; ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" +; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) +; ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" +; ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898 +; (package +; (name "go-golang-org-x-xerrors") +; (version "0.0.0-20191011141410-1b5146add898") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/xerrors") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0w2akj91krxjag0xdhsg78470888nicc5ismc2ap9jqpss6v1zih")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/xerrors")) +; (home-page "https://golang.org/x/xerrors") +; (synopsis #f) +; (description +; "Package xerrors implements functions to manipulate errors. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-mod-0.3.0 +; (package +; (name "go-golang-org-x-mod") +; (version "0.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/mod") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ldgbx2zpprbsfn6p8pfgs4nn87gwbfcv2z0fa7n8alwsq2yw78q")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/mod")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" +; ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) +; ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" +; ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) +; ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" +; ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) +; (home-page "https://golang.org/x/mod") +; (synopsis "mod") +; (description +; "This repository holds packages for writing tools +;that work directly with Go module mechanics. +;That is, it is for direct manipulation of Go modules themselves.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20201021035429-f5854403a974 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20201021035429-f5854403a974") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1vw63zpmhi337f3gc432x3wkib4j2ia8dy7if31wxwb9dgqvy222")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) +; ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" +; ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) +; ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" +; ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9 +; (package +; (name "go-golang-org-x-sync") +; (version "0.0.0-20201020160332-67f06af15bc9") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sync") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "093p4panc808ak5bamzz7m9nb0xxib7778jpnr6f0xkz1n4fzyw5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sync")) +; (home-page "https://golang.org/x/sync") +; (synopsis "Go Sync") +; (description +; "This repository provides Go concurrency primitives in addition to the +;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1 +; (package +; (name "go-golang-org-x-xerrors") +; (version "0.0.0-20200804184101-5ec99f83aff1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/xerrors") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1dbzc3gmf2haazpv7cgmv97rq40g2xzwbglc17vas8dwhgwgwrzb")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/xerrors")) +; (home-page "https://golang.org/x/xerrors") +; (synopsis #f) +; (description +; "Package xerrors implements functions to manipulate errors. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20210106214847-113979e3529a +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20210106214847-113979e3529a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0pq1a7hkamqdwsajyfrb27s56cvxz5838krsgyqz346s2djwdrzl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" +; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) +; ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" +; ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) +; ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" +; ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) +; ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) +; ("go-github-com-yuin-goldmark-1.2.1" +; ,go-github-com-yuin-goldmark-1.2.1))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-github-com-gogo-protobuf-1.3.2 +; (package +; (name "go-github-com-gogo-protobuf") +; (version "1.3.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/gogo/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0dfv1bhx5zhb5bsj5sj757nkacf2swp1ajpcyj9d0b37n602m18a")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/gogo/protobuf")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20210106214847-113979e3529a" +; ,go-golang-org-x-tools-0.0.0-20210106214847-113979e3529a) +; ("go-github-com-kisielk-gotool-1.0.0" +; ,go-github-com-kisielk-gotool-1.0.0) +; ("go-github-com-kisielk-errcheck-1.5.0" +; ,go-github-com-kisielk-errcheck-1.5.0))) +; (home-page "https://github.com/gogo/protobuf") +; (synopsis "Protocol Buffers for Go with Gadgets") +; (description +; "gogoprotobuf is a fork of @url{https://github.com/golang/protobuf,golang/protobuf} with extra code generation features.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-1.23.0 +; (package +; (name "go-google-golang-org-protobuf") +; (version "1.23.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "03yan0m1v0zmlr935p4n24fd376mznsg85zy8sywbgisls4s1bzy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.4.0" +; ,go-github-com-golang-protobuf-1.4.0))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.4.3 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.4.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1kf1d7xmyjvy0z6j5czp6nqyvj9zrk6liv6znif08927xqfrzyln")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.23.0" +; ,go-google-golang-org-protobuf-1.23.0) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0))) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-github-com-google-go-cmp-0.5.2 +; (package +; (name "go-github-com-google-go-cmp") +; (version "0.5.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/go-cmp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0qchy411jm9q2l9mf7x3ry2ycaqp9xdhf2nx14qrpzcxfigv2705")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/go-cmp")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" +; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) +; (home-page "https://github.com/google/go-cmp") +; (synopsis "Package for equality of Go values") +; (description +; "This package is intended to be a more powerful and safer alternative to +;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") +; (license license:bsd-3))) +; +;(define-public go-github-com-kr-pty-1.1.1 +; (package +; (name "go-github-com-kr-pty") +; (version "1.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kr/pty") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0383f0mb9kqjvncqrfpidsf8y6ns5zlrc91c6a74xpyxjwvzl2y6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kr/pty")) +; (home-page "https://github.com/kr/pty") +; (synopsis "pty") +; (description +; "Package pty is a wrapper for github.com/creack/pty, which provides +;functions for working with Unix terminals. +;") +; (license license:expat))) +; +;(define-public go-github-com-kr-text-0.1.0 +; (package +; (name "go-github-com-kr-text") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kr/text") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1gm5bsl01apvc84bw06hasawyqm4q84vx1pm32wr9jnd7a8vjgj1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kr/text")) +; (propagated-inputs +; `(("go-github-com-kr-pty-1.1.1" ,go-github-com-kr-pty-1.1.1))) +; (home-page "https://github.com/kr/text") +; (synopsis #f) +; (description +; "Package text provides rudimentary functions for manipulating text in +;paragraphs. +;") +; (license license:expat))) +; +;(define-public go-github-com-kr-pretty-0.2.0 +; (package +; (name "go-github-com-kr-pretty") +; (version "0.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kr/pretty") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ywbfzz1h3a3qd8rpkiqwi1dm4w8ls9ijb4x1b7567grns9f0vnp")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kr/pretty")) +; (propagated-inputs +; `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) +; (home-page "https://github.com/kr/pretty") +; (synopsis #f) +; (description +; "Package pretty provides pretty-printing for Go values. This is +;useful during debugging, to avoid wrapping long output lines in +;the terminal. +;") +; (license license:expat))) +; +;(define-public go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c +; (package +; (name "go-gopkg-in-yaml-v3") +; (version "3.0.0-20200313102051-9f266ea9e77c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/yaml.v3") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1bbai3lzb50m0x2vwsdbagrbhvfylj9k1m32hgbqwldqx4p9ay35")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" +; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) +; (home-page "https://gopkg.in/yaml.v3") +; (synopsis "YAML support for the Go language") +; (description "Package yaml implements YAML support for the Go language. +;") +; (license #f))) +; +;(define-public go-github-com-stretchr-testify-1.6.1 +; (package +; (name "go-github-com-stretchr-testify") +; (version "1.6.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/testify") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1yhiqqzjvi63pf01rgzx68gqkkvjx03fvl5wk30br5l6s81s090l")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/testify")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" +; ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) +; ("go-github-com-stretchr-objx-0.1.0" +; ,go-github-com-stretchr-objx-0.1.0) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.0" +; ,go-github-com-davecgh-go-spew-1.1.0))) +; (home-page "https://github.com/stretchr/testify") +; (synopsis "Testify - Thou Shalt Write Tests") +; (description +; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190404232315-eb5bcb51f2a3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "17k4g8krxbl84gzcs275b7gsh66dzm15fdxivjnx9xz8q84l4kby")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190412213103-97732733099d +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190412213103-97732733099d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "118hkp01i4z1f5h6hcjm0ff2ngqhrzj1f7731n0kw8dr6hvbx0sw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20200622213623-75b288015ac9") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "18vlncvvs11ds3zaaziqjlg5s2vcwi3496nn6qv7p0dp94j5pwa2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" +; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) +; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" +; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20200930185726-fdedc70b468f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1njlfhjbvi4lxvjbq8zswrb0y0q4jd2p6x51h1q6vmyzi9af6869")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-text-0.3.3 +; (package +; (name "go-golang-org-x-text") +; (version "0.3.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/text") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19pihqm3phyndmiw6i42pdv6z1rbvlqlsnhsyqf9gsnn0qnmqqlh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/text")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" +; ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) +; (home-page "https://golang.org/x/text") +; (synopsis "Go Text") +; (description +; "text is a repository of text-related packages related to internationalization +;(i18n) and localization (l10n), such as character encodings, text +;transformations, and locale-specific text handling. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20201110031124-69a78807bb2b") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "176z5k6jbhr9vf0am2avl1lyqwym3q0mri98yb8r572z33qmcw1d")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) +; ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" +; ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) +; ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" +; ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20201112073958-5cba982894dd") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "08dvnwmi2p4slmhyx7gzkmzfp51mmnkzi0ngwhvv0vip1s3s3zjc")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20180917221912-90fa682c2a6e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-text-0.3.4 +; (package +; (name "go-golang-org-x-text") +; (version "0.3.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/text") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "11jdvix83xcl5xnb039y4zrz4x5skzsps0w1jryp6wrar53cydvz")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/text")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" +; ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) +; (home-page "https://golang.org/x/text") +; (synopsis "Go Text") +; (description +; "text is a repository of text-related packages related to internationalization +;(i18n) and localization (l10n), such as character encodings, text +;transformations, and locale-specific text handling. +;") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-1.24.0 +; (package +; (name "go-google-golang-org-protobuf") +; (version "1.24.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0x3qyn3rizbs671gs7f8v50rmiwf9h7kbaradpivw9718mhbg1gn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" +; ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.4.1" +; ,go-github-com-golang-protobuf-1.4.1))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20201110150050-8816d57aaa9a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0cbfam4w9jr5gib43v3s2r5j8mhd3hl6ks3azwsahaff6idggg20")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.24.0" +; ,go-google-golang-org-protobuf-1.24.0) +; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) +; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" +; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-github-com-golang-protobuf-1.4.1" +; ,go-github-com-golang-protobuf-1.4.1))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-github-com-google-go-cmp-0.5.0 +; (package +; (name "go-github-com-google-go-cmp") +; (version "0.5.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/go-cmp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "04pzp583p6b32y34c6jygfxarff9qjs39rarvfh6467z24sdd9k4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/go-cmp")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" +; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) +; (home-page "https://github.com/google/go-cmp") +; (synopsis "Package for equality of Go values") +; (description +; "This package is intended to be a more powerful and safer alternative to +;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-1.22.0 +; (package +; (name "go-google-golang-org-protobuf") +; (version "1.22.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0n7lc4m7kfvj01glc0gnjy0zsnsic7cxnbvlajy0h14cxbab87pj")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.4.0" +; ,go-github-com-golang-protobuf-1.4.0))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.4.1 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.4.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0w7ks4vffnnkp0miwgc3chrsnmya45lzvpahb2wmw0jwhdp5kdx7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.22.0" +; ,go-google-golang-org-protobuf-1.22.0) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0))) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-grpc-1.27.0 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.27.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ijrmgrxyabfn51nm3p9l81iaasq5fg237wnr6mdc4dzsfcg8kd7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" +; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-github-com-google-go-cmp-0.2.0" +; ,go-github-com-google-go-cmp-0.2.0) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2) +; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" +; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) +; ("go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473" +; ,go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-google-go-cmp-0.3.0 +; (package +; (name "go-github-com-google-go-cmp") +; (version "0.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/go-cmp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1hyxx3434zshl2m9ja78gwlkg1rx9yl6diqa7dnjb31xz5x4gbjj")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/go-cmp")) +; (home-page "https://github.com/google/go-cmp") +; (synopsis "Package for equality of Go values") +; (description +; "This package is intended to be a more powerful and safer alternative to +;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd +; (package +; (name "go-google-golang-org-protobuf") +; (version "0.0.0-20200109180630-ec00e32a8dfd") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0w6lp9w2avxcpxwzzhspr209ifhyjagvs23k0vykfdqahl1aplrh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.3.0" +; ,go-github-com-google-go-cmp-0.3.0))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.4.0-rc.1 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.4.0-rc.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "186rirvbfgv6hrxp27ipx2cdpv19qifdd20biqfdm01wiyclqimn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd" +; ,go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd) +; ("go-github-com-google-go-cmp-0.3.1" +; ,go-github-com-google-go-cmp-0.3.1))) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-github-com-google-go-cmp-0.3.1 +; (package +; (name "go-github-com-google-go-cmp") +; (version "0.3.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/go-cmp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1caw49i0plkjxir7kdf5qhwls3krqwfmi7g4h392rdfwi3kfahx1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/go-cmp")) +; (home-page "https://github.com/google/go-cmp") +; (synopsis "Package for equality of Go values") +; (description +; "This package is intended to be a more powerful and safer alternative to +;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64 +; (package +; (name "go-google-golang-org-protobuf") +; (version "0.0.0-20200221191635-4d8936d0db64") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0563bsvdjj6k0sgwqd5yzrgfiax7sp3lcwh608gync5sv9fx39cy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.3.1" +; ,go-github-com-google-go-cmp-0.3.1) +; ("go-github-com-golang-protobuf-1.4.0-rc.1" +; ,go-github-com-golang-protobuf-1.4.0-rc.1))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.4.0-rc.1.0.20200221234624-67d41d38c208") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ykxhg3zixmw25pd435f8h16wnz1g00jpcmmg3xl030kksgqgpp6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64" +; ,go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0))) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60 +; (package +; (name "go-google-golang-org-protobuf") +; (version "0.0.0-20200228230310-ab0ca4ff8a60") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1rinspcznfp85yz4vrlf4h38hr576virgv8lcs22bsylqga808sd")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208" +; ,go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.4.0-rc.2 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.4.0-rc.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1hd43hjv5zl6bjbmhm5phx74bw4xajsi73m5zky2k56za4mpgzzc")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60" +; ,go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0))) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967 +; (package +; (name "go-google-golang-org-protobuf") +; (version "1.20.1-0.20200309200217-e05f789c0967") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "17wmy89hnmpkwc63rfcjp50q15s9f1rhmczg06c3z9yy41zk82w9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.4.0-rc.2" +; ,go-github-com-golang-protobuf-1.4.0-rc.2))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.4.0-rc.4.0.20200313231945-b860323f09d0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1zj6cwshx0l5n9cn2cpbikzzb79px5dmkpc4p19zy1iif5r5p0z0")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967" +; ,go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0))) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-1.21.0 +; (package +; (name "go-google-golang-org-protobuf") +; (version "1.21.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "12bwln8z1lf9105gdp6ip0rx741i4yfz1520gxnp8861lh9wcl63")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0" +; ,go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.4.0 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1fjvl5n77abxz5qsd4mgyvjq19x43c5bfvmq62mq3m5plx6zksc8")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.21.0" +; ,go-google-golang-org-protobuf-1.21.0) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0))) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543 +; (package +; (name "go-golang-org-x-xerrors") +; (version "0.0.0-20191204190536-9bdfabe68543") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/xerrors") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1yjfi1bk9xb81lqn85nnm13zz725wazvrx3b50hx19qmwg7a4b0c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/xerrors")) +; (home-page "https://golang.org/x/xerrors") +; (synopsis #f) +; (description +; "Package xerrors implements functions to manipulate errors. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-google-go-cmp-0.4.0 +; (package +; (name "go-github-com-google-go-cmp") +; (version "0.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/go-cmp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1x5pvl3fb5sbyng7i34431xycnhmx8xx94gq2n19g6p0vz68z2v2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/go-cmp")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" +; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) +; (home-page "https://github.com/google/go-cmp") +; (synopsis "Package for equality of Go values") +; (description +; "This package is intended to be a more powerful and safer alternative to +;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc +; (package +; (name "go-google-golang-org-protobuf") +; (version "1.23.1-0.20200526195155-81db48ad09cc") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "02cpr8rqr5wmpj2fqb32mzilsdnxkh52g1jz95a3ck3gzffc7hh1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.4.0" +; ,go-github-com-golang-protobuf-1.4.0))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013 +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20200526211855-cb27e3aa2013") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ml73ghqcwbz7ipfk8fnxb5indcml49b5p7vp1fsyny0abyyrmxf")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" +; ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) +; ("go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc" +; ,go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc) +; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) +; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" +; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-github-com-golang-protobuf-1.4.1" +; ,go-github-com-golang-protobuf-1.4.1))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-protobuf-1.25.0 +; (package +; (name "go-google-golang-org-protobuf") +; (version "1.25.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0apfl42x166dh96zfq5kvv4b4ax9xljik6bq1mnvn2240ir3mc23")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" +; ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) +; ("go-github-com-google-go-cmp-0.5.0" +; ,go-github-com-google-go-cmp-0.5.0) +; ("go-github-com-golang-protobuf-1.4.1" +; ,go-github-com-golang-protobuf-1.4.1))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15 +; (package +; (name "go-gopkg-in-check-v1") +; (version "1.0.0-20190902080502-41f04d3bba15") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/check.v1") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0vfk9czmlxmp6wndq8k17rhnjxal764mxfhrccza7nwlia760pjy")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) +; (home-page "https://gopkg.in/check.v1") +; (synopsis "Instructions") +; (description +; "Package check is a rich testing extension for Go's testing package. +;") +; (license license:bsd-2))) +; +;(define-public go-k8s-io-cri-api-0.20.6 +; (package +; (name "go-k8s-io-cri-api") +; (version "0.20.6") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes/cri-api") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0yp4rfxjn4h78z4sbmwhcqm8mva9bsvsc5jky2qa76npp0hycjhx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "k8s.io/cri-api")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" +; ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) +; ("go-google-golang-org-protobuf-1.25.0" +; ,go-google-golang-org-protobuf-1.25.0) +; ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) +; ("go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a" +; ,go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a) +; ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) +; ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" +; ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) +; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" +; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-kr-pretty-0.2.0" ,go-github-com-kr-pretty-0.2.0) +; ("go-github-com-google-go-cmp-0.5.2" +; ,go-github-com-google-go-cmp-0.5.2) +; ("go-github-com-golang-protobuf-1.4.3" +; ,go-github-com-golang-protobuf-1.4.3) +; ("go-github-com-gogo-protobuf-1.3.2" +; ,go-github-com-gogo-protobuf-1.3.2) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://k8s.io/cri-api") +; (synopsis "Purpose") +; (description +; "This repository contains the definitions for the Container Runtime Interface (CRI). +;CRI is a plugin interface which enables kubelet to use a wide variety of container runtimes, +;without the need to recompile. CRI consists of a protocol buffers and gRPC API.") +; (license license:asl2.0))) +; +;(define-public go-github-com-go-logr-logr-0.2.0 +; (package +; (name "go-github-com-go-logr-logr") +; (version "0.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/go-logr/logr") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "06xh4pw53z38vyi300mgpnr4pkqgknw9xakdyk1xzqfg9zd60d7d")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/go-logr/logr")) +; (home-page "https://github.com/go-logr/logr") +; (synopsis "A minimal logging API for Go") +; (description +; "Package logr defines a general-purpose logging API and abstract interfaces +;to back that API. Packages in the Go ecosystem can depend on this package, +;while callers can implement logging with whatever backend is appropriate. +;") +; (license license:asl2.0))) +; +;(define-public go-k8s-io-klog-v2-2.4.0 +; (package +; (name "go-k8s-io-klog-v2") +; (version "2.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes/klog") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1zjih6bgdalga5hqaa2fwwidslq6lv358gkj88a8wwj7w253wc8c")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "k8s.io/klog/v2" #:unpack-path "k8s.io/klog/v2")) +; (propagated-inputs +; `(("go-github-com-go-logr-logr-0.2.0" +; ,go-github-com-go-logr-logr-0.2.0))) +; (home-page "https://k8s.io/klog/v2") +; (synopsis "klog") +; (description +; "Package klog implements logging analogous to the Google-internal C++ INFO/ERROR/V setup. +;It provides functions Info, Warning, Error, Fatal, plus formatting variants such as +;Infof. It also provides V-style logging controlled by the -v and -vmodule=file=2 flags. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-davecgh-go-spew-1.1.1 +; (package +; (name "go-github-com-davecgh-go-spew") +; (version "1.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/davecgh/go-spew") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/davecgh/go-spew")) +; (home-page "https://github.com/davecgh/go-spew") +; (synopsis "go-spew") +; (description +; "Go-spew implements a deep pretty printer for Go data structures to aid in +;debugging. A comprehensive suite of tests with 100% test coverage is provided +;to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage +;report. Go-spew is licensed under the liberal ISC license, so it may be used in +;open source or commercial projects.") +; (license license:isc))) +; +;(define-public go-github-com-spf13-afero-1.2.2 +; (package +; (name "go-github-com-spf13-afero") +; (version "1.2.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/spf13/afero") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0j9r65qgd58324m85lkl49vk9dgwd62g7dwvkfcm3k6i9dc555a9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/spf13/afero")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0))) +; (home-page "https://github.com/spf13/afero") +; (synopsis "Overview") +; (description +; "This package provides a FileSystem Abstraction System for Go") +; (license license:asl2.0))) +; +;(define-public go-github-com-davecgh-go-spew-1.1.0 +; (package +; (name "go-github-com-davecgh-go-spew") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/davecgh/go-spew") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/davecgh/go-spew")) +; (home-page "https://github.com/davecgh/go-spew") +; (synopsis "go-spew") +; (description +; "Go-spew implements a deep pretty printer for Go data structures to aid in +;debugging. A comprehensive suite of tests with 100% test coverage is provided +;to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage +;report. Go-spew is licensed under the liberal ISC license, so it may be used in +;open source or commercial projects.") +; (license license:isc))) +; +;(define-public go-github-com-stretchr-objx-0.1.0 +; (package +; (name "go-github-com-stretchr-objx") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/objx") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/objx")) +; (home-page "https://github.com/stretchr/objx") +; (synopsis "Objx") +; (description +; "Objx - Go package for dealing with maps, slices, JSON and other data. +;") +; (license license:expat))) +; +;(define-public go-github-com-stretchr-testify-1.3.0 +; (package +; (name "go-github-com-stretchr-testify") +; (version "1.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/testify") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0wjchp2c8xbgcbbq32w3kvblk6q6yn533g78nxl6iskq6y95lxsy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/testify")) +; (propagated-inputs +; `(("go-github-com-stretchr-objx-0.1.0" +; ,go-github-com-stretchr-objx-0.1.0) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.0" +; ,go-github-com-davecgh-go-spew-1.1.0))) +; (home-page "https://github.com/stretchr/testify") +; (synopsis "Testify - Thou Shalt Write Tests") +; (description +; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +;") +; (license license:expat))) +; +;(define-public go-github-com-go-logr-logr-0.1.0 +; (package +; (name "go-github-com-go-logr-logr") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/go-logr/logr") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0fhijjhxz4n2j5i24ckzv8r9kri3v44jdyklgbqjfq0xm7izqg14")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/go-logr/logr")) +; (home-page "https://github.com/go-logr/logr") +; (synopsis "A minimal logging API for Go") +; (description +; "Package logr defines a general-purpose logging API and abstract interfaces +;to back that API. Packages in the Go ecosystem can depend on this package, +;while callers can implement logging with whatever backend is appropriate. +;") +; (license license:asl2.0))) +; +;(define-public go-k8s-io-klog-v2-2.0.0 +; (package +; (name "go-k8s-io-klog-v2") +; (version "2.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes/klog") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "09vqm0n5l64lzpk3xqm4njbncnphx52qk21gwx8nsgyivlxx1n8g")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "k8s.io/klog/v2" #:unpack-path "k8s.io/klog/v2")) +; (propagated-inputs +; `(("go-github-com-go-logr-logr-0.1.0" +; ,go-github-com-go-logr-logr-0.1.0))) +; (home-page "https://k8s.io/klog/v2") +; (synopsis "klog") +; (description +; "Package klog implements logging analogous to the Google-internal C++ INFO/ERROR/V setup. +;It provides functions Info, Warning, Error, Fatal, plus formatting variants such as +;Infof. It also provides V-style logging controlled by the -v and -vmodule=file=2 flags. +;") +; (license license:asl2.0))) +; +;(define-public go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920 +; (package +; (name "go-k8s-io-utils") +; (version "0.0.0-20201110183641-67b214c5f920") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes/utils") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19rc9v5xin0a8qbf25my3rd0jd74cin2mk2a38j2dwplqy3s9crl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "k8s.io/utils")) +; (propagated-inputs +; `(("go-k8s-io-klog-v2-2.0.0" ,go-k8s-io-klog-v2-2.0.0) +; ("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0) +; ("go-github-com-spf13-afero-1.2.2" ,go-github-com-spf13-afero-1.2.2) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://k8s.io/utils") +; (synopsis "Utils") +; (description +; "This package provides a set of Go libraries that provide low-level, kubernetes-independent packages +;supplementing the @url{https://golang.org/pkg/#stdlib,Go standard libs}.") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-tools-0.0.0-20181030221726-6c7e314b6563 +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20181030221726-6c7e314b6563") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1m1n6r8v6mrlh0yvlz3qxz4s7jc7nis0zf3dfl1i6hqh5xblkwnw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-github-com-kisielk-errcheck-1.2.0 +; (package +; (name "go-github-com-kisielk-errcheck") +; (version "1.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kisielk/errcheck") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0am6g10ipdxw84byscm7shda654882wjcbinq5c4696m6mhi2qrd")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kisielk/errcheck")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20181030221726-6c7e314b6563" +; ,go-golang-org-x-tools-0.0.0-20181030221726-6c7e314b6563))) +; (home-page "https://github.com/kisielk/errcheck") +; (synopsis "errcheck") +; (description +; "errcheck is a program for checking for unchecked errors in go programs.") +; (license license:expat))) +; +;(define-public go-github-com-kisielk-gotool-1.0.0 +; (package +; (name "go-github-com-kisielk-gotool") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kisielk/gotool") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "14af2pa0ssyp8bp2mvdw184s5wcysk6akil3wzxmr05wwy951iwn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kisielk/gotool")) +; (home-page "https://github.com/kisielk/gotool") +; (synopsis "gotool") +; (description +; "Package gotool contains utility functions used to implement the standard +;\"cmd/go\" tool, provided as a convenience to developers who want to write +;tools with similar semantics. +;") +; (license license:expat))) +; +;(define-public go-github-com-gogo-protobuf-1.3.1 +; (package +; (name "go-github-com-gogo-protobuf") +; (version "1.3.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/gogo/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0x77x64sxjgfhmbijqfzmj8h4ar25l2w97h01q3cqs1wk7zfnkhp")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/gogo/protobuf")) +; (propagated-inputs +; `(("go-github-com-kisielk-gotool-1.0.0" +; ,go-github-com-kisielk-gotool-1.0.0) +; ("go-github-com-kisielk-errcheck-1.2.0" +; ,go-github-com-kisielk-errcheck-1.2.0))) +; (home-page "https://github.com/gogo/protobuf") +; (synopsis "Protocol Buffers for Go with Gadgets") +; (description +; "gogoprotobuf is a fork of @url{https://github.com/golang/protobuf,golang/protobuf} with extra code generation features.") +; (license license:bsd-3))) +; +;(define-public go-github-com-gogo-googleapis-1.3.2 +; (package +; (name "go-github-com-gogo-googleapis") +; (version "1.3.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/gogo/googleapis") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "10670qprmk151n6pa1yclr89kgrvmalzvkq221xqbid83iv59s2h")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/gogo/googleapis")) +; (propagated-inputs +; `(("go-github-com-gogo-protobuf-1.3.1" +; ,go-github-com-gogo-protobuf-1.3.1))) +; (home-page "https://github.com/gogo/googleapis") +; (synopsis "Google APIs generated by gogoprotobuf") +; (description +; "The @url{https://github.com/gogo/grpc-example,grpc-example} includes an example usage of this repository.") +; (license license:asl2.0))) +; +;(define-public go-github-com-golang-protobuf-1.3.5 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.3.5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1gkd1942vk9n8kfzdwy1iil6wgvlwjq7a3y5jc49ck4lz9rhmgkq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-github-com-pmezard-go-difflib-1.0.0 +; (package +; (name "go-github-com-pmezard-go-difflib") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/pmezard/go-difflib") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/pmezard/go-difflib")) +; (home-page "https://github.com/pmezard/go-difflib") +; (synopsis "go-difflib") +; (description +; "Go-difflib is a partial port of python 3 difflib package. Its main goal +;was to make unified and context diff available in pure Go, mostly for +;testing purposes.") +; (license license:bsd-3))) +; +;(define-public go-github-com-russross-blackfriday-v2-2.0.1 +; (package +; (name "go-github-com-russross-blackfriday-v2") +; (version "2.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/russross/blackfriday") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0nlz7isdd4rgnwzs68499hlwicxz34j2k2a0b8jy0y7ycd2bcr5j")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/russross/blackfriday/v2")) +; (home-page "https://github.com/russross/blackfriday") +; (synopsis "Blackfriday") +; (description "Package blackfriday is a markdown processor. +;") +; (license license:bsd-2))) +; +;(define-public go-github-com-shurcool-sanitized-anchor-name-1.0.0 +; (package +; (name "go-github-com-shurcool-sanitized-anchor-name") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/shurcooL/sanitized_anchor_name") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1gv9p2nr46z80dnfjsklc6zxbgk96349sdsxjz05f3z6wb6m5l8f")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/shurcooL/sanitized_anchor_name")) +; (home-page "https://github.com/shurcooL/sanitized_anchor_name") +; (synopsis "sanitized_anchor_name") +; (description +; "Package sanitized_anchor_name provides a func to create sanitized anchor names. +;") +; (license license:expat))) +; +;(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d +; (package +; (name "go-github-com-cpuguy83-go-md2man-v2") +; (version "2.0.0-20190314233015-f79a8a8ca69d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/cpuguy83/go-md2man") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) +; (propagated-inputs +; `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" +; ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) +; ("go-github-com-russross-blackfriday-v2-2.0.1" +; ,go-github-com-russross-blackfriday-v2-2.0.1) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0))) +; (home-page "https://github.com/cpuguy83/go-md2man") +; (synopsis "go-md2man") +; (description "Converts markdown into roff (man pages).") +; (license license:expat))) +; +;(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 +; (package +; (name "go-gopkg-in-check-v1") +; (version "0.0.0-20161208181325-20d25e280405") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/check.v1") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) +; (home-page "https://gopkg.in/check.v1") +; (synopsis "Instructions") +; (description +; "Package check is a rich testing extension for Go's testing package. +;") +; (license license:bsd-2))) +; +;(define-public go-gopkg-in-yaml-v2-2.2.2 +; (package +; (name "go-gopkg-in-yaml-v2") +; (version "2.2.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/yaml.v2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "01wj12jzsdqlnidpyjssmj0r4yavlqy7dwrg7adqd8dicjc4ncsa")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" +; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) +; (home-page "https://gopkg.in/yaml.v2") +; (synopsis "YAML support for the Go language") +; (description "Package yaml implements YAML support for the Go language. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-urfave-cli-1.22.1 +; (package +; (name "go-github-com-urfave-cli") +; (version "1.22.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/urfave/cli") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "04ymak18flqlfcn8lycmg8r3931al8dvr8f1cg9n4yjaskmg72v8")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/urfave/cli")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) +; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d" +; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d) +; ("go-github-com-burntsushi-toml-0.3.1" +; ,go-github-com-burntsushi-toml-0.3.1))) +; (home-page "https://github.com/urfave/cli") +; (synopsis "cli") +; (description +; "Package cli provides a minimal framework for creating and organizing command line +;Go applications. cli is designed to be easy to understand and write, the most simple +;cli application can be written as follows: +;") +; (license license:expat))) +; +;(define-public go-github-com-census-instrumentation-opencensus-proto-0.2.1 +; (package +; (name "go-github-com-census-instrumentation-opencensus-proto") +; (version "0.2.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/census-instrumentation/opencensus-proto") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19fcx3sc99i5dsklny6r073z5j20vlwn2xqm6di1q3b1xwchzqfj")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "github.com/census-instrumentation/opencensus-proto")) +; (home-page "https://github.com/census-instrumentation/opencensus-proto") +; (synopsis +; "OpenCensus Proto - Language Independent Interface Types For OpenCensus") +; (description +; "Census provides a framework to define and collect stats against metrics and to +;break those stats down across user-defined dimensions.") +; (license license:asl2.0))) +; +;(define-public go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4 +; (package +; (name "go-github-com-prometheus-client-model") +; (version "0.0.0-20190812154241-14fe0d1b01d4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/client_model") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0zdmk6rbbx39cvfz0r59v2jg5sg9yd02b4pds5n5llgvivi99550")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/client_model")) +; (propagated-inputs +; `(("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" +; ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0))) +; (home-page "https://github.com/prometheus/client_model") +; (synopsis "Deprecation note") +; (description +; "This repository used to contain the code that defined both +;the data model and the exposition format of Prometheus metrics.") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20190311212946-11955173bddd") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0hlkai67w167wiyivkzd1fgqrnyxkb94l2c6kr51jwcscizfyfn3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3 +; (package +; (name "go-golang-org-x-lint") +; (version "0.0.0-20190313153728-d0100b6bd8b3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/lint") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0b0amr9x4ji66iv9ayfx7zrfx52k1m5g66qfcxkgj80qrb1y2yn7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/lint")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" +; ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd))) +; (home-page "https://golang.org/x/lint") +; (synopsis "Installation") +; (description "Package lint contains a linter for Go source code. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sync-0.0.0-20190423024810-112230192c58 +; (package +; (name "go-golang-org-x-sync") +; (version "0.0.0-20190423024810-112230192c58") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sync") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "05i2k43j2d0llq768hg5pf3hb2yhfzp9la1w5wp0rsnnzblr0lfn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sync")) +; (home-page "https://golang.org/x/sync") +; (synopsis "Go Sync") +; (description +; "This repository provides Go concurrency primitives in addition to the +;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135 +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20190524140312-2c0ae7006135") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1lsi2ssxajclj3bciz2a41v1vjv768ja3v6wnbyhxy8xphwkp4fk")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" +; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc +; (package +; (name "go-honnef-co-go-tools") +; (version "0.0.0-20190523083050-ea95bdfd59fc") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/dominikh/go-tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1763nw7pwpzkvzfnm63dgzcgbq9hwmq5l1nffchnhh77vgkaq4ic")))) +; (build-system go-build-system) +; (arguments '(#:import-path "honnef.co/go/tools")) +; (home-page "https://honnef.co/go/tools") +; (synopsis "Documentation") +; (description +; "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, +;offers simplifications, and enforces style rules.") +; (license license:expat))) +; +;(define-public go-google-golang-org-grpc-1.23.0 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.23.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1cn33r2gclmq2v1ndpf1n5bmhf2qs8mms7ii5cnl6f9ch4r2c4k3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" +; ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) +; ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" +; ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) +; ("go-google-golang-org-appengine-1.1.0" +; ,go-google-golang-org-appengine-1.1.0) +; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" +; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-github-com-google-go-cmp-0.2.0" +; ,go-github-com-google-go-cmp-0.2.0) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0) +; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-client9-misspell-0.3.4" +; ,go-github-com-client9-misspell-0.3.4) +; ("go-github-com-burntsushi-toml-0.3.1" +; ,go-github-com-burntsushi-toml-0.3.1) +; ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473 +; (package +; (name "go-github-com-envoyproxy-go-control-plane") +; (version "0.9.1-0.20191026205805-5f8ba28d4473") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/envoyproxy/go-control-plane") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1f1s764rd41vd9vgk3r14h1m6fz6pdvxj6fd83q58gxifbc4q5w4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.23.0" ,go-google-golang-org-grpc-1.23.0) +; ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" +; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) +; ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" +; ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2) +; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" +; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) +; ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" +; ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) +; (home-page "https://github.com/envoyproxy/go-control-plane") +; (synopsis "control-plane") +; (description +; "This repository contains a Go-based implementation of an API server that +;implements the discovery service APIs defined in +;@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") +; (license license:asl2.0))) +; +;(define-public go-github-com-envoyproxy-protoc-gen-validate-0.1.0 +; (package +; (name "go-github-com-envoyproxy-protoc-gen-validate") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/envoyproxy/protoc-gen-validate") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0kxd3wwh3xwqk0r684hsy281xq4y71cd11d4q2hspcjbnlbwh7cy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/envoyproxy/protoc-gen-validate")) +; (home-page "https://github.com/envoyproxy/protoc-gen-validate") +; (synopsis "protoc-gen-validate (PGV)") +; (description +; "PGV is a protoc plugin to generate polyglot message validators. While protocol buffers effectively guarantee the types of structured data, they cannot enforce semantic rules for values. This plugin adds support to protoc-generated code to validate such constraints.") +; (license license:asl2.0))) +; +;(define-public go-github-com-google-go-cmp-0.2.0 +; (package +; (name "go-github-com-google-go-cmp") +; (version "0.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/go-cmp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1fbv0x27k9sn8svafc0hjwsnckk864lv4yi7bvzrxvmd3d5hskds")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/go-cmp")) +; (home-page "https://github.com/google/go-cmp") +; (synopsis "Package for equality of Go values") +; (description +; "This package is intended to be a more powerful and safer alternative to +;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20190308221718-c2843e01d9a2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20190311183353-d8887717615a +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190311183353-d8887717615a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1wfm6ngxjyj7v5a2dqib6lw8bb2rdnf1kl48diykxjrsddn0s163")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190215142949-d0b11bdaac8a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.3.2 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.3.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1k1wb4zr0qbwgpvz9q5ws9zhlal8hq7dmq62pwxxriksayl6hzym")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4 +; (package +; (name "go-golang-org-x-exp") +; (version "0.0.0-20190121172915-509febef88a4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/exp") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "02isrh39z8znrp5znplzy0dip2gnrl3jm1355raliyvhnhg04j6q")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/exp")) +; (home-page "https://golang.org/x/exp") +; (synopsis "exp") +; (description +; "This subrepository holds experimental and deprecated (in the @code{old} +;directory) packages.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961 +; (package +; (name "go-golang-org-x-lint") +; (version "0.0.0-20190227174305-5b3e6a55c961") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/lint") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "04zp5vbds9nffmjg36wjpi5vg9zmf890yf78xxasai3ni637ivfw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/lint")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" +; ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c))) +; (home-page "https://golang.org/x/lint") +; (synopsis "Installation") +; (description "Package lint contains a linter for Go source code. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190213061140-3a22650c66bd") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "12q6fgdkc0742vcms67nzadgdwvi3rnb1gx3vwkljhrvlnwvz7wc")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f +; (package +; (name "go-golang-org-x-sync") +; (version "0.0.0-20181108010431-42b317875d0f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sync") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0mrjhk7al7yyh76x9flvxy4jm5jyqh2fxbxagpaazxn1xdgkaif3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sync")) +; (home-page "https://golang.org/x/sync") +; (synopsis "Go Sync") +; (description +; "This repository provides Go concurrency primitives in addition to the +;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20180724234803-3673e40ba225") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0vx7mz18p480p7fh0w5jv6mfdbsswrlac1sz4i705q7q7ygz59lm")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-appengine-1.4.0 +; (package +; (name "go-google-golang-org-appengine") +; (version "1.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/appengine") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "06zl7w4sxgdq2pl94wy9ncii6h0z3szl4xpqds0sv3b3wbdlhbnn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/appengine")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225" +; ,go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0))) +; (home-page "https://google.golang.org/appengine") +; (synopsis "Go App Engine packages") +; (description +; "Package appengine provides basic functionality for Google App Engine. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20190226205152-f727befe758c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0rpcqw6z13qd33rbasg32zb0gdhgh5lzjla63r6g651zf6hpsak0")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-google-golang-org-appengine-1.4.0" +; ,go-google-golang-org-appengine-1.4.0) +; ("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" +; ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) +; ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" +; ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-cloud-google-com-go-0.26.0 +; (package +; (name "go-cloud-google-com-go") +; (version "0.26.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-cloud-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "149v3ci17g6wd2pm18mzcncq5qpl9hwdjnz3rlbn5rfidyn46la1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "cloud.google.com/go")) +; (home-page "https://cloud.google.com/go") +; (synopsis "Google Cloud Client Libraries for Go") +; (description +; "Package cloud is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +;of sub-packages. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-burntsushi-toml-0.3.1 +; (package +; (name "go-github-com-burntsushi-toml") +; (version "0.3.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/BurntSushi/toml") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1fjdwwfzyzllgiwydknf1pwjvy49qxfsczqx5gz3y0izs7as99j6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/BurntSushi/toml")) +; (home-page "https://github.com/BurntSushi/toml") +; (synopsis "TOML parser and encoder for Go with reflection") +; (description +; "Package toml implements decoding and encoding of TOML files. +;") +; (license license:expat))) +; +;(define-public go-github-com-client9-misspell-0.3.4 +; (package +; (name "go-github-com-client9-misspell") +; (version "0.3.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/client9/misspell") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1vwf33wsc4la25zk9nylpbp9px3svlmldkm0bha4hp56jws4q9cs")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/client9/misspell")) +; (home-page "https://github.com/client9/misspell") +; (synopsis "Install") +; (description +; "Package misspell corrects commonly misspelled English words in source files. +;") +; (license license:expat))) +; +;(define-public go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b +; (package +; (name "go-github-com-golang-glog") +; (version "0.0.0-20160126235308-23def4e6c14b") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/glog") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0jb2834rw5sykfr937fxi8hxi2zy80sj2bdn9b3jb4b26ksqng30")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/glog")) +; (home-page "https://github.com/golang/glog") +; (synopsis "glog") +; (description +; "Package glog implements logging analogous to the Google-internal C++ INFO/ERROR/V setup. +;It provides functions Info, Warning, Error, Fatal, plus formatting variants such as +;Infof. It also provides V-style logging controlled by the -v and -vmodule=file=2 flags. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-golang-mock-1.1.1 +; (package +; (name "go-github-com-golang-mock") +; (version "1.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/mock") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ap8wb6pdl6ccmdb43advjll2ly4sz26wsc3axw0hbrjrybybzgy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/mock")) +; (home-page "https://github.com/golang/mock") +; (synopsis "gomock") +; (description +; "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It +;integrates well with Go's built-in @code{testing} package, but can be used in other +;contexts too.") +; (license license:asl2.0))) +; +;(define-public go-github-com-golang-protobuf-1.2.0 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0kf4b59rcbb1cchfny2dm9jyznp8ri2hsb14n8iak1q8986xa0ab")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3 +; (package +; (name "go-golang-org-x-lint") +; (version "0.0.0-20181026193005-c67002cb31c3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/lint") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0gymbggskjmphqxqcx4s0vnlcz7mygbix0vhwcwv5r67c0bf6765")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/lint")) +; (home-page "https://golang.org/x/lint") +; (synopsis "Installation") +; (description "Package lint contains a linter for Go source code. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20180826012351-8a410e7b638d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0hp0l8f6fir5gmgrjq0mhh5ikc0rlrm72774228800kfwqjrxxny")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be +; (package +; (name "go-golang-org-x-oauth2") +; (version "0.0.0-20180821212333-d2e6202438be") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/oauth2") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0wbn75fd10485nb93bm4kqldqifdim5xqy4v7r5sdvimvf3fyhn7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/oauth2")) +; (home-page "https://golang.org/x/oauth2") +; (synopsis "OAuth2 for Go") +; (description +; "Package oauth2 provides support for making +;OAuth2 authorized and authenticated HTTP requests, +;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +;It can additionally grant authorization with Bearer JWT. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f +; (package +; (name "go-golang-org-x-sync") +; (version "0.0.0-20180314180146-1d60e4601c6f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sync") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "046jlanz2lkxq1r57x9bl6s4cvfqaic6p2xybsj8mq1120jv4rs6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sync")) +; (home-page "https://golang.org/x/sync") +; (synopsis "Go Sync") +; (description +; "This repository provides Go concurrency primitives in addition to the +;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20180830151530-49385e6e1522") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0spbldahns09fdxkxflb1x24f8k2awdlnr6k5i7ci4fqd19r1dv4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-text-0.3.0 +; (package +; (name "go-golang-org-x-text") +; (version "0.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/text") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/text")) +; (home-page "https://golang.org/x/text") +; (synopsis "Go Text") +; (description +; "text is a repository of text-related packages related to internationalization +;(i18n) and localization (l10n), such as character encodings, text +;transformations, and locale-specific text handling. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20190114222345-bf090417da8b") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1n3xp56k4k3lj06rx7587wr5gnwg0148nvwx6ch0g7ar02hh94hw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-appengine-1.1.0 +; (package +; (name "go-google-golang-org-appengine") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/appengine") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1pz202zszg8f35dk5pfhwgcdi3r6dx1l4yk6x6ly7nb4j45zi96x")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/appengine")) +; (home-page "https://google.golang.org/appengine") +; (synopsis "Go App Engine packages") +; (description +; "Package appengine provides basic functionality for Google App Engine. +;") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8 +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20180817151627-c66870c02cf8") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0siq7sv68556ygqi2d2zmvx8l1xjqdc0fylqzci5h1mq2i14bayn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-grpc-1.19.0 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.19.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1znqwpj7ix3dpzx4zch0q70sdl3z5lvbb7v3q4i8sf8kas3yv71v")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" +; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) +; ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" +; ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) +; ("go-google-golang-org-appengine-1.1.0" +; ,go-google-golang-org-appengine-1.1.0) +; ("go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b" +; ,go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b) +; ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522" +; ,go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522) +; ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" +; ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d" +; ,go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d) +; ("go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3" +; ,go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0) +; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-client9-misspell-0.3.4" +; ,go-github-com-client9-misspell-0.3.4) +; ("go-github-com-burntsushi-toml-0.3.1" +; ,go-github-com-burntsushi-toml-0.3.1) +; ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099 +; (package +; (name "go-honnef-co-go-tools") +; (version "0.0.0-20190102054323-c2f93a96b099") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/dominikh/go-tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "07lg29aiap80ca9f201jzng9vjr168cv3qmvjmbd7v5pmww9kmr8")))) +; (build-system go-build-system) +; (arguments '(#:import-path "honnef.co/go/tools")) +; (home-page "https://honnef.co/go/tools") +; (synopsis "Documentation") +; (description +; "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, +;offers simplifications, and enforces style rules.") +; (license license:expat))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55 +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20190819201941-24fa4b261c55") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "109zhaqlfd8zkbr1hk6zqbs6vcxfrk64scjwh2nswph05gr0m84d")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" +; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) +; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) +; ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" +; ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) +; ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" +; ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) +; ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" +; ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-grpc-1.27.1 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.27.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "09phrrsafgq6hnbw8cawvx44bdpk1p584fys17x1bwn0j0451zzs")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" +; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-github-com-google-go-cmp-0.2.0" +; ,go-github-com-google-go-cmp-0.2.0) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2) +; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" +; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) +; ("go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473" +; ,go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-containerd-1.5.8 +; (package +; (name "go-github-com-containerd-containerd") +; (version "1.5.8") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/containerd") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "18lzmpbhbk1kq1nwdp6zcxb577kp425l2ikcmb45jcwgqdwzla6l")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/containerd")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) +; ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) +; ("go-github-com-golang-protobuf-1.3.5" +; ,go-github-com-golang-protobuf-1.3.5) +; ("go-github-com-gogo-googleapis-1.3.2" +; ,go-github-com-gogo-googleapis-1.3.2) +; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" +; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) +; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) +; ("go-k8s-io-cri-api-0.20.6" ,go-k8s-io-cri-api-0.20.6) +; ("go-k8s-io-component-base-0.20.6" ,go-k8s-io-component-base-0.20.6) +; ("go-k8s-io-client-go-0.20.6" ,go-k8s-io-client-go-0.20.6) +; ("go-k8s-io-apiserver-0.20.6" ,go-k8s-io-apiserver-0.20.6) +; ("go-k8s-io-apimachinery-0.20.6" ,go-k8s-io-apimachinery-0.20.6) +; ("go-k8s-io-api-0.20.6" ,go-k8s-io-api-0.20.6) +; ("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) +; ("go-golang-org-x-sys-0.0.0-20210426230700-d19ff857e887" +; ,go-golang-org-x-sys-0.0.0-20210426230700-d19ff857e887) +; ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" +; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) +; ("go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110" +; ,go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110) +; ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) +; ("go-github-com-tchap-go-patricia-2.2.6+incompatible" +; ,go-github-com-tchap-go-patricia-2.2.6+incompatible) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-sirupsen-logrus-1.8.1" +; ,go-github-com-sirupsen-logrus-1.8.1) +; ("go-github-com-satori-go-uuid-1.2.0" +; ,go-github-com-satori-go-uuid-1.2.0) +; ("go-github-com-prometheus-client-golang-1.7.1" +; ,go-github-com-prometheus-client-golang-1.7.1) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-pelletier-go-toml-1.8.1" +; ,go-github-com-pelletier-go-toml-1.8.1) +; ("go-github-com-opencontainers-selinux-1.8.2" +; ,go-github-com-opencontainers-selinux-1.8.2) +; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417" +; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417) +; ("go-github-com-opencontainers-runc-1.0.2" +; ,go-github-com-opencontainers-runc-1.0.2) +; ("go-github-com-opencontainers-image-spec-1.0.1" +; ,go-github-com-opencontainers-image-spec-1.0.1) +; ("go-github-com-opencontainers-go-digest-1.0.0" +; ,go-github-com-opencontainers-go-digest-1.0.0) +; ("go-github-com-moby-sys-symlink-0.1.0" +; ,go-github-com-moby-sys-symlink-0.1.0) +; ("go-github-com-moby-sys-mountinfo-0.4.1" +; ,go-github-com-moby-sys-mountinfo-0.4.1) +; ("go-github-com-moby-locker-1.0.1" ,go-github-com-moby-locker-1.0.1) +; ("go-github-com-klauspost-compress-1.11.13" +; ,go-github-com-klauspost-compress-1.11.13) +; ("go-github-com-imdario-mergo-0.3.12" +; ,go-github-com-imdario-mergo-0.3.12) +; ("go-github-com-hashicorp-go-multierror-1.0.0" +; ,go-github-com-hashicorp-go-multierror-1.0.0) +; ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" +; ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) +; ("go-github-com-google-uuid-1.2.0" ,go-github-com-google-uuid-1.2.0) +; ("go-github-com-google-go-cmp-0.5.5" +; ,go-github-com-google-go-cmp-0.5.5) +; ("go-github-com-gogo-protobuf-1.3.2" +; ,go-github-com-gogo-protobuf-1.3.2) +; ("go-github-com-fsnotify-fsnotify-1.4.9" +; ,go-github-com-fsnotify-fsnotify-1.4.9) +; ("go-github-com-emicklei-go-restful-2.9.5+incompatible" +; ,go-github-com-emicklei-go-restful-2.9.5+incompatible) +; ("go-github-com-docker-go-units-0.4.0" +; ,go-github-com-docker-go-units-0.4.0) +; ("go-github-com-docker-go-metrics-0.0.1" +; ,go-github-com-docker-go-metrics-0.0.1) +; ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" +; ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1) +; ("go-github-com-coreos-go-systemd-v22-22.3.2" +; ,go-github-com-coreos-go-systemd-v22-22.3.2) +; ("go-github-com-containernetworking-plugins-0.9.1" +; ,go-github-com-containernetworking-plugins-0.9.1) +; ("go-github-com-containerd-zfs-1.0.0" +; ,go-github-com-containerd-zfs-1.0.0) +; ("go-github-com-containerd-typeurl-1.0.2" +; ,go-github-com-containerd-typeurl-1.0.2) +; ("go-github-com-containerd-ttrpc-1.1.0" +; ,go-github-com-containerd-ttrpc-1.1.0) +; ("go-github-com-containerd-nri-0.1.0" +; ,go-github-com-containerd-nri-0.1.0) +; ("go-github-com-containerd-imgcrypt-1.1.1" +; ,go-github-com-containerd-imgcrypt-1.1.1) +; ("go-github-com-containerd-go-runc-1.0.0" +; ,go-github-com-containerd-go-runc-1.0.0) +; ("go-github-com-containerd-go-cni-1.0.2" +; ,go-github-com-containerd-go-cni-1.0.2) +; ("go-github-com-containerd-fifo-1.0.0" +; ,go-github-com-containerd-fifo-1.0.0) +; ("go-github-com-containerd-continuity-0.1.0" +; ,go-github-com-containerd-continuity-0.1.0) +; ("go-github-com-containerd-console-1.0.2" +; ,go-github-com-containerd-console-1.0.2) +; ("go-github-com-containerd-cgroups-1.0.1" +; ,go-github-com-containerd-cgroups-1.0.1) +; ("go-github-com-containerd-btrfs-1.0.0" +; ,go-github-com-containerd-btrfs-1.0.0) +; ("go-github-com-containerd-aufs-1.0.0" +; ,go-github-com-containerd-aufs-1.0.0) +; ("go-github-com-microsoft-hcsshim-0.8.23" +; ,go-github-com-microsoft-hcsshim-0.8.23) +; ("go-github-com-microsoft-go-winio-0.4.17" +; ,go-github-com-microsoft-go-winio-0.4.17))) +; (home-page "https://github.com/containerd/containerd") +; (synopsis "Now Recruiting") +; (description +; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containernetworking-cni-0.8.1 +; (package +; (name "go-github-com-containernetworking-cni") +; (version "0.8.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containernetworking/cni") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ydzsiq6kfwjghf5dd4ld2rv3cxgbjq6c1523jxmib1phwf0s75z")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containernetworking/cni")) +; (home-page "https://github.com/containernetworking/cni") +; (synopsis "CNI - the Container Network Interface") +; (description +; "CNI (), a @url{https://cncf.io,Cloud Native Computing Foundation} project, consists of a specification and libraries for writing plugins to configure network interfaces in Linux containers, along with a number of supported plugins. +;CNI concerns itself only with network connectivity of containers and removing allocated resources when the container is deleted. +;Because of this focus, CNI has a wide range of support and the specification is simple to implement.") +; (license license:asl2.0))) +; +;(define-public go-github-com-microsoft-go-winio-0.4.11 +; (package +; (name "go-github-com-microsoft-go-winio") +; (version "0.4.11") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/microsoft/go-winio") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "14y1gryr3pb3zy09v2g8dh89m363rfd9sch0wgbabh531hfx72vn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/Microsoft/go-winio")) +; (home-page "https://github.com/Microsoft/go-winio") +; (synopsis "go-winio") +; (description +; "This repository contains utilities for efficiently performing Win32 IO operations in +;Go. Currently, this is focused on accessing named pipes and other file handles, and +;for using named pipes as a net transport.") +; (license license:expat))) +; +;(define-public go-github-com-microsoft-hcsshim-0.8.6 +; (package +; (name "go-github-com-microsoft-hcsshim") +; (version "0.8.6") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/microsoft/hcsshim") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "05arx8y4b6rvhjcnwizhc8svzab3ld0njkgj8vijgs27az84z6pw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/Microsoft/hcsshim")) +; (home-page "https://github.com/Microsoft/hcsshim") +; (synopsis "hcsshim") +; (description +; "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") +; (license license:expat))) +; +;(define-public go-github-com-alexflint-go-filemutex-0.0.0-20171022225611-72bdc8eae2ae +; (package +; (name "go-github-com-alexflint-go-filemutex") +; (version "0.0.0-20171022225611-72bdc8eae2ae") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/alexflint/go-filemutex") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "082y6y9zv40q3kaqvsv6fyaw2fc42j0sn9z0dl9rbiz4szixj3c4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/alexflint/go-filemutex")) +; (home-page "https://github.com/alexflint/go-filemutex") +; (synopsis "FileMutex") +; (description +; "FileMutex is similar to @code{sync.RWMutex}, but also synchronizes across processes. +;On Linux, OSX, and other POSIX systems it uses the flock system call. On windows +;it uses the LockFileEx and UnlockFileEx system calls.") +; (license license:expat))) +; +;(define-public go-github-com-buger-jsonparser-0.0.0-20180808090653-f4dd9f5a6b44 +; (package +; (name "go-github-com-buger-jsonparser") +; (version "0.0.0-20180808090653-f4dd9f5a6b44") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/buger/jsonparser") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "12qa2n33s7yz88ywpr3k9kg3b4gm6rqgnv28iyikyxw8h5jascz5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/buger/jsonparser")) +; (home-page "https://github.com/buger/jsonparser") +; (synopsis +; "Alternative JSON parser for Go (10x times faster standard library)") +; (description +; "It does not require you to know the structure of the payload (eg. create structs), and allows accessing fields by providing the path to them. It is up to @strong{10 times faster} than standard @code{encoding/json} package (depending on payload size and usage), @strong{allocates no memory}. See benchmarks below.") +; (license license:expat))) +; +;(define-public go-github-com-containernetworking-cni-0.8.1 +; (package +; (name "go-github-com-containernetworking-cni") +; (version "0.8.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containernetworking/cni") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ydzsiq6kfwjghf5dd4ld2rv3cxgbjq6c1523jxmib1phwf0s75z")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containernetworking/cni")) +; (home-page "https://github.com/containernetworking/cni") +; (synopsis "CNI - the Container Network Interface") +; (description +; "CNI (), a @url{https://cncf.io,Cloud Native Computing Foundation} project, consists of a specification and libraries for writing plugins to configure network interfaces in Linux containers, along with a number of supported plugins. +;CNI concerns itself only with network connectivity of containers and removing allocated resources when the container is deleted. +;Because of this focus, CNI has a wide range of support and the specification is simple to implement.") +; (license license:asl2.0))) +; +;(define-public go-github-com-coreos-go-iptables-0.5.0 +; (package +; (name "go-github-com-coreos-go-iptables") +; (version "0.5.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/coreos/go-iptables") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0syxjad9b3d19sjy7cy7zjpx5bx60yvbhidz8r9cdv43iqadxmp7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/coreos/go-iptables")) +; (home-page "https://github.com/coreos/go-iptables") +; (synopsis "go-iptables") +; (description "Go bindings for iptables utility.") +; (license license:asl2.0))) +; +;(define-public go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7 +; (package +; (name "go-github-com-coreos-go-systemd") +; (version "0.0.0-20180511133405-39ca1b05acc7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/coreos/go-systemd") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1kzqrrzqspa5qm7kwslxl3m16lqzns23c24rv474ajzwmj3ixmx1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/coreos/go-systemd")) +; (home-page "https://github.com/coreos/go-systemd") +; (synopsis "go-systemd") +; (description "Go bindings to systemd. The project has several packages:") +; (license license:asl2.0))) +; +;(define-public go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c +; (package +; (name "go-github-com-d2g-dhcp4") +; (version "0.0.0-20170904100407-a1d1b6c41b1c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/d2g/dhcp4") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "191hzw6yqzkm042h6miyycq3g0zrhqjhhpl27f8vhwzp4wanasiz")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/d2g/dhcp4")) +; (home-page "https://github.com/d2g/dhcp4") +; (synopsis "DHCP4 - A DHCP library written in Go.") +; (description +; "Warning: This library is still being developed. Function calls will change.") +; (license license:bsd-3))) +; +;(define-public go-github-com-d2g-dhcp4client-1.0.0 +; (package +; (name "go-github-com-d2g-dhcp4client") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/d2g/dhcp4client") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1n4qrn7xsgvnshmddq56hr8g2si5vfmxi0wnp0w71lmdfsxvvx0q")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/d2g/dhcp4client")) +; (home-page "https://github.com/d2g/dhcp4client") +; (synopsis "dhcp4client") +; (description "DHCP Client") +; (license license:mpl2.0))) +; +;(define-public go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5 +; (package +; (name "go-github-com-d2g-dhcp4server") +; (version "0.0.0-20181031114812-7d4a0a7f59a5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/d2g/dhcp4server") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "03ibq32flr74pxfly1yca9qicb6f15xgl159jjg3svgnzfjpblwl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/d2g/dhcp4server")) +; (home-page "https://github.com/d2g/dhcp4server") +; (synopsis "dhcp4server") +; (description "DHCP Server") +; (license license:mpl2.0))) +; +;(define-public go-github-com-d2g-hardwareaddr-0.0.0-20190221164911-e7d9fbe030e4 +; (package +; (name "go-github-com-d2g-hardwareaddr") +; (version "0.0.0-20190221164911-e7d9fbe030e4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/d2g/hardwareaddr") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "09nm5py9xbb9klwhzqkf6786i3b59ynba78xkrv9jx4ari7ibh8q")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/d2g/hardwareaddr")) +; (home-page "https://github.com/d2g/hardwareaddr") +; (synopsis "hardwareaddr") +; (description "Generate Hardware Addresses") +; (license license:mpl2.0))) +; +;(define-public go-github-com-godbus-dbus-0.0.0-20180201030542-885f9cc04c9c +; (package +; (name "go-github-com-godbus-dbus") +; (version "0.0.0-20180201030542-885f9cc04c9c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/godbus/dbus") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0wjpaj4vr5lvpnwc5faf3qizd7zd2v9yq0fm0558wap1hiyqb8x8")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/godbus/dbus")) +; (home-page "https://github.com/godbus/dbus") +; (synopsis "dbus") +; (description +; "Package dbus implements bindings to the D-Bus message bus system. +;") +; (license license:bsd-2))) +; +;(define-public go-github-com-j-keck-arping-0.0.0-20160618110441-2cf9dc699c56 +; (package +; (name "go-github-com-j-keck-arping") +; (version "0.0.0-20160618110441-2cf9dc699c56") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/j-keck/arping") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1bid8mpx3j4546ni0a6q5xyz7hb854g95qnxqmg5jzs9vrcird3c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/j-keck/arping")) +; (home-page "https://github.com/j-keck/arping") +; (synopsis "arping") +; (description +; "Package arping is a native go library to ping a host per arp datagram, or query a host mac address +;") +; (license license:expat))) +; +;(define-public go-github-com-mattn-go-shellwords-1.0.3 +; (package +; (name "go-github-com-mattn-go-shellwords") +; (version "1.0.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mattn/go-shellwords") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1pg7pl25wvpl2dbpyrv9p1r7prnqimxlf6136vn0dfm54j2x4mnr")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mattn/go-shellwords")) +; (home-page "https://github.com/mattn/go-shellwords") +; (synopsis "go-shellwords") +; (description "Parse line as shell words.") +; (license license:expat))) +; +;(define-public go-github-com-google-go-cmp-0.3.0 +; (package +; (name "go-github-com-google-go-cmp") +; (version "0.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/go-cmp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1hyxx3434zshl2m9ja78gwlkg1rx9yl6diqa7dnjb31xz5x4gbjj")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/go-cmp")) +; (home-page "https://github.com/google/go-cmp") +; (synopsis "Package for equality of Go values") +; (description +; "This package is intended to be a more powerful and safer alternative to +;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd +; (package +; (name "go-google-golang-org-protobuf") +; (version "0.0.0-20200109180630-ec00e32a8dfd") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0w6lp9w2avxcpxwzzhspr209ifhyjagvs23k0vykfdqahl1aplrh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.3.0" +; ,go-github-com-google-go-cmp-0.3.0))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.4.0-rc.1 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.4.0-rc.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "186rirvbfgv6hrxp27ipx2cdpv19qifdd20biqfdm01wiyclqimn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd" +; ,go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd) +; ("go-github-com-google-go-cmp-0.3.1" +; ,go-github-com-google-go-cmp-0.3.1))) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-github-com-google-go-cmp-0.3.1 +; (package +; (name "go-github-com-google-go-cmp") +; (version "0.3.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/go-cmp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1caw49i0plkjxir7kdf5qhwls3krqwfmi7g4h392rdfwi3kfahx1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/go-cmp")) +; (home-page "https://github.com/google/go-cmp") +; (synopsis "Package for equality of Go values") +; (description +; "This package is intended to be a more powerful and safer alternative to +;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64 +; (package +; (name "go-google-golang-org-protobuf") +; (version "0.0.0-20200221191635-4d8936d0db64") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0563bsvdjj6k0sgwqd5yzrgfiax7sp3lcwh608gync5sv9fx39cy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.3.1" +; ,go-github-com-google-go-cmp-0.3.1) +; ("go-github-com-golang-protobuf-1.4.0-rc.1" +; ,go-github-com-golang-protobuf-1.4.0-rc.1))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.4.0-rc.1.0.20200221234624-67d41d38c208") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ykxhg3zixmw25pd435f8h16wnz1g00jpcmmg3xl030kksgqgpp6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64" +; ,go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0))) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60 +; (package +; (name "go-google-golang-org-protobuf") +; (version "0.0.0-20200228230310-ab0ca4ff8a60") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1rinspcznfp85yz4vrlf4h38hr576virgv8lcs22bsylqga808sd")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208" +; ,go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.4.0-rc.2 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.4.0-rc.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1hd43hjv5zl6bjbmhm5phx74bw4xajsi73m5zky2k56za4mpgzzc")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60" +; ,go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0))) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967 +; (package +; (name "go-google-golang-org-protobuf") +; (version "1.20.1-0.20200309200217-e05f789c0967") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "17wmy89hnmpkwc63rfcjp50q15s9f1rhmczg06c3z9yy41zk82w9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.4.0-rc.2" +; ,go-github-com-golang-protobuf-1.4.0-rc.2))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.4.0-rc.4.0.20200313231945-b860323f09d0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1zj6cwshx0l5n9cn2cpbikzzb79px5dmkpc4p19zy1iif5r5p0z0")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967" +; ,go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0))) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-1.21.0 +; (package +; (name "go-google-golang-org-protobuf") +; (version "1.21.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "12bwln8z1lf9105gdp6ip0rx741i4yfz1520gxnp8861lh9wcl63")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0" +; ,go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.4.0 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1fjvl5n77abxz5qsd4mgyvjq19x43c5bfvmq62mq3m5plx6zksc8")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.21.0" +; ,go-google-golang-org-protobuf-1.21.0) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0))) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-github-com-google-go-cmp-0.4.0 +; (package +; (name "go-github-com-google-go-cmp") +; (version "0.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/go-cmp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1x5pvl3fb5sbyng7i34431xycnhmx8xx94gq2n19g6p0vz68z2v2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/go-cmp")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" +; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) +; (home-page "https://github.com/google/go-cmp") +; (synopsis "Package for equality of Go values") +; (description +; "This package is intended to be a more powerful and safer alternative to +;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-1.23.0 +; (package +; (name "go-google-golang-org-protobuf") +; (version "1.23.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "03yan0m1v0zmlr935p4n24fd376mznsg85zy8sywbgisls4s1bzy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.4.0" +; ,go-github-com-golang-protobuf-1.4.0))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.4.2 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.4.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0m5z81im4nsyfgarjhppayk4hqnrwswr3nix9mj8pff8x9jvcjqw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.23.0" +; ,go-google-golang-org-protobuf-1.23.0) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0))) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190904154756-749cb33beabd +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190904154756-749cb33beabd") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0dm3257q3rv2kyn5lmqqim2fqg634v6rhrqq4glvbk4wx4l3v337")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-nxadm-tail-1.4.4 +; (package +; (name "go-github-com-nxadm-tail") +; (version "1.4.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/nxadm/tail") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1czmwqii0fc8v3ar5bwqpfanprkxg19waly405zlvcflzvj53wwc")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/nxadm/tail")) +; (propagated-inputs +; `(("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" +; ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) +; ("go-golang-org-x-sys-0.0.0-20190904154756-749cb33beabd" +; ,go-golang-org-x-sys-0.0.0-20190904154756-749cb33beabd) +; ("go-github-com-fsnotify-fsnotify-1.4.7" +; ,go-github-com-fsnotify-fsnotify-1.4.7))) +; (home-page "https://github.com/nxadm/tail") +; (synopsis "tail functionality in Go") +; (description +; "nxadm/tail provides a Go library that emulates the features of the BSD `tail` +;program. The library comes with full support for truncation/move detection as +;it is designed to work with log rotation tools. The library works on all +;operating systems supported by Go, including POSIX systems like Linux and +;*BSD, and MS Windows. Go 1.9 is the oldest compiler release supported. +;") +; (license license:expat))) +; +;(define-public go-github-com-fsnotify-fsnotify-1.4.7 +; (package +; (name "go-github-com-fsnotify-fsnotify") +; (version "1.4.7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/fsnotify/fsnotify") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/fsnotify/fsnotify")) +; (home-page "https://github.com/fsnotify/fsnotify") +; (synopsis "File system notifications for Go") +; (description +; "Package fsnotify provides a platform-independent interface for file system notifications. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.2.0 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0kf4b59rcbb1cchfny2dm9jyznp8ri2hsb14n8iak1q8986xa0ab")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-github-com-hpcloud-tail-1.0.0 +; (package +; (name "go-github-com-hpcloud-tail") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hpcloud/tail") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1njpzc0pi1acg5zx9y6vj9xi6ksbsc5d387rd6904hy6rh2m6kn0")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hpcloud/tail")) +; (home-page "https://github.com/hpcloud/tail") +; (synopsis "Go package for tail-ing files") +; (description +; "This package provides a Go package striving to emulate the features of the BSD @code{tail} program.") +; (license license:expat))) +; +;(define-public go-github-com-onsi-ginkgo-1.6.0 +; (package +; (name "go-github-com-onsi-ginkgo") +; (version "1.6.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/onsi/ginkgo") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0x0gc89vgq38xhgmi2h22bhr73cf2gmk42g89nz89k8dgg9hhr25")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/onsi/ginkgo")) +; (home-page "https://github.com/onsi/ginkgo") +; (synopsis "Ginkgo 2.0 Release Candidate is available!") +; (description "Ginkgo is a BDD-style testing framework for Golang +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20180906233101-161cd47e91fd") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0254ld010iijygbzykib2vags1dc0wlmcmhgh4jl8iny159lhbcv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f +; (package +; (name "go-golang-org-x-sync") +; (version "0.0.0-20180314180146-1d60e4601c6f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sync") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "046jlanz2lkxq1r57x9bl6s4cvfqaic6p2xybsj8mq1120jv4rs6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sync")) +; (home-page "https://golang.org/x/sync") +; (synopsis "Go Sync") +; (description +; "This repository provides Go concurrency primitives in addition to the +;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20180909124046-d0be0721c37e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "081wyvfnlf842dqg03raxfz6lldlxpmyh1prix9lmrrm65arxb12")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-gopkg-in-fsnotify-v1-1.4.7 +; (package +; (name "go-gopkg-in-fsnotify-v1") +; (version "1.4.7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/fsnotify.v1") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path +; "gopkg.in/fsnotify.v1" +; #:unpack-path +; "gopkg.in/fsnotify.v1")) +; (home-page "https://gopkg.in/fsnotify.v1") +; (synopsis "File system notifications for Go") +; (description +; "Package fsnotify provides a platform-independent interface for file system notifications. +;") +; (license license:bsd-3))) +; +;(define-public go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7 +; (package +; (name "go-gopkg-in-tomb-v1") +; (version "1.0.0-20141024135613-dd632973f1e7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/tomb.v1") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1lqmq1ag7s4b3gc3ddvr792c5xb5k6sfn0cchr3i2s7f1c231zjv")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/tomb.v1" #:unpack-path "gopkg.in/tomb.v1")) +; (home-page "https://gopkg.in/tomb.v1") +; (synopsis "Installation and usage") +; (description +; "The tomb package offers a conventional API for clean goroutine termination. +;") +; (license license:bsd-3))) +; +;(define-public go-gopkg-in-yaml-v2-2.2.4 +; (package +; (name "go-gopkg-in-yaml-v2") +; (version "2.2.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/yaml.v2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "11bwj757wi8kdrcnlgfqb8vv2d2xdhlghmyagd19i62khrkchsg2")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" +; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) +; (home-page "https://gopkg.in/yaml.v2") +; (synopsis "YAML support for the Go language") +; (description "Package yaml implements YAML support for the Go language. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-onsi-gomega-1.7.1 +; (package +; (name "go-github-com-onsi-gomega") +; (version "1.7.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/onsi/gomega") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "06p3x0910cdaa64l7d44s728d4j3yhps315dlcvrbjzhljjj7mam")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/onsi/gomega")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.2.4" ,go-gopkg-in-yaml-v2-2.2.4) +; ("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" +; ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) +; ("go-gopkg-in-fsnotify-v1-1.4.7" ,go-gopkg-in-fsnotify-v1-1.4.7) +; ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e" +; ,go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e) +; ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" +; ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) +; ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" +; ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) +; ("go-github-com-onsi-ginkgo-1.6.0" ,go-github-com-onsi-ginkgo-1.6.0) +; ("go-github-com-hpcloud-tail-1.0.0" ,go-github-com-hpcloud-tail-1.0.0) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0) +; ("go-github-com-fsnotify-fsnotify-1.4.7" +; ,go-github-com-fsnotify-fsnotify-1.4.7))) +; (home-page "https://github.com/onsi/gomega") +; (synopsis ": a BDD Testing Framework for Golang") +; (description +; "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20191120155948-bd437916bb0e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1i8x26frmlin55k69k936zd1rp5sqnq14y5ms4rkxbfzhasdm2rx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-onsi-ginkgo-1.12.1 +; (package +; (name "go-github-com-onsi-ginkgo") +; (version "1.12.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/onsi/ginkgo") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0xs9724l2b0bwjwrvw5cs3akxaw0n1j5kyxrb1ggfsdjz0zmjcxh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/onsi/ginkgo")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e" +; ,go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e) +; ("go-github-com-onsi-gomega-1.7.1" ,go-github-com-onsi-gomega-1.7.1) +; ("go-github-com-nxadm-tail-1.4.4" ,go-github-com-nxadm-tail-1.4.4))) +; (home-page "https://github.com/onsi/ginkgo") +; (synopsis "Ginkgo 2.0 Release Candidate is available!") +; (description "Ginkgo is a BDD-style testing framework for Golang +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190215142949-d0b11bdaac8a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20190308221718-c2843e01d9a2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-text-0.3.0 +; (package +; (name "go-golang-org-x-text") +; (version "0.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/text") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/text")) +; (home-page "https://golang.org/x/text") +; (synopsis "Go Text") +; (description +; "text is a repository of text-related packages related to internationalization +;(i18n) and localization (l10n), such as character encodings, text +;transformations, and locale-specific text handling. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190404232315-eb5bcb51f2a3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "17k4g8krxbl84gzcs275b7gsh66dzm15fdxivjnx9xz8q84l4kby")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190412213103-97732733099d +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190412213103-97732733099d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "118hkp01i4z1f5h6hcjm0ff2ngqhrzj1f7731n0kw8dr6hvbx0sw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20200622213623-75b288015ac9") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "18vlncvvs11ds3zaaziqjlg5s2vcwi3496nn6qv7p0dp94j5pwa2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" +; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) +; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" +; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20200930185726-fdedc70b468f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1njlfhjbvi4lxvjbq8zswrb0y0q4jd2p6x51h1q6vmyzi9af6869")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20180917221912-90fa682c2a6e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-text-0.3.3 +; (package +; (name "go-golang-org-x-text") +; (version "0.3.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/text") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19pihqm3phyndmiw6i42pdv6z1rbvlqlsnhsyqf9gsnn0qnmqqlh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/text")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" +; ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) +; (home-page "https://golang.org/x/text") +; (synopsis "Go Text") +; (description +; "text is a repository of text-related packages related to internationalization +;(i18n) and localization (l10n), such as character encodings, text +;transformations, and locale-specific text handling. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20201006153459-a7d1128ccaa0 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20201006153459-a7d1128ccaa0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1iqqq7s95b2a29bspfxv68qnby8vwjvy9f8gl2262p6f9hhp21d2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) +; ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" +; ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) +; ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" +; ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543 +; (package +; (name "go-golang-org-x-xerrors") +; (version "0.0.0-20191204190536-9bdfabe68543") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/xerrors") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1yjfi1bk9xb81lqn85nnm13zz725wazvrx3b50hx19qmwg7a4b0c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/xerrors")) +; (home-page "https://golang.org/x/xerrors") +; (synopsis #f) +; (description +; "Package xerrors implements functions to manipulate errors. +;") +; (license license:bsd-3))) +; +;(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 +; (package +; (name "go-gopkg-in-check-v1") +; (version "0.0.0-20161208181325-20d25e280405") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/check.v1") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) +; (home-page "https://gopkg.in/check.v1") +; (synopsis "Instructions") +; (description +; "Package check is a rich testing extension for Go's testing package. +;") +; (license license:bsd-2))) +; +;(define-public go-gopkg-in-yaml-v2-2.3.0 +; (package +; (name "go-gopkg-in-yaml-v2") +; (version "2.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/yaml.v2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1md0hlyd9s6myv3663i9l59y74n4xjazifmmyxn43g86fgkc5lzj")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" +; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) +; (home-page "https://gopkg.in/yaml.v2") +; (synopsis "YAML support for the Go language") +; (description "Package yaml implements YAML support for the Go language. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-onsi-gomega-1.10.3 +; (package +; (name "go-github-com-onsi-gomega") +; (version "1.10.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/onsi/gomega") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1jvp5wlny86ncsqak5rz70qfn61y3ajc64w0hrj4840zgh90zb06")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/onsi/gomega")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.3.0" ,go-gopkg-in-yaml-v2-2.3.0) +; ("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" +; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) +; ("go-golang-org-x-net-0.0.0-20201006153459-a7d1128ccaa0" +; ,go-golang-org-x-net-0.0.0-20201006153459-a7d1128ccaa0) +; ("go-github-com-onsi-ginkgo-1.12.1" ,go-github-com-onsi-ginkgo-1.12.1) +; ("go-github-com-golang-protobuf-1.4.2" +; ,go-github-com-golang-protobuf-1.4.2))) +; (home-page "https://github.com/onsi/gomega") +; (synopsis ": a BDD Testing Framework for Golang") +; (description +; "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library. +;") +; (license license:expat))) +; +;(define-public go-github-com-safchain-ethtool-0.0.0-20190326074333-42ed695e3de8 +; (package +; (name "go-github-com-safchain-ethtool") +; (version "0.0.0-20190326074333-42ed695e3de8") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/safchain/ethtool") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0n5hkrzc1bh46nidcssx4539kvcmgj501v3kzh2pljpg27509daj")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/safchain/ethtool")) +; (home-page "https://github.com/safchain/ethtool") +; (synopsis "ethtool go package") +; (description +; "Package ethtool aims to provide a library giving a simple access to the +;Linux SIOCETHTOOL ioctl operations. It can be used to retrieve informations +;from a network device like statistics, driver related informations or +;even the peer of a VETH interface. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-sirupsen-logrus-1.0.6 +; (package +; (name "go-github-com-sirupsen-logrus") +; (version "1.0.6") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/sirupsen/logrus") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "029irw2lsbqi944gdrbkwdw0m2794sqni4g21gsnmz142hbzds8c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/sirupsen/logrus")) +; (home-page "https://github.com/sirupsen/logrus") +; (synopsis "Logrus") +; (description +; "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. +;") +; (license license:expat))) +; +;(define-public go-github-com-davecgh-go-spew-1.1.0 +; (package +; (name "go-github-com-davecgh-go-spew") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/davecgh/go-spew") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/davecgh/go-spew")) +; (home-page "https://github.com/davecgh/go-spew") +; (synopsis "go-spew") +; (description +; "Go-spew implements a deep pretty printer for Go data structures to aid in +;debugging. A comprehensive suite of tests with 100% test coverage is provided +;to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage +;report. Go-spew is licensed under the liberal ISC license, so it may be used in +;open source or commercial projects.") +; (license license:isc))) +; +;(define-public go-github-com-pmezard-go-difflib-1.0.0 +; (package +; (name "go-github-com-pmezard-go-difflib") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/pmezard/go-difflib") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/pmezard/go-difflib")) +; (home-page "https://github.com/pmezard/go-difflib") +; (synopsis "go-difflib") +; (description +; "Go-difflib is a partial port of python 3 difflib package. Its main goal +;was to make unified and context diff available in pure Go, mostly for +;testing purposes.") +; (license license:bsd-3))) +; +;(define-public go-github-com-stretchr-objx-0.1.0 +; (package +; (name "go-github-com-stretchr-objx") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/objx") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/objx")) +; (home-page "https://github.com/stretchr/objx") +; (synopsis "Objx") +; (description +; "Objx - Go package for dealing with maps, slices, JSON and other data. +;") +; (license license:expat))) +; +;(define-public go-github-com-stretchr-testify-1.3.0 +; (package +; (name "go-github-com-stretchr-testify") +; (version "1.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/testify") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0wjchp2c8xbgcbbq32w3kvblk6q6yn533g78nxl6iskq6y95lxsy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/testify")) +; (propagated-inputs +; `(("go-github-com-stretchr-objx-0.1.0" +; ,go-github-com-stretchr-objx-0.1.0) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.0" +; ,go-github-com-davecgh-go-spew-1.1.0))) +; (home-page "https://github.com/stretchr/testify") +; (synopsis "Testify - Thou Shalt Write Tests") +; (description +; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-sys-0.0.0-20200217220822-9197077df867 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20200217220822-9197077df867") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1270yyiqzlgrsygp2j0qavh4agm4xjv3ljfpk4wgqgmg4ph1lmx1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-vishvananda-netns-0.0.0-20200728191858-db3c7e526aae +; (package +; (name "go-github-com-vishvananda-netns") +; (version "0.0.0-20200728191858-db3c7e526aae") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/vishvananda/netns") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1gx41r06by67q5yyyvjpr0cyqqs2pcksfaqxy0s36cx4vpjn5x9r")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/vishvananda/netns")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20200217220822-9197077df867" +; ,go-golang-org-x-sys-0.0.0-20200217220822-9197077df867))) +; (home-page "https://github.com/vishvananda/netns") +; (synopsis "netns - network namespaces in go") +; (description +; "Package netns allows ultra-simple network namespace handling. NsHandles +;can be retrieved and set. Note that the current namespace is thread +;local so actions that set and reset namespaces should use LockOSThread +;to make sure the namespace doesn't change due to a goroutine switch. +;It is best to close NsHandles when you are done with them. This can be +;accomplished via a `defer ns.Close()` on the handle. Changing namespaces +;requires elevated privileges, so in most cases this code needs to be run +;as root. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-sys-0.0.0-20200728102440-3e129f6d46b1 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20200728102440-3e129f6d46b1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "02wcaghvpysqijiqsiimk52vma7lx99g5kvdid2r1qsf9hmwgvy2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-vishvananda-netlink-1.1.1-0.20201029203352-d40f9887b852 +; (package +; (name "go-github-com-vishvananda-netlink") +; (version "1.1.1-0.20201029203352-d40f9887b852") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/vishvananda/netlink") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1aq13npm7vd153vxrk1vhsg36r2g9hrh21cvk422ssrf57qy2fsj")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/vishvananda/netlink")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20200728102440-3e129f6d46b1" +; ,go-golang-org-x-sys-0.0.0-20200728102440-3e129f6d46b1) +; ("go-github-com-vishvananda-netns-0.0.0-20200728191858-db3c7e526aae" +; ,go-github-com-vishvananda-netns-0.0.0-20200728191858-db3c7e526aae))) +; (home-page "https://github.com/vishvananda/netlink") +; (synopsis "netlink - netlink library for go") +; (description +; "Package netlink provides a simple library for netlink. Netlink is +;the interface a user-space program in linux uses to communicate with +;the kernel. It can be used to add and remove interfaces, set up ip +;addresses and routes, and confiugre ipsec. Netlink communication +;requires elevated privileges, so in most cases this code needs to +;be run as root. The low level primitives for netlink are contained +;in the nl subpackage. This package attempts to provide a high-level +;interface that is loosly modeled on the iproute2 cli. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-sys-0.0.0-20201117170446-d9b008d0a637 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20201117170446-d9b008d0a637") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "06pp1nrhzx6nm6rwwzm0xzf8bs3r1mfsrkclyhlhnr7x5r0a0ppi")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-gopkg-in-airbrake-gobrake-v2-2.0.9 +; (package +; (name "go-gopkg-in-airbrake-gobrake-v2") +; (version "2.0.9") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/airbrake/gobrake.v2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1x06f7n7qlyzqgyz0sdfcidf3w4ldn6zs6qx2mhibggk2z4whcjw")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path +; "gopkg.in/airbrake/gobrake.v2" +; #:unpack-path +; "gopkg.in/airbrake/gobrake.v2")) +; (home-page "https://gopkg.in/airbrake/gobrake.v2") +; (synopsis "Airbrake Golang Notifier") +; (description +; "You can use @url{https://github.com/airbrake/glog,glog fork} to send your logs to Airbrake.") +; (license license:bsd-3))) +; +;(define-public go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2 +; (package +; (name "go-gopkg-in-gemnasium-logrus-airbrake-hook-v2") +; (version "2.1.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/gemnasium/logrus-airbrake-hook.v2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0sbg0dn6cysmf8f2bi209jwl4jnpiwp4rdghnxlzirw3c32ms5y5")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path +; "gopkg.in/gemnasium/logrus-airbrake-hook.v2" +; #:unpack-path +; "gopkg.in/gemnasium/logrus-airbrake-hook.v2")) +; (home-page "https://gopkg.in/gemnasium/logrus-airbrake-hook.v2") +; (synopsis "Airbrake Hook for Logrus") +; (description +; "Use this hook to send your errors to @url{https://airbrake.io/,Airbrake}. +;This hook is using the @url{https://github.com/airbrake/gobrake,official airbrake go package}, and will hit the api V3. +;The hook is synchronous and will send the error for @code{log.Error}, @code{log.Fatal} and @code{log.Panic} levels.") +; (license license:expat))) +; +;(define-public go-github-com-containernetworking-plugins-0.9.1 +; (package +; (name "go-github-com-containernetworking-plugins") +; (version "0.9.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containernetworking/plugins") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "17rafngfa9b0ybs3j4lvjjqdva6jkamhnbb1n0qnv685g0asvqwz")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containernetworking/plugins")) +; (propagated-inputs +; `(("go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2" +; ,go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2) +; ("go-gopkg-in-airbrake-gobrake-v2-2.0.9" +; ,go-gopkg-in-airbrake-gobrake-v2-2.0.9) +; ("go-golang-org-x-sys-0.0.0-20201117170446-d9b008d0a637" +; ,go-golang-org-x-sys-0.0.0-20201117170446-d9b008d0a637) +; ("go-github-com-vishvananda-netlink-1.1.1-0.20201029203352-d40f9887b852" +; ,go-github-com-vishvananda-netlink-1.1.1-0.20201029203352-d40f9887b852) +; ("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0) +; ("go-github-com-sirupsen-logrus-1.0.6" +; ,go-github-com-sirupsen-logrus-1.0.6) +; ("go-github-com-safchain-ethtool-0.0.0-20190326074333-42ed695e3de8" +; ,go-github-com-safchain-ethtool-0.0.0-20190326074333-42ed695e3de8) +; ("go-github-com-onsi-gomega-1.10.3" ,go-github-com-onsi-gomega-1.10.3) +; ("go-github-com-onsi-ginkgo-1.12.1" ,go-github-com-onsi-ginkgo-1.12.1) +; ("go-github-com-mattn-go-shellwords-1.0.3" +; ,go-github-com-mattn-go-shellwords-1.0.3) +; ("go-github-com-j-keck-arping-0.0.0-20160618110441-2cf9dc699c56" +; ,go-github-com-j-keck-arping-0.0.0-20160618110441-2cf9dc699c56) +; ("go-github-com-godbus-dbus-0.0.0-20180201030542-885f9cc04c9c" +; ,go-github-com-godbus-dbus-0.0.0-20180201030542-885f9cc04c9c) +; ("go-github-com-d2g-hardwareaddr-0.0.0-20190221164911-e7d9fbe030e4" +; ,go-github-com-d2g-hardwareaddr-0.0.0-20190221164911-e7d9fbe030e4) +; ("go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5" +; ,go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5) +; ("go-github-com-d2g-dhcp4client-1.0.0" +; ,go-github-com-d2g-dhcp4client-1.0.0) +; ("go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c" +; ,go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c) +; ("go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7" +; ,go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7) +; ("go-github-com-coreos-go-iptables-0.5.0" +; ,go-github-com-coreos-go-iptables-0.5.0) +; ("go-github-com-containernetworking-cni-0.8.1" +; ,go-github-com-containernetworking-cni-0.8.1) +; ("go-github-com-buger-jsonparser-0.0.0-20180808090653-f4dd9f5a6b44" +; ,go-github-com-buger-jsonparser-0.0.0-20180808090653-f4dd9f5a6b44) +; ("go-github-com-alexflint-go-filemutex-0.0.0-20171022225611-72bdc8eae2ae" +; ,go-github-com-alexflint-go-filemutex-0.0.0-20171022225611-72bdc8eae2ae) +; ("go-github-com-microsoft-hcsshim-0.8.6" +; ,go-github-com-microsoft-hcsshim-0.8.6) +; ("go-github-com-microsoft-go-winio-0.4.11" +; ,go-github-com-microsoft-go-winio-0.4.11))) +; (home-page "https://github.com/containernetworking/plugins") +; (synopsis "Plugins") +; (description +; "Some CNI network plugins, maintained by the containernetworking team. For more information, see the @url{https://www.cni.dev,CNI website}.") +; (license license:asl2.0))) +; +;(define-public go-github-com-14rcole-gopopulate-0.0.0-20180821133914-b175b219e774 +; (package +; (name "go-github-com-14rcole-gopopulate") +; (version "0.0.0-20180821133914-b175b219e774") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/14rcole/gopopulate") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0rrrwsmjvkswn3mrdm03q53sl6r9y00galv83lcm7b789m9a6abf")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/14rcole/gopopulate")) +; (home-page "https://github.com/14rcole/gopopulate") +; (synopsis "gopopulate") +; (description #f) +; (license license:expat))) +; +;(define-public go-github-com-containerd-containerd-1.5.1 +; (package +; (name "go-github-com-containerd-containerd") +; (version "1.5.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/containerd") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1mbdk7c1drl14wzxykh6h3hxd5d9xxgdslp9634yj9pwi5wkx3n3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/containerd")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) +; ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) +; ("go-github-com-golang-protobuf-1.3.5" +; ,go-github-com-golang-protobuf-1.3.5) +; ("go-github-com-gogo-googleapis-1.3.2" +; ,go-github-com-gogo-googleapis-1.3.2) +; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" +; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) +; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) +; ("go-k8s-io-cri-api-0.20.6" ,go-k8s-io-cri-api-0.20.6) +; ("go-k8s-io-component-base-0.20.6" ,go-k8s-io-component-base-0.20.6) +; ("go-k8s-io-client-go-0.20.6" ,go-k8s-io-client-go-0.20.6) +; ("go-k8s-io-apiserver-0.20.6" ,go-k8s-io-apiserver-0.20.6) +; ("go-k8s-io-apimachinery-0.20.6" ,go-k8s-io-apimachinery-0.20.6) +; ("go-k8s-io-api-0.20.6" ,go-k8s-io-api-0.20.6) +; ("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) +; ("go-golang-org-x-sys-0.0.0-20210324051608-47abb6519492" +; ,go-golang-org-x-sys-0.0.0-20210324051608-47abb6519492) +; ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" +; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) +; ("go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110" +; ,go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110) +; ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) +; ("go-github-com-tchap-go-patricia-2.2.6+incompatible" +; ,go-github-com-tchap-go-patricia-2.2.6+incompatible) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-sirupsen-logrus-1.7.0" +; ,go-github-com-sirupsen-logrus-1.7.0) +; ("go-github-com-satori-go-uuid-1.2.0" +; ,go-github-com-satori-go-uuid-1.2.0) +; ("go-github-com-prometheus-procfs-0.6.0" +; ,go-github-com-prometheus-procfs-0.6.0) +; ("go-github-com-prometheus-client-golang-1.7.1" +; ,go-github-com-prometheus-client-golang-1.7.1) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-pelletier-go-toml-1.8.1" +; ,go-github-com-pelletier-go-toml-1.8.1) +; ("go-github-com-opencontainers-selinux-1.8.0" +; ,go-github-com-opencontainers-selinux-1.8.0) +; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" +; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) +; ("go-github-com-opencontainers-runc-1.0.0-rc93" +; ,go-github-com-opencontainers-runc-1.0.0-rc93) +; ("go-github-com-opencontainers-image-spec-1.0.1" +; ,go-github-com-opencontainers-image-spec-1.0.1) +; ("go-github-com-opencontainers-go-digest-1.0.0" +; ,go-github-com-opencontainers-go-digest-1.0.0) +; ("go-github-com-moby-sys-symlink-0.1.0" +; ,go-github-com-moby-sys-symlink-0.1.0) +; ("go-github-com-moby-sys-mountinfo-0.4.1" +; ,go-github-com-moby-sys-mountinfo-0.4.1) +; ("go-github-com-moby-locker-1.0.1" ,go-github-com-moby-locker-1.0.1) +; ("go-github-com-klauspost-compress-1.11.13" +; ,go-github-com-klauspost-compress-1.11.13) +; ("go-github-com-imdario-mergo-0.3.11" +; ,go-github-com-imdario-mergo-0.3.11) +; ("go-github-com-hashicorp-go-multierror-1.0.0" +; ,go-github-com-hashicorp-go-multierror-1.0.0) +; ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" +; ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) +; ("go-github-com-google-uuid-1.2.0" ,go-github-com-google-uuid-1.2.0) +; ("go-github-com-google-go-cmp-0.5.4" +; ,go-github-com-google-go-cmp-0.5.4) +; ("go-github-com-gogo-protobuf-1.3.2" +; ,go-github-com-gogo-protobuf-1.3.2) +; ("go-github-com-fsnotify-fsnotify-1.4.9" +; ,go-github-com-fsnotify-fsnotify-1.4.9) +; ("go-github-com-emicklei-go-restful-2.9.5+incompatible" +; ,go-github-com-emicklei-go-restful-2.9.5+incompatible) +; ("go-github-com-docker-go-units-0.4.0" +; ,go-github-com-docker-go-units-0.4.0) +; ("go-github-com-docker-go-metrics-0.0.1" +; ,go-github-com-docker-go-metrics-0.0.1) +; ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" +; ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1) +; ("go-github-com-coreos-go-systemd-v22-22.1.0" +; ,go-github-com-coreos-go-systemd-v22-22.1.0) +; ("go-github-com-containernetworking-plugins-0.9.1" +; ,go-github-com-containernetworking-plugins-0.9.1) +; ("go-github-com-containerd-zfs-1.0.0" +; ,go-github-com-containerd-zfs-1.0.0) +; ("go-github-com-containerd-typeurl-1.0.2" +; ,go-github-com-containerd-typeurl-1.0.2) +; ("go-github-com-containerd-ttrpc-1.0.2" +; ,go-github-com-containerd-ttrpc-1.0.2) +; ("go-github-com-containerd-nri-0.1.0" +; ,go-github-com-containerd-nri-0.1.0) +; ("go-github-com-containerd-imgcrypt-1.1.1" +; ,go-github-com-containerd-imgcrypt-1.1.1) +; ("go-github-com-containerd-go-runc-1.0.0" +; ,go-github-com-containerd-go-runc-1.0.0) +; ("go-github-com-containerd-go-cni-1.0.2" +; ,go-github-com-containerd-go-cni-1.0.2) +; ("go-github-com-containerd-fifo-1.0.0" +; ,go-github-com-containerd-fifo-1.0.0) +; ("go-github-com-containerd-continuity-0.1.0" +; ,go-github-com-containerd-continuity-0.1.0) +; ("go-github-com-containerd-console-1.0.2" +; ,go-github-com-containerd-console-1.0.2) +; ("go-github-com-containerd-cgroups-1.0.1" +; ,go-github-com-containerd-cgroups-1.0.1) +; ("go-github-com-containerd-btrfs-1.0.0" +; ,go-github-com-containerd-btrfs-1.0.0) +; ("go-github-com-containerd-aufs-1.0.0" +; ,go-github-com-containerd-aufs-1.0.0) +; ("go-github-com-microsoft-hcsshim-0.8.16" +; ,go-github-com-microsoft-hcsshim-0.8.16) +; ("go-github-com-microsoft-go-winio-0.4.17" +; ,go-github-com-microsoft-go-winio-0.4.17))) +; (home-page "https://github.com/containerd/containerd") +; (synopsis "Now Recruiting") +; (description +; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") +; (license license:asl2.0))) +; +;(define-public go-github-com-microsoft-hcsshim-0.8.21 +; (package +; (name "go-github-com-microsoft-hcsshim") +; (version "0.8.21") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/microsoft/hcsshim") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1z0imk1nr6h6smi3r5fr7zl54k1wzbkgwff6jijg0zr2m3lqp051")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/Microsoft/hcsshim")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) +; ("go-golang-org-x-sys-0.0.0-20210324051608-47abb6519492" +; ,go-golang-org-x-sys-0.0.0-20210324051608-47abb6519492) +; ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" +; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) +; ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) +; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) +; ("go-github-com-sirupsen-logrus-1.7.0" +; ,go-github-com-sirupsen-logrus-1.7.0) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" +; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) +; ("go-github-com-gogo-protobuf-1.3.2" +; ,go-github-com-gogo-protobuf-1.3.2) +; ("go-github-com-containerd-typeurl-1.0.2" +; ,go-github-com-containerd-typeurl-1.0.2) +; ("go-github-com-containerd-ttrpc-1.0.2" +; ,go-github-com-containerd-ttrpc-1.0.2) +; ("go-github-com-containerd-go-runc-1.0.0" +; ,go-github-com-containerd-go-runc-1.0.0) +; ("go-github-com-containerd-containerd-1.5.1" +; ,go-github-com-containerd-containerd-1.5.1) +; ("go-github-com-containerd-console-1.0.2" +; ,go-github-com-containerd-console-1.0.2) +; ("go-github-com-containerd-cgroups-1.0.1" +; ,go-github-com-containerd-cgroups-1.0.1) +; ("go-github-com-microsoft-go-winio-0.4.17" +; ,go-github-com-microsoft-go-winio-0.4.17))) +; (home-page "https://github.com/Microsoft/hcsshim") +; (synopsis "hcsshim") +; (description +; "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") +; (license license:expat))) +; +;(define-public go-github-com-containerd-aufs-1.0.0 +; (package +; (name "go-github-com-containerd-aufs") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/aufs") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0jyyyf6sr910m602axmp4h4j1l2n680cpp60z09pvprz55zi4ba0")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/aufs")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" +; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" +; ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) +; ("go-github-com-containerd-containerd-1.5.0-beta.3" +; ,go-github-com-containerd-containerd-1.5.0-beta.3))) +; (home-page "https://github.com/containerd/aufs") +; (synopsis "aufs snapshotter") +; (description +; "AUFS implementation of the snapshot interface for containerd.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-btrfs-1.0.0 +; (package +; (name "go-github-com-containerd-btrfs") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/btrfs") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1yf38gg41y1v12m0cl81r9q7d13170a4npzqxhbz7qn32zr23kzn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/btrfs")) +; (propagated-inputs +; `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) +; (home-page "https://github.com/containerd/btrfs") +; (synopsis "go-btrfs") +; (description +; "Package btrfs provides bindings for working with btrfs partitions from Go. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-go-cni-1.0.2 +; (package +; (name "go-github-com-containerd-go-cni") +; (version "1.0.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/go-cni") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1hqwy402qy04slz2vj05s517mhdbmmkdjs6nhfnk184a730whgv6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/go-cni")) +; (propagated-inputs +; `(("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-onsi-gomega-1.7.1" ,go-github-com-onsi-gomega-1.7.1) +; ("go-github-com-onsi-ginkgo-1.10.3" ,go-github-com-onsi-ginkgo-1.10.3) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1) +; ("go-github-com-containernetworking-cni-0.8.0" +; ,go-github-com-containernetworking-cni-0.8.0))) +; (home-page "https://github.com/containerd/go-cni") +; (synopsis "go-cni") +; (description +; "This package provides a generic CNI library to provide APIs for CNI plugin interactions. The library provides APIs to:") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-zfs-0.0.0-20210315114300-dde8f0fda960 +; (package +; (name "go-github-com-containerd-zfs") +; (version "0.0.0-20210315114300-dde8f0fda960") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/zfs") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ag5p2vqzdavq66wb1z42yw5jzrncsi97g8qk2x9nq51z1nj8rdi")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/zfs")) +; (propagated-inputs +; `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible" +; ,go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible) +; ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" +; ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) +; ("go-github-com-containerd-containerd-1.5.0-beta.3" +; ,go-github-com-containerd-containerd-1.5.0-beta.3))) +; (home-page "https://github.com/containerd/zfs") +; (synopsis "ZFS snapshotter plugin") +; (description "ZFS snapshotter plugin for containerd.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-containerd-1.5.0-beta.4 +; (package +; (name "go-github-com-containerd-containerd") +; (version "1.5.0-beta.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/containerd") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "039c26mjq8qs1s4kbx76fc99wnmnx165bqn16b2b9gyvxcphs7iv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/containerd")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) +; ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) +; ("go-github-com-golang-protobuf-1.3.5" +; ,go-github-com-golang-protobuf-1.3.5) +; ("go-github-com-gogo-googleapis-1.3.2" +; ,go-github-com-gogo-googleapis-1.3.2) +; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" +; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) +; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) +; ("go-k8s-io-cri-api-0.20.1" ,go-k8s-io-cri-api-0.20.1) +; ("go-k8s-io-component-base-0.20.1" ,go-k8s-io-component-base-0.20.1) +; ("go-k8s-io-client-go-0.20.1" ,go-k8s-io-client-go-0.20.1) +; ("go-k8s-io-apiserver-0.20.1" ,go-k8s-io-apiserver-0.20.1) +; ("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) +; ("go-k8s-io-api-0.20.1" ,go-k8s-io-api-0.20.1) +; ("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) +; ("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" +; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) +; ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" +; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) +; ("go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b" +; ,go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b) +; ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) +; ("go-github-com-tchap-go-patricia-2.2.6+incompatible" +; ,go-github-com-tchap-go-patricia-2.2.6+incompatible) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-sirupsen-logrus-1.7.0" +; ,go-github-com-sirupsen-logrus-1.7.0) +; ("go-github-com-prometheus-client-golang-1.7.1" +; ,go-github-com-prometheus-client-golang-1.7.1) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-selinux-1.8.0" +; ,go-github-com-opencontainers-selinux-1.8.0) +; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" +; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) +; ("go-github-com-opencontainers-runc-1.0.0-rc93" +; ,go-github-com-opencontainers-runc-1.0.0-rc93) +; ("go-github-com-opencontainers-image-spec-1.0.1" +; ,go-github-com-opencontainers-image-spec-1.0.1) +; ("go-github-com-opencontainers-go-digest-1.0.0" +; ,go-github-com-opencontainers-go-digest-1.0.0) +; ("go-github-com-moby-sys-symlink-0.1.0" +; ,go-github-com-moby-sys-symlink-0.1.0) +; ("go-github-com-moby-sys-mountinfo-0.4.1" +; ,go-github-com-moby-sys-mountinfo-0.4.1) +; ("go-github-com-klauspost-compress-1.11.3" +; ,go-github-com-klauspost-compress-1.11.3) +; ("go-github-com-imdario-mergo-0.3.11" +; ,go-github-com-imdario-mergo-0.3.11) +; ("go-github-com-hashicorp-go-multierror-1.0.0" +; ,go-github-com-hashicorp-go-multierror-1.0.0) +; ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" +; ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) +; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) +; ("go-github-com-google-go-cmp-0.5.4" +; ,go-github-com-google-go-cmp-0.5.4) +; ("go-github-com-gogo-protobuf-1.3.2" +; ,go-github-com-gogo-protobuf-1.3.2) +; ("go-github-com-fsnotify-fsnotify-1.4.9" +; ,go-github-com-fsnotify-fsnotify-1.4.9) +; ("go-github-com-emicklei-go-restful-2.9.5+incompatible" +; ,go-github-com-emicklei-go-restful-2.9.5+incompatible) +; ("go-github-com-docker-go-units-0.4.0" +; ,go-github-com-docker-go-units-0.4.0) +; ("go-github-com-docker-go-metrics-0.0.1" +; ,go-github-com-docker-go-metrics-0.0.1) +; ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" +; ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1) +; ("go-github-com-coreos-go-systemd-v22-22.1.0" +; ,go-github-com-coreos-go-systemd-v22-22.1.0) +; ("go-github-com-containernetworking-plugins-0.8.6" +; ,go-github-com-containernetworking-plugins-0.8.6) +; ("go-github-com-containerd-zfs-0.0.0-20210315114300-dde8f0fda960" +; ,go-github-com-containerd-zfs-0.0.0-20210315114300-dde8f0fda960) +; ("go-github-com-containerd-typeurl-1.0.1" +; ,go-github-com-containerd-typeurl-1.0.1) +; ("go-github-com-containerd-ttrpc-1.0.2" +; ,go-github-com-containerd-ttrpc-1.0.2) +; ("go-github-com-containerd-nri-0.0.0-20210316161719-dbaa18c31c14" +; ,go-github-com-containerd-nri-0.0.0-20210316161719-dbaa18c31c14) +; ("go-github-com-containerd-imgcrypt-1.1.1-0.20210312161619-7ed62a527887" +; ,go-github-com-containerd-imgcrypt-1.1.1-0.20210312161619-7ed62a527887) +; ("go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0" +; ,go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0) +; ("go-github-com-containerd-go-cni-1.0.1" +; ,go-github-com-containerd-go-cni-1.0.1) +; ("go-github-com-containerd-fifo-0.0.0-20210316144830-115abcc95a1d" +; ,go-github-com-containerd-fifo-0.0.0-20210316144830-115abcc95a1d) +; ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" +; ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) +; ("go-github-com-containerd-console-1.0.1" +; ,go-github-com-containerd-console-1.0.1) +; ("go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68" +; ,go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68) +; ("go-github-com-containerd-btrfs-0.0.0-20210316141732-918d888fb676" +; ,go-github-com-containerd-btrfs-0.0.0-20210316141732-918d888fb676) +; ("go-github-com-containerd-aufs-0.0.0-20210316121734-20793ff83c97" +; ,go-github-com-containerd-aufs-0.0.0-20210316121734-20793ff83c97) +; ("go-github-com-microsoft-hcsshim-0.8.15" +; ,go-github-com-microsoft-hcsshim-0.8.15) +; ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" +; ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3) +; ("go-github-com-burntsushi-toml-0.3.1" +; ,go-github-com-burntsushi-toml-0.3.1))) +; (home-page "https://github.com/containerd/containerd") +; (synopsis "Now Recruiting") +; (description +; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") +; (license license:asl2.0))) +; +;(define-public go-github-com-microsoft-hcsshim-0.8.16 +; (package +; (name "go-github-com-microsoft-hcsshim") +; (version "0.8.16") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/microsoft/hcsshim") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "15bxkqq4zavwspx3ga8j3vx9jrc7l0jazsa6cs6im9liy6xhkbd6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/Microsoft/hcsshim")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) +; ("go-golang-org-x-sys-0.0.0-20210324051608-47abb6519492" +; ,go-golang-org-x-sys-0.0.0-20210324051608-47abb6519492) +; ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" +; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) +; ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) +; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) +; ("go-github-com-sirupsen-logrus-1.7.0" +; ,go-github-com-sirupsen-logrus-1.7.0) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" +; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) +; ("go-github-com-gogo-protobuf-1.3.2" +; ,go-github-com-gogo-protobuf-1.3.2) +; ("go-github-com-containerd-typeurl-1.0.1" +; ,go-github-com-containerd-typeurl-1.0.1) +; ("go-github-com-containerd-ttrpc-1.0.2" +; ,go-github-com-containerd-ttrpc-1.0.2) +; ("go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0" +; ,go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0) +; ("go-github-com-containerd-containerd-1.5.0-beta.4" +; ,go-github-com-containerd-containerd-1.5.0-beta.4) +; ("go-github-com-containerd-console-1.0.1" +; ,go-github-com-containerd-console-1.0.1) +; ("go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68" +; ,go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68) +; ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" +; ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3))) +; (home-page "https://github.com/Microsoft/hcsshim") +; (synopsis "hcsshim") +; (description +; "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") +; (license license:expat))) +; +;(define-public go-github-com-microsoft-go-winio-0.4.17-0.20210324224401-5516f17a5958 +; (package +; (name "go-github-com-microsoft-go-winio") +; (version "0.4.17-0.20210324224401-5516f17a5958") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/microsoft/go-winio") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0gmgiak4x4gdyr17zm4b9vvharflk9pz5aj5jayh9hq50133b2f9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/Microsoft/go-winio")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" +; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) +; ("go-github-com-sirupsen-logrus-1.7.0" +; ,go-github-com-sirupsen-logrus-1.7.0) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) +; (home-page "https://github.com/Microsoft/go-winio") +; (synopsis "go-winio") +; (description +; "This repository contains utilities for efficiently performing Win32 IO operations in +;Go. Currently, this is focused on accessing named pipes and other file handles, and +;for using named pipes as a net transport.") +; (license license:expat))) +; +;(define-public go-github-com-containerd-aufs-0.0.0-20210316121734-20793ff83c97 +; (package +; (name "go-github-com-containerd-aufs") +; (version "0.0.0-20210316121734-20793ff83c97") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/aufs") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ipr8pafb2xpkchfvnxjcfx9pb48mjr9k8krj9gnagssxhynbkd5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/aufs")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" +; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" +; ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) +; ("go-github-com-containerd-containerd-1.5.0-beta.3" +; ,go-github-com-containerd-containerd-1.5.0-beta.3))) +; (home-page "https://github.com/containerd/aufs") +; (synopsis "aufs snapshotter") +; (description +; "AUFS implementation of the snapshot interface for containerd.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-btrfs-0.0.0-20210316141732-918d888fb676 +; (package +; (name "go-github-com-containerd-btrfs") +; (version "0.0.0-20210316141732-918d888fb676") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/btrfs") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1yf38gg41y1v12m0cl81r9q7d13170a4npzqxhbz7qn32zr23kzn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/btrfs")) +; (propagated-inputs +; `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) +; (home-page "https://github.com/containerd/btrfs") +; (synopsis "go-btrfs") +; (description +; "Package btrfs provides bindings for working with btrfs partitions from Go. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-fifo-0.0.0-20210316144830-115abcc95a1d +; (package +; (name "go-github-com-containerd-fifo") +; (version "0.0.0-20210316144830-115abcc95a1d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/fifo") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0hqna43p8r6g3xv8g8n985hq1nzipsvjiwm70xpbzbgynh4ym6z5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/fifo")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" +; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) +; (home-page "https://github.com/containerd/fifo") +; (synopsis "fifo") +; (description "Go package for handling fifos in a sane way.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0 +; (package +; (name "go-github-com-containerd-go-runc") +; (version "0.0.0-20201020171139-16b287bc67d0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/go-runc") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0xk30dzzxmd83bnfyilplizlxh1pg1gqz2jrq9wz9rqqkxazc03n")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/go-runc")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f" +; ,go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f) +; ("go-github-com-sirupsen-logrus-1.7.0" +; ,go-github-com-sirupsen-logrus-1.7.0) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-runtime-spec-1.0.2" +; ,go-github-com-opencontainers-runtime-spec-1.0.2) +; ("go-github-com-containerd-console-1.0.1" +; ,go-github-com-containerd-console-1.0.1))) +; (home-page "https://github.com/containerd/go-runc") +; (synopsis "go-runc") +; (description +; "This is a package for consuming the @url{https://github.com/opencontainers/runc,runc} binary in your Go applications. +;It tries to expose all the settings and features of the runc CLI. If there is something missing then add it, its opensource!") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-imgcrypt-1.1.1-0.20210312161619-7ed62a527887 +; (package +; (name "go-github-com-containerd-imgcrypt") +; (version "1.1.1-0.20210312161619-7ed62a527887") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/imgcrypt") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "16pgcc0w8m2cxhfjzmmd2h3n6mxzc1nlghrhgjlx0lf4q96hv904")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/imgcrypt")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) +; ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" +; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) +; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) +; ("go-github-com-sirupsen-logrus-1.7.0" +; ,go-github-com-sirupsen-logrus-1.7.0) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" +; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) +; ("go-github-com-opencontainers-image-spec-1.0.1" +; ,go-github-com-opencontainers-image-spec-1.0.1) +; ("go-github-com-opencontainers-go-digest-1.0.0" +; ,go-github-com-opencontainers-go-digest-1.0.0) +; ("go-github-com-gogo-protobuf-1.3.2" +; ,go-github-com-gogo-protobuf-1.3.2) +; ("go-github-com-containers-ocicrypt-1.1.0" +; ,go-github-com-containers-ocicrypt-1.1.0) +; ("go-github-com-containerd-typeurl-1.0.1" +; ,go-github-com-containerd-typeurl-1.0.1) +; ("go-github-com-containerd-containerd-1.5.0-beta.3" +; ,go-github-com-containerd-containerd-1.5.0-beta.3) +; ("go-github-com-containerd-console-1.0.1" +; ,go-github-com-containerd-console-1.0.1) +; ("go-github-com-microsoft-hcsshim-0.8.15" +; ,go-github-com-microsoft-hcsshim-0.8.15) +; ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" +; ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3))) +; (home-page "https://github.com/containerd/imgcrypt") +; (synopsis "imgcrypt image encryption library and command line tool") +; (description +; "Project @code{imgcrypt} is a non-core subproject of containerd.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-nri-0.0.0-20210316161719-dbaa18c31c14 +; (package +; (name "go-github-com-containerd-nri") +; (version "0.0.0-20210316161719-dbaa18c31c14") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/nri") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0kyrvagbga6yib7il0m4zvqz977a4wsv5lgjd3ix53xmr4h7fgm7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/nri")) +; (propagated-inputs +; `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-containerd-containerd-1.5.0-beta.3" +; ,go-github-com-containerd-containerd-1.5.0-beta.3))) +; (home-page "https://github.com/containerd/nri") +; (synopsis "nri - Node Resource Interface") +; (description +; "This project is a WIP for a new, CNI like, interface for managing resources on a node for Pods and Containers.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-zfs-0.0.0-20210324211415-d5c4544f0433 +; (package +; (name "go-github-com-containerd-zfs") +; (version "0.0.0-20210324211415-d5c4544f0433") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/zfs") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1wsqwqv2pyn05asgpm9clgpwq9b8b0fjk4khzkjvscrf5j4v1rx4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/zfs")) +; (propagated-inputs +; `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible" +; ,go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible) +; ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" +; ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) +; ("go-github-com-containerd-containerd-1.5.0-beta.3" +; ,go-github-com-containerd-containerd-1.5.0-beta.3))) +; (home-page "https://github.com/containerd/zfs") +; (synopsis "ZFS snapshotter plugin") +; (description "ZFS snapshotter plugin for containerd.") +; (license license:asl2.0))) +; +;(define-public go-k8s-io-apiserver-0.20.4 +; (package +; (name "go-k8s-io-apiserver") +; (version "0.20.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes/apiserver") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1gffl7z6bvi46v0fvphbak4waddsgf4pd5w16khgrzl1sv9skn61")))) +; (build-system go-build-system) +; (arguments '(#:import-path "k8s.io/apiserver")) +; (propagated-inputs +; `(("go-k8s-io-component-base-0.20.4" ,go-k8s-io-component-base-0.20.4) +; ("go-k8s-io-client-go-0.20.4" ,go-k8s-io-client-go-0.20.4) +; ("go-k8s-io-apimachinery-0.20.4" ,go-k8s-io-apimachinery-0.20.4) +; ("go-k8s-io-api-0.20.4" ,go-k8s-io-api-0.20.4) +; ("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) +; ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.2" +; ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.2) +; ("go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.14" +; ,go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.14) +; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" +; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) +; ("go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd" +; ,go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd) +; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) +; ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) +; ("go-gopkg-in-square-go-jose-v2-2.2.2" +; ,go-gopkg-in-square-go-jose-v2-2.2.2) +; ("go-gopkg-in-natefinch-lumberjack-v2-2.0.0" +; ,go-gopkg-in-natefinch-lumberjack-v2-2.0.0) +; ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) +; ("go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a" +; ,go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a) +; ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" +; ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) +; ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" +; ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) +; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" +; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) +; ("go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0" +; ,go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0) +; ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) +; ("go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489" +; ,go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489) +; ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) +; ("go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5" +; ,go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) +; ("go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021" +; ,go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822" +; ,go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822) +; ("go-github-com-mailru-easyjson-0.7.0" +; ,go-github-com-mailru-easyjson-0.7.0) +; ("go-github-com-hashicorp-golang-lru-0.5.1" +; ,go-github-com-hashicorp-golang-lru-0.5.1) +; ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" +; ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) +; ("go-github-com-gorilla-websocket-1.4.2" +; ,go-github-com-gorilla-websocket-1.4.2) +; ("go-github-com-googleapis-gnostic-0.4.1" +; ,go-github-com-googleapis-gnostic-0.4.1) +; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) +; ("go-github-com-google-gofuzz-1.1.0" +; ,go-github-com-google-gofuzz-1.1.0) +; ("go-github-com-google-go-cmp-0.5.2" +; ,go-github-com-google-go-cmp-0.5.2) +; ("go-github-com-gogo-protobuf-1.3.1" +; ,go-github-com-gogo-protobuf-1.3.1) +; ("go-github-com-go-openapi-spec-0.19.3" +; ,go-github-com-go-openapi-spec-0.19.3) +; ("go-github-com-evanphx-json-patch-4.9.0+incompatible" +; ,go-github-com-evanphx-json-patch-4.9.0+incompatible) +; ("go-github-com-emicklei-go-restful-2.9.5+incompatible" +; ,go-github-com-emicklei-go-restful-2.9.5+incompatible) +; ("go-github-com-dustin-go-humanize-1.0.0" +; ,go-github-com-dustin-go-humanize-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1) +; ("go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f" +; ,go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f) +; ("go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e" +; ,go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e) +; ("go-github-com-coreos-go-semver-0.3.0" +; ,go-github-com-coreos-go-semver-0.3.0) +; ("go-github-com-coreos-go-oidc-2.1.0+incompatible" +; ,go-github-com-coreos-go-oidc-2.1.0+incompatible))) +; (home-page "https://k8s.io/apiserver") +; (synopsis "apiserver") +; (description +; "Generic library for building a Kubernetes aggregated API server.") +; (license license:asl2.0))) +; +;(define-public go-k8s-io-api-0.20.4 +; (package +; (name "go-k8s-io-api") +; (version "0.20.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes/api") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0hjckd94vpsr690kwx7dad8qlb8xjg2bz5ms315s9h6wc5cqwvgy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "k8s.io/api")) +; (propagated-inputs +; `(("go-k8s-io-apimachinery-0.20.4" ,go-k8s-io-apimachinery-0.20.4) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-gogo-protobuf-1.3.1" +; ,go-github-com-gogo-protobuf-1.3.1))) +; (home-page "https://k8s.io/api") +; (synopsis "api") +; (description +; "Schema of the external API types that are served by the Kubernetes API server.") +; (license license:asl2.0))) +; +;(define-public go-k8s-io-apimachinery-0.20.4 +; (package +; (name "go-k8s-io-apimachinery") +; (version "0.20.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes/apimachinery") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "15qc12lbzpd4lgajy0rv24b3ky4hhg5y1l37qxdfiakhz91didfw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "k8s.io/apimachinery")) +; (propagated-inputs +; `(("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) +; ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.2" +; ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.2) +; ("go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd" +; ,go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd) +; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) +; ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) +; ("go-gopkg-in-inf-v0-0.9.1" ,go-gopkg-in-inf-v0-0.9.1) +; ("go-google-golang-org-protobuf-1.25.0" +; ,go-google-golang-org-protobuf-1.25.0) +; ("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" +; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) +; ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) +; ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" +; ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) +; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" +; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-onsi-gomega-1.7.0" ,go-github-com-onsi-gomega-1.7.0) +; ("go-github-com-onsi-ginkgo-1.11.0" ,go-github-com-onsi-ginkgo-1.11.0) +; ("go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f" +; ,go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f) +; ("go-github-com-modern-go-reflect2-1.0.1" +; ,go-github-com-modern-go-reflect2-1.0.1) +; ("go-github-com-json-iterator-go-1.1.10" +; ,go-github-com-json-iterator-go-1.1.10) +; ("go-github-com-hashicorp-golang-lru-0.5.1" +; ,go-github-com-hashicorp-golang-lru-0.5.1) +; ("go-github-com-googleapis-gnostic-0.4.1" +; ,go-github-com-googleapis-gnostic-0.4.1) +; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) +; ("go-github-com-google-gofuzz-1.1.0" +; ,go-github-com-google-gofuzz-1.1.0) +; ("go-github-com-google-go-cmp-0.5.2" +; ,go-github-com-google-go-cmp-0.5.2) +; ("go-github-com-golang-protobuf-1.4.3" +; ,go-github-com-golang-protobuf-1.4.3) +; ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" +; ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) +; ("go-github-com-gogo-protobuf-1.3.1" +; ,go-github-com-gogo-protobuf-1.3.1) +; ("go-github-com-fsnotify-fsnotify-1.4.9" +; ,go-github-com-fsnotify-fsnotify-1.4.9) +; ("go-github-com-evanphx-json-patch-4.9.0+incompatible" +; ,go-github-com-evanphx-json-patch-4.9.0+incompatible) +; ("go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153" +; ,go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153) +; ("go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96" +; ,go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://k8s.io/apimachinery") +; (synopsis "apimachinery") +; (description +; "Scheme, typing, encoding, decoding, and conversion packages for Kubernetes and Kubernetes-like API objects.") +; (license license:asl2.0))) +; +;(define-public go-k8s-io-client-go-0.20.4 +; (package +; (name "go-k8s-io-client-go") +; (version "0.20.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes/client-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0g8x2d59qm6068rql63c0mdhcjz9jsyyf7a5fdg1hyf88dvigfcx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "k8s.io/client-go")) +; (propagated-inputs +; `(("go-k8s-io-apimachinery-0.20.4" ,go-k8s-io-apimachinery-0.20.4) +; ("go-k8s-io-api-0.20.4" ,go-k8s-io-api-0.20.4) +; ("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) +; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" +; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) +; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) +; ("go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e" +; ,go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e) +; ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" +; ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) +; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" +; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) +; ("go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0" +; ,go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) +; ("go-github-com-peterbourgon-diskv-2.0.1+incompatible" +; ,go-github-com-peterbourgon-diskv-2.0.1+incompatible) +; ("go-github-com-imdario-mergo-0.3.5" +; ,go-github-com-imdario-mergo-0.3.5) +; ("go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7" +; ,go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7) +; ("go-github-com-googleapis-gnostic-0.4.1" +; ,go-github-com-googleapis-gnostic-0.4.1) +; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) +; ("go-github-com-google-gofuzz-1.1.0" +; ,go-github-com-google-gofuzz-1.1.0) +; ("go-github-com-google-go-cmp-0.5.2" +; ,go-github-com-google-go-cmp-0.5.2) +; ("go-github-com-golang-protobuf-1.4.3" +; ,go-github-com-golang-protobuf-1.4.3) +; ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" +; ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) +; ("go-github-com-gogo-protobuf-1.3.1" +; ,go-github-com-gogo-protobuf-1.3.1) +; ("go-github-com-evanphx-json-patch-4.9.0+incompatible" +; ,go-github-com-evanphx-json-patch-4.9.0+incompatible) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1) +; ("go-github-com-azure-go-autorest-autorest-adal-0.9.5" +; ,go-github-com-azure-go-autorest-autorest-adal-0.9.5) +; ("go-github-com-azure-go-autorest-autorest-0.11.1" +; ,go-github-com-azure-go-autorest-autorest-0.11.1) +; ("go-cloud-google-com-go-0.54.0" ,go-cloud-google-com-go-0.54.0))) +; (home-page "https://k8s.io/client-go") +; (synopsis "client-go") +; (description +; "Go clients for talking to a @url{http://kubernetes.io/,kubernetes} cluster.") +; (license license:asl2.0))) +; +;(define-public go-k8s-io-component-base-0.20.4 +; (package +; (name "go-k8s-io-component-base") +; (version "0.20.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes/component-base") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "02b782p63h8z3pg64i1kfgkmxwslxpyl6afkhd1agbig9zd6g7w8")))) +; (build-system go-build-system) +; (arguments '(#:import-path "k8s.io/component-base")) +; (propagated-inputs +; `(("go-k8s-io-client-go-0.20.4" ,go-k8s-io-client-go-0.20.4) +; ("go-k8s-io-apimachinery-0.20.4" ,go-k8s-io-apimachinery-0.20.4) +; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" +; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) +; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) +; ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) +; ("go-go-uber-org-multierr-1.1.0" ,go-go-uber-org-multierr-1.1.0) +; ("go-go-uber-org-atomic-1.4.0" ,go-go-uber-org-atomic-1.4.0) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) +; ("go-github-com-sirupsen-logrus-1.6.0" +; ,go-github-com-sirupsen-logrus-1.6.0) +; ("go-github-com-prometheus-procfs-0.2.0" +; ,go-github-com-prometheus-procfs-0.2.0) +; ("go-github-com-prometheus-common-0.10.0" +; ,go-github-com-prometheus-common-0.10.0) +; ("go-github-com-prometheus-client-model-0.2.0" +; ,go-github-com-prometheus-client-model-0.2.0) +; ("go-github-com-prometheus-client-golang-1.7.1" +; ,go-github-com-prometheus-client-golang-1.7.1) +; ("go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd" +; ,go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd) +; ("go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369" +; ,go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369) +; ("go-github-com-google-go-cmp-0.5.2" +; ,go-github-com-google-go-cmp-0.5.2) +; ("go-github-com-go-logr-logr-0.2.0" ,go-github-com-go-logr-logr-0.2.0) +; ("go-github-com-blang-semver-3.5.1+incompatible" +; ,go-github-com-blang-semver-3.5.1+incompatible))) +; (home-page "https://k8s.io/component-base") +; (synopsis "component-base") +; (description +; "Implement KEP 32: @url{https://github.com/kubernetes/enhancements/blob/master/keps/sig-cluster-lifecycle/wgs/783-component-base/README.md,https://github.com/kubernetes/enhancements/blob/master/keps/sig-cluster-lifecycle/wgs/783-component-base/README.md}") +; (license license:asl2.0))) +; +;(define-public go-k8s-io-cri-api-0.20.4 +; (package +; (name "go-k8s-io-cri-api") +; (version "0.20.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes/cri-api") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1r98d0kv42sijdg3404xx2g5jj0zixvfagkky2zla12p68ajm4xr")))) +; (build-system go-build-system) +; (arguments '(#:import-path "k8s.io/cri-api")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" +; ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) +; ("go-google-golang-org-protobuf-1.25.0" +; ,go-google-golang-org-protobuf-1.25.0) +; ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) +; ("go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a" +; ,go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a) +; ("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" +; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) +; ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) +; ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" +; ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) +; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" +; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-kr-pretty-0.2.0" ,go-github-com-kr-pretty-0.2.0) +; ("go-github-com-google-go-cmp-0.5.2" +; ,go-github-com-google-go-cmp-0.5.2) +; ("go-github-com-golang-protobuf-1.4.3" +; ,go-github-com-golang-protobuf-1.4.3) +; ("go-github-com-gogo-protobuf-1.3.1" +; ,go-github-com-gogo-protobuf-1.3.1) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://k8s.io/cri-api") +; (synopsis "Purpose") +; (description +; "This repository contains the definitions for the Container Runtime Interface (CRI). +;CRI is a plugin interface which enables kubelet to use a wide variety of container runtimes, +;without the need to recompile. CRI consists of a protocol buffers and gRPC API.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-containerd-1.5.0-rc.0 +; (package +; (name "go-github-com-containerd-containerd") +; (version "1.5.0-rc.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/containerd") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "148z6782bj0vy3vzbhg2xf53g14llvxfsmdsqkz6x5n49rm6xr4i")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/containerd")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) +; ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) +; ("go-github-com-golang-protobuf-1.3.5" +; ,go-github-com-golang-protobuf-1.3.5) +; ("go-github-com-gogo-googleapis-1.3.2" +; ,go-github-com-gogo-googleapis-1.3.2) +; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" +; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) +; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) +; ("go-k8s-io-cri-api-0.20.4" ,go-k8s-io-cri-api-0.20.4) +; ("go-k8s-io-component-base-0.20.4" ,go-k8s-io-component-base-0.20.4) +; ("go-k8s-io-client-go-0.20.4" ,go-k8s-io-client-go-0.20.4) +; ("go-k8s-io-apiserver-0.20.4" ,go-k8s-io-apiserver-0.20.4) +; ("go-k8s-io-apimachinery-0.20.4" ,go-k8s-io-apimachinery-0.20.4) +; ("go-k8s-io-api-0.20.4" ,go-k8s-io-api-0.20.4) +; ("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) +; ("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" +; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) +; ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" +; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) +; ("go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b" +; ,go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b) +; ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) +; ("go-github-com-tchap-go-patricia-2.2.6+incompatible" +; ,go-github-com-tchap-go-patricia-2.2.6+incompatible) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-sirupsen-logrus-1.7.0" +; ,go-github-com-sirupsen-logrus-1.7.0) +; ("go-github-com-prometheus-client-golang-1.7.1" +; ,go-github-com-prometheus-client-golang-1.7.1) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-pelletier-go-toml-1.8.1" +; ,go-github-com-pelletier-go-toml-1.8.1) +; ("go-github-com-opencontainers-selinux-1.8.0" +; ,go-github-com-opencontainers-selinux-1.8.0) +; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" +; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) +; ("go-github-com-opencontainers-runc-1.0.0-rc93" +; ,go-github-com-opencontainers-runc-1.0.0-rc93) +; ("go-github-com-opencontainers-image-spec-1.0.1" +; ,go-github-com-opencontainers-image-spec-1.0.1) +; ("go-github-com-opencontainers-go-digest-1.0.0" +; ,go-github-com-opencontainers-go-digest-1.0.0) +; ("go-github-com-moby-sys-symlink-0.1.0" +; ,go-github-com-moby-sys-symlink-0.1.0) +; ("go-github-com-moby-sys-mountinfo-0.4.1" +; ,go-github-com-moby-sys-mountinfo-0.4.1) +; ("go-github-com-klauspost-compress-1.11.13" +; ,go-github-com-klauspost-compress-1.11.13) +; ("go-github-com-imdario-mergo-0.3.11" +; ,go-github-com-imdario-mergo-0.3.11) +; ("go-github-com-hashicorp-go-multierror-1.0.0" +; ,go-github-com-hashicorp-go-multierror-1.0.0) +; ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" +; ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) +; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) +; ("go-github-com-google-go-cmp-0.5.4" +; ,go-github-com-google-go-cmp-0.5.4) +; ("go-github-com-gogo-protobuf-1.3.2" +; ,go-github-com-gogo-protobuf-1.3.2) +; ("go-github-com-fsnotify-fsnotify-1.4.9" +; ,go-github-com-fsnotify-fsnotify-1.4.9) +; ("go-github-com-emicklei-go-restful-2.9.5+incompatible" +; ,go-github-com-emicklei-go-restful-2.9.5+incompatible) +; ("go-github-com-docker-go-units-0.4.0" +; ,go-github-com-docker-go-units-0.4.0) +; ("go-github-com-docker-go-metrics-0.0.1" +; ,go-github-com-docker-go-metrics-0.0.1) +; ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" +; ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1) +; ("go-github-com-coreos-go-systemd-v22-22.1.0" +; ,go-github-com-coreos-go-systemd-v22-22.1.0) +; ("go-github-com-containernetworking-plugins-0.8.6" +; ,go-github-com-containernetworking-plugins-0.8.6) +; ("go-github-com-containerd-zfs-0.0.0-20210324211415-d5c4544f0433" +; ,go-github-com-containerd-zfs-0.0.0-20210324211415-d5c4544f0433) +; ("go-github-com-containerd-typeurl-1.0.1" +; ,go-github-com-containerd-typeurl-1.0.1) +; ("go-github-com-containerd-ttrpc-1.0.2" +; ,go-github-com-containerd-ttrpc-1.0.2) +; ("go-github-com-containerd-nri-0.0.0-20210316161719-dbaa18c31c14" +; ,go-github-com-containerd-nri-0.0.0-20210316161719-dbaa18c31c14) +; ("go-github-com-containerd-imgcrypt-1.1.1-0.20210312161619-7ed62a527887" +; ,go-github-com-containerd-imgcrypt-1.1.1-0.20210312161619-7ed62a527887) +; ("go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0" +; ,go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0) +; ("go-github-com-containerd-go-cni-1.0.1" +; ,go-github-com-containerd-go-cni-1.0.1) +; ("go-github-com-containerd-fifo-0.0.0-20210316144830-115abcc95a1d" +; ,go-github-com-containerd-fifo-0.0.0-20210316144830-115abcc95a1d) +; ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" +; ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) +; ("go-github-com-containerd-console-1.0.1" +; ,go-github-com-containerd-console-1.0.1) +; ("go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68" +; ,go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68) +; ("go-github-com-containerd-btrfs-0.0.0-20210316141732-918d888fb676" +; ,go-github-com-containerd-btrfs-0.0.0-20210316141732-918d888fb676) +; ("go-github-com-containerd-aufs-0.0.0-20210316121734-20793ff83c97" +; ,go-github-com-containerd-aufs-0.0.0-20210316121734-20793ff83c97) +; ("go-github-com-microsoft-hcsshim-0.8.15" +; ,go-github-com-microsoft-hcsshim-0.8.15) +; ("go-github-com-microsoft-go-winio-0.4.17-0.20210324224401-5516f17a5958" +; ,go-github-com-microsoft-go-winio-0.4.17-0.20210324224401-5516f17a5958))) +; (home-page "https://github.com/containerd/containerd") +; (synopsis "Now Recruiting") +; (description +; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containers-ocicrypt-1.1.1 +; (package +; (name "go-github-com-containers-ocicrypt") +; (version "1.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containers/ocicrypt") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1l0bfk244sxnakg3my529jsw532pffkmiyk5y1iqblz4mkjfphc8")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containers/ocicrypt")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) +; ("go-gopkg-in-square-go-jose-v2-2.5.1" +; ,go-gopkg-in-square-go-jose-v2-2.5.1) +; ("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) +; ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" +; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) +; ("go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2" +; ,go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2) +; ("go-go-mozilla-org-pkcs7-0.0.0-20200128120323-432b2356ecb1" +; ,go-go-mozilla-org-pkcs7-0.0.0-20200128120323-432b2356ecb1) +; ("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0) +; ("go-github-com-stefanberger-go-pkcs11uri-0.0.0-20201008174630-78d3cae3a980" +; ,go-github-com-stefanberger-go-pkcs11uri-0.0.0-20201008174630-78d3cae3a980) +; ("go-github-com-sirupsen-logrus-1.7.0" +; ,go-github-com-sirupsen-logrus-1.7.0) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-image-spec-1.0.1" +; ,go-github-com-opencontainers-image-spec-1.0.1) +; ("go-github-com-opencontainers-go-digest-1.0.0" +; ,go-github-com-opencontainers-go-digest-1.0.0) +; ("go-github-com-miekg-pkcs11-1.0.3" ,go-github-com-miekg-pkcs11-1.0.3) +; ("go-github-com-google-go-cmp-0.5.2" +; ,go-github-com-google-go-cmp-0.5.2) +; ("go-github-com-golang-protobuf-1.4.3" +; ,go-github-com-golang-protobuf-1.4.3))) +; (home-page "https://github.com/containers/ocicrypt") +; (synopsis "OCIcrypt Library") +; (description +; "The @code{ocicrypt} library is the OCI image spec implementation of container image encryption. More details of the spec can be seen in the @url{https://github.com/opencontainers/image-spec/pull/775,OCI repository}. The purpose of this library is to encode spec structures and consts in code, as well as provide a consistent implementation of image encryption across container runtimes and build tools.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-imgcrypt-1.1.1 +; (package +; (name "go-github-com-containerd-imgcrypt") +; (version "1.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/imgcrypt") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "177fs3p2xzwjsffcxqqllx6wi6ghfyqbvfgn95v3q7a2993yqk4k")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/imgcrypt")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) +; ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" +; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) +; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) +; ("go-github-com-sirupsen-logrus-1.7.0" +; ,go-github-com-sirupsen-logrus-1.7.0) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" +; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) +; ("go-github-com-opencontainers-image-spec-1.0.1" +; ,go-github-com-opencontainers-image-spec-1.0.1) +; ("go-github-com-opencontainers-go-digest-1.0.0" +; ,go-github-com-opencontainers-go-digest-1.0.0) +; ("go-github-com-gogo-protobuf-1.3.2" +; ,go-github-com-gogo-protobuf-1.3.2) +; ("go-github-com-containers-ocicrypt-1.1.1" +; ,go-github-com-containers-ocicrypt-1.1.1) +; ("go-github-com-containerd-typeurl-1.0.1" +; ,go-github-com-containerd-typeurl-1.0.1) +; ("go-github-com-containerd-containerd-1.5.0-rc.0" +; ,go-github-com-containerd-containerd-1.5.0-rc.0) +; ("go-github-com-containerd-console-1.0.2" +; ,go-github-com-containerd-console-1.0.2) +; ("go-github-com-microsoft-hcsshim-0.8.16" +; ,go-github-com-microsoft-hcsshim-0.8.16) +; ("go-github-com-microsoft-go-winio-0.4.17-0.20210324224401-5516f17a5958" +; ,go-github-com-microsoft-go-winio-0.4.17-0.20210324224401-5516f17a5958))) +; (home-page "https://github.com/containerd/imgcrypt") +; (synopsis "imgcrypt image encryption library and command line tool") +; (description +; "Project @code{imgcrypt} is a non-core subproject of containerd.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-nri-0.1.0 +; (package +; (name "go-github-com-containerd-nri") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/nri") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0hqji5qa0n0fdyv9sjdl7mv3bb4fnq9i79pdzlw6m1nigrnb18qp")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/nri")) +; (propagated-inputs +; `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-containerd-containerd-1.5.0-beta.3" +; ,go-github-com-containerd-containerd-1.5.0-beta.3))) +; (home-page "https://github.com/containerd/nri") +; (synopsis "nri - Node Resource Interface") +; (description +; "This project is a WIP for a new, CNI like, interface for managing resources on a node for Pods and Containers.") +; (license license:asl2.0))) +; +;(define-public go-github-com-microsoft-hcsshim-0.8.15 +; (package +; (name "go-github-com-microsoft-hcsshim") +; (version "0.8.15") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/microsoft/hcsshim") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1119qf7nklpnn9li61m8jrd5wvifhiz7qh7sfjjy04rfvbvlsi6c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/Microsoft/hcsshim")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.30.0" ,go-google-golang-org-grpc-1.30.0) +; ("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" +; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) +; ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" +; ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) +; ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) +; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) +; ("go-github-com-sirupsen-logrus-1.7.0" +; ,go-github-com-sirupsen-logrus-1.7.0) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" +; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) +; ("go-github-com-gogo-protobuf-1.3.2" +; ,go-github-com-gogo-protobuf-1.3.2) +; ("go-github-com-containerd-typeurl-1.0.1" +; ,go-github-com-containerd-typeurl-1.0.1) +; ("go-github-com-containerd-ttrpc-1.0.2" +; ,go-github-com-containerd-ttrpc-1.0.2) +; ("go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328" +; ,go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328) +; ("go-github-com-containerd-containerd-1.5.0-beta.1" +; ,go-github-com-containerd-containerd-1.5.0-beta.1) +; ("go-github-com-containerd-console-1.0.1" +; ,go-github-com-containerd-console-1.0.1) +; ("go-github-com-containerd-cgroups-0.0.0-20200824123100-0b889c03f102" +; ,go-github-com-containerd-cgroups-0.0.0-20200824123100-0b889c03f102) +; ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" +; ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3))) +; (home-page "https://github.com/Microsoft/hcsshim") +; (synopsis "hcsshim") +; (description +; "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") +; (license license:expat))) +; +;(define-public go-github-com-containerd-containerd-1.4.1 +; (package +; (name "go-github-com-containerd-containerd") +; (version "1.4.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/containerd") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1k6dqaidnldf7kpxdszf0wn6xb8m6vaizm2aza81fri1q0051213")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/containerd")) +; (home-page "https://github.com/containerd/containerd") +; (synopsis "Now Recruiting") +; (description +; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-sys-0.0.0-20200622214017-ed371f2e16b4 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20200622214017-ed371f2e16b4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "107wfy2fj6z5zps1v72j8drfrfvss1158drb0yqhz5awlbvgrpj7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-containerd-aufs-0.0.0-20201003224125-76a6863f2989 +; (package +; (name "go-github-com-containerd-aufs") +; (version "0.0.0-20201003224125-76a6863f2989") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/aufs") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0nsiyqjrgf3vvv6hpiljknpbkzlla1czpkq69i607f7p5jd8bgaq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/aufs")) +; (propagated-inputs +; `(("go-gotest-tools-v3-3.0.2" ,go-gotest-tools-v3-3.0.2) +; ("go-golang-org-x-sys-0.0.0-20200622214017-ed371f2e16b4" +; ,go-golang-org-x-sys-0.0.0-20200622214017-ed371f2e16b4) +; ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-image-spec-1.0.1" +; ,go-github-com-opencontainers-image-spec-1.0.1) +; ("go-github-com-google-go-cmp-0.3.1" +; ,go-github-com-google-go-cmp-0.3.1) +; ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" +; ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) +; ("go-github-com-containerd-typeurl-1.0.1" +; ,go-github-com-containerd-typeurl-1.0.1) +; ("go-github-com-containerd-ttrpc-1.0.1" +; ,go-github-com-containerd-ttrpc-1.0.1) +; ("go-github-com-containerd-continuity-0.0.0-20200710164510-efbc4488d8fe" +; ,go-github-com-containerd-continuity-0.0.0-20200710164510-efbc4488d8fe) +; ("go-github-com-containerd-containerd-1.4.1" +; ,go-github-com-containerd-containerd-1.4.1) +; ("go-github-com-microsoft-hcsshim-0.8.9" +; ,go-github-com-microsoft-hcsshim-0.8.9))) +; (home-page "https://github.com/containerd/aufs") +; (synopsis "aufs snapshotter") +; (description +; "AUFS implementation of the snapshot interface for containerd.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68 +; (package +; (name "go-github-com-containerd-cgroups") +; (version "0.0.0-20210114181951-8a68de567b68") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/cgroups") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0v70kxazvsizx33w9nz341hg14acg2vnbfcpx9yknmsjqdwgqnhs")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/cgroups")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9" +; ,go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9) +; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) +; ("go-github-com-stretchr-testify-1.2.2" +; ,go-github-com-stretchr-testify-1.2.2) +; ("go-github-com-sirupsen-logrus-1.7.0" +; ,go-github-com-sirupsen-logrus-1.7.0) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-runtime-spec-1.0.2" +; ,go-github-com-opencontainers-runtime-spec-1.0.2) +; ("go-github-com-gogo-protobuf-1.3.1" +; ,go-github-com-gogo-protobuf-1.3.1) +; ("go-github-com-godbus-dbus-v5-5.0.3" +; ,go-github-com-godbus-dbus-v5-5.0.3) +; ("go-github-com-docker-go-units-0.4.0" +; ,go-github-com-docker-go-units-0.4.0) +; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" +; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) +; ("go-github-com-coreos-go-systemd-v22-22.1.0" +; ,go-github-com-coreos-go-systemd-v22-22.1.0) +; ("go-github-com-cilium-ebpf-0.2.0" ,go-github-com-cilium-ebpf-0.2.0))) +; (home-page "https://github.com/containerd/cgroups") +; (synopsis "cgroups") +; (description +; "Go package for creating, managing, inspecting, and destroying cgroups. +;The resources format for settings on the cgroup uses the OCI runtime-spec found +;@url{https://github.com/opencontainers/runtime-spec,here}.") +; (license license:asl2.0))) +; +;(define-public go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3 +; (package +; (name "go-github-com-microsoft-go-winio") +; (version "0.4.17-0.20210211115548-6eac466e5fa3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/microsoft/go-winio") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0w8fmybsl0v5azwi66qa299gwh0mlp907mrg4yaiya7s0cjmjx0d")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/Microsoft/go-winio")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" +; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) +; ("go-github-com-sirupsen-logrus-1.7.0" +; ,go-github-com-sirupsen-logrus-1.7.0) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) +; (home-page "https://github.com/Microsoft/go-winio") +; (synopsis "go-winio") +; (description +; "This repository contains utilities for efficiently performing Win32 IO operations in +;Go. Currently, this is focused on accessing named pipes and other file handles, and +;for using named pipes as a net transport.") +; (license license:expat))) +; +;(define-public go-github-com-microsoft-hcsshim-test-0.0.0-20210227013316-43a75bb4edd3 +; (package +; (name "go-github-com-microsoft-hcsshim-test") +; (version "0.0.0-20210227013316-43a75bb4edd3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/microsoft/hcsshim") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1j899w4hdw1mk6rfyy9qsm902iavgc49ykbjdsb02m6wszq1z0wy")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path +; "github.com/Microsoft/hcsshim/test" +; #:unpack-path +; "github.com/Microsoft/hcsshim")) +; (propagated-inputs +; `(("go-k8s-io-cri-api-0.20.1" ,go-k8s-io-cri-api-0.20.1) +; ("go-google-golang-org-grpc-1.30.0" ,go-google-golang-org-grpc-1.30.0) +; ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" +; ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) +; ("go-github-com-sirupsen-logrus-1.7.0" +; ,go-github-com-sirupsen-logrus-1.7.0) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39" +; ,go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39) +; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" +; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) +; ("go-github-com-gogo-protobuf-1.3.2" +; ,go-github-com-gogo-protobuf-1.3.2) +; ("go-github-com-containerd-typeurl-1.0.1" +; ,go-github-com-containerd-typeurl-1.0.1) +; ("go-github-com-containerd-ttrpc-1.0.2" +; ,go-github-com-containerd-ttrpc-1.0.2) +; ("go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328" +; ,go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328) +; ("go-github-com-containerd-containerd-1.5.0-beta.1" +; ,go-github-com-containerd-containerd-1.5.0-beta.1) +; ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" +; ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3))) +; (home-page "https://github.com/Microsoft/hcsshim") +; (synopsis #f) +; (description #f) +; (license license:expat))) +; +;(define-public go-github-com-microsoft-go-winio-0.4.16 +; (package +; (name "go-github-com-microsoft-go-winio") +; (version "0.4.16") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/microsoft/go-winio") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0snwbwdjs34x0my9ri77cvrbnahdiyjh2jlkzf12fy48p7fyk7pq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/Microsoft/go-winio")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3" +; ,go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3) +; ("go-github-com-sirupsen-logrus-1.4.1" +; ,go-github-com-sirupsen-logrus-1.4.1) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) +; (home-page "https://github.com/Microsoft/go-winio") +; (synopsis "go-winio") +; (description +; "This repository contains utilities for efficiently performing Win32 IO operations in +;Go. Currently, this is focused on accessing named pipes and other file handles, and +;for using named pipes as a net transport.") +; (license license:expat))) +; +;(define-public go-github-com-azure-azure-sdk-for-go-16.2.1+incompatible +; (package +; (name "go-github-com-azure-azure-sdk-for-go") +; (version "16.2.1+incompatible") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/Azure/azure-sdk-for-go") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1hwrspsyfs003h4f8zl8b41g3a6jpkqawqrykd1mjw9p6hs1c6k8")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/Azure/azure-sdk-for-go")) +; (home-page "https://github.com/Azure/azure-sdk-for-go") +; (synopsis "Azure SDK for Go") +; (description +; "Package sdk provides Go packages for managing and using Azure services. +;") +; (license license:expat))) +; +;(define-public go-github-com-azure-go-autorest-10.8.1+incompatible +; (package +; (name "go-github-com-azure-go-autorest") +; (version "10.8.1+incompatible") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/Azure/go-autorest") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "122zfifj93vkix8ggkdh0dz5rmzxh4bql4nry1hws2czmzgxlkdm")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/Azure/go-autorest")) +; (home-page "https://github.com/Azure/go-autorest") +; (synopsis "go-autorest") +; (description +; "Package go-autorest provides an HTTP request client for use with Autorest-generated API client packages. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-shopify-logrus-bugsnag-0.0.0-20171204204709-577dee27f20d +; (package +; (name "go-github-com-shopify-logrus-bugsnag") +; (version "0.0.0-20171204204709-577dee27f20d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/Shopify/logrus-bugsnag") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1l3yahk77vzgmjs7baf8g14sv33jj04rw73iind4wayg40lfgrp8")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/Shopify/logrus-bugsnag")) +; (home-page "https://github.com/Shopify/logrus-bugsnag") +; (synopsis "logrus-bugsnag") +; (description +; "logrus-bugsnag is a hook that allows @url{https://github.com/sirupsen/logrus,Logrus} to interface with @url{https://bugsnag.com,Bugsnag}.") +; (license license:expat))) +; +;(define-public go-github-com-go-ini-ini-1.25.4 +; (package +; (name "go-github-com-go-ini-ini") +; (version "1.25.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/go-ini/ini") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0b6cql5ripbiyrm18d6bfd1rfjnwcbskppw3d0vb80l0wy72d0c6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/go-ini/ini")) +; (home-page "https://github.com/go-ini/ini") +; (synopsis "INI") +; (description +; "Package ini provides INI file read and write functionality in Go. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-jmespath-go-jmespath-0.0.0-20160202185014-0b12d6b521d8 +; (package +; (name "go-github-com-jmespath-go-jmespath") +; (version "0.0.0-20160202185014-0b12d6b521d8") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/jmespath/go-jmespath") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1vv6hph8j6xgv7gwl9vvhlsaaqsm22sxxqmgmldi4v11783pc1ld")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/jmespath/go-jmespath")) +; (home-page "https://github.com/jmespath/go-jmespath") +; (synopsis "go-jmespath - A JMESPath implementation in Go") +; (description +; "go-jmespath is a GO implementation of JMESPath, +;which is a query language for JSON. It will take a JSON +;document and transform it into another JSON document +;through a JMESPath expression.") +; (license license:asl2.0))) +; +;(define-public go-github-com-aws-aws-sdk-go-1.15.11 +; (package +; (name "go-github-com-aws-aws-sdk-go") +; (version "1.15.11") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/aws/aws-sdk-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0w960w39k3nyc17p1lvd41cls39qwg7kzfm57vfbdb4h1m5sck99")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/aws/aws-sdk-go")) +; (propagated-inputs +; `(("go-github-com-jmespath-go-jmespath-0.0.0-20160202185014-0b12d6b521d8" +; ,go-github-com-jmespath-go-jmespath-0.0.0-20160202185014-0b12d6b521d8) +; ("go-github-com-go-ini-ini-1.25.4" ,go-github-com-go-ini-ini-1.25.4))) +; (home-page "https://github.com/aws/aws-sdk-go") +; (synopsis "AWS SDK for Go") +; (description +; "Package sdk is the official AWS SDK for the Go programming language. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-beorn7-perks-0.0.0-20160804104726-4c0e84591b9a +; (package +; (name "go-github-com-beorn7-perks") +; (version "0.0.0-20160804104726-4c0e84591b9a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/beorn7/perks") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1hrybsql68xw57brzj805xx2mghydpdiysv3gbhr7f5wlxj2514y")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/beorn7/perks")) +; (home-page "https://github.com/beorn7/perks") +; (synopsis "Perks for Go (golang.org)") +; (description +; "Perks contains the Go package quantile that computes approximate quantiles over +;an unbounded data stream within low memory and CPU bounds.") +; (license license:expat))) +; +;(define-public go-github-com-bitly-go-simplejson-0.5.0 +; (package +; (name "go-github-com-bitly-go-simplejson") +; (version "0.5.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/bitly/go-simplejson") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0n9f9dz1jn1jx86d48569nznpjn9fmq3knn7r65xpy7jhih284jj")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/bitly/go-simplejson")) +; (home-page "https://github.com/bitly/go-simplejson") +; (synopsis "go-simplejson") +; (description "a Go package to interact with arbitrary JSON") +; (license license:expat))) +; +;(define-public go-github-com-bmizerany-assert-0.0.0-20160611221934-b7ed37b82869 +; (package +; (name "go-github-com-bmizerany-assert") +; (version "0.0.0-20160611221934-b7ed37b82869") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/bmizerany/assert") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "18hy1wyl9zdi7sgxafrn3m7fadh6in0rhhb8l0cvkxqzdl0jcw2s")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/bmizerany/assert")) +; (home-page "https://github.com/bmizerany/assert") +; (synopsis #f) +; (description #f) +; (license #f))) +; +;(define-public go-github-com-bshuster-repo-logrus-logstash-hook-0.4.1 +; (package +; (name "go-github-com-bshuster-repo-logrus-logstash-hook") +; (version "0.4.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/bshuster-repo/logrus-logstash-hook") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1kkjzav4i3l2ahgpirysr0cqh60vdq517lpj00cc9z32zfrsw87k")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "github.com/bshuster-repo/logrus-logstash-hook")) +; (home-page "https://github.com/bshuster-repo/logrus-logstash-hook") +; (synopsis "Logstash hook for logrus") +; (description +; "Use this hook to send the logs to @url{https://www.elastic.co/products/logstash,Logstash}.") +; (license license:expat))) +; +;(define-public go-github-com-bugsnag-bugsnag-go-0.0.0-20141110184014-b1d153021fcd +; (package +; (name "go-github-com-bugsnag-bugsnag-go") +; (version "0.0.0-20141110184014-b1d153021fcd") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/bugsnag/bugsnag-go") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "057vwigfzq42p9vkk9yhy8vkvgdmh6653rc988jmvmrkwbgvb352")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/bugsnag/bugsnag-go")) +; (home-page "https://github.com/bugsnag/bugsnag-go") +; (synopsis "Bugsnag error reporter for Go") +; (description +; "Package bugsnag captures errors in real-time and reports them to Bugsnag (@url{http://bugsnag.com,http://bugsnag.com}). +;") +; (license license:expat))) +; +;(define-public go-github-com-bugsnag-osext-0.0.0-20130617224835-0dd3f918b21b +; (package +; (name "go-github-com-bugsnag-osext") +; (version "0.0.0-20130617224835-0dd3f918b21b") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/bugsnag/osext") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "02pczqml6p1mnfdrygm3rs02g0r65qx8v1bi3x24dx8wv9dr5y23")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/bugsnag/osext")) +; (home-page "https://github.com/bugsnag/osext") +; (synopsis #f) +; (description "Extensions to the standard \"os\" package. +;") +; (license license:zlib))) +; +;(define-public go-github-com-bugsnag-panicwrap-0.0.0-20151223152923-e2c28503fcd0 +; (package +; (name "go-github-com-bugsnag-panicwrap") +; (version "0.0.0-20151223152923-e2c28503fcd0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/bugsnag/panicwrap") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "02z1q18s83xhfsz3n8bzv071a6n0irlad11yxppaf7015a7dl446")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/bugsnag/panicwrap")) +; (home-page "https://github.com/bugsnag/panicwrap") +; (synopsis "panicwrap") +; (description +; "The panicwrap package provides functions for capturing and handling +;panics in your application. It does this by re-executing the running +;application and monitoring stderr for any panics. At the same time, +;stdout/stderr/etc. are set to the same values so that data is shuttled +;through properly, making the existence of panicwrap mostly transparent. +;") +; (license license:expat))) +; +;(define-public go-github-com-denverdino-aliyungo-0.0.0-20190125010748-a747050bb1ba +; (package +; (name "go-github-com-denverdino-aliyungo") +; (version "0.0.0-20190125010748-a747050bb1ba") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/denverdino/aliyungo") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0rc16ciz8gjpn36fhp0qz1ns0inlvjaz07z1qffl9ni4b49hhwkn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/denverdino/aliyungo")) +; (home-page "https://github.com/denverdino/aliyungo") +; (synopsis "AliyunGo: Go SDK for Aliyun Services") +; (description +; "This is an unofficial Go SDK for Aliyun services. You are welcome for contribution.") +; (license license:asl2.0))) +; +;(define-public go-github-com-dgrijalva-jwt-go-0.0.0-20170104182250-a601269ab70c +; (package +; (name "go-github-com-dgrijalva-jwt-go") +; (version "0.0.0-20170104182250-a601269ab70c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/dgrijalva/jwt-go") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1c2dhmj95wh9cs099cr43qghgmp6bqx0mq44vha2dqq5jkbazwfv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/dgrijalva/jwt-go")) +; (home-page "https://github.com/dgrijalva/jwt-go") +; (synopsis "jwt-go") +; (description +; "Package jwt is a Go implementation of JSON Web Tokens: @url{http://self-issued.info/docs/draft-jones-json-web-token.html,http://self-issued.info/docs/draft-jones-json-web-token.html} +;") +; (license license:expat))) +; +;(define-public go-github-com-dnaeon-go-vcr-1.0.1 +; (package +; (name "go-github-com-dnaeon-go-vcr") +; (version "1.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/dnaeon/go-vcr") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1d0kpqr12qrqlamz5a47bp05mx49za2v6l1k7c6z71xahfmb7v2d")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/dnaeon/go-vcr")) +; (home-page "https://github.com/dnaeon/go-vcr") +; (synopsis "go-vcr") +; (description +; "@code{go-vcr} simplifies testing by recording your HTTP interactions and +;replaying them in future runs in order to provide fast, deterministic +;and accurate testing of your code.") +; (license license:bsd-2))) +; +;(define-public go-github-com-docker-go-metrics-0.0.0-20180209012529-399ea8c73916 +; (package +; (name "go-github-com-docker-go-metrics") +; (version "0.0.0-20180209012529-399ea8c73916") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/docker/go-metrics") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0najfy92fq05b330cnjk5b326yi7dnnmvzfk6g5lsa1fci78yzw4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/docker/go-metrics")) +; (home-page "https://github.com/docker/go-metrics") +; (synopsis "go-metrics") +; (description +; "This package is small wrapper around the prometheus go client to help enforce convention and best practices for metrics collection in Docker projects.") +; (license (list license:asl2.0 license:cc-by-sa4.0)))) +; +;(define-public go-github-com-docker-libtrust-0.0.0-20150114040149-fa567046d9b1 +; (package +; (name "go-github-com-docker-libtrust") +; (version "0.0.0-20150114040149-fa567046d9b1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/docker/libtrust") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1121c7fxarzyr3fvxyzfw8qs4hb8k92dsix26s5vxncgszl5svf2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/docker/libtrust")) +; (home-page "https://github.com/docker/libtrust") +; (synopsis "libtrust") +; (description +; "Package libtrust provides an interface for managing authentication and +;authorization using public key cryptography. Authentication is handled +;using the identity attached to the public key and verified through TLS +;x509 certificates, a key challenge, or signature. Authorization and +;access control is managed through a trust graph distributed between +;both remote trust servers and locally cached and managed data. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-garyburd-redigo-0.0.0-20150301180006-535138d7bcd7 +; (package +; (name "go-github-com-garyburd-redigo") +; (version "0.0.0-20150301180006-535138d7bcd7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/garyburd/redigo") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1m7nc1gvv5yqnq8ii75f33485il6y6prf8gxl97dimsw94qccc5v")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/garyburd/redigo")) +; (home-page "https://github.com/garyburd/redigo") +; (synopsis #f) +; (description +; "Future development of Redigo is at +;@url{https://github.com/gomodule/redigo,github.com/gomodule/redigo}. Please submit +;issues at gomodule/redigo. The repository at github.com/garyburd/redigo is a +;read-only snapshot.") +; (license license:asl2.0))) +; +;(define-public go-github-com-gorilla-handlers-0.0.0-20150720190736-60c7bfde3e33 +; (package +; (name "go-github-com-gorilla-handlers") +; (version "0.0.0-20150720190736-60c7bfde3e33") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/gorilla/handlers") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0zvpxvybdn8yqpk2cxs134ip9wxmw6c1s0kw9nahf7qw1kfyzycm")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/gorilla/handlers")) +; (home-page "https://github.com/gorilla/handlers") +; (synopsis "gorilla/handlers") +; (description +; "Package handlers is a collection of handlers (aka \"HTTP middleware\") for use +;with Go's net/http package (or any framework supporting http.Handler). +;") +; (license license:bsd-2))) +; +;(define-public go-github-com-gorilla-mux-1.7.2 +; (package +; (name "go-github-com-gorilla-mux") +; (version "1.7.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/gorilla/mux") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1gjcbgpdl3snc38i8sj8k6sqbv3inyrxqyggbqvr4jfx2phv2zy6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/gorilla/mux")) +; (home-page "https://github.com/gorilla/mux") +; (synopsis "gorilla/mux") +; (description "Package mux implements a request router and dispatcher. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-jmespath-go-jmespath-0.0.0-20160803190731-bd40a432e4c7 +; (package +; (name "go-github-com-jmespath-go-jmespath") +; (version "0.0.0-20160803190731-bd40a432e4c7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/jmespath/go-jmespath") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1kgzwiyqn24ba9kgpjxlq1h746gnyby0psbjj9mp2yx0h1i0kc4z")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/jmespath/go-jmespath")) +; (home-page "https://github.com/jmespath/go-jmespath") +; (synopsis "go-jmespath - A JMESPath implementation in Go") +; (description +; "go-jmespath is a GO implementation of JMESPath, +;which is a query language for JSON. It will take a JSON +;document and transform it into another JSON document +;through a JMESPath expression.") +; (license license:asl2.0))) +; +;(define-public go-github-com-marstr-guid-1.1.0 +; (package +; (name "go-github-com-marstr-guid") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/marstr/guid") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "081qrar6wwpmb2pq3swv4byh73r9riyhl2dwv0902d8jg3kwricm")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/marstr/guid")) +; (home-page "https://github.com/marstr/guid") +; (synopsis "Guid") +; (description +; "Globally unique identifiers offer a quick means of generating non-colliding values across a distributed system. For this implemenation, @url{http://ietf.org/rfc/rfc4122.txt,RFC 4122} governs the desired behavior.") +; (license license:expat))) +; +;(define-public go-github-com-mitchellh-osext-0.0.0-20151018003038-5e2d6d41470f +; (package +; (name "go-github-com-mitchellh-osext") +; (version "0.0.0-20151018003038-5e2d6d41470f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mitchellh/osext") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0j635c1cx7crs5wlirlk713l36x70pnlmqrzd3x3bjgnjg194jrk")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mitchellh/osext")) +; (home-page "https://github.com/mitchellh/osext") +; (synopsis "osext") +; (description "Extensions to the standard \"os\" package. +;") +; (license license:zlib))) +; +;(define-public go-github-com-ncw-swift-1.0.47 +; (package +; (name "go-github-com-ncw-swift") +; (version "1.0.47") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/ncw/swift") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0wxz4lvy6pjabghq8inby2fyh58ysclayccziawc8fd7a67kh4cd")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/ncw/swift")) +; (home-page "https://github.com/ncw/swift") +; (synopsis "Swift") +; (description +; "Package swift provides an easy to use interface to Swift / Openstack Object Storage / Rackspace Cloud Files +;") +; (license license:expat))) +; +;(define-public go-github-com-opencontainers-go-digest-0.0.0-20170106003457-a6d0ee40d420 +; (package +; (name "go-github-com-opencontainers-go-digest") +; (version "0.0.0-20170106003457-a6d0ee40d420") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/go-digest") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1paz3na2xkhi10p5bk7f7gbh5yykfgr9f9i2gcc13rb461yq6fmg")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/go-digest")) +; (home-page "https://github.com/opencontainers/go-digest") +; (synopsis "go-digest") +; (description +; "Package digest provides a generalized type to opaquely represent message +;digests and their operations within the registry. The Digest type is +;designed to serve as a flexible identifier in a content-addressable system. +;More importantly, it provides tools and wrappers to work with +;hash.Hash-based digests with little effort. +;") +; (license (list license:asl2.0 license:cc-by-sa4.0)))) +; +;(define-public go-github-com-opencontainers-image-spec-1.0.0 +; (package +; (name "go-github-com-opencontainers-image-spec") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/image-spec") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "04ax2pylpwzsa5pw6wk94shdpdmfyqf70ys0idhpxsygzc2m5l23")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/image-spec")) +; (home-page "https://github.com/opencontainers/image-spec") +; (synopsis "OCI Image Format Specification") +; (description +; "The OCI Image Format project creates and maintains the software shipping container image format spec (OCI Image Format).") +; (license license:asl2.0))) +; +;(define-public go-github-com-prometheus-client-golang-0.0.0-20180209125602-c332b6f63c06 +; (package +; (name "go-github-com-prometheus-client-golang") +; (version "0.0.0-20180209125602-c332b6f63c06") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/client_golang") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "068r759wnh1lxcjhj89z4bqbpl7ydcx2drn2967ygw80nyab30pq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/client_golang")) +; (home-page "https://github.com/prometheus/client_golang") +; (synopsis "Prometheus Go client library") +; (description +; "This is the @url{http://golang.org,Go} client library for +;@url{http://prometheus.io,Prometheus}. It has two separate parts, one for +;instrumenting application code, and one for creating clients that talk to the +;Prometheus HTTP API.") +; (license license:asl2.0))) +; +;(define-public go-github-com-prometheus-client-model-0.0.0-20171117100541-99fa1f4be8e5 +; (package +; (name "go-github-com-prometheus-client-model") +; (version "0.0.0-20171117100541-99fa1f4be8e5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/client_model") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19y4ywsivhpxj7ikf2j0gm9k3cmyw37qcbfi78n526jxcc7kw998")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/client_model")) +; (home-page "https://github.com/prometheus/client_model") +; (synopsis "Deprecation note") +; (description +; "This repository used to contain the code that defined both +;the data model and the exposition format of Prometheus metrics.") +; (license license:asl2.0))) +; +;(define-public go-github-com-prometheus-common-0.0.0-20180110214958-89604d197083 +; (package +; (name "go-github-com-prometheus-common") +; (version "0.0.0-20180110214958-89604d197083") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/common") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "169rdlaf2mk9z4fydz7ajmngyhmf3q1lk96yhvx46bn986x5xkyn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/common")) +; (home-page "https://github.com/prometheus/common") +; (synopsis "Common") +; (description +; "This repository contains Go libraries that are shared across Prometheus +;components and libraries. They are considered internal to Prometheus, without +;any stability guarantees for external usage.") +; (license license:asl2.0))) +; +;(define-public go-github-com-gopherjs-gopherjs-0.0.0-20181017120253-0766667cb4d1 +; (package +; (name "go-github-com-gopherjs-gopherjs") +; (version "0.0.0-20181017120253-0766667cb4d1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/gopherjs/gopherjs") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "13pfc9sxiwjky2lm1xb3i3lcisn8p6mgjk2d927l7r92ysph8dmw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/gopherjs/gopherjs")) +; (home-page "https://github.com/gopherjs/gopherjs") +; (synopsis "GopherJS - A compiler from Go to JavaScript") +; (description +; "GopherJS compiles Go code (@url{https://golang.org/,golang.org}) to pure JavaScript code. Its main purpose is to give you the opportunity to write front-end code in Go which will still run in all browsers.") +; (license license:bsd-2))) +; +;(define-public go-github-com-jtolds-gls-4.20.0+incompatible +; (package +; (name "go-github-com-jtolds-gls") +; (version "4.20.0+incompatible") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/jtolio/gls") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1k7xd2q2ysv2xsh373qs801v6f359240kx0vrl0ydh7731lngvk6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/jtolds/gls")) +; (home-page "https://github.com/jtolds/gls") +; (synopsis "gls") +; (description "Package gls implements goroutine-local storage. +;") +; (license license:expat))) +; +;(define-public go-github-com-smartystreets-assertions-0.0.0-20180927180507-b2de0cb4f26d +; (package +; (name "go-github-com-smartystreets-assertions") +; (version "0.0.0-20180927180507-b2de0cb4f26d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/smartystreets/assertions") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1i7ldgavgl35c7gk25p7bvdr282ckng090zr4ch9mk1705akx09y")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/smartystreets/assertions")) +; (home-page "https://github.com/smartystreets/assertions") +; (synopsis #f) +; (description +; "Package assertions contains the implementations for all assertions which +;are referenced in goconvey's `convey` package +;(github.com/smartystreets/goconvey/convey) and gunit (github.com/smartystreets/gunit) +;for use with the So(...) method. +;They can also be used in traditional Go test functions and even in +;applications. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-tools-0.0.0-20190328211700-ab21143f2384 +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20190328211700-ab21143f2384") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "15fk0psk53pplpyghz55bhay0kvsv5rikmn5hwgjnnyxq9vfy178")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-github-com-smartystreets-goconvey-0.0.0-20190330032615-68dc04aab96a +; (package +; (name "go-github-com-smartystreets-goconvey") +; (version "0.0.0-20190330032615-68dc04aab96a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/smartystreets/goconvey") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1kas5v95fzhr88hg4rjy0vp03y4pzvy3pwwgkfz2yhn5nlj29nk6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/smartystreets/goconvey")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20190328211700-ab21143f2384" +; ,go-golang-org-x-tools-0.0.0-20190328211700-ab21143f2384) +; ("go-github-com-smartystreets-assertions-0.0.0-20180927180507-b2de0cb4f26d" +; ,go-github-com-smartystreets-assertions-0.0.0-20180927180507-b2de0cb4f26d) +; ("go-github-com-jtolds-gls-4.20.0+incompatible" +; ,go-github-com-jtolds-gls-4.20.0+incompatible) +; ("go-github-com-gopherjs-gopherjs-0.0.0-20181017120253-0766667cb4d1" +; ,go-github-com-gopherjs-gopherjs-0.0.0-20181017120253-0766667cb4d1))) +; (home-page "https://github.com/smartystreets/goconvey") +; (synopsis "GoConvey is awesome Go testing") +; (description +; "This executable provides an HTTP server that watches for file system changes +;to .go files within the working directory (and all nested go packages). +;Navigating to the configured host and port in a web browser will display the +;latest results of running `go test` in each go package. +;") +; (license license:expat))) +; +;(define-public go-github-com-yvasiyarov-go-metrics-0.0.0-20140926110328-57bccd1ccd43 +; (package +; (name "go-github-com-yvasiyarov-go-metrics") +; (version "0.0.0-20140926110328-57bccd1ccd43") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/yvasiyarov/go-metrics") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1rwlq9k3iii54da90fjivi13zacx2h6znppkzncvl653xhjpm26g")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/yvasiyarov/go-metrics")) +; (home-page "https://github.com/yvasiyarov/go-metrics") +; (synopsis "go-metrics") +; (description "Go port of Coda Hale's Metrics library +;") +; (license #f))) +; +;(define-public go-github-com-yvasiyarov-gorelic-0.0.0-20141212073537-a9bba5b9ab50 +; (package +; (name "go-github-com-yvasiyarov-gorelic") +; (version "0.0.0-20141212073537-a9bba5b9ab50") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/yvasiyarov/gorelic") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1niwv40k9rx2g5h6wddci9ykf1sm1d5ml9mjgdjd1ahm4wfq08gn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/yvasiyarov/gorelic")) +; (home-page "https://github.com/yvasiyarov/gorelic") +; (synopsis "GoRelic is deprecated in favour of") +; (description +; "Package gorelic is an New Relic agent implementation for Go runtime. It collect a lot of metrics about Go scheduler, garbage collector and memory allocator and send them to NewRelic. +;") +; (license license:bsd-2))) +; +;(define-public go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20140908184405-b21fdbd4370f +; (package +; (name "go-github-com-yvasiyarov-newrelic-platform-go") +; (version "0.0.0-20140908184405-b21fdbd4370f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/yvasiyarov/newrelic_platform_go") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0a4yncdxwsy0rn3bhkadfysm817b7ndzmh9fkg8hh92pnw5aabzw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/yvasiyarov/newrelic_platform_go")) +; (home-page "https://github.com/yvasiyarov/newrelic_platform_go") +; (synopsis "New Relic Platform Agent SDK for Go(golang)") +; (description +; "Package newrelic_platform_go is New Relic Platform Agent SDK for Go language. +;") +; (license license:bsd-2))) +; +;(define-public go-golang-org-x-net-0.0.0-20190619014844-b5b0513f8c1b +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190619014844-b5b0513f8c1b") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0sr4gbiq09izkmm6hcmfnia6lz6ngzzqjbwlrzh7jifbzyck53wz")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190602015325-4c4f7f33c9ed +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190602015325-4c4f7f33c9ed") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "191001bxqyc3xfs46nnqmm7jdk0r73vk7a4zqngfl7zwjv9smwsq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-api-0.0.0-20160322025152-9bf6e6e569ff +; (package +; (name "go-google-golang-org-api") +; (version "0.0.0-20160322025152-9bf6e6e569ff") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-api-go-client") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "02zn0zr4jrkdnxhxa0h3vm30j27bsc4lcswrffilkrafbspjsrxz")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/api")) +; (home-page "https://google.golang.org/api") +; (synopsis "Google APIs Client Library for Go") +; (description +; "Package api is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of +;sub-packages. +;") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-cloud-0.0.0-20151119220103-975617b05ea8 +; (package +; (name "go-google-golang-org-cloud") +; (version "0.0.0-20151119220103-975617b05ea8") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-cloud-go") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "156jhn1kakr98jfk830y4yr8lhisdj6qs38ypa42ddmgza9qcmdd")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/cloud")) +; (home-page "https://google.golang.org/cloud") +; (synopsis "Google Cloud Client Libraries for Go") +; (description +; "Package cloud is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +;of sub-packages. +;") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-grpc-0.0.0-20160317175043-d3ddb4469d5a +; (package +; (name "go-google-golang-org-grpc") +; (version "0.0.0-20160317175043-d3ddb4469d5a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0p45by0s66ragvx9hs8gkz1k1gy8456y794b5zspa0b86y2b53w9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-gopkg-in-check-v1-1.0.0-20141024133853-64131543e789 +; (package +; (name "go-gopkg-in-check-v1") +; (version "1.0.0-20141024133853-64131543e789") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/check.v1") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "01sz40asq0zwf6j7q2hww33wr1cflglngq8xazw466c9d1f9kyyh")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) +; (home-page "https://gopkg.in/check.v1") +; (synopsis "Instructions") +; (description +; "Package check is a rich testing extension for Go's testing package. +;") +; (license license:bsd-2))) +; +;(define-public go-github-com-docker-distribution-0.0.0-20190905152932-14b96e55d84c +; (package +; (name "go-github-com-docker-distribution") +; (version "0.0.0-20190905152932-14b96e55d84c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/distribution/distribution") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0jd7ccjy7ahznsh6hf9dhqbgn9glwc0db9g5nv8n6sys5d1jdni9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/docker/distribution")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) +; ("go-gopkg-in-check-v1-1.0.0-20141024133853-64131543e789" +; ,go-gopkg-in-check-v1-1.0.0-20141024133853-64131543e789) +; ("go-google-golang-org-grpc-0.0.0-20160317175043-d3ddb4469d5a" +; ,go-google-golang-org-grpc-0.0.0-20160317175043-d3ddb4469d5a) +; ("go-google-golang-org-cloud-0.0.0-20151119220103-975617b05ea8" +; ,go-google-golang-org-cloud-0.0.0-20151119220103-975617b05ea8) +; ("go-google-golang-org-api-0.0.0-20160322025152-9bf6e6e569ff" +; ,go-google-golang-org-api-0.0.0-20160322025152-9bf6e6e569ff) +; ("go-golang-org-x-sys-0.0.0-20190602015325-4c4f7f33c9ed" +; ,go-golang-org-x-sys-0.0.0-20190602015325-4c4f7f33c9ed) +; ("go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45" +; ,go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45) +; ("go-golang-org-x-net-0.0.0-20190619014844-b5b0513f8c1b" +; ,go-golang-org-x-net-0.0.0-20190619014844-b5b0513f8c1b) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2) +; ("go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20140908184405-b21fdbd4370f" +; ,go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20140908184405-b21fdbd4370f) +; ("go-github-com-yvasiyarov-gorelic-0.0.0-20141212073537-a9bba5b9ab50" +; ,go-github-com-yvasiyarov-gorelic-0.0.0-20141212073537-a9bba5b9ab50) +; ("go-github-com-yvasiyarov-go-metrics-0.0.0-20140926110328-57bccd1ccd43" +; ,go-github-com-yvasiyarov-go-metrics-0.0.0-20140926110328-57bccd1ccd43) +; ("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0) +; ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) +; ("go-github-com-spf13-cobra-0.0.3" ,go-github-com-spf13-cobra-0.0.3) +; ("go-github-com-smartystreets-goconvey-0.0.0-20190330032615-68dc04aab96a" +; ,go-github-com-smartystreets-goconvey-0.0.0-20190330032615-68dc04aab96a) +; ("go-github-com-sirupsen-logrus-1.4.2" +; ,go-github-com-sirupsen-logrus-1.4.2) +; ("go-github-com-satori-go-uuid-1.2.0" +; ,go-github-com-satori-go-uuid-1.2.0) +; ("go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7" +; ,go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7) +; ("go-github-com-prometheus-common-0.0.0-20180110214958-89604d197083" +; ,go-github-com-prometheus-common-0.0.0-20180110214958-89604d197083) +; ("go-github-com-prometheus-client-model-0.0.0-20171117100541-99fa1f4be8e5" +; ,go-github-com-prometheus-client-model-0.0.0-20171117100541-99fa1f4be8e5) +; ("go-github-com-prometheus-client-golang-0.0.0-20180209125602-c332b6f63c06" +; ,go-github-com-prometheus-client-golang-0.0.0-20180209125602-c332b6f63c06) +; ("go-github-com-opencontainers-image-spec-1.0.0" +; ,go-github-com-opencontainers-image-spec-1.0.0) +; ("go-github-com-opencontainers-go-digest-0.0.0-20170106003457-a6d0ee40d420" +; ,go-github-com-opencontainers-go-digest-0.0.0-20170106003457-a6d0ee40d420) +; ("go-github-com-ncw-swift-1.0.47" ,go-github-com-ncw-swift-1.0.47) +; ("go-github-com-mitchellh-osext-0.0.0-20151018003038-5e2d6d41470f" +; ,go-github-com-mitchellh-osext-0.0.0-20151018003038-5e2d6d41470f) +; ("go-github-com-mitchellh-mapstructure-1.1.2" +; ,go-github-com-mitchellh-mapstructure-1.1.2) +; ("go-github-com-matttproud-golang-protobuf-extensions-1.0.1" +; ,go-github-com-matttproud-golang-protobuf-extensions-1.0.1) +; ("go-github-com-marstr-guid-1.1.0" ,go-github-com-marstr-guid-1.1.0) +; ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) +; ("go-github-com-jmespath-go-jmespath-0.0.0-20160803190731-bd40a432e4c7" +; ,go-github-com-jmespath-go-jmespath-0.0.0-20160803190731-bd40a432e4c7) +; ("go-github-com-inconshreveable-mousetrap-1.0.0" +; ,go-github-com-inconshreveable-mousetrap-1.0.0) +; ("go-github-com-gorilla-mux-1.7.2" ,go-github-com-gorilla-mux-1.7.2) +; ("go-github-com-gorilla-handlers-0.0.0-20150720190736-60c7bfde3e33" +; ,go-github-com-gorilla-handlers-0.0.0-20150720190736-60c7bfde3e33) +; ("go-github-com-garyburd-redigo-0.0.0-20150301180006-535138d7bcd7" +; ,go-github-com-garyburd-redigo-0.0.0-20150301180006-535138d7bcd7) +; ("go-github-com-docker-libtrust-0.0.0-20150114040149-fa567046d9b1" +; ,go-github-com-docker-libtrust-0.0.0-20150114040149-fa567046d9b1) +; ("go-github-com-docker-go-metrics-0.0.0-20180209012529-399ea8c73916" +; ,go-github-com-docker-go-metrics-0.0.0-20180209012529-399ea8c73916) +; ("go-github-com-dnaeon-go-vcr-1.0.1" +; ,go-github-com-dnaeon-go-vcr-1.0.1) +; ("go-github-com-dgrijalva-jwt-go-0.0.0-20170104182250-a601269ab70c" +; ,go-github-com-dgrijalva-jwt-go-0.0.0-20170104182250-a601269ab70c) +; ("go-github-com-denverdino-aliyungo-0.0.0-20190125010748-a747050bb1ba" +; ,go-github-com-denverdino-aliyungo-0.0.0-20190125010748-a747050bb1ba) +; ("go-github-com-bugsnag-panicwrap-0.0.0-20151223152923-e2c28503fcd0" +; ,go-github-com-bugsnag-panicwrap-0.0.0-20151223152923-e2c28503fcd0) +; ("go-github-com-bugsnag-osext-0.0.0-20130617224835-0dd3f918b21b" +; ,go-github-com-bugsnag-osext-0.0.0-20130617224835-0dd3f918b21b) +; ("go-github-com-bugsnag-bugsnag-go-0.0.0-20141110184014-b1d153021fcd" +; ,go-github-com-bugsnag-bugsnag-go-0.0.0-20141110184014-b1d153021fcd) +; ("go-github-com-bshuster-repo-logrus-logstash-hook-0.4.1" +; ,go-github-com-bshuster-repo-logrus-logstash-hook-0.4.1) +; ("go-github-com-bmizerany-assert-0.0.0-20160611221934-b7ed37b82869" +; ,go-github-com-bmizerany-assert-0.0.0-20160611221934-b7ed37b82869) +; ("go-github-com-bitly-go-simplejson-0.5.0" +; ,go-github-com-bitly-go-simplejson-0.5.0) +; ("go-github-com-beorn7-perks-0.0.0-20160804104726-4c0e84591b9a" +; ,go-github-com-beorn7-perks-0.0.0-20160804104726-4c0e84591b9a) +; ("go-github-com-aws-aws-sdk-go-1.15.11" +; ,go-github-com-aws-aws-sdk-go-1.15.11) +; ("go-github-com-shopify-logrus-bugsnag-0.0.0-20171204204709-577dee27f20d" +; ,go-github-com-shopify-logrus-bugsnag-0.0.0-20171204204709-577dee27f20d) +; ("go-github-com-azure-go-autorest-10.8.1+incompatible" +; ,go-github-com-azure-go-autorest-10.8.1+incompatible) +; ("go-github-com-azure-azure-sdk-for-go-16.2.1+incompatible" +; ,go-github-com-azure-azure-sdk-for-go-16.2.1+incompatible))) +; (home-page "https://github.com/docker/distribution") +; (synopsis "Distribution") +; (description +; "Package distribution will define the interfaces for the components of +;docker distribution. The goal is to allow users to reliably package, ship +;and store content related to docker images. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-gogo-protobuf-1.2.2-0.20190723190241-65acae22fc9d +; (package +; (name "go-github-com-gogo-protobuf") +; (version "1.2.2-0.20190723190241-65acae22fc9d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/gogo/protobuf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0700alky9z0g9akhrzn20wf4jr1600d0clhs32sm8chnlbvidy46")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/gogo/protobuf")) +; (propagated-inputs +; `(("go-github-com-kisielk-gotool-1.0.0" +; ,go-github-com-kisielk-gotool-1.0.0) +; ("go-github-com-kisielk-errcheck-1.2.0" +; ,go-github-com-kisielk-errcheck-1.2.0))) +; (home-page "https://github.com/gogo/protobuf") +; (synopsis "Protocol Buffers for Go with Gadgets") +; (description +; "gogoprotobuf is a fork of @url{https://github.com/golang/protobuf,golang/protobuf} with extra code generation features.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190813064441-fde4db37ae7a +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190813064441-fde4db37ae7a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "16k4w4pzziq1kln18k5fg01qgk4hpzb5xsm7175kaky6d6gwyhg3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-k8s-io-cri-api-0.17.3 +; (package +; (name "go-k8s-io-cri-api") +; (version "0.17.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes/cri-api") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "047wg80q4cb9qikpj0zp2kzcgp599cdqwiqlravfy86bga4r3fgf")))) +; (build-system go-build-system) +; (arguments '(#:import-path "k8s.io/cri-api")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190813064441-fde4db37ae7a" +; ,go-golang-org-x-sys-0.0.0-20190813064441-fde4db37ae7a) +; ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) +; ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" +; ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) +; ("go-google-golang-org-grpc-1.23.1" ,go-google-golang-org-grpc-1.23.1) +; ("go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873" +; ,go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873) +; ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) +; ("go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9" +; ,go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9) +; ("go-github-com-stretchr-testify-1.4.0" +; ,go-github-com-stretchr-testify-1.4.0) +; ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2) +; ("go-github-com-gogo-protobuf-1.2.2-0.20190723190241-65acae22fc9d" +; ,go-github-com-gogo-protobuf-1.2.2-0.20190723190241-65acae22fc9d) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://k8s.io/cri-api") +; (synopsis "Purpose") +; (description +; "This repository contains the definitions for the Container Runtime Interface (CRI). +;CRI is a plugin interface which enables kubelet to use a wide variety of container runtimes, +;without the need to recompile. CRI consists of a protocol buffers and gRPC API.") +; (license license:asl2.0))) +; +;(define-public go-github-com-microsoft-hcsshim-test-0.0.0-20201218223536-d3e5debf77da +; (package +; (name "go-github-com-microsoft-hcsshim-test") +; (version "0.0.0-20201218223536-d3e5debf77da") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/microsoft/hcsshim") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0k57knv8zrf32hp7rpv1km9j772w6752pfvdbpd3l711ism48c84")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path +; "github.com/Microsoft/hcsshim/test" +; #:unpack-path +; "github.com/Microsoft/hcsshim")) +; (propagated-inputs +; `(("go-k8s-io-cri-api-0.17.3" ,go-k8s-io-cri-api-0.17.3) +; ("go-google-golang-org-grpc-1.23.1" ,go-google-golang-org-grpc-1.23.1) +; ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" +; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) +; ("go-go-etcd-io-bbolt-1.3.3" ,go-go-etcd-io-bbolt-1.3.3) +; ("go-github-com-xeipuuv-gojsonschema-0.0.0-20180618132009-1d523034197f" +; ,go-github-com-xeipuuv-gojsonschema-0.0.0-20180618132009-1d523034197f) +; ("go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415" +; ,go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415) +; ("go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f" +; ,go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f) +; ("go-github-com-syndtr-gocapability-0.0.0-20170704070218-db04d3cc01c8" +; ,go-github-com-syndtr-gocapability-0.0.0-20170704070218-db04d3cc01c8) +; ("go-github-com-sirupsen-logrus-1.4.2" +; ,go-github-com-sirupsen-logrus-1.4.2) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39" +; ,go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39) +; ("go-github-com-opencontainers-runtime-spec-1.0.2" +; ,go-github-com-opencontainers-runtime-spec-1.0.2) +; ("go-github-com-imdario-mergo-0.3.8" +; ,go-github-com-imdario-mergo-0.3.8) +; ("go-github-com-hashicorp-go-multierror-0.0.0-20161216184304-ed905158d874" +; ,go-github-com-hashicorp-go-multierror-0.0.0-20161216184304-ed905158d874) +; ("go-github-com-hashicorp-errwrap-0.0.0-20141028054710-7554cd9344ce" +; ,go-github-com-hashicorp-errwrap-0.0.0-20141028054710-7554cd9344ce) +; ("go-github-com-gogo-protobuf-1.3.1" +; ,go-github-com-gogo-protobuf-1.3.1) +; ("go-github-com-gogo-googleapis-1.2.0" +; ,go-github-com-gogo-googleapis-1.2.0) +; ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" +; ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) +; ("go-github-com-docker-distribution-0.0.0-20190905152932-14b96e55d84c" +; ,go-github-com-docker-distribution-0.0.0-20190905152932-14b96e55d84c) +; ("go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd" +; ,go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd) +; ("go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de" +; ,go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de) +; ("go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3" +; ,go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3) +; ("go-github-com-containerd-containerd-1.3.2" +; ,go-github-com-containerd-containerd-1.3.2) +; ("go-github-com-blang-semver-3.1.0+incompatible" +; ,go-github-com-blang-semver-3.1.0+incompatible) +; ("go-github-com-microsoft-go-winio-0.4.16-0.20201130162521-d1ffc52c7331" +; ,go-github-com-microsoft-go-winio-0.4.16-0.20201130162521-d1ffc52c7331))) +; (home-page "https://github.com/Microsoft/hcsshim") +; (synopsis #f) +; (description #f) +; (license license:expat))) +; +;(define-public go-github-com-containerd-aufs-0.0.0-20200908144142-dab0cbea06f4 +; (package +; (name "go-github-com-containerd-aufs") +; (version "0.0.0-20200908144142-dab0cbea06f4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/aufs") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "060iqypyrdmww0ykip1zqi5f2fl1il55vndgdn5aq5zj6530mgsn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/aufs")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) +; ("go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449" +; ,go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449) +; ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" +; ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) +; ("go-go-etcd-io-bbolt-1.3.3" ,go-go-etcd-io-bbolt-1.3.3) +; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) +; ("go-github-com-opencontainers-runc-1.0.0-rc9" +; ,go-github-com-opencontainers-runc-1.0.0-rc9) +; ("go-github-com-opencontainers-image-spec-1.0.1" +; ,go-github-com-opencontainers-image-spec-1.0.1) +; ("go-github-com-opencontainers-go-digest-1.0.0-rc1" +; ,go-github-com-opencontainers-go-digest-1.0.0-rc1) +; ("go-github-com-google-go-cmp-0.3.1" +; ,go-github-com-google-go-cmp-0.3.1) +; ("go-github-com-gogo-protobuf-1.3.1" +; ,go-github-com-gogo-protobuf-1.3.1) +; ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" +; ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) +; ("go-github-com-containerd-typeurl-0.0.0-20190911142611-5eb25027c9fd" +; ,go-github-com-containerd-typeurl-0.0.0-20190911142611-5eb25027c9fd) +; ("go-github-com-containerd-ttrpc-0.0.0-20191028202541-4f1b8fe65a5c" +; ,go-github-com-containerd-ttrpc-0.0.0-20191028202541-4f1b8fe65a5c) +; ("go-github-com-containerd-continuity-0.0.0-20191127005431-f65d91d395eb" +; ,go-github-com-containerd-continuity-0.0.0-20191127005431-f65d91d395eb) +; ("go-github-com-containerd-containerd-1.3.1-0.20191213020239-082f7e3aed57" +; ,go-github-com-containerd-containerd-1.3.1-0.20191213020239-082f7e3aed57) +; ("go-github-com-microsoft-hcsshim-0.8.7" +; ,go-github-com-microsoft-hcsshim-0.8.7))) +; (home-page "https://github.com/containerd/aufs") +; (synopsis "aufs snapshotter") +; (description +; "AUFS implementation of the snapshot interface for containerd.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-btrfs-0.0.0-20201111183144-404b9149801e +; (package +; (name "go-github-com-containerd-btrfs") +; (version "0.0.0-20201111183144-404b9149801e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/btrfs") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "10aakvy9njaly2mfwi1cvys8dxjn27mnd7wnpnmxh8pxb7g2svag")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/btrfs")) +; (propagated-inputs +; `(("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) +; (home-page "https://github.com/containerd/btrfs") +; (synopsis "go-btrfs") +; (description +; "Package btrfs provides bindings for working with btrfs partitions from Go. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-cgroups-0.0.0-20200824123100-0b889c03f102 +; (package +; (name "go-github-com-containerd-cgroups") +; (version "0.0.0-20200824123100-0b889c03f102") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/cgroups") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1zjmphy2df9y20hzrmwxfpyyvz8vb5lazr4pjyx3c5a5x0j4rv8d")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/cgroups")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9" +; ,go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9) +; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) +; ("go-github-com-stretchr-testify-1.2.2" +; ,go-github-com-stretchr-testify-1.2.2) +; ("go-github-com-sirupsen-logrus-1.6.0" +; ,go-github-com-sirupsen-logrus-1.6.0) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-runtime-spec-1.0.2" +; ,go-github-com-opencontainers-runtime-spec-1.0.2) +; ("go-github-com-gogo-protobuf-1.3.1" +; ,go-github-com-gogo-protobuf-1.3.1) +; ("go-github-com-godbus-dbus-v5-5.0.3" +; ,go-github-com-godbus-dbus-v5-5.0.3) +; ("go-github-com-docker-go-units-0.4.0" +; ,go-github-com-docker-go-units-0.4.0) +; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" +; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) +; ("go-github-com-coreos-go-systemd-v22-22.0.0" +; ,go-github-com-coreos-go-systemd-v22-22.0.0) +; ("go-github-com-cilium-ebpf-0.0.0-20200702112145-1c8d4c9ef775" +; ,go-github-com-cilium-ebpf-0.0.0-20200702112145-1c8d4c9ef775))) +; (home-page "https://github.com/containerd/cgroups") +; (synopsis "cgroups") +; (description +; "Go package for creating, managing, inspecting, and destroying cgroups. +;The resources format for settings on the cgroup uses the OCI runtime-spec found +;@url{https://github.com/opencontainers/runtime-spec,here}.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-continuity-0.0.0-20201208142359-180525291bb7 +; (package +; (name "go-github-com-containerd-continuity") +; (version "0.0.0-20201208142359-180525291bb7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/continuity") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1di4pspqfwfafdni0in84kzyn8h1fhqb6vh4i0g5skqmrc4sxf4h")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/continuity")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3" +; ,go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3) +; ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" +; ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) +; ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" +; ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) +; ("go-github-com-stretchr-testify-1.4.0" +; ,go-github-com-stretchr-testify-1.4.0) +; ("go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95" +; ,go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95) +; ("go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee" +; ,go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee) +; ("go-github-com-sirupsen-logrus-1.6.0" +; ,go-github-com-sirupsen-logrus-1.6.0) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-go-digest-1.0.0" +; ,go-github-com-opencontainers-go-digest-1.0.0) +; ("go-github-com-inconshreveable-mousetrap-1.0.0" +; ,go-github-com-inconshreveable-mousetrap-1.0.0) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0) +; ("go-github-com-dustin-go-humanize-1.0.0" +; ,go-github-com-dustin-go-humanize-1.0.0) +; ("go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898" +; ,go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898))) +; (home-page "https://github.com/containerd/continuity") +; (synopsis "continuity") +; (description +; "This package provides a transport-agnostic, filesystem metadata manifest system") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-fifo-0.0.0-20201026212402-0724c46b320c +; (package +; (name "go-github-com-containerd-fifo") +; (version "0.0.0-20201026212402-0724c46b320c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/fifo") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "11d9j0isblnnqf78ygvwjyijjxn6zdzf7p803v0jv2py4d0pkvj8")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/fifo")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449" +; ,go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449) +; ("go-github-com-stretchr-testify-1.4.0" +; ,go-github-com-stretchr-testify-1.4.0) +; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) +; (home-page "https://github.com/containerd/fifo") +; (synopsis "fifo") +; (description "Go package for handling fifos in a sane way.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containernetworking-cni-0.8.0 +; (package +; (name "go-github-com-containernetworking-cni") +; (version "0.8.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containernetworking/cni") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "16i59dhiq7pc7qs32cdk4yv4w9rjx4vvlw7fb6a6jhq6hxxjrgiw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containernetworking/cni")) +; (home-page "https://github.com/containernetworking/cni") +; (synopsis "CNI - the Container Network Interface") +; (description +; "CNI (), a @url{https://cncf.io,Cloud Native Computing Foundation} project, consists of a specification and libraries for writing plugins to configure network interfaces in Linux containers, along with a number of supported plugins. +;CNI concerns itself only with network connectivity of containers and removing allocated resources when the container is deleted. +;Because of this focus, CNI has a wide range of support and the specification is simple to implement.") +; (license license:asl2.0))) +; +;(define-public go-github-com-onsi-ginkgo-1.10.3 +; (package +; (name "go-github-com-onsi-ginkgo") +; (version "1.10.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/onsi/ginkgo") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "00a40by9f5ylycnar8h3p9b4z5rcsvfvg4j3v5s5mchdqrqjv1pc")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/onsi/ginkgo")) +; (home-page "https://github.com/onsi/ginkgo") +; (synopsis "Ginkgo 2.0 Release Candidate is available!") +; (description "Ginkgo is a BDD-style testing framework for Golang +;") +; (license license:expat))) +; +;(define-public go-github-com-stretchr-objx-0.0.0-20180129172003-8a3f7159479f +; (package +; (name "go-github-com-stretchr-objx") +; (version "0.0.0-20180129172003-8a3f7159479f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/objx") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0rbz4x4jbq9vp3zxmv0c2wh1vbg48lmc8ncdgz7zxk7241fc31ki")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/objx")) +; (home-page "https://github.com/stretchr/objx") +; (synopsis "Objx") +; (description +; "Objx - Go package for dealing with maps, slices, JSON and other data. +;") +; (license license:expat))) +; +;(define-public go-github-com-stretchr-testify-0.0.0-20180303142811-b89eecf5ca5d +; (package +; (name "go-github-com-stretchr-testify") +; (version "0.0.0-20180303142811-b89eecf5ca5d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/testify") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0g946ii8qjaynvidj648z8izl91i6yhy0ir6g3qsrn136im3r8wk")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/testify")) +; (home-page "https://github.com/stretchr/testify") +; (synopsis "Testify - Thou Shalt Write Tests") +; (description +; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +;") +; (license license:expat))) +; +;(define-public go-github-com-containerd-go-cni-1.0.1 +; (package +; (name "go-github-com-containerd-go-cni") +; (version "1.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/go-cni") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0sdlwa4d0kzpm3vg9jy6fxqqcfjq8innv1zjcyp8n9qy8vj9b24y")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/go-cni")) +; (propagated-inputs +; `(("go-github-com-stretchr-testify-0.0.0-20180303142811-b89eecf5ca5d" +; ,go-github-com-stretchr-testify-0.0.0-20180303142811-b89eecf5ca5d) +; ("go-github-com-stretchr-objx-0.0.0-20180129172003-8a3f7159479f" +; ,go-github-com-stretchr-objx-0.0.0-20180129172003-8a3f7159479f) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-onsi-gomega-1.7.1" ,go-github-com-onsi-gomega-1.7.1) +; ("go-github-com-onsi-ginkgo-1.10.3" ,go-github-com-onsi-ginkgo-1.10.3) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1) +; ("go-github-com-containernetworking-cni-0.8.0" +; ,go-github-com-containernetworking-cni-0.8.0))) +; (home-page "https://github.com/containerd/go-cni") +; (synopsis "go-cni") +; (description +; "This package provides a generic CNI library to provide APIs for CNI plugin interactions. The library provides APIs to:") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-console-0.0.0-20191206165004-02ecf6a7291e +; (package +; (name "go-github-com-containerd-console") +; (version "0.0.0-20191206165004-02ecf6a7291e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/console") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1b3yq446gv8da4fajknbjxr5syz1ypz0nii9sqw066hx8kmqzgqh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/console")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e" +; ,go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e) +; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) +; (home-page "https://github.com/containerd/console") +; (synopsis "console") +; (description +; "Golang package for dealing with consoles. Light on deps and a simple API.") +; (license license:asl2.0))) +; +;(define-public go-github-com-opencontainers-runtime-spec-1.0.1 +; (package +; (name "go-github-com-opencontainers-runtime-spec") +; (version "1.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/runtime-spec") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "00qb0q7ndxsll12ilp5a8pqfi4i1jqrlqzv0yf7sn52lkrdrw5f4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) +; (home-page "https://github.com/opencontainers/runtime-spec") +; (synopsis "Open Container Initiative Runtime Specification") +; (description +; "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328 +; (package +; (name "go-github-com-containerd-go-runc") +; (version "0.0.0-20200220073739-7016d3ce2328") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/go-runc") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1mx2lvfkxw9kiyhi18g3c6hcpb9r2115zjzyvz6rkdqr08xrij9k")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/go-runc")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449" +; ,go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449) +; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) +; ("go-github-com-opencontainers-runtime-spec-1.0.1" +; ,go-github-com-opencontainers-runtime-spec-1.0.1) +; ("go-github-com-containerd-console-0.0.0-20191206165004-02ecf6a7291e" +; ,go-github-com-containerd-console-0.0.0-20191206165004-02ecf6a7291e))) +; (home-page "https://github.com/containerd/go-runc") +; (synopsis "go-runc") +; (description +; "This is a package for consuming the @url{https://github.com/opencontainers/runc,runc} binary in your Go applications. +;It tries to expose all the settings and features of the runc CLI. If there is something missing then add it, its opensource!") +; (license license:asl2.0))) +; +;(define-public go-github-com-microsoft-go-winio-0.4.14 +; (package +; (name "go-github-com-microsoft-go-winio") +; (version "0.4.14") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/microsoft/go-winio") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0n34wi9l9ks2z3cz97j30ljfmqppwf1zxr16hwbnswyrk54fcxm3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/Microsoft/go-winio")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b" +; ,go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b) +; ("go-github-com-sirupsen-logrus-1.4.1" +; ,go-github-com-sirupsen-logrus-1.4.1) +; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) +; (home-page "https://github.com/Microsoft/go-winio") +; (synopsis "go-winio") +; (description +; "This repository contains utilities for efficiently performing Win32 IO operations in +;Go. Currently, this is focused on accessing named pipes and other file handles, and +;for using named pipes as a net transport.") +; (license license:expat))) +; +;(define-public go-github-com-microsoft-hcsshim-0.8.7-0.20190325164909-8abdbb8205e4 +; (package +; (name "go-github-com-microsoft-hcsshim") +; (version "0.8.7-0.20190325164909-8abdbb8205e4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/microsoft/hcsshim") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0029085clghvprb3bs2m9q7xk4njx5fg2gr5wm3a0y8kqx0awv45")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/Microsoft/hcsshim")) +; (home-page "https://github.com/Microsoft/hcsshim") +; (synopsis "hcsshim") +; (description +; "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") +; (license license:expat))) +; +;(define-public go-github-com-containerd-cgroups-0.0.0-20190717030353-c4b9ac5c7601 +; (package +; (name "go-github-com-containerd-cgroups") +; (version "0.0.0-20190717030353-c4b9ac5c7601") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/cgroups") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1fpai6nsm7qd5zfd8ykq8j4ngbqcy5v2isw16j086j0qabyw2iiw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/cgroups")) +; (home-page "https://github.com/containerd/cgroups") +; (synopsis "cgroups") +; (description +; "Go package for creating, managing, inspecting, and destroying cgroups. +;The resources format for settings on the cgroup uses the OCI runtime-spec found +;@url{https://github.com/opencontainers/runtime-spec,here}.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-console-0.0.0-20181022165439-0650fd9eeb50 +; (package +; (name "go-github-com-containerd-console") +; (version "0.0.0-20181022165439-0650fd9eeb50") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/console") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0cs11g3gjan15rnbgryf60725sw2hf83fb6y2hwn1rgcm0jab1b8")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/console")) +; (home-page "https://github.com/containerd/console") +; (synopsis "console") +; (description +; "Golang package for dealing with consoles. Light on deps and a simple API.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-containerd-1.3.0 +; (package +; (name "go-github-com-containerd-containerd") +; (version "1.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/containerd") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "05mr33l0rhkj49n6wf9lk95ijqvqwhp68ll879rpad1ypfv2f8as")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/containerd")) +; (home-page "https://github.com/containerd/containerd") +; (synopsis "Now Recruiting") +; (description +; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-continuity-0.0.0-20190815185530-f2a389ac0a02 +; (package +; (name "go-github-com-containerd-continuity") +; (version "0.0.0-20190815185530-f2a389ac0a02") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/continuity") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0h8a7npx46sjak0dyypkgg0h5dkq6dqpa4gx1v22ik62rmw0jy8r")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/continuity")) +; (home-page "https://github.com/containerd/continuity") +; (synopsis "continuity") +; (description +; "This package provides a transport-agnostic, filesystem metadata manifest system") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-fifo-0.0.0-20180307165137-3d5202aec260 +; (package +; (name "go-github-com-containerd-fifo") +; (version "0.0.0-20180307165137-3d5202aec260") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/fifo") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "11jp12vgfj0xg9m2w5cfay72fwrxb6w8za7rkcqw8yy8hypiqqxq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/fifo")) +; (home-page "https://github.com/containerd/fifo") +; (synopsis "fifo") +; (description "Go package for handling fifos in a sane way.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-go-runc-0.0.0-20190911050354-e029b79d8cda +; (package +; (name "go-github-com-containerd-go-runc") +; (version "0.0.0-20190911050354-e029b79d8cda") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/go-runc") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0zwb6bfnfmj09rnz1z3xx1y2pm4wrhyp2ls7vmf7p62j5zyvdpkw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/go-runc")) +; (home-page "https://github.com/containerd/go-runc") +; (synopsis "go-runc") +; (description +; "This is a package for consuming the @url{https://github.com/opencontainers/runc,runc} binary in your Go applications. +;It tries to expose all the settings and features of the runc CLI. If there is something missing then add it, its opensource!") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-ttrpc-0.0.0-20190828172938-92c8520ef9f8 +; (package +; (name "go-github-com-containerd-ttrpc") +; (version "0.0.0-20190828172938-92c8520ef9f8") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/ttrpc") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1kzclhmicw2xkiqsg6npx0xzs5jx36mqmyd0gj5dzv88i7p4b8dx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/ttrpc")) +; (home-page "https://github.com/containerd/ttrpc") +; (synopsis "ttrpc") +; (description "GRPC for low-memory environments.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-containerd-1.2.10 +; (package +; (name "go-github-com-containerd-containerd") +; (version "1.2.10") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/containerd") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1kddhkd93wkrimk0yjcqiavdrqc818nd39rf3wrgxyilx1mfnrwb")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/containerd")) +; (home-page "https://github.com/containerd/containerd") +; (synopsis "Now Recruiting") +; (description +; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") +; (license license:asl2.0))) +; +;(define-public go-github-com-fullsailor-pkcs7-0.0.0-20190404230743-d7302db945fa +; (package +; (name "go-github-com-fullsailor-pkcs7") +; (version "0.0.0-20190404230743-d7302db945fa") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/fullsailor/pkcs7") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "13d7dpj85j36pxwg1kn7b23rm54va5p9v3vdcx27pma2jjlsxsm1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/fullsailor/pkcs7")) +; (home-page "https://github.com/fullsailor/pkcs7") +; (synopsis "pkcs7") +; (description +; "Package pkcs7 implements parsing and generation of some PKCS#7 structures. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20190701094942-4def268fd1a4 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20190701094942-4def268fd1a4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1bfsnari529gw34cz0zqk3d9mrkcj1ay35kangri8kbgll0ss5a6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" +; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) +; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" +; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-gopkg-in-square-go-jose-v2-2.3.1 +; (package +; (name "go-gopkg-in-square-go-jose-v2") +; (version "2.3.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/square/go-jose.v2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "11r93g9xrcjqj7qvq8sbd5hy5rnbpmim0vdsp6rbav8gl7wimaa3")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path +; "gopkg.in/square/go-jose.v2" +; #:unpack-path +; "gopkg.in/square/go-jose.v2")) +; (home-page "https://gopkg.in/square/go-jose.v2") +; (synopsis "Go JOSE") +; (description +; "Package jose aims to provide an implementation of the Javascript Object Signing +;and Encryption set of standards. It implements encryption and signing based on +;the JSON Web Encryption and JSON Web Signature standards, with optional JSON +;Web Token support available in a sub-package. The library supports both the +;compact and full serialization formats, and has optional support for multiple +;recipients. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-containers-ocicrypt-1.0.1 +; (package +; (name "go-github-com-containers-ocicrypt") +; (version "1.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containers/ocicrypt") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0q27vzgdsimypkpi7iv0rl1xz571554adphyl0j8b5qa8wrf0n7v")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containers/ocicrypt")) +; (propagated-inputs +; `(("go-gotest-tools-2.2.0+incompatible" +; ,go-gotest-tools-2.2.0+incompatible) +; ("go-gopkg-in-square-go-jose-v2-2.3.1" +; ,go-gopkg-in-square-go-jose-v2-2.3.1) +; ("go-google-golang-org-grpc-1.24.0" ,go-google-golang-org-grpc-1.24.0) +; ("go-golang-org-x-crypto-0.0.0-20190701094942-4def268fd1a4" +; ,go-golang-org-x-crypto-0.0.0-20190701094942-4def268fd1a4) +; ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) +; ("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0) +; ("go-github-com-sirupsen-logrus-1.4.2" +; ,go-github-com-sirupsen-logrus-1.4.2) +; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) +; ("go-github-com-opencontainers-image-spec-1.0.1" +; ,go-github-com-opencontainers-image-spec-1.0.1) +; ("go-github-com-opencontainers-go-digest-1.0.0-rc1" +; ,go-github-com-opencontainers-go-digest-1.0.0-rc1) +; ("go-github-com-fullsailor-pkcs7-0.0.0-20190404230743-d7302db945fa" +; ,go-github-com-fullsailor-pkcs7-0.0.0-20190404230743-d7302db945fa) +; ("go-github-com-containerd-containerd-1.2.10" +; ,go-github-com-containerd-containerd-1.2.10))) +; (home-page "https://github.com/containers/ocicrypt") +; (synopsis "OCIcrypt Library") +; (description +; "The @code{ocicrypt} library is the OCI image spec implementation of container image encryption. More details of the spec can be seen in the @url{https://github.com/opencontainers/image-spec/pull/775,OCI repository}. The purpose of this library is to encode spec structures and consts in code, as well as provide a consistent implementation of image encryption across container runtimes and build tools.") +; (license license:asl2.0))) +; +;(define-public go-github-com-coreos-go-systemd-0.0.0-20161114122254-48702e0da86b +; (package +; (name "go-github-com-coreos-go-systemd") +; (version "0.0.0-20161114122254-48702e0da86b") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/coreos/go-systemd") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "04zl9ns4j3lpjykf32rv5cb6sj9x5ci8yi90vab1bl27vnqjgdkh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/coreos/go-systemd")) +; (home-page "https://github.com/coreos/go-systemd") +; (synopsis "go-systemd") +; (description "Go bindings to systemd. The project has several packages:") +; (license license:asl2.0))) +; +;(define-public go-github-com-docker-distribution-2.7.1-0.20190205005809-0d3efadf0154+incompatible +; (package +; (name "go-github-com-docker-distribution") +; (version "2.7.1-0.20190205005809-0d3efadf0154+incompatible") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/distribution/distribution") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1wayhmcxr6l281fqkbw1gh0ymhxlznf4jj1rcldhwrc64l2zjh8l")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/docker/distribution")) +; (home-page "https://github.com/docker/distribution") +; (synopsis "Distribution") +; (description +; "Package distribution will define the interfaces for the components of +;docker distribution. The goal is to allow users to reliably package, ship +;and store content related to docker images. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-docker-go-events-0.0.0-20170721190031-9461782956ad +; (package +; (name "go-github-com-docker-go-events") +; (version "0.0.0-20170721190031-9461782956ad") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/docker/go-events") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0vn0kd0w253jwdk86gv1h6s8p6bzxiyif74xdzlb39zr6fdrr145")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/docker/go-events")) +; (home-page "https://github.com/docker/go-events") +; (synopsis "Docker Events Package") +; (description +; "The Docker @code{events} package implements a composable event distribution package +;for Go.") +; (license license:asl2.0))) +; +;(define-public go-github-com-godbus-dbus-0.0.0-20151105175453-c7fdd8b5cd55 +; (package +; (name "go-github-com-godbus-dbus") +; (version "0.0.0-20151105175453-c7fdd8b5cd55") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/godbus/dbus") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "09zazkiny2im24xaiac5kbyhhnbqdbhwi9z9n7fj6rhpg8msiq9n")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/godbus/dbus")) +; (home-page "https://github.com/godbus/dbus") +; (synopsis "dbus") +; (description +; "Package dbus implements bindings to the D-Bus message bus system. +;") +; (license license:bsd-2))) +; +;(define-public go-github-com-gogo-googleapis-1.2.0 +; (package +; (name "go-github-com-gogo-googleapis") +; (version "1.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/gogo/googleapis") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1a82n0xp0v8lgjxzl3aa595r0rmy7afgyn2l3kv6z9kzw339i0jp")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/gogo/googleapis")) +; (propagated-inputs +; `(("go-github-com-gogo-protobuf-1.2.1" +; ,go-github-com-gogo-protobuf-1.2.1))) +; (home-page "https://github.com/gogo/googleapis") +; (synopsis "Google APIs generated by gogoprotobuf") +; (description +; "The @url{https://github.com/gogo/grpc-example,grpc-example} includes an example usage of this repository.") +; (license license:asl2.0))) +; +;(define-public go-github-com-imdario-mergo-0.3.8 +; (package +; (name "go-github-com-imdario-mergo") +; (version "0.3.8") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/imdario/mergo") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "15xwyrnwng11ib0fxi7clwick2r0njwn0gs3va2g5m1ad418ry57")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/imdario/mergo")) +; (home-page "https://github.com/imdario/mergo") +; (synopsis "Mergo") +; (description +; "This package provides a helper to merge structs and maps in Golang. Useful for configuration default values, avoiding messy if-statements. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-opencontainers-go-digest-1.0.0-rc1.0.20180430190053-c9281466c8b2 +; (package +; (name "go-github-com-opencontainers-go-digest") +; (version "1.0.0-rc1.0.20180430190053-c9281466c8b2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/go-digest") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1djdazssy27xn91pjhx3dgb0f11bnlzzbwkh7f8zwnpz011anasi")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/go-digest")) +; (home-page "https://github.com/opencontainers/go-digest") +; (synopsis "go-digest") +; (description +; "Package digest provides a generalized type to opaquely represent message +;digests and their operations within the registry. The Digest type is +;designed to serve as a flexible identifier in a content-addressable system. +;More importantly, it provides tools and wrappers to work with +;hash.Hash-based digests with little effort. +;") +; (license (list license:asl2.0 license:cc-by-sa4.0)))) +; +;(define-public go-github-com-opencontainers-runc-1.0.0-rc8.0.20190926000215-3e425f80a8c9 +; (package +; (name "go-github-com-opencontainers-runc") +; (version "1.0.0-rc8.0.20190926000215-3e425f80a8c9") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/runc") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "18psc830b2rkwml1x6vxngam5b5wi3pj14mw817rshpzy87prspj")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/runc")) +; (home-page "https://github.com/opencontainers/runc") +; (synopsis "runc") +; (description +; "@code{runc} is a CLI tool for spawning and running containers according to the OCI specification.") +; (license license:asl2.0))) +; +;(define-public go-github-com-opencontainers-runtime-spec-1.0.2-0.20190207185410-29686dbc5559 +; (package +; (name "go-github-com-opencontainers-runtime-spec") +; (version "1.0.2-0.20190207185410-29686dbc5559") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/runtime-spec") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0i8q3520jk4yl9rsxs8mn5vsi9i0gd3drysbhciaqwm5l8c30h65")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) +; (home-page "https://github.com/opencontainers/runtime-spec") +; (synopsis "Open Container Initiative Runtime Specification") +; (description +; "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") +; (license license:asl2.0))) +; +;(define-public go-github-com-prometheus-procfs-0.0.8 +; (package +; (name "go-github-com-prometheus-procfs") +; (version "0.0.8") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/procfs") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "076wblhz8fjdc73fmz1lg0hafbwg1xv8hszm78lbg9anjpfgacvq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/procfs")) +; (propagated-inputs +; `(("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" +; ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) +; ("go-github-com-google-go-cmp-0.3.1" +; ,go-github-com-google-go-cmp-0.3.1))) +; (home-page "https://github.com/prometheus/procfs") +; (synopsis "procfs") +; (description +; "Package procfs provides functions to retrieve system, kernel and process +;metrics from the pseudo-filesystem proc. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190812073006-9eafafc0a87e +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190812073006-9eafafc0a87e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0g5wcpiafz47066993mgz77gka9qzww6w6crxpnyir0459j7z07r")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-grpc-1.24.0 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.24.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0h8mwv74vzcfb7p4ai247x094skxca71vjp4wpj2wzmri0x9p4v6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" +; ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) +; ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" +; ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) +; ("go-google-golang-org-appengine-1.1.0" +; ,go-google-golang-org-appengine-1.1.0) +; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" +; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-github-com-google-go-cmp-0.2.0" +; ,go-github-com-google-go-cmp-0.2.0) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2) +; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-client9-misspell-0.3.4" +; ,go-github-com-client9-misspell-0.3.4) +; ("go-github-com-burntsushi-toml-0.3.1" +; ,go-github-com-burntsushi-toml-0.3.1) +; ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-imgcrypt-1.0.1 +; (package +; (name "go-github-com-containerd-imgcrypt") +; (version "1.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/imgcrypt") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0y0gbnp8imckw6rv3sjf3sycp8rc9lyhv0pp0x3q3yksvqmbqh5v")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/imgcrypt")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.24.0" ,go-google-golang-org-grpc-1.24.0) +; ("go-golang-org-x-sys-0.0.0-20190812073006-9eafafc0a87e" +; ,go-golang-org-x-sys-0.0.0-20190812073006-9eafafc0a87e) +; ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" +; ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) +; ("go-golang-org-x-net-0.0.0-20190522155817-f3200d17e092" +; ,go-golang-org-x-net-0.0.0-20190522155817-f3200d17e092) +; ("go-go-etcd-io-bbolt-1.3.3" ,go-go-etcd-io-bbolt-1.3.3) +; ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) +; ("go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2" +; ,go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2) +; ("go-github-com-sirupsen-logrus-1.4.2" +; ,go-github-com-sirupsen-logrus-1.4.2) +; ("go-github-com-prometheus-procfs-0.0.8" +; ,go-github-com-prometheus-procfs-0.0.8) +; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) +; ("go-github-com-opencontainers-runtime-spec-1.0.2-0.20190207185410-29686dbc5559" +; ,go-github-com-opencontainers-runtime-spec-1.0.2-0.20190207185410-29686dbc5559) +; ("go-github-com-opencontainers-runc-1.0.0-rc8.0.20190926000215-3e425f80a8c9" +; ,go-github-com-opencontainers-runc-1.0.0-rc8.0.20190926000215-3e425f80a8c9) +; ("go-github-com-opencontainers-image-spec-1.0.1" +; ,go-github-com-opencontainers-image-spec-1.0.1) +; ("go-github-com-opencontainers-go-digest-1.0.0-rc1.0.20180430190053-c9281466c8b2" +; ,go-github-com-opencontainers-go-digest-1.0.0-rc1.0.20180430190053-c9281466c8b2) +; ("go-github-com-imdario-mergo-0.3.8" +; ,go-github-com-imdario-mergo-0.3.8) +; ("go-github-com-gogo-protobuf-1.2.1" +; ,go-github-com-gogo-protobuf-1.2.1) +; ("go-github-com-gogo-googleapis-1.2.0" +; ,go-github-com-gogo-googleapis-1.2.0) +; ("go-github-com-godbus-dbus-0.0.0-20151105175453-c7fdd8b5cd55" +; ,go-github-com-godbus-dbus-0.0.0-20151105175453-c7fdd8b5cd55) +; ("go-github-com-docker-go-units-0.4.0" +; ,go-github-com-docker-go-units-0.4.0) +; ("go-github-com-docker-go-events-0.0.0-20170721190031-9461782956ad" +; ,go-github-com-docker-go-events-0.0.0-20170721190031-9461782956ad) +; ("go-github-com-docker-distribution-2.7.1-0.20190205005809-0d3efadf0154+incompatible" +; ,go-github-com-docker-distribution-2.7.1-0.20190205005809-0d3efadf0154+incompatible) +; ("go-github-com-coreos-go-systemd-0.0.0-20161114122254-48702e0da86b" +; ,go-github-com-coreos-go-systemd-0.0.0-20161114122254-48702e0da86b) +; ("go-github-com-containers-ocicrypt-1.0.1" +; ,go-github-com-containers-ocicrypt-1.0.1) +; ("go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd" +; ,go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd) +; ("go-github-com-containerd-ttrpc-0.0.0-20190828172938-92c8520ef9f8" +; ,go-github-com-containerd-ttrpc-0.0.0-20190828172938-92c8520ef9f8) +; ("go-github-com-containerd-go-runc-0.0.0-20190911050354-e029b79d8cda" +; ,go-github-com-containerd-go-runc-0.0.0-20190911050354-e029b79d8cda) +; ("go-github-com-containerd-fifo-0.0.0-20180307165137-3d5202aec260" +; ,go-github-com-containerd-fifo-0.0.0-20180307165137-3d5202aec260) +; ("go-github-com-containerd-continuity-0.0.0-20190815185530-f2a389ac0a02" +; ,go-github-com-containerd-continuity-0.0.0-20190815185530-f2a389ac0a02) +; ("go-github-com-containerd-containerd-1.3.0" +; ,go-github-com-containerd-containerd-1.3.0) +; ("go-github-com-containerd-console-0.0.0-20181022165439-0650fd9eeb50" +; ,go-github-com-containerd-console-0.0.0-20181022165439-0650fd9eeb50) +; ("go-github-com-containerd-cgroups-0.0.0-20190717030353-c4b9ac5c7601" +; ,go-github-com-containerd-cgroups-0.0.0-20190717030353-c4b9ac5c7601) +; ("go-github-com-microsoft-hcsshim-0.8.7-0.20190325164909-8abdbb8205e4" +; ,go-github-com-microsoft-hcsshim-0.8.7-0.20190325164909-8abdbb8205e4) +; ("go-github-com-microsoft-go-winio-0.4.14" +; ,go-github-com-microsoft-go-winio-0.4.14))) +; (home-page "https://github.com/containerd/imgcrypt") +; (synopsis "imgcrypt image encryption library and command line tool") +; (description +; "Project @code{imgcrypt} is a non-core subproject of containerd.") +; (license license:asl2.0))) +; +;(define-public go-github-com-blang-semver-3.1.0+incompatible +; (package +; (name "go-github-com-blang-semver") +; (version "3.1.0+incompatible") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/blang/semver") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1s80qlij6j6wrh0fhm0l11hbf3qjra67nca5bl7izyfjj4621fcd")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/blang/semver")) +; (home-page "https://github.com/blang/semver") +; (synopsis "semver for golang") +; (description +; "semver is a @url{http://semver.org/,Semantic Versioning} library written in golang. It fully covers spec version @code{2.0.0}.") +; (license license:expat))) +; +;(define-public go-github-com-containerd-containerd-1.3.0-beta.2.0.20190828155532-0293cbd26c69 +; (package +; (name "go-github-com-containerd-containerd") +; (version "1.3.0-beta.2.0.20190828155532-0293cbd26c69") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/containerd") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1jhb4a7fczf817d9dwj0a02wfscv46hkymrqh1dcsgpdsp80igkw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/containerd")) +; (home-page "https://github.com/containerd/containerd") +; (synopsis "Now Recruiting") +; (description +; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") +; (license license:asl2.0))) +; +;(define-public go-github-com-hashicorp-errwrap-0.0.0-20141028054710-7554cd9344ce +; (package +; (name "go-github-com-hashicorp-errwrap") +; (version "0.0.0-20141028054710-7554cd9344ce") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/errwrap") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0kmv0p605di6jc8i1778qzass18m0mv9ks9vxxrfsiwcp4la82jf")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hashicorp/errwrap")) +; (home-page "https://github.com/hashicorp/errwrap") +; (synopsis "errwrap") +; (description +; "Package errwrap implements methods to formalize error wrapping in Go. +;") +; (license license:mpl2.0))) +; +;(define-public go-github-com-hashicorp-go-multierror-0.0.0-20161216184304-ed905158d874 +; (package +; (name "go-github-com-hashicorp-go-multierror") +; (version "0.0.0-20161216184304-ed905158d874") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/go-multierror") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1bldhx9dmx9q4gjsag3g1xswq1jsf394rs69fdbmgnkj75j3sp70")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hashicorp/go-multierror")) +; (home-page "https://github.com/hashicorp/go-multierror") +; (synopsis "go-multierror") +; (description +; "@code{go-multierror} is a package for Go that provides a mechanism for +;representing a list of @code{error} values as a single @code{error}.") +; (license license:mpl2.0))) +; +;(define-public go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39 +; (package +; (name "go-github-com-opencontainers-runtime-tools") +; (version "0.0.0-20181011054405-1d69bd0f9c39") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/runtime-tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1wgisl2v8i1hvy3bf8f16v7rarx2ynyasb0jx4kffp5n5hz2hfcl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/runtime-tools")) +; (home-page "https://github.com/opencontainers/runtime-tools") +; (synopsis "oci-runtime-tool") +; (description +; "oci-runtime-tool is a collection of tools for working with the @url{https://github.com/opencontainers/runtime-spec,OCI runtime specification}. +;To build from source code, runtime-tools requires Go 1.10.x or above.") +; (license license:asl2.0))) +; +;(define-public go-github-com-prometheus-procfs-0.0.5 +; (package +; (name "go-github-com-prometheus-procfs") +; (version "0.0.5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/procfs") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1nqn8ip9f4f6kqrvand4lxhcxrkk19dwf8s3nh336i9wr2jfhbwa")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/procfs")) +; (propagated-inputs +; `(("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" +; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) +; ("go-github-com-google-go-cmp-0.3.0" +; ,go-github-com-google-go-cmp-0.3.0))) +; (home-page "https://github.com/prometheus/procfs") +; (synopsis "procfs") +; (description +; "Package procfs provides functions to retrieve system, kernel and process +;metrics from the pseudo-filesystem proc. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-syndtr-gocapability-0.0.0-20170704070218-db04d3cc01c8 +; (package +; (name "go-github-com-syndtr-gocapability") +; (version "0.0.0-20170704070218-db04d3cc01c8") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/syndtr/gocapability") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0jwica5kqax70rd4gbc2yjdz54401s4mr6clyn60gcmnxc0wynds")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/syndtr/gocapability")) +; (home-page "https://github.com/syndtr/gocapability") +; (synopsis #f) +; (description #f) +; (license license:bsd-2))) +; +;(define-public go-github-com-xeipuuv-gojsonschema-0.0.0-20180618132009-1d523034197f +; (package +; (name "go-github-com-xeipuuv-gojsonschema") +; (version "0.0.0-20180618132009-1d523034197f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/xeipuuv/gojsonschema") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1z8c6x8sfh6d1ib2lm2jps7r139qip6h3zik3fxhy1yr1380qbzp")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/xeipuuv/gojsonschema")) +; (home-page "https://github.com/xeipuuv/gojsonschema") +; (synopsis "gojsonschema") +; (description +; "An implementation of JSON Schema for the Go programming language. Supports draft-04, draft-06 and draft-07.") +; (license license:asl2.0))) +; +;(define-public go-k8s-io-kubernetes-1.13.0 +; (package +; (name "go-k8s-io-kubernetes") +; (version "1.13.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes/kubernetes") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "12cvw8b7l319p8nc2imc2wck7zz7vzrwcjyxq5djqj7l5rbcwmzs")))) +; (build-system go-build-system) +; (arguments '(#:import-path "k8s.io/kubernetes")) +; (home-page "https://k8s.io/kubernetes") +; (synopsis "Kubernetes (K8s)") +; (description +; "Kubernetes, also known as K8s, is an open source system for managing @url{https://kubernetes.io/docs/concepts/overview/what-is-kubernetes/,containerized applications} +;across multiple hosts. It provides basic mechanisms for deployment, maintenance, +;and scaling of applications.") +; (license license:asl2.0))) +; +;(define-public go-github-com-microsoft-hcsshim-0.8.7 +; (package +; (name "go-github-com-microsoft-hcsshim") +; (version "0.8.7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/microsoft/hcsshim") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1c6ix202ll48n7x00xxb7gzgm3srm9zwwbx2503l6vz3sqclh9xm")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/Microsoft/hcsshim")) +; (propagated-inputs +; `(("go-k8s-io-kubernetes-1.13.0" ,go-k8s-io-kubernetes-1.13.0) +; ("go-gotest-tools-2.2.0+incompatible" +; ,go-gotest-tools-2.2.0+incompatible) +; ("go-google-golang-org-grpc-1.20.1" ,go-google-golang-org-grpc-1.20.1) +; ("go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3" +; ,go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3) +; ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" +; ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) +; ("go-go-opencensus-io-0.22.0" ,go-go-opencensus-io-0.22.0) +; ("go-github-com-xeipuuv-gojsonschema-0.0.0-20180618132009-1d523034197f" +; ,go-github-com-xeipuuv-gojsonschema-0.0.0-20180618132009-1d523034197f) +; ("go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415" +; ,go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415) +; ("go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f" +; ,go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f) +; ("go-github-com-urfave-cli-0.0.0-20171014202726-7bc6a0acffa5" +; ,go-github-com-urfave-cli-0.0.0-20171014202726-7bc6a0acffa5) +; ("go-github-com-syndtr-gocapability-0.0.0-20170704070218-db04d3cc01c8" +; ,go-github-com-syndtr-gocapability-0.0.0-20170704070218-db04d3cc01c8) +; ("go-github-com-sirupsen-logrus-1.4.1" +; ,go-github-com-sirupsen-logrus-1.4.1) +; ("go-github-com-prometheus-procfs-0.0.5" +; ,go-github-com-prometheus-procfs-0.0.5) +; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) +; ("go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39" +; ,go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39) +; ("go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700" +; ,go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700) +; ("go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f" +; ,go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f) +; ("go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2" +; ,go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2) +; ("go-github-com-hashicorp-go-multierror-0.0.0-20161216184304-ed905158d874" +; ,go-github-com-hashicorp-go-multierror-0.0.0-20161216184304-ed905158d874) +; ("go-github-com-hashicorp-errwrap-0.0.0-20141028054710-7554cd9344ce" +; ,go-github-com-hashicorp-errwrap-0.0.0-20141028054710-7554cd9344ce) +; ("go-github-com-gogo-protobuf-1.2.1" +; ,go-github-com-gogo-protobuf-1.2.1) +; ("go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd" +; ,go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd) +; ("go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de" +; ,go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de) +; ("go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3" +; ,go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3) +; ("go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448" +; ,go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448) +; ("go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc" +; ,go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc) +; ("go-github-com-containerd-containerd-1.3.0-beta.2.0.20190828155532-0293cbd26c69" +; ,go-github-com-containerd-containerd-1.3.0-beta.2.0.20190828155532-0293cbd26c69) +; ("go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1" +; ,go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1) +; ("go-github-com-containerd-cgroups-0.0.0-20190919134610-bf292b21730f" +; ,go-github-com-containerd-cgroups-0.0.0-20190919134610-bf292b21730f) +; ("go-github-com-blang-semver-3.1.0+incompatible" +; ,go-github-com-blang-semver-3.1.0+incompatible) +; ("go-github-com-microsoft-go-winio-0.4.15-0.20190919025122-fc70bd9a86b5" +; ,go-github-com-microsoft-go-winio-0.4.15-0.20190919025122-fc70bd9a86b5))) +; (home-page "https://github.com/Microsoft/hcsshim") +; (synopsis "hcsshim") +; (description +; "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") +; (license license:expat))) +; +;(define-public go-github-com-containerd-containerd-1.3.1-0.20191213020239-082f7e3aed57 +; (package +; (name "go-github-com-containerd-containerd") +; (version "1.3.1-0.20191213020239-082f7e3aed57") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/containerd") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1piaha1adhzhj150l7zhskn5fgl4r2cyvwhrrm8bbm3vnvhmgw7v")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/containerd")) +; (home-page "https://github.com/containerd/containerd") +; (synopsis "Now Recruiting") +; (description +; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-continuity-0.0.0-20191127005431-f65d91d395eb +; (package +; (name "go-github-com-containerd-continuity") +; (version "0.0.0-20191127005431-f65d91d395eb") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/continuity") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "15yh5idl3if8a982gsnq9q72021a7jcs9bdcrqaxbl4dwdqcszki")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/continuity")) +; (home-page "https://github.com/containerd/continuity") +; (synopsis "continuity") +; (description +; "This package provides a transport-agnostic, filesystem metadata manifest system") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190522044717-8097e1b27ff5 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190522044717-8097e1b27ff5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1rgflfvh365x5lwdyqdd9qk8hh3ycr88a2488bgqgvfhp5ri5p6x")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20190522204451-c2c4e71fbf69 +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20190522204451-c2c4e71fbf69") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1y44pmyy92pg822fhw80pnciifx1ah0g73i2l0ixickd24wyznnm")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" +; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) +; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) +; ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" +; ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) +; ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" +; ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) +; ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" +; ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) +; ("go-github-com-golang-protobuf-1.3.1" +; ,go-github-com-golang-protobuf-1.3.1))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-ttrpc-0.0.0-20191028202541-4f1b8fe65a5c +; (package +; (name "go-github-com-containerd-ttrpc") +; (version "0.0.0-20191028202541-4f1b8fe65a5c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/ttrpc") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19fhm39jagk2sfgi9g5zdqx4rynziwxhaap03x4mdj8kczlz21x8")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/ttrpc")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.21.0" ,go-google-golang-org-grpc-1.21.0) +; ("go-google-golang-org-genproto-0.0.0-20190522204451-c2c4e71fbf69" +; ,go-google-golang-org-genproto-0.0.0-20190522204451-c2c4e71fbf69) +; ("go-golang-org-x-sys-0.0.0-20190522044717-8097e1b27ff5" +; ,go-golang-org-x-sys-0.0.0-20190522044717-8097e1b27ff5) +; ("go-github-com-sirupsen-logrus-1.4.2" +; ,go-github-com-sirupsen-logrus-1.4.2) +; ("go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1" +; ,go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1) +; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) +; ("go-github-com-gogo-protobuf-1.2.1" +; ,go-github-com-gogo-protobuf-1.2.1))) +; (home-page "https://github.com/containerd/ttrpc") +; (synopsis "ttrpc") +; (description "GRPC for low-memory environments.") +; (license license:asl2.0))) +; +;(define-public go-github-com-gogo-protobuf-1.3.0 +; (package +; (name "go-github-com-gogo-protobuf") +; (version "1.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/gogo/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0slfyrmbpdcppf0z3waar90bpszdhi2gv705ys1b0zx5x6ax8f1a")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/gogo/protobuf")) +; (propagated-inputs +; `(("go-github-com-kisielk-gotool-1.0.0" +; ,go-github-com-kisielk-gotool-1.0.0) +; ("go-github-com-kisielk-errcheck-1.2.0" +; ,go-github-com-kisielk-errcheck-1.2.0))) +; (home-page "https://github.com/gogo/protobuf") +; (synopsis "Protocol Buffers for Go with Gadgets") +; (description +; "gogoprotobuf is a fork of @url{https://github.com/golang/protobuf,golang/protobuf} with extra code generation features.") +; (license license:bsd-3))) +; +;(define-public go-github-com-containerd-typeurl-0.0.0-20190911142611-5eb25027c9fd +; (package +; (name "go-github-com-containerd-typeurl") +; (version "0.0.0-20190911142611-5eb25027c9fd") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/typeurl") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1fyc2962b9sqgqycnlkxls6n0d701nszl84bayxrdv3r1491jn9v")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/typeurl")) +; (propagated-inputs +; `(("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) +; ("go-github-com-gogo-protobuf-1.3.0" +; ,go-github-com-gogo-protobuf-1.3.0))) +; (home-page "https://github.com/containerd/typeurl") +; (synopsis "typeurl") +; (description +; "This package provides a Go package for managing the registration, marshaling, and unmarshaling of encoded types.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-zfs-0.0.0-20200918131355-0a33824f23a2 +; (package +; (name "go-github-com-containerd-zfs") +; (version "0.0.0-20200918131355-0a33824f23a2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/zfs") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "112bj6mxc3r2ncybblf3w1fgqa6w0070f6a8vlqcml1g00ljhsz6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/zfs")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) +; ("go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449" +; ,go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449) +; ("go-go-etcd-io-bbolt-1.3.3" ,go-go-etcd-io-bbolt-1.3.3) +; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) +; ("go-github-com-opencontainers-runc-1.0.0-rc9" +; ,go-github-com-opencontainers-runc-1.0.0-rc9) +; ("go-github-com-opencontainers-image-spec-1.0.1" +; ,go-github-com-opencontainers-image-spec-1.0.1) +; ("go-github-com-opencontainers-go-digest-1.0.0-rc1" +; ,go-github-com-opencontainers-go-digest-1.0.0-rc1) +; ("go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible" +; ,go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible) +; ("go-github-com-google-uuid-1.1.1" ,go-github-com-google-uuid-1.1.1) +; ("go-github-com-google-go-cmp-0.3.1" +; ,go-github-com-google-go-cmp-0.3.1) +; ("go-github-com-gogo-protobuf-1.3.1" +; ,go-github-com-gogo-protobuf-1.3.1) +; ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" +; ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) +; ("go-github-com-containerd-typeurl-0.0.0-20190911142611-5eb25027c9fd" +; ,go-github-com-containerd-typeurl-0.0.0-20190911142611-5eb25027c9fd) +; ("go-github-com-containerd-ttrpc-0.0.0-20191028202541-4f1b8fe65a5c" +; ,go-github-com-containerd-ttrpc-0.0.0-20191028202541-4f1b8fe65a5c) +; ("go-github-com-containerd-continuity-0.0.0-20191127005431-f65d91d395eb" +; ,go-github-com-containerd-continuity-0.0.0-20191127005431-f65d91d395eb) +; ("go-github-com-containerd-containerd-1.3.1-0.20191213020239-082f7e3aed57" +; ,go-github-com-containerd-containerd-1.3.1-0.20191213020239-082f7e3aed57) +; ("go-github-com-microsoft-hcsshim-0.8.7" +; ,go-github-com-microsoft-hcsshim-0.8.7))) +; (home-page "https://github.com/containerd/zfs") +; (synopsis "ZFS snapshotter plugin") +; (description "ZFS snapshotter plugin for containerd.") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-sys-0.0.0-20201202213521-69691e467435 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20201202213521-69691e467435") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0lndxdnazszfj1jl87cpz31vd12jrjm1wj0zw1c2p8yg64cfkhna")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-containerd-containerd-1.5.0-beta.1 +; (package +; (name "go-github-com-containerd-containerd") +; (version "1.5.0-beta.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/containerd") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1jki3jwmbfk4mp2qhz4ppd6vgnicalszzv5ffibasa4qj5v19wcd")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/containerd")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) +; ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) +; ("go-github-com-golang-protobuf-1.3.5" +; ,go-github-com-golang-protobuf-1.3.5) +; ("go-github-com-gogo-googleapis-1.3.2" +; ,go-github-com-gogo-googleapis-1.3.2) +; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" +; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) +; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) +; ("go-k8s-io-cri-api-0.20.1" ,go-k8s-io-cri-api-0.20.1) +; ("go-k8s-io-component-base-0.20.1" ,go-k8s-io-component-base-0.20.1) +; ("go-k8s-io-client-go-0.20.1" ,go-k8s-io-client-go-0.20.1) +; ("go-k8s-io-apiserver-0.20.1" ,go-k8s-io-apiserver-0.20.1) +; ("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) +; ("go-k8s-io-api-0.20.1" ,go-k8s-io-api-0.20.1) +; ("go-gotest-tools-v3-3.0.2" ,go-gotest-tools-v3-3.0.2) +; ("go-golang-org-x-sys-0.0.0-20201202213521-69691e467435" +; ,go-golang-org-x-sys-0.0.0-20201202213521-69691e467435) +; ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" +; ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) +; ("go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b" +; ,go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b) +; ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) +; ("go-github-com-tchap-go-patricia-2.2.6+incompatible" +; ,go-github-com-tchap-go-patricia-2.2.6+incompatible) +; ("go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635" +; ,go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-sirupsen-logrus-1.7.0" +; ,go-github-com-sirupsen-logrus-1.7.0) +; ("go-github-com-prometheus-client-golang-1.7.1" +; ,go-github-com-prometheus-client-golang-1.7.1) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-selinux-1.8.0" +; ,go-github-com-opencontainers-selinux-1.8.0) +; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" +; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) +; ("go-github-com-opencontainers-runc-1.0.0-rc93" +; ,go-github-com-opencontainers-runc-1.0.0-rc93) +; ("go-github-com-opencontainers-image-spec-1.0.1" +; ,go-github-com-opencontainers-image-spec-1.0.1) +; ("go-github-com-opencontainers-go-digest-1.0.0" +; ,go-github-com-opencontainers-go-digest-1.0.0) +; ("go-github-com-moby-sys-symlink-0.1.0" +; ,go-github-com-moby-sys-symlink-0.1.0) +; ("go-github-com-moby-sys-mountinfo-0.4.0" +; ,go-github-com-moby-sys-mountinfo-0.4.0) +; ("go-github-com-klauspost-compress-1.11.3" +; ,go-github-com-klauspost-compress-1.11.3) +; ("go-github-com-imdario-mergo-0.3.10" +; ,go-github-com-imdario-mergo-0.3.10) +; ("go-github-com-hashicorp-go-multierror-1.0.0" +; ,go-github-com-hashicorp-go-multierror-1.0.0) +; ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" +; ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) +; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) +; ("go-github-com-google-go-cmp-0.5.2" +; ,go-github-com-google-go-cmp-0.5.2) +; ("go-github-com-gogo-protobuf-1.3.2" +; ,go-github-com-gogo-protobuf-1.3.2) +; ("go-github-com-fsnotify-fsnotify-1.4.9" +; ,go-github-com-fsnotify-fsnotify-1.4.9) +; ("go-github-com-emicklei-go-restful-2.9.5+incompatible" +; ,go-github-com-emicklei-go-restful-2.9.5+incompatible) +; ("go-github-com-docker-go-units-0.4.0" +; ,go-github-com-docker-go-units-0.4.0) +; ("go-github-com-docker-go-metrics-0.0.1" +; ,go-github-com-docker-go-metrics-0.0.1) +; ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" +; ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1) +; ("go-github-com-coreos-go-systemd-v22-22.1.0" +; ,go-github-com-coreos-go-systemd-v22-22.1.0) +; ("go-github-com-containernetworking-plugins-0.8.6" +; ,go-github-com-containernetworking-plugins-0.8.6) +; ("go-github-com-containerd-zfs-0.0.0-20200918131355-0a33824f23a2" +; ,go-github-com-containerd-zfs-0.0.0-20200918131355-0a33824f23a2) +; ("go-github-com-containerd-typeurl-1.0.1" +; ,go-github-com-containerd-typeurl-1.0.1) +; ("go-github-com-containerd-ttrpc-1.0.2" +; ,go-github-com-containerd-ttrpc-1.0.2) +; ("go-github-com-containerd-nri-0.0.0-20201007170849-eb1350a75164" +; ,go-github-com-containerd-nri-0.0.0-20201007170849-eb1350a75164) +; ("go-github-com-containerd-imgcrypt-1.0.1" +; ,go-github-com-containerd-imgcrypt-1.0.1) +; ("go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328" +; ,go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328) +; ("go-github-com-containerd-go-cni-1.0.1" +; ,go-github-com-containerd-go-cni-1.0.1) +; ("go-github-com-containerd-fifo-0.0.0-20201026212402-0724c46b320c" +; ,go-github-com-containerd-fifo-0.0.0-20201026212402-0724c46b320c) +; ("go-github-com-containerd-continuity-0.0.0-20201208142359-180525291bb7" +; ,go-github-com-containerd-continuity-0.0.0-20201208142359-180525291bb7) +; ("go-github-com-containerd-console-1.0.1" +; ,go-github-com-containerd-console-1.0.1) +; ("go-github-com-containerd-cgroups-0.0.0-20200824123100-0b889c03f102" +; ,go-github-com-containerd-cgroups-0.0.0-20200824123100-0b889c03f102) +; ("go-github-com-containerd-btrfs-0.0.0-20201111183144-404b9149801e" +; ,go-github-com-containerd-btrfs-0.0.0-20201111183144-404b9149801e) +; ("go-github-com-containerd-aufs-0.0.0-20200908144142-dab0cbea06f4" +; ,go-github-com-containerd-aufs-0.0.0-20200908144142-dab0cbea06f4) +; ("go-github-com-microsoft-hcsshim-test-0.0.0-20201218223536-d3e5debf77da" +; ,go-github-com-microsoft-hcsshim-test-0.0.0-20201218223536-d3e5debf77da) +; ("go-github-com-microsoft-hcsshim-0.8.14" +; ,go-github-com-microsoft-hcsshim-0.8.14) +; ("go-github-com-microsoft-go-winio-0.4.16" +; ,go-github-com-microsoft-go-winio-0.4.16) +; ("go-github-com-burntsushi-toml-0.3.1" +; ,go-github-com-burntsushi-toml-0.3.1))) +; (home-page "https://github.com/containerd/containerd") +; (synopsis "Now Recruiting") +; (description +; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20200728195943-123391ffb6de +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20200728195943-123391ffb6de") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1a3wnn8yjvckh3smyqzwd2k2gvl3i8dk68pvcap0wha8hmga1vf3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" +; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) +; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" +; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20200817155316-9781c653f443 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20200817155316-9781c653f443") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1fkwiydhhmn6cxmd9jb4rj2wp06yxmqc3903b7zawsxm9jpslicm")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-containers-ocicrypt-1.1.0 +; (package +; (name "go-github-com-containers-ocicrypt") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containers/ocicrypt") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "13avih8ml00idn6qy96ash3jxkimqxpkz4cy4kgryc8jx303nv6i")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containers/ocicrypt")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.3.0" ,go-gopkg-in-yaml-v2-2.3.0) +; ("go-gopkg-in-square-go-jose-v2-2.5.1" +; ,go-gopkg-in-square-go-jose-v2-2.5.1) +; ("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) +; ("go-golang-org-x-sys-0.0.0-20200817155316-9781c653f443" +; ,go-golang-org-x-sys-0.0.0-20200817155316-9781c653f443) +; ("go-golang-org-x-crypto-0.0.0-20200728195943-123391ffb6de" +; ,go-golang-org-x-crypto-0.0.0-20200728195943-123391ffb6de) +; ("go-go-mozilla-org-pkcs7-0.0.0-20200128120323-432b2356ecb1" +; ,go-go-mozilla-org-pkcs7-0.0.0-20200128120323-432b2356ecb1) +; ("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0) +; ("go-github-com-stefanberger-go-pkcs11uri-0.0.0-20201008174630-78d3cae3a980" +; ,go-github-com-stefanberger-go-pkcs11uri-0.0.0-20201008174630-78d3cae3a980) +; ("go-github-com-sirupsen-logrus-1.7.0" +; ,go-github-com-sirupsen-logrus-1.7.0) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-image-spec-1.0.1" +; ,go-github-com-opencontainers-image-spec-1.0.1) +; ("go-github-com-opencontainers-go-digest-1.0.0" +; ,go-github-com-opencontainers-go-digest-1.0.0) +; ("go-github-com-miekg-pkcs11-1.0.3" ,go-github-com-miekg-pkcs11-1.0.3) +; ("go-github-com-google-go-cmp-0.5.2" +; ,go-github-com-google-go-cmp-0.5.2) +; ("go-github-com-golang-protobuf-1.4.3" +; ,go-github-com-golang-protobuf-1.4.3))) +; (home-page "https://github.com/containers/ocicrypt") +; (synopsis "OCIcrypt Library") +; (description +; "The @code{ocicrypt} library is the OCI image spec implementation of container image encryption. More details of the spec can be seen in the @url{https://github.com/opencontainers/image-spec/pull/775,OCI repository}. The purpose of this library is to encode spec structures and consts in code, as well as provide a consistent implementation of image encryption across container runtimes and build tools.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-imgcrypt-1.0.4-0.20210301171431-0ae5c75f59ba +; (package +; (name "go-github-com-containerd-imgcrypt") +; (version "1.0.4-0.20210301171431-0ae5c75f59ba") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/imgcrypt") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0vkwgcxh3mpsn6wp231c9ad3sx6gmnc9948nn3vvbw8bsmjd4i77")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/imgcrypt")) +; (propagated-inputs +; `(("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) +; ("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) +; ("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) +; ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" +; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) +; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) +; ("go-github-com-sirupsen-logrus-1.7.0" +; ,go-github-com-sirupsen-logrus-1.7.0) +; ("go-github-com-prometheus-procfs-0.6.0" +; ,go-github-com-prometheus-procfs-0.6.0) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" +; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) +; ("go-github-com-opencontainers-image-spec-1.0.1" +; ,go-github-com-opencontainers-image-spec-1.0.1) +; ("go-github-com-opencontainers-go-digest-1.0.0" +; ,go-github-com-opencontainers-go-digest-1.0.0) +; ("go-github-com-imdario-mergo-0.3.11" +; ,go-github-com-imdario-mergo-0.3.11) +; ("go-github-com-gogo-protobuf-1.3.2" +; ,go-github-com-gogo-protobuf-1.3.2) +; ("go-github-com-containers-ocicrypt-1.1.0" +; ,go-github-com-containers-ocicrypt-1.1.0) +; ("go-github-com-containerd-typeurl-1.0.1" +; ,go-github-com-containerd-typeurl-1.0.1) +; ("go-github-com-containerd-containerd-1.5.0-beta.1" +; ,go-github-com-containerd-containerd-1.5.0-beta.1) +; ("go-github-com-containerd-console-1.0.1" +; ,go-github-com-containerd-console-1.0.1) +; ("go-github-com-microsoft-hcsshim-test-0.0.0-20210227013316-43a75bb4edd3" +; ,go-github-com-microsoft-hcsshim-test-0.0.0-20210227013316-43a75bb4edd3) +; ("go-github-com-microsoft-hcsshim-0.8.14" +; ,go-github-com-microsoft-hcsshim-0.8.14) +; ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" +; ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3))) +; (home-page "https://github.com/containerd/imgcrypt") +; (synopsis "imgcrypt image encryption library and command line tool") +; (description +; "Project @code{imgcrypt} is a non-core subproject of containerd.") +; (license license:asl2.0))) +; +;(define-public go-github-com-microsoft-go-winio-0.4.15-0.20190919025122-fc70bd9a86b5 +; (package +; (name "go-github-com-microsoft-go-winio") +; (version "0.4.15-0.20190919025122-fc70bd9a86b5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/microsoft/go-winio") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "015ra2h3qfaq436d0g7akahgz7bikyvljq48m0l2d2f4k3wki86p")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/Microsoft/go-winio")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3" +; ,go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3) +; ("go-github-com-sirupsen-logrus-1.4.1" +; ,go-github-com-sirupsen-logrus-1.4.1) +; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) +; (home-page "https://github.com/Microsoft/go-winio") +; (synopsis "go-winio") +; (description +; "This repository contains utilities for efficiently performing Win32 IO operations in +;Go. Currently, this is focused on accessing named pipes and other file handles, and +;for using named pipes as a net transport.") +; (license license:expat))) +; +;(define-public go-github-com-godbus-dbus-0.0.0-20190422162347-ade71ed3457e +; (package +; (name "go-github-com-godbus-dbus") +; (version "0.0.0-20190422162347-ade71ed3457e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/godbus/dbus") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "12ga9izv32j1zjij1p9f2sdnxjy3v80lw964518dvzirxpvwfszn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/godbus/dbus")) +; (home-page "https://github.com/godbus/dbus") +; (synopsis "dbus") +; (description +; "Package dbus implements bindings to the D-Bus message bus system. +;") +; (license license:bsd-2))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190514135907-3a4b5fb9f71f +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190514135907-3a4b5fb9f71f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "122ry2lw2525mqlnw2zc006y1flvj3yhj8rnpxqdwxp71jc3kqii")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-containerd-cgroups-0.0.0-20190919134610-bf292b21730f +; (package +; (name "go-github-com-containerd-cgroups") +; (version "0.0.0-20190919134610-bf292b21730f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/cgroups") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1vvk1vrwm9spilyl4r1r8626sg0zvnx3s3zmzigzinpkzzvbdqpw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/cgroups")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190514135907-3a4b5fb9f71f" +; ,go-golang-org-x-sys-0.0.0-20190514135907-3a4b5fb9f71f) +; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) +; ("go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700" +; ,go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700) +; ("go-github-com-gogo-protobuf-1.2.1" +; ,go-github-com-gogo-protobuf-1.2.1) +; ("go-github-com-godbus-dbus-0.0.0-20190422162347-ade71ed3457e" +; ,go-github-com-godbus-dbus-0.0.0-20190422162347-ade71ed3457e) +; ("go-github-com-docker-go-units-0.4.0" +; ,go-github-com-docker-go-units-0.4.0) +; ("go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e" +; ,go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e))) +; (home-page "https://github.com/containerd/cgroups") +; (synopsis "cgroups") +; (description +; "Go package for creating, managing, inspecting, and destroying cgroups. +;The resources format for settings on the cgroup uses the OCI runtime-spec found +;@url{https://github.com/opencontainers/runtime-spec,here}.") +; (license license:asl2.0))) +; +;(define-public go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700 +; (package +; (name "go-github-com-opencontainers-runtime-spec") +; (version "0.1.2-0.20190507144316-5b71a03e2700") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/runtime-spec") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1dx0bp4f885vx6l4b5b7h19j6sm0jn9s2qxarfd917f4wp8l0cpl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) +; (home-page "https://github.com/opencontainers/runtime-spec") +; (synopsis "Open Container Initiative Runtime Specification") +; (description +; "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") +; (license license:asl2.0))) +; +;(define-public go-github-com-urfave-cli-0.0.0-20171014202726-7bc6a0acffa5 +; (package +; (name "go-github-com-urfave-cli") +; (version "0.0.0-20171014202726-7bc6a0acffa5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/urfave/cli") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "13li8phkaznh81qxs9vg0r8294ph014rwca4cqf7gxhvyjlaigwp")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/urfave/cli")) +; (home-page "https://github.com/urfave/cli") +; (synopsis "cli") +; (description +; "Package cli provides a minimal framework for creating and organizing command line +;Go applications. cli is designed to be easy to understand and write, the most simple +;cli application can be written as follows: +;") +; (license license:expat))) +; +;(define-public go-github-com-microsoft-hcsshim-0.8.9 +; (package +; (name "go-github-com-microsoft-hcsshim") +; (version "0.8.9") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/microsoft/hcsshim") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1imyqhh51311fdmp81ffasf7z52rbqhblbhx6477d9w20p74866b")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/Microsoft/hcsshim")) +; (propagated-inputs +; `(("go-gotest-tools-2.2.0+incompatible" +; ,go-gotest-tools-2.2.0+incompatible) +; ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) +; ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" +; ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) +; ("go-google-golang-org-grpc-1.23.1" ,go-google-golang-org-grpc-1.23.1) +; ("go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873" +; ,go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873) +; ("go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3" +; ,go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3) +; ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" +; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) +; ("go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9" +; ,go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9) +; ("go-go-opencensus-io-0.22.0" ,go-go-opencensus-io-0.22.0) +; ("go-github-com-urfave-cli-0.0.0-20171014202726-7bc6a0acffa5" +; ,go-github-com-urfave-cli-0.0.0-20171014202726-7bc6a0acffa5) +; ("go-github-com-stretchr-testify-1.4.0" +; ,go-github-com-stretchr-testify-1.4.0) +; ("go-github-com-sirupsen-logrus-1.4.2" +; ,go-github-com-sirupsen-logrus-1.4.2) +; ("go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7" +; ,go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7) +; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) +; ("go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700" +; ,go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700) +; ("go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f" +; ,go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f) +; ("go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2" +; ,go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2) +; ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2) +; ("go-github-com-gogo-protobuf-1.3.1" +; ,go-github-com-gogo-protobuf-1.3.1) +; ("go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd" +; ,go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd) +; ("go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de" +; ,go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de) +; ("go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3" +; ,go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3) +; ("go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448" +; ,go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448) +; ("go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc" +; ,go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc) +; ("go-github-com-containerd-containerd-1.3.2" +; ,go-github-com-containerd-containerd-1.3.2) +; ("go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1" +; ,go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1) +; ("go-github-com-containerd-cgroups-0.0.0-20190919134610-bf292b21730f" +; ,go-github-com-containerd-cgroups-0.0.0-20190919134610-bf292b21730f) +; ("go-github-com-microsoft-go-winio-0.4.15-0.20190919025122-fc70bd9a86b5" +; ,go-github-com-microsoft-go-winio-0.4.15-0.20190919025122-fc70bd9a86b5))) +; (home-page "https://github.com/Microsoft/hcsshim") +; (synopsis "hcsshim") +; (description +; "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") +; (license license:expat))) +; +;(define-public go-github-com-cilium-ebpf-0.0.0-20200702112145-1c8d4c9ef775 +; (package +; (name "go-github-com-cilium-ebpf") +; (version "0.0.0-20200702112145-1c8d4c9ef775") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/cilium/ebpf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1la90b88a1li5hmlqxfx9lgxlyzqb2pd4c2dxmz4s5gg2gz8a5x5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/cilium/ebpf")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9" +; ,go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9))) +; (home-page "https://github.com/cilium/ebpf") +; (synopsis "eBPF") +; (description "Package ebpf is a toolkit for working with eBPF programs. +;") +; (license license:expat))) +; +;(define-public go-github-com-containerd-cgroups-0.0.0-20200710171044-318312a37340 +; (package +; (name "go-github-com-containerd-cgroups") +; (version "0.0.0-20200710171044-318312a37340") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/cgroups") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1kizbm55pmlnly2dggymp84a0d9pn4fh7jf31h6wqm385zrs14zp")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/cgroups")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9" +; ,go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9) +; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) +; ("go-github-com-stretchr-testify-1.2.2" +; ,go-github-com-stretchr-testify-1.2.2) +; ("go-github-com-sirupsen-logrus-1.6.0" +; ,go-github-com-sirupsen-logrus-1.6.0) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-runtime-spec-1.0.2" +; ,go-github-com-opencontainers-runtime-spec-1.0.2) +; ("go-github-com-gogo-protobuf-1.3.1" +; ,go-github-com-gogo-protobuf-1.3.1) +; ("go-github-com-godbus-dbus-v5-5.0.3" +; ,go-github-com-godbus-dbus-v5-5.0.3) +; ("go-github-com-docker-go-units-0.4.0" +; ,go-github-com-docker-go-units-0.4.0) +; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" +; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) +; ("go-github-com-coreos-go-systemd-v22-22.0.0" +; ,go-github-com-coreos-go-systemd-v22-22.0.0) +; ("go-github-com-cilium-ebpf-0.0.0-20200702112145-1c8d4c9ef775" +; ,go-github-com-cilium-ebpf-0.0.0-20200702112145-1c8d4c9ef775))) +; (home-page "https://github.com/containerd/cgroups") +; (synopsis "cgroups") +; (description +; "Go package for creating, managing, inspecting, and destroying cgroups. +;The resources format for settings on the cgroup uses the OCI runtime-spec found +;@url{https://github.com/opencontainers/runtime-spec,here}.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-containerd-1.4.0-beta.2.0.20200729163537-40b22ef07410 +; (package +; (name "go-github-com-containerd-containerd") +; (version "1.4.0-beta.2.0.20200729163537-40b22ef07410") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/containerd") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ky7ny5b0rvkr6a58pdlcm35kc9wls6jvl7cdk8py4a16y1f2lx9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/containerd")) +; (home-page "https://github.com/containerd/containerd") +; (synopsis "Now Recruiting") +; (description +; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") +; (license license:asl2.0))) +; +;(define-public go-github-com-onsi-ginkgo-1.10.1 +; (package +; (name "go-github-com-onsi-ginkgo") +; (version "1.10.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/onsi/ginkgo") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "033a42h1wzmji57p86igg9whvsbp6nvfdsypskw738ys903n3z4d")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/onsi/ginkgo")) +; (home-page "https://github.com/onsi/ginkgo") +; (synopsis "Ginkgo 2.0 Release Candidate is available!") +; (description "Ginkgo is a BDD-style testing framework for Golang +;") +; (license license:expat))) +; +;(define-public go-github-com-opencontainers-go-digest-1.0.0-rc1 +; (package +; (name "go-github-com-opencontainers-go-digest") +; (version "1.0.0-rc1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/go-digest") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "01gc7fpn8ax429024p2fcx3yb18axwz5bjf2hqxlii1jbsgw4bh9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/go-digest")) +; (home-page "https://github.com/opencontainers/go-digest") +; (synopsis "go-digest") +; (description +; "Package digest provides a generalized type to opaquely represent message +;digests and their operations within the registry. The Digest type is +;designed to serve as a flexible identifier in a content-addressable system. +;More importantly, it provides tools and wrappers to work with +;hash.Hash-based digests with little effort. +;") +; (license (list license:asl2.0 license:cc-by-sa4.0)))) +; +;(define-public go-github-com-pkg-errors-0.8.1-0.20171018195549-f15c970de5b7 +; (package +; (name "go-github-com-pkg-errors") +; (version "0.8.1-0.20171018195549-f15c970de5b7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/pkg/errors") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "18jihrffhfsjvz3rkanlhq9xjcdxkqilmflnijc64s7y7lijlbfm")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/pkg/errors")) +; (home-page "https://github.com/pkg/errors") +; (synopsis "errors") +; (description "Package errors provides simple error handling primitives. +;") +; (license license:bsd-2))) +; +;(define-public go-github-com-sirupsen-logrus-1.0.4-0.20170822132746-89742aefa4b2 +; (package +; (name "go-github-com-sirupsen-logrus") +; (version "1.0.4-0.20170822132746-89742aefa4b2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/sirupsen/logrus") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0hk7fabx59msg2y0iik6xvfp80s73ybrwlcshbm9ds91iqbkcxi6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/sirupsen/logrus")) +; (home-page "https://github.com/sirupsen/logrus") +; (synopsis "Logrus") +; (description +; "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20171113213409-9f005a07e0d3 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20171113213409-9f005a07e0d3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1mhmr6ljzl3iafsz4qy8vval7rmr828wh59dlqqqjqx6sqmcs1dv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-github-com-containerd-continuity-0.0.0-20200710164510-efbc4488d8fe +; (package +; (name "go-github-com-containerd-continuity") +; (version "0.0.0-20200710164510-efbc4488d8fe") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/continuity") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0d638nj7z7y8z19zdwbysamqh5m3kiwvnqny7av6bxax9gg6c3h8")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/continuity")) +; (propagated-inputs +; `(("go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2" +; ,go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2) +; ("go-gopkg-in-airbrake-gobrake-v2-2.0.9" +; ,go-gopkg-in-airbrake-gobrake-v2-2.0.9) +; ("go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e" +; ,go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e) +; ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" +; ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) +; ("go-golang-org-x-crypto-0.0.0-20171113213409-9f005a07e0d3" +; ,go-golang-org-x-crypto-0.0.0-20171113213409-9f005a07e0d3) +; ("go-github-com-stretchr-testify-1.4.0" +; ,go-github-com-stretchr-testify-1.4.0) +; ("go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95" +; ,go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95) +; ("go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee" +; ,go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee) +; ("go-github-com-sirupsen-logrus-1.0.4-0.20170822132746-89742aefa4b2" +; ,go-github-com-sirupsen-logrus-1.0.4-0.20170822132746-89742aefa4b2) +; ("go-github-com-pkg-errors-0.8.1-0.20171018195549-f15c970de5b7" +; ,go-github-com-pkg-errors-0.8.1-0.20171018195549-f15c970de5b7) +; ("go-github-com-opencontainers-go-digest-1.0.0-rc1" +; ,go-github-com-opencontainers-go-digest-1.0.0-rc1) +; ("go-github-com-onsi-gomega-1.7.0" ,go-github-com-onsi-gomega-1.7.0) +; ("go-github-com-onsi-ginkgo-1.10.1" ,go-github-com-onsi-ginkgo-1.10.1) +; ("go-github-com-inconshreveable-mousetrap-1.0.0" +; ,go-github-com-inconshreveable-mousetrap-1.0.0) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0) +; ("go-github-com-dustin-go-humanize-0.0.0-20171111073723-bb3d318650d4" +; ,go-github-com-dustin-go-humanize-0.0.0-20171111073723-bb3d318650d4) +; ("go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898" +; ,go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898))) +; (home-page "https://github.com/containerd/continuity") +; (synopsis "continuity") +; (description +; "This package provides a transport-agnostic, filesystem metadata manifest system") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20191210023423-ac6580df4449") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "14gvx65w5lddi20s4wypbbvbg9ni3m8777jhp9nqxhixc61k3dyi")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-containerd-fifo-0.0.0-20200410184934-f15a3290365b +; (package +; (name "go-github-com-containerd-fifo") +; (version "0.0.0-20200410184934-f15a3290365b") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/fifo") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1i3pylxr2a4b9gaifjrhfa21n147vvq2z9iqwzz9id532xv9mr48")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/fifo")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449" +; ,go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449) +; ("go-github-com-stretchr-testify-1.4.0" +; ,go-github-com-stretchr-testify-1.4.0) +; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) +; (home-page "https://github.com/containerd/fifo") +; (synopsis "fifo") +; (description "Go package for handling fifos in a sane way.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-ttrpc-1.0.1 +; (package +; (name "go-github-com-containerd-ttrpc") +; (version "1.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/ttrpc") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "02ilz14f1k9zip7caqfjwvfg2nwa7bs6880pi6fxbri1wy6ar45q")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/ttrpc")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.26.0" ,go-google-golang-org-grpc-1.26.0) +; ("go-google-golang-org-genproto-0.0.0-20200117163144-32f20d992d24" +; ,go-google-golang-org-genproto-0.0.0-20200117163144-32f20d992d24) +; ("go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479" +; ,go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479) +; ("go-github-com-sirupsen-logrus-1.4.2" +; ,go-github-com-sirupsen-logrus-1.4.2) +; ("go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1" +; ,go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.2" +; ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.2) +; ("go-github-com-gogo-protobuf-1.3.1" +; ,go-github-com-gogo-protobuf-1.3.1))) +; (home-page "https://github.com/containerd/ttrpc") +; (synopsis "ttrpc") +; (description "GRPC for low-memory environments.") +; (license license:asl2.0))) +; +;(define-public go-github-com-gogo-googleapis-1.4.0 +; (package +; (name "go-github-com-gogo-googleapis") +; (version "1.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/gogo/googleapis") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1kka9qmra1klfkjza0s5papqvsi65f2d349dl8k1lvfq487iv9r4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/gogo/googleapis")) +; (propagated-inputs +; `(("go-github-com-gogo-protobuf-1.3.1" +; ,go-github-com-gogo-protobuf-1.3.1))) +; (home-page "https://github.com/gogo/googleapis") +; (synopsis "Google APIs generated by gogoprotobuf") +; (description +; "The @url{https://github.com/gogo/grpc-example,grpc-example} includes an example usage of this repository.") +; (license license:asl2.0))) +; +;(define-public go-github-com-google-go-cmp-0.5.1 +; (package +; (name "go-github-com-google-go-cmp") +; (version "0.5.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/go-cmp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1wjdid59brciv09agxgmqac5k9ywg63nhzb0yi9anmqpl38gps0p")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/go-cmp")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" +; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) +; (home-page "https://github.com/google/go-cmp") +; (synopsis "Package for equality of Go values") +; (description +; "This package is intended to be a more powerful and safer alternative to +;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") +; (license license:bsd-3))) +; +;(define-public go-github-com-imdario-mergo-0.3.10 +; (package +; (name "go-github-com-imdario-mergo") +; (version "0.3.10") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/imdario/mergo") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "09h765p8yby9r8s0a3hv5kl8n2i382mda76wmvk48w1cc1w9s92p")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/imdario/mergo")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.3.0" ,go-gopkg-in-yaml-v2-2.3.0))) +; (home-page "https://github.com/imdario/mergo") +; (synopsis "Mergo") +; (description +; "This package provides a helper to merge structs and maps in Golang. Useful for configuration default values, avoiding messy if-statements. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-opencontainers-runc-0.1.1 +; (package +; (name "go-github-com-opencontainers-runc") +; (version "0.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/runc") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "09fm7f1k4lvx8v3crqb0cli1x2brlz8ka7f7qa8d2sb6ln58h7w7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/runc")) +; (home-page "https://github.com/opencontainers/runc") +; (synopsis "runc") +; (description +; "@code{runc} is a CLI tool for spawning and running containers according to the OCI specification.") +; (license license:asl2.0))) +; +;(define-public go-github-com-willf-bitset-1.1.11-0.20200630133818-d5bec3311243 +; (package +; (name "go-github-com-willf-bitset") +; (version "1.1.11-0.20200630133818-d5bec3311243") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/bits-and-blooms/bitset") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "05nyd0vhp2h9hbqlv2s9l2py6mr8hpz2zyfj09an1q7wd8vph4ja")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/willf/bitset")) +; (home-page "https://github.com/willf/bitset") +; (synopsis "bitset") +; (description +; "Package bitset implements bitsets, a mapping +;between non-negative integers and boolean values. It should be more +;efficient than map[uint] bool. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-opencontainers-selinux-1.6.0 +; (package +; (name "go-github-com-opencontainers-selinux") +; (version "1.6.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/selinux") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ja41zfgrkhk5khixjnxpi1b85xfcxlkhq2q9b7ma6xjfdhg8bq2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/selinux")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777" +; ,go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777) +; ("go-github-com-willf-bitset-1.1.11-0.20200630133818-d5bec3311243" +; ,go-github-com-willf-bitset-1.1.11-0.20200630133818-d5bec3311243) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) +; (home-page "https://github.com/opencontainers/selinux") +; (synopsis "selinux") +; (description "Common SELinux package used across the container ecosystem.") +; (license license:asl2.0))) +; +;(define-public go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2 +; (package +; (name "go-github-com-syndtr-gocapability") +; (version "0.0.0-20180916011248-d98352740cb2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/syndtr/gocapability") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "065y16562ynixxzj7iys4f4spb7knilbj3h833qlhds381j8hn93")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/syndtr/gocapability")) +; (home-page "https://github.com/syndtr/gocapability") +; (synopsis #f) +; (description #f) +; (license license:bsd-2))) +; +;(define-public go-golang-org-x-net-0.0.0-20200707034311-ab3426394381 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20200707034311-ab3426394381") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1wr7rnnqp210yykkypinb8ciszx28aq5a3l3dvsv6swzxxngs8zn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" +; ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) +; ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" +; ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208 +; (package +; (name "go-golang-org-x-sync") +; (version "0.0.0-20200625203802-6e8e738ad208") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sync") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1avk27pszd5l5df6ff7j78wgla46ir1hhy2jwfl9a3c0ys602yx9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sync")) +; (home-page "https://golang.org/x/sync") +; (synopsis "Go Sync") +; (description +; "This repository provides Go concurrency primitives in addition to the +;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-grpc-1.30.0 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.30.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "05pb9xrxd7kpbi8zzby90f87b6sxq65nmpgqx5h3255whmmpzbi9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" +; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.3.3" +; ,go-github-com-golang-protobuf-1.3.3) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-envoyproxy-go-control-plane-0.9.4" +; ,go-github-com-envoyproxy-go-control-plane-0.9.4) +; ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" +; ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-nri-0.0.0-20201007170849-eb1350a75164 +; (package +; (name "go-github-com-containerd-nri") +; (version "0.0.0-20201007170849-eb1350a75164") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/nri") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1yhrxl36fswgxv7ny3p9xi99jsbwyk920gmzkjyfyk6nqs0hqbkg")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/nri")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.30.0" ,go-google-golang-org-grpc-1.30.0) +; ("go-golang-org-x-sys-0.0.0-20200728102440-3e129f6d46b1" +; ,go-golang-org-x-sys-0.0.0-20200728102440-3e129f6d46b1) +; ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" +; ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) +; ("go-golang-org-x-net-0.0.0-20200707034311-ab3426394381" +; ,go-golang-org-x-net-0.0.0-20200707034311-ab3426394381) +; ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) +; ("go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2" +; ,go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-selinux-1.6.0" +; ,go-github-com-opencontainers-selinux-1.6.0) +; ("go-github-com-opencontainers-runc-0.1.1" +; ,go-github-com-opencontainers-runc-0.1.1) +; ("go-github-com-opencontainers-image-spec-1.0.1" +; ,go-github-com-opencontainers-image-spec-1.0.1) +; ("go-github-com-opencontainers-go-digest-1.0.0" +; ,go-github-com-opencontainers-go-digest-1.0.0) +; ("go-github-com-imdario-mergo-0.3.10" +; ,go-github-com-imdario-mergo-0.3.10) +; ("go-github-com-google-uuid-1.1.1" ,go-github-com-google-uuid-1.1.1) +; ("go-github-com-google-go-cmp-0.5.1" +; ,go-github-com-google-go-cmp-0.5.1) +; ("go-github-com-gogo-googleapis-1.4.0" +; ,go-github-com-gogo-googleapis-1.4.0) +; ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" +; ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) +; ("go-github-com-docker-distribution-2.7.1+incompatible" +; ,go-github-com-docker-distribution-2.7.1+incompatible) +; ("go-github-com-containerd-typeurl-1.0.1" +; ,go-github-com-containerd-typeurl-1.0.1) +; ("go-github-com-containerd-ttrpc-1.0.1" +; ,go-github-com-containerd-ttrpc-1.0.1) +; ("go-github-com-containerd-fifo-0.0.0-20200410184934-f15a3290365b" +; ,go-github-com-containerd-fifo-0.0.0-20200410184934-f15a3290365b) +; ("go-github-com-containerd-continuity-0.0.0-20200710164510-efbc4488d8fe" +; ,go-github-com-containerd-continuity-0.0.0-20200710164510-efbc4488d8fe) +; ("go-github-com-containerd-containerd-1.4.0-beta.2.0.20200729163537-40b22ef07410" +; ,go-github-com-containerd-containerd-1.4.0-beta.2.0.20200729163537-40b22ef07410) +; ("go-github-com-containerd-cgroups-0.0.0-20200710171044-318312a37340" +; ,go-github-com-containerd-cgroups-0.0.0-20200710171044-318312a37340) +; ("go-github-com-microsoft-hcsshim-0.8.9" +; ,go-github-com-microsoft-hcsshim-0.8.9))) +; (home-page "https://github.com/containerd/nri") +; (synopsis "nri - Node Resource Interface") +; (description +; "This project is a WIP for a new, CNI like, interface for managing resources on a node for Pods and Containers.") +; (license license:asl2.0))) +; +;(define-public go-github-com-sirupsen-logrus-1.4.1 +; (package +; (name "go-github-com-sirupsen-logrus") +; (version "1.4.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/sirupsen/logrus") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1m7ny9jkb98cxqhsp13xa5hnqh1s9f25x04q6arsala4zswsw33c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/sirupsen/logrus")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33" +; ,go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33) +; ("go-github-com-stretchr-testify-1.2.2" +; ,go-github-com-stretchr-testify-1.2.2) +; ("go-github-com-stretchr-objx-0.1.1" +; ,go-github-com-stretchr-objx-0.1.1) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.1" +; ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.1) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://github.com/sirupsen/logrus") +; (synopsis "Logrus") +; (description +; "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190916202348-b4ddaad3f8a3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "05pa68kqxhpjk71b4cbm8vyzh6527b3ig6war2jr1g4aj3b7f1ak")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-microsoft-go-winio-0.4.16-0.20201130162521-d1ffc52c7331 +; (package +; (name "go-github-com-microsoft-go-winio") +; (version "0.4.16-0.20201130162521-d1ffc52c7331") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/microsoft/go-winio") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0snwbwdjs34x0my9ri77cvrbnahdiyjh2jlkzf12fy48p7fyk7pq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/Microsoft/go-winio")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3" +; ,go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3) +; ("go-github-com-sirupsen-logrus-1.4.1" +; ,go-github-com-sirupsen-logrus-1.4.1) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) +; (home-page "https://github.com/Microsoft/go-winio") +; (synopsis "go-winio") +; (description +; "This repository contains utilities for efficiently performing Win32 IO operations in +;Go. Currently, this is focused on accessing named pipes and other file handles, and +;for using named pipes as a net transport.") +; (license license:expat))) +; +;(define-public go-golang-org-x-sys-0.0.0-20191022100944-742c48ecaeb7 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20191022100944-742c48ecaeb7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1saf59bplvvb753my15ijxcy4a1jwfg53cmkgb6wkln2x4fgnhkp")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-cilium-ebpf-0.0.0-20200110133405-4032b1d8aae3 +; (package +; (name "go-github-com-cilium-ebpf") +; (version "0.0.0-20200110133405-4032b1d8aae3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/cilium/ebpf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "107x63zl8dlw2izn5xw8pnflgq19srpa46bgvjs8q4d61i02q1fr")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/cilium/ebpf")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20191022100944-742c48ecaeb7" +; ,go-golang-org-x-sys-0.0.0-20191022100944-742c48ecaeb7) +; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) +; (home-page "https://github.com/cilium/ebpf") +; (synopsis "eBPF") +; (description "Package ebpf is a toolkit for working with eBPF programs. +;") +; (license license:expat))) +; +;(define-public go-github-com-coreos-go-systemd-v22-22.0.0 +; (package +; (name "go-github-com-coreos-go-systemd-v22") +; (version "22.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/coreos/go-systemd") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0p4sb2fxxm2j1xny2l4fkq4kwj74plvh600gih8nyniqzannhrdx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/coreos/go-systemd/v22")) +; (propagated-inputs +; `(("go-github-com-godbus-dbus-v5-5.0.3" +; ,go-github-com-godbus-dbus-v5-5.0.3))) +; (home-page "https://github.com/coreos/go-systemd") +; (synopsis "go-systemd") +; (description "Go bindings to systemd. The project has several packages:") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-cgroups-0.0.0-20200531161412-0dbf7f05ba59 +; (package +; (name "go-github-com-containerd-cgroups") +; (version "0.0.0-20200531161412-0dbf7f05ba59") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/cgroups") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "10abzkjf77s8pv4mpyvy2jbl8wckhk3j7ykgs01sclal21v8p251")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/cgroups")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479" +; ,go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479) +; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) +; ("go-github-com-stretchr-testify-1.2.2" +; ,go-github-com-stretchr-testify-1.2.2) +; ("go-github-com-sirupsen-logrus-1.4.2" +; ,go-github-com-sirupsen-logrus-1.4.2) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-runtime-spec-1.0.2" +; ,go-github-com-opencontainers-runtime-spec-1.0.2) +; ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.2" +; ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.2) +; ("go-github-com-gogo-protobuf-1.3.1" +; ,go-github-com-gogo-protobuf-1.3.1) +; ("go-github-com-godbus-dbus-v5-5.0.3" +; ,go-github-com-godbus-dbus-v5-5.0.3) +; ("go-github-com-docker-go-units-0.4.0" +; ,go-github-com-docker-go-units-0.4.0) +; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" +; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) +; ("go-github-com-coreos-go-systemd-v22-22.0.0" +; ,go-github-com-coreos-go-systemd-v22-22.0.0) +; ("go-github-com-cilium-ebpf-0.0.0-20200110133405-4032b1d8aae3" +; ,go-github-com-cilium-ebpf-0.0.0-20200110133405-4032b1d8aae3))) +; (home-page "https://github.com/containerd/cgroups") +; (synopsis "cgroups") +; (description +; "Go package for creating, managing, inspecting, and destroying cgroups. +;The resources format for settings on the cgroup uses the OCI runtime-spec found +;@url{https://github.com/opencontainers/runtime-spec,here}.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1 +; (package +; (name "go-github-com-containerd-console") +; (version "0.0.0-20180822173158-c12b1e7919c1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/console") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ylrnmdhn9a2f8w8fsdgsvwnz5j0whhyhppjnhqc4lh8h9p9dpi9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/console")) +; (home-page "https://github.com/containerd/console") +; (synopsis "console") +; (description +; "Golang package for dealing with consoles. Light on deps and a simple API.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-containerd-1.3.2 +; (package +; (name "go-github-com-containerd-containerd") +; (version "1.3.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/containerd") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0qz6ss7a6f2r7gl7aar39pr5ry9l7nh7dn3kclr18nwdv01gmrvc")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/containerd")) +; (home-page "https://github.com/containerd/containerd") +; (synopsis "Now Recruiting") +; (description +; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc +; (package +; (name "go-github-com-containerd-continuity") +; (version "0.0.0-20190426062206-aaeac12a7ffc") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/continuity") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "05caqvxxb831xfvqnga692k98cy8xzkllqg1ibra0fb0ljnhbmca")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/continuity")) +; (home-page "https://github.com/containerd/continuity") +; (synopsis "continuity") +; (description +; "This package provides a transport-agnostic, filesystem metadata manifest system") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448 +; (package +; (name "go-github-com-containerd-fifo") +; (version "0.0.0-20190226154929-a9fb20d87448") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/fifo") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0c0sgfnafjnws4jgziczs6wxh0adjdrp6yyd88b7xy0hv13fsnqa")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/fifo")) +; (home-page "https://github.com/containerd/fifo") +; (synopsis "fifo") +; (description "Go package for handling fifos in a sane way.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3 +; (package +; (name "go-github-com-containerd-go-runc") +; (version "0.0.0-20180907222934-5a6d9f37cfa3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/go-runc") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "07qpxcjy64m238igpmj8g9z7qhf06k5xy1jcgpgvf5n912g4k3vd")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/go-runc")) +; (home-page "https://github.com/containerd/go-runc") +; (synopsis "go-runc") +; (description +; "This is a package for consuming the @url{https://github.com/opencontainers/runc,runc} binary in your Go applications. +;It tries to expose all the settings and features of the runc CLI. If there is something missing then add it, its opensource!") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de +; (package +; (name "go-github-com-containerd-ttrpc") +; (version "0.0.0-20190828154514-0e0f228740de") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/ttrpc") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1kzclhmicw2xkiqsg6npx0xzs5jx36mqmyd0gj5dzv88i7p4b8dx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/ttrpc")) +; (home-page "https://github.com/containerd/ttrpc") +; (synopsis "ttrpc") +; (description "GRPC for low-memory environments.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd +; (package +; (name "go-github-com-containerd-typeurl") +; (version "0.0.0-20180627222232-a93fcdb778cd") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/typeurl") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0aqnf5rzc5pldln0czhxlr0fqaf5553ab7wzsq85p90lg1ryqnd6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/typeurl")) +; (home-page "https://github.com/containerd/typeurl") +; (synopsis "typeurl") +; (description +; "This package provides a Go package for managing the registration, marshaling, and unmarshaling of encoded types.") +; (license license:asl2.0))) +; +;(define-public go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2 +; (package +; (name "go-github-com-opencontainers-go-digest") +; (version "0.0.0-20180430190053-c9281466c8b2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/go-digest") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1djdazssy27xn91pjhx3dgb0f11bnlzzbwkh7f8zwnpz011anasi")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/go-digest")) +; (home-page "https://github.com/opencontainers/go-digest") +; (synopsis "go-digest") +; (description +; "Package digest provides a generalized type to opaquely represent message +;digests and their operations within the registry. The Digest type is +;designed to serve as a flexible identifier in a content-addressable system. +;More importantly, it provides tools and wrappers to work with +;hash.Hash-based digests with little effort. +;") +; (license (list license:asl2.0 license:cc-by-sa4.0)))) +; +;(define-public go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f +; (package +; (name "go-github-com-opencontainers-runc") +; (version "0.0.0-20190115041553-12f6a991201f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/runc") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0lr4q440pliilq2njyj5glfpma89r9l1cl687niwkp2pzb32dm45")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/runc")) +; (home-page "https://github.com/opencontainers/runc") +; (synopsis "runc") +; (description +; "@code{runc} is a CLI tool for spawning and running containers according to the OCI specification.") +; (license license:asl2.0))) +; +;(define-public go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7 +; (package +; (name "go-github-com-prometheus-procfs") +; (version "0.0.0-20180125133057-cb4147076ac7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/procfs") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0zhlrik0f9q1lj6cisgnxgbz4darbcix52hm5abi24l2ahchf5ca")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/procfs")) +; (home-page "https://github.com/prometheus/procfs") +; (synopsis "procfs") +; (description +; "Package procfs provides functions to retrieve system, kernel and process +;metrics from the pseudo-filesystem proc. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-net-0.0.0-20190501004415-9ce7a6920f09 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190501004415-9ce7a6920f09") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1kbs85jsqbv4v89ii2zam4b8dhmllhsrf46njmi09x0w6s0b9cbk")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-go-opencensus-io-0.22.0 +; (package +; (name "go-go-opencensus-io") +; (version "0.22.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/census-instrumentation/opencensus-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "05jr8gkr2w34i5wwki4zhl5ch0qrgi7cdgag5iy5gpxplhbrvbg9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "go.opencensus.io")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.20.1" ,go-google-golang-org-grpc-1.20.1) +; ("go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb" +; ,go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb) +; ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) +; ("go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd" +; ,go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd) +; ("go-golang-org-x-net-0.0.0-20190501004415-9ce7a6920f09" +; ,go-golang-org-x-net-0.0.0-20190501004415-9ce7a6920f09) +; ("go-github-com-hashicorp-golang-lru-0.5.1" +; ,go-github-com-hashicorp-golang-lru-0.5.1) +; ("go-github-com-google-go-cmp-0.3.0" +; ,go-github-com-google-go-cmp-0.3.0) +; ("go-github-com-golang-protobuf-1.3.1" +; ,go-github-com-golang-protobuf-1.3.1))) +; (home-page "https://go.opencensus.io") +; (synopsis "OpenCensus Libraries for Go") +; (description "Package opencensus contains Go support for OpenCensus. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20191004110552-13f9640d40b9") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ba2767lvklnmfvb9jkwvd4m7z6326gaiz3rgylh795g88hy34g1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873 +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20190502173448-54afdca5d873") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1vm1vggl874jd4wi6qyl7aggc6s6kdsazk4vj0cs2dfcw2xnw8ag")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" +; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) +; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) +; ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" +; ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) +; ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" +; ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) +; ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" +; ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd) +; ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" +; ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) +; ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" +; ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-grpc-1.23.1 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.23.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1d8gjjhrqbiq8pb56lb4x10hb752k7k06wspjvh7v0vpzmf25981")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" +; ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) +; ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" +; ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) +; ("go-google-golang-org-appengine-1.1.0" +; ,go-google-golang-org-appengine-1.1.0) +; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" +; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-github-com-google-go-cmp-0.2.0" +; ,go-github-com-google-go-cmp-0.2.0) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0) +; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-client9-misspell-0.3.4" +; ,go-github-com-client9-misspell-0.3.4) +; ("go-github-com-burntsushi-toml-0.3.1" +; ,go-github-com-burntsushi-toml-0.3.1) +; ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-microsoft-hcsshim-0.8.14 +; (package +; (name "go-github-com-microsoft-hcsshim") +; (version "0.8.14") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/microsoft/hcsshim") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0k57knv8zrf32hp7rpv1km9j772w6752pfvdbpd3l711ism48c84")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/Microsoft/hcsshim")) +; (propagated-inputs +; `(("go-gotest-tools-2.2.0+incompatible" +; ,go-gotest-tools-2.2.0+incompatible) +; ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) +; ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" +; ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) +; ("go-google-golang-org-grpc-1.23.1" ,go-google-golang-org-grpc-1.23.1) +; ("go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873" +; ,go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873) +; ("go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3" +; ,go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3) +; ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" +; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) +; ("go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9" +; ,go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9) +; ("go-go-opencensus-io-0.22.0" ,go-go-opencensus-io-0.22.0) +; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) +; ("go-github-com-stretchr-testify-1.4.0" +; ,go-github-com-stretchr-testify-1.4.0) +; ("go-github-com-sirupsen-logrus-1.4.2" +; ,go-github-com-sirupsen-logrus-1.4.2) +; ("go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7" +; ,go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-runtime-spec-1.0.2" +; ,go-github-com-opencontainers-runtime-spec-1.0.2) +; ("go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f" +; ,go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f) +; ("go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2" +; ,go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2) +; ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2) +; ("go-github-com-gogo-protobuf-1.3.1" +; ,go-github-com-gogo-protobuf-1.3.1) +; ("go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd" +; ,go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd) +; ("go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de" +; ,go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de) +; ("go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3" +; ,go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3) +; ("go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448" +; ,go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448) +; ("go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc" +; ,go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc) +; ("go-github-com-containerd-containerd-1.3.2" +; ,go-github-com-containerd-containerd-1.3.2) +; ("go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1" +; ,go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1) +; ("go-github-com-containerd-cgroups-0.0.0-20200531161412-0dbf7f05ba59" +; ,go-github-com-containerd-cgroups-0.0.0-20200531161412-0dbf7f05ba59) +; ("go-github-com-microsoft-go-winio-0.4.16-0.20201130162521-d1ffc52c7331" +; ,go-github-com-microsoft-go-winio-0.4.16-0.20201130162521-d1ffc52c7331))) +; (home-page "https://github.com/Microsoft/hcsshim") +; (synopsis "hcsshim") +; (description +; "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") +; (license license:expat))) +; +;(define-public go-github-com-containerd-containerd-1.4.3 +; (package +; (name "go-github-com-containerd-containerd") +; (version "1.4.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/containerd") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "09xvhjg5f8h90w1y94kqqnqzhbhd62dcdd9wb9sdqakisjk6zrl0")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/containerd")) +; (home-page "https://github.com/containerd/containerd") +; (synopsis "Now Recruiting") +; (description +; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-typeurl-1.0.1 +; (package +; (name "go-github-com-containerd-typeurl") +; (version "1.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/typeurl") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "09cgrchrw5d36zq0mc321l5qr2gfbdm1z1a3hhkhqr4qay6vglqn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/typeurl")) +; (propagated-inputs +; `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-gogo-protobuf-1.3.1" +; ,go-github-com-gogo-protobuf-1.3.1))) +; (home-page "https://github.com/containerd/typeurl") +; (synopsis "typeurl") +; (description +; "This package provides a Go package for managing the registration, marshaling, and unmarshaling of encoded types.") +; (license license:asl2.0))) +; +;(define-public go-github-com-opencontainers-runc-1.0.0-rc9 +; (package +; (name "go-github-com-opencontainers-runc") +; (version "1.0.0-rc9") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/runc") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ss5b46cbbckyqlwgj8dbd5l59c5y0kp679hcpc0ybaj53pmwxj7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/runc")) +; (home-page "https://github.com/opencontainers/runc") +; (synopsis "runc") +; (description +; "@code{runc} is a CLI tool for spawning and running containers according to the OCI specification.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-zfs-0.0.0-20210301145711-11e8f1707f62 +; (package +; (name "go-github-com-containerd-zfs") +; (version "0.0.0-20210301145711-11e8f1707f62") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/zfs") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1919ax45a07v2y56xq5c0xihkn2c5zgyqv68rzx3x5cc20n2p8yg")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/zfs")) +; (propagated-inputs +; `(("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) +; ("go-go-etcd-io-bbolt-1.3.3" ,go-go-etcd-io-bbolt-1.3.3) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-runc-1.0.0-rc9" +; ,go-github-com-opencontainers-runc-1.0.0-rc9) +; ("go-github-com-opencontainers-image-spec-1.0.1" +; ,go-github-com-opencontainers-image-spec-1.0.1) +; ("go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible" +; ,go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible) +; ("go-github-com-google-uuid-1.1.1" ,go-github-com-google-uuid-1.1.1) +; ("go-github-com-gogo-protobuf-1.3.1" +; ,go-github-com-gogo-protobuf-1.3.1) +; ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" +; ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) +; ("go-github-com-containerd-typeurl-1.0.1" +; ,go-github-com-containerd-typeurl-1.0.1) +; ("go-github-com-containerd-ttrpc-1.0.2" +; ,go-github-com-containerd-ttrpc-1.0.2) +; ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" +; ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) +; ("go-github-com-containerd-containerd-1.4.3" +; ,go-github-com-containerd-containerd-1.4.3) +; ("go-github-com-microsoft-hcsshim-0.8.14" +; ,go-github-com-microsoft-hcsshim-0.8.14))) +; (home-page "https://github.com/containerd/zfs") +; (synopsis "ZFS snapshotter plugin") +; (description "ZFS snapshotter plugin for containerd.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containernetworking-cni-0.7.1 +; (package +; (name "go-github-com-containernetworking-cni") +; (version "0.7.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containernetworking/cni") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "02qn1br8164d99978acalisy1sx294g1axnii4yh1wji0fc735xz")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containernetworking/cni")) +; (home-page "https://github.com/containernetworking/cni") +; (synopsis "CNI - the Container Network Interface") +; (description +; "CNI (), a @url{https://cncf.io,Cloud Native Computing Foundation} project, consists of a specification and libraries for writing plugins to configure network interfaces in Linux containers, along with a number of supported plugins. +;CNI concerns itself only with network connectivity of containers and removing allocated resources when the container is deleted. +;Because of this focus, CNI has a wide range of support and the specification is simple to implement.") +; (license license:asl2.0))) +; +;(define-public go-github-com-coreos-go-iptables-0.4.5 +; (package +; (name "go-github-com-coreos-go-iptables") +; (version "0.4.5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/coreos/go-iptables") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "04iqh4hvvrrvjsfjyaa5bdyqklwzrzzy8yiyvja90hvv121f7975")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/coreos/go-iptables")) +; (home-page "https://github.com/coreos/go-iptables") +; (synopsis "go-iptables") +; (description "Go bindings for iptables utility.") +; (license license:asl2.0))) +; +;(define-public go-github-com-onsi-ginkgo-0.0.0-20151202141238-7f8ab55aaf3b +; (package +; (name "go-github-com-onsi-ginkgo") +; (version "0.0.0-20151202141238-7f8ab55aaf3b") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/onsi/ginkgo") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0nas6wqdym4jx42kw9wj80b58r69k9qhnvglz009lj34g5gba7rw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/onsi/ginkgo")) +; (home-page "https://github.com/onsi/ginkgo") +; (synopsis "Ginkgo 2.0 Release Candidate is available!") +; (description "Ginkgo is a BDD-style testing framework for Golang +;") +; (license license:expat))) +; +;(define-public go-github-com-onsi-gomega-0.0.0-20151007035656-2152b45fa28a +; (package +; (name "go-github-com-onsi-gomega") +; (version "0.0.0-20151007035656-2152b45fa28a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/onsi/gomega") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0amjlkawp84mmdqjgdamf93p1546cla6h4wwrx7hf5r862r2qcw2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/onsi/gomega")) +; (home-page "https://github.com/onsi/gomega") +; (synopsis ": a BDD Testing Framework for Golang") +; (description +; "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library. +;") +; (license license:expat))) +; +;(define-public go-github-com-vishvananda-netlink-0.0.0-20181108222139-023a6dafdcdf +; (package +; (name "go-github-com-vishvananda-netlink") +; (version "0.0.0-20181108222139-023a6dafdcdf") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/vishvananda/netlink") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1i5q8r8rg7lxzvq2vhbf25lrkzdlgficfv0bxg9rf7cgg6z819sn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/vishvananda/netlink")) +; (home-page "https://github.com/vishvananda/netlink") +; (synopsis "netlink - netlink library for go") +; (description +; "Package netlink provides a simple library for netlink. Netlink is +;the interface a user-space program in linux uses to communicate with +;the kernel. It can be used to add and remove interfaces, set up ip +;addresses and routes, and confiugre ipsec. Netlink communication +;requires elevated privileges, so in most cases this code needs to +;be run as root. The low level primitives for netlink are contained +;in the nl subpackage. This package attempts to provide a high-level +;interface that is loosly modeled on the iproute2 cli. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-vishvananda-netns-0.0.0-20180720170159-13995c7128cc +; (package +; (name "go-github-com-vishvananda-netns") +; (version "0.0.0-20180720170159-13995c7128cc") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/vishvananda/netns") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1zk6w8158qi4niva5rijchbv9ixgmijsgqshh54wdaav4xrhjshn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/vishvananda/netns")) +; (home-page "https://github.com/vishvananda/netns") +; (synopsis "netns - network namespaces in go") +; (description +; "Package netns allows ultra-simple network namespace handling. NsHandles +;can be retrieved and set. Note that the current namespace is thread +;local so actions that set and reset namespaces should use LockOSThread +;to make sure the namespace doesn't change due to a goroutine switch. +;It is best to close NsHandles when you are done with them. This can be +;accomplished via a `defer ns.Close()` on the handle. Changing namespaces +;requires elevated privileges, so in most cases this code needs to be run +;as root. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20181009213950-7c1a557ab941 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20181009213950-7c1a557ab941") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1f1q9mby8m7ws3gbj90v0prhnf4g2sgf74azmw31kzwd6azlar3m")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20181011144130-49bb7cea24b1 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20181011144130-49bb7cea24b1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "111q4qm3hcjvzvyv9y5rz8ydnyg48rckcygxqy6gv63q618wz6gn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-github-com-containernetworking-plugins-0.8.6 +; (package +; (name "go-github-com-containernetworking-plugins") +; (version "0.8.6") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containernetworking/plugins") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0f1cqxjf26sy1c4aw6y7pyd9lrz0vknby4q5j6xj77a1pab9073m")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containernetworking/plugins")) +; (propagated-inputs +; `(("go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2" +; ,go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2) +; ("go-gopkg-in-airbrake-gobrake-v2-2.0.9" +; ,go-gopkg-in-airbrake-gobrake-v2-2.0.9) +; ("go-golang-org-x-sys-0.0.0-20190616124812-15dcb6c0061f" +; ,go-golang-org-x-sys-0.0.0-20190616124812-15dcb6c0061f) +; ("go-golang-org-x-net-0.0.0-20181011144130-49bb7cea24b1" +; ,go-golang-org-x-net-0.0.0-20181011144130-49bb7cea24b1) +; ("go-golang-org-x-crypto-0.0.0-20181009213950-7c1a557ab941" +; ,go-golang-org-x-crypto-0.0.0-20181009213950-7c1a557ab941) +; ("go-github-com-vishvananda-netns-0.0.0-20180720170159-13995c7128cc" +; ,go-github-com-vishvananda-netns-0.0.0-20180720170159-13995c7128cc) +; ("go-github-com-vishvananda-netlink-0.0.0-20181108222139-023a6dafdcdf" +; ,go-github-com-vishvananda-netlink-0.0.0-20181108222139-023a6dafdcdf) +; ("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0) +; ("go-github-com-sirupsen-logrus-1.0.6" +; ,go-github-com-sirupsen-logrus-1.0.6) +; ("go-github-com-safchain-ethtool-0.0.0-20190326074333-42ed695e3de8" +; ,go-github-com-safchain-ethtool-0.0.0-20190326074333-42ed695e3de8) +; ("go-github-com-onsi-gomega-0.0.0-20151007035656-2152b45fa28a" +; ,go-github-com-onsi-gomega-0.0.0-20151007035656-2152b45fa28a) +; ("go-github-com-onsi-ginkgo-0.0.0-20151202141238-7f8ab55aaf3b" +; ,go-github-com-onsi-ginkgo-0.0.0-20151202141238-7f8ab55aaf3b) +; ("go-github-com-mattn-go-shellwords-1.0.3" +; ,go-github-com-mattn-go-shellwords-1.0.3) +; ("go-github-com-j-keck-arping-0.0.0-20160618110441-2cf9dc699c56" +; ,go-github-com-j-keck-arping-0.0.0-20160618110441-2cf9dc699c56) +; ("go-github-com-golang-protobuf-1.3.1" +; ,go-github-com-golang-protobuf-1.3.1) +; ("go-github-com-godbus-dbus-0.0.0-20180201030542-885f9cc04c9c" +; ,go-github-com-godbus-dbus-0.0.0-20180201030542-885f9cc04c9c) +; ("go-github-com-d2g-hardwareaddr-0.0.0-20190221164911-e7d9fbe030e4" +; ,go-github-com-d2g-hardwareaddr-0.0.0-20190221164911-e7d9fbe030e4) +; ("go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5" +; ,go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5) +; ("go-github-com-d2g-dhcp4client-1.0.0" +; ,go-github-com-d2g-dhcp4client-1.0.0) +; ("go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c" +; ,go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c) +; ("go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7" +; ,go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7) +; ("go-github-com-coreos-go-iptables-0.4.5" +; ,go-github-com-coreos-go-iptables-0.4.5) +; ("go-github-com-containernetworking-cni-0.7.1" +; ,go-github-com-containernetworking-cni-0.7.1) +; ("go-github-com-buger-jsonparser-0.0.0-20180808090653-f4dd9f5a6b44" +; ,go-github-com-buger-jsonparser-0.0.0-20180808090653-f4dd9f5a6b44) +; ("go-github-com-alexflint-go-filemutex-0.0.0-20171022225611-72bdc8eae2ae" +; ,go-github-com-alexflint-go-filemutex-0.0.0-20171022225611-72bdc8eae2ae) +; ("go-github-com-microsoft-hcsshim-0.8.6" +; ,go-github-com-microsoft-hcsshim-0.8.6) +; ("go-github-com-microsoft-go-winio-0.4.11" +; ,go-github-com-microsoft-go-winio-0.4.11))) +; (home-page "https://github.com/containernetworking/plugins") +; (synopsis "Plugins") +; (description +; "Some CNI network plugins, maintained by the containernetworking team. For more information, see the @url{https://www.cni.dev,CNI website}.") +; (license license:asl2.0))) +; +;(define-public go-github-com-imdario-mergo-0.3.11 +; (package +; (name "go-github-com-imdario-mergo") +; (version "0.3.11") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/imdario/mergo") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "07iay9j3ry7qrflvn9bgyyggvwacl1s1in1cnbmsp1020ydkph8k")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/imdario/mergo")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.3.0" ,go-gopkg-in-yaml-v2-2.3.0))) +; (home-page "https://github.com/imdario/mergo") +; (synopsis "Mergo") +; (description +; "This package provides a helper to merge structs and maps in Golang. Useful for configuration default values, avoiding messy if-statements. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-klauspost-compress-1.11.3 +; (package +; (name "go-github-com-klauspost-compress") +; (version "1.11.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/klauspost/compress") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "04wpilw6072fh2wd492ma1nw4br7bvz466mj0vi2m1g4w6d0z88z")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/klauspost/compress")) +; (home-page "https://github.com/klauspost/compress") +; (synopsis "compress") +; (description "This package provides various compression algorithms.") +; (license #f))) +; +;(define-public go-github-com-checkpoint-restore-go-criu-v4-4.1.0 +; (package +; (name "go-github-com-checkpoint-restore-go-criu-v4") +; (version "4.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/checkpoint-restore/go-criu") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0hfgjck015df5h44hczl3x4gg430saczgkl619cp0l6cpaxga5yi")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/checkpoint-restore/go-criu/v4")) +; (propagated-inputs +; `(("go-github-com-golang-protobuf-1.3.5" +; ,go-github-com-golang-protobuf-1.3.5))) +; (home-page "https://github.com/checkpoint-restore/go-criu") +; (synopsis "go-criu -- Go bindings for") +; (description +; "This repository provides Go bindings for CRIU. The code is based on the Go based PHaul +;implementation from the CRIU repository. For easier inclusion into other Go projects the +;CRIU Go bindings have been moved to this repository.") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20200124204421-9fbb57f87de9") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0qaz2jjkrxzgkapmjqingdwamrgq2aiblxvzzgrcsv2qhkj0wdps")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-cilium-ebpf-0.2.0 +; (package +; (name "go-github-com-cilium-ebpf") +; (version "0.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/cilium/ebpf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0f7my8n5v2c5cmgrcikgi0naamglr7c4khgxkbb1k5wl8mm9465a")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/cilium/ebpf")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9" +; ,go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9) +; ("go-github-com-google-go-cmp-0.5.2" +; ,go-github-com-google-go-cmp-0.5.2))) +; (home-page "https://github.com/cilium/ebpf") +; (synopsis "eBPF") +; (description "Package ebpf is a toolkit for working with eBPF programs. +;") +; (license license:expat))) +; +;(define-public go-github-com-opencontainers-runc-1.0.0-rc93 +; (package +; (name "go-github-com-opencontainers-runc") +; (version "1.0.0-rc93") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/runc") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "008d5wkznic80n5q1vwx727qn5ifalc7cydq68hc1gk9wrhna4v4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/runc")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" +; ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68) +; ("go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b" +; ,go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b) +; ("go-github-com-willf-bitset-1.1.11" +; ,go-github-com-willf-bitset-1.1.11) +; ("go-github-com-vishvananda-netlink-1.1.0" +; ,go-github-com-vishvananda-netlink-1.1.0) +; ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) +; ("go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635" +; ,go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635) +; ("go-github-com-sirupsen-logrus-1.7.0" +; ,go-github-com-sirupsen-logrus-1.7.0) +; ("go-github-com-seccomp-libseccomp-golang-0.9.1" +; ,go-github-com-seccomp-libseccomp-golang-0.9.1) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-selinux-1.8.0" +; ,go-github-com-opencontainers-selinux-1.8.0) +; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" +; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) +; ("go-github-com-mrunalp-fileutils-0.5.0" +; ,go-github-com-mrunalp-fileutils-0.5.0) +; ("go-github-com-moby-sys-mountinfo-0.4.0" +; ,go-github-com-moby-sys-mountinfo-0.4.0) +; ("go-github-com-golang-protobuf-1.4.3" +; ,go-github-com-golang-protobuf-1.4.3) +; ("go-github-com-godbus-dbus-v5-5.0.3" +; ,go-github-com-godbus-dbus-v5-5.0.3) +; ("go-github-com-docker-go-units-0.4.0" +; ,go-github-com-docker-go-units-0.4.0) +; ("go-github-com-cyphar-filepath-securejoin-0.2.2" +; ,go-github-com-cyphar-filepath-securejoin-0.2.2) +; ("go-github-com-coreos-go-systemd-v22-22.1.0" +; ,go-github-com-coreos-go-systemd-v22-22.1.0) +; ("go-github-com-containerd-console-1.0.1" +; ,go-github-com-containerd-console-1.0.1) +; ("go-github-com-cilium-ebpf-0.2.0" ,go-github-com-cilium-ebpf-0.2.0) +; ("go-github-com-checkpoint-restore-go-criu-v4-4.1.0" +; ,go-github-com-checkpoint-restore-go-criu-v4-4.1.0))) +; (home-page "https://github.com/opencontainers/runc") +; (synopsis "runc") +; (description +; "@code{runc} is a CLI tool for spawning and running containers according to the OCI specification.") +; (license license:asl2.0))) +; +;(define-public go-github-com-willf-bitset-1.1.11 +; (package +; (name "go-github-com-willf-bitset") +; (version "1.1.11") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/bits-and-blooms/bitset") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1v7wnikdxiyhwdxnsj2wcrsrsi1kb2ssmarvbrda90vmxzafjl7d")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/willf/bitset")) +; (home-page "https://github.com/willf/bitset") +; (synopsis "bitset") +; (description +; "Package bitset implements bitsets, a mapping +;between non-negative integers and boolean values. It should be more +;efficient than map[uint] bool. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-opencontainers-selinux-1.8.0 +; (package +; (name "go-github-com-opencontainers-selinux") +; (version "1.8.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/selinux") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "08aakiva619hk4lgfvyi6kpjgw7hfirs0jlc2jdgzcv7p0gfhbmx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/selinux")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777" +; ,go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777) +; ("go-github-com-willf-bitset-1.1.11" +; ,go-github-com-willf-bitset-1.1.11) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) +; (home-page "https://github.com/opencontainers/selinux") +; (synopsis "selinux") +; (description "Common SELinux package used across the container ecosystem.") +; (license license:asl2.0))) +; +;(define-public go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.14 +; (package +; (name "go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client") +; (version "0.0.14") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes-sigs/apiserver-network-proxy") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0px41x5apgcssmwmx75cwm000s8b8pgd84dxn56maxx223dzz9vm")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path +; "sigs.k8s.io/apiserver-network-proxy/konnectivity-client")) +; (propagated-inputs +; `(("go-k8s-io-klog-v2-2.0.0" ,go-k8s-io-klog-v2-2.0.0) +; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) +; ("go-github-com-golang-protobuf-1.4.0" +; ,go-github-com-golang-protobuf-1.4.0))) +; (home-page +; "https://sigs.k8s.io/apiserver-network-proxy/konnectivity-client") +; (synopsis #f) +; (description #f) +; (license license:asl2.0))) +; +;(define-public go-k8s-io-apiserver-0.20.1 +; (package +; (name "go-k8s-io-apiserver") +; (version "0.20.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes/apiserver") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "03k8kjisscj59i410kk2bz0qfpxa2d2vbwxiwyn93k7a2avbn7cs")))) +; (build-system go-build-system) +; (arguments '(#:import-path "k8s.io/apiserver")) +; (propagated-inputs +; `(("go-k8s-io-component-base-0.20.1" ,go-k8s-io-component-base-0.20.1) +; ("go-k8s-io-client-go-0.20.1" ,go-k8s-io-client-go-0.20.1) +; ("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) +; ("go-k8s-io-api-0.20.1" ,go-k8s-io-api-0.20.1) +; ("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) +; ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.2" +; ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.2) +; ("go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.14" +; ,go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.14) +; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" +; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) +; ("go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd" +; ,go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd) +; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) +; ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) +; ("go-gopkg-in-square-go-jose-v2-2.2.2" +; ,go-gopkg-in-square-go-jose-v2-2.2.2) +; ("go-gopkg-in-natefinch-lumberjack-v2-2.0.0" +; ,go-gopkg-in-natefinch-lumberjack-v2-2.0.0) +; ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) +; ("go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a" +; ,go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a) +; ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" +; ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) +; ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" +; ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) +; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" +; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) +; ("go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0" +; ,go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0) +; ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) +; ("go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489" +; ,go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489) +; ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) +; ("go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5" +; ,go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) +; ("go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021" +; ,go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822" +; ,go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822) +; ("go-github-com-mailru-easyjson-0.7.0" +; ,go-github-com-mailru-easyjson-0.7.0) +; ("go-github-com-hashicorp-golang-lru-0.5.1" +; ,go-github-com-hashicorp-golang-lru-0.5.1) +; ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" +; ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) +; ("go-github-com-gorilla-websocket-1.4.2" +; ,go-github-com-gorilla-websocket-1.4.2) +; ("go-github-com-googleapis-gnostic-0.4.1" +; ,go-github-com-googleapis-gnostic-0.4.1) +; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) +; ("go-github-com-google-gofuzz-1.1.0" +; ,go-github-com-google-gofuzz-1.1.0) +; ("go-github-com-google-go-cmp-0.5.2" +; ,go-github-com-google-go-cmp-0.5.2) +; ("go-github-com-gogo-protobuf-1.3.1" +; ,go-github-com-gogo-protobuf-1.3.1) +; ("go-github-com-go-openapi-spec-0.19.3" +; ,go-github-com-go-openapi-spec-0.19.3) +; ("go-github-com-evanphx-json-patch-4.9.0+incompatible" +; ,go-github-com-evanphx-json-patch-4.9.0+incompatible) +; ("go-github-com-emicklei-go-restful-2.9.5+incompatible" +; ,go-github-com-emicklei-go-restful-2.9.5+incompatible) +; ("go-github-com-dustin-go-humanize-1.0.0" +; ,go-github-com-dustin-go-humanize-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1) +; ("go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f" +; ,go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f) +; ("go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e" +; ,go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e) +; ("go-github-com-coreos-go-semver-0.3.0" +; ,go-github-com-coreos-go-semver-0.3.0) +; ("go-github-com-coreos-go-oidc-2.1.0+incompatible" +; ,go-github-com-coreos-go-oidc-2.1.0+incompatible))) +; (home-page "https://k8s.io/apiserver") +; (synopsis "apiserver") +; (description +; "Generic library for building a Kubernetes aggregated API server.") +; (license license:asl2.0))) +; +;(define-public go-k8s-io-api-0.20.1 +; (package +; (name "go-k8s-io-api") +; (version "0.20.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes/api") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "051nl7g66k0jkc9rmfbvwdsmqkn36nq71kvnfym3lhnjcgg53k0l")))) +; (build-system go-build-system) +; (arguments '(#:import-path "k8s.io/api")) +; (propagated-inputs +; `(("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-gogo-protobuf-1.3.1" +; ,go-github-com-gogo-protobuf-1.3.1))) +; (home-page "https://k8s.io/api") +; (synopsis "api") +; (description +; "Schema of the external API types that are served by the Kubernetes API server.") +; (license license:asl2.0))) +; +;(define-public go-k8s-io-apimachinery-0.20.1 +; (package +; (name "go-k8s-io-apimachinery") +; (version "0.20.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes/apimachinery") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "15qc12lbzpd4lgajy0rv24b3ky4hhg5y1l37qxdfiakhz91didfw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "k8s.io/apimachinery")) +; (propagated-inputs +; `(("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) +; ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.2" +; ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.2) +; ("go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd" +; ,go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd) +; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) +; ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) +; ("go-gopkg-in-inf-v0-0.9.1" ,go-gopkg-in-inf-v0-0.9.1) +; ("go-google-golang-org-protobuf-1.25.0" +; ,go-google-golang-org-protobuf-1.25.0) +; ("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" +; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) +; ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) +; ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" +; ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) +; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" +; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-onsi-gomega-1.7.0" ,go-github-com-onsi-gomega-1.7.0) +; ("go-github-com-onsi-ginkgo-1.11.0" ,go-github-com-onsi-ginkgo-1.11.0) +; ("go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f" +; ,go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f) +; ("go-github-com-modern-go-reflect2-1.0.1" +; ,go-github-com-modern-go-reflect2-1.0.1) +; ("go-github-com-json-iterator-go-1.1.10" +; ,go-github-com-json-iterator-go-1.1.10) +; ("go-github-com-hashicorp-golang-lru-0.5.1" +; ,go-github-com-hashicorp-golang-lru-0.5.1) +; ("go-github-com-googleapis-gnostic-0.4.1" +; ,go-github-com-googleapis-gnostic-0.4.1) +; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) +; ("go-github-com-google-gofuzz-1.1.0" +; ,go-github-com-google-gofuzz-1.1.0) +; ("go-github-com-google-go-cmp-0.5.2" +; ,go-github-com-google-go-cmp-0.5.2) +; ("go-github-com-golang-protobuf-1.4.3" +; ,go-github-com-golang-protobuf-1.4.3) +; ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" +; ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) +; ("go-github-com-gogo-protobuf-1.3.1" +; ,go-github-com-gogo-protobuf-1.3.1) +; ("go-github-com-fsnotify-fsnotify-1.4.9" +; ,go-github-com-fsnotify-fsnotify-1.4.9) +; ("go-github-com-evanphx-json-patch-4.9.0+incompatible" +; ,go-github-com-evanphx-json-patch-4.9.0+incompatible) +; ("go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153" +; ,go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153) +; ("go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96" +; ,go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://k8s.io/apimachinery") +; (synopsis "apimachinery") +; (description +; "Scheme, typing, encoding, decoding, and conversion packages for Kubernetes and Kubernetes-like API objects.") +; (license license:asl2.0))) +; +;(define-public go-k8s-io-client-go-0.20.1 +; (package +; (name "go-k8s-io-client-go") +; (version "0.20.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes/client-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "02jrzwwcrdlya91fga2wvf8dsl1yka3kky194dm6l9pmd754qwzs")))) +; (build-system go-build-system) +; (arguments '(#:import-path "k8s.io/client-go")) +; (propagated-inputs +; `(("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) +; ("go-k8s-io-api-0.20.1" ,go-k8s-io-api-0.20.1) +; ("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) +; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" +; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) +; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) +; ("go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e" +; ,go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e) +; ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" +; ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) +; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" +; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) +; ("go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0" +; ,go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) +; ("go-github-com-peterbourgon-diskv-2.0.1+incompatible" +; ,go-github-com-peterbourgon-diskv-2.0.1+incompatible) +; ("go-github-com-imdario-mergo-0.3.5" +; ,go-github-com-imdario-mergo-0.3.5) +; ("go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7" +; ,go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7) +; ("go-github-com-googleapis-gnostic-0.4.1" +; ,go-github-com-googleapis-gnostic-0.4.1) +; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) +; ("go-github-com-google-gofuzz-1.1.0" +; ,go-github-com-google-gofuzz-1.1.0) +; ("go-github-com-google-go-cmp-0.5.2" +; ,go-github-com-google-go-cmp-0.5.2) +; ("go-github-com-golang-protobuf-1.4.3" +; ,go-github-com-golang-protobuf-1.4.3) +; ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" +; ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) +; ("go-github-com-gogo-protobuf-1.3.1" +; ,go-github-com-gogo-protobuf-1.3.1) +; ("go-github-com-evanphx-json-patch-4.9.0+incompatible" +; ,go-github-com-evanphx-json-patch-4.9.0+incompatible) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1) +; ("go-github-com-azure-go-autorest-autorest-adal-0.9.5" +; ,go-github-com-azure-go-autorest-autorest-adal-0.9.5) +; ("go-github-com-azure-go-autorest-autorest-0.11.1" +; ,go-github-com-azure-go-autorest-autorest-0.11.1) +; ("go-cloud-google-com-go-0.54.0" ,go-cloud-google-com-go-0.54.0))) +; (home-page "https://k8s.io/client-go") +; (synopsis "client-go") +; (description +; "Go clients for talking to a @url{http://kubernetes.io/,kubernetes} cluster.") +; (license license:asl2.0))) +; +;(define-public go-k8s-io-component-base-0.20.1 +; (package +; (name "go-k8s-io-component-base") +; (version "0.20.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes/component-base") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "05x3mv1lxh7s6ckfh1s9wwmb0n9rg14a9637ai9bhxdfps47sz0v")))) +; (build-system go-build-system) +; (arguments '(#:import-path "k8s.io/component-base")) +; (propagated-inputs +; `(("go-k8s-io-client-go-0.20.1" ,go-k8s-io-client-go-0.20.1) +; ("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) +; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" +; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) +; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) +; ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) +; ("go-go-uber-org-multierr-1.1.0" ,go-go-uber-org-multierr-1.1.0) +; ("go-go-uber-org-atomic-1.4.0" ,go-go-uber-org-atomic-1.4.0) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) +; ("go-github-com-sirupsen-logrus-1.6.0" +; ,go-github-com-sirupsen-logrus-1.6.0) +; ("go-github-com-prometheus-procfs-0.2.0" +; ,go-github-com-prometheus-procfs-0.2.0) +; ("go-github-com-prometheus-common-0.10.0" +; ,go-github-com-prometheus-common-0.10.0) +; ("go-github-com-prometheus-client-model-0.2.0" +; ,go-github-com-prometheus-client-model-0.2.0) +; ("go-github-com-prometheus-client-golang-1.7.1" +; ,go-github-com-prometheus-client-golang-1.7.1) +; ("go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd" +; ,go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd) +; ("go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369" +; ,go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369) +; ("go-github-com-google-go-cmp-0.5.2" +; ,go-github-com-google-go-cmp-0.5.2) +; ("go-github-com-go-logr-logr-0.2.0" ,go-github-com-go-logr-logr-0.2.0) +; ("go-github-com-blang-semver-3.5.1+incompatible" +; ,go-github-com-blang-semver-3.5.1+incompatible))) +; (home-page "https://k8s.io/component-base") +; (synopsis "component-base") +; (description +; "Implement KEP 32: @url{https://github.com/kubernetes/enhancements/blob/master/keps/sig-cluster-lifecycle/wgs/783-component-base/README.md,https://github.com/kubernetes/enhancements/blob/master/keps/sig-cluster-lifecycle/wgs/783-component-base/README.md}") +; (license license:asl2.0))) +; +;(define-public go-k8s-io-cri-api-0.20.1 +; (package +; (name "go-k8s-io-cri-api") +; (version "0.20.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes/cri-api") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1r98d0kv42sijdg3404xx2g5jj0zixvfagkky2zla12p68ajm4xr")))) +; (build-system go-build-system) +; (arguments '(#:import-path "k8s.io/cri-api")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" +; ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) +; ("go-google-golang-org-protobuf-1.25.0" +; ,go-google-golang-org-protobuf-1.25.0) +; ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) +; ("go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a" +; ,go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a) +; ("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" +; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) +; ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) +; ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" +; ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) +; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" +; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-kr-pretty-0.2.0" ,go-github-com-kr-pretty-0.2.0) +; ("go-github-com-google-go-cmp-0.5.2" +; ,go-github-com-google-go-cmp-0.5.2) +; ("go-github-com-golang-protobuf-1.4.3" +; ,go-github-com-golang-protobuf-1.4.3) +; ("go-github-com-gogo-protobuf-1.3.1" +; ,go-github-com-gogo-protobuf-1.3.1) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://k8s.io/cri-api") +; (synopsis "Purpose") +; (description +; "This repository contains the definitions for the Container Runtime Interface (CRI). +;CRI is a plugin interface which enables kubelet to use a wide variety of container runtimes, +;without the need to recompile. CRI consists of a protocol buffers and gRPC API.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-containerd-1.5.0-beta.3 +; (package +; (name "go-github-com-containerd-containerd") +; (version "1.5.0-beta.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/containerd") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0fbd4llrwg5hi5adfkmfndma5y129yl9wwz3c3fjn7cfhc64hlqf")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/containerd")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) +; ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) +; ("go-github-com-golang-protobuf-1.3.5" +; ,go-github-com-golang-protobuf-1.3.5) +; ("go-github-com-gogo-googleapis-1.3.2" +; ,go-github-com-gogo-googleapis-1.3.2) +; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" +; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) +; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) +; ("go-k8s-io-cri-api-0.20.1" ,go-k8s-io-cri-api-0.20.1) +; ("go-k8s-io-component-base-0.20.1" ,go-k8s-io-component-base-0.20.1) +; ("go-k8s-io-client-go-0.20.1" ,go-k8s-io-client-go-0.20.1) +; ("go-k8s-io-apiserver-0.20.1" ,go-k8s-io-apiserver-0.20.1) +; ("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) +; ("go-k8s-io-api-0.20.1" ,go-k8s-io-api-0.20.1) +; ("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) +; ("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" +; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) +; ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" +; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) +; ("go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b" +; ,go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b) +; ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) +; ("go-github-com-tchap-go-patricia-2.2.6+incompatible" +; ,go-github-com-tchap-go-patricia-2.2.6+incompatible) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-sirupsen-logrus-1.7.0" +; ,go-github-com-sirupsen-logrus-1.7.0) +; ("go-github-com-prometheus-client-golang-1.7.1" +; ,go-github-com-prometheus-client-golang-1.7.1) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-selinux-1.8.0" +; ,go-github-com-opencontainers-selinux-1.8.0) +; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" +; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) +; ("go-github-com-opencontainers-runc-1.0.0-rc93" +; ,go-github-com-opencontainers-runc-1.0.0-rc93) +; ("go-github-com-opencontainers-image-spec-1.0.1" +; ,go-github-com-opencontainers-image-spec-1.0.1) +; ("go-github-com-opencontainers-go-digest-1.0.0" +; ,go-github-com-opencontainers-go-digest-1.0.0) +; ("go-github-com-moby-sys-symlink-0.1.0" +; ,go-github-com-moby-sys-symlink-0.1.0) +; ("go-github-com-moby-sys-mountinfo-0.4.0" +; ,go-github-com-moby-sys-mountinfo-0.4.0) +; ("go-github-com-klauspost-compress-1.11.3" +; ,go-github-com-klauspost-compress-1.11.3) +; ("go-github-com-imdario-mergo-0.3.11" +; ,go-github-com-imdario-mergo-0.3.11) +; ("go-github-com-hashicorp-go-multierror-1.0.0" +; ,go-github-com-hashicorp-go-multierror-1.0.0) +; ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" +; ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) +; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) +; ("go-github-com-google-go-cmp-0.5.4" +; ,go-github-com-google-go-cmp-0.5.4) +; ("go-github-com-gogo-protobuf-1.3.2" +; ,go-github-com-gogo-protobuf-1.3.2) +; ("go-github-com-fsnotify-fsnotify-1.4.9" +; ,go-github-com-fsnotify-fsnotify-1.4.9) +; ("go-github-com-emicklei-go-restful-2.9.5+incompatible" +; ,go-github-com-emicklei-go-restful-2.9.5+incompatible) +; ("go-github-com-docker-go-units-0.4.0" +; ,go-github-com-docker-go-units-0.4.0) +; ("go-github-com-docker-go-metrics-0.0.1" +; ,go-github-com-docker-go-metrics-0.0.1) +; ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" +; ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1) +; ("go-github-com-coreos-go-systemd-v22-22.1.0" +; ,go-github-com-coreos-go-systemd-v22-22.1.0) +; ("go-github-com-containernetworking-plugins-0.8.6" +; ,go-github-com-containernetworking-plugins-0.8.6) +; ("go-github-com-containerd-zfs-0.0.0-20210301145711-11e8f1707f62" +; ,go-github-com-containerd-zfs-0.0.0-20210301145711-11e8f1707f62) +; ("go-github-com-containerd-typeurl-1.0.1" +; ,go-github-com-containerd-typeurl-1.0.1) +; ("go-github-com-containerd-ttrpc-1.0.2" +; ,go-github-com-containerd-ttrpc-1.0.2) +; ("go-github-com-containerd-nri-0.0.0-20201007170849-eb1350a75164" +; ,go-github-com-containerd-nri-0.0.0-20201007170849-eb1350a75164) +; ("go-github-com-containerd-imgcrypt-1.0.4-0.20210301171431-0ae5c75f59ba" +; ,go-github-com-containerd-imgcrypt-1.0.4-0.20210301171431-0ae5c75f59ba) +; ("go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328" +; ,go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328) +; ("go-github-com-containerd-go-cni-1.0.1" +; ,go-github-com-containerd-go-cni-1.0.1) +; ("go-github-com-containerd-fifo-0.0.0-20201026212402-0724c46b320c" +; ,go-github-com-containerd-fifo-0.0.0-20201026212402-0724c46b320c) +; ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" +; ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) +; ("go-github-com-containerd-console-1.0.1" +; ,go-github-com-containerd-console-1.0.1) +; ("go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68" +; ,go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68) +; ("go-github-com-containerd-btrfs-0.0.0-20201111183144-404b9149801e" +; ,go-github-com-containerd-btrfs-0.0.0-20201111183144-404b9149801e) +; ("go-github-com-containerd-aufs-0.0.0-20201003224125-76a6863f2989" +; ,go-github-com-containerd-aufs-0.0.0-20201003224125-76a6863f2989) +; ("go-github-com-microsoft-hcsshim-test-0.0.0-20210227013316-43a75bb4edd3" +; ,go-github-com-microsoft-hcsshim-test-0.0.0-20210227013316-43a75bb4edd3) +; ("go-github-com-microsoft-hcsshim-0.8.15" +; ,go-github-com-microsoft-hcsshim-0.8.15) +; ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" +; ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3) +; ("go-github-com-burntsushi-toml-0.3.1" +; ,go-github-com-burntsushi-toml-0.3.1))) +; (home-page "https://github.com/containerd/containerd") +; (synopsis "Now Recruiting") +; (description +; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") +; (license license:asl2.0))) +; +;(define-public go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee +; (package +; (name "go-github-com-spf13-cobra") +; (version "0.0.2-0.20171109065643-2da4a54c5cee") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/spf13/cobra") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "18qbrp774fx6dyibjcy9snld705gslq6z2sql1biyjahxkm1vpfy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/spf13/cobra")) +; (home-page "https://github.com/spf13/cobra") +; (synopsis "Table of Contents") +; (description +; "Package cobra is a commander providing a simple interface to create powerful modern CLI interfaces. +;In addition to providing an interface, Cobra simultaneously provides a controller to organize your application code. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95 +; (package +; (name "go-github-com-spf13-pflag") +; (version "1.0.1-0.20171106142849-4c012f6dcd95") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/spf13/pflag") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0plmm67lkm25ir0lczwh7hmanyilrs1vxmbp8a0dyr282ji1dqm5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/spf13/pflag")) +; (home-page "https://github.com/spf13/pflag") +; (synopsis "Description") +; (description +; "Package pflag is a drop-in replacement for Go's flag package, implementing +;POSIX/GNU-style --flags. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20201201145000-ef89a241ccb3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0a8myxx2mvdr77a003gpy5jmdzbxbnrf5zppmpl4za4sspxlmwif")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e +; (package +; (name "go-github-com-containerd-continuity") +; (version "0.0.0-20210208174643-50096c924a4e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/continuity") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1drmxbb2l4z12b19dq3vvh1ss7b4z8fq1n5g6c8ln13mjgz6cq48")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/continuity")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3" +; ,go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3) +; ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" +; ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) +; ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" +; ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) +; ("go-github-com-stretchr-testify-1.4.0" +; ,go-github-com-stretchr-testify-1.4.0) +; ("go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95" +; ,go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95) +; ("go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee" +; ,go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee) +; ("go-github-com-sirupsen-logrus-1.7.0" +; ,go-github-com-sirupsen-logrus-1.7.0) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-go-digest-1.0.0" +; ,go-github-com-opencontainers-go-digest-1.0.0) +; ("go-github-com-inconshreveable-mousetrap-1.0.0" +; ,go-github-com-inconshreveable-mousetrap-1.0.0) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0) +; ("go-github-com-dustin-go-humanize-1.0.0" +; ,go-github-com-dustin-go-humanize-1.0.0) +; ("go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898" +; ,go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898))) +; (home-page "https://github.com/containerd/continuity") +; (synopsis "continuity") +; (description +; "This package provides a transport-agnostic, filesystem metadata manifest system") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-zfs-1.0.0 +; (package +; (name "go-github-com-containerd-zfs") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/zfs") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "10shqmcdxlxxi90kwgs5cljz12589yz5cm78aimv9m4cgwiv3wl3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/zfs")) +; (propagated-inputs +; `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible" +; ,go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible) +; ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" +; ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) +; ("go-github-com-containerd-containerd-1.5.0-beta.3" +; ,go-github-com-containerd-containerd-1.5.0-beta.3))) +; (home-page "https://github.com/containerd/zfs") +; (synopsis "ZFS snapshotter plugin") +; (description "ZFS snapshotter plugin for containerd.") +; (license license:asl2.0))) +; +;(define-public go-github-com-microsoft-go-winio-0.4.11 +; (package +; (name "go-github-com-microsoft-go-winio") +; (version "0.4.11") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/microsoft/go-winio") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "14y1gryr3pb3zy09v2g8dh89m363rfd9sch0wgbabh531hfx72vn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/Microsoft/go-winio")) +; (home-page "https://github.com/Microsoft/go-winio") +; (synopsis "go-winio") +; (description +; "This repository contains utilities for efficiently performing Win32 IO operations in +;Go. Currently, this is focused on accessing named pipes and other file handles, and +;for using named pipes as a net transport.") +; (license license:expat))) +; +;(define-public go-github-com-microsoft-hcsshim-0.8.6 +; (package +; (name "go-github-com-microsoft-hcsshim") +; (version "0.8.6") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/microsoft/hcsshim") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "05arx8y4b6rvhjcnwizhc8svzab3ld0njkgj8vijgs27az84z6pw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/Microsoft/hcsshim")) +; (home-page "https://github.com/Microsoft/hcsshim") +; (synopsis "hcsshim") +; (description +; "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") +; (license license:expat))) +; +;(define-public go-github-com-alexflint-go-filemutex-0.0.0-20171022225611-72bdc8eae2ae +; (package +; (name "go-github-com-alexflint-go-filemutex") +; (version "0.0.0-20171022225611-72bdc8eae2ae") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/alexflint/go-filemutex") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "082y6y9zv40q3kaqvsv6fyaw2fc42j0sn9z0dl9rbiz4szixj3c4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/alexflint/go-filemutex")) +; (home-page "https://github.com/alexflint/go-filemutex") +; (synopsis "FileMutex") +; (description +; "FileMutex is similar to @code{sync.RWMutex}, but also synchronizes across processes. +;On Linux, OSX, and other POSIX systems it uses the flock system call. On windows +;it uses the LockFileEx and UnlockFileEx system calls.") +; (license license:expat))) +; +;(define-public go-github-com-buger-jsonparser-0.0.0-20180808090653-f4dd9f5a6b44 +; (package +; (name "go-github-com-buger-jsonparser") +; (version "0.0.0-20180808090653-f4dd9f5a6b44") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/buger/jsonparser") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "12qa2n33s7yz88ywpr3k9kg3b4gm6rqgnv28iyikyxw8h5jascz5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/buger/jsonparser")) +; (home-page "https://github.com/buger/jsonparser") +; (synopsis +; "Alternative JSON parser for Go (10x times faster standard library)") +; (description +; "It does not require you to know the structure of the payload (eg. create structs), and allows accessing fields by providing the path to them. It is up to @strong{10 times faster} than standard @code{encoding/json} package (depending on payload size and usage), @strong{allocates no memory}. See benchmarks below.") +; (license license:expat))) +; +;(define-public go-github-com-containernetworking-cni-0.8.1 +; (package +; (name "go-github-com-containernetworking-cni") +; (version "0.8.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containernetworking/cni") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ydzsiq6kfwjghf5dd4ld2rv3cxgbjq6c1523jxmib1phwf0s75z")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containernetworking/cni")) +; (home-page "https://github.com/containernetworking/cni") +; (synopsis "CNI - the Container Network Interface") +; (description +; "CNI (), a @url{https://cncf.io,Cloud Native Computing Foundation} project, consists of a specification and libraries for writing plugins to configure network interfaces in Linux containers, along with a number of supported plugins. +;CNI concerns itself only with network connectivity of containers and removing allocated resources when the container is deleted. +;Because of this focus, CNI has a wide range of support and the specification is simple to implement.") +; (license license:asl2.0))) +; +;(define-public go-github-com-coreos-go-iptables-0.5.0 +; (package +; (name "go-github-com-coreos-go-iptables") +; (version "0.5.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/coreos/go-iptables") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0syxjad9b3d19sjy7cy7zjpx5bx60yvbhidz8r9cdv43iqadxmp7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/coreos/go-iptables")) +; (home-page "https://github.com/coreos/go-iptables") +; (synopsis "go-iptables") +; (description "Go bindings for iptables utility.") +; (license license:asl2.0))) +; +;(define-public go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c +; (package +; (name "go-github-com-d2g-dhcp4") +; (version "0.0.0-20170904100407-a1d1b6c41b1c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/d2g/dhcp4") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "191hzw6yqzkm042h6miyycq3g0zrhqjhhpl27f8vhwzp4wanasiz")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/d2g/dhcp4")) +; (home-page "https://github.com/d2g/dhcp4") +; (synopsis "DHCP4 - A DHCP library written in Go.") +; (description +; "Warning: This library is still being developed. Function calls will change.") +; (license license:bsd-3))) +; +;(define-public go-github-com-d2g-dhcp4client-1.0.0 +; (package +; (name "go-github-com-d2g-dhcp4client") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/d2g/dhcp4client") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1n4qrn7xsgvnshmddq56hr8g2si5vfmxi0wnp0w71lmdfsxvvx0q")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/d2g/dhcp4client")) +; (home-page "https://github.com/d2g/dhcp4client") +; (synopsis "dhcp4client") +; (description "DHCP Client") +; (license license:mpl2.0))) +; +;(define-public go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5 +; (package +; (name "go-github-com-d2g-dhcp4server") +; (version "0.0.0-20181031114812-7d4a0a7f59a5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/d2g/dhcp4server") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "03ibq32flr74pxfly1yca9qicb6f15xgl159jjg3svgnzfjpblwl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/d2g/dhcp4server")) +; (home-page "https://github.com/d2g/dhcp4server") +; (synopsis "dhcp4server") +; (description "DHCP Server") +; (license license:mpl2.0))) +; +;(define-public go-github-com-d2g-hardwareaddr-0.0.0-20190221164911-e7d9fbe030e4 +; (package +; (name "go-github-com-d2g-hardwareaddr") +; (version "0.0.0-20190221164911-e7d9fbe030e4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/d2g/hardwareaddr") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "09nm5py9xbb9klwhzqkf6786i3b59ynba78xkrv9jx4ari7ibh8q")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/d2g/hardwareaddr")) +; (home-page "https://github.com/d2g/hardwareaddr") +; (synopsis "hardwareaddr") +; (description "Generate Hardware Addresses") +; (license license:mpl2.0))) +; +;(define-public go-github-com-godbus-dbus-0.0.0-20180201030542-885f9cc04c9c +; (package +; (name "go-github-com-godbus-dbus") +; (version "0.0.0-20180201030542-885f9cc04c9c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/godbus/dbus") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0wjpaj4vr5lvpnwc5faf3qizd7zd2v9yq0fm0558wap1hiyqb8x8")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/godbus/dbus")) +; (home-page "https://github.com/godbus/dbus") +; (synopsis "dbus") +; (description +; "Package dbus implements bindings to the D-Bus message bus system. +;") +; (license license:bsd-2))) +; +;(define-public go-github-com-j-keck-arping-0.0.0-20160618110441-2cf9dc699c56 +; (package +; (name "go-github-com-j-keck-arping") +; (version "0.0.0-20160618110441-2cf9dc699c56") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/j-keck/arping") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1bid8mpx3j4546ni0a6q5xyz7hb854g95qnxqmg5jzs9vrcird3c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/j-keck/arping")) +; (home-page "https://github.com/j-keck/arping") +; (synopsis "arping") +; (description +; "Package arping is a native go library to ping a host per arp datagram, or query a host mac address +;") +; (license license:expat))) +; +;(define-public go-github-com-mattn-go-shellwords-1.0.3 +; (package +; (name "go-github-com-mattn-go-shellwords") +; (version "1.0.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mattn/go-shellwords") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1pg7pl25wvpl2dbpyrv9p1r7prnqimxlf6136vn0dfm54j2x4mnr")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mattn/go-shellwords")) +; (home-page "https://github.com/mattn/go-shellwords") +; (synopsis "go-shellwords") +; (description "Parse line as shell words.") +; (license license:expat))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190904154756-749cb33beabd +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190904154756-749cb33beabd") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0dm3257q3rv2kyn5lmqqim2fqg634v6rhrqq4glvbk4wx4l3v337")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-nxadm-tail-1.4.4 +; (package +; (name "go-github-com-nxadm-tail") +; (version "1.4.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/nxadm/tail") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1czmwqii0fc8v3ar5bwqpfanprkxg19waly405zlvcflzvj53wwc")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/nxadm/tail")) +; (propagated-inputs +; `(("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" +; ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) +; ("go-golang-org-x-sys-0.0.0-20190904154756-749cb33beabd" +; ,go-golang-org-x-sys-0.0.0-20190904154756-749cb33beabd) +; ("go-github-com-fsnotify-fsnotify-1.4.7" +; ,go-github-com-fsnotify-fsnotify-1.4.7))) +; (home-page "https://github.com/nxadm/tail") +; (synopsis "tail functionality in Go") +; (description +; "nxadm/tail provides a Go library that emulates the features of the BSD `tail` +;program. The library comes with full support for truncation/move detection as +;it is designed to work with log rotation tools. The library works on all +;operating systems supported by Go, including POSIX systems like Linux and +;*BSD, and MS Windows. Go 1.9 is the oldest compiler release supported. +;") +; (license license:expat))) +; +;(define-public go-github-com-onsi-gomega-1.7.1 +; (package +; (name "go-github-com-onsi-gomega") +; (version "1.7.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/onsi/gomega") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "06p3x0910cdaa64l7d44s728d4j3yhps315dlcvrbjzhljjj7mam")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/onsi/gomega")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.2.4" ,go-gopkg-in-yaml-v2-2.2.4) +; ("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" +; ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) +; ("go-gopkg-in-fsnotify-v1-1.4.7" ,go-gopkg-in-fsnotify-v1-1.4.7) +; ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e" +; ,go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e) +; ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" +; ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) +; ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" +; ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) +; ("go-github-com-onsi-ginkgo-1.6.0" ,go-github-com-onsi-ginkgo-1.6.0) +; ("go-github-com-hpcloud-tail-1.0.0" ,go-github-com-hpcloud-tail-1.0.0) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0) +; ("go-github-com-fsnotify-fsnotify-1.4.7" +; ,go-github-com-fsnotify-fsnotify-1.4.7))) +; (home-page "https://github.com/onsi/gomega") +; (synopsis ": a BDD Testing Framework for Golang") +; (description +; "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20191120155948-bd437916bb0e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1i8x26frmlin55k69k936zd1rp5sqnq14y5ms4rkxbfzhasdm2rx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-onsi-ginkgo-1.12.1 +; (package +; (name "go-github-com-onsi-ginkgo") +; (version "1.12.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/onsi/ginkgo") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0xs9724l2b0bwjwrvw5cs3akxaw0n1j5kyxrb1ggfsdjz0zmjcxh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/onsi/ginkgo")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e" +; ,go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e) +; ("go-github-com-onsi-gomega-1.7.1" ,go-github-com-onsi-gomega-1.7.1) +; ("go-github-com-nxadm-tail-1.4.4" ,go-github-com-nxadm-tail-1.4.4))) +; (home-page "https://github.com/onsi/ginkgo") +; (synopsis "Ginkgo 2.0 Release Candidate is available!") +; (description "Ginkgo is a BDD-style testing framework for Golang +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-net-0.0.0-20201006153459-a7d1128ccaa0 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20201006153459-a7d1128ccaa0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1iqqq7s95b2a29bspfxv68qnby8vwjvy9f8gl2262p6f9hhp21d2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) +; ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" +; ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) +; ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" +; ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-github-com-onsi-gomega-1.10.3 +; (package +; (name "go-github-com-onsi-gomega") +; (version "1.10.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/onsi/gomega") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1jvp5wlny86ncsqak5rz70qfn61y3ajc64w0hrj4840zgh90zb06")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/onsi/gomega")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.3.0" ,go-gopkg-in-yaml-v2-2.3.0) +; ("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" +; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) +; ("go-golang-org-x-net-0.0.0-20201006153459-a7d1128ccaa0" +; ,go-golang-org-x-net-0.0.0-20201006153459-a7d1128ccaa0) +; ("go-github-com-onsi-ginkgo-1.12.1" ,go-github-com-onsi-ginkgo-1.12.1) +; ("go-github-com-golang-protobuf-1.4.2" +; ,go-github-com-golang-protobuf-1.4.2))) +; (home-page "https://github.com/onsi/gomega") +; (synopsis ": a BDD Testing Framework for Golang") +; (description +; "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library. +;") +; (license license:expat))) +; +;(define-public go-github-com-safchain-ethtool-0.0.0-20190326074333-42ed695e3de8 +; (package +; (name "go-github-com-safchain-ethtool") +; (version "0.0.0-20190326074333-42ed695e3de8") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/safchain/ethtool") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0n5hkrzc1bh46nidcssx4539kvcmgj501v3kzh2pljpg27509daj")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/safchain/ethtool")) +; (home-page "https://github.com/safchain/ethtool") +; (synopsis "ethtool go package") +; (description +; "Package ethtool aims to provide a library giving a simple access to the +;Linux SIOCETHTOOL ioctl operations. It can be used to retrieve informations +;from a network device like statistics, driver related informations or +;even the peer of a VETH interface. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-sirupsen-logrus-1.0.6 +; (package +; (name "go-github-com-sirupsen-logrus") +; (version "1.0.6") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/sirupsen/logrus") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "029irw2lsbqi944gdrbkwdw0m2794sqni4g21gsnmz142hbzds8c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/sirupsen/logrus")) +; (home-page "https://github.com/sirupsen/logrus") +; (synopsis "Logrus") +; (description +; "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-sys-0.0.0-20200217220822-9197077df867 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20200217220822-9197077df867") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1270yyiqzlgrsygp2j0qavh4agm4xjv3ljfpk4wgqgmg4ph1lmx1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-vishvananda-netns-0.0.0-20200728191858-db3c7e526aae +; (package +; (name "go-github-com-vishvananda-netns") +; (version "0.0.0-20200728191858-db3c7e526aae") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/vishvananda/netns") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1gx41r06by67q5yyyvjpr0cyqqs2pcksfaqxy0s36cx4vpjn5x9r")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/vishvananda/netns")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20200217220822-9197077df867" +; ,go-golang-org-x-sys-0.0.0-20200217220822-9197077df867))) +; (home-page "https://github.com/vishvananda/netns") +; (synopsis "netns - network namespaces in go") +; (description +; "Package netns allows ultra-simple network namespace handling. NsHandles +;can be retrieved and set. Note that the current namespace is thread +;local so actions that set and reset namespaces should use LockOSThread +;to make sure the namespace doesn't change due to a goroutine switch. +;It is best to close NsHandles when you are done with them. This can be +;accomplished via a `defer ns.Close()` on the handle. Changing namespaces +;requires elevated privileges, so in most cases this code needs to be run +;as root. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-sys-0.0.0-20200728102440-3e129f6d46b1 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20200728102440-3e129f6d46b1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "02wcaghvpysqijiqsiimk52vma7lx99g5kvdid2r1qsf9hmwgvy2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-vishvananda-netlink-1.1.1-0.20201029203352-d40f9887b852 +; (package +; (name "go-github-com-vishvananda-netlink") +; (version "1.1.1-0.20201029203352-d40f9887b852") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/vishvananda/netlink") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1aq13npm7vd153vxrk1vhsg36r2g9hrh21cvk422ssrf57qy2fsj")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/vishvananda/netlink")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20200728102440-3e129f6d46b1" +; ,go-golang-org-x-sys-0.0.0-20200728102440-3e129f6d46b1) +; ("go-github-com-vishvananda-netns-0.0.0-20200728191858-db3c7e526aae" +; ,go-github-com-vishvananda-netns-0.0.0-20200728191858-db3c7e526aae))) +; (home-page "https://github.com/vishvananda/netlink") +; (synopsis "netlink - netlink library for go") +; (description +; "Package netlink provides a simple library for netlink. Netlink is +;the interface a user-space program in linux uses to communicate with +;the kernel. It can be used to add and remove interfaces, set up ip +;addresses and routes, and confiugre ipsec. Netlink communication +;requires elevated privileges, so in most cases this code needs to +;be run as root. The low level primitives for netlink are contained +;in the nl subpackage. This package attempts to provide a high-level +;interface that is loosly modeled on the iproute2 cli. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-sys-0.0.0-20201117170446-d9b008d0a637 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20201117170446-d9b008d0a637") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "06pp1nrhzx6nm6rwwzm0xzf8bs3r1mfsrkclyhlhnr7x5r0a0ppi")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-gopkg-in-airbrake-gobrake-v2-2.0.9 +; (package +; (name "go-gopkg-in-airbrake-gobrake-v2") +; (version "2.0.9") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/airbrake/gobrake.v2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1x06f7n7qlyzqgyz0sdfcidf3w4ldn6zs6qx2mhibggk2z4whcjw")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path +; "gopkg.in/airbrake/gobrake.v2" +; #:unpack-path +; "gopkg.in/airbrake/gobrake.v2")) +; (home-page "https://gopkg.in/airbrake/gobrake.v2") +; (synopsis "Airbrake Golang Notifier") +; (description +; "You can use @url{https://github.com/airbrake/glog,glog fork} to send your logs to Airbrake.") +; (license license:bsd-3))) +; +;(define-public go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2 +; (package +; (name "go-gopkg-in-gemnasium-logrus-airbrake-hook-v2") +; (version "2.1.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/gemnasium/logrus-airbrake-hook.v2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0sbg0dn6cysmf8f2bi209jwl4jnpiwp4rdghnxlzirw3c32ms5y5")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path +; "gopkg.in/gemnasium/logrus-airbrake-hook.v2" +; #:unpack-path +; "gopkg.in/gemnasium/logrus-airbrake-hook.v2")) +; (home-page "https://gopkg.in/gemnasium/logrus-airbrake-hook.v2") +; (synopsis "Airbrake Hook for Logrus") +; (description +; "Use this hook to send your errors to @url{https://airbrake.io/,Airbrake}. +;This hook is using the @url{https://github.com/airbrake/gobrake,official airbrake go package}, and will hit the api V3. +;The hook is synchronous and will send the error for @code{log.Error}, @code{log.Fatal} and @code{log.Panic} levels.") +; (license license:expat))) +; +;(define-public go-github-com-containernetworking-plugins-0.9.1 +; (package +; (name "go-github-com-containernetworking-plugins") +; (version "0.9.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containernetworking/plugins") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "17rafngfa9b0ybs3j4lvjjqdva6jkamhnbb1n0qnv685g0asvqwz")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containernetworking/plugins")) +; (propagated-inputs +; `(("go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2" +; ,go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2) +; ("go-gopkg-in-airbrake-gobrake-v2-2.0.9" +; ,go-gopkg-in-airbrake-gobrake-v2-2.0.9) +; ("go-golang-org-x-sys-0.0.0-20201117170446-d9b008d0a637" +; ,go-golang-org-x-sys-0.0.0-20201117170446-d9b008d0a637) +; ("go-github-com-vishvananda-netlink-1.1.1-0.20201029203352-d40f9887b852" +; ,go-github-com-vishvananda-netlink-1.1.1-0.20201029203352-d40f9887b852) +; ("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0) +; ("go-github-com-sirupsen-logrus-1.0.6" +; ,go-github-com-sirupsen-logrus-1.0.6) +; ("go-github-com-safchain-ethtool-0.0.0-20190326074333-42ed695e3de8" +; ,go-github-com-safchain-ethtool-0.0.0-20190326074333-42ed695e3de8) +; ("go-github-com-onsi-gomega-1.10.3" ,go-github-com-onsi-gomega-1.10.3) +; ("go-github-com-onsi-ginkgo-1.12.1" ,go-github-com-onsi-ginkgo-1.12.1) +; ("go-github-com-mattn-go-shellwords-1.0.3" +; ,go-github-com-mattn-go-shellwords-1.0.3) +; ("go-github-com-j-keck-arping-0.0.0-20160618110441-2cf9dc699c56" +; ,go-github-com-j-keck-arping-0.0.0-20160618110441-2cf9dc699c56) +; ("go-github-com-godbus-dbus-0.0.0-20180201030542-885f9cc04c9c" +; ,go-github-com-godbus-dbus-0.0.0-20180201030542-885f9cc04c9c) +; ("go-github-com-d2g-hardwareaddr-0.0.0-20190221164911-e7d9fbe030e4" +; ,go-github-com-d2g-hardwareaddr-0.0.0-20190221164911-e7d9fbe030e4) +; ("go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5" +; ,go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5) +; ("go-github-com-d2g-dhcp4client-1.0.0" +; ,go-github-com-d2g-dhcp4client-1.0.0) +; ("go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c" +; ,go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c) +; ("go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7" +; ,go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7) +; ("go-github-com-coreos-go-iptables-0.5.0" +; ,go-github-com-coreos-go-iptables-0.5.0) +; ("go-github-com-containernetworking-cni-0.8.1" +; ,go-github-com-containernetworking-cni-0.8.1) +; ("go-github-com-buger-jsonparser-0.0.0-20180808090653-f4dd9f5a6b44" +; ,go-github-com-buger-jsonparser-0.0.0-20180808090653-f4dd9f5a6b44) +; ("go-github-com-alexflint-go-filemutex-0.0.0-20171022225611-72bdc8eae2ae" +; ,go-github-com-alexflint-go-filemutex-0.0.0-20171022225611-72bdc8eae2ae) +; ("go-github-com-microsoft-hcsshim-0.8.6" +; ,go-github-com-microsoft-hcsshim-0.8.6) +; ("go-github-com-microsoft-go-winio-0.4.11" +; ,go-github-com-microsoft-go-winio-0.4.11))) +; (home-page "https://github.com/containernetworking/plugins") +; (synopsis "Plugins") +; (description +; "Some CNI network plugins, maintained by the containernetworking team. For more information, see the @url{https://www.cni.dev,CNI website}.") +; (license license:asl2.0))) +; +;(define-public go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c +; (package +; (name "go-github-com-docker-go-events") +; (version "0.0.0-20190806004212-e31b211e4f1c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/docker/go-events") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "09gm4z43g23isbklabnsnfb87bwf8kjdgvvyi3vfjq2bqdjdg7cl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/docker/go-events")) +; (home-page "https://github.com/docker/go-events") +; (synopsis "Docker Events Package") +; (description +; "The Docker @code{events} package implements a composable event distribution package +;for Go.") +; (license license:asl2.0))) +; +;(define-public go-github-com-prometheus-common-0.6.0 +; (package +; (name "go-github-com-prometheus-common") +; (version "0.6.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/common") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1q16br348117ffycxdwsldb0i39p34miclfa8z93k6vjwnrqbh2l")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/common")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1) +; ("go-gopkg-in-alecthomas-kingpin-v2-2.2.6" +; ,go-gopkg-in-alecthomas-kingpin-v2-2.2.6) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980" +; ,go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980) +; ("go-github-com-sirupsen-logrus-1.2.0" +; ,go-github-com-sirupsen-logrus-1.2.0) +; ("go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90" +; ,go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90) +; ("go-github-com-prometheus-client-golang-1.0.0" +; ,go-github-com-prometheus-client-golang-1.0.0) +; ("go-github-com-pkg-errors-0.8.0" ,go-github-com-pkg-errors-0.8.0) +; ("go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223" +; ,go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223) +; ("go-github-com-matttproud-golang-protobuf-extensions-1.0.1" +; ,go-github-com-matttproud-golang-protobuf-extensions-1.0.1) +; ("go-github-com-julienschmidt-httprouter-1.2.0" +; ,go-github-com-julienschmidt-httprouter-1.2.0) +; ("go-github-com-golang-protobuf-1.3.1" +; ,go-github-com-golang-protobuf-1.3.1) +; ("go-github-com-go-logfmt-logfmt-0.4.0" +; ,go-github-com-go-logfmt-logfmt-0.4.0) +; ("go-github-com-go-kit-kit-0.8.0" ,go-github-com-go-kit-kit-0.8.0))) +; (home-page "https://github.com/prometheus/common") +; (synopsis "Common") +; (description +; "This repository contains Go libraries that are shared across Prometheus +;components and libraries. They are considered internal to Prometheus, without +;any stability guarantees for external usage.") +; (license license:asl2.0))) +; +;(define-public go-github-com-prometheus-procfs-0.0.3 +; (package +; (name "go-github-com-prometheus-procfs") +; (version "0.0.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/procfs") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "18c4m795fwng8f8qa395f3crvamlbk5y5afk8b5rzyisnmjq774y")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/procfs")) +; (propagated-inputs +; `(("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" +; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) +; ("go-github-com-google-go-cmp-0.3.0" +; ,go-github-com-google-go-cmp-0.3.0))) +; (home-page "https://github.com/prometheus/procfs") +; (synopsis "procfs") +; (description +; "Package procfs provides functions to retrieve system, kernel and process +;metrics from the pseudo-filesystem proc. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190801041406-cbf593c0f2f3 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190801041406-cbf593c0f2f3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1zmcmckinhclcwlvznjqvs31aww8jnf6pjm9is0nq8lqlvipg5ls")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-prometheus-client-golang-1.1.0 +; (package +; (name "go-github-com-prometheus-client-golang") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/client_golang") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1r0irxkmfnj6ininb06w6ybknini5lz02idawrbkk2i5lq1qcvvf")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/client_golang")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190801041406-cbf593c0f2f3" +; ,go-golang-org-x-sys-0.0.0-20190801041406-cbf593c0f2f3) +; ("go-github-com-prometheus-procfs-0.0.3" +; ,go-github-com-prometheus-procfs-0.0.3) +; ("go-github-com-prometheus-common-0.6.0" +; ,go-github-com-prometheus-common-0.6.0) +; ("go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90" +; ,go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90) +; ("go-github-com-json-iterator-go-1.1.7" +; ,go-github-com-json-iterator-go-1.1.7) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2) +; ("go-github-com-beorn7-perks-1.0.1" +; ,go-github-com-beorn7-perks-1.0.1))) +; (home-page "https://github.com/prometheus/client_golang") +; (synopsis "Prometheus Go client library") +; (description +; "This is the @url{http://golang.org,Go} client library for +;@url{http://prometheus.io,Prometheus}. It has two separate parts, one for +;instrumenting application code, and one for creating clients that talk to the +;Prometheus HTTP API.") +; (license license:asl2.0))) +; +;(define-public go-github-com-docker-go-metrics-0.0.1 +; (package +; (name "go-github-com-docker-go-metrics") +; (version "0.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/docker/go-metrics") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1b6f1889chmwlsgrqxylnks2jic16j2dqhsdd1dvaklk48ky95ga")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/docker/go-metrics")) +; (propagated-inputs +; `(("go-github-com-prometheus-client-golang-1.1.0" +; ,go-github-com-prometheus-client-golang-1.1.0))) +; (home-page "https://github.com/docker/go-metrics") +; (synopsis "go-metrics") +; (description +; "This package is small wrapper around the prometheus go client to help enforce convention and best practices for metrics collection in Docker projects.") +; (license (list license:asl2.0 license:cc-by-sa4.0)))) +; +;(define-public go-github-com-hashicorp-go-multierror-1.0.0 +; (package +; (name "go-github-com-hashicorp-go-multierror") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/go-multierror") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "00nyn8llqzbfm8aflr9kwsvpzi4kv8v45c141v88xskxp5xf6z49")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hashicorp/go-multierror")) +; (propagated-inputs +; `(("go-github-com-hashicorp-errwrap-1.0.0" +; ,go-github-com-hashicorp-errwrap-1.0.0))) +; (home-page "https://github.com/hashicorp/go-multierror") +; (synopsis "go-multierror") +; (description +; "@code{go-multierror} is a package for Go that provides a mechanism for +;representing a list of @code{error} values as a single @code{error}.") +; (license license:mpl2.0))) +; +;(define-public go-github-com-klauspost-compress-1.11.13 +; (package +; (name "go-github-com-klauspost-compress") +; (version "1.11.13") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/klauspost/compress") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19l2rbh6vg0ly4qp2gn5lf39ijggf7asav7lxziikkhjqqb4223j")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/klauspost/compress")) +; (home-page "https://github.com/klauspost/compress") +; (synopsis "compress") +; (description "This package provides various compression algorithms.") +; (license #f))) +; +;(define-public go-github-com-moby-locker-1.0.1 +; (package +; (name "go-github-com-moby-locker") +; (version "1.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/moby/locker") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "07rc2c6h35f9mcy81jp382a030f6xmcifi9n5jnlayybfwxmpjir")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/moby/locker")) +; (home-page "https://github.com/moby/locker") +; (synopsis "Locker") +; (description +; "Package locker provides a mechanism for creating finer-grained locking to help +;free up more global locks to handle other tasks. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-pelletier-go-toml-1.8.1 +; (package +; (name "go-github-com-pelletier-go-toml") +; (version "1.8.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/pelletier/go-toml") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1pi1r9ds0vxjza4qrbk52y98wxrzh1ghwzc9c2v1w6i02pdwdcz9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/pelletier/go-toml")) +; (propagated-inputs +; `(("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://github.com/pelletier/go-toml") +; (synopsis "go-toml") +; (description "Package toml is a TOML parser and manipulation library. +;") +; (license #f))) +; +;(define-public go-github-com-prometheus-procfs-0.6.0 +; (package +; (name "go-github-com-prometheus-procfs") +; (version "0.6.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/procfs") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0czzw37dq0sfq7rivxmxxw5hy287grqnng6q6hfz6mkqmhqgm1m6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/procfs")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" +; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) +; ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" +; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) +; ("go-github-com-google-go-cmp-0.5.4" +; ,go-github-com-google-go-cmp-0.5.4))) +; (home-page "https://github.com/prometheus/procfs") +; (synopsis "procfs") +; (description +; "Package procfs provides functions to retrieve system, kernel and process +;metrics from the pseudo-filesystem proc. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-satori-go-uuid-1.2.0 +; (package +; (name "go-github-com-satori-go-uuid") +; (version "1.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/satori/go.uuid") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1j4s5pfg2ldm35y8ls8jah4dya2grfnx2drb4jcbjsyrp4cm5yfb")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/satori/go.uuid")) +; (home-page "https://github.com/satori/go.uuid") +; (synopsis "UUID package for Go language") +; (description +; "Package uuid provides implementation of Universally Unique Identifier (UUID). +;Supported versions are 1, 3, 4 and 5 (as specified in @url{https://rfc-editor.org/rfc/rfc4122.html,RFC 4122}) and +;version 2 (as specified in DCE 1.1). +;") +; (license license:expat))) +; +;(define-public go-github-com-tchap-go-patricia-2.2.6+incompatible +; (package +; (name "go-github-com-tchap-go-patricia") +; (version "2.2.6+incompatible") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/tchap/go-patricia") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1yy1s3pnll52iyzphwi50drvz36lx628vn3xfy5ld29fxqngrckb")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/tchap/go-patricia")) +; (home-page "https://github.com/tchap/go-patricia") +; (synopsis "go-patricia") +; (description +; "@strong{Documentation}: @url{http://godoc.org/github.com/tchap/go-patricia/patricia,GoDoc} +;@strong{Test Coverage}: @url{https://coveralls.io/r/tchap/go-patricia,(img (@ (src https://coveralls.io/repos/tchap/go-patricia/badge.png) (alt CoverageStatus)))}") +; (license license:expat))) +; +;(define-public go-github-com-coreos-go-oidc-2.1.0+incompatible +; (package +; (name "go-github-com-coreos-go-oidc") +; (version "2.1.0+incompatible") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/coreos/go-oidc") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0y9vxack1whvxy766jrc6xhh2rfkvnznwxi356si2kabzjv2lp6h")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/coreos/go-oidc")) +; (home-page "https://github.com/coreos/go-oidc") +; (synopsis "go-oidc") +; (description +; "Package oidc implements OpenID Connect client logic for the golang.org/x/oauth2 package. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-coreos-go-semver-0.3.0 +; (package +; (name "go-github-com-coreos-go-semver") +; (version "0.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/coreos/go-semver") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0770h1mpig2j5sbiha3abnwaw8p6dg9i87r8pc7cf6m4kwml3sc9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/coreos/go-semver")) +; (home-page "https://github.com/coreos/go-semver") +; (synopsis "go-semver - Semantic Versioning Library") +; (description +; "go-semver is a @url{http://semver.org/,semantic versioning} library for Go. It lets you parse +;and compare two semantic version strings.") +; (license license:asl2.0))) +; +;(define-public go-github-com-emicklei-go-restful-2.9.5+incompatible +; (package +; (name "go-github-com-emicklei-go-restful") +; (version "2.9.5+incompatible") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/emicklei/go-restful") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0258y7q2krih98zznc4jsym9mf689afn6nsnsif1jhshrj653k36")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/emicklei/go-restful")) +; (home-page "https://github.com/emicklei/go-restful") +; (synopsis "go-restful") +; (description +; "Package restful , a lean package for creating REST-style WebServices without magic. +;") +; (license license:expat))) +; +;(define-public go-github-com-gorilla-websocket-1.4.2 +; (package +; (name "go-github-com-gorilla-websocket") +; (version "1.4.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/gorilla/websocket") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0mkm9w6kjkrlzab5wh8p4qxkc0icqawjbvr01d2nk6ykylrln40s")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/gorilla/websocket")) +; (home-page "https://github.com/gorilla/websocket") +; (synopsis "Gorilla WebSocket") +; (description +; "Package websocket implements the WebSocket protocol defined in @url{https://rfc-editor.org/rfc/rfc6455.html,RFC 6455}. +;") +; (license license:bsd-2))) +; +;(define-public go-github-com-mailru-easyjson-0.7.0 +; (package +; (name "go-github-com-mailru-easyjson") +; (version "0.7.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mailru/easyjson") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "13zv5fvjp3nr65lhqhiw6i6mlmqvyls882rlmcas0ab35alsxni8")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mailru/easyjson")) +; (home-page "https://github.com/mailru/easyjson") +; (synopsis "easyjson") +; (description +; "Package easyjson contains marshaler/unmarshaler interfaces and helper functions. +;") +; (license license:expat))) +; +;(define-public go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822 +; (package +; (name "go-github-com-munnerz-goautoneg") +; (version "0.0.0-20191010083416-a7dc8b61c822") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/munnerz/goautoneg") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1m4v6bw6yf1g0kvpc46isjp0qfhx2y8gnvlnyjf637jy64613mgg")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/munnerz/goautoneg")) +; (home-page "https://github.com/munnerz/goautoneg") +; (synopsis #f) +; (description #f) +; (license license:bsd-3))) +; +;(define-public go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021 +; (package +; (name "go-github-com-pquerna-cachecontrol") +; (version "0.0.0-20171018203845-0dec1b30a021") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/pquerna/cachecontrol") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "14yyfhrv60rvb983rqm7s916nwvn9kcmbvnrcna2md0s3mkzs3yh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/pquerna/cachecontrol")) +; (home-page "https://github.com/pquerna/cachecontrol") +; (synopsis "cachecontrol: HTTP Caching Parser and Interpretation") +; (description +; "Package cachecontrol implements the logic for HTTP Caching +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-sys-0.0.0-20200202164722-d101bd2416d5 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20200202164722-d101bd2416d5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ksxf37b0ym21n8j29m3wgbaiw1kcjw3hgf88kipc1ry2j13l98p")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-go-etcd-io-bbolt-1.3.5 +; (package +; (name "go-go-etcd-io-bbolt") +; (version "1.3.5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/etcd-io/bbolt") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1h64gipvcg7060byv5wjlf524kqwj12p3v08kfh4ygv46vpm8p2r")))) +; (build-system go-build-system) +; (arguments '(#:import-path "go.etcd.io/bbolt")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20200202164722-d101bd2416d5" +; ,go-golang-org-x-sys-0.0.0-20200202164722-d101bd2416d5))) +; (home-page "https://go.etcd.io/bbolt") +; (synopsis "bbolt") +; (description +; "package bbolt implements a low-level key/value store in pure Go. It supports +;fully serializable transactions, ACID semantics, and lock-free MVCC with +;multiple readers and a single writer. Bolt can be used for projects that +;want a simple data store without the need to add large dependencies such as +;Postgres or MySQL. +;") +; (license license:expat))) +; +;(define-public go-github-com-bgentry-speakeasy-0.1.0 +; (package +; (name "go-github-com-bgentry-speakeasy") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/bgentry/speakeasy") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "02dfrj0wyphd3db9zn2mixqxwiz1ivnyc5xc7gkz58l5l27nzp8s")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/bgentry/speakeasy")) +; (home-page "https://github.com/bgentry/speakeasy") +; (synopsis "Speakeasy") +; (description +; "This package provides cross-platform Go (#golang) helpers for taking user input +;from the terminal while not echoing the input back (similar to @code{getpasswd}). The +;package uses syscalls to avoid any dependence on cgo, and is therefore +;compatible with cross-compiling.") +; (license license:expat))) +; +;(define-public go-github-com-cockroachdb-datadriven-0.0.0-20190809214429-80d97fb3cbaa +; (package +; (name "go-github-com-cockroachdb-datadriven") +; (version "0.0.0-20190809214429-80d97fb3cbaa") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/cockroachdb/datadriven") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0rvavka9zhri6r50n8fy98247fl5vycb1hffjrhshsicjv1frmlp")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/cockroachdb/datadriven")) +; (home-page "https://github.com/cockroachdb/datadriven") +; (synopsis "Data-Driven Tests for Go") +; (description +; "This repository implements an extension of @url{https://github.com/golang/go/wiki/TableDrivenTests,Table-Driven Testing}. Instead of +;building and iterating over a table in the test code, the input is further +;separated into files (or inline strings). For certain classes of tests, this +;can significantly reduce the friction involved in writing and reading these +;tests.") +; (license license:asl2.0))) +; +;(define-public go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7 +; (package +; (name "go-github-com-coreos-go-systemd") +; (version "0.0.0-20180511133405-39ca1b05acc7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/coreos/go-systemd") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1kzqrrzqspa5qm7kwslxl3m16lqzns23c24rv474ajzwmj3ixmx1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/coreos/go-systemd")) +; (home-page "https://github.com/coreos/go-systemd") +; (synopsis "go-systemd") +; (description "Go bindings to systemd. The project has several packages:") +; (license license:asl2.0))) +; +;(define-public go-github-com-coreos-pkg-0.0.0-20160727233714-3ac0863d7acf +; (package +; (name "go-github-com-coreos-pkg") +; (version "0.0.0-20160727233714-3ac0863d7acf") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/coreos/pkg") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0l5ans1ls2gknkrnhymgc0zbgg5nqjbjbqc51r611adcr0m6gg8l")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/coreos/pkg")) +; (home-page "https://github.com/coreos/pkg") +; (synopsis #f) +; (description "a collection of go utility packages") +; (license license:asl2.0))) +; +;(define-public go-github-com-creack-pty-1.1.7 +; (package +; (name "go-github-com-creack-pty") +; (version "1.1.7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/creack/pty") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1plwwlk1i9b80zv8zdplvv81shfyc9gf0flydnydsh5sr3ib5vrc")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/creack/pty")) +; (home-page "https://github.com/creack/pty") +; (synopsis "pty") +; (description +; "Package pty provides functions for working with Unix terminals. +;") +; (license license:expat))) +; +;(define-public go-github-com-dustin-go-humanize-0.0.0-20171111073723-bb3d318650d4 +; (package +; (name "go-github-com-dustin-go-humanize") +; (version "0.0.0-20171111073723-bb3d318650d4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/dustin/go-humanize") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1lqd8ix3cb164j5iazjby2jpa6bdsflhy0h9mi4yldvvcvrc194c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/dustin/go-humanize")) +; (home-page "https://github.com/dustin/go-humanize") +; (synopsis "Humane Units") +; (description +; "Package humanize converts boring ugly numbers to human-friendly strings and back. +;") +; (license license:expat))) +; +;(define-public go-github-com-fatih-color-1.7.0 +; (package +; (name "go-github-com-fatih-color") +; (version "1.7.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/fatih/color") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0v8msvg38r8d1iiq2i5r4xyfx0invhc941kjrsg5gzwvagv55inv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/fatih/color")) +; (home-page "https://github.com/fatih/color") +; (synopsis "color") +; (description +; "Package color is an ANSI color package to output colorized or SGR defined +;output to the standard output. The API can be used in several way, pick one +;that suits you. +;") +; (license license:expat))) +; +;(define-public go-github-com-golang-groupcache-0.0.0-20160516000752-02826c3e7903 +; (package +; (name "go-github-com-golang-groupcache") +; (version "0.0.0-20160516000752-02826c3e7903") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/groupcache") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0w46bsllddfij66nrg8jbfjsr54birvfww8a2fj9fmgyig5syn2x")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/groupcache")) +; (home-page "https://github.com/golang/groupcache") +; (synopsis "groupcache") +; (description +; "Package groupcache provides a data loading mechanism with caching +;and de-duplication that works across a set of peer processes. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-google-uuid-1.0.0 +; (package +; (name "go-github-com-google-uuid") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/uuid") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1922bjrnx66692dm0rrc1ckmznsaqx920ww4jzsds3xzrwf15mqv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/uuid")) +; (home-page "https://github.com/google/uuid") +; (synopsis "uuid") +; (description "Package uuid generates and inspects UUIDs. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-gorilla-websocket-0.0.0-20170926233335-4201258b820c +; (package +; (name "go-github-com-gorilla-websocket") +; (version "0.0.0-20170926233335-4201258b820c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/gorilla/websocket") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1kpdg3m46kp15ixl9ahhchhadyiblz0qpcxzylp8jhffc1rnxjb7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/gorilla/websocket")) +; (home-page "https://github.com/gorilla/websocket") +; (synopsis "Gorilla WebSocket") +; (description +; "Package websocket implements the WebSocket protocol defined in @url{https://rfc-editor.org/rfc/rfc6455.html,RFC 6455}. +;") +; (license license:bsd-2))) +; +;(define-public go-github-com-grpc-ecosystem-go-grpc-middleware-1.0.1-0.20190118093823-f849b5445de4 +; (package +; (name "go-github-com-grpc-ecosystem-go-grpc-middleware") +; (version "1.0.1-0.20190118093823-f849b5445de4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc-ecosystem/go-grpc-middleware") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0hscypgj0nd1407jp6y4qrnrr0mrhc4wgxz9b3mj1cs3pkvi61vc")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/grpc-ecosystem/go-grpc-middleware")) +; (home-page "https://github.com/grpc-ecosystem/go-grpc-middleware") +; (synopsis "Go gRPC Middleware") +; (description +; "`grpc_middleware` is a collection of gRPC middleware packages: interceptors, helpers and tools. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-grpc-ecosystem-grpc-gateway-1.9.5 +; (package +; (name "go-github-com-grpc-ecosystem-grpc-gateway") +; (version "1.9.5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc-ecosystem/grpc-gateway") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0acpbxa1i1bxcpkclkcif2macbcfrlywb58vly5pzwsj261mg58a")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/grpc-ecosystem/grpc-gateway")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.0.0-20170812160011-eb3733d160e7" +; ,go-gopkg-in-yaml-v2-2.0.0-20170812160011-eb3733d160e7) +; ("go-gopkg-in-resty-v1-1.12.0" ,go-gopkg-in-resty-v1-1.12.0) +; ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" +; ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) +; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) +; ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" +; ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) +; ("go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8" +; ,go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8) +; ("go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3" +; ,go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3) +; ("go-github-com-rogpeppe-fastuuid-0.0.0-20150106093220-6724a57986af" +; ,go-github-com-rogpeppe-fastuuid-0.0.0-20150106093220-6724a57986af) +; ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-ghodss-yaml-1.0.0" ,go-github-com-ghodss-yaml-1.0.0))) +; (home-page "https://github.com/grpc-ecosystem/grpc-gateway") +; (synopsis "grpc-gateway") +; (description +; "The grpc-gateway is a plugin of the Google protocol buffers compiler +;@url{https://github.com/protocolbuffers/protobuf,protoc}. +;It reads protobuf service definitions and generates a reverse-proxy server which +;translates a RESTful HTTP API into gRPC. This server is generated according to the +;@url{https://github.com/googleapis/googleapis/raw/master/google/api/http.proto#L46,(code google.api.http)} +;annotations in your service definitions.") +; (license license:bsd-3))) +; +;(define-public go-github-com-json-iterator-go-1.1.7 +; (package +; (name "go-github-com-json-iterator-go") +; (version "1.1.7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/json-iterator/go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0n79p4s67zl5zprxv7diayw3vavnmmfqkmd6snz0i9bxp825dsyz")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/json-iterator/go")) +; (propagated-inputs +; `(("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0) +; ("go-github-com-modern-go-reflect2-0.0.0-20180701023420-4b7aa43c6742" +; ,go-github-com-modern-go-reflect2-0.0.0-20180701023420-4b7aa43c6742) +; ("go-github-com-modern-go-concurrent-0.0.0-20180228061459-e0a39a4cb421" +; ,go-github-com-modern-go-concurrent-0.0.0-20180228061459-e0a39a4cb421) +; ("go-github-com-google-gofuzz-1.0.0" +; ,go-github-com-google-gofuzz-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://github.com/json-iterator/go") +; (synopsis "Benchmark") +; (description +; "Package jsoniter implements encoding and decoding of JSON as defined in +;@url{https://rfc-editor.org/rfc/rfc4627.html,RFC 4627} and provides interfaces with identical syntax of standard lib encoding/json. +;Converting from encoding/json to jsoniter is no more than replacing the package with jsoniter +;and variable type declarations (if any). +;jsoniter interfaces gives 100% compatibility with code using standard lib. +;") +; (license license:expat))) +; +;(define-public go-github-com-mattn-go-colorable-0.0.9 +; (package +; (name "go-github-com-mattn-go-colorable") +; (version "0.0.9") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mattn/go-colorable") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1nwjmsppsjicr7anq8na6md7b1z84l9ppnlr045hhxjvbkqwalvx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mattn/go-colorable")) +; (home-page "https://github.com/mattn/go-colorable") +; (synopsis "go-colorable") +; (description "Colorable writer for windows.") +; (license license:expat))) +; +;(define-public go-github-com-mattn-go-isatty-0.0.4 +; (package +; (name "go-github-com-mattn-go-isatty") +; (version "0.0.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mattn/go-isatty") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0zs92j2cqaw9j8qx1sdxpv3ap0rgbs0vrvi72m40mg8aa36gd39w")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mattn/go-isatty")) +; (home-page "https://github.com/mattn/go-isatty") +; (synopsis "go-isatty") +; (description "Package isatty implements interface to isatty +;") +; (license license:expat))) +; +;(define-public go-github-com-mattn-go-runewidth-0.0.2 +; (package +; (name "go-github-com-mattn-go-runewidth") +; (version "0.0.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mattn/go-runewidth") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0vkrfrz3fzn5n6ix4k8s0cg0b448459sldq8bp4riavsxm932jzb")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mattn/go-runewidth")) +; (home-page "https://github.com/mattn/go-runewidth") +; (synopsis "go-runewidth") +; (description +; "This package provides functions to get fixed width of the character or string.") +; (license license:expat))) +; +;(define-public go-github-com-olekukonko-tablewriter-0.0.0-20170122224234-a0225b3f23b5 +; (package +; (name "go-github-com-olekukonko-tablewriter") +; (version "0.0.0-20170122224234-a0225b3f23b5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/olekukonko/tablewriter") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0bp9r6xzy6d3p7l2hjmvr25y3rp3p8c9xv1agkllkksm45ng6681")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/olekukonko/tablewriter")) +; (home-page "https://github.com/olekukonko/tablewriter") +; (synopsis "ASCII Table Writer") +; (description "Create & Generate text based table +;") +; (license license:expat))) +; +;(define-public go-github-com-spf13-cobra-0.0.3 +; (package +; (name "go-github-com-spf13-cobra") +; (version "0.0.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/spf13/cobra") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1q1nsx05svyv9fv3fy6xv6gs9ffimkyzsfm49flvl3wnvf1ncrkd")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/spf13/cobra")) +; (home-page "https://github.com/spf13/cobra") +; (synopsis "Table of Contents") +; (description +; "Package cobra is a commander providing a simple interface to create powerful modern CLI interfaces. +;In addition to providing an interface, Cobra simultaneously provides a controller to organize your application code. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-spf13-pflag-1.0.1 +; (package +; (name "go-github-com-spf13-pflag") +; (version "1.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/spf13/pflag") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0nr4mdpfhhk94hq4ymn5b2sxc47b29p1akxd8b0hx4dvdybmipb5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/spf13/pflag")) +; (home-page "https://github.com/spf13/pflag") +; (synopsis "Description") +; (description +; "Package pflag is a drop-in replacement for Go's flag package, implementing +;POSIX/GNU-style --flags. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-tmc-grpc-websocket-proxy-0.0.0-20170815181823-89b8d40f7ca8 +; (package +; (name "go-github-com-tmc-grpc-websocket-proxy") +; (version "0.0.0-20170815181823-89b8d40f7ca8") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/tmc/grpc-websocket-proxy") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1bg6m0cycy5sww175zkbnhi9lvzb08iicc8xka8klrgaa9mc5nsk")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/tmc/grpc-websocket-proxy")) +; (home-page "https://github.com/tmc/grpc-websocket-proxy") +; (synopsis "grpc-websocket-proxy") +; (description +; "Wrap your grpc-gateway mux with this helper to expose streaming endpoints over websockets.") +; (license license:expat))) +; +;(define-public go-github-com-urfave-cli-1.20.0 +; (package +; (name "go-github-com-urfave-cli") +; (version "1.20.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/urfave/cli") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0y6f4sbzkiiwrxbl15biivj8c7qwxnvm3zl2dd3mw4wzg4x10ygj")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/urfave/cli")) +; (home-page "https://github.com/urfave/cli") +; (synopsis "cli") +; (description +; "Package cli provides a minimal framework for creating and organizing command line +;Go applications. cli is designed to be easy to understand and write, the most simple +;cli application can be written as follows: +;") +; (license license:expat))) +; +;(define-public go-go-etcd-io-bbolt-1.3.3 +; (package +; (name "go-go-etcd-io-bbolt") +; (version "1.3.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/etcd-io/bbolt") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0dn0zngks9xiz0rrrb3911f73ghl64z84jsmzai2yfmzqr7cdkqc")))) +; (build-system go-build-system) +; (arguments '(#:import-path "go.etcd.io/bbolt")) +; (home-page "https://go.etcd.io/bbolt") +; (synopsis "bbolt") +; (description +; "package bbolt implements a low-level key/value store in pure Go. It supports +;fully serializable transactions, ACID semantics, and lock-free MVCC with +;multiple readers and a single writer. Bolt can be used for projects that +;want a simple data store without the need to add large dependencies such as +;Postgres or MySQL. +;") +; (license license:expat))) +; +;(define-public go-go-uber-org-atomic-1.3.2 +; (package +; (name "go-go-uber-org-atomic") +; (version "1.3.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/uber-go/atomic") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "11pzvjys5ddjjgrv94pgk9pnip9yyb54z7idf33zk7p7xylpnsv6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "go.uber.org/atomic")) +; (home-page "https://go.uber.org/atomic") +; (synopsis "atomic") +; (description +; "Package atomic provides simple wrappers around numerics to enforce atomic +;access. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-net-0.0.0-20190813141303-74dc4d7220e7 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190813141303-74dc4d7220e7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0563yswwqknxx2gsvl0qikn0lmwalilbng8i12iw4d3v40n23s0l")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190826190057-c7b8b68b1456 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190826190057-c7b8b68b1456") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0lqnnrx5prrvkinnhgyvzzhcyvi8x5w54rlp336xjhpslkgqn132")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-time-0.0.0-20180412165947-fbb02b2291d2 +; (package +; (name "go-golang-org-x-time") +; (version "0.0.0-20180412165947-fbb02b2291d2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/time") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0jjqcv6rzihlgg4i797q80g1f6ch5diz2kxqh6488gwkb6nds4h4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/time")) +; (home-page "https://golang.org/x/time") +; (synopsis "Go Time") +; (description "This repository provides supplementary Go time packages.") +; (license license:bsd-3))) +; +;(define-public go-gopkg-in-cheggaaa-pb-v1-1.0.25 +; (package +; (name "go-gopkg-in-cheggaaa-pb-v1") +; (version "1.0.25") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/cheggaaa/pb.v1") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0vxqiw6f3xyv0zy3g4lksf8za0z8i0hvfpw92hqimsy84f79j3dp")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path +; "gopkg.in/cheggaaa/pb.v1" +; #:unpack-path +; "gopkg.in/cheggaaa/pb.v1")) +; (home-page "https://gopkg.in/cheggaaa/pb.v1") +; (synopsis "Terminal progress bar for Go") +; (description "Simple console progress bars +;") +; (license license:bsd-3))) +; +;(define-public go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489 +; (package +; (name "go-go-etcd-io-etcd") +; (version "0.5.0-alpha.5.0.20200910180754-dd1b699fc489") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/etcd-io/etcd") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "11zkvkq7ipqi0n8y05zgn8lf7qm59xdk75x7jbxj5sflx38yfa0k")))) +; (build-system go-build-system) +; (arguments '(#:import-path "go.etcd.io/etcd")) +; (propagated-inputs +; `(("go-sigs-k8s-io-yaml-1.1.0" ,go-sigs-k8s-io-yaml-1.1.0) +; ("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" +; ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) +; ("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) +; ("go-gopkg-in-cheggaaa-pb-v1-1.0.25" +; ,go-gopkg-in-cheggaaa-pb-v1-1.0.25) +; ("go-google-golang-org-grpc-1.26.0" ,go-google-golang-org-grpc-1.26.0) +; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" +; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) +; ("go-golang-org-x-time-0.0.0-20180412165947-fbb02b2291d2" +; ,go-golang-org-x-time-0.0.0-20180412165947-fbb02b2291d2) +; ("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) +; ("go-golang-org-x-sys-0.0.0-20190826190057-c7b8b68b1456" +; ,go-golang-org-x-sys-0.0.0-20190826190057-c7b8b68b1456) +; ("go-golang-org-x-net-0.0.0-20190813141303-74dc4d7220e7" +; ,go-golang-org-x-net-0.0.0-20190813141303-74dc4d7220e7) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2) +; ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) +; ("go-go-uber-org-multierr-1.1.0" ,go-go-uber-org-multierr-1.1.0) +; ("go-go-uber-org-atomic-1.3.2" ,go-go-uber-org-atomic-1.3.2) +; ("go-go-etcd-io-bbolt-1.3.3" ,go-go-etcd-io-bbolt-1.3.3) +; ("go-github-com-xiang90-probing-0.0.0-20190116061207-43a291ad63a2" +; ,go-github-com-xiang90-probing-0.0.0-20190116061207-43a291ad63a2) +; ("go-github-com-urfave-cli-1.20.0" ,go-github-com-urfave-cli-1.20.0) +; ("go-github-com-tmc-grpc-websocket-proxy-0.0.0-20170815181823-89b8d40f7ca8" +; ,go-github-com-tmc-grpc-websocket-proxy-0.0.0-20170815181823-89b8d40f7ca8) +; ("go-github-com-spf13-pflag-1.0.1" ,go-github-com-spf13-pflag-1.0.1) +; ("go-github-com-spf13-cobra-0.0.3" ,go-github-com-spf13-cobra-0.0.3) +; ("go-github-com-soheilhy-cmux-0.1.4" +; ,go-github-com-soheilhy-cmux-0.1.4) +; ("go-github-com-sirupsen-logrus-1.4.2" +; ,go-github-com-sirupsen-logrus-1.4.2) +; ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" +; ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) +; ("go-github-com-prometheus-client-golang-1.0.0" +; ,go-github-com-prometheus-client-golang-1.0.0) +; ("go-github-com-olekukonko-tablewriter-0.0.0-20170122224234-a0225b3f23b5" +; ,go-github-com-olekukonko-tablewriter-0.0.0-20170122224234-a0225b3f23b5) +; ("go-github-com-modern-go-reflect2-1.0.1" +; ,go-github-com-modern-go-reflect2-1.0.1) +; ("go-github-com-mattn-go-runewidth-0.0.2" +; ,go-github-com-mattn-go-runewidth-0.0.2) +; ("go-github-com-mattn-go-isatty-0.0.4" +; ,go-github-com-mattn-go-isatty-0.0.4) +; ("go-github-com-mattn-go-colorable-0.0.9" +; ,go-github-com-mattn-go-colorable-0.0.9) +; ("go-github-com-json-iterator-go-1.1.7" +; ,go-github-com-json-iterator-go-1.1.7) +; ("go-github-com-jonboulle-clockwork-0.1.0" +; ,go-github-com-jonboulle-clockwork-0.1.0) +; ("go-github-com-inconshreveable-mousetrap-1.0.0" +; ,go-github-com-inconshreveable-mousetrap-1.0.0) +; ("go-github-com-grpc-ecosystem-grpc-gateway-1.9.5" +; ,go-github-com-grpc-ecosystem-grpc-gateway-1.9.5) +; ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" +; ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) +; ("go-github-com-grpc-ecosystem-go-grpc-middleware-1.0.1-0.20190118093823-f849b5445de4" +; ,go-github-com-grpc-ecosystem-go-grpc-middleware-1.0.1-0.20190118093823-f849b5445de4) +; ("go-github-com-gorilla-websocket-0.0.0-20170926233335-4201258b820c" +; ,go-github-com-gorilla-websocket-0.0.0-20170926233335-4201258b820c) +; ("go-github-com-google-uuid-1.0.0" ,go-github-com-google-uuid-1.0.0) +; ("go-github-com-google-btree-1.0.0" ,go-github-com-google-btree-1.0.0) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2) +; ("go-github-com-golang-groupcache-0.0.0-20160516000752-02826c3e7903" +; ,go-github-com-golang-groupcache-0.0.0-20160516000752-02826c3e7903) +; ("go-github-com-gogo-protobuf-1.2.1" +; ,go-github-com-gogo-protobuf-1.2.1) +; ("go-github-com-fatih-color-1.7.0" ,go-github-com-fatih-color-1.7.0) +; ("go-github-com-dustin-go-humanize-0.0.0-20171111073723-bb3d318650d4" +; ,go-github-com-dustin-go-humanize-0.0.0-20171111073723-bb3d318650d4) +; ("go-github-com-dgrijalva-jwt-go-3.2.0+incompatible" +; ,go-github-com-dgrijalva-jwt-go-3.2.0+incompatible) +; ("go-github-com-creack-pty-1.1.7" ,go-github-com-creack-pty-1.1.7) +; ("go-github-com-coreos-pkg-0.0.0-20160727233714-3ac0863d7acf" +; ,go-github-com-coreos-pkg-0.0.0-20160727233714-3ac0863d7acf) +; ("go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7" +; ,go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7) +; ("go-github-com-coreos-go-semver-0.2.0" +; ,go-github-com-coreos-go-semver-0.2.0) +; ("go-github-com-cockroachdb-datadriven-0.0.0-20190809214429-80d97fb3cbaa" +; ,go-github-com-cockroachdb-datadriven-0.0.0-20190809214429-80d97fb3cbaa) +; ("go-github-com-bgentry-speakeasy-0.1.0" +; ,go-github-com-bgentry-speakeasy-0.1.0))) +; (home-page "https://go.etcd.io/etcd") +; (synopsis "etcd") +; (description +; "Package main is a simple wrapper of the real etcd entrypoint package +;(located at github.com/coreos/etcd/etcdmain) to ensure that etcd is still +;\"go getable\"; e.g. `go get github.com/coreos/etcd` works as expected and +;builds a binary in $GOBIN/etcd +;") +; (license license:asl2.0))) +; +;(define-public go-gopkg-in-natefinch-lumberjack-v2-2.0.0 +; (package +; (name "go-gopkg-in-natefinch-lumberjack-v2") +; (version "2.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/natefinch/lumberjack.v2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1m2sxypk7p805jvc68padvylyx5v7cwkh5klnnxxr0340kgspf08")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path +; "gopkg.in/natefinch/lumberjack.v2" +; #:unpack-path +; "gopkg.in/natefinch/lumberjack.v2")) +; (home-page "https://gopkg.in/natefinch/lumberjack.v2") +; (synopsis "lumberjack") +; (description "Package lumberjack provides a rolling logger. +;") +; (license license:expat))) +; +;(define-public go-gopkg-in-square-go-jose-v2-2.2.2 +; (package +; (name "go-gopkg-in-square-go-jose-v2") +; (version "2.2.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/square/go-jose.v2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1cpvfqw7pw8m8wfj8nda4kam0z48q3gp6b9a3a0wr90zv9ldszbv")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path +; "gopkg.in/square/go-jose.v2" +; #:unpack-path +; "gopkg.in/square/go-jose.v2")) +; (home-page "https://gopkg.in/square/go-jose.v2") +; (synopsis "Go JOSE") +; (description +; "Package jose aims to provide an implementation of the Javascript Object Signing +;and Encryption set of standards. It implements encryption and signing based on +;the JSON Web Encryption and JSON Web Signature standards, with optional JSON +;Web Token support available in a sub-package. The library supports both the +;compact and full serialization formats, and has optional support for multiple +;recipients. +;") +; (license license:asl2.0))) +; +;(define-public go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.15 +; (package +; (name "go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client") +; (version "0.0.15") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes-sigs/apiserver-network-proxy") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "00ad9yjr3g1pj118xy063z7rnydkilqmvz9xf89vdva2kjqd7fal")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path +; "sigs.k8s.io/apiserver-network-proxy/konnectivity-client")) +; (propagated-inputs +; `(("go-k8s-io-klog-v2-2.0.0" ,go-k8s-io-klog-v2-2.0.0) +; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) +; ("go-github-com-golang-protobuf-1.4.0" +; ,go-github-com-golang-protobuf-1.4.0))) +; (home-page +; "https://sigs.k8s.io/apiserver-network-proxy/konnectivity-client") +; (synopsis #f) +; (description #f) +; (license license:asl2.0))) +; +;(define-public go-k8s-io-apiserver-0.20.6 +; (package +; (name "go-k8s-io-apiserver") +; (version "0.20.6") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes/apiserver") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0b53aw2cp9i2v5kg1m2s5kwkz7525ii8vs1g7d8yc2j980aar9y3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "k8s.io/apiserver")) +; (propagated-inputs +; `(("go-k8s-io-component-base-0.20.6" ,go-k8s-io-component-base-0.20.6) +; ("go-k8s-io-client-go-0.20.6" ,go-k8s-io-client-go-0.20.6) +; ("go-k8s-io-apimachinery-0.20.6" ,go-k8s-io-apimachinery-0.20.6) +; ("go-k8s-io-api-0.20.6" ,go-k8s-io-api-0.20.6) +; ("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) +; ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.3" +; ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.3) +; ("go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.15" +; ,go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.15) +; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" +; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) +; ("go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd" +; ,go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd) +; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) +; ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) +; ("go-gopkg-in-square-go-jose-v2-2.2.2" +; ,go-gopkg-in-square-go-jose-v2-2.2.2) +; ("go-gopkg-in-natefinch-lumberjack-v2-2.0.0" +; ,go-gopkg-in-natefinch-lumberjack-v2-2.0.0) +; ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) +; ("go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a" +; ,go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a) +; ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" +; ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) +; ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" +; ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) +; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" +; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) +; ("go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0" +; ,go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0) +; ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) +; ("go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489" +; ,go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489) +; ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) +; ("go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5" +; ,go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) +; ("go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021" +; ,go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822" +; ,go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822) +; ("go-github-com-mailru-easyjson-0.7.0" +; ,go-github-com-mailru-easyjson-0.7.0) +; ("go-github-com-hashicorp-golang-lru-0.5.1" +; ,go-github-com-hashicorp-golang-lru-0.5.1) +; ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" +; ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) +; ("go-github-com-gorilla-websocket-1.4.2" +; ,go-github-com-gorilla-websocket-1.4.2) +; ("go-github-com-googleapis-gnostic-0.4.1" +; ,go-github-com-googleapis-gnostic-0.4.1) +; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) +; ("go-github-com-google-gofuzz-1.1.0" +; ,go-github-com-google-gofuzz-1.1.0) +; ("go-github-com-google-go-cmp-0.5.2" +; ,go-github-com-google-go-cmp-0.5.2) +; ("go-github-com-gogo-protobuf-1.3.2" +; ,go-github-com-gogo-protobuf-1.3.2) +; ("go-github-com-go-openapi-spec-0.19.3" +; ,go-github-com-go-openapi-spec-0.19.3) +; ("go-github-com-evanphx-json-patch-4.9.0+incompatible" +; ,go-github-com-evanphx-json-patch-4.9.0+incompatible) +; ("go-github-com-emicklei-go-restful-2.9.5+incompatible" +; ,go-github-com-emicklei-go-restful-2.9.5+incompatible) +; ("go-github-com-dustin-go-humanize-1.0.0" +; ,go-github-com-dustin-go-humanize-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1) +; ("go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f" +; ,go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f) +; ("go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e" +; ,go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e) +; ("go-github-com-coreos-go-semver-0.3.0" +; ,go-github-com-coreos-go-semver-0.3.0) +; ("go-github-com-coreos-go-oidc-2.1.0+incompatible" +; ,go-github-com-coreos-go-oidc-2.1.0+incompatible))) +; (home-page "https://k8s.io/apiserver") +; (synopsis "apiserver") +; (description +; "Generic library for building a Kubernetes aggregated API server.") +; (license license:asl2.0))) +; +;(define-public go-github-com-blang-semver-3.5.1+incompatible +; (package +; (name "go-github-com-blang-semver") +; (version "3.5.1+incompatible") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/blang/semver") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "13ws259bwcibkclbr82ilhk6zadm63kxklxhk12wayklj8ghhsmy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/blang/semver")) +; (home-page "https://github.com/blang/semver") +; (synopsis "semver for golang") +; (description +; "semver is a @url{http://semver.org/,Semantic Versioning} library written in golang. It fully covers spec version @code{2.0.0}.") +; (license license:expat))) +; +;(define-public go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369 +; (package +; (name "go-github-com-matttproud-golang-protobuf-extensions") +; (version "1.0.2-0.20181231171920-c182affec369") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/matttproud/golang_protobuf_extensions") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1xqsf9vpcrd4hp95rl6kgmjvkv1df4aicfw4l5vfcxcwxknfx2xs")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "github.com/matttproud/golang_protobuf_extensions")) +; (propagated-inputs +; `(("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" +; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0))) +; (home-page "https://github.com/matttproud/golang_protobuf_extensions") +; (synopsis "Overview") +; (description +; "This repository provides various Protocol Buffer extensions for the Go +;language (golang), namely support for record length-delimited message +;streaming.") +; (license license:asl2.0))) +; +;(define-public go-github-com-azure-go-ansiterm-0.0.0-20170929234023-d6e3b3328b78 +; (package +; (name "go-github-com-azure-go-ansiterm") +; (version "0.0.0-20170929234023-d6e3b3328b78") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/Azure/go-ansiterm") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "010khrkhkf9cxlvvb6ncqv4c1qcdmpbz9jn38g4fxf4xsma8xx1q")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/Azure/go-ansiterm")) +; (home-page "https://github.com/Azure/go-ansiterm") +; (synopsis "go-ansiterm") +; (description +; "This is a cross platform Ansi Terminal Emulation library. It reads a stream of Ansi characters and produces the appropriate function calls. The results of the function calls are platform dependent.") +; (license license:expat))) +; +;(define-public go-gotest-tools-v3-3.0.2 +; (package +; (name "go-gotest-tools-v3") +; (version "3.0.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/gotestyourself/gotest.tools") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0cap2aq2wphnbkkzkck5zdjxb64q3jqxfwpkgqys7279rbr8cvjm")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gotest.tools/v3" #:unpack-path "gotest.tools/v3")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20190624222133-a101b041ded4" +; ,go-golang-org-x-tools-0.0.0-20190624222133-a101b041ded4) +; ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) +; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) +; ("go-github-com-google-go-cmp-0.3.0" +; ,go-github-com-google-go-cmp-0.3.0))) +; (home-page "https://gotest.tools/v3") +; (synopsis "gotest.tools") +; (description +; "Package gotesttools is a collection of packages to augment `testing` and +;support common patterns. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd +; (package +; (name "go-github-com-moby-term") +; (version "0.0.0-20200312100748-672ec06f55cd") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/moby/term") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0xspasm3d101hmjsayrbx6az4r4ybbg5gkj13qybhpq674a6kkwn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/moby/term")) +; (propagated-inputs +; `(("go-gotest-tools-v3-3.0.2" ,go-gotest-tools-v3-3.0.2) +; ("go-gotest-tools-2.2.0+incompatible" +; ,go-gotest-tools-2.2.0+incompatible) +; ("go-golang-org-x-sys-0.0.0-20200302150141-5c8b2ff67527" +; ,go-golang-org-x-sys-0.0.0-20200302150141-5c8b2ff67527) +; ("go-github-com-sirupsen-logrus-1.4.2" +; ,go-github-com-sirupsen-logrus-1.4.2) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-google-go-cmp-0.3.1" +; ,go-github-com-google-go-cmp-0.3.1) +; ("go-github-com-azure-go-ansiterm-0.0.0-20170929234023-d6e3b3328b78" +; ,go-github-com-azure-go-ansiterm-0.0.0-20170929234023-d6e3b3328b78))) +; (home-page "https://github.com/moby/term") +; (synopsis "term - utilities for dealing with terminals") +; (description +; "Package term provides structures and helper functions to work with +;terminal (state, sizes). +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-beorn7-perks-1.0.1 +; (package +; (name "go-github-com-beorn7-perks") +; (version "1.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/beorn7/perks") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "17n4yygjxa6p499dj3yaqzfww2g7528165cl13haj97hlx94dgl7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/beorn7/perks")) +; (home-page "https://github.com/beorn7/perks") +; (synopsis "Perks for Go (golang.org)") +; (description +; "Perks contains the Go package quantile that computes approximate quantiles over +;an unbounded data stream within low memory and CPU bounds.") +; (license license:expat))) +; +;(define-public go-github-com-prometheus-procfs-0.1.3 +; (package +; (name "go-github-com-prometheus-procfs") +; (version "0.1.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/procfs") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "09wmlmvmjf49nchidqffc99wn6vl98v5k9qgyyrhqgv0015xskwa")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/procfs")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20200106162015-b016eb3dc98e" +; ,go-golang-org-x-sys-0.0.0-20200106162015-b016eb3dc98e) +; ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" +; ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) +; ("go-github-com-google-go-cmp-0.3.1" +; ,go-github-com-google-go-cmp-0.3.1))) +; (home-page "https://github.com/prometheus/procfs") +; (synopsis "procfs") +; (description +; "Package procfs provides functions to retrieve system, kernel and process +;metrics from the pseudo-filesystem proc. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-sys-0.0.0-20200615200032-f1bc736245b1 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20200615200032-f1bc736245b1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1fbmih4n2xw53qbpmc7msqf2660i4ryr0chbrsbj8mdalfrjr0vp")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-gopkg-in-yaml-v2-2.2.5 +; (package +; (name "go-gopkg-in-yaml-v2") +; (version "2.2.5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/yaml.v2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "08smz8dfyxp02ha74my9iszqa5qzgl3ksi28ilyp8lqipssiq6fg")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" +; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) +; (home-page "https://gopkg.in/yaml.v2") +; (synopsis "YAML support for the Go language") +; (description "Package yaml implements YAML support for the Go language. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-prometheus-client-golang-1.7.1 +; (package +; (name "go-github-com-prometheus-client-golang") +; (version "1.7.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/client_golang") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0i9wbwjq3idgp9y0vv7fvg6g7zrqi9qlfw915xc49ahw83q2h61w")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/client_golang")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.2.5" ,go-gopkg-in-yaml-v2-2.2.5) +; ("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" +; ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) +; ("go-golang-org-x-sys-0.0.0-20200615200032-f1bc736245b1" +; ,go-golang-org-x-sys-0.0.0-20200615200032-f1bc736245b1) +; ("go-github-com-stretchr-testify-1.4.0" +; ,go-github-com-stretchr-testify-1.4.0) +; ("go-github-com-prometheus-procfs-0.1.3" +; ,go-github-com-prometheus-procfs-0.1.3) +; ("go-github-com-prometheus-common-0.10.0" +; ,go-github-com-prometheus-common-0.10.0) +; ("go-github-com-prometheus-client-model-0.2.0" +; ,go-github-com-prometheus-client-model-0.2.0) +; ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) +; ("go-github-com-json-iterator-go-1.1.10" +; ,go-github-com-json-iterator-go-1.1.10) +; ("go-github-com-golang-protobuf-1.4.2" +; ,go-github-com-golang-protobuf-1.4.2) +; ("go-github-com-cespare-xxhash-v2-2.1.1" +; ,go-github-com-cespare-xxhash-v2-2.1.1) +; ("go-github-com-beorn7-perks-1.0.1" +; ,go-github-com-beorn7-perks-1.0.1))) +; (home-page "https://github.com/prometheus/client_golang") +; (synopsis "Prometheus Go client library") +; (description +; "This is the @url{http://golang.org,Go} client library for +;@url{http://prometheus.io,Prometheus}. It has two separate parts, one for +;instrumenting application code, and one for creating clients that talk to the +;Prometheus HTTP API.") +; (license license:asl2.0))) +; +;(define-public go-github-com-alecthomas-template-0.0.0-20190718012654-fb15b899a751 +; (package +; (name "go-github-com-alecthomas-template") +; (version "0.0.0-20190718012654-fb15b899a751") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/alecthomas/template") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1vlasv4dgycydh5wx6jdcvz40zdv90zz1h7836z7lhsi2ymvii26")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/alecthomas/template")) +; (home-page "https://github.com/alecthomas/template") +; (synopsis "Go's") +; (description +; "Package template implements data-driven templates for generating textual output. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-alecthomas-units-0.0.0-20190717042225-c3de453c63f4 +; (package +; (name "go-github-com-alecthomas-units") +; (version "0.0.0-20190717042225-c3de453c63f4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/alecthomas/units") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0js37zlgv37y61j4a2d46jh72xm5kxmpaiw0ya9v944bjpc386my")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/alecthomas/units")) +; (home-page "https://github.com/alecthomas/units") +; (synopsis "Units - Helpful unit multipliers and functions for Go") +; (description +; "Package units provides helpful unit multipliers and functions for Go. +;") +; (license license:expat))) +; +;(define-public go-github-com-go-kit-kit-0.9.0 +; (package +; (name "go-github-com-go-kit-kit") +; (version "0.9.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/go-kit/kit") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "09038mnw705h7isbjp8dzgp2i04bp5rqkmifxvwc5xkh75s00qpw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/go-kit/kit")) +; (home-page "https://github.com/go-kit/kit") +; (synopsis "Go kit") +; (description +; "@strong{Go kit} is a @strong{programming toolkit} for building microservices +;(or elegant monoliths) in Go. We solve common problems in distributed +;systems and application architecture so you can focus on delivering +;business value.") +; (license license:expat))) +; +;(define-public go-github-com-prometheus-common-0.4.1 +; (package +; (name "go-github-com-prometheus-common") +; (version "0.4.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/common") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0sf4sjdckblz1hqdfvripk3zyp8xq89w7q75kbsyg4c078af896s")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/common")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1) +; ("go-gopkg-in-alecthomas-kingpin-v2-2.2.6" +; ,go-gopkg-in-alecthomas-kingpin-v2-2.2.6) +; ("go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5" +; ,go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5) +; ("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" +; ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) +; ("go-golang-org-x-net-0.0.0-20181114220301-adae6a3d119a" +; ,go-golang-org-x-net-0.0.0-20181114220301-adae6a3d119a) +; ("go-github-com-sirupsen-logrus-1.2.0" +; ,go-github-com-sirupsen-logrus-1.2.0) +; ("go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d" +; ,go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d) +; ("go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910" +; ,go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910) +; ("go-github-com-prometheus-client-golang-0.9.1" +; ,go-github-com-prometheus-client-golang-0.9.1) +; ("go-github-com-pkg-errors-0.8.0" ,go-github-com-pkg-errors-0.8.0) +; ("go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223" +; ,go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223) +; ("go-github-com-matttproud-golang-protobuf-extensions-1.0.1" +; ,go-github-com-matttproud-golang-protobuf-extensions-1.0.1) +; ("go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515" +; ,go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515) +; ("go-github-com-julienschmidt-httprouter-1.2.0" +; ,go-github-com-julienschmidt-httprouter-1.2.0) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0) +; ("go-github-com-gogo-protobuf-1.1.1" +; ,go-github-com-gogo-protobuf-1.1.1) +; ("go-github-com-go-stack-stack-1.8.0" +; ,go-github-com-go-stack-stack-1.8.0) +; ("go-github-com-go-logfmt-logfmt-0.3.0" +; ,go-github-com-go-logfmt-logfmt-0.3.0) +; ("go-github-com-go-kit-kit-0.8.0" ,go-github-com-go-kit-kit-0.8.0) +; ("go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973" +; ,go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973) +; ("go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf" +; ,go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf) +; ("go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc" +; ,go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc))) +; (home-page "https://github.com/prometheus/common") +; (synopsis "Common") +; (description +; "This repository contains Go libraries that are shared across Prometheus +;components and libraries. They are considered internal to Prometheus, without +;any stability guarantees for external usage.") +; (license license:asl2.0))) +; +;(define-public go-github-com-prometheus-procfs-0.0.2 +; (package +; (name "go-github-com-prometheus-procfs") +; (version "0.0.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/procfs") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0s7pvs7fgnfpmym3cd0k219av321h9sf3yvdlnn3qy0ps280lg7k")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/procfs")) +; (propagated-inputs +; `(("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" +; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4))) +; (home-page "https://github.com/prometheus/procfs") +; (synopsis "procfs") +; (description +; "Package procfs provides functions to retrieve system, kernel and process +;metrics from the pseudo-filesystem proc. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-prometheus-client-golang-1.0.0 +; (package +; (name "go-github-com-prometheus-client-golang") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/client_golang") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1f03ndyi3jq7zdxinnvzimz3s4z2374r6dikkc8i42xzb6d1bli6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/client_golang")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5" +; ,go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5) +; ("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0) +; ("go-github-com-prometheus-procfs-0.0.2" +; ,go-github-com-prometheus-procfs-0.0.2) +; ("go-github-com-prometheus-common-0.4.1" +; ,go-github-com-prometheus-common-0.4.1) +; ("go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90" +; ,go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90) +; ("go-github-com-modern-go-reflect2-1.0.1" +; ,go-github-com-modern-go-reflect2-1.0.1) +; ("go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd" +; ,go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd) +; ("go-github-com-json-iterator-go-1.1.6" +; ,go-github-com-json-iterator-go-1.1.6) +; ("go-github-com-golang-protobuf-1.3.1" +; ,go-github-com-golang-protobuf-1.3.1) +; ("go-github-com-beorn7-perks-1.0.0" +; ,go-github-com-beorn7-perks-1.0.0))) +; (home-page "https://github.com/prometheus/client_golang") +; (synopsis "Prometheus Go client library") +; (description +; "This is the @url{http://golang.org,Go} client library for +;@url{http://prometheus.io,Prometheus}. It has two separate parts, one for +;instrumenting application code, and one for creating clients that talk to the +;Prometheus HTTP API.") +; (license license:asl2.0))) +; +;(define-public go-github-com-prometheus-client-model-0.2.0 +; (package +; (name "go-github-com-prometheus-client-model") +; (version "0.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/client_model") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0jffnz94d6ff39fr96b5w8i8yk26pwnrfggzz8jhi8k0yihg2c9d")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/client_model")) +; (propagated-inputs +; `(("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" +; ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0))) +; (home-page "https://github.com/prometheus/client_model") +; (synopsis "Deprecation note") +; (description +; "This repository used to contain the code that defined both +;the data model and the exposition format of Prometheus metrics.") +; (license license:asl2.0))) +; +;(define-public go-gopkg-in-yaml-v2-2.2.4 +; (package +; (name "go-gopkg-in-yaml-v2") +; (version "2.2.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/yaml.v2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "11bwj757wi8kdrcnlgfqb8vv2d2xdhlghmyagd19i62khrkchsg2")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" +; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) +; (home-page "https://gopkg.in/yaml.v2") +; (synopsis "YAML support for the Go language") +; (description "Package yaml implements YAML support for the Go language. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-prometheus-common-0.10.0 +; (package +; (name "go-github-com-prometheus-common") +; (version "0.10.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/common") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ra7zfqsnvgfizzsxn3rk0dwhk7nx8p8082zgpvadbv2b0j1k01i")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/common")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.2.4" ,go-gopkg-in-yaml-v2-2.2.4) +; ("go-gopkg-in-alecthomas-kingpin-v2-2.2.6" +; ,go-gopkg-in-alecthomas-kingpin-v2-2.2.6) +; ("go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894" +; ,go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894) +; ("go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980" +; ,go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980) +; ("go-github-com-sirupsen-logrus-1.4.2" +; ,go-github-com-sirupsen-logrus-1.4.2) +; ("go-github-com-prometheus-client-model-0.2.0" +; ,go-github-com-prometheus-client-model-0.2.0) +; ("go-github-com-prometheus-client-golang-1.0.0" +; ,go-github-com-prometheus-client-golang-1.0.0) +; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) +; ("go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223" +; ,go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223) +; ("go-github-com-matttproud-golang-protobuf-extensions-1.0.1" +; ,go-github-com-matttproud-golang-protobuf-extensions-1.0.1) +; ("go-github-com-julienschmidt-httprouter-1.2.0" +; ,go-github-com-julienschmidt-httprouter-1.2.0) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2) +; ("go-github-com-go-logfmt-logfmt-0.4.0" +; ,go-github-com-go-logfmt-logfmt-0.4.0) +; ("go-github-com-go-kit-kit-0.9.0" ,go-github-com-go-kit-kit-0.9.0) +; ("go-github-com-alecthomas-units-0.0.0-20190717042225-c3de453c63f4" +; ,go-github-com-alecthomas-units-0.0.0-20190717042225-c3de453c63f4) +; ("go-github-com-alecthomas-template-0.0.0-20190718012654-fb15b899a751" +; ,go-github-com-alecthomas-template-0.0.0-20190718012654-fb15b899a751))) +; (home-page "https://github.com/prometheus/common") +; (synopsis "Common") +; (description +; "This repository contains Go libraries that are shared across Prometheus +;components and libraries. They are considered internal to Prometheus, without +;any stability guarantees for external usage.") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-sys-0.0.0-20200106162015-b016eb3dc98e +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20200106162015-b016eb3dc98e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1k0qr26046d228gi6ngkfxp4m1rjgxk4jj75h0kh1cpyp91n5rja")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-prometheus-procfs-0.2.0 +; (package +; (name "go-github-com-prometheus-procfs") +; (version "0.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/procfs") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0rkpyq1grk3qyfahnfry5qkxjg5qb10yh1l8cvm8b79nqsmdyjbm")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/procfs")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20200106162015-b016eb3dc98e" +; ,go-golang-org-x-sys-0.0.0-20200106162015-b016eb3dc98e) +; ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" +; ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) +; ("go-github-com-google-go-cmp-0.3.1" +; ,go-github-com-google-go-cmp-0.3.1))) +; (home-page "https://github.com/prometheus/procfs") +; (synopsis "procfs") +; (description +; "Package procfs provides functions to retrieve system, kernel and process +;metrics from the pseudo-filesystem proc. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.3 +; (package +; (name "go-github-com-konsorten-go-windows-terminal-sequences") +; (version "1.0.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/konsorten/go-windows-terminal-sequences") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1yrsd4s8vhjnxhwbigirymz89dn6qfjnhn28i33vvvdgf96j6ypl")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) +; (home-page "https://github.com/konsorten/go-windows-terminal-sequences") +; (synopsis "Windows Terminal Sequences") +; (description +; "This library allow for enabling Windows terminal color support for Go.") +; (license license:expat))) +; +;(define-public go-github-com-sirupsen-logrus-1.6.0 +; (package +; (name "go-github-com-sirupsen-logrus") +; (version "1.6.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/sirupsen/logrus") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1zf9is1yxxnna0d1pyag2m9ziy3l27zb2j92p9msm1gx5jjrvzzj")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/sirupsen/logrus")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894" +; ,go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894) +; ("go-github-com-stretchr-testify-1.2.2" +; ,go-github-com-stretchr-testify-1.2.2) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.3" +; ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.3) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://github.com/sirupsen/logrus") +; (synopsis "Logrus") +; (description +; "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262 +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20190425150028-36563e24a262") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0lasi96f6a1h11gkm8kl33x03pmxp369wrqq2dg7x7xv9nq76d6g")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" +; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-text-0.0.0-20170915032832-14c0d48ead0c +; (package +; (name "go-golang-org-x-text") +; (version "0.0.0-20170915032832-14c0d48ead0c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/text") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0y0nrj4hw7vby6m3iqklbf4v7njqlsx7s4pwfkwmvh1ryn1kb7d6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/text")) +; (home-page "https://golang.org/x/text") +; (synopsis "Go Text") +; (description +; "text is a repository of text-related packages related to internationalization +;(i18n) and localization (l10n), such as character encodings, text +;transformations, and locale-specific text handling. +;") +; (license license:bsd-3))) +; +;(define-public go-rsc-io-sampler-1.3.0 +; (package +; (name "go-rsc-io-sampler") +; (version "1.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/rsc/sampler") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0byxk2ynba50py805kcvbvjzh59l1r308i1xgyzpw6lff4xx9xjh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "rsc.io/sampler")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.0.0-20170915032832-14c0d48ead0c" +; ,go-golang-org-x-text-0.0.0-20170915032832-14c0d48ead0c))) +; (home-page "https://rsc.io/sampler") +; (synopsis #f) +; (description "Package sampler shows simple texts. +;") +; (license license:bsd-3))) +; +;(define-public go-rsc-io-quote-v3-3.1.0 +; (package +; (name "go-rsc-io-quote-v3") +; (version "3.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/rsc/quote") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0nvv97hwwrl1mx5gzsbdm1ndnwpg3m7i2jb10ig9wily7zmvki0i")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "rsc.io/quote/v3" #:unpack-path "rsc.io/quote/v3")) +; (propagated-inputs `(("go-rsc-io-sampler-1.3.0" ,go-rsc-io-sampler-1.3.0))) +; (home-page "https://rsc.io/quote/v3") +; (synopsis #f) +; (description "Package quote collects pithy sayings. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-mock-1.4.1 +; (package +; (name "go-github-com-golang-mock") +; (version "1.4.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/mock") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1zb4n285mv85dh3y2f8fqbs30h2dhzw7vbczr6z0zg2gqr6vzg0q")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/mock")) +; (propagated-inputs +; `(("go-rsc-io-quote-v3-3.1.0" ,go-rsc-io-quote-v3-3.1.0) +; ("go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262" +; ,go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262))) +; (home-page "https://github.com/golang/mock") +; (synopsis "gomock") +; (description +; "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It +;integrates well with Go's built-in @code{testing} package, but can be used in other +;contexts too.") +; (license license:asl2.0))) +; +;(define-public go-github-com-golang-protobuf-1.3.4 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.3.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "12dclmj2if8l0069fby4psrpqby7p810dr1dr63nwx93g9jhvkmx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6 +; (package +; (name "go-github-com-ianlancetaylor-demangle") +; (version "0.0.0-20181102032728-5e5cf60278f6") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/ianlancetaylor/demangle") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1fhjk11cip9c3jyj1byz9z77n6n2rlxmyz0xjx1zpn1da3cvri75")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/ianlancetaylor/demangle")) +; (home-page "https://github.com/ianlancetaylor/demangle") +; (synopsis "github.com/ianlancetaylor/demangle") +; (description +; "Package demangle defines functions that demangle GCC/LLVM +;C++ and Rust symbol names. +;This package recognizes names that were mangled according to the C++ ABI +;defined at @url{http://codesourcery.com/cxx-abi/,http://codesourcery.com/cxx-abi/} and the Rust ABI +;defined at +;@url{https://rust-lang.github.io/rfcs/2603-rust-symbol-name-mangling-v0.html,https://rust-lang.github.io/rfcs/2603-rust-symbol-name-mangling-v0.html} +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20191204072324-ce4227a45e2e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1s43wvqfml6ml5ks7iv2bis9d664g77mq86v7mfmjhn56x856g35")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-google-pprof-0.0.0-20200229191704-1ebb73c60ed3 +; (package +; (name "go-github-com-google-pprof") +; (version "0.0.0-20200229191704-1ebb73c60ed3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/pprof") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1gdi9p4j1zfm5xlm488i5l0q3kk4q6hsmbmlk6p729i0di2n3ifa")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/pprof")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" +; ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) +; ("go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6" +; ,go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6) +; ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" +; ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) +; ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" +; ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) +; ("go-github-com-chzyer-logex-1.1.10" +; ,go-github-com-chzyer-logex-1.1.10))) +; (home-page "https://github.com/google/pprof") +; (synopsis "Introduction") +; (description +; "pprof is a tool for collection, manipulation and visualization +;of performance profiles. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-jstemmer-go-junit-report-0.9.1 +; (package +; (name "go-github-com-jstemmer-go-junit-report") +; (version "0.9.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/jstemmer/go-junit-report") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1knip80yir1cdsjlb3rzy0a4w3kl4ljpiciaz6hjzwqlfhnv7bkw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/jstemmer/go-junit-report")) +; (home-page "https://github.com/jstemmer/go-junit-report") +; (synopsis "go-junit-report") +; (description +; "Converts @code{go test} output to an xml report, suitable for applications that +;expect junit xml reports (e.g. @url{http://jenkins-ci.org,Jenkins}).") +; (license license:expat))) +; +;(define-public go-golang-org-x-mod-0.1.1-0.20191105210325-c90efee705ee +; (package +; (name "go-golang-org-x-mod") +; (version "0.1.1-0.20191105210325-c90efee705ee") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/mod") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0i5md645rmcy5z5ij9ng428k9rz4g3k1kjy3blsq1264rn426gdf")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/mod")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" +; ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) +; ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" +; ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) +; (home-page "https://golang.org/x/mod") +; (synopsis "mod") +; (description +; "This repository holds packages for writing tools +;that work directly with Go module mechanics. +;That is, it is for direct manipulation of Go modules themselves.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7 +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20200130002326-2f3ba24bd6e7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0j3nnmlwnbivf0h9x89vlp8ji3ha41v96bj33cxwmrrjnxq543ww")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" +; ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) +; ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" +; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) +; ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" +; ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) +; ("go-golang-org-x-mod-0.1.1-0.20191105210325-c90efee705ee" +; ,go-golang-org-x-mod-0.1.1-0.20191105210325-c90efee705ee))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b +; (package +; (name "go-golang-org-x-lint") +; (version "0.0.0-20200302205851-738671d3881b") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/lint") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0jkiz4py59jjnkyxbxifpf7bsar11lbgmj5jiq2kic5k03shkn9c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/lint")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7" +; ,go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7))) +; (home-page "https://golang.org/x/lint") +; (synopsis "Installation") +; (description "Package lint contains a linter for Go source code. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20200301022130-244492dfa37a +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20200301022130-244492dfa37a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0vm2q44phz4vjnzq9428rjk58c82fxf003whczp7c9ryn9fazh7s")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20200302150141-5c8b2ff67527 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20200302150141-5c8b2ff67527") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0r5s7f4w7crrbcf5ydpr2xzsq0svjm332vsds41yp58kwi2lvh2v")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20200304193943-95d2e580d8eb +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20200304193943-95d2e580d8eb") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0f46657xsdc12lr29ksqg80fp0j8v2iqgihzh788avcj5cmhnqyl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" +; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) +; ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" +; ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) +; ("go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b" +; ,go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b) +; ("go-golang-org-x-mod-0.2.0" ,go-golang-org-x-mod-0.2.0))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-mock-1.2.0 +; (package +; (name "go-github-com-golang-mock") +; (version "1.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/mock") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "12ddj2g8ab87id6n2n67vnbhq6p8dvgsq1pzpqfriym4dk8w54fg")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/mock")) +; (home-page "https://github.com/golang/mock") +; (synopsis "gomock") +; (description +; "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It +;integrates well with Go's built-in @code{testing} package, but can be used in other +;contexts too.") +; (license license:asl2.0))) +; +;(define-public go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c +; (package +; (name "go-github-com-google-btree") +; (version "0.0.0-20180813153112-4030bb1f1f0c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/btree") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ba430m9fbnagacp57krgidsyrgp3ycw5r7dj71brgp5r52g82p6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/btree")) +; (home-page "https://github.com/google/btree") +; (synopsis "BTree implementation for Go") +; (description +; "Package btree implements in-memory B-Trees of arbitrary degree. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-google-martian-2.1.0+incompatible +; (package +; (name "go-github-com-google-martian") +; (version "2.1.0+incompatible") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/martian") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "197hil6vrjk50b9wvwyzf61csid83whsjj6ik8mc9r2lryxlyyrp")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/martian")) +; (home-page "https://github.com/google/martian") +; (synopsis "Martian Proxy") +; (description +; "Package martian provides an HTTP/1.1 proxy with an API for configurable +;request and response modifiers. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-google-pprof-0.0.0-20181206194817-3ea8567a2e57 +; (package +; (name "go-github-com-google-pprof") +; (version "0.0.0-20181206194817-3ea8567a2e57") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/pprof") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "09rhjn3ms0a72dw0yzbp237p7yhqma772zspddn6mgkh3gi3kn4c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/pprof")) +; (home-page "https://github.com/google/pprof") +; (synopsis "Introduction") +; (description +; "pprof is a tool for collection, manipulation and visualization +;of performance profiles. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-googleapis-gax-go-v2-2.0.4 +; (package +; (name "go-github-com-googleapis-gax-go-v2") +; (version "2.0.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/gax-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1iwnm6ky1x53lgs44mw3hpdkjzrm5qd0kfs50m0qcq2ml5m1cwdm")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/googleapis/gax-go/v2")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.19.0" +; ,go-google-golang-org-grpc-1.19.0))) +; (home-page "https://github.com/googleapis/gax-go") +; (synopsis #f) +; (description +; "Package gax contains a set of modules which aid the development of APIs +;for clients and servers based on gRPC and Google API conventions. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-jstemmer-go-junit-report-0.0.0-20190106144839-af01ea7f8024 +; (package +; (name "go-github-com-jstemmer-go-junit-report") +; (version "0.0.0-20190106144839-af01ea7f8024") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/jstemmer/go-junit-report") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1lp3n94ris12hac02wi31f3whs88lcrzwgdg43a5j6cafg9p1d0s")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/jstemmer/go-junit-report")) +; (home-page "https://github.com/jstemmer/go-junit-report") +; (synopsis "go-junit-report") +; (description +; "Converts @code{go test} output to an xml report, suitable for applications that +;expect junit xml reports (e.g. @url{http://jenkins-ci.org,Jenkins}).") +; (license license:expat))) +; +;(define-public go-golang-org-x-text-0.3.1-0.20180807135948-17ff2d5776d2 +; (package +; (name "go-golang-org-x-text") +; (version "0.3.1-0.20180807135948-17ff2d5776d2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/text") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1rrh2mnmyxr45nsvy42zq3w3ly6gw6rl993knwvf1w71kyv0jjnj")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/text")) +; (home-page "https://golang.org/x/text") +; (synopsis "Go Text") +; (description +; "text is a repository of text-related packages related to internationalization +;(i18n) and localization (l10n), such as character encodings, text +;transformations, and locale-specific text handling. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-time-0.0.0-20181108054448-85acf8d2951c +; (package +; (name "go-golang-org-x-time") +; (version "0.0.0-20181108054448-85acf8d2951c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/time") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0yqnxsrarjk4qkda8kcxzmk7y90kkkxzx9iwryzrk7bzs87ky3xc")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/time")) +; (home-page "https://golang.org/x/time") +; (synopsis "Go Time") +; (description "This repository provides supplementary Go time packages.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f +; (package +; (name "go-golang-org-x-lint") +; (version "0.0.0-20190301231843-5614ed5bae6f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/lint") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0fzn0zjv0x92xvfdq3a0v9w5sgkhr7hxkfy9zaqi8i57807z8bnx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/lint")) +; (home-page "https://golang.org/x/lint") +; (synopsis "Installation") +; (description "Package lint contains a linter for Go source code. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421 +; (package +; (name "go-golang-org-x-oauth2") +; (version "0.0.0-20190226205417-e64efc72b421") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/oauth2") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0djvwz2avx7knsjbl434vw1wqbrg53xp1kh599gfixn5icrggz4m")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/oauth2")) +; (propagated-inputs +; `(("go-google-golang-org-appengine-1.4.0" +; ,go-google-golang-org-appengine-1.4.0) +; ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" +; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) +; ("go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e" +; ,go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e) +; ("go-cloud-google-com-go-0.34.0" ,go-cloud-google-com-go-0.34.0))) +; (home-page "https://golang.org/x/oauth2") +; (synopsis "OAuth2 for Go") +; (description +; "Package oauth2 provides support for making +;OAuth2 authorized and authenticated HTTP requests, +;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +;It can additionally grant authorization with Bearer JWT. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138 +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20190312170243-e65039ee4138") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0c094599cf70wdrms49a3879qkq122pqlp2av444gs2pvc8apdcx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-api-0.4.0 +; (package +; (name "go-google-golang-org-api") +; (version "0.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-api-go-client") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1hzgrw5wasmcjlqpxsmryddzzw4cwyzf2vx14i9z51v1plwssijm")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/api")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" +; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) +; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) +; ("go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19" +; ,go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19) +; ("go-google-golang-org-appengine-1.4.0" +; ,go-google-golang-org-appengine-1.4.0) +; ("go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138" +; ,go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138) +; ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" +; ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) +; ("go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421" +; ,go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421) +; ("go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f" +; ,go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f) +; ("go-go-opencensus-io-0.21.0" ,go-go-opencensus-io-0.21.0) +; ("go-github-com-google-go-cmp-0.2.0" +; ,go-github-com-google-go-cmp-0.2.0))) +; (home-page "https://google.golang.org/api") +; (synopsis "Google APIs Client Library for Go") +; (description +; "Package api is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of +;sub-packages. +;") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20190418145605-e7d98fc518a7 +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20190418145605-e7d98fc518a7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1cnavkyawwvfc5yl097ygnfy1ac69v4zc02gdfnq1bvgcvgmvnbi")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" +; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) +; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) +; ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" +; ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) +; ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" +; ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) +; ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" +; ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd) +; ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" +; ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) +; ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" +; ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-honnef-co-go-tools-0.0.0-20190106161140-3f1c8253044a +; (package +; (name "go-honnef-co-go-tools") +; (version "0.0.0-20190106161140-3f1c8253044a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/dominikh/go-tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0d3vgh0fgfj1z7i648g1s6x2pwxd07sxfjwg1xn3yagr9h06jh3h")))) +; (build-system go-build-system) +; (arguments '(#:import-path "honnef.co/go/tools")) +; (home-page "https://honnef.co/go/tools") +; (synopsis "Documentation") +; (description +; "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, +;offers simplifications, and enforces style rules.") +; (license license:expat))) +; +;(define-public go-cloud-google-com-go-0.38.0 +; (package +; (name "go-cloud-google-com-go") +; (version "0.38.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-cloud-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0n6n13b7lri2fmc4bn4ifszyawj31dpbzvyv0xafsf81440z8cyh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "cloud.google.com/go")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190106161140-3f1c8253044a" +; ,go-honnef-co-go-tools-0.0.0-20190106161140-3f1c8253044a) +; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) +; ("go-google-golang-org-genproto-0.0.0-20190418145605-e7d98fc518a7" +; ,go-google-golang-org-genproto-0.0.0-20190418145605-e7d98fc518a7) +; ("go-google-golang-org-api-0.4.0" ,go-google-golang-org-api-0.4.0) +; ("go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138" +; ,go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138) +; ("go-golang-org-x-time-0.0.0-20181108054448-85acf8d2951c" +; ,go-golang-org-x-time-0.0.0-20181108054448-85acf8d2951c) +; ("go-golang-org-x-text-0.3.1-0.20180807135948-17ff2d5776d2" +; ,go-golang-org-x-text-0.3.1-0.20180807135948-17ff2d5776d2) +; ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" +; ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) +; ("go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421" +; ,go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421) +; ("go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f" +; ,go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f) +; ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" +; ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) +; ("go-go-opencensus-io-0.21.0" ,go-go-opencensus-io-0.21.0) +; ("go-github-com-jstemmer-go-junit-report-0.0.0-20190106144839-af01ea7f8024" +; ,go-github-com-jstemmer-go-junit-report-0.0.0-20190106144839-af01ea7f8024) +; ("go-github-com-googleapis-gax-go-v2-2.0.4" +; ,go-github-com-googleapis-gax-go-v2-2.0.4) +; ("go-github-com-google-pprof-0.0.0-20181206194817-3ea8567a2e57" +; ,go-github-com-google-pprof-0.0.0-20181206194817-3ea8567a2e57) +; ("go-github-com-google-martian-2.1.0+incompatible" +; ,go-github-com-google-martian-2.1.0+incompatible) +; ("go-github-com-google-go-cmp-0.2.0" +; ,go-github-com-google-go-cmp-0.2.0) +; ("go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c" +; ,go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0) +; ("go-github-com-golang-mock-1.2.0" ,go-github-com-golang-mock-1.2.0))) +; (home-page "https://cloud.google.com/go") +; (synopsis "Google Cloud Client Libraries for Go") +; (description +; "Package cloud is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +;of sub-packages. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-googleapis-gax-go-v2-2.0.5 +; (package +; (name "go-github-com-googleapis-gax-go-v2") +; (version "2.0.5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/gax-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1lxawwngv6miaqd25s3ba0didfzylbwisd2nz7r4gmbmin6jsjrx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/googleapis/gax-go/v2")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.19.0" +; ,go-google-golang-org-grpc-1.19.0))) +; (home-page "https://github.com/googleapis/gax-go") +; (synopsis #f) +; (description +; "Package gax contains a set of modules which aid the development of APIs +;for clients and servers based on gRPC and Google API conventions. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-hashicorp-golang-lru-0.5.0 +; (package +; (name "go-github-com-hashicorp-golang-lru") +; (version "0.5.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/golang-lru") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "12k2cp2k615fjvfa5hyb9k2alian77wivds8s65diwshwv41939f")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hashicorp/golang-lru")) +; (home-page "https://github.com/hashicorp/golang-lru") +; (synopsis "golang-lru") +; (description +; "Package lru provides three different LRU caches of varying sophistication. +;") +; (license license:mpl2.0))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19 +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20190307195333-5fe7a883aa19") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0qjkwig0r42q0j2qv57s4ahsgmmp41dz3ih3rnaqg0619n5w7lbs")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" +; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) +; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) +; ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" +; ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) +; ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" +; ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) +; ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" +; ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd) +; ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" +; ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) +; ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" +; ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-go-opencensus-io-0.21.0 +; (package +; (name "go-go-opencensus-io") +; (version "0.21.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/census-instrumentation/opencensus-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "14s0a12xdzjvad0dgksgv8m3hh7nc585abvjkvyk6r67a29lxj6x")))) +; (build-system go-build-system) +; (arguments '(#:import-path "go.opencensus.io")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) +; ("go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19" +; ,go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-github-com-hashicorp-golang-lru-0.5.0" +; ,go-github-com-hashicorp-golang-lru-0.5.0) +; ("go-github-com-google-go-cmp-0.2.0" +; ,go-github-com-google-go-cmp-0.2.0) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0))) +; (home-page "https://go.opencensus.io") +; (synopsis "OpenCensus Libraries for Go") +; (description "Package opencensus contains Go support for OpenCensus. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-net-0.0.0-20190503192946-f4e77d36d62c +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190503192946-f4e77d36d62c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0avjnglqqg9ya0cbhp23m4namykii219kxjywxn4cd7pfcc5arha")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45 +; (package +; (name "go-golang-org-x-oauth2") +; (version "0.0.0-20190604053449-0f29369cfe45") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/oauth2") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "06jwpvx0x2gjn2y959drbcir5kd7vg87k0r1216abk6rrdzzrzi2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/oauth2")) +; (propagated-inputs +; `(("go-google-golang-org-appengine-1.4.0" +; ,go-google-golang-org-appengine-1.4.0) +; ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" +; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) +; ("go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e" +; ,go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e) +; ("go-cloud-google-com-go-0.34.0" ,go-cloud-google-com-go-0.34.0))) +; (home-page "https://golang.org/x/oauth2") +; (synopsis "OAuth2 for Go") +; (description +; "Package oauth2 provides support for making +;OAuth2 authorized and authenticated HTTP requests, +;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +;It can additionally grant authorization with Bearer JWT. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190507160741-ecd444e8653b") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1vhld4948mzfnlgf20id29mv1bwpk9a3xlbw1mbjzxzxxdv1jds2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-appengine-1.5.0 +; (package +; (name "go-google-golang-org-appengine") +; (version "1.5.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/appengine") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0l7mkdnwhidv8m686x432vmx8z5nqcrr9f46ddgvrxbh4wvyfcll")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/appengine")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225" +; ,go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0))) +; (home-page "https://google.golang.org/appengine") +; (synopsis "Go App Engine packages") +; (description +; "Package appengine provides basic functionality for Google App Engine. +;") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-api-0.20.0 +; (package +; (name "go-google-golang-org-api") +; (version "0.20.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-api-go-client") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "13syr1x33k6mrn5w6l4sgdbzn368w3m60vf6kk2j10fwa45125rg")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/api")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" +; ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) +; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) +; ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" +; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) +; ("go-google-golang-org-appengine-1.5.0" +; ,go-google-golang-org-appengine-1.5.0) +; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" +; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) +; ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) +; ("go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b" +; ,go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b) +; ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" +; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) +; ("go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45" +; ,go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45) +; ("go-golang-org-x-net-0.0.0-20190503192946-f4e77d36d62c" +; ,go-golang-org-x-net-0.0.0-20190503192946-f4e77d36d62c) +; ("go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422" +; ,go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422) +; ("go-go-opencensus-io-0.21.0" ,go-go-opencensus-io-0.21.0) +; ("go-github-com-hashicorp-golang-lru-0.5.1" +; ,go-github-com-hashicorp-golang-lru-0.5.1) +; ("go-github-com-googleapis-gax-go-v2-2.0.5" +; ,go-github-com-googleapis-gax-go-v2-2.0.5) +; ("go-github-com-google-go-cmp-0.3.0" +; ,go-github-com-google-go-cmp-0.3.0) +; ("go-cloud-google-com-go-0.38.0" ,go-cloud-google-com-go-0.38.0))) +; (home-page "https://google.golang.org/api") +; (synopsis "Google APIs Client Library for Go") +; (description +; "Package api is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of +;sub-packages. +;") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20200305110556-506484158171 +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20200305110556-506484158171") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19h7sxkfjcrkm7majd0pyzzirdnk1qlsxc3h5zklhm234d8jg407")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" +; ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) +; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) +; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" +; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-github-com-golang-protobuf-1.3.3" +; ,go-github-com-golang-protobuf-1.3.3))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-github-com-google-renameio-0.1.0 +; (package +; (name "go-github-com-google-renameio") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/renameio") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ki2x5a9nrj17sn092d6n4zr29lfg5ydv4xz5cp58z6cw8ip43jx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/renameio")) +; (home-page "https://github.com/google/renameio") +; (synopsis "Atomicity vs durability") +; (description +; "Package renameio provides a way to atomically create or replace a file or +;symbolic link. +;") +; (license license:asl2.0))) +; +;(define-public go-gopkg-in-errgo-v2-2.1.0 +; (package +; (name "go-gopkg-in-errgo-v2") +; (version "2.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/errgo.v2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "065mbihiy7q67wnql0bzl9y1kkvck5ivra68254zbih52jxwrgr2")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/errgo.v2" #:unpack-path "gopkg.in/errgo.v2")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" +; ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) +; ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0))) +; (home-page "https://gopkg.in/errgo.v2") +; (synopsis #f) +; (description +; "Package errgo provides some primitives for error creation and handling.") +; (license license:bsd-3))) +; +;(define-public go-github-com-rogpeppe-go-internal-1.3.0 +; (package +; (name "go-github-com-rogpeppe-go-internal") +; (version "1.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/rogpeppe/go-internal") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0mcdh1licgnnahwml9y2iq6xy5x9xmjw5frcnds2s3wpjyqrl216")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/rogpeppe/go-internal")) +; (propagated-inputs +; `(("go-gopkg-in-errgo-v2-2.1.0" ,go-gopkg-in-errgo-v2-2.1.0))) +; (home-page "https://github.com/rogpeppe/go-internal") +; (synopsis #f) +; (description +; "This repository factors out an opinionated selection of internal packages and functionality from the Go standard +;library. Currently this consists mostly of packages and testing code from within the Go tool implementation.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20190510104115-cbcb75029529 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20190510104115-cbcb75029529") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "12831ga1gq04a3jbbcmww7kaqfdfgp7cdv2fj9aqidz8h52ajdmh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" +; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) +; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" +; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-mod-0.0.0-20190513183733-4bf6d317e70e +; (package +; (name "go-golang-org-x-mod") +; (version "0.0.0-20190513183733-4bf6d317e70e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/mod") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19lg1ly3j31anx92p0hynic1gjk417wwxphfdrb2cq1c19kj3r17")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/mod")) +; (propagated-inputs +; `(("go-golang-org-x-crypto-0.0.0-20190510104115-cbcb75029529" +; ,go-golang-org-x-crypto-0.0.0-20190510104115-cbcb75029529))) +; (home-page "https://golang.org/x/mod") +; (synopsis "mod") +; (description +; "This repository holds packages for writing tools +;that work directly with Go module mechanics. +;That is, it is for direct manipulation of Go modules themselves.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20191130070609-6e064ea0cf2d +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20191130070609-6e064ea0cf2d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1nbki367xspsa37j6276f5q2gv31vfjpb52axn3p3ymz548my75d")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7" +; ,go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7) +; ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" +; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) +; ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" +; ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-honnef-co-go-tools-0.0.1-2020.1.3 +; (package +; (name "go-honnef-co-go-tools") +; (version "0.0.1-2020.1.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/dominikh/go-tools") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0pvi1mzhy6zgx4zfgdypbl4zhvgg11hl5qv7blf2qs0a96j2djhf")))) +; (build-system go-build-system) +; (arguments '(#:import-path "honnef.co/go/tools")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20191130070609-6e064ea0cf2d" +; ,go-golang-org-x-tools-0.0.0-20191130070609-6e064ea0cf2d) +; ("go-golang-org-x-mod-0.0.0-20190513183733-4bf6d317e70e" +; ,go-golang-org-x-mod-0.0.0-20190513183733-4bf6d317e70e) +; ("go-github-com-rogpeppe-go-internal-1.3.0" +; ,go-github-com-rogpeppe-go-internal-1.3.0) +; ("go-github-com-kisielk-gotool-1.0.0" +; ,go-github-com-kisielk-gotool-1.0.0) +; ("go-github-com-google-renameio-0.1.0" +; ,go-github-com-google-renameio-0.1.0) +; ("go-github-com-burntsushi-toml-0.3.1" +; ,go-github-com-burntsushi-toml-0.3.1))) +; (home-page "https://honnef.co/go/tools") +; (synopsis "Documentation") +; (description +; "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, +;offers simplifications, and enforces style rules.") +; (license license:expat))) +; +;(define-public go-cloud-google-com-go-0.54.0 +; (package +; (name "go-cloud-google-com-go") +; (version "0.54.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-cloud-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ilqqymrphg546c66jc0npd48dlr88wbgrg462h1jgm2ykbnq1ba")))) +; (build-system go-build-system) +; (arguments '(#:import-path "cloud.google.com/go")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.1-2020.1.3" +; ,go-honnef-co-go-tools-0.0.1-2020.1.3) +; ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) +; ("go-google-golang-org-genproto-0.0.0-20200305110556-506484158171" +; ,go-google-golang-org-genproto-0.0.0-20200305110556-506484158171) +; ("go-google-golang-org-api-0.20.0" ,go-google-golang-org-api-0.20.0) +; ("go-golang-org-x-tools-0.0.0-20200304193943-95d2e580d8eb" +; ,go-golang-org-x-tools-0.0.0-20200304193943-95d2e580d8eb) +; ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) +; ("go-golang-org-x-sys-0.0.0-20200302150141-5c8b2ff67527" +; ,go-golang-org-x-sys-0.0.0-20200302150141-5c8b2ff67527) +; ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" +; ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) +; ("go-golang-org-x-net-0.0.0-20200301022130-244492dfa37a" +; ,go-golang-org-x-net-0.0.0-20200301022130-244492dfa37a) +; ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" +; ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) +; ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) +; ("go-github-com-jstemmer-go-junit-report-0.9.1" +; ,go-github-com-jstemmer-go-junit-report-0.9.1) +; ("go-github-com-googleapis-gax-go-v2-2.0.5" +; ,go-github-com-googleapis-gax-go-v2-2.0.5) +; ("go-github-com-google-pprof-0.0.0-20200229191704-1ebb73c60ed3" +; ,go-github-com-google-pprof-0.0.0-20200229191704-1ebb73c60ed3) +; ("go-github-com-google-martian-2.1.0+incompatible" +; ,go-github-com-google-martian-2.1.0+incompatible) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.3.4" +; ,go-github-com-golang-protobuf-1.3.4) +; ("go-github-com-golang-mock-1.4.1" ,go-github-com-golang-mock-1.4.1) +; ("go-cloud-google-com-go-storage-1.6.0" +; ,go-cloud-google-com-go-storage-1.6.0) +; ("go-cloud-google-com-go-pubsub-1.2.0" +; ,go-cloud-google-com-go-pubsub-1.2.0) +; ("go-cloud-google-com-go-datastore-1.1.0" +; ,go-cloud-google-com-go-datastore-1.1.0) +; ("go-cloud-google-com-go-bigquery-1.4.0" +; ,go-cloud-google-com-go-bigquery-1.4.0))) +; (home-page "https://cloud.google.com/go") +; (synopsis "Google Cloud Client Libraries for Go") +; (description +; "Package cloud is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +;of sub-packages. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7 +; (package +; (name "go-github-com-gregjones-httpcache") +; (version "0.0.0-20180305231024-9cad4c3443a7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/gregjones/httpcache") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0wjdwcwqqcx2d5y68qvhg6qyj977il5ijmnn9h9cd6wjbdy0ay6s")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/gregjones/httpcache")) +; (home-page "https://github.com/gregjones/httpcache") +; (synopsis "httpcache") +; (description +; "Package httpcache provides a http.RoundTripper implementation that works as a +;mostly RFC-compliant cache for http responses. +;") +; (license license:expat))) +; +;(define-public go-github-com-imdario-mergo-0.3.5 +; (package +; (name "go-github-com-imdario-mergo") +; (version "0.3.5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/imdario/mergo") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1mvgn89vp39gcpvhiq4n7nw5ipj7fk6h03jgc6fjwgvwvss213pb")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/imdario/mergo")) +; (home-page "https://github.com/imdario/mergo") +; (synopsis "Mergo") +; (description +; "This package provides a helper to merge structs and maps in Golang. Useful for configuration default values, avoiding messy if-statements. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-peterbourgon-diskv-2.0.1+incompatible +; (package +; (name "go-github-com-peterbourgon-diskv") +; (version "2.0.1+incompatible") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/peterbourgon/diskv") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1mxpa5aad08x30qcbffzk80g9540wvbca4blc1r2qyzl65b8929b")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/peterbourgon/diskv")) +; (home-page "https://github.com/peterbourgon/diskv") +; (synopsis "What is diskv?") +; (description +; "Diskv (disk-vee) is a simple, persistent key-value store written in the Go +;language. It starts with an incredibly simple API for storing arbitrary data on +;a filesystem by key, and builds several layers of performance-enhancing +;abstraction on top. The end result is a conceptually simple, but highly +;performant, disk-backed storage system.") +; (license license:expat))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20201002170205-7f63de1d35b0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1dr89jfs4dmpr3jqfshqqvfpzzdx4r76nkzhrvmixfrmn6wxrnd1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" +; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) +; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" +; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e +; (package +; (name "go-golang-org-x-time") +; (version "0.0.0-20200630173020-3af7569d3a1e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/time") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "05hqhw3vlssi499y6m41zgdp1yyjsw2kj95ahymlw6pkhsssh2vq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/time")) +; (home-page "https://golang.org/x/time") +; (synopsis "Go Time") +; (description "This repository provides supplementary Go time packages.") +; (license license:bsd-3))) +; +;(define-public go-k8s-io-api-0.20.6 +; (package +; (name "go-k8s-io-api") +; (version "0.20.6") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes/api") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0mm6a91a4nrlsvnfcbgn2574vdwxf1nxpgrd5avklh8mym2ngimw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "k8s.io/api")) +; (propagated-inputs +; `(("go-k8s-io-apimachinery-0.20.6" ,go-k8s-io-apimachinery-0.20.6) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-gogo-protobuf-1.3.2" +; ,go-github-com-gogo-protobuf-1.3.2))) +; (home-page "https://k8s.io/api") +; (synopsis "api") +; (description +; "Schema of the external API types that are served by the Kubernetes API server.") +; (license license:asl2.0))) +; +;(define-public go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96 +; (package +; (name "go-github-com-docker-spdystream") +; (version "0.0.0-20160310174837-449fdfce4d96") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/moby/spdystream") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1412cpiis971iq1kxrirzirhj2708ispjh0x0dh879b66x8507sl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/docker/spdystream")) +; (home-page "https://github.com/docker/spdystream") +; (synopsis "SpdyStream") +; (description +; "This package provides a multiplexed stream library using spdy") +; (license license:asl2.0))) +; +;(define-public go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153 +; (package +; (name "go-github-com-elazarl-goproxy") +; (version "0.0.0-20180725130230-947c36da3153") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/elazarl/goproxy") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0lmsnr5xmda89wig8sw62llg6acjb5caghz5jmdhnm85rm6rnssk")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/elazarl/goproxy")) +; (home-page "https://github.com/elazarl/goproxy") +; (synopsis "Introduction") +; (description +; "Taken from $GOROOT/src/pkg/net/http/chunked +;needed to write https responses to client. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-evanphx-json-patch-4.9.0+incompatible +; (package +; (name "go-github-com-evanphx-json-patch") +; (version "4.9.0+incompatible") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/evanphx/json-patch") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1r88qpzjxsx8skij9s5pi4a5qcv4bm18vq8sy21gpwgzp3qf6qzx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/evanphx/json-patch")) +; (home-page "https://github.com/evanphx/json-patch") +; (synopsis "JSON-Patch") +; (description +; "@code{jsonpatch} is a library which provides functionality for both applying +;@url{http://tools.ietf.org/html/rfc6902,RFC6902 JSON patches} against documents, as +;well as for calculating & applying @url{https://tools.ietf.org/html/rfc7396,RFC7396 JSON merge patches}.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20191005200804-aed5e4c7ecf9") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0wsdsbl9n61l99z0cvib2xzg56fsfgky4yc5xapdw9ywx9h0zm3a")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-fsnotify-fsnotify-1.4.9 +; (package +; (name "go-github-com-fsnotify-fsnotify") +; (version "1.4.9") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/fsnotify/fsnotify") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1i1r72knpbfwwql9frn9bqc3nhfc2ai5m6qllcyr6wban62lr40x")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/fsnotify/fsnotify")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9" +; ,go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9))) +; (home-page "https://github.com/fsnotify/fsnotify") +; (synopsis "File system notifications for Go") +; (description +; "Package fsnotify provides a platform-independent interface for file system notifications. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-google-gofuzz-1.1.0 +; (package +; (name "go-github-com-google-gofuzz") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/gofuzz") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0si2fiigj45vr4jnw4grjhls7nw56wkwinnn93gqbl9ng9ynw8rx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/gofuzz")) +; (home-page "https://github.com/google/gofuzz") +; (synopsis "gofuzz") +; (description +; "Package fuzz is a library for populating go objects with random values. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-hashicorp-golang-lru-0.5.1 +; (package +; (name "go-github-com-hashicorp-golang-lru") +; (version "0.5.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/golang-lru") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "13f870cvk161bzjj6x41l45r5x9i1z9r2ymwmvm7768kg08zznpy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hashicorp/golang-lru")) +; (home-page "https://github.com/hashicorp/golang-lru") +; (synopsis "golang-lru") +; (description +; "Package lru provides three different LRU caches of varying sophistication. +;") +; (license license:mpl2.0))) +; +;(define-public go-github-com-modern-go-reflect2-0.0.0-20180701023420-4b7aa43c6742 +; (package +; (name "go-github-com-modern-go-reflect2") +; (version "0.0.0-20180701023420-4b7aa43c6742") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/modern-go/reflect2") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1721y3yr3dpx5dx5ashf063qczk2awy5zjir1jvp1h5hn7qz4i49")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/modern-go/reflect2")) +; (home-page "https://github.com/modern-go/reflect2") +; (synopsis "reflect2") +; (description "reflect api that avoids runtime reflect.Value cost") +; (license license:asl2.0))) +; +;(define-public go-github-com-json-iterator-go-1.1.10 +; (package +; (name "go-github-com-json-iterator-go") +; (version "1.1.10") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/json-iterator/go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "134zwc2pmf8nd90r8065wsl6vv1mwjl23bs70i08dzhw5h98drr4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/json-iterator/go")) +; (propagated-inputs +; `(("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0) +; ("go-github-com-modern-go-reflect2-0.0.0-20180701023420-4b7aa43c6742" +; ,go-github-com-modern-go-reflect2-0.0.0-20180701023420-4b7aa43c6742) +; ("go-github-com-modern-go-concurrent-0.0.0-20180228061459-e0a39a4cb421" +; ,go-github-com-modern-go-concurrent-0.0.0-20180228061459-e0a39a4cb421) +; ("go-github-com-google-gofuzz-1.0.0" +; ,go-github-com-google-gofuzz-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://github.com/json-iterator/go") +; (synopsis "Benchmark") +; (description +; "Package jsoniter implements encoding and decoding of JSON as defined in +;@url{https://rfc-editor.org/rfc/rfc4627.html,RFC 4627} and provides interfaces with identical syntax of standard lib encoding/json. +;Converting from encoding/json to jsoniter is no more than replacing the package with jsoniter +;and variable type declarations (if any). +;jsoniter interfaces gives 100% compatibility with code using standard lib. +;") +; (license license:expat))) +; +;(define-public go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f +; (package +; (name "go-github-com-mxk-go-flowrate") +; (version "0.0.0-20140419014527-cca7078d478f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mxk/go-flowrate") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0zqs39923ja0yypdmiqk6x8pgmfs3ms5x5sl1dqv9z6zyx2xy541")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mxk/go-flowrate")) +; (home-page "https://github.com/mxk/go-flowrate") +; (synopsis #f) +; (description #f) +; (license license:bsd-3))) +; +;(define-public go-github-com-onsi-ginkgo-1.11.0 +; (package +; (name "go-github-com-onsi-ginkgo") +; (version "1.11.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/onsi/ginkgo") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1vxmb5k89bq50m2kzcw5l3bdvci4czpifkgxd4nbq1yzv5ir03kp")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/onsi/ginkgo")) +; (home-page "https://github.com/onsi/ginkgo") +; (synopsis "Ginkgo 2.0 Release Candidate is available!") +; (description "Ginkgo is a BDD-style testing framework for Golang +;") +; (license license:expat))) +; +;(define-public go-github-com-hpcloud-tail-1.0.0 +; (package +; (name "go-github-com-hpcloud-tail") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hpcloud/tail") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1njpzc0pi1acg5zx9y6vj9xi6ksbsc5d387rd6904hy6rh2m6kn0")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hpcloud/tail")) +; (home-page "https://github.com/hpcloud/tail") +; (synopsis "Go package for tail-ing files") +; (description +; "This package provides a Go package striving to emulate the features of the BSD @code{tail} program.") +; (license license:expat))) +; +;(define-public go-github-com-onsi-ginkgo-1.6.0 +; (package +; (name "go-github-com-onsi-ginkgo") +; (version "1.6.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/onsi/ginkgo") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0x0gc89vgq38xhgmi2h22bhr73cf2gmk42g89nz89k8dgg9hhr25")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/onsi/ginkgo")) +; (home-page "https://github.com/onsi/ginkgo") +; (synopsis "Ginkgo 2.0 Release Candidate is available!") +; (description "Ginkgo is a BDD-style testing framework for Golang +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20180906233101-161cd47e91fd") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0254ld010iijygbzykib2vags1dc0wlmcmhgh4jl8iny159lhbcv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20180909124046-d0be0721c37e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "081wyvfnlf842dqg03raxfz6lldlxpmyh1prix9lmrrm65arxb12")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-gopkg-in-fsnotify-v1-1.4.7 +; (package +; (name "go-gopkg-in-fsnotify-v1") +; (version "1.4.7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/fsnotify.v1") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path +; "gopkg.in/fsnotify.v1" +; #:unpack-path +; "gopkg.in/fsnotify.v1")) +; (home-page "https://gopkg.in/fsnotify.v1") +; (synopsis "File system notifications for Go") +; (description +; "Package fsnotify provides a platform-independent interface for file system notifications. +;") +; (license license:bsd-3))) +; +;(define-public go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7 +; (package +; (name "go-gopkg-in-tomb-v1") +; (version "1.0.0-20141024135613-dd632973f1e7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/tomb.v1") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1lqmq1ag7s4b3gc3ddvr792c5xb5k6sfn0cchr3i2s7f1c231zjv")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/tomb.v1" #:unpack-path "gopkg.in/tomb.v1")) +; (home-page "https://gopkg.in/tomb.v1") +; (synopsis "Installation and usage") +; (description +; "The tomb package offers a conventional API for clean goroutine termination. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-onsi-gomega-1.7.0 +; (package +; (name "go-github-com-onsi-gomega") +; (version "1.7.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/onsi/gomega") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "09j6wq425wgzzsbwm9ckhfgl2capv3yyqbrf45qyrjwkzm49i02y")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/onsi/gomega")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1) +; ("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" +; ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) +; ("go-gopkg-in-fsnotify-v1-1.4.7" ,go-gopkg-in-fsnotify-v1-1.4.7) +; ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e" +; ,go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e) +; ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" +; ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) +; ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" +; ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) +; ("go-github-com-onsi-ginkgo-1.6.0" ,go-github-com-onsi-ginkgo-1.6.0) +; ("go-github-com-hpcloud-tail-1.0.0" ,go-github-com-hpcloud-tail-1.0.0) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0) +; ("go-github-com-fsnotify-fsnotify-1.4.7" +; ,go-github-com-fsnotify-fsnotify-1.4.7))) +; (home-page "https://github.com/onsi/gomega") +; (synopsis ": a BDD Testing Framework for Golang") +; (description +; "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library. +;") +; (license license:expat))) +; +;(define-public go-github-com-spf13-pflag-1.0.5 +; (package +; (name "go-github-com-spf13-pflag") +; (version "1.0.5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/spf13/pflag") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0gpmacngd0gpslnbkzi263f5ishigzgh6pbdv9hp092rnjl4nd31")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/spf13/pflag")) +; (home-page "https://github.com/spf13/pflag") +; (synopsis "Description") +; (description +; "Package pflag is a drop-in replacement for Go's flag package, implementing +;POSIX/GNU-style --flags. +;") +; (license license:bsd-3))) +; +;(define-public go-gopkg-in-inf-v0-0.9.1 +; (package +; (name "go-gopkg-in-inf-v0") +; (version "0.9.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/inf.v0") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "00k5iqjcp371fllqxncv7jkf80hn1zww92zm78cclbcn4ybigkng")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/inf.v0" #:unpack-path "gopkg.in/inf.v0")) +; (home-page "https://gopkg.in/inf.v0") +; (synopsis #f) +; (description +; "Package inf (type inf.Dec) implements \"infinite-precision\" decimal +;arithmetic. +;\"Infinite precision\" describes two characteristics: practically unlimited +;precision for decimal number representation and no support for calculating +;with any specific fixed precision. +;(Although there is no practical limit on precision, inf.Dec can only +;represent finite decimals.) +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-nytimes-gziphandler-0.0.0-20170623195520-56545f4a5d46 +; (package +; (name "go-github-com-nytimes-gziphandler") +; (version "0.0.0-20170623195520-56545f4a5d46") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/nytimes/gziphandler") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1fwk9wz6vrvq72f2gq8jhvd1nvv6grqgwrjq66vjpm0726pxar72")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/NYTimes/gziphandler")) +; (home-page "https://github.com/NYTimes/gziphandler") +; (synopsis "Gzip Handler") +; (description +; "This is a tiny Go package which wraps HTTP handlers to transparently gzip the +;response body, for clients which support it. Although it's usually simpler to +;leave that to a reverse proxy (like nginx or Varnish), this package is useful +;when that's undesirable.") +; (license license:asl2.0))) +; +;(define-public go-github-com-asaskevich-govalidator-0.0.0-20190424111038-f61b66f89f4a +; (package +; (name "go-github-com-asaskevich-govalidator") +; (version "0.0.0-20190424111038-f61b66f89f4a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/asaskevich/govalidator") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1jzjd9ak4byb83bwhbyrrdclnhrgglyxcbr4d4qh39a6ywvcijm5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/asaskevich/govalidator")) +; (home-page "https://github.com/asaskevich/govalidator") +; (synopsis "govalidator") +; (description +; "Package govalidator is package of validators and sanitizers for strings, structs and collections. +;") +; (license license:expat))) +; +;(define-public go-github-com-emicklei-go-restful-0.0.0-20170410110728-ff4f55a20633 +; (package +; (name "go-github-com-emicklei-go-restful") +; (version "0.0.0-20170410110728-ff4f55a20633") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/emicklei/go-restful") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1v5lj5142abz3gvbygp6xghpdx4ps2lwswl8559ivaidahwnc21c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/emicklei/go-restful")) +; (home-page "https://github.com/emicklei/go-restful") +; (synopsis "go-restful") +; (description +; "Package restful , a lean package for creating REST-style WebServices without magic. +;") +; (license license:expat))) +; +;(define-public go-github-com-ghodss-yaml-0.0.0-20150909031657-73d445a93680 +; (package +; (name "go-github-com-ghodss-yaml") +; (version "0.0.0-20150909031657-73d445a93680") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/ghodss/yaml") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0pg53ky4sy3sp9j4n7vgf1p3gw4nbckwqfldcmmi9rf13kjh0mr7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/ghodss/yaml")) +; (home-page "https://github.com/ghodss/yaml") +; (synopsis "YAML marshaling and unmarshaling support for Go") +; (description +; "Copyright 2013 The Go Authors. All rights reserved. +;Use of this source code is governed by a BSD-style +;license that can be found in the LICENSE file. +;") +; (license #f))) +; +;(define-public go-github-com-go-openapi-jsonreference-0.19.3 +; (package +; (name "go-github-com-go-openapi-jsonreference") +; (version "0.19.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/go-openapi/jsonreference") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ln21xai74fynwmi4ck5j0c70yszjy96wfagc705y8khjxsgncsw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/go-openapi/jsonreference")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) +; ("go-golang-org-x-net-0.0.0-20190827160401-ba9fcec4b297" +; ,go-golang-org-x-net-0.0.0-20190827160401-ba9fcec4b297) +; ("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0) +; ("go-github-com-go-openapi-jsonpointer-0.19.3" +; ,go-github-com-go-openapi-jsonpointer-0.19.3) +; ("go-github-com-puerkitobio-urlesc-0.0.0-20170810143723-de5bf2ad4578" +; ,go-github-com-puerkitobio-urlesc-0.0.0-20170810143723-de5bf2ad4578) +; ("go-github-com-puerkitobio-purell-1.1.1" +; ,go-github-com-puerkitobio-purell-1.1.1))) +; (home-page "https://github.com/go-openapi/jsonreference") +; (synopsis "gojsonreference") +; (description +; "@url{https://raw.githubusercontent.com/go-openapi/jsonreference/master/LICENSE,(img (@ (src http://img.shields.io/badge/license-Apache%20v2-orange.svg) (alt license)))} @url{http://godoc.org/github.com/go-openapi/jsonreference,(img (@ (src https://godoc.org/github.com/go-openapi/jsonreference?status.svg=) (alt GoDoc)))} +;An implementation of JSON Reference - Go language") +; (license license:asl2.0))) +; +;(define-public go-github-com-mailru-easyjson-0.0.0-20190626092158-b2ccc519800e +; (package +; (name "go-github-com-mailru-easyjson") +; (version "0.0.0-20190626092158-b2ccc519800e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mailru/easyjson") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0q85h383mhbkcjm2vqm72bi8n2252fv3c56q3lclzb8n2crnjcdk")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mailru/easyjson")) +; (home-page "https://github.com/mailru/easyjson") +; (synopsis "easyjson") +; (description +; "Package easyjson contains marshaler/unmarshaler interfaces and helper functions. +;") +; (license license:expat))) +; +;(define-public go-github-com-go-openapi-jsonpointer-0.19.3 +; (package +; (name "go-github-com-go-openapi-jsonpointer") +; (version "0.19.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/go-openapi/jsonpointer") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1m4bb7c5y8ss2s8wl50k7lsk84nl4lcldkbkphrfdl21y51gz4jr")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/go-openapi/jsonpointer")) +; (propagated-inputs +; `(("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0) +; ("go-github-com-mailru-easyjson-0.0.0-20190626092158-b2ccc519800e" +; ,go-github-com-mailru-easyjson-0.0.0-20190626092158-b2ccc519800e) +; ("go-github-com-go-openapi-swag-0.19.5" +; ,go-github-com-go-openapi-swag-0.19.5))) +; (home-page "https://github.com/go-openapi/jsonpointer") +; (synopsis "gojsonpointer") +; (description +; "@url{https://raw.githubusercontent.com/go-openapi/jsonpointer/master/LICENSE,(img (@ (src http://img.shields.io/badge/license-Apache%20v2-orange.svg) (alt license)))} @url{http://godoc.org/github.com/go-openapi/jsonpointer,(img (@ (src https://godoc.org/github.com/go-openapi/jsonpointer?status.svg=) (alt GoDoc)))} +;An implementation of JSON Pointer - Go language") +; (license license:asl2.0))) +; +;(define-public go-github-com-puerkitobio-purell-1.1.1 +; (package +; (name "go-github-com-puerkitobio-purell") +; (version "1.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/PuerkitoBio/purell") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0c525frsxmalrn55hzzsxy17ng8avkd40ga0wxfw9haxsdjgqdqy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/PuerkitoBio/purell")) +; (home-page "https://github.com/PuerkitoBio/purell") +; (synopsis "Purell") +; (description +; "Package purell offers URL normalization as described on the wikipedia page: +;@url{http://en.wikipedia.org/wiki/URL_normalization,http://en.wikipedia.org/wiki/URL_normalization} +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-puerkitobio-urlesc-0.0.0-20170810143723-de5bf2ad4578 +; (package +; (name "go-github-com-puerkitobio-urlesc") +; (version "0.0.0-20170810143723-de5bf2ad4578") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/PuerkitoBio/urlesc") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0n0srpqwbaan1wrhh2b7ysz543pjs1xw2rghvqyffg9l0g8kzgcw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/PuerkitoBio/urlesc")) +; (home-page "https://github.com/PuerkitoBio/urlesc") +; (synopsis "urlesc") +; (description +; "Package urlesc implements query escaping as per @url{https://rfc-editor.org/rfc/rfc3986.html,RFC 3986}. +;It contains some parts of the net/url package, modified so as to allow +;some reserved characters incorrectly escaped by net/url. +;See @url{https://github.com/golang/go/issues/5684,https://github.com/golang/go/issues/5684} +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-go-openapi-swag-0.19.2 +; (package +; (name "go-github-com-go-openapi-swag") +; (version "0.19.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/go-openapi/swag") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1mlxlajx2p9wjm72rmqjrx5g49q2sn04y45s3nrykkf6jqlq1v4z")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/go-openapi/swag")) +; (propagated-inputs +; `(("go-github-com-sourcegraph-go-diff-0.5.1" +; ,go-github-com-sourcegraph-go-diff-0.5.1) +; ("go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422" +; ,go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422) +; ("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) +; ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" +; ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) +; ("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0) +; ("go-github-com-mailru-easyjson-0.0.0-20190614124828-94de47d64c63" +; ,go-github-com-mailru-easyjson-0.0.0-20190614124828-94de47d64c63) +; ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://github.com/go-openapi/swag") +; (synopsis "Swag") +; (description +; "Package swag contains a bunch of helper functions for go-openapi and go-swagger projects. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-go-openapi-jsonpointer-0.19.2 +; (package +; (name "go-github-com-go-openapi-jsonpointer") +; (version "0.19.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/go-openapi/jsonpointer") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1s3cqf4svrbygvvpvi7hf122szsgihas52vqh0bba3avf4w03g9n")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/go-openapi/jsonpointer")) +; (propagated-inputs +; `(("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0) +; ("go-github-com-go-openapi-swag-0.19.2" +; ,go-github-com-go-openapi-swag-0.19.2))) +; (home-page "https://github.com/go-openapi/jsonpointer") +; (synopsis "gojsonpointer") +; (description +; "@url{https://raw.githubusercontent.com/go-openapi/jsonpointer/master/LICENSE,(img (@ (src http://img.shields.io/badge/license-Apache%20v2-orange.svg) (alt license)))} @url{http://godoc.org/github.com/go-openapi/jsonpointer,(img (@ (src https://godoc.org/github.com/go-openapi/jsonpointer?status.svg=) (alt GoDoc)))} +;An implementation of JSON Pointer - Go language") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190613194153-d28f0bde5980") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "18xj31h70m7xxb7gc86n9i21w6d7djbjz67zfaljm4jqskz6hxkf")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-github-com-go-openapi-jsonreference-0.19.2 +; (package +; (name "go-github-com-go-openapi-jsonreference") +; (version "0.19.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/go-openapi/jsonreference") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0v933yvcwyzzlpdxwb9204ki7lls2rwfd96ww2i901ndvz37kdf8")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/go-openapi/jsonreference")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) +; ("go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980" +; ,go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980) +; ("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0) +; ("go-github-com-go-openapi-jsonpointer-0.19.2" +; ,go-github-com-go-openapi-jsonpointer-0.19.2) +; ("go-github-com-puerkitobio-urlesc-0.0.0-20170810143723-de5bf2ad4578" +; ,go-github-com-puerkitobio-urlesc-0.0.0-20170810143723-de5bf2ad4578) +; ("go-github-com-puerkitobio-purell-1.1.1" +; ,go-github-com-puerkitobio-purell-1.1.1))) +; (home-page "https://github.com/go-openapi/jsonreference") +; (synopsis "gojsonreference") +; (description +; "@url{https://raw.githubusercontent.com/go-openapi/jsonreference/master/LICENSE,(img (@ (src http://img.shields.io/badge/license-Apache%20v2-orange.svg) (alt license)))} @url{http://godoc.org/github.com/go-openapi/jsonreference,(img (@ (src https://godoc.org/github.com/go-openapi/jsonreference?status.svg=) (alt GoDoc)))} +;An implementation of JSON Reference - Go language") +; (license license:asl2.0))) +; +;(define-public go-github-com-kr-pty-1.1.5 +; (package +; (name "go-github-com-kr-pty") +; (version "1.1.5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kr/pty") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1bpq77b90z72cv9h66dvxsg2j197ylpgcps23xsjfbs752bykfw1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kr/pty")) +; (home-page "https://github.com/kr/pty") +; (synopsis "pty") +; (description +; "Package pty is a wrapper for github.com/creack/pty, which provides +;functions for working with Unix terminals. +;") +; (license license:expat))) +; +;(define-public go-github-com-stretchr-objx-0.2.0 +; (package +; (name "go-github-com-stretchr-objx") +; (version "0.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/objx") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0pcdvakxgddaiwcdj73ra4da05a3q4cgwbpm2w75ycq4kzv8ij8k")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/objx")) +; (propagated-inputs +; `(("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://github.com/stretchr/objx") +; (synopsis "Objx") +; (description +; "Objx - Go package for dealing with maps, slices, JSON and other data. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20190611184440-5c40567a22f8 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20190611184440-5c40567a22f8") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "17g8fb9vy2sqq8vgz8jdvf6c6d2290gm2qs0i4yzsd86mgn4dlrg")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" +; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) +; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" +; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20190827160401-ba9fcec4b297 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190827160401-ba9fcec4b297") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1hbqvy6r0s5h0dpdqw8fynl3cq0acin3iyqki9xvl5r8h33yb9bx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190616124812-15dcb6c0061f +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190616124812-15dcb6c0061f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1qfkkysbyn44nyx57cq8mmw1cjgpxi9gi9xrf6kljmd9c1416zdd")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20190614205625-5aca471b1d59 +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20190614205625-5aca471b1d59") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1i4h3q83w4y9s065w0wnnnwlssy69jbrj08k47ppsa8dnv85kyrf")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" +; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-github-com-go-openapi-spec-0.19.3 +; (package +; (name "go-github-com-go-openapi-spec") +; (version "0.19.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/go-openapi/spec") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1dikq1p550vj5i9y918s075pgk0fxkixxk3fb70ri7wkm51s6nlj")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/go-openapi/spec")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) +; ("go-golang-org-x-tools-0.0.0-20190614205625-5aca471b1d59" +; ,go-golang-org-x-tools-0.0.0-20190614205625-5aca471b1d59) +; ("go-golang-org-x-sys-0.0.0-20190616124812-15dcb6c0061f" +; ,go-golang-org-x-sys-0.0.0-20190616124812-15dcb6c0061f) +; ("go-golang-org-x-net-0.0.0-20190827160401-ba9fcec4b297" +; ,go-golang-org-x-net-0.0.0-20190827160401-ba9fcec4b297) +; ("go-golang-org-x-crypto-0.0.0-20190611184440-5c40567a22f8" +; ,go-golang-org-x-crypto-0.0.0-20190611184440-5c40567a22f8) +; ("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0) +; ("go-github-com-stretchr-objx-0.2.0" +; ,go-github-com-stretchr-objx-0.2.0) +; ("go-github-com-kr-pty-1.1.5" ,go-github-com-kr-pty-1.1.5) +; ("go-github-com-go-openapi-swag-0.19.5" +; ,go-github-com-go-openapi-swag-0.19.5) +; ("go-github-com-go-openapi-jsonreference-0.19.2" +; ,go-github-com-go-openapi-jsonreference-0.19.2) +; ("go-github-com-go-openapi-jsonpointer-0.19.3" +; ,go-github-com-go-openapi-jsonpointer-0.19.3))) +; (home-page "https://github.com/go-openapi/spec") +; (synopsis "OAI object model") +; (description "The object model for OpenAPI specification documents.") +; (license license:asl2.0))) +; +;(define-public go-github-com-mailru-easyjson-0.0.0-20190614124828-94de47d64c63 +; (package +; (name "go-github-com-mailru-easyjson") +; (version "0.0.0-20190614124828-94de47d64c63") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mailru/easyjson") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1km0kkh7cf7dlz5pqi9yr1wamv0167y41cyv1dbrcxfdmwgpfd23")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mailru/easyjson")) +; (home-page "https://github.com/mailru/easyjson") +; (synopsis "easyjson") +; (description +; "Package easyjson contains marshaler/unmarshaler interfaces and helper functions. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422 +; (package +; (name "go-golang-org-x-lint") +; (version "0.0.0-20190409202823-959b441ac422") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/lint") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1mgcv5f00pkzsbwnq2y7vqvd1b4lr5a3s47cphh2qv4indfk7pck")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/lint")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" +; ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd))) +; (home-page "https://golang.org/x/lint") +; (synopsis "Installation") +; (description "Package lint contains a linter for Go source code. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-shurcool-go-0.0.0-20180423040247-9e1955d9fb6e +; (package +; (name "go-github-com-shurcool-go") +; (version "0.0.0-20180423040247-9e1955d9fb6e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/shurcooL/go") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1lad9bvs75jsn61cfza19739c2c057k0bqxg2b4xz3z3l4w1mkqj")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/shurcooL/go")) +; (home-page "https://github.com/shurcooL/go") +; (synopsis "go") +; (description "Common Go code.") +; (license license:expat))) +; +;(define-public go-github-com-shurcool-go-goon-0.0.0-20170922171312-37c2f522c041 +; (package +; (name "go-github-com-shurcool-go-goon") +; (version "0.0.0-20170922171312-37c2f522c041") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/shurcooL/go-goon") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "17ac6j6msdcxbmfhq6pxhw5z339b87bd6ciln9909drjv2szyxqv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/shurcooL/go-goon")) +; (home-page "https://github.com/shurcooL/go-goon") +; (synopsis "goon") +; (description +; "Package goon is a deep pretty printer with Go-like notation. It implements the goon specification. +;") +; (license license:expat))) +; +;(define-public go-sourcegraph-com-sqs-pbtypes-0.0.0-20180604144634-d3ebe8f20ae4 +; (package +; (name "go-sourcegraph-com-sqs-pbtypes") +; (version "0.0.0-20180604144634-d3ebe8f20ae4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/sqs/pbtypes") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0vcyqq4jc2jv1wh288qdxv51qxcfj07lvnlf37pjicsd2yrb7yrr")))) +; (build-system go-build-system) +; (arguments '(#:import-path "sourcegraph.com/sqs/pbtypes")) +; (home-page "https://sourcegraph.com/sqs/pbtypes") +; (synopsis "pbtypes") +; (description +; "Package pbtypes contains protocol buffer types (Timestamp, Void, +;etc.) and related helpers. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-sourcegraph-go-diff-0.5.1 +; (package +; (name "go-github-com-sourcegraph-go-diff") +; (version "0.5.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/sourcegraph/go-diff") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0acabccjmxgdvhyd7fr0krlf7ymc7mngdq292n03hfys9nrnb0b2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/sourcegraph/go-diff")) +; (propagated-inputs +; `(("go-sourcegraph-com-sqs-pbtypes-0.0.0-20180604144634-d3ebe8f20ae4" +; ,go-sourcegraph-com-sqs-pbtypes-0.0.0-20180604144634-d3ebe8f20ae4) +; ("go-github-com-shurcool-go-goon-0.0.0-20170922171312-37c2f522c041" +; ,go-github-com-shurcool-go-goon-0.0.0-20170922171312-37c2f522c041) +; ("go-github-com-shurcool-go-0.0.0-20180423040247-9e1955d9fb6e" +; ,go-github-com-shurcool-go-0.0.0-20180423040247-9e1955d9fb6e) +; ("go-github-com-gogo-protobuf-1.1.1" +; ,go-github-com-gogo-protobuf-1.1.1))) +; (home-page "https://github.com/sourcegraph/go-diff") +; (synopsis "go-diff") +; (description "Diff parser and printer for Go.") +; (license license:expat))) +; +;(define-public go-github-com-go-openapi-swag-0.19.5 +; (package +; (name "go-github-com-go-openapi-swag") +; (version "0.19.5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/go-openapi/swag") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1z34vqc5yz6rzvarrvlhkimxx33p74iaxb28l1mv716njvlsmjhg")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/go-openapi/swag")) +; (propagated-inputs +; `(("go-github-com-sourcegraph-go-diff-0.5.1" +; ,go-github-com-sourcegraph-go-diff-0.5.1) +; ("go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422" +; ,go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422) +; ("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) +; ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" +; ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) +; ("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0) +; ("go-github-com-mailru-easyjson-0.0.0-20190614124828-94de47d64c63" +; ,go-github-com-mailru-easyjson-0.0.0-20190614124828-94de47d64c63) +; ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://github.com/go-openapi/swag") +; (synopsis "Swag") +; (description +; "Package swag contains a bunch of helper functions for go-openapi and go-swagger projects. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-google-uuid-1.1.1 +; (package +; (name "go-github-com-google-uuid") +; (version "1.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/uuid") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0hfxcf9frkb57k6q0rdkrmnfs78ms21r1qfk9fhlqga2yh5xg8zb")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/uuid")) +; (home-page "https://github.com/google/uuid") +; (synopsis "uuid") +; (description "Package uuid generates and inspects UUIDs. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-docopt-docopt-go-0.0.0-20180111231733-ee0de3bc6815 +; (package +; (name "go-github-com-docopt-docopt-go") +; (version "0.0.0-20180111231733-ee0de3bc6815") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/docopt/docopt.go") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0hlra7rmi5pmd7d93rv56ahiy4qkgmq8a6mz0jpadvbi5qh8lq6j")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/docopt/docopt-go")) +; (home-page "https://github.com/docopt/docopt-go") +; (synopsis "docopt-go") +; (description +; "Package docopt parses command-line arguments based on a help message. +;") +; (license license:expat))) +; +;(define-public go-github-com-googleapis-gnostic-0.4.1 +; (package +; (name "go-github-com-googleapis-gnostic") +; (version "0.4.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/gnostic") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1fw28m3ach5pkcdh4ijd6s7w09j0n88p6mah3hp0k8918jsc6mj9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/googleapis/gnostic")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) +; ("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" +; ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) +; ("go-github-com-kr-pretty-0.2.0" ,go-github-com-kr-pretty-0.2.0) +; ("go-github-com-golang-protobuf-1.3.3" +; ,go-github-com-golang-protobuf-1.3.3) +; ("go-github-com-docopt-docopt-go-0.0.0-20180111231733-ee0de3bc6815" +; ,go-github-com-docopt-docopt-go-0.0.0-20180111231733-ee0de3bc6815))) +; (home-page "https://github.com/googleapis/gnostic") +; (synopsis "â¨\x81 gnostic") +; (description +; "Gnostic is a tool for building better REST APIs through knowledge. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-munnerz-goautoneg-0.0.0-20120707110453-a547fc61f48d +; (package +; (name "go-github-com-munnerz-goautoneg") +; (version "0.0.0-20120707110453-a547fc61f48d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/munnerz/goautoneg") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19khhn5xhqv1yp7d6k987gh5w5rhrjnp4p0c6fyrd8z6lzz5h9qi")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/munnerz/goautoneg")) +; (home-page "https://github.com/munnerz/goautoneg") +; (synopsis #f) +; (description #f) +; (license license:bsd-3))) +; +;(define-public go-github-com-onsi-ginkgo-0.0.0-20170829012221-11459a886d9c +; (package +; (name "go-github-com-onsi-ginkgo") +; (version "0.0.0-20170829012221-11459a886d9c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/onsi/ginkgo") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1nswc1fnrrs792qbix05h91bilj8rr3wxmxgwi97p2gjk0r292zh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/onsi/ginkgo")) +; (home-page "https://github.com/onsi/ginkgo") +; (synopsis "Ginkgo 2.0 Release Candidate is available!") +; (description "Ginkgo is a BDD-style testing framework for Golang +;") +; (license license:expat))) +; +;(define-public go-github-com-onsi-gomega-0.0.0-20170829124025-dcabb60a477c +; (package +; (name "go-github-com-onsi-gomega") +; (version "0.0.0-20170829124025-dcabb60a477c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/onsi/gomega") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1775lv5jbsgv3ghq5v2827slqlhqdadrzc1nkpq4y0hdv2qzrgkm")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/onsi/gomega")) +; (home-page "https://github.com/onsi/gomega") +; (synopsis ": a BDD Testing Framework for Golang") +; (description +; "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library. +;") +; (license license:expat))) +; +;(define-public go-github-com-spf13-pflag-0.0.0-20170130214245-9ff6c6923cff +; (package +; (name "go-github-com-spf13-pflag") +; (version "0.0.0-20170130214245-9ff6c6923cff") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/spf13/pflag") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0mfrxzyl8x7araa126lh8l3sihbbgfbzgkrg3v3cx7y4n3wrsqvn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/spf13/pflag")) +; (home-page "https://github.com/spf13/pflag") +; (synopsis "Description") +; (description +; "Package pflag is a drop-in replacement for Go's flag package, implementing +;POSIX/GNU-style --flags. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20200324143707-d3edc9973b7e +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20200324143707-d3edc9973b7e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "12zbjwcsh9b0lwycqlkrnbyg5a6a9dzgj8hhgq399bdda5bd97y7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" +; ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-k8s-io-gengo-0.0.0-20200413195148-3a45101e95ac +; (package +; (name "go-k8s-io-gengo") +; (version "0.0.0-20200413195148-3a45101e95ac") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes/gengo") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0x46jq6rv8z0y96231rfgzvfscgy5hp5aacid3r93zy0rq9r37g6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "k8s.io/gengo")) +; (home-page "https://k8s.io/gengo") +; (synopsis "gengo") +; (description +; "This package provides a package for generating things based on go files. This mechanism was first used +;in Kubernetes and is split out here for ease of reuse and maintainability.") +; (license license:asl2.0))) +; +;(define-public go-sigs-k8s-io-structured-merge-diff-v4-4.0.2 +; (package +; (name "go-sigs-k8s-io-structured-merge-diff-v4") +; (version "4.0.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes-sigs/structured-merge-diff") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1z60sw6nrlzyddyx5pvh6afwf8jvmn8c2zw15hklq17iyvj3lj7a")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path +; "sigs.k8s.io/structured-merge-diff/v4" +; #:unpack-path +; "sigs.k8s.io/structured-merge-diff/v4")) +; (propagated-inputs +; `(("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0) +; ("go-github-com-modern-go-reflect2-1.0.1" +; ,go-github-com-modern-go-reflect2-1.0.1) +; ("go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd" +; ,go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd) +; ("go-github-com-json-iterator-go-1.1.6" +; ,go-github-com-json-iterator-go-1.1.6) +; ("go-github-com-google-gofuzz-1.0.0" +; ,go-github-com-google-gofuzz-1.0.0) +; ("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1))) +; (home-page "https://sigs.k8s.io/structured-merge-diff/v4") +; (synopsis "Structured Merge and Diff") +; (description +; "This repo contains code which implements the Kubernetes \"apply\" operation.") +; (license license:asl2.0))) +; +;(define-public go-sigs-k8s-io-yaml-1.1.0 +; (package +; (name "go-sigs-k8s-io-yaml") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes-sigs/yaml") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1p7hvjdr5jsyk7nys1g1pmgnf3ys6n320i6hds85afppk81k01kb")))) +; (build-system go-build-system) +; (arguments '(#:import-path "sigs.k8s.io/yaml")) +; (home-page "https://sigs.k8s.io/yaml") +; (synopsis "YAML marshaling and unmarshaling support for Go") +; (description +; "kubernetes-sigs/yaml is a permanent fork of @url{https://github.com/ghodss/yaml,ghodss/yaml}.") +; (license #f))) +; +;(define-public go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd +; (package +; (name "go-k8s-io-kube-openapi") +; (version "0.0.0-20201113171705-d219536bb9fd") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes/kube-openapi") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "11d420a3rxznh3f6x5a6xp22zjwv6jfq4w1gb6srqb4vn9rhgrka")))) +; (build-system go-build-system) +; (arguments '(#:import-path "k8s.io/kube-openapi")) +; (propagated-inputs +; `(("go-sigs-k8s-io-yaml-1.1.0" ,go-sigs-k8s-io-yaml-1.1.0) +; ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.2" +; ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.2) +; ("go-k8s-io-klog-v2-2.0.0" ,go-k8s-io-klog-v2-2.0.0) +; ("go-k8s-io-gengo-0.0.0-20200413195148-3a45101e95ac" +; ,go-k8s-io-gengo-0.0.0-20200413195148-3a45101e95ac) +; ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) +; ("go-golang-org-x-net-0.0.0-20200324143707-d3edc9973b7e" +; ,go-golang-org-x-net-0.0.0-20200324143707-d3edc9973b7e) +; ("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0) +; ("go-github-com-spf13-pflag-0.0.0-20170130214245-9ff6c6923cff" +; ,go-github-com-spf13-pflag-0.0.0-20170130214245-9ff6c6923cff) +; ("go-github-com-onsi-gomega-0.0.0-20170829124025-dcabb60a477c" +; ,go-github-com-onsi-gomega-0.0.0-20170829124025-dcabb60a477c) +; ("go-github-com-onsi-ginkgo-0.0.0-20170829012221-11459a886d9c" +; ,go-github-com-onsi-ginkgo-0.0.0-20170829012221-11459a886d9c) +; ("go-github-com-munnerz-goautoneg-0.0.0-20120707110453-a547fc61f48d" +; ,go-github-com-munnerz-goautoneg-0.0.0-20120707110453-a547fc61f48d) +; ("go-github-com-mitchellh-mapstructure-1.1.2" +; ,go-github-com-mitchellh-mapstructure-1.1.2) +; ("go-github-com-json-iterator-go-1.1.6" +; ,go-github-com-json-iterator-go-1.1.6) +; ("go-github-com-googleapis-gnostic-0.4.1" +; ,go-github-com-googleapis-gnostic-0.4.1) +; ("go-github-com-google-uuid-1.1.1" ,go-github-com-google-uuid-1.1.1) +; ("go-github-com-google-gofuzz-1.0.0" +; ,go-github-com-google-gofuzz-1.0.0) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.3.3" +; ,go-github-com-golang-protobuf-1.3.3) +; ("go-github-com-go-openapi-swag-0.19.5" +; ,go-github-com-go-openapi-swag-0.19.5) +; ("go-github-com-go-openapi-spec-0.19.3" +; ,go-github-com-go-openapi-spec-0.19.3) +; ("go-github-com-go-openapi-jsonreference-0.19.3" +; ,go-github-com-go-openapi-jsonreference-0.19.3) +; ("go-github-com-go-openapi-jsonpointer-0.19.3" +; ,go-github-com-go-openapi-jsonpointer-0.19.3) +; ("go-github-com-ghodss-yaml-0.0.0-20150909031657-73d445a93680" +; ,go-github-com-ghodss-yaml-0.0.0-20150909031657-73d445a93680) +; ("go-github-com-emicklei-go-restful-0.0.0-20170410110728-ff4f55a20633" +; ,go-github-com-emicklei-go-restful-0.0.0-20170410110728-ff4f55a20633) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1) +; ("go-github-com-asaskevich-govalidator-0.0.0-20190424111038-f61b66f89f4a" +; ,go-github-com-asaskevich-govalidator-0.0.0-20190424111038-f61b66f89f4a) +; ("go-github-com-nytimes-gziphandler-0.0.0-20170623195520-56545f4a5d46" +; ,go-github-com-nytimes-gziphandler-0.0.0-20170623195520-56545f4a5d46))) +; (home-page "https://k8s.io/kube-openapi") +; (synopsis "Kube OpenAPI") +; (description +; "This repo is the home for Kubernetes OpenAPI discovery spec generation. The goal +;is to support a subset of OpenAPI features to satisfy kubernetes use-cases but +;implement that subset with little to no assumption about the structure of the +;code or routes. Thus, there should be no kubernetes specific code in this repo.") +; (license license:asl2.0))) +; +;(define-public go-github-com-json-iterator-go-1.1.6 +; (package +; (name "go-github-com-json-iterator-go") +; (version "1.1.6") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/json-iterator/go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "08caswxvdn7nvaqyj5kyny6ghpygandlbw9vxdj7l5vkp7q0s43r")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/json-iterator/go")) +; (home-page "https://github.com/json-iterator/go") +; (synopsis "Benchmark") +; (description +; "Package jsoniter implements encoding and decoding of JSON as defined in +;@url{https://rfc-editor.org/rfc/rfc4627.html,RFC 4627} and provides interfaces with identical syntax of standard lib encoding/json. +;Converting from encoding/json to jsoniter is no more than replacing the package with jsoniter +;and variable type declarations (if any). +;jsoniter interfaces gives 100% compatibility with code using standard lib. +;") +; (license license:expat))) +; +;(define-public go-github-com-modern-go-reflect2-1.0.1 +; (package +; (name "go-github-com-modern-go-reflect2") +; (version "1.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/modern-go/reflect2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "06a3sablw53n1dqqbr2f53jyksbxdmmk8axaas4yvnhyfi55k4lf")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/modern-go/reflect2")) +; (home-page "https://github.com/modern-go/reflect2") +; (synopsis "reflect2") +; (description "reflect api that avoids runtime reflect.Value cost") +; (license license:asl2.0))) +; +;(define-public go-sigs-k8s-io-structured-merge-diff-v4-4.0.3 +; (package +; (name "go-sigs-k8s-io-structured-merge-diff-v4") +; (version "4.0.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes-sigs/structured-merge-diff") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1jv60bkk0z437bsz5ldjyc006k20njmpl0xfl8p3g1q0bx0fkypa")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path +; "sigs.k8s.io/structured-merge-diff/v4" +; #:unpack-path +; "sigs.k8s.io/structured-merge-diff/v4")) +; (propagated-inputs +; `(("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0) +; ("go-github-com-modern-go-reflect2-1.0.1" +; ,go-github-com-modern-go-reflect2-1.0.1) +; ("go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd" +; ,go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd) +; ("go-github-com-json-iterator-go-1.1.6" +; ,go-github-com-json-iterator-go-1.1.6) +; ("go-github-com-google-gofuzz-1.0.0" +; ,go-github-com-google-gofuzz-1.0.0) +; ("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1))) +; (home-page "https://sigs.k8s.io/structured-merge-diff/v4") +; (synopsis "Structured Merge and Diff") +; (description +; "This repo contains code which implements the Kubernetes \"apply\" operation.") +; (license license:asl2.0))) +; +;(define-public go-gopkg-in-yaml-v2-2.2.8 +; (package +; (name "go-gopkg-in-yaml-v2") +; (version "2.2.8") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/yaml.v2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1inf7svydzscwv9fcjd2rm61a4xjk6jkswknybmns2n58shimapw")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" +; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) +; (home-page "https://gopkg.in/yaml.v2") +; (synopsis "YAML support for the Go language") +; (description "Package yaml implements YAML support for the Go language. +;") +; (license license:asl2.0))) +; +;(define-public go-sigs-k8s-io-yaml-1.2.0 +; (package +; (name "go-sigs-k8s-io-yaml") +; (version "1.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes-sigs/yaml") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "059a1chkd6afyvqszrx7h93k6cgik3ia92x29f5whpwi66461pzq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "sigs.k8s.io/yaml")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://sigs.k8s.io/yaml") +; (synopsis "YAML marshaling and unmarshaling support for Go") +; (description +; "kubernetes-sigs/yaml is a permanent fork of @url{https://github.com/ghodss/yaml,ghodss/yaml}.") +; (license #f))) +; +;(define-public go-k8s-io-apimachinery-0.20.6 +; (package +; (name "go-k8s-io-apimachinery") +; (version "0.20.6") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes/apimachinery") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "16952v7zjk3pdyw5r3wy28qkcfx3risid0847pwdw8gmalwxr237")))) +; (build-system go-build-system) +; (arguments '(#:import-path "k8s.io/apimachinery")) +; (propagated-inputs +; `(("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) +; ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.3" +; ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.3) +; ("go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd" +; ,go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd) +; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) +; ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) +; ("go-gopkg-in-inf-v0-0.9.1" ,go-gopkg-in-inf-v0-0.9.1) +; ("go-google-golang-org-protobuf-1.25.0" +; ,go-google-golang-org-protobuf-1.25.0) +; ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) +; ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" +; ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) +; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" +; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-onsi-gomega-1.7.0" ,go-github-com-onsi-gomega-1.7.0) +; ("go-github-com-onsi-ginkgo-1.11.0" ,go-github-com-onsi-ginkgo-1.11.0) +; ("go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f" +; ,go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f) +; ("go-github-com-modern-go-reflect2-1.0.1" +; ,go-github-com-modern-go-reflect2-1.0.1) +; ("go-github-com-json-iterator-go-1.1.10" +; ,go-github-com-json-iterator-go-1.1.10) +; ("go-github-com-hashicorp-golang-lru-0.5.1" +; ,go-github-com-hashicorp-golang-lru-0.5.1) +; ("go-github-com-googleapis-gnostic-0.4.1" +; ,go-github-com-googleapis-gnostic-0.4.1) +; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) +; ("go-github-com-google-gofuzz-1.1.0" +; ,go-github-com-google-gofuzz-1.1.0) +; ("go-github-com-google-go-cmp-0.5.2" +; ,go-github-com-google-go-cmp-0.5.2) +; ("go-github-com-golang-protobuf-1.4.3" +; ,go-github-com-golang-protobuf-1.4.3) +; ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" +; ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) +; ("go-github-com-gogo-protobuf-1.3.2" +; ,go-github-com-gogo-protobuf-1.3.2) +; ("go-github-com-fsnotify-fsnotify-1.4.9" +; ,go-github-com-fsnotify-fsnotify-1.4.9) +; ("go-github-com-evanphx-json-patch-4.9.0+incompatible" +; ,go-github-com-evanphx-json-patch-4.9.0+incompatible) +; ("go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153" +; ,go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153) +; ("go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96" +; ,go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://k8s.io/apimachinery") +; (synopsis "apimachinery") +; (description +; "Scheme, typing, encoding, decoding, and conversion packages for Kubernetes and Kubernetes-like API objects.") +; (license license:asl2.0))) +; +;(define-public go-k8s-io-client-go-0.20.6 +; (package +; (name "go-k8s-io-client-go") +; (version "0.20.6") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes/client-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1fpz56pfadbfp8mlzmzicfmlgk5zqbk2rdwnr8c8h6ypjd5xjcvz")))) +; (build-system go-build-system) +; (arguments '(#:import-path "k8s.io/client-go")) +; (propagated-inputs +; `(("go-k8s-io-apimachinery-0.20.6" ,go-k8s-io-apimachinery-0.20.6) +; ("go-k8s-io-api-0.20.6" ,go-k8s-io-api-0.20.6) +; ("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) +; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" +; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) +; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) +; ("go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e" +; ,go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e) +; ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" +; ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) +; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" +; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) +; ("go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0" +; ,go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) +; ("go-github-com-peterbourgon-diskv-2.0.1+incompatible" +; ,go-github-com-peterbourgon-diskv-2.0.1+incompatible) +; ("go-github-com-imdario-mergo-0.3.5" +; ,go-github-com-imdario-mergo-0.3.5) +; ("go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7" +; ,go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7) +; ("go-github-com-googleapis-gnostic-0.4.1" +; ,go-github-com-googleapis-gnostic-0.4.1) +; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) +; ("go-github-com-google-gofuzz-1.1.0" +; ,go-github-com-google-gofuzz-1.1.0) +; ("go-github-com-google-go-cmp-0.5.2" +; ,go-github-com-google-go-cmp-0.5.2) +; ("go-github-com-golang-protobuf-1.4.3" +; ,go-github-com-golang-protobuf-1.4.3) +; ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" +; ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) +; ("go-github-com-gogo-protobuf-1.3.2" +; ,go-github-com-gogo-protobuf-1.3.2) +; ("go-github-com-evanphx-json-patch-4.9.0+incompatible" +; ,go-github-com-evanphx-json-patch-4.9.0+incompatible) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1) +; ("go-github-com-azure-go-autorest-autorest-adal-0.9.5" +; ,go-github-com-azure-go-autorest-autorest-adal-0.9.5) +; ("go-github-com-azure-go-autorest-autorest-0.11.1" +; ,go-github-com-azure-go-autorest-autorest-0.11.1) +; ("go-cloud-google-com-go-0.54.0" ,go-cloud-google-com-go-0.54.0))) +; (home-page "https://k8s.io/client-go") +; (synopsis "client-go") +; (description +; "Go clients for talking to a @url{http://kubernetes.io/,kubernetes} cluster.") +; (license license:asl2.0))) +; +;(define-public go-k8s-io-component-base-0.20.6 +; (package +; (name "go-k8s-io-component-base") +; (version "0.20.6") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes/component-base") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1987vm5lhbnn4ynrpzdgz3873lp78664cpdpkbv9jwnhzqdhpyhf")))) +; (build-system go-build-system) +; (arguments '(#:import-path "k8s.io/component-base")) +; (propagated-inputs +; `(("go-k8s-io-client-go-0.20.6" ,go-k8s-io-client-go-0.20.6) +; ("go-k8s-io-apimachinery-0.20.6" ,go-k8s-io-apimachinery-0.20.6) +; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" +; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) +; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) +; ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) +; ("go-go-uber-org-multierr-1.1.0" ,go-go-uber-org-multierr-1.1.0) +; ("go-go-uber-org-atomic-1.4.0" ,go-go-uber-org-atomic-1.4.0) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) +; ("go-github-com-sirupsen-logrus-1.6.0" +; ,go-github-com-sirupsen-logrus-1.6.0) +; ("go-github-com-prometheus-procfs-0.2.0" +; ,go-github-com-prometheus-procfs-0.2.0) +; ("go-github-com-prometheus-common-0.10.0" +; ,go-github-com-prometheus-common-0.10.0) +; ("go-github-com-prometheus-client-model-0.2.0" +; ,go-github-com-prometheus-client-model-0.2.0) +; ("go-github-com-prometheus-client-golang-1.7.1" +; ,go-github-com-prometheus-client-golang-1.7.1) +; ("go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd" +; ,go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd) +; ("go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369" +; ,go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369) +; ("go-github-com-google-go-cmp-0.5.2" +; ,go-github-com-google-go-cmp-0.5.2) +; ("go-github-com-go-logr-logr-0.2.0" ,go-github-com-go-logr-logr-0.2.0) +; ("go-github-com-blang-semver-3.5.1+incompatible" +; ,go-github-com-blang-semver-3.5.1+incompatible))) +; (home-page "https://k8s.io/component-base") +; (synopsis "component-base") +; (description +; "Implement KEP 32: @url{https://github.com/kubernetes/enhancements/blob/master/keps/sig-cluster-lifecycle/wgs/783-component-base/README.md,https://github.com/kubernetes/enhancements/blob/master/keps/sig-cluster-lifecycle/wgs/783-component-base/README.md}") +; (license license:asl2.0))) +; +;(define-public go-github-com-kr-pretty-0.2.0 +; (package +; (name "go-github-com-kr-pretty") +; (version "0.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kr/pretty") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ywbfzz1h3a3qd8rpkiqwi1dm4w8ls9ijb4x1b7567grns9f0vnp")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kr/pretty")) +; (propagated-inputs +; `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) +; (home-page "https://github.com/kr/pretty") +; (synopsis #f) +; (description +; "Package pretty provides pretty-printing for Go values. This is +;useful during debugging, to avoid wrapping long output lines in +;the terminal. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20201112073958-5cba982894dd") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "08dvnwmi2p4slmhyx7gzkmzfp51mmnkzi0ngwhvv0vip1s3s3zjc")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-text-0.3.4 +; (package +; (name "go-golang-org-x-text") +; (version "0.3.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/text") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "11jdvix83xcl5xnb039y4zrz4x5skzsps0w1jryp6wrar53cydvz")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/text")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" +; ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) +; (home-page "https://golang.org/x/text") +; (synopsis "Go Text") +; (description +; "text is a repository of text-related packages related to internationalization +;(i18n) and localization (l10n), such as character encodings, text +;transformations, and locale-specific text handling. +;") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-1.24.0 +; (package +; (name "go-google-golang-org-protobuf") +; (version "1.24.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0x3qyn3rizbs671gs7f8v50rmiwf9h7kbaradpivw9718mhbg1gn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" +; ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.4.1" +; ,go-github-com-golang-protobuf-1.4.1))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20201110150050-8816d57aaa9a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0cbfam4w9jr5gib43v3s2r5j8mhd3hl6ks3azwsahaff6idggg20")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.24.0" +; ,go-google-golang-org-protobuf-1.24.0) +; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) +; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" +; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-github-com-golang-protobuf-1.4.1" +; ,go-github-com-golang-protobuf-1.4.1))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-k8s-io-cri-api-0.20.6 +; (package +; (name "go-k8s-io-cri-api") +; (version "0.20.6") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes/cri-api") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0yp4rfxjn4h78z4sbmwhcqm8mva9bsvsc5jky2qa76npp0hycjhx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "k8s.io/cri-api")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" +; ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) +; ("go-google-golang-org-protobuf-1.25.0" +; ,go-google-golang-org-protobuf-1.25.0) +; ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) +; ("go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a" +; ,go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a) +; ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) +; ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" +; ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) +; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" +; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-kr-pretty-0.2.0" ,go-github-com-kr-pretty-0.2.0) +; ("go-github-com-google-go-cmp-0.5.2" +; ,go-github-com-google-go-cmp-0.5.2) +; ("go-github-com-golang-protobuf-1.4.3" +; ,go-github-com-golang-protobuf-1.4.3) +; ("go-github-com-gogo-protobuf-1.3.2" +; ,go-github-com-gogo-protobuf-1.3.2) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://k8s.io/cri-api") +; (synopsis "Purpose") +; (description +; "This repository contains the definitions for the Container Runtime Interface (CRI). +;CRI is a plugin interface which enables kubelet to use a wide variety of container runtimes, +;without the need to recompile. CRI consists of a protocol buffers and gRPC API.") +; (license license:asl2.0))) +; +;(define-public go-github-com-go-logr-logr-0.2.0 +; (package +; (name "go-github-com-go-logr-logr") +; (version "0.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/go-logr/logr") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "06xh4pw53z38vyi300mgpnr4pkqgknw9xakdyk1xzqfg9zd60d7d")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/go-logr/logr")) +; (home-page "https://github.com/go-logr/logr") +; (synopsis "A minimal logging API for Go") +; (description +; "Package logr defines a general-purpose logging API and abstract interfaces +;to back that API. Packages in the Go ecosystem can depend on this package, +;while callers can implement logging with whatever backend is appropriate. +;") +; (license license:asl2.0))) +; +;(define-public go-k8s-io-klog-v2-2.4.0 +; (package +; (name "go-k8s-io-klog-v2") +; (version "2.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes/klog") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1zjih6bgdalga5hqaa2fwwidslq6lv358gkj88a8wwj7w253wc8c")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "k8s.io/klog/v2" #:unpack-path "k8s.io/klog/v2")) +; (propagated-inputs +; `(("go-github-com-go-logr-logr-0.2.0" +; ,go-github-com-go-logr-logr-0.2.0))) +; (home-page "https://k8s.io/klog/v2") +; (synopsis "klog") +; (description +; "Package klog implements logging analogous to the Google-internal C++ INFO/ERROR/V setup. +;It provides functions Info, Warning, Error, Fatal, plus formatting variants such as +;Infof. It also provides V-style logging controlled by the -v and -vmodule=file=2 flags. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-spf13-afero-1.2.2 +; (package +; (name "go-github-com-spf13-afero") +; (version "1.2.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/spf13/afero") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0j9r65qgd58324m85lkl49vk9dgwd62g7dwvkfcm3k6i9dc555a9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/spf13/afero")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0))) +; (home-page "https://github.com/spf13/afero") +; (synopsis "Overview") +; (description +; "This package provides a FileSystem Abstraction System for Go") +; (license license:asl2.0))) +; +;(define-public go-github-com-go-logr-logr-0.1.0 +; (package +; (name "go-github-com-go-logr-logr") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/go-logr/logr") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0fhijjhxz4n2j5i24ckzv8r9kri3v44jdyklgbqjfq0xm7izqg14")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/go-logr/logr")) +; (home-page "https://github.com/go-logr/logr") +; (synopsis "A minimal logging API for Go") +; (description +; "Package logr defines a general-purpose logging API and abstract interfaces +;to back that API. Packages in the Go ecosystem can depend on this package, +;while callers can implement logging with whatever backend is appropriate. +;") +; (license license:asl2.0))) +; +;(define-public go-k8s-io-klog-v2-2.0.0 +; (package +; (name "go-k8s-io-klog-v2") +; (version "2.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes/klog") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "09vqm0n5l64lzpk3xqm4njbncnphx52qk21gwx8nsgyivlxx1n8g")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "k8s.io/klog/v2" #:unpack-path "k8s.io/klog/v2")) +; (propagated-inputs +; `(("go-github-com-go-logr-logr-0.1.0" +; ,go-github-com-go-logr-logr-0.1.0))) +; (home-page "https://k8s.io/klog/v2") +; (synopsis "klog") +; (description +; "Package klog implements logging analogous to the Google-internal C++ INFO/ERROR/V setup. +;It provides functions Info, Warning, Error, Fatal, plus formatting variants such as +;Infof. It also provides V-style logging controlled by the -v and -vmodule=file=2 flags. +;") +; (license license:asl2.0))) +; +;(define-public go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920 +; (package +; (name "go-k8s-io-utils") +; (version "0.0.0-20201110183641-67b214c5f920") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes/utils") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19rc9v5xin0a8qbf25my3rd0jd74cin2mk2a38j2dwplqy3s9crl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "k8s.io/utils")) +; (propagated-inputs +; `(("go-k8s-io-klog-v2-2.0.0" ,go-k8s-io-klog-v2-2.0.0) +; ("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0) +; ("go-github-com-spf13-afero-1.2.2" ,go-github-com-spf13-afero-1.2.2) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://k8s.io/utils") +; (synopsis "Utils") +; (description +; "This package provides a set of Go libraries that provide low-level, kubernetes-independent packages +;supplementing the @url{https://golang.org/pkg/#stdlib,Go standard libs}.") +; (license license:asl2.0))) +; +;(define-public go-github-com-gogo-googleapis-1.3.2 +; (package +; (name "go-github-com-gogo-googleapis") +; (version "1.3.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/gogo/googleapis") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "10670qprmk151n6pa1yclr89kgrvmalzvkq221xqbid83iv59s2h")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/gogo/googleapis")) +; (propagated-inputs +; `(("go-github-com-gogo-protobuf-1.3.1" +; ,go-github-com-gogo-protobuf-1.3.1))) +; (home-page "https://github.com/gogo/googleapis") +; (synopsis "Google APIs generated by gogoprotobuf") +; (description +; "The @url{https://github.com/gogo/grpc-example,grpc-example} includes an example usage of this repository.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-containerd-1.5.7 +; (package +; (name "go-github-com-containerd-containerd") +; (version "1.5.7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/containerd") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "14qb7a9ckfvxl30axqsha0qs8lfkpkxnhj61cdqxk2b9mz160a67")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/containerd")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) +; ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) +; ("go-github-com-golang-protobuf-1.3.5" +; ,go-github-com-golang-protobuf-1.3.5) +; ("go-github-com-gogo-googleapis-1.3.2" +; ,go-github-com-gogo-googleapis-1.3.2) +; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" +; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) +; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) +; ("go-k8s-io-cri-api-0.20.6" ,go-k8s-io-cri-api-0.20.6) +; ("go-k8s-io-component-base-0.20.6" ,go-k8s-io-component-base-0.20.6) +; ("go-k8s-io-client-go-0.20.6" ,go-k8s-io-client-go-0.20.6) +; ("go-k8s-io-apiserver-0.20.6" ,go-k8s-io-apiserver-0.20.6) +; ("go-k8s-io-apimachinery-0.20.6" ,go-k8s-io-apimachinery-0.20.6) +; ("go-k8s-io-api-0.20.6" ,go-k8s-io-api-0.20.6) +; ("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) +; ("go-golang-org-x-sys-0.0.0-20210426230700-d19ff857e887" +; ,go-golang-org-x-sys-0.0.0-20210426230700-d19ff857e887) +; ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" +; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) +; ("go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110" +; ,go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110) +; ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) +; ("go-github-com-tchap-go-patricia-2.2.6+incompatible" +; ,go-github-com-tchap-go-patricia-2.2.6+incompatible) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-sirupsen-logrus-1.8.1" +; ,go-github-com-sirupsen-logrus-1.8.1) +; ("go-github-com-satori-go-uuid-1.2.0" +; ,go-github-com-satori-go-uuid-1.2.0) +; ("go-github-com-prometheus-procfs-0.6.0" +; ,go-github-com-prometheus-procfs-0.6.0) +; ("go-github-com-prometheus-client-golang-1.7.1" +; ,go-github-com-prometheus-client-golang-1.7.1) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-pelletier-go-toml-1.8.1" +; ,go-github-com-pelletier-go-toml-1.8.1) +; ("go-github-com-opencontainers-selinux-1.8.2" +; ,go-github-com-opencontainers-selinux-1.8.2) +; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417" +; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417) +; ("go-github-com-opencontainers-runc-1.0.2" +; ,go-github-com-opencontainers-runc-1.0.2) +; ("go-github-com-opencontainers-image-spec-1.0.1" +; ,go-github-com-opencontainers-image-spec-1.0.1) +; ("go-github-com-opencontainers-go-digest-1.0.0" +; ,go-github-com-opencontainers-go-digest-1.0.0) +; ("go-github-com-moby-sys-symlink-0.1.0" +; ,go-github-com-moby-sys-symlink-0.1.0) +; ("go-github-com-moby-sys-mountinfo-0.4.1" +; ,go-github-com-moby-sys-mountinfo-0.4.1) +; ("go-github-com-moby-locker-1.0.1" ,go-github-com-moby-locker-1.0.1) +; ("go-github-com-klauspost-compress-1.11.13" +; ,go-github-com-klauspost-compress-1.11.13) +; ("go-github-com-imdario-mergo-0.3.12" +; ,go-github-com-imdario-mergo-0.3.12) +; ("go-github-com-hashicorp-go-multierror-1.0.0" +; ,go-github-com-hashicorp-go-multierror-1.0.0) +; ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" +; ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) +; ("go-github-com-google-uuid-1.2.0" ,go-github-com-google-uuid-1.2.0) +; ("go-github-com-google-go-cmp-0.5.5" +; ,go-github-com-google-go-cmp-0.5.5) +; ("go-github-com-gogo-protobuf-1.3.2" +; ,go-github-com-gogo-protobuf-1.3.2) +; ("go-github-com-fsnotify-fsnotify-1.4.9" +; ,go-github-com-fsnotify-fsnotify-1.4.9) +; ("go-github-com-emicklei-go-restful-2.9.5+incompatible" +; ,go-github-com-emicklei-go-restful-2.9.5+incompatible) +; ("go-github-com-docker-go-units-0.4.0" +; ,go-github-com-docker-go-units-0.4.0) +; ("go-github-com-docker-go-metrics-0.0.1" +; ,go-github-com-docker-go-metrics-0.0.1) +; ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" +; ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1) +; ("go-github-com-coreos-go-systemd-v22-22.3.2" +; ,go-github-com-coreos-go-systemd-v22-22.3.2) +; ("go-github-com-containernetworking-plugins-0.9.1" +; ,go-github-com-containernetworking-plugins-0.9.1) +; ("go-github-com-containerd-zfs-1.0.0" +; ,go-github-com-containerd-zfs-1.0.0) +; ("go-github-com-containerd-typeurl-1.0.2" +; ,go-github-com-containerd-typeurl-1.0.2) +; ("go-github-com-containerd-ttrpc-1.0.2" +; ,go-github-com-containerd-ttrpc-1.0.2) +; ("go-github-com-containerd-nri-0.1.0" +; ,go-github-com-containerd-nri-0.1.0) +; ("go-github-com-containerd-imgcrypt-1.1.1" +; ,go-github-com-containerd-imgcrypt-1.1.1) +; ("go-github-com-containerd-go-runc-1.0.0" +; ,go-github-com-containerd-go-runc-1.0.0) +; ("go-github-com-containerd-go-cni-1.0.2" +; ,go-github-com-containerd-go-cni-1.0.2) +; ("go-github-com-containerd-fifo-1.0.0" +; ,go-github-com-containerd-fifo-1.0.0) +; ("go-github-com-containerd-continuity-0.1.0" +; ,go-github-com-containerd-continuity-0.1.0) +; ("go-github-com-containerd-console-1.0.2" +; ,go-github-com-containerd-console-1.0.2) +; ("go-github-com-containerd-cgroups-1.0.1" +; ,go-github-com-containerd-cgroups-1.0.1) +; ("go-github-com-containerd-btrfs-1.0.0" +; ,go-github-com-containerd-btrfs-1.0.0) +; ("go-github-com-containerd-aufs-1.0.0" +; ,go-github-com-containerd-aufs-1.0.0) +; ("go-github-com-microsoft-hcsshim-0.8.21" +; ,go-github-com-microsoft-hcsshim-0.8.21) +; ("go-github-com-microsoft-go-winio-0.4.17" +; ,go-github-com-microsoft-go-winio-0.4.17))) +; (home-page "https://github.com/containerd/containerd") +; (synopsis "Now Recruiting") +; (description +; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containers-libtrust-0.0.0-20190913040956-14b96171aa3b +; (package +; (name "go-github-com-containers-libtrust") +; (version "0.0.0-20190913040956-14b96171aa3b") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containers/libtrust") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1s54984nlg8mbl6n678v46zknxsmnbvma5c77zrdk2bj2m287d09")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containers/libtrust")) +; (home-page "https://github.com/containers/libtrust") +; (synopsis "libtrust") +; (description +; "Package libtrust provides an interface for managing authentication and +;authorization using public key cryptography. Authentication is handled +;using the identity attached to the public key and verified through TLS +;x509 certificates, a key challenge, or signature. Authorization and +;access control is managed through a trust graph distributed between +;both remote trust servers and locally cached and managed data. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-google-go-cmp-0.5.2 +; (package +; (name "go-github-com-google-go-cmp") +; (version "0.5.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/go-cmp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0qchy411jm9q2l9mf7x3ry2ycaqp9xdhf2nx14qrpzcxfigv2705")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/go-cmp")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" +; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) +; (home-page "https://github.com/google/go-cmp") +; (synopsis "Package for equality of Go values") +; (description +; "This package is intended to be a more powerful and safer alternative to +;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") +; (license license:bsd-3))) +; +;(define-public go-github-com-miekg-pkcs11-1.0.3 +; (package +; (name "go-github-com-miekg-pkcs11") +; (version "1.0.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/miekg/pkcs11") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0rmmgssb6y28x54si5h63gwbdsjjxf5n9xvm3zqdfsf9l10gx2m6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/miekg/pkcs11")) +; (home-page "https://github.com/miekg/pkcs11") +; (synopsis "PKCS#11") +; (description +; "Package pkcs11 is a wrapper around the PKCS#11 cryptographic library. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-opencontainers-image-spec-1.0.1 +; (package +; (name "go-github-com-opencontainers-image-spec") +; (version "1.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/image-spec") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "03dvbj3dln8c55v9gp79mgmz2yi2ws3r08iyz2fk41y3i22iaw1q")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/image-spec")) +; (home-page "https://github.com/opencontainers/image-spec") +; (synopsis "OCI Image Format Specification") +; (description +; "The OCI Image Format project creates and maintains the software shipping container image format spec (OCI Image Format).") +; (license license:asl2.0))) +; +;(define-public go-github-com-stefanberger-go-pkcs11uri-0.0.0-20201008174630-78d3cae3a980 +; (package +; (name "go-github-com-stefanberger-go-pkcs11uri") +; (version "0.0.0-20201008174630-78d3cae3a980") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stefanberger/go-pkcs11uri") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "09bnd1fn2v5y5ngsxz751a0x9fsqn8idlfrwyymfv9l57wvmrd2l")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stefanberger/go-pkcs11uri")) +; (home-page "https://github.com/stefanberger/go-pkcs11uri") +; (synopsis "go-pkcs11uri") +; (description +; "Welcome to the go-pkcs11uri library. The implementation follows @url{https://tools.ietf.org/html/rfc7512,RFC 7512} and this @url{https://www.rfc-editor.org/errata/rfc7512,errata}.") +; (license license:asl2.0))) +; +;(define-public go-go-mozilla-org-pkcs7-0.0.0-20200128120323-432b2356ecb1 +; (package +; (name "go-go-mozilla-org-pkcs7") +; (version "0.0.0-20200128120323-432b2356ecb1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mozilla-services/pkcs7") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0yncaq6i1x6apykvng92yyqkj5kmzl4c43lmcalr5lq7ks009p40")))) +; (build-system go-build-system) +; (arguments '(#:import-path "go.mozilla.org/pkcs7")) +; (home-page "https://go.mozilla.org/pkcs7") +; (synopsis "pkcs7") +; (description +; "Package pkcs7 implements parsing and generation of some PKCS#7 structures. +;") +; (license license:expat))) +; +;(define-public go-gopkg-in-square-go-jose-v2-2.5.1 +; (package +; (name "go-gopkg-in-square-go-jose-v2") +; (version "2.5.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/square/go-jose.v2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0z0hbmb5yyvnjkyiyn259wkbqbjxs2pzx87jz472shn2bgggxa4n")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path +; "gopkg.in/square/go-jose.v2" +; #:unpack-path +; "gopkg.in/square/go-jose.v2")) +; (home-page "https://gopkg.in/square/go-jose.v2") +; (synopsis "Go JOSE") +; (description +; "Package jose aims to provide an implementation of the Javascript Object Signing +;and Encryption set of standards. It implements encryption and signing based on +;the JSON Web Encryption and JSON Web Signature standards, with optional JSON +;Web Token support available in a sub-package. The library supports both the +;compact and full serialization formats, and has optional support for multiple +;recipients. +;") +; (license license:asl2.0))) +; +;(define-public go-gopkg-in-yaml-v2-2.4.0 +; (package +; (name "go-gopkg-in-yaml-v2") +; (version "2.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/yaml.v2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1pbmrpj7gcws34g8vwna4i2nhm9p6235piww36436xhyaa10cldr")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" +; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) +; (home-page "https://gopkg.in/yaml.v2") +; (synopsis "YAML support for the Go language") +; (description "Package yaml implements YAML support for the Go language. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-containers-ocicrypt-1.1.2 +; (package +; (name "go-github-com-containers-ocicrypt") +; (version "1.1.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containers/ocicrypt") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0cw9f8vmra6vx6k11yhn297brz719ana3h5pznclfdfp54ggz8vv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containers/ocicrypt")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) +; ("go-gopkg-in-square-go-jose-v2-2.5.1" +; ,go-gopkg-in-square-go-jose-v2-2.5.1) +; ("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) +; ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" +; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) +; ("go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2" +; ,go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2) +; ("go-go-mozilla-org-pkcs7-0.0.0-20200128120323-432b2356ecb1" +; ,go-go-mozilla-org-pkcs7-0.0.0-20200128120323-432b2356ecb1) +; ("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0) +; ("go-github-com-stefanberger-go-pkcs11uri-0.0.0-20201008174630-78d3cae3a980" +; ,go-github-com-stefanberger-go-pkcs11uri-0.0.0-20201008174630-78d3cae3a980) +; ("go-github-com-sirupsen-logrus-1.7.0" +; ,go-github-com-sirupsen-logrus-1.7.0) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-image-spec-1.0.1" +; ,go-github-com-opencontainers-image-spec-1.0.1) +; ("go-github-com-opencontainers-go-digest-1.0.0" +; ,go-github-com-opencontainers-go-digest-1.0.0) +; ("go-github-com-miekg-pkcs11-1.0.3" ,go-github-com-miekg-pkcs11-1.0.3) +; ("go-github-com-google-go-cmp-0.5.2" +; ,go-github-com-google-go-cmp-0.5.2) +; ("go-github-com-golang-protobuf-1.4.3" +; ,go-github-com-golang-protobuf-1.4.3))) +; (home-page "https://github.com/containers/ocicrypt") +; (synopsis "OCIcrypt Library") +; (description +; "The @code{ocicrypt} library is the OCI image spec implementation of container image encryption. More details of the spec can be seen in the @url{https://github.com/opencontainers/image-spec/pull/775,OCI repository}. The purpose of this library is to encode spec structures and consts in code, as well as provide a consistent implementation of image encryption across container runtimes and build tools.") +; (license license:asl2.0))) +; +;(define-public go-github-com-burntsushi-toml-0.4.1 +; (package +; (name "go-github-com-burntsushi-toml") +; (version "0.4.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/BurntSushi/toml") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0bz7q3v4m2rq5z47q81bvb4lw6ss2r1x3phgr43a6nls9x5kcpp1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/BurntSushi/toml")) +; (home-page "https://github.com/BurntSushi/toml") +; (synopsis "TOML parser and encoder for Go with reflection") +; (description +; "Package toml implements decoding and encoding of TOML files. +;") +; (license license:expat))) +; +;(define-public go-github-com-microsoft-go-winio-0.5.0 +; (package +; (name "go-github-com-microsoft-go-winio") +; (version "0.5.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/microsoft/go-winio") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "123p5by5craqigydfqj0hchplcv75zz81xzj5s3ixq624qjbg0z5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/Microsoft/go-winio")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" +; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) +; ("go-github-com-sirupsen-logrus-1.7.0" +; ,go-github-com-sirupsen-logrus-1.7.0) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) +; (home-page "https://github.com/Microsoft/go-winio") +; (synopsis "go-winio") +; (description +; "This repository contains utilities for efficiently performing Win32 IO operations in +;Go. Currently, this is focused on accessing named pipes and other file handles, and +;for using named pipes as a net transport.") +; (license license:expat))) +; +;(define-public go-github-com-microsoft-go-winio-0.4.17 +; (package +; (name "go-github-com-microsoft-go-winio") +; (version "0.4.17") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/microsoft/go-winio") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0gmgiak4x4gdyr17zm4b9vvharflk9pz5aj5jayh9hq50133b2f9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/Microsoft/go-winio")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" +; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) +; ("go-github-com-sirupsen-logrus-1.7.0" +; ,go-github-com-sirupsen-logrus-1.7.0) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) +; (home-page "https://github.com/Microsoft/go-winio") +; (synopsis "go-winio") +; (description +; "This repository contains utilities for efficiently performing Win32 IO operations in +;Go. Currently, this is focused on accessing named pipes and other file handles, and +;for using named pipes as a net transport.") +; (license license:expat))) +; +;(define-public go-github-com-cilium-ebpf-0.4.0 +; (package +; (name "go-github-com-cilium-ebpf") +; (version "0.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/cilium/ebpf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1j33vfz8mxnqadkd17l0y3ll71gph3ndm8hwrwbwnf5px7bfv9yl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/cilium/ebpf")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" +; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) +; ("go-github-com-google-go-cmp-0.5.4" +; ,go-github-com-google-go-cmp-0.5.4) +; ("go-github-com-frankban-quicktest-1.11.3" +; ,go-github-com-frankban-quicktest-1.11.3))) +; (home-page "https://github.com/cilium/ebpf") +; (synopsis "eBPF") +; (description "Package ebpf is a toolkit for working with eBPF programs. +;") +; (license license:expat))) +; +;(define-public go-github-com-coreos-go-systemd-v22-22.1.0 +; (package +; (name "go-github-com-coreos-go-systemd-v22") +; (version "22.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/coreos/go-systemd") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "127dj1iwp69yj74nwh9ckgc0mkk1mv4yzbxmbdxix1r7j6q35z3j")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/coreos/go-systemd/v22")) +; (propagated-inputs +; `(("go-github-com-godbus-dbus-v5-5.0.3" +; ,go-github-com-godbus-dbus-v5-5.0.3))) +; (home-page "https://github.com/coreos/go-systemd") +; (synopsis "go-systemd") +; (description "Go bindings to systemd. The project has several packages:") +; (license license:asl2.0))) +; +;(define-public go-github-com-godbus-dbus-v5-5.0.3 +; (package +; (name "go-github-com-godbus-dbus-v5") +; (version "5.0.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/godbus/dbus") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1bkc904073k807yxg6mvqaxrr6ammmhginr9p54jfb55mz3hfw3s")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/godbus/dbus/v5")) +; (home-page "https://github.com/godbus/dbus") +; (synopsis "dbus") +; (description +; "Package dbus implements bindings to the D-Bus message bus system. +;") +; (license license:bsd-2))) +; +;(define-public go-github-com-containerd-cgroups-1.0.1 +; (package +; (name "go-github-com-containerd-cgroups") +; (version "1.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/cgroups") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1p992w942xba9z77nhhbc6nk5q09c3zxxhq9n7fm5alx3a8fwbpl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/cgroups")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" +; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) +; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-sirupsen-logrus-1.7.0" +; ,go-github-com-sirupsen-logrus-1.7.0) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-runtime-spec-1.0.2" +; ,go-github-com-opencontainers-runtime-spec-1.0.2) +; ("go-github-com-gogo-protobuf-1.3.2" +; ,go-github-com-gogo-protobuf-1.3.2) +; ("go-github-com-godbus-dbus-v5-5.0.3" +; ,go-github-com-godbus-dbus-v5-5.0.3) +; ("go-github-com-docker-go-units-0.4.0" +; ,go-github-com-docker-go-units-0.4.0) +; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" +; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) +; ("go-github-com-coreos-go-systemd-v22-22.1.0" +; ,go-github-com-coreos-go-systemd-v22-22.1.0) +; ("go-github-com-cilium-ebpf-0.4.0" ,go-github-com-cilium-ebpf-0.4.0))) +; (home-page "https://github.com/containerd/cgroups") +; (synopsis "cgroups") +; (description +; "Go package for creating, managing, inspecting, and destroying cgroups. +;The resources format for settings on the cgroup uses the OCI runtime-spec found +;@url{https://github.com/opencontainers/runtime-spec,here}.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-containerd-1.4.9 +; (package +; (name "go-github-com-containerd-containerd") +; (version "1.4.9") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/containerd") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ykikks6ihgg899ibk9m9m0hqrbss0cx7l7z4yjb873b10bacj52")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/containerd")) +; (home-page "https://github.com/containerd/containerd") +; (synopsis "Now Recruiting") +; (description +; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") +; (license license:asl2.0))) +; +;(define-public go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898 +; (package +; (name "go-bazil-org-fuse") +; (version "0.0.0-20160811212531-371fbbdaa898") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/bazil/fuse") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1x5p301py7mcxgwklfm6pqqkzssln0nfzllng49pnk60m03ilp4w")))) +; (build-system go-build-system) +; (arguments '(#:import-path "bazil.org/fuse")) +; (home-page "https://bazil.org/fuse") +; (synopsis "bazil.org/fuse -- Filesystems in Go") +; (description +; "Package fuse enables writing FUSE file systems on Linux and FreeBSD. +;") +; (license #f))) +; +;(define-public go-github-com-dustin-go-humanize-1.0.0 +; (package +; (name "go-github-com-dustin-go-humanize") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/dustin/go-humanize") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1kqf1kavdyvjk7f8kx62pnm7fbypn9z1vbf8v2qdh3y7z7a0cbl3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/dustin/go-humanize")) +; (home-page "https://github.com/dustin/go-humanize") +; (synopsis "Humane Units") +; (description +; "Package humanize converts boring ugly numbers to human-friendly strings and back. +;") +; (license license:expat))) +; +;(define-public go-github-com-golang-protobuf-1.3.5 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.3.5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1gkd1942vk9n8kfzdwy1iil6wgvlwjq7a3y5jc49ck4lz9rhmgkq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0 +; (package +; (name "go-github-com-cpuguy83-go-md2man-v2") +; (version "2.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/cpuguy83/go-md2man") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) +; (propagated-inputs +; `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" +; ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) +; ("go-github-com-russross-blackfriday-v2-2.0.1" +; ,go-github-com-russross-blackfriday-v2-2.0.1) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0))) +; (home-page "https://github.com/cpuguy83/go-md2man") +; (synopsis "go-md2man") +; (description "Converts markdown into roff (man pages).") +; (license license:expat))) +; +;(define-public go-github-com-inconshreveable-mousetrap-1.0.0 +; (package +; (name "go-github-com-inconshreveable-mousetrap") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/inconshreveable/mousetrap") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1mn0kg48xkd74brf48qf5hzp0bc6g8cf5a77w895rl3qnlpfw152")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/inconshreveable/mousetrap")) +; (home-page "https://github.com/inconshreveable/mousetrap") +; (synopsis "mousetrap") +; (description "mousetrap is a tiny library that answers a single question.") +; (license license:asl2.0))) +; +;(define-public go-github-com-mitchellh-go-homedir-1.1.0 +; (package +; (name "go-github-com-mitchellh-go-homedir") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mitchellh/go-homedir") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ydzkipf28hwj2bfxqmwlww47khyk6d152xax4bnyh60f4lq3nx1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mitchellh/go-homedir")) +; (home-page "https://github.com/mitchellh/go-homedir") +; (synopsis "go-homedir") +; (description +; "This is a Go library for detecting the user's home directory without +;the use of cgo, so the library can be used in cross-compilation environments.") +; (license license:expat))) +; +;(define-public go-github-com-armon-consul-api-0.0.0-20180202201655-eb2c6b5be1b6 +; (package +; (name "go-github-com-armon-consul-api") +; (version "0.0.0-20180202201655-eb2c6b5be1b6") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/armon/consul-api") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1j6fdr1sg36qy4n4xjl7brq739fpm5npq98cmvklzjc9qrx98nk9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/armon/consul-api")) +; (home-page "https://github.com/armon/consul-api") +; (synopsis "consul-api") +; (description +; " Please use @url{https://github.com/hashicorp/consul/tree/master/api,consul api package} instead. +;Godocs for that package @url{http://godoc.org/github.com/hashicorp/consul/api,are here}.") +; (license license:mpl2.0))) +; +;(define-public go-github-com-coreos-bbolt-1.3.2 +; (package +; (name "go-github-com-coreos-bbolt") +; (version "1.3.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/etcd-io/bbolt") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "13d5l6p6c5wvkr6vn9hkhz9c593qifn7fgx0hg4d6jcvg1y0bnm2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/coreos/bbolt")) +; (home-page "https://github.com/coreos/bbolt") +; (synopsis "bbolt") +; (description +; "package bbolt implements a low-level key/value store in pure Go. It supports +;fully serializable transactions, ACID semantics, and lock-free MVCC with +;multiple readers and a single writer. Bolt can be used for projects that +;want a simple data store without the need to add large dependencies such as +;Postgres or MySQL. +;") +; (license license:expat))) +; +;(define-public go-github-com-coreos-etcd-3.3.10+incompatible +; (package +; (name "go-github-com-coreos-etcd") +; (version "3.3.10+incompatible") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/etcd-io/etcd") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1x2ii1hj8jraba8rbxz6dmc03y3sjxdnzipdvg6fywnlq1f3l3wl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/coreos/etcd")) +; (home-page "https://github.com/coreos/etcd") +; (synopsis "etcd") +; (description +; "Package main is a simple wrapper of the real etcd entrypoint package +;(located at github.com/coreos/etcd/etcdmain) to ensure that etcd is still +;\"go getable\"; e.g. `go get github.com/coreos/etcd` works as expected and +;builds a binary in $GOBIN/etcd +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-coreos-go-semver-0.2.0 +; (package +; (name "go-github-com-coreos-go-semver") +; (version "0.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/coreos/go-semver") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1gghi5bnqj50hfxhqc1cxmynqmh2yk9ii7ab9gsm75y5cp94ymk0")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/coreos/go-semver")) +; (home-page "https://github.com/coreos/go-semver") +; (synopsis "go-semver - Semantic Versioning Library") +; (description +; "go-semver is a @url{http://semver.org/,semantic versioning} library for Go. It lets you parse +;and compare two semantic version strings.") +; (license license:asl2.0))) +; +;(define-public go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e +; (package +; (name "go-github-com-coreos-go-systemd") +; (version "0.0.0-20190321100706-95778dfbb74e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/coreos/go-systemd") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1s3bg9p78wkixn2bqb2p23wbsqfg949ml6crw2b498s71mwh8rcf")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/coreos/go-systemd")) +; (home-page "https://github.com/coreos/go-systemd") +; (synopsis "go-systemd") +; (description "Go bindings to systemd. The project has several packages:") +; (license license:asl2.0))) +; +;(define-public go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f +; (package +; (name "go-github-com-coreos-pkg") +; (version "0.0.0-20180928190104-399ea9e2e55f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/coreos/pkg") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0nxbn0m7lr4dg0yrwnvlkfiyg3ndv8vdpssjx7b714nivpc6ar0y")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/coreos/pkg")) +; (home-page "https://github.com/coreos/pkg") +; (synopsis #f) +; (description "a collection of go utility packages") +; (license license:asl2.0))) +; +;(define-public go-github-com-dgrijalva-jwt-go-3.2.0+incompatible +; (package +; (name "go-github-com-dgrijalva-jwt-go") +; (version "3.2.0+incompatible") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/dgrijalva/jwt-go") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "08m27vlms74pfy5z79w67f9lk9zkx6a9jd68k3c4msxy75ry36mp")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/dgrijalva/jwt-go")) +; (home-page "https://github.com/dgrijalva/jwt-go") +; (synopsis "jwt-go") +; (description +; "Package jwt is a Go implementation of JSON Web Tokens: @url{http://self-issued.info/docs/draft-jones-json-web-token.html,http://self-issued.info/docs/draft-jones-json-web-token.html} +;") +; (license license:expat))) +; +;(define-public go-github-com-fsnotify-fsnotify-1.4.7 +; (package +; (name "go-github-com-fsnotify-fsnotify") +; (version "1.4.7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/fsnotify/fsnotify") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/fsnotify/fsnotify")) +; (home-page "https://github.com/fsnotify/fsnotify") +; (synopsis "File system notifications for Go") +; (description +; "Package fsnotify provides a platform-independent interface for file system notifications. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20180221164845-07fd8470d635 +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20180221164845-07fd8470d635") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "193g0a1zxb9ikph7r2klc6rdqxqzfmmr8d5bcibyhsm2l63s17mx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-github-com-kisielk-errcheck-1.1.0 +; (package +; (name "go-github-com-kisielk-errcheck") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kisielk/errcheck") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19vd4rxmqbk5lpiav3pf7df3yjlz0l0dwx9mn0gjq5f998iyhy6y")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kisielk/errcheck")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20180221164845-07fd8470d635" +; ,go-golang-org-x-tools-0.0.0-20180221164845-07fd8470d635) +; ("go-github-com-kisielk-gotool-1.0.0" +; ,go-github-com-kisielk-gotool-1.0.0))) +; (home-page "https://github.com/kisielk/errcheck") +; (synopsis "errcheck") +; (description +; "errcheck is a program for checking for unchecked errors in go programs.") +; (license license:expat))) +; +;(define-public go-github-com-gogo-protobuf-1.2.1 +; (package +; (name "go-github-com-gogo-protobuf") +; (version "1.2.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/gogo/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "06yqa6h0kw3gr5pc3qmas7f7435a96zf7iw7p0l00r2hqf6fqq6m")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/gogo/protobuf")) +; (propagated-inputs +; `(("go-github-com-kisielk-errcheck-1.1.0" +; ,go-github-com-kisielk-errcheck-1.1.0))) +; (home-page "https://github.com/gogo/protobuf") +; (synopsis "Protocol Buffers for Go with Gadgets") +; (description +; "gogoprotobuf is a fork of @url{https://github.com/golang/protobuf,golang/protobuf} with extra code generation features.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-groupcache-0.0.0-20190129154638-5b532d6fd5ef +; (package +; (name "go-github-com-golang-groupcache") +; (version "0.0.0-20190129154638-5b532d6fd5ef") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/groupcache") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ls2i4ixyd4r2556j7c5jmlligjb35gfvxknrdn2abjmcahgqd6h")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/groupcache")) +; (home-page "https://github.com/golang/groupcache") +; (synopsis "groupcache") +; (description +; "Package groupcache provides a data loading mechanism with caching +;and de-duplication that works across a set of peer processes. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-google-btree-1.0.0 +; (package +; (name "go-github-com-google-btree") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/btree") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ba430m9fbnagacp57krgidsyrgp3ycw5r7dj71brgp5r52g82p6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/btree")) +; (home-page "https://github.com/google/btree") +; (synopsis "BTree implementation for Go") +; (description +; "Package btree implements in-memory B-Trees of arbitrary degree. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-gorilla-websocket-1.4.0 +; (package +; (name "go-github-com-gorilla-websocket") +; (version "1.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/gorilla/websocket") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "00i4vb31nsfkzzk7swvx3i75r2d960js3dri1875vypk3v2s0pzk")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/gorilla/websocket")) +; (home-page "https://github.com/gorilla/websocket") +; (synopsis "Gorilla WebSocket") +; (description +; "Package websocket implements the WebSocket protocol defined in @url{https://rfc-editor.org/rfc/rfc6455.html,RFC 6455}. +;") +; (license license:bsd-2))) +; +;(define-public go-github-com-grpc-ecosystem-go-grpc-middleware-1.0.0 +; (package +; (name "go-github-com-grpc-ecosystem-go-grpc-middleware") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc-ecosystem/go-grpc-middleware") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0lwgxih021xfhfb1xb9la5f98bpgpaiz63sbllx77qwwl2rmhrsp")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/grpc-ecosystem/go-grpc-middleware")) +; (home-page "https://github.com/grpc-ecosystem/go-grpc-middleware") +; (synopsis "Go gRPC Middleware") +; (description +; "`grpc_middleware` is a collection of gRPC middleware packages: interceptors, helpers and tools. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0 +; (package +; (name "go-github-com-grpc-ecosystem-go-grpc-prometheus") +; (version "1.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc-ecosystem/go-grpc-prometheus") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1lzk54h7np32b3acidg1ggbn8ppbnns0m71gcg9d1qkkdh8zrijl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/grpc-ecosystem/go-grpc-prometheus")) +; (home-page "https://github.com/grpc-ecosystem/go-grpc-prometheus") +; (synopsis "Go gRPC Interceptors for Prometheus monitoring") +; (description +; "@url{https://prometheus.io/,Prometheus} monitoring for your @url{https://github.com/grpc/grpc-go,gRPC Go} servers and clients.") +; (license license:asl2.0))) +; +;(define-public go-github-com-kr-pretty-0.1.0 +; (package +; (name "go-github-com-kr-pretty") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kr/pretty") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "18m4pwg2abd0j9cn5v3k2ksk9ig4vlwxmlw9rrglanziv9l967qp")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kr/pretty")) +; (propagated-inputs +; `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) +; (home-page "https://github.com/kr/pretty") +; (synopsis #f) +; (description +; "Package pretty provides pretty-printing for Go values. This is +;useful during debugging, to avoid wrapping long output lines in +;the terminal. +;") +; (license license:expat))) +; +;(define-public go-github-com-rogpeppe-fastuuid-0.0.0-20150106093220-6724a57986af +; (package +; (name "go-github-com-rogpeppe-fastuuid") +; (version "0.0.0-20150106093220-6724a57986af") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/rogpeppe/fastuuid") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "12s65phfx6hxj4v0b5kj8akgrbf5mxpa101fyzw03h6hld1f70cz")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/rogpeppe/fastuuid")) +; (home-page "https://github.com/rogpeppe/fastuuid") +; (synopsis "fastuuid") +; (description +; "Package fastuuid provides fast UUID generation of 192 bit +;universally unique identifiers. +;") +; (license license:bsd-3))) +; +;(define-public go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127 +; (package +; (name "go-gopkg-in-check-v1") +; (version "1.0.0-20180628173108-788fd7840127") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/check.v1") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0v3bim0j375z81zrpr5qv42knqs0y2qv2vkjiqi5axvb78slki1a")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) +; (home-page "https://gopkg.in/check.v1") +; (synopsis "Instructions") +; (description +; "Package check is a rich testing extension for Go's testing package. +;") +; (license license:bsd-2))) +; +;(define-public go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20181220203305-927f97764cc3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0np7b766gb92vbm514yhdl7cjmqvn0dxdxskd84aas2ri1fkpgw5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-gopkg-in-resty-v1-1.12.0 +; (package +; (name "go-gopkg-in-resty-v1") +; (version "1.12.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/resty.v1") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "062mn735rqzhha5ag07z4gz08hxzrfm2yx067jfmaaxmb6797lmp")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/resty.v1" #:unpack-path "gopkg.in/resty.v1")) +; (propagated-inputs +; `(("go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3" +; ,go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3))) +; (home-page "https://gopkg.in/resty.v1") +; (synopsis "News") +; (description +; "Package resty provides Simple HTTP and REST client library for Go. +;") +; (license license:expat))) +; +;(define-public go-gopkg-in-yaml-v2-2.0.0-20170812160011-eb3733d160e7 +; (package +; (name "go-gopkg-in-yaml-v2") +; (version "2.0.0-20170812160011-eb3733d160e7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/yaml.v2") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1srhvcaa9db3a6xj29mkjr5kg33y71pclrlx4vcwz5m1lgb5c7q6")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) +; (home-page "https://gopkg.in/yaml.v2") +; (synopsis "YAML support for the Go language") +; (description "Package yaml implements YAML support for the Go language. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-grpc-ecosystem-grpc-gateway-1.9.0 +; (package +; (name "go-github-com-grpc-ecosystem-grpc-gateway") +; (version "1.9.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc-ecosystem/grpc-gateway") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1r4y48c76yxc2hpqszfjirvh7zxjb6z72qmk95li12ar79dhv3dy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/grpc-ecosystem/grpc-gateway")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.0.0-20170812160011-eb3733d160e7" +; ,go-gopkg-in-yaml-v2-2.0.0-20170812160011-eb3733d160e7) +; ("go-gopkg-in-resty-v1-1.12.0" ,go-gopkg-in-resty-v1-1.12.0) +; ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" +; ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) +; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) +; ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" +; ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) +; ("go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8" +; ,go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8) +; ("go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3" +; ,go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3) +; ("go-github-com-rogpeppe-fastuuid-0.0.0-20150106093220-6724a57986af" +; ,go-github-com-rogpeppe-fastuuid-0.0.0-20150106093220-6724a57986af) +; ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-ghodss-yaml-1.0.0" ,go-github-com-ghodss-yaml-1.0.0))) +; (home-page "https://github.com/grpc-ecosystem/grpc-gateway") +; (synopsis "grpc-gateway") +; (description +; "The grpc-gateway is a plugin of the Google protocol buffers compiler +;@url{https://github.com/protocolbuffers/protobuf,protoc}. +;It reads protobuf service definitions and generates a reverse-proxy server which +;translates a RESTful HTTP API into gRPC. This server is generated according to the +;@url{https://github.com/googleapis/googleapis/raw/master/google/api/http.proto#L46,(code google.api.http)} +;annotations in your service definitions.") +; (license license:bsd-3))) +; +;(define-public go-github-com-hashicorp-hcl-1.0.0 +; (package +; (name "go-github-com-hashicorp-hcl") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/hcl") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0q6ml0qqs0yil76mpn4mdx4lp94id8vbv575qm60jzl1ijcl5i66")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hashicorp/hcl")) +; (propagated-inputs +; `(("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://github.com/hashicorp/hcl") +; (synopsis "HCL") +; (description "Package hcl decodes HCL into usable Go structures. +;") +; (license license:mpl2.0))) +; +;(define-public go-github-com-jonboulle-clockwork-0.1.0 +; (package +; (name "go-github-com-jonboulle-clockwork") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/jonboulle/clockwork") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1pqxhsdavbp1n5grgyx2j6ylvql2fzn2cvpsgkc8li69dil7sibl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/jonboulle/clockwork")) +; (home-page "https://github.com/jonboulle/clockwork") +; (synopsis "clockwork") +; (description +; "Replace uses of the @code{time} package with the @code{clockwork.Clock} interface instead.") +; (license license:asl2.0))) +; +;(define-public go-github-com-magiconair-properties-1.8.0 +; (package +; (name "go-github-com-magiconair-properties") +; (version "1.8.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/magiconair/properties") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1a10362wv8a8qwb818wygn2z48lgzch940hvpv81hv8gc747ajxn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/magiconair/properties")) +; (home-page "https://github.com/magiconair/properties") +; (synopsis "Overview") +; (description +; "Package properties provides functions for reading and writing +;ISO-8859-1 and UTF-8 encoded .properties files and has +;support for recursive property expansion. +;") +; (license license:bsd-2))) +; +;(define-public go-github-com-mitchellh-mapstructure-1.1.2 +; (package +; (name "go-github-com-mitchellh-mapstructure") +; (version "1.1.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mitchellh/mapstructure") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "03bpv28jz9zhn4947saqwi328ydj7f6g6pf1m2d4m5zdh5jlfkrr")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mitchellh/mapstructure")) +; (home-page "https://github.com/mitchellh/mapstructure") +; (synopsis "mapstructure") +; (description +; "Package mapstructure exposes functionality to convert one arbitrary +;Go type into another, typically to convert a map[string]interface{} +;into a native Go structure. +;") +; (license license:expat))) +; +;(define-public go-github-com-pelletier-go-toml-1.2.0 +; (package +; (name "go-github-com-pelletier-go-toml") +; (version "1.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/pelletier/go-toml") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1fjzpcjng60mc3a4b2ql5a00d5gah84wj740dabv9kq67mpg8fxy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/pelletier/go-toml")) +; (home-page "https://github.com/pelletier/go-toml") +; (synopsis "go-toml") +; (description "Package toml is a TOML parser and manipulation library. +;") +; (license #f))) +; +;(define-public go-github-com-beorn7-perks-1.0.0 +; (package +; (name "go-github-com-beorn7-perks") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/beorn7/perks") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1i1nz1f6g55xi2y3aiaz5kqfgvknarbfl4f0sx4nyyb4s7xb1z9x")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/beorn7/perks")) +; (home-page "https://github.com/beorn7/perks") +; (synopsis "Perks for Go (golang.org)") +; (description +; "Perks contains the Go package quantile that computes approximate quantiles over +;an unbounded data stream within low memory and CPU bounds.") +; (license license:expat))) +; +;(define-public go-github-com-go-logfmt-logfmt-0.4.0 +; (package +; (name "go-github-com-go-logfmt-logfmt") +; (version "0.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/go-logfmt/logfmt") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "06smxc112xmixz78nyvk3b2hmc7wasf2sl5vxj1xz62kqcq9lzm9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/go-logfmt/logfmt")) +; (propagated-inputs +; `(("go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515" +; ,go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515))) +; (home-page "https://github.com/go-logfmt/logfmt") +; (synopsis "logfmt") +; (description +; "Package logfmt implements utilities to marshal and unmarshal data in the +;logfmt format. The logfmt format records key/value pairs in a way that +;balances readability for humans and simplicity of computer parsing. It is +;most commonly used as a more human friendly alternative to JSON for +;structured logging. +;") +; (license license:expat))) +; +;(define-public go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90 +; (package +; (name "go-github-com-prometheus-client-model") +; (version "0.0.0-20190129233127-fd36f4220a90") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/client_model") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1bs5d72k361llflgl94c22n0w53j30rsfh84smgk8mbjbcmjsaa5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/client_model")) +; (propagated-inputs +; `(("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" +; ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0))) +; (home-page "https://github.com/prometheus/client_model") +; (synopsis "Deprecation note") +; (description +; "This repository used to contain the code that defined both +;the data model and the exposition format of Prometheus metrics.") +; (license license:asl2.0))) +; +;(define-public go-github-com-julienschmidt-httprouter-1.2.0 +; (package +; (name "go-github-com-julienschmidt-httprouter") +; (version "1.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/julienschmidt/httprouter") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1k8bylc9s4vpvf5xhqh9h246dl1snxrzzz0614zz88cdh8yzs666")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/julienschmidt/httprouter")) +; (home-page "https://github.com/julienschmidt/httprouter") +; (synopsis "HttpRouter") +; (description +; "Package httprouter is a trie based high performance HTTP request router. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223 +; (package +; (name "go-github-com-mwitkow-go-conntrack") +; (version "0.0.0-20161129095857-cc309e4a2223") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mwitkow/go-conntrack") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0nbrnpk7bkmqg9mzwsxlm0y8m7s9qd9phr1q30qlx2qmdmz7c1mf")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mwitkow/go-conntrack")) +; (home-page "https://github.com/mwitkow/go-conntrack") +; (synopsis "Go tracing and monitoring (Prometheus) for") +; (description +; "@url{https://prometheus.io/,Prometheus} monitoring and @url{https://godoc.org/golang.org/x/net/trace#EventLog,(code x/net/trace)} tracing wrappers @code{net.Conn}, both inbound (@code{net.Listener}) and outbound (@code{net.Dialer}).") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20180904163835-0709b304e793 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20180904163835-0709b304e793") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0i05s09y5pavmfh71fgih7syxg58x7a4krgd8am6d3mnahnmab5c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20180905080454-ebe1bf3edb33") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0rkspxyjxdmc9f4n09hgkwj8jjd8z5p8mc9z8vwqwqcwrqv4sg7c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-sirupsen-logrus-1.2.0 +; (package +; (name "go-github-com-sirupsen-logrus") +; (version "1.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/sirupsen/logrus") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0r6334x2bls8ddznvzaldx4g88msjjns4mlks95rqrrg7h0ijigg")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/sirupsen/logrus")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33" +; ,go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33) +; ("go-golang-org-x-crypto-0.0.0-20180904163835-0709b304e793" +; ,go-golang-org-x-crypto-0.0.0-20180904163835-0709b304e793) +; ("go-github-com-stretchr-testify-1.2.2" +; ,go-github-com-stretchr-testify-1.2.2) +; ("go-github-com-stretchr-objx-0.1.1" +; ,go-github-com-stretchr-objx-0.1.1) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.1" +; ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.1) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://github.com/sirupsen/logrus") +; (synopsis "Logrus") +; (description +; "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-net-0.0.0-20181114220301-adae6a3d119a +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20181114220301-adae6a3d119a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1fx860zsgzqk28j7lmp96qsfrgb0kzbfjvr294hywswcbwdwkb01")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20181116152217-5ac8a444bdc5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "00zdrighflwc4iyizsag184nvl1cbkk02v73kpl5miprdrvzqlr4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-gopkg-in-yaml-v2-2.2.1 +; (package +; (name "go-gopkg-in-yaml-v2") +; (version "2.2.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/yaml.v2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0dwjrs2lp2gdlscs7bsrmyc5yf6mm4fvgw71bzr9mv2qrd2q73s1")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" +; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) +; (home-page "https://gopkg.in/yaml.v2") +; (synopsis "YAML support for the Go language") +; (description "Package yaml implements YAML support for the Go language. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-prometheus-common-0.4.0 +; (package +; (name "go-github-com-prometheus-common") +; (version "0.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/common") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "00008pczafy982m59n1j31pnp41f4grbc2c40jccp52xg3m5klmr")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/common")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1) +; ("go-gopkg-in-alecthomas-kingpin-v2-2.2.6" +; ,go-gopkg-in-alecthomas-kingpin-v2-2.2.6) +; ("go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5" +; ,go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5) +; ("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" +; ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) +; ("go-golang-org-x-net-0.0.0-20181114220301-adae6a3d119a" +; ,go-golang-org-x-net-0.0.0-20181114220301-adae6a3d119a) +; ("go-github-com-sirupsen-logrus-1.2.0" +; ,go-github-com-sirupsen-logrus-1.2.0) +; ("go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d" +; ,go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d) +; ("go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910" +; ,go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910) +; ("go-github-com-prometheus-client-golang-0.9.1" +; ,go-github-com-prometheus-client-golang-0.9.1) +; ("go-github-com-pkg-errors-0.8.0" ,go-github-com-pkg-errors-0.8.0) +; ("go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223" +; ,go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223) +; ("go-github-com-matttproud-golang-protobuf-extensions-1.0.1" +; ,go-github-com-matttproud-golang-protobuf-extensions-1.0.1) +; ("go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515" +; ,go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515) +; ("go-github-com-julienschmidt-httprouter-1.2.0" +; ,go-github-com-julienschmidt-httprouter-1.2.0) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0) +; ("go-github-com-gogo-protobuf-1.1.1" +; ,go-github-com-gogo-protobuf-1.1.1) +; ("go-github-com-go-stack-stack-1.8.0" +; ,go-github-com-go-stack-stack-1.8.0) +; ("go-github-com-go-logfmt-logfmt-0.3.0" +; ,go-github-com-go-logfmt-logfmt-0.3.0) +; ("go-github-com-go-kit-kit-0.8.0" ,go-github-com-go-kit-kit-0.8.0) +; ("go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973" +; ,go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973) +; ("go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf" +; ,go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf) +; ("go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc" +; ,go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc))) +; (home-page "https://github.com/prometheus/common") +; (synopsis "Common") +; (description +; "This repository contains Go libraries that are shared across Prometheus +;components and libraries. They are considered internal to Prometheus, without +;any stability guarantees for external usage.") +; (license license:asl2.0))) +; +;(define-public go-github-com-prometheus-procfs-0.0.0-20190507164030-5867b95ac084 +; (package +; (name "go-github-com-prometheus-procfs") +; (version "0.0.0-20190507164030-5867b95ac084") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/procfs") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1rahdk62ajj4zpfb3mgzjqip773la9fb0m87m7s9a0b39l3fmzvr")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/procfs")) +; (propagated-inputs +; `(("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" +; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4))) +; (home-page "https://github.com/prometheus/procfs") +; (synopsis "procfs") +; (description +; "Package procfs provides functions to retrieve system, kernel and process +;metrics from the pseudo-filesystem proc. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc +; (package +; (name "go-github-com-alecthomas-template") +; (version "0.0.0-20160405071501-a0175ee3bccc") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/alecthomas/template") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0qjgvvh26vk1cyfq9fadyhfgdj36f1iapbmr5xp6zqipldz8ffxj")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/alecthomas/template")) +; (home-page "https://github.com/alecthomas/template") +; (synopsis "Go's") +; (description +; "Package template implements data-driven templates for generating textual output. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf +; (package +; (name "go-github-com-alecthomas-units") +; (version "0.0.0-20151022065526-2efee857e7cf") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/alecthomas/units") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1j65b91qb9sbrml9cpabfrcf07wmgzzghrl7809hjjhrmbzri5bl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/alecthomas/units")) +; (home-page "https://github.com/alecthomas/units") +; (synopsis "Units - Helpful unit multipliers and functions for Go") +; (description +; "Package units provides helpful unit multipliers and functions for Go. +;") +; (license license:expat))) +; +;(define-public go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973 +; (package +; (name "go-github-com-beorn7-perks") +; (version "0.0.0-20180321164747-3a771d992973") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/beorn7/perks") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1l2lns4f5jabp61201sh88zf3b0q793w4zdgp9nll7mmfcxxjif3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/beorn7/perks")) +; (home-page "https://github.com/beorn7/perks") +; (synopsis "Perks for Go (golang.org)") +; (description +; "Perks contains the Go package quantile that computes approximate quantiles over +;an unbounded data stream within low memory and CPU bounds.") +; (license license:expat))) +; +;(define-public go-github-com-dgryski-go-sip13-0.0.0-20181026042036-e10d5fee7954 +; (package +; (name "go-github-com-dgryski-go-sip13") +; (version "0.0.0-20181026042036-e10d5fee7954") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/dgryski/go-sip13") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "15fyibfas209ljz3f7g07kdmfbl3hhyd9n5n7aq5n5p9m5mn41d6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/dgryski/go-sip13")) +; (home-page "https://github.com/dgryski/go-sip13") +; (synopsis #f) +; (description #f) +; (license license:expat))) +; +;(define-public go-github-com-go-kit-kit-0.8.0 +; (package +; (name "go-github-com-go-kit-kit") +; (version "0.8.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/go-kit/kit") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1rcywbc2pvab06qyf8pc2rdfjv7r6kxdv2v4wnpqnjhz225wqvc0")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/go-kit/kit")) +; (home-page "https://github.com/go-kit/kit") +; (synopsis "Go kit") +; (description +; "@strong{Go kit} is a @strong{programming toolkit} for building microservices +;(or elegant monoliths) in Go. We solve common problems in distributed +;systems and application architecture so you can focus on delivering +;business value.") +; (license license:expat))) +; +;(define-public go-github-com-go-logfmt-logfmt-0.3.0 +; (package +; (name "go-github-com-go-logfmt-logfmt") +; (version "0.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/go-logfmt/logfmt") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1gkgh3k5w1xwb2qbjq52p6azq3h1c1rr6pfwjlwj1zrijpzn2xb9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/go-logfmt/logfmt")) +; (home-page "https://github.com/go-logfmt/logfmt") +; (synopsis "logfmt") +; (description +; "Package logfmt implements utilities to marshal and unmarshal data in the +;logfmt format. The logfmt format records key/value pairs in a way that +;balances readability for humans and simplicity of computer parsing. It is +;most commonly used as a more human friendly alternative to JSON for +;structured logging. +;") +; (license license:expat))) +; +;(define-public go-github-com-go-stack-stack-1.8.0 +; (package +; (name "go-github-com-go-stack-stack") +; (version "1.8.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/go-stack/stack") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0wk25751ryyvxclyp8jdk5c3ar0cmfr8lrjb66qbg4808x66b96v")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/go-stack/stack")) +; (home-page "https://github.com/go-stack/stack") +; (synopsis "stack") +; (description +; "Package stack implements utilities to capture, manipulate, and format call +;stacks. It provides a simpler API than package runtime. +;") +; (license license:expat))) +; +;(define-public go-github-com-gogo-protobuf-1.1.1 +; (package +; (name "go-github-com-gogo-protobuf") +; (version "1.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/gogo/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1525pq7r6h3s8dncvq8gxi893p2nq8dxpzvq0nfl5b4p6mq0v1c2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/gogo/protobuf")) +; (home-page "https://github.com/gogo/protobuf") +; (synopsis "Protocol Buffers for Go with Gadgets") +; (description +; "gogoprotobuf is a fork of @url{https://github.com/golang/protobuf,golang/protobuf} with extra code generation features.") +; (license license:bsd-3))) +; +;(define-public go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515 +; (package +; (name "go-github-com-kr-logfmt") +; (version "0.0.0-20140226030751-b84e30acd515") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kr/logfmt") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "02ldzxgznrfdzvghfraslhgp19la1fczcbzh7wm2zdc6lmpd1qq9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kr/logfmt")) +; (home-page "https://github.com/kr/logfmt") +; (synopsis #f) +; (description +; "Package implements the decoding of logfmt key-value pairs. +;") +; (license license:expat))) +; +;(define-public go-github-com-matttproud-golang-protobuf-extensions-1.0.1 +; (package +; (name "go-github-com-matttproud-golang-protobuf-extensions") +; (version "1.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/matttproud/golang_protobuf_extensions") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1d0c1isd2lk9pnfq2nk0aih356j30k3h1gi2w0ixsivi5csl7jya")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "github.com/matttproud/golang_protobuf_extensions")) +; (home-page "https://github.com/matttproud/golang_protobuf_extensions") +; (synopsis "Overview") +; (description +; "This repository provides various Protocol Buffer extensions for the Go +;language (golang), namely support for record length-delimited message +;streaming.") +; (license license:asl2.0))) +; +;(define-public go-github-com-oklog-ulid-1.3.1 +; (package +; (name "go-github-com-oklog-ulid") +; (version "1.3.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/oklog/ulid") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0hybwyid820n80axrk863k2py93hbqlq6hxhf84ppmz0qd0ys0gq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/oklog/ulid")) +; (home-page "https://github.com/oklog/ulid") +; (synopsis "Universally Unique Lexicographically Sortable Identifier") +; (description +; "This package provides a Go port of @url{https://github.com/alizain/ulid,alizain/ulid} with binary format implemented.") +; (license license:asl2.0))) +; +;(define-public go-github-com-pkg-errors-0.8.0 +; (package +; (name "go-github-com-pkg-errors") +; (version "0.8.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/pkg/errors") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "001i6n71ghp2l6kdl3qq1v2vmghcz3kicv9a5wgcihrzigm75pp5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/pkg/errors")) +; (home-page "https://github.com/pkg/errors") +; (synopsis "errors") +; (description "Package errors provides simple error handling primitives. +;") +; (license license:bsd-2))) +; +;(define-public go-github-com-prometheus-client-golang-0.9.1 +; (package +; (name "go-github-com-prometheus-client-golang") +; (version "0.9.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/client_golang") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "01gnylazia30pcp069xcng482gwmm3xcx5zgrlwdkhic1lyb6i9l")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/client_golang")) +; (home-page "https://github.com/prometheus/client_golang") +; (synopsis "Prometheus Go client library") +; (description +; "This is the @url{http://golang.org,Go} client library for +;@url{http://prometheus.io,Prometheus}. It has two separate parts, one for +;instrumenting application code, and one for creating clients that talk to the +;Prometheus HTTP API.") +; (license license:asl2.0))) +; +;(define-public go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910 +; (package +; (name "go-github-com-prometheus-client-model") +; (version "0.0.0-20180712105110-5c3871d89910") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/client_model") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "04psf81l9fjcwascsys428v03fx4fi894h7fhrj2vvcz723q57k0")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/client_model")) +; (home-page "https://github.com/prometheus/client_model") +; (synopsis "Deprecation note") +; (description +; "This repository used to contain the code that defined both +;the data model and the exposition format of Prometheus metrics.") +; (license license:asl2.0))) +; +;(define-public go-github-com-prometheus-common-0.0.0-20181113130724-41aa239b4cce +; (package +; (name "go-github-com-prometheus-common") +; (version "0.0.0-20181113130724-41aa239b4cce") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/common") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0spy10lwanqa5ynks9cagphkq74zz4b3jm4w59vvizdcw4fhd7s6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/common")) +; (home-page "https://github.com/prometheus/common") +; (synopsis "Common") +; (description +; "This repository contains Go libraries that are shared across Prometheus +;components and libraries. They are considered internal to Prometheus, without +;any stability guarantees for external usage.") +; (license license:asl2.0))) +; +;(define-public go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d +; (package +; (name "go-github-com-prometheus-procfs") +; (version "0.0.0-20181005140218-185b4288413d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/procfs") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0d85429kdw5dgj5zhyiz1sq3i5691vj2gjnda93nnxxzx9acg8cv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/procfs")) +; (home-page "https://github.com/prometheus/procfs") +; (synopsis "procfs") +; (description +; "Package procfs provides functions to retrieve system, kernel and process +;metrics from the pseudo-filesystem proc. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20181107165924-66b7b1311ac8") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "00ny4r2bbj6rz939iy9g699acqydq7rfi6r6awn25w9i2dld9m13")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-gopkg-in-alecthomas-kingpin-v2-2.2.6 +; (package +; (name "go-gopkg-in-alecthomas-kingpin-v2") +; (version "2.2.6") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/alecthomas/kingpin.v2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0mndnv3hdngr3bxp7yxfd47cas4prv98sqw534mx7vp38gd88n5r")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path +; "gopkg.in/alecthomas/kingpin.v2" +; #:unpack-path +; "gopkg.in/alecthomas/kingpin.v2")) +; (home-page "https://gopkg.in/alecthomas/kingpin.v2") +; (synopsis "Kingpin - A Go (golang) command line and flag parser") +; (description +; "Package kingpin provides command line interfaces like this: +;") +; (license license:expat))) +; +;(define-public go-github-com-prometheus-tsdb-0.7.1 +; (package +; (name "go-github-com-prometheus-tsdb") +; (version "0.7.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus-junkyard/tsdb") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1c1da8i5byvhh4fp3vqjfb65aaksjskn3ggb8wg9hcfzjrhgpz04")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/tsdb")) +; (propagated-inputs +; `(("go-gopkg-in-alecthomas-kingpin-v2-2.2.6" +; ,go-gopkg-in-alecthomas-kingpin-v2-2.2.6) +; ("go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8" +; ,go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8) +; ("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" +; ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) +; ("go-github-com-stretchr-testify-1.2.2" +; ,go-github-com-stretchr-testify-1.2.2) +; ("go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d" +; ,go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d) +; ("go-github-com-prometheus-common-0.0.0-20181113130724-41aa239b4cce" +; ,go-github-com-prometheus-common-0.0.0-20181113130724-41aa239b4cce) +; ("go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910" +; ,go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910) +; ("go-github-com-prometheus-client-golang-0.9.1" +; ,go-github-com-prometheus-client-golang-0.9.1) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-pkg-errors-0.8.0" ,go-github-com-pkg-errors-0.8.0) +; ("go-github-com-oklog-ulid-1.3.1" ,go-github-com-oklog-ulid-1.3.1) +; ("go-github-com-matttproud-golang-protobuf-extensions-1.0.1" +; ,go-github-com-matttproud-golang-protobuf-extensions-1.0.1) +; ("go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515" +; ,go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0) +; ("go-github-com-gogo-protobuf-1.1.1" +; ,go-github-com-gogo-protobuf-1.1.1) +; ("go-github-com-go-stack-stack-1.8.0" +; ,go-github-com-go-stack-stack-1.8.0) +; ("go-github-com-go-logfmt-logfmt-0.3.0" +; ,go-github-com-go-logfmt-logfmt-0.3.0) +; ("go-github-com-go-kit-kit-0.8.0" ,go-github-com-go-kit-kit-0.8.0) +; ("go-github-com-dgryski-go-sip13-0.0.0-20181026042036-e10d5fee7954" +; ,go-github-com-dgryski-go-sip13-0.0.0-20181026042036-e10d5fee7954) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1) +; ("go-github-com-cespare-xxhash-1.1.0" +; ,go-github-com-cespare-xxhash-1.1.0) +; ("go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973" +; ,go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973) +; ("go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf" +; ,go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf) +; ("go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc" +; ,go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc))) +; (home-page "https://github.com/prometheus/tsdb") +; (synopsis "TSDB") +; (description +; "Package tsdb implements a time series storage for float64 sample data. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-prometheus-client-golang-0.9.3 +; (package +; (name "go-github-com-prometheus-client-golang") +; (version "0.9.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/client_golang") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1608rm1y2p3iv8k2x7wyc6hshvpbfkv2k77hy0x870syms1g3g1p")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/client_golang")) +; (propagated-inputs +; `(("go-github-com-prometheus-tsdb-0.7.1" +; ,go-github-com-prometheus-tsdb-0.7.1) +; ("go-github-com-prometheus-procfs-0.0.0-20190507164030-5867b95ac084" +; ,go-github-com-prometheus-procfs-0.0.0-20190507164030-5867b95ac084) +; ("go-github-com-prometheus-common-0.4.0" +; ,go-github-com-prometheus-common-0.4.0) +; ("go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90" +; ,go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90) +; ("go-github-com-golang-protobuf-1.3.1" +; ,go-github-com-golang-protobuf-1.3.1) +; ("go-github-com-go-logfmt-logfmt-0.4.0" +; ,go-github-com-go-logfmt-logfmt-0.4.0) +; ("go-github-com-beorn7-perks-1.0.0" +; ,go-github-com-beorn7-perks-1.0.0))) +; (home-page "https://github.com/prometheus/client_golang") +; (synopsis "Prometheus Go client library") +; (description +; "This is the @url{http://golang.org,Go} client library for +;@url{http://prometheus.io,Prometheus}. It has two separate parts, one for +;instrumenting application code, and one for creating clients that talk to the +;Prometheus HTTP API.") +; (license license:asl2.0))) +; +;(define-public go-github-com-soheilhy-cmux-0.1.4 +; (package +; (name "go-github-com-soheilhy-cmux") +; (version "0.1.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/soheilhy/cmux") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1f736g68d9vwlyfb6g0fxkr0r875369xafk30cz8kaq5niaqwv0h")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/soheilhy/cmux")) +; (home-page "https://github.com/soheilhy/cmux") +; (synopsis "cmux: Connection Mux") +; (description +; "Package cmux is a library to multiplex network connections based on +;their payload. Using cmux, you can serve different protocols from the +;same listener. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-spf13-afero-1.1.2 +; (package +; (name "go-github-com-spf13-afero") +; (version "1.1.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/spf13/afero") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0miv4faf5ihjfifb1zv6aia6f6ik7h1s4954kcb8n6ixzhx9ck6k")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/spf13/afero")) +; (home-page "https://github.com/spf13/afero") +; (synopsis "Overview") +; (description +; "This package provides a FileSystem Abstraction System for Go") +; (license license:asl2.0))) +; +;(define-public go-github-com-spf13-cast-1.3.0 +; (package +; (name "go-github-com-spf13-cast") +; (version "1.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/spf13/cast") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0xq1ffqj8y8h7dcnm0m9lfrh0ga7pssnn2c1dnr09chqbpn4bdc5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/spf13/cast")) +; (propagated-inputs +; `(("go-github-com-stretchr-testify-1.2.2" +; ,go-github-com-stretchr-testify-1.2.2) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://github.com/spf13/cast") +; (synopsis "cast") +; (description "Package cast provides easy and safe casting in Go. +;") +; (license license:expat))) +; +;(define-public go-github-com-spf13-jwalterweatherman-1.0.0 +; (package +; (name "go-github-com-spf13-jwalterweatherman") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/spf13/jwalterweatherman") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "093fmmvavv84pv4q84hav7ph3fmrq87bvspjj899q0qsx37yvdr8")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/spf13/jwalterweatherman")) +; (home-page "https://github.com/spf13/jwalterweatherman") +; (synopsis "jWalterWeatherman") +; (description +; "Seamless printing to the terminal (stdout) and logging to a io.Writer +;(file) thatâ\x80\x99s as easy to use as fmt.Println.") +; (license license:expat))) +; +;(define-public go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5 +; (package +; (name "go-github-com-tmc-grpc-websocket-proxy") +; (version "0.0.0-20190109142713-0ad062ec5ee5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/tmc/grpc-websocket-proxy") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1anw4v9wspnw9xf2z5r9w0sszwjklyanl0l85wgg6nxak9gnrqp4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/tmc/grpc-websocket-proxy")) +; (home-page "https://github.com/tmc/grpc-websocket-proxy") +; (synopsis "grpc-websocket-proxy") +; (description +; "Wrap your grpc-gateway mux with this helper to expose streaming endpoints over websockets.") +; (license license:expat))) +; +;(define-public go-github-com-ugorji-go-1.1.4 +; (package +; (name "go-github-com-ugorji-go") +; (version "1.1.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/ugorji/go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ma2qvn5wqvjidpdz74x832a813qnr1cxbx6n6n125ak9b3wbn5w")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/ugorji/go")) +; (home-page "https://github.com/ugorji/go") +; (synopsis "go-codec") +; (description +; "This repository contains the @code{go-codec} library, the @code{codecgen} tool and +;benchmarks for comparing against other libraries.") +; (license license:expat))) +; +;(define-public go-github-com-xiang90-probing-0.0.0-20190116061207-43a291ad63a2 +; (package +; (name "go-github-com-xiang90-probing") +; (version "0.0.0-20190116061207-43a291ad63a2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/xiang90/probing") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1z22ms16j5j42775mf31isanwx2pwr1d8wqw8006dczjv36qnz5i")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/xiang90/probing")) +; (home-page "https://github.com/xiang90/probing") +; (synopsis "Getting Started") +; (description "We first need to serve the probing HTTP handler.") +; (license license:expat))) +; +;(define-public go-github-com-xordataexchange-crypt-0.0.3-0.20170626215501-b2862e3d0a77 +; (package +; (name "go-github-com-xordataexchange-crypt") +; (version "0.0.3-0.20170626215501-b2862e3d0a77") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/xordataexchange/crypt") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "04q3856anpzl4gdfgmg7pbp9cx231nkz3ymq2xp27rnmmwhfxr8y")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/xordataexchange/crypt")) +; (home-page "https://github.com/xordataexchange/crypt") +; (synopsis "crypt") +; (description +; "You can use crypt as a command line tool or as a configuration library:") +; (license license:expat))) +; +;(define-public go-go-etcd-io-bbolt-1.3.2 +; (package +; (name "go-go-etcd-io-bbolt") +; (version "1.3.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/etcd-io/bbolt") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "13d5l6p6c5wvkr6vn9hkhz9c593qifn7fgx0hg4d6jcvg1y0bnm2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "go.etcd.io/bbolt")) +; (home-page "https://go.etcd.io/bbolt") +; (synopsis "bbolt") +; (description +; "package bbolt implements a low-level key/value store in pure Go. It supports +;fully serializable transactions, ACID semantics, and lock-free MVCC with +;multiple readers and a single writer. Bolt can be used for projects that +;want a simple data store without the need to add large dependencies such as +;Postgres or MySQL. +;") +; (license license:expat))) +; +;(define-public go-go-uber-org-atomic-1.4.0 +; (package +; (name "go-go-uber-org-atomic") +; (version "1.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/uber-go/atomic") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0c6yzx15c20719xii3dm0vyjd8i9jx45m0wh5yp1zf29b0gbljcy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "go.uber.org/atomic")) +; (home-page "https://go.uber.org/atomic") +; (synopsis "atomic") +; (description +; "Package atomic provides simple wrappers around numerics to enforce atomic +;access. +;") +; (license license:expat))) +; +;(define-public go-go-uber-org-multierr-1.1.0 +; (package +; (name "go-go-uber-org-multierr") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/uber-go/multierr") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1slfc6syvw8cvr6rbrjsy6ja5w8gsx0f8aq8qm16rp2x5c2pj07w")))) +; (build-system go-build-system) +; (arguments '(#:import-path "go.uber.org/multierr")) +; (home-page "https://go.uber.org/multierr") +; (synopsis "multierr") +; (description +; "Package multierr allows combining one or more errors together. +;") +; (license license:expat))) +; +;(define-public go-go-uber-org-zap-1.10.0 +; (package +; (name "go-go-uber-org-zap") +; (version "1.10.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/uber-go/zap") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "10hdzr1rghwbsl6bbd30779dx44fh9mg9pq8d2cgqlknqxxpvpvr")))) +; (build-system go-build-system) +; (arguments '(#:import-path "go.uber.org/zap")) +; (home-page "https://go.uber.org/zap") +; (synopsis "â\x9a¡ zap") +; (description "Package zap provides fast, structured, leveled logging. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-net-0.0.0-20190522155817-f3200d17e092 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190522155817-f3200d17e092") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1mskh7p80dd8j1ffy16917d3cyy7lfh1gb56n4rq9g1bwckz4lwy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-time-0.0.0-20190308202827-9d24e82272b4 +; (package +; (name "go-golang-org-x-time") +; (version "0.0.0-20190308202827-9d24e82272b4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/time") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1f5nkr4vys2vbd8wrwyiq2f5wcaahhpxmia85d1gshcbqjqf8dkb")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/time")) +; (home-page "https://golang.org/x/time") +; (synopsis "Go Time") +; (description "This repository provides supplementary Go time packages.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-grpc-1.21.0 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.21.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0zxjlxnvjqfn6zfx7gbmqhadx0j788vxfn95g1ngbmjkgppzsnfp")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" +; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) +; ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" +; ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) +; ("go-google-golang-org-appengine-1.1.0" +; ,go-google-golang-org-appengine-1.1.0) +; ("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" +; ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" +; ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-github-com-google-go-cmp-0.2.0" +; ,go-github-com-google-go-cmp-0.2.0) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0) +; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-client9-misspell-0.3.4" +; ,go-github-com-client9-misspell-0.3.4) +; ("go-github-com-burntsushi-toml-0.3.1" +; ,go-github-com-burntsushi-toml-0.3.1) +; ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-spf13-viper-1.4.0 +; (package +; (name "go-github-com-spf13-viper") +; (version "1.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/spf13/viper") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1zpzxvn13wpvbblbbn73svaq39zgxfjqhci9d68g3qf309pcfy19")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/spf13/viper")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) +; ("go-google-golang-org-grpc-1.21.0" ,go-google-golang-org-grpc-1.21.0) +; ("go-golang-org-x-time-0.0.0-20190308202827-9d24e82272b4" +; ,go-golang-org-x-time-0.0.0-20190308202827-9d24e82272b4) +; ("go-golang-org-x-net-0.0.0-20190522155817-f3200d17e092" +; ,go-golang-org-x-net-0.0.0-20190522155817-f3200d17e092) +; ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) +; ("go-go-uber-org-multierr-1.1.0" ,go-go-uber-org-multierr-1.1.0) +; ("go-go-uber-org-atomic-1.4.0" ,go-go-uber-org-atomic-1.4.0) +; ("go-go-etcd-io-bbolt-1.3.2" ,go-go-etcd-io-bbolt-1.3.2) +; ("go-github-com-xordataexchange-crypt-0.0.3-0.20170626215501-b2862e3d0a77" +; ,go-github-com-xordataexchange-crypt-0.0.3-0.20170626215501-b2862e3d0a77) +; ("go-github-com-xiang90-probing-0.0.0-20190116061207-43a291ad63a2" +; ,go-github-com-xiang90-probing-0.0.0-20190116061207-43a291ad63a2) +; ("go-github-com-ugorji-go-1.1.4" ,go-github-com-ugorji-go-1.1.4) +; ("go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5" +; ,go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5) +; ("go-github-com-stretchr-testify-1.2.2" +; ,go-github-com-stretchr-testify-1.2.2) +; ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) +; ("go-github-com-spf13-jwalterweatherman-1.0.0" +; ,go-github-com-spf13-jwalterweatherman-1.0.0) +; ("go-github-com-spf13-cast-1.3.0" ,go-github-com-spf13-cast-1.3.0) +; ("go-github-com-spf13-afero-1.1.2" ,go-github-com-spf13-afero-1.1.2) +; ("go-github-com-soheilhy-cmux-0.1.4" +; ,go-github-com-soheilhy-cmux-0.1.4) +; ("go-github-com-prometheus-client-golang-0.9.3" +; ,go-github-com-prometheus-client-golang-0.9.3) +; ("go-github-com-pelletier-go-toml-1.2.0" +; ,go-github-com-pelletier-go-toml-1.2.0) +; ("go-github-com-mitchellh-mapstructure-1.1.2" +; ,go-github-com-mitchellh-mapstructure-1.1.2) +; ("go-github-com-magiconair-properties-1.8.0" +; ,go-github-com-magiconair-properties-1.8.0) +; ("go-github-com-jonboulle-clockwork-0.1.0" +; ,go-github-com-jonboulle-clockwork-0.1.0) +; ("go-github-com-hashicorp-hcl-1.0.0" +; ,go-github-com-hashicorp-hcl-1.0.0) +; ("go-github-com-grpc-ecosystem-grpc-gateway-1.9.0" +; ,go-github-com-grpc-ecosystem-grpc-gateway-1.9.0) +; ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" +; ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) +; ("go-github-com-grpc-ecosystem-go-grpc-middleware-1.0.0" +; ,go-github-com-grpc-ecosystem-go-grpc-middleware-1.0.0) +; ("go-github-com-gorilla-websocket-1.4.0" +; ,go-github-com-gorilla-websocket-1.4.0) +; ("go-github-com-google-btree-1.0.0" ,go-github-com-google-btree-1.0.0) +; ("go-github-com-golang-groupcache-0.0.0-20190129154638-5b532d6fd5ef" +; ,go-github-com-golang-groupcache-0.0.0-20190129154638-5b532d6fd5ef) +; ("go-github-com-gogo-protobuf-1.2.1" +; ,go-github-com-gogo-protobuf-1.2.1) +; ("go-github-com-fsnotify-fsnotify-1.4.7" +; ,go-github-com-fsnotify-fsnotify-1.4.7) +; ("go-github-com-dgrijalva-jwt-go-3.2.0+incompatible" +; ,go-github-com-dgrijalva-jwt-go-3.2.0+incompatible) +; ("go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f" +; ,go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f) +; ("go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e" +; ,go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e) +; ("go-github-com-coreos-go-semver-0.2.0" +; ,go-github-com-coreos-go-semver-0.2.0) +; ("go-github-com-coreos-etcd-3.3.10+incompatible" +; ,go-github-com-coreos-etcd-3.3.10+incompatible) +; ("go-github-com-coreos-bbolt-1.3.2" ,go-github-com-coreos-bbolt-1.3.2) +; ("go-github-com-armon-consul-api-0.0.0-20180202201655-eb2c6b5be1b6" +; ,go-github-com-armon-consul-api-0.0.0-20180202201655-eb2c6b5be1b6))) +; (home-page "https://github.com/spf13/viper") +; (synopsis "Install") +; (description "Many Go projects are built using Viper including:") +; (license license:expat))) +; +;(define-public go-github-com-spf13-cobra-1.0.0 +; (package +; (name "go-github-com-spf13-cobra") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/spf13/cobra") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0vbppqqhby302a5ayn0296jqr71qkcd4c9am7wzsk6z71fwdsa7h")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/spf13/cobra")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) +; ("go-github-com-spf13-viper-1.4.0" ,go-github-com-spf13-viper-1.4.0) +; ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) +; ("go-github-com-mitchellh-go-homedir-1.1.0" +; ,go-github-com-mitchellh-go-homedir-1.1.0) +; ("go-github-com-inconshreveable-mousetrap-1.0.0" +; ,go-github-com-inconshreveable-mousetrap-1.0.0) +; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" +; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0))) +; (home-page "https://github.com/spf13/cobra") +; (synopsis "Table of Contents") +; (description +; "Package cobra is a commander providing a simple interface to create powerful modern CLI interfaces. +;In addition to providing an interface, Cobra simultaneously provides a controller to organize your application code. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-continuity-0.1.0 +; (package +; (name "go-github-com-containerd-continuity") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/continuity") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1h756l1xc31sc4zc1d3hmh64kl9qm5vpbbw0c93hrasn51ki96yz")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/continuity")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" +; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) +; ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" +; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) +; ("go-github-com-spf13-cobra-1.0.0" ,go-github-com-spf13-cobra-1.0.0) +; ("go-github-com-sirupsen-logrus-1.7.0" +; ,go-github-com-sirupsen-logrus-1.7.0) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-go-digest-1.0.0" +; ,go-github-com-opencontainers-go-digest-1.0.0) +; ("go-github-com-golang-protobuf-1.3.5" +; ,go-github-com-golang-protobuf-1.3.5) +; ("go-github-com-dustin-go-humanize-1.0.0" +; ,go-github-com-dustin-go-humanize-1.0.0) +; ("go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898" +; ,go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898))) +; (home-page "https://github.com/containerd/continuity") +; (synopsis "continuity") +; (description +; "This package provides a transport-agnostic, filesystem metadata manifest system") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-fifo-1.0.0 +; (package +; (name "go-github-com-containerd-fifo") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/fifo") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1l6jy9b4mjcj7pbz1n79zmipni1dz60rf5n66vn5p2ggavbq7h1q")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/fifo")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" +; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) +; (home-page "https://github.com/containerd/fifo") +; (synopsis "fifo") +; (description "Go package for handling fifos in a sane way.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-console-1.0.1 +; (package +; (name "go-github-com-containerd-console") +; (version "1.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/console") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0s837wj6h80fykk2pdmaji75rw9c3863by0gh0cq51hh0lgyjpvg")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/console")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f" +; ,go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) +; (home-page "https://github.com/containerd/console") +; (synopsis "console") +; (description +; "Golang package for dealing with consoles. Light on deps and a simple API.") +; (license license:asl2.0))) +; +;(define-public go-github-com-opencontainers-runtime-spec-1.0.2 +; (package +; (name "go-github-com-opencontainers-runtime-spec") +; (version "1.0.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/runtime-spec") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19w981vcmd5lp2hy0630x6ayb8zz17n2vxqm2py5mg945xflcizg")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) +; (home-page "https://github.com/opencontainers/runtime-spec") +; (synopsis "Open Container Initiative Runtime Specification") +; (description +; "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20200916030750-2334cc1a136f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1lc7d513gwwpr6r7f55743684n1qsgn9vmg6b79x0hsp1x90z4mr")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-containerd-go-runc-1.0.0 +; (package +; (name "go-github-com-containerd-go-runc") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/go-runc") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0xk30dzzxmd83bnfyilplizlxh1pg1gqz2jrq9wz9rqqkxazc03n")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/go-runc")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f" +; ,go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f) +; ("go-github-com-sirupsen-logrus-1.7.0" +; ,go-github-com-sirupsen-logrus-1.7.0) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-runtime-spec-1.0.2" +; ,go-github-com-opencontainers-runtime-spec-1.0.2) +; ("go-github-com-containerd-console-1.0.1" +; ,go-github-com-containerd-console-1.0.1))) +; (home-page "https://github.com/containerd/go-runc") +; (synopsis "go-runc") +; (description +; "This is a package for consuming the @url{https://github.com/opencontainers/runc,runc} binary in your Go applications. +;It tries to expose all the settings and features of the runc CLI. If there is something missing then add it, its opensource!") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-tools-0.0.0-20181030221726-6c7e314b6563 +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20181030221726-6c7e314b6563") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1m1n6r8v6mrlh0yvlz3qxz4s7jc7nis0zf3dfl1i6hqh5xblkwnw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-github-com-kisielk-errcheck-1.2.0 +; (package +; (name "go-github-com-kisielk-errcheck") +; (version "1.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kisielk/errcheck") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0am6g10ipdxw84byscm7shda654882wjcbinq5c4696m6mhi2qrd")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kisielk/errcheck")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20181030221726-6c7e314b6563" +; ,go-golang-org-x-tools-0.0.0-20181030221726-6c7e314b6563))) +; (home-page "https://github.com/kisielk/errcheck") +; (synopsis "errcheck") +; (description +; "errcheck is a program for checking for unchecked errors in go programs.") +; (license license:expat))) +; +;(define-public go-github-com-gogo-protobuf-1.3.1 +; (package +; (name "go-github-com-gogo-protobuf") +; (version "1.3.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/gogo/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0x77x64sxjgfhmbijqfzmj8h4ar25l2w97h01q3cqs1wk7zfnkhp")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/gogo/protobuf")) +; (propagated-inputs +; `(("go-github-com-kisielk-gotool-1.0.0" +; ,go-github-com-kisielk-gotool-1.0.0) +; ("go-github-com-kisielk-errcheck-1.2.0" +; ,go-github-com-kisielk-errcheck-1.2.0))) +; (home-page "https://github.com/gogo/protobuf") +; (synopsis "Protocol Buffers for Go with Gadgets") +; (description +; "gogoprotobuf is a fork of @url{https://github.com/golang/protobuf,golang/protobuf} with extra code generation features.") +; (license license:bsd-3))) +; +;(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.2 +; (package +; (name "go-github-com-konsorten-go-windows-terminal-sequences") +; (version "1.0.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/konsorten/go-windows-terminal-sequences") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "09mn209ika7ciy87xf2x31dq5fnqw39jidgaljvmqxwk7ff1hnx7")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) +; (home-page "https://github.com/konsorten/go-windows-terminal-sequences") +; (synopsis "Windows Terminal Sequences") +; (description +; "This library allow for enabling Windows terminal color support for Go.") +; (license license:expat))) +; +;(define-public go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1 +; (package +; (name "go-github-com-prometheus-procfs") +; (version "0.0.0-20190522114515-bc1a522cf7b1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/procfs") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "13ws66kd65zbhk31zmax9qgmh22fzjcgs5ihy4fm1d775w6bmdzx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/procfs")) +; (propagated-inputs +; `(("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" +; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4))) +; (home-page "https://github.com/prometheus/procfs") +; (synopsis "procfs") +; (description +; "Package procfs provides functions to retrieve system, kernel and process +;metrics from the pseudo-filesystem proc. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.1 +; (package +; (name "go-github-com-konsorten-go-windows-terminal-sequences") +; (version "1.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/konsorten/go-windows-terminal-sequences") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1lchgf27n276vma6iyxa0v1xds68n2g8lih5lavqnx5x6q5pw2ip")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) +; (home-page "https://github.com/konsorten/go-windows-terminal-sequences") +; (synopsis "Windows Terminal Sequences") +; (description +; "This library allow for enabling Windows terminal color support for Go.") +; (license license:expat))) +; +;(define-public go-github-com-stretchr-objx-0.1.1 +; (package +; (name "go-github-com-stretchr-objx") +; (version "0.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/objx") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0iph0qmpyqg4kwv8jsx6a56a7hhqq8swrazv40ycxk9rzr0s8yls")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/objx")) +; (home-page "https://github.com/stretchr/objx") +; (synopsis "Objx") +; (description +; "Objx - Go package for dealing with maps, slices, JSON and other data. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190422165155-953cdadca894") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0gkha4whk8xkcv3isigbs250akag99isxnd3v9xmy0kl3g88hxy1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-sirupsen-logrus-1.4.2 +; (package +; (name "go-github-com-sirupsen-logrus") +; (version "1.4.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/sirupsen/logrus") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "087k2lxrr9p9dh68yw71d05h5g9p5v26zbwd6j7lghinjfaw334x")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/sirupsen/logrus")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894" +; ,go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894) +; ("go-github-com-stretchr-testify-1.2.2" +; ,go-github-com-stretchr-testify-1.2.2) +; ("go-github-com-stretchr-objx-0.1.1" +; ,go-github-com-stretchr-objx-0.1.1) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.1" +; ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.1) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://github.com/sirupsen/logrus") +; (synopsis "Logrus") +; (description +; "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20200120151820-655fe14d7479") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "133yxmdcny5b0r8775m52sj7zja36riv0x2437k7jccywqi8nx32")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20200117163144-32f20d992d24 +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20200117163144-32f20d992d24") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1kl696jd8fykykjjbngqpgqsngajwbbrvrpl1q0804l6hz8qk858")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" +; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) +; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) +; ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" +; ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) +; ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" +; ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) +; ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" +; ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-grpc-1.26.0 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.26.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1qsb2mcswpp3vd7i9gfvz4a3ypdwk2svhhn09nyywgb1vvw80krv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" +; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-github-com-google-go-cmp-0.2.0" +; ,go-github-com-google-go-cmp-0.2.0) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2) +; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" +; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) +; ("go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473" +; ,go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-ttrpc-1.0.2 +; (package +; (name "go-github-com-containerd-ttrpc") +; (version "1.0.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/ttrpc") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0plkm3yrr20vccfl0x8dxys3iphjwnmi285in0pivff6p9djf3yz")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/ttrpc")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.26.0" ,go-google-golang-org-grpc-1.26.0) +; ("go-google-golang-org-genproto-0.0.0-20200117163144-32f20d992d24" +; ,go-google-golang-org-genproto-0.0.0-20200117163144-32f20d992d24) +; ("go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479" +; ,go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479) +; ("go-github-com-sirupsen-logrus-1.4.2" +; ,go-github-com-sirupsen-logrus-1.4.2) +; ("go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1" +; ,go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.2" +; ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.2) +; ("go-github-com-gogo-protobuf-1.3.1" +; ,go-github-com-gogo-protobuf-1.3.1))) +; (home-page "https://github.com/containerd/ttrpc") +; (synopsis "ttrpc") +; (description "GRPC for low-memory environments.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-typeurl-1.0.2 +; (package +; (name "go-github-com-containerd-typeurl") +; (version "1.0.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/typeurl") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0wvfxlxgkln11d9s6rxay965c715bnpk203klbsq8m8qpjqrz620")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/typeurl")) +; (propagated-inputs +; `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-gogo-protobuf-1.3.2" +; ,go-github-com-gogo-protobuf-1.3.2))) +; (home-page "https://github.com/containerd/typeurl") +; (synopsis "typeurl") +; (description +; "This package provides a Go package for managing the registration, marshaling, and unmarshaling of encoded types.") +; (license license:asl2.0))) +; +;(define-public go-github-com-yuin-goldmark-1.1.27 +; (package +; (name "go-github-com-yuin-goldmark") +; (version "1.1.27") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/yuin/goldmark") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1872cqnii0kwiqcy81yin0idvjy5mdy4zlzz0csb319lcjs3b923")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/yuin/goldmark")) +; (home-page "https://github.com/yuin/goldmark") +; (synopsis "goldmark") +; (description +; "Package goldmark implements functions to convert markdown text to a desired format. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-mod-0.2.0 +; (package +; (name "go-golang-org-x-mod") +; (version "0.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/mod") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1fp6885dclq77mh73v7i54v2b9llpv4di193zc8vmsbbkkc483cl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/mod")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" +; ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) +; ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" +; ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) +; ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" +; ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) +; (home-page "https://golang.org/x/mod") +; (synopsis "mod") +; (description +; "This repository holds packages for writing tools +;that work directly with Go module mechanics. +;That is, it is for direct manipulation of Go modules themselves.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20200226121028-0de0cce0169b") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1db7s5kbzyh2zd5lpv05n7hp8wbwdvgk0wpiwrlnig94mkr0y5aq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e +; (package +; (name "go-golang-org-x-sync") +; (version "0.0.0-20190911185100-cd5d95a43a6e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sync") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1nqkyz2y1qvqcma52ijh02s8aiqmkfb95j08f6zcjhbga3ds6hds")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sync")) +; (home-page "https://golang.org/x/sync") +; (synopsis "Go Sync") +; (description +; "This repository provides Go concurrency primitives in addition to the +;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20200619180055-7c47624df98f +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20200619180055-7c47624df98f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1fhzwd32j7w9g3algq0zj8g7ivx3f0mn9nx9mj046wdscryn49mk")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" +; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) +; ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" +; ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) +; ("go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b" +; ,go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b) +; ("go-golang-org-x-mod-0.2.0" ,go-golang-org-x-mod-0.2.0) +; ("go-github-com-yuin-goldmark-1.1.27" +; ,go-github-com-yuin-goldmark-1.1.27))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-github-com-kisielk-errcheck-1.5.0 +; (package +; (name "go-github-com-kisielk-errcheck") +; (version "1.5.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kisielk/errcheck") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ci3jz2px74pfmr42jv7dpx7fdzx08vai4czp9fkiyb0gcaiqsk6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kisielk/errcheck")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20200619180055-7c47624df98f" +; ,go-golang-org-x-tools-0.0.0-20200619180055-7c47624df98f))) +; (home-page "https://github.com/kisielk/errcheck") +; (synopsis "errcheck") +; (description +; "errcheck is a program for checking for unchecked errors in go programs.") +; (license license:expat))) +; +;(define-public go-github-com-kisielk-gotool-1.0.0 +; (package +; (name "go-github-com-kisielk-gotool") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kisielk/gotool") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "14af2pa0ssyp8bp2mvdw184s5wcysk6akil3wzxmr05wwy951iwn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kisielk/gotool")) +; (home-page "https://github.com/kisielk/gotool") +; (synopsis "gotool") +; (description +; "Package gotool contains utility functions used to implement the standard +;\"cmd/go\" tool, provided as a convenience to developers who want to write +;tools with similar semantics. +;") +; (license license:expat))) +; +;(define-public go-github-com-yuin-goldmark-1.2.1 +; (package +; (name "go-github-com-yuin-goldmark") +; (version "1.2.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/yuin/goldmark") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "12rsnsf65drcp0jfw2jl9w589vsn3pxdk1zh3v9q908iigngrcmy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/yuin/goldmark")) +; (home-page "https://github.com/yuin/goldmark") +; (synopsis "goldmark") +; (description +; "Package goldmark implements functions to convert markdown text to a desired format. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20191011191535-87dc89f01550") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0z4i1m2yn3f31ci7wvcm2rxkx2yiv7a78mfzklncmsz2k97rlh2g")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" +; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) +; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" +; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7 +; (package +; (name "go-golang-org-x-xerrors") +; (version "0.0.0-20190717185122-a985d3407aa7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/xerrors") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "00wzr5w8aadipgc3rkk8f11i41znskfj9ix5nhhaxyg7isrslgcj")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/xerrors")) +; (home-page "https://golang.org/x/xerrors") +; (synopsis #f) +; (description +; "Package xerrors implements functions to manipulate errors. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20191119224855-298f0cb1881e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0l4pqwib2wnfnix6nvxl0yrq87ipi7ff1rz6z5bxfzy9dki1nzmv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7" +; ,go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7) +; ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" +; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) +; ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" +; ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898 +; (package +; (name "go-golang-org-x-xerrors") +; (version "0.0.0-20191011141410-1b5146add898") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/xerrors") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0w2akj91krxjag0xdhsg78470888nicc5ismc2ap9jqpss6v1zih")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/xerrors")) +; (home-page "https://golang.org/x/xerrors") +; (synopsis #f) +; (description +; "Package xerrors implements functions to manipulate errors. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-mod-0.3.0 +; (package +; (name "go-golang-org-x-mod") +; (version "0.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/mod") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ldgbx2zpprbsfn6p8pfgs4nn87gwbfcv2z0fa7n8alwsq2yw78q")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/mod")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" +; ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) +; ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" +; ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) +; ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" +; ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) +; (home-page "https://golang.org/x/mod") +; (synopsis "mod") +; (description +; "This repository holds packages for writing tools +;that work directly with Go module mechanics. +;That is, it is for direct manipulation of Go modules themselves.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20201021035429-f5854403a974 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20201021035429-f5854403a974") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1vw63zpmhi337f3gc432x3wkib4j2ia8dy7if31wxwb9dgqvy222")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) +; ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" +; ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) +; ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" +; ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9 +; (package +; (name "go-golang-org-x-sync") +; (version "0.0.0-20201020160332-67f06af15bc9") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sync") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "093p4panc808ak5bamzz7m9nb0xxib7778jpnr6f0xkz1n4fzyw5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sync")) +; (home-page "https://golang.org/x/sync") +; (synopsis "Go Sync") +; (description +; "This repository provides Go concurrency primitives in addition to the +;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20210106214847-113979e3529a +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20210106214847-113979e3529a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0pq1a7hkamqdwsajyfrb27s56cvxz5838krsgyqz346s2djwdrzl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" +; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) +; ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" +; ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) +; ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" +; ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) +; ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) +; ("go-github-com-yuin-goldmark-1.2.1" +; ,go-github-com-yuin-goldmark-1.2.1))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-github-com-gogo-protobuf-1.3.2 +; (package +; (name "go-github-com-gogo-protobuf") +; (version "1.3.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/gogo/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0dfv1bhx5zhb5bsj5sj757nkacf2swp1ajpcyj9d0b37n602m18a")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/gogo/protobuf")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20210106214847-113979e3529a" +; ,go-golang-org-x-tools-0.0.0-20210106214847-113979e3529a) +; ("go-github-com-kisielk-gotool-1.0.0" +; ,go-github-com-kisielk-gotool-1.0.0) +; ("go-github-com-kisielk-errcheck-1.5.0" +; ,go-github-com-kisielk-errcheck-1.5.0))) +; (home-page "https://github.com/gogo/protobuf") +; (synopsis "Protocol Buffers for Go with Gadgets") +; (description +; "gogoprotobuf is a fork of @url{https://github.com/golang/protobuf,golang/protobuf} with extra code generation features.") +; (license license:bsd-3))) +; +;(define-public go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d +; (package +; (name "go-github-com-opencontainers-runtime-spec") +; (version "1.0.3-0.20200929063507-e6143ca7d51d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/runtime-spec") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "06yk9kjif5mgi46d0hcgqcikdcplf3yflqbj8h6ljxshp6jzc49w")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) +; (home-page "https://github.com/opencontainers/runtime-spec") +; (synopsis "Open Container Initiative Runtime Specification") +; (description +; "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") +; (license license:asl2.0))) +; +;(define-public go-github-com-urfave-cli-1.22.2 +; (package +; (name "go-github-com-urfave-cli") +; (version "1.22.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/urfave/cli") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "10mcnvi5qmn00vpyk6si8gjka7p654wr9hac4zc9w5h3ickhvbdc")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/urfave/cli")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) +; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d" +; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d) +; ("go-github-com-burntsushi-toml-0.3.1" +; ,go-github-com-burntsushi-toml-0.3.1))) +; (home-page "https://github.com/urfave/cli") +; (synopsis "cli") +; (description +; "Package cli provides a minimal framework for creating and organizing command line +;Go applications. cli is designed to be easy to understand and write, the most simple +;cli application can be written as follows: +;") +; (license license:expat))) +; +;(define-public go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6 +; (package +; (name "go-github-com-golang-groupcache") +; (version "0.0.0-20190702054246-869f871628b6") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/groupcache") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0r4nk8129bvx50qb4xzjaay39b2h6k7cbdqqzdlanmc82ygczsbw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/groupcache")) +; (home-page "https://github.com/golang/groupcache") +; (synopsis "groupcache") +; (description +; "Package groupcache provides a data loading mechanism with caching +;and de-duplication that works across a set of peer processes. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-golang-protobuf-1.3.1 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.3.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "15am4s4646qy6iv0g3kkqq52rzykqjhm4bf08dk0fy2r58knpsyl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-github-com-stretchr-testify-1.4.0 +; (package +; (name "go-github-com-stretchr-testify") +; (version "1.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/testify") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "187i5g88sxfy4vxpm7dw1gwv29pa2qaq475lxrdh5livh69wqfjb")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/testify")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) +; ("go-github-com-stretchr-objx-0.1.0" +; ,go-github-com-stretchr-objx-0.1.0) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.0" +; ,go-github-com-davecgh-go-spew-1.1.0))) +; (home-page "https://github.com/stretchr/testify") +; (synopsis "Testify - Thou Shalt Write Tests") +; (description +; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190620200207-3b0461eec859") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0l00c8l0a8xnv6qdpwfzxxsr58jggacgzdrwiprrfx2xqm37b6d5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190502145724-3ef323f4f1fd") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "15iw4gjvrnrx98rlny1qcaprp3577rh2b77byb38dr6m3q42rvc6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-text-0.3.2 +; (package +; (name "go-golang-org-x-text") +; (version "0.3.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/text") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0flv9idw0jm5nm8lx25xqanbkqgfiym6619w575p7nrdh0riqwqh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/text")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" +; ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) +; (home-page "https://golang.org/x/text") +; (synopsis "Go Text") +; (description +; "text is a repository of text-related packages related to internationalization +;(i18n) and localization (l10n), such as character encodings, text +;transformations, and locale-specific text handling. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6 +; (package +; (name "go-golang-org-x-sync") +; (version "0.0.0-20190227155943-e225da77a7e6") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sync") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0bh3583smcfw6jw3w6lp0za93rz7hpxfdz8vhxng75b7a6vdlw4p")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sync")) +; (home-page "https://golang.org/x/sync") +; (synopsis "Go Sync") +; (description +; "This repository provides Go concurrency primitives in addition to the +;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20190425155659-357c62f0e4bb") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1h1a0wys83cc86s4w2hqmz78ixijw8f7qchmiwdv5xjvpg0i27c2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" +; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) +; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) +; ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" +; ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) +; ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" +; ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) +; ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" +; ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd) +; ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" +; ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) +; ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" +; ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-grpc-1.20.1 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.20.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0rj3fs6jillapiwnpkfn3v2jbl7a3zsb0lys4srswl26hjijviqq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" +; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) +; ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" +; ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) +; ("go-google-golang-org-appengine-1.1.0" +; ,go-google-golang-org-appengine-1.1.0) +; ("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" +; ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" +; ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0) +; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-client9-misspell-0.3.4" +; ,go-github-com-client9-misspell-0.3.4) +; ("go-github-com-burntsushi-toml-0.3.1" +; ,go-github-com-burntsushi-toml-0.3.1) +; ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-go-opencensus-io-0.22.3 +; (package +; (name "go-go-opencensus-io") +; (version "0.22.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/census-instrumentation/opencensus-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0xj16iq5jp26hi2py7lsd8cvqh651fgn39y05gzvjdi88d9xd3nw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "go.opencensus.io")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.20.1" ,go-google-golang-org-grpc-1.20.1) +; ("go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb" +; ,go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb) +; ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) +; ("go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd" +; ,go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd) +; ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" +; ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) +; ("go-github-com-stretchr-testify-1.4.0" +; ,go-github-com-stretchr-testify-1.4.0) +; ("go-github-com-google-go-cmp-0.3.0" +; ,go-github-com-google-go-cmp-0.3.0) +; ("go-github-com-golang-protobuf-1.3.1" +; ,go-github-com-golang-protobuf-1.3.1) +; ("go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6" +; ,go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6))) +; (home-page "https://go.opencensus.io") +; (synopsis "OpenCensus Libraries for Go") +; (description "Package opencensus contains Go support for OpenCensus. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-sys-0.0.0-20210324051608-47abb6519492 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20210324051608-47abb6519492") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19g0pa8lazad5kcq396ggg9x1d6sx39rw9brz3hklx71gg1jd3ja")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-pkg-errors-0.8.1 +; (package +; (name "go-github-com-pkg-errors") +; (version "0.8.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/pkg/errors") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0g5qcb4d4fd96midz0zdk8b9kz8xkzwfa8kr1cliqbg8sxsy5vd1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/pkg/errors")) +; (home-page "https://github.com/pkg/errors") +; (synopsis "errors") +; (description "Package errors provides simple error handling primitives. +;") +; (license license:bsd-2))) +; +;(define-public go-github-com-spf13-pflag-1.0.3 +; (package +; (name "go-github-com-spf13-pflag") +; (version "1.0.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/spf13/pflag") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1cj3cjm7d3zk0mf1xdybh0jywkbbw7a6yr3y22x9sis31scprswd")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/spf13/pflag")) +; (home-page "https://github.com/spf13/pflag") +; (synopsis "Description") +; (description +; "Package pflag is a drop-in replacement for Go's flag package, implementing +;POSIX/GNU-style --flags. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20190624222133-a101b041ded4 +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20190624222133-a101b041ded4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1pm50dybm5wixjjspvfpafjmiy81b1zp08h13gxc5cylrfgncrfl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" +; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-gotest-tools-v3-3.0.3 +; (package +; (name "go-gotest-tools-v3") +; (version "3.0.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/gotestyourself/gotest.tools") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1h316233n33lkfhbak8ljdj5i8df6hcwwm48n200svf22x3d95ww")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gotest.tools/v3" #:unpack-path "gotest.tools/v3")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20190624222133-a101b041ded4" +; ,go-golang-org-x-tools-0.0.0-20190624222133-a101b041ded4) +; ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) +; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0))) +; (home-page "https://gotest.tools/v3") +; (synopsis "gotest.tools") +; (description +; "Package gotesttools is a collection of packages to augment `testing` and +;support common patterns. +;") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-grpc-1.27.1 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.27.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "09phrrsafgq6hnbw8cawvx44bdpk1p584fys17x1bwn0j0451zzs")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" +; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-github-com-google-go-cmp-0.2.0" +; ,go-github-com-google-go-cmp-0.2.0) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2) +; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" +; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) +; ("go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473" +; ,go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-microsoft-hcsshim-0.8.22 +; (package +; (name "go-github-com-microsoft-hcsshim") +; (version "0.8.22") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/microsoft/hcsshim") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ncpq5sqmygck8q09mqqsgmvx5akwn9izf1k4p8bjya46g3kzk6g")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/Microsoft/hcsshim")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) +; ("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) +; ("go-golang-org-x-sys-0.0.0-20210324051608-47abb6519492" +; ,go-golang-org-x-sys-0.0.0-20210324051608-47abb6519492) +; ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" +; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) +; ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) +; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) +; ("go-github-com-sirupsen-logrus-1.7.0" +; ,go-github-com-sirupsen-logrus-1.7.0) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" +; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) +; ("go-github-com-gogo-protobuf-1.3.2" +; ,go-github-com-gogo-protobuf-1.3.2) +; ("go-github-com-containerd-typeurl-1.0.2" +; ,go-github-com-containerd-typeurl-1.0.2) +; ("go-github-com-containerd-ttrpc-1.0.2" +; ,go-github-com-containerd-ttrpc-1.0.2) +; ("go-github-com-containerd-go-runc-1.0.0" +; ,go-github-com-containerd-go-runc-1.0.0) +; ("go-github-com-containerd-fifo-1.0.0" +; ,go-github-com-containerd-fifo-1.0.0) +; ("go-github-com-containerd-continuity-0.1.0" +; ,go-github-com-containerd-continuity-0.1.0) +; ("go-github-com-containerd-containerd-1.4.9" +; ,go-github-com-containerd-containerd-1.4.9) +; ("go-github-com-containerd-console-1.0.2" +; ,go-github-com-containerd-console-1.0.2) +; ("go-github-com-containerd-cgroups-1.0.1" +; ,go-github-com-containerd-cgroups-1.0.1) +; ("go-github-com-microsoft-go-winio-0.4.17" +; ,go-github-com-microsoft-go-winio-0.4.17))) +; (home-page "https://github.com/Microsoft/hcsshim") +; (synopsis "hcsshim") +; (description +; "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") +; (license license:expat))) +; +;(define-public go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a +; (package +; (name "go-golang-org-x-sync") +; (version "0.0.0-20201207232520-09787c993a3a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sync") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1nv4mwi9njkkyc7lwmxrjr8ggfh2cf1c67a9bq85dnss81vpj61y")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sync")) +; (home-page "https://golang.org/x/sync") +; (synopsis "Go Sync") +; (description +; "This repository provides Go concurrency primitives in addition to the +;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") +; (license license:bsd-3))) +; +;(define-public go-github-com-containerd-stargz-snapshotter-estargz-0.9.0 +; (package +; (name "go-github-com-containerd-stargz-snapshotter-estargz") +; (version "0.9.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/stargz-snapshotter") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "01mjy4sks43jznxfsmb0jmb7l6a62pa2jxsyaqchb9pb7v9h43cq")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path +; "github.com/containerd/stargz-snapshotter/estargz" +; #:unpack-path +; "github.com/containerd/stargz-snapshotter")) +; (propagated-inputs +; `(("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" +; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) +; ("go-github-com-vbatts-tar-split-0.11.2" +; ,go-github-com-vbatts-tar-split-0.11.2) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-go-digest-1.0.0" +; ,go-github-com-opencontainers-go-digest-1.0.0) +; ("go-github-com-klauspost-compress-1.13.6" +; ,go-github-com-klauspost-compress-1.13.6))) +; (home-page "https://github.com/containerd/stargz-snapshotter") +; (synopsis #f) +; (description #f) +; (license license:asl2.0))) +; +;(define-public go-github-com-google-go-intervals-0.0.2 +; (package +; (name "go-github-com-google-go-intervals") +; (version "0.0.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/go-intervals") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0v9i46g1vdbyinagj94jvaibw4bpgh2l9f9p5268wg6msf761jm9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/go-intervals")) +; (home-page "https://github.com/google/go-intervals") +; (synopsis "go-intervals") +; (description +; "go-intervals is a library for performing set operations on 1-dimensional +;intervals, such as time ranges.") +; (license license:asl2.0))) +; +;(define-public go-github-com-google-uuid-1.2.0 +; (package +; (name "go-github-com-google-uuid") +; (version "1.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/uuid") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "08wqig98w23cg2ngjijhgm6s0mdayb95awa3cn3bs69lg20gryac")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/uuid")) +; (home-page "https://github.com/google/uuid") +; (synopsis "uuid") +; (description "Package uuid generates and inspects UUIDs. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-google-gofuzz-1.0.0 +; (package +; (name "go-github-com-google-gofuzz") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/gofuzz") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0qz439qvccm91w0mmjz4fqgx48clxdwagkvvx89cr43q1d4iry36")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/gofuzz")) +; (home-page "https://github.com/google/gofuzz") +; (synopsis "gofuzz") +; (description +; "Package fuzz is a library for populating go objects with random values. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-modern-go-concurrent-0.0.0-20180228061459-e0a39a4cb421 +; (package +; (name "go-github-com-modern-go-concurrent") +; (version "0.0.0-20180228061459-e0a39a4cb421") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/modern-go/concurrent") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0hamz1zimsxm9vl0ih19v7sbibglwq2j6473w4j9k7ib80fmxdzr")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/modern-go/concurrent")) +; (home-page "https://github.com/modern-go/concurrent") +; (synopsis "concurrent") +; (description +; "because sync.Map is only available in go 1.9, we can use concurrent.Map to make code portable") +; (license license:asl2.0))) +; +;(define-public go-github-com-modern-go-reflect2-1.0.2 +; (package +; (name "go-github-com-modern-go-reflect2") +; (version "1.0.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/modern-go/reflect2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "05a89f9j4nj8v1bchfkv2sy8piz746ikj831ilbp54g8dqhl8vzr")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/modern-go/reflect2")) +; (home-page "https://github.com/modern-go/reflect2") +; (synopsis "reflect2") +; (description "reflect api that avoids runtime reflect.Value cost") +; (license license:asl2.0))) +; +;(define-public go-github-com-json-iterator-go-1.1.12 +; (package +; (name "go-github-com-json-iterator-go") +; (version "1.1.12") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/json-iterator/go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1c8f0hxm18wivx31bs615x3vxs2j3ba0v6vxchsjhldc8kl311bz")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/json-iterator/go")) +; (propagated-inputs +; `(("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0) +; ("go-github-com-modern-go-reflect2-1.0.2" +; ,go-github-com-modern-go-reflect2-1.0.2) +; ("go-github-com-modern-go-concurrent-0.0.0-20180228061459-e0a39a4cb421" +; ,go-github-com-modern-go-concurrent-0.0.0-20180228061459-e0a39a4cb421) +; ("go-github-com-google-gofuzz-1.0.0" +; ,go-github-com-google-gofuzz-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://github.com/json-iterator/go") +; (synopsis "Benchmark") +; (description +; "Package jsoniter implements encoding and decoding of JSON as defined in +;@url{https://rfc-editor.org/rfc/rfc4627.html,RFC 4627} and provides interfaces with identical syntax of standard lib encoding/json. +;Converting from encoding/json to jsoniter is no more than replacing the package with jsoniter +;and variable type declarations (if any). +;jsoniter interfaces gives 100% compatibility with code using standard lib. +;") +; (license license:expat))) +; +;(define-public go-github-com-mattn-go-shellwords-1.0.12 +; (package +; (name "go-github-com-mattn-go-shellwords") +; (version "1.0.12") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mattn/go-shellwords") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0l0l5s4hlsrm4z6hygig2pp1qirk5ycrzn9z27ay3yvg9k7zafzx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mattn/go-shellwords")) +; (home-page "https://github.com/mattn/go-shellwords") +; (synopsis "go-shellwords") +; (description "Parse line as shell words.") +; (license license:expat))) +; +;(define-public go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible +; (package +; (name "go-github-com-mistifyio-go-zfs") +; (version "2.1.2-0.20190413222219-f784269be439+incompatible") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mistifyio/go-zfs") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0x6ncjaqjm06c615kbwkqbd5wcdg9nmrbl7wm4w185s6kq6l8fpw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mistifyio/go-zfs")) +; (home-page "https://github.com/mistifyio/go-zfs") +; (synopsis "Go Wrapper for ZFS") +; (description +; "Package zfs provides wrappers around the ZFS command line tools. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd +; (package +; (name "go-github-com-modern-go-concurrent") +; (version "0.0.0-20180306012644-bacd9c7ef1dd") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/modern-go/concurrent") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0s0fxccsyb8icjmiym5k7prcqx36hvgdwl588y0491gi18k5i4zs")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/modern-go/concurrent")) +; (home-page "https://github.com/modern-go/concurrent") +; (synopsis "concurrent") +; (description +; "because sync.Map is only available in go 1.9, we can use concurrent.Map to make code portable") +; (license license:asl2.0))) +; +;(define-public go-github-com-checkpoint-restore-go-criu-v5-5.0.0 +; (package +; (name "go-github-com-checkpoint-restore-go-criu-v5") +; (version "5.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/checkpoint-restore/go-criu") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "07dal5a9y43azkkh61jf6s81h7anbl17drkh2mal9mzcsi8wa2z8")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/checkpoint-restore/go-criu/v5")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.23.0" +; ,go-google-golang-org-protobuf-1.23.0) +; ("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" +; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) +; ("go-github-com-golang-protobuf-1.4.3" +; ,go-github-com-golang-protobuf-1.4.3))) +; (home-page "https://github.com/checkpoint-restore/go-criu") +; (synopsis "go-criu -- Go bindings for CRIU") +; (description +; "This repository provides Go bindings for @url{https://criu.org/,CRIU}. The code is based on the Go-based PHaul +;implementation from the CRIU repository. For easier inclusion into other Go projects the +;CRIU Go bindings have been moved to this repository.") +; (license license:asl2.0))) +; +;(define-public go-github-com-kr-pty-1.1.1 +; (package +; (name "go-github-com-kr-pty") +; (version "1.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kr/pty") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0383f0mb9kqjvncqrfpidsf8y6ns5zlrc91c6a74xpyxjwvzl2y6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kr/pty")) +; (home-page "https://github.com/kr/pty") +; (synopsis "pty") +; (description +; "Package pty is a wrapper for github.com/creack/pty, which provides +;functions for working with Unix terminals. +;") +; (license license:expat))) +; +;(define-public go-github-com-kr-text-0.1.0 +; (package +; (name "go-github-com-kr-text") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kr/text") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1gm5bsl01apvc84bw06hasawyqm4q84vx1pm32wr9jnd7a8vjgj1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kr/text")) +; (propagated-inputs +; `(("go-github-com-kr-pty-1.1.1" ,go-github-com-kr-pty-1.1.1))) +; (home-page "https://github.com/kr/text") +; (synopsis #f) +; (description +; "Package text provides rudimentary functions for manipulating text in +;paragraphs. +;") +; (license license:expat))) +; +;(define-public go-github-com-kr-pretty-0.2.1 +; (package +; (name "go-github-com-kr-pretty") +; (version "0.2.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kr/pretty") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0vzfz06y9q8gs2nxx0kys0591vzp78k0fvpb8digi5n15h3b25hy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kr/pretty")) +; (propagated-inputs +; `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) +; (home-page "https://github.com/kr/pretty") +; (synopsis #f) +; (description +; "Package pretty provides pretty-printing for Go values. This is +;useful during debugging, to avoid wrapping long output lines in +;the terminal. +;") +; (license license:expat))) +; +;(define-public go-github-com-frankban-quicktest-1.11.3 +; (package +; (name "go-github-com-frankban-quicktest") +; (version "1.11.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/frankban/quicktest") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0d5njmwkfq2809vlimnlvy8ir6kln0c4cgdwr680fwsclpbr43qs")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/frankban/quicktest")) +; (propagated-inputs +; `(("go-github-com-kr-pretty-0.2.1" ,go-github-com-kr-pretty-0.2.1) +; ("go-github-com-google-go-cmp-0.5.4" +; ,go-github-com-google-go-cmp-0.5.4))) +; (home-page "https://github.com/frankban/quicktest") +; (synopsis "quicktest") +; (description +; "Package quicktest provides a collection of Go helpers for writing tests. +;") +; (license license:expat))) +; +;(define-public go-github-com-google-go-cmp-0.5.4 +; (package +; (name "go-github-com-google-go-cmp") +; (version "0.5.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/go-cmp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ld9pwb6l22g75g1zpa691l7q9ki7pjgpcqhwgdfr3va1zisr5ci")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/go-cmp")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" +; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) +; (home-page "https://github.com/google/go-cmp") +; (synopsis "Package for equality of Go values") +; (description +; "This package is intended to be a more powerful and safer alternative to +;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") +; (license license:bsd-3))) +; +;(define-public go-github-com-cilium-ebpf-0.6.2 +; (package +; (name "go-github-com-cilium-ebpf") +; (version "0.6.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/cilium/ebpf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0x64sg0kyc8bbsp75dpv8g2jfmpdldsshf9ni49jh6rgsnnqhpf8")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/cilium/ebpf")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" +; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) +; ("go-github-com-google-go-cmp-0.5.4" +; ,go-github-com-google-go-cmp-0.5.4) +; ("go-github-com-frankban-quicktest-1.11.3" +; ,go-github-com-frankban-quicktest-1.11.3))) +; (home-page "https://github.com/cilium/ebpf") +; (synopsis "eBPF") +; (description "Package ebpf is a toolkit for working with eBPF programs. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20210124154548-22da62e12c0c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "17gp3dl75wq3x7j9z1pqgcyvjhvy9jaln1wbscy57al3whdsjp07")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-containerd-console-1.0.2 +; (package +; (name "go-github-com-containerd-console") +; (version "1.0.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/console") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0rxwgq578hphs2ldx1gg6c9fq1qm8rgqfx3vgi2sbrsmxn6m2438")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/console")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" +; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) +; (home-page "https://github.com/containerd/console") +; (synopsis "console") +; (description +; "Golang package for dealing with consoles. Light on deps and a simple API.") +; (license license:asl2.0))) +; +;(define-public go-github-com-coreos-go-systemd-v22-22.3.2 +; (package +; (name "go-github-com-coreos-go-systemd-v22") +; (version "22.3.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/coreos/go-systemd") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ndi86b8va84ha93njqgafypz4di7yxfd5r5kf1r0s3y3ghcjajq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/coreos/go-systemd/v22")) +; (propagated-inputs +; `(("go-github-com-godbus-dbus-v5-5.0.4" +; ,go-github-com-godbus-dbus-v5-5.0.4))) +; (home-page "https://github.com/coreos/go-systemd") +; (synopsis "go-systemd") +; (description "Go bindings to systemd. The project has several packages:") +; (license license:asl2.0))) +; +;(define-public go-github-com-cyphar-filepath-securejoin-0.2.2 +; (package +; (name "go-github-com-cyphar-filepath-securejoin") +; (version "0.2.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/cyphar/filepath-securejoin") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0id32zjb92wm569m29nfrzz5mw9z1glr3klayr6j134pp4h1sgq4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/cyphar/filepath-securejoin")) +; (home-page "https://github.com/cyphar/filepath-securejoin") +; (synopsis #f) +; (description +; "Package securejoin is an implementation of the hopefully-soon-to-be-included +;SecureJoin helper that is meant to be part of the \"path/filepath\" package. +;The purpose of this project is to provide a PoC implementation to make the +;SecureJoin proposal (@url{https://github.com/golang/go/issues/20126,https://github.com/golang/go/issues/20126}) more +;tangible. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-docker-go-units-0.4.0 +; (package +; (name "go-github-com-docker-go-units") +; (version "0.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/docker/go-units") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0k8gja8ql4pqg5rzmqvka42vjfs6rzablak87whcnqba6qxpimvz")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/docker/go-units")) +; (home-page "https://github.com/docker/go-units") +; (synopsis "Introduction") +; (description +; "Package units provides helper function to parse and print size and time units +;in human-readable format. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-godbus-dbus-v5-5.0.4 +; (package +; (name "go-github-com-godbus-dbus-v5") +; (version "5.0.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/godbus/dbus") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0znax8kskb5gmp5fj75w56bc9p7b22wrdswzlh4d04sprlc471yi")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/godbus/dbus/v5")) +; (home-page "https://github.com/godbus/dbus") +; (synopsis "dbus") +; (description +; "Package dbus implements bindings to the D-Bus message bus system. +;") +; (license license:bsd-2))) +; +;(define-public go-github-com-mrunalp-fileutils-0.5.0 +; (package +; (name "go-github-com-mrunalp-fileutils") +; (version "0.5.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mrunalp/fileutils") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1zrs959gf4zgi6ijwkdn4dcqk0svfblpaikkqy63q30rqz4swm0x")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mrunalp/fileutils")) +; (home-page "https://github.com/mrunalp/fileutils") +; (synopsis "fileutils") +; (description "Collection of utilities for file manipulation in golang") +; (license license:asl2.0))) +; +;(define-public go-github-com-opencontainers-selinux-1.8.2 +; (package +; (name "go-github-com-opencontainers-selinux") +; (version "1.8.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/selinux") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1dl1h8nzpyhsfki1dcjphm5h4n52qwilahyl6qlnwgzcc76pwizq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/selinux")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777" +; ,go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-bits-and-blooms-bitset-1.2.0" +; ,go-github-com-bits-and-blooms-bitset-1.2.0))) +; (home-page "https://github.com/opencontainers/selinux") +; (synopsis "selinux") +; (description "Common SELinux package used across the container ecosystem.") +; (license license:asl2.0))) +; +;(define-public go-github-com-seccomp-libseccomp-golang-0.9.1 +; (package +; (name "go-github-com-seccomp-libseccomp-golang") +; (version "0.9.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/seccomp/libseccomp-golang") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "022c8prvxz0shrifams7lq4xidvkcqg9xi87wjjcpmbikqi72cna")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/seccomp/libseccomp-golang")) +; (home-page "https://github.com/seccomp/libseccomp-golang") +; (synopsis #f) +; (description +; "Package seccomp provides bindings for libseccomp, a library wrapping the Linux +;seccomp syscall. Seccomp enables an application to restrict system call use +;for itself and its children. +;") +; (license license:bsd-2))) +; +;(define-public go-github-com-urfave-cli-1.22.1 +; (package +; (name "go-github-com-urfave-cli") +; (version "1.22.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/urfave/cli") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "04ymak18flqlfcn8lycmg8r3931al8dvr8f1cg9n4yjaskmg72v8")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/urfave/cli")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) +; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d" +; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d) +; ("go-github-com-burntsushi-toml-0.3.1" +; ,go-github-com-burntsushi-toml-0.3.1))) +; (home-page "https://github.com/urfave/cli") +; (synopsis "cli") +; (description +; "Package cli provides a minimal framework for creating and organizing command line +;Go applications. cli is designed to be easy to understand and write, the most simple +;cli application can be written as follows: +;") +; (license license:expat))) +; +;(define-public go-github-com-vishvananda-netns-0.0.0-20191106174202-0a2b9b5464df +; (package +; (name "go-github-com-vishvananda-netns") +; (version "0.0.0-20191106174202-0a2b9b5464df") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/vishvananda/netns") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1k1zb7pzc4r4wicq7ncspf6zsvq298lvpsq963ibj813shg657xw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/vishvananda/netns")) +; (home-page "https://github.com/vishvananda/netns") +; (synopsis "netns - network namespaces in go") +; (description +; "Package netns allows ultra-simple network namespace handling. NsHandles +;can be retrieved and set. Note that the current namespace is thread +;local so actions that set and reset namespaces should use LockOSThread +;to make sure the namespace doesn't change due to a goroutine switch. +;It is best to close NsHandles when you are done with them. This can be +;accomplished via a `defer ns.Close()` on the handle. Changing namespaces +;requires elevated privileges, so in most cases this code needs to be run +;as root. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190606203320-7fc4e5ec1444 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190606203320-7fc4e5ec1444") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "18rv3m1kksv3758aqiaac2l6j334g0bapic6ibsj999agcn7y9fg")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-vishvananda-netlink-1.1.0 +; (package +; (name "go-github-com-vishvananda-netlink") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/vishvananda/netlink") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1vhl30p1gx636a088ls4h6a0l8jjyfvz79fr5w0qzdrg4qg9h08h")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/vishvananda/netlink")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190606203320-7fc4e5ec1444" +; ,go-golang-org-x-sys-0.0.0-20190606203320-7fc4e5ec1444) +; ("go-github-com-vishvananda-netns-0.0.0-20191106174202-0a2b9b5464df" +; ,go-github-com-vishvananda-netns-0.0.0-20191106174202-0a2b9b5464df))) +; (home-page "https://github.com/vishvananda/netlink") +; (synopsis "netlink - netlink library for go") +; (description +; "Package netlink provides a simple library for netlink. Netlink is +;the interface a user-space program in linux uses to communicate with +;the kernel. It can be used to add and remove interfaces, set up ip +;addresses and routes, and confiugre ipsec. Netlink communication +;requires elevated privileges, so in most cases this code needs to +;be run as root. The low level primitives for netlink are contained +;in the nl subpackage. This package attempts to provide a high-level +;interface that is loosly modeled on the iproute2 cli. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20201224014010-6772e930b67b") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0zlr39dxbg0fxfdrc20c4x0pw43n9kz749ssml97cdzqy116p5qa")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) +; ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" +; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) +; ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" +; ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20210426230700-d19ff857e887 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20210426230700-d19ff857e887") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "12m35a34dfm99agcv2ln9zvvyczigaxfwqbzqirvwn1lw4784whn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-opencontainers-runc-1.0.2 +; (package +; (name "go-github-com-opencontainers-runc") +; (version "1.0.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/runc") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1bpckghjah0rczciw1a1ab8z718lb2d3k4mjm4zb45lpm3njmrcp")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/runc")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.26.0" +; ,go-google-golang-org-protobuf-1.26.0) +; ("go-golang-org-x-sys-0.0.0-20210426230700-d19ff857e887" +; ,go-golang-org-x-sys-0.0.0-20210426230700-d19ff857e887) +; ("go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b" +; ,go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b) +; ("go-github-com-vishvananda-netlink-1.1.0" +; ,go-github-com-vishvananda-netlink-1.1.0) +; ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) +; ("go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635" +; ,go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635) +; ("go-github-com-sirupsen-logrus-1.8.1" +; ,go-github-com-sirupsen-logrus-1.8.1) +; ("go-github-com-seccomp-libseccomp-golang-0.9.1" +; ,go-github-com-seccomp-libseccomp-golang-0.9.1) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-selinux-1.8.2" +; ,go-github-com-opencontainers-selinux-1.8.2) +; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417" +; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417) +; ("go-github-com-mrunalp-fileutils-0.5.0" +; ,go-github-com-mrunalp-fileutils-0.5.0) +; ("go-github-com-moby-sys-mountinfo-0.4.1" +; ,go-github-com-moby-sys-mountinfo-0.4.1) +; ("go-github-com-godbus-dbus-v5-5.0.4" +; ,go-github-com-godbus-dbus-v5-5.0.4) +; ("go-github-com-docker-go-units-0.4.0" +; ,go-github-com-docker-go-units-0.4.0) +; ("go-github-com-cyphar-filepath-securejoin-0.2.2" +; ,go-github-com-cyphar-filepath-securejoin-0.2.2) +; ("go-github-com-coreos-go-systemd-v22-22.3.2" +; ,go-github-com-coreos-go-systemd-v22-22.3.2) +; ("go-github-com-containerd-console-1.0.2" +; ,go-github-com-containerd-console-1.0.2) +; ("go-github-com-cilium-ebpf-0.6.2" ,go-github-com-cilium-ebpf-0.6.2) +; ("go-github-com-checkpoint-restore-go-criu-v5-5.0.0" +; ,go-github-com-checkpoint-restore-go-criu-v5-5.0.0) +; ("go-github-com-bits-and-blooms-bitset-1.2.0" +; ,go-github-com-bits-and-blooms-bitset-1.2.0))) +; (home-page "https://github.com/opencontainers/runc") +; (synopsis "runc") +; (description +; "@code{runc} is a CLI tool for spawning and running containers according to the OCI specification.") +; (license license:asl2.0))) +; +;(define-public go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417 +; (package +; (name "go-github-com-opencontainers-runtime-spec") +; (version "1.0.3-0.20210326190908-1c3f411f0417") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/runtime-spec") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1azk8z41ga8af35c966f06vrq9y9hwz6mkm59r3py5qaamzim3qq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) +; (home-page "https://github.com/opencontainers/runtime-spec") +; (synopsis "Open Container Initiative Runtime Specification") +; (description +; "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") +; (license license:asl2.0))) +; +;(define-public go-github-com-bits-and-blooms-bitset-1.2.0 +; (package +; (name "go-github-com-bits-and-blooms-bitset") +; (version "1.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/bits-and-blooms/bitset") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0r9f7lvz6znl7yr6njg77m8hj472yhdshf1qaybwyw7j8as6c4r3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/bits-and-blooms/bitset")) +; (home-page "https://github.com/bits-and-blooms/bitset") +; (synopsis "bitset") +; (description +; "Package bitset implements bitsets, a mapping +;between non-negative integers and boolean values. It should be more +;efficient than map[uint] bool. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-opencontainers-selinux-1.8.5 +; (package +; (name "go-github-com-opencontainers-selinux") +; (version "1.8.5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/selinux") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "07p8an2y6ycagjigs7dgf7546p0zfgyl739bbv062jk2r2zwxr03")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/selinux")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777" +; ,go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777) +; ("go-github-com-bits-and-blooms-bitset-1.2.0" +; ,go-github-com-bits-and-blooms-bitset-1.2.0))) +; (home-page "https://github.com/opencontainers/selinux") +; (synopsis "selinux") +; (description "Common SELinux package used across the container ecosystem.") +; (license license:asl2.0))) +; +;(define-public go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635 +; (package +; (name "go-github-com-syndtr-gocapability") +; (version "0.0.0-20200815063812-42c35b437635") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/syndtr/gocapability") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "00zi0k190ydlm9drnafvj9p4cf6axm858wr71pbmq1p3r94iqws4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/syndtr/gocapability")) +; (home-page "https://github.com/syndtr/gocapability") +; (synopsis #f) +; (description #f) +; (license license:bsd-2))) +; +;(define-public go-github-com-tchap-go-patricia-2.3.0+incompatible +; (package +; (name "go-github-com-tchap-go-patricia") +; (version "2.3.0+incompatible") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/tchap/go-patricia") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "12s2q1g98iy96d2cz10ip5jmaf0aqf59sxhm2h1whc7f8h5w0knc")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/tchap/go-patricia")) +; (home-page "https://github.com/tchap/go-patricia") +; (synopsis "go-patricia") +; (description +; "@strong{Documentation}: @url{http://godoc.org/github.com/tchap/go-patricia/patricia,GoDoc} +;@strong{Test Coverage}: @url{https://coveralls.io/r/tchap/go-patricia,(img (@ (src https://coveralls.io/repos/tchap/go-patricia/badge.png) (alt CoverageStatus)))}") +; (license license:expat))) +; +;(define-public go-golang-org-x-sys-0.0.0-20210820121016-41cdb8703e55 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20210820121016-41cdb8703e55") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "01ampyy748h8qkrz1w1xhzwfdj3svzcn38dfla8zczrwqv9wf77a")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15 +; (package +; (name "go-gopkg-in-check-v1") +; (version "1.0.0-20190902080502-41f04d3bba15") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/check.v1") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0vfk9czmlxmp6wndq8k17rhnjxal764mxfhrccza7nwlia760pjy")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) +; (home-page "https://gopkg.in/check.v1") +; (synopsis "Instructions") +; (description +; "Package check is a rich testing extension for Go's testing package. +;") +; (license license:bsd-2))) +; +;(define-public go-gotest-tools-2.2.0+incompatible +; (package +; (name "go-gotest-tools") +; (version "2.2.0+incompatible") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/gotestyourself/gotest.tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0yif3gdyckmf8i54jq0xn00kflla5rhib9sarw66ngnbl7bn9kyl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "gotest.tools")) +; (home-page "https://gotest.tools") +; (synopsis "gotest.tools") +; (description +; "Package gotesttools is a collection of packages to augment `testing` and +;support common patterns. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-containers-storage-1.37.0 +; (package +; (name "go-github-com-containers-storage") +; (version "1.37.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containers/storage") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1m4bxaisaw9fd364b7kr41xv5i2s863f1kz2aa4krzp5q25j118f")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containers/storage")) +; (propagated-inputs +; `(("go-gotest-tools-2.2.0+incompatible" +; ,go-gotest-tools-2.2.0+incompatible) +; ("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" +; ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) +; ("go-golang-org-x-sys-0.0.0-20210820121016-41cdb8703e55" +; ,go-golang-org-x-sys-0.0.0-20210820121016-41cdb8703e55) +; ("go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110" +; ,go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110) +; ("go-github-com-vbatts-tar-split-0.11.2" +; ,go-github-com-vbatts-tar-split-0.11.2) +; ("go-github-com-ulikunitz-xz-0.5.10" +; ,go-github-com-ulikunitz-xz-0.5.10) +; ("go-github-com-tchap-go-patricia-2.3.0+incompatible" +; ,go-github-com-tchap-go-patricia-2.3.0+incompatible) +; ("go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635" +; ,go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635) +; ("go-github-com-stretchr-testify-1.7.0" +; ,go-github-com-stretchr-testify-1.7.0) +; ("go-github-com-sirupsen-logrus-1.8.1" +; ,go-github-com-sirupsen-logrus-1.8.1) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-selinux-1.8.5" +; ,go-github-com-opencontainers-selinux-1.8.5) +; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417" +; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417) +; ("go-github-com-opencontainers-runc-1.0.2" +; ,go-github-com-opencontainers-runc-1.0.2) +; ("go-github-com-opencontainers-go-digest-1.0.0" +; ,go-github-com-opencontainers-go-digest-1.0.0) +; ("go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd" +; ,go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd) +; ("go-github-com-moby-sys-mountinfo-0.4.1" +; ,go-github-com-moby-sys-mountinfo-0.4.1) +; ("go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible" +; ,go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible) +; ("go-github-com-mattn-go-shellwords-1.0.12" +; ,go-github-com-mattn-go-shellwords-1.0.12) +; ("go-github-com-klauspost-pgzip-1.2.5" +; ,go-github-com-klauspost-pgzip-1.2.5) +; ("go-github-com-klauspost-compress-1.13.6" +; ,go-github-com-klauspost-compress-1.13.6) +; ("go-github-com-json-iterator-go-1.1.12" +; ,go-github-com-json-iterator-go-1.1.12) +; ("go-github-com-hashicorp-go-multierror-1.1.1" +; ,go-github-com-hashicorp-go-multierror-1.1.1) +; ("go-github-com-google-uuid-1.2.0" ,go-github-com-google-uuid-1.2.0) +; ("go-github-com-google-go-intervals-0.0.2" +; ,go-github-com-google-go-intervals-0.0.2) +; ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" +; ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) +; ("go-github-com-docker-go-units-0.4.0" +; ,go-github-com-docker-go-units-0.4.0) +; ("go-github-com-containerd-stargz-snapshotter-estargz-0.9.0" +; ,go-github-com-containerd-stargz-snapshotter-estargz-0.9.0) +; ("go-github-com-microsoft-hcsshim-0.8.22" +; ,go-github-com-microsoft-hcsshim-0.8.22) +; ("go-github-com-microsoft-go-winio-0.5.0" +; ,go-github-com-microsoft-go-winio-0.5.0) +; ("go-github-com-burntsushi-toml-0.4.1" +; ,go-github-com-burntsushi-toml-0.4.1))) +; (home-page "https://github.com/containers/storage") +; (synopsis #f) +; (description +; "@code{storage} is a Go library which aims to provide methods for storing filesystem +;layers, container images, and containers. A @code{containers-storage} CLI wrapper +;is also included for manual and scripting use.") +; (license license:asl2.0))) +; +;(define-public go-github-com-docker-distribution-2.7.1+incompatible +; (package +; (name "go-github-com-docker-distribution") +; (version "2.7.1+incompatible") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/distribution/distribution") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1nx8b5a68rn81alp8wkkw6qd5v32mgf0fk23mxm60zdf63qk1nzw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/docker/distribution")) +; (home-page "https://github.com/docker/distribution") +; (synopsis "Distribution") +; (description +; "Package distribution will define the interfaces for the components of +;docker distribution. The goal is to allow users to reliably package, ship +;and store content related to docker images. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-docker-docker-20.10.11+incompatible +; (package +; (name "go-github-com-docker-docker") +; (version "20.10.11+incompatible") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/moby/moby") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1h1r66j57l073iba6hwrhcz779vaym68l1gfycdiw2d2gglfrdgr")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/docker/docker")) +; (home-page "https://github.com/docker/docker") +; (synopsis "The Moby Project") +; (description +; "Moby is an open-source project created by Docker to enable and accelerate software containerization.") +; (license license:asl2.0))) +; +;(define-public go-github-com-danieljoos-wincred-1.1.0 +; (package +; (name "go-github-com-danieljoos-wincred") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/danieljoos/wincred") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0fllr8lwk70qb8gfndkgshfq5c7p8zdpp47bcd3816giv5w78vxi")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/danieljoos/wincred")) +; (propagated-inputs +; `(("go-github-com-stretchr-testify-1.5.1" +; ,go-github-com-stretchr-testify-1.5.1))) +; (home-page "https://github.com/danieljoos/wincred") +; (synopsis "wincred") +; (description +; "Package wincred provides primitives for accessing the Windows Credentials Management API. +;This includes functions for retrieval, listing and storage of credentials as well as Go structures for convenient access to the credential data. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20210119212857-b64e53b001e4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "16in6bazi0frdkzhqxyvmw7qcvzjavq21dnz9bmrqq8d4dpd2j44")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-docker-docker-credential-helpers-0.6.4 +; (package +; (name "go-github-com-docker-docker-credential-helpers") +; (version "0.6.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/docker/docker-credential-helpers") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0xsz8zgil2xrv835p3i6qbk7s81jz62sgasfvmmxi6lrkirahmh6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/docker/docker-credential-helpers")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4" +; ,go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4) +; ("go-github-com-danieljoos-wincred-1.1.0" +; ,go-github-com-danieljoos-wincred-1.1.0))) +; (home-page "https://github.com/docker/docker-credential-helpers") +; (synopsis "Introduction") +; (description +; "docker-credential-helpers is a suite of programs to use native stores to keep Docker credentials safe.") +; (license license:expat))) +; +;(define-public go-github-com-docker-go-connections-0.4.0 +; (package +; (name "go-github-com-docker-go-connections") +; (version "0.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/docker/go-connections") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0mv6f6b5nljc17dmwmc28hc0y11pqglz7x0d2mjrwdmfxf64hwqq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/docker/go-connections")) +; (home-page "https://github.com/docker/go-connections") +; (synopsis "Introduction") +; (description +; "Package connections provides libraries to work with network connections. +;This library is divided in several components for specific usage. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-docker-libtrust-0.0.0-20160708172513-aabc10ec26b7 +; (package +; (name "go-github-com-docker-libtrust") +; (version "0.0.0-20160708172513-aabc10ec26b7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/docker/libtrust") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1lwslbggzc2b0c4wxl5pn6i2nfgz5jz8f7s7vnid9mrlsk59h7s1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/docker/libtrust")) +; (home-page "https://github.com/docker/libtrust") +; (synopsis "libtrust") +; (description +; "Package libtrust provides an interface for managing authentication and +;authorization using public key cryptography. Authentication is handled +;using the identity attached to the public key and verified through TLS +;x509 certificates, a key challenge, or signature. Authorization and +;access control is managed through a trust graph distributed between +;both remote trust servers and locally cached and managed data. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-golang-groupcache-0.0.0-20210331224755-41bb18bfe9da +; (package +; (name "go-github-com-golang-groupcache") +; (version "0.0.0-20210331224755-41bb18bfe9da") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/groupcache") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "07amgr8ji4mnq91qbsw2jlcmw6hqiwdf4kzfdrj8c4b05w4knszc")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/groupcache")) +; (home-page "https://github.com/golang/groupcache") +; (synopsis "groupcache") +; (description +; "Package groupcache provides a data loading mechanism with caching +;and de-duplication that works across a set of peer processes. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-google-uuid-1.3.0 +; (package +; (name "go-github-com-google-uuid") +; (version "1.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/uuid") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0imkw52m7fzrwsdj2rfrk3zbplqfbwncyv6hv89xw0vdw3jpk122")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/uuid")) +; (home-page "https://github.com/google/uuid") +; (synopsis "uuid") +; (description "Package uuid generates and inspects UUIDs. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-gorilla-mux-1.7.4 +; (package +; (name "go-github-com-gorilla-mux") +; (version "1.7.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/gorilla/mux") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1d0sy1paa055ic84sp3766s9pa24q008hf77dc842vrgvn8p3wmh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/gorilla/mux")) +; (home-page "https://github.com/gorilla/mux") +; (synopsis "gorilla/mux") +; (description "Package mux implements a request router and dispatcher. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-hashicorp-errwrap-1.0.0 +; (package +; (name "go-github-com-hashicorp-errwrap") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/errwrap") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0slfb6w3b61xz04r32bi0a1bygc82rjzhqkxj2si2074wynqnr1c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hashicorp/errwrap")) +; (home-page "https://github.com/hashicorp/errwrap") +; (synopsis "errwrap") +; (description +; "Package errwrap implements methods to formalize error wrapping in Go. +;") +; (license license:mpl2.0))) +; +;(define-public go-github-com-hashicorp-go-multierror-1.1.1 +; (package +; (name "go-github-com-hashicorp-go-multierror") +; (version "1.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/go-multierror") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0l4s41skdpifndn9s8y6s9vzgghdzg4z8z0lld9qjr28888wzp00")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hashicorp/go-multierror")) +; (propagated-inputs +; `(("go-github-com-hashicorp-errwrap-1.0.0" +; ,go-github-com-hashicorp-errwrap-1.0.0))) +; (home-page "https://github.com/hashicorp/go-multierror") +; (synopsis "go-multierror") +; (description +; "@code{go-multierror} is a package for Go that provides a mechanism for +;representing a list of @code{error} values as a single @code{error}.") +; (license license:mpl2.0))) +; +;(define-public go-gopkg-in-yaml-v2-2.3.0 +; (package +; (name "go-gopkg-in-yaml-v2") +; (version "2.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/yaml.v2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1md0hlyd9s6myv3663i9l59y74n4xjazifmmyxn43g86fgkc5lzj")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" +; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) +; (home-page "https://gopkg.in/yaml.v2") +; (synopsis "YAML support for the Go language") +; (description "Package yaml implements YAML support for the Go language. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-imdario-mergo-0.3.12 +; (package +; (name "go-github-com-imdario-mergo") +; (version "0.3.12") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/imdario/mergo") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "15s6807vcm7xq4l6my7rnw1i7x57712jvdidjli5bip79jfaxw90")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/imdario/mergo")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.3.0" ,go-gopkg-in-yaml-v2-2.3.0))) +; (home-page "https://github.com/imdario/mergo") +; (synopsis "Mergo") +; (description +; "This package provides a helper to merge structs and maps in Golang. Useful for configuration default values, avoiding messy if-statements. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-klauspost-compress-1.13.6 +; (package +; (name "go-github-com-klauspost-compress") +; (version "1.13.6") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/klauspost/compress") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1bgqhv2pp56b8f5mfzpfjlm4cb262gjbqbp3235blhj9xf2wrynj")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/klauspost/compress")) +; (home-page "https://github.com/klauspost/compress") +; (synopsis "compress") +; (description "This package provides various compression algorithms.") +; (license #f))) +; +;(define-public go-github-com-klauspost-pgzip-1.2.5 +; (package +; (name "go-github-com-klauspost-pgzip") +; (version "1.2.5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/klauspost/pgzip") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0m66jcsz27076qvi5qzagzlbyd1sdzh6kbf1njj0sswx86026rx3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/klauspost/pgzip")) +; (home-page "https://github.com/klauspost/pgzip") +; (synopsis "pgzip") +; (description +; "Package pgzip implements reading and writing of gzip format compressed files, +;as specified in @url{https://rfc-editor.org/rfc/rfc1952.html,RFC 1952}. +;") +; (license license:expat))) +; +;(define-public go-github-com-chzyer-logex-1.1.10 +; (package +; (name "go-github-com-chzyer-logex") +; (version "1.1.10") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/chzyer/logex") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "08pbjj3wx9acavlwyr055isa8a5hnmllgdv5k6ra60l5y1brmlq4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/chzyer/logex")) +; (home-page "https://github.com/chzyer/logex") +; (synopsis #f) +; (description #f) +; (license #f))) +; +;(define-public go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e +; (package +; (name "go-github-com-chzyer-readline") +; (version "0.0.0-20180603132655-2972be24d48e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/chzyer/readline") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "104q8dazj8yf6b089jjr82fy9h1g80zyyzvp3g8b44a7d8ngjj6r")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/chzyer/readline")) +; (home-page "https://github.com/chzyer/readline") +; (synopsis "Guide") +; (description +; "Readline is a pure go implementation for GNU-Readline kind library. +;") +; (license license:expat))) +; +;(define-public go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1 +; (package +; (name "go-github-com-chzyer-test") +; (version "0.0.0-20180213035817-a1ea475d72b1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/chzyer/test") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0rns2aqk22i9xsgyap0pq8wi4cfaxsri4d9q6xxhhyma8jjsnj2k")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/chzyer/test")) +; (home-page "https://github.com/chzyer/test") +; (synopsis "test") +; (description #f) +; (license license:expat))) +; +;(define-public go-golang-org-x-sys-0.0.0-20181122145206-62eef0e2fa9b +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20181122145206-62eef0e2fa9b") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0mslbflrh422mcfg2hs2q1xwm3xwd5prn597w7xqhi3s41mx1vs4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-manifoldco-promptui-0.9.0 +; (package +; (name "go-github-com-manifoldco-promptui") +; (version "0.9.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/manifoldco/promptui") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1nnlj1ahwq4ar5gbvxg8dqjl1wl5r8mhcm0bixg1c4wiihz8xv8m")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/manifoldco/promptui")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20181122145206-62eef0e2fa9b" +; ,go-golang-org-x-sys-0.0.0-20181122145206-62eef0e2fa9b) +; ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" +; ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) +; ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" +; ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) +; ("go-github-com-chzyer-logex-1.1.10" +; ,go-github-com-chzyer-logex-1.1.10))) +; (home-page "https://github.com/manifoldco/promptui") +; (synopsis "promptui") +; (description +; "Package promptui is a library providing a simple interface to create command-line prompts for go. +;It can be easily integrated into spf13/cobra, urfave/cli or any cli go application. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-morikuni-aec-1.0.0 +; (package +; (name "go-github-com-morikuni-aec") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/morikuni/aec") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1qaqh0lk9wrqgff0yrxnbznvmwyhdxy3g9b2hjpazp5bw4nj0dp7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/morikuni/aec")) +; (home-page "https://github.com/morikuni/aec") +; (synopsis "aec") +; (description "Go wrapper for ANSI escape code.") +; (license license:expat))) +; +;(define-public go-github-com-mtrmac-gpgme-0.1.2 +; (package +; (name "go-github-com-mtrmac-gpgme") +; (version "0.1.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mtrmac/gpgme") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "00jgfyg93247bc5n3wk679rgnbbq8kr2qr6ymimwfc0bwi8yqz53")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mtrmac/gpgme")) +; (home-page "https://github.com/mtrmac/gpgme") +; (synopsis "GPGME (golang)") +; (description "Package gpgme provides a Go wrapper for the GPGME library +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-opencontainers-go-digest-1.0.0 +; (package +; (name "go-github-com-opencontainers-go-digest") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/go-digest") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0i5acjajvr6hi9zb7gxwifd8w28y884cv7cx36adj8lngj647xbi")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/go-digest")) +; (home-page "https://github.com/opencontainers/go-digest") +; (synopsis "go-digest") +; (description +; "Package digest provides a generalized type to opaquely represent message +;digests and their operations within the registry. The Digest type is +;designed to serve as a flexible identifier in a content-addressable system. +;More importantly, it provides tools and wrappers to work with +;hash.Hash-based digests with little effort. +;") +; (license (list license:asl2.0 license:cc-by-sa4.0)))) +; +;(define-public go-github-com-opencontainers-image-spec-1.0.2-0.20210819154149-5ad6f50d6283 +; (package +; (name "go-github-com-opencontainers-image-spec") +; (version "1.0.2-0.20210819154149-5ad6f50d6283") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/image-spec") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1p91nlpr9g5hv7b4mxncwa4gmhaxiw31fl6xn2fxd38zw1912hjx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/image-spec")) +; (home-page "https://github.com/opencontainers/image-spec") +; (synopsis "OCI Image Format Specification") +; (description +; "The OCI Image Format project creates and maintains the software shipping container image format spec (OCI Image Format).") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20191115151921-52ab43148777") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1kakxbqrb1w2vwg7r1896z68qcx2lfvimsl8cs2niiipbgpi6imx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-opencontainers-selinux-1.9.1 +; (package +; (name "go-github-com-opencontainers-selinux") +; (version "1.9.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/selinux") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0gfa7rmx3240da3smgyx5p4495zaw9l6cj0q69ly12m0iqb6889s")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/selinux")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777" +; ,go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777))) +; (home-page "https://github.com/opencontainers/selinux") +; (synopsis "selinux") +; (description "Common SELinux package used across the container ecosystem.") +; (license license:asl2.0))) +; +;(define-public go-github-com-ostreedev-ostree-go-0.0.0-20190702140239-759a8c1ac913 +; (package +; (name "go-github-com-ostreedev-ostree-go") +; (version "0.0.0-20190702140239-759a8c1ac913") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/ostreedev/ostree-go") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "025s1621vs0rcvar8i8lfam7556f4562zdg19wp2j7hfx14vc46s")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/ostreedev/ostree-go")) +; (home-page "https://github.com/ostreedev/ostree-go") +; (synopsis "OSTree-Go") +; (description +; "Go bindings for OSTree. Find out more about OSTree @url{https://github.com/ostreedev/ostree,here}") +; (license license:isc))) +; +;(define-public go-github-com-pkg-errors-0.9.1 +; (package +; (name "go-github-com-pkg-errors") +; (version "0.9.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/pkg/errors") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1761pybhc2kqr6v5fm8faj08x9bql8427yqg6vnfv6nhrasx1mwq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/pkg/errors")) +; (home-page "https://github.com/pkg/errors") +; (synopsis "errors") +; (description "Package errors provides simple error handling primitives. +;") +; (license license:bsd-2))) +; +;(define-public go-github-com-sirupsen-logrus-1.8.1 +; (package +; (name "go-github-com-sirupsen-logrus") +; (version "1.8.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/sirupsen/logrus") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0rvqzic2zz7fpxyizmqxwmhv1m52ii9bgxnqa6km8wsa0l08wh42")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/sirupsen/logrus")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037" +; ,go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037) +; ("go-github-com-stretchr-testify-1.2.2" +; ,go-github-com-stretchr-testify-1.2.2) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://github.com/sirupsen/logrus") +; (synopsis "Logrus") +; (description +; "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. +;") +; (license license:expat))) +; +;(define-public go-github-com-ulikunitz-xz-0.5.10 +; (package +; (name "go-github-com-ulikunitz-xz") +; (version "0.5.10") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/ulikunitz/xz") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "07vynk0sh8i8g7x9p9x04dj8wylvxaf8ypbi43yvcv7j6zd63c72")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/ulikunitz/xz")) +; (home-page "https://github.com/ulikunitz/xz") +; (synopsis "Package xz") +; (description +; "Package xz supports the compression and decompression of xz files. It +;supports version 1.0.4 of the specification without the non-LZMA2 +;filters. See @url{http://tukaani.org/xz/xz-file-format-1.0.4.txt,http://tukaani.org/xz/xz-file-format-1.0.4.txt} +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-davecgh-go-spew-1.1.1 +; (package +; (name "go-github-com-davecgh-go-spew") +; (version "1.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/davecgh/go-spew") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/davecgh/go-spew")) +; (home-page "https://github.com/davecgh/go-spew") +; (synopsis "go-spew") +; (description +; "Go-spew implements a deep pretty printer for Go data structures to aid in +;debugging. A comprehensive suite of tests with 100% test coverage is provided +;to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage +;report. Go-spew is licensed under the liberal ISC license, so it may be used in +;open source or commercial projects.") +; (license license:isc))) +; +;(define-public go-github-com-stretchr-testify-1.2.2 +; (package +; (name "go-github-com-stretchr-testify") +; (version "1.2.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/testify") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0dlszlshlxbmmfxj5hlwgv3r22x0y1af45gn1vd198nvvs3pnvfs")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/testify")) +; (home-page "https://github.com/stretchr/testify") +; (synopsis "Testify - Thou Shalt Write Tests") +; (description +; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20191026070338-33540a1f6037") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0fjcv0vzvi6za0b4xmnk3932pr9f9gczzf03y0kgq3ry9rqg169y")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-sirupsen-logrus-1.7.0 +; (package +; (name "go-github-com-sirupsen-logrus") +; (version "1.7.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/sirupsen/logrus") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1a59pw7zimvm8k423iq9l4f4qjj1ia1xc6pkmhwl2mxc46y2n442")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/sirupsen/logrus")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037" +; ,go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037) +; ("go-github-com-stretchr-testify-1.2.2" +; ,go-github-com-stretchr-testify-1.2.2) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://github.com/sirupsen/logrus") +; (synopsis "Logrus") +; (description +; "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. +;") +; (license license:expat))) +; +;(define-public go-github-com-russross-blackfriday-v2-2.0.1 +; (package +; (name "go-github-com-russross-blackfriday-v2") +; (version "2.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/russross/blackfriday") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0nlz7isdd4rgnwzs68499hlwicxz34j2k2a0b8jy0y7ycd2bcr5j")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/russross/blackfriday/v2")) +; (home-page "https://github.com/russross/blackfriday") +; (synopsis "Blackfriday") +; (description "Package blackfriday is a markdown processor. +;") +; (license license:bsd-2))) +; +;(define-public go-github-com-shurcool-sanitized-anchor-name-1.0.0 +; (package +; (name "go-github-com-shurcool-sanitized-anchor-name") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/shurcooL/sanitized_anchor_name") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1gv9p2nr46z80dnfjsklc6zxbgk96349sdsxjz05f3z6wb6m5l8f")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/shurcooL/sanitized_anchor_name")) +; (home-page "https://github.com/shurcooL/sanitized_anchor_name") +; (synopsis "sanitized_anchor_name") +; (description +; "Package sanitized_anchor_name provides a func to create sanitized anchor names. +;") +; (license license:expat))) +; +;(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d +; (package +; (name "go-github-com-cpuguy83-go-md2man-v2") +; (version "2.0.0-20190314233015-f79a8a8ca69d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/cpuguy83/go-md2man") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) +; (propagated-inputs +; `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" +; ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) +; ("go-github-com-russross-blackfriday-v2-2.0.1" +; ,go-github-com-russross-blackfriday-v2-2.0.1) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0))) +; (home-page "https://github.com/cpuguy83/go-md2man") +; (synopsis "go-md2man") +; (description "Converts markdown into roff (man pages).") +; (license license:expat))) +; +;(define-public go-github-com-urfave-cli-1.22.4 +; (package +; (name "go-github-com-urfave-cli") +; (version "1.22.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/urfave/cli") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1s7frsmiih4wh8vpx9z3ck4667c6vpjrmba7b9ymnv1p9khyg8wc")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/urfave/cli")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) +; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d" +; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d) +; ("go-github-com-burntsushi-toml-0.3.1" +; ,go-github-com-burntsushi-toml-0.3.1))) +; (home-page "https://github.com/urfave/cli") +; (synopsis "cli") +; (description +; "Package cli provides a minimal framework for creating and organizing command line +;Go applications. cli is designed to be easy to understand and write, the most simple +;cli application can be written as follows: +;") +; (license license:expat))) +; +;(define-public go-github-com-vbatts-tar-split-0.11.2 +; (package +; (name "go-github-com-vbatts-tar-split") +; (version "0.11.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/vbatts/tar-split") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0zmqnlif7r9n9kffw8k3m820ybvyy4zp7m2xfg8rrb321m869dcd")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/vbatts/tar-split")) +; (propagated-inputs +; `(("go-github-com-urfave-cli-1.22.4" ,go-github-com-urfave-cli-1.22.4) +; ("go-github-com-sirupsen-logrus-1.7.0" +; ,go-github-com-sirupsen-logrus-1.7.0))) +; (home-page "https://github.com/vbatts/tar-split") +; (synopsis "tar-split") +; (description +; "Pristinely disassembling a tar archive, and stashing needed raw bytes and offsets to reassemble a validating original archive.") +; (license license:bsd-3))) +; +;(define-public go-github-com-vividcortex-ewma-1.2.0 +; (package +; (name "go-github-com-vividcortex-ewma") +; (version "1.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/VividCortex/ewma") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0whx516l9nm4n41spagb605ry7kfnz1qha96mcshnfjlahhnnylq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/VividCortex/ewma")) +; (home-page "https://github.com/VividCortex/ewma") +; (synopsis "EWMA") +; (description +; "Package ewma implements exponentially weighted moving averages. +;") +; (license license:expat))) +; +;(define-public go-github-com-acarl005-stripansi-0.0.0-20180116102854-5a71ef0e047d +; (package +; (name "go-github-com-acarl005-stripansi") +; (version "0.0.0-20180116102854-5a71ef0e047d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/acarl005/stripansi") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "02sxiishdixm791jqbkmhdcvc712l0fb8rqmibxzgc61h0qs6rs3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/acarl005/stripansi")) +; (home-page "https://github.com/acarl005/stripansi") +; (synopsis "Strip ANSI") +; (description "This Go package removes ANSI escape codes from strings.") +; (license license:expat))) +; +;(define-public go-github-com-rivo-uniseg-0.2.0 +; (package +; (name "go-github-com-rivo-uniseg") +; (version "0.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/rivo/uniseg") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0j7h22vfmjj562vr8gpsyrkrwp1pq9ayh5fylv24skxb467g9f0q")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/rivo/uniseg")) +; (home-page "https://github.com/rivo/uniseg") +; (synopsis "Unicode Text Segmentation for Go") +; (description +; "Package uniseg implements Unicode Text Segmentation according to Unicode +;Standard Annex #29 (@url{http://unicode.org/reports/tr29/,http://unicode.org/reports/tr29/}). +;") +; (license license:expat))) +; +;(define-public go-github-com-mattn-go-runewidth-0.0.13 +; (package +; (name "go-github-com-mattn-go-runewidth") +; (version "0.0.13") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mattn/go-runewidth") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1yir0f3wc5z5hnkwhvx5qb6nmpfb05zp2gvfjvna63s8kmla1rrn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mattn/go-runewidth")) +; (propagated-inputs +; `(("go-github-com-rivo-uniseg-0.2.0" ,go-github-com-rivo-uniseg-0.2.0))) +; (home-page "https://github.com/mattn/go-runewidth") +; (synopsis "go-runewidth") +; (description +; "This package provides functions to get fixed width of the character or string.") +; (license license:expat))) +; +;(define-public go-golang-org-x-sys-0.0.0-20210910150752-751e447fb3d0 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20210910150752-751e447fb3d0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1sis5gp14r60lyx4hjkylf6rhmlybivcmrlw5qcbjgjwbbkvi0qk")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-vbauerster-mpb-v7-7.1.5 +; (package +; (name "go-github-com-vbauerster-mpb-v7") +; (version "7.1.5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/vbauerster/mpb") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0g2gqy41a15713r90j0j6n9zrs82aczrh33ffmm7jhz6r4nlrq07")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/vbauerster/mpb/v7")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20210910150752-751e447fb3d0" +; ,go-golang-org-x-sys-0.0.0-20210910150752-751e447fb3d0) +; ("go-github-com-mattn-go-runewidth-0.0.13" +; ,go-github-com-mattn-go-runewidth-0.0.13) +; ("go-github-com-acarl005-stripansi-0.0.0-20180116102854-5a71ef0e047d" +; ,go-github-com-acarl005-stripansi-0.0.0-20180116102854-5a71ef0e047d) +; ("go-github-com-vividcortex-ewma-1.2.0" +; ,go-github-com-vividcortex-ewma-1.2.0))) +; (home-page "https://github.com/vbauerster/mpb") +; (synopsis "Multi Progress Bar") +; (description +; "Package mpb is a library for rendering progress bars in terminal applications. +;") +; (license license:unlicense))) +; +;(define-public go-github-com-xeipuuv-gojsonpointer-0.0.0-20190809123943-df4f5c81cb3b +; (package +; (name "go-github-com-xeipuuv-gojsonpointer") +; (version "0.0.0-20190809123943-df4f5c81cb3b") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/xeipuuv/gojsonpointer") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0dfwc66z5gq75m3z7va80c10c22ijiq99bahq86l26ki71g286xn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/xeipuuv/gojsonpointer")) +; (home-page "https://github.com/xeipuuv/gojsonpointer") +; (synopsis "gojsonpointer") +; (description "An implementation of JSON Pointer - Go language") +; (license license:asl2.0))) +; +;(define-public go-github-com-stretchr-testify-1.3.0 +; (package +; (name "go-github-com-stretchr-testify") +; (version "1.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/testify") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0wjchp2c8xbgcbbq32w3kvblk6q6yn533g78nxl6iskq6y95lxsy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/testify")) +; (propagated-inputs +; `(("go-github-com-stretchr-objx-0.1.0" +; ,go-github-com-stretchr-objx-0.1.0) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.0" +; ,go-github-com-davecgh-go-spew-1.1.0))) +; (home-page "https://github.com/stretchr/testify") +; (synopsis "Testify - Thou Shalt Write Tests") +; (description +; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +;") +; (license license:expat))) +; +;(define-public go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f +; (package +; (name "go-github-com-xeipuuv-gojsonpointer") +; (version "0.0.0-20180127040702-4e3ac2762d5f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/xeipuuv/gojsonpointer") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "13y6iq2nzf9z4ls66bfgnnamj2m3438absmbpqry64bpwjfbsi9q")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/xeipuuv/gojsonpointer")) +; (home-page "https://github.com/xeipuuv/gojsonpointer") +; (synopsis "gojsonpointer") +; (description "An implementation of JSON Pointer - Go language") +; (license license:asl2.0))) +; +;(define-public go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415 +; (package +; (name "go-github-com-xeipuuv-gojsonreference") +; (version "0.0.0-20180127040603-bd5ef7bd5415") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/xeipuuv/gojsonreference") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1xby79padc7bmyb8rfbad8wfnfdzpnh51b1n8c0kibch0kwc1db5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/xeipuuv/gojsonreference")) +; (home-page "https://github.com/xeipuuv/gojsonreference") +; (synopsis "gojsonreference") +; (description "An implementation of JSON Reference - Go language") +; (license license:asl2.0))) +; +;(define-public go-github-com-xeipuuv-gojsonschema-1.2.0 +; (package +; (name "go-github-com-xeipuuv-gojsonschema") +; (version "1.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/xeipuuv/gojsonschema") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1mqiq0r8qw4qlfp3ls8073r6514rmzwrmdn4j33rppk3zh942i6l")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/xeipuuv/gojsonschema")) +; (propagated-inputs +; `(("go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415" +; ,go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415) +; ("go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f" +; ,go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f) +; ("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0))) +; (home-page "https://github.com/xeipuuv/gojsonschema") +; (synopsis "gojsonschema") +; (description +; "An implementation of JSON Schema for the Go programming language. Supports draft-04, draft-06 and draft-07.") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-sys-0.0.0-20200923182605-d9f96fdee20d +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20200923182605-d9f96fdee20d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1lj8nmnpb7ngbd90il65kyh78i6sc325vhmxr6l61qvbh0qdybyh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-go-etcd-io-bbolt-1.3.6 +; (package +; (name "go-go-etcd-io-bbolt") +; (version "1.3.6") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/etcd-io/bbolt") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0pj5245d417za41j6p09fmkbv05797vykr1bi9a6rnwddh1dbs8d")))) +; (build-system go-build-system) +; (arguments '(#:import-path "go.etcd.io/bbolt")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20200923182605-d9f96fdee20d" +; ,go-golang-org-x-sys-0.0.0-20200923182605-d9f96fdee20d))) +; (home-page "https://go.etcd.io/bbolt") +; (synopsis "bbolt") +; (description +; "package bbolt implements a low-level key/value store in pure Go. It supports +;fully serializable transactions, ACID semantics, and lock-free MVCC with +;multiple readers and a single writer. Bolt can be used for projects that +;want a simple data store without the need to add large dependencies such as +;Postgres or MySQL. +;") +; (license license:expat))) +; +;(define-public go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e +; (package +; (name "go-github-com-golang-groupcache") +; (version "0.0.0-20200121045136-8c9f03a8e57e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/groupcache") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0vjjr79r32icjzlb05wn02k59av7jx0rn1jijml8r4whlg7dnkfh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/groupcache")) +; (home-page "https://github.com/golang/groupcache") +; (synopsis "groupcache") +; (description +; "Package groupcache provides a data loading mechanism with caching +;and de-duplication that works across a set of peer processes. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-google-go-cmp-0.5.3 +; (package +; (name "go-github-com-google-go-cmp") +; (version "0.5.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/go-cmp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "011gdkmyk3w7qkcwljhqak4h5npn4n7fwgx1fwpyx9c7wizvgkm5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/go-cmp")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" +; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) +; (home-page "https://github.com/google/go-cmp") +; (synopsis "Package for equality of Go values") +; (description +; "This package is intended to be a more powerful and safer alternative to +;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") +; (license license:bsd-3))) +; +;(define-public go-github-com-stretchr-testify-1.6.1 +; (package +; (name "go-github-com-stretchr-testify") +; (version "1.6.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/testify") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1yhiqqzjvi63pf01rgzx68gqkkvjx03fvl5wk30br5l6s81s090l")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/testify")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" +; ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) +; ("go-github-com-stretchr-objx-0.1.0" +; ,go-github-com-stretchr-objx-0.1.0) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.0" +; ,go-github-com-davecgh-go-spew-1.1.0))) +; (home-page "https://github.com/stretchr/testify") +; (synopsis "Testify - Thou Shalt Write Tests") +; (description +; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20200930185726-fdedc70b468f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1njlfhjbvi4lxvjbq8zswrb0y0q4jd2p6x51h1q6vmyzi9af6869")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20201110031124-69a78807bb2b") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "176z5k6jbhr9vf0am2avl1lyqwym3q0mri98yb8r572z33qmcw1d")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) +; ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" +; ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) +; ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" +; ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-grpc-1.33.2 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.33.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "03yz4nlf4kqbnpw48f0mvcb2f5zzy0vjd5i2iw0hrjspd0238fzk")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.25.0" +; ,go-google-golang-org-protobuf-1.25.0) +; ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" +; ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) +; ("go-github-com-google-go-cmp-0.5.0" +; ,go-github-com-google-go-cmp-0.5.0) +; ("go-github-com-golang-protobuf-1.4.1" +; ,go-github-com-golang-protobuf-1.4.1) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-envoyproxy-go-control-plane-0.9.4" +; ,go-github-com-envoyproxy-go-control-plane-0.9.4) +; ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" +; ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-go-opencensus-io-0.23.0 +; (package +; (name "go-go-opencensus-io") +; (version "0.23.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/census-instrumentation/opencensus-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0gw4f7inf8y2ik00yfb36xganiq9rl4w2d1a41bsjqsh83ajz2km")))) +; (build-system go-build-system) +; (arguments '(#:import-path "go.opencensus.io")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) +; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" +; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-google-go-cmp-0.5.3" +; ,go-github-com-google-go-cmp-0.5.3) +; ("go-github-com-golang-protobuf-1.4.3" +; ,go-github-com-golang-protobuf-1.4.3) +; ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" +; ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e))) +; (home-page "https://go.opencensus.io") +; (synopsis "OpenCensus Libraries for Go") +; (description "Package opencensus contains Go support for OpenCensus. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20210226172049-e18ecbb05110") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1vlq8mdscp7yfaa1lmyv03y5m4c2d67ydg2q1i6smkrxghn3zn3q")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) +; ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" +; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) +; ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" +; ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20210322153248-0c34fe9e7dc2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "021szs1czc0xg4chpays7i05dvkax9s8mns314ab01r887kchqxq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (propagated-inputs +; `(("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" +; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) +; ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" +; ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68) +; ("go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110" +; ,go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110))) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20210423082822-04245dca01da +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20210423082822-04245dca01da") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "11is2c5cpxk0gf2mxza2wpzfcf71fxb9b3in77f6w2q0pr68ykzx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-text-0.3.6 +; (package +; (name "go-golang-org-x-text") +; (version "0.3.6") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/text") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0wzhvdb059vrp2cczqw422ajrb9sbs4l3qd020hlngj33qfhxah0")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/text")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" +; ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) +; (home-page "https://golang.org/x/text") +; (synopsis "Go Text") +; (description +; "text is a repository of text-related packages related to internationalization +;(i18n) and localization (l10n), such as character encodings, text +;transformations, and locale-specific text handling. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20211005001312-d4b1ae081e3b +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20211005001312-d4b1ae081e3b") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0mid37a5nk85xxym49cxw9k5y9w8j8hiafgmn4igaympm8yy5dc9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.6" ,go-golang-org-x-text-0.3.6) +; ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" +; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) +; ("go-golang-org-x-sys-0.0.0-20210423082822-04245dca01da" +; ,go-golang-org-x-sys-0.0.0-20210423082822-04245dca01da))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c +; (package +; (name "go-golang-org-x-sync") +; (version "0.0.0-20210220032951-036812b2e83c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sync") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1gl202py3s4gl6arkaxlf8qa6f0jyyg2f95m6f89qnfmr416h85b")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sync")) +; (home-page "https://golang.org/x/sync") +; (synopsis "Go Sync") +; (description +; "This repository provides Go concurrency primitives in addition to the +;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20211004093028-2c5d950f24ef +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20211004093028-2c5d950f24ef") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "13ac9v54zgxrya9n2dvbmyafhd0rbmnkfb5zrcp96z8vzd9q8zfz")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-text-0.3.7 +; (package +; (name "go-golang-org-x-text") +; (version "0.3.7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/text") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0xkw0qvfjyifdqd25y7nxdqkdh92inymw3q7841nricc9s01p4jy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/text")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" +; ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) +; (home-page "https://golang.org/x/text") +; (synopsis "Go Text") +; (description +; "text is a repository of text-related packages related to internationalization +;(i18n) and localization (l10n), such as character encodings, text +;transformations, and locale-specific text handling. +;") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-1.26.0 +; (package +; (name "go-google-golang-org-protobuf") +; (version "1.26.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0xq6phaps6d0vcv13ga59gzj4306l0ki9kikhmb52h6pq0iwfqlz")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.5.5" +; ,go-github-com-google-go-cmp-0.5.5) +; ("go-github-com-golang-protobuf-1.5.0" +; ,go-github-com-golang-protobuf-1.5.0))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.5.2 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.5.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1mh5fyim42dn821nsd3afnmgscrzzhn3h8rag635d2jnr23r1zhk")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.26.0" +; ,go-google-golang-org-protobuf-1.26.0) +; ("go-github-com-google-go-cmp-0.5.5" +; ,go-github-com-google-go-cmp-0.5.5))) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20210330210617-4fbd30eecc44 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20210330210617-4fbd30eecc44") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "02mmymbm7wb3vdp3z9hm8p0f45708fybyd38qm8qxzwm19zqnp56")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20201119102817-f84b799fce68") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1dvhqian5byzkcg1bnqzygqa6ccc6krc2q7j12pp1vhl3y7znnsg")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1 +; (package +; (name "go-golang-org-x-term") +; (version "0.0.0-20201126162022-7de9c90e9dd1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/term") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ba252xmv6qsvf1w1gcy98mngrj0vd4inbjw0lsklqvva65nljna")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/term")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" +; ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) +; (home-page "https://golang.org/x/term") +; (synopsis "Go terminal/console support") +; (description +; "Package term provides support functions for dealing with terminals, as +;commonly found on UNIX systems. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-text-0.3.3 +; (package +; (name "go-golang-org-x-text") +; (version "0.3.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/text") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19pihqm3phyndmiw6i42pdv6z1rbvlqlsnhsyqf9gsnn0qnmqqlh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/text")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" +; ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) +; (home-page "https://golang.org/x/text") +; (synopsis "Go Text") +; (description +; "text is a repository of text-related packages related to internationalization +;(i18n) and localization (l10n), such as character encodings, text +;transformations, and locale-specific text handling. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20210405180319-a5a99cb37ef4 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20210405180319-a5a99cb37ef4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0z90hpmxdw9i8vfhd6vf7hd63c86f1128qfb5f3y4kinvlpjy3rl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) +; ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" +; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) +; ("go-golang-org-x-sys-0.0.0-20210330210617-4fbd30eecc44" +; ,go-golang-org-x-sys-0.0.0-20210330210617-4fbd30eecc44))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20210510120138-977fb7262007 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20210510120138-977fb7262007") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0d2vnblgzxgvis2kly99gv10kadyl3v0cpv1lskjqg2v5d11r6hd")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20180917221912-90fa682c2a6e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-text-0.3.5 +; (package +; (name "go-golang-org-x-text") +; (version "0.3.5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/text") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "082s9d7wnh1aa2v08g3h5z4if2f8hl4y01pb788qsvab9329lj0w")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/text")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" +; ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) +; (home-page "https://golang.org/x/text") +; (synopsis "Go Text") +; (description +; "text is a repository of text-related packages related to internationalization +;(i18n) and localization (l10n), such as character encodings, text +;transformations, and locale-specific text handling. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-oneofone-xxhash-1.2.2 +; (package +; (name "go-github-com-oneofone-xxhash") +; (version "1.2.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/OneOfOne/xxhash") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1mjfhrwhvxa48rycjnqpqzm521i38h1hdyz6pdwmhd7xb8j6gwi6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/OneOfOne/xxhash")) +; (home-page "https://github.com/OneOfOne/xxhash") +; (synopsis "xxhash") +; (description +; "This is a native Go implementation of the excellent @url{https://github.com/Cyan4973/xxHash,xxhash}* algorithm, an extremely fast non-cryptographic Hash algorithm, working at speeds close to RAM limits.") +; (license license:asl2.0))) +; +;(define-public go-github-com-spaolacci-murmur3-0.0.0-20180118202830-f09979ecbc72 +; (package +; (name "go-github-com-spaolacci-murmur3") +; (version "0.0.0-20180118202830-f09979ecbc72") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/spaolacci/murmur3") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1lv3zyz3jy2d76bhvvs8svygx66606iygdvwy5cwc0p5z8yghq25")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/spaolacci/murmur3")) +; (home-page "https://github.com/spaolacci/murmur3") +; (synopsis "murmur3") +; (description +; "Package murmur3 implements Austin Appleby's non-cryptographic MurmurHash3. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-cespare-xxhash-1.1.0 +; (package +; (name "go-github-com-cespare-xxhash") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/cespare/xxhash") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1qyzlcdcayavfazvi03izx83fvip8h36kis44zr2sg7xf6sx6l4x")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/cespare/xxhash")) +; (propagated-inputs +; `(("go-github-com-spaolacci-murmur3-0.0.0-20180118202830-f09979ecbc72" +; ,go-github-com-spaolacci-murmur3-0.0.0-20180118202830-f09979ecbc72) +; ("go-github-com-oneofone-xxhash-1.2.2" +; ,go-github-com-oneofone-xxhash-1.2.2))) +; (home-page "https://github.com/cespare/xxhash") +; (synopsis "xxhash") +; (description +; "Package xxhash implements the 64-bit variant of xxHash (XXH64) as described +;at @url{http://cyan4973.github.io/xxHash/,http://cyan4973.github.io/xxHash/}. +;") +; (license license:expat))) +; +;(define-public go-github-com-cncf-xds-go-0.0.0-20210312221358-fbca930ec8ed +; (package +; (name "go-github-com-cncf-xds-go") +; (version "0.0.0-20210312221358-fbca930ec8ed") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/cncf/xds") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "16dlsms2k63570051ch1jb9yphrkqz61wdgs2l6zqaykhg13rjmh")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path +; "github.com/cncf/xds/go" +; #:unpack-path +; "github.com/cncf/xds")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2) +; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" +; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0))) +; (home-page "https://github.com/cncf/xds") +; (synopsis #f) +; (description #f) +; (license license:asl2.0))) +; +;(define-public go-github-com-envoyproxy-go-control-plane-0.9.9-0.20210512163311-63b5d3c536b0 +; (package +; (name "go-github-com-envoyproxy-go-control-plane") +; (version "0.9.9-0.20210512163311-63b5d3c536b0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/envoyproxy/go-control-plane") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1zb462sarpyjd4jxgiv9mqlmzz2rbjfh2r9xb7z4nbdkhpg1wh1j")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.25.0" +; ,go-google-golang-org-protobuf-1.25.0) +; ("go-google-golang-org-grpc-1.36.0" ,go-google-golang-org-grpc-1.36.0) +; ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" +; ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) +; ("go-go-opentelemetry-io-proto-otlp-0.7.0" +; ,go-go-opentelemetry-io-proto-otlp-0.7.0) +; ("go-github-com-stretchr-testify-1.5.1" +; ,go-github-com-stretchr-testify-1.5.1) +; ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" +; ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) +; ("go-github-com-google-go-cmp-0.5.0" +; ,go-github-com-google-go-cmp-0.5.0) +; ("go-github-com-golang-protobuf-1.4.3" +; ,go-github-com-golang-protobuf-1.4.3) +; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" +; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) +; ("go-github-com-cncf-xds-go-0.0.0-20210312221358-fbca930ec8ed" +; ,go-github-com-cncf-xds-go-0.0.0-20210312221358-fbca930ec8ed) +; ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" +; ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) +; (home-page "https://github.com/envoyproxy/go-control-plane") +; (synopsis "control-plane") +; (description +; "This repository contains a Go-based implementation of an API server that +;implements the discovery service APIs defined in +;@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-grpc-1.40.0 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.40.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0n63k9j3grwc8di3k2fkxqbdyzw0pwrcs9vpmwrnga6hdwg9d5hv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.25.0" +; ,go-google-golang-org-protobuf-1.25.0) +; ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" +; ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) +; ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" +; ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) +; ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" +; ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) +; ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" +; ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) +; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) +; ("go-github-com-google-go-cmp-0.5.0" +; ,go-github-com-google-go-cmp-0.5.0) +; ("go-github-com-golang-protobuf-1.4.3" +; ,go-github-com-golang-protobuf-1.4.3) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-envoyproxy-go-control-plane-0.9.9-0.20210512163311-63b5d3c536b0" +; ,go-github-com-envoyproxy-go-control-plane-0.9.9-0.20210512163311-63b5d3c536b0) +; ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" +; ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403) +; ("go-github-com-cespare-xxhash-1.1.0" +; ,go-github-com-cespare-xxhash-1.1.0))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-protobuf-1.26.0-rc.1 +; (package +; (name "go-google-golang-org-protobuf") +; (version "1.26.0-rc.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1m2jp247qcnix42jncn0q7pwrjgbhiqllb1115hfsz40xfnfhp8j")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.5.5" +; ,go-github-com-google-go-cmp-0.5.5))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.5.0 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.5.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1craaxv34g4g8q3yrv6pr28fx9ihnk7hj5gnbmxcrhcp78423lnf")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.26.0-rc.1" +; ,go-google-golang-org-protobuf-1.26.0-rc.1) +; ("go-github-com-google-go-cmp-0.5.5" +; ,go-github-com-google-go-cmp-0.5.5))) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-github-com-google-go-cmp-0.5.5 +; (package +; (name "go-github-com-google-go-cmp") +; (version "0.5.5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/go-cmp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "12fmkdhyv5d4is8s57k78j097zb0phlgnrkqc03agiszxlid69x7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/go-cmp")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" +; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) +; (home-page "https://github.com/google/go-cmp") +; (synopsis "Package for equality of Go values") +; (description +; "This package is intended to be a more powerful and safer alternative to +;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-1.27.1 +; (package +; (name "go-google-golang-org-protobuf") +; (version "1.27.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0aszb7cv8fq1m8akgd4kjyg5q7g5z9fdqnry6057ygq9r8r2yif2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.5.5" +; ,go-github-com-google-go-cmp-0.5.5) +; ("go-github-com-golang-protobuf-1.5.0" +; ,go-github-com-golang-protobuf-1.5.0))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20211005153810-c76a74d43a8e +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20211005153810-c76a74d43a8e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1y0dv6kra59adcvlgygw2rw5f70rr8jq18v2pcr2kjlfjmc48dh1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.27.1" +; ,go-google-golang-org-protobuf-1.27.1) +; ("go-google-golang-org-grpc-1.40.0" ,go-google-golang-org-grpc-1.40.0) +; ("go-golang-org-x-text-0.3.5" ,go-golang-org-x-text-0.3.5) +; ("go-golang-org-x-sys-0.0.0-20210510120138-977fb7262007" +; ,go-golang-org-x-sys-0.0.0-20210510120138-977fb7262007) +; ("go-golang-org-x-net-0.0.0-20210405180319-a5a99cb37ef4" +; ,go-golang-org-x-net-0.0.0-20210405180319-a5a99cb37ef4) +; ("go-github-com-golang-protobuf-1.5.2" +; ,go-github-com-golang-protobuf-1.5.2))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-github-com-cespare-xxhash-v2-2.1.1 +; (package +; (name "go-github-com-cespare-xxhash-v2") +; (version "2.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/cespare/xxhash") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0rl5rs8546zj1vzggv38w93wx0b5dvav7yy5hzxa8kw7iikv1cgr")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/cespare/xxhash/v2")) +; (home-page "https://github.com/cespare/xxhash") +; (synopsis "xxhash") +; (description +; "Package xxhash implements the 64-bit variant of xxHash (XXH64) as described +;at @url{http://cyan4973.github.io/xxHash/,http://cyan4973.github.io/xxHash/}. +;") +; (license license:expat))) +; +;(define-public go-github-com-cncf-xds-go-0.0.0-20210805033703-aa0b78936158 +; (package +; (name "go-github-com-cncf-xds-go") +; (version "0.0.0-20210805033703-aa0b78936158") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/cncf/xds") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1mym5pilywkv77ibw9baipf2ibnl3a06g2wjgjfy4xwwr8sbx6zb")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path +; "github.com/cncf/xds/go" +; #:unpack-path +; "github.com/cncf/xds")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2) +; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" +; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0))) +; (home-page "https://github.com/cncf/xds") +; (synopsis #f) +; (description #f) +; (license license:asl2.0))) +; +;(define-public go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c +; (package +; (name "go-gopkg-in-yaml-v3") +; (version "3.0.0-20200313102051-9f266ea9e77c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/yaml.v3") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1bbai3lzb50m0x2vwsdbagrbhvfylj9k1m32hgbqwldqx4p9ay35")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" +; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) +; (home-page "https://gopkg.in/yaml.v3") +; (synopsis "YAML support for the Go language") +; (description "Package yaml implements YAML support for the Go language. +;") +; (license #f))) +; +;(define-public go-github-com-stretchr-testify-1.7.0 +; (package +; (name "go-github-com-stretchr-testify") +; (version "1.7.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/testify") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ixgjsvafr3513pz3r6pmgk074s2dxkll0dadvl25gkf30rkmh10")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/testify")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" +; ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) +; ("go-github-com-stretchr-objx-0.1.0" +; ,go-github-com-stretchr-objx-0.1.0) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.0" +; ,go-github-com-davecgh-go-spew-1.1.0))) +; (home-page "https://github.com/stretchr/testify") +; (synopsis "Testify - Thou Shalt Write Tests") +; (description +; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +;") +; (license license:expat))) +; +;(define-public go-github-com-antihax-optional-1.0.0 +; (package +; (name "go-github-com-antihax-optional") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/antihax/optional") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ix08vl49qxr58rc6201cl97g1yznhhkwvqldslawind99js4rj0")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/antihax/optional")) +; (home-page "https://github.com/antihax/optional") +; (synopsis #f) +; (description #f) +; (license license:expat))) +; +;(define-public go-github-com-ghodss-yaml-1.0.0 +; (package +; (name "go-github-com-ghodss-yaml") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/ghodss/yaml") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0skwmimpy7hlh7pva2slpcplnm912rp3igs98xnqmn859kwa5v8g")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/ghodss/yaml")) +; (home-page "https://github.com/ghodss/yaml") +; (synopsis "YAML marshaling and unmarshaling support for Go") +; (description +; "Copyright 2013 The Go Authors. All rights reserved. +;Use of this source code is governed by a BSD-style +;license that can be found in the LICENSE file. +;") +; (license #f))) +; +;(define-public go-github-com-rogpeppe-fastuuid-1.2.0 +; (package +; (name "go-github-com-rogpeppe-fastuuid") +; (version "1.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/rogpeppe/fastuuid") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "028acdg63zkxpjz3l639nlhki2l0canr2v5jglrmwa1wpjqcfff8")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/rogpeppe/fastuuid")) +; (home-page "https://github.com/rogpeppe/fastuuid") +; (synopsis "fastuuid") +; (description +; "Package fastuuid provides fast UUID generation of 192 bit +;universally unique identifiers. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1 +; (package +; (name "go-golang-org-x-xerrors") +; (version "0.0.0-20200804184101-5ec99f83aff1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/xerrors") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1dbzc3gmf2haazpv7cgmv97rq40g2xzwbglc17vas8dwhgwgwrzb")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/xerrors")) +; (home-page "https://golang.org/x/xerrors") +; (synopsis #f) +; (description +; "Package xerrors implements functions to manipulate errors. +;") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20200513103714-09dca8ec2884 +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20200513103714-09dca8ec2884") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1bfv9n6sxizgxnf82xhwz9x6h7srdizhy5mdy90j0w833dlk6h9h")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" +; ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) +; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) +; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" +; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-github-com-golang-protobuf-1.3.3" +; ,go-github-com-golang-protobuf-1.3.3))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f +; (package +; (name "go-github-com-cncf-udpa-go") +; (version "0.0.0-20191209042840-269d4d468f6f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/cncf/udpa") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0i1jiaw2k3hlwwmg4hap81vb4s1p25xp9kdfww37v0fbgjariccs")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path +; "github.com/cncf/udpa/go" +; #:unpack-path +; "github.com/cncf/udpa")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2) +; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" +; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0))) +; (home-page "https://github.com/cncf/udpa") +; (synopsis "Description") +; (description +; "This library has been deprecated in favor of @code{github.com/cncf/xds/go}. All users are recommended to switch their imports.") +; (license license:asl2.0))) +; +;(define-public go-github-com-envoyproxy-go-control-plane-0.9.4 +; (package +; (name "go-github-com-envoyproxy-go-control-plane") +; (version "0.9.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/envoyproxy/go-control-plane") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0m0crzx70lp7vz13v20wxb1fcfdnzp7h3mkh3bn6a8mbfz6w5asj")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) +; ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" +; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) +; ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" +; ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) +; ("go-github-com-google-go-cmp-0.2.0" +; ,go-github-com-google-go-cmp-0.2.0) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2) +; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" +; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) +; ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" +; ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f) +; ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" +; ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) +; (home-page "https://github.com/envoyproxy/go-control-plane") +; (synopsis "control-plane") +; (description +; "This repository contains a Go-based implementation of an API server that +;implements the discovery service APIs defined in +;@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") +; (license license:asl2.0))) +; +;(define-public go-github-com-golang-protobuf-1.3.3 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.3.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1cyyr52yhj3fzrily3rmsbqyj8va4ld75lmry0857m39rgpv8sy1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-grpc-1.33.1 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.33.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0hv5p4d6m85gbk730l1ki3mdx2v8yr4djg00dwg7a8ga4ixxsxvc")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" +; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.3.3" +; ,go-github-com-golang-protobuf-1.3.3) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-envoyproxy-go-control-plane-0.9.4" +; ,go-github-com-envoyproxy-go-control-plane-0.9.4) +; ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" +; ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-gopkg-in-yaml-v2-2.2.3 +; (package +; (name "go-gopkg-in-yaml-v2") +; (version "2.2.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/yaml.v2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0l2s7y180gkkvrmnw2xyfszz1m4kp92x2hz680c9vyklcbzsxrrx")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" +; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) +; (home-page "https://gopkg.in/yaml.v2") +; (synopsis "YAML support for the Go language") +; (description "Package yaml implements YAML support for the Go language. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-grpc-ecosystem-grpc-gateway-1.16.0 +; (package +; (name "go-github-com-grpc-ecosystem-grpc-gateway") +; (version "1.16.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc-ecosystem/grpc-gateway") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0dzq1qbgzz2c6vnh8anx0j3py34sd72p35x6s2wrl001q68am5cc")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/grpc-ecosystem/grpc-gateway")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.2.3" ,go-gopkg-in-yaml-v2-2.2.3) +; ("go-google-golang-org-grpc-1.33.1" ,go-google-golang-org-grpc-1.33.1) +; ("go-google-golang-org-genproto-0.0.0-20200513103714-09dca8ec2884" +; ,go-google-golang-org-genproto-0.0.0-20200513103714-09dca8ec2884) +; ("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" +; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) +; ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" +; ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) +; ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" +; ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) +; ("go-github-com-rogpeppe-fastuuid-1.2.0" +; ,go-github-com-rogpeppe-fastuuid-1.2.0) +; ("go-github-com-golang-protobuf-1.3.3" +; ,go-github-com-golang-protobuf-1.3.3) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-ghodss-yaml-1.0.0" ,go-github-com-ghodss-yaml-1.0.0) +; ("go-github-com-antihax-optional-1.0.0" +; ,go-github-com-antihax-optional-1.0.0))) +; (home-page "https://github.com/grpc-ecosystem/grpc-gateway") +; (synopsis "grpc-gateway") +; (description +; "The grpc-gateway is a plugin of the Google protocol buffers compiler +;@url{https://github.com/protocolbuffers/protobuf,protoc}. +;It reads protobuf service definitions and generates a reverse-proxy server which +;translates a RESTful HTTP API into gRPC. This server is generated according to the +;@url{https://github.com/googleapis/googleapis/raw/master/google/api/http.proto#L46,(code google.api.http)} +;annotations in your service definitions.") +; (license license:bsd-3))) +; +;(define-public go-go-opentelemetry-io-proto-otlp-0.7.0 +; (package +; (name "go-go-opentelemetry-io-proto-otlp") +; (version "0.7.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/open-telemetry/opentelemetry-proto-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0p2a2i6f9gghvk3h9w08va50dhz7q8i5q6l4jvk6b7nisx6kb1qq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "go.opentelemetry.io/proto/otlp")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.25.0" +; ,go-google-golang-org-protobuf-1.25.0) +; ("go-google-golang-org-grpc-1.36.0" ,go-google-golang-org-grpc-1.36.0) +; ("go-github-com-grpc-ecosystem-grpc-gateway-1.16.0" +; ,go-github-com-grpc-ecosystem-grpc-gateway-1.16.0) +; ("go-github-com-golang-protobuf-1.4.3" +; ,go-github-com-golang-protobuf-1.4.3))) +; (home-page "https://go.opentelemetry.io/proto/otlp") +; (synopsis #f) +; (description #f) +; (license license:asl2.0))) +; +;(define-public go-github-com-envoyproxy-go-control-plane-0.9.0 +; (package +; (name "go-github-com-envoyproxy-go-control-plane") +; (version "0.9.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/envoyproxy/go-control-plane") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1dpvi4wnycyj6hnai78fr8aj58b27b1vcwdp3v0id5v22kvgr3xw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.23.0" ,go-google-golang-org-grpc-1.23.0) +; ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" +; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) +; ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" +; ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2) +; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" +; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) +; ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" +; ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) +; (home-page "https://github.com/envoyproxy/go-control-plane") +; (synopsis "control-plane") +; (description +; "This repository contains a Go-based implementation of an API server that +;implements the discovery service APIs defined in +;@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-grpc-1.25.1 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.25.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0a136ij9p11yj1vx892yqy40jkh7n5nfbpdvhgydcj823mx51c6f")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" +; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-github-com-google-go-cmp-0.2.0" +; ,go-github-com-google-go-cmp-0.2.0) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2) +; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" +; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) +; ("go-github-com-envoyproxy-go-control-plane-0.9.0" +; ,go-github-com-envoyproxy-go-control-plane-0.9.0))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403 +; (package +; (name "go-github-com-cncf-udpa-go") +; (version "0.0.0-20201120205902-5459f2c99403") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/cncf/udpa") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0i3al193dsp91j7iywqrm6fr56y2sz51ci4vf19mb3j4n2x44gsi")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path +; "github.com/cncf/udpa/go" +; #:unpack-path +; "github.com/cncf/udpa")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2) +; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" +; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0))) +; (home-page "https://github.com/cncf/udpa") +; (synopsis "Description") +; (description +; "This library has been deprecated in favor of @code{github.com/cncf/xds/go}. All users are recommended to switch their imports.") +; (license license:asl2.0))) +; +;(define-public go-github-com-davecgh-go-spew-1.1.0 +; (package +; (name "go-github-com-davecgh-go-spew") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/davecgh/go-spew") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/davecgh/go-spew")) +; (home-page "https://github.com/davecgh/go-spew") +; (synopsis "go-spew") +; (description +; "Go-spew implements a deep pretty printer for Go data structures to aid in +;debugging. A comprehensive suite of tests with 100% test coverage is provided +;to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage +;report. Go-spew is licensed under the liberal ISC license, so it may be used in +;open source or commercial projects.") +; (license license:isc))) +; +;(define-public go-github-com-pmezard-go-difflib-1.0.0 +; (package +; (name "go-github-com-pmezard-go-difflib") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/pmezard/go-difflib") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/pmezard/go-difflib")) +; (home-page "https://github.com/pmezard/go-difflib") +; (synopsis "go-difflib") +; (description +; "Go-difflib is a partial port of python 3 difflib package. Its main goal +;was to make unified and context diff available in pure Go, mostly for +;testing purposes.") +; (license license:bsd-3))) +; +;(define-public go-github-com-stretchr-objx-0.1.0 +; (package +; (name "go-github-com-stretchr-objx") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/objx") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/objx")) +; (home-page "https://github.com/stretchr/objx") +; (synopsis "Objx") +; (description +; "Objx - Go package for dealing with maps, slices, JSON and other data. +;") +; (license license:expat))) +; +;(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 +; (package +; (name "go-gopkg-in-check-v1") +; (version "0.0.0-20161208181325-20d25e280405") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/check.v1") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) +; (home-page "https://gopkg.in/check.v1") +; (synopsis "Instructions") +; (description +; "Package check is a rich testing extension for Go's testing package. +;") +; (license license:bsd-2))) +; +;(define-public go-gopkg-in-yaml-v2-2.2.2 +; (package +; (name "go-gopkg-in-yaml-v2") +; (version "2.2.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/yaml.v2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "01wj12jzsdqlnidpyjssmj0r4yavlqy7dwrg7adqd8dicjc4ncsa")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" +; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) +; (home-page "https://gopkg.in/yaml.v2") +; (synopsis "YAML support for the Go language") +; (description "Package yaml implements YAML support for the Go language. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-stretchr-testify-1.5.1 +; (package +; (name "go-github-com-stretchr-testify") +; (version "1.5.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/testify") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "09r89m1wy4cjv2nps1ykp00qjpi0531r07q3s34hr7m6njk4srkl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/testify")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) +; ("go-github-com-stretchr-objx-0.1.0" +; ,go-github-com-stretchr-objx-0.1.0) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.0" +; ,go-github-com-davecgh-go-spew-1.1.0))) +; (home-page "https://github.com/stretchr/testify") +; (synopsis "Testify - Thou Shalt Write Tests") +; (description +; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +;") +; (license license:expat))) +; +;(define-public go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad +; (package +; (name "go-github-com-envoyproxy-go-control-plane") +; (version "0.9.9-0.20201210154907-fd9021fe5dad") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/envoyproxy/go-control-plane") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0piyk6pk36x2qr3bhys2k240pfwz3bv64fhi2l0vx1mzwiddapbm")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.23.0" +; ,go-google-golang-org-protobuf-1.23.0) +; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) +; ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" +; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) +; ("go-github-com-stretchr-testify-1.5.1" +; ,go-github-com-stretchr-testify-1.5.1) +; ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" +; ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.4.2" +; ,go-github-com-golang-protobuf-1.4.2) +; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" +; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) +; ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" +; ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403) +; ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" +; ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) +; (home-page "https://github.com/envoyproxy/go-control-plane") +; (synopsis "control-plane") +; (description +; "This repository contains a Go-based implementation of an API server that +;implements the discovery service APIs defined in +;@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") +; (license license:asl2.0))) +; +;(define-public go-github-com-golang-protobuf-1.4.2 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.4.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0m5z81im4nsyfgarjhppayk4hqnrwswr3nix9mj8pff8x9jvcjqw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.23.0" +; ,go-google-golang-org-protobuf-1.23.0) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0))) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-grpc-1.36.0 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.36.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1m4xsfv3ysc84cwqxqqr61fs3d2w04f0q5xbdjijhczjixcxwh5i")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.25.0" +; ,go-google-golang-org-protobuf-1.25.0) +; ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" +; ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) +; ("go-github-com-google-go-cmp-0.5.0" +; ,go-github-com-google-go-cmp-0.5.0) +; ("go-github-com-golang-protobuf-1.4.2" +; ,go-github-com-golang-protobuf-1.4.2) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad" +; ,go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad) +; ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" +; ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-envoyproxy-go-control-plane-0.9.10-0.20210907150352-cf90f659a021 +; (package +; (name "go-github-com-envoyproxy-go-control-plane") +; (version "0.9.10-0.20210907150352-cf90f659a021") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/envoyproxy/go-control-plane") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0qwhcz5a4c9b27xcxdzr3lq76xyxbgjb2l033b0k0hb5lqi1gdnv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.25.0" +; ,go-google-golang-org-protobuf-1.25.0) +; ("go-google-golang-org-grpc-1.36.0" ,go-google-golang-org-grpc-1.36.0) +; ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" +; ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) +; ("go-go-opentelemetry-io-proto-otlp-0.7.0" +; ,go-go-opentelemetry-io-proto-otlp-0.7.0) +; ("go-github-com-stretchr-testify-1.7.0" +; ,go-github-com-stretchr-testify-1.7.0) +; ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" +; ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) +; ("go-github-com-google-go-cmp-0.5.0" +; ,go-github-com-google-go-cmp-0.5.0) +; ("go-github-com-golang-protobuf-1.4.3" +; ,go-github-com-golang-protobuf-1.4.3) +; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" +; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) +; ("go-github-com-cncf-xds-go-0.0.0-20210805033703-aa0b78936158" +; ,go-github-com-cncf-xds-go-0.0.0-20210805033703-aa0b78936158) +; ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" +; ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) +; (home-page "https://github.com/envoyproxy/go-control-plane") +; (synopsis "control-plane") +; (description +; "This repository contains a Go-based implementation of an API server that +;implements the discovery service APIs defined in +;@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-protobuf-1.23.0 +; (package +; (name "go-google-golang-org-protobuf") +; (version "1.23.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "03yan0m1v0zmlr935p4n24fd376mznsg85zy8sywbgisls4s1bzy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.4.0" +; ,go-github-com-golang-protobuf-1.4.0))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.4.3 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.4.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1kf1d7xmyjvy0z6j5czp6nqyvj9zrk6liv6znif08927xqfrzyln")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.23.0" +; ,go-google-golang-org-protobuf-1.23.0) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0))) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-github-com-google-uuid-1.1.2 +; (package +; (name "go-github-com-google-uuid") +; (version "1.1.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/uuid") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1rbpfa0v0ly9sdnixcxhf79swki54ikgm1zkwwkj64p1ws66syqd")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/uuid")) +; (home-page "https://github.com/google/uuid") +; (synopsis "uuid") +; (description "Package uuid generates and inspects UUIDs. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190404232315-eb5bcb51f2a3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "17k4g8krxbl84gzcs275b7gsh66dzm15fdxivjnx9xz8q84l4kby")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190412213103-97732733099d +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190412213103-97732733099d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "118hkp01i4z1f5h6hcjm0ff2ngqhrzj1f7731n0kw8dr6hvbx0sw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20200622213623-75b288015ac9") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "18vlncvvs11ds3zaaziqjlg5s2vcwi3496nn6qv7p0dp94j5pwa2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" +; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) +; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" +; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20200822124328-c89045814202 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20200822124328-c89045814202") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1g3wxilwbcbf2xj20y3mpxh38jka4fyhl48akfqf00vr48zmx96x")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" +; ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) +; ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" +; ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-cloud-google-com-go-0.34.0 +; (package +; (name "go-cloud-google-com-go") +; (version "0.34.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-cloud-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1kclgclwar3r37zbvb9gg3qxbgzkb50zk3s9778zlh2773qikmai")))) +; (build-system go-build-system) +; (arguments '(#:import-path "cloud.google.com/go")) +; (home-page "https://cloud.google.com/go") +; (synopsis "Google Cloud Client Libraries for Go") +; (description +; "Package cloud is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +;of sub-packages. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190108225652-1e06a53dbb7e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0lpqqvdccby48nixihvmn8ig1z48b950m1bxfqxn78air308qc3j")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4 +; (package +; (name "go-golang-org-x-sync") +; (version "0.0.0-20181221193216-37e7f081c4d4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sync") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1bb0mw6ckb1k7z8v3iil2qlqwfj408fvvp8m1cik2b46p7snyjhm")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sync")) +; (home-page "https://golang.org/x/sync") +; (synopsis "Go Sync") +; (description +; "This repository provides Go concurrency primitives in addition to the +;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d +; (package +; (name "go-golang-org-x-oauth2") +; (version "0.0.0-20200107190931-bf48bf16ab8d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/oauth2") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1sirdib60zwmh93kf9qrx51r8544k1p9rs5mk0797wibz3m4mrdg")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/oauth2")) +; (propagated-inputs +; `(("go-google-golang-org-appengine-1.4.0" +; ,go-google-golang-org-appengine-1.4.0) +; ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" +; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) +; ("go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e" +; ,go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e) +; ("go-cloud-google-com-go-0.34.0" ,go-cloud-google-com-go-0.34.0))) +; (home-page "https://golang.org/x/oauth2") +; (synopsis "OAuth2 for Go") +; (description +; "Package oauth2 provides support for making +;OAuth2 authorized and authenticated HTTP requests, +;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +;It can additionally grant authorization with Bearer JWT. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20200323222414-85ca7c5b95cd") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1504qkgbhhm4f0bhk77v2r1lj6x171ay5m79alkg78wjb5cign5l")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-google-go-cmp-0.5.0 +; (package +; (name "go-github-com-google-go-cmp") +; (version "0.5.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/go-cmp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "04pzp583p6b32y34c6jygfxarff9qjs39rarvfh6467z24sdd9k4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/go-cmp")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" +; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) +; (home-page "https://github.com/google/go-cmp") +; (synopsis "Package for equality of Go values") +; (description +; "This package is intended to be a more powerful and safer alternative to +;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-1.22.0 +; (package +; (name "go-google-golang-org-protobuf") +; (version "1.22.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0n7lc4m7kfvj01glc0gnjy0zsnsic7cxnbvlajy0h14cxbab87pj")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.4.0" +; ,go-github-com-golang-protobuf-1.4.0))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.4.1 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.4.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0w7ks4vffnnkp0miwgc3chrsnmya45lzvpahb2wmw0jwhdp5kdx7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.22.0" +; ,go-google-golang-org-protobuf-1.22.0) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0))) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-github-com-census-instrumentation-opencensus-proto-0.2.1 +; (package +; (name "go-github-com-census-instrumentation-opencensus-proto") +; (version "0.2.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/census-instrumentation/opencensus-proto") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19fcx3sc99i5dsklny6r073z5j20vlwn2xqm6di1q3b1xwchzqfj")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "github.com/census-instrumentation/opencensus-proto")) +; (home-page "https://github.com/census-instrumentation/opencensus-proto") +; (synopsis +; "OpenCensus Proto - Language Independent Interface Types For OpenCensus") +; (description +; "Census provides a framework to define and collect stats against metrics and to +;break those stats down across user-defined dimensions.") +; (license license:asl2.0))) +; +;(define-public go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4 +; (package +; (name "go-github-com-prometheus-client-model") +; (version "0.0.0-20190812154241-14fe0d1b01d4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/client_model") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0zdmk6rbbx39cvfz0r59v2jg5sg9yd02b4pds5n5llgvivi99550")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/client_model")) +; (propagated-inputs +; `(("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" +; ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0))) +; (home-page "https://github.com/prometheus/client_model") +; (synopsis "Deprecation note") +; (description +; "This repository used to contain the code that defined both +;the data model and the exposition format of Prometheus metrics.") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20190311212946-11955173bddd") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0hlkai67w167wiyivkzd1fgqrnyxkb94l2c6kr51jwcscizfyfn3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3 +; (package +; (name "go-golang-org-x-lint") +; (version "0.0.0-20190313153728-d0100b6bd8b3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/lint") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0b0amr9x4ji66iv9ayfx7zrfx52k1m5g66qfcxkgj80qrb1y2yn7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/lint")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" +; ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd))) +; (home-page "https://golang.org/x/lint") +; (synopsis "Installation") +; (description "Package lint contains a linter for Go source code. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sync-0.0.0-20190423024810-112230192c58 +; (package +; (name "go-golang-org-x-sync") +; (version "0.0.0-20190423024810-112230192c58") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sync") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "05i2k43j2d0llq768hg5pf3hb2yhfzp9la1w5wp0rsnnzblr0lfn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sync")) +; (home-page "https://golang.org/x/sync") +; (synopsis "Go Sync") +; (description +; "This repository provides Go concurrency primitives in addition to the +;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135 +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20190524140312-2c0ae7006135") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1lsi2ssxajclj3bciz2a41v1vjv768ja3v6wnbyhxy8xphwkp4fk")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" +; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-grpc-1.23.0 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.23.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1cn33r2gclmq2v1ndpf1n5bmhf2qs8mms7ii5cnl6f9ch4r2c4k3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" +; ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) +; ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" +; ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) +; ("go-google-golang-org-appengine-1.1.0" +; ,go-google-golang-org-appengine-1.1.0) +; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" +; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-github-com-google-go-cmp-0.2.0" +; ,go-github-com-google-go-cmp-0.2.0) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0) +; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-client9-misspell-0.3.4" +; ,go-github-com-client9-misspell-0.3.4) +; ("go-github-com-burntsushi-toml-0.3.1" +; ,go-github-com-burntsushi-toml-0.3.1) +; ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473 +; (package +; (name "go-github-com-envoyproxy-go-control-plane") +; (version "0.9.1-0.20191026205805-5f8ba28d4473") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/envoyproxy/go-control-plane") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1f1s764rd41vd9vgk3r14h1m6fz6pdvxj6fd83q58gxifbc4q5w4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.23.0" ,go-google-golang-org-grpc-1.23.0) +; ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" +; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) +; ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" +; ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2) +; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" +; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) +; ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" +; ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) +; (home-page "https://github.com/envoyproxy/go-control-plane") +; (synopsis "control-plane") +; (description +; "This repository contains a Go-based implementation of an API server that +;implements the discovery service APIs defined in +;@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") +; (license license:asl2.0))) +; +;(define-public go-github-com-envoyproxy-protoc-gen-validate-0.1.0 +; (package +; (name "go-github-com-envoyproxy-protoc-gen-validate") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/envoyproxy/protoc-gen-validate") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0kxd3wwh3xwqk0r684hsy281xq4y71cd11d4q2hspcjbnlbwh7cy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/envoyproxy/protoc-gen-validate")) +; (home-page "https://github.com/envoyproxy/protoc-gen-validate") +; (synopsis "protoc-gen-validate (PGV)") +; (description +; "PGV is a protoc plugin to generate polyglot message validators. While protocol buffers effectively guarantee the types of structured data, they cannot enforce semantic rules for values. This plugin adds support to protoc-generated code to validate such constraints.") +; (license license:asl2.0))) +; +;(define-public go-github-com-google-go-cmp-0.2.0 +; (package +; (name "go-github-com-google-go-cmp") +; (version "0.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/go-cmp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1fbv0x27k9sn8svafc0hjwsnckk864lv4yi7bvzrxvmd3d5hskds")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/go-cmp")) +; (home-page "https://github.com/google/go-cmp") +; (synopsis "Package for equality of Go values") +; (description +; "This package is intended to be a more powerful and safer alternative to +;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20190308221718-c2843e01d9a2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20190311183353-d8887717615a +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190311183353-d8887717615a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1wfm6ngxjyj7v5a2dqib6lw8bb2rdnf1kl48diykxjrsddn0s163")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190215142949-d0b11bdaac8a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.3.2 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.3.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1k1wb4zr0qbwgpvz9q5ws9zhlal8hq7dmq62pwxxriksayl6hzym")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4 +; (package +; (name "go-golang-org-x-exp") +; (version "0.0.0-20190121172915-509febef88a4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/exp") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "02isrh39z8znrp5znplzy0dip2gnrl3jm1355raliyvhnhg04j6q")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/exp")) +; (home-page "https://golang.org/x/exp") +; (synopsis "exp") +; (description +; "This subrepository holds experimental and deprecated (in the @code{old} +;directory) packages.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961 +; (package +; (name "go-golang-org-x-lint") +; (version "0.0.0-20190227174305-5b3e6a55c961") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/lint") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "04zp5vbds9nffmjg36wjpi5vg9zmf890yf78xxasai3ni637ivfw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/lint")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" +; ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c))) +; (home-page "https://golang.org/x/lint") +; (synopsis "Installation") +; (description "Package lint contains a linter for Go source code. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190213061140-3a22650c66bd") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "12q6fgdkc0742vcms67nzadgdwvi3rnb1gx3vwkljhrvlnwvz7wc")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f +; (package +; (name "go-golang-org-x-sync") +; (version "0.0.0-20181108010431-42b317875d0f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sync") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0mrjhk7al7yyh76x9flvxy4jm5jyqh2fxbxagpaazxn1xdgkaif3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sync")) +; (home-page "https://golang.org/x/sync") +; (synopsis "Go Sync") +; (description +; "This repository provides Go concurrency primitives in addition to the +;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20180724234803-3673e40ba225") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0vx7mz18p480p7fh0w5jv6mfdbsswrlac1sz4i705q7q7ygz59lm")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-appengine-1.4.0 +; (package +; (name "go-google-golang-org-appengine") +; (version "1.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/appengine") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "06zl7w4sxgdq2pl94wy9ncii6h0z3szl4xpqds0sv3b3wbdlhbnn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/appengine")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225" +; ,go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0))) +; (home-page "https://google.golang.org/appengine") +; (synopsis "Go App Engine packages") +; (description +; "Package appengine provides basic functionality for Google App Engine. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20190226205152-f727befe758c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0rpcqw6z13qd33rbasg32zb0gdhgh5lzjla63r6g651zf6hpsak0")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-google-golang-org-appengine-1.4.0" +; ,go-google-golang-org-appengine-1.4.0) +; ("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" +; ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) +; ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" +; ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-cloud-google-com-go-0.26.0 +; (package +; (name "go-cloud-google-com-go") +; (version "0.26.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-cloud-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "149v3ci17g6wd2pm18mzcncq5qpl9hwdjnz3rlbn5rfidyn46la1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "cloud.google.com/go")) +; (home-page "https://cloud.google.com/go") +; (synopsis "Google Cloud Client Libraries for Go") +; (description +; "Package cloud is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +;of sub-packages. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-burntsushi-toml-0.3.1 +; (package +; (name "go-github-com-burntsushi-toml") +; (version "0.3.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/BurntSushi/toml") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1fjdwwfzyzllgiwydknf1pwjvy49qxfsczqx5gz3y0izs7as99j6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/BurntSushi/toml")) +; (home-page "https://github.com/BurntSushi/toml") +; (synopsis "TOML parser and encoder for Go with reflection") +; (description +; "Package toml implements decoding and encoding of TOML files. +;") +; (license license:expat))) +; +;(define-public go-github-com-client9-misspell-0.3.4 +; (package +; (name "go-github-com-client9-misspell") +; (version "0.3.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/client9/misspell") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1vwf33wsc4la25zk9nylpbp9px3svlmldkm0bha4hp56jws4q9cs")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/client9/misspell")) +; (home-page "https://github.com/client9/misspell") +; (synopsis "Install") +; (description +; "Package misspell corrects commonly misspelled English words in source files. +;") +; (license license:expat))) +; +;(define-public go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b +; (package +; (name "go-github-com-golang-glog") +; (version "0.0.0-20160126235308-23def4e6c14b") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/glog") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0jb2834rw5sykfr937fxi8hxi2zy80sj2bdn9b3jb4b26ksqng30")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/glog")) +; (home-page "https://github.com/golang/glog") +; (synopsis "glog") +; (description +; "Package glog implements logging analogous to the Google-internal C++ INFO/ERROR/V setup. +;It provides functions Info, Warning, Error, Fatal, plus formatting variants such as +;Infof. It also provides V-style logging controlled by the -v and -vmodule=file=2 flags. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-golang-mock-1.1.1 +; (package +; (name "go-github-com-golang-mock") +; (version "1.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/mock") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ap8wb6pdl6ccmdb43advjll2ly4sz26wsc3axw0hbrjrybybzgy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/mock")) +; (home-page "https://github.com/golang/mock") +; (synopsis "gomock") +; (description +; "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It +;integrates well with Go's built-in @code{testing} package, but can be used in other +;contexts too.") +; (license license:asl2.0))) +; +;(define-public go-github-com-golang-protobuf-1.2.0 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0kf4b59rcbb1cchfny2dm9jyznp8ri2hsb14n8iak1q8986xa0ab")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3 +; (package +; (name "go-golang-org-x-lint") +; (version "0.0.0-20181026193005-c67002cb31c3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/lint") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0gymbggskjmphqxqcx4s0vnlcz7mygbix0vhwcwv5r67c0bf6765")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/lint")) +; (home-page "https://golang.org/x/lint") +; (synopsis "Installation") +; (description "Package lint contains a linter for Go source code. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20180826012351-8a410e7b638d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0hp0l8f6fir5gmgrjq0mhh5ikc0rlrm72774228800kfwqjrxxny")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be +; (package +; (name "go-golang-org-x-oauth2") +; (version "0.0.0-20180821212333-d2e6202438be") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/oauth2") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0wbn75fd10485nb93bm4kqldqifdim5xqy4v7r5sdvimvf3fyhn7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/oauth2")) +; (home-page "https://golang.org/x/oauth2") +; (synopsis "OAuth2 for Go") +; (description +; "Package oauth2 provides support for making +;OAuth2 authorized and authenticated HTTP requests, +;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +;It can additionally grant authorization with Bearer JWT. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f +; (package +; (name "go-golang-org-x-sync") +; (version "0.0.0-20180314180146-1d60e4601c6f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sync") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "046jlanz2lkxq1r57x9bl6s4cvfqaic6p2xybsj8mq1120jv4rs6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sync")) +; (home-page "https://golang.org/x/sync") +; (synopsis "Go Sync") +; (description +; "This repository provides Go concurrency primitives in addition to the +;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20180830151530-49385e6e1522") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0spbldahns09fdxkxflb1x24f8k2awdlnr6k5i7ci4fqd19r1dv4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-text-0.3.0 +; (package +; (name "go-golang-org-x-text") +; (version "0.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/text") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/text")) +; (home-page "https://golang.org/x/text") +; (synopsis "Go Text") +; (description +; "text is a repository of text-related packages related to internationalization +;(i18n) and localization (l10n), such as character encodings, text +;transformations, and locale-specific text handling. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20190114222345-bf090417da8b") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1n3xp56k4k3lj06rx7587wr5gnwg0148nvwx6ch0g7ar02hh94hw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-appengine-1.1.0 +; (package +; (name "go-google-golang-org-appengine") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/appengine") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1pz202zszg8f35dk5pfhwgcdi3r6dx1l4yk6x6ly7nb4j45zi96x")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/appengine")) +; (home-page "https://google.golang.org/appengine") +; (synopsis "Go App Engine packages") +; (description +; "Package appengine provides basic functionality for Google App Engine. +;") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8 +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20180817151627-c66870c02cf8") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0siq7sv68556ygqi2d2zmvx8l1xjqdc0fylqzci5h1mq2i14bayn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-grpc-1.19.0 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.19.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1znqwpj7ix3dpzx4zch0q70sdl3z5lvbb7v3q4i8sf8kas3yv71v")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" +; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) +; ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" +; ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) +; ("go-google-golang-org-appengine-1.1.0" +; ,go-google-golang-org-appengine-1.1.0) +; ("go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b" +; ,go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b) +; ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522" +; ,go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522) +; ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" +; ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d" +; ,go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d) +; ("go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3" +; ,go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0) +; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-client9-misspell-0.3.4" +; ,go-github-com-client9-misspell-0.3.4) +; ("go-github-com-burntsushi-toml-0.3.1" +; ,go-github-com-burntsushi-toml-0.3.1) +; ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099 +; (package +; (name "go-honnef-co-go-tools") +; (version "0.0.0-20190102054323-c2f93a96b099") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/dominikh/go-tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "07lg29aiap80ca9f201jzng9vjr168cv3qmvjmbd7v5pmww9kmr8")))) +; (build-system go-build-system) +; (arguments '(#:import-path "honnef.co/go/tools")) +; (home-page "https://honnef.co/go/tools") +; (synopsis "Documentation") +; (description +; "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, +;offers simplifications, and enforces style rules.") +; (license license:expat))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55 +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20190819201941-24fa4b261c55") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "109zhaqlfd8zkbr1hk6zqbs6vcxfrk64scjwh2nswph05gr0m84d")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" +; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) +; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) +; ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" +; ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) +; ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" +; ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) +; ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" +; ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-grpc-1.27.0 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.27.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ijrmgrxyabfn51nm3p9l81iaasq5fg237wnr6mdc4dzsfcg8kd7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" +; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-github-com-google-go-cmp-0.2.0" +; ,go-github-com-google-go-cmp-0.2.0) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2) +; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" +; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) +; ("go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473" +; ,go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-google-go-cmp-0.3.0 +; (package +; (name "go-github-com-google-go-cmp") +; (version "0.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/go-cmp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1hyxx3434zshl2m9ja78gwlkg1rx9yl6diqa7dnjb31xz5x4gbjj")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/go-cmp")) +; (home-page "https://github.com/google/go-cmp") +; (synopsis "Package for equality of Go values") +; (description +; "This package is intended to be a more powerful and safer alternative to +;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd +; (package +; (name "go-google-golang-org-protobuf") +; (version "0.0.0-20200109180630-ec00e32a8dfd") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0w6lp9w2avxcpxwzzhspr209ifhyjagvs23k0vykfdqahl1aplrh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.3.0" +; ,go-github-com-google-go-cmp-0.3.0))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.4.0-rc.1 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.4.0-rc.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "186rirvbfgv6hrxp27ipx2cdpv19qifdd20biqfdm01wiyclqimn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd" +; ,go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd) +; ("go-github-com-google-go-cmp-0.3.1" +; ,go-github-com-google-go-cmp-0.3.1))) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-github-com-google-go-cmp-0.3.1 +; (package +; (name "go-github-com-google-go-cmp") +; (version "0.3.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/go-cmp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1caw49i0plkjxir7kdf5qhwls3krqwfmi7g4h392rdfwi3kfahx1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/go-cmp")) +; (home-page "https://github.com/google/go-cmp") +; (synopsis "Package for equality of Go values") +; (description +; "This package is intended to be a more powerful and safer alternative to +;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64 +; (package +; (name "go-google-golang-org-protobuf") +; (version "0.0.0-20200221191635-4d8936d0db64") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0563bsvdjj6k0sgwqd5yzrgfiax7sp3lcwh608gync5sv9fx39cy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.3.1" +; ,go-github-com-google-go-cmp-0.3.1) +; ("go-github-com-golang-protobuf-1.4.0-rc.1" +; ,go-github-com-golang-protobuf-1.4.0-rc.1))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.4.0-rc.1.0.20200221234624-67d41d38c208") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ykxhg3zixmw25pd435f8h16wnz1g00jpcmmg3xl030kksgqgpp6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64" +; ,go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0))) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60 +; (package +; (name "go-google-golang-org-protobuf") +; (version "0.0.0-20200228230310-ab0ca4ff8a60") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1rinspcznfp85yz4vrlf4h38hr576virgv8lcs22bsylqga808sd")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208" +; ,go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.4.0-rc.2 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.4.0-rc.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1hd43hjv5zl6bjbmhm5phx74bw4xajsi73m5zky2k56za4mpgzzc")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60" +; ,go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0))) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967 +; (package +; (name "go-google-golang-org-protobuf") +; (version "1.20.1-0.20200309200217-e05f789c0967") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "17wmy89hnmpkwc63rfcjp50q15s9f1rhmczg06c3z9yy41zk82w9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.4.0-rc.2" +; ,go-github-com-golang-protobuf-1.4.0-rc.2))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.4.0-rc.4.0.20200313231945-b860323f09d0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1zj6cwshx0l5n9cn2cpbikzzb79px5dmkpc4p19zy1iif5r5p0z0")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967" +; ,go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0))) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-1.21.0 +; (package +; (name "go-google-golang-org-protobuf") +; (version "1.21.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "12bwln8z1lf9105gdp6ip0rx741i4yfz1520gxnp8861lh9wcl63")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0" +; ,go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.4.0 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1fjvl5n77abxz5qsd4mgyvjq19x43c5bfvmq62mq3m5plx6zksc8")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.21.0" +; ,go-google-golang-org-protobuf-1.21.0) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0))) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543 +; (package +; (name "go-golang-org-x-xerrors") +; (version "0.0.0-20191204190536-9bdfabe68543") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/xerrors") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1yjfi1bk9xb81lqn85nnm13zz725wazvrx3b50hx19qmwg7a4b0c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/xerrors")) +; (home-page "https://golang.org/x/xerrors") +; (synopsis #f) +; (description +; "Package xerrors implements functions to manipulate errors. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-google-go-cmp-0.4.0 +; (package +; (name "go-github-com-google-go-cmp") +; (version "0.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/go-cmp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1x5pvl3fb5sbyng7i34431xycnhmx8xx94gq2n19g6p0vz68z2v2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/go-cmp")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" +; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) +; (home-page "https://github.com/google/go-cmp") +; (synopsis "Package for equality of Go values") +; (description +; "This package is intended to be a more powerful and safer alternative to +;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc +; (package +; (name "go-google-golang-org-protobuf") +; (version "1.23.1-0.20200526195155-81db48ad09cc") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "02cpr8rqr5wmpj2fqb32mzilsdnxkh52g1jz95a3ck3gzffc7hh1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.4.0" +; ,go-github-com-golang-protobuf-1.4.0))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc +; (package +; (name "go-honnef-co-go-tools") +; (version "0.0.0-20190523083050-ea95bdfd59fc") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/dominikh/go-tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1763nw7pwpzkvzfnm63dgzcgbq9hwmq5l1nffchnhh77vgkaq4ic")))) +; (build-system go-build-system) +; (arguments '(#:import-path "honnef.co/go/tools")) +; (home-page "https://honnef.co/go/tools") +; (synopsis "Documentation") +; (description +; "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, +;offers simplifications, and enforces style rules.") +; (license license:expat))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013 +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20200526211855-cb27e3aa2013") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ml73ghqcwbz7ipfk8fnxb5indcml49b5p7vp1fsyny0abyyrmxf")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" +; ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) +; ("go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc" +; ,go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc) +; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) +; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" +; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-github-com-golang-protobuf-1.4.1" +; ,go-github-com-golang-protobuf-1.4.1))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-protobuf-1.25.0 +; (package +; (name "go-google-golang-org-protobuf") +; (version "1.25.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0apfl42x166dh96zfq5kvv4b4ax9xljik6bq1mnvn2240ir3mc23")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" +; ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) +; ("go-github-com-google-go-cmp-0.5.0" +; ,go-github-com-google-go-cmp-0.5.0) +; ("go-github-com-golang-protobuf-1.4.1" +; ,go-github-com-golang-protobuf-1.4.1))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-grpc-1.41.0 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.41.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "10a0n2lmvl8zqhcswz3sjyqil0sk0mvp892d04lfnq61wq1ssgsn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.25.0" +; ,go-google-golang-org-protobuf-1.25.0) +; ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" +; ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) +; ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" +; ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) +; ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" +; ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) +; ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" +; ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) +; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) +; ("go-github-com-google-go-cmp-0.5.0" +; ,go-github-com-google-go-cmp-0.5.0) +; ("go-github-com-golang-protobuf-1.4.3" +; ,go-github-com-golang-protobuf-1.4.3) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-envoyproxy-go-control-plane-0.9.10-0.20210907150352-cf90f659a021" +; ,go-github-com-envoyproxy-go-control-plane-0.9.10-0.20210907150352-cf90f659a021) +; ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" +; ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403) +; ("go-github-com-cespare-xxhash-v2-2.1.1" +; ,go-github-com-cespare-xxhash-v2-2.1.1))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-containers-image-v5-5.17.0 +; (package +; (name "go-github-com-containers-image-v5") +; (version "5.17.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containers/image") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0nr5myldx1jhw7qjjilh7xwvn8g8lx85d9llny5iyagqn75q45b1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containers/image/v5")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.41.0" ,go-google-golang-org-grpc-1.41.0) +; ("go-google-golang-org-genproto-0.0.0-20211005153810-c76a74d43a8e" +; ,go-google-golang-org-genproto-0.0.0-20211005153810-c76a74d43a8e) +; ("go-golang-org-x-text-0.3.7" ,go-golang-org-x-text-0.3.7) +; ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" +; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) +; ("go-golang-org-x-sys-0.0.0-20211004093028-2c5d950f24ef" +; ,go-golang-org-x-sys-0.0.0-20211004093028-2c5d950f24ef) +; ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" +; ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) +; ("go-golang-org-x-net-0.0.0-20211005001312-d4b1ae081e3b" +; ,go-golang-org-x-net-0.0.0-20211005001312-d4b1ae081e3b) +; ("go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2" +; ,go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2) +; ("go-go-opencensus-io-0.23.0" ,go-go-opencensus-io-0.23.0) +; ("go-go-etcd-io-bbolt-1.3.6" ,go-go-etcd-io-bbolt-1.3.6) +; ("go-github-com-xeipuuv-gojsonschema-1.2.0" +; ,go-github-com-xeipuuv-gojsonschema-1.2.0) +; ("go-github-com-xeipuuv-gojsonpointer-0.0.0-20190809123943-df4f5c81cb3b" +; ,go-github-com-xeipuuv-gojsonpointer-0.0.0-20190809123943-df4f5c81cb3b) +; ("go-github-com-vbauerster-mpb-v7-7.1.5" +; ,go-github-com-vbauerster-mpb-v7-7.1.5) +; ("go-github-com-vbatts-tar-split-0.11.2" +; ,go-github-com-vbatts-tar-split-0.11.2) +; ("go-github-com-ulikunitz-xz-0.5.10" +; ,go-github-com-ulikunitz-xz-0.5.10) +; ("go-github-com-stretchr-testify-1.7.0" +; ,go-github-com-stretchr-testify-1.7.0) +; ("go-github-com-sirupsen-logrus-1.8.1" +; ,go-github-com-sirupsen-logrus-1.8.1) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-ostreedev-ostree-go-0.0.0-20190702140239-759a8c1ac913" +; ,go-github-com-ostreedev-ostree-go-0.0.0-20190702140239-759a8c1ac913) +; ("go-github-com-opencontainers-selinux-1.9.1" +; ,go-github-com-opencontainers-selinux-1.9.1) +; ("go-github-com-opencontainers-image-spec-1.0.2-0.20210819154149-5ad6f50d6283" +; ,go-github-com-opencontainers-image-spec-1.0.2-0.20210819154149-5ad6f50d6283) +; ("go-github-com-opencontainers-go-digest-1.0.0" +; ,go-github-com-opencontainers-go-digest-1.0.0) +; ("go-github-com-mtrmac-gpgme-0.1.2" ,go-github-com-mtrmac-gpgme-0.1.2) +; ("go-github-com-morikuni-aec-1.0.0" ,go-github-com-morikuni-aec-1.0.0) +; ("go-github-com-manifoldco-promptui-0.9.0" +; ,go-github-com-manifoldco-promptui-0.9.0) +; ("go-github-com-klauspost-pgzip-1.2.5" +; ,go-github-com-klauspost-pgzip-1.2.5) +; ("go-github-com-klauspost-compress-1.13.6" +; ,go-github-com-klauspost-compress-1.13.6) +; ("go-github-com-imdario-mergo-0.3.12" +; ,go-github-com-imdario-mergo-0.3.12) +; ("go-github-com-hashicorp-go-multierror-1.1.1" +; ,go-github-com-hashicorp-go-multierror-1.1.1) +; ("go-github-com-gorilla-mux-1.7.4" ,go-github-com-gorilla-mux-1.7.4) +; ("go-github-com-google-uuid-1.3.0" ,go-github-com-google-uuid-1.3.0) +; ("go-github-com-golang-groupcache-0.0.0-20210331224755-41bb18bfe9da" +; ,go-github-com-golang-groupcache-0.0.0-20210331224755-41bb18bfe9da) +; ("go-github-com-ghodss-yaml-1.0.0" ,go-github-com-ghodss-yaml-1.0.0) +; ("go-github-com-docker-libtrust-0.0.0-20160708172513-aabc10ec26b7" +; ,go-github-com-docker-libtrust-0.0.0-20160708172513-aabc10ec26b7) +; ("go-github-com-docker-go-connections-0.4.0" +; ,go-github-com-docker-go-connections-0.4.0) +; ("go-github-com-docker-docker-credential-helpers-0.6.4" +; ,go-github-com-docker-docker-credential-helpers-0.6.4) +; ("go-github-com-docker-docker-20.10.11+incompatible" +; ,go-github-com-docker-docker-20.10.11+incompatible) +; ("go-github-com-docker-distribution-2.7.1+incompatible" +; ,go-github-com-docker-distribution-2.7.1+incompatible) +; ("go-github-com-containers-storage-1.37.0" +; ,go-github-com-containers-storage-1.37.0) +; ("go-github-com-containers-ocicrypt-1.1.2" +; ,go-github-com-containers-ocicrypt-1.1.2) +; ("go-github-com-containers-libtrust-0.0.0-20190913040956-14b96171aa3b" +; ,go-github-com-containers-libtrust-0.0.0-20190913040956-14b96171aa3b) +; ("go-github-com-containerd-containerd-1.5.7" +; ,go-github-com-containerd-containerd-1.5.7) +; ("go-github-com-burntsushi-toml-0.4.1" +; ,go-github-com-burntsushi-toml-0.4.1) +; ("go-github-com-14rcole-gopopulate-0.0.0-20180821133914-b175b219e774" +; ,go-github-com-14rcole-gopopulate-0.0.0-20180821133914-b175b219e774))) +; (home-page "https://github.com/containers/image") +; (synopsis "") +; (description +; "The package image provides libraries and commands to interact with container images. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-cyphar-filepath-securejoin-0.2.3 +; (package +; (name "go-github-com-cyphar-filepath-securejoin") +; (version "0.2.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/cyphar/filepath-securejoin") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0w03d8hslwfhcnfqck21agzs7y0sc6gpwfz53md8fv26ishwxppy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/cyphar/filepath-securejoin")) +; (home-page "https://github.com/cyphar/filepath-securejoin") +; (synopsis #f) +; (description +; "Package securejoin is an implementation of the hopefully-soon-to-be-included +;SecureJoin helper that is meant to be part of the \"path/filepath\" package. +;The purpose of this project is to provide a PoC implementation to make the +;SecureJoin proposal (@url{https://github.com/golang/go/issues/20126,https://github.com/golang/go/issues/20126}) more +;tangible. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20200223170610-d5e6a3e2c0ae +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20200223170610-d5e6a3e2c0ae") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0lz7vm5dz2p14fzq2j4m1l9p392cl0fa73aaf45gln07ylfajk4n")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-mattn-go-colorable-0.1.8 +; (package +; (name "go-github-com-mattn-go-colorable") +; (version "0.1.8") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mattn/go-colorable") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0q34zqwbnls72md8q8mhj368s7p3i4xspvs3rk8fs76s0pn7dr2l")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mattn/go-colorable")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20200223170610-d5e6a3e2c0ae" +; ,go-golang-org-x-sys-0.0.0-20200223170610-d5e6a3e2c0ae) +; ("go-github-com-mattn-go-isatty-0.0.12" +; ,go-github-com-mattn-go-isatty-0.0.12))) +; (home-page "https://github.com/mattn/go-colorable") +; (synopsis "go-colorable") +; (description "Colorable writer for windows.") +; (license license:expat))) +; +;(define-public go-golang-org-x-sys-0.0.0-20200116001909-b77594299b42 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20200116001909-b77594299b42") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0isfm6kmh4fjhh6m7mrb3zvdjka2y31c5habr5kydl7rg0lwkabv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-mattn-go-isatty-0.0.12 +; (package +; (name "go-github-com-mattn-go-isatty") +; (version "0.0.12") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mattn/go-isatty") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1dfsh27d52wmz0nmmzm2382pfrs2fcijvh6cgir7jbb4pnigr5w4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mattn/go-isatty")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20200116001909-b77594299b42" +; ,go-golang-org-x-sys-0.0.0-20200116001909-b77594299b42))) +; (home-page "https://github.com/mattn/go-isatty") +; (synopsis "go-isatty") +; (description "Package isatty implements interface to isatty +;") +; (license license:expat))) +; +;(define-public go-github-com-fatih-color-1.12.0 +; (package +; (name "go-github-com-fatih-color") +; (version "1.12.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/fatih/color") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0r6r4vh9aiz8ny2whvpq288x8shkyvpj38g5pqw5840ryq38chig")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/fatih/color")) +; (propagated-inputs +; `(("go-github-com-mattn-go-isatty-0.0.12" +; ,go-github-com-mattn-go-isatty-0.0.12) +; ("go-github-com-mattn-go-colorable-0.1.8" +; ,go-github-com-mattn-go-colorable-0.1.8))) +; (home-page "https://github.com/fatih/color") +; (synopsis "color") +; (description +; "Package color is an ANSI color package to output colorized or SGR defined +;output to the standard output. The API can be used in several way, pick one +;that suits you. +;") +; (license license:expat))) +; +;(define-public go-github-com-go-log-log-0.2.0 +; (package +; (name "go-github-com-go-log-log") +; (version "0.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/go-log/log") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1idnqv4yvkmdh3wcsgvhcpak9z6ix8dsifdjq5kfbbnskdq5rmvg")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/go-log/log")) +; (home-page "https://github.com/go-log/log") +; (synopsis "Log") +; (description "Package log provides a log interface +;") +; (license license:expat))) +; +;(define-public go-github-com-godbus-dbus-4.1.0+incompatible +; (package +; (name "go-github-com-godbus-dbus") +; (version "4.1.0+incompatible") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/godbus/dbus") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ckvg15zdsgmbn4mi36cazkb407ixc9mmyf7vwj8b8wi3d00rgn9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/godbus/dbus")) +; (home-page "https://github.com/godbus/dbus") +; (synopsis "dbus") +; (description +; "Package dbus implements bindings to the D-Bus message bus system. +;") +; (license license:bsd-2))) +; +;(define-public go-github-com-google-uuid-1.3.0 +; (package +; (name "go-github-com-google-uuid") +; (version "1.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/uuid") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0imkw52m7fzrwsdj2rfrk3zbplqfbwncyv6hv89xw0vdw3jpk122")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/uuid")) +; (home-page "https://github.com/google/uuid") +; (synopsis "uuid") +; (description "Package uuid generates and inspects UUIDs. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-gorilla-websocket-1.4.2 +; (package +; (name "go-github-com-gorilla-websocket") +; (version "1.4.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/gorilla/websocket") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0mkm9w6kjkrlzab5wh8p4qxkc0icqawjbvr01d2nk6ykylrln40s")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/gorilla/websocket")) +; (home-page "https://github.com/gorilla/websocket") +; (synopsis "Gorilla WebSocket") +; (description +; "Package websocket implements the WebSocket protocol defined in @url{https://rfc-editor.org/rfc/rfc6455.html,RFC 6455}. +;") +; (license license:bsd-2))) +; +;(define-public go-github-com-satori-go-uuid-1.2.1-0.20180404165556-75cca531ea76 +; (package +; (name "go-github-com-satori-go-uuid") +; (version "1.2.1-0.20180404165556-75cca531ea76") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/satori/go.uuid") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0fi1rc2zl0vyyah6iy8cvsjyxipp6pnzb19x40qkq3j1qlra20qy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/satori/go.uuid")) +; (home-page "https://github.com/satori/go.uuid") +; (synopsis "UUID package for Go language") +; (description +; "Package uuid provides implementation of Universally Unique Identifier (UUID). +;Supported versions are 1, 3, 4 and 5 (as specified in @url{https://rfc-editor.org/rfc/rfc4122.html,RFC 4122}) and +;version 2 (as specified in DCE 1.1). +;") +; (license license:expat))) +; +;(define-public go-github-com-sebdah-goldie-v2-2.5.3 +; (package +; (name "go-github-com-sebdah-goldie-v2") +; (version "2.5.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/sebdah/goldie") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "12gji9p6b6zlkisbd3ww103zwd5chlwkb6h5dppfrmgxim84n5n0")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/sebdah/goldie/v2")) +; (propagated-inputs +; `(("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0) +; ("go-github-com-sergi-go-diff-1.0.0" +; ,go-github-com-sergi-go-diff-1.0.0) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) +; (home-page "https://github.com/sebdah/goldie") +; (synopsis "goldie - Golden test utility for Go") +; (description +; "Package goldie provides test assertions based on golden files. It's +;typically used for testing responses with larger data bodies. +;") +; (license license:expat))) +; +;(define-public go-github-com-russross-blackfriday-v2-2.0.1 +; (package +; (name "go-github-com-russross-blackfriday-v2") +; (version "2.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/russross/blackfriday") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0nlz7isdd4rgnwzs68499hlwicxz34j2k2a0b8jy0y7ycd2bcr5j")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/russross/blackfriday/v2")) +; (home-page "https://github.com/russross/blackfriday") +; (synopsis "Blackfriday") +; (description "Package blackfriday is a markdown processor. +;") +; (license license:bsd-2))) +; +;(define-public go-github-com-shurcool-sanitized-anchor-name-1.0.0 +; (package +; (name "go-github-com-shurcool-sanitized-anchor-name") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/shurcooL/sanitized_anchor_name") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1gv9p2nr46z80dnfjsklc6zxbgk96349sdsxjz05f3z6wb6m5l8f")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/shurcooL/sanitized_anchor_name")) +; (home-page "https://github.com/shurcooL/sanitized_anchor_name") +; (synopsis "sanitized_anchor_name") +; (description +; "Package sanitized_anchor_name provides a func to create sanitized anchor names. +;") +; (license license:expat))) +; +;(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0 +; (package +; (name "go-github-com-cpuguy83-go-md2man-v2") +; (version "2.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/cpuguy83/go-md2man") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) +; (propagated-inputs +; `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" +; ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) +; ("go-github-com-russross-blackfriday-v2-2.0.1" +; ,go-github-com-russross-blackfriday-v2-2.0.1) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0))) +; (home-page "https://github.com/cpuguy83/go-md2man") +; (synopsis "go-md2man") +; (description "Converts markdown into roff (man pages).") +; (license license:expat))) +; +;(define-public go-github-com-hashicorp-go-cleanhttp-0.5.1 +; (package +; (name "go-github-com-hashicorp-go-cleanhttp") +; (version "0.5.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/go-cleanhttp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "07kx3fhryqmaw3czacmm11qwx63js2q8cfq967vphk7xg9q377kk")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hashicorp/go-cleanhttp")) +; (home-page "https://github.com/hashicorp/go-cleanhttp") +; (synopsis "cleanhttp") +; (description +; "Package cleanhttp offers convenience utilities for acquiring \"clean\" +;http.Transport and http.Client structs. +;") +; (license license:mpl2.0))) +; +;(define-public go-github-com-mitchellh-go-homedir-1.0.0 +; (package +; (name "go-github-com-mitchellh-go-homedir") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mitchellh/go-homedir") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0f0z0aa4wivk4z1y503dmnw0k0g0g403dly8i4q263gfshs82sbq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mitchellh/go-homedir")) +; (home-page "https://github.com/mitchellh/go-homedir") +; (synopsis "go-homedir") +; (description +; "This is a Go library for detecting the user's home directory without +;the use of cgo, so the library can be used in cross-compilation environments.") +; (license license:expat))) +; +;(define-public go-github-com-hashicorp-go-rootcerts-1.0.0 +; (package +; (name "go-github-com-hashicorp-go-rootcerts") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/go-rootcerts") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0wply5zhj1rcybr932zbwm1i18q5wr7kgkhnz6bw6mk1n9yr8lfj")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hashicorp/go-rootcerts")) +; (propagated-inputs +; `(("go-github-com-mitchellh-go-homedir-1.0.0" +; ,go-github-com-mitchellh-go-homedir-1.0.0))) +; (home-page "https://github.com/hashicorp/go-rootcerts") +; (synopsis "rootcerts") +; (description +; "Package rootcerts contains functions to aid in loading CA certificates for +;TLS connections. +;") +; (license license:mpl2.0))) +; +;(define-public go-github-com-armon-circbuf-0.0.0-20150827004946-bbbad097214e +; (package +; (name "go-github-com-armon-circbuf") +; (version "0.0.0-20150827004946-bbbad097214e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/armon/circbuf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1idpr0lzb2px2p3wgfq2276yl7jpaz43df6n91kf790404s4zmk3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/armon/circbuf")) +; (home-page "https://github.com/armon/circbuf") +; (synopsis "circbuf") +; (description +; "This repository provides the @code{circbuf} package. This provides a @code{Buffer} object +;which is a circular (or ring) buffer. It has a fixed size, but can be written +;to infinitely. Only the last @code{size} bytes are ever retained. The buffer implements +;the @code{io.Writer} interface.") +; (license license:expat))) +; +;(define-public go-github-com-hashicorp-go-syslog-1.0.0 +; (package +; (name "go-github-com-hashicorp-go-syslog") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/go-syslog") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "09vccqggz212cg0jir6vv708d6mx0f9w5bxrcdah3h6chgmal6v1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hashicorp/go-syslog")) +; (home-page "https://github.com/hashicorp/go-syslog") +; (synopsis "go-syslog") +; (description +; "This repository provides a very simple @code{gsyslog} package. The point of this +;package is to allow safe importing of syslog without introducing cross-compilation +;issues. The stdlib @code{log/syslog} cannot be imported on Windows systems, and without +;conditional compilation this adds complications.") +; (license license:expat))) +; +;(define-public go-github-com-hashicorp-go-uuid-1.0.1 +; (package +; (name "go-github-com-hashicorp-go-uuid") +; (version "1.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/go-uuid") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0jvb88m0rq41bwgirsadgw7mnayl27av3gd2vqa3xvxp3fy0hp5k")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hashicorp/go-uuid")) +; (home-page "https://github.com/hashicorp/go-uuid") +; (synopsis "uuid") +; (description +; "Generates UUID-format strings using high quality, bytes. It is @strong{not} intended to be RFC compliant, merely to use a well-understood string representation of a 128-bit value. It can also parse UUID-format strings into their component bytes.") +; (license license:mpl2.0))) +; +;(define-public go-github-com-hashicorp-logutils-1.0.0 +; (package +; (name "go-github-com-hashicorp-logutils") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/logutils") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "076wf4sh5p3f953ndqk1cc0x7jhmlqrxak9953rz79rcdw77rjvv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hashicorp/logutils")) +; (home-page "https://github.com/hashicorp/logutils") +; (synopsis "logutils") +; (description +; "Package logutils augments the standard log package with levels. +;") +; (license license:mpl2.0))) +; +;(define-public go-github-com-hashicorp-go-net-0.0.1 +; (package +; (name "go-github-com-hashicorp-go-net") +; (version "0.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/go.net") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "06arwi95xp5rxyz7rndvhc3wlwg0jn9a5z6djf3yyg5h9zfab9i4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hashicorp/go.net")) +; (home-page "https://github.com/hashicorp/go.net") +; (synopsis #f) +; (description #f) +; (license license:bsd-3))) +; +;(define-public go-github-com-hashicorp-mdns-1.0.0 +; (package +; (name "go-github-com-hashicorp-mdns") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/mdns") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0qr4l91hhi97s8a1isnrw3s4q8pjzacqiks870vnwh15v7ig3axd")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hashicorp/mdns")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20181026203630-95b1ffbd15a5" +; ,go-golang-org-x-sys-0.0.0-20181026203630-95b1ffbd15a5) +; ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" +; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) +; ("go-golang-org-x-net-0.0.0-20181023162649-9b4f9f5ad519" +; ,go-golang-org-x-net-0.0.0-20181023162649-9b4f9f5ad519) +; ("go-golang-org-x-crypto-0.0.0-20181029021203-45a5f77698d3" +; ,go-golang-org-x-crypto-0.0.0-20181029021203-45a5f77698d3) +; ("go-github-com-miekg-dns-1.0.14" ,go-github-com-miekg-dns-1.0.14) +; ("go-github-com-hashicorp-go-net-0.0.1" +; ,go-github-com-hashicorp-go-net-0.0.1))) +; (home-page "https://github.com/hashicorp/mdns") +; (synopsis "mdns") +; (description +; "Simple mDNS client/server library in Golang. mDNS or Multicast DNS can be +;used to discover services on the local network without the use of an authoritative +;DNS server. This enables peer-to-peer discovery. It is important to note that many +;networks restrict the use of multicasting, which prevents mDNS from functioning. +;Notably, multicast cannot be used in any sort of cloud, or shared infrastructure +;environment. However it works well in most office, home, or private infrastructure +;environments.") +; (license license:expat))) +; +;(define-public go-github-com-armon-go-metrics-0.0.0-20180917152333-f0300d1749da +; (package +; (name "go-github-com-armon-go-metrics") +; (version "0.0.0-20180917152333-f0300d1749da") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/armon/go-metrics") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "13l7c35ps0r27vxfil2w0xhhc7w5rh00awvlmn4cz0a937b9ffpv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/armon/go-metrics")) +; (home-page "https://github.com/armon/go-metrics") +; (synopsis "go-metrics") +; (description +; "This library provides a @code{metrics} package which can be used to instrument code, +;expose application metrics, and profile runtime performance in a flexible manner.") +; (license license:expat))) +; +;(define-public go-github-com-hashicorp-go-uuid-1.0.0 +; (package +; (name "go-github-com-hashicorp-go-uuid") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/go-uuid") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1jflywlani7583qm4ysph40hsgx3n66n5zr2k84i057fmwa1ypfy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hashicorp/go-uuid")) +; (home-page "https://github.com/hashicorp/go-uuid") +; (synopsis "uuid") +; (description +; "Generates UUID-format strings using high quality, bytes. It is @strong{not} intended to be RFC compliant, merely to use a well-understood string representation of a 128-bit value. It can also parse UUID-format strings into their component bytes.") +; (license license:mpl2.0))) +; +;(define-public go-github-com-hashicorp-go-immutable-radix-1.0.0 +; (package +; (name "go-github-com-hashicorp-go-immutable-radix") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/go-immutable-radix") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1v3nmsnk1s8bzpclrhirz7iq0g5xxbw9q5gvrg9ss6w9crs72qr6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hashicorp/go-immutable-radix")) +; (propagated-inputs +; `(("go-github-com-hashicorp-golang-lru-0.5.0" +; ,go-github-com-hashicorp-golang-lru-0.5.0) +; ("go-github-com-hashicorp-go-uuid-1.0.0" +; ,go-github-com-hashicorp-go-uuid-1.0.0))) +; (home-page "https://github.com/hashicorp/go-immutable-radix") +; (synopsis "go-immutable-radix") +; (description +; "This package provides the @code{iradix} package that implements an immutable @url{http://en.wikipedia.org/wiki/Radix_tree,radix tree}. +;The package only provides a single @code{Tree} implementation, optimized for sparse nodes.") +; (license license:mpl2.0))) +; +;(define-public go-github-com-hashicorp-go-msgpack-0.5.3 +; (package +; (name "go-github-com-hashicorp-go-msgpack") +; (version "0.5.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/go-msgpack") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "00jv0ajqd58pkb2yyhlrjp0rv1mvb1ijx3yqjyikcmzvk9jb4h5m")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hashicorp/go-msgpack")) +; (home-page "https://github.com/hashicorp/go-msgpack") +; (synopsis "go-codec") +; (description "This repository contains the @code{go-codec} library.") +; (license license:expat))) +; +;(define-public go-github-com-hashicorp-go-sockaddr-1.0.0 +; (package +; (name "go-github-com-hashicorp-go-sockaddr") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/go-sockaddr") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1yn1xq8ysn0lszmkygz3a9lgpswbz1p91jv7q8l20s4749a22xgi")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hashicorp/go-sockaddr")) +; (home-page "https://github.com/hashicorp/go-sockaddr") +; (synopsis "go-sockaddr") +; (description +; "Package sockaddr is a Go implementation of the UNIX socket family data types and +;related helper functions. +;") +; (license license:mpl2.0))) +; +;(define-public go-github-com-miekg-dns-1.0.14 +; (package +; (name "go-github-com-miekg-dns") +; (version "1.0.14") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/miekg/dns") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1qgli6yp59bv6vc6zag84cwxmcxgnyxm1q2f301yyijk3wy5b2ak")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/miekg/dns")) +; (home-page "https://github.com/miekg/dns") +; (synopsis "Alternative (more granular) approach to a DNS library") +; (description +; "Package dns implements a full featured interface to the Domain Name System. +;Both server- and client-side programming is supported. The package allows +;complete control over what is sent out to the DNS. The API follows the +;less-is-more principle, by presenting a small, clean interface. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-sean--seed-0.0.0-20170313163322-e2103e2c3529 +; (package +; (name "go-github-com-sean--seed") +; (version "0.0.0-20170313163322-e2103e2c3529") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/sean-/seed") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0glir8jxi1w7aga2jwdb63pp1h8q4whknili7xixsqzwyy716125")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/sean-/seed")) +; (home-page "https://github.com/sean-/seed") +; (synopsis "- Quickly Seed Go's Random Number Generator") +; (description +; "Boiler-plate to securely @url{https://en.wikipedia.org/wiki/Random_seed,seed} Go's +;random number generator (if possible). This library isn't anything fancy, it's +;just a canonical way of seeding Go's random number generator. Cribbed from +;@url{https://github.com/hashicorp/nomad/commit/f89a993ec6b91636a3384dd568898245fbc273a1,(code Nomad)} +;before it was moved into +;@url{https://github.com/hashicorp/consul/commit/d695bcaae6e31ee307c11fdf55bb0bf46ea9fcf4,(code Consul)} +;and made into a helper function, and now further modularized to be a super +;lightweight and reusable library.") +; (license #f))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20181029021203-45a5f77698d3 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20181029021203-45a5f77698d3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0636jjj89wkzqchajwwzgcn4aafc334p70nawh9jzavg2mkx0ch4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20181023162649-9b4f9f5ad519 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20181023162649-9b4f9f5ad519") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "06hvxy113h76f31gv1mq6vdr6xja1zv0fdig686l2b4y2b6swych")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20181026203630-95b1ffbd15a5 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20181026203630-95b1ffbd15a5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "06c3lf93wzf5kkfmzmgn75x4c0a7159vrwjrqh6zh9zxzqq5whpq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-hashicorp-memberlist-0.1.3 +; (package +; (name "go-github-com-hashicorp-memberlist") +; (version "0.1.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/memberlist") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0k1spq7dagvqj3baqw2dhxx1zxrb02y6m3apzr3a7gyirii890g3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hashicorp/memberlist")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20181026203630-95b1ffbd15a5" +; ,go-golang-org-x-sys-0.0.0-20181026203630-95b1ffbd15a5) +; ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" +; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) +; ("go-golang-org-x-net-0.0.0-20181023162649-9b4f9f5ad519" +; ,go-golang-org-x-net-0.0.0-20181023162649-9b4f9f5ad519) +; ("go-golang-org-x-crypto-0.0.0-20181029021203-45a5f77698d3" +; ,go-golang-org-x-crypto-0.0.0-20181029021203-45a5f77698d3) +; ("go-github-com-stretchr-testify-1.2.2" +; ,go-github-com-stretchr-testify-1.2.2) +; ("go-github-com-sean--seed-0.0.0-20170313163322-e2103e2c3529" +; ,go-github-com-sean--seed-0.0.0-20170313163322-e2103e2c3529) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-pascaldekloe-goe-0.0.0-20180627143212-57f6aae5913c" +; ,go-github-com-pascaldekloe-goe-0.0.0-20180627143212-57f6aae5913c) +; ("go-github-com-miekg-dns-1.0.14" ,go-github-com-miekg-dns-1.0.14) +; ("go-github-com-hashicorp-go-sockaddr-1.0.0" +; ,go-github-com-hashicorp-go-sockaddr-1.0.0) +; ("go-github-com-hashicorp-go-multierror-1.0.0" +; ,go-github-com-hashicorp-go-multierror-1.0.0) +; ("go-github-com-hashicorp-go-msgpack-0.5.3" +; ,go-github-com-hashicorp-go-msgpack-0.5.3) +; ("go-github-com-hashicorp-go-immutable-radix-1.0.0" +; ,go-github-com-hashicorp-go-immutable-radix-1.0.0) +; ("go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c" +; ,go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1) +; ("go-github-com-armon-go-metrics-0.0.0-20180917152333-f0300d1749da" +; ,go-github-com-armon-go-metrics-0.0.0-20180917152333-f0300d1749da))) +; (home-page "https://github.com/hashicorp/memberlist") +; (synopsis "memberlist") +; (description +; "memberlist is a library that manages cluster +;membership and member failure detection using a gossip based protocol. +;") +; (license license:mpl2.0))) +; +;(define-public go-github-com-armon-go-radix-0.0.0-20180808171621-7fddfc383310 +; (package +; (name "go-github-com-armon-go-radix") +; (version "0.0.0-20180808171621-7fddfc383310") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/armon/go-radix") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0y8chspn14n9xpsfb9gxnnf819rfpriaz64v81p7873a42kkhxb4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/armon/go-radix")) +; (home-page "https://github.com/armon/go-radix") +; (synopsis "go-radix") +; (description +; "This package provides the @code{radix} package that implements a @url{http://en.wikipedia.org/wiki/Radix_tree,radix tree}. +;The package only provides a single @code{Tree} implementation, optimized for sparse nodes.") +; (license license:expat))) +; +;(define-public go-github-com-bgentry-speakeasy-0.1.0 +; (package +; (name "go-github-com-bgentry-speakeasy") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/bgentry/speakeasy") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "02dfrj0wyphd3db9zn2mixqxwiz1ivnyc5xc7gkz58l5l27nzp8s")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/bgentry/speakeasy")) +; (home-page "https://github.com/bgentry/speakeasy") +; (synopsis "Speakeasy") +; (description +; "This package provides cross-platform Go (#golang) helpers for taking user input +;from the terminal while not echoing the input back (similar to @code{getpasswd}). The +;package uses syscalls to avoid any dependence on cgo, and is therefore +;compatible with cross-compiling.") +; (license license:expat))) +; +;(define-public go-github-com-fatih-color-1.7.0 +; (package +; (name "go-github-com-fatih-color") +; (version "1.7.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/fatih/color") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0v8msvg38r8d1iiq2i5r4xyfx0invhc941kjrsg5gzwvagv55inv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/fatih/color")) +; (home-page "https://github.com/fatih/color") +; (synopsis "color") +; (description +; "Package color is an ANSI color package to output colorized or SGR defined +;output to the standard output. The API can be used in several way, pick one +;that suits you. +;") +; (license license:expat))) +; +;(define-public go-github-com-hashicorp-errwrap-1.0.0 +; (package +; (name "go-github-com-hashicorp-errwrap") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/errwrap") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0slfb6w3b61xz04r32bi0a1bygc82rjzhqkxj2si2074wynqnr1c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hashicorp/errwrap")) +; (home-page "https://github.com/hashicorp/errwrap") +; (synopsis "errwrap") +; (description +; "Package errwrap implements methods to formalize error wrapping in Go. +;") +; (license license:mpl2.0))) +; +;(define-public go-github-com-hashicorp-go-multierror-1.0.0 +; (package +; (name "go-github-com-hashicorp-go-multierror") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/go-multierror") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "00nyn8llqzbfm8aflr9kwsvpzi4kv8v45c141v88xskxp5xf6z49")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hashicorp/go-multierror")) +; (propagated-inputs +; `(("go-github-com-hashicorp-errwrap-1.0.0" +; ,go-github-com-hashicorp-errwrap-1.0.0))) +; (home-page "https://github.com/hashicorp/go-multierror") +; (synopsis "go-multierror") +; (description +; "@code{go-multierror} is a package for Go that provides a mechanism for +;representing a list of @code{error} values as a single @code{error}.") +; (license license:mpl2.0))) +; +;(define-public go-github-com-mattn-go-colorable-0.0.9 +; (package +; (name "go-github-com-mattn-go-colorable") +; (version "0.0.9") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mattn/go-colorable") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1nwjmsppsjicr7anq8na6md7b1z84l9ppnlr045hhxjvbkqwalvx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mattn/go-colorable")) +; (home-page "https://github.com/mattn/go-colorable") +; (synopsis "go-colorable") +; (description "Colorable writer for windows.") +; (license license:expat))) +; +;(define-public go-github-com-mattn-go-isatty-0.0.3 +; (package +; (name "go-github-com-mattn-go-isatty") +; (version "0.0.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mattn/go-isatty") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "06w45aqz2a6yrk25axbly2k5wmsccv8cspb94bfmz4izvw8h927n")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mattn/go-isatty")) +; (home-page "https://github.com/mattn/go-isatty") +; (synopsis "go-isatty") +; (description "Package isatty implements interface to isatty +;") +; (license license:expat))) +; +;(define-public go-github-com-posener-complete-1.1.1 +; (package +; (name "go-github-com-posener-complete") +; (version "1.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/posener/complete") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1nbdiybjizbaxbf5q0xwbq0cjqw4bl6jggvsjzrpif0w86fcjda2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/posener/complete")) +; (home-page "https://github.com/posener/complete") +; (synopsis "complete") +; (description +; "Package complete provides a tool for bash writing bash completion in go, and bash completion for the go command line. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-sys-0.0.0-20180823144017-11551d06cbcc +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20180823144017-11551d06cbcc") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0j34525b9smcyjqmxvvqgcfn87kkx3b2izidmjp2cmhjxzjrgpwm")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-mitchellh-cli-1.0.0 +; (package +; (name "go-github-com-mitchellh-cli") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mitchellh/cli") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1i9kmr7rcf10d2hji8h4247hmc0nbairv7a0q51393aw2h1bnwg2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mitchellh/cli")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20180823144017-11551d06cbcc" +; ,go-golang-org-x-sys-0.0.0-20180823144017-11551d06cbcc) +; ("go-github-com-posener-complete-1.1.1" +; ,go-github-com-posener-complete-1.1.1) +; ("go-github-com-mattn-go-isatty-0.0.3" +; ,go-github-com-mattn-go-isatty-0.0.3) +; ("go-github-com-mattn-go-colorable-0.0.9" +; ,go-github-com-mattn-go-colorable-0.0.9) +; ("go-github-com-hashicorp-go-multierror-1.0.0" +; ,go-github-com-hashicorp-go-multierror-1.0.0) +; ("go-github-com-fatih-color-1.7.0" ,go-github-com-fatih-color-1.7.0) +; ("go-github-com-bgentry-speakeasy-0.1.0" +; ,go-github-com-bgentry-speakeasy-0.1.0) +; ("go-github-com-armon-go-radix-0.0.0-20180808171621-7fddfc383310" +; ,go-github-com-armon-go-radix-0.0.0-20180808171621-7fddfc383310))) +; (home-page "https://github.com/mitchellh/cli") +; (synopsis "Go CLI Library") +; (description +; "cli is a library for implementing powerful command-line interfaces in Go. +;cli is the library that powers the CLI for +;@url{https://github.com/mitchellh/packer,Packer}, +;@url{https://github.com/hashicorp/serf,Serf}, +;@url{https://github.com/hashicorp/consul,Consul}, +;@url{https://github.com/hashicorp/vault,Vault}, +;@url{https://github.com/hashicorp/terraform,Terraform}, and +;@url{https://github.com/hashicorp/nomad,Nomad}.") +; (license license:mpl2.0))) +; +;(define-public go-github-com-mitchellh-gox-0.4.0 +; (package +; (name "go-github-com-mitchellh-gox") +; (version "0.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mitchellh/gox") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1q4fdkw904mrmh1q5z8pfd3r0gcn5dm776kldqawddy93iiwnp8r")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mitchellh/gox")) +; (home-page "https://github.com/mitchellh/gox") +; (synopsis "Gox - Simple Go Cross Compilation") +; (description +; "Gox is a simple, no-frills tool for Go cross compilation that behaves a +;lot like standard @code{go build}. Gox will parallelize builds for multiple +;platforms. Gox will also build the cross-compilation toolchain for you.") +; (license license:mpl2.0))) +; +;(define-public go-github-com-mitchellh-iochan-1.0.0 +; (package +; (name "go-github-com-mitchellh-iochan") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mitchellh/iochan") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "058n9bbf536f2nw3pbs7pysrg9cqvgkb28z2zf5wjyrzrknyk53g")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mitchellh/iochan")) +; (home-page "https://github.com/mitchellh/iochan") +; (synopsis "iochan") +; (description +; "iochan is a Go library for treating @code{io} readers and writers like channels. +;This is useful when sometimes you wish to use @code{io.Reader} and such in @code{select} +;statements.") +; (license license:expat))) +; +;(define-public go-github-com-mitchellh-mapstructure-0.0.0-20160808181253-ca63d7c062ee +; (package +; (name "go-github-com-mitchellh-mapstructure") +; (version "0.0.0-20160808181253-ca63d7c062ee") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mitchellh/mapstructure") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1yjwhgi57l5fxlmpdchipdd4jasdn1sa8ccl2f2486v06rv6z7gr")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mitchellh/mapstructure")) +; (home-page "https://github.com/mitchellh/mapstructure") +; (synopsis "mapstructure") +; (description +; "Package mapstructure exposes functionality to convert one arbitrary +;Go type into another, typically to convert a map[string]interface{} +;into a native Go structure. +;") +; (license license:expat))) +; +;(define-public go-github-com-ryanuber-columnize-0.0.0-20160712163229-9b3edd62028f +; (package +; (name "go-github-com-ryanuber-columnize") +; (version "0.0.0-20160712163229-9b3edd62028f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/ryanuber/columnize") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ya1idkbb0a9fjlhkcnh5a9yvpwzwfmbyg7d56lpplwr9rqi1da4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/ryanuber/columnize")) +; (home-page "https://github.com/ryanuber/columnize") +; (synopsis "Columnize") +; (description "Easy column-formatted output for golang") +; (license license:expat))) +; +;(define-public go-golang-org-x-net-0.0.0-20181201002055-351d144fa1fc +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20181201002055-351d144fa1fc") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1c5x25qjyz83y92bq0lll5kmznyi3m02wd4c54scgf0866gy938k")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-github-com-hashicorp-serf-0.8.2 +; (package +; (name "go-github-com-hashicorp-serf") +; (version "0.8.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/serf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0nrslghvdjhaczr2xp9mn8xgcx1dxl4jgpbk0l61ssmxahpx4iyc")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hashicorp/serf")) +; (propagated-inputs +; `(("go-golang-org-x-net-0.0.0-20181201002055-351d144fa1fc" +; ,go-golang-org-x-net-0.0.0-20181201002055-351d144fa1fc) +; ("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0) +; ("go-github-com-ryanuber-columnize-0.0.0-20160712163229-9b3edd62028f" +; ,go-github-com-ryanuber-columnize-0.0.0-20160712163229-9b3edd62028f) +; ("go-github-com-mitchellh-mapstructure-0.0.0-20160808181253-ca63d7c062ee" +; ,go-github-com-mitchellh-mapstructure-0.0.0-20160808181253-ca63d7c062ee) +; ("go-github-com-mitchellh-iochan-1.0.0" +; ,go-github-com-mitchellh-iochan-1.0.0) +; ("go-github-com-mitchellh-gox-0.4.0" +; ,go-github-com-mitchellh-gox-0.4.0) +; ("go-github-com-mitchellh-cli-1.0.0" +; ,go-github-com-mitchellh-cli-1.0.0) +; ("go-github-com-hashicorp-memberlist-0.1.3" +; ,go-github-com-hashicorp-memberlist-0.1.3) +; ("go-github-com-hashicorp-mdns-1.0.0" +; ,go-github-com-hashicorp-mdns-1.0.0) +; ("go-github-com-hashicorp-logutils-1.0.0" +; ,go-github-com-hashicorp-logutils-1.0.0) +; ("go-github-com-hashicorp-go-uuid-1.0.1" +; ,go-github-com-hashicorp-go-uuid-1.0.1) +; ("go-github-com-hashicorp-go-syslog-1.0.0" +; ,go-github-com-hashicorp-go-syslog-1.0.0) +; ("go-github-com-hashicorp-go-msgpack-0.5.3" +; ,go-github-com-hashicorp-go-msgpack-0.5.3) +; ("go-github-com-armon-go-metrics-0.0.0-20180917152333-f0300d1749da" +; ,go-github-com-armon-go-metrics-0.0.0-20180917152333-f0300d1749da) +; ("go-github-com-armon-circbuf-0.0.0-20150827004946-bbbad097214e" +; ,go-github-com-armon-circbuf-0.0.0-20150827004946-bbbad097214e))) +; (home-page "https://github.com/hashicorp/serf") +; (synopsis "Serf") +; (description +; "Serf is a decentralized solution for service discovery and orchestration +;that is lightweight, highly available, and fault tolerant.") +; (license license:mpl2.0))) +; +;(define-public go-github-com-mitchellh-mapstructure-1.1.2 +; (package +; (name "go-github-com-mitchellh-mapstructure") +; (version "1.1.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mitchellh/mapstructure") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "03bpv28jz9zhn4947saqwi328ydj7f6g6pf1m2d4m5zdh5jlfkrr")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mitchellh/mapstructure")) +; (home-page "https://github.com/mitchellh/mapstructure") +; (synopsis "mapstructure") +; (description +; "Package mapstructure exposes functionality to convert one arbitrary +;Go type into another, typically to convert a map[string]interface{} +;into a native Go structure. +;") +; (license license:expat))) +; +;(define-public go-github-com-pascaldekloe-goe-0.0.0-20180627143212-57f6aae5913c +; (package +; (name "go-github-com-pascaldekloe-goe") +; (version "0.0.0-20180627143212-57f6aae5913c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/pascaldekloe/goe") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1dqd3mfb4z2vmv6pg6fhgvfc53vhndk24wcl9lj1rz02n6m279fq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/pascaldekloe/goe")) +; (home-page "https://github.com/pascaldekloe/goe") +; (synopsis "Go Enterprise") +; (description +; "Common enterprise features for the Go programming language (golang).") +; (license license:cc0))) +; +;(define-public go-github-com-stretchr-testify-1.3.0 +; (package +; (name "go-github-com-stretchr-testify") +; (version "1.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/testify") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0wjchp2c8xbgcbbq32w3kvblk6q6yn533g78nxl6iskq6y95lxsy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/testify")) +; (propagated-inputs +; `(("go-github-com-stretchr-objx-0.1.0" +; ,go-github-com-stretchr-objx-0.1.0) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.0" +; ,go-github-com-davecgh-go-spew-1.1.0))) +; (home-page "https://github.com/stretchr/testify") +; (synopsis "Testify - Thou Shalt Write Tests") +; (description +; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +;") +; (license license:expat))) +; +;(define-public go-github-com-hashicorp-consul-api-1.1.0 +; (package +; (name "go-github-com-hashicorp-consul-api") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/consul") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0xm3gl8i7pgsbsc2397bwh9hp2dwnk4cmw5y05acqn3zpyp84sbv")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path +; "github.com/hashicorp/consul/api" +; #:unpack-path +; "github.com/hashicorp/consul")) +; (propagated-inputs +; `(("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0) +; ("go-github-com-pascaldekloe-goe-0.0.0-20180627143212-57f6aae5913c" +; ,go-github-com-pascaldekloe-goe-0.0.0-20180627143212-57f6aae5913c) +; ("go-github-com-mitchellh-mapstructure-1.1.2" +; ,go-github-com-mitchellh-mapstructure-1.1.2) +; ("go-github-com-hashicorp-serf-0.8.2" +; ,go-github-com-hashicorp-serf-0.8.2) +; ("go-github-com-hashicorp-go-uuid-1.0.1" +; ,go-github-com-hashicorp-go-uuid-1.0.1) +; ("go-github-com-hashicorp-go-rootcerts-1.0.0" +; ,go-github-com-hashicorp-go-rootcerts-1.0.0) +; ("go-github-com-hashicorp-go-cleanhttp-0.5.1" +; ,go-github-com-hashicorp-go-cleanhttp-0.5.1))) +; (home-page "https://github.com/hashicorp/consul") +; (synopsis "Consul API client") +; (description +; "This package provides the @code{api} package which attempts to +;provide programmatic access to the full Consul API.") +; (license license:mpl2.0))) +; +;(define-public go-github-com-golang-mock-1.5.0 +; (package +; (name "go-github-com-golang-mock") +; (version "1.5.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/mock") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "12l7p08pwwk3xn70w7rlm28nz6jf4szlzgjxjfmbssyirxxxy8v1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/mock")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" +; ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) +; ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0))) +; (home-page "https://github.com/golang/mock") +; (synopsis "gomock") +; (description +; "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It +;integrates well with Go's built-in @code{testing} package, but can be used in other +;contexts too.") +; (license license:asl2.0))) +; +;(define-public go-github-com-google-pprof-0.0.0-20210226084205-cbba55b83ad5 +; (package +; (name "go-github-com-google-pprof") +; (version "0.0.0-20210226084205-cbba55b83ad5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/pprof") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0drr44nqq0s3jillcrl8qa7sklxybs083lvashdh2ad62hrs31l7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/pprof")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" +; ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) +; ("go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639" +; ,go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639) +; ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" +; ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) +; ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" +; ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) +; ("go-github-com-chzyer-logex-1.1.10" +; ,go-github-com-chzyer-logex-1.1.10))) +; (home-page "https://github.com/google/pprof") +; (synopsis "Introduction") +; (description +; "pprof is a tool for collection, manipulation and visualization +;of performance profiles. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-google-pprof-0.0.0-20210122040257-d980be63207e +; (package +; (name "go-github-com-google-pprof") +; (version "0.0.0-20210122040257-d980be63207e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/pprof") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0vg5z6rp5kfd324w8j12hlx9zv049vxljpc6dyqkj2k9vzzzqkw8")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/pprof")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" +; ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) +; ("go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639" +; ,go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639) +; ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" +; ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) +; ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" +; ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) +; ("go-github-com-chzyer-logex-1.1.10" +; ,go-github-com-chzyer-logex-1.1.10))) +; (home-page "https://github.com/google/pprof") +; (synopsis "Introduction") +; (description +; "pprof is a tool for collection, manipulation and visualization +;of performance profiles. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-mod-0.4.1 +; (package +; (name "go-golang-org-x-mod") +; (version "0.4.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/mod") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0q4p41223d1xh4jmw9vmywjfi0jzn56gbidrwv5x1bzmx2qmj01n")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/mod")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" +; ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) +; ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" +; ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) +; ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" +; ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) +; (home-page "https://golang.org/x/mod") +; (synopsis "mod") +; (description +; "This repository holds packages for writing tools +;that work directly with Go module mechanics. +;That is, it is for direct manipulation of Go modules themselves.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20210119194325-5f4716e94777 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20210119194325-5f4716e94777") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1xh4hk0fhkzq096z9qbzqfswmmgg4kvb44qvazpandvlpwm4jds2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) +; ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" +; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) +; ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" +; ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-oauth2-0.0.0-20210218202405-ba52d332ba99 +; (package +; (name "go-golang-org-x-oauth2") +; (version "0.0.0-20210218202405-ba52d332ba99") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/oauth2") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0fdm3fljk3k4xbpzaywccayrhgqdfl79vl18k4z1zw2pl654bqbg")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/oauth2")) +; (propagated-inputs +; `(("go-google-golang-org-appengine-1.6.6" +; ,go-google-golang-org-appengine-1.6.6) +; ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" +; ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) +; ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) +; (home-page "https://golang.org/x/oauth2") +; (synopsis "OAuth2 for Go") +; (description +; "Package oauth2 provides support for making +;OAuth2 authorized and authenticated HTTP requests, +;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +;It can additionally grant authorization with Bearer JWT. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20210220050731-9a76102bfb43 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20210220050731-9a76102bfb43") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "07qn19yla2w604p3dc8h1c75xj2pxc4fajvg0mf0d4c72d5qiss4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-google-pprof-0.0.0-20201203190320-1bf35d6f28c2 +; (package +; (name "go-github-com-google-pprof") +; (version "0.0.0-20201203190320-1bf35d6f28c2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/pprof") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "140n5hjk2faanrf6v5h1559g755rgavynz1r99s1n15bmgibysvp")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/pprof")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" +; ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) +; ("go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639" +; ,go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639) +; ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" +; ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) +; ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" +; ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) +; ("go-github-com-chzyer-logex-1.1.10" +; ,go-github-com-chzyer-logex-1.1.10))) +; (home-page "https://github.com/google/pprof") +; (synopsis "Introduction") +; (description +; "pprof is a tool for collection, manipulation and visualization +;of performance profiles. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-mod-0.4.0 +; (package +; (name "go-golang-org-x-mod") +; (version "0.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/mod") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ri003765yxawq6s8jbkbiaijihwrg980c4qwqsaa5x0sq2psrg1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/mod")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" +; ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) +; ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" +; ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) +; ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" +; ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) +; (home-page "https://golang.org/x/mod") +; (synopsis "mod") +; (description +; "This repository holds packages for writing tools +;that work directly with Go module mechanics. +;That is, it is for direct manipulation of Go modules themselves.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20201209123823-ac852fbbde11 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20201209123823-ac852fbbde11") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1zmp2fxgf7792xx15qhzcsfs8k0qv7q3m6jlcj6qvdngfzyvna64")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) +; ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" +; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) +; ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" +; ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20201208233053-a543418bbed2 +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20201208233053-a543418bbed2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0r87p89pm2h75yajsz0g2vvy2q3z9gknc0fmsdm5rh427f1qazfr")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" +; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) +; ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" +; ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) +; ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" +; ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) +; ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) +; ("go-github-com-yuin-goldmark-1.2.1" +; ,go-github-com-yuin-goldmark-1.2.1))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-github-com-google-martian-v3-3.1.0 +; (package +; (name "go-github-com-google-martian-v3") +; (version "3.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/martian") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1pr9akggfzj2vw11l7ry4sij0hqslpc3gwx4ynbzyvbjhvh64sbc")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/martian/v3")) +; (propagated-inputs +; `(("go-golang-org-x-net-0.0.0-20190628185345-da137c7871d7" +; ,go-golang-org-x-net-0.0.0-20190628185345-da137c7871d7))) +; (home-page "https://github.com/google/martian") +; (synopsis "Martian Proxy") +; (description +; "Package martian provides an HTTP/1.1 proxy with an API for configurable +;request and response modifiers. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639 +; (package +; (name "go-github-com-ianlancetaylor-demangle") +; (version "0.0.0-20200824232613-28f6c0f3b639") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/ianlancetaylor/demangle") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0rsq3622gd40f1x1l7caidsxrmzg1993ich2higwd94fqbxs1r83")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/ianlancetaylor/demangle")) +; (home-page "https://github.com/ianlancetaylor/demangle") +; (synopsis "github.com/ianlancetaylor/demangle") +; (description +; "Package demangle defines functions that demangle GCC/LLVM +;C++ and Rust symbol names. +;This package recognizes names that were mangled according to the C++ ABI +;defined at @url{http://codesourcery.com/cxx-abi/,http://codesourcery.com/cxx-abi/} and the Rust ABI +;defined at +;@url{https://rust-lang.github.io/rfcs/2603-rust-symbol-name-mangling-v0.html,https://rust-lang.github.io/rfcs/2603-rust-symbol-name-mangling-v0.html} +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-google-pprof-0.0.0-20201023163331-3e6fc7fc9c4c +; (package +; (name "go-github-com-google-pprof") +; (version "0.0.0-20201023163331-3e6fc7fc9c4c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/pprof") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1xmy4579gx45lqsy1cgddnc7nmaqfpiwd2kc5dhf8i0wjjvf18hq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/pprof")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" +; ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) +; ("go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639" +; ,go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639) +; ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" +; ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) +; ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" +; ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) +; ("go-github-com-chzyer-logex-1.1.10" +; ,go-github-com-chzyer-logex-1.1.10))) +; (home-page "https://github.com/google/pprof") +; (synopsis "Introduction") +; (description +; "pprof is a tool for collection, manipulation and visualization +;of performance profiles. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-net-0.0.0-20201031054903-ff519b6c9102 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20201031054903-ff519b6c9102") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "162ssgcc0kgj42ajaki0q3j5lwmixqqwkdqcmz41xg1k8wjm7riw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) +; ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" +; ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) +; ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" +; ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-text-0.3.4 +; (package +; (name "go-golang-org-x-text") +; (version "0.3.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/text") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "11jdvix83xcl5xnb039y4zrz4x5skzsps0w1jryp6wrar53cydvz")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/text")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" +; ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) +; (home-page "https://golang.org/x/text") +; (synopsis "Go Text") +; (description +; "text is a repository of text-related packages related to internationalization +;(i18n) and localization (l10n), such as character encodings, text +;transformations, and locale-specific text handling. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20201110124207-079ba7bd75cd +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20201110124207-079ba7bd75cd") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0g4d7cx480rbnpg16qqc4yycd50lpp2mi2qzvzr6hdny91v7sa05")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" +; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) +; ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" +; ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) +; ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" +; ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) +; ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) +; ("go-github-com-yuin-goldmark-1.2.1" +; ,go-github-com-yuin-goldmark-1.2.1))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-github-com-google-go-cmp-0.5.2 +; (package +; (name "go-github-com-google-go-cmp") +; (version "0.5.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/go-cmp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0qchy411jm9q2l9mf7x3ry2ycaqp9xdhf2nx14qrpzcxfigv2705")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/go-cmp")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" +; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) +; (home-page "https://github.com/google/go-cmp") +; (synopsis "Package for equality of Go values") +; (description +; "This package is intended to be a more powerful and safer alternative to +;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-oauth2-0.0.0-20200902213428-5d25da1a8d43 +; (package +; (name "go-golang-org-x-oauth2") +; (version "0.0.0-20200902213428-5d25da1a8d43") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/oauth2") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "14jx8sxshbvnx4fggn12mlmz000zcrd1a73n1455b1wgg1xfzq3n")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/oauth2")) +; (propagated-inputs +; `(("go-google-golang-org-appengine-1.6.6" +; ,go-google-golang-org-appengine-1.6.6) +; ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" +; ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) +; ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) +; (home-page "https://golang.org/x/oauth2") +; (synopsis "OAuth2 for Go") +; (description +; "Package oauth2 provides support for making +;OAuth2 authorized and authenticated HTTP requests, +;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +;It can additionally grant authorization with Bearer JWT. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20200905004654-be1d3432aa8f +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20200905004654-be1d3432aa8f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1kd3szjsazhpgidv5xjv0s26fm4wvv2cr7j4zk8nblnqkic58as2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20200904185747-39188db58858 +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20200904185747-39188db58858") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ydyylwqzjwijy4rdp2fmvnfh3s27896dx6g74r2wa6vbhisszvk")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" +; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) +; ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" +; ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) +; ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" +; ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) +; ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) +; ("go-github-com-yuin-goldmark-1.2.1" +; ,go-github-com-yuin-goldmark-1.2.1))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20200904004341-0bd0a958aa1d +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20200904004341-0bd0a958aa1d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "01xp4ic4jvdv7n984cjgrgqbpbi9m4bj2xnfrs1s1zn1adx0jivs")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.24.0" +; ,go-google-golang-org-protobuf-1.24.0) +; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) +; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" +; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-github-com-golang-protobuf-1.4.1" +; ,go-github-com-golang-protobuf-1.4.1))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-grpc-1.31.1 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.31.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "18565vf9i2zc69znd9b8a2iz0kgv5cms0g0ppj93hnhri8rjqagk")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" +; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.3.3" +; ,go-github-com-golang-protobuf-1.3.3) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-envoyproxy-go-control-plane-0.9.4" +; ,go-github-com-envoyproxy-go-control-plane-0.9.4) +; ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" +; ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-api-0.35.0 +; (package +; (name "go-google-golang-org-api") +; (version "0.35.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-api-go-client") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0fgn21lmrlkw44sl0ivjicygwksibb1pclzp3zyh3ivn7ylvk2jd")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/api")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.31.1" ,go-google-golang-org-grpc-1.31.1) +; ("go-google-golang-org-genproto-0.0.0-20200904004341-0bd0a958aa1d" +; ,go-google-golang-org-genproto-0.0.0-20200904004341-0bd0a958aa1d) +; ("go-google-golang-org-appengine-1.6.6" +; ,go-google-golang-org-appengine-1.6.6) +; ("go-golang-org-x-tools-0.0.0-20200904185747-39188db58858" +; ,go-golang-org-x-tools-0.0.0-20200904185747-39188db58858) +; ("go-golang-org-x-sys-0.0.0-20200905004654-be1d3432aa8f" +; ,go-golang-org-x-sys-0.0.0-20200905004654-be1d3432aa8f) +; ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" +; ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) +; ("go-golang-org-x-oauth2-0.0.0-20200902213428-5d25da1a8d43" +; ,go-golang-org-x-oauth2-0.0.0-20200902213428-5d25da1a8d43) +; ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" +; ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) +; ("go-go-opencensus-io-0.22.4" ,go-go-opencensus-io-0.22.4) +; ("go-github-com-googleapis-gax-go-v2-2.0.5" +; ,go-github-com-googleapis-gax-go-v2-2.0.5) +; ("go-github-com-google-go-cmp-0.5.2" +; ,go-github-com-google-go-cmp-0.5.2) +; ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) +; (home-page "https://google.golang.org/api") +; (synopsis "Google APIs Client Library for Go") +; (description +; "Package api is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of +;sub-packages. +;") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20201109203340-2640f1f9cdfb +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20201109203340-2640f1f9cdfb") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "00mwybjbdpvmlkvmwsjvdb2z8lzzx2a340y4pf3bxqamalhdka0w")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.24.0" +; ,go-google-golang-org-protobuf-1.24.0) +; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) +; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" +; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-github-com-golang-protobuf-1.4.1" +; ,go-github-com-golang-protobuf-1.4.1))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-cloud-google-com-go-0.72.0 +; (package +; (name "go-cloud-google-com-go") +; (version "0.72.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-cloud-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1x4gy466jrzab9l02dwd3lvy2dwy84j34zpjkm5xnxh45za6hpxn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "cloud.google.com/go")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) +; ("go-google-golang-org-genproto-0.0.0-20201109203340-2640f1f9cdfb" +; ,go-google-golang-org-genproto-0.0.0-20201109203340-2640f1f9cdfb) +; ("go-google-golang-org-api-0.35.0" ,go-google-golang-org-api-0.35.0) +; ("go-golang-org-x-tools-0.0.0-20201110124207-079ba7bd75cd" +; ,go-golang-org-x-tools-0.0.0-20201110124207-079ba7bd75cd) +; ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) +; ("go-golang-org-x-oauth2-0.0.0-20200902213428-5d25da1a8d43" +; ,go-golang-org-x-oauth2-0.0.0-20200902213428-5d25da1a8d43) +; ("go-golang-org-x-net-0.0.0-20201031054903-ff519b6c9102" +; ,go-golang-org-x-net-0.0.0-20201031054903-ff519b6c9102) +; ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" +; ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) +; ("go-go-opencensus-io-0.22.5" ,go-go-opencensus-io-0.22.5) +; ("go-github-com-jstemmer-go-junit-report-0.9.1" +; ,go-github-com-jstemmer-go-junit-report-0.9.1) +; ("go-github-com-googleapis-gax-go-v2-2.0.5" +; ,go-github-com-googleapis-gax-go-v2-2.0.5) +; ("go-github-com-google-pprof-0.0.0-20201023163331-3e6fc7fc9c4c" +; ,go-github-com-google-pprof-0.0.0-20201023163331-3e6fc7fc9c4c) +; ("go-github-com-google-martian-v3-3.1.0" +; ,go-github-com-google-martian-v3-3.1.0) +; ("go-github-com-google-go-cmp-0.5.2" +; ,go-github-com-google-go-cmp-0.5.2) +; ("go-github-com-golang-protobuf-1.4.3" +; ,go-github-com-golang-protobuf-1.4.3) +; ("go-github-com-golang-mock-1.4.4" ,go-github-com-golang-mock-1.4.4) +; ("go-cloud-google-com-go-storage-1.10.0" +; ,go-cloud-google-com-go-storage-1.10.0))) +; (home-page "https://cloud.google.com/go") +; (synopsis "Google Cloud Client Libraries for Go") +; (description +; "Package cloud is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +;of sub-packages. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-oauth2-0.0.0-20201109201403-9fd604954f58 +; (package +; (name "go-golang-org-x-oauth2") +; (version "0.0.0-20201109201403-9fd604954f58") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/oauth2") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "06dj14f6jrgpqmf3v3z74zhcin3yj7yp8mzxljm3a3ihq984kz8v")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/oauth2")) +; (propagated-inputs +; `(("go-google-golang-org-appengine-1.6.6" +; ,go-google-golang-org-appengine-1.6.6) +; ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" +; ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) +; ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) +; (home-page "https://golang.org/x/oauth2") +; (synopsis "OAuth2 for Go") +; (description +; "Package oauth2 provides support for making +;OAuth2 authorized and authenticated HTTP requests, +;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +;It can additionally grant authorization with Bearer JWT. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20201201145000-ef89a241ccb3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0a8myxx2mvdr77a003gpy5jmdzbxbnrf5zppmpl4za4sspxlmwif")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20201201161351-ac6f37ff4c2a +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20201201161351-ac6f37ff4c2a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0akq0z86x51rh556fs7icjmmmgdyaa7rq7cmqlngrmvjb79wnwpl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" +; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) +; ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" +; ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) +; ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" +; ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) +; ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) +; ("go-github-com-yuin-goldmark-1.2.1" +; ,go-github-com-yuin-goldmark-1.2.1))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20201201144952-b05cb90ed32e +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20201201144952-b05cb90ed32e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1n9jlhnn5fg7a41ahdril7wgfli43kxplnpxbdbhrkknjra7xdjd")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.24.0" +; ,go-google-golang-org-protobuf-1.24.0) +; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) +; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" +; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-github-com-golang-protobuf-1.4.1" +; ,go-github-com-golang-protobuf-1.4.1))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-api-0.36.0 +; (package +; (name "go-google-golang-org-api") +; (version "0.36.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-api-go-client") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1x6wlavrqi2r6ss3h2kg94p2lfj0z019kc85zm1pajpf0k23fxp7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/api")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) +; ("go-google-golang-org-genproto-0.0.0-20201201144952-b05cb90ed32e" +; ,go-google-golang-org-genproto-0.0.0-20201201144952-b05cb90ed32e) +; ("go-google-golang-org-appengine-1.6.7" +; ,go-google-golang-org-appengine-1.6.7) +; ("go-golang-org-x-tools-0.0.0-20201201161351-ac6f37ff4c2a" +; ,go-golang-org-x-tools-0.0.0-20201201161351-ac6f37ff4c2a) +; ("go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3" +; ,go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3) +; ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" +; ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) +; ("go-golang-org-x-oauth2-0.0.0-20201109201403-9fd604954f58" +; ,go-golang-org-x-oauth2-0.0.0-20201109201403-9fd604954f58) +; ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" +; ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) +; ("go-go-opencensus-io-0.22.5" ,go-go-opencensus-io-0.22.5) +; ("go-github-com-googleapis-gax-go-v2-2.0.5" +; ,go-github-com-googleapis-gax-go-v2-2.0.5) +; ("go-github-com-google-go-cmp-0.5.4" +; ,go-github-com-google-go-cmp-0.5.4) +; ("go-cloud-google-com-go-0.72.0" ,go-cloud-google-com-go-0.72.0))) +; (home-page "https://google.golang.org/api") +; (synopsis "Google APIs Client Library for Go") +; (description +; "Package api is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of +;sub-packages. +;") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20201210142538-e3217bee35cc +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20201210142538-e3217bee35cc") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1bzfa58dw7jmkrp46hikbsq1yyk2r29a1gn51sqlilbvf7lq96p9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.24.0" +; ,go-google-golang-org-protobuf-1.24.0) +; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) +; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" +; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-github-com-golang-protobuf-1.4.1" +; ,go-github-com-golang-protobuf-1.4.1))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-cloud-google-com-go-0.74.0 +; (package +; (name "go-cloud-google-com-go") +; (version "0.74.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-cloud-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "09j1qppf2gf14bn06hsyrj9jaxz9vlbs9d7yrxrdvh2234qsbggy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "cloud.google.com/go")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.34.0" ,go-google-golang-org-grpc-1.34.0) +; ("go-google-golang-org-genproto-0.0.0-20201210142538-e3217bee35cc" +; ,go-google-golang-org-genproto-0.0.0-20201210142538-e3217bee35cc) +; ("go-google-golang-org-api-0.36.0" ,go-google-golang-org-api-0.36.0) +; ("go-golang-org-x-tools-0.0.0-20201208233053-a543418bbed2" +; ,go-golang-org-x-tools-0.0.0-20201208233053-a543418bbed2) +; ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) +; ("go-golang-org-x-oauth2-0.0.0-20201208152858-08078c50e5b5" +; ,go-golang-org-x-oauth2-0.0.0-20201208152858-08078c50e5b5) +; ("go-golang-org-x-net-0.0.0-20201209123823-ac852fbbde11" +; ,go-golang-org-x-net-0.0.0-20201209123823-ac852fbbde11) +; ("go-golang-org-x-mod-0.4.0" ,go-golang-org-x-mod-0.4.0) +; ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" +; ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) +; ("go-go-opencensus-io-0.22.5" ,go-go-opencensus-io-0.22.5) +; ("go-github-com-jstemmer-go-junit-report-0.9.1" +; ,go-github-com-jstemmer-go-junit-report-0.9.1) +; ("go-github-com-googleapis-gax-go-v2-2.0.5" +; ,go-github-com-googleapis-gax-go-v2-2.0.5) +; ("go-github-com-google-pprof-0.0.0-20201203190320-1bf35d6f28c2" +; ,go-github-com-google-pprof-0.0.0-20201203190320-1bf35d6f28c2) +; ("go-github-com-google-martian-v3-3.1.0" +; ,go-github-com-google-martian-v3-3.1.0) +; ("go-github-com-google-go-cmp-0.5.4" +; ,go-github-com-google-go-cmp-0.5.4) +; ("go-github-com-golang-protobuf-1.4.3" +; ,go-github-com-golang-protobuf-1.4.3) +; ("go-github-com-golang-mock-1.4.4" ,go-github-com-golang-mock-1.4.4) +; ("go-cloud-google-com-go-storage-1.10.0" +; ,go-cloud-google-com-go-storage-1.10.0))) +; (home-page "https://cloud.google.com/go") +; (synopsis "Google Cloud Client Libraries for Go") +; (description +; "Package cloud is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +;of sub-packages. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-google-go-cmp-0.5.4 +; (package +; (name "go-github-com-google-go-cmp") +; (version "0.5.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/go-cmp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ld9pwb6l22g75g1zpa691l7q9ki7pjgpcqhwgdfr3va1zisr5ci")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/go-cmp")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" +; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) +; (home-page "https://github.com/google/go-cmp") +; (synopsis "Package for equality of Go values") +; (description +; "This package is intended to be a more powerful and safer alternative to +;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") +; (license license:bsd-3))) +; +;(define-public go-go-opencensus-io-0.22.5 +; (package +; (name "go-go-opencensus-io") +; (version "0.22.5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/census-instrumentation/opencensus-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "18s1d7bk28i8gbs6i587ccd31qp3f8gibgd14dpkzs05gyvlccy6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "go.opencensus.io")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.20.1" ,go-google-golang-org-grpc-1.20.1) +; ("go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb" +; ,go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb) +; ("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) +; ("go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd" +; ,go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd) +; ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" +; ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) +; ("go-github-com-stretchr-testify-1.4.0" +; ,go-github-com-stretchr-testify-1.4.0) +; ("go-github-com-google-go-cmp-0.3.0" +; ,go-github-com-google-go-cmp-0.3.0) +; ("go-github-com-golang-protobuf-1.3.1" +; ,go-github-com-golang-protobuf-1.3.1) +; ("go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6" +; ,go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6))) +; (home-page "https://go.opencensus.io") +; (synopsis "OpenCensus Libraries for Go") +; (description "Package opencensus contains Go support for OpenCensus. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-oauth2-0.0.0-20201208152858-08078c50e5b5 +; (package +; (name "go-golang-org-x-oauth2") +; (version "0.0.0-20201208152858-08078c50e5b5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/oauth2") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0zynwxw47nhwhs6n1c87c9np43lwl9m9z2w2cmdvjwhsisa93b75")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/oauth2")) +; (propagated-inputs +; `(("go-google-golang-org-appengine-1.6.6" +; ,go-google-golang-org-appengine-1.6.6) +; ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" +; ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) +; ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) +; (home-page "https://golang.org/x/oauth2") +; (synopsis "OAuth2 for Go") +; (description +; "Package oauth2 provides support for making +;OAuth2 authorized and authenticated HTTP requests, +;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +;It can additionally grant authorization with Bearer JWT. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a +; (package +; (name "go-golang-org-x-sync") +; (version "0.0.0-20201207232520-09787c993a3a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sync") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1nv4mwi9njkkyc7lwmxrjr8ggfh2cf1c67a9bq85dnss81vpj61y")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sync")) +; (home-page "https://golang.org/x/sync") +; (synopsis "Go Sync") +; (description +; "This repository provides Go concurrency primitives in addition to the +;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20210104204734-6f8348627aad +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20210104204734-6f8348627aad") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0pmz8dwjf4gxr1gwnp4iahh3yh09apcf40kvvybycsx4rfjc2gbl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20210105154028-b0ab187a4818 +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20210105154028-b0ab187a4818") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "157w706lz7j4s7cwgh7j7mf8v1sah5hm4dlmp8isf6vhnqpixdp7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" +; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) +; ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" +; ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) +; ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" +; ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) +; ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) +; ("go-github-com-yuin-goldmark-1.2.1" +; ,go-github-com-yuin-goldmark-1.2.1))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20201214200347-8c77b98c765d +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20201214200347-8c77b98c765d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1bdpss5xmla0gjz66mdk8bqpsdb5i1xz65g30k9cs2h7vrqlwzn4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.24.0" +; ,go-google-golang-org-protobuf-1.24.0) +; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) +; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" +; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-github-com-golang-protobuf-1.4.1" +; ,go-github-com-golang-protobuf-1.4.1))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-github-com-cncf-udpa-go-0.0.0-20200629203442-efcf912fb354 +; (package +; (name "go-github-com-cncf-udpa-go") +; (version "0.0.0-20200629203442-efcf912fb354") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/cncf/udpa") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "18b1v01h3id5d7v5gqabc4qsaja17r45rn3fvv38nrfx9l4smv0x")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path +; "github.com/cncf/udpa/go" +; #:unpack-path +; "github.com/cncf/udpa")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2) +; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" +; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0))) +; (home-page "https://github.com/cncf/udpa") +; (synopsis "Description") +; (description +; "This library has been deprecated in favor of @code{github.com/cncf/xds/go}. All users are recommended to switch their imports.") +; (license license:asl2.0))) +; +;(define-public go-github-com-envoyproxy-go-control-plane-0.9.7 +; (package +; (name "go-github-com-envoyproxy-go-control-plane") +; (version "0.9.7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/envoyproxy/go-control-plane") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0nx5ybyadkjqr29hndn6amhbcqpi1rkfv12bxp0rk3ay045zxsh8")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.23.0" +; ,go-google-golang-org-protobuf-1.23.0) +; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) +; ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" +; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) +; ("go-github-com-stretchr-testify-1.5.1" +; ,go-github-com-stretchr-testify-1.5.1) +; ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" +; ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.4.2" +; ,go-github-com-golang-protobuf-1.4.2) +; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" +; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) +; ("go-github-com-cncf-udpa-go-0.0.0-20200629203442-efcf912fb354" +; ,go-github-com-cncf-udpa-go-0.0.0-20200629203442-efcf912fb354) +; ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" +; ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) +; (home-page "https://github.com/envoyproxy/go-control-plane") +; (synopsis "control-plane") +; (description +; "This repository contains a Go-based implementation of an API server that +;implements the discovery service APIs defined in +;@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-grpc-1.34.0 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.34.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0s8y19qvv0zfy2irq8vv12h65v7pw18k6yqfix1j2370yxmsajgm")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.25.0" +; ,go-google-golang-org-protobuf-1.25.0) +; ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" +; ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) +; ("go-github-com-google-go-cmp-0.5.0" +; ,go-github-com-google-go-cmp-0.5.0) +; ("go-github-com-golang-protobuf-1.4.2" +; ,go-github-com-golang-protobuf-1.4.2) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-envoyproxy-go-control-plane-0.9.7" +; ,go-github-com-envoyproxy-go-control-plane-0.9.7) +; ("go-github-com-cncf-udpa-go-0.0.0-20200629203442-efcf912fb354" +; ,go-github-com-cncf-udpa-go-0.0.0-20200629203442-efcf912fb354))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-api-0.40.0 +; (package +; (name "go-google-golang-org-api") +; (version "0.40.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-api-go-client") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0vs0bnzljg5iib8x01sy49ndgsz3cl1sq53pvy3h6kzp7may0bpc")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/api")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.34.0" ,go-google-golang-org-grpc-1.34.0) +; ("go-google-golang-org-genproto-0.0.0-20201214200347-8c77b98c765d" +; ,go-google-golang-org-genproto-0.0.0-20201214200347-8c77b98c765d) +; ("go-google-golang-org-appengine-1.6.7" +; ,go-google-golang-org-appengine-1.6.7) +; ("go-golang-org-x-tools-0.0.0-20210105154028-b0ab187a4818" +; ,go-golang-org-x-tools-0.0.0-20210105154028-b0ab187a4818) +; ("go-golang-org-x-sys-0.0.0-20210104204734-6f8348627aad" +; ,go-golang-org-x-sys-0.0.0-20210104204734-6f8348627aad) +; ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" +; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) +; ("go-golang-org-x-oauth2-0.0.0-20201208152858-08078c50e5b5" +; ,go-golang-org-x-oauth2-0.0.0-20201208152858-08078c50e5b5) +; ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" +; ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) +; ("go-go-opencensus-io-0.22.5" ,go-go-opencensus-io-0.22.5) +; ("go-github-com-googleapis-gax-go-v2-2.0.5" +; ,go-github-com-googleapis-gax-go-v2-2.0.5) +; ("go-github-com-google-go-cmp-0.5.4" +; ,go-github-com-google-go-cmp-0.5.4) +; ("go-cloud-google-com-go-0.74.0" ,go-cloud-google-com-go-0.74.0))) +; (home-page "https://google.golang.org/api") +; (synopsis "Google APIs Client Library for Go") +; (description +; "Package api is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of +;sub-packages. +;") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20210222152913-aa3ee6e6a81c +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20210222152913-aa3ee6e6a81c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "06wa7v3s558rwxsqd1kqz5xy10kigzx50ciqh3zdxsbvxqvjwxrx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.24.0" +; ,go-google-golang-org-protobuf-1.24.0) +; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) +; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" +; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-github-com-golang-protobuf-1.4.1" +; ,go-github-com-golang-protobuf-1.4.1))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-grpc-1.35.0 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.35.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "15ij5acp9h8dxq0brc0jljj98badri23zpm4yvmsn6gnnxaykl72")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.25.0" +; ,go-google-golang-org-protobuf-1.25.0) +; ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" +; ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) +; ("go-github-com-google-go-cmp-0.5.0" +; ,go-github-com-google-go-cmp-0.5.0) +; ("go-github-com-golang-protobuf-1.4.2" +; ,go-github-com-golang-protobuf-1.4.2) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad" +; ,go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad) +; ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" +; ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-cloud-google-com-go-0.78.0 +; (package +; (name "go-cloud-google-com-go") +; (version "0.78.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-cloud-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "11wldladkcz41ivsfnbrqy2hg5wp55d72hnr2wki0zvnhbzsj376")))) +; (build-system go-build-system) +; (arguments '(#:import-path "cloud.google.com/go")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.35.0" ,go-google-golang-org-grpc-1.35.0) +; ("go-google-golang-org-genproto-0.0.0-20210222152913-aa3ee6e6a81c" +; ,go-google-golang-org-genproto-0.0.0-20210222152913-aa3ee6e6a81c) +; ("go-google-golang-org-api-0.40.0" ,go-google-golang-org-api-0.40.0) +; ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) +; ("go-golang-org-x-text-0.3.5" ,go-golang-org-x-text-0.3.5) +; ("go-golang-org-x-sys-0.0.0-20210220050731-9a76102bfb43" +; ,go-golang-org-x-sys-0.0.0-20210220050731-9a76102bfb43) +; ("go-golang-org-x-oauth2-0.0.0-20210218202405-ba52d332ba99" +; ,go-golang-org-x-oauth2-0.0.0-20210218202405-ba52d332ba99) +; ("go-golang-org-x-net-0.0.0-20210119194325-5f4716e94777" +; ,go-golang-org-x-net-0.0.0-20210119194325-5f4716e94777) +; ("go-golang-org-x-mod-0.4.1" ,go-golang-org-x-mod-0.4.1) +; ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" +; ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) +; ("go-go-opencensus-io-0.22.5" ,go-go-opencensus-io-0.22.5) +; ("go-github-com-jstemmer-go-junit-report-0.9.1" +; ,go-github-com-jstemmer-go-junit-report-0.9.1) +; ("go-github-com-googleapis-gax-go-v2-2.0.5" +; ,go-github-com-googleapis-gax-go-v2-2.0.5) +; ("go-github-com-google-pprof-0.0.0-20210122040257-d980be63207e" +; ,go-github-com-google-pprof-0.0.0-20210122040257-d980be63207e) +; ("go-github-com-google-martian-v3-3.1.0" +; ,go-github-com-google-martian-v3-3.1.0) +; ("go-github-com-google-go-cmp-0.5.4" +; ,go-github-com-google-go-cmp-0.5.4) +; ("go-github-com-golang-protobuf-1.4.3" +; ,go-github-com-golang-protobuf-1.4.3) +; ("go-github-com-golang-mock-1.4.4" ,go-github-com-golang-mock-1.4.4) +; ("go-cloud-google-com-go-storage-1.10.0" +; ,go-cloud-google-com-go-storage-1.10.0))) +; (home-page "https://cloud.google.com/go") +; (synopsis "Google Cloud Client Libraries for Go") +; (description +; "Package cloud is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +;of sub-packages. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-oauth2-0.0.0-20210220000619-9bb904979d93 +; (package +; (name "go-golang-org-x-oauth2") +; (version "0.0.0-20210220000619-9bb904979d93") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/oauth2") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1rhndpvpvfy5bsaxi974cznlq4hbamhmy6l06ppp9phh12pvn11p")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/oauth2")) +; (propagated-inputs +; `(("go-google-golang-org-appengine-1.6.6" +; ,go-google-golang-org-appengine-1.6.6) +; ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" +; ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) +; ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) +; (home-page "https://golang.org/x/oauth2") +; (synopsis "OAuth2 for Go") +; (description +; "Package oauth2 provides support for making +;OAuth2 authorized and authenticated HTTP requests, +;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +;It can additionally grant authorization with Bearer JWT. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20210305230114-8fe3ee5dd75b +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20210305230114-8fe3ee5dd75b") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1x7fn66vplxkac6lbwqv649wwnx7kz0bqdzgr98z7yx7cfdxd7rj")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20210303154014-9728d6b83eeb +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20210303154014-9728d6b83eeb") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1abic7gjp07d1s6imjfn00s316xdirss3zvcric74gr9varr02xn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.24.0" +; ,go-google-golang-org-protobuf-1.24.0) +; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) +; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" +; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-github-com-golang-protobuf-1.4.1" +; ,go-github-com-golang-protobuf-1.4.1))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-api-0.41.0 +; (package +; (name "go-google-golang-org-api") +; (version "0.41.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-api-go-client") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0yzz534xzl2km3vxr18h204yvnrzqlss02fagg2ign0sy3qnlkhx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/api")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.36.0" ,go-google-golang-org-grpc-1.36.0) +; ("go-google-golang-org-genproto-0.0.0-20210303154014-9728d6b83eeb" +; ,go-google-golang-org-genproto-0.0.0-20210303154014-9728d6b83eeb) +; ("go-google-golang-org-appengine-1.6.7" +; ,go-google-golang-org-appengine-1.6.7) +; ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) +; ("go-golang-org-x-sys-0.0.0-20210305230114-8fe3ee5dd75b" +; ,go-golang-org-x-sys-0.0.0-20210305230114-8fe3ee5dd75b) +; ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" +; ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) +; ("go-golang-org-x-oauth2-0.0.0-20210220000619-9bb904979d93" +; ,go-golang-org-x-oauth2-0.0.0-20210220000619-9bb904979d93) +; ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" +; ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) +; ("go-go-opencensus-io-0.23.0" ,go-go-opencensus-io-0.23.0) +; ("go-github-com-googleapis-gax-go-v2-2.0.5" +; ,go-github-com-googleapis-gax-go-v2-2.0.5) +; ("go-github-com-google-go-cmp-0.5.5" +; ,go-github-com-google-go-cmp-0.5.5) +; ("go-cloud-google-com-go-0.78.0" ,go-cloud-google-com-go-0.78.0))) +; (home-page "https://google.golang.org/api") +; (synopsis "Google APIs Client Library for Go") +; (description +; "Package api is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of +;sub-packages. +;") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20210310155132-4ce2db91004e +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20210310155132-4ce2db91004e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0r5f024c4piqna27pvc28m0h44ms9rhcbihf1zn5l8prf4vvrdw9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.24.0" +; ,go-google-golang-org-protobuf-1.24.0) +; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) +; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" +; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-github-com-golang-protobuf-1.4.1" +; ,go-github-com-golang-protobuf-1.4.1))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-cloud-google-com-go-0.79.0 +; (package +; (name "go-cloud-google-com-go") +; (version "0.79.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-cloud-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "031jrfgyys0slh154593d4swj6iqrjvs9dxwmab99dl6zfws77jv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "cloud.google.com/go")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.36.0" ,go-google-golang-org-grpc-1.36.0) +; ("go-google-golang-org-genproto-0.0.0-20210310155132-4ce2db91004e" +; ,go-google-golang-org-genproto-0.0.0-20210310155132-4ce2db91004e) +; ("go-google-golang-org-api-0.41.0" ,go-google-golang-org-api-0.41.0) +; ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) +; ("go-golang-org-x-text-0.3.5" ,go-golang-org-x-text-0.3.5) +; ("go-golang-org-x-oauth2-0.0.0-20210220000619-9bb904979d93" +; ,go-golang-org-x-oauth2-0.0.0-20210220000619-9bb904979d93) +; ("go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110" +; ,go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110) +; ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" +; ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) +; ("go-go-opencensus-io-0.23.0" ,go-go-opencensus-io-0.23.0) +; ("go-github-com-jstemmer-go-junit-report-0.9.1" +; ,go-github-com-jstemmer-go-junit-report-0.9.1) +; ("go-github-com-googleapis-gax-go-v2-2.0.5" +; ,go-github-com-googleapis-gax-go-v2-2.0.5) +; ("go-github-com-google-pprof-0.0.0-20210226084205-cbba55b83ad5" +; ,go-github-com-google-pprof-0.0.0-20210226084205-cbba55b83ad5) +; ("go-github-com-google-martian-v3-3.1.0" +; ,go-github-com-google-martian-v3-3.1.0) +; ("go-github-com-google-go-cmp-0.5.5" +; ,go-github-com-google-go-cmp-0.5.5) +; ("go-github-com-golang-protobuf-1.4.3" +; ,go-github-com-golang-protobuf-1.4.3) +; ("go-github-com-golang-mock-1.5.0" ,go-github-com-golang-mock-1.5.0) +; ("go-cloud-google-com-go-storage-1.10.0" +; ,go-cloud-google-com-go-storage-1.10.0))) +; (home-page "https://cloud.google.com/go") +; (synopsis "Google Cloud Client Libraries for Go") +; (description +; "Package cloud is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +;of sub-packages. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-oauth2-0.0.0-20210313182246-cd4f82c27b84 +; (package +; (name "go-golang-org-x-oauth2") +; (version "0.0.0-20210313182246-cd4f82c27b84") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/oauth2") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1jf68sh1957ji1lv1zrrhsbm6jr3508pw159pfzgyw6hbzsg5amv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/oauth2")) +; (propagated-inputs +; `(("go-google-golang-org-appengine-1.6.6" +; ,go-google-golang-org-appengine-1.6.6) +; ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" +; ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) +; ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) +; (home-page "https://golang.org/x/oauth2") +; (synopsis "OAuth2 for Go") +; (description +; "Package oauth2 provides support for making +;OAuth2 authorized and authenticated HTTP requests, +;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +;It can additionally grant authorization with Bearer JWT. +;") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20210319143718-93e7006c17a6 +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20210319143718-93e7006c17a6") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0l143m8rn7zmbfb2rpdawhxs8qjbdpn61hqynf47j5hwsbjci2xs")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.24.0" +; ,go-google-golang-org-protobuf-1.24.0) +; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) +; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" +; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-github-com-golang-protobuf-1.4.1" +; ,go-github-com-golang-protobuf-1.4.1))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-grpc-1.36.0 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.36.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1m4xsfv3ysc84cwqxqqr61fs3d2w04f0q5xbdjijhczjixcxwh5i")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.25.0" +; ,go-google-golang-org-protobuf-1.25.0) +; ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" +; ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) +; ("go-github-com-google-go-cmp-0.5.0" +; ,go-github-com-google-go-cmp-0.5.0) +; ("go-github-com-golang-protobuf-1.4.2" +; ,go-github-com-golang-protobuf-1.4.2) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad" +; ,go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad) +; ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" +; ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-api-0.43.0 +; (package +; (name "go-google-golang-org-api") +; (version "0.43.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-api-go-client") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0wxxbihigjn49warampi7gqfslbnp9nrj5zmk8p3ssq429jpvsib")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/api")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.36.0" ,go-google-golang-org-grpc-1.36.0) +; ("go-google-golang-org-genproto-0.0.0-20210319143718-93e7006c17a6" +; ,go-google-golang-org-genproto-0.0.0-20210319143718-93e7006c17a6) +; ("go-google-golang-org-appengine-1.6.7" +; ,go-google-golang-org-appengine-1.6.7) +; ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) +; ("go-golang-org-x-sys-0.0.0-20210320140829-1e4c9ba3b0c4" +; ,go-golang-org-x-sys-0.0.0-20210320140829-1e4c9ba3b0c4) +; ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" +; ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) +; ("go-golang-org-x-oauth2-0.0.0-20210313182246-cd4f82c27b84" +; ,go-golang-org-x-oauth2-0.0.0-20210313182246-cd4f82c27b84) +; ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" +; ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) +; ("go-go-opencensus-io-0.23.0" ,go-go-opencensus-io-0.23.0) +; ("go-github-com-googleapis-gax-go-v2-2.0.5" +; ,go-github-com-googleapis-gax-go-v2-2.0.5) +; ("go-github-com-google-go-cmp-0.5.5" +; ,go-github-com-google-go-cmp-0.5.5) +; ("go-cloud-google-com-go-0.79.0" ,go-cloud-google-com-go-0.79.0))) +; (home-page "https://google.golang.org/api") +; (synopsis "Google APIs Client Library for Go") +; (description +; "Package api is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of +;sub-packages. +;") +; (license license:bsd-3))) +; +;(define-public go-cloud-google-com-go-0.81.0 +; (package +; (name "go-cloud-google-com-go") +; (version "0.81.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-cloud-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "15jgynqb5pbxqbj3a7ii970yn4srsw1dbxzxnhpkfkmplalpgyh3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "cloud.google.com/go")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.36.1" ,go-google-golang-org-grpc-1.36.1) +; ("go-google-golang-org-genproto-0.0.0-20210402141018-6c239bbf2bb1" +; ,go-google-golang-org-genproto-0.0.0-20210402141018-6c239bbf2bb1) +; ("go-google-golang-org-api-0.43.0" ,go-google-golang-org-api-0.43.0) +; ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) +; ("go-golang-org-x-text-0.3.5" ,go-golang-org-x-text-0.3.5) +; ("go-golang-org-x-oauth2-0.0.0-20210313182246-cd4f82c27b84" +; ,go-golang-org-x-oauth2-0.0.0-20210313182246-cd4f82c27b84) +; ("go-golang-org-x-net-0.0.0-20210316092652-d523dce5a7f4" +; ,go-golang-org-x-net-0.0.0-20210316092652-d523dce5a7f4) +; ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" +; ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) +; ("go-go-opencensus-io-0.23.0" ,go-go-opencensus-io-0.23.0) +; ("go-github-com-jstemmer-go-junit-report-0.9.1" +; ,go-github-com-jstemmer-go-junit-report-0.9.1) +; ("go-github-com-googleapis-gax-go-v2-2.0.5" +; ,go-github-com-googleapis-gax-go-v2-2.0.5) +; ("go-github-com-google-pprof-0.0.0-20210226084205-cbba55b83ad5" +; ,go-github-com-google-pprof-0.0.0-20210226084205-cbba55b83ad5) +; ("go-github-com-google-martian-v3-3.1.0" +; ,go-github-com-google-martian-v3-3.1.0) +; ("go-github-com-google-go-cmp-0.5.5" +; ,go-github-com-google-go-cmp-0.5.5) +; ("go-github-com-golang-protobuf-1.5.1" +; ,go-github-com-golang-protobuf-1.5.1) +; ("go-github-com-golang-mock-1.5.0" ,go-github-com-golang-mock-1.5.0) +; ("go-cloud-google-com-go-storage-1.10.0" +; ,go-cloud-google-com-go-storage-1.10.0))) +; (home-page "https://cloud.google.com/go") +; (synopsis "Google Cloud Client Libraries for Go") +; (description +; "Package cloud is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +;of sub-packages. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e +; (package +; (name "go-github-com-golang-groupcache") +; (version "0.0.0-20200121045136-8c9f03a8e57e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/groupcache") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0vjjr79r32icjzlb05wn02k59av7jx0rn1jijml8r4whlg7dnkfh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/groupcache")) +; (home-page "https://github.com/golang/groupcache") +; (synopsis "groupcache") +; (description +; "Package groupcache provides a data loading mechanism with caching +;and de-duplication that works across a set of peer processes. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-golang-protobuf-1.4.3 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.4.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1kf1d7xmyjvy0z6j5czp6nqyvj9zrk6liv6znif08927xqfrzyln")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.23.0" +; ,go-google-golang-org-protobuf-1.23.0) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0))) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-github-com-google-go-cmp-0.5.3 +; (package +; (name "go-github-com-google-go-cmp") +; (version "0.5.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/go-cmp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "011gdkmyk3w7qkcwljhqak4h5npn4n7fwgx1fwpyx9c7wizvgkm5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/go-cmp")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" +; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) +; (home-page "https://github.com/google/go-cmp") +; (synopsis "Package for equality of Go values") +; (description +; "This package is intended to be a more powerful and safer alternative to +;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") +; (license license:bsd-3))) +; +;(define-public go-github-com-stretchr-testify-1.6.1 +; (package +; (name "go-github-com-stretchr-testify") +; (version "1.6.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/testify") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1yhiqqzjvi63pf01rgzx68gqkkvjx03fvl5wk30br5l6s81s090l")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/testify")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" +; ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) +; ("go-github-com-stretchr-objx-0.1.0" +; ,go-github-com-stretchr-objx-0.1.0) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.0" +; ,go-github-com-davecgh-go-spew-1.1.0))) +; (home-page "https://github.com/stretchr/testify") +; (synopsis "Testify - Thou Shalt Write Tests") +; (description +; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20201110031124-69a78807bb2b") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "176z5k6jbhr9vf0am2avl1lyqwym3q0mri98yb8r572z33qmcw1d")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) +; ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" +; ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) +; ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" +; ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-grpc-1.33.2 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.33.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "03yz4nlf4kqbnpw48f0mvcb2f5zzy0vjd5i2iw0hrjspd0238fzk")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.25.0" +; ,go-google-golang-org-protobuf-1.25.0) +; ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" +; ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) +; ("go-github-com-google-go-cmp-0.5.0" +; ,go-github-com-google-go-cmp-0.5.0) +; ("go-github-com-golang-protobuf-1.4.1" +; ,go-github-com-golang-protobuf-1.4.1) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-envoyproxy-go-control-plane-0.9.4" +; ,go-github-com-envoyproxy-go-control-plane-0.9.4) +; ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" +; ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-go-opencensus-io-0.23.0 +; (package +; (name "go-go-opencensus-io") +; (version "0.23.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/census-instrumentation/opencensus-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0gw4f7inf8y2ik00yfb36xganiq9rl4w2d1a41bsjqsh83ajz2km")))) +; (build-system go-build-system) +; (arguments '(#:import-path "go.opencensus.io")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) +; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" +; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-google-go-cmp-0.5.3" +; ,go-github-com-google-go-cmp-0.5.3) +; ("go-github-com-golang-protobuf-1.4.3" +; ,go-github-com-golang-protobuf-1.4.3) +; ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" +; ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e))) +; (home-page "https://go.opencensus.io") +; (synopsis "OpenCensus Libraries for Go") +; (description "Package opencensus contains Go support for OpenCensus. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-golang-mock-1.4.4 +; (package +; (name "go-github-com-golang-mock") +; (version "1.4.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/mock") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1lj0dvd6div4jaq1s0afpwqaq9ah8cxhkq93wii2ably1xmp2l0a")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/mock")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262" +; ,go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262))) +; (home-page "https://github.com/golang/mock") +; (synopsis "gomock") +; (description +; "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It +;integrates well with Go's built-in @code{testing} package, but can be used in other +;contexts too.") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-tools-0.0.0-20200825202427-b303f430e36d +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20200825202427-b303f430e36d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0zzf6ifzjvkwin6m97jp2dndbfac0sbdr84ki79j9srhpqdigl75")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" +; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) +; ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" +; ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) +; ("go-golang-org-x-net-0.0.0-20200625001655-4c5254603344" +; ,go-golang-org-x-net-0.0.0-20200625001655-4c5254603344) +; ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) +; ("go-github-com-yuin-goldmark-1.1.32" +; ,go-github-com-yuin-goldmark-1.1.32))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20190628185345-da137c7871d7 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190628185345-da137c7871d7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1qsiyr3irmb6ii06hivm9p2c7wqyxczms1a9v1ss5698yjr3fg47")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-github-com-google-martian-v3-3.0.0 +; (package +; (name "go-github-com-google-martian-v3") +; (version "3.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/martian") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ngvs4l6a06s8scnliq9i5pwvwpzfpa5wf9skg0gcvysli1rm3fm")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/martian/v3")) +; (propagated-inputs +; `(("go-golang-org-x-net-0.0.0-20190628185345-da137c7871d7" +; ,go-golang-org-x-net-0.0.0-20190628185345-da137c7871d7))) +; (home-page "https://github.com/google/martian") +; (synopsis "Martian Proxy") +; (description +; "Package martian provides an HTTP/1.1 proxy with an API for configurable +;request and response modifiers. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-google-pprof-0.0.0-20200708004538-1a94d8640e99 +; (package +; (name "go-github-com-google-pprof") +; (version "0.0.0-20200708004538-1a94d8640e99") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/pprof") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0isfwwan9vimwsfjml0phwrqv6kb83mkmk063dcb81k09gzzs3wy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/pprof")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" +; ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) +; ("go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6" +; ,go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6) +; ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" +; ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) +; ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" +; ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) +; ("go-github-com-chzyer-logex-1.1.10" +; ,go-github-com-chzyer-logex-1.1.10))) +; (home-page "https://github.com/google/pprof") +; (synopsis "Introduction") +; (description +; "pprof is a tool for collection, manipulation and visualization +;of performance profiles. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-net-0.0.0-20200707034311-ab3426394381 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20200707034311-ab3426394381") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1wr7rnnqp210yykkypinb8ciszx28aq5a3l3dvsv6swzxxngs8zn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" +; ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) +; ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" +; ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20200729194436-6467de6f59a7 +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20200729194436-6467de6f59a7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "14zpkr5idlx2zbm5dp7gk4afppy7k3j4y68s1qvpgi70yazaxzkd")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" +; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) +; ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" +; ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) +; ("go-golang-org-x-net-0.0.0-20200625001655-4c5254603344" +; ,go-golang-org-x-net-0.0.0-20200625001655-4c5254603344) +; ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) +; ("go-github-com-yuin-goldmark-1.1.32" +; ,go-github-com-yuin-goldmark-1.1.32))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262 +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20190425150028-36563e24a262") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0lasi96f6a1h11gkm8kl33x03pmxp369wrqq2dg7x7xv9nq76d6g")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" +; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-text-0.0.0-20170915032832-14c0d48ead0c +; (package +; (name "go-golang-org-x-text") +; (version "0.0.0-20170915032832-14c0d48ead0c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/text") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0y0nrj4hw7vby6m3iqklbf4v7njqlsx7s4pwfkwmvh1ryn1kb7d6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/text")) +; (home-page "https://golang.org/x/text") +; (synopsis "Go Text") +; (description +; "text is a repository of text-related packages related to internationalization +;(i18n) and localization (l10n), such as character encodings, text +;transformations, and locale-specific text handling. +;") +; (license license:bsd-3))) +; +;(define-public go-rsc-io-sampler-1.3.0 +; (package +; (name "go-rsc-io-sampler") +; (version "1.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/rsc/sampler") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0byxk2ynba50py805kcvbvjzh59l1r308i1xgyzpw6lff4xx9xjh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "rsc.io/sampler")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.0.0-20170915032832-14c0d48ead0c" +; ,go-golang-org-x-text-0.0.0-20170915032832-14c0d48ead0c))) +; (home-page "https://rsc.io/sampler") +; (synopsis #f) +; (description "Package sampler shows simple texts. +;") +; (license license:bsd-3))) +; +;(define-public go-rsc-io-quote-v3-3.1.0 +; (package +; (name "go-rsc-io-quote-v3") +; (version "3.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/rsc/quote") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0nvv97hwwrl1mx5gzsbdm1ndnwpg3m7i2jb10ig9wily7zmvki0i")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "rsc.io/quote/v3" #:unpack-path "rsc.io/quote/v3")) +; (propagated-inputs `(("go-rsc-io-sampler-1.3.0" ,go-rsc-io-sampler-1.3.0))) +; (home-page "https://rsc.io/quote/v3") +; (synopsis #f) +; (description "Package quote collects pithy sayings. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-mock-1.4.3 +; (package +; (name "go-github-com-golang-mock") +; (version "1.4.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/mock") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1p37xnja1dgq5ykx24n7wincwz2gahjh71b95p8vpw7ss2g8j8wx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/mock")) +; (propagated-inputs +; `(("go-rsc-io-quote-v3-3.1.0" ,go-rsc-io-quote-v3-3.1.0) +; ("go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262" +; ,go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262))) +; (home-page "https://github.com/golang/mock") +; (synopsis "gomock") +; (description +; "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It +;integrates well with Go's built-in @code{testing} package, but can be used in other +;contexts too.") +; (license license:asl2.0))) +; +;(define-public go-github-com-golang-protobuf-1.3.5 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.3.5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1gkd1942vk9n8kfzdwy1iil6wgvlwjq7a3y5jc49ck4lz9rhmgkq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-github-com-chzyer-logex-1.1.10 +; (package +; (name "go-github-com-chzyer-logex") +; (version "1.1.10") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/chzyer/logex") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "08pbjj3wx9acavlwyr055isa8a5hnmllgdv5k6ra60l5y1brmlq4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/chzyer/logex")) +; (home-page "https://github.com/chzyer/logex") +; (synopsis #f) +; (description #f) +; (license #f))) +; +;(define-public go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e +; (package +; (name "go-github-com-chzyer-readline") +; (version "0.0.0-20180603132655-2972be24d48e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/chzyer/readline") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "104q8dazj8yf6b089jjr82fy9h1g80zyyzvp3g8b44a7d8ngjj6r")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/chzyer/readline")) +; (home-page "https://github.com/chzyer/readline") +; (synopsis "Guide") +; (description +; "Readline is a pure go implementation for GNU-Readline kind library. +;") +; (license license:expat))) +; +;(define-public go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1 +; (package +; (name "go-github-com-chzyer-test") +; (version "0.0.0-20180213035817-a1ea475d72b1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/chzyer/test") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0rns2aqk22i9xsgyap0pq8wi4cfaxsri4d9q6xxhhyma8jjsnj2k")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/chzyer/test")) +; (home-page "https://github.com/chzyer/test") +; (synopsis "test") +; (description #f) +; (license license:expat))) +; +;(define-public go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6 +; (package +; (name "go-github-com-ianlancetaylor-demangle") +; (version "0.0.0-20181102032728-5e5cf60278f6") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/ianlancetaylor/demangle") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1fhjk11cip9c3jyj1byz9z77n6n2rlxmyz0xjx1zpn1da3cvri75")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/ianlancetaylor/demangle")) +; (home-page "https://github.com/ianlancetaylor/demangle") +; (synopsis "github.com/ianlancetaylor/demangle") +; (description +; "Package demangle defines functions that demangle GCC/LLVM +;C++ and Rust symbol names. +;This package recognizes names that were mangled according to the C++ ABI +;defined at @url{http://codesourcery.com/cxx-abi/,http://codesourcery.com/cxx-abi/} and the Rust ABI +;defined at +;@url{https://rust-lang.github.io/rfcs/2603-rust-symbol-name-mangling-v0.html,https://rust-lang.github.io/rfcs/2603-rust-symbol-name-mangling-v0.html} +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20191204072324-ce4227a45e2e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1s43wvqfml6ml5ks7iv2bis9d664g77mq86v7mfmjhn56x856g35")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-google-pprof-0.0.0-20200229191704-1ebb73c60ed3 +; (package +; (name "go-github-com-google-pprof") +; (version "0.0.0-20200229191704-1ebb73c60ed3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/pprof") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1gdi9p4j1zfm5xlm488i5l0q3kk4q6hsmbmlk6p729i0di2n3ifa")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/pprof")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" +; ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) +; ("go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6" +; ,go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6) +; ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" +; ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) +; ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" +; ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) +; ("go-github-com-chzyer-logex-1.1.10" +; ,go-github-com-chzyer-logex-1.1.10))) +; (home-page "https://github.com/google/pprof") +; (synopsis "Introduction") +; (description +; "pprof is a tool for collection, manipulation and visualization +;of performance profiles. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-jstemmer-go-junit-report-0.9.1 +; (package +; (name "go-github-com-jstemmer-go-junit-report") +; (version "0.9.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/jstemmer/go-junit-report") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1knip80yir1cdsjlb3rzy0a4w3kl4ljpiciaz6hjzwqlfhnv7bkw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/jstemmer/go-junit-report")) +; (home-page "https://github.com/jstemmer/go-junit-report") +; (synopsis "go-junit-report") +; (description +; "Converts @code{go test} output to an xml report, suitable for applications that +;expect junit xml reports (e.g. @url{http://jenkins-ci.org,Jenkins}).") +; (license license:expat))) +; +;(define-public go-golang-org-x-net-0.0.0-20200324143707-d3edc9973b7e +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20200324143707-d3edc9973b7e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "12zbjwcsh9b0lwycqlkrnbyg5a6a9dzgj8hhgq399bdda5bd97y7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" +; ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-mock-1.2.0 +; (package +; (name "go-github-com-golang-mock") +; (version "1.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/mock") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "12ddj2g8ab87id6n2n67vnbhq6p8dvgsq1pzpqfriym4dk8w54fg")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/mock")) +; (home-page "https://github.com/golang/mock") +; (synopsis "gomock") +; (description +; "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It +;integrates well with Go's built-in @code{testing} package, but can be used in other +;contexts too.") +; (license license:asl2.0))) +; +;(define-public go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c +; (package +; (name "go-github-com-google-btree") +; (version "0.0.0-20180813153112-4030bb1f1f0c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/btree") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ba430m9fbnagacp57krgidsyrgp3ycw5r7dj71brgp5r52g82p6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/btree")) +; (home-page "https://github.com/google/btree") +; (synopsis "BTree implementation for Go") +; (description +; "Package btree implements in-memory B-Trees of arbitrary degree. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-google-martian-2.1.0+incompatible +; (package +; (name "go-github-com-google-martian") +; (version "2.1.0+incompatible") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/martian") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "197hil6vrjk50b9wvwyzf61csid83whsjj6ik8mc9r2lryxlyyrp")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/martian")) +; (home-page "https://github.com/google/martian") +; (synopsis "Martian Proxy") +; (description +; "Package martian provides an HTTP/1.1 proxy with an API for configurable +;request and response modifiers. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-google-pprof-0.0.0-20181206194817-3ea8567a2e57 +; (package +; (name "go-github-com-google-pprof") +; (version "0.0.0-20181206194817-3ea8567a2e57") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/pprof") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "09rhjn3ms0a72dw0yzbp237p7yhqma772zspddn6mgkh3gi3kn4c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/pprof")) +; (home-page "https://github.com/google/pprof") +; (synopsis "Introduction") +; (description +; "pprof is a tool for collection, manipulation and visualization +;of performance profiles. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-googleapis-gax-go-v2-2.0.4 +; (package +; (name "go-github-com-googleapis-gax-go-v2") +; (version "2.0.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/gax-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1iwnm6ky1x53lgs44mw3hpdkjzrm5qd0kfs50m0qcq2ml5m1cwdm")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/googleapis/gax-go/v2")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.19.0" +; ,go-google-golang-org-grpc-1.19.0))) +; (home-page "https://github.com/googleapis/gax-go") +; (synopsis #f) +; (description +; "Package gax contains a set of modules which aid the development of APIs +;for clients and servers based on gRPC and Google API conventions. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-jstemmer-go-junit-report-0.0.0-20190106144839-af01ea7f8024 +; (package +; (name "go-github-com-jstemmer-go-junit-report") +; (version "0.0.0-20190106144839-af01ea7f8024") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/jstemmer/go-junit-report") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1lp3n94ris12hac02wi31f3whs88lcrzwgdg43a5j6cafg9p1d0s")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/jstemmer/go-junit-report")) +; (home-page "https://github.com/jstemmer/go-junit-report") +; (synopsis "go-junit-report") +; (description +; "Converts @code{go test} output to an xml report, suitable for applications that +;expect junit xml reports (e.g. @url{http://jenkins-ci.org,Jenkins}).") +; (license license:expat))) +; +;(define-public go-golang-org-x-text-0.3.1-0.20180807135948-17ff2d5776d2 +; (package +; (name "go-golang-org-x-text") +; (version "0.3.1-0.20180807135948-17ff2d5776d2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/text") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1rrh2mnmyxr45nsvy42zq3w3ly6gw6rl993knwvf1w71kyv0jjnj")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/text")) +; (home-page "https://golang.org/x/text") +; (synopsis "Go Text") +; (description +; "text is a repository of text-related packages related to internationalization +;(i18n) and localization (l10n), such as character encodings, text +;transformations, and locale-specific text handling. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-time-0.0.0-20181108054448-85acf8d2951c +; (package +; (name "go-golang-org-x-time") +; (version "0.0.0-20181108054448-85acf8d2951c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/time") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0yqnxsrarjk4qkda8kcxzmk7y90kkkxzx9iwryzrk7bzs87ky3xc")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/time")) +; (home-page "https://golang.org/x/time") +; (synopsis "Go Time") +; (description "This repository provides supplementary Go time packages.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f +; (package +; (name "go-golang-org-x-lint") +; (version "0.0.0-20190301231843-5614ed5bae6f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/lint") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0fzn0zjv0x92xvfdq3a0v9w5sgkhr7hxkfy9zaqi8i57807z8bnx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/lint")) +; (home-page "https://golang.org/x/lint") +; (synopsis "Installation") +; (description "Package lint contains a linter for Go source code. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421 +; (package +; (name "go-golang-org-x-oauth2") +; (version "0.0.0-20190226205417-e64efc72b421") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/oauth2") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0djvwz2avx7knsjbl434vw1wqbrg53xp1kh599gfixn5icrggz4m")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/oauth2")) +; (propagated-inputs +; `(("go-google-golang-org-appengine-1.4.0" +; ,go-google-golang-org-appengine-1.4.0) +; ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" +; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) +; ("go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e" +; ,go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e) +; ("go-cloud-google-com-go-0.34.0" ,go-cloud-google-com-go-0.34.0))) +; (home-page "https://golang.org/x/oauth2") +; (synopsis "OAuth2 for Go") +; (description +; "Package oauth2 provides support for making +;OAuth2 authorized and authenticated HTTP requests, +;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +;It can additionally grant authorization with Bearer JWT. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138 +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20190312170243-e65039ee4138") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0c094599cf70wdrms49a3879qkq122pqlp2av444gs2pvc8apdcx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-api-0.4.0 +; (package +; (name "go-google-golang-org-api") +; (version "0.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-api-go-client") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1hzgrw5wasmcjlqpxsmryddzzw4cwyzf2vx14i9z51v1plwssijm")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/api")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" +; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) +; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) +; ("go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19" +; ,go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19) +; ("go-google-golang-org-appengine-1.4.0" +; ,go-google-golang-org-appengine-1.4.0) +; ("go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138" +; ,go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138) +; ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" +; ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) +; ("go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421" +; ,go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421) +; ("go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f" +; ,go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f) +; ("go-go-opencensus-io-0.21.0" ,go-go-opencensus-io-0.21.0) +; ("go-github-com-google-go-cmp-0.2.0" +; ,go-github-com-google-go-cmp-0.2.0))) +; (home-page "https://google.golang.org/api") +; (synopsis "Google APIs Client Library for Go") +; (description +; "Package api is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of +;sub-packages. +;") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20190418145605-e7d98fc518a7 +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20190418145605-e7d98fc518a7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1cnavkyawwvfc5yl097ygnfy1ac69v4zc02gdfnq1bvgcvgmvnbi")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" +; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) +; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) +; ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" +; ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) +; ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" +; ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) +; ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" +; ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd) +; ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" +; ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) +; ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" +; ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-honnef-co-go-tools-0.0.0-20190106161140-3f1c8253044a +; (package +; (name "go-honnef-co-go-tools") +; (version "0.0.0-20190106161140-3f1c8253044a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/dominikh/go-tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0d3vgh0fgfj1z7i648g1s6x2pwxd07sxfjwg1xn3yagr9h06jh3h")))) +; (build-system go-build-system) +; (arguments '(#:import-path "honnef.co/go/tools")) +; (home-page "https://honnef.co/go/tools") +; (synopsis "Documentation") +; (description +; "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, +;offers simplifications, and enforces style rules.") +; (license license:expat))) +; +;(define-public go-cloud-google-com-go-0.38.0 +; (package +; (name "go-cloud-google-com-go") +; (version "0.38.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-cloud-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0n6n13b7lri2fmc4bn4ifszyawj31dpbzvyv0xafsf81440z8cyh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "cloud.google.com/go")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190106161140-3f1c8253044a" +; ,go-honnef-co-go-tools-0.0.0-20190106161140-3f1c8253044a) +; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) +; ("go-google-golang-org-genproto-0.0.0-20190418145605-e7d98fc518a7" +; ,go-google-golang-org-genproto-0.0.0-20190418145605-e7d98fc518a7) +; ("go-google-golang-org-api-0.4.0" ,go-google-golang-org-api-0.4.0) +; ("go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138" +; ,go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138) +; ("go-golang-org-x-time-0.0.0-20181108054448-85acf8d2951c" +; ,go-golang-org-x-time-0.0.0-20181108054448-85acf8d2951c) +; ("go-golang-org-x-text-0.3.1-0.20180807135948-17ff2d5776d2" +; ,go-golang-org-x-text-0.3.1-0.20180807135948-17ff2d5776d2) +; ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" +; ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) +; ("go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421" +; ,go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421) +; ("go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f" +; ,go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f) +; ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" +; ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) +; ("go-go-opencensus-io-0.21.0" ,go-go-opencensus-io-0.21.0) +; ("go-github-com-jstemmer-go-junit-report-0.0.0-20190106144839-af01ea7f8024" +; ,go-github-com-jstemmer-go-junit-report-0.0.0-20190106144839-af01ea7f8024) +; ("go-github-com-googleapis-gax-go-v2-2.0.4" +; ,go-github-com-googleapis-gax-go-v2-2.0.4) +; ("go-github-com-google-pprof-0.0.0-20181206194817-3ea8567a2e57" +; ,go-github-com-google-pprof-0.0.0-20181206194817-3ea8567a2e57) +; ("go-github-com-google-martian-2.1.0+incompatible" +; ,go-github-com-google-martian-2.1.0+incompatible) +; ("go-github-com-google-go-cmp-0.2.0" +; ,go-github-com-google-go-cmp-0.2.0) +; ("go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c" +; ,go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0) +; ("go-github-com-golang-mock-1.2.0" ,go-github-com-golang-mock-1.2.0))) +; (home-page "https://cloud.google.com/go") +; (synopsis "Google Cloud Client Libraries for Go") +; (description +; "Package cloud is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +;of sub-packages. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-hashicorp-golang-lru-0.5.1 +; (package +; (name "go-github-com-hashicorp-golang-lru") +; (version "0.5.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/golang-lru") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "13f870cvk161bzjj6x41l45r5x9i1z9r2ymwmvm7768kg08zznpy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hashicorp/golang-lru")) +; (home-page "https://github.com/hashicorp/golang-lru") +; (synopsis "golang-lru") +; (description +; "Package lru provides three different LRU caches of varying sophistication. +;") +; (license license:mpl2.0))) +; +;(define-public go-github-com-hashicorp-golang-lru-0.5.0 +; (package +; (name "go-github-com-hashicorp-golang-lru") +; (version "0.5.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/golang-lru") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "12k2cp2k615fjvfa5hyb9k2alian77wivds8s65diwshwv41939f")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hashicorp/golang-lru")) +; (home-page "https://github.com/hashicorp/golang-lru") +; (synopsis "golang-lru") +; (description +; "Package lru provides three different LRU caches of varying sophistication. +;") +; (license license:mpl2.0))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19 +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20190307195333-5fe7a883aa19") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0qjkwig0r42q0j2qv57s4ahsgmmp41dz3ih3rnaqg0619n5w7lbs")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" +; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) +; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) +; ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" +; ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) +; ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" +; ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) +; ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" +; ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd) +; ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" +; ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) +; ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" +; ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-go-opencensus-io-0.21.0 +; (package +; (name "go-go-opencensus-io") +; (version "0.21.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/census-instrumentation/opencensus-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "14s0a12xdzjvad0dgksgv8m3hh7nc585abvjkvyk6r67a29lxj6x")))) +; (build-system go-build-system) +; (arguments '(#:import-path "go.opencensus.io")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) +; ("go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19" +; ,go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-github-com-hashicorp-golang-lru-0.5.0" +; ,go-github-com-hashicorp-golang-lru-0.5.0) +; ("go-github-com-google-go-cmp-0.2.0" +; ,go-github-com-google-go-cmp-0.2.0) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0))) +; (home-page "https://go.opencensus.io") +; (synopsis "OpenCensus Libraries for Go") +; (description "Package opencensus contains Go support for OpenCensus. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422 +; (package +; (name "go-golang-org-x-lint") +; (version "0.0.0-20190409202823-959b441ac422") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/lint") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1mgcv5f00pkzsbwnq2y7vqvd1b4lr5a3s47cphh2qv4indfk7pck")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/lint")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" +; ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd))) +; (home-page "https://golang.org/x/lint") +; (synopsis "Installation") +; (description "Package lint contains a linter for Go source code. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20190503192946-f4e77d36d62c +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190503192946-f4e77d36d62c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0avjnglqqg9ya0cbhp23m4namykii219kxjywxn4cd7pfcc5arha")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45 +; (package +; (name "go-golang-org-x-oauth2") +; (version "0.0.0-20190604053449-0f29369cfe45") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/oauth2") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "06jwpvx0x2gjn2y959drbcir5kd7vg87k0r1216abk6rrdzzrzi2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/oauth2")) +; (propagated-inputs +; `(("go-google-golang-org-appengine-1.4.0" +; ,go-google-golang-org-appengine-1.4.0) +; ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" +; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) +; ("go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e" +; ,go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e) +; ("go-cloud-google-com-go-0.34.0" ,go-cloud-google-com-go-0.34.0))) +; (home-page "https://golang.org/x/oauth2") +; (synopsis "OAuth2 for Go") +; (description +; "Package oauth2 provides support for making +;OAuth2 authorized and authenticated HTTP requests, +;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +;It can additionally grant authorization with Bearer JWT. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190507160741-ecd444e8653b") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1vhld4948mzfnlgf20id29mv1bwpk9a3xlbw1mbjzxzxxdv1jds2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-appengine-1.5.0 +; (package +; (name "go-google-golang-org-appengine") +; (version "1.5.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/appengine") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0l7mkdnwhidv8m686x432vmx8z5nqcrr9f46ddgvrxbh4wvyfcll")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/appengine")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225" +; ,go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0))) +; (home-page "https://google.golang.org/appengine") +; (synopsis "Go App Engine packages") +; (description +; "Package appengine provides basic functionality for Google App Engine. +;") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-api-0.20.0 +; (package +; (name "go-google-golang-org-api") +; (version "0.20.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-api-go-client") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "13syr1x33k6mrn5w6l4sgdbzn368w3m60vf6kk2j10fwa45125rg")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/api")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" +; ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) +; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) +; ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" +; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) +; ("go-google-golang-org-appengine-1.5.0" +; ,go-google-golang-org-appengine-1.5.0) +; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" +; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) +; ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) +; ("go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b" +; ,go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b) +; ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" +; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) +; ("go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45" +; ,go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45) +; ("go-golang-org-x-net-0.0.0-20190503192946-f4e77d36d62c" +; ,go-golang-org-x-net-0.0.0-20190503192946-f4e77d36d62c) +; ("go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422" +; ,go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422) +; ("go-go-opencensus-io-0.21.0" ,go-go-opencensus-io-0.21.0) +; ("go-github-com-hashicorp-golang-lru-0.5.1" +; ,go-github-com-hashicorp-golang-lru-0.5.1) +; ("go-github-com-googleapis-gax-go-v2-2.0.5" +; ,go-github-com-googleapis-gax-go-v2-2.0.5) +; ("go-github-com-google-go-cmp-0.3.0" +; ,go-github-com-google-go-cmp-0.3.0) +; ("go-cloud-google-com-go-0.38.0" ,go-cloud-google-com-go-0.38.0))) +; (home-page "https://google.golang.org/api") +; (synopsis "Google APIs Client Library for Go") +; (description +; "Package api is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of +;sub-packages. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-google-renameio-0.1.0 +; (package +; (name "go-github-com-google-renameio") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/renameio") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ki2x5a9nrj17sn092d6n4zr29lfg5ydv4xz5cp58z6cw8ip43jx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/renameio")) +; (home-page "https://github.com/google/renameio") +; (synopsis "Atomicity vs durability") +; (description +; "Package renameio provides a way to atomically create or replace a file or +;symbolic link. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-kisielk-gotool-1.0.0 +; (package +; (name "go-github-com-kisielk-gotool") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kisielk/gotool") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "14af2pa0ssyp8bp2mvdw184s5wcysk6akil3wzxmr05wwy951iwn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kisielk/gotool")) +; (home-page "https://github.com/kisielk/gotool") +; (synopsis "gotool") +; (description +; "Package gotool contains utility functions used to implement the standard +;\"cmd/go\" tool, provided as a convenience to developers who want to write +;tools with similar semantics. +;") +; (license license:expat))) +; +;(define-public go-github-com-kr-pty-1.1.1 +; (package +; (name "go-github-com-kr-pty") +; (version "1.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kr/pty") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0383f0mb9kqjvncqrfpidsf8y6ns5zlrc91c6a74xpyxjwvzl2y6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kr/pty")) +; (home-page "https://github.com/kr/pty") +; (synopsis "pty") +; (description +; "Package pty is a wrapper for github.com/creack/pty, which provides +;functions for working with Unix terminals. +;") +; (license license:expat))) +; +;(define-public go-github-com-kr-text-0.1.0 +; (package +; (name "go-github-com-kr-text") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kr/text") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1gm5bsl01apvc84bw06hasawyqm4q84vx1pm32wr9jnd7a8vjgj1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kr/text")) +; (propagated-inputs +; `(("go-github-com-kr-pty-1.1.1" ,go-github-com-kr-pty-1.1.1))) +; (home-page "https://github.com/kr/text") +; (synopsis #f) +; (description +; "Package text provides rudimentary functions for manipulating text in +;paragraphs. +;") +; (license license:expat))) +; +;(define-public go-github-com-kr-pretty-0.1.0 +; (package +; (name "go-github-com-kr-pretty") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kr/pretty") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "18m4pwg2abd0j9cn5v3k2ksk9ig4vlwxmlw9rrglanziv9l967qp")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kr/pretty")) +; (propagated-inputs +; `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) +; (home-page "https://github.com/kr/pretty") +; (synopsis #f) +; (description +; "Package pretty provides pretty-printing for Go values. This is +;useful during debugging, to avoid wrapping long output lines in +;the terminal. +;") +; (license license:expat))) +; +;(define-public go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127 +; (package +; (name "go-gopkg-in-check-v1") +; (version "1.0.0-20180628173108-788fd7840127") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/check.v1") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0v3bim0j375z81zrpr5qv42knqs0y2qv2vkjiqi5axvb78slki1a")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) +; (home-page "https://gopkg.in/check.v1") +; (synopsis "Instructions") +; (description +; "Package check is a rich testing extension for Go's testing package. +;") +; (license license:bsd-2))) +; +;(define-public go-gopkg-in-errgo-v2-2.1.0 +; (package +; (name "go-gopkg-in-errgo-v2") +; (version "2.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/errgo.v2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "065mbihiy7q67wnql0bzl9y1kkvck5ivra68254zbih52jxwrgr2")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/errgo.v2" #:unpack-path "gopkg.in/errgo.v2")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" +; ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) +; ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0))) +; (home-page "https://gopkg.in/errgo.v2") +; (synopsis #f) +; (description +; "Package errgo provides some primitives for error creation and handling.") +; (license license:bsd-3))) +; +;(define-public go-github-com-rogpeppe-go-internal-1.3.0 +; (package +; (name "go-github-com-rogpeppe-go-internal") +; (version "1.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/rogpeppe/go-internal") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0mcdh1licgnnahwml9y2iq6xy5x9xmjw5frcnds2s3wpjyqrl216")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/rogpeppe/go-internal")) +; (propagated-inputs +; `(("go-gopkg-in-errgo-v2-2.1.0" ,go-gopkg-in-errgo-v2-2.1.0))) +; (home-page "https://github.com/rogpeppe/go-internal") +; (synopsis #f) +; (description +; "This repository factors out an opinionated selection of internal packages and functionality from the Go standard +;library. Currently this consists mostly of packages and testing code from within the Go tool implementation.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20190510104115-cbcb75029529 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20190510104115-cbcb75029529") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "12831ga1gq04a3jbbcmww7kaqfdfgp7cdv2fj9aqidz8h52ajdmh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" +; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) +; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" +; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-mod-0.0.0-20190513183733-4bf6d317e70e +; (package +; (name "go-golang-org-x-mod") +; (version "0.0.0-20190513183733-4bf6d317e70e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/mod") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19lg1ly3j31anx92p0hynic1gjk417wwxphfdrb2cq1c19kj3r17")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/mod")) +; (propagated-inputs +; `(("go-golang-org-x-crypto-0.0.0-20190510104115-cbcb75029529" +; ,go-golang-org-x-crypto-0.0.0-20190510104115-cbcb75029529))) +; (home-page "https://golang.org/x/mod") +; (synopsis "mod") +; (description +; "This repository holds packages for writing tools +;that work directly with Go module mechanics. +;That is, it is for direct manipulation of Go modules themselves.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20191130070609-6e064ea0cf2d +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20191130070609-6e064ea0cf2d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1nbki367xspsa37j6276f5q2gv31vfjpb52axn3p3ymz548my75d")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7" +; ,go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7) +; ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" +; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) +; ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" +; ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-honnef-co-go-tools-0.0.1-2020.1.3 +; (package +; (name "go-honnef-co-go-tools") +; (version "0.0.1-2020.1.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/dominikh/go-tools") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0pvi1mzhy6zgx4zfgdypbl4zhvgg11hl5qv7blf2qs0a96j2djhf")))) +; (build-system go-build-system) +; (arguments '(#:import-path "honnef.co/go/tools")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20191130070609-6e064ea0cf2d" +; ,go-golang-org-x-tools-0.0.0-20191130070609-6e064ea0cf2d) +; ("go-golang-org-x-mod-0.0.0-20190513183733-4bf6d317e70e" +; ,go-golang-org-x-mod-0.0.0-20190513183733-4bf6d317e70e) +; ("go-github-com-rogpeppe-go-internal-1.3.0" +; ,go-github-com-rogpeppe-go-internal-1.3.0) +; ("go-github-com-kisielk-gotool-1.0.0" +; ,go-github-com-kisielk-gotool-1.0.0) +; ("go-github-com-google-renameio-0.1.0" +; ,go-github-com-google-renameio-0.1.0) +; ("go-github-com-burntsushi-toml-0.3.1" +; ,go-github-com-burntsushi-toml-0.3.1))) +; (home-page "https://honnef.co/go/tools") +; (synopsis "Documentation") +; (description +; "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, +;offers simplifications, and enforces style rules.") +; (license license:expat))) +; +;(define-public go-cloud-google-com-go-0.56.0 +; (package +; (name "go-cloud-google-com-go") +; (version "0.56.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-cloud-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1bpx84q7byxr5rp197qcg3pl56acs8v1q555frxgcqygxwjacszf")))) +; (build-system go-build-system) +; (arguments '(#:import-path "cloud.google.com/go")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.1-2020.1.3" +; ,go-honnef-co-go-tools-0.0.1-2020.1.3) +; ("go-google-golang-org-grpc-1.28.0" ,go-google-golang-org-grpc-1.28.0) +; ("go-google-golang-org-genproto-0.0.0-20200331122359-1ee6d9798940" +; ,go-google-golang-org-genproto-0.0.0-20200331122359-1ee6d9798940) +; ("go-google-golang-org-api-0.20.0" ,go-google-golang-org-api-0.20.0) +; ("go-golang-org-x-tools-0.0.0-20200331025713-a30bf2db82d4" +; ,go-golang-org-x-tools-0.0.0-20200331025713-a30bf2db82d4) +; ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) +; ("go-golang-org-x-sys-0.0.0-20200331124033-c3d80250170d" +; ,go-golang-org-x-sys-0.0.0-20200331124033-c3d80250170d) +; ("go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a" +; ,go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a) +; ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" +; ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) +; ("go-golang-org-x-net-0.0.0-20200324143707-d3edc9973b7e" +; ,go-golang-org-x-net-0.0.0-20200324143707-d3edc9973b7e) +; ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" +; ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) +; ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) +; ("go-github-com-jstemmer-go-junit-report-0.9.1" +; ,go-github-com-jstemmer-go-junit-report-0.9.1) +; ("go-github-com-googleapis-gax-go-v2-2.0.5" +; ,go-github-com-googleapis-gax-go-v2-2.0.5) +; ("go-github-com-google-pprof-0.0.0-20200229191704-1ebb73c60ed3" +; ,go-github-com-google-pprof-0.0.0-20200229191704-1ebb73c60ed3) +; ("go-github-com-google-martian-2.1.0+incompatible" +; ,go-github-com-google-martian-2.1.0+incompatible) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.3.5" +; ,go-github-com-golang-protobuf-1.3.5) +; ("go-github-com-golang-mock-1.4.3" ,go-github-com-golang-mock-1.4.3) +; ("go-cloud-google-com-go-storage-1.6.0" +; ,go-cloud-google-com-go-storage-1.6.0) +; ("go-cloud-google-com-go-pubsub-1.2.0" +; ,go-cloud-google-com-go-pubsub-1.2.0) +; ("go-cloud-google-com-go-datastore-1.1.0" +; ,go-cloud-google-com-go-datastore-1.1.0) +; ("go-cloud-google-com-go-bigquery-1.4.0" +; ,go-cloud-google-com-go-bigquery-1.4.0))) +; (home-page "https://cloud.google.com/go") +; (synopsis "Google Cloud Client Libraries for Go") +; (description +; "Package cloud is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +;of sub-packages. +;") +; (license license:asl2.0))) +; +;(define-public go-go-opencensus-io-0.22.3 +; (package +; (name "go-go-opencensus-io") +; (version "0.22.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/census-instrumentation/opencensus-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0xj16iq5jp26hi2py7lsd8cvqh651fgn39y05gzvjdi88d9xd3nw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "go.opencensus.io")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.20.1" ,go-google-golang-org-grpc-1.20.1) +; ("go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb" +; ,go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb) +; ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) +; ("go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd" +; ,go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd) +; ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" +; ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) +; ("go-github-com-stretchr-testify-1.4.0" +; ,go-github-com-stretchr-testify-1.4.0) +; ("go-github-com-google-go-cmp-0.3.0" +; ,go-github-com-google-go-cmp-0.3.0) +; ("go-github-com-golang-protobuf-1.3.1" +; ,go-github-com-golang-protobuf-1.3.1) +; ("go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6" +; ,go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6))) +; (home-page "https://go.opencensus.io") +; (synopsis "OpenCensus Libraries for Go") +; (description "Package opencensus contains Go support for OpenCensus. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a +; (package +; (name "go-golang-org-x-sync") +; (version "0.0.0-20200317015054-43a5402ce75a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sync") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0j6zrrb81qjr1926kkwmn0di9a0jn8qyjd9dw614rfkihxgq1vsm")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sync")) +; (home-page "https://golang.org/x/sync") +; (synopsis "Go Sync") +; (description +; "This repository provides Go concurrency primitives in addition to the +;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20200331124033-c3d80250170d +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20200331124033-c3d80250170d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1nswjhkg7yixla0b3d8xwzf94rawwyjrxipay3ffdvm426n0ld42")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-yuin-goldmark-1.1.25 +; (package +; (name "go-github-com-yuin-goldmark") +; (version "1.1.25") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/yuin/goldmark") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0cr3mk8pr7vsyisgrvln5ailnnn9xhardcy8mkshybk5c3n1kw5k")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/yuin/goldmark")) +; (home-page "https://github.com/yuin/goldmark") +; (synopsis "goldmark") +; (description +; "Package goldmark implements functions to convert markdown text to a desired format. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-mod-0.2.0 +; (package +; (name "go-golang-org-x-mod") +; (version "0.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/mod") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1fp6885dclq77mh73v7i54v2b9llpv4di193zc8vmsbbkkc483cl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/mod")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" +; ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) +; ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" +; ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) +; ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" +; ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) +; (home-page "https://golang.org/x/mod") +; (synopsis "mod") +; (description +; "This repository holds packages for writing tools +;that work directly with Go module mechanics. +;That is, it is for direct manipulation of Go modules themselves.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20200226121028-0de0cce0169b") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1db7s5kbzyh2zd5lpv05n7hp8wbwdvgk0wpiwrlnig94mkr0y5aq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e +; (package +; (name "go-golang-org-x-sync") +; (version "0.0.0-20190911185100-cd5d95a43a6e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sync") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1nqkyz2y1qvqcma52ijh02s8aiqmkfb95j08f6zcjhbga3ds6hds")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sync")) +; (home-page "https://golang.org/x/sync") +; (synopsis "Go Sync") +; (description +; "This repository provides Go concurrency primitives in addition to the +;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20200331025713-a30bf2db82d4 +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20200331025713-a30bf2db82d4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1rb488ydwi24zmd1zvsv8k8srs3q6xnqqfdar538hssqgljyvp7l")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" +; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) +; ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" +; ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) +; ("go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b" +; ,go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b) +; ("go-golang-org-x-mod-0.2.0" ,go-golang-org-x-mod-0.2.0) +; ("go-github-com-yuin-goldmark-1.1.25" +; ,go-github-com-yuin-goldmark-1.1.25))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-appengine-1.6.5 +; (package +; (name "go-google-golang-org-appengine") +; (version "1.6.5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/appengine") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "05hbq4cs7bqw0zl17bx8rzdkszid3nyl92100scg3jjrg70dhm7w")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/appengine")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) +; ("go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65" +; ,go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65) +; ("go-github-com-golang-protobuf-1.3.1" +; ,go-github-com-golang-protobuf-1.3.1))) +; (home-page "https://google.golang.org/appengine") +; (synopsis "Go App Engine packages") +; (description +; "Package appengine provides basic functionality for Google App Engine. +;") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20200331122359-1ee6d9798940 +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20200331122359-1ee6d9798940") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1zsp55d7xjc0b3yw5jjpvbsc0gkji1c1j2vxmcwm89dh26rz4jwd")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" +; ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) +; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) +; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" +; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-github-com-golang-protobuf-1.3.3" +; ,go-github-com-golang-protobuf-1.3.3))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-grpc-1.28.0 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.28.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1m36rg3w2mf4r3383yf0r1pjrz890mdw506h1lpm6bkc8w3kyqz3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" +; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-github-com-google-go-cmp-0.2.0" +; ,go-github-com-google-go-cmp-0.2.0) +; ("go-github-com-golang-protobuf-1.3.3" +; ,go-github-com-golang-protobuf-1.3.3) +; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" +; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) +; ("go-github-com-envoyproxy-go-control-plane-0.9.4" +; ,go-github-com-envoyproxy-go-control-plane-0.9.4))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-api-0.29.0 +; (package +; (name "go-google-golang-org-api") +; (version "0.29.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-api-go-client") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1y6izqcc6krill33pb57fbgbs7ni3jxyf3knm5jkl4qydsj9303h")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/api")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.28.0" ,go-google-golang-org-grpc-1.28.0) +; ("go-google-golang-org-genproto-0.0.0-20200331122359-1ee6d9798940" +; ,go-google-golang-org-genproto-0.0.0-20200331122359-1ee6d9798940) +; ("go-google-golang-org-appengine-1.6.5" +; ,go-google-golang-org-appengine-1.6.5) +; ("go-golang-org-x-tools-0.0.0-20200331025713-a30bf2db82d4" +; ,go-golang-org-x-tools-0.0.0-20200331025713-a30bf2db82d4) +; ("go-golang-org-x-sys-0.0.0-20200331124033-c3d80250170d" +; ,go-golang-org-x-sys-0.0.0-20200331124033-c3d80250170d) +; ("go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a" +; ,go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a) +; ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" +; ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) +; ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" +; ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) +; ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) +; ("go-github-com-googleapis-gax-go-v2-2.0.5" +; ,go-github-com-googleapis-gax-go-v2-2.0.5) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-cloud-google-com-go-0.56.0" ,go-cloud-google-com-go-0.56.0))) +; (home-page "https://google.golang.org/api") +; (synopsis "Google APIs Client Library for Go") +; (description +; "Package api is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of +;sub-packages. +;") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20200729003335-053ba62fc06f +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20200729003335-053ba62fc06f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1h34qgr4lqy1l0niay3gzqh6pc63y2xh1mmp8757y8jsrdz1s5fv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.24.0" +; ,go-google-golang-org-protobuf-1.24.0) +; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) +; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" +; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-github-com-golang-protobuf-1.4.1" +; ,go-github-com-golang-protobuf-1.4.1))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-grpc-1.30.0 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.30.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "05pb9xrxd7kpbi8zzby90f87b6sxq65nmpgqx5h3255whmmpzbi9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" +; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.3.3" +; ,go-github-com-golang-protobuf-1.3.3) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-envoyproxy-go-control-plane-0.9.4" +; ,go-github-com-envoyproxy-go-control-plane-0.9.4) +; ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" +; ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-cloud-google-com-go-0.62.0 +; (package +; (name "go-cloud-google-com-go") +; (version "0.62.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-cloud-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "00x1nlq4fvvxrwx24firscav511qwck3zl6ghs9p6zzzixla8r5h")))) +; (build-system go-build-system) +; (arguments '(#:import-path "cloud.google.com/go")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.25.0" +; ,go-google-golang-org-protobuf-1.25.0) +; ("go-google-golang-org-grpc-1.30.0" ,go-google-golang-org-grpc-1.30.0) +; ("go-google-golang-org-genproto-0.0.0-20200729003335-053ba62fc06f" +; ,go-google-golang-org-genproto-0.0.0-20200729003335-053ba62fc06f) +; ("go-google-golang-org-api-0.29.0" ,go-google-golang-org-api-0.29.0) +; ("go-golang-org-x-tools-0.0.0-20200729194436-6467de6f59a7" +; ,go-golang-org-x-tools-0.0.0-20200729194436-6467de6f59a7) +; ("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) +; ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" +; ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) +; ("go-golang-org-x-net-0.0.0-20200707034311-ab3426394381" +; ,go-golang-org-x-net-0.0.0-20200707034311-ab3426394381) +; ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" +; ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) +; ("go-go-opencensus-io-0.22.4" ,go-go-opencensus-io-0.22.4) +; ("go-github-com-jstemmer-go-junit-report-0.9.1" +; ,go-github-com-jstemmer-go-junit-report-0.9.1) +; ("go-github-com-googleapis-gax-go-v2-2.0.5" +; ,go-github-com-googleapis-gax-go-v2-2.0.5) +; ("go-github-com-google-pprof-0.0.0-20200708004538-1a94d8640e99" +; ,go-github-com-google-pprof-0.0.0-20200708004538-1a94d8640e99) +; ("go-github-com-google-martian-v3-3.0.0" +; ,go-github-com-google-martian-v3-3.0.0) +; ("go-github-com-google-go-cmp-0.5.1" +; ,go-github-com-google-go-cmp-0.5.1) +; ("go-github-com-golang-protobuf-1.4.2" +; ,go-github-com-golang-protobuf-1.4.2) +; ("go-github-com-golang-mock-1.4.3" ,go-github-com-golang-mock-1.4.3) +; ("go-cloud-google-com-go-storage-1.10.0" +; ,go-cloud-google-com-go-storage-1.10.0))) +; (home-page "https://cloud.google.com/go") +; (synopsis "Google Cloud Client Libraries for Go") +; (description +; "Package cloud is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +;of sub-packages. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-google-go-cmp-0.5.1 +; (package +; (name "go-github-com-google-go-cmp") +; (version "0.5.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/go-cmp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1wjdid59brciv09agxgmqac5k9ywg63nhzb0yi9anmqpl38gps0p")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/go-cmp")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" +; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) +; (home-page "https://github.com/google/go-cmp") +; (synopsis "Package for equality of Go values") +; (description +; "This package is intended to be a more powerful and safer alternative to +;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") +; (license license:bsd-3))) +; +;(define-public go-github-com-googleapis-gax-go-v2-2.0.5 +; (package +; (name "go-github-com-googleapis-gax-go-v2") +; (version "2.0.5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/gax-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1lxawwngv6miaqd25s3ba0didfzylbwisd2nz7r4gmbmin6jsjrx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/googleapis/gax-go/v2")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.19.0" +; ,go-google-golang-org-grpc-1.19.0))) +; (home-page "https://github.com/googleapis/gax-go") +; (synopsis #f) +; (description +; "Package gax contains a set of modules which aid the development of APIs +;for clients and servers based on gRPC and Google API conventions. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6 +; (package +; (name "go-github-com-golang-groupcache") +; (version "0.0.0-20190702054246-869f871628b6") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/groupcache") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0r4nk8129bvx50qb4xzjaay39b2h6k7cbdqqzdlanmc82ygczsbw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/groupcache")) +; (home-page "https://github.com/golang/groupcache") +; (synopsis "groupcache") +; (description +; "Package groupcache provides a data loading mechanism with caching +;and de-duplication that works across a set of peer processes. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190502145724-3ef323f4f1fd") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "15iw4gjvrnrx98rlny1qcaprp3577rh2b77byb38dr6m3q42rvc6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6 +; (package +; (name "go-golang-org-x-sync") +; (version "0.0.0-20190227155943-e225da77a7e6") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sync") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0bh3583smcfw6jw3w6lp0za93rz7hpxfdz8vhxng75b7a6vdlw4p")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sync")) +; (home-page "https://golang.org/x/sync") +; (synopsis "Go Sync") +; (description +; "This repository provides Go concurrency primitives in addition to the +;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20190425155659-357c62f0e4bb") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1h1a0wys83cc86s4w2hqmz78ixijw8f7qchmiwdv5xjvpg0i27c2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" +; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) +; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) +; ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" +; ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) +; ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" +; ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) +; ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" +; ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd) +; ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" +; ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) +; ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" +; ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-grpc-1.20.1 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.20.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0rj3fs6jillapiwnpkfn3v2jbl7a3zsb0lys4srswl26hjijviqq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" +; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) +; ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" +; ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) +; ("go-google-golang-org-appengine-1.1.0" +; ,go-google-golang-org-appengine-1.1.0) +; ("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" +; ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" +; ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0) +; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-client9-misspell-0.3.4" +; ,go-github-com-client9-misspell-0.3.4) +; ("go-github-com-burntsushi-toml-0.3.1" +; ,go-github-com-burntsushi-toml-0.3.1) +; ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-go-opencensus-io-0.22.4 +; (package +; (name "go-go-opencensus-io") +; (version "0.22.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/census-instrumentation/opencensus-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "10skbvs4yxjm3z10yfg5cj2mdzjsna87qk1icp9xv0iwp8wzq6h0")))) +; (build-system go-build-system) +; (arguments '(#:import-path "go.opencensus.io")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.20.1" ,go-google-golang-org-grpc-1.20.1) +; ("go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb" +; ,go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb) +; ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) +; ("go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd" +; ,go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd) +; ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" +; ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) +; ("go-github-com-stretchr-testify-1.4.0" +; ,go-github-com-stretchr-testify-1.4.0) +; ("go-github-com-google-go-cmp-0.3.0" +; ,go-github-com-google-go-cmp-0.3.0) +; ("go-github-com-golang-protobuf-1.3.1" +; ,go-github-com-golang-protobuf-1.3.1) +; ("go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6" +; ,go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6))) +; (home-page "https://go.opencensus.io") +; (synopsis "OpenCensus Libraries for Go") +; (description "Package opencensus contains Go support for OpenCensus. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b +; (package +; (name "go-golang-org-x-lint") +; (version "0.0.0-20200302205851-738671d3881b") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/lint") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0jkiz4py59jjnkyxbxifpf7bsar11lbgmj5jiq2kic5k03shkn9c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/lint")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7" +; ,go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7))) +; (home-page "https://golang.org/x/lint") +; (synopsis "Installation") +; (description "Package lint contains a linter for Go source code. +;") +; (license license:bsd-3))) +; +;(define-public go-cloud-google-com-go-0.34.0 +; (package +; (name "go-cloud-google-com-go") +; (version "0.34.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-cloud-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1kclgclwar3r37zbvb9gg3qxbgzkb50zk3s9778zlh2773qikmai")))) +; (build-system go-build-system) +; (arguments '(#:import-path "cloud.google.com/go")) +; (home-page "https://cloud.google.com/go") +; (synopsis "Google Cloud Client Libraries for Go") +; (description +; "Package cloud is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +;of sub-packages. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190108225652-1e06a53dbb7e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0lpqqvdccby48nixihvmn8ig1z48b950m1bxfqxn78air308qc3j")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4 +; (package +; (name "go-golang-org-x-sync") +; (version "0.0.0-20181221193216-37e7f081c4d4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sync") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1bb0mw6ckb1k7z8v3iil2qlqwfj408fvvp8m1cik2b46p7snyjhm")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sync")) +; (home-page "https://golang.org/x/sync") +; (synopsis "Go Sync") +; (description +; "This repository provides Go concurrency primitives in addition to the +;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d +; (package +; (name "go-golang-org-x-oauth2") +; (version "0.0.0-20200107190931-bf48bf16ab8d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/oauth2") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1sirdib60zwmh93kf9qrx51r8544k1p9rs5mk0797wibz3m4mrdg")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/oauth2")) +; (propagated-inputs +; `(("go-google-golang-org-appengine-1.4.0" +; ,go-google-golang-org-appengine-1.4.0) +; ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" +; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) +; ("go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e" +; ,go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e) +; ("go-cloud-google-com-go-0.34.0" ,go-cloud-google-com-go-0.34.0))) +; (home-page "https://golang.org/x/oauth2") +; (synopsis "OAuth2 for Go") +; (description +; "Package oauth2 provides support for making +;OAuth2 authorized and authenticated HTTP requests, +;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +;It can additionally grant authorization with Bearer JWT. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20200803210538-64077c9b5642 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20200803210538-64077c9b5642") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1pdrkim9v0wbxipl586d29vz4ci9xib0f02g6yv7c0nang627pag")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-yuin-goldmark-1.1.32 +; (package +; (name "go-github-com-yuin-goldmark") +; (version "1.1.32") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/yuin/goldmark") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "03i9yq6n3yvn5v70xi6x3pn49ndy8zm4217ihwwhlw2nkwhny7a5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/yuin/goldmark")) +; (home-page "https://github.com/yuin/goldmark") +; (synopsis "goldmark") +; (description +; "Package goldmark implements functions to convert markdown text to a desired format. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-net-0.0.0-20200625001655-4c5254603344 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20200625001655-4c5254603344") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1da0a1m488d95vggpi52dkag98n5671ml6sn80nwv6lgbmdx8qbq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" +; ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) +; ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" +; ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208 +; (package +; (name "go-golang-org-x-sync") +; (version "0.0.0-20200625203802-6e8e738ad208") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sync") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1avk27pszd5l5df6ff7j78wgla46ir1hhy2jwfl9a3c0ys602yx9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sync")) +; (home-page "https://golang.org/x/sync") +; (synopsis "Go Sync") +; (description +; "This repository provides Go concurrency primitives in addition to the +;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20200804011535-6c149bb5ef0d +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20200804011535-6c149bb5ef0d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1l244hp5n0qff7nmvcffggjv7jm4061g63g76z967zvdqcxh23i2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" +; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) +; ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" +; ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) +; ("go-golang-org-x-net-0.0.0-20200625001655-4c5254603344" +; ,go-golang-org-x-net-0.0.0-20200625001655-4c5254603344) +; ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) +; ("go-github-com-yuin-goldmark-1.1.32" +; ,go-github-com-yuin-goldmark-1.1.32))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20200804131852-c06518451d9c +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20200804131852-c06518451d9c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0wl9bhr94yf0b8lc947zr0iwm3l20irzy869xczfd6z0a1g54gsa")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.24.0" +; ,go-google-golang-org-protobuf-1.24.0) +; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) +; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" +; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-github-com-golang-protobuf-1.4.1" +; ,go-github-com-golang-protobuf-1.4.1))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-api-0.30.0 +; (package +; (name "go-google-golang-org-api") +; (version "0.30.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-api-go-client") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1vh5rrc6hvzh1rqawrwr4nyilnr3dgqx1pr2njjzdg0prfmflm5p")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/api")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.31.0" ,go-google-golang-org-grpc-1.31.0) +; ("go-google-golang-org-genproto-0.0.0-20200804131852-c06518451d9c" +; ,go-google-golang-org-genproto-0.0.0-20200804131852-c06518451d9c) +; ("go-google-golang-org-appengine-1.6.6" +; ,go-google-golang-org-appengine-1.6.6) +; ("go-golang-org-x-tools-0.0.0-20200804011535-6c149bb5ef0d" +; ,go-golang-org-x-tools-0.0.0-20200804011535-6c149bb5ef0d) +; ("go-golang-org-x-sys-0.0.0-20200803210538-64077c9b5642" +; ,go-golang-org-x-sys-0.0.0-20200803210538-64077c9b5642) +; ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" +; ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) +; ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" +; ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) +; ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" +; ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) +; ("go-go-opencensus-io-0.22.4" ,go-go-opencensus-io-0.22.4) +; ("go-github-com-googleapis-gax-go-v2-2.0.5" +; ,go-github-com-googleapis-gax-go-v2-2.0.5) +; ("go-github-com-google-go-cmp-0.5.1" +; ,go-github-com-google-go-cmp-0.5.1) +; ("go-cloud-google-com-go-0.62.0" ,go-cloud-google-com-go-0.62.0))) +; (home-page "https://google.golang.org/api") +; (synopsis "Google APIs Client Library for Go") +; (description +; "Package api is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of +;sub-packages. +;") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-1.24.0 +; (package +; (name "go-google-golang-org-protobuf") +; (version "1.24.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0x3qyn3rizbs671gs7f8v50rmiwf9h7kbaradpivw9718mhbg1gn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" +; ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.4.1" +; ,go-github-com-golang-protobuf-1.4.1))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20200825200019-8632dd797987 +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20200825200019-8632dd797987") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0h8s1mz8pbdiwmv2g61afa7f05zin3m6mdy2fmny6wcidz4w2i3k")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.24.0" +; ,go-google-golang-org-protobuf-1.24.0) +; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) +; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" +; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-github-com-golang-protobuf-1.4.1" +; ,go-github-com-golang-protobuf-1.4.1))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f +; (package +; (name "go-github-com-cncf-udpa-go") +; (version "0.0.0-20191209042840-269d4d468f6f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/cncf/udpa") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0i1jiaw2k3hlwwmg4hap81vb4s1p25xp9kdfww37v0fbgjariccs")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path +; "github.com/cncf/udpa/go" +; #:unpack-path +; "github.com/cncf/udpa")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2) +; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" +; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0))) +; (home-page "https://github.com/cncf/udpa") +; (synopsis "Description") +; (description +; "This library has been deprecated in favor of @code{github.com/cncf/xds/go}. All users are recommended to switch their imports.") +; (license license:asl2.0))) +; +;(define-public go-github-com-envoyproxy-go-control-plane-0.9.4 +; (package +; (name "go-github-com-envoyproxy-go-control-plane") +; (version "0.9.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/envoyproxy/go-control-plane") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0m0crzx70lp7vz13v20wxb1fcfdnzp7h3mkh3bn6a8mbfz6w5asj")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) +; ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" +; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) +; ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" +; ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) +; ("go-github-com-google-go-cmp-0.2.0" +; ,go-github-com-google-go-cmp-0.2.0) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2) +; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" +; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) +; ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" +; ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f) +; ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" +; ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) +; (home-page "https://github.com/envoyproxy/go-control-plane") +; (synopsis "control-plane") +; (description +; "This repository contains a Go-based implementation of an API server that +;implements the discovery service APIs defined in +;@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") +; (license license:asl2.0))) +; +;(define-public go-github-com-golang-protobuf-1.3.3 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.3.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1cyyr52yhj3fzrily3rmsbqyj8va4ld75lmry0857m39rgpv8sy1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-grpc-1.31.0 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.31.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1y3lilpipmaysjk4skbzw1qa6lv05vzixzw9lg9x73xfb01q4nyz")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" +; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.3.3" +; ,go-github-com-golang-protobuf-1.3.3) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-envoyproxy-go-control-plane-0.9.4" +; ,go-github-com-envoyproxy-go-control-plane-0.9.4) +; ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" +; ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-cloud-google-com-go-0.65.0 +; (package +; (name "go-cloud-google-com-go") +; (version "0.65.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-cloud-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0xrcg39jrw90gq8vl8pfq63sp3bkak04wh392yj5rh4lc1a4lxjq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "cloud.google.com/go")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.31.0" ,go-google-golang-org-grpc-1.31.0) +; ("go-google-golang-org-genproto-0.0.0-20200825200019-8632dd797987" +; ,go-google-golang-org-genproto-0.0.0-20200825200019-8632dd797987) +; ("go-google-golang-org-api-0.30.0" ,go-google-golang-org-api-0.30.0) +; ("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" +; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) +; ("go-golang-org-x-tools-0.0.0-20200825202427-b303f430e36d" +; ,go-golang-org-x-tools-0.0.0-20200825202427-b303f430e36d) +; ("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) +; ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" +; ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) +; ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" +; ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) +; ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" +; ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) +; ("go-go-opencensus-io-0.22.4" ,go-go-opencensus-io-0.22.4) +; ("go-github-com-jstemmer-go-junit-report-0.9.1" +; ,go-github-com-jstemmer-go-junit-report-0.9.1) +; ("go-github-com-googleapis-gax-go-v2-2.0.5" +; ,go-github-com-googleapis-gax-go-v2-2.0.5) +; ("go-github-com-google-pprof-0.0.0-20200708004538-1a94d8640e99" +; ,go-github-com-google-pprof-0.0.0-20200708004538-1a94d8640e99) +; ("go-github-com-google-martian-v3-3.0.0" +; ,go-github-com-google-martian-v3-3.0.0) +; ("go-github-com-google-go-cmp-0.5.1" +; ,go-github-com-google-go-cmp-0.5.1) +; ("go-github-com-golang-protobuf-1.4.2" +; ,go-github-com-golang-protobuf-1.4.2) +; ("go-github-com-golang-mock-1.4.4" ,go-github-com-golang-mock-1.4.4) +; ("go-cloud-google-com-go-storage-1.10.0" +; ,go-cloud-google-com-go-storage-1.10.0))) +; (home-page "https://cloud.google.com/go") +; (synopsis "Google Cloud Client Libraries for Go") +; (description +; "Package cloud is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +;of sub-packages. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20200323222414-85ca7c5b95cd") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1504qkgbhhm4f0bhk77v2r1lj6x171ay5m79alkg78wjb5cign5l")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20200822124328-c89045814202 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20200822124328-c89045814202") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1g3wxilwbcbf2xj20y3mpxh38jka4fyhl48akfqf00vr48zmx96x")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" +; ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) +; ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" +; ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-appengine-1.6.6 +; (package +; (name "go-google-golang-org-appengine") +; (version "1.6.6") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/appengine") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "15c38h6fbv06cnkr6yknygfrpibyms2mya4w0l29kaxf42jn1qi5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/appengine")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) +; ("go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65" +; ,go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65) +; ("go-github-com-golang-protobuf-1.3.1" +; ,go-github-com-golang-protobuf-1.3.1))) +; (home-page "https://google.golang.org/appengine") +; (synopsis "Go App Engine packages") +; (description +; "Package appengine provides basic functionality for Google App Engine. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-oauth2-0.0.0-20210402161424-2e8d93401602 +; (package +; (name "go-golang-org-x-oauth2") +; (version "0.0.0-20210402161424-2e8d93401602") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/oauth2") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0j1crxa78gip3hxrds5jngi034j4zm4q3z7r8bqs3rjxnwcki9ig")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/oauth2")) +; (propagated-inputs +; `(("go-google-golang-org-appengine-1.6.6" +; ,go-google-golang-org-appengine-1.6.6) +; ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" +; ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) +; ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) +; (home-page "https://golang.org/x/oauth2") +; (synopsis "OAuth2 for Go") +; (description +; "Package oauth2 provides support for making +;OAuth2 authorized and authenticated HTTP requests, +;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +;It can additionally grant authorization with Bearer JWT. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c +; (package +; (name "go-golang-org-x-sync") +; (version "0.0.0-20210220032951-036812b2e83c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sync") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1gl202py3s4gl6arkaxlf8qa6f0jyyg2f95m6f89qnfmr416h85b")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sync")) +; (home-page "https://golang.org/x/sync") +; (synopsis "Go Sync") +; (description +; "This repository provides Go concurrency primitives in addition to the +;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20210403161142-5e06dd20ab57 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20210403161142-5e06dd20ab57") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1acdn06771rxjg38ql9wl8dr1vf23nazjnvk6105z3hddnh14fgb")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.3.1 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.3.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "15am4s4646qy6iv0g3kkqq52rzykqjhm4bf08dk0fy2r58knpsyl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190603091049-60506f45cf65") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0827yz7irmnzcdhw8vg74819jaw5ahs4w4v5fvzgfvnxyb9f6zcc")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-text-0.3.2 +; (package +; (name "go-golang-org-x-text") +; (version "0.3.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/text") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0flv9idw0jm5nm8lx25xqanbkqgfiym6619w575p7nrdh0riqwqh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/text")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" +; ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) +; (home-page "https://golang.org/x/text") +; (synopsis "Go Text") +; (description +; "text is a repository of text-related packages related to internationalization +;(i18n) and localization (l10n), such as character encodings, text +;transformations, and locale-specific text handling. +;") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-appengine-1.6.7 +; (package +; (name "go-google-golang-org-appengine") +; (version "1.6.7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/appengine") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1wkipg7xxc0ha5p6c3bj0vpgq38l18441n5l6zxdhx0gzvz5z1hs")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/appengine")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) +; ("go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65" +; ,go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65) +; ("go-github-com-golang-protobuf-1.3.1" +; ,go-github-com-golang-protobuf-1.3.1))) +; (home-page "https://google.golang.org/appengine") +; (synopsis "Go App Engine packages") +; (description +; "Package appengine provides basic functionality for Google App Engine. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-golang-protobuf-1.5.1 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.5.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1qx8gvsdx1w27vamw6wn1jns2d8pz0g9sji3l0hvs4wl1jf7p32d")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.26.0" +; ,go-google-golang-org-protobuf-1.26.0) +; ("go-github-com-google-go-cmp-0.5.5" +; ,go-github-com-google-go-cmp-0.5.5))) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-mod-0.1.1-0.20191105210325-c90efee705ee +; (package +; (name "go-golang-org-x-mod") +; (version "0.1.1-0.20191105210325-c90efee705ee") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/mod") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0i5md645rmcy5z5ij9ng428k9rz4g3k1kjy3blsq1264rn426gdf")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/mod")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" +; ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) +; ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" +; ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) +; (home-page "https://golang.org/x/mod") +; (synopsis "mod") +; (description +; "This repository holds packages for writing tools +;that work directly with Go module mechanics. +;That is, it is for direct manipulation of Go modules themselves.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7 +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20200130002326-2f3ba24bd6e7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0j3nnmlwnbivf0h9x89vlp8ji3ha41v96bj33cxwmrrjnxq543ww")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" +; ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) +; ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" +; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) +; ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" +; ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) +; ("go-golang-org-x-mod-0.1.1-0.20191105210325-c90efee705ee" +; ,go-golang-org-x-mod-0.1.1-0.20191105210325-c90efee705ee))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5 +; (package +; (name "go-golang-org-x-lint") +; (version "0.0.0-20201208152925-83fdc39ff7b5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/lint") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ms3rs5hvpnm9bxbr5f9743i7hn2bbmqdmvzxq6nmi0f24ypv1l3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/lint")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7" +; ,go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7))) +; (home-page "https://golang.org/x/lint") +; (synopsis "Installation") +; (description "Package lint contains a linter for Go source code. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20210315160823-c6e025ad8005 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20210315160823-c6e025ad8005") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1dy8j3gvbkng0vy2wgdiy48871j4vchgsks2ggfxcx4jg32d2qsr")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20210316092652-d523dce5a7f4 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20210316092652-d523dce5a7f4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "01hhvh6msyg11adxhgjwzbv4jprq5ajzkxxb16ln3dqv4na9b2k1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) +; ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" +; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) +; ("go-golang-org-x-sys-0.0.0-20210315160823-c6e025ad8005" +; ,go-golang-org-x-sys-0.0.0-20210315160823-c6e025ad8005))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20210320140829-1e4c9ba3b0c4 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20210320140829-1e4c9ba3b0c4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0nrxjq5j058sba9s5g65l5rdw6b4f335lxa7hhcf57paklym1qgr")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-text-0.3.5 +; (package +; (name "go-golang-org-x-text") +; (version "0.3.5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/text") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "082s9d7wnh1aa2v08g3h5z4if2f8hl4y01pb788qsvab9329lj0w")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/text")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" +; ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) +; (home-page "https://golang.org/x/text") +; (synopsis "Go Text") +; (description +; "text is a repository of text-related packages related to internationalization +;(i18n) and localization (l10n), such as character encodings, text +;transformations, and locale-specific text handling. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-yuin-goldmark-1.2.1 +; (package +; (name "go-github-com-yuin-goldmark") +; (version "1.2.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/yuin/goldmark") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "12rsnsf65drcp0jfw2jl9w589vsn3pxdk1zh3v9q908iigngrcmy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/yuin/goldmark")) +; (home-page "https://github.com/yuin/goldmark") +; (synopsis "goldmark") +; (description +; "Package goldmark implements functions to convert markdown text to a desired format. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20191011191535-87dc89f01550") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0z4i1m2yn3f31ci7wvcm2rxkx2yiv7a78mfzklncmsz2k97rlh2g")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" +; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) +; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" +; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190620200207-3b0461eec859") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0l00c8l0a8xnv6qdpwfzxxsr58jggacgzdrwiprrfx2xqm37b6d5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7 +; (package +; (name "go-golang-org-x-xerrors") +; (version "0.0.0-20190717185122-a985d3407aa7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/xerrors") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "00wzr5w8aadipgc3rkk8f11i41znskfj9ix5nhhaxyg7isrslgcj")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/xerrors")) +; (home-page "https://golang.org/x/xerrors") +; (synopsis #f) +; (description +; "Package xerrors implements functions to manipulate errors. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20191119224855-298f0cb1881e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0l4pqwib2wnfnix6nvxl0yrq87ipi7ff1rz6z5bxfzy9dki1nzmv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7" +; ,go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7) +; ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" +; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) +; ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" +; ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898 +; (package +; (name "go-golang-org-x-xerrors") +; (version "0.0.0-20191011141410-1b5146add898") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/xerrors") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0w2akj91krxjag0xdhsg78470888nicc5ismc2ap9jqpss6v1zih")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/xerrors")) +; (home-page "https://golang.org/x/xerrors") +; (synopsis #f) +; (description +; "Package xerrors implements functions to manipulate errors. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-mod-0.3.0 +; (package +; (name "go-golang-org-x-mod") +; (version "0.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/mod") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ldgbx2zpprbsfn6p8pfgs4nn87gwbfcv2z0fa7n8alwsq2yw78q")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/mod")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" +; ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) +; ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" +; ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) +; ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" +; ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) +; (home-page "https://golang.org/x/mod") +; (synopsis "mod") +; (description +; "This repository holds packages for writing tools +;that work directly with Go module mechanics. +;That is, it is for direct manipulation of Go modules themselves.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20200622213623-75b288015ac9") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "18vlncvvs11ds3zaaziqjlg5s2vcwi3496nn6qv7p0dp94j5pwa2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" +; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) +; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" +; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20200930185726-fdedc70b468f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1njlfhjbvi4lxvjbq8zswrb0y0q4jd2p6x51h1q6vmyzi9af6869")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20201021035429-f5854403a974 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20201021035429-f5854403a974") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1vw63zpmhi337f3gc432x3wkib4j2ia8dy7if31wxwb9dgqvy222")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) +; ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" +; ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) +; ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" +; ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9 +; (package +; (name "go-golang-org-x-sync") +; (version "0.0.0-20201020160332-67f06af15bc9") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sync") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "093p4panc808ak5bamzz7m9nb0xxib7778jpnr6f0xkz1n4fzyw5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sync")) +; (home-page "https://golang.org/x/sync") +; (synopsis "Go Sync") +; (description +; "This repository provides Go concurrency primitives in addition to the +;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20210119212857-b64e53b001e4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "16in6bazi0frdkzhqxyvmw7qcvzjavq21dnz9bmrqq8d4dpd2j44")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1 +; (package +; (name "go-golang-org-x-xerrors") +; (version "0.0.0-20200804184101-5ec99f83aff1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/xerrors") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1dbzc3gmf2haazpv7cgmv97rq40g2xzwbglc17vas8dwhgwgwrzb")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/xerrors")) +; (home-page "https://golang.org/x/xerrors") +; (synopsis #f) +; (description +; "Package xerrors implements functions to manipulate errors. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.1.0 +; (package +; (name "go-golang-org-x-tools") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1asrm22kv5x891qkbpap8alg612k321jbs1akc0vwsan251gm507")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" +; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) +; ("go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4" +; ,go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4) +; ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" +; ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) +; ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" +; ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) +; ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) +; ("go-github-com-yuin-goldmark-1.2.1" +; ,go-github-com-yuin-goldmark-1.2.1))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-1.26.0-rc.1 +; (package +; (name "go-google-golang-org-protobuf") +; (version "1.26.0-rc.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1m2jp247qcnix42jncn0q7pwrjgbhiqllb1115hfsz40xfnfhp8j")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.5.5" +; ,go-github-com-google-go-cmp-0.5.5))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.5.0 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.5.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1craaxv34g4g8q3yrv6pr28fx9ihnk7hj5gnbmxcrhcp78423lnf")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.26.0-rc.1" +; ,go-google-golang-org-protobuf-1.26.0-rc.1) +; ("go-github-com-google-go-cmp-0.5.5" +; ,go-github-com-google-go-cmp-0.5.5))) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-github-com-google-go-cmp-0.5.5 +; (package +; (name "go-github-com-google-go-cmp") +; (version "0.5.5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/go-cmp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "12fmkdhyv5d4is8s57k78j097zb0phlgnrkqc03agiszxlid69x7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/go-cmp")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" +; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) +; (home-page "https://github.com/google/go-cmp") +; (synopsis "Package for equality of Go values") +; (description +; "This package is intended to be a more powerful and safer alternative to +;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-1.26.0 +; (package +; (name "go-google-golang-org-protobuf") +; (version "1.26.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0xq6phaps6d0vcv13ga59gzj4306l0ki9kikhmb52h6pq0iwfqlz")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.5.5" +; ,go-github-com-google-go-cmp-0.5.5) +; ("go-github-com-golang-protobuf-1.5.0" +; ,go-github-com-golang-protobuf-1.5.0))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20210402141018-6c239bbf2bb1 +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20210402141018-6c239bbf2bb1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1xih6y4dwjj939ilwc5s6w419kjnkn1hw33jsgml0nkjcnac74wc")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.26.0" +; ,go-google-golang-org-protobuf-1.26.0) +; ("go-google-golang-org-grpc-1.36.1" ,go-google-golang-org-grpc-1.36.1) +; ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) +; ("go-golang-org-x-text-0.3.5" ,go-golang-org-x-text-0.3.5) +; ("go-golang-org-x-sys-0.0.0-20210320140829-1e4c9ba3b0c4" +; ,go-golang-org-x-sys-0.0.0-20210320140829-1e4c9ba3b0c4) +; ("go-golang-org-x-net-0.0.0-20210316092652-d523dce5a7f4" +; ,go-golang-org-x-net-0.0.0-20210316092652-d523dce5a7f4) +; ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" +; ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) +; ("go-github-com-golang-protobuf-1.5.1" +; ,go-github-com-golang-protobuf-1.5.1))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad +; (package +; (name "go-github-com-envoyproxy-go-control-plane") +; (version "0.9.9-0.20201210154907-fd9021fe5dad") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/envoyproxy/go-control-plane") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0piyk6pk36x2qr3bhys2k240pfwz3bv64fhi2l0vx1mzwiddapbm")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.23.0" +; ,go-google-golang-org-protobuf-1.23.0) +; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) +; ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" +; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) +; ("go-github-com-stretchr-testify-1.5.1" +; ,go-github-com-stretchr-testify-1.5.1) +; ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" +; ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.4.2" +; ,go-github-com-golang-protobuf-1.4.2) +; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" +; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) +; ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" +; ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403) +; ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" +; ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) +; (home-page "https://github.com/envoyproxy/go-control-plane") +; (synopsis "control-plane") +; (description +; "This repository contains a Go-based implementation of an API server that +;implements the discovery service APIs defined in +;@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-grpc-1.36.1 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.36.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0l3prxp18lb0pagqg4l6c9i0l6gakfxgf6vxcsv589i0xsxw8ivm")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.25.0" +; ,go-google-golang-org-protobuf-1.25.0) +; ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" +; ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) +; ("go-github-com-google-go-cmp-0.5.0" +; ,go-github-com-google-go-cmp-0.5.0) +; ("go-github-com-golang-protobuf-1.4.2" +; ,go-github-com-golang-protobuf-1.4.2) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad" +; ,go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad) +; ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" +; ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-api-0.44.0 +; (package +; (name "go-google-golang-org-api") +; (version "0.44.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-api-go-client") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0sh6qzc3pnyliy10afrmzpfbbbm2mwcyc6mp5422xhgp3p2x370x")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/api")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.36.1" ,go-google-golang-org-grpc-1.36.1) +; ("go-google-golang-org-genproto-0.0.0-20210402141018-6c239bbf2bb1" +; ,go-google-golang-org-genproto-0.0.0-20210402141018-6c239bbf2bb1) +; ("go-google-golang-org-appengine-1.6.7" +; ,go-google-golang-org-appengine-1.6.7) +; ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) +; ("go-golang-org-x-sys-0.0.0-20210403161142-5e06dd20ab57" +; ,go-golang-org-x-sys-0.0.0-20210403161142-5e06dd20ab57) +; ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" +; ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) +; ("go-golang-org-x-oauth2-0.0.0-20210402161424-2e8d93401602" +; ,go-golang-org-x-oauth2-0.0.0-20210402161424-2e8d93401602) +; ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" +; ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) +; ("go-go-opencensus-io-0.23.0" ,go-go-opencensus-io-0.23.0) +; ("go-github-com-googleapis-gax-go-v2-2.0.5" +; ,go-github-com-googleapis-gax-go-v2-2.0.5) +; ("go-github-com-google-go-cmp-0.5.5" +; ,go-github-com-google-go-cmp-0.5.5) +; ("go-cloud-google-com-go-0.81.0" ,go-cloud-google-com-go-0.81.0))) +; (home-page "https://google.golang.org/api") +; (synopsis "Google APIs Client Library for Go") +; (description +; "Package api is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of +;sub-packages. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-envoyproxy-go-control-plane-0.9.0 +; (package +; (name "go-github-com-envoyproxy-go-control-plane") +; (version "0.9.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/envoyproxy/go-control-plane") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1dpvi4wnycyj6hnai78fr8aj58b27b1vcwdp3v0id5v22kvgr3xw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.23.0" ,go-google-golang-org-grpc-1.23.0) +; ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" +; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) +; ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" +; ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2) +; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" +; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) +; ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" +; ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) +; (home-page "https://github.com/envoyproxy/go-control-plane") +; (synopsis "control-plane") +; (description +; "This repository contains a Go-based implementation of an API server that +;implements the discovery service APIs defined in +;@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-grpc-1.25.1 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.25.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0a136ij9p11yj1vx892yqy40jkh7n5nfbpdvhgydcj823mx51c6f")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" +; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-github-com-google-go-cmp-0.2.0" +; ,go-github-com-google-go-cmp-0.2.0) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2) +; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" +; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) +; ("go-github-com-envoyproxy-go-control-plane-0.9.0" +; ,go-github-com-envoyproxy-go-control-plane-0.9.0))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403 +; (package +; (name "go-github-com-cncf-udpa-go") +; (version "0.0.0-20201120205902-5459f2c99403") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/cncf/udpa") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0i3al193dsp91j7iywqrm6fr56y2sz51ci4vf19mb3j4n2x44gsi")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path +; "github.com/cncf/udpa/go" +; #:unpack-path +; "github.com/cncf/udpa")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2) +; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" +; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0))) +; (home-page "https://github.com/cncf/udpa") +; (synopsis "Description") +; (description +; "This library has been deprecated in favor of @code{github.com/cncf/xds/go}. All users are recommended to switch their imports.") +; (license license:asl2.0))) +; +;(define-public go-github-com-stretchr-testify-1.5.1 +; (package +; (name "go-github-com-stretchr-testify") +; (version "1.5.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/testify") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "09r89m1wy4cjv2nps1ykp00qjpi0531r07q3s34hr7m6njk4srkl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/testify")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) +; ("go-github-com-stretchr-objx-0.1.0" +; ,go-github-com-stretchr-objx-0.1.0) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.0" +; ,go-github-com-davecgh-go-spew-1.1.0))) +; (home-page "https://github.com/stretchr/testify") +; (synopsis "Testify - Thou Shalt Write Tests") +; (description +; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +;") +; (license license:expat))) +; +;(define-public go-github-com-envoyproxy-go-control-plane-0.9.9-0.20210217033140-668b12f5399d +; (package +; (name "go-github-com-envoyproxy-go-control-plane") +; (version "0.9.9-0.20210217033140-668b12f5399d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/envoyproxy/go-control-plane") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0vmhc8ii081x1k2qw4kji7wjyg6l25zp1y6qxi27wq8m341i4rzb")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.23.0" +; ,go-google-golang-org-protobuf-1.23.0) +; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) +; ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" +; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) +; ("go-github-com-stretchr-testify-1.5.1" +; ,go-github-com-stretchr-testify-1.5.1) +; ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" +; ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.4.2" +; ,go-github-com-golang-protobuf-1.4.2) +; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" +; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) +; ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" +; ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403) +; ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" +; ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) +; (home-page "https://github.com/envoyproxy/go-control-plane") +; (synopsis "control-plane") +; (description +; "This repository contains a Go-based implementation of an API server that +;implements the discovery service APIs defined in +;@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-protobuf-1.23.0 +; (package +; (name "go-google-golang-org-protobuf") +; (version "1.23.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "03yan0m1v0zmlr935p4n24fd376mznsg85zy8sywbgisls4s1bzy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.4.0" +; ,go-github-com-golang-protobuf-1.4.0))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.4.2 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.4.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0m5z81im4nsyfgarjhppayk4hqnrwswr3nix9mj8pff8x9jvcjqw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.23.0" +; ,go-google-golang-org-protobuf-1.23.0) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0))) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-github-com-google-uuid-1.1.2 +; (package +; (name "go-github-com-google-uuid") +; (version "1.1.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/uuid") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1rbpfa0v0ly9sdnixcxhf79swki54ikgm1zkwwkj64p1ws66syqd")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/uuid")) +; (home-page "https://github.com/google/uuid") +; (synopsis "uuid") +; (description "Package uuid generates and inspects UUIDs. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-google-go-cmp-0.5.0 +; (package +; (name "go-github-com-google-go-cmp") +; (version "0.5.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/go-cmp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "04pzp583p6b32y34c6jygfxarff9qjs39rarvfh6467z24sdd9k4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/go-cmp")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" +; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) +; (home-page "https://github.com/google/go-cmp") +; (synopsis "Package for equality of Go values") +; (description +; "This package is intended to be a more powerful and safer alternative to +;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-1.22.0 +; (package +; (name "go-google-golang-org-protobuf") +; (version "1.22.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0n7lc4m7kfvj01glc0gnjy0zsnsic7cxnbvlajy0h14cxbab87pj")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.4.0" +; ,go-github-com-golang-protobuf-1.4.0))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.4.1 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.4.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0w7ks4vffnnkp0miwgc3chrsnmya45lzvpahb2wmw0jwhdp5kdx7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.22.0" +; ,go-google-golang-org-protobuf-1.22.0) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0))) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-github-com-census-instrumentation-opencensus-proto-0.2.1 +; (package +; (name "go-github-com-census-instrumentation-opencensus-proto") +; (version "0.2.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/census-instrumentation/opencensus-proto") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19fcx3sc99i5dsklny6r073z5j20vlwn2xqm6di1q3b1xwchzqfj")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "github.com/census-instrumentation/opencensus-proto")) +; (home-page "https://github.com/census-instrumentation/opencensus-proto") +; (synopsis +; "OpenCensus Proto - Language Independent Interface Types For OpenCensus") +; (description +; "Census provides a framework to define and collect stats against metrics and to +;break those stats down across user-defined dimensions.") +; (license license:asl2.0))) +; +;(define-public go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4 +; (package +; (name "go-github-com-prometheus-client-model") +; (version "0.0.0-20190812154241-14fe0d1b01d4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/client_model") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0zdmk6rbbx39cvfz0r59v2jg5sg9yd02b4pds5n5llgvivi99550")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/client_model")) +; (propagated-inputs +; `(("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" +; ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0))) +; (home-page "https://github.com/prometheus/client_model") +; (synopsis "Deprecation note") +; (description +; "This repository used to contain the code that defined both +;the data model and the exposition format of Prometheus metrics.") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20190311212946-11955173bddd") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0hlkai67w167wiyivkzd1fgqrnyxkb94l2c6kr51jwcscizfyfn3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3 +; (package +; (name "go-golang-org-x-lint") +; (version "0.0.0-20190313153728-d0100b6bd8b3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/lint") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0b0amr9x4ji66iv9ayfx7zrfx52k1m5g66qfcxkgj80qrb1y2yn7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/lint")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" +; ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd))) +; (home-page "https://golang.org/x/lint") +; (synopsis "Installation") +; (description "Package lint contains a linter for Go source code. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sync-0.0.0-20190423024810-112230192c58 +; (package +; (name "go-golang-org-x-sync") +; (version "0.0.0-20190423024810-112230192c58") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sync") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "05i2k43j2d0llq768hg5pf3hb2yhfzp9la1w5wp0rsnnzblr0lfn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sync")) +; (home-page "https://golang.org/x/sync") +; (synopsis "Go Sync") +; (description +; "This repository provides Go concurrency primitives in addition to the +;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135 +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20190524140312-2c0ae7006135") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1lsi2ssxajclj3bciz2a41v1vjv768ja3v6wnbyhxy8xphwkp4fk")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" +; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-grpc-1.23.0 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.23.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1cn33r2gclmq2v1ndpf1n5bmhf2qs8mms7ii5cnl6f9ch4r2c4k3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" +; ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) +; ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" +; ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) +; ("go-google-golang-org-appengine-1.1.0" +; ,go-google-golang-org-appengine-1.1.0) +; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" +; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-github-com-google-go-cmp-0.2.0" +; ,go-github-com-google-go-cmp-0.2.0) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0) +; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-client9-misspell-0.3.4" +; ,go-github-com-client9-misspell-0.3.4) +; ("go-github-com-burntsushi-toml-0.3.1" +; ,go-github-com-burntsushi-toml-0.3.1) +; ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473 +; (package +; (name "go-github-com-envoyproxy-go-control-plane") +; (version "0.9.1-0.20191026205805-5f8ba28d4473") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/envoyproxy/go-control-plane") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1f1s764rd41vd9vgk3r14h1m6fz6pdvxj6fd83q58gxifbc4q5w4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.23.0" ,go-google-golang-org-grpc-1.23.0) +; ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" +; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) +; ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" +; ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2) +; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" +; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) +; ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" +; ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) +; (home-page "https://github.com/envoyproxy/go-control-plane") +; (synopsis "control-plane") +; (description +; "This repository contains a Go-based implementation of an API server that +;implements the discovery service APIs defined in +;@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") +; (license license:asl2.0))) +; +;(define-public go-github-com-envoyproxy-protoc-gen-validate-0.1.0 +; (package +; (name "go-github-com-envoyproxy-protoc-gen-validate") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/envoyproxy/protoc-gen-validate") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0kxd3wwh3xwqk0r684hsy281xq4y71cd11d4q2hspcjbnlbwh7cy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/envoyproxy/protoc-gen-validate")) +; (home-page "https://github.com/envoyproxy/protoc-gen-validate") +; (synopsis "protoc-gen-validate (PGV)") +; (description +; "PGV is a protoc plugin to generate polyglot message validators. While protocol buffers effectively guarantee the types of structured data, they cannot enforce semantic rules for values. This plugin adds support to protoc-generated code to validate such constraints.") +; (license license:asl2.0))) +; +;(define-public go-github-com-google-go-cmp-0.2.0 +; (package +; (name "go-github-com-google-go-cmp") +; (version "0.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/go-cmp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1fbv0x27k9sn8svafc0hjwsnckk864lv4yi7bvzrxvmd3d5hskds")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/go-cmp")) +; (home-page "https://github.com/google/go-cmp") +; (synopsis "Package for equality of Go values") +; (description +; "This package is intended to be a more powerful and safer alternative to +;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.3.2 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.3.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1k1wb4zr0qbwgpvz9q5ws9zhlal8hq7dmq62pwxxriksayl6hzym")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4 +; (package +; (name "go-golang-org-x-exp") +; (version "0.0.0-20190121172915-509febef88a4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/exp") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "02isrh39z8znrp5znplzy0dip2gnrl3jm1355raliyvhnhg04j6q")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/exp")) +; (home-page "https://golang.org/x/exp") +; (synopsis "exp") +; (description +; "This subrepository holds experimental and deprecated (in the @code{old} +;directory) packages.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961 +; (package +; (name "go-golang-org-x-lint") +; (version "0.0.0-20190227174305-5b3e6a55c961") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/lint") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "04zp5vbds9nffmjg36wjpi5vg9zmf890yf78xxasai3ni637ivfw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/lint")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" +; ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c))) +; (home-page "https://golang.org/x/lint") +; (synopsis "Installation") +; (description "Package lint contains a linter for Go source code. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190213061140-3a22650c66bd") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "12q6fgdkc0742vcms67nzadgdwvi3rnb1gx3vwkljhrvlnwvz7wc")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f +; (package +; (name "go-golang-org-x-sync") +; (version "0.0.0-20181108010431-42b317875d0f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sync") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0mrjhk7al7yyh76x9flvxy4jm5jyqh2fxbxagpaazxn1xdgkaif3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sync")) +; (home-page "https://golang.org/x/sync") +; (synopsis "Go Sync") +; (description +; "This repository provides Go concurrency primitives in addition to the +;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20180724234803-3673e40ba225") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0vx7mz18p480p7fh0w5jv6mfdbsswrlac1sz4i705q7q7ygz59lm")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-appengine-1.4.0 +; (package +; (name "go-google-golang-org-appengine") +; (version "1.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/appengine") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "06zl7w4sxgdq2pl94wy9ncii6h0z3szl4xpqds0sv3b3wbdlhbnn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/appengine")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225" +; ,go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0))) +; (home-page "https://google.golang.org/appengine") +; (synopsis "Go App Engine packages") +; (description +; "Package appengine provides basic functionality for Google App Engine. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20190226205152-f727befe758c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0rpcqw6z13qd33rbasg32zb0gdhgh5lzjla63r6g651zf6hpsak0")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-google-golang-org-appengine-1.4.0" +; ,go-google-golang-org-appengine-1.4.0) +; ("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" +; ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) +; ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" +; ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-cloud-google-com-go-0.26.0 +; (package +; (name "go-cloud-google-com-go") +; (version "0.26.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-cloud-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "149v3ci17g6wd2pm18mzcncq5qpl9hwdjnz3rlbn5rfidyn46la1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "cloud.google.com/go")) +; (home-page "https://cloud.google.com/go") +; (synopsis "Google Cloud Client Libraries for Go") +; (description +; "Package cloud is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +;of sub-packages. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-burntsushi-toml-0.3.1 +; (package +; (name "go-github-com-burntsushi-toml") +; (version "0.3.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/BurntSushi/toml") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1fjdwwfzyzllgiwydknf1pwjvy49qxfsczqx5gz3y0izs7as99j6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/BurntSushi/toml")) +; (home-page "https://github.com/BurntSushi/toml") +; (synopsis "TOML parser and encoder for Go with reflection") +; (description +; "Package toml implements decoding and encoding of TOML files. +;") +; (license license:expat))) +; +;(define-public go-github-com-client9-misspell-0.3.4 +; (package +; (name "go-github-com-client9-misspell") +; (version "0.3.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/client9/misspell") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1vwf33wsc4la25zk9nylpbp9px3svlmldkm0bha4hp56jws4q9cs")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/client9/misspell")) +; (home-page "https://github.com/client9/misspell") +; (synopsis "Install") +; (description +; "Package misspell corrects commonly misspelled English words in source files. +;") +; (license license:expat))) +; +;(define-public go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b +; (package +; (name "go-github-com-golang-glog") +; (version "0.0.0-20160126235308-23def4e6c14b") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/glog") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0jb2834rw5sykfr937fxi8hxi2zy80sj2bdn9b3jb4b26ksqng30")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/glog")) +; (home-page "https://github.com/golang/glog") +; (synopsis "glog") +; (description +; "Package glog implements logging analogous to the Google-internal C++ INFO/ERROR/V setup. +;It provides functions Info, Warning, Error, Fatal, plus formatting variants such as +;Infof. It also provides V-style logging controlled by the -v and -vmodule=file=2 flags. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-golang-mock-1.1.1 +; (package +; (name "go-github-com-golang-mock") +; (version "1.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/mock") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ap8wb6pdl6ccmdb43advjll2ly4sz26wsc3axw0hbrjrybybzgy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/mock")) +; (home-page "https://github.com/golang/mock") +; (synopsis "gomock") +; (description +; "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It +;integrates well with Go's built-in @code{testing} package, but can be used in other +;contexts too.") +; (license license:asl2.0))) +; +;(define-public go-github-com-golang-protobuf-1.2.0 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0kf4b59rcbb1cchfny2dm9jyznp8ri2hsb14n8iak1q8986xa0ab")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3 +; (package +; (name "go-golang-org-x-lint") +; (version "0.0.0-20181026193005-c67002cb31c3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/lint") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0gymbggskjmphqxqcx4s0vnlcz7mygbix0vhwcwv5r67c0bf6765")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/lint")) +; (home-page "https://golang.org/x/lint") +; (synopsis "Installation") +; (description "Package lint contains a linter for Go source code. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20180826012351-8a410e7b638d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0hp0l8f6fir5gmgrjq0mhh5ikc0rlrm72774228800kfwqjrxxny")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be +; (package +; (name "go-golang-org-x-oauth2") +; (version "0.0.0-20180821212333-d2e6202438be") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/oauth2") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0wbn75fd10485nb93bm4kqldqifdim5xqy4v7r5sdvimvf3fyhn7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/oauth2")) +; (home-page "https://golang.org/x/oauth2") +; (synopsis "OAuth2 for Go") +; (description +; "Package oauth2 provides support for making +;OAuth2 authorized and authenticated HTTP requests, +;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +;It can additionally grant authorization with Bearer JWT. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f +; (package +; (name "go-golang-org-x-sync") +; (version "0.0.0-20180314180146-1d60e4601c6f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sync") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "046jlanz2lkxq1r57x9bl6s4cvfqaic6p2xybsj8mq1120jv4rs6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sync")) +; (home-page "https://golang.org/x/sync") +; (synopsis "Go Sync") +; (description +; "This repository provides Go concurrency primitives in addition to the +;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20180830151530-49385e6e1522") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0spbldahns09fdxkxflb1x24f8k2awdlnr6k5i7ci4fqd19r1dv4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20190114222345-bf090417da8b") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1n3xp56k4k3lj06rx7587wr5gnwg0148nvwx6ch0g7ar02hh94hw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-appengine-1.1.0 +; (package +; (name "go-google-golang-org-appengine") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/appengine") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1pz202zszg8f35dk5pfhwgcdi3r6dx1l4yk6x6ly7nb4j45zi96x")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/appengine")) +; (home-page "https://google.golang.org/appengine") +; (synopsis "Go App Engine packages") +; (description +; "Package appengine provides basic functionality for Google App Engine. +;") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8 +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20180817151627-c66870c02cf8") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0siq7sv68556ygqi2d2zmvx8l1xjqdc0fylqzci5h1mq2i14bayn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-grpc-1.19.0 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.19.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1znqwpj7ix3dpzx4zch0q70sdl3z5lvbb7v3q4i8sf8kas3yv71v")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" +; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) +; ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" +; ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) +; ("go-google-golang-org-appengine-1.1.0" +; ,go-google-golang-org-appengine-1.1.0) +; ("go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b" +; ,go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b) +; ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522" +; ,go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522) +; ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" +; ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d" +; ,go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d) +; ("go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3" +; ,go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0) +; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-client9-misspell-0.3.4" +; ,go-github-com-client9-misspell-0.3.4) +; ("go-github-com-burntsushi-toml-0.3.1" +; ,go-github-com-burntsushi-toml-0.3.1) +; ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099 +; (package +; (name "go-honnef-co-go-tools") +; (version "0.0.0-20190102054323-c2f93a96b099") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/dominikh/go-tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "07lg29aiap80ca9f201jzng9vjr168cv3qmvjmbd7v5pmww9kmr8")))) +; (build-system go-build-system) +; (arguments '(#:import-path "honnef.co/go/tools")) +; (home-page "https://honnef.co/go/tools") +; (synopsis "Documentation") +; (description +; "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, +;offers simplifications, and enforces style rules.") +; (license license:expat))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55 +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20190819201941-24fa4b261c55") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "109zhaqlfd8zkbr1hk6zqbs6vcxfrk64scjwh2nswph05gr0m84d")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" +; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) +; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) +; ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" +; ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) +; ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" +; ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) +; ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" +; ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-grpc-1.27.0 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.27.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ijrmgrxyabfn51nm3p9l81iaasq5fg237wnr6mdc4dzsfcg8kd7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" +; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-github-com-google-go-cmp-0.2.0" +; ,go-github-com-google-go-cmp-0.2.0) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2) +; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" +; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) +; ("go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473" +; ,go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-google-go-cmp-0.3.0 +; (package +; (name "go-github-com-google-go-cmp") +; (version "0.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/go-cmp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1hyxx3434zshl2m9ja78gwlkg1rx9yl6diqa7dnjb31xz5x4gbjj")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/go-cmp")) +; (home-page "https://github.com/google/go-cmp") +; (synopsis "Package for equality of Go values") +; (description +; "This package is intended to be a more powerful and safer alternative to +;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd +; (package +; (name "go-google-golang-org-protobuf") +; (version "0.0.0-20200109180630-ec00e32a8dfd") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0w6lp9w2avxcpxwzzhspr209ifhyjagvs23k0vykfdqahl1aplrh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.3.0" +; ,go-github-com-google-go-cmp-0.3.0))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.4.0-rc.1 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.4.0-rc.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "186rirvbfgv6hrxp27ipx2cdpv19qifdd20biqfdm01wiyclqimn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd" +; ,go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd) +; ("go-github-com-google-go-cmp-0.3.1" +; ,go-github-com-google-go-cmp-0.3.1))) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-github-com-google-go-cmp-0.3.1 +; (package +; (name "go-github-com-google-go-cmp") +; (version "0.3.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/go-cmp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1caw49i0plkjxir7kdf5qhwls3krqwfmi7g4h392rdfwi3kfahx1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/go-cmp")) +; (home-page "https://github.com/google/go-cmp") +; (synopsis "Package for equality of Go values") +; (description +; "This package is intended to be a more powerful and safer alternative to +;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64 +; (package +; (name "go-google-golang-org-protobuf") +; (version "0.0.0-20200221191635-4d8936d0db64") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0563bsvdjj6k0sgwqd5yzrgfiax7sp3lcwh608gync5sv9fx39cy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.3.1" +; ,go-github-com-google-go-cmp-0.3.1) +; ("go-github-com-golang-protobuf-1.4.0-rc.1" +; ,go-github-com-golang-protobuf-1.4.0-rc.1))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.4.0-rc.1.0.20200221234624-67d41d38c208") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ykxhg3zixmw25pd435f8h16wnz1g00jpcmmg3xl030kksgqgpp6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64" +; ,go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0))) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60 +; (package +; (name "go-google-golang-org-protobuf") +; (version "0.0.0-20200228230310-ab0ca4ff8a60") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1rinspcznfp85yz4vrlf4h38hr576virgv8lcs22bsylqga808sd")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208" +; ,go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.4.0-rc.2 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.4.0-rc.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1hd43hjv5zl6bjbmhm5phx74bw4xajsi73m5zky2k56za4mpgzzc")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60" +; ,go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0))) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967 +; (package +; (name "go-google-golang-org-protobuf") +; (version "1.20.1-0.20200309200217-e05f789c0967") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "17wmy89hnmpkwc63rfcjp50q15s9f1rhmczg06c3z9yy41zk82w9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.4.0-rc.2" +; ,go-github-com-golang-protobuf-1.4.0-rc.2))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.4.0-rc.4.0.20200313231945-b860323f09d0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1zj6cwshx0l5n9cn2cpbikzzb79px5dmkpc4p19zy1iif5r5p0z0")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967" +; ,go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0))) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-1.21.0 +; (package +; (name "go-google-golang-org-protobuf") +; (version "1.21.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "12bwln8z1lf9105gdp6ip0rx741i4yfz1520gxnp8861lh9wcl63")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0" +; ,go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.4.0 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1fjvl5n77abxz5qsd4mgyvjq19x43c5bfvmq62mq3m5plx6zksc8")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.21.0" +; ,go-google-golang-org-protobuf-1.21.0) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0))) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543 +; (package +; (name "go-golang-org-x-xerrors") +; (version "0.0.0-20191204190536-9bdfabe68543") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/xerrors") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1yjfi1bk9xb81lqn85nnm13zz725wazvrx3b50hx19qmwg7a4b0c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/xerrors")) +; (home-page "https://golang.org/x/xerrors") +; (synopsis #f) +; (description +; "Package xerrors implements functions to manipulate errors. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-google-go-cmp-0.4.0 +; (package +; (name "go-github-com-google-go-cmp") +; (version "0.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/go-cmp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1x5pvl3fb5sbyng7i34431xycnhmx8xx94gq2n19g6p0vz68z2v2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/go-cmp")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" +; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) +; (home-page "https://github.com/google/go-cmp") +; (synopsis "Package for equality of Go values") +; (description +; "This package is intended to be a more powerful and safer alternative to +;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc +; (package +; (name "go-google-golang-org-protobuf") +; (version "1.23.1-0.20200526195155-81db48ad09cc") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "02cpr8rqr5wmpj2fqb32mzilsdnxkh52g1jz95a3ck3gzffc7hh1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.4.0" +; ,go-github-com-golang-protobuf-1.4.0))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc +; (package +; (name "go-honnef-co-go-tools") +; (version "0.0.0-20190523083050-ea95bdfd59fc") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/dominikh/go-tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1763nw7pwpzkvzfnm63dgzcgbq9hwmq5l1nffchnhh77vgkaq4ic")))) +; (build-system go-build-system) +; (arguments '(#:import-path "honnef.co/go/tools")) +; (home-page "https://honnef.co/go/tools") +; (synopsis "Documentation") +; (description +; "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, +;offers simplifications, and enforces style rules.") +; (license license:expat))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013 +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20200526211855-cb27e3aa2013") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ml73ghqcwbz7ipfk8fnxb5indcml49b5p7vp1fsyny0abyyrmxf")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" +; ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) +; ("go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc" +; ,go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc) +; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) +; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" +; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-github-com-golang-protobuf-1.4.1" +; ,go-github-com-golang-protobuf-1.4.1))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-protobuf-1.25.0 +; (package +; (name "go-google-golang-org-protobuf") +; (version "1.25.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0apfl42x166dh96zfq5kvv4b4ax9xljik6bq1mnvn2240ir3mc23")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" +; ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) +; ("go-github-com-google-go-cmp-0.5.0" +; ,go-github-com-google-go-cmp-0.5.0) +; ("go-github-com-golang-protobuf-1.4.1" +; ,go-github-com-golang-protobuf-1.4.1))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-grpc-1.38.0 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.38.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "08lgqdvbd0i4qwsv1y37qmf8mhsy9ywzx73ixiwih7xhnalrf7xl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.25.0" +; ,go-google-golang-org-protobuf-1.25.0) +; ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" +; ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) +; ("go-github-com-google-go-cmp-0.5.0" +; ,go-github-com-google-go-cmp-0.5.0) +; ("go-github-com-golang-protobuf-1.4.2" +; ,go-github-com-golang-protobuf-1.4.2) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-envoyproxy-go-control-plane-0.9.9-0.20210217033140-668b12f5399d" +; ,go-github-com-envoyproxy-go-control-plane-0.9.9-0.20210217033140-668b12f5399d) +; ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" +; ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-bketelsen-crypt-0.0.4 +; (package +; (name "go-github-com-bketelsen-crypt") +; (version "0.0.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/bketelsen/crypt") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0fyfcvy73zskd1p1mv0cn03anxkkr5gvlawsc87znqk60hdypq3v")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/bketelsen/crypt")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.38.0" ,go-google-golang-org-grpc-1.38.0) +; ("go-google-golang-org-api-0.44.0" ,go-google-golang-org-api-0.44.0) +; ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" +; ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9) +; ("go-go-etcd-io-etcd-client-v2-2.305.0" +; ,go-go-etcd-io-etcd-client-v2-2.305.0) +; ("go-github-com-hashicorp-consul-api-1.1.0" +; ,go-github-com-hashicorp-consul-api-1.1.0) +; ("go-cloud-google-com-go-firestore-1.1.0" +; ,go-cloud-google-com-go-firestore-1.1.0))) +; (home-page "https://github.com/bketelsen/crypt") +; (synopsis "crypt") +; (description +; "You can use crypt as a command line tool or as a configuration library:") +; (license license:expat))) +; +;(define-public go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20191005200804-aed5e4c7ecf9") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0wsdsbl9n61l99z0cvib2xzg56fsfgky4yc5xapdw9ywx9h0zm3a")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-fsnotify-fsnotify-1.4.9 +; (package +; (name "go-github-com-fsnotify-fsnotify") +; (version "1.4.9") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/fsnotify/fsnotify") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1i1r72knpbfwwql9frn9bqc3nhfc2ai5m6qllcyr6wban62lr40x")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/fsnotify/fsnotify")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9" +; ,go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9))) +; (home-page "https://github.com/fsnotify/fsnotify") +; (synopsis "File system notifications for Go") +; (description +; "Package fsnotify provides a platform-independent interface for file system notifications. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-hashicorp-hcl-1.0.0 +; (package +; (name "go-github-com-hashicorp-hcl") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/hcl") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0q6ml0qqs0yil76mpn4mdx4lp94id8vbv575qm60jzl1ijcl5i66")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hashicorp/hcl")) +; (propagated-inputs +; `(("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://github.com/hashicorp/hcl") +; (synopsis "HCL") +; (description "Package hcl decodes HCL into usable Go structures. +;") +; (license license:mpl2.0))) +; +;(define-public go-github-com-magiconair-properties-1.8.5 +; (package +; (name "go-github-com-magiconair-properties") +; (version "1.8.5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/magiconair/properties") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0v4agnkhc30fblbmhs0gq2bikhdnnmqmpp4phrnza68m04j5hxbn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/magiconair/properties")) +; (home-page "https://github.com/magiconair/properties") +; (synopsis "Overview") +; (description +; "Package properties provides functions for reading and writing +;ISO-8859-1 and UTF-8 encoded .properties files and has +;support for recursive property expansion. +;") +; (license license:bsd-2))) +; +;(define-public go-github-com-mitchellh-mapstructure-1.4.1 +; (package +; (name "go-github-com-mitchellh-mapstructure") +; (version "1.4.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mitchellh/mapstructure") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1m98wiadb6kdnzv21m8p7nk1jb30zpjh47fkb1dg251r3m7bj47v")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mitchellh/mapstructure")) +; (home-page "https://github.com/mitchellh/mapstructure") +; (synopsis "mapstructure") +; (description +; "Package mapstructure exposes functionality to convert one arbitrary +;Go type into another, typically to convert a map[string]interface{} +;into a native Go structure. +;") +; (license license:expat))) +; +;(define-public go-github-com-pelletier-go-toml-1.9.3 +; (package +; (name "go-github-com-pelletier-go-toml") +; (version "1.9.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/pelletier/go-toml") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0cqwnvlgs1wgdgjxlwv8j52f7d6syniadr51sjh2fya99m5wzvsn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/pelletier/go-toml")) +; (home-page "https://github.com/pelletier/go-toml") +; (synopsis "go-toml") +; (description "Package toml is a TOML parser and manipulation library. +;") +; (license #f))) +; +;(define-public go-github-com-gopherjs-gopherjs-0.0.0-20181017120253-0766667cb4d1 +; (package +; (name "go-github-com-gopherjs-gopherjs") +; (version "0.0.0-20181017120253-0766667cb4d1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/gopherjs/gopherjs") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "13pfc9sxiwjky2lm1xb3i3lcisn8p6mgjk2d927l7r92ysph8dmw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/gopherjs/gopherjs")) +; (home-page "https://github.com/gopherjs/gopherjs") +; (synopsis "GopherJS - A compiler from Go to JavaScript") +; (description +; "GopherJS compiles Go code (@url{https://golang.org/,golang.org}) to pure JavaScript code. Its main purpose is to give you the opportunity to write front-end code in Go which will still run in all browsers.") +; (license license:bsd-2))) +; +;(define-public go-github-com-jtolds-gls-4.20.0+incompatible +; (package +; (name "go-github-com-jtolds-gls") +; (version "4.20.0+incompatible") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/jtolio/gls") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1k7xd2q2ysv2xsh373qs801v6f359240kx0vrl0ydh7731lngvk6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/jtolds/gls")) +; (home-page "https://github.com/jtolds/gls") +; (synopsis "gls") +; (description "Package gls implements goroutine-local storage. +;") +; (license license:expat))) +; +;(define-public go-github-com-smartystreets-assertions-0.0.0-20180927180507-b2de0cb4f26d +; (package +; (name "go-github-com-smartystreets-assertions") +; (version "0.0.0-20180927180507-b2de0cb4f26d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/smartystreets/assertions") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1i7ldgavgl35c7gk25p7bvdr282ckng090zr4ch9mk1705akx09y")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/smartystreets/assertions")) +; (home-page "https://github.com/smartystreets/assertions") +; (synopsis #f) +; (description +; "Package assertions contains the implementations for all assertions which +;are referenced in goconvey's `convey` package +;(github.com/smartystreets/goconvey/convey) and gunit (github.com/smartystreets/gunit) +;for use with the So(...) method. +;They can also be used in traditional Go test functions and even in +;applications. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-net-0.0.0-20190311183353-d8887717615a +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190311183353-d8887717615a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1wfm6ngxjyj7v5a2dqib6lw8bb2rdnf1kl48diykxjrsddn0s163")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20190328211700-ab21143f2384 +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20190328211700-ab21143f2384") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "15fk0psk53pplpyghz55bhay0kvsv5rikmn5hwgjnnyxq9vfy178")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-github-com-smartystreets-goconvey-1.6.4 +; (package +; (name "go-github-com-smartystreets-goconvey") +; (version "1.6.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/smartystreets/goconvey") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "07zjxwszayal88z1j2bwnqrsa32vg8l4nivks5yfr9j8xfsw7n6m")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/smartystreets/goconvey")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20190328211700-ab21143f2384" +; ,go-golang-org-x-tools-0.0.0-20190328211700-ab21143f2384) +; ("go-github-com-smartystreets-assertions-0.0.0-20180927180507-b2de0cb4f26d" +; ,go-github-com-smartystreets-assertions-0.0.0-20180927180507-b2de0cb4f26d) +; ("go-github-com-jtolds-gls-4.20.0+incompatible" +; ,go-github-com-jtolds-gls-4.20.0+incompatible) +; ("go-github-com-gopherjs-gopherjs-0.0.0-20181017120253-0766667cb4d1" +; ,go-github-com-gopherjs-gopherjs-0.0.0-20181017120253-0766667cb4d1))) +; (home-page "https://github.com/smartystreets/goconvey") +; (synopsis "GoConvey is awesome Go testing") +; (description +; "This executable provides an HTTP server that watches for file system changes +;to .go files within the working directory (and all nested go packages). +;Navigating to the configured host and port in a web browser will display the +;latest results of running `go test` in each go package. +;") +; (license license:expat))) +; +;(define-public go-github-com-kr-fs-0.1.0 +; (package +; (name "go-github-com-kr-fs") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kr/fs") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "11zg176x9hr9q7fsk95r6q0wf214gg4czy02slax4x56n79g6a7q")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kr/fs")) +; (home-page "https://github.com/kr/fs") +; (synopsis #f) +; (description "Package fs provides filesystem-related functions. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-pkg-errors-0.8.1 +; (package +; (name "go-github-com-pkg-errors") +; (version "0.8.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/pkg/errors") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0g5qcb4d4fd96midz0zdk8b9kz8xkzwfa8kr1cliqbg8sxsy5vd1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/pkg/errors")) +; (home-page "https://github.com/pkg/errors") +; (synopsis "errors") +; (description "Package errors provides simple error handling primitives. +;") +; (license license:bsd-2))) +; +;(define-public go-gopkg-in-yaml-v2-2.2.2 +; (package +; (name "go-gopkg-in-yaml-v2") +; (version "2.2.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/yaml.v2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "01wj12jzsdqlnidpyjssmj0r4yavlqy7dwrg7adqd8dicjc4ncsa")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" +; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) +; (home-page "https://gopkg.in/yaml.v2") +; (synopsis "YAML support for the Go language") +; (description "Package yaml implements YAML support for the Go language. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-stretchr-testify-1.4.0 +; (package +; (name "go-github-com-stretchr-testify") +; (version "1.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/testify") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "187i5g88sxfy4vxpm7dw1gwv29pa2qaq475lxrdh5livh69wqfjb")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/testify")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) +; ("go-github-com-stretchr-objx-0.1.0" +; ,go-github-com-stretchr-objx-0.1.0) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.0" +; ,go-github-com-davecgh-go-spew-1.1.0))) +; (home-page "https://github.com/stretchr/testify") +; (synopsis "Testify - Thou Shalt Write Tests") +; (description +; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +;") +; (license license:expat))) +; +;(define-public go-github-com-pkg-sftp-1.10.1 +; (package +; (name "go-github-com-pkg-sftp") +; (version "1.10.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/pkg/sftp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0iw6lijdljwh5xw5hsy0b578cr52h6vvm7hbnzlrvciwhh4sfhhp")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/pkg/sftp")) +; (propagated-inputs +; `(("go-golang-org-x-crypto-0.0.0-20190820162420-60c769a6c586" +; ,go-golang-org-x-crypto-0.0.0-20190820162420-60c769a6c586) +; ("go-github-com-stretchr-testify-1.4.0" +; ,go-github-com-stretchr-testify-1.4.0) +; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) +; ("go-github-com-kr-fs-0.1.0" ,go-github-com-kr-fs-0.1.0))) +; (home-page "https://github.com/pkg/sftp") +; (synopsis "sftp") +; (description +; "Package sftp implements the SSH File Transfer Protocol as described in +;@url{https://tools.ietf.org/html/draft-ietf-secsh-filexfer-02,https://tools.ietf.org/html/draft-ietf-secsh-filexfer-02} +;") +; (license license:bsd-2))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190215142949-d0b11bdaac8a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20190308221718-c2843e01d9a2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-text-0.3.0 +; (package +; (name "go-golang-org-x-text") +; (version "0.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/text") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/text")) +; (home-page "https://golang.org/x/text") +; (synopsis "Go Text") +; (description +; "text is a repository of text-related packages related to internationalization +;(i18n) and localization (l10n), such as character encodings, text +;transformations, and locale-specific text handling. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190404232315-eb5bcb51f2a3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "17k4g8krxbl84gzcs275b7gsh66dzm15fdxivjnx9xz8q84l4kby")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190412213103-97732733099d +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190412213103-97732733099d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "118hkp01i4z1f5h6hcjm0ff2ngqhrzj1f7731n0kw8dr6hvbx0sw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20190820162420-60c769a6c586 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20190820162420-60c769a6c586") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1wy2pg38dz29vf1h48yfqf8m3jqvwnbdw8vkk3ldlj5d8fbbbmv8")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" +; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) +; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" +; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-github-com-spf13-afero-1.6.0 +; (package +; (name "go-github-com-spf13-afero") +; (version "1.6.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/spf13/afero") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0yi8p0yxiidpcg4cagxg2iyqcaapsng89rak4qyxmgails2fqg37")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/spf13/afero")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) +; ("go-golang-org-x-crypto-0.0.0-20190820162420-60c769a6c586" +; ,go-golang-org-x-crypto-0.0.0-20190820162420-60c769a6c586) +; ("go-github-com-pkg-sftp-1.10.1" ,go-github-com-pkg-sftp-1.10.1))) +; (home-page "https://github.com/spf13/afero") +; (synopsis "Overview") +; (description +; "This package provides a FileSystem Abstraction System for Go") +; (license license:asl2.0))) +; +;(define-public go-github-com-spf13-cast-1.3.1 +; (package +; (name "go-github-com-spf13-cast") +; (version "1.3.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/spf13/cast") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0lb84788glr0qzrq2ifi36rgvp96qrgywvxrr3ggq5hrbr38hgn1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/spf13/cast")) +; (propagated-inputs +; `(("go-github-com-stretchr-testify-1.2.2" +; ,go-github-com-stretchr-testify-1.2.2) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://github.com/spf13/cast") +; (synopsis "cast") +; (description "Package cast provides easy and safe casting in Go. +;") +; (license license:expat))) +; +;(define-public go-github-com-davecgh-go-spew-1.1.1 +; (package +; (name "go-github-com-davecgh-go-spew") +; (version "1.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/davecgh/go-spew") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/davecgh/go-spew")) +; (home-page "https://github.com/davecgh/go-spew") +; (synopsis "go-spew") +; (description +; "Go-spew implements a deep pretty printer for Go data structures to aid in +;debugging. A comprehensive suite of tests with 100% test coverage is provided +;to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage +;report. Go-spew is licensed under the liberal ISC license, so it may be used in +;open source or commercial projects.") +; (license license:isc))) +; +;(define-public go-github-com-stretchr-testify-1.2.2 +; (package +; (name "go-github-com-stretchr-testify") +; (version "1.2.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/testify") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0dlszlshlxbmmfxj5hlwgv3r22x0y1af45gn1vd198nvvs3pnvfs")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/testify")) +; (home-page "https://github.com/stretchr/testify") +; (synopsis "Testify - Thou Shalt Write Tests") +; (description +; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +;") +; (license license:expat))) +; +;(define-public go-github-com-spf13-jwalterweatherman-1.1.0 +; (package +; (name "go-github-com-spf13-jwalterweatherman") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/spf13/jwalterweatherman") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ywmkwci5zyd88ijym6f30fj5c0k2yayxarkmnazf5ybljv50q7b")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/spf13/jwalterweatherman")) +; (propagated-inputs +; `(("go-github-com-stretchr-testify-1.2.2" +; ,go-github-com-stretchr-testify-1.2.2) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://github.com/spf13/jwalterweatherman") +; (synopsis "jWalterWeatherman") +; (description +; "Seamless printing to the terminal (stdout) and logging to a io.Writer +;(file) thatâ\x80\x99s as easy to use as fmt.Println.") +; (license license:expat))) +; +;(define-public go-github-com-davecgh-go-spew-1.1.0 +; (package +; (name "go-github-com-davecgh-go-spew") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/davecgh/go-spew") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/davecgh/go-spew")) +; (home-page "https://github.com/davecgh/go-spew") +; (synopsis "go-spew") +; (description +; "Go-spew implements a deep pretty printer for Go data structures to aid in +;debugging. A comprehensive suite of tests with 100% test coverage is provided +;to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage +;report. Go-spew is licensed under the liberal ISC license, so it may be used in +;open source or commercial projects.") +; (license license:isc))) +; +;(define-public go-github-com-stretchr-objx-0.1.0 +; (package +; (name "go-github-com-stretchr-objx") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/objx") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/objx")) +; (home-page "https://github.com/stretchr/objx") +; (synopsis "Objx") +; (description +; "Objx - Go package for dealing with maps, slices, JSON and other data. +;") +; (license license:expat))) +; +;(define-public go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c +; (package +; (name "go-gopkg-in-yaml-v3") +; (version "3.0.0-20200313102051-9f266ea9e77c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/yaml.v3") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1bbai3lzb50m0x2vwsdbagrbhvfylj9k1m32hgbqwldqx4p9ay35")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" +; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) +; (home-page "https://gopkg.in/yaml.v3") +; (synopsis "YAML support for the Go language") +; (description "Package yaml implements YAML support for the Go language. +;") +; (license #f))) +; +;(define-public go-github-com-stretchr-testify-1.7.0 +; (package +; (name "go-github-com-stretchr-testify") +; (version "1.7.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/testify") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ixgjsvafr3513pz3r6pmgk074s2dxkll0dadvl25gkf30rkmh10")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/testify")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" +; ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) +; ("go-github-com-stretchr-objx-0.1.0" +; ,go-github-com-stretchr-objx-0.1.0) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.0" +; ,go-github-com-davecgh-go-spew-1.1.0))) +; (home-page "https://github.com/stretchr/testify") +; (synopsis "Testify - Thou Shalt Write Tests") +; (description +; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +;") +; (license license:expat))) +; +;(define-public go-github-com-subosito-gotenv-1.2.0 +; (package +; (name "go-github-com-subosito-gotenv") +; (version "1.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/subosito/gotenv") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0mav91j7r4arjkpq5zcf9j74f6pww8ic53x43wy7kg3ibw31yjs5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/subosito/gotenv")) +; (home-page "https://github.com/subosito/gotenv") +; (synopsis "gotenv") +; (description +; "Package gotenv provides functionality to dynamically load the environment variables +;") +; (license license:expat))) +; +;(define-public go-gopkg-in-ini-v1-1.62.0 +; (package +; (name "go-gopkg-in-ini-v1") +; (version "1.62.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/ini.v1") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1dm9ydqyflasp5li22kb0w73s6kp2swii8naqfhnz64v171gmm5v")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/ini.v1" #:unpack-path "gopkg.in/ini.v1")) +; (home-page "https://gopkg.in/ini.v1") +; (synopsis "INI") +; (description +; "Package ini provides INI file read and write functionality in Go. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-spf13-viper-1.8.1 +; (package +; (name "go-github-com-spf13-viper") +; (version "1.8.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/spf13/viper") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0jcsvd9l05pv10rma6zicp44q2mlvxj0qlhnf4zcg2pymb5i0hq6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/spf13/viper")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) +; ("go-gopkg-in-ini-v1-1.62.0" ,go-gopkg-in-ini-v1-1.62.0) +; ("go-github-com-subosito-gotenv-1.2.0" +; ,go-github-com-subosito-gotenv-1.2.0) +; ("go-github-com-stretchr-testify-1.7.0" +; ,go-github-com-stretchr-testify-1.7.0) +; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) +; ("go-github-com-spf13-jwalterweatherman-1.1.0" +; ,go-github-com-spf13-jwalterweatherman-1.1.0) +; ("go-github-com-spf13-cast-1.3.1" ,go-github-com-spf13-cast-1.3.1) +; ("go-github-com-spf13-afero-1.6.0" ,go-github-com-spf13-afero-1.6.0) +; ("go-github-com-smartystreets-goconvey-1.6.4" +; ,go-github-com-smartystreets-goconvey-1.6.4) +; ("go-github-com-pelletier-go-toml-1.9.3" +; ,go-github-com-pelletier-go-toml-1.9.3) +; ("go-github-com-mitchellh-mapstructure-1.4.1" +; ,go-github-com-mitchellh-mapstructure-1.4.1) +; ("go-github-com-magiconair-properties-1.8.5" +; ,go-github-com-magiconair-properties-1.8.5) +; ("go-github-com-hashicorp-hcl-1.0.0" +; ,go-github-com-hashicorp-hcl-1.0.0) +; ("go-github-com-fsnotify-fsnotify-1.4.9" +; ,go-github-com-fsnotify-fsnotify-1.4.9) +; ("go-github-com-bketelsen-crypt-0.0.4" +; ,go-github-com-bketelsen-crypt-0.0.4))) +; (home-page "https://github.com/spf13/viper") +; (synopsis "Install") +; (description "Many Go projects are built using Viper including:") +; (license license:expat))) +; +;(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 +; (package +; (name "go-gopkg-in-check-v1") +; (version "0.0.0-20161208181325-20d25e280405") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/check.v1") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) +; (home-page "https://gopkg.in/check.v1") +; (synopsis "Instructions") +; (description +; "Package check is a rich testing extension for Go's testing package. +;") +; (license license:bsd-2))) +; +;(define-public go-gopkg-in-yaml-v2-2.4.0 +; (package +; (name "go-gopkg-in-yaml-v2") +; (version "2.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/yaml.v2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1pbmrpj7gcws34g8vwna4i2nhm9p6235piww36436xhyaa10cldr")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" +; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) +; (home-page "https://gopkg.in/yaml.v2") +; (synopsis "YAML support for the Go language") +; (description "Package yaml implements YAML support for the Go language. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-spf13-cobra-1.2.1 +; (package +; (name "go-github-com-spf13-cobra") +; (version "1.2.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/spf13/cobra") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "091kz3xnlsgpqb90fc5nhjr4yfr8b8sjnyl0zd4wm1fgzkpw09jh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/spf13/cobra")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) +; ("go-github-com-spf13-viper-1.8.1" ,go-github-com-spf13-viper-1.8.1) +; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) +; ("go-github-com-inconshreveable-mousetrap-1.0.0" +; ,go-github-com-inconshreveable-mousetrap-1.0.0) +; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" +; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0))) +; (home-page "https://github.com/spf13/cobra") +; (synopsis "Table of Contents") +; (description +; "Package cobra is a commander providing a simple interface to create powerful modern CLI interfaces. +;In addition to providing an interface, Cobra simultaneously provides a controller to organize your application code. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20210226172049-e18ecbb05110") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1vlq8mdscp7yfaa1lmyv03y5m4c2d67ydg2q1i6smkrxghn3zn3q")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) +; ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" +; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) +; ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" +; ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20210615035016-665e8c7367d1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "11n848csibdbv7b46zjyf4l7sphg37n9sjzqfy1ds7p1jyakwmnv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20201119102817-f84b799fce68") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1dvhqian5byzkcg1bnqzygqa6ccc6krc2q7j12pp1vhl3y7znnsg")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1 +; (package +; (name "go-golang-org-x-term") +; (version "0.0.0-20201126162022-7de9c90e9dd1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/term") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ba252xmv6qsvf1w1gcy98mngrj0vd4inbjw0lsklqvva65nljna")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/term")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" +; ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) +; (home-page "https://golang.org/x/term") +; (synopsis "Go terminal/console support") +; (description +; "Package term provides support functions for dealing with terminals, as +;commonly found on UNIX systems. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20180917221912-90fa682c2a6e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-text-0.3.3 +; (package +; (name "go-golang-org-x-text") +; (version "0.3.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/text") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19pihqm3phyndmiw6i42pdv6z1rbvlqlsnhsyqf9gsnn0qnmqqlh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/text")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" +; ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) +; (home-page "https://golang.org/x/text") +; (synopsis "Go Text") +; (description +; "text is a repository of text-related packages related to internationalization +;(i18n) and localization (l10n), such as character encodings, text +;transformations, and locale-specific text handling. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20210711020723-a769d52b0f97 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20210711020723-a769d52b0f97") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1qdv4yfdl5fbsdgvxkki1yjwwn3whns381c0za74syxdvzhhgiaf")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) +; ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" +; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) +; ("go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1" +; ,go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1) +; ("go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110" +; ,go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110))) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-github-com-inconshreveable-mousetrap-1.0.0 +; (package +; (name "go-github-com-inconshreveable-mousetrap") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/inconshreveable/mousetrap") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1mn0kg48xkd74brf48qf5hzp0bc6g8cf5a77w895rl3qnlpfw152")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/inconshreveable/mousetrap")) +; (home-page "https://github.com/inconshreveable/mousetrap") +; (synopsis "mousetrap") +; (description "mousetrap is a tiny library that answers a single question.") +; (license license:asl2.0))) +; +;(define-public go-github-com-pmezard-go-difflib-1.0.0 +; (package +; (name "go-github-com-pmezard-go-difflib") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/pmezard/go-difflib") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/pmezard/go-difflib")) +; (home-page "https://github.com/pmezard/go-difflib") +; (synopsis "go-difflib") +; (description +; "Go-difflib is a partial port of python 3 difflib package. Its main goal +;was to make unified and context diff available in pure Go, mostly for +;testing purposes.") +; (license license:bsd-3))) +; +;(define-public go-github-com-sergi-go-diff-1.0.0 +; (package +; (name "go-github-com-sergi-go-diff") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/sergi/go-diff") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0swiazj8wphs2zmk1qgq75xza6m19snif94h2m6fi8dqkwqdl7c7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/sergi/go-diff")) +; (home-page "https://github.com/sergi/go-diff") +; (synopsis "go-diff") +; (description +; "go-diff offers algorithms to perform operations required for synchronizing plain text:") +; (license license:expat))) +; +;(define-public go-github-com-spf13-pflag-1.0.5 +; (package +; (name "go-github-com-spf13-pflag") +; (version "1.0.5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/spf13/pflag") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0gpmacngd0gpslnbkzi263f5ishigzgh6pbdv9hp092rnjl4nd31")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/spf13/pflag")) +; (home-page "https://github.com/spf13/pflag") +; (synopsis "Description") +; (description +; "Package pflag is a drop-in replacement for Go's flag package, implementing +;POSIX/GNU-style --flags. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-hpcng-sif-1.6.0 +; (package +; (name "go-github-com-hpcng-sif") +; (version "1.6.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/apptainer/sif") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0fz6h5zcaxk6v8vfx9lxny2bmwnmflvvx9jkyxydz6zlgrbn2qbb")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hpcng/sif")) +; (propagated-inputs +; `(("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) +; ("go-github-com-sergi-go-diff-1.0.0" +; ,go-github-com-sergi-go-diff-1.0.0) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-inconshreveable-mousetrap-1.0.0" +; ,go-github-com-inconshreveable-mousetrap-1.0.0) +; ("go-golang-org-x-crypto-0.0.0-20210711020723-a769d52b0f97" +; ,go-golang-org-x-crypto-0.0.0-20210711020723-a769d52b0f97) +; ("go-github-com-spf13-cobra-1.2.1" ,go-github-com-spf13-cobra-1.2.1) +; ("go-github-com-sebdah-goldie-v2-2.5.3" +; ,go-github-com-sebdah-goldie-v2-2.5.3) +; ("go-github-com-satori-go-uuid-1.2.1-0.20180404165556-75cca531ea76" +; ,go-github-com-satori-go-uuid-1.2.1-0.20180404165556-75cca531ea76))) +; (home-page "https://github.com/hpcng/sif") +; (synopsis "The Singularity Image Format (SIF)") +; (description +; "This module contains an open source implementation of the Singularity Image Format (SIF) that makes it easy to create complete and encapsulated container environments stored in a single file.") +; (license license:bsd-3))) +; +;(define-public go-github-com-kardianos-osext-0.0.0-20190222173326-2bc1f35cddc0 +; (package +; (name "go-github-com-kardianos-osext") +; (version "0.0.0-20190222173326-2bc1f35cddc0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kardianos/osext") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1pvrbrvmrf4mx0fxbfaphbzgqgwn8v6lkfk2vyrs0znxrs1xyc5r")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kardianos/osext")) +; (home-page "https://github.com/kardianos/osext") +; (synopsis "Extensions to the \"os\" package.") +; (description "Extensions to the standard \"os\" package. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-creack-pty-1.1.7 +; (package +; (name "go-github-com-creack-pty") +; (version "1.1.7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/creack/pty") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1plwwlk1i9b80zv8zdplvv81shfyc9gf0flydnydsh5sr3ib5vrc")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/creack/pty")) +; (home-page "https://github.com/creack/pty") +; (synopsis "pty") +; (description +; "Package pty provides functions for working with Unix terminals. +;") +; (license license:expat))) +; +;(define-public go-github-com-kr-pty-1.1.8 +; (package +; (name "go-github-com-kr-pty") +; (version "1.1.8") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kr/pty") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1vcl6f90n0f8s8b4fyh0832ilybjqcypqyj233lqj1hx62fvgdbk")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kr/pty")) +; (propagated-inputs +; `(("go-github-com-creack-pty-1.1.7" ,go-github-com-creack-pty-1.1.7))) +; (home-page "https://github.com/kr/pty") +; (synopsis "pty") +; (description +; "Package pty is a wrapper for github.com/creack/pty, which provides +;functions for working with Unix terminals. +;") +; (license license:expat))) +; +;(define-public go-github-com-opencontainers-go-digest-1.0.0 +; (package +; (name "go-github-com-opencontainers-go-digest") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/go-digest") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0i5acjajvr6hi9zb7gxwifd8w28y884cv7cx36adj8lngj647xbi")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/go-digest")) +; (home-page "https://github.com/opencontainers/go-digest") +; (synopsis "go-digest") +; (description +; "Package digest provides a generalized type to opaquely represent message +;digests and their operations within the registry. The Digest type is +;designed to serve as a flexible identifier in a content-addressable system. +;More importantly, it provides tools and wrappers to work with +;hash.Hash-based digests with little effort. +;") +; (license (list license:asl2.0 license:cc-by-sa4.0)))) +; +;(define-public go-github-com-opencontainers-image-spec-1.0.2 +; (package +; (name "go-github-com-opencontainers-image-spec") +; (version "1.0.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/image-spec") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1wcw1z39wjx338406ga86a41f5ird0yc4ab3c70nfhkpkvjjzhkm")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/image-spec")) +; (home-page "https://github.com/opencontainers/image-spec") +; (synopsis "OCI Image Format Specification") +; (description +; "The OCI Image Format project creates and maintains the software shipping container image format spec (OCI Image Format).") +; (license license:asl2.0))) +; +;(define-public go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417 +; (package +; (name "go-github-com-opencontainers-runtime-spec") +; (version "1.0.3-0.20210326190908-1c3f411f0417") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/runtime-spec") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1azk8z41ga8af35c966f06vrq9y9hwz6mkm59r3py5qaamzim3qq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) +; (home-page "https://github.com/opencontainers/runtime-spec") +; (synopsis "Open Container Initiative Runtime Specification") +; (description +; "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") +; (license license:asl2.0))) +; +;(define-public go-github-com-opencontainers-runtime-tools-0.9.1-0.20210326182921-59cdde06764b +; (package +; (name "go-github-com-opencontainers-runtime-tools") +; (version "0.9.1-0.20210326182921-59cdde06764b") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/runtime-tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0f4zy6x1rrrg10bphwijic30m3r4mq934zbavnci6jyi41l1w2r0")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/runtime-tools")) +; (home-page "https://github.com/opencontainers/runtime-tools") +; (synopsis "oci-runtime-tool") +; (description +; "oci-runtime-tool is a collection of tools for working with the @url{https://github.com/opencontainers/runtime-spec,OCI runtime specification}. +;To build from source code, runtime-tools requires Go 1.10.x or above.") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20191115151921-52ab43148777") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1kakxbqrb1w2vwg7r1896z68qcx2lfvimsl8cs2niiipbgpi6imx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-opencontainers-selinux-1.10.0 +; (package +; (name "go-github-com-opencontainers-selinux") +; (version "1.10.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/selinux") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "118q1d9py9zhym4jmyiivasmllkdnkp1zyx4brc6n2cfmxfph6gc")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/selinux")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777" +; ,go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777))) +; (home-page "https://github.com/opencontainers/selinux") +; (synopsis "selinux") +; (description "Common SELinux package used across the container ecosystem.") +; (license license:asl2.0))) +; +;(define-public go-github-com-adamkorcz-go-fuzz-headers-0.0.0-20210312213058-32f4d319f0d2 +; (package +; (name "go-github-com-adamkorcz-go-fuzz-headers") +; (version "0.0.0-20210312213058-32f4d319f0d2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/AdamKorcz/go-fuzz-headers") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0r14xxw8c7pkmln0n5vlrahf1785mr7mlyklmfpa11p9kk9pmq5j")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/AdamKorcz/go-fuzz-headers")) +; (home-page "https://github.com/AdamKorcz/go-fuzz-headers") +; (synopsis #f) +; (description #f) +; (license #f))) +; +;(define-public go-github-com-stretchr-testify-1.3.0 +; (package +; (name "go-github-com-stretchr-testify") +; (version "1.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/testify") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0wjchp2c8xbgcbbq32w3kvblk6q6yn533g78nxl6iskq6y95lxsy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/testify")) +; (propagated-inputs +; `(("go-github-com-stretchr-objx-0.1.0" +; ,go-github-com-stretchr-objx-0.1.0) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.0" +; ,go-github-com-davecgh-go-spew-1.1.0))) +; (home-page "https://github.com/stretchr/testify") +; (synopsis "Testify - Thou Shalt Write Tests") +; (description +; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +;") +; (license license:expat))) +; +;(define-public go-github-com-apex-logs-0.0.7 +; (package +; (name "go-github-com-apex-logs") +; (version "0.0.7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/apex/logs") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1h12q9sb7f4yjizajfxvjllzqab1s8scgqj22prwyfbbqg1ilchv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/apex/logs")) +; (propagated-inputs +; `(("go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0" +; ,go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0) +; ("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0))) +; (home-page "https://github.com/apex/logs") +; (synopsis "Example") +; (description "Go client for @url{https://apex.sh/logs/,Apex Logs}.") +; (license license:expat))) +; +;(define-public go-github-com-aphistic-golf-0.0.0-20180712155816-02c07f170c5a +; (package +; (name "go-github-com-aphistic-golf") +; (version "0.0.0-20180712155816-02c07f170c5a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/aphistic/golf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1qixab9bb29wqbr4nc5j3g25hq1j7am93f181rkj7a4qacncx763")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/aphistic/golf")) +; (home-page "https://github.com/aphistic/golf") +; (synopsis "golf") +; (description +; "This package provides logging capabilities using the GELF (@url{https://www.graylog.org/resources/gelf-2/,https://www.graylog.org/resources/gelf-2/}) log format +;") +; (license license:expat))) +; +;(define-public go-github-com-mattn-go-isatty-0.0.5 +; (package +; (name "go-github-com-mattn-go-isatty") +; (version "0.0.5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mattn/go-isatty") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "114d5xm8rfxplzd7nxz97gfngb4bhqy102szl084d1afcxsvm4aa")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mattn/go-isatty")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223" +; ,go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223))) +; (home-page "https://github.com/mattn/go-isatty") +; (synopsis "go-isatty") +; (description "Package isatty implements interface to isatty +;") +; (license license:expat))) +; +;(define-public go-github-com-mattn-go-colorable-0.1.1 +; (package +; (name "go-github-com-mattn-go-colorable") +; (version "0.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mattn/go-colorable") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0l640974j804c1yyjfgyxqlsivz0yrzmbql4mhcw2azryigkp08p")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mattn/go-colorable")) +; (propagated-inputs +; `(("go-github-com-mattn-go-isatty-0.0.5" +; ,go-github-com-mattn-go-isatty-0.0.5))) +; (home-page "https://github.com/mattn/go-colorable") +; (synopsis "go-colorable") +; (description "Colorable writer for windows.") +; (license license:expat))) +; +;(define-public go-github-com-mgutz-ansi-0.0.0-20170206155736-9520e82c474b +; (package +; (name "go-github-com-mgutz-ansi") +; (version "0.0.0-20170206155736-9520e82c474b") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mgutz/ansi") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "00bz22314j26736w1f0q4jy9d9dfaml17vn890n5zqy3cmvmww1j")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mgutz/ansi")) +; (home-page "https://github.com/mgutz/ansi") +; (synopsis "ansi") +; (description +; "Package ansi is a small, fast library to create ANSI colored strings and codes. +;") +; (license license:expat))) +; +;(define-public go-github-com-fsnotify-fsnotify-1.4.7 +; (package +; (name "go-github-com-fsnotify-fsnotify") +; (version "1.4.7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/fsnotify/fsnotify") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/fsnotify/fsnotify")) +; (home-page "https://github.com/fsnotify/fsnotify") +; (synopsis "File system notifications for Go") +; (description +; "Package fsnotify provides a platform-independent interface for file system notifications. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-hpcloud-tail-1.0.0 +; (package +; (name "go-github-com-hpcloud-tail") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hpcloud/tail") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1njpzc0pi1acg5zx9y6vj9xi6ksbsc5d387rd6904hy6rh2m6kn0")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hpcloud/tail")) +; (home-page "https://github.com/hpcloud/tail") +; (synopsis "Go package for tail-ing files") +; (description +; "This package provides a Go package striving to emulate the features of the BSD @code{tail} program.") +; (license license:expat))) +; +;(define-public go-github-com-onsi-ginkgo-1.6.0 +; (package +; (name "go-github-com-onsi-ginkgo") +; (version "1.6.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/onsi/ginkgo") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0x0gc89vgq38xhgmi2h22bhr73cf2gmk42g89nz89k8dgg9hhr25")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/onsi/ginkgo")) +; (home-page "https://github.com/onsi/ginkgo") +; (synopsis "Ginkgo 2.0 Release Candidate is available!") +; (description "Ginkgo is a BDD-style testing framework for Golang +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20180906233101-161cd47e91fd") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0254ld010iijygbzykib2vags1dc0wlmcmhgh4jl8iny159lhbcv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20180909124046-d0be0721c37e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "081wyvfnlf842dqg03raxfz6lldlxpmyh1prix9lmrrm65arxb12")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-gopkg-in-fsnotify-v1-1.4.7 +; (package +; (name "go-gopkg-in-fsnotify-v1") +; (version "1.4.7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/fsnotify.v1") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path +; "gopkg.in/fsnotify.v1" +; #:unpack-path +; "gopkg.in/fsnotify.v1")) +; (home-page "https://gopkg.in/fsnotify.v1") +; (synopsis "File system notifications for Go") +; (description +; "Package fsnotify provides a platform-independent interface for file system notifications. +;") +; (license license:bsd-3))) +; +;(define-public go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7 +; (package +; (name "go-gopkg-in-tomb-v1") +; (version "1.0.0-20141024135613-dd632973f1e7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/tomb.v1") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1lqmq1ag7s4b3gc3ddvr792c5xb5k6sfn0cchr3i2s7f1c231zjv")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/tomb.v1" #:unpack-path "gopkg.in/tomb.v1")) +; (home-page "https://gopkg.in/tomb.v1") +; (synopsis "Installation and usage") +; (description +; "The tomb package offers a conventional API for clean goroutine termination. +;") +; (license license:bsd-3))) +; +;(define-public go-gopkg-in-yaml-v2-2.2.1 +; (package +; (name "go-gopkg-in-yaml-v2") +; (version "2.2.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/yaml.v2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0dwjrs2lp2gdlscs7bsrmyc5yf6mm4fvgw71bzr9mv2qrd2q73s1")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" +; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) +; (home-page "https://gopkg.in/yaml.v2") +; (synopsis "YAML support for the Go language") +; (description "Package yaml implements YAML support for the Go language. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-onsi-gomega-1.5.0 +; (package +; (name "go-github-com-onsi-gomega") +; (version "1.5.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/onsi/gomega") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1n7i4hksdgv410m43v2sw14bl5vy59dkp6nlw5l76nibbh37syr9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/onsi/gomega")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1) +; ("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" +; ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) +; ("go-gopkg-in-fsnotify-v1-1.4.7" ,go-gopkg-in-fsnotify-v1-1.4.7) +; ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e" +; ,go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e) +; ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" +; ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) +; ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" +; ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) +; ("go-github-com-onsi-ginkgo-1.6.0" ,go-github-com-onsi-ginkgo-1.6.0) +; ("go-github-com-hpcloud-tail-1.0.0" ,go-github-com-hpcloud-tail-1.0.0) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0) +; ("go-github-com-fsnotify-fsnotify-1.4.7" +; ,go-github-com-fsnotify-fsnotify-1.4.7))) +; (home-page "https://github.com/onsi/gomega") +; (synopsis ": a BDD Testing Framework for Golang") +; (description +; "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library. +;") +; (license license:expat))) +; +;(define-public go-github-com-sergi-go-diff-1.0.0 +; (package +; (name "go-github-com-sergi-go-diff") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/sergi/go-diff") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0swiazj8wphs2zmk1qgq75xza6m19snif94h2m6fi8dqkwqdl7c7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/sergi/go-diff")) +; (home-page "https://github.com/sergi/go-diff") +; (synopsis "go-diff") +; (description +; "go-diff offers algorithms to perform operations required for synchronizing plain text:") +; (license license:expat))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20190426145343-a29dc8fdc734 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20190426145343-a29dc8fdc734") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "07f0jj4haqs0ywc1akk1qjwn5msl2j0pry1rxjkkbfcq4r6ihc1p")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" +; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) +; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" +; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-github-com-aphistic-sweet-0.2.0 +; (package +; (name "go-github-com-aphistic-sweet") +; (version "0.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/aphistic/sweet") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1bb4qagfxf6byqn2yx0vq24xfvisz3ah4w6bvqclc8cklvfngw43")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/aphistic/sweet")) +; (propagated-inputs +; `(("go-golang-org-x-crypto-0.0.0-20190426145343-a29dc8fdc734" +; ,go-golang-org-x-crypto-0.0.0-20190426145343-a29dc8fdc734) +; ("go-github-com-sergi-go-diff-1.0.0" +; ,go-github-com-sergi-go-diff-1.0.0) +; ("go-github-com-onsi-gomega-1.5.0" ,go-github-com-onsi-gomega-1.5.0) +; ("go-github-com-mgutz-ansi-0.0.0-20170206155736-9520e82c474b" +; ,go-github-com-mgutz-ansi-0.0.0-20170206155736-9520e82c474b) +; ("go-github-com-mattn-go-colorable-0.1.1" +; ,go-github-com-mattn-go-colorable-0.1.1))) +; (home-page "https://github.com/aphistic/sweet") +; (synopsis "sweet") +; (description +; "Sweet is a pluggable test runner capable of hooking into standard Go tests. It attempts to provide access to the standard Go test tool as close as possible while adding support for test suites and plugins that can hook into test results to add additional functionality.") +; (license license:expat))) +; +;(define-public go-github-com-jmespath-go-jmespath-0.0.0-20180206201540-c2b33e8439af +; (package +; (name "go-github-com-jmespath-go-jmespath") +; (version "0.0.0-20180206201540-c2b33e8439af") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/jmespath/go-jmespath") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1r6w7ydx8ydryxk3sfhzsk8m6f1nsik9jg3i1zhi69v4kfl4d5cz")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/jmespath/go-jmespath")) +; (home-page "https://github.com/jmespath/go-jmespath") +; (synopsis "go-jmespath - A JMESPath implementation in Go") +; (description +; "go-jmespath is a GO implementation of JMESPath, +;which is a query language for JSON. It will take a JSON +;document and transform it into another JSON document +;through a JMESPath expression.") +; (license license:asl2.0))) +; +;(define-public go-github-com-aws-aws-sdk-go-1.20.6 +; (package +; (name "go-github-com-aws-aws-sdk-go") +; (version "1.20.6") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/aws/aws-sdk-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "016vy5s9finyfgh08j7rvn2pnwymdgj2ydr59w57pysnri87mdwx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/aws/aws-sdk-go")) +; (propagated-inputs +; `(("go-github-com-jmespath-go-jmespath-0.0.0-20180206201540-c2b33e8439af" +; ,go-github-com-jmespath-go-jmespath-0.0.0-20180206201540-c2b33e8439af))) +; (home-page "https://github.com/aws/aws-sdk-go") +; (synopsis "AWS SDK for Go") +; (description +; "Package sdk is the official AWS SDK for the Go programming language. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-aybabtme-rgbterm-0.0.0-20170906152045-cc83f3b3ce59 +; (package +; (name "go-github-com-aybabtme-rgbterm") +; (version "0.0.0-20170906152045-cc83f3b3ce59") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/aybabtme/rgbterm") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0wvmxvjn64968ikvnxrflb1x8rlcwzpfl53fzbxff2axbx9lq50q")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/aybabtme/rgbterm")) +; (home-page "https://github.com/aybabtme/rgbterm") +; (synopsis "RGB terminal") +; (description +; "Package rgbterm colorizes bytes and strings using RGB colors, for a +;full range of pretty terminal strings. +;") +; (license #f))) +; +;(define-public go-github-com-fatih-color-1.7.0 +; (package +; (name "go-github-com-fatih-color") +; (version "1.7.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/fatih/color") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0v8msvg38r8d1iiq2i5r4xyfx0invhc941kjrsg5gzwvagv55inv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/fatih/color")) +; (home-page "https://github.com/fatih/color") +; (synopsis "color") +; (description +; "Package color is an ANSI color package to output colorized or SGR defined +;output to the standard output. The API can be used in several way, pick one +;that suits you. +;") +; (license license:expat))) +; +;(define-public go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515 +; (package +; (name "go-github-com-kr-logfmt") +; (version "0.0.0-20140226030751-b84e30acd515") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kr/logfmt") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "02ldzxgznrfdzvghfraslhgp19la1fczcbzh7wm2zdc6lmpd1qq9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kr/logfmt")) +; (home-page "https://github.com/kr/logfmt") +; (synopsis #f) +; (description +; "Package implements the decoding of logfmt key-value pairs. +;") +; (license license:expat))) +; +;(define-public go-github-com-go-logfmt-logfmt-0.4.0 +; (package +; (name "go-github-com-go-logfmt-logfmt") +; (version "0.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/go-logfmt/logfmt") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "06smxc112xmixz78nyvk3b2hmc7wasf2sl5vxj1xz62kqcq9lzm9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/go-logfmt/logfmt")) +; (propagated-inputs +; `(("go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515" +; ,go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515))) +; (home-page "https://github.com/go-logfmt/logfmt") +; (synopsis "logfmt") +; (description +; "Package logfmt implements utilities to marshal and unmarshal data in the +;logfmt format. The logfmt format records key/value pairs in a way that +;balances readability for humans and simplicity of computer parsing. It is +;most commonly used as a more human friendly alternative to JSON for +;structured logging. +;") +; (license license:expat))) +; +;(define-public go-github-com-golang-protobuf-1.3.1 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.3.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "15am4s4646qy6iv0g3kkqq52rzykqjhm4bf08dk0fy2r58knpsyl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-github-com-google-uuid-1.1.1 +; (package +; (name "go-github-com-google-uuid") +; (version "1.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/uuid") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0hfxcf9frkb57k6q0rdkrmnfs78ms21r1qfk9fhlqga2yh5xg8zb")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/uuid")) +; (home-page "https://github.com/google/uuid") +; (synopsis "uuid") +; (description "Package uuid generates and inspects UUIDs. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-jpillora-backoff-0.0.0-20180909062703-3050d21c67d7 +; (package +; (name "go-github-com-jpillora-backoff") +; (version "0.0.0-20180909062703-3050d21c67d7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/jpillora/backoff") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1nxapdx9xg5gwiscfhq7m0w14hj4gaxb4avmgf1mx9zd3jnw9jxv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/jpillora/backoff")) +; (home-page "https://github.com/jpillora/backoff") +; (synopsis "Backoff") +; (description +; "Package backoff provides an exponential-backoff implementation. +;") +; (license license:expat))) +; +;(define-public go-github-com-kr-pretty-0.2.0 +; (package +; (name "go-github-com-kr-pretty") +; (version "0.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kr/pretty") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ywbfzz1h3a3qd8rpkiqwi1dm4w8ls9ijb4x1b7567grns9f0vnp")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kr/pretty")) +; (propagated-inputs +; `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) +; (home-page "https://github.com/kr/pretty") +; (synopsis #f) +; (description +; "Package pretty provides pretty-printing for Go values. This is +;useful during debugging, to avoid wrapping long output lines in +;the terminal. +;") +; (license license:expat))) +; +;(define-public go-github-com-mattn-go-colorable-0.1.2 +; (package +; (name "go-github-com-mattn-go-colorable") +; (version "0.1.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mattn/go-colorable") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0512jm3wmzkkn7d99x9wflyqf48n5ri3npy1fqkq6l6adc5mni3n")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mattn/go-colorable")) +; (propagated-inputs +; `(("go-github-com-mattn-go-isatty-0.0.8" +; ,go-github-com-mattn-go-isatty-0.0.8))) +; (home-page "https://github.com/mattn/go-colorable") +; (synopsis "go-colorable") +; (description "Colorable writer for windows.") +; (license license:expat))) +; +;(define-public go-github-com-pkg-errors-0.8.1 +; (package +; (name "go-github-com-pkg-errors") +; (version "0.8.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/pkg/errors") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0g5qcb4d4fd96midz0zdk8b9kz8xkzwfa8kr1cliqbg8sxsy5vd1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/pkg/errors")) +; (home-page "https://github.com/pkg/errors") +; (synopsis "errors") +; (description "Package errors provides simple error handling primitives. +;") +; (license license:bsd-2))) +; +;(define-public go-github-com-rogpeppe-fastuuid-1.1.0 +; (package +; (name "go-github-com-rogpeppe-fastuuid") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/rogpeppe/fastuuid") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1jlif5pxyz3md02ij93kd2y2j1zz0ajc9k8azvn83vv6l3r5c1zg")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/rogpeppe/fastuuid")) +; (home-page "https://github.com/rogpeppe/fastuuid") +; (synopsis "fastuuid") +; (description +; "Package fastuuid provides fast UUID generation of 192 bit +;universally unique identifiers. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-smartystreets-go-aws-auth-0.0.0-20180515143844-0c1422d1fdb9 +; (package +; (name "go-github-com-smartystreets-go-aws-auth") +; (version "0.0.0-20180515143844-0c1422d1fdb9") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/smartystreets-archives/go-aws-auth") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0krfdpgn3gfii1z9fi8ydfw0wwfqyvp6w3rji7w92m528zkjl93d")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/smartystreets/go-aws-auth")) +; (home-page "https://github.com/smartystreets/go-aws-auth") +; (synopsis "go-aws-auth") +; (description +; "Package awsauth implements AWS request signing using Signed Signature Version 2, +;Signed Signature Version 3, and Signed Signature Version 4. Supports S3 and STS. +;") +; (license license:expat))) +; +;(define-public go-github-com-smartystreets-assertions-1.0.0 +; (package +; (name "go-github-com-smartystreets-assertions") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/smartystreets/assertions") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1188hs39zvil41sdnxs83h1hp319lfyc5n2rvd1xnhz1dh5qjjh4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/smartystreets/assertions")) +; (home-page "https://github.com/smartystreets/assertions") +; (synopsis #f) +; (description +; "Package assertions contains the implementations for all assertions which +;are referenced in goconvey's `convey` package +;(github.com/smartystreets/goconvey/convey) and gunit (github.com/smartystreets/gunit) +;for use with the So(...) method. +;They can also be used in traditional Go test functions and even in +;applications. +;") +; (license license:expat))) +; +;(define-public go-github-com-smartystreets-gunit-1.0.0 +; (package +; (name "go-github-com-smartystreets-gunit") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/smartystreets/gunit") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "11d09rl5qqpj36a311pjj8w5jkj83d5b8gdcsx8f1zn4j924sm5d")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/smartystreets/gunit")) +; (propagated-inputs +; `(("go-github-com-smartystreets-assertions-1.0.0" +; ,go-github-com-smartystreets-assertions-1.0.0))) +; (home-page "https://github.com/smartystreets/gunit") +; (synopsis "gunit") +; (description +; "Package gunit provides \"testing\" package hooks and convenience +;functions for writing tests in an xUnit style. +;See the README file and the examples folder for examples. +;") +; (license license:expat))) +; +;(define-public go-github-com-stretchr-testify-1.4.0 +; (package +; (name "go-github-com-stretchr-testify") +; (version "1.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/testify") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "187i5g88sxfy4vxpm7dw1gwv29pa2qaq475lxrdh5livh69wqfjb")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/testify")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) +; ("go-github-com-stretchr-objx-0.1.0" +; ,go-github-com-stretchr-objx-0.1.0) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.0" +; ,go-github-com-davecgh-go-spew-1.1.0))) +; (home-page "https://github.com/stretchr/testify") +; (synopsis "Testify - Thou Shalt Write Tests") +; (description +; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +;") +; (license license:expat))) +; +;(define-public go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0 +; (package +; (name "go-github-com-tj-assert") +; (version "0.0.0-20171129193455-018094318fb0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/tj/assert") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "15ika7izp5hkd10dm30apwfvpm0d1yl2rnxs6896q0svz9zvi2z3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/tj/assert")) +; (home-page "https://github.com/tj/assert") +; (synopsis "assert") +; (description +; "Package assert implements the same assertions as the `assert` package but +;stops test execution when a test fails. +;") +; (license license:expat))) +; +;(define-public go-github-com-tj-go-elastic-0.0.0-20171221160941-36157cbbebc2 +; (package +; (name "go-github-com-tj-go-elastic") +; (version "0.0.0-20171221160941-36157cbbebc2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/tj/go-elastic") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1r94vc4hbfvqvjz74n4mvsw4dy3vbyzlivb90kyn8vn76a4wqk69")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/tj/go-elastic")) +; (home-page "https://github.com/tj/go-elastic") +; (synopsis "go-elastic") +; (description +; "Package elastic provides an Elasticsearch client with AWS sigv4 support. +;") +; (license license:expat))) +; +;(define-public go-github-com-tj-go-kinesis-0.0.0-20171128231115-08b17f58cb1b +; (package +; (name "go-github-com-tj-go-kinesis") +; (version "0.0.0-20171128231115-08b17f58cb1b") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/tj/go-kinesis") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "108c6p5j6rhhc2cnc2v5368yfsw73y6lzlvz02vpvvjph8rhmld4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/tj/go-kinesis")) +; (home-page "https://github.com/tj/go-kinesis") +; (synopsis "go-kinesis") +; (description +; "Package kinesis implements a batch producer built on top of the official AWS SDK. +;") +; (license license:expat))) +; +;(define-public go-github-com-tj-go-spin-1.1.0 +; (package +; (name "go-github-com-tj-go-spin") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/tj/go-spin") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "11xr67991m5pwsy1dira3iwd0sr55vmn1cyjwmlqziw4bwpym64s")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/tj/go-spin")) +; (home-page "https://github.com/tj/go-spin") +; (synopsis #f) +; (description #f) +; (license #f))) +; +;(define-public go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190620200207-3b0461eec859") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0l00c8l0a8xnv6qdpwfzxxsr58jggacgzdrwiprrfx2xqm37b6d5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20180917221912-90fa682c2a6e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-text-0.3.2 +; (package +; (name "go-golang-org-x-text") +; (version "0.3.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/text") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0flv9idw0jm5nm8lx25xqanbkqgfiym6619w575p7nrdh0riqwqh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/text")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" +; ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) +; (home-page "https://golang.org/x/text") +; (synopsis "Go Text") +; (description +; "text is a repository of text-related packages related to internationalization +;(i18n) and localization (l10n), such as character encodings, text +;transformations, and locale-specific text handling. +;") +; (license license:bsd-3))) +; +;(define-public go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15 +; (package +; (name "go-gopkg-in-check-v1") +; (version "1.0.0-20190902080502-41f04d3bba15") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/check.v1") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0vfk9czmlxmp6wndq8k17rhnjxal764mxfhrccza7nwlia760pjy")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) +; (home-page "https://gopkg.in/check.v1") +; (synopsis "Instructions") +; (description +; "Package check is a rich testing extension for Go's testing package. +;") +; (license license:bsd-2))) +; +;(define-public go-github-com-apex-log-1.4.0 +; (package +; (name "go-github-com-apex-log") +; (version "1.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/apex/log") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0711096f04dyjk2vgj5b50491fl36wciwbq80xwvns5wwkqdg2z5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/apex/log")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" +; ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) +; ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) +; ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" +; ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) +; ("go-github-com-tj-go-spin-1.1.0" ,go-github-com-tj-go-spin-1.1.0) +; ("go-github-com-tj-go-kinesis-0.0.0-20171128231115-08b17f58cb1b" +; ,go-github-com-tj-go-kinesis-0.0.0-20171128231115-08b17f58cb1b) +; ("go-github-com-tj-go-elastic-0.0.0-20171221160941-36157cbbebc2" +; ,go-github-com-tj-go-elastic-0.0.0-20171221160941-36157cbbebc2) +; ("go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0" +; ,go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0) +; ("go-github-com-stretchr-testify-1.4.0" +; ,go-github-com-stretchr-testify-1.4.0) +; ("go-github-com-smartystreets-gunit-1.0.0" +; ,go-github-com-smartystreets-gunit-1.0.0) +; ("go-github-com-smartystreets-go-aws-auth-0.0.0-20180515143844-0c1422d1fdb9" +; ,go-github-com-smartystreets-go-aws-auth-0.0.0-20180515143844-0c1422d1fdb9) +; ("go-github-com-rogpeppe-fastuuid-1.1.0" +; ,go-github-com-rogpeppe-fastuuid-1.1.0) +; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) +; ("go-github-com-mattn-go-colorable-0.1.2" +; ,go-github-com-mattn-go-colorable-0.1.2) +; ("go-github-com-kr-pretty-0.2.0" ,go-github-com-kr-pretty-0.2.0) +; ("go-github-com-jpillora-backoff-0.0.0-20180909062703-3050d21c67d7" +; ,go-github-com-jpillora-backoff-0.0.0-20180909062703-3050d21c67d7) +; ("go-github-com-google-uuid-1.1.1" ,go-github-com-google-uuid-1.1.1) +; ("go-github-com-golang-protobuf-1.3.1" +; ,go-github-com-golang-protobuf-1.3.1) +; ("go-github-com-go-logfmt-logfmt-0.4.0" +; ,go-github-com-go-logfmt-logfmt-0.4.0) +; ("go-github-com-fatih-color-1.7.0" ,go-github-com-fatih-color-1.7.0) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1) +; ("go-github-com-aybabtme-rgbterm-0.0.0-20170906152045-cc83f3b3ce59" +; ,go-github-com-aybabtme-rgbterm-0.0.0-20170906152045-cc83f3b3ce59) +; ("go-github-com-aws-aws-sdk-go-1.20.6" +; ,go-github-com-aws-aws-sdk-go-1.20.6) +; ("go-github-com-aphistic-sweet-0.2.0" +; ,go-github-com-aphistic-sweet-0.2.0) +; ("go-github-com-aphistic-golf-0.0.0-20180712155816-02c07f170c5a" +; ,go-github-com-aphistic-golf-0.0.0-20180712155816-02c07f170c5a) +; ("go-github-com-apex-logs-0.0.7" ,go-github-com-apex-logs-0.0.7))) +; (home-page "https://github.com/apex/log") +; (synopsis "Handlers") +; (description +; "Package log implements a simple structured logging API designed with few assumptions. Designed for +;centralized logging solutions such as Kinesis which require encoding and decoding before fanning-out +;to handlers. +;") +; (license license:expat))) +; +;(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0 +; (package +; (name "go-github-com-cpuguy83-go-md2man-v2") +; (version "2.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/cpuguy83/go-md2man") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) +; (propagated-inputs +; `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" +; ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) +; ("go-github-com-russross-blackfriday-v2-2.0.1" +; ,go-github-com-russross-blackfriday-v2-2.0.1) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0))) +; (home-page "https://github.com/cpuguy83/go-md2man") +; (synopsis "go-md2man") +; (description "Converts markdown into roff (man pages).") +; (license license:expat))) +; +;(define-public go-github-com-cyphar-filepath-securejoin-0.2.2 +; (package +; (name "go-github-com-cyphar-filepath-securejoin") +; (version "0.2.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/cyphar/filepath-securejoin") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0id32zjb92wm569m29nfrzz5mw9z1glr3klayr6j134pp4h1sgq4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/cyphar/filepath-securejoin")) +; (home-page "https://github.com/cyphar/filepath-securejoin") +; (synopsis #f) +; (description +; "Package securejoin is an implementation of the hopefully-soon-to-be-included +;SecureJoin helper that is meant to be part of the \"path/filepath\" package. +;The purpose of this project is to provide a PoC implementation to make the +;SecureJoin proposal (@url{https://github.com/golang/go/issues/20126,https://github.com/golang/go/issues/20126}) more +;tangible. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-docker-go-units-0.4.0 +; (package +; (name "go-github-com-docker-go-units") +; (version "0.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/docker/go-units") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0k8gja8ql4pqg5rzmqvka42vjfs6rzablak87whcnqba6qxpimvz")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/docker/go-units")) +; (home-page "https://github.com/docker/go-units") +; (synopsis "Introduction") +; (description +; "Package units provides helper function to parse and print size and time units +;in human-readable format. +;") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-protobuf-1.23.0 +; (package +; (name "go-google-golang-org-protobuf") +; (version "1.23.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "03yan0m1v0zmlr935p4n24fd376mznsg85zy8sywbgisls4s1bzy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.4.0" +; ,go-github-com-golang-protobuf-1.4.0))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.4.2 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.4.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0m5z81im4nsyfgarjhppayk4hqnrwswr3nix9mj8pff8x9jvcjqw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.23.0" +; ,go-google-golang-org-protobuf-1.23.0) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0))) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-github-com-google-go-cmp-0.5.0 +; (package +; (name "go-github-com-google-go-cmp") +; (version "0.5.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/go-cmp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "04pzp583p6b32y34c6jygfxarff9qjs39rarvfh6467z24sdd9k4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/go-cmp")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" +; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) +; (home-page "https://github.com/google/go-cmp") +; (synopsis "Package for equality of Go values") +; (description +; "This package is intended to be a more powerful and safer alternative to +;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") +; (license license:bsd-3))) +; +;(define-public go-github-com-klauspost-compress-1.11.3 +; (package +; (name "go-github-com-klauspost-compress") +; (version "1.11.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/klauspost/compress") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "04wpilw6072fh2wd492ma1nw4br7bvz466mj0vi2m1g4w6d0z88z")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/klauspost/compress")) +; (home-page "https://github.com/klauspost/compress") +; (synopsis "compress") +; (description "This package provides various compression algorithms.") +; (license #f))) +; +;(define-public go-github-com-klauspost-pgzip-1.2.4 +; (package +; (name "go-github-com-klauspost-pgzip") +; (version "1.2.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/klauspost/pgzip") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0mnhfdn0isbkra455jynqjbmrwymx09shlbzbyvgfycih3nbrif0")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/klauspost/pgzip")) +; (home-page "https://github.com/klauspost/pgzip") +; (synopsis "pgzip") +; (description +; "Package pgzip implements reading and writing of gzip format compressed files, +;as specified in @url{https://rfc-editor.org/rfc/rfc1952.html,RFC 1952}. +;") +; (license license:expat))) +; +;(define-public go-github-com-creack-pty-1.1.9 +; (package +; (name "go-github-com-creack-pty") +; (version "1.1.9") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/creack/pty") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1v52599qq76dwq742mffakzj6mxqqccv2szn3hjicjld56nmd2d3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/creack/pty")) +; (home-page "https://github.com/creack/pty") +; (synopsis "pty") +; (description +; "Package pty provides functions for working with Unix terminals. +;") +; (license license:expat))) +; +;(define-public go-github-com-kr-text-0.2.0 +; (package +; (name "go-github-com-kr-text") +; (version "0.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kr/text") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0hf58ypz6rxsw6nx3i856whir9lvy4sdx946wbw1nfaf2rdmr9vx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kr/text")) +; (propagated-inputs +; `(("go-github-com-creack-pty-1.1.9" ,go-github-com-creack-pty-1.1.9))) +; (home-page "https://github.com/kr/text") +; (synopsis #f) +; (description +; "Package text provides rudimentary functions for manipulating text in +;paragraphs. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-sys-0.0.0-20200116001909-b77594299b42 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20200116001909-b77594299b42") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0isfm6kmh4fjhh6m7mrb3zvdjka2y31c5habr5kydl7rg0lwkabv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-mattn-go-isatty-0.0.12 +; (package +; (name "go-github-com-mattn-go-isatty") +; (version "0.0.12") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mattn/go-isatty") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1dfsh27d52wmz0nmmzm2382pfrs2fcijvh6cgir7jbb4pnigr5w4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mattn/go-isatty")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20200116001909-b77594299b42" +; ,go-golang-org-x-sys-0.0.0-20200116001909-b77594299b42))) +; (home-page "https://github.com/mattn/go-isatty") +; (synopsis "go-isatty") +; (description "Package isatty implements interface to isatty +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-sys-0.0.0-20200223170610-d5e6a3e2c0ae +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20200223170610-d5e6a3e2c0ae") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0lz7vm5dz2p14fzq2j4m1l9p392cl0fa73aaf45gln07ylfajk4n")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-mattn-go-colorable-0.1.6 +; (package +; (name "go-github-com-mattn-go-colorable") +; (version "0.1.6") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mattn/go-colorable") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0zv9ix7g0qf71jdhv7gbab9hjfkgbxl22kwhpz9ck1y6m4g1zxaw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mattn/go-colorable")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20200223170610-d5e6a3e2c0ae" +; ,go-golang-org-x-sys-0.0.0-20200223170610-d5e6a3e2c0ae) +; ("go-github-com-mattn-go-isatty-0.0.12" +; ,go-github-com-mattn-go-isatty-0.0.12))) +; (home-page "https://github.com/mattn/go-colorable") +; (synopsis "go-colorable") +; (description "Colorable writer for windows.") +; (license license:expat))) +; +;(define-public go-github-com-mohae-deepcopy-0.0.0-20170929034955-c48cc78d4826 +; (package +; (name "go-github-com-mohae-deepcopy") +; (version "0.0.0-20170929034955-c48cc78d4826") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mohae/deepcopy") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0jdhsz0hsbn0k45rmvm39knbvs024j24ay2q65k5ih8ql8m2c0sd")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mohae/deepcopy")) +; (home-page "https://github.com/mohae/deepcopy") +; (synopsis "deepCopy") +; (description +; "deepcopy makes deep copies of things. A standard copy will copy the +;pointers: deep copy copies the values pointed to. Unexported field +;values are not copied. +;") +; (license license:expat))) +; +;(define-public go-github-com-kr-pty-1.1.1 +; (package +; (name "go-github-com-kr-pty") +; (version "1.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kr/pty") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0383f0mb9kqjvncqrfpidsf8y6ns5zlrc91c6a74xpyxjwvzl2y6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kr/pty")) +; (home-page "https://github.com/kr/pty") +; (synopsis "pty") +; (description +; "Package pty is a wrapper for github.com/creack/pty, which provides +;functions for working with Unix terminals. +;") +; (license license:expat))) +; +;(define-public go-github-com-kr-text-0.1.0 +; (package +; (name "go-github-com-kr-text") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kr/text") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1gm5bsl01apvc84bw06hasawyqm4q84vx1pm32wr9jnd7a8vjgj1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kr/text")) +; (propagated-inputs +; `(("go-github-com-kr-pty-1.1.1" ,go-github-com-kr-pty-1.1.1))) +; (home-page "https://github.com/kr/text") +; (synopsis #f) +; (description +; "Package text provides rudimentary functions for manipulating text in +;paragraphs. +;") +; (license license:expat))) +; +;(define-public go-github-com-niemeyer-pretty-0.0.0-20200227124842-a10e7caefd8e +; (package +; (name "go-github-com-niemeyer-pretty") +; (version "0.0.0-20200227124842-a10e7caefd8e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/niemeyer/pretty") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1jmazh4xzaa3v6g46hz60q2z7nmqs9l9cxdzmmscn3kbcs2znq4v")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/niemeyer/pretty")) +; (propagated-inputs +; `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) +; (home-page "https://github.com/niemeyer/pretty") +; (synopsis #f) +; (description +; "Package pretty provides pretty-printing for Go values. This is +;useful during debugging, to avoid wrapping long output lines in +;the terminal. +;") +; (license license:expat))) +; +;(define-public go-github-com-opencontainers-go-digest-1.0.0 +; (package +; (name "go-github-com-opencontainers-go-digest") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/go-digest") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0i5acjajvr6hi9zb7gxwifd8w28y884cv7cx36adj8lngj647xbi")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/go-digest")) +; (home-page "https://github.com/opencontainers/go-digest") +; (synopsis "go-digest") +; (description +; "Package digest provides a generalized type to opaquely represent message +;digests and their operations within the registry. The Digest type is +;designed to serve as a flexible identifier in a content-addressable system. +;More importantly, it provides tools and wrappers to work with +;hash.Hash-based digests with little effort. +;") +; (license (list license:asl2.0 license:cc-by-sa4.0)))) +; +;(define-public go-github-com-opencontainers-image-spec-1.0.1 +; (package +; (name "go-github-com-opencontainers-image-spec") +; (version "1.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/image-spec") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "03dvbj3dln8c55v9gp79mgmz2yi2ws3r08iyz2fk41y3i22iaw1q")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/image-spec")) +; (home-page "https://github.com/opencontainers/image-spec") +; (synopsis "OCI Image Format Specification") +; (description +; "The OCI Image Format project creates and maintains the software shipping container image format spec (OCI Image Format).") +; (license license:asl2.0))) +; +;(define-public go-github-com-opencontainers-runc-1.0.0-rc90 +; (package +; (name "go-github-com-opencontainers-runc") +; (version "1.0.0-rc90") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/runc") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0pi3rvj585997m4z9ljkxz2z9yxf9p2jr0pmqbqrc7bc95f5hagk")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/runc")) +; (home-page "https://github.com/opencontainers/runc") +; (synopsis "runc") +; (description +; "@code{runc} is a CLI tool for spawning and running containers according to the OCI specification.") +; (license license:asl2.0))) +; +;(define-public go-github-com-opencontainers-runtime-spec-1.0.2 +; (package +; (name "go-github-com-opencontainers-runtime-spec") +; (version "1.0.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/runtime-spec") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19w981vcmd5lp2hy0630x6ayb8zz17n2vxqm2py5mg945xflcizg")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) +; (home-page "https://github.com/opencontainers/runtime-spec") +; (synopsis "Open Container Initiative Runtime Specification") +; (description +; "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") +; (license license:asl2.0))) +; +;(define-public go-github-com-pkg-errors-0.9.1 +; (package +; (name "go-github-com-pkg-errors") +; (version "0.9.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/pkg/errors") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1761pybhc2kqr6v5fm8faj08x9bql8427yqg6vnfv6nhrasx1mwq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/pkg/errors")) +; (home-page "https://github.com/pkg/errors") +; (synopsis "errors") +; (description "Package errors provides simple error handling primitives. +;") +; (license license:bsd-2))) +; +;(define-public go-github-com-rootless-containers-proto-0.1.0 +; (package +; (name "go-github-com-rootless-containers-proto") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/rootless-containers/proto") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1yik3b2fxpdkhplni8saabpvf43wnnz4wh6fapak29mkj3lx3mfh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/rootless-containers/proto")) +; (home-page "https://github.com/rootless-containers/proto") +; (synopsis #f) +; (description +; "This project contains the @url{https://developers.google.com/protocol-buffers/,protobuf} definition of the +;@code{user.rootlesscontainers} extended attribute. The main purpose of this +;attribute is to allow for a interoperable and standardised way of emulating +;persistent syscalls in a @url{https://rootlesscontaine.rs/,rootless container} (syscalls +;such as @code{chown(2)} which would ordinarily fail).") +; (license license:asl2.0))) +; +;(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.3 +; (package +; (name "go-github-com-konsorten-go-windows-terminal-sequences") +; (version "1.0.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/konsorten/go-windows-terminal-sequences") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1yrsd4s8vhjnxhwbigirymz89dn6qfjnhn28i33vvvdgf96j6ypl")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) +; (home-page "https://github.com/konsorten/go-windows-terminal-sequences") +; (synopsis "Windows Terminal Sequences") +; (description +; "This library allow for enabling Windows terminal color support for Go.") +; (license license:expat))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190422165155-953cdadca894") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0gkha4whk8xkcv3isigbs250akag99isxnd3v9xmy0kl3g88hxy1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-sirupsen-logrus-1.6.0 +; (package +; (name "go-github-com-sirupsen-logrus") +; (version "1.6.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/sirupsen/logrus") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1zf9is1yxxnna0d1pyag2m9ziy3l27zb2j92p9msm1gx5jjrvzzj")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/sirupsen/logrus")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894" +; ,go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894) +; ("go-github-com-stretchr-testify-1.2.2" +; ,go-github-com-stretchr-testify-1.2.2) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.3" +; ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.3) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://github.com/sirupsen/logrus") +; (synopsis "Logrus") +; (description +; "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. +;") +; (license license:expat))) +; +;(define-public go-github-com-davecgh-go-spew-1.1.0 +; (package +; (name "go-github-com-davecgh-go-spew") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/davecgh/go-spew") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/davecgh/go-spew")) +; (home-page "https://github.com/davecgh/go-spew") +; (synopsis "go-spew") +; (description +; "Go-spew implements a deep pretty printer for Go data structures to aid in +;debugging. A comprehensive suite of tests with 100% test coverage is provided +;to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage +;report. Go-spew is licensed under the liberal ISC license, so it may be used in +;open source or commercial projects.") +; (license license:isc))) +; +;(define-public go-github-com-stretchr-objx-0.1.0 +; (package +; (name "go-github-com-stretchr-objx") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/objx") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/objx")) +; (home-page "https://github.com/stretchr/objx") +; (synopsis "Objx") +; (description +; "Objx - Go package for dealing with maps, slices, JSON and other data. +;") +; (license license:expat))) +; +;(define-public go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c +; (package +; (name "go-gopkg-in-yaml-v3") +; (version "3.0.0-20200313102051-9f266ea9e77c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/yaml.v3") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1bbai3lzb50m0x2vwsdbagrbhvfylj9k1m32hgbqwldqx4p9ay35")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" +; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) +; (home-page "https://gopkg.in/yaml.v3") +; (synopsis "YAML support for the Go language") +; (description "Package yaml implements YAML support for the Go language. +;") +; (license #f))) +; +;(define-public go-github-com-stretchr-testify-1.6.1 +; (package +; (name "go-github-com-stretchr-testify") +; (version "1.6.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/testify") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1yhiqqzjvi63pf01rgzx68gqkkvjx03fvl5wk30br5l6s81s090l")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/testify")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" +; ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) +; ("go-github-com-stretchr-objx-0.1.0" +; ,go-github-com-stretchr-objx-0.1.0) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.0" +; ,go-github-com-davecgh-go-spew-1.1.0))) +; (home-page "https://github.com/stretchr/testify") +; (synopsis "Testify - Thou Shalt Write Tests") +; (description +; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +;") +; (license license:expat))) +; +;(define-public go-gopkg-in-yaml-v3-3.0.0-20200605160147-a5ece683394c +; (package +; (name "go-gopkg-in-yaml-v3") +; (version "3.0.0-20200605160147-a5ece683394c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/yaml.v3") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "03cm7c3p5fh0aa8vnxv5010dgqqr268ivb480ix1salxx3396w68")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" +; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) +; (home-page "https://gopkg.in/yaml.v3") +; (synopsis "YAML support for the Go language") +; (description "Package yaml implements YAML support for the Go language. +;") +; (license #f))) +; +;(define-public go-github-com-tj-assert-0.0.3 +; (package +; (name "go-github-com-tj-assert") +; (version "0.0.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/tj/assert") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1j5swk3fjq1h5fpqkipddz2ccnbidr7qrpm5dpdaflg9q5jnc673")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/tj/assert")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v3-3.0.0-20200605160147-a5ece683394c" +; ,go-gopkg-in-yaml-v3-3.0.0-20200605160147-a5ece683394c) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://github.com/tj/assert") +; (synopsis "assert") +; (description +; "Package assert implements the same assertions as the `assert` package but +;stops test execution when a test fails. +;") +; (license license:expat))) +; +;(define-public go-github-com-russross-blackfriday-v2-2.0.1 +; (package +; (name "go-github-com-russross-blackfriday-v2") +; (version "2.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/russross/blackfriday") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0nlz7isdd4rgnwzs68499hlwicxz34j2k2a0b8jy0y7ycd2bcr5j")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/russross/blackfriday/v2")) +; (home-page "https://github.com/russross/blackfriday") +; (synopsis "Blackfriday") +; (description "Package blackfriday is a markdown processor. +;") +; (license license:bsd-2))) +; +;(define-public go-github-com-shurcool-sanitized-anchor-name-1.0.0 +; (package +; (name "go-github-com-shurcool-sanitized-anchor-name") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/shurcooL/sanitized_anchor_name") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1gv9p2nr46z80dnfjsklc6zxbgk96349sdsxjz05f3z6wb6m5l8f")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/shurcooL/sanitized_anchor_name")) +; (home-page "https://github.com/shurcooL/sanitized_anchor_name") +; (synopsis "sanitized_anchor_name") +; (description +; "Package sanitized_anchor_name provides a func to create sanitized anchor names. +;") +; (license license:expat))) +; +;(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d +; (package +; (name "go-github-com-cpuguy83-go-md2man-v2") +; (version "2.0.0-20190314233015-f79a8a8ca69d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/cpuguy83/go-md2man") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) +; (propagated-inputs +; `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" +; ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) +; ("go-github-com-russross-blackfriday-v2-2.0.1" +; ,go-github-com-russross-blackfriday-v2-2.0.1) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0))) +; (home-page "https://github.com/cpuguy83/go-md2man") +; (synopsis "go-md2man") +; (description "Converts markdown into roff (man pages).") +; (license license:expat))) +; +;(define-public go-gopkg-in-yaml-v2-2.2.2 +; (package +; (name "go-gopkg-in-yaml-v2") +; (version "2.2.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/yaml.v2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "01wj12jzsdqlnidpyjssmj0r4yavlqy7dwrg7adqd8dicjc4ncsa")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" +; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) +; (home-page "https://gopkg.in/yaml.v2") +; (synopsis "YAML support for the Go language") +; (description "Package yaml implements YAML support for the Go language. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-urfave-cli-1.22.4 +; (package +; (name "go-github-com-urfave-cli") +; (version "1.22.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/urfave/cli") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1s7frsmiih4wh8vpx9z3ck4667c6vpjrmba7b9ymnv1p9khyg8wc")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/urfave/cli")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) +; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d" +; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d) +; ("go-github-com-burntsushi-toml-0.3.1" +; ,go-github-com-burntsushi-toml-0.3.1))) +; (home-page "https://github.com/urfave/cli") +; (synopsis "cli") +; (description +; "Package cli provides a minimal framework for creating and organizing command line +;Go applications. cli is designed to be easy to understand and write, the most simple +;cli application can be written as follows: +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190222072716-a9d3bda3a223") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1w45zc13xrjzl19s1sx74r5mg3lf2z2nm13wygcdq5r5pyjlhdz9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-mattn-go-isatty-0.0.8 +; (package +; (name "go-github-com-mattn-go-isatty") +; (version "0.0.8") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mattn/go-isatty") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0rqfh1rj6f5wm8p2ky7inm8g10152p7w6n2cli17kf9gad797i8h")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mattn/go-isatty")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223" +; ,go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223))) +; (home-page "https://github.com/mattn/go-isatty") +; (synopsis "go-isatty") +; (description "Package isatty implements interface to isatty +;") +; (license license:expat))) +; +;(define-public go-github-com-mattn-go-colorable-0.1.4 +; (package +; (name "go-github-com-mattn-go-colorable") +; (version "0.1.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mattn/go-colorable") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1yxcz08kminqr1221zxpibnbzfcgs3fafin0z9zqb3gqvf74jywz")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mattn/go-colorable")) +; (propagated-inputs +; `(("go-github-com-mattn-go-isatty-0.0.8" +; ,go-github-com-mattn-go-isatty-0.0.8))) +; (home-page "https://github.com/mattn/go-colorable") +; (synopsis "go-colorable") +; (description "Colorable writer for windows.") +; (license license:expat))) +; +;(define-public go-github-com-mattn-go-isatty-0.0.11 +; (package +; (name "go-github-com-mattn-go-isatty") +; (version "0.0.11") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mattn/go-isatty") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0h671sv7hfprja495kavazkalkx7xzaqksjh13brcnwq67ijrali")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mattn/go-isatty")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037" +; ,go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037))) +; (home-page "https://github.com/mattn/go-isatty") +; (synopsis "go-isatty") +; (description "Package isatty implements interface to isatty +;") +; (license license:expat))) +; +;(define-public go-github-com-fatih-color-1.9.0 +; (package +; (name "go-github-com-fatih-color") +; (version "1.9.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/fatih/color") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "086z8ssmr1fn9ba4mqnw7pnccfpys6l5yfhvycv1gdrsk7n27mvs")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/fatih/color")) +; (propagated-inputs +; `(("go-github-com-mattn-go-isatty-0.0.11" +; ,go-github-com-mattn-go-isatty-0.0.11) +; ("go-github-com-mattn-go-colorable-0.1.4" +; ,go-github-com-mattn-go-colorable-0.1.4))) +; (home-page "https://github.com/fatih/color") +; (synopsis "color") +; (description +; "Package color is an ANSI color package to output colorized or SGR defined +;output to the standard output. The API can be used in several way, pick one +;that suits you. +;") +; (license license:expat))) +; +;(define-public go-github-com-davecgh-go-spew-1.1.1 +; (package +; (name "go-github-com-davecgh-go-spew") +; (version "1.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/davecgh/go-spew") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/davecgh/go-spew")) +; (home-page "https://github.com/davecgh/go-spew") +; (synopsis "go-spew") +; (description +; "Go-spew implements a deep pretty printer for Go data structures to aid in +;debugging. A comprehensive suite of tests with 100% test coverage is provided +;to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage +;report. Go-spew is licensed under the liberal ISC license, so it may be used in +;open source or commercial projects.") +; (license license:isc))) +; +;(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.1 +; (package +; (name "go-github-com-konsorten-go-windows-terminal-sequences") +; (version "1.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/konsorten/go-windows-terminal-sequences") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1lchgf27n276vma6iyxa0v1xds68n2g8lih5lavqnx5x6q5pw2ip")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) +; (home-page "https://github.com/konsorten/go-windows-terminal-sequences") +; (synopsis "Windows Terminal Sequences") +; (description +; "This library allow for enabling Windows terminal color support for Go.") +; (license license:expat))) +; +;(define-public go-github-com-pmezard-go-difflib-1.0.0 +; (package +; (name "go-github-com-pmezard-go-difflib") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/pmezard/go-difflib") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/pmezard/go-difflib")) +; (home-page "https://github.com/pmezard/go-difflib") +; (synopsis "go-difflib") +; (description +; "Go-difflib is a partial port of python 3 difflib package. Its main goal +;was to make unified and context diff available in pure Go, mostly for +;testing purposes.") +; (license license:bsd-3))) +; +;(define-public go-github-com-stretchr-objx-0.1.1 +; (package +; (name "go-github-com-stretchr-objx") +; (version "0.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/objx") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0iph0qmpyqg4kwv8jsx6a56a7hhqq8swrazv40ycxk9rzr0s8yls")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/objx")) +; (home-page "https://github.com/stretchr/objx") +; (synopsis "Objx") +; (description +; "Objx - Go package for dealing with maps, slices, JSON and other data. +;") +; (license license:expat))) +; +;(define-public go-github-com-stretchr-testify-1.2.2 +; (package +; (name "go-github-com-stretchr-testify") +; (version "1.2.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/testify") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0dlszlshlxbmmfxj5hlwgv3r22x0y1af45gn1vd198nvvs3pnvfs")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/testify")) +; (home-page "https://github.com/stretchr/testify") +; (synopsis "Testify - Thou Shalt Write Tests") +; (description +; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20180904163835-0709b304e793 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20180904163835-0709b304e793") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0i05s09y5pavmfh71fgih7syxg58x7a4krgd8am6d3mnahnmab5c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20180905080454-ebe1bf3edb33") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0rkspxyjxdmc9f4n09hgkwj8jjd8z5p8mc9z8vwqwqcwrqv4sg7c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-sirupsen-logrus-1.3.0 +; (package +; (name "go-github-com-sirupsen-logrus") +; (version "1.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/sirupsen/logrus") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ib7k8cwxn53dyxd3af1g81z018n77n6q64pm4miznirf7c2c9gk")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/sirupsen/logrus")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33" +; ,go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33) +; ("go-golang-org-x-crypto-0.0.0-20180904163835-0709b304e793" +; ,go-golang-org-x-crypto-0.0.0-20180904163835-0709b304e793) +; ("go-github-com-stretchr-testify-1.2.2" +; ,go-github-com-stretchr-testify-1.2.2) +; ("go-github-com-stretchr-objx-0.1.1" +; ,go-github-com-stretchr-objx-0.1.1) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.1" +; ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.1) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://github.com/sirupsen/logrus") +; (synopsis "Logrus") +; (description +; "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20191011191535-87dc89f01550") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0z4i1m2yn3f31ci7wvcm2rxkx2yiv7a78mfzklncmsz2k97rlh2g")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" +; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) +; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" +; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20191026070338-33540a1f6037") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0fjcv0vzvi6za0b4xmnk3932pr9f9gczzf03y0kgq3ry9rqg169y")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-vbatts-go-mtree-0.5.0 +; (package +; (name "go-github-com-vbatts-go-mtree") +; (version "0.5.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/vbatts/go-mtree") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0p42aliw6ngp7zgg5y9mi18z1ka9n0vblbrp5flp93i7qfmc5y0k")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/vbatts/go-mtree")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037" +; ,go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037) +; ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" +; ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550) +; ("go-github-com-sirupsen-logrus-1.3.0" +; ,go-github-com-sirupsen-logrus-1.3.0) +; ("go-github-com-fatih-color-1.9.0" ,go-github-com-fatih-color-1.9.0) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://github.com/vbatts/go-mtree") +; (synopsis "go-mtree") +; (description +; "@code{mtree} is a filesystem hierarchy validation tooling and format. +;This is a library and simple cli tool for @url{https://www.freebsd.org/cgi/man.cgi?mtree%288%29=,mtree(8)} support.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190404232315-eb5bcb51f2a3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "17k4g8krxbl84gzcs275b7gsh66dzm15fdxivjnx9xz8q84l4kby")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190412213103-97732733099d +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190412213103-97732733099d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "118hkp01i4z1f5h6hcjm0ff2ngqhrzj1f7731n0kw8dr6hvbx0sw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20200604202706-70a84ac30bf9 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20200604202706-70a84ac30bf9") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0zr8np92g3qx7cdgaz4b2z5wnlym9lqyhrvs3xvv1fbsapd2z6i3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" +; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) +; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" +; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20200622214017-ed371f2e16b4 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20200622214017-ed371f2e16b4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "107wfy2fj6z5zps1v72j8drfrfvss1158drb0yqhz5awlbvgrpj7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-1.22.0 +; (package +; (name "go-google-golang-org-protobuf") +; (version "1.22.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0n7lc4m7kfvj01glc0gnjy0zsnsic7cxnbvlajy0h14cxbab87pj")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.4.0" +; ,go-github-com-golang-protobuf-1.4.0))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.4.1 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.4.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0w7ks4vffnnkp0miwgc3chrsnmya45lzvpahb2wmw0jwhdp5kdx7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.22.0" +; ,go-google-golang-org-protobuf-1.22.0) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0))) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-github-com-census-instrumentation-opencensus-proto-0.2.1 +; (package +; (name "go-github-com-census-instrumentation-opencensus-proto") +; (version "0.2.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/census-instrumentation/opencensus-proto") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19fcx3sc99i5dsklny6r073z5j20vlwn2xqm6di1q3b1xwchzqfj")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "github.com/census-instrumentation/opencensus-proto")) +; (home-page "https://github.com/census-instrumentation/opencensus-proto") +; (synopsis +; "OpenCensus Proto - Language Independent Interface Types For OpenCensus") +; (description +; "Census provides a framework to define and collect stats against metrics and to +;break those stats down across user-defined dimensions.") +; (license license:asl2.0))) +; +;(define-public go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4 +; (package +; (name "go-github-com-prometheus-client-model") +; (version "0.0.0-20190812154241-14fe0d1b01d4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/client_model") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0zdmk6rbbx39cvfz0r59v2jg5sg9yd02b4pds5n5llgvivi99550")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/client_model")) +; (propagated-inputs +; `(("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" +; ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0))) +; (home-page "https://github.com/prometheus/client_model") +; (synopsis "Deprecation note") +; (description +; "This repository used to contain the code that defined both +;the data model and the exposition format of Prometheus metrics.") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20190311212946-11955173bddd") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0hlkai67w167wiyivkzd1fgqrnyxkb94l2c6kr51jwcscizfyfn3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3 +; (package +; (name "go-golang-org-x-lint") +; (version "0.0.0-20190313153728-d0100b6bd8b3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/lint") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0b0amr9x4ji66iv9ayfx7zrfx52k1m5g66qfcxkgj80qrb1y2yn7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/lint")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" +; ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd))) +; (home-page "https://golang.org/x/lint") +; (synopsis "Installation") +; (description "Package lint contains a linter for Go source code. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sync-0.0.0-20190423024810-112230192c58 +; (package +; (name "go-golang-org-x-sync") +; (version "0.0.0-20190423024810-112230192c58") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sync") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "05i2k43j2d0llq768hg5pf3hb2yhfzp9la1w5wp0rsnnzblr0lfn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sync")) +; (home-page "https://golang.org/x/sync") +; (synopsis "Go Sync") +; (description +; "This repository provides Go concurrency primitives in addition to the +;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135 +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20190524140312-2c0ae7006135") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1lsi2ssxajclj3bciz2a41v1vjv768ja3v6wnbyhxy8xphwkp4fk")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" +; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-grpc-1.23.0 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.23.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1cn33r2gclmq2v1ndpf1n5bmhf2qs8mms7ii5cnl6f9ch4r2c4k3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" +; ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) +; ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" +; ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) +; ("go-google-golang-org-appengine-1.1.0" +; ,go-google-golang-org-appengine-1.1.0) +; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" +; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-github-com-google-go-cmp-0.2.0" +; ,go-github-com-google-go-cmp-0.2.0) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0) +; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-client9-misspell-0.3.4" +; ,go-github-com-client9-misspell-0.3.4) +; ("go-github-com-burntsushi-toml-0.3.1" +; ,go-github-com-burntsushi-toml-0.3.1) +; ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473 +; (package +; (name "go-github-com-envoyproxy-go-control-plane") +; (version "0.9.1-0.20191026205805-5f8ba28d4473") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/envoyproxy/go-control-plane") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1f1s764rd41vd9vgk3r14h1m6fz6pdvxj6fd83q58gxifbc4q5w4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.23.0" ,go-google-golang-org-grpc-1.23.0) +; ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" +; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) +; ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" +; ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2) +; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" +; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) +; ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" +; ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) +; (home-page "https://github.com/envoyproxy/go-control-plane") +; (synopsis "control-plane") +; (description +; "This repository contains a Go-based implementation of an API server that +;implements the discovery service APIs defined in +;@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") +; (license license:asl2.0))) +; +;(define-public go-github-com-envoyproxy-protoc-gen-validate-0.1.0 +; (package +; (name "go-github-com-envoyproxy-protoc-gen-validate") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/envoyproxy/protoc-gen-validate") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0kxd3wwh3xwqk0r684hsy281xq4y71cd11d4q2hspcjbnlbwh7cy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/envoyproxy/protoc-gen-validate")) +; (home-page "https://github.com/envoyproxy/protoc-gen-validate") +; (synopsis "protoc-gen-validate (PGV)") +; (description +; "PGV is a protoc plugin to generate polyglot message validators. While protocol buffers effectively guarantee the types of structured data, they cannot enforce semantic rules for values. This plugin adds support to protoc-generated code to validate such constraints.") +; (license license:asl2.0))) +; +;(define-public go-github-com-google-go-cmp-0.2.0 +; (package +; (name "go-github-com-google-go-cmp") +; (version "0.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/go-cmp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1fbv0x27k9sn8svafc0hjwsnckk864lv4yi7bvzrxvmd3d5hskds")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/go-cmp")) +; (home-page "https://github.com/google/go-cmp") +; (synopsis "Package for equality of Go values") +; (description +; "This package is intended to be a more powerful and safer alternative to +;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20190308221718-c2843e01d9a2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20190311183353-d8887717615a +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190311183353-d8887717615a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1wfm6ngxjyj7v5a2dqib6lw8bb2rdnf1kl48diykxjrsddn0s163")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190215142949-d0b11bdaac8a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.3.2 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.3.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1k1wb4zr0qbwgpvz9q5ws9zhlal8hq7dmq62pwxxriksayl6hzym")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4 +; (package +; (name "go-golang-org-x-exp") +; (version "0.0.0-20190121172915-509febef88a4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/exp") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "02isrh39z8znrp5znplzy0dip2gnrl3jm1355raliyvhnhg04j6q")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/exp")) +; (home-page "https://golang.org/x/exp") +; (synopsis "exp") +; (description +; "This subrepository holds experimental and deprecated (in the @code{old} +;directory) packages.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961 +; (package +; (name "go-golang-org-x-lint") +; (version "0.0.0-20190227174305-5b3e6a55c961") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/lint") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "04zp5vbds9nffmjg36wjpi5vg9zmf890yf78xxasai3ni637ivfw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/lint")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" +; ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c))) +; (home-page "https://golang.org/x/lint") +; (synopsis "Installation") +; (description "Package lint contains a linter for Go source code. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190213061140-3a22650c66bd") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "12q6fgdkc0742vcms67nzadgdwvi3rnb1gx3vwkljhrvlnwvz7wc")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f +; (package +; (name "go-golang-org-x-sync") +; (version "0.0.0-20181108010431-42b317875d0f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sync") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0mrjhk7al7yyh76x9flvxy4jm5jyqh2fxbxagpaazxn1xdgkaif3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sync")) +; (home-page "https://golang.org/x/sync") +; (synopsis "Go Sync") +; (description +; "This repository provides Go concurrency primitives in addition to the +;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20180724234803-3673e40ba225") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0vx7mz18p480p7fh0w5jv6mfdbsswrlac1sz4i705q7q7ygz59lm")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-appengine-1.4.0 +; (package +; (name "go-google-golang-org-appengine") +; (version "1.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/appengine") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "06zl7w4sxgdq2pl94wy9ncii6h0z3szl4xpqds0sv3b3wbdlhbnn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/appengine")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225" +; ,go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0))) +; (home-page "https://google.golang.org/appengine") +; (synopsis "Go App Engine packages") +; (description +; "Package appengine provides basic functionality for Google App Engine. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20190226205152-f727befe758c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0rpcqw6z13qd33rbasg32zb0gdhgh5lzjla63r6g651zf6hpsak0")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-google-golang-org-appengine-1.4.0" +; ,go-google-golang-org-appengine-1.4.0) +; ("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" +; ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) +; ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" +; ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-cloud-google-com-go-0.26.0 +; (package +; (name "go-cloud-google-com-go") +; (version "0.26.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-cloud-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "149v3ci17g6wd2pm18mzcncq5qpl9hwdjnz3rlbn5rfidyn46la1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "cloud.google.com/go")) +; (home-page "https://cloud.google.com/go") +; (synopsis "Google Cloud Client Libraries for Go") +; (description +; "Package cloud is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +;of sub-packages. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-burntsushi-toml-0.3.1 +; (package +; (name "go-github-com-burntsushi-toml") +; (version "0.3.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/BurntSushi/toml") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1fjdwwfzyzllgiwydknf1pwjvy49qxfsczqx5gz3y0izs7as99j6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/BurntSushi/toml")) +; (home-page "https://github.com/BurntSushi/toml") +; (synopsis "TOML parser and encoder for Go with reflection") +; (description +; "Package toml implements decoding and encoding of TOML files. +;") +; (license license:expat))) +; +;(define-public go-github-com-client9-misspell-0.3.4 +; (package +; (name "go-github-com-client9-misspell") +; (version "0.3.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/client9/misspell") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1vwf33wsc4la25zk9nylpbp9px3svlmldkm0bha4hp56jws4q9cs")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/client9/misspell")) +; (home-page "https://github.com/client9/misspell") +; (synopsis "Install") +; (description +; "Package misspell corrects commonly misspelled English words in source files. +;") +; (license license:expat))) +; +;(define-public go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b +; (package +; (name "go-github-com-golang-glog") +; (version "0.0.0-20160126235308-23def4e6c14b") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/glog") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0jb2834rw5sykfr937fxi8hxi2zy80sj2bdn9b3jb4b26ksqng30")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/glog")) +; (home-page "https://github.com/golang/glog") +; (synopsis "glog") +; (description +; "Package glog implements logging analogous to the Google-internal C++ INFO/ERROR/V setup. +;It provides functions Info, Warning, Error, Fatal, plus formatting variants such as +;Infof. It also provides V-style logging controlled by the -v and -vmodule=file=2 flags. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-golang-mock-1.1.1 +; (package +; (name "go-github-com-golang-mock") +; (version "1.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/mock") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ap8wb6pdl6ccmdb43advjll2ly4sz26wsc3axw0hbrjrybybzgy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/mock")) +; (home-page "https://github.com/golang/mock") +; (synopsis "gomock") +; (description +; "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It +;integrates well with Go's built-in @code{testing} package, but can be used in other +;contexts too.") +; (license license:asl2.0))) +; +;(define-public go-github-com-golang-protobuf-1.2.0 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0kf4b59rcbb1cchfny2dm9jyznp8ri2hsb14n8iak1q8986xa0ab")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3 +; (package +; (name "go-golang-org-x-lint") +; (version "0.0.0-20181026193005-c67002cb31c3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/lint") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0gymbggskjmphqxqcx4s0vnlcz7mygbix0vhwcwv5r67c0bf6765")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/lint")) +; (home-page "https://golang.org/x/lint") +; (synopsis "Installation") +; (description "Package lint contains a linter for Go source code. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20180826012351-8a410e7b638d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0hp0l8f6fir5gmgrjq0mhh5ikc0rlrm72774228800kfwqjrxxny")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be +; (package +; (name "go-golang-org-x-oauth2") +; (version "0.0.0-20180821212333-d2e6202438be") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/oauth2") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0wbn75fd10485nb93bm4kqldqifdim5xqy4v7r5sdvimvf3fyhn7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/oauth2")) +; (home-page "https://golang.org/x/oauth2") +; (synopsis "OAuth2 for Go") +; (description +; "Package oauth2 provides support for making +;OAuth2 authorized and authenticated HTTP requests, +;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +;It can additionally grant authorization with Bearer JWT. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f +; (package +; (name "go-golang-org-x-sync") +; (version "0.0.0-20180314180146-1d60e4601c6f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sync") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "046jlanz2lkxq1r57x9bl6s4cvfqaic6p2xybsj8mq1120jv4rs6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sync")) +; (home-page "https://golang.org/x/sync") +; (synopsis "Go Sync") +; (description +; "This repository provides Go concurrency primitives in addition to the +;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20180830151530-49385e6e1522") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0spbldahns09fdxkxflb1x24f8k2awdlnr6k5i7ci4fqd19r1dv4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-text-0.3.0 +; (package +; (name "go-golang-org-x-text") +; (version "0.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/text") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/text")) +; (home-page "https://golang.org/x/text") +; (synopsis "Go Text") +; (description +; "text is a repository of text-related packages related to internationalization +;(i18n) and localization (l10n), such as character encodings, text +;transformations, and locale-specific text handling. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20190114222345-bf090417da8b") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1n3xp56k4k3lj06rx7587wr5gnwg0148nvwx6ch0g7ar02hh94hw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-appengine-1.1.0 +; (package +; (name "go-google-golang-org-appengine") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/appengine") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1pz202zszg8f35dk5pfhwgcdi3r6dx1l4yk6x6ly7nb4j45zi96x")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/appengine")) +; (home-page "https://google.golang.org/appengine") +; (synopsis "Go App Engine packages") +; (description +; "Package appengine provides basic functionality for Google App Engine. +;") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8 +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20180817151627-c66870c02cf8") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0siq7sv68556ygqi2d2zmvx8l1xjqdc0fylqzci5h1mq2i14bayn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-grpc-1.19.0 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.19.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1znqwpj7ix3dpzx4zch0q70sdl3z5lvbb7v3q4i8sf8kas3yv71v")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" +; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) +; ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" +; ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) +; ("go-google-golang-org-appengine-1.1.0" +; ,go-google-golang-org-appengine-1.1.0) +; ("go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b" +; ,go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b) +; ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522" +; ,go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522) +; ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" +; ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d" +; ,go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d) +; ("go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3" +; ,go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0) +; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-client9-misspell-0.3.4" +; ,go-github-com-client9-misspell-0.3.4) +; ("go-github-com-burntsushi-toml-0.3.1" +; ,go-github-com-burntsushi-toml-0.3.1) +; ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099 +; (package +; (name "go-honnef-co-go-tools") +; (version "0.0.0-20190102054323-c2f93a96b099") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/dominikh/go-tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "07lg29aiap80ca9f201jzng9vjr168cv3qmvjmbd7v5pmww9kmr8")))) +; (build-system go-build-system) +; (arguments '(#:import-path "honnef.co/go/tools")) +; (home-page "https://honnef.co/go/tools") +; (synopsis "Documentation") +; (description +; "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, +;offers simplifications, and enforces style rules.") +; (license license:expat))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55 +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20190819201941-24fa4b261c55") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "109zhaqlfd8zkbr1hk6zqbs6vcxfrk64scjwh2nswph05gr0m84d")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" +; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) +; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) +; ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" +; ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) +; ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" +; ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) +; ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" +; ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-grpc-1.27.0 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.27.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ijrmgrxyabfn51nm3p9l81iaasq5fg237wnr6mdc4dzsfcg8kd7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" +; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-github-com-google-go-cmp-0.2.0" +; ,go-github-com-google-go-cmp-0.2.0) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2) +; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" +; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) +; ("go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473" +; ,go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-google-go-cmp-0.3.0 +; (package +; (name "go-github-com-google-go-cmp") +; (version "0.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/go-cmp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1hyxx3434zshl2m9ja78gwlkg1rx9yl6diqa7dnjb31xz5x4gbjj")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/go-cmp")) +; (home-page "https://github.com/google/go-cmp") +; (synopsis "Package for equality of Go values") +; (description +; "This package is intended to be a more powerful and safer alternative to +;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd +; (package +; (name "go-google-golang-org-protobuf") +; (version "0.0.0-20200109180630-ec00e32a8dfd") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0w6lp9w2avxcpxwzzhspr209ifhyjagvs23k0vykfdqahl1aplrh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.3.0" +; ,go-github-com-google-go-cmp-0.3.0))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.4.0-rc.1 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.4.0-rc.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "186rirvbfgv6hrxp27ipx2cdpv19qifdd20biqfdm01wiyclqimn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd" +; ,go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd) +; ("go-github-com-google-go-cmp-0.3.1" +; ,go-github-com-google-go-cmp-0.3.1))) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-github-com-google-go-cmp-0.3.1 +; (package +; (name "go-github-com-google-go-cmp") +; (version "0.3.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/go-cmp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1caw49i0plkjxir7kdf5qhwls3krqwfmi7g4h392rdfwi3kfahx1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/go-cmp")) +; (home-page "https://github.com/google/go-cmp") +; (synopsis "Package for equality of Go values") +; (description +; "This package is intended to be a more powerful and safer alternative to +;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64 +; (package +; (name "go-google-golang-org-protobuf") +; (version "0.0.0-20200221191635-4d8936d0db64") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0563bsvdjj6k0sgwqd5yzrgfiax7sp3lcwh608gync5sv9fx39cy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.3.1" +; ,go-github-com-google-go-cmp-0.3.1) +; ("go-github-com-golang-protobuf-1.4.0-rc.1" +; ,go-github-com-golang-protobuf-1.4.0-rc.1))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.4.0-rc.1.0.20200221234624-67d41d38c208") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ykxhg3zixmw25pd435f8h16wnz1g00jpcmmg3xl030kksgqgpp6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64" +; ,go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0))) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60 +; (package +; (name "go-google-golang-org-protobuf") +; (version "0.0.0-20200228230310-ab0ca4ff8a60") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1rinspcznfp85yz4vrlf4h38hr576virgv8lcs22bsylqga808sd")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208" +; ,go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.4.0-rc.2 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.4.0-rc.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1hd43hjv5zl6bjbmhm5phx74bw4xajsi73m5zky2k56za4mpgzzc")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60" +; ,go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0))) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967 +; (package +; (name "go-google-golang-org-protobuf") +; (version "1.20.1-0.20200309200217-e05f789c0967") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "17wmy89hnmpkwc63rfcjp50q15s9f1rhmczg06c3z9yy41zk82w9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.4.0-rc.2" +; ,go-github-com-golang-protobuf-1.4.0-rc.2))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.4.0-rc.4.0.20200313231945-b860323f09d0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1zj6cwshx0l5n9cn2cpbikzzb79px5dmkpc4p19zy1iif5r5p0z0")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967" +; ,go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0))) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-1.21.0 +; (package +; (name "go-google-golang-org-protobuf") +; (version "1.21.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "12bwln8z1lf9105gdp6ip0rx741i4yfz1520gxnp8861lh9wcl63")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0" +; ,go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.4.0 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1fjvl5n77abxz5qsd4mgyvjq19x43c5bfvmq62mq3m5plx6zksc8")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.21.0" +; ,go-google-golang-org-protobuf-1.21.0) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0))) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543 +; (package +; (name "go-golang-org-x-xerrors") +; (version "0.0.0-20191204190536-9bdfabe68543") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/xerrors") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1yjfi1bk9xb81lqn85nnm13zz725wazvrx3b50hx19qmwg7a4b0c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/xerrors")) +; (home-page "https://golang.org/x/xerrors") +; (synopsis #f) +; (description +; "Package xerrors implements functions to manipulate errors. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-google-go-cmp-0.4.0 +; (package +; (name "go-github-com-google-go-cmp") +; (version "0.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/go-cmp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1x5pvl3fb5sbyng7i34431xycnhmx8xx94gq2n19g6p0vz68z2v2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/go-cmp")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" +; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) +; (home-page "https://github.com/google/go-cmp") +; (synopsis "Package for equality of Go values") +; (description +; "This package is intended to be a more powerful and safer alternative to +;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc +; (package +; (name "go-google-golang-org-protobuf") +; (version "1.23.1-0.20200526195155-81db48ad09cc") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "02cpr8rqr5wmpj2fqb32mzilsdnxkh52g1jz95a3ck3gzffc7hh1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.4.0" +; ,go-github-com-golang-protobuf-1.4.0))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc +; (package +; (name "go-honnef-co-go-tools") +; (version "0.0.0-20190523083050-ea95bdfd59fc") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/dominikh/go-tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1763nw7pwpzkvzfnm63dgzcgbq9hwmq5l1nffchnhh77vgkaq4ic")))) +; (build-system go-build-system) +; (arguments '(#:import-path "honnef.co/go/tools")) +; (home-page "https://honnef.co/go/tools") +; (synopsis "Documentation") +; (description +; "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, +;offers simplifications, and enforces style rules.") +; (license license:expat))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013 +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20200526211855-cb27e3aa2013") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ml73ghqcwbz7ipfk8fnxb5indcml49b5p7vp1fsyny0abyyrmxf")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" +; ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) +; ("go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc" +; ,go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc) +; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) +; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" +; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-github-com-golang-protobuf-1.4.1" +; ,go-github-com-golang-protobuf-1.4.1))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-protobuf-1.24.0 +; (package +; (name "go-google-golang-org-protobuf") +; (version "1.24.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0x3qyn3rizbs671gs7f8v50rmiwf9h7kbaradpivw9718mhbg1gn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" +; ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.4.1" +; ,go-github-com-golang-protobuf-1.4.1))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-gopkg-in-check-v1-1.0.0-20200227125254-8fa46927fb4f +; (package +; (name "go-gopkg-in-check-v1") +; (version "1.0.0-20200227125254-8fa46927fb4f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/check.v1") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0fx03x0nx9mjwnqphnx852q9p76qg7cazrachvgr1bj357lplrcw")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) +; (home-page "https://gopkg.in/check.v1") +; (synopsis "Instructions") +; (description +; "Package check is a rich testing extension for Go's testing package. +;") +; (license license:bsd-2))) +; +;(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 +; (package +; (name "go-gopkg-in-check-v1") +; (version "0.0.0-20161208181325-20d25e280405") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/check.v1") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) +; (home-page "https://gopkg.in/check.v1") +; (synopsis "Instructions") +; (description +; "Package check is a rich testing extension for Go's testing package. +;") +; (license license:bsd-2))) +; +;(define-public go-gopkg-in-yaml-v3-3.0.0-20200615113413-eeeca48fe776 +; (package +; (name "go-gopkg-in-yaml-v3") +; (version "3.0.0-20200615113413-eeeca48fe776") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/yaml.v3") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "06m3kx5mp6vwfcpjl04c39r1dpbakg2la9ql1jw3zvpi6jk7iwbk")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" +; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) +; (home-page "https://gopkg.in/yaml.v3") +; (synopsis "YAML support for the Go language") +; (description "Package yaml implements YAML support for the Go language. +;") +; (license #f))) +; +;(define-public go-github-com-opencontainers-umoci-0.4.7 +; (package +; (name "go-github-com-opencontainers-umoci") +; (version "0.4.7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/umoci") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0in8kyi4jprvbm3zsl3risbjj8b0ma62yl3rq8rcvcgypx0mn7d4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/umoci")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v3-3.0.0-20200615113413-eeeca48fe776" +; ,go-gopkg-in-yaml-v3-3.0.0-20200615113413-eeeca48fe776) +; ("go-gopkg-in-check-v1-1.0.0-20200227125254-8fa46927fb4f" +; ,go-gopkg-in-check-v1-1.0.0-20200227125254-8fa46927fb4f) +; ("go-google-golang-org-protobuf-1.24.0" +; ,go-google-golang-org-protobuf-1.24.0) +; ("go-golang-org-x-sys-0.0.0-20200622214017-ed371f2e16b4" +; ,go-golang-org-x-sys-0.0.0-20200622214017-ed371f2e16b4) +; ("go-golang-org-x-crypto-0.0.0-20200604202706-70a84ac30bf9" +; ,go-golang-org-x-crypto-0.0.0-20200604202706-70a84ac30bf9) +; ("go-github-com-vbatts-go-mtree-0.5.0" +; ,go-github-com-vbatts-go-mtree-0.5.0) +; ("go-github-com-urfave-cli-1.22.4" ,go-github-com-urfave-cli-1.22.4) +; ("go-github-com-tj-assert-0.0.3" ,go-github-com-tj-assert-0.0.3) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-sirupsen-logrus-1.6.0" +; ,go-github-com-sirupsen-logrus-1.6.0) +; ("go-github-com-rootless-containers-proto-0.1.0" +; ,go-github-com-rootless-containers-proto-0.1.0) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-runtime-spec-1.0.2" +; ,go-github-com-opencontainers-runtime-spec-1.0.2) +; ("go-github-com-opencontainers-runc-1.0.0-rc90" +; ,go-github-com-opencontainers-runc-1.0.0-rc90) +; ("go-github-com-opencontainers-image-spec-1.0.1" +; ,go-github-com-opencontainers-image-spec-1.0.1) +; ("go-github-com-opencontainers-go-digest-1.0.0" +; ,go-github-com-opencontainers-go-digest-1.0.0) +; ("go-github-com-niemeyer-pretty-0.0.0-20200227124842-a10e7caefd8e" +; ,go-github-com-niemeyer-pretty-0.0.0-20200227124842-a10e7caefd8e) +; ("go-github-com-mohae-deepcopy-0.0.0-20170929034955-c48cc78d4826" +; ,go-github-com-mohae-deepcopy-0.0.0-20170929034955-c48cc78d4826) +; ("go-github-com-mattn-go-colorable-0.1.6" +; ,go-github-com-mattn-go-colorable-0.1.6) +; ("go-github-com-kr-text-0.2.0" ,go-github-com-kr-text-0.2.0) +; ("go-github-com-klauspost-pgzip-1.2.4" +; ,go-github-com-klauspost-pgzip-1.2.4) +; ("go-github-com-klauspost-compress-1.11.3" +; ,go-github-com-klauspost-compress-1.11.3) +; ("go-github-com-google-go-cmp-0.5.0" +; ,go-github-com-google-go-cmp-0.5.0) +; ("go-github-com-golang-protobuf-1.4.2" +; ,go-github-com-golang-protobuf-1.4.2) +; ("go-github-com-docker-go-units-0.4.0" +; ,go-github-com-docker-go-units-0.4.0) +; ("go-github-com-cyphar-filepath-securejoin-0.2.2" +; ,go-github-com-cyphar-filepath-securejoin-0.2.2) +; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" +; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) +; ("go-github-com-apex-log-1.4.0" ,go-github-com-apex-log-1.4.0) +; ("go-github-com-adamkorcz-go-fuzz-headers-0.0.0-20210312213058-32f4d319f0d2" +; ,go-github-com-adamkorcz-go-fuzz-headers-0.0.0-20210312213058-32f4d319f0d2))) +; (home-page "https://github.com/opencontainers/umoci") +; (synopsis "Install") +; (description +; "@strong{u}moci @strong{m}odifies @strong{O}pen @strong{C}ontainer @strong{i}mages.") +; (license license:asl2.0))) +; +;(define-public go-github-com-pelletier-go-toml-1.9.3 +; (package +; (name "go-github-com-pelletier-go-toml") +; (version "1.9.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/pelletier/go-toml") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0cqwnvlgs1wgdgjxlwv8j52f7d6syniadr51sjh2fya99m5wzvsn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/pelletier/go-toml")) +; (home-page "https://github.com/pelletier/go-toml") +; (synopsis "go-toml") +; (description "Package toml is a TOML parser and manipulation library. +;") +; (license #f))) +; +;(define-public go-github-com-pkg-errors-0.9.1 +; (package +; (name "go-github-com-pkg-errors") +; (version "0.9.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/pkg/errors") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1761pybhc2kqr6v5fm8faj08x9bql8427yqg6vnfv6nhrasx1mwq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/pkg/errors")) +; (home-page "https://github.com/pkg/errors") +; (synopsis "errors") +; (description "Package errors provides simple error handling primitives. +;") +; (license license:bsd-2))) +; +;(define-public go-github-com-russross-blackfriday-v2-2.1.0 +; (package +; (name "go-github-com-russross-blackfriday-v2") +; (version "2.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/russross/blackfriday") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0d1rg1drrfmabilqjjayklsz5d0n3hkf979sr3wsrw92bfbkivs7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/russross/blackfriday/v2")) +; (home-page "https://github.com/russross/blackfriday") +; (synopsis "Blackfriday") +; (description "Package blackfriday is a markdown processor. +;") +; (license license:bsd-2))) +; +;(define-public go-github-com-satori-go-uuid-1.2.1-0.20180404165556-75cca531ea76 +; (package +; (name "go-github-com-satori-go-uuid") +; (version "1.2.1-0.20180404165556-75cca531ea76") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/satori/go.uuid") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0fi1rc2zl0vyyah6iy8cvsjyxipp6pnzb19x40qkq3j1qlra20qy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/satori/go.uuid")) +; (home-page "https://github.com/satori/go.uuid") +; (synopsis "UUID package for Go language") +; (description +; "Package uuid provides implementation of Universally Unique Identifier (UUID). +;Supported versions are 1, 3, 4 and 5 (as specified in @url{https://rfc-editor.org/rfc/rfc4122.html,RFC 4122}) and +;version 2 (as specified in DCE 1.1). +;") +; (license license:expat))) +; +;(define-public go-github-com-blang-semver-3.5.1+incompatible +; (package +; (name "go-github-com-blang-semver") +; (version "3.5.1+incompatible") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/blang/semver") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "13ws259bwcibkclbr82ilhk6zadm63kxklxhk12wayklj8ghhsmy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/blang/semver")) +; (home-page "https://github.com/blang/semver") +; (synopsis "semver for golang") +; (description +; "semver is a @url{http://semver.org/,Semantic Versioning} library written in golang. It fully covers spec version @code{2.0.0}.") +; (license license:expat))) +; +;(define-public go-github-com-hashicorp-errwrap-1.0.0 +; (package +; (name "go-github-com-hashicorp-errwrap") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/errwrap") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0slfb6w3b61xz04r32bi0a1bygc82rjzhqkxj2si2074wynqnr1c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hashicorp/errwrap")) +; (home-page "https://github.com/hashicorp/errwrap") +; (synopsis "errwrap") +; (description +; "Package errwrap implements methods to formalize error wrapping in Go. +;") +; (license license:mpl2.0))) +; +;(define-public go-github-com-hashicorp-go-multierror-1.1.0 +; (package +; (name "go-github-com-hashicorp-go-multierror") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/go-multierror") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0pmjpzpra7lqgikxzwlcp5mh01b46j2vhyxkixz0v86fr9kf0k3k")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hashicorp/go-multierror")) +; (propagated-inputs +; `(("go-github-com-hashicorp-errwrap-1.0.0" +; ,go-github-com-hashicorp-errwrap-1.0.0))) +; (home-page "https://github.com/hashicorp/go-multierror") +; (synopsis "go-multierror") +; (description +; "@code{go-multierror} is a package for Go that provides a mechanism for +;representing a list of @code{error} values as a single @code{error}.") +; (license license:mpl2.0))) +; +;(define-public go-github-com-opencontainers-runtime-spec-1.0.3-0.20200710190001-3e4195d92445 +; (package +; (name "go-github-com-opencontainers-runtime-spec") +; (version "1.0.3-0.20200710190001-3e4195d92445") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/runtime-spec") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "04kfdbap80r89rn7f7xcmkyy0qbpd18dgk65bzapy0x0calpgrlk")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) +; (home-page "https://github.com/opencontainers/runtime-spec") +; (synopsis "Open Container Initiative Runtime Specification") +; (description +; "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") +; (license license:asl2.0))) +; +;(define-public go-github-com-opencontainers-runtime-tools-0.9.0 +; (package +; (name "go-github-com-opencontainers-runtime-tools") +; (version "0.9.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/runtime-tools") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1pli3jb1rq9lkzzz83f7jw788vijg7x6ly3vgasdlwri7kiph1sa")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/runtime-tools")) +; (home-page "https://github.com/opencontainers/runtime-tools") +; (synopsis "oci-runtime-tool") +; (description +; "oci-runtime-tool is a collection of tools for working with the @url{https://github.com/opencontainers/runtime-spec,OCI runtime specification}. +;To build from source code, runtime-tools requires Go 1.10.x or above.") +; (license license:asl2.0))) +; +;(define-public go-github-com-pkg-errors-0.9.1 +; (package +; (name "go-github-com-pkg-errors") +; (version "0.9.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/pkg/errors") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1761pybhc2kqr6v5fm8faj08x9bql8427yqg6vnfv6nhrasx1mwq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/pkg/errors")) +; (home-page "https://github.com/pkg/errors") +; (synopsis "errors") +; (description "Package errors provides simple error handling primitives. +;") +; (license license:bsd-2))) +; +;(define-public go-github-com-willf-bitset-1.1.11-0.20200630133818-d5bec3311243 +; (package +; (name "go-github-com-willf-bitset") +; (version "1.1.11-0.20200630133818-d5bec3311243") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/bits-and-blooms/bitset") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "05nyd0vhp2h9hbqlv2s9l2py6mr8hpz2zyfj09an1q7wd8vph4ja")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/willf/bitset")) +; (home-page "https://github.com/willf/bitset") +; (synopsis "bitset") +; (description +; "Package bitset implements bitsets, a mapping +;between non-negative integers and boolean values. It should be more +;efficient than map[uint] bool. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20191115151921-52ab43148777") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1kakxbqrb1w2vwg7r1896z68qcx2lfvimsl8cs2niiipbgpi6imx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-opencontainers-selinux-1.6.0 +; (package +; (name "go-github-com-opencontainers-selinux") +; (version "1.6.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/selinux") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ja41zfgrkhk5khixjnxpi1b85xfcxlkhq2q9b7ma6xjfdhg8bq2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/selinux")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777" +; ,go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777) +; ("go-github-com-willf-bitset-1.1.11-0.20200630133818-d5bec3311243" +; ,go-github-com-willf-bitset-1.1.11-0.20200630133818-d5bec3311243) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) +; (home-page "https://github.com/opencontainers/selinux") +; (synopsis "selinux") +; (description "Common SELinux package used across the container ecosystem.") +; (license license:asl2.0))) +; +;(define-public go-github-com-seccomp-libseccomp-golang-0.9.1 +; (package +; (name "go-github-com-seccomp-libseccomp-golang") +; (version "0.9.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/seccomp/libseccomp-golang") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "022c8prvxz0shrifams7lq4xidvkcqg9xi87wjjcpmbikqi72cna")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/seccomp/libseccomp-golang")) +; (home-page "https://github.com/seccomp/libseccomp-golang") +; (synopsis #f) +; (description +; "Package seccomp provides bindings for libseccomp, a library wrapping the Linux +;seccomp syscall. Seccomp enables an application to restrict system call use +;for itself and its children. +;") +; (license license:bsd-2))) +; +;(define-public go-github-com-davecgh-go-spew-1.1.1 +; (package +; (name "go-github-com-davecgh-go-spew") +; (version "1.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/davecgh/go-spew") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/davecgh/go-spew")) +; (home-page "https://github.com/davecgh/go-spew") +; (synopsis "go-spew") +; (description +; "Go-spew implements a deep pretty printer for Go data structures to aid in +;debugging. A comprehensive suite of tests with 100% test coverage is provided +;to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage +;report. Go-spew is licensed under the liberal ISC license, so it may be used in +;open source or commercial projects.") +; (license license:isc))) +; +;(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.3 +; (package +; (name "go-github-com-konsorten-go-windows-terminal-sequences") +; (version "1.0.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/konsorten/go-windows-terminal-sequences") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1yrsd4s8vhjnxhwbigirymz89dn6qfjnhn28i33vvvdgf96j6ypl")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) +; (home-page "https://github.com/konsorten/go-windows-terminal-sequences") +; (synopsis "Windows Terminal Sequences") +; (description +; "This library allow for enabling Windows terminal color support for Go.") +; (license license:expat))) +; +;(define-public go-github-com-stretchr-testify-1.2.2 +; (package +; (name "go-github-com-stretchr-testify") +; (version "1.2.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/testify") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0dlszlshlxbmmfxj5hlwgv3r22x0y1af45gn1vd198nvvs3pnvfs")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/testify")) +; (home-page "https://github.com/stretchr/testify") +; (synopsis "Testify - Thou Shalt Write Tests") +; (description +; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190422165155-953cdadca894") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0gkha4whk8xkcv3isigbs250akag99isxnd3v9xmy0kl3g88hxy1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-sirupsen-logrus-1.6.0 +; (package +; (name "go-github-com-sirupsen-logrus") +; (version "1.6.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/sirupsen/logrus") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1zf9is1yxxnna0d1pyag2m9ziy3l27zb2j92p9msm1gx5jjrvzzj")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/sirupsen/logrus")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894" +; ,go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894) +; ("go-github-com-stretchr-testify-1.2.2" +; ,go-github-com-stretchr-testify-1.2.2) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.3" +; ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.3) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://github.com/sirupsen/logrus") +; (synopsis "Logrus") +; (description +; "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. +;") +; (license license:expat))) +; +;(define-public go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2 +; (package +; (name "go-github-com-syndtr-gocapability") +; (version "0.0.0-20180916011248-d98352740cb2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/syndtr/gocapability") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "065y16562ynixxzj7iys4f4spb7knilbj3h833qlhds381j8hn93")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/syndtr/gocapability")) +; (home-page "https://github.com/syndtr/gocapability") +; (synopsis #f) +; (description #f) +; (license license:bsd-2))) +; +;(define-public go-github-com-davecgh-go-spew-1.1.0 +; (package +; (name "go-github-com-davecgh-go-spew") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/davecgh/go-spew") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/davecgh/go-spew")) +; (home-page "https://github.com/davecgh/go-spew") +; (synopsis "go-spew") +; (description +; "Go-spew implements a deep pretty printer for Go data structures to aid in +;debugging. A comprehensive suite of tests with 100% test coverage is provided +;to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage +;report. Go-spew is licensed under the liberal ISC license, so it may be used in +;open source or commercial projects.") +; (license license:isc))) +; +;(define-public go-github-com-pmezard-go-difflib-1.0.0 +; (package +; (name "go-github-com-pmezard-go-difflib") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/pmezard/go-difflib") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/pmezard/go-difflib")) +; (home-page "https://github.com/pmezard/go-difflib") +; (synopsis "go-difflib") +; (description +; "Go-difflib is a partial port of python 3 difflib package. Its main goal +;was to make unified and context diff available in pure Go, mostly for +;testing purposes.") +; (license license:bsd-3))) +; +;(define-public go-github-com-stretchr-objx-0.1.0 +; (package +; (name "go-github-com-stretchr-objx") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/objx") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/objx")) +; (home-page "https://github.com/stretchr/objx") +; (synopsis "Objx") +; (description +; "Objx - Go package for dealing with maps, slices, JSON and other data. +;") +; (license license:expat))) +; +;(define-public go-github-com-stretchr-testify-1.3.0 +; (package +; (name "go-github-com-stretchr-testify") +; (version "1.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/testify") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0wjchp2c8xbgcbbq32w3kvblk6q6yn533g78nxl6iskq6y95lxsy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/testify")) +; (propagated-inputs +; `(("go-github-com-stretchr-objx-0.1.0" +; ,go-github-com-stretchr-objx-0.1.0) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.0" +; ,go-github-com-davecgh-go-spew-1.1.0))) +; (home-page "https://github.com/stretchr/testify") +; (synopsis "Testify - Thou Shalt Write Tests") +; (description +; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +;") +; (license license:expat))) +; +;(define-public go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f +; (package +; (name "go-github-com-xeipuuv-gojsonpointer") +; (version "0.0.0-20180127040702-4e3ac2762d5f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/xeipuuv/gojsonpointer") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "13y6iq2nzf9z4ls66bfgnnamj2m3438absmbpqry64bpwjfbsi9q")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/xeipuuv/gojsonpointer")) +; (home-page "https://github.com/xeipuuv/gojsonpointer") +; (synopsis "gojsonpointer") +; (description "An implementation of JSON Pointer - Go language") +; (license license:asl2.0))) +; +;(define-public go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415 +; (package +; (name "go-github-com-xeipuuv-gojsonreference") +; (version "0.0.0-20180127040603-bd5ef7bd5415") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/xeipuuv/gojsonreference") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1xby79padc7bmyb8rfbad8wfnfdzpnh51b1n8c0kibch0kwc1db5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/xeipuuv/gojsonreference")) +; (home-page "https://github.com/xeipuuv/gojsonreference") +; (synopsis "gojsonreference") +; (description "An implementation of JSON Reference - Go language") +; (license license:asl2.0))) +; +;(define-public go-github-com-xeipuuv-gojsonschema-1.2.0 +; (package +; (name "go-github-com-xeipuuv-gojsonschema") +; (version "1.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/xeipuuv/gojsonschema") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1mqiq0r8qw4qlfp3ls8073r6514rmzwrmdn4j33rppk3zh942i6l")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/xeipuuv/gojsonschema")) +; (propagated-inputs +; `(("go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415" +; ,go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415) +; ("go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f" +; ,go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f) +; ("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0))) +; (home-page "https://github.com/xeipuuv/gojsonschema") +; (synopsis "gojsonschema") +; (description +; "An implementation of JSON Schema for the Go programming language. Supports draft-04, draft-06 and draft-07.") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-sys-0.0.0-20200720211630-cb9d2d5c5666 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20200720211630-cb9d2d5c5666") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "18b1179cvv3rfn3hhysiqwcn2c15a1kzff74q4494rz69k0j7w4q")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-seccomp-containers-golang-0.6.0 +; (package +; (name "go-github-com-seccomp-containers-golang") +; (version "0.6.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/seccomp/containers-golang") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0clrwdnmr131a65h66br57bsnr17i1s3kq9cc7ljrdaym57y6cfz")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/seccomp/containers-golang")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20200720211630-cb9d2d5c5666" +; ,go-golang-org-x-sys-0.0.0-20200720211630-cb9d2d5c5666) +; ("go-github-com-xeipuuv-gojsonschema-1.2.0" +; ,go-github-com-xeipuuv-gojsonschema-1.2.0) +; ("go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2" +; ,go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2) +; ("go-github-com-sirupsen-logrus-1.6.0" +; ,go-github-com-sirupsen-logrus-1.6.0) +; ("go-github-com-seccomp-libseccomp-golang-0.9.1" +; ,go-github-com-seccomp-libseccomp-golang-0.9.1) +; ("go-github-com-opencontainers-selinux-1.6.0" +; ,go-github-com-opencontainers-selinux-1.6.0) +; ("go-github-com-opencontainers-runtime-tools-0.9.0" +; ,go-github-com-opencontainers-runtime-tools-0.9.0) +; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200710190001-3e4195d92445" +; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200710190001-3e4195d92445) +; ("go-github-com-hashicorp-go-multierror-1.1.0" +; ,go-github-com-hashicorp-go-multierror-1.1.0) +; ("go-github-com-blang-semver-3.5.1+incompatible" +; ,go-github-com-blang-semver-3.5.1+incompatible))) +; (home-page "https://github.com/seccomp/containers-golang") +; (synopsis "containers-golang") +; (description +; "@code{containers-golang} is a set of Go libraries used by container runtimes to generate and load seccomp mappings into the kernel.") +; (license license:asl2.0))) +; +;(define-public go-github-com-seccomp-libseccomp-golang-0.9.1 +; (package +; (name "go-github-com-seccomp-libseccomp-golang") +; (version "0.9.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/seccomp/libseccomp-golang") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "022c8prvxz0shrifams7lq4xidvkcqg9xi87wjjcpmbikqi72cna")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/seccomp/libseccomp-golang")) +; (home-page "https://github.com/seccomp/libseccomp-golang") +; (synopsis #f) +; (description +; "Package seccomp provides bindings for libseccomp, a library wrapping the Linux +;seccomp syscall. Seccomp enables an application to restrict system call use +;for itself and its children. +;") +; (license license:bsd-2))) +; +;(define-public go-github-com-russross-blackfriday-v2-2.0.1 +; (package +; (name "go-github-com-russross-blackfriday-v2") +; (version "2.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/russross/blackfriday") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0nlz7isdd4rgnwzs68499hlwicxz34j2k2a0b8jy0y7ycd2bcr5j")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/russross/blackfriday/v2")) +; (home-page "https://github.com/russross/blackfriday") +; (synopsis "Blackfriday") +; (description "Package blackfriday is a markdown processor. +;") +; (license license:bsd-2))) +; +;(define-public go-github-com-shurcool-sanitized-anchor-name-1.0.0 +; (package +; (name "go-github-com-shurcool-sanitized-anchor-name") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/shurcooL/sanitized_anchor_name") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1gv9p2nr46z80dnfjsklc6zxbgk96349sdsxjz05f3z6wb6m5l8f")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/shurcooL/sanitized_anchor_name")) +; (home-page "https://github.com/shurcooL/sanitized_anchor_name") +; (synopsis "sanitized_anchor_name") +; (description +; "Package sanitized_anchor_name provides a func to create sanitized anchor names. +;") +; (license license:expat))) +; +;(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0 +; (package +; (name "go-github-com-cpuguy83-go-md2man-v2") +; (version "2.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/cpuguy83/go-md2man") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) +; (propagated-inputs +; `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" +; ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) +; ("go-github-com-russross-blackfriday-v2-2.0.1" +; ,go-github-com-russross-blackfriday-v2-2.0.1) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0))) +; (home-page "https://github.com/cpuguy83/go-md2man") +; (synopsis "go-md2man") +; (description "Converts markdown into roff (man pages).") +; (license license:expat))) +; +;(define-public go-github-com-inconshreveable-mousetrap-1.0.0 +; (package +; (name "go-github-com-inconshreveable-mousetrap") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/inconshreveable/mousetrap") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1mn0kg48xkd74brf48qf5hzp0bc6g8cf5a77w895rl3qnlpfw152")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/inconshreveable/mousetrap")) +; (home-page "https://github.com/inconshreveable/mousetrap") +; (synopsis "mousetrap") +; (description "mousetrap is a tiny library that answers a single question.") +; (license license:asl2.0))) +; +;(define-public go-github-com-hashicorp-go-cleanhttp-0.5.1 +; (package +; (name "go-github-com-hashicorp-go-cleanhttp") +; (version "0.5.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/go-cleanhttp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "07kx3fhryqmaw3czacmm11qwx63js2q8cfq967vphk7xg9q377kk")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hashicorp/go-cleanhttp")) +; (home-page "https://github.com/hashicorp/go-cleanhttp") +; (synopsis "cleanhttp") +; (description +; "Package cleanhttp offers convenience utilities for acquiring \"clean\" +;http.Transport and http.Client structs. +;") +; (license license:mpl2.0))) +; +;(define-public go-github-com-mitchellh-go-homedir-1.0.0 +; (package +; (name "go-github-com-mitchellh-go-homedir") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mitchellh/go-homedir") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0f0z0aa4wivk4z1y503dmnw0k0g0g403dly8i4q263gfshs82sbq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mitchellh/go-homedir")) +; (home-page "https://github.com/mitchellh/go-homedir") +; (synopsis "go-homedir") +; (description +; "This is a Go library for detecting the user's home directory without +;the use of cgo, so the library can be used in cross-compilation environments.") +; (license license:expat))) +; +;(define-public go-github-com-hashicorp-go-rootcerts-1.0.0 +; (package +; (name "go-github-com-hashicorp-go-rootcerts") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/go-rootcerts") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0wply5zhj1rcybr932zbwm1i18q5wr7kgkhnz6bw6mk1n9yr8lfj")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hashicorp/go-rootcerts")) +; (propagated-inputs +; `(("go-github-com-mitchellh-go-homedir-1.0.0" +; ,go-github-com-mitchellh-go-homedir-1.0.0))) +; (home-page "https://github.com/hashicorp/go-rootcerts") +; (synopsis "rootcerts") +; (description +; "Package rootcerts contains functions to aid in loading CA certificates for +;TLS connections. +;") +; (license license:mpl2.0))) +; +;(define-public go-github-com-armon-circbuf-0.0.0-20150827004946-bbbad097214e +; (package +; (name "go-github-com-armon-circbuf") +; (version "0.0.0-20150827004946-bbbad097214e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/armon/circbuf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1idpr0lzb2px2p3wgfq2276yl7jpaz43df6n91kf790404s4zmk3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/armon/circbuf")) +; (home-page "https://github.com/armon/circbuf") +; (synopsis "circbuf") +; (description +; "This repository provides the @code{circbuf} package. This provides a @code{Buffer} object +;which is a circular (or ring) buffer. It has a fixed size, but can be written +;to infinitely. Only the last @code{size} bytes are ever retained. The buffer implements +;the @code{io.Writer} interface.") +; (license license:expat))) +; +;(define-public go-github-com-hashicorp-go-syslog-1.0.0 +; (package +; (name "go-github-com-hashicorp-go-syslog") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/go-syslog") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "09vccqggz212cg0jir6vv708d6mx0f9w5bxrcdah3h6chgmal6v1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hashicorp/go-syslog")) +; (home-page "https://github.com/hashicorp/go-syslog") +; (synopsis "go-syslog") +; (description +; "This repository provides a very simple @code{gsyslog} package. The point of this +;package is to allow safe importing of syslog without introducing cross-compilation +;issues. The stdlib @code{log/syslog} cannot be imported on Windows systems, and without +;conditional compilation this adds complications.") +; (license license:expat))) +; +;(define-public go-github-com-hashicorp-go-uuid-1.0.1 +; (package +; (name "go-github-com-hashicorp-go-uuid") +; (version "1.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/go-uuid") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0jvb88m0rq41bwgirsadgw7mnayl27av3gd2vqa3xvxp3fy0hp5k")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hashicorp/go-uuid")) +; (home-page "https://github.com/hashicorp/go-uuid") +; (synopsis "uuid") +; (description +; "Generates UUID-format strings using high quality, bytes. It is @strong{not} intended to be RFC compliant, merely to use a well-understood string representation of a 128-bit value. It can also parse UUID-format strings into their component bytes.") +; (license license:mpl2.0))) +; +;(define-public go-github-com-hashicorp-logutils-1.0.0 +; (package +; (name "go-github-com-hashicorp-logutils") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/logutils") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "076wf4sh5p3f953ndqk1cc0x7jhmlqrxak9953rz79rcdw77rjvv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hashicorp/logutils")) +; (home-page "https://github.com/hashicorp/logutils") +; (synopsis "logutils") +; (description +; "Package logutils augments the standard log package with levels. +;") +; (license license:mpl2.0))) +; +;(define-public go-github-com-hashicorp-go-net-0.0.1 +; (package +; (name "go-github-com-hashicorp-go-net") +; (version "0.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/go.net") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "06arwi95xp5rxyz7rndvhc3wlwg0jn9a5z6djf3yyg5h9zfab9i4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hashicorp/go.net")) +; (home-page "https://github.com/hashicorp/go.net") +; (synopsis #f) +; (description #f) +; (license license:bsd-3))) +; +;(define-public go-github-com-hashicorp-mdns-1.0.0 +; (package +; (name "go-github-com-hashicorp-mdns") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/mdns") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0qr4l91hhi97s8a1isnrw3s4q8pjzacqiks870vnwh15v7ig3axd")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hashicorp/mdns")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20181026203630-95b1ffbd15a5" +; ,go-golang-org-x-sys-0.0.0-20181026203630-95b1ffbd15a5) +; ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" +; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) +; ("go-golang-org-x-net-0.0.0-20181023162649-9b4f9f5ad519" +; ,go-golang-org-x-net-0.0.0-20181023162649-9b4f9f5ad519) +; ("go-golang-org-x-crypto-0.0.0-20181029021203-45a5f77698d3" +; ,go-golang-org-x-crypto-0.0.0-20181029021203-45a5f77698d3) +; ("go-github-com-miekg-dns-1.0.14" ,go-github-com-miekg-dns-1.0.14) +; ("go-github-com-hashicorp-go-net-0.0.1" +; ,go-github-com-hashicorp-go-net-0.0.1))) +; (home-page "https://github.com/hashicorp/mdns") +; (synopsis "mdns") +; (description +; "Simple mDNS client/server library in Golang. mDNS or Multicast DNS can be +;used to discover services on the local network without the use of an authoritative +;DNS server. This enables peer-to-peer discovery. It is important to note that many +;networks restrict the use of multicasting, which prevents mDNS from functioning. +;Notably, multicast cannot be used in any sort of cloud, or shared infrastructure +;environment. However it works well in most office, home, or private infrastructure +;environments.") +; (license license:expat))) +; +;(define-public go-github-com-armon-go-metrics-0.0.0-20180917152333-f0300d1749da +; (package +; (name "go-github-com-armon-go-metrics") +; (version "0.0.0-20180917152333-f0300d1749da") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/armon/go-metrics") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "13l7c35ps0r27vxfil2w0xhhc7w5rh00awvlmn4cz0a937b9ffpv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/armon/go-metrics")) +; (home-page "https://github.com/armon/go-metrics") +; (synopsis "go-metrics") +; (description +; "This library provides a @code{metrics} package which can be used to instrument code, +;expose application metrics, and profile runtime performance in a flexible manner.") +; (license license:expat))) +; +;(define-public go-github-com-hashicorp-go-uuid-1.0.0 +; (package +; (name "go-github-com-hashicorp-go-uuid") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/go-uuid") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1jflywlani7583qm4ysph40hsgx3n66n5zr2k84i057fmwa1ypfy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hashicorp/go-uuid")) +; (home-page "https://github.com/hashicorp/go-uuid") +; (synopsis "uuid") +; (description +; "Generates UUID-format strings using high quality, bytes. It is @strong{not} intended to be RFC compliant, merely to use a well-understood string representation of a 128-bit value. It can also parse UUID-format strings into their component bytes.") +; (license license:mpl2.0))) +; +;(define-public go-github-com-hashicorp-go-immutable-radix-1.0.0 +; (package +; (name "go-github-com-hashicorp-go-immutable-radix") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/go-immutable-radix") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1v3nmsnk1s8bzpclrhirz7iq0g5xxbw9q5gvrg9ss6w9crs72qr6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hashicorp/go-immutable-radix")) +; (propagated-inputs +; `(("go-github-com-hashicorp-golang-lru-0.5.0" +; ,go-github-com-hashicorp-golang-lru-0.5.0) +; ("go-github-com-hashicorp-go-uuid-1.0.0" +; ,go-github-com-hashicorp-go-uuid-1.0.0))) +; (home-page "https://github.com/hashicorp/go-immutable-radix") +; (synopsis "go-immutable-radix") +; (description +; "This package provides the @code{iradix} package that implements an immutable @url{http://en.wikipedia.org/wiki/Radix_tree,radix tree}. +;The package only provides a single @code{Tree} implementation, optimized for sparse nodes.") +; (license license:mpl2.0))) +; +;(define-public go-github-com-hashicorp-go-msgpack-0.5.3 +; (package +; (name "go-github-com-hashicorp-go-msgpack") +; (version "0.5.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/go-msgpack") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "00jv0ajqd58pkb2yyhlrjp0rv1mvb1ijx3yqjyikcmzvk9jb4h5m")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hashicorp/go-msgpack")) +; (home-page "https://github.com/hashicorp/go-msgpack") +; (synopsis "go-codec") +; (description "This repository contains the @code{go-codec} library.") +; (license license:expat))) +; +;(define-public go-github-com-hashicorp-go-sockaddr-1.0.0 +; (package +; (name "go-github-com-hashicorp-go-sockaddr") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/go-sockaddr") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1yn1xq8ysn0lszmkygz3a9lgpswbz1p91jv7q8l20s4749a22xgi")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hashicorp/go-sockaddr")) +; (home-page "https://github.com/hashicorp/go-sockaddr") +; (synopsis "go-sockaddr") +; (description +; "Package sockaddr is a Go implementation of the UNIX socket family data types and +;related helper functions. +;") +; (license license:mpl2.0))) +; +;(define-public go-github-com-miekg-dns-1.0.14 +; (package +; (name "go-github-com-miekg-dns") +; (version "1.0.14") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/miekg/dns") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1qgli6yp59bv6vc6zag84cwxmcxgnyxm1q2f301yyijk3wy5b2ak")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/miekg/dns")) +; (home-page "https://github.com/miekg/dns") +; (synopsis "Alternative (more granular) approach to a DNS library") +; (description +; "Package dns implements a full featured interface to the Domain Name System. +;Both server- and client-side programming is supported. The package allows +;complete control over what is sent out to the DNS. The API follows the +;less-is-more principle, by presenting a small, clean interface. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-sean--seed-0.0.0-20170313163322-e2103e2c3529 +; (package +; (name "go-github-com-sean--seed") +; (version "0.0.0-20170313163322-e2103e2c3529") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/sean-/seed") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0glir8jxi1w7aga2jwdb63pp1h8q4whknili7xixsqzwyy716125")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/sean-/seed")) +; (home-page "https://github.com/sean-/seed") +; (synopsis "- Quickly Seed Go's Random Number Generator") +; (description +; "Boiler-plate to securely @url{https://en.wikipedia.org/wiki/Random_seed,seed} Go's +;random number generator (if possible). This library isn't anything fancy, it's +;just a canonical way of seeding Go's random number generator. Cribbed from +;@url{https://github.com/hashicorp/nomad/commit/f89a993ec6b91636a3384dd568898245fbc273a1,(code Nomad)} +;before it was moved into +;@url{https://github.com/hashicorp/consul/commit/d695bcaae6e31ee307c11fdf55bb0bf46ea9fcf4,(code Consul)} +;and made into a helper function, and now further modularized to be a super +;lightweight and reusable library.") +; (license #f))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20181029021203-45a5f77698d3 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20181029021203-45a5f77698d3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0636jjj89wkzqchajwwzgcn4aafc334p70nawh9jzavg2mkx0ch4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20181023162649-9b4f9f5ad519 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20181023162649-9b4f9f5ad519") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "06hvxy113h76f31gv1mq6vdr6xja1zv0fdig686l2b4y2b6swych")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20181026203630-95b1ffbd15a5 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20181026203630-95b1ffbd15a5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "06c3lf93wzf5kkfmzmgn75x4c0a7159vrwjrqh6zh9zxzqq5whpq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-hashicorp-memberlist-0.1.3 +; (package +; (name "go-github-com-hashicorp-memberlist") +; (version "0.1.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/memberlist") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0k1spq7dagvqj3baqw2dhxx1zxrb02y6m3apzr3a7gyirii890g3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hashicorp/memberlist")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20181026203630-95b1ffbd15a5" +; ,go-golang-org-x-sys-0.0.0-20181026203630-95b1ffbd15a5) +; ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" +; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) +; ("go-golang-org-x-net-0.0.0-20181023162649-9b4f9f5ad519" +; ,go-golang-org-x-net-0.0.0-20181023162649-9b4f9f5ad519) +; ("go-golang-org-x-crypto-0.0.0-20181029021203-45a5f77698d3" +; ,go-golang-org-x-crypto-0.0.0-20181029021203-45a5f77698d3) +; ("go-github-com-stretchr-testify-1.2.2" +; ,go-github-com-stretchr-testify-1.2.2) +; ("go-github-com-sean--seed-0.0.0-20170313163322-e2103e2c3529" +; ,go-github-com-sean--seed-0.0.0-20170313163322-e2103e2c3529) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-pascaldekloe-goe-0.0.0-20180627143212-57f6aae5913c" +; ,go-github-com-pascaldekloe-goe-0.0.0-20180627143212-57f6aae5913c) +; ("go-github-com-miekg-dns-1.0.14" ,go-github-com-miekg-dns-1.0.14) +; ("go-github-com-hashicorp-go-sockaddr-1.0.0" +; ,go-github-com-hashicorp-go-sockaddr-1.0.0) +; ("go-github-com-hashicorp-go-multierror-1.0.0" +; ,go-github-com-hashicorp-go-multierror-1.0.0) +; ("go-github-com-hashicorp-go-msgpack-0.5.3" +; ,go-github-com-hashicorp-go-msgpack-0.5.3) +; ("go-github-com-hashicorp-go-immutable-radix-1.0.0" +; ,go-github-com-hashicorp-go-immutable-radix-1.0.0) +; ("go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c" +; ,go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1) +; ("go-github-com-armon-go-metrics-0.0.0-20180917152333-f0300d1749da" +; ,go-github-com-armon-go-metrics-0.0.0-20180917152333-f0300d1749da))) +; (home-page "https://github.com/hashicorp/memberlist") +; (synopsis "memberlist") +; (description +; "memberlist is a library that manages cluster +;membership and member failure detection using a gossip based protocol. +;") +; (license license:mpl2.0))) +; +;(define-public go-github-com-armon-go-radix-0.0.0-20180808171621-7fddfc383310 +; (package +; (name "go-github-com-armon-go-radix") +; (version "0.0.0-20180808171621-7fddfc383310") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/armon/go-radix") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0y8chspn14n9xpsfb9gxnnf819rfpriaz64v81p7873a42kkhxb4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/armon/go-radix")) +; (home-page "https://github.com/armon/go-radix") +; (synopsis "go-radix") +; (description +; "This package provides the @code{radix} package that implements a @url{http://en.wikipedia.org/wiki/Radix_tree,radix tree}. +;The package only provides a single @code{Tree} implementation, optimized for sparse nodes.") +; (license license:expat))) +; +;(define-public go-github-com-bgentry-speakeasy-0.1.0 +; (package +; (name "go-github-com-bgentry-speakeasy") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/bgentry/speakeasy") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "02dfrj0wyphd3db9zn2mixqxwiz1ivnyc5xc7gkz58l5l27nzp8s")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/bgentry/speakeasy")) +; (home-page "https://github.com/bgentry/speakeasy") +; (synopsis "Speakeasy") +; (description +; "This package provides cross-platform Go (#golang) helpers for taking user input +;from the terminal while not echoing the input back (similar to @code{getpasswd}). The +;package uses syscalls to avoid any dependence on cgo, and is therefore +;compatible with cross-compiling.") +; (license license:expat))) +; +;(define-public go-github-com-fatih-color-1.7.0 +; (package +; (name "go-github-com-fatih-color") +; (version "1.7.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/fatih/color") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0v8msvg38r8d1iiq2i5r4xyfx0invhc941kjrsg5gzwvagv55inv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/fatih/color")) +; (home-page "https://github.com/fatih/color") +; (synopsis "color") +; (description +; "Package color is an ANSI color package to output colorized or SGR defined +;output to the standard output. The API can be used in several way, pick one +;that suits you. +;") +; (license license:expat))) +; +;(define-public go-github-com-hashicorp-errwrap-1.0.0 +; (package +; (name "go-github-com-hashicorp-errwrap") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/errwrap") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0slfb6w3b61xz04r32bi0a1bygc82rjzhqkxj2si2074wynqnr1c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hashicorp/errwrap")) +; (home-page "https://github.com/hashicorp/errwrap") +; (synopsis "errwrap") +; (description +; "Package errwrap implements methods to formalize error wrapping in Go. +;") +; (license license:mpl2.0))) +; +;(define-public go-github-com-hashicorp-go-multierror-1.0.0 +; (package +; (name "go-github-com-hashicorp-go-multierror") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/go-multierror") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "00nyn8llqzbfm8aflr9kwsvpzi4kv8v45c141v88xskxp5xf6z49")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hashicorp/go-multierror")) +; (propagated-inputs +; `(("go-github-com-hashicorp-errwrap-1.0.0" +; ,go-github-com-hashicorp-errwrap-1.0.0))) +; (home-page "https://github.com/hashicorp/go-multierror") +; (synopsis "go-multierror") +; (description +; "@code{go-multierror} is a package for Go that provides a mechanism for +;representing a list of @code{error} values as a single @code{error}.") +; (license license:mpl2.0))) +; +;(define-public go-github-com-mattn-go-colorable-0.0.9 +; (package +; (name "go-github-com-mattn-go-colorable") +; (version "0.0.9") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mattn/go-colorable") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1nwjmsppsjicr7anq8na6md7b1z84l9ppnlr045hhxjvbkqwalvx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mattn/go-colorable")) +; (home-page "https://github.com/mattn/go-colorable") +; (synopsis "go-colorable") +; (description "Colorable writer for windows.") +; (license license:expat))) +; +;(define-public go-github-com-mattn-go-isatty-0.0.3 +; (package +; (name "go-github-com-mattn-go-isatty") +; (version "0.0.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mattn/go-isatty") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "06w45aqz2a6yrk25axbly2k5wmsccv8cspb94bfmz4izvw8h927n")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mattn/go-isatty")) +; (home-page "https://github.com/mattn/go-isatty") +; (synopsis "go-isatty") +; (description "Package isatty implements interface to isatty +;") +; (license license:expat))) +; +;(define-public go-github-com-posener-complete-1.1.1 +; (package +; (name "go-github-com-posener-complete") +; (version "1.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/posener/complete") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1nbdiybjizbaxbf5q0xwbq0cjqw4bl6jggvsjzrpif0w86fcjda2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/posener/complete")) +; (home-page "https://github.com/posener/complete") +; (synopsis "complete") +; (description +; "Package complete provides a tool for bash writing bash completion in go, and bash completion for the go command line. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-sys-0.0.0-20180823144017-11551d06cbcc +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20180823144017-11551d06cbcc") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0j34525b9smcyjqmxvvqgcfn87kkx3b2izidmjp2cmhjxzjrgpwm")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-mitchellh-cli-1.0.0 +; (package +; (name "go-github-com-mitchellh-cli") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mitchellh/cli") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1i9kmr7rcf10d2hji8h4247hmc0nbairv7a0q51393aw2h1bnwg2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mitchellh/cli")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20180823144017-11551d06cbcc" +; ,go-golang-org-x-sys-0.0.0-20180823144017-11551d06cbcc) +; ("go-github-com-posener-complete-1.1.1" +; ,go-github-com-posener-complete-1.1.1) +; ("go-github-com-mattn-go-isatty-0.0.3" +; ,go-github-com-mattn-go-isatty-0.0.3) +; ("go-github-com-mattn-go-colorable-0.0.9" +; ,go-github-com-mattn-go-colorable-0.0.9) +; ("go-github-com-hashicorp-go-multierror-1.0.0" +; ,go-github-com-hashicorp-go-multierror-1.0.0) +; ("go-github-com-fatih-color-1.7.0" ,go-github-com-fatih-color-1.7.0) +; ("go-github-com-bgentry-speakeasy-0.1.0" +; ,go-github-com-bgentry-speakeasy-0.1.0) +; ("go-github-com-armon-go-radix-0.0.0-20180808171621-7fddfc383310" +; ,go-github-com-armon-go-radix-0.0.0-20180808171621-7fddfc383310))) +; (home-page "https://github.com/mitchellh/cli") +; (synopsis "Go CLI Library") +; (description +; "cli is a library for implementing powerful command-line interfaces in Go. +;cli is the library that powers the CLI for +;@url{https://github.com/mitchellh/packer,Packer}, +;@url{https://github.com/hashicorp/serf,Serf}, +;@url{https://github.com/hashicorp/consul,Consul}, +;@url{https://github.com/hashicorp/vault,Vault}, +;@url{https://github.com/hashicorp/terraform,Terraform}, and +;@url{https://github.com/hashicorp/nomad,Nomad}.") +; (license license:mpl2.0))) +; +;(define-public go-github-com-mitchellh-gox-0.4.0 +; (package +; (name "go-github-com-mitchellh-gox") +; (version "0.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mitchellh/gox") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1q4fdkw904mrmh1q5z8pfd3r0gcn5dm776kldqawddy93iiwnp8r")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mitchellh/gox")) +; (home-page "https://github.com/mitchellh/gox") +; (synopsis "Gox - Simple Go Cross Compilation") +; (description +; "Gox is a simple, no-frills tool for Go cross compilation that behaves a +;lot like standard @code{go build}. Gox will parallelize builds for multiple +;platforms. Gox will also build the cross-compilation toolchain for you.") +; (license license:mpl2.0))) +; +;(define-public go-github-com-mitchellh-iochan-1.0.0 +; (package +; (name "go-github-com-mitchellh-iochan") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mitchellh/iochan") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "058n9bbf536f2nw3pbs7pysrg9cqvgkb28z2zf5wjyrzrknyk53g")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mitchellh/iochan")) +; (home-page "https://github.com/mitchellh/iochan") +; (synopsis "iochan") +; (description +; "iochan is a Go library for treating @code{io} readers and writers like channels. +;This is useful when sometimes you wish to use @code{io.Reader} and such in @code{select} +;statements.") +; (license license:expat))) +; +;(define-public go-github-com-mitchellh-mapstructure-0.0.0-20160808181253-ca63d7c062ee +; (package +; (name "go-github-com-mitchellh-mapstructure") +; (version "0.0.0-20160808181253-ca63d7c062ee") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mitchellh/mapstructure") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1yjwhgi57l5fxlmpdchipdd4jasdn1sa8ccl2f2486v06rv6z7gr")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mitchellh/mapstructure")) +; (home-page "https://github.com/mitchellh/mapstructure") +; (synopsis "mapstructure") +; (description +; "Package mapstructure exposes functionality to convert one arbitrary +;Go type into another, typically to convert a map[string]interface{} +;into a native Go structure. +;") +; (license license:expat))) +; +;(define-public go-github-com-ryanuber-columnize-0.0.0-20160712163229-9b3edd62028f +; (package +; (name "go-github-com-ryanuber-columnize") +; (version "0.0.0-20160712163229-9b3edd62028f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/ryanuber/columnize") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ya1idkbb0a9fjlhkcnh5a9yvpwzwfmbyg7d56lpplwr9rqi1da4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/ryanuber/columnize")) +; (home-page "https://github.com/ryanuber/columnize") +; (synopsis "Columnize") +; (description "Easy column-formatted output for golang") +; (license license:expat))) +; +;(define-public go-golang-org-x-net-0.0.0-20181201002055-351d144fa1fc +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20181201002055-351d144fa1fc") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1c5x25qjyz83y92bq0lll5kmznyi3m02wd4c54scgf0866gy938k")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-github-com-hashicorp-serf-0.8.2 +; (package +; (name "go-github-com-hashicorp-serf") +; (version "0.8.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/serf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0nrslghvdjhaczr2xp9mn8xgcx1dxl4jgpbk0l61ssmxahpx4iyc")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hashicorp/serf")) +; (propagated-inputs +; `(("go-golang-org-x-net-0.0.0-20181201002055-351d144fa1fc" +; ,go-golang-org-x-net-0.0.0-20181201002055-351d144fa1fc) +; ("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0) +; ("go-github-com-ryanuber-columnize-0.0.0-20160712163229-9b3edd62028f" +; ,go-github-com-ryanuber-columnize-0.0.0-20160712163229-9b3edd62028f) +; ("go-github-com-mitchellh-mapstructure-0.0.0-20160808181253-ca63d7c062ee" +; ,go-github-com-mitchellh-mapstructure-0.0.0-20160808181253-ca63d7c062ee) +; ("go-github-com-mitchellh-iochan-1.0.0" +; ,go-github-com-mitchellh-iochan-1.0.0) +; ("go-github-com-mitchellh-gox-0.4.0" +; ,go-github-com-mitchellh-gox-0.4.0) +; ("go-github-com-mitchellh-cli-1.0.0" +; ,go-github-com-mitchellh-cli-1.0.0) +; ("go-github-com-hashicorp-memberlist-0.1.3" +; ,go-github-com-hashicorp-memberlist-0.1.3) +; ("go-github-com-hashicorp-mdns-1.0.0" +; ,go-github-com-hashicorp-mdns-1.0.0) +; ("go-github-com-hashicorp-logutils-1.0.0" +; ,go-github-com-hashicorp-logutils-1.0.0) +; ("go-github-com-hashicorp-go-uuid-1.0.1" +; ,go-github-com-hashicorp-go-uuid-1.0.1) +; ("go-github-com-hashicorp-go-syslog-1.0.0" +; ,go-github-com-hashicorp-go-syslog-1.0.0) +; ("go-github-com-hashicorp-go-msgpack-0.5.3" +; ,go-github-com-hashicorp-go-msgpack-0.5.3) +; ("go-github-com-armon-go-metrics-0.0.0-20180917152333-f0300d1749da" +; ,go-github-com-armon-go-metrics-0.0.0-20180917152333-f0300d1749da) +; ("go-github-com-armon-circbuf-0.0.0-20150827004946-bbbad097214e" +; ,go-github-com-armon-circbuf-0.0.0-20150827004946-bbbad097214e))) +; (home-page "https://github.com/hashicorp/serf") +; (synopsis "Serf") +; (description +; "Serf is a decentralized solution for service discovery and orchestration +;that is lightweight, highly available, and fault tolerant.") +; (license license:mpl2.0))) +; +;(define-public go-github-com-mitchellh-mapstructure-1.1.2 +; (package +; (name "go-github-com-mitchellh-mapstructure") +; (version "1.1.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mitchellh/mapstructure") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "03bpv28jz9zhn4947saqwi328ydj7f6g6pf1m2d4m5zdh5jlfkrr")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mitchellh/mapstructure")) +; (home-page "https://github.com/mitchellh/mapstructure") +; (synopsis "mapstructure") +; (description +; "Package mapstructure exposes functionality to convert one arbitrary +;Go type into another, typically to convert a map[string]interface{} +;into a native Go structure. +;") +; (license license:expat))) +; +;(define-public go-github-com-pascaldekloe-goe-0.0.0-20180627143212-57f6aae5913c +; (package +; (name "go-github-com-pascaldekloe-goe") +; (version "0.0.0-20180627143212-57f6aae5913c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/pascaldekloe/goe") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1dqd3mfb4z2vmv6pg6fhgvfc53vhndk24wcl9lj1rz02n6m279fq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/pascaldekloe/goe")) +; (home-page "https://github.com/pascaldekloe/goe") +; (synopsis "Go Enterprise") +; (description +; "Common enterprise features for the Go programming language (golang).") +; (license license:cc0))) +; +;(define-public go-github-com-stretchr-testify-1.3.0 +; (package +; (name "go-github-com-stretchr-testify") +; (version "1.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/testify") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0wjchp2c8xbgcbbq32w3kvblk6q6yn533g78nxl6iskq6y95lxsy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/testify")) +; (propagated-inputs +; `(("go-github-com-stretchr-objx-0.1.0" +; ,go-github-com-stretchr-objx-0.1.0) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.0" +; ,go-github-com-davecgh-go-spew-1.1.0))) +; (home-page "https://github.com/stretchr/testify") +; (synopsis "Testify - Thou Shalt Write Tests") +; (description +; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +;") +; (license license:expat))) +; +;(define-public go-github-com-hashicorp-consul-api-1.1.0 +; (package +; (name "go-github-com-hashicorp-consul-api") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/consul") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0xm3gl8i7pgsbsc2397bwh9hp2dwnk4cmw5y05acqn3zpyp84sbv")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path +; "github.com/hashicorp/consul/api" +; #:unpack-path +; "github.com/hashicorp/consul")) +; (propagated-inputs +; `(("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0) +; ("go-github-com-pascaldekloe-goe-0.0.0-20180627143212-57f6aae5913c" +; ,go-github-com-pascaldekloe-goe-0.0.0-20180627143212-57f6aae5913c) +; ("go-github-com-mitchellh-mapstructure-1.1.2" +; ,go-github-com-mitchellh-mapstructure-1.1.2) +; ("go-github-com-hashicorp-serf-0.8.2" +; ,go-github-com-hashicorp-serf-0.8.2) +; ("go-github-com-hashicorp-go-uuid-1.0.1" +; ,go-github-com-hashicorp-go-uuid-1.0.1) +; ("go-github-com-hashicorp-go-rootcerts-1.0.0" +; ,go-github-com-hashicorp-go-rootcerts-1.0.0) +; ("go-github-com-hashicorp-go-cleanhttp-0.5.1" +; ,go-github-com-hashicorp-go-cleanhttp-0.5.1))) +; (home-page "https://github.com/hashicorp/consul") +; (synopsis "Consul API client") +; (description +; "This package provides the @code{api} package which attempts to +;provide programmatic access to the full Consul API.") +; (license license:mpl2.0))) +; +;(define-public go-github-com-golang-mock-1.5.0 +; (package +; (name "go-github-com-golang-mock") +; (version "1.5.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/mock") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "12l7p08pwwk3xn70w7rlm28nz6jf4szlzgjxjfmbssyirxxxy8v1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/mock")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" +; ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) +; ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0))) +; (home-page "https://github.com/golang/mock") +; (synopsis "gomock") +; (description +; "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It +;integrates well with Go's built-in @code{testing} package, but can be used in other +;contexts too.") +; (license license:asl2.0))) +; +;(define-public go-github-com-google-pprof-0.0.0-20210226084205-cbba55b83ad5 +; (package +; (name "go-github-com-google-pprof") +; (version "0.0.0-20210226084205-cbba55b83ad5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/pprof") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0drr44nqq0s3jillcrl8qa7sklxybs083lvashdh2ad62hrs31l7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/pprof")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" +; ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) +; ("go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639" +; ,go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639) +; ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" +; ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) +; ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" +; ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) +; ("go-github-com-chzyer-logex-1.1.10" +; ,go-github-com-chzyer-logex-1.1.10))) +; (home-page "https://github.com/google/pprof") +; (synopsis "Introduction") +; (description +; "pprof is a tool for collection, manipulation and visualization +;of performance profiles. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20210226172049-e18ecbb05110") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1vlq8mdscp7yfaa1lmyv03y5m4c2d67ydg2q1i6smkrxghn3zn3q")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) +; ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" +; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) +; ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" +; ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-github-com-google-pprof-0.0.0-20210122040257-d980be63207e +; (package +; (name "go-github-com-google-pprof") +; (version "0.0.0-20210122040257-d980be63207e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/pprof") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0vg5z6rp5kfd324w8j12hlx9zv049vxljpc6dyqkj2k9vzzzqkw8")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/pprof")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" +; ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) +; ("go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639" +; ,go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639) +; ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" +; ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) +; ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" +; ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) +; ("go-github-com-chzyer-logex-1.1.10" +; ,go-github-com-chzyer-logex-1.1.10))) +; (home-page "https://github.com/google/pprof") +; (synopsis "Introduction") +; (description +; "pprof is a tool for collection, manipulation and visualization +;of performance profiles. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-mod-0.4.1 +; (package +; (name "go-golang-org-x-mod") +; (version "0.4.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/mod") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0q4p41223d1xh4jmw9vmywjfi0jzn56gbidrwv5x1bzmx2qmj01n")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/mod")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" +; ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) +; ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" +; ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) +; ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" +; ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) +; (home-page "https://golang.org/x/mod") +; (synopsis "mod") +; (description +; "This repository holds packages for writing tools +;that work directly with Go module mechanics. +;That is, it is for direct manipulation of Go modules themselves.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20210119194325-5f4716e94777 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20210119194325-5f4716e94777") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1xh4hk0fhkzq096z9qbzqfswmmgg4kvb44qvazpandvlpwm4jds2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) +; ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" +; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) +; ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" +; ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-oauth2-0.0.0-20210218202405-ba52d332ba99 +; (package +; (name "go-golang-org-x-oauth2") +; (version "0.0.0-20210218202405-ba52d332ba99") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/oauth2") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0fdm3fljk3k4xbpzaywccayrhgqdfl79vl18k4z1zw2pl654bqbg")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/oauth2")) +; (propagated-inputs +; `(("go-google-golang-org-appengine-1.6.6" +; ,go-google-golang-org-appengine-1.6.6) +; ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" +; ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) +; ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) +; (home-page "https://golang.org/x/oauth2") +; (synopsis "OAuth2 for Go") +; (description +; "Package oauth2 provides support for making +;OAuth2 authorized and authenticated HTTP requests, +;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +;It can additionally grant authorization with Bearer JWT. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20210220050731-9a76102bfb43 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20210220050731-9a76102bfb43") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "07qn19yla2w604p3dc8h1c75xj2pxc4fajvg0mf0d4c72d5qiss4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-google-pprof-0.0.0-20201203190320-1bf35d6f28c2 +; (package +; (name "go-github-com-google-pprof") +; (version "0.0.0-20201203190320-1bf35d6f28c2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/pprof") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "140n5hjk2faanrf6v5h1559g755rgavynz1r99s1n15bmgibysvp")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/pprof")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" +; ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) +; ("go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639" +; ,go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639) +; ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" +; ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) +; ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" +; ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) +; ("go-github-com-chzyer-logex-1.1.10" +; ,go-github-com-chzyer-logex-1.1.10))) +; (home-page "https://github.com/google/pprof") +; (synopsis "Introduction") +; (description +; "pprof is a tool for collection, manipulation and visualization +;of performance profiles. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-mod-0.4.0 +; (package +; (name "go-golang-org-x-mod") +; (version "0.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/mod") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ri003765yxawq6s8jbkbiaijihwrg980c4qwqsaa5x0sq2psrg1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/mod")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" +; ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) +; ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" +; ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) +; ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" +; ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) +; (home-page "https://golang.org/x/mod") +; (synopsis "mod") +; (description +; "This repository holds packages for writing tools +;that work directly with Go module mechanics. +;That is, it is for direct manipulation of Go modules themselves.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20201209123823-ac852fbbde11 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20201209123823-ac852fbbde11") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1zmp2fxgf7792xx15qhzcsfs8k0qv7q3m6jlcj6qvdngfzyvna64")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) +; ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" +; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) +; ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" +; ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20201208233053-a543418bbed2 +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20201208233053-a543418bbed2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0r87p89pm2h75yajsz0g2vvy2q3z9gknc0fmsdm5rh427f1qazfr")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" +; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) +; ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" +; ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) +; ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" +; ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) +; ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) +; ("go-github-com-yuin-goldmark-1.2.1" +; ,go-github-com-yuin-goldmark-1.2.1))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-github-com-google-martian-v3-3.1.0 +; (package +; (name "go-github-com-google-martian-v3") +; (version "3.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/martian") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1pr9akggfzj2vw11l7ry4sij0hqslpc3gwx4ynbzyvbjhvh64sbc")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/martian/v3")) +; (propagated-inputs +; `(("go-golang-org-x-net-0.0.0-20190628185345-da137c7871d7" +; ,go-golang-org-x-net-0.0.0-20190628185345-da137c7871d7))) +; (home-page "https://github.com/google/martian") +; (synopsis "Martian Proxy") +; (description +; "Package martian provides an HTTP/1.1 proxy with an API for configurable +;request and response modifiers. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639 +; (package +; (name "go-github-com-ianlancetaylor-demangle") +; (version "0.0.0-20200824232613-28f6c0f3b639") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/ianlancetaylor/demangle") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0rsq3622gd40f1x1l7caidsxrmzg1993ich2higwd94fqbxs1r83")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/ianlancetaylor/demangle")) +; (home-page "https://github.com/ianlancetaylor/demangle") +; (synopsis "github.com/ianlancetaylor/demangle") +; (description +; "Package demangle defines functions that demangle GCC/LLVM +;C++ and Rust symbol names. +;This package recognizes names that were mangled according to the C++ ABI +;defined at @url{http://codesourcery.com/cxx-abi/,http://codesourcery.com/cxx-abi/} and the Rust ABI +;defined at +;@url{https://rust-lang.github.io/rfcs/2603-rust-symbol-name-mangling-v0.html,https://rust-lang.github.io/rfcs/2603-rust-symbol-name-mangling-v0.html} +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-google-pprof-0.0.0-20201023163331-3e6fc7fc9c4c +; (package +; (name "go-github-com-google-pprof") +; (version "0.0.0-20201023163331-3e6fc7fc9c4c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/pprof") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1xmy4579gx45lqsy1cgddnc7nmaqfpiwd2kc5dhf8i0wjjvf18hq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/pprof")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" +; ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) +; ("go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639" +; ,go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639) +; ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" +; ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) +; ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" +; ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) +; ("go-github-com-chzyer-logex-1.1.10" +; ,go-github-com-chzyer-logex-1.1.10))) +; (home-page "https://github.com/google/pprof") +; (synopsis "Introduction") +; (description +; "pprof is a tool for collection, manipulation and visualization +;of performance profiles. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-net-0.0.0-20201031054903-ff519b6c9102 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20201031054903-ff519b6c9102") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "162ssgcc0kgj42ajaki0q3j5lwmixqqwkdqcmz41xg1k8wjm7riw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) +; ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" +; ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) +; ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" +; ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-text-0.3.4 +; (package +; (name "go-golang-org-x-text") +; (version "0.3.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/text") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "11jdvix83xcl5xnb039y4zrz4x5skzsps0w1jryp6wrar53cydvz")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/text")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" +; ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) +; (home-page "https://golang.org/x/text") +; (synopsis "Go Text") +; (description +; "text is a repository of text-related packages related to internationalization +;(i18n) and localization (l10n), such as character encodings, text +;transformations, and locale-specific text handling. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20201110124207-079ba7bd75cd +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20201110124207-079ba7bd75cd") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0g4d7cx480rbnpg16qqc4yycd50lpp2mi2qzvzr6hdny91v7sa05")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" +; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) +; ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" +; ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) +; ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" +; ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) +; ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) +; ("go-github-com-yuin-goldmark-1.2.1" +; ,go-github-com-yuin-goldmark-1.2.1))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-github-com-google-go-cmp-0.5.2 +; (package +; (name "go-github-com-google-go-cmp") +; (version "0.5.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/go-cmp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0qchy411jm9q2l9mf7x3ry2ycaqp9xdhf2nx14qrpzcxfigv2705")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/go-cmp")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" +; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) +; (home-page "https://github.com/google/go-cmp") +; (synopsis "Package for equality of Go values") +; (description +; "This package is intended to be a more powerful and safer alternative to +;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-oauth2-0.0.0-20200902213428-5d25da1a8d43 +; (package +; (name "go-golang-org-x-oauth2") +; (version "0.0.0-20200902213428-5d25da1a8d43") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/oauth2") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "14jx8sxshbvnx4fggn12mlmz000zcrd1a73n1455b1wgg1xfzq3n")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/oauth2")) +; (propagated-inputs +; `(("go-google-golang-org-appengine-1.6.6" +; ,go-google-golang-org-appengine-1.6.6) +; ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" +; ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) +; ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) +; (home-page "https://golang.org/x/oauth2") +; (synopsis "OAuth2 for Go") +; (description +; "Package oauth2 provides support for making +;OAuth2 authorized and authenticated HTTP requests, +;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +;It can additionally grant authorization with Bearer JWT. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20200905004654-be1d3432aa8f +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20200905004654-be1d3432aa8f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1kd3szjsazhpgidv5xjv0s26fm4wvv2cr7j4zk8nblnqkic58as2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20200904185747-39188db58858 +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20200904185747-39188db58858") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ydyylwqzjwijy4rdp2fmvnfh3s27896dx6g74r2wa6vbhisszvk")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" +; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) +; ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" +; ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) +; ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" +; ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) +; ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) +; ("go-github-com-yuin-goldmark-1.2.1" +; ,go-github-com-yuin-goldmark-1.2.1))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20200904004341-0bd0a958aa1d +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20200904004341-0bd0a958aa1d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "01xp4ic4jvdv7n984cjgrgqbpbi9m4bj2xnfrs1s1zn1adx0jivs")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.24.0" +; ,go-google-golang-org-protobuf-1.24.0) +; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) +; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" +; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-github-com-golang-protobuf-1.4.1" +; ,go-github-com-golang-protobuf-1.4.1))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-grpc-1.31.1 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.31.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "18565vf9i2zc69znd9b8a2iz0kgv5cms0g0ppj93hnhri8rjqagk")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" +; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.3.3" +; ,go-github-com-golang-protobuf-1.3.3) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-envoyproxy-go-control-plane-0.9.4" +; ,go-github-com-envoyproxy-go-control-plane-0.9.4) +; ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" +; ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-api-0.35.0 +; (package +; (name "go-google-golang-org-api") +; (version "0.35.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-api-go-client") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0fgn21lmrlkw44sl0ivjicygwksibb1pclzp3zyh3ivn7ylvk2jd")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/api")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.31.1" ,go-google-golang-org-grpc-1.31.1) +; ("go-google-golang-org-genproto-0.0.0-20200904004341-0bd0a958aa1d" +; ,go-google-golang-org-genproto-0.0.0-20200904004341-0bd0a958aa1d) +; ("go-google-golang-org-appengine-1.6.6" +; ,go-google-golang-org-appengine-1.6.6) +; ("go-golang-org-x-tools-0.0.0-20200904185747-39188db58858" +; ,go-golang-org-x-tools-0.0.0-20200904185747-39188db58858) +; ("go-golang-org-x-sys-0.0.0-20200905004654-be1d3432aa8f" +; ,go-golang-org-x-sys-0.0.0-20200905004654-be1d3432aa8f) +; ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" +; ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) +; ("go-golang-org-x-oauth2-0.0.0-20200902213428-5d25da1a8d43" +; ,go-golang-org-x-oauth2-0.0.0-20200902213428-5d25da1a8d43) +; ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" +; ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) +; ("go-go-opencensus-io-0.22.4" ,go-go-opencensus-io-0.22.4) +; ("go-github-com-googleapis-gax-go-v2-2.0.5" +; ,go-github-com-googleapis-gax-go-v2-2.0.5) +; ("go-github-com-google-go-cmp-0.5.2" +; ,go-github-com-google-go-cmp-0.5.2) +; ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) +; (home-page "https://google.golang.org/api") +; (synopsis "Google APIs Client Library for Go") +; (description +; "Package api is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of +;sub-packages. +;") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20201109203340-2640f1f9cdfb +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20201109203340-2640f1f9cdfb") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "00mwybjbdpvmlkvmwsjvdb2z8lzzx2a340y4pf3bxqamalhdka0w")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.24.0" +; ,go-google-golang-org-protobuf-1.24.0) +; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) +; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" +; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-github-com-golang-protobuf-1.4.1" +; ,go-github-com-golang-protobuf-1.4.1))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-cloud-google-com-go-0.72.0 +; (package +; (name "go-cloud-google-com-go") +; (version "0.72.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-cloud-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1x4gy466jrzab9l02dwd3lvy2dwy84j34zpjkm5xnxh45za6hpxn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "cloud.google.com/go")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) +; ("go-google-golang-org-genproto-0.0.0-20201109203340-2640f1f9cdfb" +; ,go-google-golang-org-genproto-0.0.0-20201109203340-2640f1f9cdfb) +; ("go-google-golang-org-api-0.35.0" ,go-google-golang-org-api-0.35.0) +; ("go-golang-org-x-tools-0.0.0-20201110124207-079ba7bd75cd" +; ,go-golang-org-x-tools-0.0.0-20201110124207-079ba7bd75cd) +; ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) +; ("go-golang-org-x-oauth2-0.0.0-20200902213428-5d25da1a8d43" +; ,go-golang-org-x-oauth2-0.0.0-20200902213428-5d25da1a8d43) +; ("go-golang-org-x-net-0.0.0-20201031054903-ff519b6c9102" +; ,go-golang-org-x-net-0.0.0-20201031054903-ff519b6c9102) +; ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" +; ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) +; ("go-go-opencensus-io-0.22.5" ,go-go-opencensus-io-0.22.5) +; ("go-github-com-jstemmer-go-junit-report-0.9.1" +; ,go-github-com-jstemmer-go-junit-report-0.9.1) +; ("go-github-com-googleapis-gax-go-v2-2.0.5" +; ,go-github-com-googleapis-gax-go-v2-2.0.5) +; ("go-github-com-google-pprof-0.0.0-20201023163331-3e6fc7fc9c4c" +; ,go-github-com-google-pprof-0.0.0-20201023163331-3e6fc7fc9c4c) +; ("go-github-com-google-martian-v3-3.1.0" +; ,go-github-com-google-martian-v3-3.1.0) +; ("go-github-com-google-go-cmp-0.5.2" +; ,go-github-com-google-go-cmp-0.5.2) +; ("go-github-com-golang-protobuf-1.4.3" +; ,go-github-com-golang-protobuf-1.4.3) +; ("go-github-com-golang-mock-1.4.4" ,go-github-com-golang-mock-1.4.4) +; ("go-cloud-google-com-go-storage-1.10.0" +; ,go-cloud-google-com-go-storage-1.10.0))) +; (home-page "https://cloud.google.com/go") +; (synopsis "Google Cloud Client Libraries for Go") +; (description +; "Package cloud is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +;of sub-packages. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-oauth2-0.0.0-20201109201403-9fd604954f58 +; (package +; (name "go-golang-org-x-oauth2") +; (version "0.0.0-20201109201403-9fd604954f58") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/oauth2") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "06dj14f6jrgpqmf3v3z74zhcin3yj7yp8mzxljm3a3ihq984kz8v")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/oauth2")) +; (propagated-inputs +; `(("go-google-golang-org-appengine-1.6.6" +; ,go-google-golang-org-appengine-1.6.6) +; ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" +; ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) +; ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) +; (home-page "https://golang.org/x/oauth2") +; (synopsis "OAuth2 for Go") +; (description +; "Package oauth2 provides support for making +;OAuth2 authorized and authenticated HTTP requests, +;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +;It can additionally grant authorization with Bearer JWT. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20201201145000-ef89a241ccb3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0a8myxx2mvdr77a003gpy5jmdzbxbnrf5zppmpl4za4sspxlmwif")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20201201161351-ac6f37ff4c2a +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20201201161351-ac6f37ff4c2a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0akq0z86x51rh556fs7icjmmmgdyaa7rq7cmqlngrmvjb79wnwpl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" +; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) +; ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" +; ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) +; ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" +; ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) +; ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) +; ("go-github-com-yuin-goldmark-1.2.1" +; ,go-github-com-yuin-goldmark-1.2.1))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20201201144952-b05cb90ed32e +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20201201144952-b05cb90ed32e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1n9jlhnn5fg7a41ahdril7wgfli43kxplnpxbdbhrkknjra7xdjd")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.24.0" +; ,go-google-golang-org-protobuf-1.24.0) +; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) +; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" +; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-github-com-golang-protobuf-1.4.1" +; ,go-github-com-golang-protobuf-1.4.1))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-api-0.36.0 +; (package +; (name "go-google-golang-org-api") +; (version "0.36.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-api-go-client") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1x6wlavrqi2r6ss3h2kg94p2lfj0z019kc85zm1pajpf0k23fxp7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/api")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) +; ("go-google-golang-org-genproto-0.0.0-20201201144952-b05cb90ed32e" +; ,go-google-golang-org-genproto-0.0.0-20201201144952-b05cb90ed32e) +; ("go-google-golang-org-appengine-1.6.7" +; ,go-google-golang-org-appengine-1.6.7) +; ("go-golang-org-x-tools-0.0.0-20201201161351-ac6f37ff4c2a" +; ,go-golang-org-x-tools-0.0.0-20201201161351-ac6f37ff4c2a) +; ("go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3" +; ,go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3) +; ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" +; ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) +; ("go-golang-org-x-oauth2-0.0.0-20201109201403-9fd604954f58" +; ,go-golang-org-x-oauth2-0.0.0-20201109201403-9fd604954f58) +; ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" +; ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) +; ("go-go-opencensus-io-0.22.5" ,go-go-opencensus-io-0.22.5) +; ("go-github-com-googleapis-gax-go-v2-2.0.5" +; ,go-github-com-googleapis-gax-go-v2-2.0.5) +; ("go-github-com-google-go-cmp-0.5.4" +; ,go-github-com-google-go-cmp-0.5.4) +; ("go-cloud-google-com-go-0.72.0" ,go-cloud-google-com-go-0.72.0))) +; (home-page "https://google.golang.org/api") +; (synopsis "Google APIs Client Library for Go") +; (description +; "Package api is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of +;sub-packages. +;") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20201210142538-e3217bee35cc +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20201210142538-e3217bee35cc") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1bzfa58dw7jmkrp46hikbsq1yyk2r29a1gn51sqlilbvf7lq96p9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.24.0" +; ,go-google-golang-org-protobuf-1.24.0) +; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) +; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" +; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-github-com-golang-protobuf-1.4.1" +; ,go-github-com-golang-protobuf-1.4.1))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-cloud-google-com-go-0.74.0 +; (package +; (name "go-cloud-google-com-go") +; (version "0.74.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-cloud-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "09j1qppf2gf14bn06hsyrj9jaxz9vlbs9d7yrxrdvh2234qsbggy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "cloud.google.com/go")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.34.0" ,go-google-golang-org-grpc-1.34.0) +; ("go-google-golang-org-genproto-0.0.0-20201210142538-e3217bee35cc" +; ,go-google-golang-org-genproto-0.0.0-20201210142538-e3217bee35cc) +; ("go-google-golang-org-api-0.36.0" ,go-google-golang-org-api-0.36.0) +; ("go-golang-org-x-tools-0.0.0-20201208233053-a543418bbed2" +; ,go-golang-org-x-tools-0.0.0-20201208233053-a543418bbed2) +; ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) +; ("go-golang-org-x-oauth2-0.0.0-20201208152858-08078c50e5b5" +; ,go-golang-org-x-oauth2-0.0.0-20201208152858-08078c50e5b5) +; ("go-golang-org-x-net-0.0.0-20201209123823-ac852fbbde11" +; ,go-golang-org-x-net-0.0.0-20201209123823-ac852fbbde11) +; ("go-golang-org-x-mod-0.4.0" ,go-golang-org-x-mod-0.4.0) +; ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" +; ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) +; ("go-go-opencensus-io-0.22.5" ,go-go-opencensus-io-0.22.5) +; ("go-github-com-jstemmer-go-junit-report-0.9.1" +; ,go-github-com-jstemmer-go-junit-report-0.9.1) +; ("go-github-com-googleapis-gax-go-v2-2.0.5" +; ,go-github-com-googleapis-gax-go-v2-2.0.5) +; ("go-github-com-google-pprof-0.0.0-20201203190320-1bf35d6f28c2" +; ,go-github-com-google-pprof-0.0.0-20201203190320-1bf35d6f28c2) +; ("go-github-com-google-martian-v3-3.1.0" +; ,go-github-com-google-martian-v3-3.1.0) +; ("go-github-com-google-go-cmp-0.5.4" +; ,go-github-com-google-go-cmp-0.5.4) +; ("go-github-com-golang-protobuf-1.4.3" +; ,go-github-com-golang-protobuf-1.4.3) +; ("go-github-com-golang-mock-1.4.4" ,go-github-com-golang-mock-1.4.4) +; ("go-cloud-google-com-go-storage-1.10.0" +; ,go-cloud-google-com-go-storage-1.10.0))) +; (home-page "https://cloud.google.com/go") +; (synopsis "Google Cloud Client Libraries for Go") +; (description +; "Package cloud is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +;of sub-packages. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-google-go-cmp-0.5.4 +; (package +; (name "go-github-com-google-go-cmp") +; (version "0.5.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/go-cmp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ld9pwb6l22g75g1zpa691l7q9ki7pjgpcqhwgdfr3va1zisr5ci")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/go-cmp")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" +; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) +; (home-page "https://github.com/google/go-cmp") +; (synopsis "Package for equality of Go values") +; (description +; "This package is intended to be a more powerful and safer alternative to +;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") +; (license license:bsd-3))) +; +;(define-public go-go-opencensus-io-0.22.5 +; (package +; (name "go-go-opencensus-io") +; (version "0.22.5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/census-instrumentation/opencensus-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "18s1d7bk28i8gbs6i587ccd31qp3f8gibgd14dpkzs05gyvlccy6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "go.opencensus.io")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.20.1" ,go-google-golang-org-grpc-1.20.1) +; ("go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb" +; ,go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb) +; ("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) +; ("go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd" +; ,go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd) +; ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" +; ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) +; ("go-github-com-stretchr-testify-1.4.0" +; ,go-github-com-stretchr-testify-1.4.0) +; ("go-github-com-google-go-cmp-0.3.0" +; ,go-github-com-google-go-cmp-0.3.0) +; ("go-github-com-golang-protobuf-1.3.1" +; ,go-github-com-golang-protobuf-1.3.1) +; ("go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6" +; ,go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6))) +; (home-page "https://go.opencensus.io") +; (synopsis "OpenCensus Libraries for Go") +; (description "Package opencensus contains Go support for OpenCensus. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-oauth2-0.0.0-20201208152858-08078c50e5b5 +; (package +; (name "go-golang-org-x-oauth2") +; (version "0.0.0-20201208152858-08078c50e5b5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/oauth2") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0zynwxw47nhwhs6n1c87c9np43lwl9m9z2w2cmdvjwhsisa93b75")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/oauth2")) +; (propagated-inputs +; `(("go-google-golang-org-appengine-1.6.6" +; ,go-google-golang-org-appengine-1.6.6) +; ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" +; ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) +; ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) +; (home-page "https://golang.org/x/oauth2") +; (synopsis "OAuth2 for Go") +; (description +; "Package oauth2 provides support for making +;OAuth2 authorized and authenticated HTTP requests, +;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +;It can additionally grant authorization with Bearer JWT. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a +; (package +; (name "go-golang-org-x-sync") +; (version "0.0.0-20201207232520-09787c993a3a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sync") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1nv4mwi9njkkyc7lwmxrjr8ggfh2cf1c67a9bq85dnss81vpj61y")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sync")) +; (home-page "https://golang.org/x/sync") +; (synopsis "Go Sync") +; (description +; "This repository provides Go concurrency primitives in addition to the +;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20210104204734-6f8348627aad +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20210104204734-6f8348627aad") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0pmz8dwjf4gxr1gwnp4iahh3yh09apcf40kvvybycsx4rfjc2gbl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20210105154028-b0ab187a4818 +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20210105154028-b0ab187a4818") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "157w706lz7j4s7cwgh7j7mf8v1sah5hm4dlmp8isf6vhnqpixdp7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" +; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) +; ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" +; ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) +; ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" +; ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) +; ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) +; ("go-github-com-yuin-goldmark-1.2.1" +; ,go-github-com-yuin-goldmark-1.2.1))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20201214200347-8c77b98c765d +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20201214200347-8c77b98c765d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1bdpss5xmla0gjz66mdk8bqpsdb5i1xz65g30k9cs2h7vrqlwzn4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.24.0" +; ,go-google-golang-org-protobuf-1.24.0) +; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) +; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" +; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-github-com-golang-protobuf-1.4.1" +; ,go-github-com-golang-protobuf-1.4.1))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-github-com-cncf-udpa-go-0.0.0-20200629203442-efcf912fb354 +; (package +; (name "go-github-com-cncf-udpa-go") +; (version "0.0.0-20200629203442-efcf912fb354") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/cncf/udpa") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "18b1v01h3id5d7v5gqabc4qsaja17r45rn3fvv38nrfx9l4smv0x")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path +; "github.com/cncf/udpa/go" +; #:unpack-path +; "github.com/cncf/udpa")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2) +; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" +; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0))) +; (home-page "https://github.com/cncf/udpa") +; (synopsis "Description") +; (description +; "This library has been deprecated in favor of @code{github.com/cncf/xds/go}. All users are recommended to switch their imports.") +; (license license:asl2.0))) +; +;(define-public go-github-com-envoyproxy-go-control-plane-0.9.7 +; (package +; (name "go-github-com-envoyproxy-go-control-plane") +; (version "0.9.7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/envoyproxy/go-control-plane") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0nx5ybyadkjqr29hndn6amhbcqpi1rkfv12bxp0rk3ay045zxsh8")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.23.0" +; ,go-google-golang-org-protobuf-1.23.0) +; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) +; ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" +; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) +; ("go-github-com-stretchr-testify-1.5.1" +; ,go-github-com-stretchr-testify-1.5.1) +; ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" +; ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.4.2" +; ,go-github-com-golang-protobuf-1.4.2) +; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" +; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) +; ("go-github-com-cncf-udpa-go-0.0.0-20200629203442-efcf912fb354" +; ,go-github-com-cncf-udpa-go-0.0.0-20200629203442-efcf912fb354) +; ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" +; ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) +; (home-page "https://github.com/envoyproxy/go-control-plane") +; (synopsis "control-plane") +; (description +; "This repository contains a Go-based implementation of an API server that +;implements the discovery service APIs defined in +;@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-grpc-1.34.0 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.34.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0s8y19qvv0zfy2irq8vv12h65v7pw18k6yqfix1j2370yxmsajgm")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.25.0" +; ,go-google-golang-org-protobuf-1.25.0) +; ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" +; ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) +; ("go-github-com-google-go-cmp-0.5.0" +; ,go-github-com-google-go-cmp-0.5.0) +; ("go-github-com-golang-protobuf-1.4.2" +; ,go-github-com-golang-protobuf-1.4.2) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-envoyproxy-go-control-plane-0.9.7" +; ,go-github-com-envoyproxy-go-control-plane-0.9.7) +; ("go-github-com-cncf-udpa-go-0.0.0-20200629203442-efcf912fb354" +; ,go-github-com-cncf-udpa-go-0.0.0-20200629203442-efcf912fb354))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-api-0.40.0 +; (package +; (name "go-google-golang-org-api") +; (version "0.40.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-api-go-client") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0vs0bnzljg5iib8x01sy49ndgsz3cl1sq53pvy3h6kzp7may0bpc")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/api")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.34.0" ,go-google-golang-org-grpc-1.34.0) +; ("go-google-golang-org-genproto-0.0.0-20201214200347-8c77b98c765d" +; ,go-google-golang-org-genproto-0.0.0-20201214200347-8c77b98c765d) +; ("go-google-golang-org-appengine-1.6.7" +; ,go-google-golang-org-appengine-1.6.7) +; ("go-golang-org-x-tools-0.0.0-20210105154028-b0ab187a4818" +; ,go-golang-org-x-tools-0.0.0-20210105154028-b0ab187a4818) +; ("go-golang-org-x-sys-0.0.0-20210104204734-6f8348627aad" +; ,go-golang-org-x-sys-0.0.0-20210104204734-6f8348627aad) +; ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" +; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) +; ("go-golang-org-x-oauth2-0.0.0-20201208152858-08078c50e5b5" +; ,go-golang-org-x-oauth2-0.0.0-20201208152858-08078c50e5b5) +; ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" +; ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) +; ("go-go-opencensus-io-0.22.5" ,go-go-opencensus-io-0.22.5) +; ("go-github-com-googleapis-gax-go-v2-2.0.5" +; ,go-github-com-googleapis-gax-go-v2-2.0.5) +; ("go-github-com-google-go-cmp-0.5.4" +; ,go-github-com-google-go-cmp-0.5.4) +; ("go-cloud-google-com-go-0.74.0" ,go-cloud-google-com-go-0.74.0))) +; (home-page "https://google.golang.org/api") +; (synopsis "Google APIs Client Library for Go") +; (description +; "Package api is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of +;sub-packages. +;") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20210222152913-aa3ee6e6a81c +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20210222152913-aa3ee6e6a81c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "06wa7v3s558rwxsqd1kqz5xy10kigzx50ciqh3zdxsbvxqvjwxrx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.24.0" +; ,go-google-golang-org-protobuf-1.24.0) +; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) +; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" +; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-github-com-golang-protobuf-1.4.1" +; ,go-github-com-golang-protobuf-1.4.1))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-grpc-1.35.0 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.35.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "15ij5acp9h8dxq0brc0jljj98badri23zpm4yvmsn6gnnxaykl72")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.25.0" +; ,go-google-golang-org-protobuf-1.25.0) +; ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" +; ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) +; ("go-github-com-google-go-cmp-0.5.0" +; ,go-github-com-google-go-cmp-0.5.0) +; ("go-github-com-golang-protobuf-1.4.2" +; ,go-github-com-golang-protobuf-1.4.2) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad" +; ,go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad) +; ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" +; ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-cloud-google-com-go-0.78.0 +; (package +; (name "go-cloud-google-com-go") +; (version "0.78.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-cloud-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "11wldladkcz41ivsfnbrqy2hg5wp55d72hnr2wki0zvnhbzsj376")))) +; (build-system go-build-system) +; (arguments '(#:import-path "cloud.google.com/go")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.35.0" ,go-google-golang-org-grpc-1.35.0) +; ("go-google-golang-org-genproto-0.0.0-20210222152913-aa3ee6e6a81c" +; ,go-google-golang-org-genproto-0.0.0-20210222152913-aa3ee6e6a81c) +; ("go-google-golang-org-api-0.40.0" ,go-google-golang-org-api-0.40.0) +; ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) +; ("go-golang-org-x-text-0.3.5" ,go-golang-org-x-text-0.3.5) +; ("go-golang-org-x-sys-0.0.0-20210220050731-9a76102bfb43" +; ,go-golang-org-x-sys-0.0.0-20210220050731-9a76102bfb43) +; ("go-golang-org-x-oauth2-0.0.0-20210218202405-ba52d332ba99" +; ,go-golang-org-x-oauth2-0.0.0-20210218202405-ba52d332ba99) +; ("go-golang-org-x-net-0.0.0-20210119194325-5f4716e94777" +; ,go-golang-org-x-net-0.0.0-20210119194325-5f4716e94777) +; ("go-golang-org-x-mod-0.4.1" ,go-golang-org-x-mod-0.4.1) +; ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" +; ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) +; ("go-go-opencensus-io-0.22.5" ,go-go-opencensus-io-0.22.5) +; ("go-github-com-jstemmer-go-junit-report-0.9.1" +; ,go-github-com-jstemmer-go-junit-report-0.9.1) +; ("go-github-com-googleapis-gax-go-v2-2.0.5" +; ,go-github-com-googleapis-gax-go-v2-2.0.5) +; ("go-github-com-google-pprof-0.0.0-20210122040257-d980be63207e" +; ,go-github-com-google-pprof-0.0.0-20210122040257-d980be63207e) +; ("go-github-com-google-martian-v3-3.1.0" +; ,go-github-com-google-martian-v3-3.1.0) +; ("go-github-com-google-go-cmp-0.5.4" +; ,go-github-com-google-go-cmp-0.5.4) +; ("go-github-com-golang-protobuf-1.4.3" +; ,go-github-com-golang-protobuf-1.4.3) +; ("go-github-com-golang-mock-1.4.4" ,go-github-com-golang-mock-1.4.4) +; ("go-cloud-google-com-go-storage-1.10.0" +; ,go-cloud-google-com-go-storage-1.10.0))) +; (home-page "https://cloud.google.com/go") +; (synopsis "Google Cloud Client Libraries for Go") +; (description +; "Package cloud is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +;of sub-packages. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-oauth2-0.0.0-20210220000619-9bb904979d93 +; (package +; (name "go-golang-org-x-oauth2") +; (version "0.0.0-20210220000619-9bb904979d93") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/oauth2") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1rhndpvpvfy5bsaxi974cznlq4hbamhmy6l06ppp9phh12pvn11p")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/oauth2")) +; (propagated-inputs +; `(("go-google-golang-org-appengine-1.6.6" +; ,go-google-golang-org-appengine-1.6.6) +; ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" +; ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) +; ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) +; (home-page "https://golang.org/x/oauth2") +; (synopsis "OAuth2 for Go") +; (description +; "Package oauth2 provides support for making +;OAuth2 authorized and authenticated HTTP requests, +;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +;It can additionally grant authorization with Bearer JWT. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20210305230114-8fe3ee5dd75b +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20210305230114-8fe3ee5dd75b") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1x7fn66vplxkac6lbwqv649wwnx7kz0bqdzgr98z7yx7cfdxd7rj")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20210303154014-9728d6b83eeb +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20210303154014-9728d6b83eeb") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1abic7gjp07d1s6imjfn00s316xdirss3zvcric74gr9varr02xn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.24.0" +; ,go-google-golang-org-protobuf-1.24.0) +; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) +; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" +; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-github-com-golang-protobuf-1.4.1" +; ,go-github-com-golang-protobuf-1.4.1))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-api-0.41.0 +; (package +; (name "go-google-golang-org-api") +; (version "0.41.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-api-go-client") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0yzz534xzl2km3vxr18h204yvnrzqlss02fagg2ign0sy3qnlkhx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/api")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.36.0" ,go-google-golang-org-grpc-1.36.0) +; ("go-google-golang-org-genproto-0.0.0-20210303154014-9728d6b83eeb" +; ,go-google-golang-org-genproto-0.0.0-20210303154014-9728d6b83eeb) +; ("go-google-golang-org-appengine-1.6.7" +; ,go-google-golang-org-appengine-1.6.7) +; ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) +; ("go-golang-org-x-sys-0.0.0-20210305230114-8fe3ee5dd75b" +; ,go-golang-org-x-sys-0.0.0-20210305230114-8fe3ee5dd75b) +; ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" +; ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) +; ("go-golang-org-x-oauth2-0.0.0-20210220000619-9bb904979d93" +; ,go-golang-org-x-oauth2-0.0.0-20210220000619-9bb904979d93) +; ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" +; ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) +; ("go-go-opencensus-io-0.23.0" ,go-go-opencensus-io-0.23.0) +; ("go-github-com-googleapis-gax-go-v2-2.0.5" +; ,go-github-com-googleapis-gax-go-v2-2.0.5) +; ("go-github-com-google-go-cmp-0.5.5" +; ,go-github-com-google-go-cmp-0.5.5) +; ("go-cloud-google-com-go-0.78.0" ,go-cloud-google-com-go-0.78.0))) +; (home-page "https://google.golang.org/api") +; (synopsis "Google APIs Client Library for Go") +; (description +; "Package api is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of +;sub-packages. +;") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20210310155132-4ce2db91004e +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20210310155132-4ce2db91004e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0r5f024c4piqna27pvc28m0h44ms9rhcbihf1zn5l8prf4vvrdw9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.24.0" +; ,go-google-golang-org-protobuf-1.24.0) +; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) +; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" +; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-github-com-golang-protobuf-1.4.1" +; ,go-github-com-golang-protobuf-1.4.1))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-cloud-google-com-go-0.79.0 +; (package +; (name "go-cloud-google-com-go") +; (version "0.79.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-cloud-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "031jrfgyys0slh154593d4swj6iqrjvs9dxwmab99dl6zfws77jv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "cloud.google.com/go")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.36.0" ,go-google-golang-org-grpc-1.36.0) +; ("go-google-golang-org-genproto-0.0.0-20210310155132-4ce2db91004e" +; ,go-google-golang-org-genproto-0.0.0-20210310155132-4ce2db91004e) +; ("go-google-golang-org-api-0.41.0" ,go-google-golang-org-api-0.41.0) +; ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) +; ("go-golang-org-x-text-0.3.5" ,go-golang-org-x-text-0.3.5) +; ("go-golang-org-x-oauth2-0.0.0-20210220000619-9bb904979d93" +; ,go-golang-org-x-oauth2-0.0.0-20210220000619-9bb904979d93) +; ("go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110" +; ,go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110) +; ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" +; ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) +; ("go-go-opencensus-io-0.23.0" ,go-go-opencensus-io-0.23.0) +; ("go-github-com-jstemmer-go-junit-report-0.9.1" +; ,go-github-com-jstemmer-go-junit-report-0.9.1) +; ("go-github-com-googleapis-gax-go-v2-2.0.5" +; ,go-github-com-googleapis-gax-go-v2-2.0.5) +; ("go-github-com-google-pprof-0.0.0-20210226084205-cbba55b83ad5" +; ,go-github-com-google-pprof-0.0.0-20210226084205-cbba55b83ad5) +; ("go-github-com-google-martian-v3-3.1.0" +; ,go-github-com-google-martian-v3-3.1.0) +; ("go-github-com-google-go-cmp-0.5.5" +; ,go-github-com-google-go-cmp-0.5.5) +; ("go-github-com-golang-protobuf-1.4.3" +; ,go-github-com-golang-protobuf-1.4.3) +; ("go-github-com-golang-mock-1.5.0" ,go-github-com-golang-mock-1.5.0) +; ("go-cloud-google-com-go-storage-1.10.0" +; ,go-cloud-google-com-go-storage-1.10.0))) +; (home-page "https://cloud.google.com/go") +; (synopsis "Google Cloud Client Libraries for Go") +; (description +; "Package cloud is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +;of sub-packages. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-oauth2-0.0.0-20210313182246-cd4f82c27b84 +; (package +; (name "go-golang-org-x-oauth2") +; (version "0.0.0-20210313182246-cd4f82c27b84") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/oauth2") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1jf68sh1957ji1lv1zrrhsbm6jr3508pw159pfzgyw6hbzsg5amv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/oauth2")) +; (propagated-inputs +; `(("go-google-golang-org-appengine-1.6.6" +; ,go-google-golang-org-appengine-1.6.6) +; ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" +; ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) +; ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) +; (home-page "https://golang.org/x/oauth2") +; (synopsis "OAuth2 for Go") +; (description +; "Package oauth2 provides support for making +;OAuth2 authorized and authenticated HTTP requests, +;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +;It can additionally grant authorization with Bearer JWT. +;") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20210319143718-93e7006c17a6 +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20210319143718-93e7006c17a6") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0l143m8rn7zmbfb2rpdawhxs8qjbdpn61hqynf47j5hwsbjci2xs")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.24.0" +; ,go-google-golang-org-protobuf-1.24.0) +; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) +; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" +; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-github-com-golang-protobuf-1.4.1" +; ,go-github-com-golang-protobuf-1.4.1))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-grpc-1.36.0 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.36.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1m4xsfv3ysc84cwqxqqr61fs3d2w04f0q5xbdjijhczjixcxwh5i")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.25.0" +; ,go-google-golang-org-protobuf-1.25.0) +; ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" +; ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) +; ("go-github-com-google-go-cmp-0.5.0" +; ,go-github-com-google-go-cmp-0.5.0) +; ("go-github-com-golang-protobuf-1.4.2" +; ,go-github-com-golang-protobuf-1.4.2) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad" +; ,go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad) +; ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" +; ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-api-0.43.0 +; (package +; (name "go-google-golang-org-api") +; (version "0.43.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-api-go-client") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0wxxbihigjn49warampi7gqfslbnp9nrj5zmk8p3ssq429jpvsib")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/api")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.36.0" ,go-google-golang-org-grpc-1.36.0) +; ("go-google-golang-org-genproto-0.0.0-20210319143718-93e7006c17a6" +; ,go-google-golang-org-genproto-0.0.0-20210319143718-93e7006c17a6) +; ("go-google-golang-org-appengine-1.6.7" +; ,go-google-golang-org-appengine-1.6.7) +; ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) +; ("go-golang-org-x-sys-0.0.0-20210320140829-1e4c9ba3b0c4" +; ,go-golang-org-x-sys-0.0.0-20210320140829-1e4c9ba3b0c4) +; ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" +; ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) +; ("go-golang-org-x-oauth2-0.0.0-20210313182246-cd4f82c27b84" +; ,go-golang-org-x-oauth2-0.0.0-20210313182246-cd4f82c27b84) +; ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" +; ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) +; ("go-go-opencensus-io-0.23.0" ,go-go-opencensus-io-0.23.0) +; ("go-github-com-googleapis-gax-go-v2-2.0.5" +; ,go-github-com-googleapis-gax-go-v2-2.0.5) +; ("go-github-com-google-go-cmp-0.5.5" +; ,go-github-com-google-go-cmp-0.5.5) +; ("go-cloud-google-com-go-0.79.0" ,go-cloud-google-com-go-0.79.0))) +; (home-page "https://google.golang.org/api") +; (synopsis "Google APIs Client Library for Go") +; (description +; "Package api is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of +;sub-packages. +;") +; (license license:bsd-3))) +; +;(define-public go-cloud-google-com-go-0.81.0 +; (package +; (name "go-cloud-google-com-go") +; (version "0.81.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-cloud-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "15jgynqb5pbxqbj3a7ii970yn4srsw1dbxzxnhpkfkmplalpgyh3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "cloud.google.com/go")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.36.1" ,go-google-golang-org-grpc-1.36.1) +; ("go-google-golang-org-genproto-0.0.0-20210402141018-6c239bbf2bb1" +; ,go-google-golang-org-genproto-0.0.0-20210402141018-6c239bbf2bb1) +; ("go-google-golang-org-api-0.43.0" ,go-google-golang-org-api-0.43.0) +; ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) +; ("go-golang-org-x-text-0.3.5" ,go-golang-org-x-text-0.3.5) +; ("go-golang-org-x-oauth2-0.0.0-20210313182246-cd4f82c27b84" +; ,go-golang-org-x-oauth2-0.0.0-20210313182246-cd4f82c27b84) +; ("go-golang-org-x-net-0.0.0-20210316092652-d523dce5a7f4" +; ,go-golang-org-x-net-0.0.0-20210316092652-d523dce5a7f4) +; ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" +; ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) +; ("go-go-opencensus-io-0.23.0" ,go-go-opencensus-io-0.23.0) +; ("go-github-com-jstemmer-go-junit-report-0.9.1" +; ,go-github-com-jstemmer-go-junit-report-0.9.1) +; ("go-github-com-googleapis-gax-go-v2-2.0.5" +; ,go-github-com-googleapis-gax-go-v2-2.0.5) +; ("go-github-com-google-pprof-0.0.0-20210226084205-cbba55b83ad5" +; ,go-github-com-google-pprof-0.0.0-20210226084205-cbba55b83ad5) +; ("go-github-com-google-martian-v3-3.1.0" +; ,go-github-com-google-martian-v3-3.1.0) +; ("go-github-com-google-go-cmp-0.5.5" +; ,go-github-com-google-go-cmp-0.5.5) +; ("go-github-com-golang-protobuf-1.5.1" +; ,go-github-com-golang-protobuf-1.5.1) +; ("go-github-com-golang-mock-1.5.0" ,go-github-com-golang-mock-1.5.0) +; ("go-cloud-google-com-go-storage-1.10.0" +; ,go-cloud-google-com-go-storage-1.10.0))) +; (home-page "https://cloud.google.com/go") +; (synopsis "Google Cloud Client Libraries for Go") +; (description +; "Package cloud is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +;of sub-packages. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e +; (package +; (name "go-github-com-golang-groupcache") +; (version "0.0.0-20200121045136-8c9f03a8e57e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/groupcache") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0vjjr79r32icjzlb05wn02k59av7jx0rn1jijml8r4whlg7dnkfh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/groupcache")) +; (home-page "https://github.com/golang/groupcache") +; (synopsis "groupcache") +; (description +; "Package groupcache provides a data loading mechanism with caching +;and de-duplication that works across a set of peer processes. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-golang-protobuf-1.4.3 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.4.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1kf1d7xmyjvy0z6j5czp6nqyvj9zrk6liv6znif08927xqfrzyln")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.23.0" +; ,go-google-golang-org-protobuf-1.23.0) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0))) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-github-com-google-go-cmp-0.5.3 +; (package +; (name "go-github-com-google-go-cmp") +; (version "0.5.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/go-cmp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "011gdkmyk3w7qkcwljhqak4h5npn4n7fwgx1fwpyx9c7wizvgkm5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/go-cmp")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" +; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) +; (home-page "https://github.com/google/go-cmp") +; (synopsis "Package for equality of Go values") +; (description +; "This package is intended to be a more powerful and safer alternative to +;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") +; (license license:bsd-3))) +; +;(define-public go-github-com-stretchr-testify-1.6.1 +; (package +; (name "go-github-com-stretchr-testify") +; (version "1.6.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/testify") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1yhiqqzjvi63pf01rgzx68gqkkvjx03fvl5wk30br5l6s81s090l")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/testify")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" +; ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) +; ("go-github-com-stretchr-objx-0.1.0" +; ,go-github-com-stretchr-objx-0.1.0) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.0" +; ,go-github-com-davecgh-go-spew-1.1.0))) +; (home-page "https://github.com/stretchr/testify") +; (synopsis "Testify - Thou Shalt Write Tests") +; (description +; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20201110031124-69a78807bb2b") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "176z5k6jbhr9vf0am2avl1lyqwym3q0mri98yb8r572z33qmcw1d")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) +; ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" +; ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) +; ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" +; ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-grpc-1.33.2 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.33.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "03yz4nlf4kqbnpw48f0mvcb2f5zzy0vjd5i2iw0hrjspd0238fzk")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.25.0" +; ,go-google-golang-org-protobuf-1.25.0) +; ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" +; ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) +; ("go-github-com-google-go-cmp-0.5.0" +; ,go-github-com-google-go-cmp-0.5.0) +; ("go-github-com-golang-protobuf-1.4.1" +; ,go-github-com-golang-protobuf-1.4.1) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-envoyproxy-go-control-plane-0.9.4" +; ,go-github-com-envoyproxy-go-control-plane-0.9.4) +; ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" +; ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-go-opencensus-io-0.23.0 +; (package +; (name "go-go-opencensus-io") +; (version "0.23.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/census-instrumentation/opencensus-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0gw4f7inf8y2ik00yfb36xganiq9rl4w2d1a41bsjqsh83ajz2km")))) +; (build-system go-build-system) +; (arguments '(#:import-path "go.opencensus.io")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) +; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" +; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-google-go-cmp-0.5.3" +; ,go-github-com-google-go-cmp-0.5.3) +; ("go-github-com-golang-protobuf-1.4.3" +; ,go-github-com-golang-protobuf-1.4.3) +; ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" +; ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e))) +; (home-page "https://go.opencensus.io") +; (synopsis "OpenCensus Libraries for Go") +; (description "Package opencensus contains Go support for OpenCensus. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-golang-mock-1.4.4 +; (package +; (name "go-github-com-golang-mock") +; (version "1.4.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/mock") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1lj0dvd6div4jaq1s0afpwqaq9ah8cxhkq93wii2ably1xmp2l0a")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/mock")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262" +; ,go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262))) +; (home-page "https://github.com/golang/mock") +; (synopsis "gomock") +; (description +; "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It +;integrates well with Go's built-in @code{testing} package, but can be used in other +;contexts too.") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-tools-0.0.0-20200825202427-b303f430e36d +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20200825202427-b303f430e36d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0zzf6ifzjvkwin6m97jp2dndbfac0sbdr84ki79j9srhpqdigl75")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" +; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) +; ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" +; ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) +; ("go-golang-org-x-net-0.0.0-20200625001655-4c5254603344" +; ,go-golang-org-x-net-0.0.0-20200625001655-4c5254603344) +; ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) +; ("go-github-com-yuin-goldmark-1.1.32" +; ,go-github-com-yuin-goldmark-1.1.32))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20190628185345-da137c7871d7 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190628185345-da137c7871d7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1qsiyr3irmb6ii06hivm9p2c7wqyxczms1a9v1ss5698yjr3fg47")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-github-com-google-martian-v3-3.0.0 +; (package +; (name "go-github-com-google-martian-v3") +; (version "3.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/martian") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ngvs4l6a06s8scnliq9i5pwvwpzfpa5wf9skg0gcvysli1rm3fm")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/martian/v3")) +; (propagated-inputs +; `(("go-golang-org-x-net-0.0.0-20190628185345-da137c7871d7" +; ,go-golang-org-x-net-0.0.0-20190628185345-da137c7871d7))) +; (home-page "https://github.com/google/martian") +; (synopsis "Martian Proxy") +; (description +; "Package martian provides an HTTP/1.1 proxy with an API for configurable +;request and response modifiers. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-google-pprof-0.0.0-20200708004538-1a94d8640e99 +; (package +; (name "go-github-com-google-pprof") +; (version "0.0.0-20200708004538-1a94d8640e99") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/pprof") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0isfwwan9vimwsfjml0phwrqv6kb83mkmk063dcb81k09gzzs3wy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/pprof")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" +; ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) +; ("go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6" +; ,go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6) +; ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" +; ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) +; ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" +; ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) +; ("go-github-com-chzyer-logex-1.1.10" +; ,go-github-com-chzyer-logex-1.1.10))) +; (home-page "https://github.com/google/pprof") +; (synopsis "Introduction") +; (description +; "pprof is a tool for collection, manipulation and visualization +;of performance profiles. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-net-0.0.0-20200707034311-ab3426394381 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20200707034311-ab3426394381") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1wr7rnnqp210yykkypinb8ciszx28aq5a3l3dvsv6swzxxngs8zn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" +; ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) +; ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" +; ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20200729194436-6467de6f59a7 +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20200729194436-6467de6f59a7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "14zpkr5idlx2zbm5dp7gk4afppy7k3j4y68s1qvpgi70yazaxzkd")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" +; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) +; ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" +; ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) +; ("go-golang-org-x-net-0.0.0-20200625001655-4c5254603344" +; ,go-golang-org-x-net-0.0.0-20200625001655-4c5254603344) +; ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) +; ("go-github-com-yuin-goldmark-1.1.32" +; ,go-github-com-yuin-goldmark-1.1.32))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262 +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20190425150028-36563e24a262") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0lasi96f6a1h11gkm8kl33x03pmxp369wrqq2dg7x7xv9nq76d6g")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" +; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-text-0.0.0-20170915032832-14c0d48ead0c +; (package +; (name "go-golang-org-x-text") +; (version "0.0.0-20170915032832-14c0d48ead0c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/text") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0y0nrj4hw7vby6m3iqklbf4v7njqlsx7s4pwfkwmvh1ryn1kb7d6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/text")) +; (home-page "https://golang.org/x/text") +; (synopsis "Go Text") +; (description +; "text is a repository of text-related packages related to internationalization +;(i18n) and localization (l10n), such as character encodings, text +;transformations, and locale-specific text handling. +;") +; (license license:bsd-3))) +; +;(define-public go-rsc-io-sampler-1.3.0 +; (package +; (name "go-rsc-io-sampler") +; (version "1.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/rsc/sampler") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0byxk2ynba50py805kcvbvjzh59l1r308i1xgyzpw6lff4xx9xjh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "rsc.io/sampler")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.0.0-20170915032832-14c0d48ead0c" +; ,go-golang-org-x-text-0.0.0-20170915032832-14c0d48ead0c))) +; (home-page "https://rsc.io/sampler") +; (synopsis #f) +; (description "Package sampler shows simple texts. +;") +; (license license:bsd-3))) +; +;(define-public go-rsc-io-quote-v3-3.1.0 +; (package +; (name "go-rsc-io-quote-v3") +; (version "3.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/rsc/quote") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0nvv97hwwrl1mx5gzsbdm1ndnwpg3m7i2jb10ig9wily7zmvki0i")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "rsc.io/quote/v3" #:unpack-path "rsc.io/quote/v3")) +; (propagated-inputs `(("go-rsc-io-sampler-1.3.0" ,go-rsc-io-sampler-1.3.0))) +; (home-page "https://rsc.io/quote/v3") +; (synopsis #f) +; (description "Package quote collects pithy sayings. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-mock-1.4.3 +; (package +; (name "go-github-com-golang-mock") +; (version "1.4.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/mock") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1p37xnja1dgq5ykx24n7wincwz2gahjh71b95p8vpw7ss2g8j8wx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/mock")) +; (propagated-inputs +; `(("go-rsc-io-quote-v3-3.1.0" ,go-rsc-io-quote-v3-3.1.0) +; ("go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262" +; ,go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262))) +; (home-page "https://github.com/golang/mock") +; (synopsis "gomock") +; (description +; "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It +;integrates well with Go's built-in @code{testing} package, but can be used in other +;contexts too.") +; (license license:asl2.0))) +; +;(define-public go-github-com-golang-protobuf-1.3.5 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.3.5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1gkd1942vk9n8kfzdwy1iil6wgvlwjq7a3y5jc49ck4lz9rhmgkq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-github-com-chzyer-logex-1.1.10 +; (package +; (name "go-github-com-chzyer-logex") +; (version "1.1.10") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/chzyer/logex") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "08pbjj3wx9acavlwyr055isa8a5hnmllgdv5k6ra60l5y1brmlq4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/chzyer/logex")) +; (home-page "https://github.com/chzyer/logex") +; (synopsis #f) +; (description #f) +; (license #f))) +; +;(define-public go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e +; (package +; (name "go-github-com-chzyer-readline") +; (version "0.0.0-20180603132655-2972be24d48e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/chzyer/readline") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "104q8dazj8yf6b089jjr82fy9h1g80zyyzvp3g8b44a7d8ngjj6r")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/chzyer/readline")) +; (home-page "https://github.com/chzyer/readline") +; (synopsis "Guide") +; (description +; "Readline is a pure go implementation for GNU-Readline kind library. +;") +; (license license:expat))) +; +;(define-public go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1 +; (package +; (name "go-github-com-chzyer-test") +; (version "0.0.0-20180213035817-a1ea475d72b1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/chzyer/test") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0rns2aqk22i9xsgyap0pq8wi4cfaxsri4d9q6xxhhyma8jjsnj2k")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/chzyer/test")) +; (home-page "https://github.com/chzyer/test") +; (synopsis "test") +; (description #f) +; (license license:expat))) +; +;(define-public go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6 +; (package +; (name "go-github-com-ianlancetaylor-demangle") +; (version "0.0.0-20181102032728-5e5cf60278f6") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/ianlancetaylor/demangle") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1fhjk11cip9c3jyj1byz9z77n6n2rlxmyz0xjx1zpn1da3cvri75")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/ianlancetaylor/demangle")) +; (home-page "https://github.com/ianlancetaylor/demangle") +; (synopsis "github.com/ianlancetaylor/demangle") +; (description +; "Package demangle defines functions that demangle GCC/LLVM +;C++ and Rust symbol names. +;This package recognizes names that were mangled according to the C++ ABI +;defined at @url{http://codesourcery.com/cxx-abi/,http://codesourcery.com/cxx-abi/} and the Rust ABI +;defined at +;@url{https://rust-lang.github.io/rfcs/2603-rust-symbol-name-mangling-v0.html,https://rust-lang.github.io/rfcs/2603-rust-symbol-name-mangling-v0.html} +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20191204072324-ce4227a45e2e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1s43wvqfml6ml5ks7iv2bis9d664g77mq86v7mfmjhn56x856g35")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-google-pprof-0.0.0-20200229191704-1ebb73c60ed3 +; (package +; (name "go-github-com-google-pprof") +; (version "0.0.0-20200229191704-1ebb73c60ed3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/pprof") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1gdi9p4j1zfm5xlm488i5l0q3kk4q6hsmbmlk6p729i0di2n3ifa")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/pprof")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" +; ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) +; ("go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6" +; ,go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6) +; ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" +; ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) +; ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" +; ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) +; ("go-github-com-chzyer-logex-1.1.10" +; ,go-github-com-chzyer-logex-1.1.10))) +; (home-page "https://github.com/google/pprof") +; (synopsis "Introduction") +; (description +; "pprof is a tool for collection, manipulation and visualization +;of performance profiles. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-jstemmer-go-junit-report-0.9.1 +; (package +; (name "go-github-com-jstemmer-go-junit-report") +; (version "0.9.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/jstemmer/go-junit-report") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1knip80yir1cdsjlb3rzy0a4w3kl4ljpiciaz6hjzwqlfhnv7bkw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/jstemmer/go-junit-report")) +; (home-page "https://github.com/jstemmer/go-junit-report") +; (synopsis "go-junit-report") +; (description +; "Converts @code{go test} output to an xml report, suitable for applications that +;expect junit xml reports (e.g. @url{http://jenkins-ci.org,Jenkins}).") +; (license license:expat))) +; +;(define-public go-golang-org-x-net-0.0.0-20200324143707-d3edc9973b7e +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20200324143707-d3edc9973b7e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "12zbjwcsh9b0lwycqlkrnbyg5a6a9dzgj8hhgq399bdda5bd97y7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" +; ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-mock-1.2.0 +; (package +; (name "go-github-com-golang-mock") +; (version "1.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/mock") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "12ddj2g8ab87id6n2n67vnbhq6p8dvgsq1pzpqfriym4dk8w54fg")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/mock")) +; (home-page "https://github.com/golang/mock") +; (synopsis "gomock") +; (description +; "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It +;integrates well with Go's built-in @code{testing} package, but can be used in other +;contexts too.") +; (license license:asl2.0))) +; +;(define-public go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c +; (package +; (name "go-github-com-google-btree") +; (version "0.0.0-20180813153112-4030bb1f1f0c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/btree") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ba430m9fbnagacp57krgidsyrgp3ycw5r7dj71brgp5r52g82p6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/btree")) +; (home-page "https://github.com/google/btree") +; (synopsis "BTree implementation for Go") +; (description +; "Package btree implements in-memory B-Trees of arbitrary degree. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-google-martian-2.1.0+incompatible +; (package +; (name "go-github-com-google-martian") +; (version "2.1.0+incompatible") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/martian") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "197hil6vrjk50b9wvwyzf61csid83whsjj6ik8mc9r2lryxlyyrp")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/martian")) +; (home-page "https://github.com/google/martian") +; (synopsis "Martian Proxy") +; (description +; "Package martian provides an HTTP/1.1 proxy with an API for configurable +;request and response modifiers. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-google-pprof-0.0.0-20181206194817-3ea8567a2e57 +; (package +; (name "go-github-com-google-pprof") +; (version "0.0.0-20181206194817-3ea8567a2e57") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/pprof") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "09rhjn3ms0a72dw0yzbp237p7yhqma772zspddn6mgkh3gi3kn4c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/pprof")) +; (home-page "https://github.com/google/pprof") +; (synopsis "Introduction") +; (description +; "pprof is a tool for collection, manipulation and visualization +;of performance profiles. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-googleapis-gax-go-v2-2.0.4 +; (package +; (name "go-github-com-googleapis-gax-go-v2") +; (version "2.0.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/gax-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1iwnm6ky1x53lgs44mw3hpdkjzrm5qd0kfs50m0qcq2ml5m1cwdm")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/googleapis/gax-go/v2")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.19.0" +; ,go-google-golang-org-grpc-1.19.0))) +; (home-page "https://github.com/googleapis/gax-go") +; (synopsis #f) +; (description +; "Package gax contains a set of modules which aid the development of APIs +;for clients and servers based on gRPC and Google API conventions. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-jstemmer-go-junit-report-0.0.0-20190106144839-af01ea7f8024 +; (package +; (name "go-github-com-jstemmer-go-junit-report") +; (version "0.0.0-20190106144839-af01ea7f8024") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/jstemmer/go-junit-report") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1lp3n94ris12hac02wi31f3whs88lcrzwgdg43a5j6cafg9p1d0s")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/jstemmer/go-junit-report")) +; (home-page "https://github.com/jstemmer/go-junit-report") +; (synopsis "go-junit-report") +; (description +; "Converts @code{go test} output to an xml report, suitable for applications that +;expect junit xml reports (e.g. @url{http://jenkins-ci.org,Jenkins}).") +; (license license:expat))) +; +;(define-public go-golang-org-x-text-0.3.1-0.20180807135948-17ff2d5776d2 +; (package +; (name "go-golang-org-x-text") +; (version "0.3.1-0.20180807135948-17ff2d5776d2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/text") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1rrh2mnmyxr45nsvy42zq3w3ly6gw6rl993knwvf1w71kyv0jjnj")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/text")) +; (home-page "https://golang.org/x/text") +; (synopsis "Go Text") +; (description +; "text is a repository of text-related packages related to internationalization +;(i18n) and localization (l10n), such as character encodings, text +;transformations, and locale-specific text handling. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-time-0.0.0-20181108054448-85acf8d2951c +; (package +; (name "go-golang-org-x-time") +; (version "0.0.0-20181108054448-85acf8d2951c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/time") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0yqnxsrarjk4qkda8kcxzmk7y90kkkxzx9iwryzrk7bzs87ky3xc")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/time")) +; (home-page "https://golang.org/x/time") +; (synopsis "Go Time") +; (description "This repository provides supplementary Go time packages.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f +; (package +; (name "go-golang-org-x-lint") +; (version "0.0.0-20190301231843-5614ed5bae6f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/lint") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0fzn0zjv0x92xvfdq3a0v9w5sgkhr7hxkfy9zaqi8i57807z8bnx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/lint")) +; (home-page "https://golang.org/x/lint") +; (synopsis "Installation") +; (description "Package lint contains a linter for Go source code. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421 +; (package +; (name "go-golang-org-x-oauth2") +; (version "0.0.0-20190226205417-e64efc72b421") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/oauth2") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0djvwz2avx7knsjbl434vw1wqbrg53xp1kh599gfixn5icrggz4m")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/oauth2")) +; (propagated-inputs +; `(("go-google-golang-org-appengine-1.4.0" +; ,go-google-golang-org-appengine-1.4.0) +; ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" +; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) +; ("go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e" +; ,go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e) +; ("go-cloud-google-com-go-0.34.0" ,go-cloud-google-com-go-0.34.0))) +; (home-page "https://golang.org/x/oauth2") +; (synopsis "OAuth2 for Go") +; (description +; "Package oauth2 provides support for making +;OAuth2 authorized and authenticated HTTP requests, +;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +;It can additionally grant authorization with Bearer JWT. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138 +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20190312170243-e65039ee4138") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0c094599cf70wdrms49a3879qkq122pqlp2av444gs2pvc8apdcx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-api-0.4.0 +; (package +; (name "go-google-golang-org-api") +; (version "0.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-api-go-client") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1hzgrw5wasmcjlqpxsmryddzzw4cwyzf2vx14i9z51v1plwssijm")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/api")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" +; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) +; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) +; ("go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19" +; ,go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19) +; ("go-google-golang-org-appengine-1.4.0" +; ,go-google-golang-org-appengine-1.4.0) +; ("go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138" +; ,go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138) +; ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" +; ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) +; ("go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421" +; ,go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421) +; ("go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f" +; ,go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f) +; ("go-go-opencensus-io-0.21.0" ,go-go-opencensus-io-0.21.0) +; ("go-github-com-google-go-cmp-0.2.0" +; ,go-github-com-google-go-cmp-0.2.0))) +; (home-page "https://google.golang.org/api") +; (synopsis "Google APIs Client Library for Go") +; (description +; "Package api is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of +;sub-packages. +;") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20190418145605-e7d98fc518a7 +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20190418145605-e7d98fc518a7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1cnavkyawwvfc5yl097ygnfy1ac69v4zc02gdfnq1bvgcvgmvnbi")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" +; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) +; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) +; ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" +; ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) +; ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" +; ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) +; ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" +; ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd) +; ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" +; ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) +; ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" +; ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-honnef-co-go-tools-0.0.0-20190106161140-3f1c8253044a +; (package +; (name "go-honnef-co-go-tools") +; (version "0.0.0-20190106161140-3f1c8253044a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/dominikh/go-tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0d3vgh0fgfj1z7i648g1s6x2pwxd07sxfjwg1xn3yagr9h06jh3h")))) +; (build-system go-build-system) +; (arguments '(#:import-path "honnef.co/go/tools")) +; (home-page "https://honnef.co/go/tools") +; (synopsis "Documentation") +; (description +; "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, +;offers simplifications, and enforces style rules.") +; (license license:expat))) +; +;(define-public go-cloud-google-com-go-0.38.0 +; (package +; (name "go-cloud-google-com-go") +; (version "0.38.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-cloud-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0n6n13b7lri2fmc4bn4ifszyawj31dpbzvyv0xafsf81440z8cyh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "cloud.google.com/go")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190106161140-3f1c8253044a" +; ,go-honnef-co-go-tools-0.0.0-20190106161140-3f1c8253044a) +; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) +; ("go-google-golang-org-genproto-0.0.0-20190418145605-e7d98fc518a7" +; ,go-google-golang-org-genproto-0.0.0-20190418145605-e7d98fc518a7) +; ("go-google-golang-org-api-0.4.0" ,go-google-golang-org-api-0.4.0) +; ("go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138" +; ,go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138) +; ("go-golang-org-x-time-0.0.0-20181108054448-85acf8d2951c" +; ,go-golang-org-x-time-0.0.0-20181108054448-85acf8d2951c) +; ("go-golang-org-x-text-0.3.1-0.20180807135948-17ff2d5776d2" +; ,go-golang-org-x-text-0.3.1-0.20180807135948-17ff2d5776d2) +; ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" +; ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) +; ("go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421" +; ,go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421) +; ("go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f" +; ,go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f) +; ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" +; ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) +; ("go-go-opencensus-io-0.21.0" ,go-go-opencensus-io-0.21.0) +; ("go-github-com-jstemmer-go-junit-report-0.0.0-20190106144839-af01ea7f8024" +; ,go-github-com-jstemmer-go-junit-report-0.0.0-20190106144839-af01ea7f8024) +; ("go-github-com-googleapis-gax-go-v2-2.0.4" +; ,go-github-com-googleapis-gax-go-v2-2.0.4) +; ("go-github-com-google-pprof-0.0.0-20181206194817-3ea8567a2e57" +; ,go-github-com-google-pprof-0.0.0-20181206194817-3ea8567a2e57) +; ("go-github-com-google-martian-2.1.0+incompatible" +; ,go-github-com-google-martian-2.1.0+incompatible) +; ("go-github-com-google-go-cmp-0.2.0" +; ,go-github-com-google-go-cmp-0.2.0) +; ("go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c" +; ,go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0) +; ("go-github-com-golang-mock-1.2.0" ,go-github-com-golang-mock-1.2.0))) +; (home-page "https://cloud.google.com/go") +; (synopsis "Google Cloud Client Libraries for Go") +; (description +; "Package cloud is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +;of sub-packages. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-hashicorp-golang-lru-0.5.1 +; (package +; (name "go-github-com-hashicorp-golang-lru") +; (version "0.5.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/golang-lru") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "13f870cvk161bzjj6x41l45r5x9i1z9r2ymwmvm7768kg08zznpy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hashicorp/golang-lru")) +; (home-page "https://github.com/hashicorp/golang-lru") +; (synopsis "golang-lru") +; (description +; "Package lru provides three different LRU caches of varying sophistication. +;") +; (license license:mpl2.0))) +; +;(define-public go-github-com-hashicorp-golang-lru-0.5.0 +; (package +; (name "go-github-com-hashicorp-golang-lru") +; (version "0.5.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/golang-lru") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "12k2cp2k615fjvfa5hyb9k2alian77wivds8s65diwshwv41939f")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hashicorp/golang-lru")) +; (home-page "https://github.com/hashicorp/golang-lru") +; (synopsis "golang-lru") +; (description +; "Package lru provides three different LRU caches of varying sophistication. +;") +; (license license:mpl2.0))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19 +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20190307195333-5fe7a883aa19") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0qjkwig0r42q0j2qv57s4ahsgmmp41dz3ih3rnaqg0619n5w7lbs")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" +; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) +; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) +; ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" +; ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) +; ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" +; ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) +; ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" +; ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd) +; ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" +; ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) +; ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" +; ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-go-opencensus-io-0.21.0 +; (package +; (name "go-go-opencensus-io") +; (version "0.21.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/census-instrumentation/opencensus-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "14s0a12xdzjvad0dgksgv8m3hh7nc585abvjkvyk6r67a29lxj6x")))) +; (build-system go-build-system) +; (arguments '(#:import-path "go.opencensus.io")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) +; ("go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19" +; ,go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-github-com-hashicorp-golang-lru-0.5.0" +; ,go-github-com-hashicorp-golang-lru-0.5.0) +; ("go-github-com-google-go-cmp-0.2.0" +; ,go-github-com-google-go-cmp-0.2.0) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0))) +; (home-page "https://go.opencensus.io") +; (synopsis "OpenCensus Libraries for Go") +; (description "Package opencensus contains Go support for OpenCensus. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422 +; (package +; (name "go-golang-org-x-lint") +; (version "0.0.0-20190409202823-959b441ac422") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/lint") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1mgcv5f00pkzsbwnq2y7vqvd1b4lr5a3s47cphh2qv4indfk7pck")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/lint")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" +; ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd))) +; (home-page "https://golang.org/x/lint") +; (synopsis "Installation") +; (description "Package lint contains a linter for Go source code. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20190503192946-f4e77d36d62c +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190503192946-f4e77d36d62c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0avjnglqqg9ya0cbhp23m4namykii219kxjywxn4cd7pfcc5arha")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45 +; (package +; (name "go-golang-org-x-oauth2") +; (version "0.0.0-20190604053449-0f29369cfe45") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/oauth2") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "06jwpvx0x2gjn2y959drbcir5kd7vg87k0r1216abk6rrdzzrzi2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/oauth2")) +; (propagated-inputs +; `(("go-google-golang-org-appengine-1.4.0" +; ,go-google-golang-org-appengine-1.4.0) +; ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" +; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) +; ("go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e" +; ,go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e) +; ("go-cloud-google-com-go-0.34.0" ,go-cloud-google-com-go-0.34.0))) +; (home-page "https://golang.org/x/oauth2") +; (synopsis "OAuth2 for Go") +; (description +; "Package oauth2 provides support for making +;OAuth2 authorized and authenticated HTTP requests, +;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +;It can additionally grant authorization with Bearer JWT. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190507160741-ecd444e8653b") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1vhld4948mzfnlgf20id29mv1bwpk9a3xlbw1mbjzxzxxdv1jds2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-appengine-1.5.0 +; (package +; (name "go-google-golang-org-appengine") +; (version "1.5.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/appengine") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0l7mkdnwhidv8m686x432vmx8z5nqcrr9f46ddgvrxbh4wvyfcll")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/appengine")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225" +; ,go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0))) +; (home-page "https://google.golang.org/appengine") +; (synopsis "Go App Engine packages") +; (description +; "Package appengine provides basic functionality for Google App Engine. +;") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-api-0.20.0 +; (package +; (name "go-google-golang-org-api") +; (version "0.20.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-api-go-client") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "13syr1x33k6mrn5w6l4sgdbzn368w3m60vf6kk2j10fwa45125rg")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/api")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" +; ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) +; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) +; ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" +; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) +; ("go-google-golang-org-appengine-1.5.0" +; ,go-google-golang-org-appengine-1.5.0) +; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" +; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) +; ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) +; ("go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b" +; ,go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b) +; ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" +; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) +; ("go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45" +; ,go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45) +; ("go-golang-org-x-net-0.0.0-20190503192946-f4e77d36d62c" +; ,go-golang-org-x-net-0.0.0-20190503192946-f4e77d36d62c) +; ("go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422" +; ,go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422) +; ("go-go-opencensus-io-0.21.0" ,go-go-opencensus-io-0.21.0) +; ("go-github-com-hashicorp-golang-lru-0.5.1" +; ,go-github-com-hashicorp-golang-lru-0.5.1) +; ("go-github-com-googleapis-gax-go-v2-2.0.5" +; ,go-github-com-googleapis-gax-go-v2-2.0.5) +; ("go-github-com-google-go-cmp-0.3.0" +; ,go-github-com-google-go-cmp-0.3.0) +; ("go-cloud-google-com-go-0.38.0" ,go-cloud-google-com-go-0.38.0))) +; (home-page "https://google.golang.org/api") +; (synopsis "Google APIs Client Library for Go") +; (description +; "Package api is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of +;sub-packages. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-google-renameio-0.1.0 +; (package +; (name "go-github-com-google-renameio") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/renameio") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ki2x5a9nrj17sn092d6n4zr29lfg5ydv4xz5cp58z6cw8ip43jx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/renameio")) +; (home-page "https://github.com/google/renameio") +; (synopsis "Atomicity vs durability") +; (description +; "Package renameio provides a way to atomically create or replace a file or +;symbolic link. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-kisielk-gotool-1.0.0 +; (package +; (name "go-github-com-kisielk-gotool") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kisielk/gotool") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "14af2pa0ssyp8bp2mvdw184s5wcysk6akil3wzxmr05wwy951iwn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kisielk/gotool")) +; (home-page "https://github.com/kisielk/gotool") +; (synopsis "gotool") +; (description +; "Package gotool contains utility functions used to implement the standard +;\"cmd/go\" tool, provided as a convenience to developers who want to write +;tools with similar semantics. +;") +; (license license:expat))) +; +;(define-public go-github-com-kr-pty-1.1.1 +; (package +; (name "go-github-com-kr-pty") +; (version "1.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kr/pty") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0383f0mb9kqjvncqrfpidsf8y6ns5zlrc91c6a74xpyxjwvzl2y6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kr/pty")) +; (home-page "https://github.com/kr/pty") +; (synopsis "pty") +; (description +; "Package pty is a wrapper for github.com/creack/pty, which provides +;functions for working with Unix terminals. +;") +; (license license:expat))) +; +;(define-public go-github-com-kr-text-0.1.0 +; (package +; (name "go-github-com-kr-text") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kr/text") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1gm5bsl01apvc84bw06hasawyqm4q84vx1pm32wr9jnd7a8vjgj1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kr/text")) +; (propagated-inputs +; `(("go-github-com-kr-pty-1.1.1" ,go-github-com-kr-pty-1.1.1))) +; (home-page "https://github.com/kr/text") +; (synopsis #f) +; (description +; "Package text provides rudimentary functions for manipulating text in +;paragraphs. +;") +; (license license:expat))) +; +;(define-public go-github-com-kr-pretty-0.1.0 +; (package +; (name "go-github-com-kr-pretty") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kr/pretty") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "18m4pwg2abd0j9cn5v3k2ksk9ig4vlwxmlw9rrglanziv9l967qp")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kr/pretty")) +; (propagated-inputs +; `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) +; (home-page "https://github.com/kr/pretty") +; (synopsis #f) +; (description +; "Package pretty provides pretty-printing for Go values. This is +;useful during debugging, to avoid wrapping long output lines in +;the terminal. +;") +; (license license:expat))) +; +;(define-public go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127 +; (package +; (name "go-gopkg-in-check-v1") +; (version "1.0.0-20180628173108-788fd7840127") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/check.v1") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0v3bim0j375z81zrpr5qv42knqs0y2qv2vkjiqi5axvb78slki1a")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) +; (home-page "https://gopkg.in/check.v1") +; (synopsis "Instructions") +; (description +; "Package check is a rich testing extension for Go's testing package. +;") +; (license license:bsd-2))) +; +;(define-public go-gopkg-in-errgo-v2-2.1.0 +; (package +; (name "go-gopkg-in-errgo-v2") +; (version "2.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/errgo.v2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "065mbihiy7q67wnql0bzl9y1kkvck5ivra68254zbih52jxwrgr2")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/errgo.v2" #:unpack-path "gopkg.in/errgo.v2")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" +; ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) +; ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0))) +; (home-page "https://gopkg.in/errgo.v2") +; (synopsis #f) +; (description +; "Package errgo provides some primitives for error creation and handling.") +; (license license:bsd-3))) +; +;(define-public go-github-com-rogpeppe-go-internal-1.3.0 +; (package +; (name "go-github-com-rogpeppe-go-internal") +; (version "1.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/rogpeppe/go-internal") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0mcdh1licgnnahwml9y2iq6xy5x9xmjw5frcnds2s3wpjyqrl216")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/rogpeppe/go-internal")) +; (propagated-inputs +; `(("go-gopkg-in-errgo-v2-2.1.0" ,go-gopkg-in-errgo-v2-2.1.0))) +; (home-page "https://github.com/rogpeppe/go-internal") +; (synopsis #f) +; (description +; "This repository factors out an opinionated selection of internal packages and functionality from the Go standard +;library. Currently this consists mostly of packages and testing code from within the Go tool implementation.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20190510104115-cbcb75029529 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20190510104115-cbcb75029529") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "12831ga1gq04a3jbbcmww7kaqfdfgp7cdv2fj9aqidz8h52ajdmh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" +; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) +; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" +; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-mod-0.0.0-20190513183733-4bf6d317e70e +; (package +; (name "go-golang-org-x-mod") +; (version "0.0.0-20190513183733-4bf6d317e70e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/mod") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19lg1ly3j31anx92p0hynic1gjk417wwxphfdrb2cq1c19kj3r17")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/mod")) +; (propagated-inputs +; `(("go-golang-org-x-crypto-0.0.0-20190510104115-cbcb75029529" +; ,go-golang-org-x-crypto-0.0.0-20190510104115-cbcb75029529))) +; (home-page "https://golang.org/x/mod") +; (synopsis "mod") +; (description +; "This repository holds packages for writing tools +;that work directly with Go module mechanics. +;That is, it is for direct manipulation of Go modules themselves.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20191130070609-6e064ea0cf2d +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20191130070609-6e064ea0cf2d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1nbki367xspsa37j6276f5q2gv31vfjpb52axn3p3ymz548my75d")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7" +; ,go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7) +; ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" +; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) +; ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" +; ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-honnef-co-go-tools-0.0.1-2020.1.3 +; (package +; (name "go-honnef-co-go-tools") +; (version "0.0.1-2020.1.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/dominikh/go-tools") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0pvi1mzhy6zgx4zfgdypbl4zhvgg11hl5qv7blf2qs0a96j2djhf")))) +; (build-system go-build-system) +; (arguments '(#:import-path "honnef.co/go/tools")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20191130070609-6e064ea0cf2d" +; ,go-golang-org-x-tools-0.0.0-20191130070609-6e064ea0cf2d) +; ("go-golang-org-x-mod-0.0.0-20190513183733-4bf6d317e70e" +; ,go-golang-org-x-mod-0.0.0-20190513183733-4bf6d317e70e) +; ("go-github-com-rogpeppe-go-internal-1.3.0" +; ,go-github-com-rogpeppe-go-internal-1.3.0) +; ("go-github-com-kisielk-gotool-1.0.0" +; ,go-github-com-kisielk-gotool-1.0.0) +; ("go-github-com-google-renameio-0.1.0" +; ,go-github-com-google-renameio-0.1.0) +; ("go-github-com-burntsushi-toml-0.3.1" +; ,go-github-com-burntsushi-toml-0.3.1))) +; (home-page "https://honnef.co/go/tools") +; (synopsis "Documentation") +; (description +; "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, +;offers simplifications, and enforces style rules.") +; (license license:expat))) +; +;(define-public go-cloud-google-com-go-0.56.0 +; (package +; (name "go-cloud-google-com-go") +; (version "0.56.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-cloud-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1bpx84q7byxr5rp197qcg3pl56acs8v1q555frxgcqygxwjacszf")))) +; (build-system go-build-system) +; (arguments '(#:import-path "cloud.google.com/go")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.1-2020.1.3" +; ,go-honnef-co-go-tools-0.0.1-2020.1.3) +; ("go-google-golang-org-grpc-1.28.0" ,go-google-golang-org-grpc-1.28.0) +; ("go-google-golang-org-genproto-0.0.0-20200331122359-1ee6d9798940" +; ,go-google-golang-org-genproto-0.0.0-20200331122359-1ee6d9798940) +; ("go-google-golang-org-api-0.20.0" ,go-google-golang-org-api-0.20.0) +; ("go-golang-org-x-tools-0.0.0-20200331025713-a30bf2db82d4" +; ,go-golang-org-x-tools-0.0.0-20200331025713-a30bf2db82d4) +; ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) +; ("go-golang-org-x-sys-0.0.0-20200331124033-c3d80250170d" +; ,go-golang-org-x-sys-0.0.0-20200331124033-c3d80250170d) +; ("go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a" +; ,go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a) +; ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" +; ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) +; ("go-golang-org-x-net-0.0.0-20200324143707-d3edc9973b7e" +; ,go-golang-org-x-net-0.0.0-20200324143707-d3edc9973b7e) +; ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" +; ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) +; ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) +; ("go-github-com-jstemmer-go-junit-report-0.9.1" +; ,go-github-com-jstemmer-go-junit-report-0.9.1) +; ("go-github-com-googleapis-gax-go-v2-2.0.5" +; ,go-github-com-googleapis-gax-go-v2-2.0.5) +; ("go-github-com-google-pprof-0.0.0-20200229191704-1ebb73c60ed3" +; ,go-github-com-google-pprof-0.0.0-20200229191704-1ebb73c60ed3) +; ("go-github-com-google-martian-2.1.0+incompatible" +; ,go-github-com-google-martian-2.1.0+incompatible) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.3.5" +; ,go-github-com-golang-protobuf-1.3.5) +; ("go-github-com-golang-mock-1.4.3" ,go-github-com-golang-mock-1.4.3) +; ("go-cloud-google-com-go-storage-1.6.0" +; ,go-cloud-google-com-go-storage-1.6.0) +; ("go-cloud-google-com-go-pubsub-1.2.0" +; ,go-cloud-google-com-go-pubsub-1.2.0) +; ("go-cloud-google-com-go-datastore-1.1.0" +; ,go-cloud-google-com-go-datastore-1.1.0) +; ("go-cloud-google-com-go-bigquery-1.4.0" +; ,go-cloud-google-com-go-bigquery-1.4.0))) +; (home-page "https://cloud.google.com/go") +; (synopsis "Google Cloud Client Libraries for Go") +; (description +; "Package cloud is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +;of sub-packages. +;") +; (license license:asl2.0))) +; +;(define-public go-go-opencensus-io-0.22.3 +; (package +; (name "go-go-opencensus-io") +; (version "0.22.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/census-instrumentation/opencensus-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0xj16iq5jp26hi2py7lsd8cvqh651fgn39y05gzvjdi88d9xd3nw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "go.opencensus.io")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.20.1" ,go-google-golang-org-grpc-1.20.1) +; ("go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb" +; ,go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb) +; ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) +; ("go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd" +; ,go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd) +; ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" +; ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) +; ("go-github-com-stretchr-testify-1.4.0" +; ,go-github-com-stretchr-testify-1.4.0) +; ("go-github-com-google-go-cmp-0.3.0" +; ,go-github-com-google-go-cmp-0.3.0) +; ("go-github-com-golang-protobuf-1.3.1" +; ,go-github-com-golang-protobuf-1.3.1) +; ("go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6" +; ,go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6))) +; (home-page "https://go.opencensus.io") +; (synopsis "OpenCensus Libraries for Go") +; (description "Package opencensus contains Go support for OpenCensus. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a +; (package +; (name "go-golang-org-x-sync") +; (version "0.0.0-20200317015054-43a5402ce75a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sync") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0j6zrrb81qjr1926kkwmn0di9a0jn8qyjd9dw614rfkihxgq1vsm")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sync")) +; (home-page "https://golang.org/x/sync") +; (synopsis "Go Sync") +; (description +; "This repository provides Go concurrency primitives in addition to the +;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20200331124033-c3d80250170d +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20200331124033-c3d80250170d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1nswjhkg7yixla0b3d8xwzf94rawwyjrxipay3ffdvm426n0ld42")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-yuin-goldmark-1.1.25 +; (package +; (name "go-github-com-yuin-goldmark") +; (version "1.1.25") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/yuin/goldmark") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0cr3mk8pr7vsyisgrvln5ailnnn9xhardcy8mkshybk5c3n1kw5k")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/yuin/goldmark")) +; (home-page "https://github.com/yuin/goldmark") +; (synopsis "goldmark") +; (description +; "Package goldmark implements functions to convert markdown text to a desired format. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-mod-0.2.0 +; (package +; (name "go-golang-org-x-mod") +; (version "0.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/mod") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1fp6885dclq77mh73v7i54v2b9llpv4di193zc8vmsbbkkc483cl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/mod")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" +; ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) +; ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" +; ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) +; ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" +; ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) +; (home-page "https://golang.org/x/mod") +; (synopsis "mod") +; (description +; "This repository holds packages for writing tools +;that work directly with Go module mechanics. +;That is, it is for direct manipulation of Go modules themselves.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20200226121028-0de0cce0169b") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1db7s5kbzyh2zd5lpv05n7hp8wbwdvgk0wpiwrlnig94mkr0y5aq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e +; (package +; (name "go-golang-org-x-sync") +; (version "0.0.0-20190911185100-cd5d95a43a6e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sync") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1nqkyz2y1qvqcma52ijh02s8aiqmkfb95j08f6zcjhbga3ds6hds")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sync")) +; (home-page "https://golang.org/x/sync") +; (synopsis "Go Sync") +; (description +; "This repository provides Go concurrency primitives in addition to the +;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20200331025713-a30bf2db82d4 +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20200331025713-a30bf2db82d4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1rb488ydwi24zmd1zvsv8k8srs3q6xnqqfdar538hssqgljyvp7l")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" +; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) +; ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" +; ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) +; ("go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b" +; ,go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b) +; ("go-golang-org-x-mod-0.2.0" ,go-golang-org-x-mod-0.2.0) +; ("go-github-com-yuin-goldmark-1.1.25" +; ,go-github-com-yuin-goldmark-1.1.25))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-appengine-1.6.5 +; (package +; (name "go-google-golang-org-appengine") +; (version "1.6.5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/appengine") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "05hbq4cs7bqw0zl17bx8rzdkszid3nyl92100scg3jjrg70dhm7w")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/appengine")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) +; ("go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65" +; ,go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65) +; ("go-github-com-golang-protobuf-1.3.1" +; ,go-github-com-golang-protobuf-1.3.1))) +; (home-page "https://google.golang.org/appengine") +; (synopsis "Go App Engine packages") +; (description +; "Package appengine provides basic functionality for Google App Engine. +;") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20200331122359-1ee6d9798940 +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20200331122359-1ee6d9798940") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1zsp55d7xjc0b3yw5jjpvbsc0gkji1c1j2vxmcwm89dh26rz4jwd")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" +; ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) +; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) +; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" +; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-github-com-golang-protobuf-1.3.3" +; ,go-github-com-golang-protobuf-1.3.3))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-grpc-1.28.0 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.28.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1m36rg3w2mf4r3383yf0r1pjrz890mdw506h1lpm6bkc8w3kyqz3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" +; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-github-com-google-go-cmp-0.2.0" +; ,go-github-com-google-go-cmp-0.2.0) +; ("go-github-com-golang-protobuf-1.3.3" +; ,go-github-com-golang-protobuf-1.3.3) +; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" +; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) +; ("go-github-com-envoyproxy-go-control-plane-0.9.4" +; ,go-github-com-envoyproxy-go-control-plane-0.9.4))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-api-0.29.0 +; (package +; (name "go-google-golang-org-api") +; (version "0.29.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-api-go-client") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1y6izqcc6krill33pb57fbgbs7ni3jxyf3knm5jkl4qydsj9303h")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/api")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.28.0" ,go-google-golang-org-grpc-1.28.0) +; ("go-google-golang-org-genproto-0.0.0-20200331122359-1ee6d9798940" +; ,go-google-golang-org-genproto-0.0.0-20200331122359-1ee6d9798940) +; ("go-google-golang-org-appengine-1.6.5" +; ,go-google-golang-org-appengine-1.6.5) +; ("go-golang-org-x-tools-0.0.0-20200331025713-a30bf2db82d4" +; ,go-golang-org-x-tools-0.0.0-20200331025713-a30bf2db82d4) +; ("go-golang-org-x-sys-0.0.0-20200331124033-c3d80250170d" +; ,go-golang-org-x-sys-0.0.0-20200331124033-c3d80250170d) +; ("go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a" +; ,go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a) +; ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" +; ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) +; ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" +; ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) +; ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) +; ("go-github-com-googleapis-gax-go-v2-2.0.5" +; ,go-github-com-googleapis-gax-go-v2-2.0.5) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-cloud-google-com-go-0.56.0" ,go-cloud-google-com-go-0.56.0))) +; (home-page "https://google.golang.org/api") +; (synopsis "Google APIs Client Library for Go") +; (description +; "Package api is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of +;sub-packages. +;") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20200729003335-053ba62fc06f +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20200729003335-053ba62fc06f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1h34qgr4lqy1l0niay3gzqh6pc63y2xh1mmp8757y8jsrdz1s5fv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.24.0" +; ,go-google-golang-org-protobuf-1.24.0) +; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) +; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" +; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-github-com-golang-protobuf-1.4.1" +; ,go-github-com-golang-protobuf-1.4.1))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-grpc-1.30.0 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.30.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "05pb9xrxd7kpbi8zzby90f87b6sxq65nmpgqx5h3255whmmpzbi9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" +; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.3.3" +; ,go-github-com-golang-protobuf-1.3.3) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-envoyproxy-go-control-plane-0.9.4" +; ,go-github-com-envoyproxy-go-control-plane-0.9.4) +; ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" +; ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-cloud-google-com-go-0.62.0 +; (package +; (name "go-cloud-google-com-go") +; (version "0.62.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-cloud-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "00x1nlq4fvvxrwx24firscav511qwck3zl6ghs9p6zzzixla8r5h")))) +; (build-system go-build-system) +; (arguments '(#:import-path "cloud.google.com/go")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.25.0" +; ,go-google-golang-org-protobuf-1.25.0) +; ("go-google-golang-org-grpc-1.30.0" ,go-google-golang-org-grpc-1.30.0) +; ("go-google-golang-org-genproto-0.0.0-20200729003335-053ba62fc06f" +; ,go-google-golang-org-genproto-0.0.0-20200729003335-053ba62fc06f) +; ("go-google-golang-org-api-0.29.0" ,go-google-golang-org-api-0.29.0) +; ("go-golang-org-x-tools-0.0.0-20200729194436-6467de6f59a7" +; ,go-golang-org-x-tools-0.0.0-20200729194436-6467de6f59a7) +; ("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) +; ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" +; ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) +; ("go-golang-org-x-net-0.0.0-20200707034311-ab3426394381" +; ,go-golang-org-x-net-0.0.0-20200707034311-ab3426394381) +; ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" +; ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) +; ("go-go-opencensus-io-0.22.4" ,go-go-opencensus-io-0.22.4) +; ("go-github-com-jstemmer-go-junit-report-0.9.1" +; ,go-github-com-jstemmer-go-junit-report-0.9.1) +; ("go-github-com-googleapis-gax-go-v2-2.0.5" +; ,go-github-com-googleapis-gax-go-v2-2.0.5) +; ("go-github-com-google-pprof-0.0.0-20200708004538-1a94d8640e99" +; ,go-github-com-google-pprof-0.0.0-20200708004538-1a94d8640e99) +; ("go-github-com-google-martian-v3-3.0.0" +; ,go-github-com-google-martian-v3-3.0.0) +; ("go-github-com-google-go-cmp-0.5.1" +; ,go-github-com-google-go-cmp-0.5.1) +; ("go-github-com-golang-protobuf-1.4.2" +; ,go-github-com-golang-protobuf-1.4.2) +; ("go-github-com-golang-mock-1.4.3" ,go-github-com-golang-mock-1.4.3) +; ("go-cloud-google-com-go-storage-1.10.0" +; ,go-cloud-google-com-go-storage-1.10.0))) +; (home-page "https://cloud.google.com/go") +; (synopsis "Google Cloud Client Libraries for Go") +; (description +; "Package cloud is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +;of sub-packages. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-google-go-cmp-0.5.1 +; (package +; (name "go-github-com-google-go-cmp") +; (version "0.5.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/go-cmp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1wjdid59brciv09agxgmqac5k9ywg63nhzb0yi9anmqpl38gps0p")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/go-cmp")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" +; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) +; (home-page "https://github.com/google/go-cmp") +; (synopsis "Package for equality of Go values") +; (description +; "This package is intended to be a more powerful and safer alternative to +;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") +; (license license:bsd-3))) +; +;(define-public go-github-com-googleapis-gax-go-v2-2.0.5 +; (package +; (name "go-github-com-googleapis-gax-go-v2") +; (version "2.0.5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/gax-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1lxawwngv6miaqd25s3ba0didfzylbwisd2nz7r4gmbmin6jsjrx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/googleapis/gax-go/v2")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.19.0" +; ,go-google-golang-org-grpc-1.19.0))) +; (home-page "https://github.com/googleapis/gax-go") +; (synopsis #f) +; (description +; "Package gax contains a set of modules which aid the development of APIs +;for clients and servers based on gRPC and Google API conventions. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6 +; (package +; (name "go-github-com-golang-groupcache") +; (version "0.0.0-20190702054246-869f871628b6") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/groupcache") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0r4nk8129bvx50qb4xzjaay39b2h6k7cbdqqzdlanmc82ygczsbw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/groupcache")) +; (home-page "https://github.com/golang/groupcache") +; (synopsis "groupcache") +; (description +; "Package groupcache provides a data loading mechanism with caching +;and de-duplication that works across a set of peer processes. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190502145724-3ef323f4f1fd") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "15iw4gjvrnrx98rlny1qcaprp3577rh2b77byb38dr6m3q42rvc6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6 +; (package +; (name "go-golang-org-x-sync") +; (version "0.0.0-20190227155943-e225da77a7e6") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sync") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0bh3583smcfw6jw3w6lp0za93rz7hpxfdz8vhxng75b7a6vdlw4p")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sync")) +; (home-page "https://golang.org/x/sync") +; (synopsis "Go Sync") +; (description +; "This repository provides Go concurrency primitives in addition to the +;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20190425155659-357c62f0e4bb") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1h1a0wys83cc86s4w2hqmz78ixijw8f7qchmiwdv5xjvpg0i27c2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" +; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) +; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) +; ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" +; ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) +; ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" +; ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) +; ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" +; ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd) +; ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" +; ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) +; ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" +; ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-grpc-1.20.1 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.20.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0rj3fs6jillapiwnpkfn3v2jbl7a3zsb0lys4srswl26hjijviqq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" +; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) +; ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" +; ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) +; ("go-google-golang-org-appengine-1.1.0" +; ,go-google-golang-org-appengine-1.1.0) +; ("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" +; ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" +; ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0) +; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-client9-misspell-0.3.4" +; ,go-github-com-client9-misspell-0.3.4) +; ("go-github-com-burntsushi-toml-0.3.1" +; ,go-github-com-burntsushi-toml-0.3.1) +; ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-go-opencensus-io-0.22.4 +; (package +; (name "go-go-opencensus-io") +; (version "0.22.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/census-instrumentation/opencensus-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "10skbvs4yxjm3z10yfg5cj2mdzjsna87qk1icp9xv0iwp8wzq6h0")))) +; (build-system go-build-system) +; (arguments '(#:import-path "go.opencensus.io")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.20.1" ,go-google-golang-org-grpc-1.20.1) +; ("go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb" +; ,go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb) +; ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) +; ("go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd" +; ,go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd) +; ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" +; ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) +; ("go-github-com-stretchr-testify-1.4.0" +; ,go-github-com-stretchr-testify-1.4.0) +; ("go-github-com-google-go-cmp-0.3.0" +; ,go-github-com-google-go-cmp-0.3.0) +; ("go-github-com-golang-protobuf-1.3.1" +; ,go-github-com-golang-protobuf-1.3.1) +; ("go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6" +; ,go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6))) +; (home-page "https://go.opencensus.io") +; (synopsis "OpenCensus Libraries for Go") +; (description "Package opencensus contains Go support for OpenCensus. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b +; (package +; (name "go-golang-org-x-lint") +; (version "0.0.0-20200302205851-738671d3881b") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/lint") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0jkiz4py59jjnkyxbxifpf7bsar11lbgmj5jiq2kic5k03shkn9c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/lint")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7" +; ,go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7))) +; (home-page "https://golang.org/x/lint") +; (synopsis "Installation") +; (description "Package lint contains a linter for Go source code. +;") +; (license license:bsd-3))) +; +;(define-public go-cloud-google-com-go-0.34.0 +; (package +; (name "go-cloud-google-com-go") +; (version "0.34.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-cloud-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1kclgclwar3r37zbvb9gg3qxbgzkb50zk3s9778zlh2773qikmai")))) +; (build-system go-build-system) +; (arguments '(#:import-path "cloud.google.com/go")) +; (home-page "https://cloud.google.com/go") +; (synopsis "Google Cloud Client Libraries for Go") +; (description +; "Package cloud is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +;of sub-packages. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190108225652-1e06a53dbb7e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0lpqqvdccby48nixihvmn8ig1z48b950m1bxfqxn78air308qc3j")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4 +; (package +; (name "go-golang-org-x-sync") +; (version "0.0.0-20181221193216-37e7f081c4d4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sync") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1bb0mw6ckb1k7z8v3iil2qlqwfj408fvvp8m1cik2b46p7snyjhm")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sync")) +; (home-page "https://golang.org/x/sync") +; (synopsis "Go Sync") +; (description +; "This repository provides Go concurrency primitives in addition to the +;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d +; (package +; (name "go-golang-org-x-oauth2") +; (version "0.0.0-20200107190931-bf48bf16ab8d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/oauth2") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1sirdib60zwmh93kf9qrx51r8544k1p9rs5mk0797wibz3m4mrdg")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/oauth2")) +; (propagated-inputs +; `(("go-google-golang-org-appengine-1.4.0" +; ,go-google-golang-org-appengine-1.4.0) +; ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" +; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) +; ("go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e" +; ,go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e) +; ("go-cloud-google-com-go-0.34.0" ,go-cloud-google-com-go-0.34.0))) +; (home-page "https://golang.org/x/oauth2") +; (synopsis "OAuth2 for Go") +; (description +; "Package oauth2 provides support for making +;OAuth2 authorized and authenticated HTTP requests, +;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +;It can additionally grant authorization with Bearer JWT. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20200803210538-64077c9b5642 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20200803210538-64077c9b5642") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1pdrkim9v0wbxipl586d29vz4ci9xib0f02g6yv7c0nang627pag")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-yuin-goldmark-1.1.32 +; (package +; (name "go-github-com-yuin-goldmark") +; (version "1.1.32") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/yuin/goldmark") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "03i9yq6n3yvn5v70xi6x3pn49ndy8zm4217ihwwhlw2nkwhny7a5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/yuin/goldmark")) +; (home-page "https://github.com/yuin/goldmark") +; (synopsis "goldmark") +; (description +; "Package goldmark implements functions to convert markdown text to a desired format. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-net-0.0.0-20200625001655-4c5254603344 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20200625001655-4c5254603344") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1da0a1m488d95vggpi52dkag98n5671ml6sn80nwv6lgbmdx8qbq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" +; ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) +; ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" +; ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208 +; (package +; (name "go-golang-org-x-sync") +; (version "0.0.0-20200625203802-6e8e738ad208") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sync") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1avk27pszd5l5df6ff7j78wgla46ir1hhy2jwfl9a3c0ys602yx9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sync")) +; (home-page "https://golang.org/x/sync") +; (synopsis "Go Sync") +; (description +; "This repository provides Go concurrency primitives in addition to the +;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20200804011535-6c149bb5ef0d +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20200804011535-6c149bb5ef0d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1l244hp5n0qff7nmvcffggjv7jm4061g63g76z967zvdqcxh23i2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" +; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) +; ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" +; ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) +; ("go-golang-org-x-net-0.0.0-20200625001655-4c5254603344" +; ,go-golang-org-x-net-0.0.0-20200625001655-4c5254603344) +; ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) +; ("go-github-com-yuin-goldmark-1.1.32" +; ,go-github-com-yuin-goldmark-1.1.32))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20200804131852-c06518451d9c +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20200804131852-c06518451d9c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0wl9bhr94yf0b8lc947zr0iwm3l20irzy869xczfd6z0a1g54gsa")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.24.0" +; ,go-google-golang-org-protobuf-1.24.0) +; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) +; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" +; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-github-com-golang-protobuf-1.4.1" +; ,go-github-com-golang-protobuf-1.4.1))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-api-0.30.0 +; (package +; (name "go-google-golang-org-api") +; (version "0.30.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-api-go-client") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1vh5rrc6hvzh1rqawrwr4nyilnr3dgqx1pr2njjzdg0prfmflm5p")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/api")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.31.0" ,go-google-golang-org-grpc-1.31.0) +; ("go-google-golang-org-genproto-0.0.0-20200804131852-c06518451d9c" +; ,go-google-golang-org-genproto-0.0.0-20200804131852-c06518451d9c) +; ("go-google-golang-org-appengine-1.6.6" +; ,go-google-golang-org-appengine-1.6.6) +; ("go-golang-org-x-tools-0.0.0-20200804011535-6c149bb5ef0d" +; ,go-golang-org-x-tools-0.0.0-20200804011535-6c149bb5ef0d) +; ("go-golang-org-x-sys-0.0.0-20200803210538-64077c9b5642" +; ,go-golang-org-x-sys-0.0.0-20200803210538-64077c9b5642) +; ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" +; ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) +; ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" +; ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) +; ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" +; ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) +; ("go-go-opencensus-io-0.22.4" ,go-go-opencensus-io-0.22.4) +; ("go-github-com-googleapis-gax-go-v2-2.0.5" +; ,go-github-com-googleapis-gax-go-v2-2.0.5) +; ("go-github-com-google-go-cmp-0.5.1" +; ,go-github-com-google-go-cmp-0.5.1) +; ("go-cloud-google-com-go-0.62.0" ,go-cloud-google-com-go-0.62.0))) +; (home-page "https://google.golang.org/api") +; (synopsis "Google APIs Client Library for Go") +; (description +; "Package api is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of +;sub-packages. +;") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-1.24.0 +; (package +; (name "go-google-golang-org-protobuf") +; (version "1.24.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0x3qyn3rizbs671gs7f8v50rmiwf9h7kbaradpivw9718mhbg1gn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" +; ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.4.1" +; ,go-github-com-golang-protobuf-1.4.1))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20200825200019-8632dd797987 +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20200825200019-8632dd797987") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0h8s1mz8pbdiwmv2g61afa7f05zin3m6mdy2fmny6wcidz4w2i3k")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.24.0" +; ,go-google-golang-org-protobuf-1.24.0) +; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) +; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" +; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-github-com-golang-protobuf-1.4.1" +; ,go-github-com-golang-protobuf-1.4.1))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f +; (package +; (name "go-github-com-cncf-udpa-go") +; (version "0.0.0-20191209042840-269d4d468f6f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/cncf/udpa") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0i1jiaw2k3hlwwmg4hap81vb4s1p25xp9kdfww37v0fbgjariccs")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path +; "github.com/cncf/udpa/go" +; #:unpack-path +; "github.com/cncf/udpa")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2) +; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" +; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0))) +; (home-page "https://github.com/cncf/udpa") +; (synopsis "Description") +; (description +; "This library has been deprecated in favor of @code{github.com/cncf/xds/go}. All users are recommended to switch their imports.") +; (license license:asl2.0))) +; +;(define-public go-github-com-envoyproxy-go-control-plane-0.9.4 +; (package +; (name "go-github-com-envoyproxy-go-control-plane") +; (version "0.9.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/envoyproxy/go-control-plane") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0m0crzx70lp7vz13v20wxb1fcfdnzp7h3mkh3bn6a8mbfz6w5asj")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) +; ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" +; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) +; ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" +; ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) +; ("go-github-com-google-go-cmp-0.2.0" +; ,go-github-com-google-go-cmp-0.2.0) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2) +; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" +; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) +; ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" +; ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f) +; ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" +; ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) +; (home-page "https://github.com/envoyproxy/go-control-plane") +; (synopsis "control-plane") +; (description +; "This repository contains a Go-based implementation of an API server that +;implements the discovery service APIs defined in +;@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") +; (license license:asl2.0))) +; +;(define-public go-github-com-golang-protobuf-1.3.3 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.3.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1cyyr52yhj3fzrily3rmsbqyj8va4ld75lmry0857m39rgpv8sy1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-grpc-1.31.0 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.31.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1y3lilpipmaysjk4skbzw1qa6lv05vzixzw9lg9x73xfb01q4nyz")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" +; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.3.3" +; ,go-github-com-golang-protobuf-1.3.3) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-envoyproxy-go-control-plane-0.9.4" +; ,go-github-com-envoyproxy-go-control-plane-0.9.4) +; ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" +; ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-cloud-google-com-go-0.65.0 +; (package +; (name "go-cloud-google-com-go") +; (version "0.65.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-cloud-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0xrcg39jrw90gq8vl8pfq63sp3bkak04wh392yj5rh4lc1a4lxjq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "cloud.google.com/go")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.31.0" ,go-google-golang-org-grpc-1.31.0) +; ("go-google-golang-org-genproto-0.0.0-20200825200019-8632dd797987" +; ,go-google-golang-org-genproto-0.0.0-20200825200019-8632dd797987) +; ("go-google-golang-org-api-0.30.0" ,go-google-golang-org-api-0.30.0) +; ("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" +; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) +; ("go-golang-org-x-tools-0.0.0-20200825202427-b303f430e36d" +; ,go-golang-org-x-tools-0.0.0-20200825202427-b303f430e36d) +; ("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) +; ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" +; ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) +; ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" +; ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) +; ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" +; ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) +; ("go-go-opencensus-io-0.22.4" ,go-go-opencensus-io-0.22.4) +; ("go-github-com-jstemmer-go-junit-report-0.9.1" +; ,go-github-com-jstemmer-go-junit-report-0.9.1) +; ("go-github-com-googleapis-gax-go-v2-2.0.5" +; ,go-github-com-googleapis-gax-go-v2-2.0.5) +; ("go-github-com-google-pprof-0.0.0-20200708004538-1a94d8640e99" +; ,go-github-com-google-pprof-0.0.0-20200708004538-1a94d8640e99) +; ("go-github-com-google-martian-v3-3.0.0" +; ,go-github-com-google-martian-v3-3.0.0) +; ("go-github-com-google-go-cmp-0.5.1" +; ,go-github-com-google-go-cmp-0.5.1) +; ("go-github-com-golang-protobuf-1.4.2" +; ,go-github-com-golang-protobuf-1.4.2) +; ("go-github-com-golang-mock-1.4.4" ,go-github-com-golang-mock-1.4.4) +; ("go-cloud-google-com-go-storage-1.10.0" +; ,go-cloud-google-com-go-storage-1.10.0))) +; (home-page "https://cloud.google.com/go") +; (synopsis "Google Cloud Client Libraries for Go") +; (description +; "Package cloud is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +;of sub-packages. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20200323222414-85ca7c5b95cd") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1504qkgbhhm4f0bhk77v2r1lj6x171ay5m79alkg78wjb5cign5l")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20200822124328-c89045814202 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20200822124328-c89045814202") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1g3wxilwbcbf2xj20y3mpxh38jka4fyhl48akfqf00vr48zmx96x")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" +; ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) +; ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" +; ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-appengine-1.6.6 +; (package +; (name "go-google-golang-org-appengine") +; (version "1.6.6") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/appengine") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "15c38h6fbv06cnkr6yknygfrpibyms2mya4w0l29kaxf42jn1qi5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/appengine")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) +; ("go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65" +; ,go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65) +; ("go-github-com-golang-protobuf-1.3.1" +; ,go-github-com-golang-protobuf-1.3.1))) +; (home-page "https://google.golang.org/appengine") +; (synopsis "Go App Engine packages") +; (description +; "Package appengine provides basic functionality for Google App Engine. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-oauth2-0.0.0-20210402161424-2e8d93401602 +; (package +; (name "go-golang-org-x-oauth2") +; (version "0.0.0-20210402161424-2e8d93401602") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/oauth2") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0j1crxa78gip3hxrds5jngi034j4zm4q3z7r8bqs3rjxnwcki9ig")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/oauth2")) +; (propagated-inputs +; `(("go-google-golang-org-appengine-1.6.6" +; ,go-google-golang-org-appengine-1.6.6) +; ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" +; ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) +; ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) +; (home-page "https://golang.org/x/oauth2") +; (synopsis "OAuth2 for Go") +; (description +; "Package oauth2 provides support for making +;OAuth2 authorized and authenticated HTTP requests, +;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +;It can additionally grant authorization with Bearer JWT. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c +; (package +; (name "go-golang-org-x-sync") +; (version "0.0.0-20210220032951-036812b2e83c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sync") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1gl202py3s4gl6arkaxlf8qa6f0jyyg2f95m6f89qnfmr416h85b")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sync")) +; (home-page "https://golang.org/x/sync") +; (synopsis "Go Sync") +; (description +; "This repository provides Go concurrency primitives in addition to the +;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20210403161142-5e06dd20ab57 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20210403161142-5e06dd20ab57") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1acdn06771rxjg38ql9wl8dr1vf23nazjnvk6105z3hddnh14fgb")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.3.1 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.3.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "15am4s4646qy6iv0g3kkqq52rzykqjhm4bf08dk0fy2r58knpsyl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190603091049-60506f45cf65") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0827yz7irmnzcdhw8vg74819jaw5ahs4w4v5fvzgfvnxyb9f6zcc")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-text-0.3.2 +; (package +; (name "go-golang-org-x-text") +; (version "0.3.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/text") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0flv9idw0jm5nm8lx25xqanbkqgfiym6619w575p7nrdh0riqwqh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/text")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" +; ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) +; (home-page "https://golang.org/x/text") +; (synopsis "Go Text") +; (description +; "text is a repository of text-related packages related to internationalization +;(i18n) and localization (l10n), such as character encodings, text +;transformations, and locale-specific text handling. +;") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-appengine-1.6.7 +; (package +; (name "go-google-golang-org-appengine") +; (version "1.6.7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/appengine") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1wkipg7xxc0ha5p6c3bj0vpgq38l18441n5l6zxdhx0gzvz5z1hs")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/appengine")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) +; ("go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65" +; ,go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65) +; ("go-github-com-golang-protobuf-1.3.1" +; ,go-github-com-golang-protobuf-1.3.1))) +; (home-page "https://google.golang.org/appengine") +; (synopsis "Go App Engine packages") +; (description +; "Package appengine provides basic functionality for Google App Engine. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-golang-protobuf-1.5.1 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.5.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1qx8gvsdx1w27vamw6wn1jns2d8pz0g9sji3l0hvs4wl1jf7p32d")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.26.0" +; ,go-google-golang-org-protobuf-1.26.0) +; ("go-github-com-google-go-cmp-0.5.5" +; ,go-github-com-google-go-cmp-0.5.5))) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-mod-0.1.1-0.20191105210325-c90efee705ee +; (package +; (name "go-golang-org-x-mod") +; (version "0.1.1-0.20191105210325-c90efee705ee") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/mod") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0i5md645rmcy5z5ij9ng428k9rz4g3k1kjy3blsq1264rn426gdf")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/mod")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" +; ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) +; ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" +; ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) +; (home-page "https://golang.org/x/mod") +; (synopsis "mod") +; (description +; "This repository holds packages for writing tools +;that work directly with Go module mechanics. +;That is, it is for direct manipulation of Go modules themselves.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7 +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20200130002326-2f3ba24bd6e7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0j3nnmlwnbivf0h9x89vlp8ji3ha41v96bj33cxwmrrjnxq543ww")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" +; ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) +; ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" +; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) +; ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" +; ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) +; ("go-golang-org-x-mod-0.1.1-0.20191105210325-c90efee705ee" +; ,go-golang-org-x-mod-0.1.1-0.20191105210325-c90efee705ee))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5 +; (package +; (name "go-golang-org-x-lint") +; (version "0.0.0-20201208152925-83fdc39ff7b5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/lint") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ms3rs5hvpnm9bxbr5f9743i7hn2bbmqdmvzxq6nmi0f24ypv1l3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/lint")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7" +; ,go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7))) +; (home-page "https://golang.org/x/lint") +; (synopsis "Installation") +; (description "Package lint contains a linter for Go source code. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20210315160823-c6e025ad8005 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20210315160823-c6e025ad8005") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1dy8j3gvbkng0vy2wgdiy48871j4vchgsks2ggfxcx4jg32d2qsr")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20201119102817-f84b799fce68") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1dvhqian5byzkcg1bnqzygqa6ccc6krc2q7j12pp1vhl3y7znnsg")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1 +; (package +; (name "go-golang-org-x-term") +; (version "0.0.0-20201126162022-7de9c90e9dd1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/term") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ba252xmv6qsvf1w1gcy98mngrj0vd4inbjw0lsklqvva65nljna")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/term")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" +; ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) +; (home-page "https://golang.org/x/term") +; (synopsis "Go terminal/console support") +; (description +; "Package term provides support functions for dealing with terminals, as +;commonly found on UNIX systems. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20210316092652-d523dce5a7f4 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20210316092652-d523dce5a7f4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "01hhvh6msyg11adxhgjwzbv4jprq5ajzkxxb16ln3dqv4na9b2k1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) +; ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" +; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) +; ("go-golang-org-x-sys-0.0.0-20210315160823-c6e025ad8005" +; ,go-golang-org-x-sys-0.0.0-20210315160823-c6e025ad8005))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20210320140829-1e4c9ba3b0c4 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20210320140829-1e4c9ba3b0c4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0nrxjq5j058sba9s5g65l5rdw6b4f335lxa7hhcf57paklym1qgr")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-text-0.3.5 +; (package +; (name "go-golang-org-x-text") +; (version "0.3.5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/text") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "082s9d7wnh1aa2v08g3h5z4if2f8hl4y01pb788qsvab9329lj0w")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/text")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" +; ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) +; (home-page "https://golang.org/x/text") +; (synopsis "Go Text") +; (description +; "text is a repository of text-related packages related to internationalization +;(i18n) and localization (l10n), such as character encodings, text +;transformations, and locale-specific text handling. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-yuin-goldmark-1.2.1 +; (package +; (name "go-github-com-yuin-goldmark") +; (version "1.2.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/yuin/goldmark") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "12rsnsf65drcp0jfw2jl9w589vsn3pxdk1zh3v9q908iigngrcmy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/yuin/goldmark")) +; (home-page "https://github.com/yuin/goldmark") +; (synopsis "goldmark") +; (description +; "Package goldmark implements functions to convert markdown text to a desired format. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20191011191535-87dc89f01550") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0z4i1m2yn3f31ci7wvcm2rxkx2yiv7a78mfzklncmsz2k97rlh2g")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" +; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) +; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" +; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190620200207-3b0461eec859") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0l00c8l0a8xnv6qdpwfzxxsr58jggacgzdrwiprrfx2xqm37b6d5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7 +; (package +; (name "go-golang-org-x-xerrors") +; (version "0.0.0-20190717185122-a985d3407aa7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/xerrors") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "00wzr5w8aadipgc3rkk8f11i41znskfj9ix5nhhaxyg7isrslgcj")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/xerrors")) +; (home-page "https://golang.org/x/xerrors") +; (synopsis #f) +; (description +; "Package xerrors implements functions to manipulate errors. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20191119224855-298f0cb1881e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0l4pqwib2wnfnix6nvxl0yrq87ipi7ff1rz6z5bxfzy9dki1nzmv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7" +; ,go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7) +; ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" +; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) +; ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" +; ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898 +; (package +; (name "go-golang-org-x-xerrors") +; (version "0.0.0-20191011141410-1b5146add898") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/xerrors") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0w2akj91krxjag0xdhsg78470888nicc5ismc2ap9jqpss6v1zih")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/xerrors")) +; (home-page "https://golang.org/x/xerrors") +; (synopsis #f) +; (description +; "Package xerrors implements functions to manipulate errors. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-mod-0.3.0 +; (package +; (name "go-golang-org-x-mod") +; (version "0.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/mod") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ldgbx2zpprbsfn6p8pfgs4nn87gwbfcv2z0fa7n8alwsq2yw78q")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/mod")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" +; ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) +; ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" +; ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) +; ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" +; ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) +; (home-page "https://golang.org/x/mod") +; (synopsis "mod") +; (description +; "This repository holds packages for writing tools +;that work directly with Go module mechanics. +;That is, it is for direct manipulation of Go modules themselves.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20200622213623-75b288015ac9") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "18vlncvvs11ds3zaaziqjlg5s2vcwi3496nn6qv7p0dp94j5pwa2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" +; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) +; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" +; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20200930185726-fdedc70b468f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1njlfhjbvi4lxvjbq8zswrb0y0q4jd2p6x51h1q6vmyzi9af6869")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20201021035429-f5854403a974 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20201021035429-f5854403a974") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1vw63zpmhi337f3gc432x3wkib4j2ia8dy7if31wxwb9dgqvy222")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) +; ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" +; ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) +; ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" +; ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9 +; (package +; (name "go-golang-org-x-sync") +; (version "0.0.0-20201020160332-67f06af15bc9") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sync") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "093p4panc808ak5bamzz7m9nb0xxib7778jpnr6f0xkz1n4fzyw5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sync")) +; (home-page "https://golang.org/x/sync") +; (synopsis "Go Sync") +; (description +; "This repository provides Go concurrency primitives in addition to the +;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20210119212857-b64e53b001e4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "16in6bazi0frdkzhqxyvmw7qcvzjavq21dnz9bmrqq8d4dpd2j44")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1 +; (package +; (name "go-golang-org-x-xerrors") +; (version "0.0.0-20200804184101-5ec99f83aff1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/xerrors") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1dbzc3gmf2haazpv7cgmv97rq40g2xzwbglc17vas8dwhgwgwrzb")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/xerrors")) +; (home-page "https://golang.org/x/xerrors") +; (synopsis #f) +; (description +; "Package xerrors implements functions to manipulate errors. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.1.0 +; (package +; (name "go-golang-org-x-tools") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1asrm22kv5x891qkbpap8alg612k321jbs1akc0vwsan251gm507")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" +; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) +; ("go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4" +; ,go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4) +; ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" +; ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) +; ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" +; ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) +; ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) +; ("go-github-com-yuin-goldmark-1.2.1" +; ,go-github-com-yuin-goldmark-1.2.1))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-1.26.0-rc.1 +; (package +; (name "go-google-golang-org-protobuf") +; (version "1.26.0-rc.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1m2jp247qcnix42jncn0q7pwrjgbhiqllb1115hfsz40xfnfhp8j")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.5.5" +; ,go-github-com-google-go-cmp-0.5.5))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.5.0 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.5.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1craaxv34g4g8q3yrv6pr28fx9ihnk7hj5gnbmxcrhcp78423lnf")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.26.0-rc.1" +; ,go-google-golang-org-protobuf-1.26.0-rc.1) +; ("go-github-com-google-go-cmp-0.5.5" +; ,go-github-com-google-go-cmp-0.5.5))) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-github-com-google-go-cmp-0.5.5 +; (package +; (name "go-github-com-google-go-cmp") +; (version "0.5.5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/go-cmp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "12fmkdhyv5d4is8s57k78j097zb0phlgnrkqc03agiszxlid69x7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/go-cmp")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" +; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) +; (home-page "https://github.com/google/go-cmp") +; (synopsis "Package for equality of Go values") +; (description +; "This package is intended to be a more powerful and safer alternative to +;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-1.26.0 +; (package +; (name "go-google-golang-org-protobuf") +; (version "1.26.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0xq6phaps6d0vcv13ga59gzj4306l0ki9kikhmb52h6pq0iwfqlz")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.5.5" +; ,go-github-com-google-go-cmp-0.5.5) +; ("go-github-com-golang-protobuf-1.5.0" +; ,go-github-com-golang-protobuf-1.5.0))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20210402141018-6c239bbf2bb1 +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20210402141018-6c239bbf2bb1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1xih6y4dwjj939ilwc5s6w419kjnkn1hw33jsgml0nkjcnac74wc")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.26.0" +; ,go-google-golang-org-protobuf-1.26.0) +; ("go-google-golang-org-grpc-1.36.1" ,go-google-golang-org-grpc-1.36.1) +; ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) +; ("go-golang-org-x-text-0.3.5" ,go-golang-org-x-text-0.3.5) +; ("go-golang-org-x-sys-0.0.0-20210320140829-1e4c9ba3b0c4" +; ,go-golang-org-x-sys-0.0.0-20210320140829-1e4c9ba3b0c4) +; ("go-golang-org-x-net-0.0.0-20210316092652-d523dce5a7f4" +; ,go-golang-org-x-net-0.0.0-20210316092652-d523dce5a7f4) +; ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" +; ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) +; ("go-github-com-golang-protobuf-1.5.1" +; ,go-github-com-golang-protobuf-1.5.1))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad +; (package +; (name "go-github-com-envoyproxy-go-control-plane") +; (version "0.9.9-0.20201210154907-fd9021fe5dad") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/envoyproxy/go-control-plane") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0piyk6pk36x2qr3bhys2k240pfwz3bv64fhi2l0vx1mzwiddapbm")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.23.0" +; ,go-google-golang-org-protobuf-1.23.0) +; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) +; ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" +; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) +; ("go-github-com-stretchr-testify-1.5.1" +; ,go-github-com-stretchr-testify-1.5.1) +; ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" +; ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.4.2" +; ,go-github-com-golang-protobuf-1.4.2) +; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" +; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) +; ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" +; ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403) +; ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" +; ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) +; (home-page "https://github.com/envoyproxy/go-control-plane") +; (synopsis "control-plane") +; (description +; "This repository contains a Go-based implementation of an API server that +;implements the discovery service APIs defined in +;@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-grpc-1.36.1 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.36.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0l3prxp18lb0pagqg4l6c9i0l6gakfxgf6vxcsv589i0xsxw8ivm")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.25.0" +; ,go-google-golang-org-protobuf-1.25.0) +; ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" +; ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) +; ("go-github-com-google-go-cmp-0.5.0" +; ,go-github-com-google-go-cmp-0.5.0) +; ("go-github-com-golang-protobuf-1.4.2" +; ,go-github-com-golang-protobuf-1.4.2) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad" +; ,go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad) +; ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" +; ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-api-0.44.0 +; (package +; (name "go-google-golang-org-api") +; (version "0.44.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-api-go-client") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0sh6qzc3pnyliy10afrmzpfbbbm2mwcyc6mp5422xhgp3p2x370x")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/api")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.36.1" ,go-google-golang-org-grpc-1.36.1) +; ("go-google-golang-org-genproto-0.0.0-20210402141018-6c239bbf2bb1" +; ,go-google-golang-org-genproto-0.0.0-20210402141018-6c239bbf2bb1) +; ("go-google-golang-org-appengine-1.6.7" +; ,go-google-golang-org-appengine-1.6.7) +; ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) +; ("go-golang-org-x-sys-0.0.0-20210403161142-5e06dd20ab57" +; ,go-golang-org-x-sys-0.0.0-20210403161142-5e06dd20ab57) +; ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" +; ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) +; ("go-golang-org-x-oauth2-0.0.0-20210402161424-2e8d93401602" +; ,go-golang-org-x-oauth2-0.0.0-20210402161424-2e8d93401602) +; ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" +; ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) +; ("go-go-opencensus-io-0.23.0" ,go-go-opencensus-io-0.23.0) +; ("go-github-com-googleapis-gax-go-v2-2.0.5" +; ,go-github-com-googleapis-gax-go-v2-2.0.5) +; ("go-github-com-google-go-cmp-0.5.5" +; ,go-github-com-google-go-cmp-0.5.5) +; ("go-cloud-google-com-go-0.81.0" ,go-cloud-google-com-go-0.81.0))) +; (home-page "https://google.golang.org/api") +; (synopsis "Google APIs Client Library for Go") +; (description +; "Package api is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of +;sub-packages. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-envoyproxy-go-control-plane-0.9.0 +; (package +; (name "go-github-com-envoyproxy-go-control-plane") +; (version "0.9.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/envoyproxy/go-control-plane") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1dpvi4wnycyj6hnai78fr8aj58b27b1vcwdp3v0id5v22kvgr3xw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.23.0" ,go-google-golang-org-grpc-1.23.0) +; ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" +; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) +; ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" +; ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2) +; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" +; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) +; ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" +; ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) +; (home-page "https://github.com/envoyproxy/go-control-plane") +; (synopsis "control-plane") +; (description +; "This repository contains a Go-based implementation of an API server that +;implements the discovery service APIs defined in +;@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-grpc-1.25.1 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.25.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0a136ij9p11yj1vx892yqy40jkh7n5nfbpdvhgydcj823mx51c6f")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" +; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-github-com-google-go-cmp-0.2.0" +; ,go-github-com-google-go-cmp-0.2.0) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2) +; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" +; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) +; ("go-github-com-envoyproxy-go-control-plane-0.9.0" +; ,go-github-com-envoyproxy-go-control-plane-0.9.0))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403 +; (package +; (name "go-github-com-cncf-udpa-go") +; (version "0.0.0-20201120205902-5459f2c99403") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/cncf/udpa") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0i3al193dsp91j7iywqrm6fr56y2sz51ci4vf19mb3j4n2x44gsi")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path +; "github.com/cncf/udpa/go" +; #:unpack-path +; "github.com/cncf/udpa")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2) +; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" +; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0))) +; (home-page "https://github.com/cncf/udpa") +; (synopsis "Description") +; (description +; "This library has been deprecated in favor of @code{github.com/cncf/xds/go}. All users are recommended to switch their imports.") +; (license license:asl2.0))) +; +;(define-public go-github-com-stretchr-testify-1.5.1 +; (package +; (name "go-github-com-stretchr-testify") +; (version "1.5.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/testify") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "09r89m1wy4cjv2nps1ykp00qjpi0531r07q3s34hr7m6njk4srkl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/testify")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) +; ("go-github-com-stretchr-objx-0.1.0" +; ,go-github-com-stretchr-objx-0.1.0) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.0" +; ,go-github-com-davecgh-go-spew-1.1.0))) +; (home-page "https://github.com/stretchr/testify") +; (synopsis "Testify - Thou Shalt Write Tests") +; (description +; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +;") +; (license license:expat))) +; +;(define-public go-github-com-envoyproxy-go-control-plane-0.9.9-0.20210217033140-668b12f5399d +; (package +; (name "go-github-com-envoyproxy-go-control-plane") +; (version "0.9.9-0.20210217033140-668b12f5399d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/envoyproxy/go-control-plane") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0vmhc8ii081x1k2qw4kji7wjyg6l25zp1y6qxi27wq8m341i4rzb")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.23.0" +; ,go-google-golang-org-protobuf-1.23.0) +; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) +; ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" +; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) +; ("go-github-com-stretchr-testify-1.5.1" +; ,go-github-com-stretchr-testify-1.5.1) +; ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" +; ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.4.2" +; ,go-github-com-golang-protobuf-1.4.2) +; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" +; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) +; ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" +; ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403) +; ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" +; ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) +; (home-page "https://github.com/envoyproxy/go-control-plane") +; (synopsis "control-plane") +; (description +; "This repository contains a Go-based implementation of an API server that +;implements the discovery service APIs defined in +;@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-protobuf-1.23.0 +; (package +; (name "go-google-golang-org-protobuf") +; (version "1.23.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "03yan0m1v0zmlr935p4n24fd376mznsg85zy8sywbgisls4s1bzy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.4.0" +; ,go-github-com-golang-protobuf-1.4.0))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.4.2 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.4.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0m5z81im4nsyfgarjhppayk4hqnrwswr3nix9mj8pff8x9jvcjqw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.23.0" +; ,go-google-golang-org-protobuf-1.23.0) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0))) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-github-com-google-uuid-1.1.2 +; (package +; (name "go-github-com-google-uuid") +; (version "1.1.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/uuid") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1rbpfa0v0ly9sdnixcxhf79swki54ikgm1zkwwkj64p1ws66syqd")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/uuid")) +; (home-page "https://github.com/google/uuid") +; (synopsis "uuid") +; (description "Package uuid generates and inspects UUIDs. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-google-go-cmp-0.5.0 +; (package +; (name "go-github-com-google-go-cmp") +; (version "0.5.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/go-cmp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "04pzp583p6b32y34c6jygfxarff9qjs39rarvfh6467z24sdd9k4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/go-cmp")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" +; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) +; (home-page "https://github.com/google/go-cmp") +; (synopsis "Package for equality of Go values") +; (description +; "This package is intended to be a more powerful and safer alternative to +;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-1.22.0 +; (package +; (name "go-google-golang-org-protobuf") +; (version "1.22.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0n7lc4m7kfvj01glc0gnjy0zsnsic7cxnbvlajy0h14cxbab87pj")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.4.0" +; ,go-github-com-golang-protobuf-1.4.0))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.4.1 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.4.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0w7ks4vffnnkp0miwgc3chrsnmya45lzvpahb2wmw0jwhdp5kdx7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.22.0" +; ,go-google-golang-org-protobuf-1.22.0) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0))) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-github-com-census-instrumentation-opencensus-proto-0.2.1 +; (package +; (name "go-github-com-census-instrumentation-opencensus-proto") +; (version "0.2.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/census-instrumentation/opencensus-proto") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19fcx3sc99i5dsklny6r073z5j20vlwn2xqm6di1q3b1xwchzqfj")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "github.com/census-instrumentation/opencensus-proto")) +; (home-page "https://github.com/census-instrumentation/opencensus-proto") +; (synopsis +; "OpenCensus Proto - Language Independent Interface Types For OpenCensus") +; (description +; "Census provides a framework to define and collect stats against metrics and to +;break those stats down across user-defined dimensions.") +; (license license:asl2.0))) +; +;(define-public go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4 +; (package +; (name "go-github-com-prometheus-client-model") +; (version "0.0.0-20190812154241-14fe0d1b01d4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/client_model") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0zdmk6rbbx39cvfz0r59v2jg5sg9yd02b4pds5n5llgvivi99550")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/client_model")) +; (propagated-inputs +; `(("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" +; ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0))) +; (home-page "https://github.com/prometheus/client_model") +; (synopsis "Deprecation note") +; (description +; "This repository used to contain the code that defined both +;the data model and the exposition format of Prometheus metrics.") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20190311212946-11955173bddd") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0hlkai67w167wiyivkzd1fgqrnyxkb94l2c6kr51jwcscizfyfn3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3 +; (package +; (name "go-golang-org-x-lint") +; (version "0.0.0-20190313153728-d0100b6bd8b3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/lint") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0b0amr9x4ji66iv9ayfx7zrfx52k1m5g66qfcxkgj80qrb1y2yn7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/lint")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" +; ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd))) +; (home-page "https://golang.org/x/lint") +; (synopsis "Installation") +; (description "Package lint contains a linter for Go source code. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sync-0.0.0-20190423024810-112230192c58 +; (package +; (name "go-golang-org-x-sync") +; (version "0.0.0-20190423024810-112230192c58") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sync") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "05i2k43j2d0llq768hg5pf3hb2yhfzp9la1w5wp0rsnnzblr0lfn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sync")) +; (home-page "https://golang.org/x/sync") +; (synopsis "Go Sync") +; (description +; "This repository provides Go concurrency primitives in addition to the +;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135 +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20190524140312-2c0ae7006135") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1lsi2ssxajclj3bciz2a41v1vjv768ja3v6wnbyhxy8xphwkp4fk")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" +; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-grpc-1.23.0 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.23.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1cn33r2gclmq2v1ndpf1n5bmhf2qs8mms7ii5cnl6f9ch4r2c4k3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" +; ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) +; ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" +; ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) +; ("go-google-golang-org-appengine-1.1.0" +; ,go-google-golang-org-appengine-1.1.0) +; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" +; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-github-com-google-go-cmp-0.2.0" +; ,go-github-com-google-go-cmp-0.2.0) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0) +; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-client9-misspell-0.3.4" +; ,go-github-com-client9-misspell-0.3.4) +; ("go-github-com-burntsushi-toml-0.3.1" +; ,go-github-com-burntsushi-toml-0.3.1) +; ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473 +; (package +; (name "go-github-com-envoyproxy-go-control-plane") +; (version "0.9.1-0.20191026205805-5f8ba28d4473") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/envoyproxy/go-control-plane") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1f1s764rd41vd9vgk3r14h1m6fz6pdvxj6fd83q58gxifbc4q5w4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.23.0" ,go-google-golang-org-grpc-1.23.0) +; ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" +; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) +; ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" +; ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2) +; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" +; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) +; ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" +; ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) +; (home-page "https://github.com/envoyproxy/go-control-plane") +; (synopsis "control-plane") +; (description +; "This repository contains a Go-based implementation of an API server that +;implements the discovery service APIs defined in +;@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") +; (license license:asl2.0))) +; +;(define-public go-github-com-envoyproxy-protoc-gen-validate-0.1.0 +; (package +; (name "go-github-com-envoyproxy-protoc-gen-validate") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/envoyproxy/protoc-gen-validate") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0kxd3wwh3xwqk0r684hsy281xq4y71cd11d4q2hspcjbnlbwh7cy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/envoyproxy/protoc-gen-validate")) +; (home-page "https://github.com/envoyproxy/protoc-gen-validate") +; (synopsis "protoc-gen-validate (PGV)") +; (description +; "PGV is a protoc plugin to generate polyglot message validators. While protocol buffers effectively guarantee the types of structured data, they cannot enforce semantic rules for values. This plugin adds support to protoc-generated code to validate such constraints.") +; (license license:asl2.0))) +; +;(define-public go-github-com-google-go-cmp-0.2.0 +; (package +; (name "go-github-com-google-go-cmp") +; (version "0.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/go-cmp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1fbv0x27k9sn8svafc0hjwsnckk864lv4yi7bvzrxvmd3d5hskds")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/go-cmp")) +; (home-page "https://github.com/google/go-cmp") +; (synopsis "Package for equality of Go values") +; (description +; "This package is intended to be a more powerful and safer alternative to +;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.3.2 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.3.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1k1wb4zr0qbwgpvz9q5ws9zhlal8hq7dmq62pwxxriksayl6hzym")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4 +; (package +; (name "go-golang-org-x-exp") +; (version "0.0.0-20190121172915-509febef88a4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/exp") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "02isrh39z8znrp5znplzy0dip2gnrl3jm1355raliyvhnhg04j6q")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/exp")) +; (home-page "https://golang.org/x/exp") +; (synopsis "exp") +; (description +; "This subrepository holds experimental and deprecated (in the @code{old} +;directory) packages.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961 +; (package +; (name "go-golang-org-x-lint") +; (version "0.0.0-20190227174305-5b3e6a55c961") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/lint") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "04zp5vbds9nffmjg36wjpi5vg9zmf890yf78xxasai3ni637ivfw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/lint")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" +; ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c))) +; (home-page "https://golang.org/x/lint") +; (synopsis "Installation") +; (description "Package lint contains a linter for Go source code. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190213061140-3a22650c66bd") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "12q6fgdkc0742vcms67nzadgdwvi3rnb1gx3vwkljhrvlnwvz7wc")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f +; (package +; (name "go-golang-org-x-sync") +; (version "0.0.0-20181108010431-42b317875d0f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sync") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0mrjhk7al7yyh76x9flvxy4jm5jyqh2fxbxagpaazxn1xdgkaif3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sync")) +; (home-page "https://golang.org/x/sync") +; (synopsis "Go Sync") +; (description +; "This repository provides Go concurrency primitives in addition to the +;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20180724234803-3673e40ba225") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0vx7mz18p480p7fh0w5jv6mfdbsswrlac1sz4i705q7q7ygz59lm")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-appengine-1.4.0 +; (package +; (name "go-google-golang-org-appengine") +; (version "1.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/appengine") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "06zl7w4sxgdq2pl94wy9ncii6h0z3szl4xpqds0sv3b3wbdlhbnn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/appengine")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225" +; ,go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0))) +; (home-page "https://google.golang.org/appengine") +; (synopsis "Go App Engine packages") +; (description +; "Package appengine provides basic functionality for Google App Engine. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20190226205152-f727befe758c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0rpcqw6z13qd33rbasg32zb0gdhgh5lzjla63r6g651zf6hpsak0")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-google-golang-org-appengine-1.4.0" +; ,go-google-golang-org-appengine-1.4.0) +; ("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" +; ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) +; ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" +; ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-cloud-google-com-go-0.26.0 +; (package +; (name "go-cloud-google-com-go") +; (version "0.26.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-cloud-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "149v3ci17g6wd2pm18mzcncq5qpl9hwdjnz3rlbn5rfidyn46la1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "cloud.google.com/go")) +; (home-page "https://cloud.google.com/go") +; (synopsis "Google Cloud Client Libraries for Go") +; (description +; "Package cloud is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +;of sub-packages. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-burntsushi-toml-0.3.1 +; (package +; (name "go-github-com-burntsushi-toml") +; (version "0.3.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/BurntSushi/toml") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1fjdwwfzyzllgiwydknf1pwjvy49qxfsczqx5gz3y0izs7as99j6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/BurntSushi/toml")) +; (home-page "https://github.com/BurntSushi/toml") +; (synopsis "TOML parser and encoder for Go with reflection") +; (description +; "Package toml implements decoding and encoding of TOML files. +;") +; (license license:expat))) +; +;(define-public go-github-com-client9-misspell-0.3.4 +; (package +; (name "go-github-com-client9-misspell") +; (version "0.3.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/client9/misspell") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1vwf33wsc4la25zk9nylpbp9px3svlmldkm0bha4hp56jws4q9cs")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/client9/misspell")) +; (home-page "https://github.com/client9/misspell") +; (synopsis "Install") +; (description +; "Package misspell corrects commonly misspelled English words in source files. +;") +; (license license:expat))) +; +;(define-public go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b +; (package +; (name "go-github-com-golang-glog") +; (version "0.0.0-20160126235308-23def4e6c14b") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/glog") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0jb2834rw5sykfr937fxi8hxi2zy80sj2bdn9b3jb4b26ksqng30")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/glog")) +; (home-page "https://github.com/golang/glog") +; (synopsis "glog") +; (description +; "Package glog implements logging analogous to the Google-internal C++ INFO/ERROR/V setup. +;It provides functions Info, Warning, Error, Fatal, plus formatting variants such as +;Infof. It also provides V-style logging controlled by the -v and -vmodule=file=2 flags. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-golang-mock-1.1.1 +; (package +; (name "go-github-com-golang-mock") +; (version "1.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/mock") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ap8wb6pdl6ccmdb43advjll2ly4sz26wsc3axw0hbrjrybybzgy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/mock")) +; (home-page "https://github.com/golang/mock") +; (synopsis "gomock") +; (description +; "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It +;integrates well with Go's built-in @code{testing} package, but can be used in other +;contexts too.") +; (license license:asl2.0))) +; +;(define-public go-github-com-golang-protobuf-1.2.0 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0kf4b59rcbb1cchfny2dm9jyznp8ri2hsb14n8iak1q8986xa0ab")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3 +; (package +; (name "go-golang-org-x-lint") +; (version "0.0.0-20181026193005-c67002cb31c3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/lint") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0gymbggskjmphqxqcx4s0vnlcz7mygbix0vhwcwv5r67c0bf6765")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/lint")) +; (home-page "https://golang.org/x/lint") +; (synopsis "Installation") +; (description "Package lint contains a linter for Go source code. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20180826012351-8a410e7b638d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0hp0l8f6fir5gmgrjq0mhh5ikc0rlrm72774228800kfwqjrxxny")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be +; (package +; (name "go-golang-org-x-oauth2") +; (version "0.0.0-20180821212333-d2e6202438be") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/oauth2") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0wbn75fd10485nb93bm4kqldqifdim5xqy4v7r5sdvimvf3fyhn7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/oauth2")) +; (home-page "https://golang.org/x/oauth2") +; (synopsis "OAuth2 for Go") +; (description +; "Package oauth2 provides support for making +;OAuth2 authorized and authenticated HTTP requests, +;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +;It can additionally grant authorization with Bearer JWT. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f +; (package +; (name "go-golang-org-x-sync") +; (version "0.0.0-20180314180146-1d60e4601c6f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sync") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "046jlanz2lkxq1r57x9bl6s4cvfqaic6p2xybsj8mq1120jv4rs6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sync")) +; (home-page "https://golang.org/x/sync") +; (synopsis "Go Sync") +; (description +; "This repository provides Go concurrency primitives in addition to the +;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20180830151530-49385e6e1522") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0spbldahns09fdxkxflb1x24f8k2awdlnr6k5i7ci4fqd19r1dv4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20190114222345-bf090417da8b") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1n3xp56k4k3lj06rx7587wr5gnwg0148nvwx6ch0g7ar02hh94hw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-appengine-1.1.0 +; (package +; (name "go-google-golang-org-appengine") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/appengine") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1pz202zszg8f35dk5pfhwgcdi3r6dx1l4yk6x6ly7nb4j45zi96x")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/appengine")) +; (home-page "https://google.golang.org/appengine") +; (synopsis "Go App Engine packages") +; (description +; "Package appengine provides basic functionality for Google App Engine. +;") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8 +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20180817151627-c66870c02cf8") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0siq7sv68556ygqi2d2zmvx8l1xjqdc0fylqzci5h1mq2i14bayn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-grpc-1.19.0 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.19.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1znqwpj7ix3dpzx4zch0q70sdl3z5lvbb7v3q4i8sf8kas3yv71v")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" +; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) +; ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" +; ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) +; ("go-google-golang-org-appengine-1.1.0" +; ,go-google-golang-org-appengine-1.1.0) +; ("go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b" +; ,go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b) +; ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522" +; ,go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522) +; ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" +; ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d" +; ,go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d) +; ("go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3" +; ,go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0) +; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-client9-misspell-0.3.4" +; ,go-github-com-client9-misspell-0.3.4) +; ("go-github-com-burntsushi-toml-0.3.1" +; ,go-github-com-burntsushi-toml-0.3.1) +; ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099 +; (package +; (name "go-honnef-co-go-tools") +; (version "0.0.0-20190102054323-c2f93a96b099") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/dominikh/go-tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "07lg29aiap80ca9f201jzng9vjr168cv3qmvjmbd7v5pmww9kmr8")))) +; (build-system go-build-system) +; (arguments '(#:import-path "honnef.co/go/tools")) +; (home-page "https://honnef.co/go/tools") +; (synopsis "Documentation") +; (description +; "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, +;offers simplifications, and enforces style rules.") +; (license license:expat))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55 +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20190819201941-24fa4b261c55") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "109zhaqlfd8zkbr1hk6zqbs6vcxfrk64scjwh2nswph05gr0m84d")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" +; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) +; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) +; ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" +; ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) +; ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" +; ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) +; ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" +; ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-grpc-1.27.0 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.27.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ijrmgrxyabfn51nm3p9l81iaasq5fg237wnr6mdc4dzsfcg8kd7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" +; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-github-com-google-go-cmp-0.2.0" +; ,go-github-com-google-go-cmp-0.2.0) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2) +; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" +; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) +; ("go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473" +; ,go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-google-go-cmp-0.3.0 +; (package +; (name "go-github-com-google-go-cmp") +; (version "0.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/go-cmp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1hyxx3434zshl2m9ja78gwlkg1rx9yl6diqa7dnjb31xz5x4gbjj")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/go-cmp")) +; (home-page "https://github.com/google/go-cmp") +; (synopsis "Package for equality of Go values") +; (description +; "This package is intended to be a more powerful and safer alternative to +;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd +; (package +; (name "go-google-golang-org-protobuf") +; (version "0.0.0-20200109180630-ec00e32a8dfd") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0w6lp9w2avxcpxwzzhspr209ifhyjagvs23k0vykfdqahl1aplrh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.3.0" +; ,go-github-com-google-go-cmp-0.3.0))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.4.0-rc.1 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.4.0-rc.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "186rirvbfgv6hrxp27ipx2cdpv19qifdd20biqfdm01wiyclqimn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd" +; ,go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd) +; ("go-github-com-google-go-cmp-0.3.1" +; ,go-github-com-google-go-cmp-0.3.1))) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-github-com-google-go-cmp-0.3.1 +; (package +; (name "go-github-com-google-go-cmp") +; (version "0.3.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/go-cmp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1caw49i0plkjxir7kdf5qhwls3krqwfmi7g4h392rdfwi3kfahx1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/go-cmp")) +; (home-page "https://github.com/google/go-cmp") +; (synopsis "Package for equality of Go values") +; (description +; "This package is intended to be a more powerful and safer alternative to +;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64 +; (package +; (name "go-google-golang-org-protobuf") +; (version "0.0.0-20200221191635-4d8936d0db64") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0563bsvdjj6k0sgwqd5yzrgfiax7sp3lcwh608gync5sv9fx39cy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.3.1" +; ,go-github-com-google-go-cmp-0.3.1) +; ("go-github-com-golang-protobuf-1.4.0-rc.1" +; ,go-github-com-golang-protobuf-1.4.0-rc.1))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.4.0-rc.1.0.20200221234624-67d41d38c208") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ykxhg3zixmw25pd435f8h16wnz1g00jpcmmg3xl030kksgqgpp6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64" +; ,go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0))) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60 +; (package +; (name "go-google-golang-org-protobuf") +; (version "0.0.0-20200228230310-ab0ca4ff8a60") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1rinspcznfp85yz4vrlf4h38hr576virgv8lcs22bsylqga808sd")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208" +; ,go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.4.0-rc.2 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.4.0-rc.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1hd43hjv5zl6bjbmhm5phx74bw4xajsi73m5zky2k56za4mpgzzc")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60" +; ,go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0))) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967 +; (package +; (name "go-google-golang-org-protobuf") +; (version "1.20.1-0.20200309200217-e05f789c0967") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "17wmy89hnmpkwc63rfcjp50q15s9f1rhmczg06c3z9yy41zk82w9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.4.0-rc.2" +; ,go-github-com-golang-protobuf-1.4.0-rc.2))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.4.0-rc.4.0.20200313231945-b860323f09d0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1zj6cwshx0l5n9cn2cpbikzzb79px5dmkpc4p19zy1iif5r5p0z0")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967" +; ,go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0))) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-1.21.0 +; (package +; (name "go-google-golang-org-protobuf") +; (version "1.21.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "12bwln8z1lf9105gdp6ip0rx741i4yfz1520gxnp8861lh9wcl63")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0" +; ,go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.4.0 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1fjvl5n77abxz5qsd4mgyvjq19x43c5bfvmq62mq3m5plx6zksc8")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.21.0" +; ,go-google-golang-org-protobuf-1.21.0) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0))) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543 +; (package +; (name "go-golang-org-x-xerrors") +; (version "0.0.0-20191204190536-9bdfabe68543") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/xerrors") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1yjfi1bk9xb81lqn85nnm13zz725wazvrx3b50hx19qmwg7a4b0c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/xerrors")) +; (home-page "https://golang.org/x/xerrors") +; (synopsis #f) +; (description +; "Package xerrors implements functions to manipulate errors. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-google-go-cmp-0.4.0 +; (package +; (name "go-github-com-google-go-cmp") +; (version "0.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/go-cmp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1x5pvl3fb5sbyng7i34431xycnhmx8xx94gq2n19g6p0vz68z2v2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/go-cmp")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" +; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) +; (home-page "https://github.com/google/go-cmp") +; (synopsis "Package for equality of Go values") +; (description +; "This package is intended to be a more powerful and safer alternative to +;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc +; (package +; (name "go-google-golang-org-protobuf") +; (version "1.23.1-0.20200526195155-81db48ad09cc") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "02cpr8rqr5wmpj2fqb32mzilsdnxkh52g1jz95a3ck3gzffc7hh1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.4.0" +; ,go-github-com-golang-protobuf-1.4.0))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc +; (package +; (name "go-honnef-co-go-tools") +; (version "0.0.0-20190523083050-ea95bdfd59fc") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/dominikh/go-tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1763nw7pwpzkvzfnm63dgzcgbq9hwmq5l1nffchnhh77vgkaq4ic")))) +; (build-system go-build-system) +; (arguments '(#:import-path "honnef.co/go/tools")) +; (home-page "https://honnef.co/go/tools") +; (synopsis "Documentation") +; (description +; "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, +;offers simplifications, and enforces style rules.") +; (license license:expat))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013 +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20200526211855-cb27e3aa2013") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ml73ghqcwbz7ipfk8fnxb5indcml49b5p7vp1fsyny0abyyrmxf")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" +; ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) +; ("go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc" +; ,go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc) +; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) +; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" +; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-github-com-golang-protobuf-1.4.1" +; ,go-github-com-golang-protobuf-1.4.1))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-protobuf-1.25.0 +; (package +; (name "go-google-golang-org-protobuf") +; (version "1.25.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0apfl42x166dh96zfq5kvv4b4ax9xljik6bq1mnvn2240ir3mc23")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" +; ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) +; ("go-github-com-google-go-cmp-0.5.0" +; ,go-github-com-google-go-cmp-0.5.0) +; ("go-github-com-golang-protobuf-1.4.1" +; ,go-github-com-golang-protobuf-1.4.1))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-grpc-1.38.0 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.38.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "08lgqdvbd0i4qwsv1y37qmf8mhsy9ywzx73ixiwih7xhnalrf7xl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.25.0" +; ,go-google-golang-org-protobuf-1.25.0) +; ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" +; ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) +; ("go-github-com-google-go-cmp-0.5.0" +; ,go-github-com-google-go-cmp-0.5.0) +; ("go-github-com-golang-protobuf-1.4.2" +; ,go-github-com-golang-protobuf-1.4.2) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-envoyproxy-go-control-plane-0.9.9-0.20210217033140-668b12f5399d" +; ,go-github-com-envoyproxy-go-control-plane-0.9.9-0.20210217033140-668b12f5399d) +; ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" +; ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-bketelsen-crypt-0.0.4 +; (package +; (name "go-github-com-bketelsen-crypt") +; (version "0.0.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/bketelsen/crypt") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0fyfcvy73zskd1p1mv0cn03anxkkr5gvlawsc87znqk60hdypq3v")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/bketelsen/crypt")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.38.0" ,go-google-golang-org-grpc-1.38.0) +; ("go-google-golang-org-api-0.44.0" ,go-google-golang-org-api-0.44.0) +; ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" +; ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9) +; ("go-go-etcd-io-etcd-client-v2-2.305.0" +; ,go-go-etcd-io-etcd-client-v2-2.305.0) +; ("go-github-com-hashicorp-consul-api-1.1.0" +; ,go-github-com-hashicorp-consul-api-1.1.0) +; ("go-cloud-google-com-go-firestore-1.1.0" +; ,go-cloud-google-com-go-firestore-1.1.0))) +; (home-page "https://github.com/bketelsen/crypt") +; (synopsis "crypt") +; (description +; "You can use crypt as a command line tool or as a configuration library:") +; (license license:expat))) +; +;(define-public go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20191005200804-aed5e4c7ecf9") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0wsdsbl9n61l99z0cvib2xzg56fsfgky4yc5xapdw9ywx9h0zm3a")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-fsnotify-fsnotify-1.4.9 +; (package +; (name "go-github-com-fsnotify-fsnotify") +; (version "1.4.9") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/fsnotify/fsnotify") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1i1r72knpbfwwql9frn9bqc3nhfc2ai5m6qllcyr6wban62lr40x")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/fsnotify/fsnotify")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9" +; ,go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9))) +; (home-page "https://github.com/fsnotify/fsnotify") +; (synopsis "File system notifications for Go") +; (description +; "Package fsnotify provides a platform-independent interface for file system notifications. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-hashicorp-hcl-1.0.0 +; (package +; (name "go-github-com-hashicorp-hcl") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/hcl") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0q6ml0qqs0yil76mpn4mdx4lp94id8vbv575qm60jzl1ijcl5i66")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hashicorp/hcl")) +; (propagated-inputs +; `(("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://github.com/hashicorp/hcl") +; (synopsis "HCL") +; (description "Package hcl decodes HCL into usable Go structures. +;") +; (license license:mpl2.0))) +; +;(define-public go-github-com-magiconair-properties-1.8.5 +; (package +; (name "go-github-com-magiconair-properties") +; (version "1.8.5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/magiconair/properties") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0v4agnkhc30fblbmhs0gq2bikhdnnmqmpp4phrnza68m04j5hxbn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/magiconair/properties")) +; (home-page "https://github.com/magiconair/properties") +; (synopsis "Overview") +; (description +; "Package properties provides functions for reading and writing +;ISO-8859-1 and UTF-8 encoded .properties files and has +;support for recursive property expansion. +;") +; (license license:bsd-2))) +; +;(define-public go-github-com-mitchellh-mapstructure-1.4.1 +; (package +; (name "go-github-com-mitchellh-mapstructure") +; (version "1.4.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mitchellh/mapstructure") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1m98wiadb6kdnzv21m8p7nk1jb30zpjh47fkb1dg251r3m7bj47v")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mitchellh/mapstructure")) +; (home-page "https://github.com/mitchellh/mapstructure") +; (synopsis "mapstructure") +; (description +; "Package mapstructure exposes functionality to convert one arbitrary +;Go type into another, typically to convert a map[string]interface{} +;into a native Go structure. +;") +; (license license:expat))) +; +;(define-public go-github-com-pelletier-go-toml-1.9.3 +; (package +; (name "go-github-com-pelletier-go-toml") +; (version "1.9.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/pelletier/go-toml") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0cqwnvlgs1wgdgjxlwv8j52f7d6syniadr51sjh2fya99m5wzvsn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/pelletier/go-toml")) +; (home-page "https://github.com/pelletier/go-toml") +; (synopsis "go-toml") +; (description "Package toml is a TOML parser and manipulation library. +;") +; (license #f))) +; +;(define-public go-github-com-gopherjs-gopherjs-0.0.0-20181017120253-0766667cb4d1 +; (package +; (name "go-github-com-gopherjs-gopherjs") +; (version "0.0.0-20181017120253-0766667cb4d1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/gopherjs/gopherjs") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "13pfc9sxiwjky2lm1xb3i3lcisn8p6mgjk2d927l7r92ysph8dmw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/gopherjs/gopherjs")) +; (home-page "https://github.com/gopherjs/gopherjs") +; (synopsis "GopherJS - A compiler from Go to JavaScript") +; (description +; "GopherJS compiles Go code (@url{https://golang.org/,golang.org}) to pure JavaScript code. Its main purpose is to give you the opportunity to write front-end code in Go which will still run in all browsers.") +; (license license:bsd-2))) +; +;(define-public go-github-com-jtolds-gls-4.20.0+incompatible +; (package +; (name "go-github-com-jtolds-gls") +; (version "4.20.0+incompatible") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/jtolio/gls") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1k7xd2q2ysv2xsh373qs801v6f359240kx0vrl0ydh7731lngvk6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/jtolds/gls")) +; (home-page "https://github.com/jtolds/gls") +; (synopsis "gls") +; (description "Package gls implements goroutine-local storage. +;") +; (license license:expat))) +; +;(define-public go-github-com-smartystreets-assertions-0.0.0-20180927180507-b2de0cb4f26d +; (package +; (name "go-github-com-smartystreets-assertions") +; (version "0.0.0-20180927180507-b2de0cb4f26d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/smartystreets/assertions") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1i7ldgavgl35c7gk25p7bvdr282ckng090zr4ch9mk1705akx09y")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/smartystreets/assertions")) +; (home-page "https://github.com/smartystreets/assertions") +; (synopsis #f) +; (description +; "Package assertions contains the implementations for all assertions which +;are referenced in goconvey's `convey` package +;(github.com/smartystreets/goconvey/convey) and gunit (github.com/smartystreets/gunit) +;for use with the So(...) method. +;They can also be used in traditional Go test functions and even in +;applications. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-net-0.0.0-20190311183353-d8887717615a +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190311183353-d8887717615a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1wfm6ngxjyj7v5a2dqib6lw8bb2rdnf1kl48diykxjrsddn0s163")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20190328211700-ab21143f2384 +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20190328211700-ab21143f2384") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "15fk0psk53pplpyghz55bhay0kvsv5rikmn5hwgjnnyxq9vfy178")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-github-com-smartystreets-goconvey-1.6.4 +; (package +; (name "go-github-com-smartystreets-goconvey") +; (version "1.6.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/smartystreets/goconvey") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "07zjxwszayal88z1j2bwnqrsa32vg8l4nivks5yfr9j8xfsw7n6m")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/smartystreets/goconvey")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20190328211700-ab21143f2384" +; ,go-golang-org-x-tools-0.0.0-20190328211700-ab21143f2384) +; ("go-github-com-smartystreets-assertions-0.0.0-20180927180507-b2de0cb4f26d" +; ,go-github-com-smartystreets-assertions-0.0.0-20180927180507-b2de0cb4f26d) +; ("go-github-com-jtolds-gls-4.20.0+incompatible" +; ,go-github-com-jtolds-gls-4.20.0+incompatible) +; ("go-github-com-gopherjs-gopherjs-0.0.0-20181017120253-0766667cb4d1" +; ,go-github-com-gopherjs-gopherjs-0.0.0-20181017120253-0766667cb4d1))) +; (home-page "https://github.com/smartystreets/goconvey") +; (synopsis "GoConvey is awesome Go testing") +; (description +; "This executable provides an HTTP server that watches for file system changes +;to .go files within the working directory (and all nested go packages). +;Navigating to the configured host and port in a web browser will display the +;latest results of running `go test` in each go package. +;") +; (license license:expat))) +; +;(define-public go-github-com-kr-fs-0.1.0 +; (package +; (name "go-github-com-kr-fs") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kr/fs") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "11zg176x9hr9q7fsk95r6q0wf214gg4czy02slax4x56n79g6a7q")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kr/fs")) +; (home-page "https://github.com/kr/fs") +; (synopsis #f) +; (description "Package fs provides filesystem-related functions. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-pkg-errors-0.8.1 +; (package +; (name "go-github-com-pkg-errors") +; (version "0.8.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/pkg/errors") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0g5qcb4d4fd96midz0zdk8b9kz8xkzwfa8kr1cliqbg8sxsy5vd1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/pkg/errors")) +; (home-page "https://github.com/pkg/errors") +; (synopsis "errors") +; (description "Package errors provides simple error handling primitives. +;") +; (license license:bsd-2))) +; +;(define-public go-gopkg-in-yaml-v2-2.2.2 +; (package +; (name "go-gopkg-in-yaml-v2") +; (version "2.2.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/yaml.v2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "01wj12jzsdqlnidpyjssmj0r4yavlqy7dwrg7adqd8dicjc4ncsa")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" +; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) +; (home-page "https://gopkg.in/yaml.v2") +; (synopsis "YAML support for the Go language") +; (description "Package yaml implements YAML support for the Go language. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-stretchr-testify-1.4.0 +; (package +; (name "go-github-com-stretchr-testify") +; (version "1.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/testify") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "187i5g88sxfy4vxpm7dw1gwv29pa2qaq475lxrdh5livh69wqfjb")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/testify")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) +; ("go-github-com-stretchr-objx-0.1.0" +; ,go-github-com-stretchr-objx-0.1.0) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.0" +; ,go-github-com-davecgh-go-spew-1.1.0))) +; (home-page "https://github.com/stretchr/testify") +; (synopsis "Testify - Thou Shalt Write Tests") +; (description +; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +;") +; (license license:expat))) +; +;(define-public go-github-com-pkg-sftp-1.10.1 +; (package +; (name "go-github-com-pkg-sftp") +; (version "1.10.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/pkg/sftp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0iw6lijdljwh5xw5hsy0b578cr52h6vvm7hbnzlrvciwhh4sfhhp")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/pkg/sftp")) +; (propagated-inputs +; `(("go-golang-org-x-crypto-0.0.0-20190820162420-60c769a6c586" +; ,go-golang-org-x-crypto-0.0.0-20190820162420-60c769a6c586) +; ("go-github-com-stretchr-testify-1.4.0" +; ,go-github-com-stretchr-testify-1.4.0) +; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) +; ("go-github-com-kr-fs-0.1.0" ,go-github-com-kr-fs-0.1.0))) +; (home-page "https://github.com/pkg/sftp") +; (synopsis "sftp") +; (description +; "Package sftp implements the SSH File Transfer Protocol as described in +;@url{https://tools.ietf.org/html/draft-ietf-secsh-filexfer-02,https://tools.ietf.org/html/draft-ietf-secsh-filexfer-02} +;") +; (license license:bsd-2))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190215142949-d0b11bdaac8a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20190308221718-c2843e01d9a2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-text-0.3.0 +; (package +; (name "go-golang-org-x-text") +; (version "0.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/text") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/text")) +; (home-page "https://golang.org/x/text") +; (synopsis "Go Text") +; (description +; "text is a repository of text-related packages related to internationalization +;(i18n) and localization (l10n), such as character encodings, text +;transformations, and locale-specific text handling. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190404232315-eb5bcb51f2a3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "17k4g8krxbl84gzcs275b7gsh66dzm15fdxivjnx9xz8q84l4kby")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190412213103-97732733099d +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190412213103-97732733099d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "118hkp01i4z1f5h6hcjm0ff2ngqhrzj1f7731n0kw8dr6hvbx0sw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20190820162420-60c769a6c586 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20190820162420-60c769a6c586") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1wy2pg38dz29vf1h48yfqf8m3jqvwnbdw8vkk3ldlj5d8fbbbmv8")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" +; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) +; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" +; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20180917221912-90fa682c2a6e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-text-0.3.3 +; (package +; (name "go-golang-org-x-text") +; (version "0.3.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/text") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19pihqm3phyndmiw6i42pdv6z1rbvlqlsnhsyqf9gsnn0qnmqqlh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/text")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" +; ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) +; (home-page "https://golang.org/x/text") +; (synopsis "Go Text") +; (description +; "text is a repository of text-related packages related to internationalization +;(i18n) and localization (l10n), such as character encodings, text +;transformations, and locale-specific text handling. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-spf13-afero-1.6.0 +; (package +; (name "go-github-com-spf13-afero") +; (version "1.6.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/spf13/afero") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0yi8p0yxiidpcg4cagxg2iyqcaapsng89rak4qyxmgails2fqg37")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/spf13/afero")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) +; ("go-golang-org-x-crypto-0.0.0-20190820162420-60c769a6c586" +; ,go-golang-org-x-crypto-0.0.0-20190820162420-60c769a6c586) +; ("go-github-com-pkg-sftp-1.10.1" ,go-github-com-pkg-sftp-1.10.1))) +; (home-page "https://github.com/spf13/afero") +; (synopsis "Overview") +; (description +; "This package provides a FileSystem Abstraction System for Go") +; (license license:asl2.0))) +; +;(define-public go-github-com-spf13-cast-1.3.1 +; (package +; (name "go-github-com-spf13-cast") +; (version "1.3.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/spf13/cast") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0lb84788glr0qzrq2ifi36rgvp96qrgywvxrr3ggq5hrbr38hgn1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/spf13/cast")) +; (propagated-inputs +; `(("go-github-com-stretchr-testify-1.2.2" +; ,go-github-com-stretchr-testify-1.2.2) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://github.com/spf13/cast") +; (synopsis "cast") +; (description "Package cast provides easy and safe casting in Go. +;") +; (license license:expat))) +; +;(define-public go-github-com-davecgh-go-spew-1.1.1 +; (package +; (name "go-github-com-davecgh-go-spew") +; (version "1.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/davecgh/go-spew") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/davecgh/go-spew")) +; (home-page "https://github.com/davecgh/go-spew") +; (synopsis "go-spew") +; (description +; "Go-spew implements a deep pretty printer for Go data structures to aid in +;debugging. A comprehensive suite of tests with 100% test coverage is provided +;to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage +;report. Go-spew is licensed under the liberal ISC license, so it may be used in +;open source or commercial projects.") +; (license license:isc))) +; +;(define-public go-github-com-stretchr-testify-1.2.2 +; (package +; (name "go-github-com-stretchr-testify") +; (version "1.2.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/testify") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0dlszlshlxbmmfxj5hlwgv3r22x0y1af45gn1vd198nvvs3pnvfs")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/testify")) +; (home-page "https://github.com/stretchr/testify") +; (synopsis "Testify - Thou Shalt Write Tests") +; (description +; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +;") +; (license license:expat))) +; +;(define-public go-github-com-spf13-jwalterweatherman-1.1.0 +; (package +; (name "go-github-com-spf13-jwalterweatherman") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/spf13/jwalterweatherman") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ywmkwci5zyd88ijym6f30fj5c0k2yayxarkmnazf5ybljv50q7b")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/spf13/jwalterweatherman")) +; (propagated-inputs +; `(("go-github-com-stretchr-testify-1.2.2" +; ,go-github-com-stretchr-testify-1.2.2) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://github.com/spf13/jwalterweatherman") +; (synopsis "jWalterWeatherman") +; (description +; "Seamless printing to the terminal (stdout) and logging to a io.Writer +;(file) thatâ\x80\x99s as easy to use as fmt.Println.") +; (license license:expat))) +; +;(define-public go-github-com-spf13-pflag-1.0.5 +; (package +; (name "go-github-com-spf13-pflag") +; (version "1.0.5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/spf13/pflag") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0gpmacngd0gpslnbkzi263f5ishigzgh6pbdv9hp092rnjl4nd31")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/spf13/pflag")) +; (home-page "https://github.com/spf13/pflag") +; (synopsis "Description") +; (description +; "Package pflag is a drop-in replacement for Go's flag package, implementing +;POSIX/GNU-style --flags. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-davecgh-go-spew-1.1.0 +; (package +; (name "go-github-com-davecgh-go-spew") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/davecgh/go-spew") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/davecgh/go-spew")) +; (home-page "https://github.com/davecgh/go-spew") +; (synopsis "go-spew") +; (description +; "Go-spew implements a deep pretty printer for Go data structures to aid in +;debugging. A comprehensive suite of tests with 100% test coverage is provided +;to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage +;report. Go-spew is licensed under the liberal ISC license, so it may be used in +;open source or commercial projects.") +; (license license:isc))) +; +;(define-public go-github-com-pmezard-go-difflib-1.0.0 +; (package +; (name "go-github-com-pmezard-go-difflib") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/pmezard/go-difflib") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/pmezard/go-difflib")) +; (home-page "https://github.com/pmezard/go-difflib") +; (synopsis "go-difflib") +; (description +; "Go-difflib is a partial port of python 3 difflib package. Its main goal +;was to make unified and context diff available in pure Go, mostly for +;testing purposes.") +; (license license:bsd-3))) +; +;(define-public go-github-com-stretchr-objx-0.1.0 +; (package +; (name "go-github-com-stretchr-objx") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/objx") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/objx")) +; (home-page "https://github.com/stretchr/objx") +; (synopsis "Objx") +; (description +; "Objx - Go package for dealing with maps, slices, JSON and other data. +;") +; (license license:expat))) +; +;(define-public go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c +; (package +; (name "go-gopkg-in-yaml-v3") +; (version "3.0.0-20200313102051-9f266ea9e77c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/yaml.v3") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1bbai3lzb50m0x2vwsdbagrbhvfylj9k1m32hgbqwldqx4p9ay35")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" +; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) +; (home-page "https://gopkg.in/yaml.v3") +; (synopsis "YAML support for the Go language") +; (description "Package yaml implements YAML support for the Go language. +;") +; (license #f))) +; +;(define-public go-github-com-stretchr-testify-1.7.0 +; (package +; (name "go-github-com-stretchr-testify") +; (version "1.7.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/testify") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ixgjsvafr3513pz3r6pmgk074s2dxkll0dadvl25gkf30rkmh10")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/testify")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" +; ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) +; ("go-github-com-stretchr-objx-0.1.0" +; ,go-github-com-stretchr-objx-0.1.0) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.0" +; ,go-github-com-davecgh-go-spew-1.1.0))) +; (home-page "https://github.com/stretchr/testify") +; (synopsis "Testify - Thou Shalt Write Tests") +; (description +; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +;") +; (license license:expat))) +; +;(define-public go-github-com-subosito-gotenv-1.2.0 +; (package +; (name "go-github-com-subosito-gotenv") +; (version "1.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/subosito/gotenv") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0mav91j7r4arjkpq5zcf9j74f6pww8ic53x43wy7kg3ibw31yjs5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/subosito/gotenv")) +; (home-page "https://github.com/subosito/gotenv") +; (synopsis "gotenv") +; (description +; "Package gotenv provides functionality to dynamically load the environment variables +;") +; (license license:expat))) +; +;(define-public go-gopkg-in-ini-v1-1.62.0 +; (package +; (name "go-gopkg-in-ini-v1") +; (version "1.62.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/ini.v1") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1dm9ydqyflasp5li22kb0w73s6kp2swii8naqfhnz64v171gmm5v")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/ini.v1" #:unpack-path "gopkg.in/ini.v1")) +; (home-page "https://gopkg.in/ini.v1") +; (synopsis "INI") +; (description +; "Package ini provides INI file read and write functionality in Go. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-spf13-viper-1.8.1 +; (package +; (name "go-github-com-spf13-viper") +; (version "1.8.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/spf13/viper") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0jcsvd9l05pv10rma6zicp44q2mlvxj0qlhnf4zcg2pymb5i0hq6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/spf13/viper")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) +; ("go-gopkg-in-ini-v1-1.62.0" ,go-gopkg-in-ini-v1-1.62.0) +; ("go-github-com-subosito-gotenv-1.2.0" +; ,go-github-com-subosito-gotenv-1.2.0) +; ("go-github-com-stretchr-testify-1.7.0" +; ,go-github-com-stretchr-testify-1.7.0) +; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) +; ("go-github-com-spf13-jwalterweatherman-1.1.0" +; ,go-github-com-spf13-jwalterweatherman-1.1.0) +; ("go-github-com-spf13-cast-1.3.1" ,go-github-com-spf13-cast-1.3.1) +; ("go-github-com-spf13-afero-1.6.0" ,go-github-com-spf13-afero-1.6.0) +; ("go-github-com-smartystreets-goconvey-1.6.4" +; ,go-github-com-smartystreets-goconvey-1.6.4) +; ("go-github-com-pelletier-go-toml-1.9.3" +; ,go-github-com-pelletier-go-toml-1.9.3) +; ("go-github-com-mitchellh-mapstructure-1.4.1" +; ,go-github-com-mitchellh-mapstructure-1.4.1) +; ("go-github-com-magiconair-properties-1.8.5" +; ,go-github-com-magiconair-properties-1.8.5) +; ("go-github-com-hashicorp-hcl-1.0.0" +; ,go-github-com-hashicorp-hcl-1.0.0) +; ("go-github-com-fsnotify-fsnotify-1.4.9" +; ,go-github-com-fsnotify-fsnotify-1.4.9) +; ("go-github-com-bketelsen-crypt-0.0.4" +; ,go-github-com-bketelsen-crypt-0.0.4))) +; (home-page "https://github.com/spf13/viper") +; (synopsis "Install") +; (description "Many Go projects are built using Viper including:") +; (license license:expat))) +; +;(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 +; (package +; (name "go-gopkg-in-check-v1") +; (version "0.0.0-20161208181325-20d25e280405") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/check.v1") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) +; (home-page "https://gopkg.in/check.v1") +; (synopsis "Instructions") +; (description +; "Package check is a rich testing extension for Go's testing package. +;") +; (license license:bsd-2))) +; +;(define-public go-gopkg-in-yaml-v2-2.4.0 +; (package +; (name "go-gopkg-in-yaml-v2") +; (version "2.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/yaml.v2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1pbmrpj7gcws34g8vwna4i2nhm9p6235piww36436xhyaa10cldr")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" +; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) +; (home-page "https://gopkg.in/yaml.v2") +; (synopsis "YAML support for the Go language") +; (description "Package yaml implements YAML support for the Go language. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-spf13-cobra-1.2.1 +; (package +; (name "go-github-com-spf13-cobra") +; (version "1.2.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/spf13/cobra") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "091kz3xnlsgpqb90fc5nhjr4yfr8b8sjnyl0zd4wm1fgzkpw09jh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/spf13/cobra")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) +; ("go-github-com-spf13-viper-1.8.1" ,go-github-com-spf13-viper-1.8.1) +; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) +; ("go-github-com-inconshreveable-mousetrap-1.0.0" +; ,go-github-com-inconshreveable-mousetrap-1.0.0) +; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" +; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0))) +; (home-page "https://github.com/spf13/cobra") +; (synopsis "Table of Contents") +; (description +; "Package cobra is a commander providing a simple interface to create powerful modern CLI interfaces. +;In addition to providing an interface, Cobra simultaneously provides a controller to organize your application code. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-spf13-pflag-1.0.5 +; (package +; (name "go-github-com-spf13-pflag") +; (version "1.0.5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/spf13/pflag") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0gpmacngd0gpslnbkzi263f5ishigzgh6pbdv9hp092rnjl4nd31")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/spf13/pflag")) +; (home-page "https://github.com/spf13/pflag") +; (synopsis "Description") +; (description +; "Package pflag is a drop-in replacement for Go's flag package, implementing +;POSIX/GNU-style --flags. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-sylabs-json-resp-0.8.0 +; (package +; (name "go-github-com-sylabs-json-resp") +; (version "0.8.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/sylabs/json-resp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ygr4mavaj1pp78hkkphhn3ydd923n3klwnx8x7v4ajqzx4cx4id")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/sylabs/json-resp")) +; (home-page "https://github.com/sylabs/json-resp") +; (synopsis "JSON Response") +; (description +; "The @code{json-resp} package contains a small set of functions that are used to marshall and unmarshall response data and errors in JSON format.") +; (license license:bsd-3))) +; +;(define-public go-github-com-go-log-log-0.2.0 +; (package +; (name "go-github-com-go-log-log") +; (version "0.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/go-log/log") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1idnqv4yvkmdh3wcsgvhcpak9z6ix8dsifdjq5kfbbnskdq5rmvg")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/go-log/log")) +; (home-page "https://github.com/go-log/log") +; (synopsis "Log") +; (description "Package log provides a log interface +;") +; (license license:expat))) +; +;(define-public go-github-com-gorilla-websocket-1.4.2 +; (package +; (name "go-github-com-gorilla-websocket") +; (version "1.4.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/gorilla/websocket") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0mkm9w6kjkrlzab5wh8p4qxkc0icqawjbvr01d2nk6ykylrln40s")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/gorilla/websocket")) +; (home-page "https://github.com/gorilla/websocket") +; (synopsis "Gorilla WebSocket") +; (description +; "Package websocket implements the WebSocket protocol defined in @url{https://rfc-editor.org/rfc/rfc6455.html,RFC 6455}. +;") +; (license license:bsd-2))) +; +;(define-public go-github-com-sylabs-json-resp-0.8.0 +; (package +; (name "go-github-com-sylabs-json-resp") +; (version "0.8.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/sylabs/json-resp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ygr4mavaj1pp78hkkphhn3ydd923n3klwnx8x7v4ajqzx4cx4id")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/sylabs/json-resp")) +; (home-page "https://github.com/sylabs/json-resp") +; (synopsis "JSON Response") +; (description +; "The @code{json-resp} package contains a small set of functions that are used to marshall and unmarshall response data and errors in JSON format.") +; (license license:bsd-3))) +; +;(define-public go-github-com-sylabs-scs-build-client-0.2.1 +; (package +; (name "go-github-com-sylabs-scs-build-client") +; (version "0.2.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/sylabs/scs-build-client") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1brn8w73978hvgrzqm0lsxflb5vp7g5b32bmgfb1diymd2ajlqhv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/sylabs/scs-build-client")) +; (propagated-inputs +; `(("go-github-com-sylabs-json-resp-0.8.0" +; ,go-github-com-sylabs-json-resp-0.8.0) +; ("go-github-com-gorilla-websocket-1.4.2" +; ,go-github-com-gorilla-websocket-1.4.2) +; ("go-github-com-go-log-log-0.2.0" ,go-github-com-go-log-log-0.2.0))) +; (home-page "https://github.com/sylabs/scs-build-client") +; (synopsis "SCS Build Client") +; (description +; "This project provides a Go client for the Singularity Container Services (SCS) Build Service.") +; (license license:bsd-3))) +; +;(define-public go-github-com-sylabs-json-resp-0.7.1 +; (package +; (name "go-github-com-sylabs-json-resp") +; (version "0.7.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/sylabs/json-resp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1fj07wgc9s8xmy04hdgmb87r4fl968y6kxgxyh0lx3b1mf9xa2dw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/sylabs/json-resp")) +; (home-page "https://github.com/sylabs/json-resp") +; (synopsis "JSON Response") +; (description +; "The @code{json-resp} package contains a small set of functions that are used to marshall and unmarshall response data and errors in JSON format.") +; (license license:bsd-3))) +; +;(define-public go-github-com-sylabs-scs-key-client-0.6.2 +; (package +; (name "go-github-com-sylabs-scs-key-client") +; (version "0.6.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/sylabs/scs-key-client") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "18giffs0ybfr5zw64xlqf9isr3apgh2r3s2fwf0n8d7n21yjg151")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/sylabs/scs-key-client")) +; (propagated-inputs +; `(("go-github-com-sylabs-json-resp-0.7.1" +; ,go-github-com-sylabs-json-resp-0.7.1))) +; (home-page "https://github.com/sylabs/scs-key-client") +; (synopsis "SCS Key Client") +; (description +; "This project provides a Go client for the Singularity Container Services (SCS) Key Service.") +; (license license:bsd-3))) +; +;(define-public go-github-com-blang-semver-v4-4.0.0 +; (package +; (name "go-github-com-blang-semver-v4") +; (version "4.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/blang/semver") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "14h9ys4n4kx9cbj42lkdf4i5k3nkll6sd62jcvl7cs565v6fiknz")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/blang/semver/v4")) +; (home-page "https://github.com/blang/semver") +; (synopsis #f) +; (description #f) +; (license license:expat))) +; +;(define-public go-github-com-go-log-log-0.2.0 +; (package +; (name "go-github-com-go-log-log") +; (version "0.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/go-log/log") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1idnqv4yvkmdh3wcsgvhcpak9z6ix8dsifdjq5kfbbnskdq5rmvg")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/go-log/log")) +; (home-page "https://github.com/go-log/log") +; (synopsis "Log") +; (description "Package log provides a log interface +;") +; (license license:expat))) +; +;(define-public go-github-com-davecgh-go-spew-1.1.0 +; (package +; (name "go-github-com-davecgh-go-spew") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/davecgh/go-spew") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/davecgh/go-spew")) +; (home-page "https://github.com/davecgh/go-spew") +; (synopsis "go-spew") +; (description +; "Go-spew implements a deep pretty printer for Go data structures to aid in +;debugging. A comprehensive suite of tests with 100% test coverage is provided +;to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage +;report. Go-spew is licensed under the liberal ISC license, so it may be used in +;open source or commercial projects.") +; (license license:isc))) +; +;(define-public go-github-com-pmezard-go-difflib-1.0.0 +; (package +; (name "go-github-com-pmezard-go-difflib") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/pmezard/go-difflib") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/pmezard/go-difflib")) +; (home-page "https://github.com/pmezard/go-difflib") +; (synopsis "go-difflib") +; (description +; "Go-difflib is a partial port of python 3 difflib package. Its main goal +;was to make unified and context diff available in pure Go, mostly for +;testing purposes.") +; (license license:bsd-3))) +; +;(define-public go-github-com-stretchr-objx-0.1.0 +; (package +; (name "go-github-com-stretchr-objx") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/objx") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/objx")) +; (home-page "https://github.com/stretchr/objx") +; (synopsis "Objx") +; (description +; "Objx - Go package for dealing with maps, slices, JSON and other data. +;") +; (license license:expat))) +; +;(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 +; (package +; (name "go-gopkg-in-check-v1") +; (version "0.0.0-20161208181325-20d25e280405") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/check.v1") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) +; (home-page "https://gopkg.in/check.v1") +; (synopsis "Instructions") +; (description +; "Package check is a rich testing extension for Go's testing package. +;") +; (license license:bsd-2))) +; +;(define-public go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c +; (package +; (name "go-gopkg-in-yaml-v3") +; (version "3.0.0-20200313102051-9f266ea9e77c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/yaml.v3") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1bbai3lzb50m0x2vwsdbagrbhvfylj9k1m32hgbqwldqx4p9ay35")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" +; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) +; (home-page "https://gopkg.in/yaml.v3") +; (synopsis "YAML support for the Go language") +; (description "Package yaml implements YAML support for the Go language. +;") +; (license #f))) +; +;(define-public go-github-com-stretchr-testify-1.7.0 +; (package +; (name "go-github-com-stretchr-testify") +; (version "1.7.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/testify") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ixgjsvafr3513pz3r6pmgk074s2dxkll0dadvl25gkf30rkmh10")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/testify")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" +; ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) +; ("go-github-com-stretchr-objx-0.1.0" +; ,go-github-com-stretchr-objx-0.1.0) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.0" +; ,go-github-com-davecgh-go-spew-1.1.0))) +; (home-page "https://github.com/stretchr/testify") +; (synopsis "Testify - Thou Shalt Write Tests") +; (description +; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +;") +; (license license:expat))) +; +;(define-public go-github-com-sylabs-json-resp-0.7.1 +; (package +; (name "go-github-com-sylabs-json-resp") +; (version "0.7.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/sylabs/json-resp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1fj07wgc9s8xmy04hdgmb87r4fl968y6kxgxyh0lx3b1mf9xa2dw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/sylabs/json-resp")) +; (home-page "https://github.com/sylabs/json-resp") +; (synopsis "JSON Response") +; (description +; "The @code{json-resp} package contains a small set of functions that are used to marshall and unmarshall response data and errors in JSON format.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a +; (package +; (name "go-golang-org-x-sync") +; (version "0.0.0-20200317015054-43a5402ce75a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sync") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0j6zrrb81qjr1926kkwmn0di9a0jn8qyjd9dw614rfkihxgq1vsm")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sync")) +; (home-page "https://golang.org/x/sync") +; (synopsis "Go Sync") +; (description +; "This repository provides Go concurrency primitives in addition to the +;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") +; (license license:bsd-3))) +; +;(define-public go-github-com-sylabs-scs-library-client-1.0.5 +; (package +; (name "go-github-com-sylabs-scs-library-client") +; (version "1.0.5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/sylabs/scs-library-client") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1dr8x33gaqm7a6q2hha2v2dyqlnhjig9kmmgarrr0a16z2rpdv0l")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/sylabs/scs-library-client")) +; (propagated-inputs +; `(("go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a" +; ,go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a) +; ("go-github-com-sylabs-json-resp-0.7.1" +; ,go-github-com-sylabs-json-resp-0.7.1) +; ("go-github-com-stretchr-testify-1.7.0" +; ,go-github-com-stretchr-testify-1.7.0) +; ("go-github-com-go-log-log-0.2.0" ,go-github-com-go-log-log-0.2.0) +; ("go-github-com-blang-semver-v4-4.0.0" +; ,go-github-com-blang-semver-v4-4.0.0))) +; (home-page "https://github.com/sylabs/scs-library-client") +; (synopsis "SCS Library Client") +; (description +; "This project provides a Go client for the Singularity Container Services (SCS) Library Service.") +; (license license:bsd-3))) +; +;(define-public go-github-com-burntsushi-toml-0.3.1 +; (package +; (name "go-github-com-burntsushi-toml") +; (version "0.3.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/BurntSushi/toml") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1fjdwwfzyzllgiwydknf1pwjvy49qxfsczqx5gz3y0izs7as99j6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/BurntSushi/toml")) +; (home-page "https://github.com/BurntSushi/toml") +; (synopsis "TOML parser and encoder for Go with reflection") +; (description +; "Package toml implements decoding and encoding of TOML files. +;") +; (license license:expat))) +; +;(define-public go-github-com-pmezard-go-difflib-1.0.0 +; (package +; (name "go-github-com-pmezard-go-difflib") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/pmezard/go-difflib") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/pmezard/go-difflib")) +; (home-page "https://github.com/pmezard/go-difflib") +; (synopsis "go-difflib") +; (description +; "Go-difflib is a partial port of python 3 difflib package. Its main goal +;was to make unified and context diff available in pure Go, mostly for +;testing purposes.") +; (license license:bsd-3))) +; +;(define-public go-github-com-russross-blackfriday-v2-2.0.1 +; (package +; (name "go-github-com-russross-blackfriday-v2") +; (version "2.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/russross/blackfriday") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0nlz7isdd4rgnwzs68499hlwicxz34j2k2a0b8jy0y7ycd2bcr5j")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/russross/blackfriday/v2")) +; (home-page "https://github.com/russross/blackfriday") +; (synopsis "Blackfriday") +; (description "Package blackfriday is a markdown processor. +;") +; (license license:bsd-2))) +; +;(define-public go-github-com-shurcool-sanitized-anchor-name-1.0.0 +; (package +; (name "go-github-com-shurcool-sanitized-anchor-name") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/shurcooL/sanitized_anchor_name") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1gv9p2nr46z80dnfjsklc6zxbgk96349sdsxjz05f3z6wb6m5l8f")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/shurcooL/sanitized_anchor_name")) +; (home-page "https://github.com/shurcooL/sanitized_anchor_name") +; (synopsis "sanitized_anchor_name") +; (description +; "Package sanitized_anchor_name provides a func to create sanitized anchor names. +;") +; (license license:expat))) +; +;(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d +; (package +; (name "go-github-com-cpuguy83-go-md2man-v2") +; (version "2.0.0-20190314233015-f79a8a8ca69d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/cpuguy83/go-md2man") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) +; (propagated-inputs +; `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" +; ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) +; ("go-github-com-russross-blackfriday-v2-2.0.1" +; ,go-github-com-russross-blackfriday-v2-2.0.1) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0))) +; (home-page "https://github.com/cpuguy83/go-md2man") +; (synopsis "go-md2man") +; (description "Converts markdown into roff (man pages).") +; (license license:expat))) +; +;(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 +; (package +; (name "go-gopkg-in-check-v1") +; (version "0.0.0-20161208181325-20d25e280405") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/check.v1") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) +; (home-page "https://gopkg.in/check.v1") +; (synopsis "Instructions") +; (description +; "Package check is a rich testing extension for Go's testing package. +;") +; (license license:bsd-2))) +; +;(define-public go-gopkg-in-yaml-v2-2.2.2 +; (package +; (name "go-gopkg-in-yaml-v2") +; (version "2.2.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/yaml.v2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "01wj12jzsdqlnidpyjssmj0r4yavlqy7dwrg7adqd8dicjc4ncsa")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" +; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) +; (home-page "https://gopkg.in/yaml.v2") +; (synopsis "YAML support for the Go language") +; (description "Package yaml implements YAML support for the Go language. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-urfave-cli-1.22.5 +; (package +; (name "go-github-com-urfave-cli") +; (version "1.22.5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/urfave/cli") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1n8lk58j7bdsp47yh5bcpsw38lhkbyzcy3203ffkawc2rvkf1pp7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/urfave/cli")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) +; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d" +; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d) +; ("go-github-com-burntsushi-toml-0.3.1" +; ,go-github-com-burntsushi-toml-0.3.1))) +; (home-page "https://github.com/urfave/cli") +; (synopsis "cli") +; (description +; "Package cli provides a minimal framework for creating and organizing command line +;Go applications. cli is designed to be easy to understand and write, the most simple +;cli application can be written as follows: +;") +; (license license:expat))) +; +;(define-public go-github-com-vividcortex-ewma-1.1.1 +; (package +; (name "go-github-com-vividcortex-ewma") +; (version "1.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/VividCortex/ewma") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "14v2dy5gqchjn7k0sd6cx59ms42v681r6xz7cb1kspp4b28a74rw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/VividCortex/ewma")) +; (home-page "https://github.com/VividCortex/ewma") +; (synopsis "EWMA") +; (description +; "Package ewma implements exponentially weighted moving averages. +;") +; (license license:expat))) +; +;(define-public go-github-com-acarl005-stripansi-0.0.0-20180116102854-5a71ef0e047d +; (package +; (name "go-github-com-acarl005-stripansi") +; (version "0.0.0-20180116102854-5a71ef0e047d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/acarl005/stripansi") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "02sxiishdixm791jqbkmhdcvc712l0fb8rqmibxzgc61h0qs6rs3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/acarl005/stripansi")) +; (home-page "https://github.com/acarl005/stripansi") +; (synopsis "Strip ANSI") +; (description "This Go package removes ANSI escape codes from strings.") +; (license license:expat))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190215142949-d0b11bdaac8a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20190308221718-c2843e01d9a2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-text-0.3.0 +; (package +; (name "go-golang-org-x-text") +; (version "0.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/text") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/text")) +; (home-page "https://golang.org/x/text") +; (synopsis "Go Text") +; (description +; "text is a repository of text-related packages related to internationalization +;(i18n) and localization (l10n), such as character encodings, text +;transformations, and locale-specific text handling. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190404232315-eb5bcb51f2a3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "17k4g8krxbl84gzcs275b7gsh66dzm15fdxivjnx9xz8q84l4kby")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190412213103-97732733099d +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190412213103-97732733099d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "118hkp01i4z1f5h6hcjm0ff2ngqhrzj1f7731n0kw8dr6hvbx0sw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20200214034016-1d94cc7ab1c6 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20200214034016-1d94cc7ab1c6") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1mkd0gc2p16nddr5b8a5rqkalnhik3cymnqy4wy53zvd7isg6r3x")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" +; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) +; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" +; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20200217220822-9197077df867 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20200217220822-9197077df867") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1270yyiqzlgrsygp2j0qavh4agm4xjv3ljfpk4wgqgmg4ph1lmx1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-vbauerster-mpb-v4-4.12.2 +; (package +; (name "go-github-com-vbauerster-mpb-v4") +; (version "4.12.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/vbauerster/mpb") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "13zq6zs5pv1gay3zzkwzc310rvsy1rf43lgq2l23nsyfkw1fx8fp")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/vbauerster/mpb/v4")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20200217220822-9197077df867" +; ,go-golang-org-x-sys-0.0.0-20200217220822-9197077df867) +; ("go-golang-org-x-crypto-0.0.0-20200214034016-1d94cc7ab1c6" +; ,go-golang-org-x-crypto-0.0.0-20200214034016-1d94cc7ab1c6) +; ("go-github-com-acarl005-stripansi-0.0.0-20180116102854-5a71ef0e047d" +; ,go-github-com-acarl005-stripansi-0.0.0-20180116102854-5a71ef0e047d) +; ("go-github-com-vividcortex-ewma-1.1.1" +; ,go-github-com-vividcortex-ewma-1.1.1))) +; (home-page "https://github.com/vbauerster/mpb") +; (synopsis "Multi Progress Bar") +; (description +; "Package mpb is a library for rendering progress bars in terminal applications. +;") +; (license license:unlicense))) +; +;(define-public go-github-com-vividcortex-ewma-1.2.0 +; (package +; (name "go-github-com-vividcortex-ewma") +; (version "1.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/VividCortex/ewma") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0whx516l9nm4n41spagb605ry7kfnz1qha96mcshnfjlahhnnylq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/VividCortex/ewma")) +; (home-page "https://github.com/VividCortex/ewma") +; (synopsis "EWMA") +; (description +; "Package ewma implements exponentially weighted moving averages. +;") +; (license license:expat))) +; +;(define-public go-github-com-acarl005-stripansi-0.0.0-20180116102854-5a71ef0e047d +; (package +; (name "go-github-com-acarl005-stripansi") +; (version "0.0.0-20180116102854-5a71ef0e047d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/acarl005/stripansi") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "02sxiishdixm791jqbkmhdcvc712l0fb8rqmibxzgc61h0qs6rs3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/acarl005/stripansi")) +; (home-page "https://github.com/acarl005/stripansi") +; (synopsis "Strip ANSI") +; (description "This Go package removes ANSI escape codes from strings.") +; (license license:expat))) +; +;(define-public go-github-com-rivo-uniseg-0.1.0 +; (package +; (name "go-github-com-rivo-uniseg") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/rivo/uniseg") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0flpc1px1l6b1lxzhdxi0mvpkkjchppvgxshxxnlmm40s76i9ww5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/rivo/uniseg")) +; (home-page "https://github.com/rivo/uniseg") +; (synopsis "Unicode Text Segmentation for Go") +; (description +; "Package uniseg implements Unicode Text Segmentation according to Unicode +;Standard Annex #29 (@url{http://unicode.org/reports/tr29/,http://unicode.org/reports/tr29/}). +;") +; (license license:expat))) +; +;(define-public go-github-com-mattn-go-runewidth-0.0.12 +; (package +; (name "go-github-com-mattn-go-runewidth") +; (version "0.0.12") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mattn/go-runewidth") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "10m8k25anr79mirr9azap3c3a7wxn67qk774xd8hhqa1ffbicxib")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mattn/go-runewidth")) +; (propagated-inputs +; `(("go-github-com-rivo-uniseg-0.1.0" ,go-github-com-rivo-uniseg-0.1.0))) +; (home-page "https://github.com/mattn/go-runewidth") +; (synopsis "go-runewidth") +; (description +; "This package provides functions to get fixed width of the character or string.") +; (license license:expat))) +; +;(define-public go-github-com-rivo-uniseg-0.2.0 +; (package +; (name "go-github-com-rivo-uniseg") +; (version "0.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/rivo/uniseg") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0j7h22vfmjj562vr8gpsyrkrwp1pq9ayh5fylv24skxb467g9f0q")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/rivo/uniseg")) +; (home-page "https://github.com/rivo/uniseg") +; (synopsis "Unicode Text Segmentation for Go") +; (description +; "Package uniseg implements Unicode Text Segmentation according to Unicode +;Standard Annex #29 (@url{http://unicode.org/reports/tr29/,http://unicode.org/reports/tr29/}). +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-sys-0.0.0-20210514084401-e8d321eab015 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20210514084401-e8d321eab015") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0r4kz2mdfrr0853qmbaiqpj5mqscfjy6za6kqmrw7lv9h7xwqbc4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-vbauerster-mpb-v6-6.0.4 +; (package +; (name "go-github-com-vbauerster-mpb-v6") +; (version "6.0.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/vbauerster/mpb") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0b3p380pbhlp9qiv794ppwjwsl2k37hzp6k5ic4jx4wmdqlxzbyp")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/vbauerster/mpb/v6")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20210514084401-e8d321eab015" +; ,go-golang-org-x-sys-0.0.0-20210514084401-e8d321eab015) +; ("go-github-com-rivo-uniseg-0.2.0" ,go-github-com-rivo-uniseg-0.2.0) +; ("go-github-com-mattn-go-runewidth-0.0.12" +; ,go-github-com-mattn-go-runewidth-0.0.12) +; ("go-github-com-acarl005-stripansi-0.0.0-20180116102854-5a71ef0e047d" +; ,go-github-com-acarl005-stripansi-0.0.0-20180116102854-5a71ef0e047d) +; ("go-github-com-vividcortex-ewma-1.2.0" +; ,go-github-com-vividcortex-ewma-1.2.0))) +; (home-page "https://github.com/vbauerster/mpb") +; (synopsis "Multi Progress Bar") +; (description +; "Package mpb is a library for rendering progress bars in terminal applications. +;") +; (license license:unlicense))) +; +;(define-public go-github-com-xeipuuv-gojsonpointer-0.0.0-20190905194746-02993c407bfb +; (package +; (name "go-github-com-xeipuuv-gojsonpointer") +; (version "0.0.0-20190905194746-02993c407bfb") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/xeipuuv/gojsonpointer") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0y7gmpgsm8c12ax4a0ij9srmd9d424iq224n172ckwfqf37amvzy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/xeipuuv/gojsonpointer")) +; (home-page "https://github.com/xeipuuv/gojsonpointer") +; (synopsis "gojsonpointer") +; (description "An implementation of JSON Pointer - Go language") +; (license license:asl2.0))) +; +;(define-public go-github-com-yvasiyarov-go-metrics-0.0.0-20150112132944-c25f46c4b940 +; (package +; (name "go-github-com-yvasiyarov-go-metrics") +; (version "0.0.0-20150112132944-c25f46c4b940") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/yvasiyarov/go-metrics") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0p1hx4ml4gzgyj8n0fg5lv8bq092zwg00n59lq8v8sphjc1h8i8d")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/yvasiyarov/go-metrics")) +; (home-page "https://github.com/yvasiyarov/go-metrics") +; (synopsis "go-metrics") +; (description "Go port of Coda Hale's Metrics library +;") +; (license #f))) +; +;(define-public go-github-com-yvasiyarov-gorelic-0.0.6 +; (package +; (name "go-github-com-yvasiyarov-gorelic") +; (version "0.0.6") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/yvasiyarov/gorelic") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0210d8z7l945611b5ynzjhnypqfdyr490ndrap13s4k5z1jgqjnb")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/yvasiyarov/gorelic")) +; (home-page "https://github.com/yvasiyarov/gorelic") +; (synopsis "GoRelic is deprecated in favour of") +; (description +; "Package gorelic is an New Relic agent implementation for Go runtime. It collect a lot of metrics about Go scheduler, garbage collector and memory allocator and send them to NewRelic. +;") +; (license license:bsd-2))) +; +;(define-public go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20160601141957-9c099fbc30e9 +; (package +; (name "go-github-com-yvasiyarov-newrelic-platform-go") +; (version "0.0.0-20160601141957-9c099fbc30e9") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/yvasiyarov/newrelic_platform_go") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0n6jap27qc7b7c37ck1gv9biq5nfl7y06jk0cqgc517yfnb4f07x")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/yvasiyarov/newrelic_platform_go")) +; (home-page "https://github.com/yvasiyarov/newrelic_platform_go") +; (synopsis "New Relic Platform Agent SDK for Go(golang)") +; (description +; "Package newrelic_platform_go is New Relic Platform Agent SDK for Go language. +;") +; (license license:bsd-2))) +; +;(define-public go-golang-org-x-sys-0.0.0-20210423082822-04245dca01da +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20210423082822-04245dca01da") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "11is2c5cpxk0gf2mxza2wpzfcf71fxb9b3in77f6w2q0pr68ykzx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20211112202133-69e39bad7dc2 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20211112202133-69e39bad7dc2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0yvg72fb037yh4xvjyfgrr8nsbz7nfiiksvq0a5922z255anamy6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.6" ,go-golang-org-x-text-0.3.6) +; ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" +; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) +; ("go-golang-org-x-sys-0.0.0-20210423082822-04245dca01da" +; ,go-golang-org-x-sys-0.0.0-20210423082822-04245dca01da))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20210615035016-665e8c7367d1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "11n848csibdbv7b46zjyf4l7sphg37n9sjzqfy1ds7p1jyakwmnv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20201119102817-f84b799fce68") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1dvhqian5byzkcg1bnqzygqa6ccc6krc2q7j12pp1vhl3y7znnsg")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1 +; (package +; (name "go-golang-org-x-term") +; (version "0.0.0-20201126162022-7de9c90e9dd1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/term") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ba252xmv6qsvf1w1gcy98mngrj0vd4inbjw0lsklqvva65nljna")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/term")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" +; ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) +; (home-page "https://golang.org/x/term") +; (synopsis "Go terminal/console support") +; (description +; "Package term provides support functions for dealing with terminals, as +;commonly found on UNIX systems. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20180917221912-90fa682c2a6e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-text-0.3.6 +; (package +; (name "go-golang-org-x-text") +; (version "0.3.6") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/text") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0wzhvdb059vrp2cczqw422ajrb9sbs4l3qd020hlngj33qfhxah0")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/text")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" +; ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) +; (home-page "https://golang.org/x/text") +; (synopsis "Go Text") +; (description +; "text is a repository of text-related packages related to internationalization +;(i18n) and localization (l10n), such as character encodings, text +;transformations, and locale-specific text handling. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20211117183948-ae814b36b871 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20211117183948-ae814b36b871") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "01d5llpsijgbgm8px6mhaknqwh8g707zc5i5744gcndr8w0649sk")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.6" ,go-golang-org-x-text-0.3.6) +; ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" +; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) +; ("go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1" +; ,go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1) +; ("go-golang-org-x-net-0.0.0-20211112202133-69e39bad7dc2" +; ,go-golang-org-x-net-0.0.0-20211112202133-69e39bad7dc2))) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20211004093028-2c5d950f24ef +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20211004093028-2c5d950f24ef") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "13ac9v54zgxrya9n2dvbmyafhd0rbmnkfb5zrcp96z8vzd9q8zfz")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 +; (package +; (name "go-gopkg-in-check-v1") +; (version "0.0.0-20161208181325-20d25e280405") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/check.v1") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) +; (home-page "https://gopkg.in/check.v1") +; (synopsis "Instructions") +; (description +; "Package check is a rich testing extension for Go's testing package. +;") +; (license license:bsd-2))) +; +;(define-public go-gopkg-in-yaml-v2-2.4.0 +; (package +; (name "go-gopkg-in-yaml-v2") +; (version "2.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/yaml.v2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1pbmrpj7gcws34g8vwna4i2nhm9p6235piww36436xhyaa10cldr")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" +; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) +; (home-page "https://gopkg.in/yaml.v2") +; (synopsis "YAML support for the Go language") +; (description "Package yaml implements YAML support for the Go language. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543 +; (package +; (name "go-golang-org-x-xerrors") +; (version "0.0.0-20191204190536-9bdfabe68543") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/xerrors") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1yjfi1bk9xb81lqn85nnm13zz725wazvrx3b50hx19qmwg7a4b0c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/xerrors")) +; (home-page "https://golang.org/x/xerrors") +; (synopsis #f) +; (description +; "Package xerrors implements functions to manipulate errors. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-google-go-cmp-0.4.0 +; (package +; (name "go-github-com-google-go-cmp") +; (version "0.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/go-cmp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1x5pvl3fb5sbyng7i34431xycnhmx8xx94gq2n19g6p0vz68z2v2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/go-cmp")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" +; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) +; (home-page "https://github.com/google/go-cmp") +; (synopsis "Package for equality of Go values") +; (description +; "This package is intended to be a more powerful and safer alternative to +;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") +; (license license:bsd-3))) +; +;(define-public go-github-com-pkg-errors-0.8.1 +; (package +; (name "go-github-com-pkg-errors") +; (version "0.8.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/pkg/errors") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0g5qcb4d4fd96midz0zdk8b9kz8xkzwfa8kr1cliqbg8sxsy5vd1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/pkg/errors")) +; (home-page "https://github.com/pkg/errors") +; (synopsis "errors") +; (description "Package errors provides simple error handling primitives. +;") +; (license license:bsd-2))) +; +;(define-public go-github-com-spf13-pflag-1.0.3 +; (package +; (name "go-github-com-spf13-pflag") +; (version "1.0.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/spf13/pflag") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1cj3cjm7d3zk0mf1xdybh0jywkbbw7a6yr3y22x9sis31scprswd")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/spf13/pflag")) +; (home-page "https://github.com/spf13/pflag") +; (synopsis "Description") +; (description +; "Package pflag is a drop-in replacement for Go's flag package, implementing +;POSIX/GNU-style --flags. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190215142949-d0b11bdaac8a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20190308221718-c2843e01d9a2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-text-0.3.0 +; (package +; (name "go-golang-org-x-text") +; (version "0.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/text") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/text")) +; (home-page "https://golang.org/x/text") +; (synopsis "Go Text") +; (description +; "text is a repository of text-related packages related to internationalization +;(i18n) and localization (l10n), such as character encodings, text +;transformations, and locale-specific text handling. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20190311183353-d8887717615a +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190311183353-d8887717615a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1wfm6ngxjyj7v5a2dqib6lw8bb2rdnf1kl48diykxjrsddn0s163")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sync-0.0.0-20190423024810-112230192c58 +; (package +; (name "go-golang-org-x-sync") +; (version "0.0.0-20190423024810-112230192c58") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sync") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "05i2k43j2d0llq768hg5pf3hb2yhfzp9la1w5wp0rsnnzblr0lfn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sync")) +; (home-page "https://golang.org/x/sync") +; (synopsis "Go Sync") +; (description +; "This repository provides Go concurrency primitives in addition to the +;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20190624222133-a101b041ded4 +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20190624222133-a101b041ded4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1pm50dybm5wixjjspvfpafjmiy81b1zp08h13gxc5cylrfgncrfl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" +; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-gotest-tools-v3-3.0.3 +; (package +; (name "go-gotest-tools-v3") +; (version "3.0.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/gotestyourself/gotest.tools") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1h316233n33lkfhbak8ljdj5i8df6hcwwm48n200svf22x3d95ww")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gotest.tools/v3" #:unpack-path "gotest.tools/v3")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20190624222133-a101b041ded4" +; ,go-golang-org-x-tools-0.0.0-20190624222133-a101b041ded4) +; ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) +; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0))) +; (home-page "https://gotest.tools/v3") +; (synopsis "gotest.tools") +; (description +; "Package gotesttools is a collection of packages to augment `testing` and +;support common patterns. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-microsoft-go-winio-0.4.17 +; (package +; (name "go-github-com-microsoft-go-winio") +; (version "0.4.17") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/microsoft/go-winio") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0gmgiak4x4gdyr17zm4b9vvharflk9pz5aj5jayh9hq50133b2f9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/Microsoft/go-winio")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" +; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) +; ("go-github-com-sirupsen-logrus-1.7.0" +; ,go-github-com-sirupsen-logrus-1.7.0) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) +; (home-page "https://github.com/Microsoft/go-winio") +; (synopsis "go-winio") +; (description +; "This repository contains utilities for efficiently performing Win32 IO operations in +;Go. Currently, this is focused on accessing named pipes and other file handles, and +;for using named pipes as a net transport.") +; (license license:expat))) +; +;(define-public go-github-com-cenkalti-backoff-v4-4.1.1 +; (package +; (name "go-github-com-cenkalti-backoff-v4") +; (version "4.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/cenkalti/backoff") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "08c28226q612i1pv83161y57qh16631vpc51ai9f76qfrzsy946z")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/cenkalti/backoff/v4")) +; (home-page "https://github.com/cenkalti/backoff") +; (synopsis "Exponential Backoff") +; (description +; "Package backoff implements backoff algorithms for retrying operations. +;") +; (license license:expat))) +; +;(define-public go-github-com-containerd-containerd-1.4.9 +; (package +; (name "go-github-com-containerd-containerd") +; (version "1.4.9") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/containerd") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ykikks6ihgg899ibk9m9m0hqrbss0cx7l7z4yjb873b10bacj52")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/containerd")) +; (home-page "https://github.com/containerd/containerd") +; (synopsis "Now Recruiting") +; (description +; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") +; (license license:asl2.0))) +; +;(define-public go-github-com-microsoft-hcsshim-0.8.23 +; (package +; (name "go-github-com-microsoft-hcsshim") +; (version "0.8.23") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/microsoft/hcsshim") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19gmwvq72vrlw6wvnmz4rjmg6r34c1nbqk71mj4bqq08rpi3i89r")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/Microsoft/hcsshim")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) +; ("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) +; ("go-golang-org-x-sys-0.0.0-20210324051608-47abb6519492" +; ,go-golang-org-x-sys-0.0.0-20210324051608-47abb6519492) +; ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" +; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) +; ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) +; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) +; ("go-github-com-sirupsen-logrus-1.8.1" +; ,go-github-com-sirupsen-logrus-1.8.1) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" +; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) +; ("go-github-com-gogo-protobuf-1.3.2" +; ,go-github-com-gogo-protobuf-1.3.2) +; ("go-github-com-containerd-typeurl-1.0.2" +; ,go-github-com-containerd-typeurl-1.0.2) +; ("go-github-com-containerd-ttrpc-1.1.0" +; ,go-github-com-containerd-ttrpc-1.1.0) +; ("go-github-com-containerd-go-runc-1.0.0" +; ,go-github-com-containerd-go-runc-1.0.0) +; ("go-github-com-containerd-fifo-1.0.0" +; ,go-github-com-containerd-fifo-1.0.0) +; ("go-github-com-containerd-continuity-0.1.0" +; ,go-github-com-containerd-continuity-0.1.0) +; ("go-github-com-containerd-containerd-1.4.9" +; ,go-github-com-containerd-containerd-1.4.9) +; ("go-github-com-containerd-console-1.0.2" +; ,go-github-com-containerd-console-1.0.2) +; ("go-github-com-containerd-cgroups-1.0.1" +; ,go-github-com-containerd-cgroups-1.0.1) +; ("go-github-com-cenkalti-backoff-v4-4.1.1" +; ,go-github-com-cenkalti-backoff-v4-4.1.1) +; ("go-github-com-microsoft-go-winio-0.4.17" +; ,go-github-com-microsoft-go-winio-0.4.17))) +; (home-page "https://github.com/Microsoft/hcsshim") +; (synopsis "hcsshim") +; (description +; "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") +; (license license:expat))) +; +;(define-public go-github-com-containerd-aufs-1.0.0 +; (package +; (name "go-github-com-containerd-aufs") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/aufs") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0jyyyf6sr910m602axmp4h4j1l2n680cpp60z09pvprz55zi4ba0")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/aufs")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" +; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" +; ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) +; ("go-github-com-containerd-containerd-1.5.0-beta.3" +; ,go-github-com-containerd-containerd-1.5.0-beta.3))) +; (home-page "https://github.com/containerd/aufs") +; (synopsis "aufs snapshotter") +; (description +; "AUFS implementation of the snapshot interface for containerd.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-btrfs-1.0.0 +; (package +; (name "go-github-com-containerd-btrfs") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/btrfs") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1yf38gg41y1v12m0cl81r9q7d13170a4npzqxhbz7qn32zr23kzn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/btrfs")) +; (propagated-inputs +; `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) +; (home-page "https://github.com/containerd/btrfs") +; (synopsis "go-btrfs") +; (description +; "Package btrfs provides bindings for working with btrfs partitions from Go. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-cilium-ebpf-0.4.0 +; (package +; (name "go-github-com-cilium-ebpf") +; (version "0.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/cilium/ebpf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1j33vfz8mxnqadkd17l0y3ll71gph3ndm8hwrwbwnf5px7bfv9yl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/cilium/ebpf")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" +; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) +; ("go-github-com-google-go-cmp-0.5.4" +; ,go-github-com-google-go-cmp-0.5.4) +; ("go-github-com-frankban-quicktest-1.11.3" +; ,go-github-com-frankban-quicktest-1.11.3))) +; (home-page "https://github.com/cilium/ebpf") +; (synopsis "eBPF") +; (description "Package ebpf is a toolkit for working with eBPF programs. +;") +; (license license:expat))) +; +;(define-public go-github-com-containerd-cgroups-1.0.1 +; (package +; (name "go-github-com-containerd-cgroups") +; (version "1.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/cgroups") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1p992w942xba9z77nhhbc6nk5q09c3zxxhq9n7fm5alx3a8fwbpl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/cgroups")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" +; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) +; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-sirupsen-logrus-1.7.0" +; ,go-github-com-sirupsen-logrus-1.7.0) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-runtime-spec-1.0.2" +; ,go-github-com-opencontainers-runtime-spec-1.0.2) +; ("go-github-com-gogo-protobuf-1.3.2" +; ,go-github-com-gogo-protobuf-1.3.2) +; ("go-github-com-godbus-dbus-v5-5.0.3" +; ,go-github-com-godbus-dbus-v5-5.0.3) +; ("go-github-com-docker-go-units-0.4.0" +; ,go-github-com-docker-go-units-0.4.0) +; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" +; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) +; ("go-github-com-coreos-go-systemd-v22-22.1.0" +; ,go-github-com-coreos-go-systemd-v22-22.1.0) +; ("go-github-com-cilium-ebpf-0.4.0" ,go-github-com-cilium-ebpf-0.4.0))) +; (home-page "https://github.com/containerd/cgroups") +; (synopsis "cgroups") +; (description +; "Go package for creating, managing, inspecting, and destroying cgroups. +;The resources format for settings on the cgroup uses the OCI runtime-spec found +;@url{https://github.com/opencontainers/runtime-spec,here}.") +; (license license:asl2.0))) +; +;(define-public go-github-com-mitchellh-go-homedir-1.1.0 +; (package +; (name "go-github-com-mitchellh-go-homedir") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mitchellh/go-homedir") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ydzkipf28hwj2bfxqmwlww47khyk6d152xax4bnyh60f4lq3nx1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mitchellh/go-homedir")) +; (home-page "https://github.com/mitchellh/go-homedir") +; (synopsis "go-homedir") +; (description +; "This is a Go library for detecting the user's home directory without +;the use of cgo, so the library can be used in cross-compilation environments.") +; (license license:expat))) +; +;(define-public go-github-com-armon-consul-api-0.0.0-20180202201655-eb2c6b5be1b6 +; (package +; (name "go-github-com-armon-consul-api") +; (version "0.0.0-20180202201655-eb2c6b5be1b6") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/armon/consul-api") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1j6fdr1sg36qy4n4xjl7brq739fpm5npq98cmvklzjc9qrx98nk9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/armon/consul-api")) +; (home-page "https://github.com/armon/consul-api") +; (synopsis "consul-api") +; (description +; " Please use @url{https://github.com/hashicorp/consul/tree/master/api,consul api package} instead. +;Godocs for that package @url{http://godoc.org/github.com/hashicorp/consul/api,are here}.") +; (license license:mpl2.0))) +; +;(define-public go-github-com-coreos-bbolt-1.3.2 +; (package +; (name "go-github-com-coreos-bbolt") +; (version "1.3.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/etcd-io/bbolt") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "13d5l6p6c5wvkr6vn9hkhz9c593qifn7fgx0hg4d6jcvg1y0bnm2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/coreos/bbolt")) +; (home-page "https://github.com/coreos/bbolt") +; (synopsis "bbolt") +; (description +; "package bbolt implements a low-level key/value store in pure Go. It supports +;fully serializable transactions, ACID semantics, and lock-free MVCC with +;multiple readers and a single writer. Bolt can be used for projects that +;want a simple data store without the need to add large dependencies such as +;Postgres or MySQL. +;") +; (license license:expat))) +; +;(define-public go-github-com-coreos-etcd-3.3.10+incompatible +; (package +; (name "go-github-com-coreos-etcd") +; (version "3.3.10+incompatible") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/etcd-io/etcd") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1x2ii1hj8jraba8rbxz6dmc03y3sjxdnzipdvg6fywnlq1f3l3wl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/coreos/etcd")) +; (home-page "https://github.com/coreos/etcd") +; (synopsis "etcd") +; (description +; "Package main is a simple wrapper of the real etcd entrypoint package +;(located at github.com/coreos/etcd/etcdmain) to ensure that etcd is still +;\"go getable\"; e.g. `go get github.com/coreos/etcd` works as expected and +;builds a binary in $GOBIN/etcd +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-golang-groupcache-0.0.0-20190129154638-5b532d6fd5ef +; (package +; (name "go-github-com-golang-groupcache") +; (version "0.0.0-20190129154638-5b532d6fd5ef") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/groupcache") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ls2i4ixyd4r2556j7c5jmlligjb35gfvxknrdn2abjmcahgqd6h")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/groupcache")) +; (home-page "https://github.com/golang/groupcache") +; (synopsis "groupcache") +; (description +; "Package groupcache provides a data loading mechanism with caching +;and de-duplication that works across a set of peer processes. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-gorilla-websocket-1.4.0 +; (package +; (name "go-github-com-gorilla-websocket") +; (version "1.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/gorilla/websocket") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "00i4vb31nsfkzzk7swvx3i75r2d960js3dri1875vypk3v2s0pzk")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/gorilla/websocket")) +; (home-page "https://github.com/gorilla/websocket") +; (synopsis "Gorilla WebSocket") +; (description +; "Package websocket implements the WebSocket protocol defined in @url{https://rfc-editor.org/rfc/rfc6455.html,RFC 6455}. +;") +; (license license:bsd-2))) +; +;(define-public go-github-com-grpc-ecosystem-go-grpc-middleware-1.0.0 +; (package +; (name "go-github-com-grpc-ecosystem-go-grpc-middleware") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc-ecosystem/go-grpc-middleware") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0lwgxih021xfhfb1xb9la5f98bpgpaiz63sbllx77qwwl2rmhrsp")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/grpc-ecosystem/go-grpc-middleware")) +; (home-page "https://github.com/grpc-ecosystem/go-grpc-middleware") +; (synopsis "Go gRPC Middleware") +; (description +; "`grpc_middleware` is a collection of gRPC middleware packages: interceptors, helpers and tools. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-grpc-ecosystem-grpc-gateway-1.9.0 +; (package +; (name "go-github-com-grpc-ecosystem-grpc-gateway") +; (version "1.9.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc-ecosystem/grpc-gateway") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1r4y48c76yxc2hpqszfjirvh7zxjb6z72qmk95li12ar79dhv3dy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/grpc-ecosystem/grpc-gateway")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.0.0-20170812160011-eb3733d160e7" +; ,go-gopkg-in-yaml-v2-2.0.0-20170812160011-eb3733d160e7) +; ("go-gopkg-in-resty-v1-1.12.0" ,go-gopkg-in-resty-v1-1.12.0) +; ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" +; ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) +; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) +; ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" +; ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) +; ("go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8" +; ,go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8) +; ("go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3" +; ,go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3) +; ("go-github-com-rogpeppe-fastuuid-0.0.0-20150106093220-6724a57986af" +; ,go-github-com-rogpeppe-fastuuid-0.0.0-20150106093220-6724a57986af) +; ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-ghodss-yaml-1.0.0" ,go-github-com-ghodss-yaml-1.0.0))) +; (home-page "https://github.com/grpc-ecosystem/grpc-gateway") +; (synopsis "grpc-gateway") +; (description +; "The grpc-gateway is a plugin of the Google protocol buffers compiler +;@url{https://github.com/protocolbuffers/protobuf,protoc}. +;It reads protobuf service definitions and generates a reverse-proxy server which +;translates a RESTful HTTP API into gRPC. This server is generated according to the +;@url{https://github.com/googleapis/googleapis/raw/master/google/api/http.proto#L46,(code google.api.http)} +;annotations in your service definitions.") +; (license license:bsd-3))) +; +;(define-public go-github-com-magiconair-properties-1.8.0 +; (package +; (name "go-github-com-magiconair-properties") +; (version "1.8.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/magiconair/properties") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1a10362wv8a8qwb818wygn2z48lgzch940hvpv81hv8gc747ajxn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/magiconair/properties")) +; (home-page "https://github.com/magiconair/properties") +; (synopsis "Overview") +; (description +; "Package properties provides functions for reading and writing +;ISO-8859-1 and UTF-8 encoded .properties files and has +;support for recursive property expansion. +;") +; (license license:bsd-2))) +; +;(define-public go-github-com-pelletier-go-toml-1.2.0 +; (package +; (name "go-github-com-pelletier-go-toml") +; (version "1.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/pelletier/go-toml") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1fjzpcjng60mc3a4b2ql5a00d5gah84wj740dabv9kq67mpg8fxy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/pelletier/go-toml")) +; (home-page "https://github.com/pelletier/go-toml") +; (synopsis "go-toml") +; (description "Package toml is a TOML parser and manipulation library. +;") +; (license #f))) +; +;(define-public go-github-com-prometheus-common-0.4.0 +; (package +; (name "go-github-com-prometheus-common") +; (version "0.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/common") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "00008pczafy982m59n1j31pnp41f4grbc2c40jccp52xg3m5klmr")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/common")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1) +; ("go-gopkg-in-alecthomas-kingpin-v2-2.2.6" +; ,go-gopkg-in-alecthomas-kingpin-v2-2.2.6) +; ("go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5" +; ,go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5) +; ("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" +; ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) +; ("go-golang-org-x-net-0.0.0-20181114220301-adae6a3d119a" +; ,go-golang-org-x-net-0.0.0-20181114220301-adae6a3d119a) +; ("go-github-com-sirupsen-logrus-1.2.0" +; ,go-github-com-sirupsen-logrus-1.2.0) +; ("go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d" +; ,go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d) +; ("go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910" +; ,go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910) +; ("go-github-com-prometheus-client-golang-0.9.1" +; ,go-github-com-prometheus-client-golang-0.9.1) +; ("go-github-com-pkg-errors-0.8.0" ,go-github-com-pkg-errors-0.8.0) +; ("go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223" +; ,go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223) +; ("go-github-com-matttproud-golang-protobuf-extensions-1.0.1" +; ,go-github-com-matttproud-golang-protobuf-extensions-1.0.1) +; ("go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515" +; ,go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515) +; ("go-github-com-julienschmidt-httprouter-1.2.0" +; ,go-github-com-julienschmidt-httprouter-1.2.0) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0) +; ("go-github-com-gogo-protobuf-1.1.1" +; ,go-github-com-gogo-protobuf-1.1.1) +; ("go-github-com-go-stack-stack-1.8.0" +; ,go-github-com-go-stack-stack-1.8.0) +; ("go-github-com-go-logfmt-logfmt-0.3.0" +; ,go-github-com-go-logfmt-logfmt-0.3.0) +; ("go-github-com-go-kit-kit-0.8.0" ,go-github-com-go-kit-kit-0.8.0) +; ("go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973" +; ,go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973) +; ("go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf" +; ,go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf) +; ("go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc" +; ,go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc))) +; (home-page "https://github.com/prometheus/common") +; (synopsis "Common") +; (description +; "This repository contains Go libraries that are shared across Prometheus +;components and libraries. They are considered internal to Prometheus, without +;any stability guarantees for external usage.") +; (license license:asl2.0))) +; +;(define-public go-github-com-prometheus-procfs-0.0.0-20190507164030-5867b95ac084 +; (package +; (name "go-github-com-prometheus-procfs") +; (version "0.0.0-20190507164030-5867b95ac084") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/procfs") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1rahdk62ajj4zpfb3mgzjqip773la9fb0m87m7s9a0b39l3fmzvr")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/procfs")) +; (propagated-inputs +; `(("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" +; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4))) +; (home-page "https://github.com/prometheus/procfs") +; (synopsis "procfs") +; (description +; "Package procfs provides functions to retrieve system, kernel and process +;metrics from the pseudo-filesystem proc. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-oneofone-xxhash-1.2.2 +; (package +; (name "go-github-com-oneofone-xxhash") +; (version "1.2.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/OneOfOne/xxhash") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1mjfhrwhvxa48rycjnqpqzm521i38h1hdyz6pdwmhd7xb8j6gwi6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/OneOfOne/xxhash")) +; (home-page "https://github.com/OneOfOne/xxhash") +; (synopsis "xxhash") +; (description +; "This is a native Go implementation of the excellent @url{https://github.com/Cyan4973/xxHash,xxhash}* algorithm, an extremely fast non-cryptographic Hash algorithm, working at speeds close to RAM limits.") +; (license license:asl2.0))) +; +;(define-public go-github-com-spaolacci-murmur3-0.0.0-20180118202830-f09979ecbc72 +; (package +; (name "go-github-com-spaolacci-murmur3") +; (version "0.0.0-20180118202830-f09979ecbc72") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/spaolacci/murmur3") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1lv3zyz3jy2d76bhvvs8svygx66606iygdvwy5cwc0p5z8yghq25")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/spaolacci/murmur3")) +; (home-page "https://github.com/spaolacci/murmur3") +; (synopsis "murmur3") +; (description +; "Package murmur3 implements Austin Appleby's non-cryptographic MurmurHash3. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-cespare-xxhash-1.1.0 +; (package +; (name "go-github-com-cespare-xxhash") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/cespare/xxhash") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1qyzlcdcayavfazvi03izx83fvip8h36kis44zr2sg7xf6sx6l4x")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/cespare/xxhash")) +; (propagated-inputs +; `(("go-github-com-spaolacci-murmur3-0.0.0-20180118202830-f09979ecbc72" +; ,go-github-com-spaolacci-murmur3-0.0.0-20180118202830-f09979ecbc72) +; ("go-github-com-oneofone-xxhash-1.2.2" +; ,go-github-com-oneofone-xxhash-1.2.2))) +; (home-page "https://github.com/cespare/xxhash") +; (synopsis "xxhash") +; (description +; "Package xxhash implements the 64-bit variant of xxHash (XXH64) as described +;at @url{http://cyan4973.github.io/xxHash/,http://cyan4973.github.io/xxHash/}. +;") +; (license license:expat))) +; +;(define-public go-github-com-dgryski-go-sip13-0.0.0-20181026042036-e10d5fee7954 +; (package +; (name "go-github-com-dgryski-go-sip13") +; (version "0.0.0-20181026042036-e10d5fee7954") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/dgryski/go-sip13") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "15fyibfas209ljz3f7g07kdmfbl3hhyd9n5n7aq5n5p9m5mn41d6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/dgryski/go-sip13")) +; (home-page "https://github.com/dgryski/go-sip13") +; (synopsis #f) +; (description #f) +; (license license:expat))) +; +;(define-public go-github-com-oklog-ulid-1.3.1 +; (package +; (name "go-github-com-oklog-ulid") +; (version "1.3.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/oklog/ulid") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0hybwyid820n80axrk863k2py93hbqlq6hxhf84ppmz0qd0ys0gq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/oklog/ulid")) +; (home-page "https://github.com/oklog/ulid") +; (synopsis "Universally Unique Lexicographically Sortable Identifier") +; (description +; "This package provides a Go port of @url{https://github.com/alizain/ulid,alizain/ulid} with binary format implemented.") +; (license license:asl2.0))) +; +;(define-public go-github-com-prometheus-common-0.0.0-20181113130724-41aa239b4cce +; (package +; (name "go-github-com-prometheus-common") +; (version "0.0.0-20181113130724-41aa239b4cce") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/common") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0spy10lwanqa5ynks9cagphkq74zz4b3jm4w59vvizdcw4fhd7s6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/common")) +; (home-page "https://github.com/prometheus/common") +; (synopsis "Common") +; (description +; "This repository contains Go libraries that are shared across Prometheus +;components and libraries. They are considered internal to Prometheus, without +;any stability guarantees for external usage.") +; (license license:asl2.0))) +; +;(define-public go-github-com-prometheus-tsdb-0.7.1 +; (package +; (name "go-github-com-prometheus-tsdb") +; (version "0.7.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus-junkyard/tsdb") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1c1da8i5byvhh4fp3vqjfb65aaksjskn3ggb8wg9hcfzjrhgpz04")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/tsdb")) +; (propagated-inputs +; `(("go-gopkg-in-alecthomas-kingpin-v2-2.2.6" +; ,go-gopkg-in-alecthomas-kingpin-v2-2.2.6) +; ("go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8" +; ,go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8) +; ("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" +; ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) +; ("go-github-com-stretchr-testify-1.2.2" +; ,go-github-com-stretchr-testify-1.2.2) +; ("go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d" +; ,go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d) +; ("go-github-com-prometheus-common-0.0.0-20181113130724-41aa239b4cce" +; ,go-github-com-prometheus-common-0.0.0-20181113130724-41aa239b4cce) +; ("go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910" +; ,go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910) +; ("go-github-com-prometheus-client-golang-0.9.1" +; ,go-github-com-prometheus-client-golang-0.9.1) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-pkg-errors-0.8.0" ,go-github-com-pkg-errors-0.8.0) +; ("go-github-com-oklog-ulid-1.3.1" ,go-github-com-oklog-ulid-1.3.1) +; ("go-github-com-matttproud-golang-protobuf-extensions-1.0.1" +; ,go-github-com-matttproud-golang-protobuf-extensions-1.0.1) +; ("go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515" +; ,go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0) +; ("go-github-com-gogo-protobuf-1.1.1" +; ,go-github-com-gogo-protobuf-1.1.1) +; ("go-github-com-go-stack-stack-1.8.0" +; ,go-github-com-go-stack-stack-1.8.0) +; ("go-github-com-go-logfmt-logfmt-0.3.0" +; ,go-github-com-go-logfmt-logfmt-0.3.0) +; ("go-github-com-go-kit-kit-0.8.0" ,go-github-com-go-kit-kit-0.8.0) +; ("go-github-com-dgryski-go-sip13-0.0.0-20181026042036-e10d5fee7954" +; ,go-github-com-dgryski-go-sip13-0.0.0-20181026042036-e10d5fee7954) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1) +; ("go-github-com-cespare-xxhash-1.1.0" +; ,go-github-com-cespare-xxhash-1.1.0) +; ("go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973" +; ,go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973) +; ("go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf" +; ,go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf) +; ("go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc" +; ,go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc))) +; (home-page "https://github.com/prometheus/tsdb") +; (synopsis "TSDB") +; (description +; "Package tsdb implements a time series storage for float64 sample data. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-prometheus-client-golang-0.9.3 +; (package +; (name "go-github-com-prometheus-client-golang") +; (version "0.9.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/client_golang") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1608rm1y2p3iv8k2x7wyc6hshvpbfkv2k77hy0x870syms1g3g1p")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/client_golang")) +; (propagated-inputs +; `(("go-github-com-prometheus-tsdb-0.7.1" +; ,go-github-com-prometheus-tsdb-0.7.1) +; ("go-github-com-prometheus-procfs-0.0.0-20190507164030-5867b95ac084" +; ,go-github-com-prometheus-procfs-0.0.0-20190507164030-5867b95ac084) +; ("go-github-com-prometheus-common-0.4.0" +; ,go-github-com-prometheus-common-0.4.0) +; ("go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90" +; ,go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90) +; ("go-github-com-golang-protobuf-1.3.1" +; ,go-github-com-golang-protobuf-1.3.1) +; ("go-github-com-go-logfmt-logfmt-0.4.0" +; ,go-github-com-go-logfmt-logfmt-0.4.0) +; ("go-github-com-beorn7-perks-1.0.0" +; ,go-github-com-beorn7-perks-1.0.0))) +; (home-page "https://github.com/prometheus/client_golang") +; (synopsis "Prometheus Go client library") +; (description +; "This is the @url{http://golang.org,Go} client library for +;@url{http://prometheus.io,Prometheus}. It has two separate parts, one for +;instrumenting application code, and one for creating clients that talk to the +;Prometheus HTTP API.") +; (license license:asl2.0))) +; +;(define-public go-github-com-spf13-afero-1.1.2 +; (package +; (name "go-github-com-spf13-afero") +; (version "1.1.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/spf13/afero") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0miv4faf5ihjfifb1zv6aia6f6ik7h1s4954kcb8n6ixzhx9ck6k")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/spf13/afero")) +; (home-page "https://github.com/spf13/afero") +; (synopsis "Overview") +; (description +; "This package provides a FileSystem Abstraction System for Go") +; (license license:asl2.0))) +; +;(define-public go-github-com-spf13-cast-1.3.0 +; (package +; (name "go-github-com-spf13-cast") +; (version "1.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/spf13/cast") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0xq1ffqj8y8h7dcnm0m9lfrh0ga7pssnn2c1dnr09chqbpn4bdc5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/spf13/cast")) +; (propagated-inputs +; `(("go-github-com-stretchr-testify-1.2.2" +; ,go-github-com-stretchr-testify-1.2.2) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://github.com/spf13/cast") +; (synopsis "cast") +; (description "Package cast provides easy and safe casting in Go. +;") +; (license license:expat))) +; +;(define-public go-github-com-spf13-jwalterweatherman-1.0.0 +; (package +; (name "go-github-com-spf13-jwalterweatherman") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/spf13/jwalterweatherman") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "093fmmvavv84pv4q84hav7ph3fmrq87bvspjj899q0qsx37yvdr8")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/spf13/jwalterweatherman")) +; (home-page "https://github.com/spf13/jwalterweatherman") +; (synopsis "jWalterWeatherman") +; (description +; "Seamless printing to the terminal (stdout) and logging to a io.Writer +;(file) thatâ\x80\x99s as easy to use as fmt.Println.") +; (license license:expat))) +; +;(define-public go-github-com-ugorji-go-1.1.4 +; (package +; (name "go-github-com-ugorji-go") +; (version "1.1.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/ugorji/go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ma2qvn5wqvjidpdz74x832a813qnr1cxbx6n6n125ak9b3wbn5w")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/ugorji/go")) +; (home-page "https://github.com/ugorji/go") +; (synopsis "go-codec") +; (description +; "This repository contains the @code{go-codec} library, the @code{codecgen} tool and +;benchmarks for comparing against other libraries.") +; (license license:expat))) +; +;(define-public go-github-com-xordataexchange-crypt-0.0.3-0.20170626215501-b2862e3d0a77 +; (package +; (name "go-github-com-xordataexchange-crypt") +; (version "0.0.3-0.20170626215501-b2862e3d0a77") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/xordataexchange/crypt") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "04q3856anpzl4gdfgmg7pbp9cx231nkz3ymq2xp27rnmmwhfxr8y")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/xordataexchange/crypt")) +; (home-page "https://github.com/xordataexchange/crypt") +; (synopsis "crypt") +; (description +; "You can use crypt as a command line tool or as a configuration library:") +; (license license:expat))) +; +;(define-public go-go-etcd-io-bbolt-1.3.2 +; (package +; (name "go-go-etcd-io-bbolt") +; (version "1.3.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/etcd-io/bbolt") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "13d5l6p6c5wvkr6vn9hkhz9c593qifn7fgx0hg4d6jcvg1y0bnm2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "go.etcd.io/bbolt")) +; (home-page "https://go.etcd.io/bbolt") +; (synopsis "bbolt") +; (description +; "package bbolt implements a low-level key/value store in pure Go. It supports +;fully serializable transactions, ACID semantics, and lock-free MVCC with +;multiple readers and a single writer. Bolt can be used for projects that +;want a simple data store without the need to add large dependencies such as +;Postgres or MySQL. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-time-0.0.0-20190308202827-9d24e82272b4 +; (package +; (name "go-golang-org-x-time") +; (version "0.0.0-20190308202827-9d24e82272b4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/time") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1f5nkr4vys2vbd8wrwyiq2f5wcaahhpxmia85d1gshcbqjqf8dkb")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/time")) +; (home-page "https://golang.org/x/time") +; (synopsis "Go Time") +; (description "This repository provides supplementary Go time packages.") +; (license license:bsd-3))) +; +;(define-public go-github-com-spf13-viper-1.4.0 +; (package +; (name "go-github-com-spf13-viper") +; (version "1.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/spf13/viper") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1zpzxvn13wpvbblbbn73svaq39zgxfjqhci9d68g3qf309pcfy19")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/spf13/viper")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) +; ("go-google-golang-org-grpc-1.21.0" ,go-google-golang-org-grpc-1.21.0) +; ("go-golang-org-x-time-0.0.0-20190308202827-9d24e82272b4" +; ,go-golang-org-x-time-0.0.0-20190308202827-9d24e82272b4) +; ("go-golang-org-x-net-0.0.0-20190522155817-f3200d17e092" +; ,go-golang-org-x-net-0.0.0-20190522155817-f3200d17e092) +; ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) +; ("go-go-uber-org-multierr-1.1.0" ,go-go-uber-org-multierr-1.1.0) +; ("go-go-uber-org-atomic-1.4.0" ,go-go-uber-org-atomic-1.4.0) +; ("go-go-etcd-io-bbolt-1.3.2" ,go-go-etcd-io-bbolt-1.3.2) +; ("go-github-com-xordataexchange-crypt-0.0.3-0.20170626215501-b2862e3d0a77" +; ,go-github-com-xordataexchange-crypt-0.0.3-0.20170626215501-b2862e3d0a77) +; ("go-github-com-xiang90-probing-0.0.0-20190116061207-43a291ad63a2" +; ,go-github-com-xiang90-probing-0.0.0-20190116061207-43a291ad63a2) +; ("go-github-com-ugorji-go-1.1.4" ,go-github-com-ugorji-go-1.1.4) +; ("go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5" +; ,go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5) +; ("go-github-com-stretchr-testify-1.2.2" +; ,go-github-com-stretchr-testify-1.2.2) +; ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) +; ("go-github-com-spf13-jwalterweatherman-1.0.0" +; ,go-github-com-spf13-jwalterweatherman-1.0.0) +; ("go-github-com-spf13-cast-1.3.0" ,go-github-com-spf13-cast-1.3.0) +; ("go-github-com-spf13-afero-1.1.2" ,go-github-com-spf13-afero-1.1.2) +; ("go-github-com-soheilhy-cmux-0.1.4" +; ,go-github-com-soheilhy-cmux-0.1.4) +; ("go-github-com-prometheus-client-golang-0.9.3" +; ,go-github-com-prometheus-client-golang-0.9.3) +; ("go-github-com-pelletier-go-toml-1.2.0" +; ,go-github-com-pelletier-go-toml-1.2.0) +; ("go-github-com-mitchellh-mapstructure-1.1.2" +; ,go-github-com-mitchellh-mapstructure-1.1.2) +; ("go-github-com-magiconair-properties-1.8.0" +; ,go-github-com-magiconair-properties-1.8.0) +; ("go-github-com-jonboulle-clockwork-0.1.0" +; ,go-github-com-jonboulle-clockwork-0.1.0) +; ("go-github-com-hashicorp-hcl-1.0.0" +; ,go-github-com-hashicorp-hcl-1.0.0) +; ("go-github-com-grpc-ecosystem-grpc-gateway-1.9.0" +; ,go-github-com-grpc-ecosystem-grpc-gateway-1.9.0) +; ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" +; ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) +; ("go-github-com-grpc-ecosystem-go-grpc-middleware-1.0.0" +; ,go-github-com-grpc-ecosystem-go-grpc-middleware-1.0.0) +; ("go-github-com-gorilla-websocket-1.4.0" +; ,go-github-com-gorilla-websocket-1.4.0) +; ("go-github-com-google-btree-1.0.0" ,go-github-com-google-btree-1.0.0) +; ("go-github-com-golang-groupcache-0.0.0-20190129154638-5b532d6fd5ef" +; ,go-github-com-golang-groupcache-0.0.0-20190129154638-5b532d6fd5ef) +; ("go-github-com-gogo-protobuf-1.2.1" +; ,go-github-com-gogo-protobuf-1.2.1) +; ("go-github-com-fsnotify-fsnotify-1.4.7" +; ,go-github-com-fsnotify-fsnotify-1.4.7) +; ("go-github-com-dgrijalva-jwt-go-3.2.0+incompatible" +; ,go-github-com-dgrijalva-jwt-go-3.2.0+incompatible) +; ("go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f" +; ,go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f) +; ("go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e" +; ,go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e) +; ("go-github-com-coreos-go-semver-0.2.0" +; ,go-github-com-coreos-go-semver-0.2.0) +; ("go-github-com-coreos-etcd-3.3.10+incompatible" +; ,go-github-com-coreos-etcd-3.3.10+incompatible) +; ("go-github-com-coreos-bbolt-1.3.2" ,go-github-com-coreos-bbolt-1.3.2) +; ("go-github-com-armon-consul-api-0.0.0-20180202201655-eb2c6b5be1b6" +; ,go-github-com-armon-consul-api-0.0.0-20180202201655-eb2c6b5be1b6))) +; (home-page "https://github.com/spf13/viper") +; (synopsis "Install") +; (description "Many Go projects are built using Viper including:") +; (license license:expat))) +; +;(define-public go-github-com-spf13-cobra-1.0.0 +; (package +; (name "go-github-com-spf13-cobra") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/spf13/cobra") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0vbppqqhby302a5ayn0296jqr71qkcd4c9am7wzsk6z71fwdsa7h")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/spf13/cobra")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) +; ("go-github-com-spf13-viper-1.4.0" ,go-github-com-spf13-viper-1.4.0) +; ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) +; ("go-github-com-mitchellh-go-homedir-1.1.0" +; ,go-github-com-mitchellh-go-homedir-1.1.0) +; ("go-github-com-inconshreveable-mousetrap-1.0.0" +; ,go-github-com-inconshreveable-mousetrap-1.0.0) +; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" +; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0))) +; (home-page "https://github.com/spf13/cobra") +; (synopsis "Table of Contents") +; (description +; "Package cobra is a commander providing a simple interface to create powerful modern CLI interfaces. +;In addition to providing an interface, Cobra simultaneously provides a controller to organize your application code. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-continuity-0.1.0 +; (package +; (name "go-github-com-containerd-continuity") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/continuity") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1h756l1xc31sc4zc1d3hmh64kl9qm5vpbbw0c93hrasn51ki96yz")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/continuity")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" +; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) +; ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" +; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) +; ("go-github-com-spf13-cobra-1.0.0" ,go-github-com-spf13-cobra-1.0.0) +; ("go-github-com-sirupsen-logrus-1.7.0" +; ,go-github-com-sirupsen-logrus-1.7.0) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-go-digest-1.0.0" +; ,go-github-com-opencontainers-go-digest-1.0.0) +; ("go-github-com-golang-protobuf-1.3.5" +; ,go-github-com-golang-protobuf-1.3.5) +; ("go-github-com-dustin-go-humanize-1.0.0" +; ,go-github-com-dustin-go-humanize-1.0.0) +; ("go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898" +; ,go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898))) +; (home-page "https://github.com/containerd/continuity") +; (synopsis "continuity") +; (description +; "This package provides a transport-agnostic, filesystem metadata manifest system") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-fifo-1.0.0 +; (package +; (name "go-github-com-containerd-fifo") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/fifo") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1l6jy9b4mjcj7pbz1n79zmipni1dz60rf5n66vn5p2ggavbq7h1q")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/fifo")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" +; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) +; (home-page "https://github.com/containerd/fifo") +; (synopsis "fifo") +; (description "Go package for handling fifos in a sane way.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-go-cni-1.0.2 +; (package +; (name "go-github-com-containerd-go-cni") +; (version "1.0.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/go-cni") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1hqwy402qy04slz2vj05s517mhdbmmkdjs6nhfnk184a730whgv6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/go-cni")) +; (propagated-inputs +; `(("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-onsi-gomega-1.7.1" ,go-github-com-onsi-gomega-1.7.1) +; ("go-github-com-onsi-ginkgo-1.10.3" ,go-github-com-onsi-ginkgo-1.10.3) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1) +; ("go-github-com-containernetworking-cni-0.8.0" +; ,go-github-com-containernetworking-cni-0.8.0))) +; (home-page "https://github.com/containerd/go-cni") +; (synopsis "go-cni") +; (description +; "This package provides a generic CNI library to provide APIs for CNI plugin interactions. The library provides APIs to:") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-go-runc-1.0.0 +; (package +; (name "go-github-com-containerd-go-runc") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/go-runc") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0xk30dzzxmd83bnfyilplizlxh1pg1gqz2jrq9wz9rqqkxazc03n")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/go-runc")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f" +; ,go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f) +; ("go-github-com-sirupsen-logrus-1.7.0" +; ,go-github-com-sirupsen-logrus-1.7.0) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-runtime-spec-1.0.2" +; ,go-github-com-opencontainers-runtime-spec-1.0.2) +; ("go-github-com-containerd-console-1.0.1" +; ,go-github-com-containerd-console-1.0.1))) +; (home-page "https://github.com/containerd/go-runc") +; (synopsis "go-runc") +; (description +; "This is a package for consuming the @url{https://github.com/opencontainers/runc,runc} binary in your Go applications. +;It tries to expose all the settings and features of the runc CLI. If there is something missing then add it, its opensource!") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-zfs-0.0.0-20210315114300-dde8f0fda960 +; (package +; (name "go-github-com-containerd-zfs") +; (version "0.0.0-20210315114300-dde8f0fda960") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/zfs") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ag5p2vqzdavq66wb1z42yw5jzrncsi97g8qk2x9nq51z1nj8rdi")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/zfs")) +; (propagated-inputs +; `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible" +; ,go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible) +; ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" +; ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) +; ("go-github-com-containerd-containerd-1.5.0-beta.3" +; ,go-github-com-containerd-containerd-1.5.0-beta.3))) +; (home-page "https://github.com/containerd/zfs") +; (synopsis "ZFS snapshotter plugin") +; (description "ZFS snapshotter plugin for containerd.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-containerd-1.5.0-beta.4 +; (package +; (name "go-github-com-containerd-containerd") +; (version "1.5.0-beta.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/containerd") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "039c26mjq8qs1s4kbx76fc99wnmnx165bqn16b2b9gyvxcphs7iv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/containerd")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) +; ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) +; ("go-github-com-golang-protobuf-1.3.5" +; ,go-github-com-golang-protobuf-1.3.5) +; ("go-github-com-gogo-googleapis-1.3.2" +; ,go-github-com-gogo-googleapis-1.3.2) +; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" +; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) +; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) +; ("go-k8s-io-cri-api-0.20.1" ,go-k8s-io-cri-api-0.20.1) +; ("go-k8s-io-component-base-0.20.1" ,go-k8s-io-component-base-0.20.1) +; ("go-k8s-io-client-go-0.20.1" ,go-k8s-io-client-go-0.20.1) +; ("go-k8s-io-apiserver-0.20.1" ,go-k8s-io-apiserver-0.20.1) +; ("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) +; ("go-k8s-io-api-0.20.1" ,go-k8s-io-api-0.20.1) +; ("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) +; ("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" +; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) +; ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" +; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) +; ("go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b" +; ,go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b) +; ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) +; ("go-github-com-tchap-go-patricia-2.2.6+incompatible" +; ,go-github-com-tchap-go-patricia-2.2.6+incompatible) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-sirupsen-logrus-1.7.0" +; ,go-github-com-sirupsen-logrus-1.7.0) +; ("go-github-com-prometheus-client-golang-1.7.1" +; ,go-github-com-prometheus-client-golang-1.7.1) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-selinux-1.8.0" +; ,go-github-com-opencontainers-selinux-1.8.0) +; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" +; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) +; ("go-github-com-opencontainers-runc-1.0.0-rc93" +; ,go-github-com-opencontainers-runc-1.0.0-rc93) +; ("go-github-com-opencontainers-image-spec-1.0.1" +; ,go-github-com-opencontainers-image-spec-1.0.1) +; ("go-github-com-opencontainers-go-digest-1.0.0" +; ,go-github-com-opencontainers-go-digest-1.0.0) +; ("go-github-com-moby-sys-symlink-0.1.0" +; ,go-github-com-moby-sys-symlink-0.1.0) +; ("go-github-com-moby-sys-mountinfo-0.4.1" +; ,go-github-com-moby-sys-mountinfo-0.4.1) +; ("go-github-com-klauspost-compress-1.11.3" +; ,go-github-com-klauspost-compress-1.11.3) +; ("go-github-com-imdario-mergo-0.3.11" +; ,go-github-com-imdario-mergo-0.3.11) +; ("go-github-com-hashicorp-go-multierror-1.0.0" +; ,go-github-com-hashicorp-go-multierror-1.0.0) +; ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" +; ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) +; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) +; ("go-github-com-google-go-cmp-0.5.4" +; ,go-github-com-google-go-cmp-0.5.4) +; ("go-github-com-gogo-protobuf-1.3.2" +; ,go-github-com-gogo-protobuf-1.3.2) +; ("go-github-com-fsnotify-fsnotify-1.4.9" +; ,go-github-com-fsnotify-fsnotify-1.4.9) +; ("go-github-com-emicklei-go-restful-2.9.5+incompatible" +; ,go-github-com-emicklei-go-restful-2.9.5+incompatible) +; ("go-github-com-docker-go-units-0.4.0" +; ,go-github-com-docker-go-units-0.4.0) +; ("go-github-com-docker-go-metrics-0.0.1" +; ,go-github-com-docker-go-metrics-0.0.1) +; ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" +; ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1) +; ("go-github-com-coreos-go-systemd-v22-22.1.0" +; ,go-github-com-coreos-go-systemd-v22-22.1.0) +; ("go-github-com-containernetworking-plugins-0.8.6" +; ,go-github-com-containernetworking-plugins-0.8.6) +; ("go-github-com-containerd-zfs-0.0.0-20210315114300-dde8f0fda960" +; ,go-github-com-containerd-zfs-0.0.0-20210315114300-dde8f0fda960) +; ("go-github-com-containerd-typeurl-1.0.1" +; ,go-github-com-containerd-typeurl-1.0.1) +; ("go-github-com-containerd-ttrpc-1.0.2" +; ,go-github-com-containerd-ttrpc-1.0.2) +; ("go-github-com-containerd-nri-0.0.0-20210316161719-dbaa18c31c14" +; ,go-github-com-containerd-nri-0.0.0-20210316161719-dbaa18c31c14) +; ("go-github-com-containerd-imgcrypt-1.1.1-0.20210312161619-7ed62a527887" +; ,go-github-com-containerd-imgcrypt-1.1.1-0.20210312161619-7ed62a527887) +; ("go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0" +; ,go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0) +; ("go-github-com-containerd-go-cni-1.0.1" +; ,go-github-com-containerd-go-cni-1.0.1) +; ("go-github-com-containerd-fifo-0.0.0-20210316144830-115abcc95a1d" +; ,go-github-com-containerd-fifo-0.0.0-20210316144830-115abcc95a1d) +; ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" +; ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) +; ("go-github-com-containerd-console-1.0.1" +; ,go-github-com-containerd-console-1.0.1) +; ("go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68" +; ,go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68) +; ("go-github-com-containerd-btrfs-0.0.0-20210316141732-918d888fb676" +; ,go-github-com-containerd-btrfs-0.0.0-20210316141732-918d888fb676) +; ("go-github-com-containerd-aufs-0.0.0-20210316121734-20793ff83c97" +; ,go-github-com-containerd-aufs-0.0.0-20210316121734-20793ff83c97) +; ("go-github-com-microsoft-hcsshim-0.8.15" +; ,go-github-com-microsoft-hcsshim-0.8.15) +; ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" +; ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3) +; ("go-github-com-burntsushi-toml-0.3.1" +; ,go-github-com-burntsushi-toml-0.3.1))) +; (home-page "https://github.com/containerd/containerd") +; (synopsis "Now Recruiting") +; (description +; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-sys-0.0.0-20210324051608-47abb6519492 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20210324051608-47abb6519492") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19g0pa8lazad5kcq396ggg9x1d6sx39rw9brz3hklx71gg1jd3ja")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-microsoft-hcsshim-0.8.16 +; (package +; (name "go-github-com-microsoft-hcsshim") +; (version "0.8.16") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/microsoft/hcsshim") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "15bxkqq4zavwspx3ga8j3vx9jrc7l0jazsa6cs6im9liy6xhkbd6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/Microsoft/hcsshim")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) +; ("go-golang-org-x-sys-0.0.0-20210324051608-47abb6519492" +; ,go-golang-org-x-sys-0.0.0-20210324051608-47abb6519492) +; ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" +; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) +; ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) +; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) +; ("go-github-com-sirupsen-logrus-1.7.0" +; ,go-github-com-sirupsen-logrus-1.7.0) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" +; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) +; ("go-github-com-gogo-protobuf-1.3.2" +; ,go-github-com-gogo-protobuf-1.3.2) +; ("go-github-com-containerd-typeurl-1.0.1" +; ,go-github-com-containerd-typeurl-1.0.1) +; ("go-github-com-containerd-ttrpc-1.0.2" +; ,go-github-com-containerd-ttrpc-1.0.2) +; ("go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0" +; ,go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0) +; ("go-github-com-containerd-containerd-1.5.0-beta.4" +; ,go-github-com-containerd-containerd-1.5.0-beta.4) +; ("go-github-com-containerd-console-1.0.1" +; ,go-github-com-containerd-console-1.0.1) +; ("go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68" +; ,go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68) +; ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" +; ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3))) +; (home-page "https://github.com/Microsoft/hcsshim") +; (synopsis "hcsshim") +; (description +; "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") +; (license license:expat))) +; +;(define-public go-github-com-microsoft-go-winio-0.4.17-0.20210324224401-5516f17a5958 +; (package +; (name "go-github-com-microsoft-go-winio") +; (version "0.4.17-0.20210324224401-5516f17a5958") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/microsoft/go-winio") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0gmgiak4x4gdyr17zm4b9vvharflk9pz5aj5jayh9hq50133b2f9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/Microsoft/go-winio")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" +; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) +; ("go-github-com-sirupsen-logrus-1.7.0" +; ,go-github-com-sirupsen-logrus-1.7.0) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) +; (home-page "https://github.com/Microsoft/go-winio") +; (synopsis "go-winio") +; (description +; "This repository contains utilities for efficiently performing Win32 IO operations in +;Go. Currently, this is focused on accessing named pipes and other file handles, and +;for using named pipes as a net transport.") +; (license license:expat))) +; +;(define-public go-github-com-containerd-aufs-0.0.0-20210316121734-20793ff83c97 +; (package +; (name "go-github-com-containerd-aufs") +; (version "0.0.0-20210316121734-20793ff83c97") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/aufs") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ipr8pafb2xpkchfvnxjcfx9pb48mjr9k8krj9gnagssxhynbkd5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/aufs")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" +; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" +; ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) +; ("go-github-com-containerd-containerd-1.5.0-beta.3" +; ,go-github-com-containerd-containerd-1.5.0-beta.3))) +; (home-page "https://github.com/containerd/aufs") +; (synopsis "aufs snapshotter") +; (description +; "AUFS implementation of the snapshot interface for containerd.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-btrfs-0.0.0-20210316141732-918d888fb676 +; (package +; (name "go-github-com-containerd-btrfs") +; (version "0.0.0-20210316141732-918d888fb676") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/btrfs") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1yf38gg41y1v12m0cl81r9q7d13170a4npzqxhbz7qn32zr23kzn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/btrfs")) +; (propagated-inputs +; `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) +; (home-page "https://github.com/containerd/btrfs") +; (synopsis "go-btrfs") +; (description +; "Package btrfs provides bindings for working with btrfs partitions from Go. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-fifo-0.0.0-20210316144830-115abcc95a1d +; (package +; (name "go-github-com-containerd-fifo") +; (version "0.0.0-20210316144830-115abcc95a1d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/fifo") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0hqna43p8r6g3xv8g8n985hq1nzipsvjiwm70xpbzbgynh4ym6z5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/fifo")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" +; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) +; (home-page "https://github.com/containerd/fifo") +; (synopsis "fifo") +; (description "Go package for handling fifos in a sane way.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0 +; (package +; (name "go-github-com-containerd-go-runc") +; (version "0.0.0-20201020171139-16b287bc67d0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/go-runc") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0xk30dzzxmd83bnfyilplizlxh1pg1gqz2jrq9wz9rqqkxazc03n")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/go-runc")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f" +; ,go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f) +; ("go-github-com-sirupsen-logrus-1.7.0" +; ,go-github-com-sirupsen-logrus-1.7.0) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-runtime-spec-1.0.2" +; ,go-github-com-opencontainers-runtime-spec-1.0.2) +; ("go-github-com-containerd-console-1.0.1" +; ,go-github-com-containerd-console-1.0.1))) +; (home-page "https://github.com/containerd/go-runc") +; (synopsis "go-runc") +; (description +; "This is a package for consuming the @url{https://github.com/opencontainers/runc,runc} binary in your Go applications. +;It tries to expose all the settings and features of the runc CLI. If there is something missing then add it, its opensource!") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-imgcrypt-1.1.1-0.20210312161619-7ed62a527887 +; (package +; (name "go-github-com-containerd-imgcrypt") +; (version "1.1.1-0.20210312161619-7ed62a527887") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/imgcrypt") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "16pgcc0w8m2cxhfjzmmd2h3n6mxzc1nlghrhgjlx0lf4q96hv904")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/imgcrypt")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) +; ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" +; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) +; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) +; ("go-github-com-sirupsen-logrus-1.7.0" +; ,go-github-com-sirupsen-logrus-1.7.0) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" +; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) +; ("go-github-com-opencontainers-image-spec-1.0.1" +; ,go-github-com-opencontainers-image-spec-1.0.1) +; ("go-github-com-opencontainers-go-digest-1.0.0" +; ,go-github-com-opencontainers-go-digest-1.0.0) +; ("go-github-com-gogo-protobuf-1.3.2" +; ,go-github-com-gogo-protobuf-1.3.2) +; ("go-github-com-containers-ocicrypt-1.1.0" +; ,go-github-com-containers-ocicrypt-1.1.0) +; ("go-github-com-containerd-typeurl-1.0.1" +; ,go-github-com-containerd-typeurl-1.0.1) +; ("go-github-com-containerd-containerd-1.5.0-beta.3" +; ,go-github-com-containerd-containerd-1.5.0-beta.3) +; ("go-github-com-containerd-console-1.0.1" +; ,go-github-com-containerd-console-1.0.1) +; ("go-github-com-microsoft-hcsshim-0.8.15" +; ,go-github-com-microsoft-hcsshim-0.8.15) +; ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" +; ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3))) +; (home-page "https://github.com/containerd/imgcrypt") +; (synopsis "imgcrypt image encryption library and command line tool") +; (description +; "Project @code{imgcrypt} is a non-core subproject of containerd.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-nri-0.0.0-20210316161719-dbaa18c31c14 +; (package +; (name "go-github-com-containerd-nri") +; (version "0.0.0-20210316161719-dbaa18c31c14") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/nri") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0kyrvagbga6yib7il0m4zvqz977a4wsv5lgjd3ix53xmr4h7fgm7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/nri")) +; (propagated-inputs +; `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-containerd-containerd-1.5.0-beta.3" +; ,go-github-com-containerd-containerd-1.5.0-beta.3))) +; (home-page "https://github.com/containerd/nri") +; (synopsis "nri - Node Resource Interface") +; (description +; "This project is a WIP for a new, CNI like, interface for managing resources on a node for Pods and Containers.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-zfs-0.0.0-20210324211415-d5c4544f0433 +; (package +; (name "go-github-com-containerd-zfs") +; (version "0.0.0-20210324211415-d5c4544f0433") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/zfs") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1wsqwqv2pyn05asgpm9clgpwq9b8b0fjk4khzkjvscrf5j4v1rx4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/zfs")) +; (propagated-inputs +; `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible" +; ,go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible) +; ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" +; ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) +; ("go-github-com-containerd-containerd-1.5.0-beta.3" +; ,go-github-com-containerd-containerd-1.5.0-beta.3))) +; (home-page "https://github.com/containerd/zfs") +; (synopsis "ZFS snapshotter plugin") +; (description "ZFS snapshotter plugin for containerd.") +; (license license:asl2.0))) +; +;(define-public go-k8s-io-apiserver-0.20.4 +; (package +; (name "go-k8s-io-apiserver") +; (version "0.20.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes/apiserver") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1gffl7z6bvi46v0fvphbak4waddsgf4pd5w16khgrzl1sv9skn61")))) +; (build-system go-build-system) +; (arguments '(#:import-path "k8s.io/apiserver")) +; (propagated-inputs +; `(("go-k8s-io-component-base-0.20.4" ,go-k8s-io-component-base-0.20.4) +; ("go-k8s-io-client-go-0.20.4" ,go-k8s-io-client-go-0.20.4) +; ("go-k8s-io-apimachinery-0.20.4" ,go-k8s-io-apimachinery-0.20.4) +; ("go-k8s-io-api-0.20.4" ,go-k8s-io-api-0.20.4) +; ("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) +; ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.2" +; ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.2) +; ("go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.14" +; ,go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.14) +; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" +; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) +; ("go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd" +; ,go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd) +; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) +; ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) +; ("go-gopkg-in-square-go-jose-v2-2.2.2" +; ,go-gopkg-in-square-go-jose-v2-2.2.2) +; ("go-gopkg-in-natefinch-lumberjack-v2-2.0.0" +; ,go-gopkg-in-natefinch-lumberjack-v2-2.0.0) +; ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) +; ("go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a" +; ,go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a) +; ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" +; ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) +; ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" +; ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) +; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" +; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) +; ("go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0" +; ,go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0) +; ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) +; ("go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489" +; ,go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489) +; ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) +; ("go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5" +; ,go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) +; ("go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021" +; ,go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822" +; ,go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822) +; ("go-github-com-mailru-easyjson-0.7.0" +; ,go-github-com-mailru-easyjson-0.7.0) +; ("go-github-com-hashicorp-golang-lru-0.5.1" +; ,go-github-com-hashicorp-golang-lru-0.5.1) +; ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" +; ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) +; ("go-github-com-gorilla-websocket-1.4.2" +; ,go-github-com-gorilla-websocket-1.4.2) +; ("go-github-com-googleapis-gnostic-0.4.1" +; ,go-github-com-googleapis-gnostic-0.4.1) +; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) +; ("go-github-com-google-gofuzz-1.1.0" +; ,go-github-com-google-gofuzz-1.1.0) +; ("go-github-com-google-go-cmp-0.5.2" +; ,go-github-com-google-go-cmp-0.5.2) +; ("go-github-com-gogo-protobuf-1.3.1" +; ,go-github-com-gogo-protobuf-1.3.1) +; ("go-github-com-go-openapi-spec-0.19.3" +; ,go-github-com-go-openapi-spec-0.19.3) +; ("go-github-com-evanphx-json-patch-4.9.0+incompatible" +; ,go-github-com-evanphx-json-patch-4.9.0+incompatible) +; ("go-github-com-emicklei-go-restful-2.9.5+incompatible" +; ,go-github-com-emicklei-go-restful-2.9.5+incompatible) +; ("go-github-com-dustin-go-humanize-1.0.0" +; ,go-github-com-dustin-go-humanize-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1) +; ("go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f" +; ,go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f) +; ("go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e" +; ,go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e) +; ("go-github-com-coreos-go-semver-0.3.0" +; ,go-github-com-coreos-go-semver-0.3.0) +; ("go-github-com-coreos-go-oidc-2.1.0+incompatible" +; ,go-github-com-coreos-go-oidc-2.1.0+incompatible))) +; (home-page "https://k8s.io/apiserver") +; (synopsis "apiserver") +; (description +; "Generic library for building a Kubernetes aggregated API server.") +; (license license:asl2.0))) +; +;(define-public go-k8s-io-api-0.20.4 +; (package +; (name "go-k8s-io-api") +; (version "0.20.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes/api") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0hjckd94vpsr690kwx7dad8qlb8xjg2bz5ms315s9h6wc5cqwvgy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "k8s.io/api")) +; (propagated-inputs +; `(("go-k8s-io-apimachinery-0.20.4" ,go-k8s-io-apimachinery-0.20.4) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-gogo-protobuf-1.3.1" +; ,go-github-com-gogo-protobuf-1.3.1))) +; (home-page "https://k8s.io/api") +; (synopsis "api") +; (description +; "Schema of the external API types that are served by the Kubernetes API server.") +; (license license:asl2.0))) +; +;(define-public go-k8s-io-apimachinery-0.20.4 +; (package +; (name "go-k8s-io-apimachinery") +; (version "0.20.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes/apimachinery") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "15qc12lbzpd4lgajy0rv24b3ky4hhg5y1l37qxdfiakhz91didfw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "k8s.io/apimachinery")) +; (propagated-inputs +; `(("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) +; ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.2" +; ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.2) +; ("go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd" +; ,go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd) +; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) +; ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) +; ("go-gopkg-in-inf-v0-0.9.1" ,go-gopkg-in-inf-v0-0.9.1) +; ("go-google-golang-org-protobuf-1.25.0" +; ,go-google-golang-org-protobuf-1.25.0) +; ("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" +; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) +; ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) +; ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" +; ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) +; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" +; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-onsi-gomega-1.7.0" ,go-github-com-onsi-gomega-1.7.0) +; ("go-github-com-onsi-ginkgo-1.11.0" ,go-github-com-onsi-ginkgo-1.11.0) +; ("go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f" +; ,go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f) +; ("go-github-com-modern-go-reflect2-1.0.1" +; ,go-github-com-modern-go-reflect2-1.0.1) +; ("go-github-com-json-iterator-go-1.1.10" +; ,go-github-com-json-iterator-go-1.1.10) +; ("go-github-com-hashicorp-golang-lru-0.5.1" +; ,go-github-com-hashicorp-golang-lru-0.5.1) +; ("go-github-com-googleapis-gnostic-0.4.1" +; ,go-github-com-googleapis-gnostic-0.4.1) +; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) +; ("go-github-com-google-gofuzz-1.1.0" +; ,go-github-com-google-gofuzz-1.1.0) +; ("go-github-com-google-go-cmp-0.5.2" +; ,go-github-com-google-go-cmp-0.5.2) +; ("go-github-com-golang-protobuf-1.4.3" +; ,go-github-com-golang-protobuf-1.4.3) +; ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" +; ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) +; ("go-github-com-gogo-protobuf-1.3.1" +; ,go-github-com-gogo-protobuf-1.3.1) +; ("go-github-com-fsnotify-fsnotify-1.4.9" +; ,go-github-com-fsnotify-fsnotify-1.4.9) +; ("go-github-com-evanphx-json-patch-4.9.0+incompatible" +; ,go-github-com-evanphx-json-patch-4.9.0+incompatible) +; ("go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153" +; ,go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153) +; ("go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96" +; ,go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://k8s.io/apimachinery") +; (synopsis "apimachinery") +; (description +; "Scheme, typing, encoding, decoding, and conversion packages for Kubernetes and Kubernetes-like API objects.") +; (license license:asl2.0))) +; +;(define-public go-k8s-io-client-go-0.20.4 +; (package +; (name "go-k8s-io-client-go") +; (version "0.20.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes/client-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0g8x2d59qm6068rql63c0mdhcjz9jsyyf7a5fdg1hyf88dvigfcx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "k8s.io/client-go")) +; (propagated-inputs +; `(("go-k8s-io-apimachinery-0.20.4" ,go-k8s-io-apimachinery-0.20.4) +; ("go-k8s-io-api-0.20.4" ,go-k8s-io-api-0.20.4) +; ("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) +; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" +; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) +; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) +; ("go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e" +; ,go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e) +; ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" +; ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) +; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" +; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) +; ("go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0" +; ,go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) +; ("go-github-com-peterbourgon-diskv-2.0.1+incompatible" +; ,go-github-com-peterbourgon-diskv-2.0.1+incompatible) +; ("go-github-com-imdario-mergo-0.3.5" +; ,go-github-com-imdario-mergo-0.3.5) +; ("go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7" +; ,go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7) +; ("go-github-com-googleapis-gnostic-0.4.1" +; ,go-github-com-googleapis-gnostic-0.4.1) +; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) +; ("go-github-com-google-gofuzz-1.1.0" +; ,go-github-com-google-gofuzz-1.1.0) +; ("go-github-com-google-go-cmp-0.5.2" +; ,go-github-com-google-go-cmp-0.5.2) +; ("go-github-com-golang-protobuf-1.4.3" +; ,go-github-com-golang-protobuf-1.4.3) +; ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" +; ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) +; ("go-github-com-gogo-protobuf-1.3.1" +; ,go-github-com-gogo-protobuf-1.3.1) +; ("go-github-com-evanphx-json-patch-4.9.0+incompatible" +; ,go-github-com-evanphx-json-patch-4.9.0+incompatible) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1) +; ("go-github-com-azure-go-autorest-autorest-adal-0.9.5" +; ,go-github-com-azure-go-autorest-autorest-adal-0.9.5) +; ("go-github-com-azure-go-autorest-autorest-0.11.1" +; ,go-github-com-azure-go-autorest-autorest-0.11.1) +; ("go-cloud-google-com-go-0.54.0" ,go-cloud-google-com-go-0.54.0))) +; (home-page "https://k8s.io/client-go") +; (synopsis "client-go") +; (description +; "Go clients for talking to a @url{http://kubernetes.io/,kubernetes} cluster.") +; (license license:asl2.0))) +; +;(define-public go-k8s-io-component-base-0.20.4 +; (package +; (name "go-k8s-io-component-base") +; (version "0.20.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes/component-base") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "02b782p63h8z3pg64i1kfgkmxwslxpyl6afkhd1agbig9zd6g7w8")))) +; (build-system go-build-system) +; (arguments '(#:import-path "k8s.io/component-base")) +; (propagated-inputs +; `(("go-k8s-io-client-go-0.20.4" ,go-k8s-io-client-go-0.20.4) +; ("go-k8s-io-apimachinery-0.20.4" ,go-k8s-io-apimachinery-0.20.4) +; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" +; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) +; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) +; ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) +; ("go-go-uber-org-multierr-1.1.0" ,go-go-uber-org-multierr-1.1.0) +; ("go-go-uber-org-atomic-1.4.0" ,go-go-uber-org-atomic-1.4.0) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) +; ("go-github-com-sirupsen-logrus-1.6.0" +; ,go-github-com-sirupsen-logrus-1.6.0) +; ("go-github-com-prometheus-procfs-0.2.0" +; ,go-github-com-prometheus-procfs-0.2.0) +; ("go-github-com-prometheus-common-0.10.0" +; ,go-github-com-prometheus-common-0.10.0) +; ("go-github-com-prometheus-client-model-0.2.0" +; ,go-github-com-prometheus-client-model-0.2.0) +; ("go-github-com-prometheus-client-golang-1.7.1" +; ,go-github-com-prometheus-client-golang-1.7.1) +; ("go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd" +; ,go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd) +; ("go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369" +; ,go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369) +; ("go-github-com-google-go-cmp-0.5.2" +; ,go-github-com-google-go-cmp-0.5.2) +; ("go-github-com-go-logr-logr-0.2.0" ,go-github-com-go-logr-logr-0.2.0) +; ("go-github-com-blang-semver-3.5.1+incompatible" +; ,go-github-com-blang-semver-3.5.1+incompatible))) +; (home-page "https://k8s.io/component-base") +; (synopsis "component-base") +; (description +; "Implement KEP 32: @url{https://github.com/kubernetes/enhancements/blob/master/keps/sig-cluster-lifecycle/wgs/783-component-base/README.md,https://github.com/kubernetes/enhancements/blob/master/keps/sig-cluster-lifecycle/wgs/783-component-base/README.md}") +; (license license:asl2.0))) +; +;(define-public go-k8s-io-cri-api-0.20.4 +; (package +; (name "go-k8s-io-cri-api") +; (version "0.20.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes/cri-api") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1r98d0kv42sijdg3404xx2g5jj0zixvfagkky2zla12p68ajm4xr")))) +; (build-system go-build-system) +; (arguments '(#:import-path "k8s.io/cri-api")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" +; ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) +; ("go-google-golang-org-protobuf-1.25.0" +; ,go-google-golang-org-protobuf-1.25.0) +; ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) +; ("go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a" +; ,go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a) +; ("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" +; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) +; ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) +; ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" +; ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) +; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" +; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-kr-pretty-0.2.0" ,go-github-com-kr-pretty-0.2.0) +; ("go-github-com-google-go-cmp-0.5.2" +; ,go-github-com-google-go-cmp-0.5.2) +; ("go-github-com-golang-protobuf-1.4.3" +; ,go-github-com-golang-protobuf-1.4.3) +; ("go-github-com-gogo-protobuf-1.3.1" +; ,go-github-com-gogo-protobuf-1.3.1) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://k8s.io/cri-api") +; (synopsis "Purpose") +; (description +; "This repository contains the definitions for the Container Runtime Interface (CRI). +;CRI is a plugin interface which enables kubelet to use a wide variety of container runtimes, +;without the need to recompile. CRI consists of a protocol buffers and gRPC API.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-containerd-1.5.0-rc.0 +; (package +; (name "go-github-com-containerd-containerd") +; (version "1.5.0-rc.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/containerd") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "148z6782bj0vy3vzbhg2xf53g14llvxfsmdsqkz6x5n49rm6xr4i")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/containerd")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) +; ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) +; ("go-github-com-golang-protobuf-1.3.5" +; ,go-github-com-golang-protobuf-1.3.5) +; ("go-github-com-gogo-googleapis-1.3.2" +; ,go-github-com-gogo-googleapis-1.3.2) +; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" +; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) +; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) +; ("go-k8s-io-cri-api-0.20.4" ,go-k8s-io-cri-api-0.20.4) +; ("go-k8s-io-component-base-0.20.4" ,go-k8s-io-component-base-0.20.4) +; ("go-k8s-io-client-go-0.20.4" ,go-k8s-io-client-go-0.20.4) +; ("go-k8s-io-apiserver-0.20.4" ,go-k8s-io-apiserver-0.20.4) +; ("go-k8s-io-apimachinery-0.20.4" ,go-k8s-io-apimachinery-0.20.4) +; ("go-k8s-io-api-0.20.4" ,go-k8s-io-api-0.20.4) +; ("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) +; ("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" +; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) +; ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" +; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) +; ("go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b" +; ,go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b) +; ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) +; ("go-github-com-tchap-go-patricia-2.2.6+incompatible" +; ,go-github-com-tchap-go-patricia-2.2.6+incompatible) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-sirupsen-logrus-1.7.0" +; ,go-github-com-sirupsen-logrus-1.7.0) +; ("go-github-com-prometheus-client-golang-1.7.1" +; ,go-github-com-prometheus-client-golang-1.7.1) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-pelletier-go-toml-1.8.1" +; ,go-github-com-pelletier-go-toml-1.8.1) +; ("go-github-com-opencontainers-selinux-1.8.0" +; ,go-github-com-opencontainers-selinux-1.8.0) +; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" +; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) +; ("go-github-com-opencontainers-runc-1.0.0-rc93" +; ,go-github-com-opencontainers-runc-1.0.0-rc93) +; ("go-github-com-opencontainers-image-spec-1.0.1" +; ,go-github-com-opencontainers-image-spec-1.0.1) +; ("go-github-com-opencontainers-go-digest-1.0.0" +; ,go-github-com-opencontainers-go-digest-1.0.0) +; ("go-github-com-moby-sys-symlink-0.1.0" +; ,go-github-com-moby-sys-symlink-0.1.0) +; ("go-github-com-moby-sys-mountinfo-0.4.1" +; ,go-github-com-moby-sys-mountinfo-0.4.1) +; ("go-github-com-klauspost-compress-1.11.13" +; ,go-github-com-klauspost-compress-1.11.13) +; ("go-github-com-imdario-mergo-0.3.11" +; ,go-github-com-imdario-mergo-0.3.11) +; ("go-github-com-hashicorp-go-multierror-1.0.0" +; ,go-github-com-hashicorp-go-multierror-1.0.0) +; ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" +; ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) +; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) +; ("go-github-com-google-go-cmp-0.5.4" +; ,go-github-com-google-go-cmp-0.5.4) +; ("go-github-com-gogo-protobuf-1.3.2" +; ,go-github-com-gogo-protobuf-1.3.2) +; ("go-github-com-fsnotify-fsnotify-1.4.9" +; ,go-github-com-fsnotify-fsnotify-1.4.9) +; ("go-github-com-emicklei-go-restful-2.9.5+incompatible" +; ,go-github-com-emicklei-go-restful-2.9.5+incompatible) +; ("go-github-com-docker-go-units-0.4.0" +; ,go-github-com-docker-go-units-0.4.0) +; ("go-github-com-docker-go-metrics-0.0.1" +; ,go-github-com-docker-go-metrics-0.0.1) +; ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" +; ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1) +; ("go-github-com-coreos-go-systemd-v22-22.1.0" +; ,go-github-com-coreos-go-systemd-v22-22.1.0) +; ("go-github-com-containernetworking-plugins-0.8.6" +; ,go-github-com-containernetworking-plugins-0.8.6) +; ("go-github-com-containerd-zfs-0.0.0-20210324211415-d5c4544f0433" +; ,go-github-com-containerd-zfs-0.0.0-20210324211415-d5c4544f0433) +; ("go-github-com-containerd-typeurl-1.0.1" +; ,go-github-com-containerd-typeurl-1.0.1) +; ("go-github-com-containerd-ttrpc-1.0.2" +; ,go-github-com-containerd-ttrpc-1.0.2) +; ("go-github-com-containerd-nri-0.0.0-20210316161719-dbaa18c31c14" +; ,go-github-com-containerd-nri-0.0.0-20210316161719-dbaa18c31c14) +; ("go-github-com-containerd-imgcrypt-1.1.1-0.20210312161619-7ed62a527887" +; ,go-github-com-containerd-imgcrypt-1.1.1-0.20210312161619-7ed62a527887) +; ("go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0" +; ,go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0) +; ("go-github-com-containerd-go-cni-1.0.1" +; ,go-github-com-containerd-go-cni-1.0.1) +; ("go-github-com-containerd-fifo-0.0.0-20210316144830-115abcc95a1d" +; ,go-github-com-containerd-fifo-0.0.0-20210316144830-115abcc95a1d) +; ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" +; ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) +; ("go-github-com-containerd-console-1.0.1" +; ,go-github-com-containerd-console-1.0.1) +; ("go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68" +; ,go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68) +; ("go-github-com-containerd-btrfs-0.0.0-20210316141732-918d888fb676" +; ,go-github-com-containerd-btrfs-0.0.0-20210316141732-918d888fb676) +; ("go-github-com-containerd-aufs-0.0.0-20210316121734-20793ff83c97" +; ,go-github-com-containerd-aufs-0.0.0-20210316121734-20793ff83c97) +; ("go-github-com-microsoft-hcsshim-0.8.15" +; ,go-github-com-microsoft-hcsshim-0.8.15) +; ("go-github-com-microsoft-go-winio-0.4.17-0.20210324224401-5516f17a5958" +; ,go-github-com-microsoft-go-winio-0.4.17-0.20210324224401-5516f17a5958))) +; (home-page "https://github.com/containerd/containerd") +; (synopsis "Now Recruiting") +; (description +; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20210322153248-0c34fe9e7dc2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "021szs1czc0xg4chpays7i05dvkax9s8mns314ab01r887kchqxq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (propagated-inputs +; `(("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" +; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) +; ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" +; ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68) +; ("go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110" +; ,go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110))) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-github-com-containers-ocicrypt-1.1.1 +; (package +; (name "go-github-com-containers-ocicrypt") +; (version "1.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containers/ocicrypt") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1l0bfk244sxnakg3my529jsw532pffkmiyk5y1iqblz4mkjfphc8")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containers/ocicrypt")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) +; ("go-gopkg-in-square-go-jose-v2-2.5.1" +; ,go-gopkg-in-square-go-jose-v2-2.5.1) +; ("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) +; ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" +; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) +; ("go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2" +; ,go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2) +; ("go-go-mozilla-org-pkcs7-0.0.0-20200128120323-432b2356ecb1" +; ,go-go-mozilla-org-pkcs7-0.0.0-20200128120323-432b2356ecb1) +; ("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0) +; ("go-github-com-stefanberger-go-pkcs11uri-0.0.0-20201008174630-78d3cae3a980" +; ,go-github-com-stefanberger-go-pkcs11uri-0.0.0-20201008174630-78d3cae3a980) +; ("go-github-com-sirupsen-logrus-1.7.0" +; ,go-github-com-sirupsen-logrus-1.7.0) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-image-spec-1.0.1" +; ,go-github-com-opencontainers-image-spec-1.0.1) +; ("go-github-com-opencontainers-go-digest-1.0.0" +; ,go-github-com-opencontainers-go-digest-1.0.0) +; ("go-github-com-miekg-pkcs11-1.0.3" ,go-github-com-miekg-pkcs11-1.0.3) +; ("go-github-com-google-go-cmp-0.5.2" +; ,go-github-com-google-go-cmp-0.5.2) +; ("go-github-com-golang-protobuf-1.4.3" +; ,go-github-com-golang-protobuf-1.4.3))) +; (home-page "https://github.com/containers/ocicrypt") +; (synopsis "OCIcrypt Library") +; (description +; "The @code{ocicrypt} library is the OCI image spec implementation of container image encryption. More details of the spec can be seen in the @url{https://github.com/opencontainers/image-spec/pull/775,OCI repository}. The purpose of this library is to encode spec structures and consts in code, as well as provide a consistent implementation of image encryption across container runtimes and build tools.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-imgcrypt-1.1.1 +; (package +; (name "go-github-com-containerd-imgcrypt") +; (version "1.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/imgcrypt") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "177fs3p2xzwjsffcxqqllx6wi6ghfyqbvfgn95v3q7a2993yqk4k")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/imgcrypt")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) +; ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" +; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) +; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) +; ("go-github-com-sirupsen-logrus-1.7.0" +; ,go-github-com-sirupsen-logrus-1.7.0) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" +; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) +; ("go-github-com-opencontainers-image-spec-1.0.1" +; ,go-github-com-opencontainers-image-spec-1.0.1) +; ("go-github-com-opencontainers-go-digest-1.0.0" +; ,go-github-com-opencontainers-go-digest-1.0.0) +; ("go-github-com-gogo-protobuf-1.3.2" +; ,go-github-com-gogo-protobuf-1.3.2) +; ("go-github-com-containers-ocicrypt-1.1.1" +; ,go-github-com-containers-ocicrypt-1.1.1) +; ("go-github-com-containerd-typeurl-1.0.1" +; ,go-github-com-containerd-typeurl-1.0.1) +; ("go-github-com-containerd-containerd-1.5.0-rc.0" +; ,go-github-com-containerd-containerd-1.5.0-rc.0) +; ("go-github-com-containerd-console-1.0.2" +; ,go-github-com-containerd-console-1.0.2) +; ("go-github-com-microsoft-hcsshim-0.8.16" +; ,go-github-com-microsoft-hcsshim-0.8.16) +; ("go-github-com-microsoft-go-winio-0.4.17-0.20210324224401-5516f17a5958" +; ,go-github-com-microsoft-go-winio-0.4.17-0.20210324224401-5516f17a5958))) +; (home-page "https://github.com/containerd/imgcrypt") +; (synopsis "imgcrypt image encryption library and command line tool") +; (description +; "Project @code{imgcrypt} is a non-core subproject of containerd.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-nri-0.1.0 +; (package +; (name "go-github-com-containerd-nri") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/nri") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0hqji5qa0n0fdyv9sjdl7mv3bb4fnq9i79pdzlw6m1nigrnb18qp")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/nri")) +; (propagated-inputs +; `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-containerd-containerd-1.5.0-beta.3" +; ,go-github-com-containerd-containerd-1.5.0-beta.3))) +; (home-page "https://github.com/containerd/nri") +; (synopsis "nri - Node Resource Interface") +; (description +; "This project is a WIP for a new, CNI like, interface for managing resources on a node for Pods and Containers.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20200224152610-e50cd9704f63 +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20200224152610-e50cd9704f63") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1392q1dfg4kkfg86w05gsszdlkd0hf424rvich1xzjqbm3ad3lin")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" +; ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) +; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) +; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" +; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-github-com-golang-protobuf-1.3.3" +; ,go-github-com-golang-protobuf-1.3.3))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-ttrpc-1.1.0 +; (package +; (name "go-github-com-containerd-ttrpc") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/ttrpc") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "13grp3ivmkdyhwpzhnva2w4lv035c4i1m0a2bdci4z44mif86gns")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/ttrpc")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.27.1" +; ,go-google-golang-org-protobuf-1.27.1) +; ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) +; ("go-google-golang-org-genproto-0.0.0-20200224152610-e50cd9704f63" +; ,go-google-golang-org-genproto-0.0.0-20200224152610-e50cd9704f63) +; ("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" +; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) +; ("go-github-com-sirupsen-logrus-1.8.1" +; ,go-github-com-sirupsen-logrus-1.8.1) +; ("go-github-com-prometheus-procfs-0.6.0" +; ,go-github-com-prometheus-procfs-0.6.0) +; ("go-github-com-gogo-protobuf-1.3.2" +; ,go-github-com-gogo-protobuf-1.3.2))) +; (home-page "https://github.com/containerd/ttrpc") +; (synopsis "ttrpc") +; (description "GRPC for low-memory environments.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-typeurl-1.0.2 +; (package +; (name "go-github-com-containerd-typeurl") +; (version "1.0.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/typeurl") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0wvfxlxgkln11d9s6rxay965c715bnpk203klbsq8m8qpjqrz620")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/typeurl")) +; (propagated-inputs +; `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-gogo-protobuf-1.3.2" +; ,go-github-com-gogo-protobuf-1.3.2))) +; (home-page "https://github.com/containerd/typeurl") +; (synopsis "typeurl") +; (description +; "This package provides a Go package for managing the registration, marshaling, and unmarshaling of encoded types.") +; (license license:asl2.0))) +; +;(define-public go-github-com-microsoft-hcsshim-0.8.15 +; (package +; (name "go-github-com-microsoft-hcsshim") +; (version "0.8.15") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/microsoft/hcsshim") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1119qf7nklpnn9li61m8jrd5wvifhiz7qh7sfjjy04rfvbvlsi6c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/Microsoft/hcsshim")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.30.0" ,go-google-golang-org-grpc-1.30.0) +; ("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" +; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) +; ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" +; ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) +; ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) +; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) +; ("go-github-com-sirupsen-logrus-1.7.0" +; ,go-github-com-sirupsen-logrus-1.7.0) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" +; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) +; ("go-github-com-gogo-protobuf-1.3.2" +; ,go-github-com-gogo-protobuf-1.3.2) +; ("go-github-com-containerd-typeurl-1.0.1" +; ,go-github-com-containerd-typeurl-1.0.1) +; ("go-github-com-containerd-ttrpc-1.0.2" +; ,go-github-com-containerd-ttrpc-1.0.2) +; ("go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328" +; ,go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328) +; ("go-github-com-containerd-containerd-1.5.0-beta.1" +; ,go-github-com-containerd-containerd-1.5.0-beta.1) +; ("go-github-com-containerd-console-1.0.1" +; ,go-github-com-containerd-console-1.0.1) +; ("go-github-com-containerd-cgroups-0.0.0-20200824123100-0b889c03f102" +; ,go-github-com-containerd-cgroups-0.0.0-20200824123100-0b889c03f102) +; ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" +; ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3))) +; (home-page "https://github.com/Microsoft/hcsshim") +; (synopsis "hcsshim") +; (description +; "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") +; (license license:expat))) +; +;(define-public go-github-com-containerd-containerd-1.4.1 +; (package +; (name "go-github-com-containerd-containerd") +; (version "1.4.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/containerd") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1k6dqaidnldf7kpxdszf0wn6xb8m6vaizm2aza81fri1q0051213")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/containerd")) +; (home-page "https://github.com/containerd/containerd") +; (synopsis "Now Recruiting") +; (description +; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-sys-0.0.0-20200622214017-ed371f2e16b4 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20200622214017-ed371f2e16b4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "107wfy2fj6z5zps1v72j8drfrfvss1158drb0yqhz5awlbvgrpj7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-containerd-aufs-0.0.0-20201003224125-76a6863f2989 +; (package +; (name "go-github-com-containerd-aufs") +; (version "0.0.0-20201003224125-76a6863f2989") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/aufs") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0nsiyqjrgf3vvv6hpiljknpbkzlla1czpkq69i607f7p5jd8bgaq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/aufs")) +; (propagated-inputs +; `(("go-gotest-tools-v3-3.0.2" ,go-gotest-tools-v3-3.0.2) +; ("go-golang-org-x-sys-0.0.0-20200622214017-ed371f2e16b4" +; ,go-golang-org-x-sys-0.0.0-20200622214017-ed371f2e16b4) +; ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-image-spec-1.0.1" +; ,go-github-com-opencontainers-image-spec-1.0.1) +; ("go-github-com-google-go-cmp-0.3.1" +; ,go-github-com-google-go-cmp-0.3.1) +; ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" +; ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) +; ("go-github-com-containerd-typeurl-1.0.1" +; ,go-github-com-containerd-typeurl-1.0.1) +; ("go-github-com-containerd-ttrpc-1.0.1" +; ,go-github-com-containerd-ttrpc-1.0.1) +; ("go-github-com-containerd-continuity-0.0.0-20200710164510-efbc4488d8fe" +; ,go-github-com-containerd-continuity-0.0.0-20200710164510-efbc4488d8fe) +; ("go-github-com-containerd-containerd-1.4.1" +; ,go-github-com-containerd-containerd-1.4.1) +; ("go-github-com-microsoft-hcsshim-0.8.9" +; ,go-github-com-microsoft-hcsshim-0.8.9))) +; (home-page "https://github.com/containerd/aufs") +; (synopsis "aufs snapshotter") +; (description +; "AUFS implementation of the snapshot interface for containerd.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68 +; (package +; (name "go-github-com-containerd-cgroups") +; (version "0.0.0-20210114181951-8a68de567b68") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/cgroups") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0v70kxazvsizx33w9nz341hg14acg2vnbfcpx9yknmsjqdwgqnhs")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/cgroups")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9" +; ,go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9) +; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) +; ("go-github-com-stretchr-testify-1.2.2" +; ,go-github-com-stretchr-testify-1.2.2) +; ("go-github-com-sirupsen-logrus-1.7.0" +; ,go-github-com-sirupsen-logrus-1.7.0) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-runtime-spec-1.0.2" +; ,go-github-com-opencontainers-runtime-spec-1.0.2) +; ("go-github-com-gogo-protobuf-1.3.1" +; ,go-github-com-gogo-protobuf-1.3.1) +; ("go-github-com-godbus-dbus-v5-5.0.3" +; ,go-github-com-godbus-dbus-v5-5.0.3) +; ("go-github-com-docker-go-units-0.4.0" +; ,go-github-com-docker-go-units-0.4.0) +; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" +; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) +; ("go-github-com-coreos-go-systemd-v22-22.1.0" +; ,go-github-com-coreos-go-systemd-v22-22.1.0) +; ("go-github-com-cilium-ebpf-0.2.0" ,go-github-com-cilium-ebpf-0.2.0))) +; (home-page "https://github.com/containerd/cgroups") +; (synopsis "cgroups") +; (description +; "Go package for creating, managing, inspecting, and destroying cgroups. +;The resources format for settings on the cgroup uses the OCI runtime-spec found +;@url{https://github.com/opencontainers/runtime-spec,here}.") +; (license license:asl2.0))) +; +;(define-public go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3 +; (package +; (name "go-github-com-microsoft-go-winio") +; (version "0.4.17-0.20210211115548-6eac466e5fa3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/microsoft/go-winio") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0w8fmybsl0v5azwi66qa299gwh0mlp907mrg4yaiya7s0cjmjx0d")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/Microsoft/go-winio")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" +; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) +; ("go-github-com-sirupsen-logrus-1.7.0" +; ,go-github-com-sirupsen-logrus-1.7.0) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) +; (home-page "https://github.com/Microsoft/go-winio") +; (synopsis "go-winio") +; (description +; "This repository contains utilities for efficiently performing Win32 IO operations in +;Go. Currently, this is focused on accessing named pipes and other file handles, and +;for using named pipes as a net transport.") +; (license license:expat))) +; +;(define-public go-github-com-microsoft-hcsshim-test-0.0.0-20210227013316-43a75bb4edd3 +; (package +; (name "go-github-com-microsoft-hcsshim-test") +; (version "0.0.0-20210227013316-43a75bb4edd3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/microsoft/hcsshim") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1j899w4hdw1mk6rfyy9qsm902iavgc49ykbjdsb02m6wszq1z0wy")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path +; "github.com/Microsoft/hcsshim/test" +; #:unpack-path +; "github.com/Microsoft/hcsshim")) +; (propagated-inputs +; `(("go-k8s-io-cri-api-0.20.1" ,go-k8s-io-cri-api-0.20.1) +; ("go-google-golang-org-grpc-1.30.0" ,go-google-golang-org-grpc-1.30.0) +; ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" +; ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) +; ("go-github-com-sirupsen-logrus-1.7.0" +; ,go-github-com-sirupsen-logrus-1.7.0) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39" +; ,go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39) +; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" +; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) +; ("go-github-com-gogo-protobuf-1.3.2" +; ,go-github-com-gogo-protobuf-1.3.2) +; ("go-github-com-containerd-typeurl-1.0.1" +; ,go-github-com-containerd-typeurl-1.0.1) +; ("go-github-com-containerd-ttrpc-1.0.2" +; ,go-github-com-containerd-ttrpc-1.0.2) +; ("go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328" +; ,go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328) +; ("go-github-com-containerd-containerd-1.5.0-beta.1" +; ,go-github-com-containerd-containerd-1.5.0-beta.1) +; ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" +; ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3))) +; (home-page "https://github.com/Microsoft/hcsshim") +; (synopsis #f) +; (description #f) +; (license license:expat))) +; +;(define-public go-github-com-microsoft-go-winio-0.4.16 +; (package +; (name "go-github-com-microsoft-go-winio") +; (version "0.4.16") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/microsoft/go-winio") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0snwbwdjs34x0my9ri77cvrbnahdiyjh2jlkzf12fy48p7fyk7pq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/Microsoft/go-winio")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3" +; ,go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3) +; ("go-github-com-sirupsen-logrus-1.4.1" +; ,go-github-com-sirupsen-logrus-1.4.1) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) +; (home-page "https://github.com/Microsoft/go-winio") +; (synopsis "go-winio") +; (description +; "This repository contains utilities for efficiently performing Win32 IO operations in +;Go. Currently, this is focused on accessing named pipes and other file handles, and +;for using named pipes as a net transport.") +; (license license:expat))) +; +;(define-public go-github-com-azure-azure-sdk-for-go-16.2.1+incompatible +; (package +; (name "go-github-com-azure-azure-sdk-for-go") +; (version "16.2.1+incompatible") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/Azure/azure-sdk-for-go") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1hwrspsyfs003h4f8zl8b41g3a6jpkqawqrykd1mjw9p6hs1c6k8")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/Azure/azure-sdk-for-go")) +; (home-page "https://github.com/Azure/azure-sdk-for-go") +; (synopsis "Azure SDK for Go") +; (description +; "Package sdk provides Go packages for managing and using Azure services. +;") +; (license license:expat))) +; +;(define-public go-github-com-azure-go-autorest-10.8.1+incompatible +; (package +; (name "go-github-com-azure-go-autorest") +; (version "10.8.1+incompatible") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/Azure/go-autorest") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "122zfifj93vkix8ggkdh0dz5rmzxh4bql4nry1hws2czmzgxlkdm")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/Azure/go-autorest")) +; (home-page "https://github.com/Azure/go-autorest") +; (synopsis "go-autorest") +; (description +; "Package go-autorest provides an HTTP request client for use with Autorest-generated API client packages. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-go-ini-ini-1.25.4 +; (package +; (name "go-github-com-go-ini-ini") +; (version "1.25.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/go-ini/ini") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0b6cql5ripbiyrm18d6bfd1rfjnwcbskppw3d0vb80l0wy72d0c6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/go-ini/ini")) +; (home-page "https://github.com/go-ini/ini") +; (synopsis "INI") +; (description +; "Package ini provides INI file read and write functionality in Go. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-jmespath-go-jmespath-0.0.0-20160202185014-0b12d6b521d8 +; (package +; (name "go-github-com-jmespath-go-jmespath") +; (version "0.0.0-20160202185014-0b12d6b521d8") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/jmespath/go-jmespath") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1vv6hph8j6xgv7gwl9vvhlsaaqsm22sxxqmgmldi4v11783pc1ld")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/jmespath/go-jmespath")) +; (home-page "https://github.com/jmespath/go-jmespath") +; (synopsis "go-jmespath - A JMESPath implementation in Go") +; (description +; "go-jmespath is a GO implementation of JMESPath, +;which is a query language for JSON. It will take a JSON +;document and transform it into another JSON document +;through a JMESPath expression.") +; (license license:asl2.0))) +; +;(define-public go-github-com-aws-aws-sdk-go-1.15.11 +; (package +; (name "go-github-com-aws-aws-sdk-go") +; (version "1.15.11") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/aws/aws-sdk-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0w960w39k3nyc17p1lvd41cls39qwg7kzfm57vfbdb4h1m5sck99")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/aws/aws-sdk-go")) +; (propagated-inputs +; `(("go-github-com-jmespath-go-jmespath-0.0.0-20160202185014-0b12d6b521d8" +; ,go-github-com-jmespath-go-jmespath-0.0.0-20160202185014-0b12d6b521d8) +; ("go-github-com-go-ini-ini-1.25.4" ,go-github-com-go-ini-ini-1.25.4))) +; (home-page "https://github.com/aws/aws-sdk-go") +; (synopsis "AWS SDK for Go") +; (description +; "Package sdk is the official AWS SDK for the Go programming language. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-beorn7-perks-0.0.0-20160804104726-4c0e84591b9a +; (package +; (name "go-github-com-beorn7-perks") +; (version "0.0.0-20160804104726-4c0e84591b9a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/beorn7/perks") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1hrybsql68xw57brzj805xx2mghydpdiysv3gbhr7f5wlxj2514y")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/beorn7/perks")) +; (home-page "https://github.com/beorn7/perks") +; (synopsis "Perks for Go (golang.org)") +; (description +; "Perks contains the Go package quantile that computes approximate quantiles over +;an unbounded data stream within low memory and CPU bounds.") +; (license license:expat))) +; +;(define-public go-github-com-bmizerany-assert-0.0.0-20160611221934-b7ed37b82869 +; (package +; (name "go-github-com-bmizerany-assert") +; (version "0.0.0-20160611221934-b7ed37b82869") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/bmizerany/assert") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "18hy1wyl9zdi7sgxafrn3m7fadh6in0rhhb8l0cvkxqzdl0jcw2s")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/bmizerany/assert")) +; (home-page "https://github.com/bmizerany/assert") +; (synopsis #f) +; (description #f) +; (license #f))) +; +;(define-public go-github-com-bshuster-repo-logrus-logstash-hook-0.4.1 +; (package +; (name "go-github-com-bshuster-repo-logrus-logstash-hook") +; (version "0.4.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/bshuster-repo/logrus-logstash-hook") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1kkjzav4i3l2ahgpirysr0cqh60vdq517lpj00cc9z32zfrsw87k")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "github.com/bshuster-repo/logrus-logstash-hook")) +; (home-page "https://github.com/bshuster-repo/logrus-logstash-hook") +; (synopsis "Logstash hook for logrus") +; (description +; "Use this hook to send the logs to @url{https://www.elastic.co/products/logstash,Logstash}.") +; (license license:expat))) +; +;(define-public go-github-com-dgrijalva-jwt-go-0.0.0-20170104182250-a601269ab70c +; (package +; (name "go-github-com-dgrijalva-jwt-go") +; (version "0.0.0-20170104182250-a601269ab70c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/dgrijalva/jwt-go") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1c2dhmj95wh9cs099cr43qghgmp6bqx0mq44vha2dqq5jkbazwfv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/dgrijalva/jwt-go")) +; (home-page "https://github.com/dgrijalva/jwt-go") +; (synopsis "jwt-go") +; (description +; "Package jwt is a Go implementation of JSON Web Tokens: @url{http://self-issued.info/docs/draft-jones-json-web-token.html,http://self-issued.info/docs/draft-jones-json-web-token.html} +;") +; (license license:expat))) +; +;(define-public go-github-com-docker-go-metrics-0.0.0-20180209012529-399ea8c73916 +; (package +; (name "go-github-com-docker-go-metrics") +; (version "0.0.0-20180209012529-399ea8c73916") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/docker/go-metrics") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0najfy92fq05b330cnjk5b326yi7dnnmvzfk6g5lsa1fci78yzw4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/docker/go-metrics")) +; (home-page "https://github.com/docker/go-metrics") +; (synopsis "go-metrics") +; (description +; "This package is small wrapper around the prometheus go client to help enforce convention and best practices for metrics collection in Docker projects.") +; (license (list license:asl2.0 license:cc-by-sa4.0)))) +; +;(define-public go-github-com-garyburd-redigo-0.0.0-20150301180006-535138d7bcd7 +; (package +; (name "go-github-com-garyburd-redigo") +; (version "0.0.0-20150301180006-535138d7bcd7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/garyburd/redigo") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1m7nc1gvv5yqnq8ii75f33485il6y6prf8gxl97dimsw94qccc5v")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/garyburd/redigo")) +; (home-page "https://github.com/garyburd/redigo") +; (synopsis #f) +; (description +; "Future development of Redigo is at +;@url{https://github.com/gomodule/redigo,github.com/gomodule/redigo}. Please submit +;issues at gomodule/redigo. The repository at github.com/garyburd/redigo is a +;read-only snapshot.") +; (license license:asl2.0))) +; +;(define-public go-github-com-gorilla-handlers-0.0.0-20150720190736-60c7bfde3e33 +; (package +; (name "go-github-com-gorilla-handlers") +; (version "0.0.0-20150720190736-60c7bfde3e33") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/gorilla/handlers") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0zvpxvybdn8yqpk2cxs134ip9wxmw6c1s0kw9nahf7qw1kfyzycm")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/gorilla/handlers")) +; (home-page "https://github.com/gorilla/handlers") +; (synopsis "gorilla/handlers") +; (description +; "Package handlers is a collection of handlers (aka \"HTTP middleware\") for use +;with Go's net/http package (or any framework supporting http.Handler). +;") +; (license license:bsd-2))) +; +;(define-public go-github-com-gorilla-mux-1.7.2 +; (package +; (name "go-github-com-gorilla-mux") +; (version "1.7.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/gorilla/mux") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1gjcbgpdl3snc38i8sj8k6sqbv3inyrxqyggbqvr4jfx2phv2zy6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/gorilla/mux")) +; (home-page "https://github.com/gorilla/mux") +; (synopsis "gorilla/mux") +; (description "Package mux implements a request router and dispatcher. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-jmespath-go-jmespath-0.0.0-20160803190731-bd40a432e4c7 +; (package +; (name "go-github-com-jmespath-go-jmespath") +; (version "0.0.0-20160803190731-bd40a432e4c7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/jmespath/go-jmespath") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1kgzwiyqn24ba9kgpjxlq1h746gnyby0psbjj9mp2yx0h1i0kc4z")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/jmespath/go-jmespath")) +; (home-page "https://github.com/jmespath/go-jmespath") +; (synopsis "go-jmespath - A JMESPath implementation in Go") +; (description +; "go-jmespath is a GO implementation of JMESPath, +;which is a query language for JSON. It will take a JSON +;document and transform it into another JSON document +;through a JMESPath expression.") +; (license license:asl2.0))) +; +;(define-public go-github-com-marstr-guid-1.1.0 +; (package +; (name "go-github-com-marstr-guid") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/marstr/guid") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "081qrar6wwpmb2pq3swv4byh73r9riyhl2dwv0902d8jg3kwricm")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/marstr/guid")) +; (home-page "https://github.com/marstr/guid") +; (synopsis "Guid") +; (description +; "Globally unique identifiers offer a quick means of generating non-colliding values across a distributed system. For this implemenation, @url{http://ietf.org/rfc/rfc4122.txt,RFC 4122} governs the desired behavior.") +; (license license:expat))) +; +;(define-public go-github-com-opencontainers-go-digest-0.0.0-20170106003457-a6d0ee40d420 +; (package +; (name "go-github-com-opencontainers-go-digest") +; (version "0.0.0-20170106003457-a6d0ee40d420") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/go-digest") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1paz3na2xkhi10p5bk7f7gbh5yykfgr9f9i2gcc13rb461yq6fmg")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/go-digest")) +; (home-page "https://github.com/opencontainers/go-digest") +; (synopsis "go-digest") +; (description +; "Package digest provides a generalized type to opaquely represent message +;digests and their operations within the registry. The Digest type is +;designed to serve as a flexible identifier in a content-addressable system. +;More importantly, it provides tools and wrappers to work with +;hash.Hash-based digests with little effort. +;") +; (license (list license:asl2.0 license:cc-by-sa4.0)))) +; +;(define-public go-github-com-opencontainers-image-spec-1.0.0 +; (package +; (name "go-github-com-opencontainers-image-spec") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/image-spec") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "04ax2pylpwzsa5pw6wk94shdpdmfyqf70ys0idhpxsygzc2m5l23")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/image-spec")) +; (home-page "https://github.com/opencontainers/image-spec") +; (synopsis "OCI Image Format Specification") +; (description +; "The OCI Image Format project creates and maintains the software shipping container image format spec (OCI Image Format).") +; (license license:asl2.0))) +; +;(define-public go-github-com-prometheus-client-golang-0.0.0-20180209125602-c332b6f63c06 +; (package +; (name "go-github-com-prometheus-client-golang") +; (version "0.0.0-20180209125602-c332b6f63c06") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/client_golang") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "068r759wnh1lxcjhj89z4bqbpl7ydcx2drn2967ygw80nyab30pq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/client_golang")) +; (home-page "https://github.com/prometheus/client_golang") +; (synopsis "Prometheus Go client library") +; (description +; "This is the @url{http://golang.org,Go} client library for +;@url{http://prometheus.io,Prometheus}. It has two separate parts, one for +;instrumenting application code, and one for creating clients that talk to the +;Prometheus HTTP API.") +; (license license:asl2.0))) +; +;(define-public go-github-com-prometheus-client-model-0.0.0-20171117100541-99fa1f4be8e5 +; (package +; (name "go-github-com-prometheus-client-model") +; (version "0.0.0-20171117100541-99fa1f4be8e5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/client_model") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19y4ywsivhpxj7ikf2j0gm9k3cmyw37qcbfi78n526jxcc7kw998")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/client_model")) +; (home-page "https://github.com/prometheus/client_model") +; (synopsis "Deprecation note") +; (description +; "This repository used to contain the code that defined both +;the data model and the exposition format of Prometheus metrics.") +; (license license:asl2.0))) +; +;(define-public go-github-com-prometheus-common-0.0.0-20180110214958-89604d197083 +; (package +; (name "go-github-com-prometheus-common") +; (version "0.0.0-20180110214958-89604d197083") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/common") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "169rdlaf2mk9z4fydz7ajmngyhmf3q1lk96yhvx46bn986x5xkyn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/common")) +; (home-page "https://github.com/prometheus/common") +; (synopsis "Common") +; (description +; "This repository contains Go libraries that are shared across Prometheus +;components and libraries. They are considered internal to Prometheus, without +;any stability guarantees for external usage.") +; (license license:asl2.0))) +; +;(define-public go-github-com-smartystreets-goconvey-0.0.0-20190330032615-68dc04aab96a +; (package +; (name "go-github-com-smartystreets-goconvey") +; (version "0.0.0-20190330032615-68dc04aab96a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/smartystreets/goconvey") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1kas5v95fzhr88hg4rjy0vp03y4pzvy3pwwgkfz2yhn5nlj29nk6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/smartystreets/goconvey")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20190328211700-ab21143f2384" +; ,go-golang-org-x-tools-0.0.0-20190328211700-ab21143f2384) +; ("go-github-com-smartystreets-assertions-0.0.0-20180927180507-b2de0cb4f26d" +; ,go-github-com-smartystreets-assertions-0.0.0-20180927180507-b2de0cb4f26d) +; ("go-github-com-jtolds-gls-4.20.0+incompatible" +; ,go-github-com-jtolds-gls-4.20.0+incompatible) +; ("go-github-com-gopherjs-gopherjs-0.0.0-20181017120253-0766667cb4d1" +; ,go-github-com-gopherjs-gopherjs-0.0.0-20181017120253-0766667cb4d1))) +; (home-page "https://github.com/smartystreets/goconvey") +; (synopsis "GoConvey is awesome Go testing") +; (description +; "This executable provides an HTTP server that watches for file system changes +;to .go files within the working directory (and all nested go packages). +;Navigating to the configured host and port in a web browser will display the +;latest results of running `go test` in each go package. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-net-0.0.0-20190619014844-b5b0513f8c1b +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190619014844-b5b0513f8c1b") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0sr4gbiq09izkmm6hcmfnia6lz6ngzzqjbwlrzh7jifbzyck53wz")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190602015325-4c4f7f33c9ed +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190602015325-4c4f7f33c9ed") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "191001bxqyc3xfs46nnqmm7jdk0r73vk7a4zqngfl7zwjv9smwsq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-docker-distribution-0.0.0-20190905152932-14b96e55d84c +; (package +; (name "go-github-com-docker-distribution") +; (version "0.0.0-20190905152932-14b96e55d84c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/distribution/distribution") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0jd7ccjy7ahznsh6hf9dhqbgn9glwc0db9g5nv8n6sys5d1jdni9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/docker/distribution")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) +; ("go-gopkg-in-check-v1-1.0.0-20141024133853-64131543e789" +; ,go-gopkg-in-check-v1-1.0.0-20141024133853-64131543e789) +; ("go-google-golang-org-grpc-0.0.0-20160317175043-d3ddb4469d5a" +; ,go-google-golang-org-grpc-0.0.0-20160317175043-d3ddb4469d5a) +; ("go-google-golang-org-cloud-0.0.0-20151119220103-975617b05ea8" +; ,go-google-golang-org-cloud-0.0.0-20151119220103-975617b05ea8) +; ("go-google-golang-org-api-0.0.0-20160322025152-9bf6e6e569ff" +; ,go-google-golang-org-api-0.0.0-20160322025152-9bf6e6e569ff) +; ("go-golang-org-x-sys-0.0.0-20190602015325-4c4f7f33c9ed" +; ,go-golang-org-x-sys-0.0.0-20190602015325-4c4f7f33c9ed) +; ("go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45" +; ,go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45) +; ("go-golang-org-x-net-0.0.0-20190619014844-b5b0513f8c1b" +; ,go-golang-org-x-net-0.0.0-20190619014844-b5b0513f8c1b) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2) +; ("go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20140908184405-b21fdbd4370f" +; ,go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20140908184405-b21fdbd4370f) +; ("go-github-com-yvasiyarov-gorelic-0.0.0-20141212073537-a9bba5b9ab50" +; ,go-github-com-yvasiyarov-gorelic-0.0.0-20141212073537-a9bba5b9ab50) +; ("go-github-com-yvasiyarov-go-metrics-0.0.0-20140926110328-57bccd1ccd43" +; ,go-github-com-yvasiyarov-go-metrics-0.0.0-20140926110328-57bccd1ccd43) +; ("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0) +; ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) +; ("go-github-com-spf13-cobra-0.0.3" ,go-github-com-spf13-cobra-0.0.3) +; ("go-github-com-smartystreets-goconvey-0.0.0-20190330032615-68dc04aab96a" +; ,go-github-com-smartystreets-goconvey-0.0.0-20190330032615-68dc04aab96a) +; ("go-github-com-sirupsen-logrus-1.4.2" +; ,go-github-com-sirupsen-logrus-1.4.2) +; ("go-github-com-satori-go-uuid-1.2.0" +; ,go-github-com-satori-go-uuid-1.2.0) +; ("go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7" +; ,go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7) +; ("go-github-com-prometheus-common-0.0.0-20180110214958-89604d197083" +; ,go-github-com-prometheus-common-0.0.0-20180110214958-89604d197083) +; ("go-github-com-prometheus-client-model-0.0.0-20171117100541-99fa1f4be8e5" +; ,go-github-com-prometheus-client-model-0.0.0-20171117100541-99fa1f4be8e5) +; ("go-github-com-prometheus-client-golang-0.0.0-20180209125602-c332b6f63c06" +; ,go-github-com-prometheus-client-golang-0.0.0-20180209125602-c332b6f63c06) +; ("go-github-com-opencontainers-image-spec-1.0.0" +; ,go-github-com-opencontainers-image-spec-1.0.0) +; ("go-github-com-opencontainers-go-digest-0.0.0-20170106003457-a6d0ee40d420" +; ,go-github-com-opencontainers-go-digest-0.0.0-20170106003457-a6d0ee40d420) +; ("go-github-com-ncw-swift-1.0.47" ,go-github-com-ncw-swift-1.0.47) +; ("go-github-com-mitchellh-osext-0.0.0-20151018003038-5e2d6d41470f" +; ,go-github-com-mitchellh-osext-0.0.0-20151018003038-5e2d6d41470f) +; ("go-github-com-mitchellh-mapstructure-1.1.2" +; ,go-github-com-mitchellh-mapstructure-1.1.2) +; ("go-github-com-matttproud-golang-protobuf-extensions-1.0.1" +; ,go-github-com-matttproud-golang-protobuf-extensions-1.0.1) +; ("go-github-com-marstr-guid-1.1.0" ,go-github-com-marstr-guid-1.1.0) +; ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) +; ("go-github-com-jmespath-go-jmespath-0.0.0-20160803190731-bd40a432e4c7" +; ,go-github-com-jmespath-go-jmespath-0.0.0-20160803190731-bd40a432e4c7) +; ("go-github-com-inconshreveable-mousetrap-1.0.0" +; ,go-github-com-inconshreveable-mousetrap-1.0.0) +; ("go-github-com-gorilla-mux-1.7.2" ,go-github-com-gorilla-mux-1.7.2) +; ("go-github-com-gorilla-handlers-0.0.0-20150720190736-60c7bfde3e33" +; ,go-github-com-gorilla-handlers-0.0.0-20150720190736-60c7bfde3e33) +; ("go-github-com-garyburd-redigo-0.0.0-20150301180006-535138d7bcd7" +; ,go-github-com-garyburd-redigo-0.0.0-20150301180006-535138d7bcd7) +; ("go-github-com-docker-libtrust-0.0.0-20150114040149-fa567046d9b1" +; ,go-github-com-docker-libtrust-0.0.0-20150114040149-fa567046d9b1) +; ("go-github-com-docker-go-metrics-0.0.0-20180209012529-399ea8c73916" +; ,go-github-com-docker-go-metrics-0.0.0-20180209012529-399ea8c73916) +; ("go-github-com-dnaeon-go-vcr-1.0.1" +; ,go-github-com-dnaeon-go-vcr-1.0.1) +; ("go-github-com-dgrijalva-jwt-go-0.0.0-20170104182250-a601269ab70c" +; ,go-github-com-dgrijalva-jwt-go-0.0.0-20170104182250-a601269ab70c) +; ("go-github-com-denverdino-aliyungo-0.0.0-20190125010748-a747050bb1ba" +; ,go-github-com-denverdino-aliyungo-0.0.0-20190125010748-a747050bb1ba) +; ("go-github-com-bugsnag-panicwrap-0.0.0-20151223152923-e2c28503fcd0" +; ,go-github-com-bugsnag-panicwrap-0.0.0-20151223152923-e2c28503fcd0) +; ("go-github-com-bugsnag-osext-0.0.0-20130617224835-0dd3f918b21b" +; ,go-github-com-bugsnag-osext-0.0.0-20130617224835-0dd3f918b21b) +; ("go-github-com-bugsnag-bugsnag-go-0.0.0-20141110184014-b1d153021fcd" +; ,go-github-com-bugsnag-bugsnag-go-0.0.0-20141110184014-b1d153021fcd) +; ("go-github-com-bshuster-repo-logrus-logstash-hook-0.4.1" +; ,go-github-com-bshuster-repo-logrus-logstash-hook-0.4.1) +; ("go-github-com-bmizerany-assert-0.0.0-20160611221934-b7ed37b82869" +; ,go-github-com-bmizerany-assert-0.0.0-20160611221934-b7ed37b82869) +; ("go-github-com-bitly-go-simplejson-0.5.0" +; ,go-github-com-bitly-go-simplejson-0.5.0) +; ("go-github-com-beorn7-perks-0.0.0-20160804104726-4c0e84591b9a" +; ,go-github-com-beorn7-perks-0.0.0-20160804104726-4c0e84591b9a) +; ("go-github-com-aws-aws-sdk-go-1.15.11" +; ,go-github-com-aws-aws-sdk-go-1.15.11) +; ("go-github-com-shopify-logrus-bugsnag-0.0.0-20171204204709-577dee27f20d" +; ,go-github-com-shopify-logrus-bugsnag-0.0.0-20171204204709-577dee27f20d) +; ("go-github-com-azure-go-autorest-10.8.1+incompatible" +; ,go-github-com-azure-go-autorest-10.8.1+incompatible) +; ("go-github-com-azure-azure-sdk-for-go-16.2.1+incompatible" +; ,go-github-com-azure-azure-sdk-for-go-16.2.1+incompatible))) +; (home-page "https://github.com/docker/distribution") +; (synopsis "Distribution") +; (description +; "Package distribution will define the interfaces for the components of +;docker distribution. The goal is to allow users to reliably package, ship +;and store content related to docker images. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-gogo-protobuf-1.2.2-0.20190723190241-65acae22fc9d +; (package +; (name "go-github-com-gogo-protobuf") +; (version "1.2.2-0.20190723190241-65acae22fc9d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/gogo/protobuf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0700alky9z0g9akhrzn20wf4jr1600d0clhs32sm8chnlbvidy46")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/gogo/protobuf")) +; (propagated-inputs +; `(("go-github-com-kisielk-gotool-1.0.0" +; ,go-github-com-kisielk-gotool-1.0.0) +; ("go-github-com-kisielk-errcheck-1.2.0" +; ,go-github-com-kisielk-errcheck-1.2.0))) +; (home-page "https://github.com/gogo/protobuf") +; (synopsis "Protocol Buffers for Go with Gadgets") +; (description +; "gogoprotobuf is a fork of @url{https://github.com/golang/protobuf,golang/protobuf} with extra code generation features.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190813064441-fde4db37ae7a +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190813064441-fde4db37ae7a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "16k4w4pzziq1kln18k5fg01qgk4hpzb5xsm7175kaky6d6gwyhg3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-k8s-io-cri-api-0.17.3 +; (package +; (name "go-k8s-io-cri-api") +; (version "0.17.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes/cri-api") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "047wg80q4cb9qikpj0zp2kzcgp599cdqwiqlravfy86bga4r3fgf")))) +; (build-system go-build-system) +; (arguments '(#:import-path "k8s.io/cri-api")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190813064441-fde4db37ae7a" +; ,go-golang-org-x-sys-0.0.0-20190813064441-fde4db37ae7a) +; ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) +; ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" +; ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) +; ("go-google-golang-org-grpc-1.23.1" ,go-google-golang-org-grpc-1.23.1) +; ("go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873" +; ,go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873) +; ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) +; ("go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9" +; ,go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9) +; ("go-github-com-stretchr-testify-1.4.0" +; ,go-github-com-stretchr-testify-1.4.0) +; ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2) +; ("go-github-com-gogo-protobuf-1.2.2-0.20190723190241-65acae22fc9d" +; ,go-github-com-gogo-protobuf-1.2.2-0.20190723190241-65acae22fc9d) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://k8s.io/cri-api") +; (synopsis "Purpose") +; (description +; "This repository contains the definitions for the Container Runtime Interface (CRI). +;CRI is a plugin interface which enables kubelet to use a wide variety of container runtimes, +;without the need to recompile. CRI consists of a protocol buffers and gRPC API.") +; (license license:asl2.0))) +; +;(define-public go-github-com-microsoft-hcsshim-test-0.0.0-20201218223536-d3e5debf77da +; (package +; (name "go-github-com-microsoft-hcsshim-test") +; (version "0.0.0-20201218223536-d3e5debf77da") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/microsoft/hcsshim") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0k57knv8zrf32hp7rpv1km9j772w6752pfvdbpd3l711ism48c84")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path +; "github.com/Microsoft/hcsshim/test" +; #:unpack-path +; "github.com/Microsoft/hcsshim")) +; (propagated-inputs +; `(("go-k8s-io-cri-api-0.17.3" ,go-k8s-io-cri-api-0.17.3) +; ("go-google-golang-org-grpc-1.23.1" ,go-google-golang-org-grpc-1.23.1) +; ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" +; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) +; ("go-go-etcd-io-bbolt-1.3.3" ,go-go-etcd-io-bbolt-1.3.3) +; ("go-github-com-xeipuuv-gojsonschema-0.0.0-20180618132009-1d523034197f" +; ,go-github-com-xeipuuv-gojsonschema-0.0.0-20180618132009-1d523034197f) +; ("go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415" +; ,go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415) +; ("go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f" +; ,go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f) +; ("go-github-com-syndtr-gocapability-0.0.0-20170704070218-db04d3cc01c8" +; ,go-github-com-syndtr-gocapability-0.0.0-20170704070218-db04d3cc01c8) +; ("go-github-com-sirupsen-logrus-1.4.2" +; ,go-github-com-sirupsen-logrus-1.4.2) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39" +; ,go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39) +; ("go-github-com-opencontainers-runtime-spec-1.0.2" +; ,go-github-com-opencontainers-runtime-spec-1.0.2) +; ("go-github-com-imdario-mergo-0.3.8" +; ,go-github-com-imdario-mergo-0.3.8) +; ("go-github-com-hashicorp-go-multierror-0.0.0-20161216184304-ed905158d874" +; ,go-github-com-hashicorp-go-multierror-0.0.0-20161216184304-ed905158d874) +; ("go-github-com-hashicorp-errwrap-0.0.0-20141028054710-7554cd9344ce" +; ,go-github-com-hashicorp-errwrap-0.0.0-20141028054710-7554cd9344ce) +; ("go-github-com-gogo-protobuf-1.3.1" +; ,go-github-com-gogo-protobuf-1.3.1) +; ("go-github-com-gogo-googleapis-1.2.0" +; ,go-github-com-gogo-googleapis-1.2.0) +; ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" +; ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) +; ("go-github-com-docker-distribution-0.0.0-20190905152932-14b96e55d84c" +; ,go-github-com-docker-distribution-0.0.0-20190905152932-14b96e55d84c) +; ("go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd" +; ,go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd) +; ("go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de" +; ,go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de) +; ("go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3" +; ,go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3) +; ("go-github-com-containerd-containerd-1.3.2" +; ,go-github-com-containerd-containerd-1.3.2) +; ("go-github-com-blang-semver-3.1.0+incompatible" +; ,go-github-com-blang-semver-3.1.0+incompatible) +; ("go-github-com-microsoft-go-winio-0.4.16-0.20201130162521-d1ffc52c7331" +; ,go-github-com-microsoft-go-winio-0.4.16-0.20201130162521-d1ffc52c7331))) +; (home-page "https://github.com/Microsoft/hcsshim") +; (synopsis #f) +; (description #f) +; (license license:expat))) +; +;(define-public go-github-com-containerd-aufs-0.0.0-20200908144142-dab0cbea06f4 +; (package +; (name "go-github-com-containerd-aufs") +; (version "0.0.0-20200908144142-dab0cbea06f4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/aufs") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "060iqypyrdmww0ykip1zqi5f2fl1il55vndgdn5aq5zj6530mgsn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/aufs")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) +; ("go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449" +; ,go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449) +; ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" +; ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) +; ("go-go-etcd-io-bbolt-1.3.3" ,go-go-etcd-io-bbolt-1.3.3) +; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) +; ("go-github-com-opencontainers-runc-1.0.0-rc9" +; ,go-github-com-opencontainers-runc-1.0.0-rc9) +; ("go-github-com-opencontainers-image-spec-1.0.1" +; ,go-github-com-opencontainers-image-spec-1.0.1) +; ("go-github-com-opencontainers-go-digest-1.0.0-rc1" +; ,go-github-com-opencontainers-go-digest-1.0.0-rc1) +; ("go-github-com-google-go-cmp-0.3.1" +; ,go-github-com-google-go-cmp-0.3.1) +; ("go-github-com-gogo-protobuf-1.3.1" +; ,go-github-com-gogo-protobuf-1.3.1) +; ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" +; ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) +; ("go-github-com-containerd-typeurl-0.0.0-20190911142611-5eb25027c9fd" +; ,go-github-com-containerd-typeurl-0.0.0-20190911142611-5eb25027c9fd) +; ("go-github-com-containerd-ttrpc-0.0.0-20191028202541-4f1b8fe65a5c" +; ,go-github-com-containerd-ttrpc-0.0.0-20191028202541-4f1b8fe65a5c) +; ("go-github-com-containerd-continuity-0.0.0-20191127005431-f65d91d395eb" +; ,go-github-com-containerd-continuity-0.0.0-20191127005431-f65d91d395eb) +; ("go-github-com-containerd-containerd-1.3.1-0.20191213020239-082f7e3aed57" +; ,go-github-com-containerd-containerd-1.3.1-0.20191213020239-082f7e3aed57) +; ("go-github-com-microsoft-hcsshim-0.8.7" +; ,go-github-com-microsoft-hcsshim-0.8.7))) +; (home-page "https://github.com/containerd/aufs") +; (synopsis "aufs snapshotter") +; (description +; "AUFS implementation of the snapshot interface for containerd.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-btrfs-0.0.0-20201111183144-404b9149801e +; (package +; (name "go-github-com-containerd-btrfs") +; (version "0.0.0-20201111183144-404b9149801e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/btrfs") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "10aakvy9njaly2mfwi1cvys8dxjn27mnd7wnpnmxh8pxb7g2svag")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/btrfs")) +; (propagated-inputs +; `(("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) +; (home-page "https://github.com/containerd/btrfs") +; (synopsis "go-btrfs") +; (description +; "Package btrfs provides bindings for working with btrfs partitions from Go. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-cgroups-0.0.0-20200824123100-0b889c03f102 +; (package +; (name "go-github-com-containerd-cgroups") +; (version "0.0.0-20200824123100-0b889c03f102") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/cgroups") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1zjmphy2df9y20hzrmwxfpyyvz8vb5lazr4pjyx3c5a5x0j4rv8d")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/cgroups")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9" +; ,go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9) +; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) +; ("go-github-com-stretchr-testify-1.2.2" +; ,go-github-com-stretchr-testify-1.2.2) +; ("go-github-com-sirupsen-logrus-1.6.0" +; ,go-github-com-sirupsen-logrus-1.6.0) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-runtime-spec-1.0.2" +; ,go-github-com-opencontainers-runtime-spec-1.0.2) +; ("go-github-com-gogo-protobuf-1.3.1" +; ,go-github-com-gogo-protobuf-1.3.1) +; ("go-github-com-godbus-dbus-v5-5.0.3" +; ,go-github-com-godbus-dbus-v5-5.0.3) +; ("go-github-com-docker-go-units-0.4.0" +; ,go-github-com-docker-go-units-0.4.0) +; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" +; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) +; ("go-github-com-coreos-go-systemd-v22-22.0.0" +; ,go-github-com-coreos-go-systemd-v22-22.0.0) +; ("go-github-com-cilium-ebpf-0.0.0-20200702112145-1c8d4c9ef775" +; ,go-github-com-cilium-ebpf-0.0.0-20200702112145-1c8d4c9ef775))) +; (home-page "https://github.com/containerd/cgroups") +; (synopsis "cgroups") +; (description +; "Go package for creating, managing, inspecting, and destroying cgroups. +;The resources format for settings on the cgroup uses the OCI runtime-spec found +;@url{https://github.com/opencontainers/runtime-spec,here}.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-continuity-0.0.0-20201208142359-180525291bb7 +; (package +; (name "go-github-com-containerd-continuity") +; (version "0.0.0-20201208142359-180525291bb7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/continuity") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1di4pspqfwfafdni0in84kzyn8h1fhqb6vh4i0g5skqmrc4sxf4h")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/continuity")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3" +; ,go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3) +; ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" +; ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) +; ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" +; ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) +; ("go-github-com-stretchr-testify-1.4.0" +; ,go-github-com-stretchr-testify-1.4.0) +; ("go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95" +; ,go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95) +; ("go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee" +; ,go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee) +; ("go-github-com-sirupsen-logrus-1.6.0" +; ,go-github-com-sirupsen-logrus-1.6.0) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-go-digest-1.0.0" +; ,go-github-com-opencontainers-go-digest-1.0.0) +; ("go-github-com-inconshreveable-mousetrap-1.0.0" +; ,go-github-com-inconshreveable-mousetrap-1.0.0) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0) +; ("go-github-com-dustin-go-humanize-1.0.0" +; ,go-github-com-dustin-go-humanize-1.0.0) +; ("go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898" +; ,go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898))) +; (home-page "https://github.com/containerd/continuity") +; (synopsis "continuity") +; (description +; "This package provides a transport-agnostic, filesystem metadata manifest system") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-fifo-0.0.0-20201026212402-0724c46b320c +; (package +; (name "go-github-com-containerd-fifo") +; (version "0.0.0-20201026212402-0724c46b320c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/fifo") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "11d9j0isblnnqf78ygvwjyijjxn6zdzf7p803v0jv2py4d0pkvj8")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/fifo")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449" +; ,go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449) +; ("go-github-com-stretchr-testify-1.4.0" +; ,go-github-com-stretchr-testify-1.4.0) +; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) +; (home-page "https://github.com/containerd/fifo") +; (synopsis "fifo") +; (description "Go package for handling fifos in a sane way.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containernetworking-cni-0.8.0 +; (package +; (name "go-github-com-containernetworking-cni") +; (version "0.8.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containernetworking/cni") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "16i59dhiq7pc7qs32cdk4yv4w9rjx4vvlw7fb6a6jhq6hxxjrgiw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containernetworking/cni")) +; (home-page "https://github.com/containernetworking/cni") +; (synopsis "CNI - the Container Network Interface") +; (description +; "CNI (), a @url{https://cncf.io,Cloud Native Computing Foundation} project, consists of a specification and libraries for writing plugins to configure network interfaces in Linux containers, along with a number of supported plugins. +;CNI concerns itself only with network connectivity of containers and removing allocated resources when the container is deleted. +;Because of this focus, CNI has a wide range of support and the specification is simple to implement.") +; (license license:asl2.0))) +; +;(define-public go-github-com-onsi-ginkgo-1.10.3 +; (package +; (name "go-github-com-onsi-ginkgo") +; (version "1.10.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/onsi/ginkgo") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "00a40by9f5ylycnar8h3p9b4z5rcsvfvg4j3v5s5mchdqrqjv1pc")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/onsi/ginkgo")) +; (home-page "https://github.com/onsi/ginkgo") +; (synopsis "Ginkgo 2.0 Release Candidate is available!") +; (description "Ginkgo is a BDD-style testing framework for Golang +;") +; (license license:expat))) +; +;(define-public go-github-com-stretchr-objx-0.0.0-20180129172003-8a3f7159479f +; (package +; (name "go-github-com-stretchr-objx") +; (version "0.0.0-20180129172003-8a3f7159479f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/objx") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0rbz4x4jbq9vp3zxmv0c2wh1vbg48lmc8ncdgz7zxk7241fc31ki")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/objx")) +; (home-page "https://github.com/stretchr/objx") +; (synopsis "Objx") +; (description +; "Objx - Go package for dealing with maps, slices, JSON and other data. +;") +; (license license:expat))) +; +;(define-public go-github-com-stretchr-testify-0.0.0-20180303142811-b89eecf5ca5d +; (package +; (name "go-github-com-stretchr-testify") +; (version "0.0.0-20180303142811-b89eecf5ca5d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/testify") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0g946ii8qjaynvidj648z8izl91i6yhy0ir6g3qsrn136im3r8wk")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/testify")) +; (home-page "https://github.com/stretchr/testify") +; (synopsis "Testify - Thou Shalt Write Tests") +; (description +; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +;") +; (license license:expat))) +; +;(define-public go-github-com-containerd-go-cni-1.0.1 +; (package +; (name "go-github-com-containerd-go-cni") +; (version "1.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/go-cni") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0sdlwa4d0kzpm3vg9jy6fxqqcfjq8innv1zjcyp8n9qy8vj9b24y")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/go-cni")) +; (propagated-inputs +; `(("go-github-com-stretchr-testify-0.0.0-20180303142811-b89eecf5ca5d" +; ,go-github-com-stretchr-testify-0.0.0-20180303142811-b89eecf5ca5d) +; ("go-github-com-stretchr-objx-0.0.0-20180129172003-8a3f7159479f" +; ,go-github-com-stretchr-objx-0.0.0-20180129172003-8a3f7159479f) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-onsi-gomega-1.7.1" ,go-github-com-onsi-gomega-1.7.1) +; ("go-github-com-onsi-ginkgo-1.10.3" ,go-github-com-onsi-ginkgo-1.10.3) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1) +; ("go-github-com-containernetworking-cni-0.8.0" +; ,go-github-com-containernetworking-cni-0.8.0))) +; (home-page "https://github.com/containerd/go-cni") +; (synopsis "go-cni") +; (description +; "This package provides a generic CNI library to provide APIs for CNI plugin interactions. The library provides APIs to:") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-console-0.0.0-20191206165004-02ecf6a7291e +; (package +; (name "go-github-com-containerd-console") +; (version "0.0.0-20191206165004-02ecf6a7291e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/console") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1b3yq446gv8da4fajknbjxr5syz1ypz0nii9sqw066hx8kmqzgqh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/console")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e" +; ,go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e) +; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) +; (home-page "https://github.com/containerd/console") +; (synopsis "console") +; (description +; "Golang package for dealing with consoles. Light on deps and a simple API.") +; (license license:asl2.0))) +; +;(define-public go-github-com-opencontainers-runtime-spec-1.0.1 +; (package +; (name "go-github-com-opencontainers-runtime-spec") +; (version "1.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/runtime-spec") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "00qb0q7ndxsll12ilp5a8pqfi4i1jqrlqzv0yf7sn52lkrdrw5f4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) +; (home-page "https://github.com/opencontainers/runtime-spec") +; (synopsis "Open Container Initiative Runtime Specification") +; (description +; "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328 +; (package +; (name "go-github-com-containerd-go-runc") +; (version "0.0.0-20200220073739-7016d3ce2328") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/go-runc") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1mx2lvfkxw9kiyhi18g3c6hcpb9r2115zjzyvz6rkdqr08xrij9k")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/go-runc")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449" +; ,go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449) +; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) +; ("go-github-com-opencontainers-runtime-spec-1.0.1" +; ,go-github-com-opencontainers-runtime-spec-1.0.1) +; ("go-github-com-containerd-console-0.0.0-20191206165004-02ecf6a7291e" +; ,go-github-com-containerd-console-0.0.0-20191206165004-02ecf6a7291e))) +; (home-page "https://github.com/containerd/go-runc") +; (synopsis "go-runc") +; (description +; "This is a package for consuming the @url{https://github.com/opencontainers/runc,runc} binary in your Go applications. +;It tries to expose all the settings and features of the runc CLI. If there is something missing then add it, its opensource!") +; (license license:asl2.0))) +; +;(define-public go-github-com-microsoft-go-winio-0.4.14 +; (package +; (name "go-github-com-microsoft-go-winio") +; (version "0.4.14") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/microsoft/go-winio") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0n34wi9l9ks2z3cz97j30ljfmqppwf1zxr16hwbnswyrk54fcxm3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/Microsoft/go-winio")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b" +; ,go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b) +; ("go-github-com-sirupsen-logrus-1.4.1" +; ,go-github-com-sirupsen-logrus-1.4.1) +; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) +; (home-page "https://github.com/Microsoft/go-winio") +; (synopsis "go-winio") +; (description +; "This repository contains utilities for efficiently performing Win32 IO operations in +;Go. Currently, this is focused on accessing named pipes and other file handles, and +;for using named pipes as a net transport.") +; (license license:expat))) +; +;(define-public go-github-com-microsoft-hcsshim-0.8.7-0.20190325164909-8abdbb8205e4 +; (package +; (name "go-github-com-microsoft-hcsshim") +; (version "0.8.7-0.20190325164909-8abdbb8205e4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/microsoft/hcsshim") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0029085clghvprb3bs2m9q7xk4njx5fg2gr5wm3a0y8kqx0awv45")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/Microsoft/hcsshim")) +; (home-page "https://github.com/Microsoft/hcsshim") +; (synopsis "hcsshim") +; (description +; "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") +; (license license:expat))) +; +;(define-public go-github-com-containerd-cgroups-0.0.0-20190717030353-c4b9ac5c7601 +; (package +; (name "go-github-com-containerd-cgroups") +; (version "0.0.0-20190717030353-c4b9ac5c7601") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/cgroups") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1fpai6nsm7qd5zfd8ykq8j4ngbqcy5v2isw16j086j0qabyw2iiw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/cgroups")) +; (home-page "https://github.com/containerd/cgroups") +; (synopsis "cgroups") +; (description +; "Go package for creating, managing, inspecting, and destroying cgroups. +;The resources format for settings on the cgroup uses the OCI runtime-spec found +;@url{https://github.com/opencontainers/runtime-spec,here}.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-console-0.0.0-20181022165439-0650fd9eeb50 +; (package +; (name "go-github-com-containerd-console") +; (version "0.0.0-20181022165439-0650fd9eeb50") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/console") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0cs11g3gjan15rnbgryf60725sw2hf83fb6y2hwn1rgcm0jab1b8")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/console")) +; (home-page "https://github.com/containerd/console") +; (synopsis "console") +; (description +; "Golang package for dealing with consoles. Light on deps and a simple API.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-containerd-1.3.0 +; (package +; (name "go-github-com-containerd-containerd") +; (version "1.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/containerd") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "05mr33l0rhkj49n6wf9lk95ijqvqwhp68ll879rpad1ypfv2f8as")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/containerd")) +; (home-page "https://github.com/containerd/containerd") +; (synopsis "Now Recruiting") +; (description +; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-continuity-0.0.0-20190815185530-f2a389ac0a02 +; (package +; (name "go-github-com-containerd-continuity") +; (version "0.0.0-20190815185530-f2a389ac0a02") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/continuity") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0h8a7npx46sjak0dyypkgg0h5dkq6dqpa4gx1v22ik62rmw0jy8r")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/continuity")) +; (home-page "https://github.com/containerd/continuity") +; (synopsis "continuity") +; (description +; "This package provides a transport-agnostic, filesystem metadata manifest system") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-fifo-0.0.0-20180307165137-3d5202aec260 +; (package +; (name "go-github-com-containerd-fifo") +; (version "0.0.0-20180307165137-3d5202aec260") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/fifo") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "11jp12vgfj0xg9m2w5cfay72fwrxb6w8za7rkcqw8yy8hypiqqxq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/fifo")) +; (home-page "https://github.com/containerd/fifo") +; (synopsis "fifo") +; (description "Go package for handling fifos in a sane way.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-go-runc-0.0.0-20190911050354-e029b79d8cda +; (package +; (name "go-github-com-containerd-go-runc") +; (version "0.0.0-20190911050354-e029b79d8cda") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/go-runc") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0zwb6bfnfmj09rnz1z3xx1y2pm4wrhyp2ls7vmf7p62j5zyvdpkw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/go-runc")) +; (home-page "https://github.com/containerd/go-runc") +; (synopsis "go-runc") +; (description +; "This is a package for consuming the @url{https://github.com/opencontainers/runc,runc} binary in your Go applications. +;It tries to expose all the settings and features of the runc CLI. If there is something missing then add it, its opensource!") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-ttrpc-0.0.0-20190828172938-92c8520ef9f8 +; (package +; (name "go-github-com-containerd-ttrpc") +; (version "0.0.0-20190828172938-92c8520ef9f8") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/ttrpc") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1kzclhmicw2xkiqsg6npx0xzs5jx36mqmyd0gj5dzv88i7p4b8dx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/ttrpc")) +; (home-page "https://github.com/containerd/ttrpc") +; (synopsis "ttrpc") +; (description "GRPC for low-memory environments.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-containerd-1.2.10 +; (package +; (name "go-github-com-containerd-containerd") +; (version "1.2.10") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/containerd") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1kddhkd93wkrimk0yjcqiavdrqc818nd39rf3wrgxyilx1mfnrwb")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/containerd")) +; (home-page "https://github.com/containerd/containerd") +; (synopsis "Now Recruiting") +; (description +; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") +; (license license:asl2.0))) +; +;(define-public go-github-com-fullsailor-pkcs7-0.0.0-20190404230743-d7302db945fa +; (package +; (name "go-github-com-fullsailor-pkcs7") +; (version "0.0.0-20190404230743-d7302db945fa") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/fullsailor/pkcs7") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "13d7dpj85j36pxwg1kn7b23rm54va5p9v3vdcx27pma2jjlsxsm1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/fullsailor/pkcs7")) +; (home-page "https://github.com/fullsailor/pkcs7") +; (synopsis "pkcs7") +; (description +; "Package pkcs7 implements parsing and generation of some PKCS#7 structures. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20190701094942-4def268fd1a4 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20190701094942-4def268fd1a4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1bfsnari529gw34cz0zqk3d9mrkcj1ay35kangri8kbgll0ss5a6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" +; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) +; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" +; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-gopkg-in-square-go-jose-v2-2.3.1 +; (package +; (name "go-gopkg-in-square-go-jose-v2") +; (version "2.3.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/square/go-jose.v2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "11r93g9xrcjqj7qvq8sbd5hy5rnbpmim0vdsp6rbav8gl7wimaa3")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path +; "gopkg.in/square/go-jose.v2" +; #:unpack-path +; "gopkg.in/square/go-jose.v2")) +; (home-page "https://gopkg.in/square/go-jose.v2") +; (synopsis "Go JOSE") +; (description +; "Package jose aims to provide an implementation of the Javascript Object Signing +;and Encryption set of standards. It implements encryption and signing based on +;the JSON Web Encryption and JSON Web Signature standards, with optional JSON +;Web Token support available in a sub-package. The library supports both the +;compact and full serialization formats, and has optional support for multiple +;recipients. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-containers-ocicrypt-1.0.1 +; (package +; (name "go-github-com-containers-ocicrypt") +; (version "1.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containers/ocicrypt") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0q27vzgdsimypkpi7iv0rl1xz571554adphyl0j8b5qa8wrf0n7v")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containers/ocicrypt")) +; (propagated-inputs +; `(("go-gotest-tools-2.2.0+incompatible" +; ,go-gotest-tools-2.2.0+incompatible) +; ("go-gopkg-in-square-go-jose-v2-2.3.1" +; ,go-gopkg-in-square-go-jose-v2-2.3.1) +; ("go-google-golang-org-grpc-1.24.0" ,go-google-golang-org-grpc-1.24.0) +; ("go-golang-org-x-crypto-0.0.0-20190701094942-4def268fd1a4" +; ,go-golang-org-x-crypto-0.0.0-20190701094942-4def268fd1a4) +; ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) +; ("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0) +; ("go-github-com-sirupsen-logrus-1.4.2" +; ,go-github-com-sirupsen-logrus-1.4.2) +; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) +; ("go-github-com-opencontainers-image-spec-1.0.1" +; ,go-github-com-opencontainers-image-spec-1.0.1) +; ("go-github-com-opencontainers-go-digest-1.0.0-rc1" +; ,go-github-com-opencontainers-go-digest-1.0.0-rc1) +; ("go-github-com-fullsailor-pkcs7-0.0.0-20190404230743-d7302db945fa" +; ,go-github-com-fullsailor-pkcs7-0.0.0-20190404230743-d7302db945fa) +; ("go-github-com-containerd-containerd-1.2.10" +; ,go-github-com-containerd-containerd-1.2.10))) +; (home-page "https://github.com/containers/ocicrypt") +; (synopsis "OCIcrypt Library") +; (description +; "The @code{ocicrypt} library is the OCI image spec implementation of container image encryption. More details of the spec can be seen in the @url{https://github.com/opencontainers/image-spec/pull/775,OCI repository}. The purpose of this library is to encode spec structures and consts in code, as well as provide a consistent implementation of image encryption across container runtimes and build tools.") +; (license license:asl2.0))) +; +;(define-public go-github-com-coreos-go-systemd-0.0.0-20161114122254-48702e0da86b +; (package +; (name "go-github-com-coreos-go-systemd") +; (version "0.0.0-20161114122254-48702e0da86b") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/coreos/go-systemd") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "04zl9ns4j3lpjykf32rv5cb6sj9x5ci8yi90vab1bl27vnqjgdkh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/coreos/go-systemd")) +; (home-page "https://github.com/coreos/go-systemd") +; (synopsis "go-systemd") +; (description "Go bindings to systemd. The project has several packages:") +; (license license:asl2.0))) +; +;(define-public go-github-com-docker-distribution-2.7.1-0.20190205005809-0d3efadf0154+incompatible +; (package +; (name "go-github-com-docker-distribution") +; (version "2.7.1-0.20190205005809-0d3efadf0154+incompatible") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/distribution/distribution") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1wayhmcxr6l281fqkbw1gh0ymhxlznf4jj1rcldhwrc64l2zjh8l")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/docker/distribution")) +; (home-page "https://github.com/docker/distribution") +; (synopsis "Distribution") +; (description +; "Package distribution will define the interfaces for the components of +;docker distribution. The goal is to allow users to reliably package, ship +;and store content related to docker images. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-docker-go-events-0.0.0-20170721190031-9461782956ad +; (package +; (name "go-github-com-docker-go-events") +; (version "0.0.0-20170721190031-9461782956ad") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/docker/go-events") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0vn0kd0w253jwdk86gv1h6s8p6bzxiyif74xdzlb39zr6fdrr145")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/docker/go-events")) +; (home-page "https://github.com/docker/go-events") +; (synopsis "Docker Events Package") +; (description +; "The Docker @code{events} package implements a composable event distribution package +;for Go.") +; (license license:asl2.0))) +; +;(define-public go-github-com-godbus-dbus-0.0.0-20151105175453-c7fdd8b5cd55 +; (package +; (name "go-github-com-godbus-dbus") +; (version "0.0.0-20151105175453-c7fdd8b5cd55") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/godbus/dbus") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "09zazkiny2im24xaiac5kbyhhnbqdbhwi9z9n7fj6rhpg8msiq9n")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/godbus/dbus")) +; (home-page "https://github.com/godbus/dbus") +; (synopsis "dbus") +; (description +; "Package dbus implements bindings to the D-Bus message bus system. +;") +; (license license:bsd-2))) +; +;(define-public go-github-com-gogo-googleapis-1.2.0 +; (package +; (name "go-github-com-gogo-googleapis") +; (version "1.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/gogo/googleapis") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1a82n0xp0v8lgjxzl3aa595r0rmy7afgyn2l3kv6z9kzw339i0jp")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/gogo/googleapis")) +; (propagated-inputs +; `(("go-github-com-gogo-protobuf-1.2.1" +; ,go-github-com-gogo-protobuf-1.2.1))) +; (home-page "https://github.com/gogo/googleapis") +; (synopsis "Google APIs generated by gogoprotobuf") +; (description +; "The @url{https://github.com/gogo/grpc-example,grpc-example} includes an example usage of this repository.") +; (license license:asl2.0))) +; +;(define-public go-github-com-imdario-mergo-0.3.8 +; (package +; (name "go-github-com-imdario-mergo") +; (version "0.3.8") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/imdario/mergo") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "15xwyrnwng11ib0fxi7clwick2r0njwn0gs3va2g5m1ad418ry57")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/imdario/mergo")) +; (home-page "https://github.com/imdario/mergo") +; (synopsis "Mergo") +; (description +; "This package provides a helper to merge structs and maps in Golang. Useful for configuration default values, avoiding messy if-statements. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-opencontainers-go-digest-1.0.0-rc1.0.20180430190053-c9281466c8b2 +; (package +; (name "go-github-com-opencontainers-go-digest") +; (version "1.0.0-rc1.0.20180430190053-c9281466c8b2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/go-digest") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1djdazssy27xn91pjhx3dgb0f11bnlzzbwkh7f8zwnpz011anasi")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/go-digest")) +; (home-page "https://github.com/opencontainers/go-digest") +; (synopsis "go-digest") +; (description +; "Package digest provides a generalized type to opaquely represent message +;digests and their operations within the registry. The Digest type is +;designed to serve as a flexible identifier in a content-addressable system. +;More importantly, it provides tools and wrappers to work with +;hash.Hash-based digests with little effort. +;") +; (license (list license:asl2.0 license:cc-by-sa4.0)))) +; +;(define-public go-github-com-opencontainers-runc-1.0.0-rc8.0.20190926000215-3e425f80a8c9 +; (package +; (name "go-github-com-opencontainers-runc") +; (version "1.0.0-rc8.0.20190926000215-3e425f80a8c9") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/runc") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "18psc830b2rkwml1x6vxngam5b5wi3pj14mw817rshpzy87prspj")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/runc")) +; (home-page "https://github.com/opencontainers/runc") +; (synopsis "runc") +; (description +; "@code{runc} is a CLI tool for spawning and running containers according to the OCI specification.") +; (license license:asl2.0))) +; +;(define-public go-github-com-opencontainers-runtime-spec-1.0.2-0.20190207185410-29686dbc5559 +; (package +; (name "go-github-com-opencontainers-runtime-spec") +; (version "1.0.2-0.20190207185410-29686dbc5559") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/runtime-spec") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0i8q3520jk4yl9rsxs8mn5vsi9i0gd3drysbhciaqwm5l8c30h65")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) +; (home-page "https://github.com/opencontainers/runtime-spec") +; (synopsis "Open Container Initiative Runtime Specification") +; (description +; "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") +; (license license:asl2.0))) +; +;(define-public go-github-com-prometheus-procfs-0.0.8 +; (package +; (name "go-github-com-prometheus-procfs") +; (version "0.0.8") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/procfs") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "076wblhz8fjdc73fmz1lg0hafbwg1xv8hszm78lbg9anjpfgacvq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/procfs")) +; (propagated-inputs +; `(("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" +; ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) +; ("go-github-com-google-go-cmp-0.3.1" +; ,go-github-com-google-go-cmp-0.3.1))) +; (home-page "https://github.com/prometheus/procfs") +; (synopsis "procfs") +; (description +; "Package procfs provides functions to retrieve system, kernel and process +;metrics from the pseudo-filesystem proc. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-net-0.0.0-20190522155817-f3200d17e092 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190522155817-f3200d17e092") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1mskh7p80dd8j1ffy16917d3cyy7lfh1gb56n4rq9g1bwckz4lwy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190812073006-9eafafc0a87e +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190812073006-9eafafc0a87e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0g5wcpiafz47066993mgz77gka9qzww6w6crxpnyir0459j7z07r")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-grpc-1.24.0 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.24.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0h8mwv74vzcfb7p4ai247x094skxca71vjp4wpj2wzmri0x9p4v6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" +; ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) +; ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" +; ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) +; ("go-google-golang-org-appengine-1.1.0" +; ,go-google-golang-org-appengine-1.1.0) +; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" +; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-github-com-google-go-cmp-0.2.0" +; ,go-github-com-google-go-cmp-0.2.0) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2) +; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-client9-misspell-0.3.4" +; ,go-github-com-client9-misspell-0.3.4) +; ("go-github-com-burntsushi-toml-0.3.1" +; ,go-github-com-burntsushi-toml-0.3.1) +; ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-imgcrypt-1.0.1 +; (package +; (name "go-github-com-containerd-imgcrypt") +; (version "1.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/imgcrypt") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0y0gbnp8imckw6rv3sjf3sycp8rc9lyhv0pp0x3q3yksvqmbqh5v")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/imgcrypt")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.24.0" ,go-google-golang-org-grpc-1.24.0) +; ("go-golang-org-x-sys-0.0.0-20190812073006-9eafafc0a87e" +; ,go-golang-org-x-sys-0.0.0-20190812073006-9eafafc0a87e) +; ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" +; ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) +; ("go-golang-org-x-net-0.0.0-20190522155817-f3200d17e092" +; ,go-golang-org-x-net-0.0.0-20190522155817-f3200d17e092) +; ("go-go-etcd-io-bbolt-1.3.3" ,go-go-etcd-io-bbolt-1.3.3) +; ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) +; ("go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2" +; ,go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2) +; ("go-github-com-sirupsen-logrus-1.4.2" +; ,go-github-com-sirupsen-logrus-1.4.2) +; ("go-github-com-prometheus-procfs-0.0.8" +; ,go-github-com-prometheus-procfs-0.0.8) +; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) +; ("go-github-com-opencontainers-runtime-spec-1.0.2-0.20190207185410-29686dbc5559" +; ,go-github-com-opencontainers-runtime-spec-1.0.2-0.20190207185410-29686dbc5559) +; ("go-github-com-opencontainers-runc-1.0.0-rc8.0.20190926000215-3e425f80a8c9" +; ,go-github-com-opencontainers-runc-1.0.0-rc8.0.20190926000215-3e425f80a8c9) +; ("go-github-com-opencontainers-image-spec-1.0.1" +; ,go-github-com-opencontainers-image-spec-1.0.1) +; ("go-github-com-opencontainers-go-digest-1.0.0-rc1.0.20180430190053-c9281466c8b2" +; ,go-github-com-opencontainers-go-digest-1.0.0-rc1.0.20180430190053-c9281466c8b2) +; ("go-github-com-imdario-mergo-0.3.8" +; ,go-github-com-imdario-mergo-0.3.8) +; ("go-github-com-gogo-protobuf-1.2.1" +; ,go-github-com-gogo-protobuf-1.2.1) +; ("go-github-com-gogo-googleapis-1.2.0" +; ,go-github-com-gogo-googleapis-1.2.0) +; ("go-github-com-godbus-dbus-0.0.0-20151105175453-c7fdd8b5cd55" +; ,go-github-com-godbus-dbus-0.0.0-20151105175453-c7fdd8b5cd55) +; ("go-github-com-docker-go-units-0.4.0" +; ,go-github-com-docker-go-units-0.4.0) +; ("go-github-com-docker-go-events-0.0.0-20170721190031-9461782956ad" +; ,go-github-com-docker-go-events-0.0.0-20170721190031-9461782956ad) +; ("go-github-com-docker-distribution-2.7.1-0.20190205005809-0d3efadf0154+incompatible" +; ,go-github-com-docker-distribution-2.7.1-0.20190205005809-0d3efadf0154+incompatible) +; ("go-github-com-coreos-go-systemd-0.0.0-20161114122254-48702e0da86b" +; ,go-github-com-coreos-go-systemd-0.0.0-20161114122254-48702e0da86b) +; ("go-github-com-containers-ocicrypt-1.0.1" +; ,go-github-com-containers-ocicrypt-1.0.1) +; ("go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd" +; ,go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd) +; ("go-github-com-containerd-ttrpc-0.0.0-20190828172938-92c8520ef9f8" +; ,go-github-com-containerd-ttrpc-0.0.0-20190828172938-92c8520ef9f8) +; ("go-github-com-containerd-go-runc-0.0.0-20190911050354-e029b79d8cda" +; ,go-github-com-containerd-go-runc-0.0.0-20190911050354-e029b79d8cda) +; ("go-github-com-containerd-fifo-0.0.0-20180307165137-3d5202aec260" +; ,go-github-com-containerd-fifo-0.0.0-20180307165137-3d5202aec260) +; ("go-github-com-containerd-continuity-0.0.0-20190815185530-f2a389ac0a02" +; ,go-github-com-containerd-continuity-0.0.0-20190815185530-f2a389ac0a02) +; ("go-github-com-containerd-containerd-1.3.0" +; ,go-github-com-containerd-containerd-1.3.0) +; ("go-github-com-containerd-console-0.0.0-20181022165439-0650fd9eeb50" +; ,go-github-com-containerd-console-0.0.0-20181022165439-0650fd9eeb50) +; ("go-github-com-containerd-cgroups-0.0.0-20190717030353-c4b9ac5c7601" +; ,go-github-com-containerd-cgroups-0.0.0-20190717030353-c4b9ac5c7601) +; ("go-github-com-microsoft-hcsshim-0.8.7-0.20190325164909-8abdbb8205e4" +; ,go-github-com-microsoft-hcsshim-0.8.7-0.20190325164909-8abdbb8205e4) +; ("go-github-com-microsoft-go-winio-0.4.14" +; ,go-github-com-microsoft-go-winio-0.4.14))) +; (home-page "https://github.com/containerd/imgcrypt") +; (synopsis "imgcrypt image encryption library and command line tool") +; (description +; "Project @code{imgcrypt} is a non-core subproject of containerd.") +; (license license:asl2.0))) +; +;(define-public go-github-com-blang-semver-3.1.0+incompatible +; (package +; (name "go-github-com-blang-semver") +; (version "3.1.0+incompatible") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/blang/semver") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1s80qlij6j6wrh0fhm0l11hbf3qjra67nca5bl7izyfjj4621fcd")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/blang/semver")) +; (home-page "https://github.com/blang/semver") +; (synopsis "semver for golang") +; (description +; "semver is a @url{http://semver.org/,Semantic Versioning} library written in golang. It fully covers spec version @code{2.0.0}.") +; (license license:expat))) +; +;(define-public go-github-com-containerd-containerd-1.3.0-beta.2.0.20190828155532-0293cbd26c69 +; (package +; (name "go-github-com-containerd-containerd") +; (version "1.3.0-beta.2.0.20190828155532-0293cbd26c69") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/containerd") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1jhb4a7fczf817d9dwj0a02wfscv46hkymrqh1dcsgpdsp80igkw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/containerd")) +; (home-page "https://github.com/containerd/containerd") +; (synopsis "Now Recruiting") +; (description +; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") +; (license license:asl2.0))) +; +;(define-public go-github-com-hashicorp-errwrap-0.0.0-20141028054710-7554cd9344ce +; (package +; (name "go-github-com-hashicorp-errwrap") +; (version "0.0.0-20141028054710-7554cd9344ce") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/errwrap") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0kmv0p605di6jc8i1778qzass18m0mv9ks9vxxrfsiwcp4la82jf")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hashicorp/errwrap")) +; (home-page "https://github.com/hashicorp/errwrap") +; (synopsis "errwrap") +; (description +; "Package errwrap implements methods to formalize error wrapping in Go. +;") +; (license license:mpl2.0))) +; +;(define-public go-github-com-hashicorp-go-multierror-0.0.0-20161216184304-ed905158d874 +; (package +; (name "go-github-com-hashicorp-go-multierror") +; (version "0.0.0-20161216184304-ed905158d874") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/go-multierror") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1bldhx9dmx9q4gjsag3g1xswq1jsf394rs69fdbmgnkj75j3sp70")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hashicorp/go-multierror")) +; (home-page "https://github.com/hashicorp/go-multierror") +; (synopsis "go-multierror") +; (description +; "@code{go-multierror} is a package for Go that provides a mechanism for +;representing a list of @code{error} values as a single @code{error}.") +; (license license:mpl2.0))) +; +;(define-public go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39 +; (package +; (name "go-github-com-opencontainers-runtime-tools") +; (version "0.0.0-20181011054405-1d69bd0f9c39") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/runtime-tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1wgisl2v8i1hvy3bf8f16v7rarx2ynyasb0jx4kffp5n5hz2hfcl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/runtime-tools")) +; (home-page "https://github.com/opencontainers/runtime-tools") +; (synopsis "oci-runtime-tool") +; (description +; "oci-runtime-tool is a collection of tools for working with the @url{https://github.com/opencontainers/runtime-spec,OCI runtime specification}. +;To build from source code, runtime-tools requires Go 1.10.x or above.") +; (license license:asl2.0))) +; +;(define-public go-github-com-prometheus-procfs-0.0.5 +; (package +; (name "go-github-com-prometheus-procfs") +; (version "0.0.5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/procfs") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1nqn8ip9f4f6kqrvand4lxhcxrkk19dwf8s3nh336i9wr2jfhbwa")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/procfs")) +; (propagated-inputs +; `(("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" +; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) +; ("go-github-com-google-go-cmp-0.3.0" +; ,go-github-com-google-go-cmp-0.3.0))) +; (home-page "https://github.com/prometheus/procfs") +; (synopsis "procfs") +; (description +; "Package procfs provides functions to retrieve system, kernel and process +;metrics from the pseudo-filesystem proc. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-syndtr-gocapability-0.0.0-20170704070218-db04d3cc01c8 +; (package +; (name "go-github-com-syndtr-gocapability") +; (version "0.0.0-20170704070218-db04d3cc01c8") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/syndtr/gocapability") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0jwica5kqax70rd4gbc2yjdz54401s4mr6clyn60gcmnxc0wynds")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/syndtr/gocapability")) +; (home-page "https://github.com/syndtr/gocapability") +; (synopsis #f) +; (description #f) +; (license license:bsd-2))) +; +;(define-public go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f +; (package +; (name "go-github-com-xeipuuv-gojsonpointer") +; (version "0.0.0-20180127040702-4e3ac2762d5f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/xeipuuv/gojsonpointer") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "13y6iq2nzf9z4ls66bfgnnamj2m3438absmbpqry64bpwjfbsi9q")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/xeipuuv/gojsonpointer")) +; (home-page "https://github.com/xeipuuv/gojsonpointer") +; (synopsis "gojsonpointer") +; (description "An implementation of JSON Pointer - Go language") +; (license license:asl2.0))) +; +;(define-public go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415 +; (package +; (name "go-github-com-xeipuuv-gojsonreference") +; (version "0.0.0-20180127040603-bd5ef7bd5415") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/xeipuuv/gojsonreference") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1xby79padc7bmyb8rfbad8wfnfdzpnh51b1n8c0kibch0kwc1db5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/xeipuuv/gojsonreference")) +; (home-page "https://github.com/xeipuuv/gojsonreference") +; (synopsis "gojsonreference") +; (description "An implementation of JSON Reference - Go language") +; (license license:asl2.0))) +; +;(define-public go-github-com-xeipuuv-gojsonschema-0.0.0-20180618132009-1d523034197f +; (package +; (name "go-github-com-xeipuuv-gojsonschema") +; (version "0.0.0-20180618132009-1d523034197f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/xeipuuv/gojsonschema") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1z8c6x8sfh6d1ib2lm2jps7r139qip6h3zik3fxhy1yr1380qbzp")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/xeipuuv/gojsonschema")) +; (home-page "https://github.com/xeipuuv/gojsonschema") +; (synopsis "gojsonschema") +; (description +; "An implementation of JSON Schema for the Go programming language. Supports draft-04, draft-06 and draft-07.") +; (license license:asl2.0))) +; +;(define-public go-k8s-io-kubernetes-1.13.0 +; (package +; (name "go-k8s-io-kubernetes") +; (version "1.13.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes/kubernetes") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "12cvw8b7l319p8nc2imc2wck7zz7vzrwcjyxq5djqj7l5rbcwmzs")))) +; (build-system go-build-system) +; (arguments '(#:import-path "k8s.io/kubernetes")) +; (home-page "https://k8s.io/kubernetes") +; (synopsis "Kubernetes (K8s)") +; (description +; "Kubernetes, also known as K8s, is an open source system for managing @url{https://kubernetes.io/docs/concepts/overview/what-is-kubernetes/,containerized applications} +;across multiple hosts. It provides basic mechanisms for deployment, maintenance, +;and scaling of applications.") +; (license license:asl2.0))) +; +;(define-public go-github-com-microsoft-hcsshim-0.8.7 +; (package +; (name "go-github-com-microsoft-hcsshim") +; (version "0.8.7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/microsoft/hcsshim") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1c6ix202ll48n7x00xxb7gzgm3srm9zwwbx2503l6vz3sqclh9xm")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/Microsoft/hcsshim")) +; (propagated-inputs +; `(("go-k8s-io-kubernetes-1.13.0" ,go-k8s-io-kubernetes-1.13.0) +; ("go-gotest-tools-2.2.0+incompatible" +; ,go-gotest-tools-2.2.0+incompatible) +; ("go-google-golang-org-grpc-1.20.1" ,go-google-golang-org-grpc-1.20.1) +; ("go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3" +; ,go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3) +; ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" +; ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) +; ("go-go-opencensus-io-0.22.0" ,go-go-opencensus-io-0.22.0) +; ("go-github-com-xeipuuv-gojsonschema-0.0.0-20180618132009-1d523034197f" +; ,go-github-com-xeipuuv-gojsonschema-0.0.0-20180618132009-1d523034197f) +; ("go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415" +; ,go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415) +; ("go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f" +; ,go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f) +; ("go-github-com-urfave-cli-0.0.0-20171014202726-7bc6a0acffa5" +; ,go-github-com-urfave-cli-0.0.0-20171014202726-7bc6a0acffa5) +; ("go-github-com-syndtr-gocapability-0.0.0-20170704070218-db04d3cc01c8" +; ,go-github-com-syndtr-gocapability-0.0.0-20170704070218-db04d3cc01c8) +; ("go-github-com-sirupsen-logrus-1.4.1" +; ,go-github-com-sirupsen-logrus-1.4.1) +; ("go-github-com-prometheus-procfs-0.0.5" +; ,go-github-com-prometheus-procfs-0.0.5) +; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) +; ("go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39" +; ,go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39) +; ("go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700" +; ,go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700) +; ("go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f" +; ,go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f) +; ("go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2" +; ,go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2) +; ("go-github-com-hashicorp-go-multierror-0.0.0-20161216184304-ed905158d874" +; ,go-github-com-hashicorp-go-multierror-0.0.0-20161216184304-ed905158d874) +; ("go-github-com-hashicorp-errwrap-0.0.0-20141028054710-7554cd9344ce" +; ,go-github-com-hashicorp-errwrap-0.0.0-20141028054710-7554cd9344ce) +; ("go-github-com-gogo-protobuf-1.2.1" +; ,go-github-com-gogo-protobuf-1.2.1) +; ("go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd" +; ,go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd) +; ("go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de" +; ,go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de) +; ("go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3" +; ,go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3) +; ("go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448" +; ,go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448) +; ("go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc" +; ,go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc) +; ("go-github-com-containerd-containerd-1.3.0-beta.2.0.20190828155532-0293cbd26c69" +; ,go-github-com-containerd-containerd-1.3.0-beta.2.0.20190828155532-0293cbd26c69) +; ("go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1" +; ,go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1) +; ("go-github-com-containerd-cgroups-0.0.0-20190919134610-bf292b21730f" +; ,go-github-com-containerd-cgroups-0.0.0-20190919134610-bf292b21730f) +; ("go-github-com-blang-semver-3.1.0+incompatible" +; ,go-github-com-blang-semver-3.1.0+incompatible) +; ("go-github-com-microsoft-go-winio-0.4.15-0.20190919025122-fc70bd9a86b5" +; ,go-github-com-microsoft-go-winio-0.4.15-0.20190919025122-fc70bd9a86b5))) +; (home-page "https://github.com/Microsoft/hcsshim") +; (synopsis "hcsshim") +; (description +; "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") +; (license license:expat))) +; +;(define-public go-github-com-containerd-containerd-1.3.1-0.20191213020239-082f7e3aed57 +; (package +; (name "go-github-com-containerd-containerd") +; (version "1.3.1-0.20191213020239-082f7e3aed57") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/containerd") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1piaha1adhzhj150l7zhskn5fgl4r2cyvwhrrm8bbm3vnvhmgw7v")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/containerd")) +; (home-page "https://github.com/containerd/containerd") +; (synopsis "Now Recruiting") +; (description +; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-continuity-0.0.0-20191127005431-f65d91d395eb +; (package +; (name "go-github-com-containerd-continuity") +; (version "0.0.0-20191127005431-f65d91d395eb") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/continuity") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "15yh5idl3if8a982gsnq9q72021a7jcs9bdcrqaxbl4dwdqcszki")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/continuity")) +; (home-page "https://github.com/containerd/continuity") +; (synopsis "continuity") +; (description +; "This package provides a transport-agnostic, filesystem metadata manifest system") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190522044717-8097e1b27ff5 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190522044717-8097e1b27ff5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1rgflfvh365x5lwdyqdd9qk8hh3ycr88a2488bgqgvfhp5ri5p6x")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20190522204451-c2c4e71fbf69 +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20190522204451-c2c4e71fbf69") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1y44pmyy92pg822fhw80pnciifx1ah0g73i2l0ixickd24wyznnm")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" +; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) +; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) +; ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" +; ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) +; ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" +; ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) +; ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" +; ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) +; ("go-github-com-golang-protobuf-1.3.1" +; ,go-github-com-golang-protobuf-1.3.1))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-grpc-1.21.0 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.21.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0zxjlxnvjqfn6zfx7gbmqhadx0j788vxfn95g1ngbmjkgppzsnfp")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" +; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) +; ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" +; ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) +; ("go-google-golang-org-appengine-1.1.0" +; ,go-google-golang-org-appengine-1.1.0) +; ("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" +; ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" +; ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-github-com-google-go-cmp-0.2.0" +; ,go-github-com-google-go-cmp-0.2.0) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0) +; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-client9-misspell-0.3.4" +; ,go-github-com-client9-misspell-0.3.4) +; ("go-github-com-burntsushi-toml-0.3.1" +; ,go-github-com-burntsushi-toml-0.3.1) +; ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-ttrpc-0.0.0-20191028202541-4f1b8fe65a5c +; (package +; (name "go-github-com-containerd-ttrpc") +; (version "0.0.0-20191028202541-4f1b8fe65a5c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/ttrpc") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19fhm39jagk2sfgi9g5zdqx4rynziwxhaap03x4mdj8kczlz21x8")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/ttrpc")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.21.0" ,go-google-golang-org-grpc-1.21.0) +; ("go-google-golang-org-genproto-0.0.0-20190522204451-c2c4e71fbf69" +; ,go-google-golang-org-genproto-0.0.0-20190522204451-c2c4e71fbf69) +; ("go-golang-org-x-sys-0.0.0-20190522044717-8097e1b27ff5" +; ,go-golang-org-x-sys-0.0.0-20190522044717-8097e1b27ff5) +; ("go-github-com-sirupsen-logrus-1.4.2" +; ,go-github-com-sirupsen-logrus-1.4.2) +; ("go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1" +; ,go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1) +; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) +; ("go-github-com-gogo-protobuf-1.2.1" +; ,go-github-com-gogo-protobuf-1.2.1))) +; (home-page "https://github.com/containerd/ttrpc") +; (synopsis "ttrpc") +; (description "GRPC for low-memory environments.") +; (license license:asl2.0))) +; +;(define-public go-github-com-gogo-protobuf-1.3.0 +; (package +; (name "go-github-com-gogo-protobuf") +; (version "1.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/gogo/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0slfyrmbpdcppf0z3waar90bpszdhi2gv705ys1b0zx5x6ax8f1a")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/gogo/protobuf")) +; (propagated-inputs +; `(("go-github-com-kisielk-gotool-1.0.0" +; ,go-github-com-kisielk-gotool-1.0.0) +; ("go-github-com-kisielk-errcheck-1.2.0" +; ,go-github-com-kisielk-errcheck-1.2.0))) +; (home-page "https://github.com/gogo/protobuf") +; (synopsis "Protocol Buffers for Go with Gadgets") +; (description +; "gogoprotobuf is a fork of @url{https://github.com/golang/protobuf,golang/protobuf} with extra code generation features.") +; (license license:bsd-3))) +; +;(define-public go-github-com-containerd-typeurl-0.0.0-20190911142611-5eb25027c9fd +; (package +; (name "go-github-com-containerd-typeurl") +; (version "0.0.0-20190911142611-5eb25027c9fd") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/typeurl") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1fyc2962b9sqgqycnlkxls6n0d701nszl84bayxrdv3r1491jn9v")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/typeurl")) +; (propagated-inputs +; `(("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) +; ("go-github-com-gogo-protobuf-1.3.0" +; ,go-github-com-gogo-protobuf-1.3.0))) +; (home-page "https://github.com/containerd/typeurl") +; (synopsis "typeurl") +; (description +; "This package provides a Go package for managing the registration, marshaling, and unmarshaling of encoded types.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-zfs-0.0.0-20200918131355-0a33824f23a2 +; (package +; (name "go-github-com-containerd-zfs") +; (version "0.0.0-20200918131355-0a33824f23a2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/zfs") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "112bj6mxc3r2ncybblf3w1fgqa6w0070f6a8vlqcml1g00ljhsz6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/zfs")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) +; ("go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449" +; ,go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449) +; ("go-go-etcd-io-bbolt-1.3.3" ,go-go-etcd-io-bbolt-1.3.3) +; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) +; ("go-github-com-opencontainers-runc-1.0.0-rc9" +; ,go-github-com-opencontainers-runc-1.0.0-rc9) +; ("go-github-com-opencontainers-image-spec-1.0.1" +; ,go-github-com-opencontainers-image-spec-1.0.1) +; ("go-github-com-opencontainers-go-digest-1.0.0-rc1" +; ,go-github-com-opencontainers-go-digest-1.0.0-rc1) +; ("go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible" +; ,go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible) +; ("go-github-com-google-uuid-1.1.1" ,go-github-com-google-uuid-1.1.1) +; ("go-github-com-google-go-cmp-0.3.1" +; ,go-github-com-google-go-cmp-0.3.1) +; ("go-github-com-gogo-protobuf-1.3.1" +; ,go-github-com-gogo-protobuf-1.3.1) +; ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" +; ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) +; ("go-github-com-containerd-typeurl-0.0.0-20190911142611-5eb25027c9fd" +; ,go-github-com-containerd-typeurl-0.0.0-20190911142611-5eb25027c9fd) +; ("go-github-com-containerd-ttrpc-0.0.0-20191028202541-4f1b8fe65a5c" +; ,go-github-com-containerd-ttrpc-0.0.0-20191028202541-4f1b8fe65a5c) +; ("go-github-com-containerd-continuity-0.0.0-20191127005431-f65d91d395eb" +; ,go-github-com-containerd-continuity-0.0.0-20191127005431-f65d91d395eb) +; ("go-github-com-containerd-containerd-1.3.1-0.20191213020239-082f7e3aed57" +; ,go-github-com-containerd-containerd-1.3.1-0.20191213020239-082f7e3aed57) +; ("go-github-com-microsoft-hcsshim-0.8.7" +; ,go-github-com-microsoft-hcsshim-0.8.7))) +; (home-page "https://github.com/containerd/zfs") +; (synopsis "ZFS snapshotter plugin") +; (description "ZFS snapshotter plugin for containerd.") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-sys-0.0.0-20201202213521-69691e467435 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20201202213521-69691e467435") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0lndxdnazszfj1jl87cpz31vd12jrjm1wj0zw1c2p8yg64cfkhna")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-containerd-containerd-1.5.0-beta.1 +; (package +; (name "go-github-com-containerd-containerd") +; (version "1.5.0-beta.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/containerd") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1jki3jwmbfk4mp2qhz4ppd6vgnicalszzv5ffibasa4qj5v19wcd")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/containerd")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) +; ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) +; ("go-github-com-golang-protobuf-1.3.5" +; ,go-github-com-golang-protobuf-1.3.5) +; ("go-github-com-gogo-googleapis-1.3.2" +; ,go-github-com-gogo-googleapis-1.3.2) +; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" +; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) +; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) +; ("go-k8s-io-cri-api-0.20.1" ,go-k8s-io-cri-api-0.20.1) +; ("go-k8s-io-component-base-0.20.1" ,go-k8s-io-component-base-0.20.1) +; ("go-k8s-io-client-go-0.20.1" ,go-k8s-io-client-go-0.20.1) +; ("go-k8s-io-apiserver-0.20.1" ,go-k8s-io-apiserver-0.20.1) +; ("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) +; ("go-k8s-io-api-0.20.1" ,go-k8s-io-api-0.20.1) +; ("go-gotest-tools-v3-3.0.2" ,go-gotest-tools-v3-3.0.2) +; ("go-golang-org-x-sys-0.0.0-20201202213521-69691e467435" +; ,go-golang-org-x-sys-0.0.0-20201202213521-69691e467435) +; ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" +; ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) +; ("go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b" +; ,go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b) +; ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) +; ("go-github-com-tchap-go-patricia-2.2.6+incompatible" +; ,go-github-com-tchap-go-patricia-2.2.6+incompatible) +; ("go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635" +; ,go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-sirupsen-logrus-1.7.0" +; ,go-github-com-sirupsen-logrus-1.7.0) +; ("go-github-com-prometheus-client-golang-1.7.1" +; ,go-github-com-prometheus-client-golang-1.7.1) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-selinux-1.8.0" +; ,go-github-com-opencontainers-selinux-1.8.0) +; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" +; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) +; ("go-github-com-opencontainers-runc-1.0.0-rc93" +; ,go-github-com-opencontainers-runc-1.0.0-rc93) +; ("go-github-com-opencontainers-image-spec-1.0.1" +; ,go-github-com-opencontainers-image-spec-1.0.1) +; ("go-github-com-opencontainers-go-digest-1.0.0" +; ,go-github-com-opencontainers-go-digest-1.0.0) +; ("go-github-com-moby-sys-symlink-0.1.0" +; ,go-github-com-moby-sys-symlink-0.1.0) +; ("go-github-com-moby-sys-mountinfo-0.4.0" +; ,go-github-com-moby-sys-mountinfo-0.4.0) +; ("go-github-com-klauspost-compress-1.11.3" +; ,go-github-com-klauspost-compress-1.11.3) +; ("go-github-com-imdario-mergo-0.3.10" +; ,go-github-com-imdario-mergo-0.3.10) +; ("go-github-com-hashicorp-go-multierror-1.0.0" +; ,go-github-com-hashicorp-go-multierror-1.0.0) +; ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" +; ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) +; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) +; ("go-github-com-google-go-cmp-0.5.2" +; ,go-github-com-google-go-cmp-0.5.2) +; ("go-github-com-gogo-protobuf-1.3.2" +; ,go-github-com-gogo-protobuf-1.3.2) +; ("go-github-com-fsnotify-fsnotify-1.4.9" +; ,go-github-com-fsnotify-fsnotify-1.4.9) +; ("go-github-com-emicklei-go-restful-2.9.5+incompatible" +; ,go-github-com-emicklei-go-restful-2.9.5+incompatible) +; ("go-github-com-docker-go-units-0.4.0" +; ,go-github-com-docker-go-units-0.4.0) +; ("go-github-com-docker-go-metrics-0.0.1" +; ,go-github-com-docker-go-metrics-0.0.1) +; ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" +; ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1) +; ("go-github-com-coreos-go-systemd-v22-22.1.0" +; ,go-github-com-coreos-go-systemd-v22-22.1.0) +; ("go-github-com-containernetworking-plugins-0.8.6" +; ,go-github-com-containernetworking-plugins-0.8.6) +; ("go-github-com-containerd-zfs-0.0.0-20200918131355-0a33824f23a2" +; ,go-github-com-containerd-zfs-0.0.0-20200918131355-0a33824f23a2) +; ("go-github-com-containerd-typeurl-1.0.1" +; ,go-github-com-containerd-typeurl-1.0.1) +; ("go-github-com-containerd-ttrpc-1.0.2" +; ,go-github-com-containerd-ttrpc-1.0.2) +; ("go-github-com-containerd-nri-0.0.0-20201007170849-eb1350a75164" +; ,go-github-com-containerd-nri-0.0.0-20201007170849-eb1350a75164) +; ("go-github-com-containerd-imgcrypt-1.0.1" +; ,go-github-com-containerd-imgcrypt-1.0.1) +; ("go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328" +; ,go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328) +; ("go-github-com-containerd-go-cni-1.0.1" +; ,go-github-com-containerd-go-cni-1.0.1) +; ("go-github-com-containerd-fifo-0.0.0-20201026212402-0724c46b320c" +; ,go-github-com-containerd-fifo-0.0.0-20201026212402-0724c46b320c) +; ("go-github-com-containerd-continuity-0.0.0-20201208142359-180525291bb7" +; ,go-github-com-containerd-continuity-0.0.0-20201208142359-180525291bb7) +; ("go-github-com-containerd-console-1.0.1" +; ,go-github-com-containerd-console-1.0.1) +; ("go-github-com-containerd-cgroups-0.0.0-20200824123100-0b889c03f102" +; ,go-github-com-containerd-cgroups-0.0.0-20200824123100-0b889c03f102) +; ("go-github-com-containerd-btrfs-0.0.0-20201111183144-404b9149801e" +; ,go-github-com-containerd-btrfs-0.0.0-20201111183144-404b9149801e) +; ("go-github-com-containerd-aufs-0.0.0-20200908144142-dab0cbea06f4" +; ,go-github-com-containerd-aufs-0.0.0-20200908144142-dab0cbea06f4) +; ("go-github-com-microsoft-hcsshim-test-0.0.0-20201218223536-d3e5debf77da" +; ,go-github-com-microsoft-hcsshim-test-0.0.0-20201218223536-d3e5debf77da) +; ("go-github-com-microsoft-hcsshim-0.8.14" +; ,go-github-com-microsoft-hcsshim-0.8.14) +; ("go-github-com-microsoft-go-winio-0.4.16" +; ,go-github-com-microsoft-go-winio-0.4.16) +; ("go-github-com-burntsushi-toml-0.3.1" +; ,go-github-com-burntsushi-toml-0.3.1))) +; (home-page "https://github.com/containerd/containerd") +; (synopsis "Now Recruiting") +; (description +; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") +; (license license:asl2.0))) +; +;(define-public go-github-com-miekg-pkcs11-1.0.3 +; (package +; (name "go-github-com-miekg-pkcs11") +; (version "1.0.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/miekg/pkcs11") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0rmmgssb6y28x54si5h63gwbdsjjxf5n9xvm3zqdfsf9l10gx2m6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/miekg/pkcs11")) +; (home-page "https://github.com/miekg/pkcs11") +; (synopsis "PKCS#11") +; (description +; "Package pkcs11 is a wrapper around the PKCS#11 cryptographic library. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-stefanberger-go-pkcs11uri-0.0.0-20201008174630-78d3cae3a980 +; (package +; (name "go-github-com-stefanberger-go-pkcs11uri") +; (version "0.0.0-20201008174630-78d3cae3a980") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stefanberger/go-pkcs11uri") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "09bnd1fn2v5y5ngsxz751a0x9fsqn8idlfrwyymfv9l57wvmrd2l")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stefanberger/go-pkcs11uri")) +; (home-page "https://github.com/stefanberger/go-pkcs11uri") +; (synopsis "go-pkcs11uri") +; (description +; "Welcome to the go-pkcs11uri library. The implementation follows @url{https://tools.ietf.org/html/rfc7512,RFC 7512} and this @url{https://www.rfc-editor.org/errata/rfc7512,errata}.") +; (license license:asl2.0))) +; +;(define-public go-go-mozilla-org-pkcs7-0.0.0-20200128120323-432b2356ecb1 +; (package +; (name "go-go-mozilla-org-pkcs7") +; (version "0.0.0-20200128120323-432b2356ecb1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mozilla-services/pkcs7") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0yncaq6i1x6apykvng92yyqkj5kmzl4c43lmcalr5lq7ks009p40")))) +; (build-system go-build-system) +; (arguments '(#:import-path "go.mozilla.org/pkcs7")) +; (home-page "https://go.mozilla.org/pkcs7") +; (synopsis "pkcs7") +; (description +; "Package pkcs7 implements parsing and generation of some PKCS#7 structures. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20200728195943-123391ffb6de +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20200728195943-123391ffb6de") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1a3wnn8yjvckh3smyqzwd2k2gvl3i8dk68pvcap0wha8hmga1vf3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" +; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) +; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" +; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20200817155316-9781c653f443 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20200817155316-9781c653f443") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1fkwiydhhmn6cxmd9jb4rj2wp06yxmqc3903b7zawsxm9jpslicm")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-gopkg-in-square-go-jose-v2-2.5.1 +; (package +; (name "go-gopkg-in-square-go-jose-v2") +; (version "2.5.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/square/go-jose.v2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0z0hbmb5yyvnjkyiyn259wkbqbjxs2pzx87jz472shn2bgggxa4n")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path +; "gopkg.in/square/go-jose.v2" +; #:unpack-path +; "gopkg.in/square/go-jose.v2")) +; (home-page "https://gopkg.in/square/go-jose.v2") +; (synopsis "Go JOSE") +; (description +; "Package jose aims to provide an implementation of the Javascript Object Signing +;and Encryption set of standards. It implements encryption and signing based on +;the JSON Web Encryption and JSON Web Signature standards, with optional JSON +;Web Token support available in a sub-package. The library supports both the +;compact and full serialization formats, and has optional support for multiple +;recipients. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-containers-ocicrypt-1.1.0 +; (package +; (name "go-github-com-containers-ocicrypt") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containers/ocicrypt") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "13avih8ml00idn6qy96ash3jxkimqxpkz4cy4kgryc8jx303nv6i")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containers/ocicrypt")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.3.0" ,go-gopkg-in-yaml-v2-2.3.0) +; ("go-gopkg-in-square-go-jose-v2-2.5.1" +; ,go-gopkg-in-square-go-jose-v2-2.5.1) +; ("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) +; ("go-golang-org-x-sys-0.0.0-20200817155316-9781c653f443" +; ,go-golang-org-x-sys-0.0.0-20200817155316-9781c653f443) +; ("go-golang-org-x-crypto-0.0.0-20200728195943-123391ffb6de" +; ,go-golang-org-x-crypto-0.0.0-20200728195943-123391ffb6de) +; ("go-go-mozilla-org-pkcs7-0.0.0-20200128120323-432b2356ecb1" +; ,go-go-mozilla-org-pkcs7-0.0.0-20200128120323-432b2356ecb1) +; ("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0) +; ("go-github-com-stefanberger-go-pkcs11uri-0.0.0-20201008174630-78d3cae3a980" +; ,go-github-com-stefanberger-go-pkcs11uri-0.0.0-20201008174630-78d3cae3a980) +; ("go-github-com-sirupsen-logrus-1.7.0" +; ,go-github-com-sirupsen-logrus-1.7.0) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-image-spec-1.0.1" +; ,go-github-com-opencontainers-image-spec-1.0.1) +; ("go-github-com-opencontainers-go-digest-1.0.0" +; ,go-github-com-opencontainers-go-digest-1.0.0) +; ("go-github-com-miekg-pkcs11-1.0.3" ,go-github-com-miekg-pkcs11-1.0.3) +; ("go-github-com-google-go-cmp-0.5.2" +; ,go-github-com-google-go-cmp-0.5.2) +; ("go-github-com-golang-protobuf-1.4.3" +; ,go-github-com-golang-protobuf-1.4.3))) +; (home-page "https://github.com/containers/ocicrypt") +; (synopsis "OCIcrypt Library") +; (description +; "The @code{ocicrypt} library is the OCI image spec implementation of container image encryption. More details of the spec can be seen in the @url{https://github.com/opencontainers/image-spec/pull/775,OCI repository}. The purpose of this library is to encode spec structures and consts in code, as well as provide a consistent implementation of image encryption across container runtimes and build tools.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-imgcrypt-1.0.4-0.20210301171431-0ae5c75f59ba +; (package +; (name "go-github-com-containerd-imgcrypt") +; (version "1.0.4-0.20210301171431-0ae5c75f59ba") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/imgcrypt") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0vkwgcxh3mpsn6wp231c9ad3sx6gmnc9948nn3vvbw8bsmjd4i77")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/imgcrypt")) +; (propagated-inputs +; `(("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) +; ("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) +; ("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) +; ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" +; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) +; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) +; ("go-github-com-sirupsen-logrus-1.7.0" +; ,go-github-com-sirupsen-logrus-1.7.0) +; ("go-github-com-prometheus-procfs-0.6.0" +; ,go-github-com-prometheus-procfs-0.6.0) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" +; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) +; ("go-github-com-opencontainers-image-spec-1.0.1" +; ,go-github-com-opencontainers-image-spec-1.0.1) +; ("go-github-com-opencontainers-go-digest-1.0.0" +; ,go-github-com-opencontainers-go-digest-1.0.0) +; ("go-github-com-imdario-mergo-0.3.11" +; ,go-github-com-imdario-mergo-0.3.11) +; ("go-github-com-gogo-protobuf-1.3.2" +; ,go-github-com-gogo-protobuf-1.3.2) +; ("go-github-com-containers-ocicrypt-1.1.0" +; ,go-github-com-containers-ocicrypt-1.1.0) +; ("go-github-com-containerd-typeurl-1.0.1" +; ,go-github-com-containerd-typeurl-1.0.1) +; ("go-github-com-containerd-containerd-1.5.0-beta.1" +; ,go-github-com-containerd-containerd-1.5.0-beta.1) +; ("go-github-com-containerd-console-1.0.1" +; ,go-github-com-containerd-console-1.0.1) +; ("go-github-com-microsoft-hcsshim-test-0.0.0-20210227013316-43a75bb4edd3" +; ,go-github-com-microsoft-hcsshim-test-0.0.0-20210227013316-43a75bb4edd3) +; ("go-github-com-microsoft-hcsshim-0.8.14" +; ,go-github-com-microsoft-hcsshim-0.8.14) +; ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" +; ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3))) +; (home-page "https://github.com/containerd/imgcrypt") +; (synopsis "imgcrypt image encryption library and command line tool") +; (description +; "Project @code{imgcrypt} is a non-core subproject of containerd.") +; (license license:asl2.0))) +; +;(define-public go-github-com-microsoft-go-winio-0.4.15-0.20190919025122-fc70bd9a86b5 +; (package +; (name "go-github-com-microsoft-go-winio") +; (version "0.4.15-0.20190919025122-fc70bd9a86b5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/microsoft/go-winio") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "015ra2h3qfaq436d0g7akahgz7bikyvljq48m0l2d2f4k3wki86p")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/Microsoft/go-winio")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3" +; ,go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3) +; ("go-github-com-sirupsen-logrus-1.4.1" +; ,go-github-com-sirupsen-logrus-1.4.1) +; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) +; (home-page "https://github.com/Microsoft/go-winio") +; (synopsis "go-winio") +; (description +; "This repository contains utilities for efficiently performing Win32 IO operations in +;Go. Currently, this is focused on accessing named pipes and other file handles, and +;for using named pipes as a net transport.") +; (license license:expat))) +; +;(define-public go-github-com-godbus-dbus-0.0.0-20190422162347-ade71ed3457e +; (package +; (name "go-github-com-godbus-dbus") +; (version "0.0.0-20190422162347-ade71ed3457e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/godbus/dbus") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "12ga9izv32j1zjij1p9f2sdnxjy3v80lw964518dvzirxpvwfszn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/godbus/dbus")) +; (home-page "https://github.com/godbus/dbus") +; (synopsis "dbus") +; (description +; "Package dbus implements bindings to the D-Bus message bus system. +;") +; (license license:bsd-2))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190514135907-3a4b5fb9f71f +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190514135907-3a4b5fb9f71f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "122ry2lw2525mqlnw2zc006y1flvj3yhj8rnpxqdwxp71jc3kqii")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-containerd-cgroups-0.0.0-20190919134610-bf292b21730f +; (package +; (name "go-github-com-containerd-cgroups") +; (version "0.0.0-20190919134610-bf292b21730f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/cgroups") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1vvk1vrwm9spilyl4r1r8626sg0zvnx3s3zmzigzinpkzzvbdqpw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/cgroups")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190514135907-3a4b5fb9f71f" +; ,go-golang-org-x-sys-0.0.0-20190514135907-3a4b5fb9f71f) +; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) +; ("go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700" +; ,go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700) +; ("go-github-com-gogo-protobuf-1.2.1" +; ,go-github-com-gogo-protobuf-1.2.1) +; ("go-github-com-godbus-dbus-0.0.0-20190422162347-ade71ed3457e" +; ,go-github-com-godbus-dbus-0.0.0-20190422162347-ade71ed3457e) +; ("go-github-com-docker-go-units-0.4.0" +; ,go-github-com-docker-go-units-0.4.0) +; ("go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e" +; ,go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e))) +; (home-page "https://github.com/containerd/cgroups") +; (synopsis "cgroups") +; (description +; "Go package for creating, managing, inspecting, and destroying cgroups. +;The resources format for settings on the cgroup uses the OCI runtime-spec found +;@url{https://github.com/opencontainers/runtime-spec,here}.") +; (license license:asl2.0))) +; +;(define-public go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700 +; (package +; (name "go-github-com-opencontainers-runtime-spec") +; (version "0.1.2-0.20190507144316-5b71a03e2700") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/runtime-spec") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1dx0bp4f885vx6l4b5b7h19j6sm0jn9s2qxarfd917f4wp8l0cpl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) +; (home-page "https://github.com/opencontainers/runtime-spec") +; (synopsis "Open Container Initiative Runtime Specification") +; (description +; "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") +; (license license:asl2.0))) +; +;(define-public go-github-com-urfave-cli-0.0.0-20171014202726-7bc6a0acffa5 +; (package +; (name "go-github-com-urfave-cli") +; (version "0.0.0-20171014202726-7bc6a0acffa5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/urfave/cli") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "13li8phkaznh81qxs9vg0r8294ph014rwca4cqf7gxhvyjlaigwp")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/urfave/cli")) +; (home-page "https://github.com/urfave/cli") +; (synopsis "cli") +; (description +; "Package cli provides a minimal framework for creating and organizing command line +;Go applications. cli is designed to be easy to understand and write, the most simple +;cli application can be written as follows: +;") +; (license license:expat))) +; +;(define-public go-github-com-microsoft-hcsshim-0.8.9 +; (package +; (name "go-github-com-microsoft-hcsshim") +; (version "0.8.9") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/microsoft/hcsshim") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1imyqhh51311fdmp81ffasf7z52rbqhblbhx6477d9w20p74866b")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/Microsoft/hcsshim")) +; (propagated-inputs +; `(("go-gotest-tools-2.2.0+incompatible" +; ,go-gotest-tools-2.2.0+incompatible) +; ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) +; ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" +; ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) +; ("go-google-golang-org-grpc-1.23.1" ,go-google-golang-org-grpc-1.23.1) +; ("go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873" +; ,go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873) +; ("go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3" +; ,go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3) +; ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" +; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) +; ("go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9" +; ,go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9) +; ("go-go-opencensus-io-0.22.0" ,go-go-opencensus-io-0.22.0) +; ("go-github-com-urfave-cli-0.0.0-20171014202726-7bc6a0acffa5" +; ,go-github-com-urfave-cli-0.0.0-20171014202726-7bc6a0acffa5) +; ("go-github-com-stretchr-testify-1.4.0" +; ,go-github-com-stretchr-testify-1.4.0) +; ("go-github-com-sirupsen-logrus-1.4.2" +; ,go-github-com-sirupsen-logrus-1.4.2) +; ("go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7" +; ,go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7) +; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) +; ("go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700" +; ,go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700) +; ("go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f" +; ,go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f) +; ("go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2" +; ,go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2) +; ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2) +; ("go-github-com-gogo-protobuf-1.3.1" +; ,go-github-com-gogo-protobuf-1.3.1) +; ("go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd" +; ,go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd) +; ("go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de" +; ,go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de) +; ("go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3" +; ,go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3) +; ("go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448" +; ,go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448) +; ("go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc" +; ,go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc) +; ("go-github-com-containerd-containerd-1.3.2" +; ,go-github-com-containerd-containerd-1.3.2) +; ("go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1" +; ,go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1) +; ("go-github-com-containerd-cgroups-0.0.0-20190919134610-bf292b21730f" +; ,go-github-com-containerd-cgroups-0.0.0-20190919134610-bf292b21730f) +; ("go-github-com-microsoft-go-winio-0.4.15-0.20190919025122-fc70bd9a86b5" +; ,go-github-com-microsoft-go-winio-0.4.15-0.20190919025122-fc70bd9a86b5))) +; (home-page "https://github.com/Microsoft/hcsshim") +; (synopsis "hcsshim") +; (description +; "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") +; (license license:expat))) +; +;(define-public go-github-com-cilium-ebpf-0.0.0-20200702112145-1c8d4c9ef775 +; (package +; (name "go-github-com-cilium-ebpf") +; (version "0.0.0-20200702112145-1c8d4c9ef775") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/cilium/ebpf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1la90b88a1li5hmlqxfx9lgxlyzqb2pd4c2dxmz4s5gg2gz8a5x5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/cilium/ebpf")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9" +; ,go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9))) +; (home-page "https://github.com/cilium/ebpf") +; (synopsis "eBPF") +; (description "Package ebpf is a toolkit for working with eBPF programs. +;") +; (license license:expat))) +; +;(define-public go-github-com-containerd-cgroups-0.0.0-20200710171044-318312a37340 +; (package +; (name "go-github-com-containerd-cgroups") +; (version "0.0.0-20200710171044-318312a37340") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/cgroups") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1kizbm55pmlnly2dggymp84a0d9pn4fh7jf31h6wqm385zrs14zp")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/cgroups")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9" +; ,go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9) +; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) +; ("go-github-com-stretchr-testify-1.2.2" +; ,go-github-com-stretchr-testify-1.2.2) +; ("go-github-com-sirupsen-logrus-1.6.0" +; ,go-github-com-sirupsen-logrus-1.6.0) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-runtime-spec-1.0.2" +; ,go-github-com-opencontainers-runtime-spec-1.0.2) +; ("go-github-com-gogo-protobuf-1.3.1" +; ,go-github-com-gogo-protobuf-1.3.1) +; ("go-github-com-godbus-dbus-v5-5.0.3" +; ,go-github-com-godbus-dbus-v5-5.0.3) +; ("go-github-com-docker-go-units-0.4.0" +; ,go-github-com-docker-go-units-0.4.0) +; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" +; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) +; ("go-github-com-coreos-go-systemd-v22-22.0.0" +; ,go-github-com-coreos-go-systemd-v22-22.0.0) +; ("go-github-com-cilium-ebpf-0.0.0-20200702112145-1c8d4c9ef775" +; ,go-github-com-cilium-ebpf-0.0.0-20200702112145-1c8d4c9ef775))) +; (home-page "https://github.com/containerd/cgroups") +; (synopsis "cgroups") +; (description +; "Go package for creating, managing, inspecting, and destroying cgroups. +;The resources format for settings on the cgroup uses the OCI runtime-spec found +;@url{https://github.com/opencontainers/runtime-spec,here}.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-containerd-1.4.0-beta.2.0.20200729163537-40b22ef07410 +; (package +; (name "go-github-com-containerd-containerd") +; (version "1.4.0-beta.2.0.20200729163537-40b22ef07410") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/containerd") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ky7ny5b0rvkr6a58pdlcm35kc9wls6jvl7cdk8py4a16y1f2lx9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/containerd")) +; (home-page "https://github.com/containerd/containerd") +; (synopsis "Now Recruiting") +; (description +; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") +; (license license:asl2.0))) +; +;(define-public go-github-com-onsi-ginkgo-1.10.1 +; (package +; (name "go-github-com-onsi-ginkgo") +; (version "1.10.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/onsi/ginkgo") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "033a42h1wzmji57p86igg9whvsbp6nvfdsypskw738ys903n3z4d")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/onsi/ginkgo")) +; (home-page "https://github.com/onsi/ginkgo") +; (synopsis "Ginkgo 2.0 Release Candidate is available!") +; (description "Ginkgo is a BDD-style testing framework for Golang +;") +; (license license:expat))) +; +;(define-public go-github-com-opencontainers-go-digest-1.0.0-rc1 +; (package +; (name "go-github-com-opencontainers-go-digest") +; (version "1.0.0-rc1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/go-digest") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "01gc7fpn8ax429024p2fcx3yb18axwz5bjf2hqxlii1jbsgw4bh9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/go-digest")) +; (home-page "https://github.com/opencontainers/go-digest") +; (synopsis "go-digest") +; (description +; "Package digest provides a generalized type to opaquely represent message +;digests and their operations within the registry. The Digest type is +;designed to serve as a flexible identifier in a content-addressable system. +;More importantly, it provides tools and wrappers to work with +;hash.Hash-based digests with little effort. +;") +; (license (list license:asl2.0 license:cc-by-sa4.0)))) +; +;(define-public go-github-com-pkg-errors-0.8.1-0.20171018195549-f15c970de5b7 +; (package +; (name "go-github-com-pkg-errors") +; (version "0.8.1-0.20171018195549-f15c970de5b7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/pkg/errors") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "18jihrffhfsjvz3rkanlhq9xjcdxkqilmflnijc64s7y7lijlbfm")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/pkg/errors")) +; (home-page "https://github.com/pkg/errors") +; (synopsis "errors") +; (description "Package errors provides simple error handling primitives. +;") +; (license license:bsd-2))) +; +;(define-public go-github-com-sirupsen-logrus-1.0.4-0.20170822132746-89742aefa4b2 +; (package +; (name "go-github-com-sirupsen-logrus") +; (version "1.0.4-0.20170822132746-89742aefa4b2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/sirupsen/logrus") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0hk7fabx59msg2y0iik6xvfp80s73ybrwlcshbm9ds91iqbkcxi6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/sirupsen/logrus")) +; (home-page "https://github.com/sirupsen/logrus") +; (synopsis "Logrus") +; (description +; "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20171113213409-9f005a07e0d3 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20171113213409-9f005a07e0d3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1mhmr6ljzl3iafsz4qy8vval7rmr828wh59dlqqqjqx6sqmcs1dv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-github-com-containerd-continuity-0.0.0-20200710164510-efbc4488d8fe +; (package +; (name "go-github-com-containerd-continuity") +; (version "0.0.0-20200710164510-efbc4488d8fe") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/continuity") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0d638nj7z7y8z19zdwbysamqh5m3kiwvnqny7av6bxax9gg6c3h8")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/continuity")) +; (propagated-inputs +; `(("go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2" +; ,go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2) +; ("go-gopkg-in-airbrake-gobrake-v2-2.0.9" +; ,go-gopkg-in-airbrake-gobrake-v2-2.0.9) +; ("go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e" +; ,go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e) +; ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" +; ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) +; ("go-golang-org-x-crypto-0.0.0-20171113213409-9f005a07e0d3" +; ,go-golang-org-x-crypto-0.0.0-20171113213409-9f005a07e0d3) +; ("go-github-com-stretchr-testify-1.4.0" +; ,go-github-com-stretchr-testify-1.4.0) +; ("go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95" +; ,go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95) +; ("go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee" +; ,go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee) +; ("go-github-com-sirupsen-logrus-1.0.4-0.20170822132746-89742aefa4b2" +; ,go-github-com-sirupsen-logrus-1.0.4-0.20170822132746-89742aefa4b2) +; ("go-github-com-pkg-errors-0.8.1-0.20171018195549-f15c970de5b7" +; ,go-github-com-pkg-errors-0.8.1-0.20171018195549-f15c970de5b7) +; ("go-github-com-opencontainers-go-digest-1.0.0-rc1" +; ,go-github-com-opencontainers-go-digest-1.0.0-rc1) +; ("go-github-com-onsi-gomega-1.7.0" ,go-github-com-onsi-gomega-1.7.0) +; ("go-github-com-onsi-ginkgo-1.10.1" ,go-github-com-onsi-ginkgo-1.10.1) +; ("go-github-com-inconshreveable-mousetrap-1.0.0" +; ,go-github-com-inconshreveable-mousetrap-1.0.0) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0) +; ("go-github-com-dustin-go-humanize-0.0.0-20171111073723-bb3d318650d4" +; ,go-github-com-dustin-go-humanize-0.0.0-20171111073723-bb3d318650d4) +; ("go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898" +; ,go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898))) +; (home-page "https://github.com/containerd/continuity") +; (synopsis "continuity") +; (description +; "This package provides a transport-agnostic, filesystem metadata manifest system") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20191210023423-ac6580df4449") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "14gvx65w5lddi20s4wypbbvbg9ni3m8777jhp9nqxhixc61k3dyi")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-containerd-fifo-0.0.0-20200410184934-f15a3290365b +; (package +; (name "go-github-com-containerd-fifo") +; (version "0.0.0-20200410184934-f15a3290365b") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/fifo") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1i3pylxr2a4b9gaifjrhfa21n147vvq2z9iqwzz9id532xv9mr48")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/fifo")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449" +; ,go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449) +; ("go-github-com-stretchr-testify-1.4.0" +; ,go-github-com-stretchr-testify-1.4.0) +; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) +; (home-page "https://github.com/containerd/fifo") +; (synopsis "fifo") +; (description "Go package for handling fifos in a sane way.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-ttrpc-1.0.1 +; (package +; (name "go-github-com-containerd-ttrpc") +; (version "1.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/ttrpc") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "02ilz14f1k9zip7caqfjwvfg2nwa7bs6880pi6fxbri1wy6ar45q")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/ttrpc")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.26.0" ,go-google-golang-org-grpc-1.26.0) +; ("go-google-golang-org-genproto-0.0.0-20200117163144-32f20d992d24" +; ,go-google-golang-org-genproto-0.0.0-20200117163144-32f20d992d24) +; ("go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479" +; ,go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479) +; ("go-github-com-sirupsen-logrus-1.4.2" +; ,go-github-com-sirupsen-logrus-1.4.2) +; ("go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1" +; ,go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.2" +; ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.2) +; ("go-github-com-gogo-protobuf-1.3.1" +; ,go-github-com-gogo-protobuf-1.3.1))) +; (home-page "https://github.com/containerd/ttrpc") +; (synopsis "ttrpc") +; (description "GRPC for low-memory environments.") +; (license license:asl2.0))) +; +;(define-public go-github-com-gogo-googleapis-1.4.0 +; (package +; (name "go-github-com-gogo-googleapis") +; (version "1.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/gogo/googleapis") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1kka9qmra1klfkjza0s5papqvsi65f2d349dl8k1lvfq487iv9r4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/gogo/googleapis")) +; (propagated-inputs +; `(("go-github-com-gogo-protobuf-1.3.1" +; ,go-github-com-gogo-protobuf-1.3.1))) +; (home-page "https://github.com/gogo/googleapis") +; (synopsis "Google APIs generated by gogoprotobuf") +; (description +; "The @url{https://github.com/gogo/grpc-example,grpc-example} includes an example usage of this repository.") +; (license license:asl2.0))) +; +;(define-public go-github-com-imdario-mergo-0.3.10 +; (package +; (name "go-github-com-imdario-mergo") +; (version "0.3.10") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/imdario/mergo") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "09h765p8yby9r8s0a3hv5kl8n2i382mda76wmvk48w1cc1w9s92p")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/imdario/mergo")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.3.0" ,go-gopkg-in-yaml-v2-2.3.0))) +; (home-page "https://github.com/imdario/mergo") +; (synopsis "Mergo") +; (description +; "This package provides a helper to merge structs and maps in Golang. Useful for configuration default values, avoiding messy if-statements. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-opencontainers-runc-0.1.1 +; (package +; (name "go-github-com-opencontainers-runc") +; (version "0.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/runc") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "09fm7f1k4lvx8v3crqb0cli1x2brlz8ka7f7qa8d2sb6ln58h7w7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/runc")) +; (home-page "https://github.com/opencontainers/runc") +; (synopsis "runc") +; (description +; "@code{runc} is a CLI tool for spawning and running containers according to the OCI specification.") +; (license license:asl2.0))) +; +;(define-public go-github-com-willf-bitset-1.1.11-0.20200630133818-d5bec3311243 +; (package +; (name "go-github-com-willf-bitset") +; (version "1.1.11-0.20200630133818-d5bec3311243") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/bits-and-blooms/bitset") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "05nyd0vhp2h9hbqlv2s9l2py6mr8hpz2zyfj09an1q7wd8vph4ja")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/willf/bitset")) +; (home-page "https://github.com/willf/bitset") +; (synopsis "bitset") +; (description +; "Package bitset implements bitsets, a mapping +;between non-negative integers and boolean values. It should be more +;efficient than map[uint] bool. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-opencontainers-selinux-1.6.0 +; (package +; (name "go-github-com-opencontainers-selinux") +; (version "1.6.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/selinux") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ja41zfgrkhk5khixjnxpi1b85xfcxlkhq2q9b7ma6xjfdhg8bq2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/selinux")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777" +; ,go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777) +; ("go-github-com-willf-bitset-1.1.11-0.20200630133818-d5bec3311243" +; ,go-github-com-willf-bitset-1.1.11-0.20200630133818-d5bec3311243) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) +; (home-page "https://github.com/opencontainers/selinux") +; (synopsis "selinux") +; (description "Common SELinux package used across the container ecosystem.") +; (license license:asl2.0))) +; +;(define-public go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2 +; (package +; (name "go-github-com-syndtr-gocapability") +; (version "0.0.0-20180916011248-d98352740cb2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/syndtr/gocapability") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "065y16562ynixxzj7iys4f4spb7knilbj3h833qlhds381j8hn93")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/syndtr/gocapability")) +; (home-page "https://github.com/syndtr/gocapability") +; (synopsis #f) +; (description #f) +; (license license:bsd-2))) +; +;(define-public go-github-com-containerd-nri-0.0.0-20201007170849-eb1350a75164 +; (package +; (name "go-github-com-containerd-nri") +; (version "0.0.0-20201007170849-eb1350a75164") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/nri") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1yhrxl36fswgxv7ny3p9xi99jsbwyk920gmzkjyfyk6nqs0hqbkg")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/nri")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.30.0" ,go-google-golang-org-grpc-1.30.0) +; ("go-golang-org-x-sys-0.0.0-20200728102440-3e129f6d46b1" +; ,go-golang-org-x-sys-0.0.0-20200728102440-3e129f6d46b1) +; ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" +; ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) +; ("go-golang-org-x-net-0.0.0-20200707034311-ab3426394381" +; ,go-golang-org-x-net-0.0.0-20200707034311-ab3426394381) +; ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) +; ("go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2" +; ,go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-selinux-1.6.0" +; ,go-github-com-opencontainers-selinux-1.6.0) +; ("go-github-com-opencontainers-runc-0.1.1" +; ,go-github-com-opencontainers-runc-0.1.1) +; ("go-github-com-opencontainers-image-spec-1.0.1" +; ,go-github-com-opencontainers-image-spec-1.0.1) +; ("go-github-com-opencontainers-go-digest-1.0.0" +; ,go-github-com-opencontainers-go-digest-1.0.0) +; ("go-github-com-imdario-mergo-0.3.10" +; ,go-github-com-imdario-mergo-0.3.10) +; ("go-github-com-google-uuid-1.1.1" ,go-github-com-google-uuid-1.1.1) +; ("go-github-com-google-go-cmp-0.5.1" +; ,go-github-com-google-go-cmp-0.5.1) +; ("go-github-com-gogo-googleapis-1.4.0" +; ,go-github-com-gogo-googleapis-1.4.0) +; ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" +; ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) +; ("go-github-com-docker-distribution-2.7.1+incompatible" +; ,go-github-com-docker-distribution-2.7.1+incompatible) +; ("go-github-com-containerd-typeurl-1.0.1" +; ,go-github-com-containerd-typeurl-1.0.1) +; ("go-github-com-containerd-ttrpc-1.0.1" +; ,go-github-com-containerd-ttrpc-1.0.1) +; ("go-github-com-containerd-fifo-0.0.0-20200410184934-f15a3290365b" +; ,go-github-com-containerd-fifo-0.0.0-20200410184934-f15a3290365b) +; ("go-github-com-containerd-continuity-0.0.0-20200710164510-efbc4488d8fe" +; ,go-github-com-containerd-continuity-0.0.0-20200710164510-efbc4488d8fe) +; ("go-github-com-containerd-containerd-1.4.0-beta.2.0.20200729163537-40b22ef07410" +; ,go-github-com-containerd-containerd-1.4.0-beta.2.0.20200729163537-40b22ef07410) +; ("go-github-com-containerd-cgroups-0.0.0-20200710171044-318312a37340" +; ,go-github-com-containerd-cgroups-0.0.0-20200710171044-318312a37340) +; ("go-github-com-microsoft-hcsshim-0.8.9" +; ,go-github-com-microsoft-hcsshim-0.8.9))) +; (home-page "https://github.com/containerd/nri") +; (synopsis "nri - Node Resource Interface") +; (description +; "This project is a WIP for a new, CNI like, interface for managing resources on a node for Pods and Containers.") +; (license license:asl2.0))) +; +;(define-public go-github-com-sirupsen-logrus-1.4.1 +; (package +; (name "go-github-com-sirupsen-logrus") +; (version "1.4.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/sirupsen/logrus") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1m7ny9jkb98cxqhsp13xa5hnqh1s9f25x04q6arsala4zswsw33c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/sirupsen/logrus")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33" +; ,go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33) +; ("go-github-com-stretchr-testify-1.2.2" +; ,go-github-com-stretchr-testify-1.2.2) +; ("go-github-com-stretchr-objx-0.1.1" +; ,go-github-com-stretchr-objx-0.1.1) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.1" +; ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.1) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://github.com/sirupsen/logrus") +; (synopsis "Logrus") +; (description +; "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190916202348-b4ddaad3f8a3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "05pa68kqxhpjk71b4cbm8vyzh6527b3ig6war2jr1g4aj3b7f1ak")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-microsoft-go-winio-0.4.16-0.20201130162521-d1ffc52c7331 +; (package +; (name "go-github-com-microsoft-go-winio") +; (version "0.4.16-0.20201130162521-d1ffc52c7331") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/microsoft/go-winio") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0snwbwdjs34x0my9ri77cvrbnahdiyjh2jlkzf12fy48p7fyk7pq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/Microsoft/go-winio")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3" +; ,go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3) +; ("go-github-com-sirupsen-logrus-1.4.1" +; ,go-github-com-sirupsen-logrus-1.4.1) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) +; (home-page "https://github.com/Microsoft/go-winio") +; (synopsis "go-winio") +; (description +; "This repository contains utilities for efficiently performing Win32 IO operations in +;Go. Currently, this is focused on accessing named pipes and other file handles, and +;for using named pipes as a net transport.") +; (license license:expat))) +; +;(define-public go-golang-org-x-sys-0.0.0-20191022100944-742c48ecaeb7 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20191022100944-742c48ecaeb7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1saf59bplvvb753my15ijxcy4a1jwfg53cmkgb6wkln2x4fgnhkp")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-cilium-ebpf-0.0.0-20200110133405-4032b1d8aae3 +; (package +; (name "go-github-com-cilium-ebpf") +; (version "0.0.0-20200110133405-4032b1d8aae3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/cilium/ebpf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "107x63zl8dlw2izn5xw8pnflgq19srpa46bgvjs8q4d61i02q1fr")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/cilium/ebpf")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20191022100944-742c48ecaeb7" +; ,go-golang-org-x-sys-0.0.0-20191022100944-742c48ecaeb7) +; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) +; (home-page "https://github.com/cilium/ebpf") +; (synopsis "eBPF") +; (description "Package ebpf is a toolkit for working with eBPF programs. +;") +; (license license:expat))) +; +;(define-public go-github-com-coreos-go-systemd-v22-22.0.0 +; (package +; (name "go-github-com-coreos-go-systemd-v22") +; (version "22.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/coreos/go-systemd") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0p4sb2fxxm2j1xny2l4fkq4kwj74plvh600gih8nyniqzannhrdx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/coreos/go-systemd/v22")) +; (propagated-inputs +; `(("go-github-com-godbus-dbus-v5-5.0.3" +; ,go-github-com-godbus-dbus-v5-5.0.3))) +; (home-page "https://github.com/coreos/go-systemd") +; (synopsis "go-systemd") +; (description "Go bindings to systemd. The project has several packages:") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-cgroups-0.0.0-20200531161412-0dbf7f05ba59 +; (package +; (name "go-github-com-containerd-cgroups") +; (version "0.0.0-20200531161412-0dbf7f05ba59") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/cgroups") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "10abzkjf77s8pv4mpyvy2jbl8wckhk3j7ykgs01sclal21v8p251")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/cgroups")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479" +; ,go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479) +; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) +; ("go-github-com-stretchr-testify-1.2.2" +; ,go-github-com-stretchr-testify-1.2.2) +; ("go-github-com-sirupsen-logrus-1.4.2" +; ,go-github-com-sirupsen-logrus-1.4.2) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-runtime-spec-1.0.2" +; ,go-github-com-opencontainers-runtime-spec-1.0.2) +; ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.2" +; ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.2) +; ("go-github-com-gogo-protobuf-1.3.1" +; ,go-github-com-gogo-protobuf-1.3.1) +; ("go-github-com-godbus-dbus-v5-5.0.3" +; ,go-github-com-godbus-dbus-v5-5.0.3) +; ("go-github-com-docker-go-units-0.4.0" +; ,go-github-com-docker-go-units-0.4.0) +; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" +; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) +; ("go-github-com-coreos-go-systemd-v22-22.0.0" +; ,go-github-com-coreos-go-systemd-v22-22.0.0) +; ("go-github-com-cilium-ebpf-0.0.0-20200110133405-4032b1d8aae3" +; ,go-github-com-cilium-ebpf-0.0.0-20200110133405-4032b1d8aae3))) +; (home-page "https://github.com/containerd/cgroups") +; (synopsis "cgroups") +; (description +; "Go package for creating, managing, inspecting, and destroying cgroups. +;The resources format for settings on the cgroup uses the OCI runtime-spec found +;@url{https://github.com/opencontainers/runtime-spec,here}.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1 +; (package +; (name "go-github-com-containerd-console") +; (version "0.0.0-20180822173158-c12b1e7919c1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/console") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ylrnmdhn9a2f8w8fsdgsvwnz5j0whhyhppjnhqc4lh8h9p9dpi9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/console")) +; (home-page "https://github.com/containerd/console") +; (synopsis "console") +; (description +; "Golang package for dealing with consoles. Light on deps and a simple API.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-containerd-1.3.2 +; (package +; (name "go-github-com-containerd-containerd") +; (version "1.3.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/containerd") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0qz6ss7a6f2r7gl7aar39pr5ry9l7nh7dn3kclr18nwdv01gmrvc")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/containerd")) +; (home-page "https://github.com/containerd/containerd") +; (synopsis "Now Recruiting") +; (description +; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc +; (package +; (name "go-github-com-containerd-continuity") +; (version "0.0.0-20190426062206-aaeac12a7ffc") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/continuity") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "05caqvxxb831xfvqnga692k98cy8xzkllqg1ibra0fb0ljnhbmca")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/continuity")) +; (home-page "https://github.com/containerd/continuity") +; (synopsis "continuity") +; (description +; "This package provides a transport-agnostic, filesystem metadata manifest system") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448 +; (package +; (name "go-github-com-containerd-fifo") +; (version "0.0.0-20190226154929-a9fb20d87448") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/fifo") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0c0sgfnafjnws4jgziczs6wxh0adjdrp6yyd88b7xy0hv13fsnqa")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/fifo")) +; (home-page "https://github.com/containerd/fifo") +; (synopsis "fifo") +; (description "Go package for handling fifos in a sane way.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3 +; (package +; (name "go-github-com-containerd-go-runc") +; (version "0.0.0-20180907222934-5a6d9f37cfa3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/go-runc") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "07qpxcjy64m238igpmj8g9z7qhf06k5xy1jcgpgvf5n912g4k3vd")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/go-runc")) +; (home-page "https://github.com/containerd/go-runc") +; (synopsis "go-runc") +; (description +; "This is a package for consuming the @url{https://github.com/opencontainers/runc,runc} binary in your Go applications. +;It tries to expose all the settings and features of the runc CLI. If there is something missing then add it, its opensource!") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de +; (package +; (name "go-github-com-containerd-ttrpc") +; (version "0.0.0-20190828154514-0e0f228740de") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/ttrpc") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1kzclhmicw2xkiqsg6npx0xzs5jx36mqmyd0gj5dzv88i7p4b8dx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/ttrpc")) +; (home-page "https://github.com/containerd/ttrpc") +; (synopsis "ttrpc") +; (description "GRPC for low-memory environments.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd +; (package +; (name "go-github-com-containerd-typeurl") +; (version "0.0.0-20180627222232-a93fcdb778cd") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/typeurl") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0aqnf5rzc5pldln0czhxlr0fqaf5553ab7wzsq85p90lg1ryqnd6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/typeurl")) +; (home-page "https://github.com/containerd/typeurl") +; (synopsis "typeurl") +; (description +; "This package provides a Go package for managing the registration, marshaling, and unmarshaling of encoded types.") +; (license license:asl2.0))) +; +;(define-public go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2 +; (package +; (name "go-github-com-opencontainers-go-digest") +; (version "0.0.0-20180430190053-c9281466c8b2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/go-digest") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1djdazssy27xn91pjhx3dgb0f11bnlzzbwkh7f8zwnpz011anasi")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/go-digest")) +; (home-page "https://github.com/opencontainers/go-digest") +; (synopsis "go-digest") +; (description +; "Package digest provides a generalized type to opaquely represent message +;digests and their operations within the registry. The Digest type is +;designed to serve as a flexible identifier in a content-addressable system. +;More importantly, it provides tools and wrappers to work with +;hash.Hash-based digests with little effort. +;") +; (license (list license:asl2.0 license:cc-by-sa4.0)))) +; +;(define-public go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f +; (package +; (name "go-github-com-opencontainers-runc") +; (version "0.0.0-20190115041553-12f6a991201f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/runc") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0lr4q440pliilq2njyj5glfpma89r9l1cl687niwkp2pzb32dm45")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/runc")) +; (home-page "https://github.com/opencontainers/runc") +; (synopsis "runc") +; (description +; "@code{runc} is a CLI tool for spawning and running containers according to the OCI specification.") +; (license license:asl2.0))) +; +;(define-public go-github-com-opencontainers-runtime-spec-1.0.2 +; (package +; (name "go-github-com-opencontainers-runtime-spec") +; (version "1.0.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/runtime-spec") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19w981vcmd5lp2hy0630x6ayb8zz17n2vxqm2py5mg945xflcizg")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) +; (home-page "https://github.com/opencontainers/runtime-spec") +; (synopsis "Open Container Initiative Runtime Specification") +; (description +; "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") +; (license license:asl2.0))) +; +;(define-public go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7 +; (package +; (name "go-github-com-prometheus-procfs") +; (version "0.0.0-20180125133057-cb4147076ac7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/procfs") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0zhlrik0f9q1lj6cisgnxgbz4darbcix52hm5abi24l2ahchf5ca")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/procfs")) +; (home-page "https://github.com/prometheus/procfs") +; (synopsis "procfs") +; (description +; "Package procfs provides functions to retrieve system, kernel and process +;metrics from the pseudo-filesystem proc. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-urfave-cli-1.22.2 +; (package +; (name "go-github-com-urfave-cli") +; (version "1.22.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/urfave/cli") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "10mcnvi5qmn00vpyk6si8gjka7p654wr9hac4zc9w5h3ickhvbdc")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/urfave/cli")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) +; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d" +; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d) +; ("go-github-com-burntsushi-toml-0.3.1" +; ,go-github-com-burntsushi-toml-0.3.1))) +; (home-page "https://github.com/urfave/cli") +; (synopsis "cli") +; (description +; "Package cli provides a minimal framework for creating and organizing command line +;Go applications. cli is designed to be easy to understand and write, the most simple +;cli application can be written as follows: +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-net-0.0.0-20190501004415-9ce7a6920f09 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190501004415-9ce7a6920f09") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1kbs85jsqbv4v89ii2zam4b8dhmllhsrf46njmi09x0w6s0b9cbk")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-go-opencensus-io-0.22.0 +; (package +; (name "go-go-opencensus-io") +; (version "0.22.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/census-instrumentation/opencensus-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "05jr8gkr2w34i5wwki4zhl5ch0qrgi7cdgag5iy5gpxplhbrvbg9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "go.opencensus.io")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.20.1" ,go-google-golang-org-grpc-1.20.1) +; ("go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb" +; ,go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb) +; ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) +; ("go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd" +; ,go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd) +; ("go-golang-org-x-net-0.0.0-20190501004415-9ce7a6920f09" +; ,go-golang-org-x-net-0.0.0-20190501004415-9ce7a6920f09) +; ("go-github-com-hashicorp-golang-lru-0.5.1" +; ,go-github-com-hashicorp-golang-lru-0.5.1) +; ("go-github-com-google-go-cmp-0.3.0" +; ,go-github-com-google-go-cmp-0.3.0) +; ("go-github-com-golang-protobuf-1.3.1" +; ,go-github-com-golang-protobuf-1.3.1))) +; (home-page "https://go.opencensus.io") +; (synopsis "OpenCensus Libraries for Go") +; (description "Package opencensus contains Go support for OpenCensus. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20191004110552-13f9640d40b9") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ba2767lvklnmfvb9jkwvd4m7z6326gaiz3rgylh795g88hy34g1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873 +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20190502173448-54afdca5d873") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1vm1vggl874jd4wi6qyl7aggc6s6kdsazk4vj0cs2dfcw2xnw8ag")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" +; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) +; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) +; ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" +; ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) +; ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" +; ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) +; ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" +; ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd) +; ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" +; ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) +; ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" +; ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-grpc-1.23.1 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.23.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1d8gjjhrqbiq8pb56lb4x10hb752k7k06wspjvh7v0vpzmf25981")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" +; ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) +; ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" +; ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) +; ("go-google-golang-org-appengine-1.1.0" +; ,go-google-golang-org-appengine-1.1.0) +; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" +; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-github-com-google-go-cmp-0.2.0" +; ,go-github-com-google-go-cmp-0.2.0) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0) +; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-client9-misspell-0.3.4" +; ,go-github-com-client9-misspell-0.3.4) +; ("go-github-com-burntsushi-toml-0.3.1" +; ,go-github-com-burntsushi-toml-0.3.1) +; ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-microsoft-hcsshim-0.8.14 +; (package +; (name "go-github-com-microsoft-hcsshim") +; (version "0.8.14") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/microsoft/hcsshim") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0k57knv8zrf32hp7rpv1km9j772w6752pfvdbpd3l711ism48c84")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/Microsoft/hcsshim")) +; (propagated-inputs +; `(("go-gotest-tools-2.2.0+incompatible" +; ,go-gotest-tools-2.2.0+incompatible) +; ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) +; ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" +; ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) +; ("go-google-golang-org-grpc-1.23.1" ,go-google-golang-org-grpc-1.23.1) +; ("go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873" +; ,go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873) +; ("go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3" +; ,go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3) +; ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" +; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) +; ("go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9" +; ,go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9) +; ("go-go-opencensus-io-0.22.0" ,go-go-opencensus-io-0.22.0) +; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) +; ("go-github-com-stretchr-testify-1.4.0" +; ,go-github-com-stretchr-testify-1.4.0) +; ("go-github-com-sirupsen-logrus-1.4.2" +; ,go-github-com-sirupsen-logrus-1.4.2) +; ("go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7" +; ,go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-runtime-spec-1.0.2" +; ,go-github-com-opencontainers-runtime-spec-1.0.2) +; ("go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f" +; ,go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f) +; ("go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2" +; ,go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2) +; ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2) +; ("go-github-com-gogo-protobuf-1.3.1" +; ,go-github-com-gogo-protobuf-1.3.1) +; ("go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd" +; ,go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd) +; ("go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de" +; ,go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de) +; ("go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3" +; ,go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3) +; ("go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448" +; ,go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448) +; ("go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc" +; ,go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc) +; ("go-github-com-containerd-containerd-1.3.2" +; ,go-github-com-containerd-containerd-1.3.2) +; ("go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1" +; ,go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1) +; ("go-github-com-containerd-cgroups-0.0.0-20200531161412-0dbf7f05ba59" +; ,go-github-com-containerd-cgroups-0.0.0-20200531161412-0dbf7f05ba59) +; ("go-github-com-microsoft-go-winio-0.4.16-0.20201130162521-d1ffc52c7331" +; ,go-github-com-microsoft-go-winio-0.4.16-0.20201130162521-d1ffc52c7331))) +; (home-page "https://github.com/Microsoft/hcsshim") +; (synopsis "hcsshim") +; (description +; "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") +; (license license:expat))) +; +;(define-public go-github-com-containerd-containerd-1.4.3 +; (package +; (name "go-github-com-containerd-containerd") +; (version "1.4.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/containerd") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "09xvhjg5f8h90w1y94kqqnqzhbhd62dcdd9wb9sdqakisjk6zrl0")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/containerd")) +; (home-page "https://github.com/containerd/containerd") +; (synopsis "Now Recruiting") +; (description +; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") +; (license license:asl2.0))) +; +;(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.2 +; (package +; (name "go-github-com-konsorten-go-windows-terminal-sequences") +; (version "1.0.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/konsorten/go-windows-terminal-sequences") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "09mn209ika7ciy87xf2x31dq5fnqw39jidgaljvmqxwk7ff1hnx7")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) +; (home-page "https://github.com/konsorten/go-windows-terminal-sequences") +; (synopsis "Windows Terminal Sequences") +; (description +; "This library allow for enabling Windows terminal color support for Go.") +; (license license:expat))) +; +;(define-public go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1 +; (package +; (name "go-github-com-prometheus-procfs") +; (version "0.0.0-20190522114515-bc1a522cf7b1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/procfs") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "13ws66kd65zbhk31zmax9qgmh22fzjcgs5ihy4fm1d775w6bmdzx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/procfs")) +; (propagated-inputs +; `(("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" +; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4))) +; (home-page "https://github.com/prometheus/procfs") +; (synopsis "procfs") +; (description +; "Package procfs provides functions to retrieve system, kernel and process +;metrics from the pseudo-filesystem proc. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20200120151820-655fe14d7479") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "133yxmdcny5b0r8775m52sj7zja36riv0x2437k7jccywqi8nx32")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20200117163144-32f20d992d24 +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20200117163144-32f20d992d24") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1kl696jd8fykykjjbngqpgqsngajwbbrvrpl1q0804l6hz8qk858")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" +; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) +; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) +; ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" +; ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) +; ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" +; ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) +; ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" +; ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-ttrpc-1.0.2 +; (package +; (name "go-github-com-containerd-ttrpc") +; (version "1.0.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/ttrpc") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0plkm3yrr20vccfl0x8dxys3iphjwnmi285in0pivff6p9djf3yz")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/ttrpc")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.26.0" ,go-google-golang-org-grpc-1.26.0) +; ("go-google-golang-org-genproto-0.0.0-20200117163144-32f20d992d24" +; ,go-google-golang-org-genproto-0.0.0-20200117163144-32f20d992d24) +; ("go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479" +; ,go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479) +; ("go-github-com-sirupsen-logrus-1.4.2" +; ,go-github-com-sirupsen-logrus-1.4.2) +; ("go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1" +; ,go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.2" +; ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.2) +; ("go-github-com-gogo-protobuf-1.3.1" +; ,go-github-com-gogo-protobuf-1.3.1))) +; (home-page "https://github.com/containerd/ttrpc") +; (synopsis "ttrpc") +; (description "GRPC for low-memory environments.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-typeurl-1.0.1 +; (package +; (name "go-github-com-containerd-typeurl") +; (version "1.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/typeurl") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "09cgrchrw5d36zq0mc321l5qr2gfbdm1z1a3hhkhqr4qay6vglqn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/typeurl")) +; (propagated-inputs +; `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-gogo-protobuf-1.3.1" +; ,go-github-com-gogo-protobuf-1.3.1))) +; (home-page "https://github.com/containerd/typeurl") +; (synopsis "typeurl") +; (description +; "This package provides a Go package for managing the registration, marshaling, and unmarshaling of encoded types.") +; (license license:asl2.0))) +; +;(define-public go-github-com-opencontainers-runc-1.0.0-rc9 +; (package +; (name "go-github-com-opencontainers-runc") +; (version "1.0.0-rc9") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/runc") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ss5b46cbbckyqlwgj8dbd5l59c5y0kp679hcpc0ybaj53pmwxj7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/runc")) +; (home-page "https://github.com/opencontainers/runc") +; (synopsis "runc") +; (description +; "@code{runc} is a CLI tool for spawning and running containers according to the OCI specification.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-zfs-0.0.0-20210301145711-11e8f1707f62 +; (package +; (name "go-github-com-containerd-zfs") +; (version "0.0.0-20210301145711-11e8f1707f62") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/zfs") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1919ax45a07v2y56xq5c0xihkn2c5zgyqv68rzx3x5cc20n2p8yg")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/zfs")) +; (propagated-inputs +; `(("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) +; ("go-go-etcd-io-bbolt-1.3.3" ,go-go-etcd-io-bbolt-1.3.3) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-runc-1.0.0-rc9" +; ,go-github-com-opencontainers-runc-1.0.0-rc9) +; ("go-github-com-opencontainers-image-spec-1.0.1" +; ,go-github-com-opencontainers-image-spec-1.0.1) +; ("go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible" +; ,go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible) +; ("go-github-com-google-uuid-1.1.1" ,go-github-com-google-uuid-1.1.1) +; ("go-github-com-gogo-protobuf-1.3.1" +; ,go-github-com-gogo-protobuf-1.3.1) +; ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" +; ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) +; ("go-github-com-containerd-typeurl-1.0.1" +; ,go-github-com-containerd-typeurl-1.0.1) +; ("go-github-com-containerd-ttrpc-1.0.2" +; ,go-github-com-containerd-ttrpc-1.0.2) +; ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" +; ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) +; ("go-github-com-containerd-containerd-1.4.3" +; ,go-github-com-containerd-containerd-1.4.3) +; ("go-github-com-microsoft-hcsshim-0.8.14" +; ,go-github-com-microsoft-hcsshim-0.8.14))) +; (home-page "https://github.com/containerd/zfs") +; (synopsis "ZFS snapshotter plugin") +; (description "ZFS snapshotter plugin for containerd.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containernetworking-cni-0.7.1 +; (package +; (name "go-github-com-containernetworking-cni") +; (version "0.7.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containernetworking/cni") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "02qn1br8164d99978acalisy1sx294g1axnii4yh1wji0fc735xz")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containernetworking/cni")) +; (home-page "https://github.com/containernetworking/cni") +; (synopsis "CNI - the Container Network Interface") +; (description +; "CNI (), a @url{https://cncf.io,Cloud Native Computing Foundation} project, consists of a specification and libraries for writing plugins to configure network interfaces in Linux containers, along with a number of supported plugins. +;CNI concerns itself only with network connectivity of containers and removing allocated resources when the container is deleted. +;Because of this focus, CNI has a wide range of support and the specification is simple to implement.") +; (license license:asl2.0))) +; +;(define-public go-github-com-coreos-go-iptables-0.4.5 +; (package +; (name "go-github-com-coreos-go-iptables") +; (version "0.4.5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/coreos/go-iptables") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "04iqh4hvvrrvjsfjyaa5bdyqklwzrzzy8yiyvja90hvv121f7975")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/coreos/go-iptables")) +; (home-page "https://github.com/coreos/go-iptables") +; (synopsis "go-iptables") +; (description "Go bindings for iptables utility.") +; (license license:asl2.0))) +; +;(define-public go-github-com-onsi-ginkgo-0.0.0-20151202141238-7f8ab55aaf3b +; (package +; (name "go-github-com-onsi-ginkgo") +; (version "0.0.0-20151202141238-7f8ab55aaf3b") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/onsi/ginkgo") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0nas6wqdym4jx42kw9wj80b58r69k9qhnvglz009lj34g5gba7rw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/onsi/ginkgo")) +; (home-page "https://github.com/onsi/ginkgo") +; (synopsis "Ginkgo 2.0 Release Candidate is available!") +; (description "Ginkgo is a BDD-style testing framework for Golang +;") +; (license license:expat))) +; +;(define-public go-github-com-onsi-gomega-0.0.0-20151007035656-2152b45fa28a +; (package +; (name "go-github-com-onsi-gomega") +; (version "0.0.0-20151007035656-2152b45fa28a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/onsi/gomega") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0amjlkawp84mmdqjgdamf93p1546cla6h4wwrx7hf5r862r2qcw2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/onsi/gomega")) +; (home-page "https://github.com/onsi/gomega") +; (synopsis ": a BDD Testing Framework for Golang") +; (description +; "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library. +;") +; (license license:expat))) +; +;(define-public go-github-com-vishvananda-netlink-0.0.0-20181108222139-023a6dafdcdf +; (package +; (name "go-github-com-vishvananda-netlink") +; (version "0.0.0-20181108222139-023a6dafdcdf") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/vishvananda/netlink") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1i5q8r8rg7lxzvq2vhbf25lrkzdlgficfv0bxg9rf7cgg6z819sn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/vishvananda/netlink")) +; (home-page "https://github.com/vishvananda/netlink") +; (synopsis "netlink - netlink library for go") +; (description +; "Package netlink provides a simple library for netlink. Netlink is +;the interface a user-space program in linux uses to communicate with +;the kernel. It can be used to add and remove interfaces, set up ip +;addresses and routes, and confiugre ipsec. Netlink communication +;requires elevated privileges, so in most cases this code needs to +;be run as root. The low level primitives for netlink are contained +;in the nl subpackage. This package attempts to provide a high-level +;interface that is loosly modeled on the iproute2 cli. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-vishvananda-netns-0.0.0-20180720170159-13995c7128cc +; (package +; (name "go-github-com-vishvananda-netns") +; (version "0.0.0-20180720170159-13995c7128cc") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/vishvananda/netns") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1zk6w8158qi4niva5rijchbv9ixgmijsgqshh54wdaav4xrhjshn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/vishvananda/netns")) +; (home-page "https://github.com/vishvananda/netns") +; (synopsis "netns - network namespaces in go") +; (description +; "Package netns allows ultra-simple network namespace handling. NsHandles +;can be retrieved and set. Note that the current namespace is thread +;local so actions that set and reset namespaces should use LockOSThread +;to make sure the namespace doesn't change due to a goroutine switch. +;It is best to close NsHandles when you are done with them. This can be +;accomplished via a `defer ns.Close()` on the handle. Changing namespaces +;requires elevated privileges, so in most cases this code needs to be run +;as root. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20181009213950-7c1a557ab941 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20181009213950-7c1a557ab941") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1f1q9mby8m7ws3gbj90v0prhnf4g2sgf74azmw31kzwd6azlar3m")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20181011144130-49bb7cea24b1 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20181011144130-49bb7cea24b1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "111q4qm3hcjvzvyv9y5rz8ydnyg48rckcygxqy6gv63q618wz6gn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-github-com-containernetworking-plugins-0.8.6 +; (package +; (name "go-github-com-containernetworking-plugins") +; (version "0.8.6") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containernetworking/plugins") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0f1cqxjf26sy1c4aw6y7pyd9lrz0vknby4q5j6xj77a1pab9073m")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containernetworking/plugins")) +; (propagated-inputs +; `(("go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2" +; ,go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2) +; ("go-gopkg-in-airbrake-gobrake-v2-2.0.9" +; ,go-gopkg-in-airbrake-gobrake-v2-2.0.9) +; ("go-golang-org-x-sys-0.0.0-20190616124812-15dcb6c0061f" +; ,go-golang-org-x-sys-0.0.0-20190616124812-15dcb6c0061f) +; ("go-golang-org-x-net-0.0.0-20181011144130-49bb7cea24b1" +; ,go-golang-org-x-net-0.0.0-20181011144130-49bb7cea24b1) +; ("go-golang-org-x-crypto-0.0.0-20181009213950-7c1a557ab941" +; ,go-golang-org-x-crypto-0.0.0-20181009213950-7c1a557ab941) +; ("go-github-com-vishvananda-netns-0.0.0-20180720170159-13995c7128cc" +; ,go-github-com-vishvananda-netns-0.0.0-20180720170159-13995c7128cc) +; ("go-github-com-vishvananda-netlink-0.0.0-20181108222139-023a6dafdcdf" +; ,go-github-com-vishvananda-netlink-0.0.0-20181108222139-023a6dafdcdf) +; ("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0) +; ("go-github-com-sirupsen-logrus-1.0.6" +; ,go-github-com-sirupsen-logrus-1.0.6) +; ("go-github-com-safchain-ethtool-0.0.0-20190326074333-42ed695e3de8" +; ,go-github-com-safchain-ethtool-0.0.0-20190326074333-42ed695e3de8) +; ("go-github-com-onsi-gomega-0.0.0-20151007035656-2152b45fa28a" +; ,go-github-com-onsi-gomega-0.0.0-20151007035656-2152b45fa28a) +; ("go-github-com-onsi-ginkgo-0.0.0-20151202141238-7f8ab55aaf3b" +; ,go-github-com-onsi-ginkgo-0.0.0-20151202141238-7f8ab55aaf3b) +; ("go-github-com-mattn-go-shellwords-1.0.3" +; ,go-github-com-mattn-go-shellwords-1.0.3) +; ("go-github-com-j-keck-arping-0.0.0-20160618110441-2cf9dc699c56" +; ,go-github-com-j-keck-arping-0.0.0-20160618110441-2cf9dc699c56) +; ("go-github-com-golang-protobuf-1.3.1" +; ,go-github-com-golang-protobuf-1.3.1) +; ("go-github-com-godbus-dbus-0.0.0-20180201030542-885f9cc04c9c" +; ,go-github-com-godbus-dbus-0.0.0-20180201030542-885f9cc04c9c) +; ("go-github-com-d2g-hardwareaddr-0.0.0-20190221164911-e7d9fbe030e4" +; ,go-github-com-d2g-hardwareaddr-0.0.0-20190221164911-e7d9fbe030e4) +; ("go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5" +; ,go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5) +; ("go-github-com-d2g-dhcp4client-1.0.0" +; ,go-github-com-d2g-dhcp4client-1.0.0) +; ("go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c" +; ,go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c) +; ("go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7" +; ,go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7) +; ("go-github-com-coreos-go-iptables-0.4.5" +; ,go-github-com-coreos-go-iptables-0.4.5) +; ("go-github-com-containernetworking-cni-0.7.1" +; ,go-github-com-containernetworking-cni-0.7.1) +; ("go-github-com-buger-jsonparser-0.0.0-20180808090653-f4dd9f5a6b44" +; ,go-github-com-buger-jsonparser-0.0.0-20180808090653-f4dd9f5a6b44) +; ("go-github-com-alexflint-go-filemutex-0.0.0-20171022225611-72bdc8eae2ae" +; ,go-github-com-alexflint-go-filemutex-0.0.0-20171022225611-72bdc8eae2ae) +; ("go-github-com-microsoft-hcsshim-0.8.6" +; ,go-github-com-microsoft-hcsshim-0.8.6) +; ("go-github-com-microsoft-go-winio-0.4.11" +; ,go-github-com-microsoft-go-winio-0.4.11))) +; (home-page "https://github.com/containernetworking/plugins") +; (synopsis "Plugins") +; (description +; "Some CNI network plugins, maintained by the containernetworking team. For more information, see the @url{https://www.cni.dev,CNI website}.") +; (license license:asl2.0))) +; +;(define-public go-github-com-imdario-mergo-0.3.11 +; (package +; (name "go-github-com-imdario-mergo") +; (version "0.3.11") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/imdario/mergo") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "07iay9j3ry7qrflvn9bgyyggvwacl1s1in1cnbmsp1020ydkph8k")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/imdario/mergo")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.3.0" ,go-gopkg-in-yaml-v2-2.3.0))) +; (home-page "https://github.com/imdario/mergo") +; (synopsis "Mergo") +; (description +; "This package provides a helper to merge structs and maps in Golang. Useful for configuration default values, avoiding messy if-statements. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-klauspost-compress-1.11.3 +; (package +; (name "go-github-com-klauspost-compress") +; (version "1.11.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/klauspost/compress") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "04wpilw6072fh2wd492ma1nw4br7bvz466mj0vi2m1g4w6d0z88z")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/klauspost/compress")) +; (home-page "https://github.com/klauspost/compress") +; (synopsis "compress") +; (description "This package provides various compression algorithms.") +; (license #f))) +; +;(define-public go-github-com-checkpoint-restore-go-criu-v4-4.1.0 +; (package +; (name "go-github-com-checkpoint-restore-go-criu-v4") +; (version "4.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/checkpoint-restore/go-criu") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0hfgjck015df5h44hczl3x4gg430saczgkl619cp0l6cpaxga5yi")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/checkpoint-restore/go-criu/v4")) +; (propagated-inputs +; `(("go-github-com-golang-protobuf-1.3.5" +; ,go-github-com-golang-protobuf-1.3.5))) +; (home-page "https://github.com/checkpoint-restore/go-criu") +; (synopsis "go-criu -- Go bindings for") +; (description +; "This repository provides Go bindings for CRIU. The code is based on the Go based PHaul +;implementation from the CRIU repository. For easier inclusion into other Go projects the +;CRIU Go bindings have been moved to this repository.") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20200124204421-9fbb57f87de9") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0qaz2jjkrxzgkapmjqingdwamrgq2aiblxvzzgrcsv2qhkj0wdps")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-cilium-ebpf-0.2.0 +; (package +; (name "go-github-com-cilium-ebpf") +; (version "0.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/cilium/ebpf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0f7my8n5v2c5cmgrcikgi0naamglr7c4khgxkbb1k5wl8mm9465a")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/cilium/ebpf")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9" +; ,go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9) +; ("go-github-com-google-go-cmp-0.5.2" +; ,go-github-com-google-go-cmp-0.5.2))) +; (home-page "https://github.com/cilium/ebpf") +; (synopsis "eBPF") +; (description "Package ebpf is a toolkit for working with eBPF programs. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20200916030750-2334cc1a136f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1lc7d513gwwpr6r7f55743684n1qsgn9vmg6b79x0hsp1x90z4mr")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-containerd-console-1.0.1 +; (package +; (name "go-github-com-containerd-console") +; (version "1.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/console") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0s837wj6h80fykk2pdmaji75rw9c3863by0gh0cq51hh0lgyjpvg")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/console")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f" +; ,go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) +; (home-page "https://github.com/containerd/console") +; (synopsis "console") +; (description +; "Golang package for dealing with consoles. Light on deps and a simple API.") +; (license license:asl2.0))) +; +;(define-public go-github-com-coreos-go-systemd-v22-22.1.0 +; (package +; (name "go-github-com-coreos-go-systemd-v22") +; (version "22.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/coreos/go-systemd") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "127dj1iwp69yj74nwh9ckgc0mkk1mv4yzbxmbdxix1r7j6q35z3j")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/coreos/go-systemd/v22")) +; (propagated-inputs +; `(("go-github-com-godbus-dbus-v5-5.0.3" +; ,go-github-com-godbus-dbus-v5-5.0.3))) +; (home-page "https://github.com/coreos/go-systemd") +; (synopsis "go-systemd") +; (description "Go bindings to systemd. The project has several packages:") +; (license license:asl2.0))) +; +;(define-public go-github-com-godbus-dbus-v5-5.0.3 +; (package +; (name "go-github-com-godbus-dbus-v5") +; (version "5.0.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/godbus/dbus") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1bkc904073k807yxg6mvqaxrr6ammmhginr9p54jfb55mz3hfw3s")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/godbus/dbus/v5")) +; (home-page "https://github.com/godbus/dbus") +; (synopsis "dbus") +; (description +; "Package dbus implements bindings to the D-Bus message bus system. +;") +; (license license:bsd-2))) +; +;(define-public go-github-com-opencontainers-runc-1.0.0-rc93 +; (package +; (name "go-github-com-opencontainers-runc") +; (version "1.0.0-rc93") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/runc") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "008d5wkznic80n5q1vwx727qn5ifalc7cydq68hc1gk9wrhna4v4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/runc")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" +; ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68) +; ("go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b" +; ,go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b) +; ("go-github-com-willf-bitset-1.1.11" +; ,go-github-com-willf-bitset-1.1.11) +; ("go-github-com-vishvananda-netlink-1.1.0" +; ,go-github-com-vishvananda-netlink-1.1.0) +; ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) +; ("go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635" +; ,go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635) +; ("go-github-com-sirupsen-logrus-1.7.0" +; ,go-github-com-sirupsen-logrus-1.7.0) +; ("go-github-com-seccomp-libseccomp-golang-0.9.1" +; ,go-github-com-seccomp-libseccomp-golang-0.9.1) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-selinux-1.8.0" +; ,go-github-com-opencontainers-selinux-1.8.0) +; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" +; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) +; ("go-github-com-mrunalp-fileutils-0.5.0" +; ,go-github-com-mrunalp-fileutils-0.5.0) +; ("go-github-com-moby-sys-mountinfo-0.4.0" +; ,go-github-com-moby-sys-mountinfo-0.4.0) +; ("go-github-com-golang-protobuf-1.4.3" +; ,go-github-com-golang-protobuf-1.4.3) +; ("go-github-com-godbus-dbus-v5-5.0.3" +; ,go-github-com-godbus-dbus-v5-5.0.3) +; ("go-github-com-docker-go-units-0.4.0" +; ,go-github-com-docker-go-units-0.4.0) +; ("go-github-com-cyphar-filepath-securejoin-0.2.2" +; ,go-github-com-cyphar-filepath-securejoin-0.2.2) +; ("go-github-com-coreos-go-systemd-v22-22.1.0" +; ,go-github-com-coreos-go-systemd-v22-22.1.0) +; ("go-github-com-containerd-console-1.0.1" +; ,go-github-com-containerd-console-1.0.1) +; ("go-github-com-cilium-ebpf-0.2.0" ,go-github-com-cilium-ebpf-0.2.0) +; ("go-github-com-checkpoint-restore-go-criu-v4-4.1.0" +; ,go-github-com-checkpoint-restore-go-criu-v4-4.1.0))) +; (home-page "https://github.com/opencontainers/runc") +; (synopsis "runc") +; (description +; "@code{runc} is a CLI tool for spawning and running containers according to the OCI specification.") +; (license license:asl2.0))) +; +;(define-public go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d +; (package +; (name "go-github-com-opencontainers-runtime-spec") +; (version "1.0.3-0.20200929063507-e6143ca7d51d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/runtime-spec") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "06yk9kjif5mgi46d0hcgqcikdcplf3yflqbj8h6ljxshp6jzc49w")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) +; (home-page "https://github.com/opencontainers/runtime-spec") +; (synopsis "Open Container Initiative Runtime Specification") +; (description +; "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") +; (license license:asl2.0))) +; +;(define-public go-github-com-willf-bitset-1.1.11 +; (package +; (name "go-github-com-willf-bitset") +; (version "1.1.11") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/bits-and-blooms/bitset") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1v7wnikdxiyhwdxnsj2wcrsrsi1kb2ssmarvbrda90vmxzafjl7d")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/willf/bitset")) +; (home-page "https://github.com/willf/bitset") +; (synopsis "bitset") +; (description +; "Package bitset implements bitsets, a mapping +;between non-negative integers and boolean values. It should be more +;efficient than map[uint] bool. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-opencontainers-selinux-1.8.0 +; (package +; (name "go-github-com-opencontainers-selinux") +; (version "1.8.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/selinux") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "08aakiva619hk4lgfvyi6kpjgw7hfirs0jlc2jdgzcv7p0gfhbmx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/selinux")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777" +; ,go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777) +; ("go-github-com-willf-bitset-1.1.11" +; ,go-github-com-willf-bitset-1.1.11) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) +; (home-page "https://github.com/opencontainers/selinux") +; (synopsis "selinux") +; (description "Common SELinux package used across the container ecosystem.") +; (license license:asl2.0))) +; +;(define-public go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.14 +; (package +; (name "go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client") +; (version "0.0.14") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes-sigs/apiserver-network-proxy") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0px41x5apgcssmwmx75cwm000s8b8pgd84dxn56maxx223dzz9vm")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path +; "sigs.k8s.io/apiserver-network-proxy/konnectivity-client")) +; (propagated-inputs +; `(("go-k8s-io-klog-v2-2.0.0" ,go-k8s-io-klog-v2-2.0.0) +; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) +; ("go-github-com-golang-protobuf-1.4.0" +; ,go-github-com-golang-protobuf-1.4.0))) +; (home-page +; "https://sigs.k8s.io/apiserver-network-proxy/konnectivity-client") +; (synopsis #f) +; (description #f) +; (license license:asl2.0))) +; +;(define-public go-k8s-io-apiserver-0.20.1 +; (package +; (name "go-k8s-io-apiserver") +; (version "0.20.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes/apiserver") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "03k8kjisscj59i410kk2bz0qfpxa2d2vbwxiwyn93k7a2avbn7cs")))) +; (build-system go-build-system) +; (arguments '(#:import-path "k8s.io/apiserver")) +; (propagated-inputs +; `(("go-k8s-io-component-base-0.20.1" ,go-k8s-io-component-base-0.20.1) +; ("go-k8s-io-client-go-0.20.1" ,go-k8s-io-client-go-0.20.1) +; ("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) +; ("go-k8s-io-api-0.20.1" ,go-k8s-io-api-0.20.1) +; ("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) +; ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.2" +; ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.2) +; ("go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.14" +; ,go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.14) +; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" +; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) +; ("go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd" +; ,go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd) +; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) +; ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) +; ("go-gopkg-in-square-go-jose-v2-2.2.2" +; ,go-gopkg-in-square-go-jose-v2-2.2.2) +; ("go-gopkg-in-natefinch-lumberjack-v2-2.0.0" +; ,go-gopkg-in-natefinch-lumberjack-v2-2.0.0) +; ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) +; ("go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a" +; ,go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a) +; ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" +; ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) +; ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" +; ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) +; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" +; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) +; ("go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0" +; ,go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0) +; ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) +; ("go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489" +; ,go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489) +; ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) +; ("go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5" +; ,go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) +; ("go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021" +; ,go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822" +; ,go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822) +; ("go-github-com-mailru-easyjson-0.7.0" +; ,go-github-com-mailru-easyjson-0.7.0) +; ("go-github-com-hashicorp-golang-lru-0.5.1" +; ,go-github-com-hashicorp-golang-lru-0.5.1) +; ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" +; ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) +; ("go-github-com-gorilla-websocket-1.4.2" +; ,go-github-com-gorilla-websocket-1.4.2) +; ("go-github-com-googleapis-gnostic-0.4.1" +; ,go-github-com-googleapis-gnostic-0.4.1) +; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) +; ("go-github-com-google-gofuzz-1.1.0" +; ,go-github-com-google-gofuzz-1.1.0) +; ("go-github-com-google-go-cmp-0.5.2" +; ,go-github-com-google-go-cmp-0.5.2) +; ("go-github-com-gogo-protobuf-1.3.1" +; ,go-github-com-gogo-protobuf-1.3.1) +; ("go-github-com-go-openapi-spec-0.19.3" +; ,go-github-com-go-openapi-spec-0.19.3) +; ("go-github-com-evanphx-json-patch-4.9.0+incompatible" +; ,go-github-com-evanphx-json-patch-4.9.0+incompatible) +; ("go-github-com-emicklei-go-restful-2.9.5+incompatible" +; ,go-github-com-emicklei-go-restful-2.9.5+incompatible) +; ("go-github-com-dustin-go-humanize-1.0.0" +; ,go-github-com-dustin-go-humanize-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1) +; ("go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f" +; ,go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f) +; ("go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e" +; ,go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e) +; ("go-github-com-coreos-go-semver-0.3.0" +; ,go-github-com-coreos-go-semver-0.3.0) +; ("go-github-com-coreos-go-oidc-2.1.0+incompatible" +; ,go-github-com-coreos-go-oidc-2.1.0+incompatible))) +; (home-page "https://k8s.io/apiserver") +; (synopsis "apiserver") +; (description +; "Generic library for building a Kubernetes aggregated API server.") +; (license license:asl2.0))) +; +;(define-public go-k8s-io-api-0.20.1 +; (package +; (name "go-k8s-io-api") +; (version "0.20.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes/api") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "051nl7g66k0jkc9rmfbvwdsmqkn36nq71kvnfym3lhnjcgg53k0l")))) +; (build-system go-build-system) +; (arguments '(#:import-path "k8s.io/api")) +; (propagated-inputs +; `(("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-gogo-protobuf-1.3.1" +; ,go-github-com-gogo-protobuf-1.3.1))) +; (home-page "https://k8s.io/api") +; (synopsis "api") +; (description +; "Schema of the external API types that are served by the Kubernetes API server.") +; (license license:asl2.0))) +; +;(define-public go-k8s-io-apimachinery-0.20.1 +; (package +; (name "go-k8s-io-apimachinery") +; (version "0.20.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes/apimachinery") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "15qc12lbzpd4lgajy0rv24b3ky4hhg5y1l37qxdfiakhz91didfw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "k8s.io/apimachinery")) +; (propagated-inputs +; `(("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) +; ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.2" +; ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.2) +; ("go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd" +; ,go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd) +; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) +; ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) +; ("go-gopkg-in-inf-v0-0.9.1" ,go-gopkg-in-inf-v0-0.9.1) +; ("go-google-golang-org-protobuf-1.25.0" +; ,go-google-golang-org-protobuf-1.25.0) +; ("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" +; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) +; ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) +; ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" +; ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) +; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" +; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-onsi-gomega-1.7.0" ,go-github-com-onsi-gomega-1.7.0) +; ("go-github-com-onsi-ginkgo-1.11.0" ,go-github-com-onsi-ginkgo-1.11.0) +; ("go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f" +; ,go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f) +; ("go-github-com-modern-go-reflect2-1.0.1" +; ,go-github-com-modern-go-reflect2-1.0.1) +; ("go-github-com-json-iterator-go-1.1.10" +; ,go-github-com-json-iterator-go-1.1.10) +; ("go-github-com-hashicorp-golang-lru-0.5.1" +; ,go-github-com-hashicorp-golang-lru-0.5.1) +; ("go-github-com-googleapis-gnostic-0.4.1" +; ,go-github-com-googleapis-gnostic-0.4.1) +; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) +; ("go-github-com-google-gofuzz-1.1.0" +; ,go-github-com-google-gofuzz-1.1.0) +; ("go-github-com-google-go-cmp-0.5.2" +; ,go-github-com-google-go-cmp-0.5.2) +; ("go-github-com-golang-protobuf-1.4.3" +; ,go-github-com-golang-protobuf-1.4.3) +; ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" +; ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) +; ("go-github-com-gogo-protobuf-1.3.1" +; ,go-github-com-gogo-protobuf-1.3.1) +; ("go-github-com-fsnotify-fsnotify-1.4.9" +; ,go-github-com-fsnotify-fsnotify-1.4.9) +; ("go-github-com-evanphx-json-patch-4.9.0+incompatible" +; ,go-github-com-evanphx-json-patch-4.9.0+incompatible) +; ("go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153" +; ,go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153) +; ("go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96" +; ,go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://k8s.io/apimachinery") +; (synopsis "apimachinery") +; (description +; "Scheme, typing, encoding, decoding, and conversion packages for Kubernetes and Kubernetes-like API objects.") +; (license license:asl2.0))) +; +;(define-public go-k8s-io-client-go-0.20.1 +; (package +; (name "go-k8s-io-client-go") +; (version "0.20.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes/client-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "02jrzwwcrdlya91fga2wvf8dsl1yka3kky194dm6l9pmd754qwzs")))) +; (build-system go-build-system) +; (arguments '(#:import-path "k8s.io/client-go")) +; (propagated-inputs +; `(("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) +; ("go-k8s-io-api-0.20.1" ,go-k8s-io-api-0.20.1) +; ("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) +; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" +; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) +; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) +; ("go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e" +; ,go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e) +; ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" +; ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) +; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" +; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) +; ("go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0" +; ,go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) +; ("go-github-com-peterbourgon-diskv-2.0.1+incompatible" +; ,go-github-com-peterbourgon-diskv-2.0.1+incompatible) +; ("go-github-com-imdario-mergo-0.3.5" +; ,go-github-com-imdario-mergo-0.3.5) +; ("go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7" +; ,go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7) +; ("go-github-com-googleapis-gnostic-0.4.1" +; ,go-github-com-googleapis-gnostic-0.4.1) +; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) +; ("go-github-com-google-gofuzz-1.1.0" +; ,go-github-com-google-gofuzz-1.1.0) +; ("go-github-com-google-go-cmp-0.5.2" +; ,go-github-com-google-go-cmp-0.5.2) +; ("go-github-com-golang-protobuf-1.4.3" +; ,go-github-com-golang-protobuf-1.4.3) +; ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" +; ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) +; ("go-github-com-gogo-protobuf-1.3.1" +; ,go-github-com-gogo-protobuf-1.3.1) +; ("go-github-com-evanphx-json-patch-4.9.0+incompatible" +; ,go-github-com-evanphx-json-patch-4.9.0+incompatible) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1) +; ("go-github-com-azure-go-autorest-autorest-adal-0.9.5" +; ,go-github-com-azure-go-autorest-autorest-adal-0.9.5) +; ("go-github-com-azure-go-autorest-autorest-0.11.1" +; ,go-github-com-azure-go-autorest-autorest-0.11.1) +; ("go-cloud-google-com-go-0.54.0" ,go-cloud-google-com-go-0.54.0))) +; (home-page "https://k8s.io/client-go") +; (synopsis "client-go") +; (description +; "Go clients for talking to a @url{http://kubernetes.io/,kubernetes} cluster.") +; (license license:asl2.0))) +; +;(define-public go-k8s-io-component-base-0.20.1 +; (package +; (name "go-k8s-io-component-base") +; (version "0.20.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes/component-base") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "05x3mv1lxh7s6ckfh1s9wwmb0n9rg14a9637ai9bhxdfps47sz0v")))) +; (build-system go-build-system) +; (arguments '(#:import-path "k8s.io/component-base")) +; (propagated-inputs +; `(("go-k8s-io-client-go-0.20.1" ,go-k8s-io-client-go-0.20.1) +; ("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) +; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" +; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) +; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) +; ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) +; ("go-go-uber-org-multierr-1.1.0" ,go-go-uber-org-multierr-1.1.0) +; ("go-go-uber-org-atomic-1.4.0" ,go-go-uber-org-atomic-1.4.0) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) +; ("go-github-com-sirupsen-logrus-1.6.0" +; ,go-github-com-sirupsen-logrus-1.6.0) +; ("go-github-com-prometheus-procfs-0.2.0" +; ,go-github-com-prometheus-procfs-0.2.0) +; ("go-github-com-prometheus-common-0.10.0" +; ,go-github-com-prometheus-common-0.10.0) +; ("go-github-com-prometheus-client-model-0.2.0" +; ,go-github-com-prometheus-client-model-0.2.0) +; ("go-github-com-prometheus-client-golang-1.7.1" +; ,go-github-com-prometheus-client-golang-1.7.1) +; ("go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd" +; ,go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd) +; ("go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369" +; ,go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369) +; ("go-github-com-google-go-cmp-0.5.2" +; ,go-github-com-google-go-cmp-0.5.2) +; ("go-github-com-go-logr-logr-0.2.0" ,go-github-com-go-logr-logr-0.2.0) +; ("go-github-com-blang-semver-3.5.1+incompatible" +; ,go-github-com-blang-semver-3.5.1+incompatible))) +; (home-page "https://k8s.io/component-base") +; (synopsis "component-base") +; (description +; "Implement KEP 32: @url{https://github.com/kubernetes/enhancements/blob/master/keps/sig-cluster-lifecycle/wgs/783-component-base/README.md,https://github.com/kubernetes/enhancements/blob/master/keps/sig-cluster-lifecycle/wgs/783-component-base/README.md}") +; (license license:asl2.0))) +; +;(define-public go-k8s-io-cri-api-0.20.1 +; (package +; (name "go-k8s-io-cri-api") +; (version "0.20.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes/cri-api") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1r98d0kv42sijdg3404xx2g5jj0zixvfagkky2zla12p68ajm4xr")))) +; (build-system go-build-system) +; (arguments '(#:import-path "k8s.io/cri-api")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" +; ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) +; ("go-google-golang-org-protobuf-1.25.0" +; ,go-google-golang-org-protobuf-1.25.0) +; ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) +; ("go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a" +; ,go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a) +; ("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" +; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) +; ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) +; ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" +; ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) +; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" +; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-kr-pretty-0.2.0" ,go-github-com-kr-pretty-0.2.0) +; ("go-github-com-google-go-cmp-0.5.2" +; ,go-github-com-google-go-cmp-0.5.2) +; ("go-github-com-golang-protobuf-1.4.3" +; ,go-github-com-golang-protobuf-1.4.3) +; ("go-github-com-gogo-protobuf-1.3.1" +; ,go-github-com-gogo-protobuf-1.3.1) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://k8s.io/cri-api") +; (synopsis "Purpose") +; (description +; "This repository contains the definitions for the Container Runtime Interface (CRI). +;CRI is a plugin interface which enables kubelet to use a wide variety of container runtimes, +;without the need to recompile. CRI consists of a protocol buffers and gRPC API.") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-containerd-1.5.0-beta.3 +; (package +; (name "go-github-com-containerd-containerd") +; (version "1.5.0-beta.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/containerd") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0fbd4llrwg5hi5adfkmfndma5y129yl9wwz3c3fjn7cfhc64hlqf")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/containerd")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) +; ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) +; ("go-github-com-golang-protobuf-1.3.5" +; ,go-github-com-golang-protobuf-1.3.5) +; ("go-github-com-gogo-googleapis-1.3.2" +; ,go-github-com-gogo-googleapis-1.3.2) +; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" +; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) +; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) +; ("go-k8s-io-cri-api-0.20.1" ,go-k8s-io-cri-api-0.20.1) +; ("go-k8s-io-component-base-0.20.1" ,go-k8s-io-component-base-0.20.1) +; ("go-k8s-io-client-go-0.20.1" ,go-k8s-io-client-go-0.20.1) +; ("go-k8s-io-apiserver-0.20.1" ,go-k8s-io-apiserver-0.20.1) +; ("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) +; ("go-k8s-io-api-0.20.1" ,go-k8s-io-api-0.20.1) +; ("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) +; ("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" +; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) +; ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" +; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) +; ("go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b" +; ,go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b) +; ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) +; ("go-github-com-tchap-go-patricia-2.2.6+incompatible" +; ,go-github-com-tchap-go-patricia-2.2.6+incompatible) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-sirupsen-logrus-1.7.0" +; ,go-github-com-sirupsen-logrus-1.7.0) +; ("go-github-com-prometheus-client-golang-1.7.1" +; ,go-github-com-prometheus-client-golang-1.7.1) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-selinux-1.8.0" +; ,go-github-com-opencontainers-selinux-1.8.0) +; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" +; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) +; ("go-github-com-opencontainers-runc-1.0.0-rc93" +; ,go-github-com-opencontainers-runc-1.0.0-rc93) +; ("go-github-com-opencontainers-image-spec-1.0.1" +; ,go-github-com-opencontainers-image-spec-1.0.1) +; ("go-github-com-opencontainers-go-digest-1.0.0" +; ,go-github-com-opencontainers-go-digest-1.0.0) +; ("go-github-com-moby-sys-symlink-0.1.0" +; ,go-github-com-moby-sys-symlink-0.1.0) +; ("go-github-com-moby-sys-mountinfo-0.4.0" +; ,go-github-com-moby-sys-mountinfo-0.4.0) +; ("go-github-com-klauspost-compress-1.11.3" +; ,go-github-com-klauspost-compress-1.11.3) +; ("go-github-com-imdario-mergo-0.3.11" +; ,go-github-com-imdario-mergo-0.3.11) +; ("go-github-com-hashicorp-go-multierror-1.0.0" +; ,go-github-com-hashicorp-go-multierror-1.0.0) +; ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" +; ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) +; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) +; ("go-github-com-google-go-cmp-0.5.4" +; ,go-github-com-google-go-cmp-0.5.4) +; ("go-github-com-gogo-protobuf-1.3.2" +; ,go-github-com-gogo-protobuf-1.3.2) +; ("go-github-com-fsnotify-fsnotify-1.4.9" +; ,go-github-com-fsnotify-fsnotify-1.4.9) +; ("go-github-com-emicklei-go-restful-2.9.5+incompatible" +; ,go-github-com-emicklei-go-restful-2.9.5+incompatible) +; ("go-github-com-docker-go-units-0.4.0" +; ,go-github-com-docker-go-units-0.4.0) +; ("go-github-com-docker-go-metrics-0.0.1" +; ,go-github-com-docker-go-metrics-0.0.1) +; ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" +; ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1) +; ("go-github-com-coreos-go-systemd-v22-22.1.0" +; ,go-github-com-coreos-go-systemd-v22-22.1.0) +; ("go-github-com-containernetworking-plugins-0.8.6" +; ,go-github-com-containernetworking-plugins-0.8.6) +; ("go-github-com-containerd-zfs-0.0.0-20210301145711-11e8f1707f62" +; ,go-github-com-containerd-zfs-0.0.0-20210301145711-11e8f1707f62) +; ("go-github-com-containerd-typeurl-1.0.1" +; ,go-github-com-containerd-typeurl-1.0.1) +; ("go-github-com-containerd-ttrpc-1.0.2" +; ,go-github-com-containerd-ttrpc-1.0.2) +; ("go-github-com-containerd-nri-0.0.0-20201007170849-eb1350a75164" +; ,go-github-com-containerd-nri-0.0.0-20201007170849-eb1350a75164) +; ("go-github-com-containerd-imgcrypt-1.0.4-0.20210301171431-0ae5c75f59ba" +; ,go-github-com-containerd-imgcrypt-1.0.4-0.20210301171431-0ae5c75f59ba) +; ("go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328" +; ,go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328) +; ("go-github-com-containerd-go-cni-1.0.1" +; ,go-github-com-containerd-go-cni-1.0.1) +; ("go-github-com-containerd-fifo-0.0.0-20201026212402-0724c46b320c" +; ,go-github-com-containerd-fifo-0.0.0-20201026212402-0724c46b320c) +; ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" +; ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) +; ("go-github-com-containerd-console-1.0.1" +; ,go-github-com-containerd-console-1.0.1) +; ("go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68" +; ,go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68) +; ("go-github-com-containerd-btrfs-0.0.0-20201111183144-404b9149801e" +; ,go-github-com-containerd-btrfs-0.0.0-20201111183144-404b9149801e) +; ("go-github-com-containerd-aufs-0.0.0-20201003224125-76a6863f2989" +; ,go-github-com-containerd-aufs-0.0.0-20201003224125-76a6863f2989) +; ("go-github-com-microsoft-hcsshim-test-0.0.0-20210227013316-43a75bb4edd3" +; ,go-github-com-microsoft-hcsshim-test-0.0.0-20210227013316-43a75bb4edd3) +; ("go-github-com-microsoft-hcsshim-0.8.15" +; ,go-github-com-microsoft-hcsshim-0.8.15) +; ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" +; ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3) +; ("go-github-com-burntsushi-toml-0.3.1" +; ,go-github-com-burntsushi-toml-0.3.1))) +; (home-page "https://github.com/containerd/containerd") +; (synopsis "Now Recruiting") +; (description +; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") +; (license license:asl2.0))) +; +;(define-public go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898 +; (package +; (name "go-bazil-org-fuse") +; (version "0.0.0-20160811212531-371fbbdaa898") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/bazil/fuse") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1x5p301py7mcxgwklfm6pqqkzssln0nfzllng49pnk60m03ilp4w")))) +; (build-system go-build-system) +; (arguments '(#:import-path "bazil.org/fuse")) +; (home-page "https://bazil.org/fuse") +; (synopsis "bazil.org/fuse -- Filesystems in Go") +; (description +; "Package fuse enables writing FUSE file systems on Linux and FreeBSD. +;") +; (license #f))) +; +;(define-public go-github-com-sirupsen-logrus-1.7.0 +; (package +; (name "go-github-com-sirupsen-logrus") +; (version "1.7.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/sirupsen/logrus") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1a59pw7zimvm8k423iq9l4f4qjj1ia1xc6pkmhwl2mxc46y2n442")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/sirupsen/logrus")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037" +; ,go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037) +; ("go-github-com-stretchr-testify-1.2.2" +; ,go-github-com-stretchr-testify-1.2.2) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://github.com/sirupsen/logrus") +; (synopsis "Logrus") +; (description +; "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. +;") +; (license license:expat))) +; +;(define-public go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee +; (package +; (name "go-github-com-spf13-cobra") +; (version "0.0.2-0.20171109065643-2da4a54c5cee") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/spf13/cobra") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "18qbrp774fx6dyibjcy9snld705gslq6z2sql1biyjahxkm1vpfy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/spf13/cobra")) +; (home-page "https://github.com/spf13/cobra") +; (synopsis "Table of Contents") +; (description +; "Package cobra is a commander providing a simple interface to create powerful modern CLI interfaces. +;In addition to providing an interface, Cobra simultaneously provides a controller to organize your application code. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95 +; (package +; (name "go-github-com-spf13-pflag") +; (version "1.0.1-0.20171106142849-4c012f6dcd95") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/spf13/pflag") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0plmm67lkm25ir0lczwh7hmanyilrs1vxmbp8a0dyr282ji1dqm5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/spf13/pflag")) +; (home-page "https://github.com/spf13/pflag") +; (synopsis "Description") +; (description +; "Package pflag is a drop-in replacement for Go's flag package, implementing +;POSIX/GNU-style --flags. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e +; (package +; (name "go-github-com-containerd-continuity") +; (version "0.0.0-20210208174643-50096c924a4e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/continuity") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1drmxbb2l4z12b19dq3vvh1ss7b4z8fq1n5g6c8ln13mjgz6cq48")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/continuity")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3" +; ,go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3) +; ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" +; ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) +; ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" +; ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) +; ("go-github-com-stretchr-testify-1.4.0" +; ,go-github-com-stretchr-testify-1.4.0) +; ("go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95" +; ,go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95) +; ("go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee" +; ,go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee) +; ("go-github-com-sirupsen-logrus-1.7.0" +; ,go-github-com-sirupsen-logrus-1.7.0) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-go-digest-1.0.0" +; ,go-github-com-opencontainers-go-digest-1.0.0) +; ("go-github-com-inconshreveable-mousetrap-1.0.0" +; ,go-github-com-inconshreveable-mousetrap-1.0.0) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0) +; ("go-github-com-dustin-go-humanize-1.0.0" +; ,go-github-com-dustin-go-humanize-1.0.0) +; ("go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898" +; ,go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898))) +; (home-page "https://github.com/containerd/continuity") +; (synopsis "continuity") +; (description +; "This package provides a transport-agnostic, filesystem metadata manifest system") +; (license license:asl2.0))) +; +;(define-public go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible +; (package +; (name "go-github-com-mistifyio-go-zfs") +; (version "2.1.2-0.20190413222219-f784269be439+incompatible") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mistifyio/go-zfs") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0x6ncjaqjm06c615kbwkqbd5wcdg9nmrbl7wm4w185s6kq6l8fpw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mistifyio/go-zfs")) +; (home-page "https://github.com/mistifyio/go-zfs") +; (synopsis "Go Wrapper for ZFS") +; (description +; "Package zfs provides wrappers around the ZFS command line tools. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-zfs-1.0.0 +; (package +; (name "go-github-com-containerd-zfs") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/zfs") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "10shqmcdxlxxi90kwgs5cljz12589yz5cm78aimv9m4cgwiv3wl3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/zfs")) +; (propagated-inputs +; `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible" +; ,go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible) +; ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" +; ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) +; ("go-github-com-containerd-containerd-1.5.0-beta.3" +; ,go-github-com-containerd-containerd-1.5.0-beta.3))) +; (home-page "https://github.com/containerd/zfs") +; (synopsis "ZFS snapshotter plugin") +; (description "ZFS snapshotter plugin for containerd.") +; (license license:asl2.0))) +; +;(define-public go-github-com-microsoft-go-winio-0.4.11 +; (package +; (name "go-github-com-microsoft-go-winio") +; (version "0.4.11") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/microsoft/go-winio") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "14y1gryr3pb3zy09v2g8dh89m363rfd9sch0wgbabh531hfx72vn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/Microsoft/go-winio")) +; (home-page "https://github.com/Microsoft/go-winio") +; (synopsis "go-winio") +; (description +; "This repository contains utilities for efficiently performing Win32 IO operations in +;Go. Currently, this is focused on accessing named pipes and other file handles, and +;for using named pipes as a net transport.") +; (license license:expat))) +; +;(define-public go-github-com-microsoft-hcsshim-0.8.6 +; (package +; (name "go-github-com-microsoft-hcsshim") +; (version "0.8.6") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/microsoft/hcsshim") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "05arx8y4b6rvhjcnwizhc8svzab3ld0njkgj8vijgs27az84z6pw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/Microsoft/hcsshim")) +; (home-page "https://github.com/Microsoft/hcsshim") +; (synopsis "hcsshim") +; (description +; "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") +; (license license:expat))) +; +;(define-public go-github-com-alexflint-go-filemutex-0.0.0-20171022225611-72bdc8eae2ae +; (package +; (name "go-github-com-alexflint-go-filemutex") +; (version "0.0.0-20171022225611-72bdc8eae2ae") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/alexflint/go-filemutex") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "082y6y9zv40q3kaqvsv6fyaw2fc42j0sn9z0dl9rbiz4szixj3c4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/alexflint/go-filemutex")) +; (home-page "https://github.com/alexflint/go-filemutex") +; (synopsis "FileMutex") +; (description +; "FileMutex is similar to @code{sync.RWMutex}, but also synchronizes across processes. +;On Linux, OSX, and other POSIX systems it uses the flock system call. On windows +;it uses the LockFileEx and UnlockFileEx system calls.") +; (license license:expat))) +; +;(define-public go-github-com-buger-jsonparser-0.0.0-20180808090653-f4dd9f5a6b44 +; (package +; (name "go-github-com-buger-jsonparser") +; (version "0.0.0-20180808090653-f4dd9f5a6b44") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/buger/jsonparser") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "12qa2n33s7yz88ywpr3k9kg3b4gm6rqgnv28iyikyxw8h5jascz5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/buger/jsonparser")) +; (home-page "https://github.com/buger/jsonparser") +; (synopsis +; "Alternative JSON parser for Go (10x times faster standard library)") +; (description +; "It does not require you to know the structure of the payload (eg. create structs), and allows accessing fields by providing the path to them. It is up to @strong{10 times faster} than standard @code{encoding/json} package (depending on payload size and usage), @strong{allocates no memory}. See benchmarks below.") +; (license license:expat))) +; +;(define-public go-github-com-containernetworking-cni-0.8.1 +; (package +; (name "go-github-com-containernetworking-cni") +; (version "0.8.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containernetworking/cni") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ydzsiq6kfwjghf5dd4ld2rv3cxgbjq6c1523jxmib1phwf0s75z")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containernetworking/cni")) +; (home-page "https://github.com/containernetworking/cni") +; (synopsis "CNI - the Container Network Interface") +; (description +; "CNI (), a @url{https://cncf.io,Cloud Native Computing Foundation} project, consists of a specification and libraries for writing plugins to configure network interfaces in Linux containers, along with a number of supported plugins. +;CNI concerns itself only with network connectivity of containers and removing allocated resources when the container is deleted. +;Because of this focus, CNI has a wide range of support and the specification is simple to implement.") +; (license license:asl2.0))) +; +;(define-public go-github-com-coreos-go-iptables-0.5.0 +; (package +; (name "go-github-com-coreos-go-iptables") +; (version "0.5.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/coreos/go-iptables") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0syxjad9b3d19sjy7cy7zjpx5bx60yvbhidz8r9cdv43iqadxmp7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/coreos/go-iptables")) +; (home-page "https://github.com/coreos/go-iptables") +; (synopsis "go-iptables") +; (description "Go bindings for iptables utility.") +; (license license:asl2.0))) +; +;(define-public go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c +; (package +; (name "go-github-com-d2g-dhcp4") +; (version "0.0.0-20170904100407-a1d1b6c41b1c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/d2g/dhcp4") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "191hzw6yqzkm042h6miyycq3g0zrhqjhhpl27f8vhwzp4wanasiz")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/d2g/dhcp4")) +; (home-page "https://github.com/d2g/dhcp4") +; (synopsis "DHCP4 - A DHCP library written in Go.") +; (description +; "Warning: This library is still being developed. Function calls will change.") +; (license license:bsd-3))) +; +;(define-public go-github-com-d2g-dhcp4client-1.0.0 +; (package +; (name "go-github-com-d2g-dhcp4client") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/d2g/dhcp4client") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1n4qrn7xsgvnshmddq56hr8g2si5vfmxi0wnp0w71lmdfsxvvx0q")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/d2g/dhcp4client")) +; (home-page "https://github.com/d2g/dhcp4client") +; (synopsis "dhcp4client") +; (description "DHCP Client") +; (license license:mpl2.0))) +; +;(define-public go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5 +; (package +; (name "go-github-com-d2g-dhcp4server") +; (version "0.0.0-20181031114812-7d4a0a7f59a5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/d2g/dhcp4server") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "03ibq32flr74pxfly1yca9qicb6f15xgl159jjg3svgnzfjpblwl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/d2g/dhcp4server")) +; (home-page "https://github.com/d2g/dhcp4server") +; (synopsis "dhcp4server") +; (description "DHCP Server") +; (license license:mpl2.0))) +; +;(define-public go-github-com-d2g-hardwareaddr-0.0.0-20190221164911-e7d9fbe030e4 +; (package +; (name "go-github-com-d2g-hardwareaddr") +; (version "0.0.0-20190221164911-e7d9fbe030e4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/d2g/hardwareaddr") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "09nm5py9xbb9klwhzqkf6786i3b59ynba78xkrv9jx4ari7ibh8q")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/d2g/hardwareaddr")) +; (home-page "https://github.com/d2g/hardwareaddr") +; (synopsis "hardwareaddr") +; (description "Generate Hardware Addresses") +; (license license:mpl2.0))) +; +;(define-public go-github-com-godbus-dbus-0.0.0-20180201030542-885f9cc04c9c +; (package +; (name "go-github-com-godbus-dbus") +; (version "0.0.0-20180201030542-885f9cc04c9c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/godbus/dbus") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0wjpaj4vr5lvpnwc5faf3qizd7zd2v9yq0fm0558wap1hiyqb8x8")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/godbus/dbus")) +; (home-page "https://github.com/godbus/dbus") +; (synopsis "dbus") +; (description +; "Package dbus implements bindings to the D-Bus message bus system. +;") +; (license license:bsd-2))) +; +;(define-public go-github-com-j-keck-arping-0.0.0-20160618110441-2cf9dc699c56 +; (package +; (name "go-github-com-j-keck-arping") +; (version "0.0.0-20160618110441-2cf9dc699c56") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/j-keck/arping") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1bid8mpx3j4546ni0a6q5xyz7hb854g95qnxqmg5jzs9vrcird3c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/j-keck/arping")) +; (home-page "https://github.com/j-keck/arping") +; (synopsis "arping") +; (description +; "Package arping is a native go library to ping a host per arp datagram, or query a host mac address +;") +; (license license:expat))) +; +;(define-public go-github-com-mattn-go-shellwords-1.0.3 +; (package +; (name "go-github-com-mattn-go-shellwords") +; (version "1.0.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mattn/go-shellwords") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1pg7pl25wvpl2dbpyrv9p1r7prnqimxlf6136vn0dfm54j2x4mnr")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mattn/go-shellwords")) +; (home-page "https://github.com/mattn/go-shellwords") +; (synopsis "go-shellwords") +; (description "Parse line as shell words.") +; (license license:expat))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190904154756-749cb33beabd +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190904154756-749cb33beabd") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0dm3257q3rv2kyn5lmqqim2fqg634v6rhrqq4glvbk4wx4l3v337")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-nxadm-tail-1.4.4 +; (package +; (name "go-github-com-nxadm-tail") +; (version "1.4.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/nxadm/tail") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1czmwqii0fc8v3ar5bwqpfanprkxg19waly405zlvcflzvj53wwc")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/nxadm/tail")) +; (propagated-inputs +; `(("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" +; ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) +; ("go-golang-org-x-sys-0.0.0-20190904154756-749cb33beabd" +; ,go-golang-org-x-sys-0.0.0-20190904154756-749cb33beabd) +; ("go-github-com-fsnotify-fsnotify-1.4.7" +; ,go-github-com-fsnotify-fsnotify-1.4.7))) +; (home-page "https://github.com/nxadm/tail") +; (synopsis "tail functionality in Go") +; (description +; "nxadm/tail provides a Go library that emulates the features of the BSD `tail` +;program. The library comes with full support for truncation/move detection as +;it is designed to work with log rotation tools. The library works on all +;operating systems supported by Go, including POSIX systems like Linux and +;*BSD, and MS Windows. Go 1.9 is the oldest compiler release supported. +;") +; (license license:expat))) +; +;(define-public go-github-com-onsi-gomega-1.7.1 +; (package +; (name "go-github-com-onsi-gomega") +; (version "1.7.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/onsi/gomega") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "06p3x0910cdaa64l7d44s728d4j3yhps315dlcvrbjzhljjj7mam")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/onsi/gomega")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.2.4" ,go-gopkg-in-yaml-v2-2.2.4) +; ("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" +; ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) +; ("go-gopkg-in-fsnotify-v1-1.4.7" ,go-gopkg-in-fsnotify-v1-1.4.7) +; ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e" +; ,go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e) +; ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" +; ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) +; ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" +; ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) +; ("go-github-com-onsi-ginkgo-1.6.0" ,go-github-com-onsi-ginkgo-1.6.0) +; ("go-github-com-hpcloud-tail-1.0.0" ,go-github-com-hpcloud-tail-1.0.0) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0) +; ("go-github-com-fsnotify-fsnotify-1.4.7" +; ,go-github-com-fsnotify-fsnotify-1.4.7))) +; (home-page "https://github.com/onsi/gomega") +; (synopsis ": a BDD Testing Framework for Golang") +; (description +; "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20191120155948-bd437916bb0e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1i8x26frmlin55k69k936zd1rp5sqnq14y5ms4rkxbfzhasdm2rx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-onsi-ginkgo-1.12.1 +; (package +; (name "go-github-com-onsi-ginkgo") +; (version "1.12.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/onsi/ginkgo") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0xs9724l2b0bwjwrvw5cs3akxaw0n1j5kyxrb1ggfsdjz0zmjcxh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/onsi/ginkgo")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e" +; ,go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e) +; ("go-github-com-onsi-gomega-1.7.1" ,go-github-com-onsi-gomega-1.7.1) +; ("go-github-com-nxadm-tail-1.4.4" ,go-github-com-nxadm-tail-1.4.4))) +; (home-page "https://github.com/onsi/ginkgo") +; (synopsis "Ginkgo 2.0 Release Candidate is available!") +; (description "Ginkgo is a BDD-style testing framework for Golang +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-net-0.0.0-20201006153459-a7d1128ccaa0 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20201006153459-a7d1128ccaa0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1iqqq7s95b2a29bspfxv68qnby8vwjvy9f8gl2262p6f9hhp21d2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) +; ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" +; ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) +; ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" +; ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-github-com-onsi-gomega-1.10.3 +; (package +; (name "go-github-com-onsi-gomega") +; (version "1.10.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/onsi/gomega") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1jvp5wlny86ncsqak5rz70qfn61y3ajc64w0hrj4840zgh90zb06")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/onsi/gomega")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.3.0" ,go-gopkg-in-yaml-v2-2.3.0) +; ("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" +; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) +; ("go-golang-org-x-net-0.0.0-20201006153459-a7d1128ccaa0" +; ,go-golang-org-x-net-0.0.0-20201006153459-a7d1128ccaa0) +; ("go-github-com-onsi-ginkgo-1.12.1" ,go-github-com-onsi-ginkgo-1.12.1) +; ("go-github-com-golang-protobuf-1.4.2" +; ,go-github-com-golang-protobuf-1.4.2))) +; (home-page "https://github.com/onsi/gomega") +; (synopsis ": a BDD Testing Framework for Golang") +; (description +; "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library. +;") +; (license license:expat))) +; +;(define-public go-github-com-safchain-ethtool-0.0.0-20190326074333-42ed695e3de8 +; (package +; (name "go-github-com-safchain-ethtool") +; (version "0.0.0-20190326074333-42ed695e3de8") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/safchain/ethtool") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0n5hkrzc1bh46nidcssx4539kvcmgj501v3kzh2pljpg27509daj")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/safchain/ethtool")) +; (home-page "https://github.com/safchain/ethtool") +; (synopsis "ethtool go package") +; (description +; "Package ethtool aims to provide a library giving a simple access to the +;Linux SIOCETHTOOL ioctl operations. It can be used to retrieve informations +;from a network device like statistics, driver related informations or +;even the peer of a VETH interface. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-sirupsen-logrus-1.0.6 +; (package +; (name "go-github-com-sirupsen-logrus") +; (version "1.0.6") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/sirupsen/logrus") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "029irw2lsbqi944gdrbkwdw0m2794sqni4g21gsnmz142hbzds8c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/sirupsen/logrus")) +; (home-page "https://github.com/sirupsen/logrus") +; (synopsis "Logrus") +; (description +; "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-sys-0.0.0-20200217220822-9197077df867 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20200217220822-9197077df867") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1270yyiqzlgrsygp2j0qavh4agm4xjv3ljfpk4wgqgmg4ph1lmx1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-vishvananda-netns-0.0.0-20200728191858-db3c7e526aae +; (package +; (name "go-github-com-vishvananda-netns") +; (version "0.0.0-20200728191858-db3c7e526aae") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/vishvananda/netns") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1gx41r06by67q5yyyvjpr0cyqqs2pcksfaqxy0s36cx4vpjn5x9r")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/vishvananda/netns")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20200217220822-9197077df867" +; ,go-golang-org-x-sys-0.0.0-20200217220822-9197077df867))) +; (home-page "https://github.com/vishvananda/netns") +; (synopsis "netns - network namespaces in go") +; (description +; "Package netns allows ultra-simple network namespace handling. NsHandles +;can be retrieved and set. Note that the current namespace is thread +;local so actions that set and reset namespaces should use LockOSThread +;to make sure the namespace doesn't change due to a goroutine switch. +;It is best to close NsHandles when you are done with them. This can be +;accomplished via a `defer ns.Close()` on the handle. Changing namespaces +;requires elevated privileges, so in most cases this code needs to be run +;as root. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-sys-0.0.0-20200728102440-3e129f6d46b1 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20200728102440-3e129f6d46b1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "02wcaghvpysqijiqsiimk52vma7lx99g5kvdid2r1qsf9hmwgvy2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-vishvananda-netlink-1.1.1-0.20201029203352-d40f9887b852 +; (package +; (name "go-github-com-vishvananda-netlink") +; (version "1.1.1-0.20201029203352-d40f9887b852") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/vishvananda/netlink") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1aq13npm7vd153vxrk1vhsg36r2g9hrh21cvk422ssrf57qy2fsj")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/vishvananda/netlink")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20200728102440-3e129f6d46b1" +; ,go-golang-org-x-sys-0.0.0-20200728102440-3e129f6d46b1) +; ("go-github-com-vishvananda-netns-0.0.0-20200728191858-db3c7e526aae" +; ,go-github-com-vishvananda-netns-0.0.0-20200728191858-db3c7e526aae))) +; (home-page "https://github.com/vishvananda/netlink") +; (synopsis "netlink - netlink library for go") +; (description +; "Package netlink provides a simple library for netlink. Netlink is +;the interface a user-space program in linux uses to communicate with +;the kernel. It can be used to add and remove interfaces, set up ip +;addresses and routes, and confiugre ipsec. Netlink communication +;requires elevated privileges, so in most cases this code needs to +;be run as root. The low level primitives for netlink are contained +;in the nl subpackage. This package attempts to provide a high-level +;interface that is loosly modeled on the iproute2 cli. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-sys-0.0.0-20201117170446-d9b008d0a637 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20201117170446-d9b008d0a637") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "06pp1nrhzx6nm6rwwzm0xzf8bs3r1mfsrkclyhlhnr7x5r0a0ppi")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-gopkg-in-airbrake-gobrake-v2-2.0.9 +; (package +; (name "go-gopkg-in-airbrake-gobrake-v2") +; (version "2.0.9") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/airbrake/gobrake.v2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1x06f7n7qlyzqgyz0sdfcidf3w4ldn6zs6qx2mhibggk2z4whcjw")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path +; "gopkg.in/airbrake/gobrake.v2" +; #:unpack-path +; "gopkg.in/airbrake/gobrake.v2")) +; (home-page "https://gopkg.in/airbrake/gobrake.v2") +; (synopsis "Airbrake Golang Notifier") +; (description +; "You can use @url{https://github.com/airbrake/glog,glog fork} to send your logs to Airbrake.") +; (license license:bsd-3))) +; +;(define-public go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2 +; (package +; (name "go-gopkg-in-gemnasium-logrus-airbrake-hook-v2") +; (version "2.1.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/gemnasium/logrus-airbrake-hook.v2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0sbg0dn6cysmf8f2bi209jwl4jnpiwp4rdghnxlzirw3c32ms5y5")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path +; "gopkg.in/gemnasium/logrus-airbrake-hook.v2" +; #:unpack-path +; "gopkg.in/gemnasium/logrus-airbrake-hook.v2")) +; (home-page "https://gopkg.in/gemnasium/logrus-airbrake-hook.v2") +; (synopsis "Airbrake Hook for Logrus") +; (description +; "Use this hook to send your errors to @url{https://airbrake.io/,Airbrake}. +;This hook is using the @url{https://github.com/airbrake/gobrake,official airbrake go package}, and will hit the api V3. +;The hook is synchronous and will send the error for @code{log.Error}, @code{log.Fatal} and @code{log.Panic} levels.") +; (license license:expat))) +; +;(define-public go-github-com-containernetworking-plugins-0.9.1 +; (package +; (name "go-github-com-containernetworking-plugins") +; (version "0.9.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containernetworking/plugins") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "17rafngfa9b0ybs3j4lvjjqdva6jkamhnbb1n0qnv685g0asvqwz")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containernetworking/plugins")) +; (propagated-inputs +; `(("go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2" +; ,go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2) +; ("go-gopkg-in-airbrake-gobrake-v2-2.0.9" +; ,go-gopkg-in-airbrake-gobrake-v2-2.0.9) +; ("go-golang-org-x-sys-0.0.0-20201117170446-d9b008d0a637" +; ,go-golang-org-x-sys-0.0.0-20201117170446-d9b008d0a637) +; ("go-github-com-vishvananda-netlink-1.1.1-0.20201029203352-d40f9887b852" +; ,go-github-com-vishvananda-netlink-1.1.1-0.20201029203352-d40f9887b852) +; ("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0) +; ("go-github-com-sirupsen-logrus-1.0.6" +; ,go-github-com-sirupsen-logrus-1.0.6) +; ("go-github-com-safchain-ethtool-0.0.0-20190326074333-42ed695e3de8" +; ,go-github-com-safchain-ethtool-0.0.0-20190326074333-42ed695e3de8) +; ("go-github-com-onsi-gomega-1.10.3" ,go-github-com-onsi-gomega-1.10.3) +; ("go-github-com-onsi-ginkgo-1.12.1" ,go-github-com-onsi-ginkgo-1.12.1) +; ("go-github-com-mattn-go-shellwords-1.0.3" +; ,go-github-com-mattn-go-shellwords-1.0.3) +; ("go-github-com-j-keck-arping-0.0.0-20160618110441-2cf9dc699c56" +; ,go-github-com-j-keck-arping-0.0.0-20160618110441-2cf9dc699c56) +; ("go-github-com-godbus-dbus-0.0.0-20180201030542-885f9cc04c9c" +; ,go-github-com-godbus-dbus-0.0.0-20180201030542-885f9cc04c9c) +; ("go-github-com-d2g-hardwareaddr-0.0.0-20190221164911-e7d9fbe030e4" +; ,go-github-com-d2g-hardwareaddr-0.0.0-20190221164911-e7d9fbe030e4) +; ("go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5" +; ,go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5) +; ("go-github-com-d2g-dhcp4client-1.0.0" +; ,go-github-com-d2g-dhcp4client-1.0.0) +; ("go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c" +; ,go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c) +; ("go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7" +; ,go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7) +; ("go-github-com-coreos-go-iptables-0.5.0" +; ,go-github-com-coreos-go-iptables-0.5.0) +; ("go-github-com-containernetworking-cni-0.8.1" +; ,go-github-com-containernetworking-cni-0.8.1) +; ("go-github-com-buger-jsonparser-0.0.0-20180808090653-f4dd9f5a6b44" +; ,go-github-com-buger-jsonparser-0.0.0-20180808090653-f4dd9f5a6b44) +; ("go-github-com-alexflint-go-filemutex-0.0.0-20171022225611-72bdc8eae2ae" +; ,go-github-com-alexflint-go-filemutex-0.0.0-20171022225611-72bdc8eae2ae) +; ("go-github-com-microsoft-hcsshim-0.8.6" +; ,go-github-com-microsoft-hcsshim-0.8.6) +; ("go-github-com-microsoft-go-winio-0.4.11" +; ,go-github-com-microsoft-go-winio-0.4.11))) +; (home-page "https://github.com/containernetworking/plugins") +; (synopsis "Plugins") +; (description +; "Some CNI network plugins, maintained by the containernetworking team. For more information, see the @url{https://www.cni.dev,CNI website}.") +; (license license:asl2.0))) +; +;(define-public go-github-com-google-uuid-1.2.0 +; (package +; (name "go-github-com-google-uuid") +; (version "1.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/uuid") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "08wqig98w23cg2ngjijhgm6s0mdayb95awa3cn3bs69lg20gryac")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/uuid")) +; (home-page "https://github.com/google/uuid") +; (synopsis "uuid") +; (description "Package uuid generates and inspects UUIDs. +;") +; (license license:bsd-3))) +; +;(define-public go-gopkg-in-yaml-v2-2.3.0 +; (package +; (name "go-gopkg-in-yaml-v2") +; (version "2.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/yaml.v2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1md0hlyd9s6myv3663i9l59y74n4xjazifmmyxn43g86fgkc5lzj")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" +; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) +; (home-page "https://gopkg.in/yaml.v2") +; (synopsis "YAML support for the Go language") +; (description "Package yaml implements YAML support for the Go language. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-imdario-mergo-0.3.12 +; (package +; (name "go-github-com-imdario-mergo") +; (version "0.3.12") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/imdario/mergo") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "15s6807vcm7xq4l6my7rnw1i7x57712jvdidjli5bip79jfaxw90")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/imdario/mergo")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.3.0" ,go-gopkg-in-yaml-v2-2.3.0))) +; (home-page "https://github.com/imdario/mergo") +; (synopsis "Mergo") +; (description +; "This package provides a helper to merge structs and maps in Golang. Useful for configuration default values, avoiding messy if-statements. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-opencontainers-image-spec-1.0.1 +; (package +; (name "go-github-com-opencontainers-image-spec") +; (version "1.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/image-spec") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "03dvbj3dln8c55v9gp79mgmz2yi2ws3r08iyz2fk41y3i22iaw1q")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/image-spec")) +; (home-page "https://github.com/opencontainers/image-spec") +; (synopsis "OCI Image Format Specification") +; (description +; "The OCI Image Format project creates and maintains the software shipping container image format spec (OCI Image Format).") +; (license license:asl2.0))) +; +;(define-public go-github-com-checkpoint-restore-go-criu-v5-5.0.0 +; (package +; (name "go-github-com-checkpoint-restore-go-criu-v5") +; (version "5.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/checkpoint-restore/go-criu") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "07dal5a9y43azkkh61jf6s81h7anbl17drkh2mal9mzcsi8wa2z8")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/checkpoint-restore/go-criu/v5")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.23.0" +; ,go-google-golang-org-protobuf-1.23.0) +; ("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" +; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) +; ("go-github-com-golang-protobuf-1.4.3" +; ,go-github-com-golang-protobuf-1.4.3))) +; (home-page "https://github.com/checkpoint-restore/go-criu") +; (synopsis "go-criu -- Go bindings for CRIU") +; (description +; "This repository provides Go bindings for @url{https://criu.org/,CRIU}. The code is based on the Go-based PHaul +;implementation from the CRIU repository. For easier inclusion into other Go projects the +;CRIU Go bindings have been moved to this repository.") +; (license license:asl2.0))) +; +;(define-public go-github-com-kr-pretty-0.2.1 +; (package +; (name "go-github-com-kr-pretty") +; (version "0.2.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kr/pretty") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0vzfz06y9q8gs2nxx0kys0591vzp78k0fvpb8digi5n15h3b25hy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kr/pretty")) +; (propagated-inputs +; `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) +; (home-page "https://github.com/kr/pretty") +; (synopsis #f) +; (description +; "Package pretty provides pretty-printing for Go values. This is +;useful during debugging, to avoid wrapping long output lines in +;the terminal. +;") +; (license license:expat))) +; +;(define-public go-github-com-frankban-quicktest-1.11.3 +; (package +; (name "go-github-com-frankban-quicktest") +; (version "1.11.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/frankban/quicktest") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0d5njmwkfq2809vlimnlvy8ir6kln0c4cgdwr680fwsclpbr43qs")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/frankban/quicktest")) +; (propagated-inputs +; `(("go-github-com-kr-pretty-0.2.1" ,go-github-com-kr-pretty-0.2.1) +; ("go-github-com-google-go-cmp-0.5.4" +; ,go-github-com-google-go-cmp-0.5.4))) +; (home-page "https://github.com/frankban/quicktest") +; (synopsis "quicktest") +; (description +; "Package quicktest provides a collection of Go helpers for writing tests. +;") +; (license license:expat))) +; +;(define-public go-github-com-cilium-ebpf-0.6.2 +; (package +; (name "go-github-com-cilium-ebpf") +; (version "0.6.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/cilium/ebpf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0x64sg0kyc8bbsp75dpv8g2jfmpdldsshf9ni49jh6rgsnnqhpf8")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/cilium/ebpf")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" +; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) +; ("go-github-com-google-go-cmp-0.5.4" +; ,go-github-com-google-go-cmp-0.5.4) +; ("go-github-com-frankban-quicktest-1.11.3" +; ,go-github-com-frankban-quicktest-1.11.3))) +; (home-page "https://github.com/cilium/ebpf") +; (synopsis "eBPF") +; (description "Package ebpf is a toolkit for working with eBPF programs. +;") +; (license license:expat))) +; +;(define-public go-github-com-containerd-console-1.0.2 +; (package +; (name "go-github-com-containerd-console") +; (version "1.0.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/console") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0rxwgq578hphs2ldx1gg6c9fq1qm8rgqfx3vgi2sbrsmxn6m2438")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/console")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" +; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) +; (home-page "https://github.com/containerd/console") +; (synopsis "console") +; (description +; "Golang package for dealing with consoles. Light on deps and a simple API.") +; (license license:asl2.0))) +; +;(define-public go-github-com-coreos-go-systemd-v22-22.3.2 +; (package +; (name "go-github-com-coreos-go-systemd-v22") +; (version "22.3.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/coreos/go-systemd") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ndi86b8va84ha93njqgafypz4di7yxfd5r5kf1r0s3y3ghcjajq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/coreos/go-systemd/v22")) +; (propagated-inputs +; `(("go-github-com-godbus-dbus-v5-5.0.4" +; ,go-github-com-godbus-dbus-v5-5.0.4))) +; (home-page "https://github.com/coreos/go-systemd") +; (synopsis "go-systemd") +; (description "Go bindings to systemd. The project has several packages:") +; (license license:asl2.0))) +; +;(define-public go-github-com-cyphar-filepath-securejoin-0.2.2 +; (package +; (name "go-github-com-cyphar-filepath-securejoin") +; (version "0.2.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/cyphar/filepath-securejoin") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0id32zjb92wm569m29nfrzz5mw9z1glr3klayr6j134pp4h1sgq4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/cyphar/filepath-securejoin")) +; (home-page "https://github.com/cyphar/filepath-securejoin") +; (synopsis #f) +; (description +; "Package securejoin is an implementation of the hopefully-soon-to-be-included +;SecureJoin helper that is meant to be part of the \"path/filepath\" package. +;The purpose of this project is to provide a PoC implementation to make the +;SecureJoin proposal (@url{https://github.com/golang/go/issues/20126,https://github.com/golang/go/issues/20126}) more +;tangible. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-godbus-dbus-v5-5.0.4 +; (package +; (name "go-github-com-godbus-dbus-v5") +; (version "5.0.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/godbus/dbus") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0znax8kskb5gmp5fj75w56bc9p7b22wrdswzlh4d04sprlc471yi")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/godbus/dbus/v5")) +; (home-page "https://github.com/godbus/dbus") +; (synopsis "dbus") +; (description +; "Package dbus implements bindings to the D-Bus message bus system. +;") +; (license license:bsd-2))) +; +;(define-public go-github-com-mrunalp-fileutils-0.5.0 +; (package +; (name "go-github-com-mrunalp-fileutils") +; (version "0.5.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mrunalp/fileutils") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1zrs959gf4zgi6ijwkdn4dcqk0svfblpaikkqy63q30rqz4swm0x")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mrunalp/fileutils")) +; (home-page "https://github.com/mrunalp/fileutils") +; (synopsis "fileutils") +; (description "Collection of utilities for file manipulation in golang") +; (license license:asl2.0))) +; +;(define-public go-github-com-seccomp-libseccomp-golang-0.9.1 +; (package +; (name "go-github-com-seccomp-libseccomp-golang") +; (version "0.9.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/seccomp/libseccomp-golang") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "022c8prvxz0shrifams7lq4xidvkcqg9xi87wjjcpmbikqi72cna")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/seccomp/libseccomp-golang")) +; (home-page "https://github.com/seccomp/libseccomp-golang") +; (synopsis #f) +; (description +; "Package seccomp provides bindings for libseccomp, a library wrapping the Linux +;seccomp syscall. Seccomp enables an application to restrict system call use +;for itself and its children. +;") +; (license license:bsd-2))) +; +;(define-public go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635 +; (package +; (name "go-github-com-syndtr-gocapability") +; (version "0.0.0-20200815063812-42c35b437635") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/syndtr/gocapability") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "00zi0k190ydlm9drnafvj9p4cf6axm858wr71pbmq1p3r94iqws4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/syndtr/gocapability")) +; (home-page "https://github.com/syndtr/gocapability") +; (synopsis #f) +; (description #f) +; (license license:bsd-2))) +; +;(define-public go-github-com-vishvananda-netns-0.0.0-20191106174202-0a2b9b5464df +; (package +; (name "go-github-com-vishvananda-netns") +; (version "0.0.0-20191106174202-0a2b9b5464df") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/vishvananda/netns") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1k1zb7pzc4r4wicq7ncspf6zsvq298lvpsq963ibj813shg657xw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/vishvananda/netns")) +; (home-page "https://github.com/vishvananda/netns") +; (synopsis "netns - network namespaces in go") +; (description +; "Package netns allows ultra-simple network namespace handling. NsHandles +;can be retrieved and set. Note that the current namespace is thread +;local so actions that set and reset namespaces should use LockOSThread +;to make sure the namespace doesn't change due to a goroutine switch. +;It is best to close NsHandles when you are done with them. This can be +;accomplished via a `defer ns.Close()` on the handle. Changing namespaces +;requires elevated privileges, so in most cases this code needs to be run +;as root. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190606203320-7fc4e5ec1444 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190606203320-7fc4e5ec1444") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "18rv3m1kksv3758aqiaac2l6j334g0bapic6ibsj999agcn7y9fg")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-vishvananda-netlink-1.1.0 +; (package +; (name "go-github-com-vishvananda-netlink") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/vishvananda/netlink") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1vhl30p1gx636a088ls4h6a0l8jjyfvz79fr5w0qzdrg4qg9h08h")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/vishvananda/netlink")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190606203320-7fc4e5ec1444" +; ,go-golang-org-x-sys-0.0.0-20190606203320-7fc4e5ec1444) +; ("go-github-com-vishvananda-netns-0.0.0-20191106174202-0a2b9b5464df" +; ,go-github-com-vishvananda-netns-0.0.0-20191106174202-0a2b9b5464df))) +; (home-page "https://github.com/vishvananda/netlink") +; (synopsis "netlink - netlink library for go") +; (description +; "Package netlink provides a simple library for netlink. Netlink is +;the interface a user-space program in linux uses to communicate with +;the kernel. It can be used to add and remove interfaces, set up ip +;addresses and routes, and confiugre ipsec. Netlink communication +;requires elevated privileges, so in most cases this code needs to +;be run as root. The low level primitives for netlink are contained +;in the nl subpackage. This package attempts to provide a high-level +;interface that is loosly modeled on the iproute2 cli. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20201224014010-6772e930b67b") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0zlr39dxbg0fxfdrc20c4x0pw43n9kz749ssml97cdzqy116p5qa")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) +; ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" +; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) +; ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" +; ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-github-com-opencontainers-runc-1.0.2 +; (package +; (name "go-github-com-opencontainers-runc") +; (version "1.0.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/runc") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1bpckghjah0rczciw1a1ab8z718lb2d3k4mjm4zb45lpm3njmrcp")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/runc")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.26.0" +; ,go-google-golang-org-protobuf-1.26.0) +; ("go-golang-org-x-sys-0.0.0-20210426230700-d19ff857e887" +; ,go-golang-org-x-sys-0.0.0-20210426230700-d19ff857e887) +; ("go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b" +; ,go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b) +; ("go-github-com-vishvananda-netlink-1.1.0" +; ,go-github-com-vishvananda-netlink-1.1.0) +; ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) +; ("go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635" +; ,go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635) +; ("go-github-com-sirupsen-logrus-1.8.1" +; ,go-github-com-sirupsen-logrus-1.8.1) +; ("go-github-com-seccomp-libseccomp-golang-0.9.1" +; ,go-github-com-seccomp-libseccomp-golang-0.9.1) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-selinux-1.8.2" +; ,go-github-com-opencontainers-selinux-1.8.2) +; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417" +; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417) +; ("go-github-com-mrunalp-fileutils-0.5.0" +; ,go-github-com-mrunalp-fileutils-0.5.0) +; ("go-github-com-moby-sys-mountinfo-0.4.1" +; ,go-github-com-moby-sys-mountinfo-0.4.1) +; ("go-github-com-godbus-dbus-v5-5.0.4" +; ,go-github-com-godbus-dbus-v5-5.0.4) +; ("go-github-com-docker-go-units-0.4.0" +; ,go-github-com-docker-go-units-0.4.0) +; ("go-github-com-cyphar-filepath-securejoin-0.2.2" +; ,go-github-com-cyphar-filepath-securejoin-0.2.2) +; ("go-github-com-coreos-go-systemd-v22-22.3.2" +; ,go-github-com-coreos-go-systemd-v22-22.3.2) +; ("go-github-com-containerd-console-1.0.2" +; ,go-github-com-containerd-console-1.0.2) +; ("go-github-com-cilium-ebpf-0.6.2" ,go-github-com-cilium-ebpf-0.6.2) +; ("go-github-com-checkpoint-restore-go-criu-v5-5.0.0" +; ,go-github-com-checkpoint-restore-go-criu-v5-5.0.0) +; ("go-github-com-bits-and-blooms-bitset-1.2.0" +; ,go-github-com-bits-and-blooms-bitset-1.2.0))) +; (home-page "https://github.com/opencontainers/runc") +; (synopsis "runc") +; (description +; "@code{runc} is a CLI tool for spawning and running containers according to the OCI specification.") +; (license license:asl2.0))) +; +;(define-public go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417 +; (package +; (name "go-github-com-opencontainers-runtime-spec") +; (version "1.0.3-0.20210326190908-1c3f411f0417") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/runtime-spec") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1azk8z41ga8af35c966f06vrq9y9hwz6mkm59r3py5qaamzim3qq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) +; (home-page "https://github.com/opencontainers/runtime-spec") +; (synopsis "Open Container Initiative Runtime Specification") +; (description +; "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") +; (license license:asl2.0))) +; +;(define-public go-github-com-bits-and-blooms-bitset-1.2.0 +; (package +; (name "go-github-com-bits-and-blooms-bitset") +; (version "1.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/bits-and-blooms/bitset") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0r9f7lvz6znl7yr6njg77m8hj472yhdshf1qaybwyw7j8as6c4r3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/bits-and-blooms/bitset")) +; (home-page "https://github.com/bits-and-blooms/bitset") +; (synopsis "bitset") +; (description +; "Package bitset implements bitsets, a mapping +;between non-negative integers and boolean values. It should be more +;efficient than map[uint] bool. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20191115151921-52ab43148777") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1kakxbqrb1w2vwg7r1896z68qcx2lfvimsl8cs2niiipbgpi6imx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-opencontainers-selinux-1.8.2 +; (package +; (name "go-github-com-opencontainers-selinux") +; (version "1.8.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/selinux") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1dl1h8nzpyhsfki1dcjphm5h4n52qwilahyl6qlnwgzcc76pwizq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/selinux")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777" +; ,go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-bits-and-blooms-bitset-1.2.0" +; ,go-github-com-bits-and-blooms-bitset-1.2.0))) +; (home-page "https://github.com/opencontainers/selinux") +; (synopsis "selinux") +; (description "Common SELinux package used across the container ecosystem.") +; (license license:asl2.0))) +; +;(define-public go-github-com-pelletier-go-toml-1.8.1 +; (package +; (name "go-github-com-pelletier-go-toml") +; (version "1.8.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/pelletier/go-toml") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1pi1r9ds0vxjza4qrbk52y98wxrzh1ghwzc9c2v1w6i02pdwdcz9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/pelletier/go-toml")) +; (propagated-inputs +; `(("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://github.com/pelletier/go-toml") +; (synopsis "go-toml") +; (description "Package toml is a TOML parser and manipulation library. +;") +; (license #f))) +; +;(define-public go-github-com-satori-go-uuid-1.2.0 +; (package +; (name "go-github-com-satori-go-uuid") +; (version "1.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/satori/go.uuid") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1j4s5pfg2ldm35y8ls8jah4dya2grfnx2drb4jcbjsyrp4cm5yfb")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/satori/go.uuid")) +; (home-page "https://github.com/satori/go.uuid") +; (synopsis "UUID package for Go language") +; (description +; "Package uuid provides implementation of Universally Unique Identifier (UUID). +;Supported versions are 1, 3, 4 and 5 (as specified in @url{https://rfc-editor.org/rfc/rfc4122.html,RFC 4122}) and +;version 2 (as specified in DCE 1.1). +;") +; (license license:expat))) +; +;(define-public go-github-com-tchap-go-patricia-2.2.6+incompatible +; (package +; (name "go-github-com-tchap-go-patricia") +; (version "2.2.6+incompatible") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/tchap/go-patricia") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1yy1s3pnll52iyzphwi50drvz36lx628vn3xfy5ld29fxqngrckb")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/tchap/go-patricia")) +; (home-page "https://github.com/tchap/go-patricia") +; (synopsis "go-patricia") +; (description +; "@strong{Documentation}: @url{http://godoc.org/github.com/tchap/go-patricia/patricia,GoDoc} +;@strong{Test Coverage}: @url{https://coveralls.io/r/tchap/go-patricia,(img (@ (src https://coveralls.io/repos/tchap/go-patricia/badge.png) (alt CoverageStatus)))}") +; (license license:expat))) +; +;(define-public go-golang-org-x-sys-0.0.0-20210426230700-d19ff857e887 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20210426230700-d19ff857e887") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "12m35a34dfm99agcv2ln9zvvyczigaxfwqbzqirvwn1lw4784whn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-gotest-tools-v3-3.0.3 +; (package +; (name "go-gotest-tools-v3") +; (version "3.0.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/gotestyourself/gotest.tools") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1h316233n33lkfhbak8ljdj5i8df6hcwwm48n200svf22x3d95ww")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gotest.tools/v3" #:unpack-path "gotest.tools/v3")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20190624222133-a101b041ded4" +; ,go-golang-org-x-tools-0.0.0-20190624222133-a101b041ded4) +; ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) +; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0))) +; (home-page "https://gotest.tools/v3") +; (synopsis "gotest.tools") +; (description +; "Package gotesttools is a collection of packages to augment `testing` and +;support common patterns. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-coreos-go-oidc-2.1.0+incompatible +; (package +; (name "go-github-com-coreos-go-oidc") +; (version "2.1.0+incompatible") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/coreos/go-oidc") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0y9vxack1whvxy766jrc6xhh2rfkvnznwxi356si2kabzjv2lp6h")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/coreos/go-oidc")) +; (home-page "https://github.com/coreos/go-oidc") +; (synopsis "go-oidc") +; (description +; "Package oidc implements OpenID Connect client logic for the golang.org/x/oauth2 package. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-coreos-go-semver-0.3.0 +; (package +; (name "go-github-com-coreos-go-semver") +; (version "0.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/coreos/go-semver") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0770h1mpig2j5sbiha3abnwaw8p6dg9i87r8pc7cf6m4kwml3sc9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/coreos/go-semver")) +; (home-page "https://github.com/coreos/go-semver") +; (synopsis "go-semver - Semantic Versioning Library") +; (description +; "go-semver is a @url{http://semver.org/,semantic versioning} library for Go. It lets you parse +;and compare two semantic version strings.") +; (license license:asl2.0))) +; +;(define-public go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e +; (package +; (name "go-github-com-coreos-go-systemd") +; (version "0.0.0-20190321100706-95778dfbb74e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/coreos/go-systemd") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1s3bg9p78wkixn2bqb2p23wbsqfg949ml6crw2b498s71mwh8rcf")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/coreos/go-systemd")) +; (home-page "https://github.com/coreos/go-systemd") +; (synopsis "go-systemd") +; (description "Go bindings to systemd. The project has several packages:") +; (license license:asl2.0))) +; +;(define-public go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f +; (package +; (name "go-github-com-coreos-pkg") +; (version "0.0.0-20180928190104-399ea9e2e55f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/coreos/pkg") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0nxbn0m7lr4dg0yrwnvlkfiyg3ndv8vdpssjx7b714nivpc6ar0y")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/coreos/pkg")) +; (home-page "https://github.com/coreos/pkg") +; (synopsis #f) +; (description "a collection of go utility packages") +; (license license:asl2.0))) +; +;(define-public go-github-com-dustin-go-humanize-1.0.0 +; (package +; (name "go-github-com-dustin-go-humanize") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/dustin/go-humanize") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1kqf1kavdyvjk7f8kx62pnm7fbypn9z1vbf8v2qdh3y7z7a0cbl3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/dustin/go-humanize")) +; (home-page "https://github.com/dustin/go-humanize") +; (synopsis "Humane Units") +; (description +; "Package humanize converts boring ugly numbers to human-friendly strings and back. +;") +; (license license:expat))) +; +;(define-public go-github-com-emicklei-go-restful-2.9.5+incompatible +; (package +; (name "go-github-com-emicklei-go-restful") +; (version "2.9.5+incompatible") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/emicklei/go-restful") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0258y7q2krih98zznc4jsym9mf689afn6nsnsif1jhshrj653k36")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/emicklei/go-restful")) +; (home-page "https://github.com/emicklei/go-restful") +; (synopsis "go-restful") +; (description +; "Package restful , a lean package for creating REST-style WebServices without magic. +;") +; (license license:expat))) +; +;(define-public go-github-com-gorilla-websocket-1.4.2 +; (package +; (name "go-github-com-gorilla-websocket") +; (version "1.4.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/gorilla/websocket") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0mkm9w6kjkrlzab5wh8p4qxkc0icqawjbvr01d2nk6ykylrln40s")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/gorilla/websocket")) +; (home-page "https://github.com/gorilla/websocket") +; (synopsis "Gorilla WebSocket") +; (description +; "Package websocket implements the WebSocket protocol defined in @url{https://rfc-editor.org/rfc/rfc6455.html,RFC 6455}. +;") +; (license license:bsd-2))) +; +;(define-public go-github-com-mailru-easyjson-0.7.0 +; (package +; (name "go-github-com-mailru-easyjson") +; (version "0.7.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mailru/easyjson") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "13zv5fvjp3nr65lhqhiw6i6mlmqvyls882rlmcas0ab35alsxni8")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mailru/easyjson")) +; (home-page "https://github.com/mailru/easyjson") +; (synopsis "easyjson") +; (description +; "Package easyjson contains marshaler/unmarshaler interfaces and helper functions. +;") +; (license license:expat))) +; +;(define-public go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822 +; (package +; (name "go-github-com-munnerz-goautoneg") +; (version "0.0.0-20191010083416-a7dc8b61c822") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/munnerz/goautoneg") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1m4v6bw6yf1g0kvpc46isjp0qfhx2y8gnvlnyjf637jy64613mgg")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/munnerz/goautoneg")) +; (home-page "https://github.com/munnerz/goautoneg") +; (synopsis #f) +; (description #f) +; (license license:bsd-3))) +; +;(define-public go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021 +; (package +; (name "go-github-com-pquerna-cachecontrol") +; (version "0.0.0-20171018203845-0dec1b30a021") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/pquerna/cachecontrol") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "14yyfhrv60rvb983rqm7s916nwvn9kcmbvnrcna2md0s3mkzs3yh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/pquerna/cachecontrol")) +; (home-page "https://github.com/pquerna/cachecontrol") +; (synopsis "cachecontrol: HTTP Caching Parser and Interpretation") +; (description +; "Package cachecontrol implements the logic for HTTP Caching +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5 +; (package +; (name "go-github-com-tmc-grpc-websocket-proxy") +; (version "0.0.0-20190109142713-0ad062ec5ee5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/tmc/grpc-websocket-proxy") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1anw4v9wspnw9xf2z5r9w0sszwjklyanl0l85wgg6nxak9gnrqp4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/tmc/grpc-websocket-proxy")) +; (home-page "https://github.com/tmc/grpc-websocket-proxy") +; (synopsis "grpc-websocket-proxy") +; (description +; "Wrap your grpc-gateway mux with this helper to expose streaming endpoints over websockets.") +; (license license:expat))) +; +;(define-public go-golang-org-x-sys-0.0.0-20200202164722-d101bd2416d5 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20200202164722-d101bd2416d5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ksxf37b0ym21n8j29m3wgbaiw1kcjw3hgf88kipc1ry2j13l98p")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-go-etcd-io-bbolt-1.3.5 +; (package +; (name "go-go-etcd-io-bbolt") +; (version "1.3.5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/etcd-io/bbolt") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1h64gipvcg7060byv5wjlf524kqwj12p3v08kfh4ygv46vpm8p2r")))) +; (build-system go-build-system) +; (arguments '(#:import-path "go.etcd.io/bbolt")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20200202164722-d101bd2416d5" +; ,go-golang-org-x-sys-0.0.0-20200202164722-d101bd2416d5))) +; (home-page "https://go.etcd.io/bbolt") +; (synopsis "bbolt") +; (description +; "package bbolt implements a low-level key/value store in pure Go. It supports +;fully serializable transactions, ACID semantics, and lock-free MVCC with +;multiple readers and a single writer. Bolt can be used for projects that +;want a simple data store without the need to add large dependencies such as +;Postgres or MySQL. +;") +; (license license:expat))) +; +;(define-public go-github-com-cockroachdb-datadriven-0.0.0-20190809214429-80d97fb3cbaa +; (package +; (name "go-github-com-cockroachdb-datadriven") +; (version "0.0.0-20190809214429-80d97fb3cbaa") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/cockroachdb/datadriven") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0rvavka9zhri6r50n8fy98247fl5vycb1hffjrhshsicjv1frmlp")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/cockroachdb/datadriven")) +; (home-page "https://github.com/cockroachdb/datadriven") +; (synopsis "Data-Driven Tests for Go") +; (description +; "This repository implements an extension of @url{https://github.com/golang/go/wiki/TableDrivenTests,Table-Driven Testing}. Instead of +;building and iterating over a table in the test code, the input is further +;separated into files (or inline strings). For certain classes of tests, this +;can significantly reduce the friction involved in writing and reading these +;tests.") +; (license license:asl2.0))) +; +;(define-public go-github-com-coreos-go-semver-0.2.0 +; (package +; (name "go-github-com-coreos-go-semver") +; (version "0.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/coreos/go-semver") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1gghi5bnqj50hfxhqc1cxmynqmh2yk9ii7ab9gsm75y5cp94ymk0")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/coreos/go-semver")) +; (home-page "https://github.com/coreos/go-semver") +; (synopsis "go-semver - Semantic Versioning Library") +; (description +; "go-semver is a @url{http://semver.org/,semantic versioning} library for Go. It lets you parse +;and compare two semantic version strings.") +; (license license:asl2.0))) +; +;(define-public go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7 +; (package +; (name "go-github-com-coreos-go-systemd") +; (version "0.0.0-20180511133405-39ca1b05acc7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/coreos/go-systemd") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1kzqrrzqspa5qm7kwslxl3m16lqzns23c24rv474ajzwmj3ixmx1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/coreos/go-systemd")) +; (home-page "https://github.com/coreos/go-systemd") +; (synopsis "go-systemd") +; (description "Go bindings to systemd. The project has several packages:") +; (license license:asl2.0))) +; +;(define-public go-github-com-coreos-pkg-0.0.0-20160727233714-3ac0863d7acf +; (package +; (name "go-github-com-coreos-pkg") +; (version "0.0.0-20160727233714-3ac0863d7acf") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/coreos/pkg") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0l5ans1ls2gknkrnhymgc0zbgg5nqjbjbqc51r611adcr0m6gg8l")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/coreos/pkg")) +; (home-page "https://github.com/coreos/pkg") +; (synopsis #f) +; (description "a collection of go utility packages") +; (license license:asl2.0))) +; +;(define-public go-github-com-creack-pty-1.1.7 +; (package +; (name "go-github-com-creack-pty") +; (version "1.1.7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/creack/pty") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1plwwlk1i9b80zv8zdplvv81shfyc9gf0flydnydsh5sr3ib5vrc")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/creack/pty")) +; (home-page "https://github.com/creack/pty") +; (synopsis "pty") +; (description +; "Package pty provides functions for working with Unix terminals. +;") +; (license license:expat))) +; +;(define-public go-github-com-dgrijalva-jwt-go-3.2.0+incompatible +; (package +; (name "go-github-com-dgrijalva-jwt-go") +; (version "3.2.0+incompatible") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/dgrijalva/jwt-go") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "08m27vlms74pfy5z79w67f9lk9zkx6a9jd68k3c4msxy75ry36mp")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/dgrijalva/jwt-go")) +; (home-page "https://github.com/dgrijalva/jwt-go") +; (synopsis "jwt-go") +; (description +; "Package jwt is a Go implementation of JSON Web Tokens: @url{http://self-issued.info/docs/draft-jones-json-web-token.html,http://self-issued.info/docs/draft-jones-json-web-token.html} +;") +; (license license:expat))) +; +;(define-public go-github-com-dustin-go-humanize-0.0.0-20171111073723-bb3d318650d4 +; (package +; (name "go-github-com-dustin-go-humanize") +; (version "0.0.0-20171111073723-bb3d318650d4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/dustin/go-humanize") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1lqd8ix3cb164j5iazjby2jpa6bdsflhy0h9mi4yldvvcvrc194c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/dustin/go-humanize")) +; (home-page "https://github.com/dustin/go-humanize") +; (synopsis "Humane Units") +; (description +; "Package humanize converts boring ugly numbers to human-friendly strings and back. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-tools-0.0.0-20180221164845-07fd8470d635 +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20180221164845-07fd8470d635") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "193g0a1zxb9ikph7r2klc6rdqxqzfmmr8d5bcibyhsm2l63s17mx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-github-com-kisielk-errcheck-1.1.0 +; (package +; (name "go-github-com-kisielk-errcheck") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kisielk/errcheck") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19vd4rxmqbk5lpiav3pf7df3yjlz0l0dwx9mn0gjq5f998iyhy6y")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kisielk/errcheck")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20180221164845-07fd8470d635" +; ,go-golang-org-x-tools-0.0.0-20180221164845-07fd8470d635) +; ("go-github-com-kisielk-gotool-1.0.0" +; ,go-github-com-kisielk-gotool-1.0.0))) +; (home-page "https://github.com/kisielk/errcheck") +; (synopsis "errcheck") +; (description +; "errcheck is a program for checking for unchecked errors in go programs.") +; (license license:expat))) +; +;(define-public go-github-com-gogo-protobuf-1.2.1 +; (package +; (name "go-github-com-gogo-protobuf") +; (version "1.2.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/gogo/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "06yqa6h0kw3gr5pc3qmas7f7435a96zf7iw7p0l00r2hqf6fqq6m")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/gogo/protobuf")) +; (propagated-inputs +; `(("go-github-com-kisielk-errcheck-1.1.0" +; ,go-github-com-kisielk-errcheck-1.1.0))) +; (home-page "https://github.com/gogo/protobuf") +; (synopsis "Protocol Buffers for Go with Gadgets") +; (description +; "gogoprotobuf is a fork of @url{https://github.com/golang/protobuf,golang/protobuf} with extra code generation features.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-groupcache-0.0.0-20160516000752-02826c3e7903 +; (package +; (name "go-github-com-golang-groupcache") +; (version "0.0.0-20160516000752-02826c3e7903") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/groupcache") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0w46bsllddfij66nrg8jbfjsr54birvfww8a2fj9fmgyig5syn2x")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/groupcache")) +; (home-page "https://github.com/golang/groupcache") +; (synopsis "groupcache") +; (description +; "Package groupcache provides a data loading mechanism with caching +;and de-duplication that works across a set of peer processes. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-google-btree-1.0.0 +; (package +; (name "go-github-com-google-btree") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/btree") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ba430m9fbnagacp57krgidsyrgp3ycw5r7dj71brgp5r52g82p6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/btree")) +; (home-page "https://github.com/google/btree") +; (synopsis "BTree implementation for Go") +; (description +; "Package btree implements in-memory B-Trees of arbitrary degree. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-google-uuid-1.0.0 +; (package +; (name "go-github-com-google-uuid") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/uuid") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1922bjrnx66692dm0rrc1ckmznsaqx920ww4jzsds3xzrwf15mqv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/uuid")) +; (home-page "https://github.com/google/uuid") +; (synopsis "uuid") +; (description "Package uuid generates and inspects UUIDs. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-gorilla-websocket-0.0.0-20170926233335-4201258b820c +; (package +; (name "go-github-com-gorilla-websocket") +; (version "0.0.0-20170926233335-4201258b820c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/gorilla/websocket") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1kpdg3m46kp15ixl9ahhchhadyiblz0qpcxzylp8jhffc1rnxjb7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/gorilla/websocket")) +; (home-page "https://github.com/gorilla/websocket") +; (synopsis "Gorilla WebSocket") +; (description +; "Package websocket implements the WebSocket protocol defined in @url{https://rfc-editor.org/rfc/rfc6455.html,RFC 6455}. +;") +; (license license:bsd-2))) +; +;(define-public go-github-com-grpc-ecosystem-go-grpc-middleware-1.0.1-0.20190118093823-f849b5445de4 +; (package +; (name "go-github-com-grpc-ecosystem-go-grpc-middleware") +; (version "1.0.1-0.20190118093823-f849b5445de4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc-ecosystem/go-grpc-middleware") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0hscypgj0nd1407jp6y4qrnrr0mrhc4wgxz9b3mj1cs3pkvi61vc")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/grpc-ecosystem/go-grpc-middleware")) +; (home-page "https://github.com/grpc-ecosystem/go-grpc-middleware") +; (synopsis "Go gRPC Middleware") +; (description +; "`grpc_middleware` is a collection of gRPC middleware packages: interceptors, helpers and tools. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0 +; (package +; (name "go-github-com-grpc-ecosystem-go-grpc-prometheus") +; (version "1.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc-ecosystem/go-grpc-prometheus") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1lzk54h7np32b3acidg1ggbn8ppbnns0m71gcg9d1qkkdh8zrijl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/grpc-ecosystem/go-grpc-prometheus")) +; (home-page "https://github.com/grpc-ecosystem/go-grpc-prometheus") +; (synopsis "Go gRPC Interceptors for Prometheus monitoring") +; (description +; "@url{https://prometheus.io/,Prometheus} monitoring for your @url{https://github.com/grpc/grpc-go,gRPC Go} servers and clients.") +; (license license:asl2.0))) +; +;(define-public go-github-com-ghodss-yaml-1.0.0 +; (package +; (name "go-github-com-ghodss-yaml") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/ghodss/yaml") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0skwmimpy7hlh7pva2slpcplnm912rp3igs98xnqmn859kwa5v8g")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/ghodss/yaml")) +; (home-page "https://github.com/ghodss/yaml") +; (synopsis "YAML marshaling and unmarshaling support for Go") +; (description +; "Copyright 2013 The Go Authors. All rights reserved. +;Use of this source code is governed by a BSD-style +;license that can be found in the LICENSE file. +;") +; (license #f))) +; +;(define-public go-github-com-rogpeppe-fastuuid-0.0.0-20150106093220-6724a57986af +; (package +; (name "go-github-com-rogpeppe-fastuuid") +; (version "0.0.0-20150106093220-6724a57986af") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/rogpeppe/fastuuid") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "12s65phfx6hxj4v0b5kj8akgrbf5mxpa101fyzw03h6hld1f70cz")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/rogpeppe/fastuuid")) +; (home-page "https://github.com/rogpeppe/fastuuid") +; (synopsis "fastuuid") +; (description +; "Package fastuuid provides fast UUID generation of 192 bit +;universally unique identifiers. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20181107165924-66b7b1311ac8") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "00ny4r2bbj6rz939iy9g699acqydq7rfi6r6awn25w9i2dld9m13")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20181220203305-927f97764cc3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0np7b766gb92vbm514yhdl7cjmqvn0dxdxskd84aas2ri1fkpgw5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-gopkg-in-resty-v1-1.12.0 +; (package +; (name "go-gopkg-in-resty-v1") +; (version "1.12.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/resty.v1") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "062mn735rqzhha5ag07z4gz08hxzrfm2yx067jfmaaxmb6797lmp")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/resty.v1" #:unpack-path "gopkg.in/resty.v1")) +; (propagated-inputs +; `(("go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3" +; ,go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3))) +; (home-page "https://gopkg.in/resty.v1") +; (synopsis "News") +; (description +; "Package resty provides Simple HTTP and REST client library for Go. +;") +; (license license:expat))) +; +;(define-public go-gopkg-in-yaml-v2-2.0.0-20170812160011-eb3733d160e7 +; (package +; (name "go-gopkg-in-yaml-v2") +; (version "2.0.0-20170812160011-eb3733d160e7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/yaml.v2") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1srhvcaa9db3a6xj29mkjr5kg33y71pclrlx4vcwz5m1lgb5c7q6")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) +; (home-page "https://gopkg.in/yaml.v2") +; (synopsis "YAML support for the Go language") +; (description "Package yaml implements YAML support for the Go language. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-grpc-ecosystem-grpc-gateway-1.9.5 +; (package +; (name "go-github-com-grpc-ecosystem-grpc-gateway") +; (version "1.9.5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc-ecosystem/grpc-gateway") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0acpbxa1i1bxcpkclkcif2macbcfrlywb58vly5pzwsj261mg58a")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/grpc-ecosystem/grpc-gateway")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.0.0-20170812160011-eb3733d160e7" +; ,go-gopkg-in-yaml-v2-2.0.0-20170812160011-eb3733d160e7) +; ("go-gopkg-in-resty-v1-1.12.0" ,go-gopkg-in-resty-v1-1.12.0) +; ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" +; ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) +; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) +; ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" +; ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) +; ("go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8" +; ,go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8) +; ("go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3" +; ,go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3) +; ("go-github-com-rogpeppe-fastuuid-0.0.0-20150106093220-6724a57986af" +; ,go-github-com-rogpeppe-fastuuid-0.0.0-20150106093220-6724a57986af) +; ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-ghodss-yaml-1.0.0" ,go-github-com-ghodss-yaml-1.0.0))) +; (home-page "https://github.com/grpc-ecosystem/grpc-gateway") +; (synopsis "grpc-gateway") +; (description +; "The grpc-gateway is a plugin of the Google protocol buffers compiler +;@url{https://github.com/protocolbuffers/protobuf,protoc}. +;It reads protobuf service definitions and generates a reverse-proxy server which +;translates a RESTful HTTP API into gRPC. This server is generated according to the +;@url{https://github.com/googleapis/googleapis/raw/master/google/api/http.proto#L46,(code google.api.http)} +;annotations in your service definitions.") +; (license license:bsd-3))) +; +;(define-public go-github-com-jonboulle-clockwork-0.1.0 +; (package +; (name "go-github-com-jonboulle-clockwork") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/jonboulle/clockwork") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1pqxhsdavbp1n5grgyx2j6ylvql2fzn2cvpsgkc8li69dil7sibl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/jonboulle/clockwork")) +; (home-page "https://github.com/jonboulle/clockwork") +; (synopsis "clockwork") +; (description +; "Replace uses of the @code{time} package with the @code{clockwork.Clock} interface instead.") +; (license license:asl2.0))) +; +;(define-public go-github-com-mattn-go-isatty-0.0.4 +; (package +; (name "go-github-com-mattn-go-isatty") +; (version "0.0.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mattn/go-isatty") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0zs92j2cqaw9j8qx1sdxpv3ap0rgbs0vrvi72m40mg8aa36gd39w")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mattn/go-isatty")) +; (home-page "https://github.com/mattn/go-isatty") +; (synopsis "go-isatty") +; (description "Package isatty implements interface to isatty +;") +; (license license:expat))) +; +;(define-public go-github-com-mattn-go-runewidth-0.0.2 +; (package +; (name "go-github-com-mattn-go-runewidth") +; (version "0.0.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mattn/go-runewidth") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0vkrfrz3fzn5n6ix4k8s0cg0b448459sldq8bp4riavsxm932jzb")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mattn/go-runewidth")) +; (home-page "https://github.com/mattn/go-runewidth") +; (synopsis "go-runewidth") +; (description +; "This package provides functions to get fixed width of the character or string.") +; (license license:expat))) +; +;(define-public go-github-com-olekukonko-tablewriter-0.0.0-20170122224234-a0225b3f23b5 +; (package +; (name "go-github-com-olekukonko-tablewriter") +; (version "0.0.0-20170122224234-a0225b3f23b5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/olekukonko/tablewriter") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0bp9r6xzy6d3p7l2hjmvr25y3rp3p8c9xv1agkllkksm45ng6681")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/olekukonko/tablewriter")) +; (home-page "https://github.com/olekukonko/tablewriter") +; (synopsis "ASCII Table Writer") +; (description "Create & Generate text based table +;") +; (license license:expat))) +; +;(define-public go-github-com-soheilhy-cmux-0.1.4 +; (package +; (name "go-github-com-soheilhy-cmux") +; (version "0.1.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/soheilhy/cmux") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1f736g68d9vwlyfb6g0fxkr0r875369xafk30cz8kaq5niaqwv0h")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/soheilhy/cmux")) +; (home-page "https://github.com/soheilhy/cmux") +; (synopsis "cmux: Connection Mux") +; (description +; "Package cmux is a library to multiplex network connections based on +;their payload. Using cmux, you can serve different protocols from the +;same listener. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-spf13-pflag-1.0.1 +; (package +; (name "go-github-com-spf13-pflag") +; (version "1.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/spf13/pflag") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0nr4mdpfhhk94hq4ymn5b2sxc47b29p1akxd8b0hx4dvdybmipb5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/spf13/pflag")) +; (home-page "https://github.com/spf13/pflag") +; (synopsis "Description") +; (description +; "Package pflag is a drop-in replacement for Go's flag package, implementing +;POSIX/GNU-style --flags. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-tmc-grpc-websocket-proxy-0.0.0-20170815181823-89b8d40f7ca8 +; (package +; (name "go-github-com-tmc-grpc-websocket-proxy") +; (version "0.0.0-20170815181823-89b8d40f7ca8") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/tmc/grpc-websocket-proxy") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1bg6m0cycy5sww175zkbnhi9lvzb08iicc8xka8klrgaa9mc5nsk")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/tmc/grpc-websocket-proxy")) +; (home-page "https://github.com/tmc/grpc-websocket-proxy") +; (synopsis "grpc-websocket-proxy") +; (description +; "Wrap your grpc-gateway mux with this helper to expose streaming endpoints over websockets.") +; (license license:expat))) +; +;(define-public go-github-com-urfave-cli-1.20.0 +; (package +; (name "go-github-com-urfave-cli") +; (version "1.20.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/urfave/cli") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0y6f4sbzkiiwrxbl15biivj8c7qwxnvm3zl2dd3mw4wzg4x10ygj")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/urfave/cli")) +; (home-page "https://github.com/urfave/cli") +; (synopsis "cli") +; (description +; "Package cli provides a minimal framework for creating and organizing command line +;Go applications. cli is designed to be easy to understand and write, the most simple +;cli application can be written as follows: +;") +; (license license:expat))) +; +;(define-public go-github-com-xiang90-probing-0.0.0-20190116061207-43a291ad63a2 +; (package +; (name "go-github-com-xiang90-probing") +; (version "0.0.0-20190116061207-43a291ad63a2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/xiang90/probing") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1z22ms16j5j42775mf31isanwx2pwr1d8wqw8006dczjv36qnz5i")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/xiang90/probing")) +; (home-page "https://github.com/xiang90/probing") +; (synopsis "Getting Started") +; (description "We first need to serve the probing HTTP handler.") +; (license license:expat))) +; +;(define-public go-go-etcd-io-bbolt-1.3.3 +; (package +; (name "go-go-etcd-io-bbolt") +; (version "1.3.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/etcd-io/bbolt") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0dn0zngks9xiz0rrrb3911f73ghl64z84jsmzai2yfmzqr7cdkqc")))) +; (build-system go-build-system) +; (arguments '(#:import-path "go.etcd.io/bbolt")) +; (home-page "https://go.etcd.io/bbolt") +; (synopsis "bbolt") +; (description +; "package bbolt implements a low-level key/value store in pure Go. It supports +;fully serializable transactions, ACID semantics, and lock-free MVCC with +;multiple readers and a single writer. Bolt can be used for projects that +;want a simple data store without the need to add large dependencies such as +;Postgres or MySQL. +;") +; (license license:expat))) +; +;(define-public go-go-uber-org-atomic-1.3.2 +; (package +; (name "go-go-uber-org-atomic") +; (version "1.3.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/uber-go/atomic") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "11pzvjys5ddjjgrv94pgk9pnip9yyb54z7idf33zk7p7xylpnsv6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "go.uber.org/atomic")) +; (home-page "https://go.uber.org/atomic") +; (synopsis "atomic") +; (description +; "Package atomic provides simple wrappers around numerics to enforce atomic +;access. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-net-0.0.0-20190813141303-74dc4d7220e7 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190813141303-74dc4d7220e7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0563yswwqknxx2gsvl0qikn0lmwalilbng8i12iw4d3v40n23s0l")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190826190057-c7b8b68b1456 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190826190057-c7b8b68b1456") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0lqnnrx5prrvkinnhgyvzzhcyvi8x5w54rlp336xjhpslkgqn132")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-time-0.0.0-20180412165947-fbb02b2291d2 +; (package +; (name "go-golang-org-x-time") +; (version "0.0.0-20180412165947-fbb02b2291d2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/time") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0jjqcv6rzihlgg4i797q80g1f6ch5diz2kxqh6488gwkb6nds4h4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/time")) +; (home-page "https://golang.org/x/time") +; (synopsis "Go Time") +; (description "This repository provides supplementary Go time packages.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-grpc-1.26.0 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.26.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1qsb2mcswpp3vd7i9gfvz4a3ypdwk2svhhn09nyywgb1vvw80krv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" +; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-github-com-google-go-cmp-0.2.0" +; ,go-github-com-google-go-cmp-0.2.0) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2) +; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" +; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) +; ("go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473" +; ,go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-gopkg-in-cheggaaa-pb-v1-1.0.25 +; (package +; (name "go-gopkg-in-cheggaaa-pb-v1") +; (version "1.0.25") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/cheggaaa/pb.v1") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0vxqiw6f3xyv0zy3g4lksf8za0z8i0hvfpw92hqimsy84f79j3dp")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path +; "gopkg.in/cheggaaa/pb.v1" +; #:unpack-path +; "gopkg.in/cheggaaa/pb.v1")) +; (home-page "https://gopkg.in/cheggaaa/pb.v1") +; (synopsis "Terminal progress bar for Go") +; (description "Simple console progress bars +;") +; (license license:bsd-3))) +; +;(define-public go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489 +; (package +; (name "go-go-etcd-io-etcd") +; (version "0.5.0-alpha.5.0.20200910180754-dd1b699fc489") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/etcd-io/etcd") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "11zkvkq7ipqi0n8y05zgn8lf7qm59xdk75x7jbxj5sflx38yfa0k")))) +; (build-system go-build-system) +; (arguments '(#:import-path "go.etcd.io/etcd")) +; (propagated-inputs +; `(("go-sigs-k8s-io-yaml-1.1.0" ,go-sigs-k8s-io-yaml-1.1.0) +; ("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" +; ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) +; ("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) +; ("go-gopkg-in-cheggaaa-pb-v1-1.0.25" +; ,go-gopkg-in-cheggaaa-pb-v1-1.0.25) +; ("go-google-golang-org-grpc-1.26.0" ,go-google-golang-org-grpc-1.26.0) +; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" +; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) +; ("go-golang-org-x-time-0.0.0-20180412165947-fbb02b2291d2" +; ,go-golang-org-x-time-0.0.0-20180412165947-fbb02b2291d2) +; ("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) +; ("go-golang-org-x-sys-0.0.0-20190826190057-c7b8b68b1456" +; ,go-golang-org-x-sys-0.0.0-20190826190057-c7b8b68b1456) +; ("go-golang-org-x-net-0.0.0-20190813141303-74dc4d7220e7" +; ,go-golang-org-x-net-0.0.0-20190813141303-74dc4d7220e7) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2) +; ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) +; ("go-go-uber-org-multierr-1.1.0" ,go-go-uber-org-multierr-1.1.0) +; ("go-go-uber-org-atomic-1.3.2" ,go-go-uber-org-atomic-1.3.2) +; ("go-go-etcd-io-bbolt-1.3.3" ,go-go-etcd-io-bbolt-1.3.3) +; ("go-github-com-xiang90-probing-0.0.0-20190116061207-43a291ad63a2" +; ,go-github-com-xiang90-probing-0.0.0-20190116061207-43a291ad63a2) +; ("go-github-com-urfave-cli-1.20.0" ,go-github-com-urfave-cli-1.20.0) +; ("go-github-com-tmc-grpc-websocket-proxy-0.0.0-20170815181823-89b8d40f7ca8" +; ,go-github-com-tmc-grpc-websocket-proxy-0.0.0-20170815181823-89b8d40f7ca8) +; ("go-github-com-spf13-pflag-1.0.1" ,go-github-com-spf13-pflag-1.0.1) +; ("go-github-com-spf13-cobra-0.0.3" ,go-github-com-spf13-cobra-0.0.3) +; ("go-github-com-soheilhy-cmux-0.1.4" +; ,go-github-com-soheilhy-cmux-0.1.4) +; ("go-github-com-sirupsen-logrus-1.4.2" +; ,go-github-com-sirupsen-logrus-1.4.2) +; ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" +; ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) +; ("go-github-com-prometheus-client-golang-1.0.0" +; ,go-github-com-prometheus-client-golang-1.0.0) +; ("go-github-com-olekukonko-tablewriter-0.0.0-20170122224234-a0225b3f23b5" +; ,go-github-com-olekukonko-tablewriter-0.0.0-20170122224234-a0225b3f23b5) +; ("go-github-com-modern-go-reflect2-1.0.1" +; ,go-github-com-modern-go-reflect2-1.0.1) +; ("go-github-com-mattn-go-runewidth-0.0.2" +; ,go-github-com-mattn-go-runewidth-0.0.2) +; ("go-github-com-mattn-go-isatty-0.0.4" +; ,go-github-com-mattn-go-isatty-0.0.4) +; ("go-github-com-mattn-go-colorable-0.0.9" +; ,go-github-com-mattn-go-colorable-0.0.9) +; ("go-github-com-json-iterator-go-1.1.7" +; ,go-github-com-json-iterator-go-1.1.7) +; ("go-github-com-jonboulle-clockwork-0.1.0" +; ,go-github-com-jonboulle-clockwork-0.1.0) +; ("go-github-com-inconshreveable-mousetrap-1.0.0" +; ,go-github-com-inconshreveable-mousetrap-1.0.0) +; ("go-github-com-grpc-ecosystem-grpc-gateway-1.9.5" +; ,go-github-com-grpc-ecosystem-grpc-gateway-1.9.5) +; ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" +; ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) +; ("go-github-com-grpc-ecosystem-go-grpc-middleware-1.0.1-0.20190118093823-f849b5445de4" +; ,go-github-com-grpc-ecosystem-go-grpc-middleware-1.0.1-0.20190118093823-f849b5445de4) +; ("go-github-com-gorilla-websocket-0.0.0-20170926233335-4201258b820c" +; ,go-github-com-gorilla-websocket-0.0.0-20170926233335-4201258b820c) +; ("go-github-com-google-uuid-1.0.0" ,go-github-com-google-uuid-1.0.0) +; ("go-github-com-google-btree-1.0.0" ,go-github-com-google-btree-1.0.0) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2) +; ("go-github-com-golang-groupcache-0.0.0-20160516000752-02826c3e7903" +; ,go-github-com-golang-groupcache-0.0.0-20160516000752-02826c3e7903) +; ("go-github-com-gogo-protobuf-1.2.1" +; ,go-github-com-gogo-protobuf-1.2.1) +; ("go-github-com-fatih-color-1.7.0" ,go-github-com-fatih-color-1.7.0) +; ("go-github-com-dustin-go-humanize-0.0.0-20171111073723-bb3d318650d4" +; ,go-github-com-dustin-go-humanize-0.0.0-20171111073723-bb3d318650d4) +; ("go-github-com-dgrijalva-jwt-go-3.2.0+incompatible" +; ,go-github-com-dgrijalva-jwt-go-3.2.0+incompatible) +; ("go-github-com-creack-pty-1.1.7" ,go-github-com-creack-pty-1.1.7) +; ("go-github-com-coreos-pkg-0.0.0-20160727233714-3ac0863d7acf" +; ,go-github-com-coreos-pkg-0.0.0-20160727233714-3ac0863d7acf) +; ("go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7" +; ,go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7) +; ("go-github-com-coreos-go-semver-0.2.0" +; ,go-github-com-coreos-go-semver-0.2.0) +; ("go-github-com-cockroachdb-datadriven-0.0.0-20190809214429-80d97fb3cbaa" +; ,go-github-com-cockroachdb-datadriven-0.0.0-20190809214429-80d97fb3cbaa) +; ("go-github-com-bgentry-speakeasy-0.1.0" +; ,go-github-com-bgentry-speakeasy-0.1.0))) +; (home-page "https://go.etcd.io/etcd") +; (synopsis "etcd") +; (description +; "Package main is a simple wrapper of the real etcd entrypoint package +;(located at github.com/coreos/etcd/etcdmain) to ensure that etcd is still +;\"go getable\"; e.g. `go get github.com/coreos/etcd` works as expected and +;builds a binary in $GOBIN/etcd +;") +; (license license:asl2.0))) +; +;(define-public go-gopkg-in-natefinch-lumberjack-v2-2.0.0 +; (package +; (name "go-gopkg-in-natefinch-lumberjack-v2") +; (version "2.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/natefinch/lumberjack.v2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1m2sxypk7p805jvc68padvylyx5v7cwkh5klnnxxr0340kgspf08")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path +; "gopkg.in/natefinch/lumberjack.v2" +; #:unpack-path +; "gopkg.in/natefinch/lumberjack.v2")) +; (home-page "https://gopkg.in/natefinch/lumberjack.v2") +; (synopsis "lumberjack") +; (description "Package lumberjack provides a rolling logger. +;") +; (license license:expat))) +; +;(define-public go-gopkg-in-square-go-jose-v2-2.2.2 +; (package +; (name "go-gopkg-in-square-go-jose-v2") +; (version "2.2.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/square/go-jose.v2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1cpvfqw7pw8m8wfj8nda4kam0z48q3gp6b9a3a0wr90zv9ldszbv")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path +; "gopkg.in/square/go-jose.v2" +; #:unpack-path +; "gopkg.in/square/go-jose.v2")) +; (home-page "https://gopkg.in/square/go-jose.v2") +; (synopsis "Go JOSE") +; (description +; "Package jose aims to provide an implementation of the Javascript Object Signing +;and Encryption set of standards. It implements encryption and signing based on +;the JSON Web Encryption and JSON Web Signature standards, with optional JSON +;Web Token support available in a sub-package. The library supports both the +;compact and full serialization formats, and has optional support for multiple +;recipients. +;") +; (license license:asl2.0))) +; +;(define-public go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.15 +; (package +; (name "go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client") +; (version "0.0.15") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes-sigs/apiserver-network-proxy") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "00ad9yjr3g1pj118xy063z7rnydkilqmvz9xf89vdva2kjqd7fal")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path +; "sigs.k8s.io/apiserver-network-proxy/konnectivity-client")) +; (propagated-inputs +; `(("go-k8s-io-klog-v2-2.0.0" ,go-k8s-io-klog-v2-2.0.0) +; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) +; ("go-github-com-golang-protobuf-1.4.0" +; ,go-github-com-golang-protobuf-1.4.0))) +; (home-page +; "https://sigs.k8s.io/apiserver-network-proxy/konnectivity-client") +; (synopsis #f) +; (description #f) +; (license license:asl2.0))) +; +;(define-public go-k8s-io-apiserver-0.20.6 +; (package +; (name "go-k8s-io-apiserver") +; (version "0.20.6") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes/apiserver") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0b53aw2cp9i2v5kg1m2s5kwkz7525ii8vs1g7d8yc2j980aar9y3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "k8s.io/apiserver")) +; (propagated-inputs +; `(("go-k8s-io-component-base-0.20.6" ,go-k8s-io-component-base-0.20.6) +; ("go-k8s-io-client-go-0.20.6" ,go-k8s-io-client-go-0.20.6) +; ("go-k8s-io-apimachinery-0.20.6" ,go-k8s-io-apimachinery-0.20.6) +; ("go-k8s-io-api-0.20.6" ,go-k8s-io-api-0.20.6) +; ("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) +; ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.3" +; ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.3) +; ("go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.15" +; ,go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.15) +; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" +; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) +; ("go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd" +; ,go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd) +; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) +; ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) +; ("go-gopkg-in-square-go-jose-v2-2.2.2" +; ,go-gopkg-in-square-go-jose-v2-2.2.2) +; ("go-gopkg-in-natefinch-lumberjack-v2-2.0.0" +; ,go-gopkg-in-natefinch-lumberjack-v2-2.0.0) +; ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) +; ("go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a" +; ,go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a) +; ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" +; ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) +; ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" +; ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) +; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" +; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) +; ("go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0" +; ,go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0) +; ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) +; ("go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489" +; ,go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489) +; ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) +; ("go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5" +; ,go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) +; ("go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021" +; ,go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822" +; ,go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822) +; ("go-github-com-mailru-easyjson-0.7.0" +; ,go-github-com-mailru-easyjson-0.7.0) +; ("go-github-com-hashicorp-golang-lru-0.5.1" +; ,go-github-com-hashicorp-golang-lru-0.5.1) +; ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" +; ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) +; ("go-github-com-gorilla-websocket-1.4.2" +; ,go-github-com-gorilla-websocket-1.4.2) +; ("go-github-com-googleapis-gnostic-0.4.1" +; ,go-github-com-googleapis-gnostic-0.4.1) +; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) +; ("go-github-com-google-gofuzz-1.1.0" +; ,go-github-com-google-gofuzz-1.1.0) +; ("go-github-com-google-go-cmp-0.5.2" +; ,go-github-com-google-go-cmp-0.5.2) +; ("go-github-com-gogo-protobuf-1.3.2" +; ,go-github-com-gogo-protobuf-1.3.2) +; ("go-github-com-go-openapi-spec-0.19.3" +; ,go-github-com-go-openapi-spec-0.19.3) +; ("go-github-com-evanphx-json-patch-4.9.0+incompatible" +; ,go-github-com-evanphx-json-patch-4.9.0+incompatible) +; ("go-github-com-emicklei-go-restful-2.9.5+incompatible" +; ,go-github-com-emicklei-go-restful-2.9.5+incompatible) +; ("go-github-com-dustin-go-humanize-1.0.0" +; ,go-github-com-dustin-go-humanize-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1) +; ("go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f" +; ,go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f) +; ("go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e" +; ,go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e) +; ("go-github-com-coreos-go-semver-0.3.0" +; ,go-github-com-coreos-go-semver-0.3.0) +; ("go-github-com-coreos-go-oidc-2.1.0+incompatible" +; ,go-github-com-coreos-go-oidc-2.1.0+incompatible))) +; (home-page "https://k8s.io/apiserver") +; (synopsis "apiserver") +; (description +; "Generic library for building a Kubernetes aggregated API server.") +; (license license:asl2.0))) +; +;(define-public go-github-com-blang-semver-3.5.1+incompatible +; (package +; (name "go-github-com-blang-semver") +; (version "3.5.1+incompatible") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/blang/semver") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "13ws259bwcibkclbr82ilhk6zadm63kxklxhk12wayklj8ghhsmy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/blang/semver")) +; (home-page "https://github.com/blang/semver") +; (synopsis "semver for golang") +; (description +; "semver is a @url{http://semver.org/,Semantic Versioning} library written in golang. It fully covers spec version @code{2.0.0}.") +; (license license:expat))) +; +;(define-public go-github-com-prometheus-procfs-0.2.0 +; (package +; (name "go-github-com-prometheus-procfs") +; (version "0.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/procfs") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0rkpyq1grk3qyfahnfry5qkxjg5qb10yh1l8cvm8b79nqsmdyjbm")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/procfs")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20200106162015-b016eb3dc98e" +; ,go-golang-org-x-sys-0.0.0-20200106162015-b016eb3dc98e) +; ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" +; ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) +; ("go-github-com-google-go-cmp-0.3.1" +; ,go-github-com-google-go-cmp-0.3.1))) +; (home-page "https://github.com/prometheus/procfs") +; (synopsis "procfs") +; (description +; "Package procfs provides functions to retrieve system, kernel and process +;metrics from the pseudo-filesystem proc. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.3 +; (package +; (name "go-github-com-konsorten-go-windows-terminal-sequences") +; (version "1.0.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/konsorten/go-windows-terminal-sequences") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1yrsd4s8vhjnxhwbigirymz89dn6qfjnhn28i33vvvdgf96j6ypl")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) +; (home-page "https://github.com/konsorten/go-windows-terminal-sequences") +; (synopsis "Windows Terminal Sequences") +; (description +; "This library allow for enabling Windows terminal color support for Go.") +; (license license:expat))) +; +;(define-public go-github-com-sirupsen-logrus-1.6.0 +; (package +; (name "go-github-com-sirupsen-logrus") +; (version "1.6.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/sirupsen/logrus") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1zf9is1yxxnna0d1pyag2m9ziy3l27zb2j92p9msm1gx5jjrvzzj")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/sirupsen/logrus")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894" +; ,go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894) +; ("go-github-com-stretchr-testify-1.2.2" +; ,go-github-com-stretchr-testify-1.2.2) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.3" +; ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.3) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://github.com/sirupsen/logrus") +; (synopsis "Logrus") +; (description +; "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. +;") +; (license license:expat))) +; +;(define-public go-go-uber-org-atomic-1.4.0 +; (package +; (name "go-go-uber-org-atomic") +; (version "1.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/uber-go/atomic") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0c6yzx15c20719xii3dm0vyjd8i9jx45m0wh5yp1zf29b0gbljcy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "go.uber.org/atomic")) +; (home-page "https://go.uber.org/atomic") +; (synopsis "atomic") +; (description +; "Package atomic provides simple wrappers around numerics to enforce atomic +;access. +;") +; (license license:expat))) +; +;(define-public go-go-uber-org-multierr-1.1.0 +; (package +; (name "go-go-uber-org-multierr") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/uber-go/multierr") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1slfc6syvw8cvr6rbrjsy6ja5w8gsx0f8aq8qm16rp2x5c2pj07w")))) +; (build-system go-build-system) +; (arguments '(#:import-path "go.uber.org/multierr")) +; (home-page "https://go.uber.org/multierr") +; (synopsis "multierr") +; (description +; "Package multierr allows combining one or more errors together. +;") +; (license license:expat))) +; +;(define-public go-go-uber-org-zap-1.10.0 +; (package +; (name "go-go-uber-org-zap") +; (version "1.10.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/uber-go/zap") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "10hdzr1rghwbsl6bbd30779dx44fh9mg9pq8d2cgqlknqxxpvpvr")))) +; (build-system go-build-system) +; (arguments '(#:import-path "go.uber.org/zap")) +; (home-page "https://go.uber.org/zap") +; (synopsis "â\x9a¡ zap") +; (description "Package zap provides fast, structured, leveled logging. +;") +; (license license:expat))) +; +;(define-public go-github-com-golang-mock-1.4.1 +; (package +; (name "go-github-com-golang-mock") +; (version "1.4.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/mock") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1zb4n285mv85dh3y2f8fqbs30h2dhzw7vbczr6z0zg2gqr6vzg0q")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/mock")) +; (propagated-inputs +; `(("go-rsc-io-quote-v3-3.1.0" ,go-rsc-io-quote-v3-3.1.0) +; ("go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262" +; ,go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262))) +; (home-page "https://github.com/golang/mock") +; (synopsis "gomock") +; (description +; "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It +;integrates well with Go's built-in @code{testing} package, but can be used in other +;contexts too.") +; (license license:asl2.0))) +; +;(define-public go-github-com-golang-protobuf-1.3.4 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.3.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "12dclmj2if8l0069fby4psrpqby7p810dr1dr63nwx93g9jhvkmx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20200301022130-244492dfa37a +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20200301022130-244492dfa37a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0vm2q44phz4vjnzq9428rjk58c82fxf003whczp7c9ryn9fazh7s")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20200304193943-95d2e580d8eb +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20200304193943-95d2e580d8eb") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0f46657xsdc12lr29ksqg80fp0j8v2iqgihzh788avcj5cmhnqyl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" +; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) +; ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" +; ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) +; ("go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b" +; ,go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b) +; ("go-golang-org-x-mod-0.2.0" ,go-golang-org-x-mod-0.2.0))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20200305110556-506484158171 +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20200305110556-506484158171") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19h7sxkfjcrkm7majd0pyzzirdnk1qlsxc3h5zklhm234d8jg407")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" +; ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) +; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) +; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" +; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-github-com-golang-protobuf-1.3.3" +; ,go-github-com-golang-protobuf-1.3.3))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-cloud-google-com-go-0.54.0 +; (package +; (name "go-cloud-google-com-go") +; (version "0.54.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-cloud-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ilqqymrphg546c66jc0npd48dlr88wbgrg462h1jgm2ykbnq1ba")))) +; (build-system go-build-system) +; (arguments '(#:import-path "cloud.google.com/go")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.1-2020.1.3" +; ,go-honnef-co-go-tools-0.0.1-2020.1.3) +; ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) +; ("go-google-golang-org-genproto-0.0.0-20200305110556-506484158171" +; ,go-google-golang-org-genproto-0.0.0-20200305110556-506484158171) +; ("go-google-golang-org-api-0.20.0" ,go-google-golang-org-api-0.20.0) +; ("go-golang-org-x-tools-0.0.0-20200304193943-95d2e580d8eb" +; ,go-golang-org-x-tools-0.0.0-20200304193943-95d2e580d8eb) +; ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) +; ("go-golang-org-x-sys-0.0.0-20200302150141-5c8b2ff67527" +; ,go-golang-org-x-sys-0.0.0-20200302150141-5c8b2ff67527) +; ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" +; ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) +; ("go-golang-org-x-net-0.0.0-20200301022130-244492dfa37a" +; ,go-golang-org-x-net-0.0.0-20200301022130-244492dfa37a) +; ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" +; ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) +; ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) +; ("go-github-com-jstemmer-go-junit-report-0.9.1" +; ,go-github-com-jstemmer-go-junit-report-0.9.1) +; ("go-github-com-googleapis-gax-go-v2-2.0.5" +; ,go-github-com-googleapis-gax-go-v2-2.0.5) +; ("go-github-com-google-pprof-0.0.0-20200229191704-1ebb73c60ed3" +; ,go-github-com-google-pprof-0.0.0-20200229191704-1ebb73c60ed3) +; ("go-github-com-google-martian-2.1.0+incompatible" +; ,go-github-com-google-martian-2.1.0+incompatible) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.3.4" +; ,go-github-com-golang-protobuf-1.3.4) +; ("go-github-com-golang-mock-1.4.1" ,go-github-com-golang-mock-1.4.1) +; ("go-cloud-google-com-go-storage-1.6.0" +; ,go-cloud-google-com-go-storage-1.6.0) +; ("go-cloud-google-com-go-pubsub-1.2.0" +; ,go-cloud-google-com-go-pubsub-1.2.0) +; ("go-cloud-google-com-go-datastore-1.1.0" +; ,go-cloud-google-com-go-datastore-1.1.0) +; ("go-cloud-google-com-go-bigquery-1.4.0" +; ,go-cloud-google-com-go-bigquery-1.4.0))) +; (home-page "https://cloud.google.com/go") +; (synopsis "Google Cloud Client Libraries for Go") +; (description +; "Package cloud is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +;of sub-packages. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7 +; (package +; (name "go-github-com-gregjones-httpcache") +; (version "0.0.0-20180305231024-9cad4c3443a7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/gregjones/httpcache") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0wjdwcwqqcx2d5y68qvhg6qyj977il5ijmnn9h9cd6wjbdy0ay6s")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/gregjones/httpcache")) +; (home-page "https://github.com/gregjones/httpcache") +; (synopsis "httpcache") +; (description +; "Package httpcache provides a http.RoundTripper implementation that works as a +;mostly RFC-compliant cache for http responses. +;") +; (license license:expat))) +; +;(define-public go-github-com-imdario-mergo-0.3.5 +; (package +; (name "go-github-com-imdario-mergo") +; (version "0.3.5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/imdario/mergo") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1mvgn89vp39gcpvhiq4n7nw5ipj7fk6h03jgc6fjwgvwvss213pb")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/imdario/mergo")) +; (home-page "https://github.com/imdario/mergo") +; (synopsis "Mergo") +; (description +; "This package provides a helper to merge structs and maps in Golang. Useful for configuration default values, avoiding messy if-statements. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-peterbourgon-diskv-2.0.1+incompatible +; (package +; (name "go-github-com-peterbourgon-diskv") +; (version "2.0.1+incompatible") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/peterbourgon/diskv") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1mxpa5aad08x30qcbffzk80g9540wvbca4blc1r2qyzl65b8929b")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/peterbourgon/diskv")) +; (home-page "https://github.com/peterbourgon/diskv") +; (synopsis "What is diskv?") +; (description +; "Diskv (disk-vee) is a simple, persistent key-value store written in the Go +;language. It starts with an incredibly simple API for storing arbitrary data on +;a filesystem by key, and builds several layers of performance-enhancing +;abstraction on top. The end result is a conceptually simple, but highly +;performant, disk-backed storage system.") +; (license license:expat))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20201002170205-7f63de1d35b0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1dr89jfs4dmpr3jqfshqqvfpzzdx4r76nkzhrvmixfrmn6wxrnd1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" +; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) +; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" +; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e +; (package +; (name "go-golang-org-x-time") +; (version "0.0.0-20200630173020-3af7569d3a1e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/time") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "05hqhw3vlssi499y6m41zgdp1yyjsw2kj95ahymlw6pkhsssh2vq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/time")) +; (home-page "https://golang.org/x/time") +; (synopsis "Go Time") +; (description "This repository provides supplementary Go time packages.") +; (license license:bsd-3))) +; +;(define-public go-k8s-io-api-0.20.6 +; (package +; (name "go-k8s-io-api") +; (version "0.20.6") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes/api") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0mm6a91a4nrlsvnfcbgn2574vdwxf1nxpgrd5avklh8mym2ngimw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "k8s.io/api")) +; (propagated-inputs +; `(("go-k8s-io-apimachinery-0.20.6" ,go-k8s-io-apimachinery-0.20.6) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-gogo-protobuf-1.3.2" +; ,go-github-com-gogo-protobuf-1.3.2))) +; (home-page "https://k8s.io/api") +; (synopsis "api") +; (description +; "Schema of the external API types that are served by the Kubernetes API server.") +; (license license:asl2.0))) +; +;(define-public go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96 +; (package +; (name "go-github-com-docker-spdystream") +; (version "0.0.0-20160310174837-449fdfce4d96") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/moby/spdystream") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1412cpiis971iq1kxrirzirhj2708ispjh0x0dh879b66x8507sl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/docker/spdystream")) +; (home-page "https://github.com/docker/spdystream") +; (synopsis "SpdyStream") +; (description +; "This package provides a multiplexed stream library using spdy") +; (license license:asl2.0))) +; +;(define-public go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153 +; (package +; (name "go-github-com-elazarl-goproxy") +; (version "0.0.0-20180725130230-947c36da3153") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/elazarl/goproxy") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0lmsnr5xmda89wig8sw62llg6acjb5caghz5jmdhnm85rm6rnssk")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/elazarl/goproxy")) +; (home-page "https://github.com/elazarl/goproxy") +; (synopsis "Introduction") +; (description +; "Taken from $GOROOT/src/pkg/net/http/chunked +;needed to write https responses to client. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-evanphx-json-patch-4.9.0+incompatible +; (package +; (name "go-github-com-evanphx-json-patch") +; (version "4.9.0+incompatible") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/evanphx/json-patch") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1r88qpzjxsx8skij9s5pi4a5qcv4bm18vq8sy21gpwgzp3qf6qzx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/evanphx/json-patch")) +; (home-page "https://github.com/evanphx/json-patch") +; (synopsis "JSON-Patch") +; (description +; "@code{jsonpatch} is a library which provides functionality for both applying +;@url{http://tools.ietf.org/html/rfc6902,RFC6902 JSON patches} against documents, as +;well as for calculating & applying @url{https://tools.ietf.org/html/rfc7396,RFC7396 JSON merge patches}.") +; (license license:bsd-3))) +; +;(define-public go-github-com-google-gofuzz-1.1.0 +; (package +; (name "go-github-com-google-gofuzz") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/gofuzz") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0si2fiigj45vr4jnw4grjhls7nw56wkwinnn93gqbl9ng9ynw8rx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/gofuzz")) +; (home-page "https://github.com/google/gofuzz") +; (synopsis "gofuzz") +; (description +; "Package fuzz is a library for populating go objects with random values. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f +; (package +; (name "go-github-com-mxk-go-flowrate") +; (version "0.0.0-20140419014527-cca7078d478f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mxk/go-flowrate") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0zqs39923ja0yypdmiqk6x8pgmfs3ms5x5sl1dqv9z6zyx2xy541")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mxk/go-flowrate")) +; (home-page "https://github.com/mxk/go-flowrate") +; (synopsis #f) +; (description #f) +; (license license:bsd-3))) +; +;(define-public go-github-com-onsi-ginkgo-1.11.0 +; (package +; (name "go-github-com-onsi-ginkgo") +; (version "1.11.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/onsi/ginkgo") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1vxmb5k89bq50m2kzcw5l3bdvci4czpifkgxd4nbq1yzv5ir03kp")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/onsi/ginkgo")) +; (home-page "https://github.com/onsi/ginkgo") +; (synopsis "Ginkgo 2.0 Release Candidate is available!") +; (description "Ginkgo is a BDD-style testing framework for Golang +;") +; (license license:expat))) +; +;(define-public go-github-com-fsnotify-fsnotify-1.4.7 +; (package +; (name "go-github-com-fsnotify-fsnotify") +; (version "1.4.7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/fsnotify/fsnotify") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/fsnotify/fsnotify")) +; (home-page "https://github.com/fsnotify/fsnotify") +; (synopsis "File system notifications for Go") +; (description +; "Package fsnotify provides a platform-independent interface for file system notifications. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-hpcloud-tail-1.0.0 +; (package +; (name "go-github-com-hpcloud-tail") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hpcloud/tail") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1njpzc0pi1acg5zx9y6vj9xi6ksbsc5d387rd6904hy6rh2m6kn0")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hpcloud/tail")) +; (home-page "https://github.com/hpcloud/tail") +; (synopsis "Go package for tail-ing files") +; (description +; "This package provides a Go package striving to emulate the features of the BSD @code{tail} program.") +; (license license:expat))) +; +;(define-public go-github-com-onsi-ginkgo-1.6.0 +; (package +; (name "go-github-com-onsi-ginkgo") +; (version "1.6.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/onsi/ginkgo") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0x0gc89vgq38xhgmi2h22bhr73cf2gmk42g89nz89k8dgg9hhr25")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/onsi/ginkgo")) +; (home-page "https://github.com/onsi/ginkgo") +; (synopsis "Ginkgo 2.0 Release Candidate is available!") +; (description "Ginkgo is a BDD-style testing framework for Golang +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20180906233101-161cd47e91fd") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0254ld010iijygbzykib2vags1dc0wlmcmhgh4jl8iny159lhbcv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20180909124046-d0be0721c37e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "081wyvfnlf842dqg03raxfz6lldlxpmyh1prix9lmrrm65arxb12")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-gopkg-in-fsnotify-v1-1.4.7 +; (package +; (name "go-gopkg-in-fsnotify-v1") +; (version "1.4.7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/fsnotify.v1") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path +; "gopkg.in/fsnotify.v1" +; #:unpack-path +; "gopkg.in/fsnotify.v1")) +; (home-page "https://gopkg.in/fsnotify.v1") +; (synopsis "File system notifications for Go") +; (description +; "Package fsnotify provides a platform-independent interface for file system notifications. +;") +; (license license:bsd-3))) +; +;(define-public go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7 +; (package +; (name "go-gopkg-in-tomb-v1") +; (version "1.0.0-20141024135613-dd632973f1e7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/tomb.v1") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1lqmq1ag7s4b3gc3ddvr792c5xb5k6sfn0cchr3i2s7f1c231zjv")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/tomb.v1" #:unpack-path "gopkg.in/tomb.v1")) +; (home-page "https://gopkg.in/tomb.v1") +; (synopsis "Installation and usage") +; (description +; "The tomb package offers a conventional API for clean goroutine termination. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-onsi-gomega-1.7.0 +; (package +; (name "go-github-com-onsi-gomega") +; (version "1.7.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/onsi/gomega") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "09j6wq425wgzzsbwm9ckhfgl2capv3yyqbrf45qyrjwkzm49i02y")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/onsi/gomega")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1) +; ("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" +; ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) +; ("go-gopkg-in-fsnotify-v1-1.4.7" ,go-gopkg-in-fsnotify-v1-1.4.7) +; ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e" +; ,go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e) +; ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" +; ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) +; ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" +; ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) +; ("go-github-com-onsi-ginkgo-1.6.0" ,go-github-com-onsi-ginkgo-1.6.0) +; ("go-github-com-hpcloud-tail-1.0.0" ,go-github-com-hpcloud-tail-1.0.0) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0) +; ("go-github-com-fsnotify-fsnotify-1.4.7" +; ,go-github-com-fsnotify-fsnotify-1.4.7))) +; (home-page "https://github.com/onsi/gomega") +; (synopsis ": a BDD Testing Framework for Golang") +; (description +; "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library. +;") +; (license license:expat))) +; +;(define-public go-gopkg-in-inf-v0-0.9.1 +; (package +; (name "go-gopkg-in-inf-v0") +; (version "0.9.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/inf.v0") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "00k5iqjcp371fllqxncv7jkf80hn1zww92zm78cclbcn4ybigkng")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/inf.v0" #:unpack-path "gopkg.in/inf.v0")) +; (home-page "https://gopkg.in/inf.v0") +; (synopsis #f) +; (description +; "Package inf (type inf.Dec) implements \"infinite-precision\" decimal +;arithmetic. +;\"Infinite precision\" describes two characteristics: practically unlimited +;precision for decimal number representation and no support for calculating +;with any specific fixed precision. +;(Although there is no practical limit on precision, inf.Dec can only +;represent finite decimals.) +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-nytimes-gziphandler-0.0.0-20170623195520-56545f4a5d46 +; (package +; (name "go-github-com-nytimes-gziphandler") +; (version "0.0.0-20170623195520-56545f4a5d46") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/nytimes/gziphandler") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1fwk9wz6vrvq72f2gq8jhvd1nvv6grqgwrjq66vjpm0726pxar72")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/NYTimes/gziphandler")) +; (home-page "https://github.com/NYTimes/gziphandler") +; (synopsis "Gzip Handler") +; (description +; "This is a tiny Go package which wraps HTTP handlers to transparently gzip the +;response body, for clients which support it. Although it's usually simpler to +;leave that to a reverse proxy (like nginx or Varnish), this package is useful +;when that's undesirable.") +; (license license:asl2.0))) +; +;(define-public go-github-com-asaskevich-govalidator-0.0.0-20190424111038-f61b66f89f4a +; (package +; (name "go-github-com-asaskevich-govalidator") +; (version "0.0.0-20190424111038-f61b66f89f4a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/asaskevich/govalidator") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1jzjd9ak4byb83bwhbyrrdclnhrgglyxcbr4d4qh39a6ywvcijm5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/asaskevich/govalidator")) +; (home-page "https://github.com/asaskevich/govalidator") +; (synopsis "govalidator") +; (description +; "Package govalidator is package of validators and sanitizers for strings, structs and collections. +;") +; (license license:expat))) +; +;(define-public go-github-com-emicklei-go-restful-0.0.0-20170410110728-ff4f55a20633 +; (package +; (name "go-github-com-emicklei-go-restful") +; (version "0.0.0-20170410110728-ff4f55a20633") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/emicklei/go-restful") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1v5lj5142abz3gvbygp6xghpdx4ps2lwswl8559ivaidahwnc21c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/emicklei/go-restful")) +; (home-page "https://github.com/emicklei/go-restful") +; (synopsis "go-restful") +; (description +; "Package restful , a lean package for creating REST-style WebServices without magic. +;") +; (license license:expat))) +; +;(define-public go-github-com-ghodss-yaml-0.0.0-20150909031657-73d445a93680 +; (package +; (name "go-github-com-ghodss-yaml") +; (version "0.0.0-20150909031657-73d445a93680") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/ghodss/yaml") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0pg53ky4sy3sp9j4n7vgf1p3gw4nbckwqfldcmmi9rf13kjh0mr7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/ghodss/yaml")) +; (home-page "https://github.com/ghodss/yaml") +; (synopsis "YAML marshaling and unmarshaling support for Go") +; (description +; "Copyright 2013 The Go Authors. All rights reserved. +;Use of this source code is governed by a BSD-style +;license that can be found in the LICENSE file. +;") +; (license #f))) +; +;(define-public go-github-com-go-openapi-jsonreference-0.19.3 +; (package +; (name "go-github-com-go-openapi-jsonreference") +; (version "0.19.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/go-openapi/jsonreference") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ln21xai74fynwmi4ck5j0c70yszjy96wfagc705y8khjxsgncsw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/go-openapi/jsonreference")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) +; ("go-golang-org-x-net-0.0.0-20190827160401-ba9fcec4b297" +; ,go-golang-org-x-net-0.0.0-20190827160401-ba9fcec4b297) +; ("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0) +; ("go-github-com-go-openapi-jsonpointer-0.19.3" +; ,go-github-com-go-openapi-jsonpointer-0.19.3) +; ("go-github-com-puerkitobio-urlesc-0.0.0-20170810143723-de5bf2ad4578" +; ,go-github-com-puerkitobio-urlesc-0.0.0-20170810143723-de5bf2ad4578) +; ("go-github-com-puerkitobio-purell-1.1.1" +; ,go-github-com-puerkitobio-purell-1.1.1))) +; (home-page "https://github.com/go-openapi/jsonreference") +; (synopsis "gojsonreference") +; (description +; "@url{https://raw.githubusercontent.com/go-openapi/jsonreference/master/LICENSE,(img (@ (src http://img.shields.io/badge/license-Apache%20v2-orange.svg) (alt license)))} @url{http://godoc.org/github.com/go-openapi/jsonreference,(img (@ (src https://godoc.org/github.com/go-openapi/jsonreference?status.svg=) (alt GoDoc)))} +;An implementation of JSON Reference - Go language") +; (license license:asl2.0))) +; +;(define-public go-github-com-mailru-easyjson-0.0.0-20190626092158-b2ccc519800e +; (package +; (name "go-github-com-mailru-easyjson") +; (version "0.0.0-20190626092158-b2ccc519800e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mailru/easyjson") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0q85h383mhbkcjm2vqm72bi8n2252fv3c56q3lclzb8n2crnjcdk")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mailru/easyjson")) +; (home-page "https://github.com/mailru/easyjson") +; (synopsis "easyjson") +; (description +; "Package easyjson contains marshaler/unmarshaler interfaces and helper functions. +;") +; (license license:expat))) +; +;(define-public go-github-com-go-openapi-jsonpointer-0.19.3 +; (package +; (name "go-github-com-go-openapi-jsonpointer") +; (version "0.19.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/go-openapi/jsonpointer") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1m4bb7c5y8ss2s8wl50k7lsk84nl4lcldkbkphrfdl21y51gz4jr")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/go-openapi/jsonpointer")) +; (propagated-inputs +; `(("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0) +; ("go-github-com-mailru-easyjson-0.0.0-20190626092158-b2ccc519800e" +; ,go-github-com-mailru-easyjson-0.0.0-20190626092158-b2ccc519800e) +; ("go-github-com-go-openapi-swag-0.19.5" +; ,go-github-com-go-openapi-swag-0.19.5))) +; (home-page "https://github.com/go-openapi/jsonpointer") +; (synopsis "gojsonpointer") +; (description +; "@url{https://raw.githubusercontent.com/go-openapi/jsonpointer/master/LICENSE,(img (@ (src http://img.shields.io/badge/license-Apache%20v2-orange.svg) (alt license)))} @url{http://godoc.org/github.com/go-openapi/jsonpointer,(img (@ (src https://godoc.org/github.com/go-openapi/jsonpointer?status.svg=) (alt GoDoc)))} +;An implementation of JSON Pointer - Go language") +; (license license:asl2.0))) +; +;(define-public go-github-com-puerkitobio-purell-1.1.1 +; (package +; (name "go-github-com-puerkitobio-purell") +; (version "1.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/PuerkitoBio/purell") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0c525frsxmalrn55hzzsxy17ng8avkd40ga0wxfw9haxsdjgqdqy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/PuerkitoBio/purell")) +; (home-page "https://github.com/PuerkitoBio/purell") +; (synopsis "Purell") +; (description +; "Package purell offers URL normalization as described on the wikipedia page: +;@url{http://en.wikipedia.org/wiki/URL_normalization,http://en.wikipedia.org/wiki/URL_normalization} +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-puerkitobio-urlesc-0.0.0-20170810143723-de5bf2ad4578 +; (package +; (name "go-github-com-puerkitobio-urlesc") +; (version "0.0.0-20170810143723-de5bf2ad4578") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/PuerkitoBio/urlesc") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0n0srpqwbaan1wrhh2b7ysz543pjs1xw2rghvqyffg9l0g8kzgcw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/PuerkitoBio/urlesc")) +; (home-page "https://github.com/PuerkitoBio/urlesc") +; (synopsis "urlesc") +; (description +; "Package urlesc implements query escaping as per @url{https://rfc-editor.org/rfc/rfc3986.html,RFC 3986}. +;It contains some parts of the net/url package, modified so as to allow +;some reserved characters incorrectly escaped by net/url. +;See @url{https://github.com/golang/go/issues/5684,https://github.com/golang/go/issues/5684} +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-go-openapi-swag-0.19.2 +; (package +; (name "go-github-com-go-openapi-swag") +; (version "0.19.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/go-openapi/swag") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1mlxlajx2p9wjm72rmqjrx5g49q2sn04y45s3nrykkf6jqlq1v4z")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/go-openapi/swag")) +; (propagated-inputs +; `(("go-github-com-sourcegraph-go-diff-0.5.1" +; ,go-github-com-sourcegraph-go-diff-0.5.1) +; ("go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422" +; ,go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422) +; ("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) +; ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" +; ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) +; ("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0) +; ("go-github-com-mailru-easyjson-0.0.0-20190614124828-94de47d64c63" +; ,go-github-com-mailru-easyjson-0.0.0-20190614124828-94de47d64c63) +; ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://github.com/go-openapi/swag") +; (synopsis "Swag") +; (description +; "Package swag contains a bunch of helper functions for go-openapi and go-swagger projects. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-go-openapi-jsonpointer-0.19.2 +; (package +; (name "go-github-com-go-openapi-jsonpointer") +; (version "0.19.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/go-openapi/jsonpointer") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1s3cqf4svrbygvvpvi7hf122szsgihas52vqh0bba3avf4w03g9n")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/go-openapi/jsonpointer")) +; (propagated-inputs +; `(("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0) +; ("go-github-com-go-openapi-swag-0.19.2" +; ,go-github-com-go-openapi-swag-0.19.2))) +; (home-page "https://github.com/go-openapi/jsonpointer") +; (synopsis "gojsonpointer") +; (description +; "@url{https://raw.githubusercontent.com/go-openapi/jsonpointer/master/LICENSE,(img (@ (src http://img.shields.io/badge/license-Apache%20v2-orange.svg) (alt license)))} @url{http://godoc.org/github.com/go-openapi/jsonpointer,(img (@ (src https://godoc.org/github.com/go-openapi/jsonpointer?status.svg=) (alt GoDoc)))} +;An implementation of JSON Pointer - Go language") +; (license license:asl2.0))) +; +;(define-public go-github-com-go-openapi-jsonreference-0.19.2 +; (package +; (name "go-github-com-go-openapi-jsonreference") +; (version "0.19.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/go-openapi/jsonreference") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0v933yvcwyzzlpdxwb9204ki7lls2rwfd96ww2i901ndvz37kdf8")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/go-openapi/jsonreference")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) +; ("go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980" +; ,go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980) +; ("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0) +; ("go-github-com-go-openapi-jsonpointer-0.19.2" +; ,go-github-com-go-openapi-jsonpointer-0.19.2) +; ("go-github-com-puerkitobio-urlesc-0.0.0-20170810143723-de5bf2ad4578" +; ,go-github-com-puerkitobio-urlesc-0.0.0-20170810143723-de5bf2ad4578) +; ("go-github-com-puerkitobio-purell-1.1.1" +; ,go-github-com-puerkitobio-purell-1.1.1))) +; (home-page "https://github.com/go-openapi/jsonreference") +; (synopsis "gojsonreference") +; (description +; "@url{https://raw.githubusercontent.com/go-openapi/jsonreference/master/LICENSE,(img (@ (src http://img.shields.io/badge/license-Apache%20v2-orange.svg) (alt license)))} @url{http://godoc.org/github.com/go-openapi/jsonreference,(img (@ (src https://godoc.org/github.com/go-openapi/jsonreference?status.svg=) (alt GoDoc)))} +;An implementation of JSON Reference - Go language") +; (license license:asl2.0))) +; +;(define-public go-github-com-kr-pty-1.1.5 +; (package +; (name "go-github-com-kr-pty") +; (version "1.1.5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kr/pty") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1bpq77b90z72cv9h66dvxsg2j197ylpgcps23xsjfbs752bykfw1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kr/pty")) +; (home-page "https://github.com/kr/pty") +; (synopsis "pty") +; (description +; "Package pty is a wrapper for github.com/creack/pty, which provides +;functions for working with Unix terminals. +;") +; (license license:expat))) +; +;(define-public go-github-com-stretchr-objx-0.2.0 +; (package +; (name "go-github-com-stretchr-objx") +; (version "0.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/objx") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0pcdvakxgddaiwcdj73ra4da05a3q4cgwbpm2w75ycq4kzv8ij8k")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/objx")) +; (propagated-inputs +; `(("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://github.com/stretchr/objx") +; (synopsis "Objx") +; (description +; "Objx - Go package for dealing with maps, slices, JSON and other data. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20190611184440-5c40567a22f8 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20190611184440-5c40567a22f8") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "17g8fb9vy2sqq8vgz8jdvf6c6d2290gm2qs0i4yzsd86mgn4dlrg")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" +; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) +; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" +; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20190827160401-ba9fcec4b297 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190827160401-ba9fcec4b297") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1hbqvy6r0s5h0dpdqw8fynl3cq0acin3iyqki9xvl5r8h33yb9bx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190616124812-15dcb6c0061f +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190616124812-15dcb6c0061f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1qfkkysbyn44nyx57cq8mmw1cjgpxi9gi9xrf6kljmd9c1416zdd")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20190614205625-5aca471b1d59 +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20190614205625-5aca471b1d59") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1i4h3q83w4y9s065w0wnnnwlssy69jbrj08k47ppsa8dnv85kyrf")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" +; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-github-com-go-openapi-spec-0.19.3 +; (package +; (name "go-github-com-go-openapi-spec") +; (version "0.19.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/go-openapi/spec") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1dikq1p550vj5i9y918s075pgk0fxkixxk3fb70ri7wkm51s6nlj")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/go-openapi/spec")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) +; ("go-golang-org-x-tools-0.0.0-20190614205625-5aca471b1d59" +; ,go-golang-org-x-tools-0.0.0-20190614205625-5aca471b1d59) +; ("go-golang-org-x-sys-0.0.0-20190616124812-15dcb6c0061f" +; ,go-golang-org-x-sys-0.0.0-20190616124812-15dcb6c0061f) +; ("go-golang-org-x-net-0.0.0-20190827160401-ba9fcec4b297" +; ,go-golang-org-x-net-0.0.0-20190827160401-ba9fcec4b297) +; ("go-golang-org-x-crypto-0.0.0-20190611184440-5c40567a22f8" +; ,go-golang-org-x-crypto-0.0.0-20190611184440-5c40567a22f8) +; ("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0) +; ("go-github-com-stretchr-objx-0.2.0" +; ,go-github-com-stretchr-objx-0.2.0) +; ("go-github-com-kr-pty-1.1.5" ,go-github-com-kr-pty-1.1.5) +; ("go-github-com-go-openapi-swag-0.19.5" +; ,go-github-com-go-openapi-swag-0.19.5) +; ("go-github-com-go-openapi-jsonreference-0.19.2" +; ,go-github-com-go-openapi-jsonreference-0.19.2) +; ("go-github-com-go-openapi-jsonpointer-0.19.3" +; ,go-github-com-go-openapi-jsonpointer-0.19.3))) +; (home-page "https://github.com/go-openapi/spec") +; (synopsis "OAI object model") +; (description "The object model for OpenAPI specification documents.") +; (license license:asl2.0))) +; +;(define-public go-github-com-mailru-easyjson-0.0.0-20190614124828-94de47d64c63 +; (package +; (name "go-github-com-mailru-easyjson") +; (version "0.0.0-20190614124828-94de47d64c63") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mailru/easyjson") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1km0kkh7cf7dlz5pqi9yr1wamv0167y41cyv1dbrcxfdmwgpfd23")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mailru/easyjson")) +; (home-page "https://github.com/mailru/easyjson") +; (synopsis "easyjson") +; (description +; "Package easyjson contains marshaler/unmarshaler interfaces and helper functions. +;") +; (license license:expat))) +; +;(define-public go-github-com-shurcool-go-0.0.0-20180423040247-9e1955d9fb6e +; (package +; (name "go-github-com-shurcool-go") +; (version "0.0.0-20180423040247-9e1955d9fb6e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/shurcooL/go") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1lad9bvs75jsn61cfza19739c2c057k0bqxg2b4xz3z3l4w1mkqj")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/shurcooL/go")) +; (home-page "https://github.com/shurcooL/go") +; (synopsis "go") +; (description "Common Go code.") +; (license license:expat))) +; +;(define-public go-github-com-shurcool-go-goon-0.0.0-20170922171312-37c2f522c041 +; (package +; (name "go-github-com-shurcool-go-goon") +; (version "0.0.0-20170922171312-37c2f522c041") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/shurcooL/go-goon") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "17ac6j6msdcxbmfhq6pxhw5z339b87bd6ciln9909drjv2szyxqv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/shurcooL/go-goon")) +; (home-page "https://github.com/shurcooL/go-goon") +; (synopsis "goon") +; (description +; "Package goon is a deep pretty printer with Go-like notation. It implements the goon specification. +;") +; (license license:expat))) +; +;(define-public go-sourcegraph-com-sqs-pbtypes-0.0.0-20180604144634-d3ebe8f20ae4 +; (package +; (name "go-sourcegraph-com-sqs-pbtypes") +; (version "0.0.0-20180604144634-d3ebe8f20ae4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/sqs/pbtypes") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0vcyqq4jc2jv1wh288qdxv51qxcfj07lvnlf37pjicsd2yrb7yrr")))) +; (build-system go-build-system) +; (arguments '(#:import-path "sourcegraph.com/sqs/pbtypes")) +; (home-page "https://sourcegraph.com/sqs/pbtypes") +; (synopsis "pbtypes") +; (description +; "Package pbtypes contains protocol buffer types (Timestamp, Void, +;etc.) and related helpers. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-sourcegraph-go-diff-0.5.1 +; (package +; (name "go-github-com-sourcegraph-go-diff") +; (version "0.5.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/sourcegraph/go-diff") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0acabccjmxgdvhyd7fr0krlf7ymc7mngdq292n03hfys9nrnb0b2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/sourcegraph/go-diff")) +; (propagated-inputs +; `(("go-sourcegraph-com-sqs-pbtypes-0.0.0-20180604144634-d3ebe8f20ae4" +; ,go-sourcegraph-com-sqs-pbtypes-0.0.0-20180604144634-d3ebe8f20ae4) +; ("go-github-com-shurcool-go-goon-0.0.0-20170922171312-37c2f522c041" +; ,go-github-com-shurcool-go-goon-0.0.0-20170922171312-37c2f522c041) +; ("go-github-com-shurcool-go-0.0.0-20180423040247-9e1955d9fb6e" +; ,go-github-com-shurcool-go-0.0.0-20180423040247-9e1955d9fb6e) +; ("go-github-com-gogo-protobuf-1.1.1" +; ,go-github-com-gogo-protobuf-1.1.1))) +; (home-page "https://github.com/sourcegraph/go-diff") +; (synopsis "go-diff") +; (description "Diff parser and printer for Go.") +; (license license:expat))) +; +;(define-public go-github-com-go-openapi-swag-0.19.5 +; (package +; (name "go-github-com-go-openapi-swag") +; (version "0.19.5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/go-openapi/swag") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1z34vqc5yz6rzvarrvlhkimxx33p74iaxb28l1mv716njvlsmjhg")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/go-openapi/swag")) +; (propagated-inputs +; `(("go-github-com-sourcegraph-go-diff-0.5.1" +; ,go-github-com-sourcegraph-go-diff-0.5.1) +; ("go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422" +; ,go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422) +; ("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) +; ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" +; ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) +; ("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0) +; ("go-github-com-mailru-easyjson-0.0.0-20190614124828-94de47d64c63" +; ,go-github-com-mailru-easyjson-0.0.0-20190614124828-94de47d64c63) +; ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://github.com/go-openapi/swag") +; (synopsis "Swag") +; (description +; "Package swag contains a bunch of helper functions for go-openapi and go-swagger projects. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-google-uuid-1.1.1 +; (package +; (name "go-github-com-google-uuid") +; (version "1.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/uuid") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0hfxcf9frkb57k6q0rdkrmnfs78ms21r1qfk9fhlqga2yh5xg8zb")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/uuid")) +; (home-page "https://github.com/google/uuid") +; (synopsis "uuid") +; (description "Package uuid generates and inspects UUIDs. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-docopt-docopt-go-0.0.0-20180111231733-ee0de3bc6815 +; (package +; (name "go-github-com-docopt-docopt-go") +; (version "0.0.0-20180111231733-ee0de3bc6815") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/docopt/docopt.go") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0hlra7rmi5pmd7d93rv56ahiy4qkgmq8a6mz0jpadvbi5qh8lq6j")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/docopt/docopt-go")) +; (home-page "https://github.com/docopt/docopt-go") +; (synopsis "docopt-go") +; (description +; "Package docopt parses command-line arguments based on a help message. +;") +; (license license:expat))) +; +;(define-public go-github-com-googleapis-gnostic-0.4.1 +; (package +; (name "go-github-com-googleapis-gnostic") +; (version "0.4.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/gnostic") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1fw28m3ach5pkcdh4ijd6s7w09j0n88p6mah3hp0k8918jsc6mj9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/googleapis/gnostic")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) +; ("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" +; ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) +; ("go-github-com-kr-pretty-0.2.0" ,go-github-com-kr-pretty-0.2.0) +; ("go-github-com-golang-protobuf-1.3.3" +; ,go-github-com-golang-protobuf-1.3.3) +; ("go-github-com-docopt-docopt-go-0.0.0-20180111231733-ee0de3bc6815" +; ,go-github-com-docopt-docopt-go-0.0.0-20180111231733-ee0de3bc6815))) +; (home-page "https://github.com/googleapis/gnostic") +; (synopsis "â¨\x81 gnostic") +; (description +; "Gnostic is a tool for building better REST APIs through knowledge. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-munnerz-goautoneg-0.0.0-20120707110453-a547fc61f48d +; (package +; (name "go-github-com-munnerz-goautoneg") +; (version "0.0.0-20120707110453-a547fc61f48d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/munnerz/goautoneg") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19khhn5xhqv1yp7d6k987gh5w5rhrjnp4p0c6fyrd8z6lzz5h9qi")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/munnerz/goautoneg")) +; (home-page "https://github.com/munnerz/goautoneg") +; (synopsis #f) +; (description #f) +; (license license:bsd-3))) +; +;(define-public go-github-com-onsi-ginkgo-0.0.0-20170829012221-11459a886d9c +; (package +; (name "go-github-com-onsi-ginkgo") +; (version "0.0.0-20170829012221-11459a886d9c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/onsi/ginkgo") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1nswc1fnrrs792qbix05h91bilj8rr3wxmxgwi97p2gjk0r292zh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/onsi/ginkgo")) +; (home-page "https://github.com/onsi/ginkgo") +; (synopsis "Ginkgo 2.0 Release Candidate is available!") +; (description "Ginkgo is a BDD-style testing framework for Golang +;") +; (license license:expat))) +; +;(define-public go-github-com-onsi-gomega-0.0.0-20170829124025-dcabb60a477c +; (package +; (name "go-github-com-onsi-gomega") +; (version "0.0.0-20170829124025-dcabb60a477c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/onsi/gomega") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1775lv5jbsgv3ghq5v2827slqlhqdadrzc1nkpq4y0hdv2qzrgkm")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/onsi/gomega")) +; (home-page "https://github.com/onsi/gomega") +; (synopsis ": a BDD Testing Framework for Golang") +; (description +; "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library. +;") +; (license license:expat))) +; +;(define-public go-github-com-spf13-pflag-0.0.0-20170130214245-9ff6c6923cff +; (package +; (name "go-github-com-spf13-pflag") +; (version "0.0.0-20170130214245-9ff6c6923cff") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/spf13/pflag") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0mfrxzyl8x7araa126lh8l3sihbbgfbzgkrg3v3cx7y4n3wrsqvn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/spf13/pflag")) +; (home-page "https://github.com/spf13/pflag") +; (synopsis "Description") +; (description +; "Package pflag is a drop-in replacement for Go's flag package, implementing +;POSIX/GNU-style --flags. +;") +; (license license:bsd-3))) +; +;(define-public go-k8s-io-gengo-0.0.0-20200413195148-3a45101e95ac +; (package +; (name "go-k8s-io-gengo") +; (version "0.0.0-20200413195148-3a45101e95ac") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes/gengo") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0x46jq6rv8z0y96231rfgzvfscgy5hp5aacid3r93zy0rq9r37g6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "k8s.io/gengo")) +; (home-page "https://k8s.io/gengo") +; (synopsis "gengo") +; (description +; "This package provides a package for generating things based on go files. This mechanism was first used +;in Kubernetes and is split out here for ease of reuse and maintainability.") +; (license license:asl2.0))) +; +;(define-public go-sigs-k8s-io-structured-merge-diff-v4-4.0.2 +; (package +; (name "go-sigs-k8s-io-structured-merge-diff-v4") +; (version "4.0.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes-sigs/structured-merge-diff") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1z60sw6nrlzyddyx5pvh6afwf8jvmn8c2zw15hklq17iyvj3lj7a")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path +; "sigs.k8s.io/structured-merge-diff/v4" +; #:unpack-path +; "sigs.k8s.io/structured-merge-diff/v4")) +; (propagated-inputs +; `(("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0) +; ("go-github-com-modern-go-reflect2-1.0.1" +; ,go-github-com-modern-go-reflect2-1.0.1) +; ("go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd" +; ,go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd) +; ("go-github-com-json-iterator-go-1.1.6" +; ,go-github-com-json-iterator-go-1.1.6) +; ("go-github-com-google-gofuzz-1.0.0" +; ,go-github-com-google-gofuzz-1.0.0) +; ("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1))) +; (home-page "https://sigs.k8s.io/structured-merge-diff/v4") +; (synopsis "Structured Merge and Diff") +; (description +; "This repo contains code which implements the Kubernetes \"apply\" operation.") +; (license license:asl2.0))) +; +;(define-public go-sigs-k8s-io-yaml-1.1.0 +; (package +; (name "go-sigs-k8s-io-yaml") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes-sigs/yaml") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1p7hvjdr5jsyk7nys1g1pmgnf3ys6n320i6hds85afppk81k01kb")))) +; (build-system go-build-system) +; (arguments '(#:import-path "sigs.k8s.io/yaml")) +; (home-page "https://sigs.k8s.io/yaml") +; (synopsis "YAML marshaling and unmarshaling support for Go") +; (description +; "kubernetes-sigs/yaml is a permanent fork of @url{https://github.com/ghodss/yaml,ghodss/yaml}.") +; (license #f))) +; +;(define-public go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd +; (package +; (name "go-k8s-io-kube-openapi") +; (version "0.0.0-20201113171705-d219536bb9fd") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes/kube-openapi") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "11d420a3rxznh3f6x5a6xp22zjwv6jfq4w1gb6srqb4vn9rhgrka")))) +; (build-system go-build-system) +; (arguments '(#:import-path "k8s.io/kube-openapi")) +; (propagated-inputs +; `(("go-sigs-k8s-io-yaml-1.1.0" ,go-sigs-k8s-io-yaml-1.1.0) +; ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.2" +; ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.2) +; ("go-k8s-io-klog-v2-2.0.0" ,go-k8s-io-klog-v2-2.0.0) +; ("go-k8s-io-gengo-0.0.0-20200413195148-3a45101e95ac" +; ,go-k8s-io-gengo-0.0.0-20200413195148-3a45101e95ac) +; ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) +; ("go-golang-org-x-net-0.0.0-20200324143707-d3edc9973b7e" +; ,go-golang-org-x-net-0.0.0-20200324143707-d3edc9973b7e) +; ("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0) +; ("go-github-com-spf13-pflag-0.0.0-20170130214245-9ff6c6923cff" +; ,go-github-com-spf13-pflag-0.0.0-20170130214245-9ff6c6923cff) +; ("go-github-com-onsi-gomega-0.0.0-20170829124025-dcabb60a477c" +; ,go-github-com-onsi-gomega-0.0.0-20170829124025-dcabb60a477c) +; ("go-github-com-onsi-ginkgo-0.0.0-20170829012221-11459a886d9c" +; ,go-github-com-onsi-ginkgo-0.0.0-20170829012221-11459a886d9c) +; ("go-github-com-munnerz-goautoneg-0.0.0-20120707110453-a547fc61f48d" +; ,go-github-com-munnerz-goautoneg-0.0.0-20120707110453-a547fc61f48d) +; ("go-github-com-mitchellh-mapstructure-1.1.2" +; ,go-github-com-mitchellh-mapstructure-1.1.2) +; ("go-github-com-json-iterator-go-1.1.6" +; ,go-github-com-json-iterator-go-1.1.6) +; ("go-github-com-googleapis-gnostic-0.4.1" +; ,go-github-com-googleapis-gnostic-0.4.1) +; ("go-github-com-google-uuid-1.1.1" ,go-github-com-google-uuid-1.1.1) +; ("go-github-com-google-gofuzz-1.0.0" +; ,go-github-com-google-gofuzz-1.0.0) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.3.3" +; ,go-github-com-golang-protobuf-1.3.3) +; ("go-github-com-go-openapi-swag-0.19.5" +; ,go-github-com-go-openapi-swag-0.19.5) +; ("go-github-com-go-openapi-spec-0.19.3" +; ,go-github-com-go-openapi-spec-0.19.3) +; ("go-github-com-go-openapi-jsonreference-0.19.3" +; ,go-github-com-go-openapi-jsonreference-0.19.3) +; ("go-github-com-go-openapi-jsonpointer-0.19.3" +; ,go-github-com-go-openapi-jsonpointer-0.19.3) +; ("go-github-com-ghodss-yaml-0.0.0-20150909031657-73d445a93680" +; ,go-github-com-ghodss-yaml-0.0.0-20150909031657-73d445a93680) +; ("go-github-com-emicklei-go-restful-0.0.0-20170410110728-ff4f55a20633" +; ,go-github-com-emicklei-go-restful-0.0.0-20170410110728-ff4f55a20633) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1) +; ("go-github-com-asaskevich-govalidator-0.0.0-20190424111038-f61b66f89f4a" +; ,go-github-com-asaskevich-govalidator-0.0.0-20190424111038-f61b66f89f4a) +; ("go-github-com-nytimes-gziphandler-0.0.0-20170623195520-56545f4a5d46" +; ,go-github-com-nytimes-gziphandler-0.0.0-20170623195520-56545f4a5d46))) +; (home-page "https://k8s.io/kube-openapi") +; (synopsis "Kube OpenAPI") +; (description +; "This repo is the home for Kubernetes OpenAPI discovery spec generation. The goal +;is to support a subset of OpenAPI features to satisfy kubernetes use-cases but +;implement that subset with little to no assumption about the structure of the +;code or routes. Thus, there should be no kubernetes specific code in this repo.") +; (license license:asl2.0))) +; +;(define-public go-sigs-k8s-io-structured-merge-diff-v4-4.0.3 +; (package +; (name "go-sigs-k8s-io-structured-merge-diff-v4") +; (version "4.0.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes-sigs/structured-merge-diff") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1jv60bkk0z437bsz5ldjyc006k20njmpl0xfl8p3g1q0bx0fkypa")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path +; "sigs.k8s.io/structured-merge-diff/v4" +; #:unpack-path +; "sigs.k8s.io/structured-merge-diff/v4")) +; (propagated-inputs +; `(("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0) +; ("go-github-com-modern-go-reflect2-1.0.1" +; ,go-github-com-modern-go-reflect2-1.0.1) +; ("go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd" +; ,go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd) +; ("go-github-com-json-iterator-go-1.1.6" +; ,go-github-com-json-iterator-go-1.1.6) +; ("go-github-com-google-gofuzz-1.0.0" +; ,go-github-com-google-gofuzz-1.0.0) +; ("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1))) +; (home-page "https://sigs.k8s.io/structured-merge-diff/v4") +; (synopsis "Structured Merge and Diff") +; (description +; "This repo contains code which implements the Kubernetes \"apply\" operation.") +; (license license:asl2.0))) +; +;(define-public go-gopkg-in-yaml-v2-2.2.8 +; (package +; (name "go-gopkg-in-yaml-v2") +; (version "2.2.8") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/yaml.v2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1inf7svydzscwv9fcjd2rm61a4xjk6jkswknybmns2n58shimapw")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" +; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) +; (home-page "https://gopkg.in/yaml.v2") +; (synopsis "YAML support for the Go language") +; (description "Package yaml implements YAML support for the Go language. +;") +; (license license:asl2.0))) +; +;(define-public go-sigs-k8s-io-yaml-1.2.0 +; (package +; (name "go-sigs-k8s-io-yaml") +; (version "1.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes-sigs/yaml") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "059a1chkd6afyvqszrx7h93k6cgik3ia92x29f5whpwi66461pzq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "sigs.k8s.io/yaml")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://sigs.k8s.io/yaml") +; (synopsis "YAML marshaling and unmarshaling support for Go") +; (description +; "kubernetes-sigs/yaml is a permanent fork of @url{https://github.com/ghodss/yaml,ghodss/yaml}.") +; (license #f))) +; +;(define-public go-k8s-io-apimachinery-0.20.6 +; (package +; (name "go-k8s-io-apimachinery") +; (version "0.20.6") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes/apimachinery") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "16952v7zjk3pdyw5r3wy28qkcfx3risid0847pwdw8gmalwxr237")))) +; (build-system go-build-system) +; (arguments '(#:import-path "k8s.io/apimachinery")) +; (propagated-inputs +; `(("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) +; ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.3" +; ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.3) +; ("go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd" +; ,go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd) +; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) +; ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) +; ("go-gopkg-in-inf-v0-0.9.1" ,go-gopkg-in-inf-v0-0.9.1) +; ("go-google-golang-org-protobuf-1.25.0" +; ,go-google-golang-org-protobuf-1.25.0) +; ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) +; ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" +; ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) +; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" +; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-onsi-gomega-1.7.0" ,go-github-com-onsi-gomega-1.7.0) +; ("go-github-com-onsi-ginkgo-1.11.0" ,go-github-com-onsi-ginkgo-1.11.0) +; ("go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f" +; ,go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f) +; ("go-github-com-modern-go-reflect2-1.0.1" +; ,go-github-com-modern-go-reflect2-1.0.1) +; ("go-github-com-json-iterator-go-1.1.10" +; ,go-github-com-json-iterator-go-1.1.10) +; ("go-github-com-hashicorp-golang-lru-0.5.1" +; ,go-github-com-hashicorp-golang-lru-0.5.1) +; ("go-github-com-googleapis-gnostic-0.4.1" +; ,go-github-com-googleapis-gnostic-0.4.1) +; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) +; ("go-github-com-google-gofuzz-1.1.0" +; ,go-github-com-google-gofuzz-1.1.0) +; ("go-github-com-google-go-cmp-0.5.2" +; ,go-github-com-google-go-cmp-0.5.2) +; ("go-github-com-golang-protobuf-1.4.3" +; ,go-github-com-golang-protobuf-1.4.3) +; ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" +; ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) +; ("go-github-com-gogo-protobuf-1.3.2" +; ,go-github-com-gogo-protobuf-1.3.2) +; ("go-github-com-fsnotify-fsnotify-1.4.9" +; ,go-github-com-fsnotify-fsnotify-1.4.9) +; ("go-github-com-evanphx-json-patch-4.9.0+incompatible" +; ,go-github-com-evanphx-json-patch-4.9.0+incompatible) +; ("go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153" +; ,go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153) +; ("go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96" +; ,go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://k8s.io/apimachinery") +; (synopsis "apimachinery") +; (description +; "Scheme, typing, encoding, decoding, and conversion packages for Kubernetes and Kubernetes-like API objects.") +; (license license:asl2.0))) +; +;(define-public go-k8s-io-client-go-0.20.6 +; (package +; (name "go-k8s-io-client-go") +; (version "0.20.6") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes/client-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1fpz56pfadbfp8mlzmzicfmlgk5zqbk2rdwnr8c8h6ypjd5xjcvz")))) +; (build-system go-build-system) +; (arguments '(#:import-path "k8s.io/client-go")) +; (propagated-inputs +; `(("go-k8s-io-apimachinery-0.20.6" ,go-k8s-io-apimachinery-0.20.6) +; ("go-k8s-io-api-0.20.6" ,go-k8s-io-api-0.20.6) +; ("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) +; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" +; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) +; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) +; ("go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e" +; ,go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e) +; ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" +; ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) +; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" +; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) +; ("go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0" +; ,go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) +; ("go-github-com-peterbourgon-diskv-2.0.1+incompatible" +; ,go-github-com-peterbourgon-diskv-2.0.1+incompatible) +; ("go-github-com-imdario-mergo-0.3.5" +; ,go-github-com-imdario-mergo-0.3.5) +; ("go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7" +; ,go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7) +; ("go-github-com-googleapis-gnostic-0.4.1" +; ,go-github-com-googleapis-gnostic-0.4.1) +; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) +; ("go-github-com-google-gofuzz-1.1.0" +; ,go-github-com-google-gofuzz-1.1.0) +; ("go-github-com-google-go-cmp-0.5.2" +; ,go-github-com-google-go-cmp-0.5.2) +; ("go-github-com-golang-protobuf-1.4.3" +; ,go-github-com-golang-protobuf-1.4.3) +; ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" +; ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) +; ("go-github-com-gogo-protobuf-1.3.2" +; ,go-github-com-gogo-protobuf-1.3.2) +; ("go-github-com-evanphx-json-patch-4.9.0+incompatible" +; ,go-github-com-evanphx-json-patch-4.9.0+incompatible) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1) +; ("go-github-com-azure-go-autorest-autorest-adal-0.9.5" +; ,go-github-com-azure-go-autorest-autorest-adal-0.9.5) +; ("go-github-com-azure-go-autorest-autorest-0.11.1" +; ,go-github-com-azure-go-autorest-autorest-0.11.1) +; ("go-cloud-google-com-go-0.54.0" ,go-cloud-google-com-go-0.54.0))) +; (home-page "https://k8s.io/client-go") +; (synopsis "client-go") +; (description +; "Go clients for talking to a @url{http://kubernetes.io/,kubernetes} cluster.") +; (license license:asl2.0))) +; +;(define-public go-k8s-io-component-base-0.20.6 +; (package +; (name "go-k8s-io-component-base") +; (version "0.20.6") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes/component-base") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1987vm5lhbnn4ynrpzdgz3873lp78664cpdpkbv9jwnhzqdhpyhf")))) +; (build-system go-build-system) +; (arguments '(#:import-path "k8s.io/component-base")) +; (propagated-inputs +; `(("go-k8s-io-client-go-0.20.6" ,go-k8s-io-client-go-0.20.6) +; ("go-k8s-io-apimachinery-0.20.6" ,go-k8s-io-apimachinery-0.20.6) +; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" +; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) +; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) +; ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) +; ("go-go-uber-org-multierr-1.1.0" ,go-go-uber-org-multierr-1.1.0) +; ("go-go-uber-org-atomic-1.4.0" ,go-go-uber-org-atomic-1.4.0) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) +; ("go-github-com-sirupsen-logrus-1.6.0" +; ,go-github-com-sirupsen-logrus-1.6.0) +; ("go-github-com-prometheus-procfs-0.2.0" +; ,go-github-com-prometheus-procfs-0.2.0) +; ("go-github-com-prometheus-common-0.10.0" +; ,go-github-com-prometheus-common-0.10.0) +; ("go-github-com-prometheus-client-model-0.2.0" +; ,go-github-com-prometheus-client-model-0.2.0) +; ("go-github-com-prometheus-client-golang-1.7.1" +; ,go-github-com-prometheus-client-golang-1.7.1) +; ("go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd" +; ,go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd) +; ("go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369" +; ,go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369) +; ("go-github-com-google-go-cmp-0.5.2" +; ,go-github-com-google-go-cmp-0.5.2) +; ("go-github-com-go-logr-logr-0.2.0" ,go-github-com-go-logr-logr-0.2.0) +; ("go-github-com-blang-semver-3.5.1+incompatible" +; ,go-github-com-blang-semver-3.5.1+incompatible))) +; (home-page "https://k8s.io/component-base") +; (synopsis "component-base") +; (description +; "Implement KEP 32: @url{https://github.com/kubernetes/enhancements/blob/master/keps/sig-cluster-lifecycle/wgs/783-component-base/README.md,https://github.com/kubernetes/enhancements/blob/master/keps/sig-cluster-lifecycle/wgs/783-component-base/README.md}") +; (license license:asl2.0))) +; +;(define-public go-github-com-kr-pretty-0.2.0 +; (package +; (name "go-github-com-kr-pretty") +; (version "0.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kr/pretty") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ywbfzz1h3a3qd8rpkiqwi1dm4w8ls9ijb4x1b7567grns9f0vnp")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kr/pretty")) +; (propagated-inputs +; `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) +; (home-page "https://github.com/kr/pretty") +; (synopsis #f) +; (description +; "Package pretty provides pretty-printing for Go values. This is +;useful during debugging, to avoid wrapping long output lines in +;the terminal. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20201112073958-5cba982894dd") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "08dvnwmi2p4slmhyx7gzkmzfp51mmnkzi0ngwhvv0vip1s3s3zjc")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20201110150050-8816d57aaa9a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0cbfam4w9jr5gib43v3s2r5j8mhd3hl6ks3azwsahaff6idggg20")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.24.0" +; ,go-google-golang-org-protobuf-1.24.0) +; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) +; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" +; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-github-com-golang-protobuf-1.4.1" +; ,go-github-com-golang-protobuf-1.4.1))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-k8s-io-cri-api-0.20.6 +; (package +; (name "go-k8s-io-cri-api") +; (version "0.20.6") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes/cri-api") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0yp4rfxjn4h78z4sbmwhcqm8mva9bsvsc5jky2qa76npp0hycjhx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "k8s.io/cri-api")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" +; ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) +; ("go-google-golang-org-protobuf-1.25.0" +; ,go-google-golang-org-protobuf-1.25.0) +; ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) +; ("go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a" +; ,go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a) +; ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) +; ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" +; ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) +; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" +; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-kr-pretty-0.2.0" ,go-github-com-kr-pretty-0.2.0) +; ("go-github-com-google-go-cmp-0.5.2" +; ,go-github-com-google-go-cmp-0.5.2) +; ("go-github-com-golang-protobuf-1.4.3" +; ,go-github-com-golang-protobuf-1.4.3) +; ("go-github-com-gogo-protobuf-1.3.2" +; ,go-github-com-gogo-protobuf-1.3.2) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://k8s.io/cri-api") +; (synopsis "Purpose") +; (description +; "This repository contains the definitions for the Container Runtime Interface (CRI). +;CRI is a plugin interface which enables kubelet to use a wide variety of container runtimes, +;without the need to recompile. CRI consists of a protocol buffers and gRPC API.") +; (license license:asl2.0))) +; +;(define-public go-github-com-go-logr-logr-0.2.0 +; (package +; (name "go-github-com-go-logr-logr") +; (version "0.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/go-logr/logr") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "06xh4pw53z38vyi300mgpnr4pkqgknw9xakdyk1xzqfg9zd60d7d")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/go-logr/logr")) +; (home-page "https://github.com/go-logr/logr") +; (synopsis "A minimal logging API for Go") +; (description +; "Package logr defines a general-purpose logging API and abstract interfaces +;to back that API. Packages in the Go ecosystem can depend on this package, +;while callers can implement logging with whatever backend is appropriate. +;") +; (license license:asl2.0))) +; +;(define-public go-k8s-io-klog-v2-2.4.0 +; (package +; (name "go-k8s-io-klog-v2") +; (version "2.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes/klog") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1zjih6bgdalga5hqaa2fwwidslq6lv358gkj88a8wwj7w253wc8c")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "k8s.io/klog/v2" #:unpack-path "k8s.io/klog/v2")) +; (propagated-inputs +; `(("go-github-com-go-logr-logr-0.2.0" +; ,go-github-com-go-logr-logr-0.2.0))) +; (home-page "https://k8s.io/klog/v2") +; (synopsis "klog") +; (description +; "Package klog implements logging analogous to the Google-internal C++ INFO/ERROR/V setup. +;It provides functions Info, Warning, Error, Fatal, plus formatting variants such as +;Infof. It also provides V-style logging controlled by the -v and -vmodule=file=2 flags. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-spf13-afero-1.2.2 +; (package +; (name "go-github-com-spf13-afero") +; (version "1.2.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/spf13/afero") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0j9r65qgd58324m85lkl49vk9dgwd62g7dwvkfcm3k6i9dc555a9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/spf13/afero")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0))) +; (home-page "https://github.com/spf13/afero") +; (synopsis "Overview") +; (description +; "This package provides a FileSystem Abstraction System for Go") +; (license license:asl2.0))) +; +;(define-public go-github-com-go-logr-logr-0.1.0 +; (package +; (name "go-github-com-go-logr-logr") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/go-logr/logr") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0fhijjhxz4n2j5i24ckzv8r9kri3v44jdyklgbqjfq0xm7izqg14")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/go-logr/logr")) +; (home-page "https://github.com/go-logr/logr") +; (synopsis "A minimal logging API for Go") +; (description +; "Package logr defines a general-purpose logging API and abstract interfaces +;to back that API. Packages in the Go ecosystem can depend on this package, +;while callers can implement logging with whatever backend is appropriate. +;") +; (license license:asl2.0))) +; +;(define-public go-k8s-io-klog-v2-2.0.0 +; (package +; (name "go-k8s-io-klog-v2") +; (version "2.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes/klog") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "09vqm0n5l64lzpk3xqm4njbncnphx52qk21gwx8nsgyivlxx1n8g")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "k8s.io/klog/v2" #:unpack-path "k8s.io/klog/v2")) +; (propagated-inputs +; `(("go-github-com-go-logr-logr-0.1.0" +; ,go-github-com-go-logr-logr-0.1.0))) +; (home-page "https://k8s.io/klog/v2") +; (synopsis "klog") +; (description +; "Package klog implements logging analogous to the Google-internal C++ INFO/ERROR/V setup. +;It provides functions Info, Warning, Error, Fatal, plus formatting variants such as +;Infof. It also provides V-style logging controlled by the -v and -vmodule=file=2 flags. +;") +; (license license:asl2.0))) +; +;(define-public go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920 +; (package +; (name "go-k8s-io-utils") +; (version "0.0.0-20201110183641-67b214c5f920") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kubernetes/utils") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19rc9v5xin0a8qbf25my3rd0jd74cin2mk2a38j2dwplqy3s9crl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "k8s.io/utils")) +; (propagated-inputs +; `(("go-k8s-io-klog-v2-2.0.0" ,go-k8s-io-klog-v2-2.0.0) +; ("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0) +; ("go-github-com-spf13-afero-1.2.2" ,go-github-com-spf13-afero-1.2.2) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://k8s.io/utils") +; (synopsis "Utils") +; (description +; "This package provides a set of Go libraries that provide low-level, kubernetes-independent packages +;supplementing the @url{https://golang.org/pkg/#stdlib,Go standard libs}.") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-tools-0.0.0-20181030221726-6c7e314b6563 +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20181030221726-6c7e314b6563") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1m1n6r8v6mrlh0yvlz3qxz4s7jc7nis0zf3dfl1i6hqh5xblkwnw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-github-com-kisielk-errcheck-1.2.0 +; (package +; (name "go-github-com-kisielk-errcheck") +; (version "1.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kisielk/errcheck") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0am6g10ipdxw84byscm7shda654882wjcbinq5c4696m6mhi2qrd")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kisielk/errcheck")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20181030221726-6c7e314b6563" +; ,go-golang-org-x-tools-0.0.0-20181030221726-6c7e314b6563))) +; (home-page "https://github.com/kisielk/errcheck") +; (synopsis "errcheck") +; (description +; "errcheck is a program for checking for unchecked errors in go programs.") +; (license license:expat))) +; +;(define-public go-github-com-gogo-protobuf-1.3.1 +; (package +; (name "go-github-com-gogo-protobuf") +; (version "1.3.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/gogo/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0x77x64sxjgfhmbijqfzmj8h4ar25l2w97h01q3cqs1wk7zfnkhp")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/gogo/protobuf")) +; (propagated-inputs +; `(("go-github-com-kisielk-gotool-1.0.0" +; ,go-github-com-kisielk-gotool-1.0.0) +; ("go-github-com-kisielk-errcheck-1.2.0" +; ,go-github-com-kisielk-errcheck-1.2.0))) +; (home-page "https://github.com/gogo/protobuf") +; (synopsis "Protocol Buffers for Go with Gadgets") +; (description +; "gogoprotobuf is a fork of @url{https://github.com/golang/protobuf,golang/protobuf} with extra code generation features.") +; (license license:bsd-3))) +; +;(define-public go-github-com-gogo-googleapis-1.3.2 +; (package +; (name "go-github-com-gogo-googleapis") +; (version "1.3.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/gogo/googleapis") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "10670qprmk151n6pa1yclr89kgrvmalzvkq221xqbid83iv59s2h")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/gogo/googleapis")) +; (propagated-inputs +; `(("go-github-com-gogo-protobuf-1.3.1" +; ,go-github-com-gogo-protobuf-1.3.1))) +; (home-page "https://github.com/gogo/googleapis") +; (synopsis "Google APIs generated by gogoprotobuf") +; (description +; "The @url{https://github.com/gogo/grpc-example,grpc-example} includes an example usage of this repository.") +; (license license:asl2.0))) +; +;(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d +; (package +; (name "go-github-com-cpuguy83-go-md2man-v2") +; (version "2.0.0-20190314233015-f79a8a8ca69d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/cpuguy83/go-md2man") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) +; (propagated-inputs +; `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" +; ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) +; ("go-github-com-russross-blackfriday-v2-2.0.1" +; ,go-github-com-russross-blackfriday-v2-2.0.1) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0))) +; (home-page "https://github.com/cpuguy83/go-md2man") +; (synopsis "go-md2man") +; (description "Converts markdown into roff (man pages).") +; (license license:expat))) +; +;(define-public go-github-com-urfave-cli-1.22.1 +; (package +; (name "go-github-com-urfave-cli") +; (version "1.22.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/urfave/cli") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "04ymak18flqlfcn8lycmg8r3931al8dvr8f1cg9n4yjaskmg72v8")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/urfave/cli")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) +; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d" +; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d) +; ("go-github-com-burntsushi-toml-0.3.1" +; ,go-github-com-burntsushi-toml-0.3.1))) +; (home-page "https://github.com/urfave/cli") +; (synopsis "cli") +; (description +; "Package cli provides a minimal framework for creating and organizing command line +;Go applications. cli is designed to be easy to understand and write, the most simple +;cli application can be written as follows: +;") +; (license license:expat))) +; +;(define-public go-google-golang-org-grpc-1.27.1 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.27.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "09phrrsafgq6hnbw8cawvx44bdpk1p584fys17x1bwn0j0451zzs")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" +; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-github-com-google-go-cmp-0.2.0" +; ,go-github-com-google-go-cmp-0.2.0) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2) +; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" +; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) +; ("go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473" +; ,go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-containerd-containerd-1.5.8 +; (package +; (name "go-github-com-containerd-containerd") +; (version "1.5.8") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/containerd") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "18lzmpbhbk1kq1nwdp6zcxb577kp425l2ikcmb45jcwgqdwzla6l")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/containerd")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) +; ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) +; ("go-github-com-golang-protobuf-1.3.5" +; ,go-github-com-golang-protobuf-1.3.5) +; ("go-github-com-gogo-googleapis-1.3.2" +; ,go-github-com-gogo-googleapis-1.3.2) +; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" +; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) +; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) +; ("go-k8s-io-cri-api-0.20.6" ,go-k8s-io-cri-api-0.20.6) +; ("go-k8s-io-component-base-0.20.6" ,go-k8s-io-component-base-0.20.6) +; ("go-k8s-io-client-go-0.20.6" ,go-k8s-io-client-go-0.20.6) +; ("go-k8s-io-apiserver-0.20.6" ,go-k8s-io-apiserver-0.20.6) +; ("go-k8s-io-apimachinery-0.20.6" ,go-k8s-io-apimachinery-0.20.6) +; ("go-k8s-io-api-0.20.6" ,go-k8s-io-api-0.20.6) +; ("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) +; ("go-golang-org-x-sys-0.0.0-20210426230700-d19ff857e887" +; ,go-golang-org-x-sys-0.0.0-20210426230700-d19ff857e887) +; ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" +; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) +; ("go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110" +; ,go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110) +; ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) +; ("go-github-com-tchap-go-patricia-2.2.6+incompatible" +; ,go-github-com-tchap-go-patricia-2.2.6+incompatible) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-sirupsen-logrus-1.8.1" +; ,go-github-com-sirupsen-logrus-1.8.1) +; ("go-github-com-satori-go-uuid-1.2.0" +; ,go-github-com-satori-go-uuid-1.2.0) +; ("go-github-com-prometheus-client-golang-1.7.1" +; ,go-github-com-prometheus-client-golang-1.7.1) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-pelletier-go-toml-1.8.1" +; ,go-github-com-pelletier-go-toml-1.8.1) +; ("go-github-com-opencontainers-selinux-1.8.2" +; ,go-github-com-opencontainers-selinux-1.8.2) +; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417" +; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417) +; ("go-github-com-opencontainers-runc-1.0.2" +; ,go-github-com-opencontainers-runc-1.0.2) +; ("go-github-com-opencontainers-image-spec-1.0.1" +; ,go-github-com-opencontainers-image-spec-1.0.1) +; ("go-github-com-opencontainers-go-digest-1.0.0" +; ,go-github-com-opencontainers-go-digest-1.0.0) +; ("go-github-com-moby-sys-symlink-0.1.0" +; ,go-github-com-moby-sys-symlink-0.1.0) +; ("go-github-com-moby-sys-mountinfo-0.4.1" +; ,go-github-com-moby-sys-mountinfo-0.4.1) +; ("go-github-com-moby-locker-1.0.1" ,go-github-com-moby-locker-1.0.1) +; ("go-github-com-klauspost-compress-1.11.13" +; ,go-github-com-klauspost-compress-1.11.13) +; ("go-github-com-imdario-mergo-0.3.12" +; ,go-github-com-imdario-mergo-0.3.12) +; ("go-github-com-hashicorp-go-multierror-1.0.0" +; ,go-github-com-hashicorp-go-multierror-1.0.0) +; ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" +; ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) +; ("go-github-com-google-uuid-1.2.0" ,go-github-com-google-uuid-1.2.0) +; ("go-github-com-google-go-cmp-0.5.5" +; ,go-github-com-google-go-cmp-0.5.5) +; ("go-github-com-gogo-protobuf-1.3.2" +; ,go-github-com-gogo-protobuf-1.3.2) +; ("go-github-com-fsnotify-fsnotify-1.4.9" +; ,go-github-com-fsnotify-fsnotify-1.4.9) +; ("go-github-com-emicklei-go-restful-2.9.5+incompatible" +; ,go-github-com-emicklei-go-restful-2.9.5+incompatible) +; ("go-github-com-docker-go-units-0.4.0" +; ,go-github-com-docker-go-units-0.4.0) +; ("go-github-com-docker-go-metrics-0.0.1" +; ,go-github-com-docker-go-metrics-0.0.1) +; ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" +; ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1) +; ("go-github-com-coreos-go-systemd-v22-22.3.2" +; ,go-github-com-coreos-go-systemd-v22-22.3.2) +; ("go-github-com-containernetworking-plugins-0.9.1" +; ,go-github-com-containernetworking-plugins-0.9.1) +; ("go-github-com-containerd-zfs-1.0.0" +; ,go-github-com-containerd-zfs-1.0.0) +; ("go-github-com-containerd-typeurl-1.0.2" +; ,go-github-com-containerd-typeurl-1.0.2) +; ("go-github-com-containerd-ttrpc-1.1.0" +; ,go-github-com-containerd-ttrpc-1.1.0) +; ("go-github-com-containerd-nri-0.1.0" +; ,go-github-com-containerd-nri-0.1.0) +; ("go-github-com-containerd-imgcrypt-1.1.1" +; ,go-github-com-containerd-imgcrypt-1.1.1) +; ("go-github-com-containerd-go-runc-1.0.0" +; ,go-github-com-containerd-go-runc-1.0.0) +; ("go-github-com-containerd-go-cni-1.0.2" +; ,go-github-com-containerd-go-cni-1.0.2) +; ("go-github-com-containerd-fifo-1.0.0" +; ,go-github-com-containerd-fifo-1.0.0) +; ("go-github-com-containerd-continuity-0.1.0" +; ,go-github-com-containerd-continuity-0.1.0) +; ("go-github-com-containerd-console-1.0.2" +; ,go-github-com-containerd-console-1.0.2) +; ("go-github-com-containerd-cgroups-1.0.1" +; ,go-github-com-containerd-cgroups-1.0.1) +; ("go-github-com-containerd-btrfs-1.0.0" +; ,go-github-com-containerd-btrfs-1.0.0) +; ("go-github-com-containerd-aufs-1.0.0" +; ,go-github-com-containerd-aufs-1.0.0) +; ("go-github-com-microsoft-hcsshim-0.8.23" +; ,go-github-com-microsoft-hcsshim-0.8.23) +; ("go-github-com-microsoft-go-winio-0.4.17" +; ,go-github-com-microsoft-go-winio-0.4.17))) +; (home-page "https://github.com/containerd/containerd") +; (synopsis "Now Recruiting") +; (description +; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") +; (license license:asl2.0))) +; +;(define-public go-github-com-azure-azure-sdk-for-go-56.3.0+incompatible +; (package +; (name "go-github-com-azure-azure-sdk-for-go") +; (version "56.3.0+incompatible") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/Azure/azure-sdk-for-go") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1c2z9wnjkm9v6294pdfh26ksxyiy9slfidc297xk0jbclnddf6k5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/Azure/azure-sdk-for-go")) +; (home-page "https://github.com/Azure/azure-sdk-for-go") +; (synopsis "Azure SDK for Go") +; (description +; "Package sdk provides Go packages for managing and using Azure services. +;") +; (license license:expat))) +; +;(define-public go-github-com-go-sql-driver-mysql-1.5.0 +; (package +; (name "go-github-com-go-sql-driver-mysql") +; (version "1.5.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/go-sql-driver/mysql") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "11x0m9yf3kdnf6981182r824psgxwfaqhn3x3in4yiidp0w0hk3v")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/go-sql-driver/mysql")) +; (home-page "https://github.com/go-sql-driver/mysql") +; (synopsis "Go-MySQL-Driver") +; (description +; "Package mysql provides a MySQL driver for Go's database/sql package. +;") +; (license license:mpl2.0))) +; +;(define-public go-github-com-jmespath-go-jmespath-0.3.0 +; (package +; (name "go-github-com-jmespath-go-jmespath") +; (version "0.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/jmespath/go-jmespath") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "12qgp7yb7yfjxhd311kb820fcjmg7gd4hp2fc4v6x8s7121pwnjp")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/jmespath/go-jmespath")) +; (propagated-inputs +; `(("go-github-com-stretchr-testify-1.5.1" +; ,go-github-com-stretchr-testify-1.5.1))) +; (home-page "https://github.com/jmespath/go-jmespath") +; (synopsis "go-jmespath - A JMESPath implementation in Go") +; (description +; "go-jmespath is a GO implementation of JMESPath, +;which is a query language for JSON. It will take a JSON +;document and transform it into another JSON document +;through a JMESPath expression.") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-net-0.0.0-20200202094626-16171245cfb2 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20200202094626-16171245cfb2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0pb4ap1h28cc4kr59lz94895wvsd2pf1vmd2by6b11ww8mkicn4s")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-github-com-aws-aws-sdk-go-1.34.9 +; (package +; (name "go-github-com-aws-aws-sdk-go") +; (version "1.34.9") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/aws/aws-sdk-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0sjh7m6bf4wvyfzx6wx46n4bg5d9vrwwjy0h5ykqwfh8cq3f77ib")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/aws/aws-sdk-go")) +; (propagated-inputs +; `(("go-golang-org-x-net-0.0.0-20200202094626-16171245cfb2" +; ,go-golang-org-x-net-0.0.0-20200202094626-16171245cfb2) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-jmespath-go-jmespath-0.3.0" +; ,go-github-com-jmespath-go-jmespath-0.3.0) +; ("go-github-com-go-sql-driver-mysql-1.5.0" +; ,go-github-com-go-sql-driver-mysql-1.5.0))) +; (home-page "https://github.com/aws/aws-sdk-go") +; (synopsis "AWS SDK for Go") +; (description +; "Package sdk is the official AWS SDK for the Go programming language. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-bitly-go-simplejson-0.5.0 +; (package +; (name "go-github-com-bitly-go-simplejson") +; (version "0.5.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/bitly/go-simplejson") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0n9f9dz1jn1jx86d48569nznpjn9fmq3knn7r65xpy7jhih284jj")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/bitly/go-simplejson")) +; (home-page "https://github.com/bitly/go-simplejson") +; (synopsis "go-simplejson") +; (description "a Go package to interact with arbitrary JSON") +; (license license:expat))) +; +;(define-public go-github-com-denverdino-aliyungo-0.0.0-20190125010748-a747050bb1ba +; (package +; (name "go-github-com-denverdino-aliyungo") +; (version "0.0.0-20190125010748-a747050bb1ba") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/denverdino/aliyungo") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0rc16ciz8gjpn36fhp0qz1ns0inlvjaz07z1qffl9ni4b49hhwkn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/denverdino/aliyungo")) +; (home-page "https://github.com/denverdino/aliyungo") +; (synopsis "AliyunGo: Go SDK for Aliyun Services") +; (description +; "This is an unofficial Go SDK for Aliyun services. You are welcome for contribution.") +; (license license:asl2.0))) +; +;(define-public go-github-com-dnaeon-go-vcr-1.0.1 +; (package +; (name "go-github-com-dnaeon-go-vcr") +; (version "1.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/dnaeon/go-vcr") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1d0kpqr12qrqlamz5a47bp05mx49za2v6l1k7c6z71xahfmb7v2d")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/dnaeon/go-vcr")) +; (home-page "https://github.com/dnaeon/go-vcr") +; (synopsis "go-vcr") +; (description +; "@code{go-vcr} simplifies testing by recording your HTTP interactions and +;replaying them in future runs in order to provide fast, deterministic +;and accurate testing of your code.") +; (license license:bsd-2))) +; +;(define-public go-github-com-gofrs-uuid-4.0.0+incompatible +; (package +; (name "go-github-com-gofrs-uuid") +; (version "4.0.0+incompatible") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/gofrs/uuid") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "08ma37vvrni836fxlswjd3bl2sdqyw3nxv6zdi1nyncnl9l0421k")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/gofrs/uuid")) +; (home-page "https://github.com/gofrs/uuid") +; (synopsis "UUID") +; (description +; "Package uuid provides implementations of the Universally Unique Identifier +;(UUID), as specified in RFC-4122 and the Peabody RFC Draft (revision 02). +;") +; (license license:expat))) +; +;(define-public go-github-com-mitchellh-osext-0.0.0-20151018003038-5e2d6d41470f +; (package +; (name "go-github-com-mitchellh-osext") +; (version "0.0.0-20151018003038-5e2d6d41470f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mitchellh/osext") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0j635c1cx7crs5wlirlk713l36x70pnlmqrzd3x3bjgnjg194jrk")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mitchellh/osext")) +; (home-page "https://github.com/mitchellh/osext") +; (synopsis "osext") +; (description "Extensions to the standard \"os\" package. +;") +; (license license:zlib))) +; +;(define-public go-github-com-ncw-swift-1.0.47 +; (package +; (name "go-github-com-ncw-swift") +; (version "1.0.47") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/ncw/swift") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0wxz4lvy6pjabghq8inby2fyh58ysclayccziawc8fd7a67kh4cd")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/ncw/swift")) +; (home-page "https://github.com/ncw/swift") +; (synopsis "Swift") +; (description +; "Package swift provides an easy to use interface to Swift / Openstack Object Storage / Rackspace Cloud Files +;") +; (license license:expat))) +; +;(define-public go-github-com-spf13-cobra-0.0.3 +; (package +; (name "go-github-com-spf13-cobra") +; (version "0.0.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/spf13/cobra") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1q1nsx05svyv9fv3fy6xv6gs9ffimkyzsfm49flvl3wnvf1ncrkd")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/spf13/cobra")) +; (home-page "https://github.com/spf13/cobra") +; (synopsis "Table of Contents") +; (description +; "Package cobra is a commander providing a simple interface to create powerful modern CLI interfaces. +;In addition to providing an interface, Cobra simultaneously provides a controller to organize your application code. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20210817164053-32db794688a5 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20210817164053-32db794688a5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0arh5rhahrjzmlifmbgswwc0kjkgmhps6g4hzia0i6ismsk74n48")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) +; ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" +; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) +; ("go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1" +; ,go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1) +; ("go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110" +; ,go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110))) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-api-0.0.0-20160322025152-9bf6e6e569ff +; (package +; (name "go-google-golang-org-api") +; (version "0.0.0-20160322025152-9bf6e6e569ff") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-api-go-client") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "02zn0zr4jrkdnxhxa0h3vm30j27bsc4lcswrffilkrafbspjsrxz")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/api")) +; (home-page "https://google.golang.org/api") +; (synopsis "Google APIs Client Library for Go") +; (description +; "Package api is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of +;sub-packages. +;") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-cloud-0.0.0-20151119220103-975617b05ea8 +; (package +; (name "go-google-golang-org-cloud") +; (version "0.0.0-20151119220103-975617b05ea8") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-cloud-go") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "156jhn1kakr98jfk830y4yr8lhisdj6qs38ypa42ddmgza9qcmdd")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/cloud")) +; (home-page "https://google.golang.org/cloud") +; (synopsis "Google Cloud Client Libraries for Go") +; (description +; "Package cloud is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +;of sub-packages. +;") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-grpc-0.0.0-20160317175043-d3ddb4469d5a +; (package +; (name "go-google-golang-org-grpc") +; (version "0.0.0-20160317175043-d3ddb4469d5a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0p45by0s66ragvx9hs8gkz1k1gy8456y794b5zspa0b86y2b53w9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-gopkg-in-check-v1-1.0.0-20141024133853-64131543e789 +; (package +; (name "go-gopkg-in-check-v1") +; (version "1.0.0-20141024133853-64131543e789") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/check.v1") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "01sz40asq0zwf6j7q2hww33wr1cflglngq8xazw466c9d1f9kyyh")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) +; (home-page "https://gopkg.in/check.v1") +; (synopsis "Instructions") +; (description +; "Package check is a rich testing extension for Go's testing package. +;") +; (license license:bsd-2))) +; +;(define-public go-github-com-distribution-distribution-v3-3.0.0-20211118083504-a29a3c99a684 +; (package +; (name "go-github-com-distribution-distribution-v3") +; (version "3.0.0-20211118083504-a29a3c99a684") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/distribution/distribution") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1v0larzrvgm4hyq5hj4s7sx0rdximk715n95z294mqr7kpsbjfrh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/distribution/distribution/v3")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) +; ("go-gopkg-in-check-v1-1.0.0-20141024133853-64131543e789" +; ,go-gopkg-in-check-v1-1.0.0-20141024133853-64131543e789) +; ("go-google-golang-org-grpc-0.0.0-20160317175043-d3ddb4469d5a" +; ,go-google-golang-org-grpc-0.0.0-20160317175043-d3ddb4469d5a) +; ("go-google-golang-org-cloud-0.0.0-20151119220103-975617b05ea8" +; ,go-google-golang-org-cloud-0.0.0-20151119220103-975617b05ea8) +; ("go-google-golang-org-api-0.0.0-20160322025152-9bf6e6e569ff" +; ,go-google-golang-org-api-0.0.0-20160322025152-9bf6e6e569ff) +; ("go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45" +; ,go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45) +; ("go-golang-org-x-crypto-0.0.0-20210817164053-32db794688a5" +; ,go-golang-org-x-crypto-0.0.0-20210817164053-32db794688a5) +; ("go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20140908184405-b21fdbd4370f" +; ,go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20140908184405-b21fdbd4370f) +; ("go-github-com-yvasiyarov-gorelic-0.0.0-20141212073537-a9bba5b9ab50" +; ,go-github-com-yvasiyarov-gorelic-0.0.0-20141212073537-a9bba5b9ab50) +; ("go-github-com-yvasiyarov-go-metrics-0.0.0-20140926110328-57bccd1ccd43" +; ,go-github-com-yvasiyarov-go-metrics-0.0.0-20140926110328-57bccd1ccd43) +; ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) +; ("go-github-com-spf13-cobra-0.0.3" ,go-github-com-spf13-cobra-0.0.3) +; ("go-github-com-sirupsen-logrus-1.8.1" +; ,go-github-com-sirupsen-logrus-1.8.1) +; ("go-github-com-opencontainers-image-spec-1.0.2" +; ,go-github-com-opencontainers-image-spec-1.0.2) +; ("go-github-com-opencontainers-go-digest-1.0.0" +; ,go-github-com-opencontainers-go-digest-1.0.0) +; ("go-github-com-ncw-swift-1.0.47" ,go-github-com-ncw-swift-1.0.47) +; ("go-github-com-mitchellh-osext-0.0.0-20151018003038-5e2d6d41470f" +; ,go-github-com-mitchellh-osext-0.0.0-20151018003038-5e2d6d41470f) +; ("go-github-com-mitchellh-mapstructure-1.1.2" +; ,go-github-com-mitchellh-mapstructure-1.1.2) +; ("go-github-com-inconshreveable-mousetrap-1.0.0" +; ,go-github-com-inconshreveable-mousetrap-1.0.0) +; ("go-github-com-gorilla-mux-1.8.0" ,go-github-com-gorilla-mux-1.8.0) +; ("go-github-com-gorilla-handlers-1.5.1" +; ,go-github-com-gorilla-handlers-1.5.1) +; ("go-github-com-gomodule-redigo-1.8.2" +; ,go-github-com-gomodule-redigo-1.8.2) +; ("go-github-com-gofrs-uuid-4.0.0+incompatible" +; ,go-github-com-gofrs-uuid-4.0.0+incompatible) +; ("go-github-com-docker-libtrust-0.0.0-20150114040149-fa567046d9b1" +; ,go-github-com-docker-libtrust-0.0.0-20150114040149-fa567046d9b1) +; ("go-github-com-docker-go-metrics-0.0.1" +; ,go-github-com-docker-go-metrics-0.0.1) +; ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" +; ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) +; ("go-github-com-dnaeon-go-vcr-1.0.1" +; ,go-github-com-dnaeon-go-vcr-1.0.1) +; ("go-github-com-denverdino-aliyungo-0.0.0-20190125010748-a747050bb1ba" +; ,go-github-com-denverdino-aliyungo-0.0.0-20190125010748-a747050bb1ba) +; ("go-github-com-bugsnag-panicwrap-0.0.0-20151223152923-e2c28503fcd0" +; ,go-github-com-bugsnag-panicwrap-0.0.0-20151223152923-e2c28503fcd0) +; ("go-github-com-bugsnag-osext-0.0.0-20130617224835-0dd3f918b21b" +; ,go-github-com-bugsnag-osext-0.0.0-20130617224835-0dd3f918b21b) +; ("go-github-com-bugsnag-bugsnag-go-0.0.0-20141110184014-b1d153021fcd" +; ,go-github-com-bugsnag-bugsnag-go-0.0.0-20141110184014-b1d153021fcd) +; ("go-github-com-bshuster-repo-logrus-logstash-hook-1.0.0" +; ,go-github-com-bshuster-repo-logrus-logstash-hook-1.0.0) +; ("go-github-com-bitly-go-simplejson-0.5.0" +; ,go-github-com-bitly-go-simplejson-0.5.0) +; ("go-github-com-aws-aws-sdk-go-1.34.9" +; ,go-github-com-aws-aws-sdk-go-1.34.9) +; ("go-github-com-shopify-logrus-bugsnag-0.0.0-20171204204709-577dee27f20d" +; ,go-github-com-shopify-logrus-bugsnag-0.0.0-20171204204709-577dee27f20d) +; ("go-github-com-azure-go-autorest-autorest-to-0.4.0" +; ,go-github-com-azure-go-autorest-autorest-to-0.4.0) +; ("go-github-com-azure-go-autorest-autorest-adal-0.9.15" +; ,go-github-com-azure-go-autorest-autorest-adal-0.9.15) +; ("go-github-com-azure-go-autorest-autorest-0.11.20" +; ,go-github-com-azure-go-autorest-autorest-0.11.20) +; ("go-github-com-azure-azure-sdk-for-go-56.3.0+incompatible" +; ,go-github-com-azure-azure-sdk-for-go-56.3.0+incompatible))) +; (home-page "https://github.com/distribution/distribution") +; (synopsis "Distribution") +; (description +; "Package distribution will define the interfaces for the components of +;docker distribution. The goal is to allow users to reliably package, ship +;and store content related to docker images. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-docker-cli-20.10.11+incompatible +; (package +; (name "go-github-com-docker-cli") +; (version "20.10.11+incompatible") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/docker/cli") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0dmmxn9ahyq2yq935fvp1b6ka6s43ih9nh6wwx8v6rjg7y35rb1n")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/docker/cli")) +; (home-page "https://github.com/docker/cli") +; (synopsis "docker/cli") +; (description +; "This repository is the home of the cli used in the Docker CE and +;Docker EE products.") +; (license license:asl2.0))) +; +;(define-public go-github-com-docker-docker-20.10.11+incompatible +; (package +; (name "go-github-com-docker-docker") +; (version "20.10.11+incompatible") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/moby/moby") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1h1r66j57l073iba6hwrhcz779vaym68l1gfycdiw2d2gglfrdgr")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/docker/docker")) +; (home-page "https://github.com/docker/docker") +; (synopsis "The Moby Project") +; (description +; "Moby is an open-source project created by Docker to enable and accelerate software containerization.") +; (license license:asl2.0))) +; +;(define-public go-github-com-opencontainers-go-digest-1.0.0 +; (package +; (name "go-github-com-opencontainers-go-digest") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/go-digest") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0i5acjajvr6hi9zb7gxwifd8w28y884cv7cx36adj8lngj647xbi")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/go-digest")) +; (home-page "https://github.com/opencontainers/go-digest") +; (synopsis "go-digest") +; (description +; "Package digest provides a generalized type to opaquely represent message +;digests and their operations within the registry. The Digest type is +;designed to serve as a flexible identifier in a content-addressable system. +;More importantly, it provides tools and wrappers to work with +;hash.Hash-based digests with little effort. +;") +; (license (list license:asl2.0 license:cc-by-sa4.0)))) +; +;(define-public go-github-com-opencontainers-image-spec-1.0.2 +; (package +; (name "go-github-com-opencontainers-image-spec") +; (version "1.0.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/image-spec") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1wcw1z39wjx338406ga86a41f5ird0yc4ab3c70nfhkpkvjjzhkm")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/image-spec")) +; (home-page "https://github.com/opencontainers/image-spec") +; (synopsis "OCI Image Format Specification") +; (description +; "The OCI Image Format project creates and maintains the software shipping container image format spec (OCI Image Format).") +; (license license:asl2.0))) +; +;(define-public go-github-com-phayes-freeport-0.0.0-20180830031419-95f893ade6f2 +; (package +; (name "go-github-com-phayes-freeport") +; (version "0.0.0-20180830031419-95f893ade6f2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/phayes/freeport") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "09kkm359hg8xl6qj8fqrs5fkrzn82i7frr5i0vy1kkfvd9ng6n90")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/phayes/freeport")) +; (home-page "https://github.com/phayes/freeport") +; (synopsis "FreePort") +; (description "Get a free open TCP port that is ready to use.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20191026070338-33540a1f6037") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0fjcv0vzvi6za0b4xmnk3932pr9f9gczzf03y0kgq3ry9rqg169y")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-sirupsen-logrus-1.8.1 +; (package +; (name "go-github-com-sirupsen-logrus") +; (version "1.8.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/sirupsen/logrus") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0rvqzic2zz7fpxyizmqxwmhv1m52ii9bgxnqa6km8wsa0l08wh42")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/sirupsen/logrus")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037" +; ,go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037) +; ("go-github-com-stretchr-testify-1.2.2" +; ,go-github-com-stretchr-testify-1.2.2) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://github.com/sirupsen/logrus") +; (synopsis "Logrus") +; (description +; "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. +;") +; (license license:expat))) +; +;(define-public go-github-com-russross-blackfriday-v2-2.0.1 +; (package +; (name "go-github-com-russross-blackfriday-v2") +; (version "2.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/russross/blackfriday") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0nlz7isdd4rgnwzs68499hlwicxz34j2k2a0b8jy0y7ycd2bcr5j")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/russross/blackfriday/v2")) +; (home-page "https://github.com/russross/blackfriday") +; (synopsis "Blackfriday") +; (description "Package blackfriday is a markdown processor. +;") +; (license license:bsd-2))) +; +;(define-public go-github-com-shurcool-sanitized-anchor-name-1.0.0 +; (package +; (name "go-github-com-shurcool-sanitized-anchor-name") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/shurcooL/sanitized_anchor_name") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1gv9p2nr46z80dnfjsklc6zxbgk96349sdsxjz05f3z6wb6m5l8f")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/shurcooL/sanitized_anchor_name")) +; (home-page "https://github.com/shurcooL/sanitized_anchor_name") +; (synopsis "sanitized_anchor_name") +; (description +; "Package sanitized_anchor_name provides a func to create sanitized anchor names. +;") +; (license license:expat))) +; +;(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0 +; (package +; (name "go-github-com-cpuguy83-go-md2man-v2") +; (version "2.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/cpuguy83/go-md2man") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) +; (propagated-inputs +; `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" +; ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) +; ("go-github-com-russross-blackfriday-v2-2.0.1" +; ,go-github-com-russross-blackfriday-v2-2.0.1) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0))) +; (home-page "https://github.com/cpuguy83/go-md2man") +; (synopsis "go-md2man") +; (description "Converts markdown into roff (man pages).") +; (license license:expat))) +; +;(define-public go-github-com-hashicorp-go-cleanhttp-0.5.1 +; (package +; (name "go-github-com-hashicorp-go-cleanhttp") +; (version "0.5.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/go-cleanhttp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "07kx3fhryqmaw3czacmm11qwx63js2q8cfq967vphk7xg9q377kk")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hashicorp/go-cleanhttp")) +; (home-page "https://github.com/hashicorp/go-cleanhttp") +; (synopsis "cleanhttp") +; (description +; "Package cleanhttp offers convenience utilities for acquiring \"clean\" +;http.Transport and http.Client structs. +;") +; (license license:mpl2.0))) +; +;(define-public go-github-com-mitchellh-go-homedir-1.0.0 +; (package +; (name "go-github-com-mitchellh-go-homedir") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mitchellh/go-homedir") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0f0z0aa4wivk4z1y503dmnw0k0g0g403dly8i4q263gfshs82sbq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mitchellh/go-homedir")) +; (home-page "https://github.com/mitchellh/go-homedir") +; (synopsis "go-homedir") +; (description +; "This is a Go library for detecting the user's home directory without +;the use of cgo, so the library can be used in cross-compilation environments.") +; (license license:expat))) +; +;(define-public go-github-com-hashicorp-go-rootcerts-1.0.0 +; (package +; (name "go-github-com-hashicorp-go-rootcerts") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/go-rootcerts") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0wply5zhj1rcybr932zbwm1i18q5wr7kgkhnz6bw6mk1n9yr8lfj")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hashicorp/go-rootcerts")) +; (propagated-inputs +; `(("go-github-com-mitchellh-go-homedir-1.0.0" +; ,go-github-com-mitchellh-go-homedir-1.0.0))) +; (home-page "https://github.com/hashicorp/go-rootcerts") +; (synopsis "rootcerts") +; (description +; "Package rootcerts contains functions to aid in loading CA certificates for +;TLS connections. +;") +; (license license:mpl2.0))) +; +;(define-public go-github-com-armon-circbuf-0.0.0-20150827004946-bbbad097214e +; (package +; (name "go-github-com-armon-circbuf") +; (version "0.0.0-20150827004946-bbbad097214e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/armon/circbuf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1idpr0lzb2px2p3wgfq2276yl7jpaz43df6n91kf790404s4zmk3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/armon/circbuf")) +; (home-page "https://github.com/armon/circbuf") +; (synopsis "circbuf") +; (description +; "This repository provides the @code{circbuf} package. This provides a @code{Buffer} object +;which is a circular (or ring) buffer. It has a fixed size, but can be written +;to infinitely. Only the last @code{size} bytes are ever retained. The buffer implements +;the @code{io.Writer} interface.") +; (license license:expat))) +; +;(define-public go-github-com-hashicorp-go-syslog-1.0.0 +; (package +; (name "go-github-com-hashicorp-go-syslog") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/go-syslog") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "09vccqggz212cg0jir6vv708d6mx0f9w5bxrcdah3h6chgmal6v1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hashicorp/go-syslog")) +; (home-page "https://github.com/hashicorp/go-syslog") +; (synopsis "go-syslog") +; (description +; "This repository provides a very simple @code{gsyslog} package. The point of this +;package is to allow safe importing of syslog without introducing cross-compilation +;issues. The stdlib @code{log/syslog} cannot be imported on Windows systems, and without +;conditional compilation this adds complications.") +; (license license:expat))) +; +;(define-public go-github-com-hashicorp-go-uuid-1.0.1 +; (package +; (name "go-github-com-hashicorp-go-uuid") +; (version "1.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/go-uuid") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0jvb88m0rq41bwgirsadgw7mnayl27av3gd2vqa3xvxp3fy0hp5k")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hashicorp/go-uuid")) +; (home-page "https://github.com/hashicorp/go-uuid") +; (synopsis "uuid") +; (description +; "Generates UUID-format strings using high quality, bytes. It is @strong{not} intended to be RFC compliant, merely to use a well-understood string representation of a 128-bit value. It can also parse UUID-format strings into their component bytes.") +; (license license:mpl2.0))) +; +;(define-public go-github-com-hashicorp-logutils-1.0.0 +; (package +; (name "go-github-com-hashicorp-logutils") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/logutils") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "076wf4sh5p3f953ndqk1cc0x7jhmlqrxak9953rz79rcdw77rjvv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hashicorp/logutils")) +; (home-page "https://github.com/hashicorp/logutils") +; (synopsis "logutils") +; (description +; "Package logutils augments the standard log package with levels. +;") +; (license license:mpl2.0))) +; +;(define-public go-github-com-hashicorp-go-net-0.0.1 +; (package +; (name "go-github-com-hashicorp-go-net") +; (version "0.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/go.net") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "06arwi95xp5rxyz7rndvhc3wlwg0jn9a5z6djf3yyg5h9zfab9i4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hashicorp/go.net")) +; (home-page "https://github.com/hashicorp/go.net") +; (synopsis #f) +; (description #f) +; (license license:bsd-3))) +; +;(define-public go-github-com-hashicorp-mdns-1.0.0 +; (package +; (name "go-github-com-hashicorp-mdns") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/mdns") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0qr4l91hhi97s8a1isnrw3s4q8pjzacqiks870vnwh15v7ig3axd")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hashicorp/mdns")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20181026203630-95b1ffbd15a5" +; ,go-golang-org-x-sys-0.0.0-20181026203630-95b1ffbd15a5) +; ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" +; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) +; ("go-golang-org-x-net-0.0.0-20181023162649-9b4f9f5ad519" +; ,go-golang-org-x-net-0.0.0-20181023162649-9b4f9f5ad519) +; ("go-golang-org-x-crypto-0.0.0-20181029021203-45a5f77698d3" +; ,go-golang-org-x-crypto-0.0.0-20181029021203-45a5f77698d3) +; ("go-github-com-miekg-dns-1.0.14" ,go-github-com-miekg-dns-1.0.14) +; ("go-github-com-hashicorp-go-net-0.0.1" +; ,go-github-com-hashicorp-go-net-0.0.1))) +; (home-page "https://github.com/hashicorp/mdns") +; (synopsis "mdns") +; (description +; "Simple mDNS client/server library in Golang. mDNS or Multicast DNS can be +;used to discover services on the local network without the use of an authoritative +;DNS server. This enables peer-to-peer discovery. It is important to note that many +;networks restrict the use of multicasting, which prevents mDNS from functioning. +;Notably, multicast cannot be used in any sort of cloud, or shared infrastructure +;environment. However it works well in most office, home, or private infrastructure +;environments.") +; (license license:expat))) +; +;(define-public go-github-com-armon-go-metrics-0.0.0-20180917152333-f0300d1749da +; (package +; (name "go-github-com-armon-go-metrics") +; (version "0.0.0-20180917152333-f0300d1749da") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/armon/go-metrics") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "13l7c35ps0r27vxfil2w0xhhc7w5rh00awvlmn4cz0a937b9ffpv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/armon/go-metrics")) +; (home-page "https://github.com/armon/go-metrics") +; (synopsis "go-metrics") +; (description +; "This library provides a @code{metrics} package which can be used to instrument code, +;expose application metrics, and profile runtime performance in a flexible manner.") +; (license license:expat))) +; +;(define-public go-github-com-hashicorp-go-uuid-1.0.0 +; (package +; (name "go-github-com-hashicorp-go-uuid") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/go-uuid") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1jflywlani7583qm4ysph40hsgx3n66n5zr2k84i057fmwa1ypfy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hashicorp/go-uuid")) +; (home-page "https://github.com/hashicorp/go-uuid") +; (synopsis "uuid") +; (description +; "Generates UUID-format strings using high quality, bytes. It is @strong{not} intended to be RFC compliant, merely to use a well-understood string representation of a 128-bit value. It can also parse UUID-format strings into their component bytes.") +; (license license:mpl2.0))) +; +;(define-public go-github-com-hashicorp-go-immutable-radix-1.0.0 +; (package +; (name "go-github-com-hashicorp-go-immutable-radix") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/go-immutable-radix") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1v3nmsnk1s8bzpclrhirz7iq0g5xxbw9q5gvrg9ss6w9crs72qr6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hashicorp/go-immutable-radix")) +; (propagated-inputs +; `(("go-github-com-hashicorp-golang-lru-0.5.0" +; ,go-github-com-hashicorp-golang-lru-0.5.0) +; ("go-github-com-hashicorp-go-uuid-1.0.0" +; ,go-github-com-hashicorp-go-uuid-1.0.0))) +; (home-page "https://github.com/hashicorp/go-immutable-radix") +; (synopsis "go-immutable-radix") +; (description +; "This package provides the @code{iradix} package that implements an immutable @url{http://en.wikipedia.org/wiki/Radix_tree,radix tree}. +;The package only provides a single @code{Tree} implementation, optimized for sparse nodes.") +; (license license:mpl2.0))) +; +;(define-public go-github-com-hashicorp-go-msgpack-0.5.3 +; (package +; (name "go-github-com-hashicorp-go-msgpack") +; (version "0.5.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/go-msgpack") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "00jv0ajqd58pkb2yyhlrjp0rv1mvb1ijx3yqjyikcmzvk9jb4h5m")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hashicorp/go-msgpack")) +; (home-page "https://github.com/hashicorp/go-msgpack") +; (synopsis "go-codec") +; (description "This repository contains the @code{go-codec} library.") +; (license license:expat))) +; +;(define-public go-github-com-hashicorp-go-sockaddr-1.0.0 +; (package +; (name "go-github-com-hashicorp-go-sockaddr") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/go-sockaddr") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1yn1xq8ysn0lszmkygz3a9lgpswbz1p91jv7q8l20s4749a22xgi")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hashicorp/go-sockaddr")) +; (home-page "https://github.com/hashicorp/go-sockaddr") +; (synopsis "go-sockaddr") +; (description +; "Package sockaddr is a Go implementation of the UNIX socket family data types and +;related helper functions. +;") +; (license license:mpl2.0))) +; +;(define-public go-github-com-miekg-dns-1.0.14 +; (package +; (name "go-github-com-miekg-dns") +; (version "1.0.14") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/miekg/dns") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1qgli6yp59bv6vc6zag84cwxmcxgnyxm1q2f301yyijk3wy5b2ak")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/miekg/dns")) +; (home-page "https://github.com/miekg/dns") +; (synopsis "Alternative (more granular) approach to a DNS library") +; (description +; "Package dns implements a full featured interface to the Domain Name System. +;Both server- and client-side programming is supported. The package allows +;complete control over what is sent out to the DNS. The API follows the +;less-is-more principle, by presenting a small, clean interface. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-sean--seed-0.0.0-20170313163322-e2103e2c3529 +; (package +; (name "go-github-com-sean--seed") +; (version "0.0.0-20170313163322-e2103e2c3529") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/sean-/seed") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0glir8jxi1w7aga2jwdb63pp1h8q4whknili7xixsqzwyy716125")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/sean-/seed")) +; (home-page "https://github.com/sean-/seed") +; (synopsis "- Quickly Seed Go's Random Number Generator") +; (description +; "Boiler-plate to securely @url{https://en.wikipedia.org/wiki/Random_seed,seed} Go's +;random number generator (if possible). This library isn't anything fancy, it's +;just a canonical way of seeding Go's random number generator. Cribbed from +;@url{https://github.com/hashicorp/nomad/commit/f89a993ec6b91636a3384dd568898245fbc273a1,(code Nomad)} +;before it was moved into +;@url{https://github.com/hashicorp/consul/commit/d695bcaae6e31ee307c11fdf55bb0bf46ea9fcf4,(code Consul)} +;and made into a helper function, and now further modularized to be a super +;lightweight and reusable library.") +; (license #f))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20181029021203-45a5f77698d3 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20181029021203-45a5f77698d3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0636jjj89wkzqchajwwzgcn4aafc334p70nawh9jzavg2mkx0ch4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20181023162649-9b4f9f5ad519 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20181023162649-9b4f9f5ad519") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "06hvxy113h76f31gv1mq6vdr6xja1zv0fdig686l2b4y2b6swych")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20181026203630-95b1ffbd15a5 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20181026203630-95b1ffbd15a5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "06c3lf93wzf5kkfmzmgn75x4c0a7159vrwjrqh6zh9zxzqq5whpq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-hashicorp-memberlist-0.1.3 +; (package +; (name "go-github-com-hashicorp-memberlist") +; (version "0.1.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/memberlist") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0k1spq7dagvqj3baqw2dhxx1zxrb02y6m3apzr3a7gyirii890g3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hashicorp/memberlist")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20181026203630-95b1ffbd15a5" +; ,go-golang-org-x-sys-0.0.0-20181026203630-95b1ffbd15a5) +; ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" +; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) +; ("go-golang-org-x-net-0.0.0-20181023162649-9b4f9f5ad519" +; ,go-golang-org-x-net-0.0.0-20181023162649-9b4f9f5ad519) +; ("go-golang-org-x-crypto-0.0.0-20181029021203-45a5f77698d3" +; ,go-golang-org-x-crypto-0.0.0-20181029021203-45a5f77698d3) +; ("go-github-com-stretchr-testify-1.2.2" +; ,go-github-com-stretchr-testify-1.2.2) +; ("go-github-com-sean--seed-0.0.0-20170313163322-e2103e2c3529" +; ,go-github-com-sean--seed-0.0.0-20170313163322-e2103e2c3529) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-pascaldekloe-goe-0.0.0-20180627143212-57f6aae5913c" +; ,go-github-com-pascaldekloe-goe-0.0.0-20180627143212-57f6aae5913c) +; ("go-github-com-miekg-dns-1.0.14" ,go-github-com-miekg-dns-1.0.14) +; ("go-github-com-hashicorp-go-sockaddr-1.0.0" +; ,go-github-com-hashicorp-go-sockaddr-1.0.0) +; ("go-github-com-hashicorp-go-multierror-1.0.0" +; ,go-github-com-hashicorp-go-multierror-1.0.0) +; ("go-github-com-hashicorp-go-msgpack-0.5.3" +; ,go-github-com-hashicorp-go-msgpack-0.5.3) +; ("go-github-com-hashicorp-go-immutable-radix-1.0.0" +; ,go-github-com-hashicorp-go-immutable-radix-1.0.0) +; ("go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c" +; ,go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1) +; ("go-github-com-armon-go-metrics-0.0.0-20180917152333-f0300d1749da" +; ,go-github-com-armon-go-metrics-0.0.0-20180917152333-f0300d1749da))) +; (home-page "https://github.com/hashicorp/memberlist") +; (synopsis "memberlist") +; (description +; "memberlist is a library that manages cluster +;membership and member failure detection using a gossip based protocol. +;") +; (license license:mpl2.0))) +; +;(define-public go-github-com-armon-go-radix-0.0.0-20180808171621-7fddfc383310 +; (package +; (name "go-github-com-armon-go-radix") +; (version "0.0.0-20180808171621-7fddfc383310") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/armon/go-radix") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0y8chspn14n9xpsfb9gxnnf819rfpriaz64v81p7873a42kkhxb4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/armon/go-radix")) +; (home-page "https://github.com/armon/go-radix") +; (synopsis "go-radix") +; (description +; "This package provides the @code{radix} package that implements a @url{http://en.wikipedia.org/wiki/Radix_tree,radix tree}. +;The package only provides a single @code{Tree} implementation, optimized for sparse nodes.") +; (license license:expat))) +; +;(define-public go-github-com-bgentry-speakeasy-0.1.0 +; (package +; (name "go-github-com-bgentry-speakeasy") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/bgentry/speakeasy") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "02dfrj0wyphd3db9zn2mixqxwiz1ivnyc5xc7gkz58l5l27nzp8s")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/bgentry/speakeasy")) +; (home-page "https://github.com/bgentry/speakeasy") +; (synopsis "Speakeasy") +; (description +; "This package provides cross-platform Go (#golang) helpers for taking user input +;from the terminal while not echoing the input back (similar to @code{getpasswd}). The +;package uses syscalls to avoid any dependence on cgo, and is therefore +;compatible with cross-compiling.") +; (license license:expat))) +; +;(define-public go-github-com-fatih-color-1.7.0 +; (package +; (name "go-github-com-fatih-color") +; (version "1.7.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/fatih/color") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0v8msvg38r8d1iiq2i5r4xyfx0invhc941kjrsg5gzwvagv55inv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/fatih/color")) +; (home-page "https://github.com/fatih/color") +; (synopsis "color") +; (description +; "Package color is an ANSI color package to output colorized or SGR defined +;output to the standard output. The API can be used in several way, pick one +;that suits you. +;") +; (license license:expat))) +; +;(define-public go-github-com-hashicorp-errwrap-1.0.0 +; (package +; (name "go-github-com-hashicorp-errwrap") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/errwrap") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0slfb6w3b61xz04r32bi0a1bygc82rjzhqkxj2si2074wynqnr1c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hashicorp/errwrap")) +; (home-page "https://github.com/hashicorp/errwrap") +; (synopsis "errwrap") +; (description +; "Package errwrap implements methods to formalize error wrapping in Go. +;") +; (license license:mpl2.0))) +; +;(define-public go-github-com-hashicorp-go-multierror-1.0.0 +; (package +; (name "go-github-com-hashicorp-go-multierror") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/go-multierror") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "00nyn8llqzbfm8aflr9kwsvpzi4kv8v45c141v88xskxp5xf6z49")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hashicorp/go-multierror")) +; (propagated-inputs +; `(("go-github-com-hashicorp-errwrap-1.0.0" +; ,go-github-com-hashicorp-errwrap-1.0.0))) +; (home-page "https://github.com/hashicorp/go-multierror") +; (synopsis "go-multierror") +; (description +; "@code{go-multierror} is a package for Go that provides a mechanism for +;representing a list of @code{error} values as a single @code{error}.") +; (license license:mpl2.0))) +; +;(define-public go-github-com-mattn-go-colorable-0.0.9 +; (package +; (name "go-github-com-mattn-go-colorable") +; (version "0.0.9") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mattn/go-colorable") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1nwjmsppsjicr7anq8na6md7b1z84l9ppnlr045hhxjvbkqwalvx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mattn/go-colorable")) +; (home-page "https://github.com/mattn/go-colorable") +; (synopsis "go-colorable") +; (description "Colorable writer for windows.") +; (license license:expat))) +; +;(define-public go-github-com-mattn-go-isatty-0.0.3 +; (package +; (name "go-github-com-mattn-go-isatty") +; (version "0.0.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mattn/go-isatty") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "06w45aqz2a6yrk25axbly2k5wmsccv8cspb94bfmz4izvw8h927n")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mattn/go-isatty")) +; (home-page "https://github.com/mattn/go-isatty") +; (synopsis "go-isatty") +; (description "Package isatty implements interface to isatty +;") +; (license license:expat))) +; +;(define-public go-github-com-posener-complete-1.1.1 +; (package +; (name "go-github-com-posener-complete") +; (version "1.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/posener/complete") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1nbdiybjizbaxbf5q0xwbq0cjqw4bl6jggvsjzrpif0w86fcjda2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/posener/complete")) +; (home-page "https://github.com/posener/complete") +; (synopsis "complete") +; (description +; "Package complete provides a tool for bash writing bash completion in go, and bash completion for the go command line. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-sys-0.0.0-20180823144017-11551d06cbcc +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20180823144017-11551d06cbcc") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0j34525b9smcyjqmxvvqgcfn87kkx3b2izidmjp2cmhjxzjrgpwm")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-mitchellh-cli-1.0.0 +; (package +; (name "go-github-com-mitchellh-cli") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mitchellh/cli") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1i9kmr7rcf10d2hji8h4247hmc0nbairv7a0q51393aw2h1bnwg2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mitchellh/cli")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20180823144017-11551d06cbcc" +; ,go-golang-org-x-sys-0.0.0-20180823144017-11551d06cbcc) +; ("go-github-com-posener-complete-1.1.1" +; ,go-github-com-posener-complete-1.1.1) +; ("go-github-com-mattn-go-isatty-0.0.3" +; ,go-github-com-mattn-go-isatty-0.0.3) +; ("go-github-com-mattn-go-colorable-0.0.9" +; ,go-github-com-mattn-go-colorable-0.0.9) +; ("go-github-com-hashicorp-go-multierror-1.0.0" +; ,go-github-com-hashicorp-go-multierror-1.0.0) +; ("go-github-com-fatih-color-1.7.0" ,go-github-com-fatih-color-1.7.0) +; ("go-github-com-bgentry-speakeasy-0.1.0" +; ,go-github-com-bgentry-speakeasy-0.1.0) +; ("go-github-com-armon-go-radix-0.0.0-20180808171621-7fddfc383310" +; ,go-github-com-armon-go-radix-0.0.0-20180808171621-7fddfc383310))) +; (home-page "https://github.com/mitchellh/cli") +; (synopsis "Go CLI Library") +; (description +; "cli is a library for implementing powerful command-line interfaces in Go. +;cli is the library that powers the CLI for +;@url{https://github.com/mitchellh/packer,Packer}, +;@url{https://github.com/hashicorp/serf,Serf}, +;@url{https://github.com/hashicorp/consul,Consul}, +;@url{https://github.com/hashicorp/vault,Vault}, +;@url{https://github.com/hashicorp/terraform,Terraform}, and +;@url{https://github.com/hashicorp/nomad,Nomad}.") +; (license license:mpl2.0))) +; +;(define-public go-github-com-mitchellh-gox-0.4.0 +; (package +; (name "go-github-com-mitchellh-gox") +; (version "0.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mitchellh/gox") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1q4fdkw904mrmh1q5z8pfd3r0gcn5dm776kldqawddy93iiwnp8r")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mitchellh/gox")) +; (home-page "https://github.com/mitchellh/gox") +; (synopsis "Gox - Simple Go Cross Compilation") +; (description +; "Gox is a simple, no-frills tool for Go cross compilation that behaves a +;lot like standard @code{go build}. Gox will parallelize builds for multiple +;platforms. Gox will also build the cross-compilation toolchain for you.") +; (license license:mpl2.0))) +; +;(define-public go-github-com-mitchellh-iochan-1.0.0 +; (package +; (name "go-github-com-mitchellh-iochan") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mitchellh/iochan") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "058n9bbf536f2nw3pbs7pysrg9cqvgkb28z2zf5wjyrzrknyk53g")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mitchellh/iochan")) +; (home-page "https://github.com/mitchellh/iochan") +; (synopsis "iochan") +; (description +; "iochan is a Go library for treating @code{io} readers and writers like channels. +;This is useful when sometimes you wish to use @code{io.Reader} and such in @code{select} +;statements.") +; (license license:expat))) +; +;(define-public go-github-com-mitchellh-mapstructure-0.0.0-20160808181253-ca63d7c062ee +; (package +; (name "go-github-com-mitchellh-mapstructure") +; (version "0.0.0-20160808181253-ca63d7c062ee") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mitchellh/mapstructure") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1yjwhgi57l5fxlmpdchipdd4jasdn1sa8ccl2f2486v06rv6z7gr")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mitchellh/mapstructure")) +; (home-page "https://github.com/mitchellh/mapstructure") +; (synopsis "mapstructure") +; (description +; "Package mapstructure exposes functionality to convert one arbitrary +;Go type into another, typically to convert a map[string]interface{} +;into a native Go structure. +;") +; (license license:expat))) +; +;(define-public go-github-com-ryanuber-columnize-0.0.0-20160712163229-9b3edd62028f +; (package +; (name "go-github-com-ryanuber-columnize") +; (version "0.0.0-20160712163229-9b3edd62028f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/ryanuber/columnize") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ya1idkbb0a9fjlhkcnh5a9yvpwzwfmbyg7d56lpplwr9rqi1da4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/ryanuber/columnize")) +; (home-page "https://github.com/ryanuber/columnize") +; (synopsis "Columnize") +; (description "Easy column-formatted output for golang") +; (license license:expat))) +; +;(define-public go-golang-org-x-net-0.0.0-20181201002055-351d144fa1fc +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20181201002055-351d144fa1fc") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1c5x25qjyz83y92bq0lll5kmznyi3m02wd4c54scgf0866gy938k")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-github-com-hashicorp-serf-0.8.2 +; (package +; (name "go-github-com-hashicorp-serf") +; (version "0.8.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/serf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0nrslghvdjhaczr2xp9mn8xgcx1dxl4jgpbk0l61ssmxahpx4iyc")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hashicorp/serf")) +; (propagated-inputs +; `(("go-golang-org-x-net-0.0.0-20181201002055-351d144fa1fc" +; ,go-golang-org-x-net-0.0.0-20181201002055-351d144fa1fc) +; ("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0) +; ("go-github-com-ryanuber-columnize-0.0.0-20160712163229-9b3edd62028f" +; ,go-github-com-ryanuber-columnize-0.0.0-20160712163229-9b3edd62028f) +; ("go-github-com-mitchellh-mapstructure-0.0.0-20160808181253-ca63d7c062ee" +; ,go-github-com-mitchellh-mapstructure-0.0.0-20160808181253-ca63d7c062ee) +; ("go-github-com-mitchellh-iochan-1.0.0" +; ,go-github-com-mitchellh-iochan-1.0.0) +; ("go-github-com-mitchellh-gox-0.4.0" +; ,go-github-com-mitchellh-gox-0.4.0) +; ("go-github-com-mitchellh-cli-1.0.0" +; ,go-github-com-mitchellh-cli-1.0.0) +; ("go-github-com-hashicorp-memberlist-0.1.3" +; ,go-github-com-hashicorp-memberlist-0.1.3) +; ("go-github-com-hashicorp-mdns-1.0.0" +; ,go-github-com-hashicorp-mdns-1.0.0) +; ("go-github-com-hashicorp-logutils-1.0.0" +; ,go-github-com-hashicorp-logutils-1.0.0) +; ("go-github-com-hashicorp-go-uuid-1.0.1" +; ,go-github-com-hashicorp-go-uuid-1.0.1) +; ("go-github-com-hashicorp-go-syslog-1.0.0" +; ,go-github-com-hashicorp-go-syslog-1.0.0) +; ("go-github-com-hashicorp-go-msgpack-0.5.3" +; ,go-github-com-hashicorp-go-msgpack-0.5.3) +; ("go-github-com-armon-go-metrics-0.0.0-20180917152333-f0300d1749da" +; ,go-github-com-armon-go-metrics-0.0.0-20180917152333-f0300d1749da) +; ("go-github-com-armon-circbuf-0.0.0-20150827004946-bbbad097214e" +; ,go-github-com-armon-circbuf-0.0.0-20150827004946-bbbad097214e))) +; (home-page "https://github.com/hashicorp/serf") +; (synopsis "Serf") +; (description +; "Serf is a decentralized solution for service discovery and orchestration +;that is lightweight, highly available, and fault tolerant.") +; (license license:mpl2.0))) +; +;(define-public go-github-com-mitchellh-mapstructure-1.1.2 +; (package +; (name "go-github-com-mitchellh-mapstructure") +; (version "1.1.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mitchellh/mapstructure") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "03bpv28jz9zhn4947saqwi328ydj7f6g6pf1m2d4m5zdh5jlfkrr")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mitchellh/mapstructure")) +; (home-page "https://github.com/mitchellh/mapstructure") +; (synopsis "mapstructure") +; (description +; "Package mapstructure exposes functionality to convert one arbitrary +;Go type into another, typically to convert a map[string]interface{} +;into a native Go structure. +;") +; (license license:expat))) +; +;(define-public go-github-com-pascaldekloe-goe-0.0.0-20180627143212-57f6aae5913c +; (package +; (name "go-github-com-pascaldekloe-goe") +; (version "0.0.0-20180627143212-57f6aae5913c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/pascaldekloe/goe") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1dqd3mfb4z2vmv6pg6fhgvfc53vhndk24wcl9lj1rz02n6m279fq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/pascaldekloe/goe")) +; (home-page "https://github.com/pascaldekloe/goe") +; (synopsis "Go Enterprise") +; (description +; "Common enterprise features for the Go programming language (golang).") +; (license license:cc0))) +; +;(define-public go-github-com-hashicorp-consul-api-1.1.0 +; (package +; (name "go-github-com-hashicorp-consul-api") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/consul") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0xm3gl8i7pgsbsc2397bwh9hp2dwnk4cmw5y05acqn3zpyp84sbv")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path +; "github.com/hashicorp/consul/api" +; #:unpack-path +; "github.com/hashicorp/consul")) +; (propagated-inputs +; `(("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0) +; ("go-github-com-pascaldekloe-goe-0.0.0-20180627143212-57f6aae5913c" +; ,go-github-com-pascaldekloe-goe-0.0.0-20180627143212-57f6aae5913c) +; ("go-github-com-mitchellh-mapstructure-1.1.2" +; ,go-github-com-mitchellh-mapstructure-1.1.2) +; ("go-github-com-hashicorp-serf-0.8.2" +; ,go-github-com-hashicorp-serf-0.8.2) +; ("go-github-com-hashicorp-go-uuid-1.0.1" +; ,go-github-com-hashicorp-go-uuid-1.0.1) +; ("go-github-com-hashicorp-go-rootcerts-1.0.0" +; ,go-github-com-hashicorp-go-rootcerts-1.0.0) +; ("go-github-com-hashicorp-go-cleanhttp-0.5.1" +; ,go-github-com-hashicorp-go-cleanhttp-0.5.1))) +; (home-page "https://github.com/hashicorp/consul") +; (synopsis "Consul API client") +; (description +; "This package provides the @code{api} package which attempts to +;provide programmatic access to the full Consul API.") +; (license license:mpl2.0))) +; +;(define-public go-github-com-golang-mock-1.5.0 +; (package +; (name "go-github-com-golang-mock") +; (version "1.5.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/mock") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "12l7p08pwwk3xn70w7rlm28nz6jf4szlzgjxjfmbssyirxxxy8v1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/mock")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" +; ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) +; ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0))) +; (home-page "https://github.com/golang/mock") +; (synopsis "gomock") +; (description +; "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It +;integrates well with Go's built-in @code{testing} package, but can be used in other +;contexts too.") +; (license license:asl2.0))) +; +;(define-public go-github-com-google-pprof-0.0.0-20210226084205-cbba55b83ad5 +; (package +; (name "go-github-com-google-pprof") +; (version "0.0.0-20210226084205-cbba55b83ad5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/pprof") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0drr44nqq0s3jillcrl8qa7sklxybs083lvashdh2ad62hrs31l7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/pprof")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" +; ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) +; ("go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639" +; ,go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639) +; ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" +; ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) +; ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" +; ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) +; ("go-github-com-chzyer-logex-1.1.10" +; ,go-github-com-chzyer-logex-1.1.10))) +; (home-page "https://github.com/google/pprof") +; (synopsis "Introduction") +; (description +; "pprof is a tool for collection, manipulation and visualization +;of performance profiles. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20210226172049-e18ecbb05110") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1vlq8mdscp7yfaa1lmyv03y5m4c2d67ydg2q1i6smkrxghn3zn3q")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) +; ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" +; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) +; ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" +; ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-github-com-google-pprof-0.0.0-20210122040257-d980be63207e +; (package +; (name "go-github-com-google-pprof") +; (version "0.0.0-20210122040257-d980be63207e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/pprof") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0vg5z6rp5kfd324w8j12hlx9zv049vxljpc6dyqkj2k9vzzzqkw8")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/pprof")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" +; ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) +; ("go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639" +; ,go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639) +; ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" +; ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) +; ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" +; ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) +; ("go-github-com-chzyer-logex-1.1.10" +; ,go-github-com-chzyer-logex-1.1.10))) +; (home-page "https://github.com/google/pprof") +; (synopsis "Introduction") +; (description +; "pprof is a tool for collection, manipulation and visualization +;of performance profiles. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-mod-0.4.1 +; (package +; (name "go-golang-org-x-mod") +; (version "0.4.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/mod") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0q4p41223d1xh4jmw9vmywjfi0jzn56gbidrwv5x1bzmx2qmj01n")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/mod")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" +; ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) +; ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" +; ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) +; ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" +; ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) +; (home-page "https://golang.org/x/mod") +; (synopsis "mod") +; (description +; "This repository holds packages for writing tools +;that work directly with Go module mechanics. +;That is, it is for direct manipulation of Go modules themselves.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20210119194325-5f4716e94777 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20210119194325-5f4716e94777") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1xh4hk0fhkzq096z9qbzqfswmmgg4kvb44qvazpandvlpwm4jds2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) +; ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" +; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) +; ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" +; ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-oauth2-0.0.0-20210218202405-ba52d332ba99 +; (package +; (name "go-golang-org-x-oauth2") +; (version "0.0.0-20210218202405-ba52d332ba99") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/oauth2") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0fdm3fljk3k4xbpzaywccayrhgqdfl79vl18k4z1zw2pl654bqbg")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/oauth2")) +; (propagated-inputs +; `(("go-google-golang-org-appengine-1.6.6" +; ,go-google-golang-org-appengine-1.6.6) +; ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" +; ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) +; ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) +; (home-page "https://golang.org/x/oauth2") +; (synopsis "OAuth2 for Go") +; (description +; "Package oauth2 provides support for making +;OAuth2 authorized and authenticated HTTP requests, +;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +;It can additionally grant authorization with Bearer JWT. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20210220050731-9a76102bfb43 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20210220050731-9a76102bfb43") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "07qn19yla2w604p3dc8h1c75xj2pxc4fajvg0mf0d4c72d5qiss4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-google-pprof-0.0.0-20201203190320-1bf35d6f28c2 +; (package +; (name "go-github-com-google-pprof") +; (version "0.0.0-20201203190320-1bf35d6f28c2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/pprof") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "140n5hjk2faanrf6v5h1559g755rgavynz1r99s1n15bmgibysvp")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/pprof")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" +; ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) +; ("go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639" +; ,go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639) +; ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" +; ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) +; ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" +; ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) +; ("go-github-com-chzyer-logex-1.1.10" +; ,go-github-com-chzyer-logex-1.1.10))) +; (home-page "https://github.com/google/pprof") +; (synopsis "Introduction") +; (description +; "pprof is a tool for collection, manipulation and visualization +;of performance profiles. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-mod-0.4.0 +; (package +; (name "go-golang-org-x-mod") +; (version "0.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/mod") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ri003765yxawq6s8jbkbiaijihwrg980c4qwqsaa5x0sq2psrg1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/mod")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" +; ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) +; ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" +; ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) +; ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" +; ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) +; (home-page "https://golang.org/x/mod") +; (synopsis "mod") +; (description +; "This repository holds packages for writing tools +;that work directly with Go module mechanics. +;That is, it is for direct manipulation of Go modules themselves.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20201209123823-ac852fbbde11 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20201209123823-ac852fbbde11") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1zmp2fxgf7792xx15qhzcsfs8k0qv7q3m6jlcj6qvdngfzyvna64")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) +; ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" +; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) +; ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" +; ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20201208233053-a543418bbed2 +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20201208233053-a543418bbed2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0r87p89pm2h75yajsz0g2vvy2q3z9gknc0fmsdm5rh427f1qazfr")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" +; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) +; ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" +; ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) +; ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" +; ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) +; ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) +; ("go-github-com-yuin-goldmark-1.2.1" +; ,go-github-com-yuin-goldmark-1.2.1))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-github-com-google-martian-v3-3.1.0 +; (package +; (name "go-github-com-google-martian-v3") +; (version "3.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/martian") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1pr9akggfzj2vw11l7ry4sij0hqslpc3gwx4ynbzyvbjhvh64sbc")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/martian/v3")) +; (propagated-inputs +; `(("go-golang-org-x-net-0.0.0-20190628185345-da137c7871d7" +; ,go-golang-org-x-net-0.0.0-20190628185345-da137c7871d7))) +; (home-page "https://github.com/google/martian") +; (synopsis "Martian Proxy") +; (description +; "Package martian provides an HTTP/1.1 proxy with an API for configurable +;request and response modifiers. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639 +; (package +; (name "go-github-com-ianlancetaylor-demangle") +; (version "0.0.0-20200824232613-28f6c0f3b639") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/ianlancetaylor/demangle") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0rsq3622gd40f1x1l7caidsxrmzg1993ich2higwd94fqbxs1r83")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/ianlancetaylor/demangle")) +; (home-page "https://github.com/ianlancetaylor/demangle") +; (synopsis "github.com/ianlancetaylor/demangle") +; (description +; "Package demangle defines functions that demangle GCC/LLVM +;C++ and Rust symbol names. +;This package recognizes names that were mangled according to the C++ ABI +;defined at @url{http://codesourcery.com/cxx-abi/,http://codesourcery.com/cxx-abi/} and the Rust ABI +;defined at +;@url{https://rust-lang.github.io/rfcs/2603-rust-symbol-name-mangling-v0.html,https://rust-lang.github.io/rfcs/2603-rust-symbol-name-mangling-v0.html} +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-google-pprof-0.0.0-20201023163331-3e6fc7fc9c4c +; (package +; (name "go-github-com-google-pprof") +; (version "0.0.0-20201023163331-3e6fc7fc9c4c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/pprof") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1xmy4579gx45lqsy1cgddnc7nmaqfpiwd2kc5dhf8i0wjjvf18hq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/pprof")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" +; ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) +; ("go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639" +; ,go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639) +; ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" +; ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) +; ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" +; ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) +; ("go-github-com-chzyer-logex-1.1.10" +; ,go-github-com-chzyer-logex-1.1.10))) +; (home-page "https://github.com/google/pprof") +; (synopsis "Introduction") +; (description +; "pprof is a tool for collection, manipulation and visualization +;of performance profiles. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-net-0.0.0-20201031054903-ff519b6c9102 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20201031054903-ff519b6c9102") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "162ssgcc0kgj42ajaki0q3j5lwmixqqwkdqcmz41xg1k8wjm7riw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) +; ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" +; ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) +; ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" +; ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-text-0.3.4 +; (package +; (name "go-golang-org-x-text") +; (version "0.3.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/text") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "11jdvix83xcl5xnb039y4zrz4x5skzsps0w1jryp6wrar53cydvz")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/text")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" +; ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) +; (home-page "https://golang.org/x/text") +; (synopsis "Go Text") +; (description +; "text is a repository of text-related packages related to internationalization +;(i18n) and localization (l10n), such as character encodings, text +;transformations, and locale-specific text handling. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20201110124207-079ba7bd75cd +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20201110124207-079ba7bd75cd") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0g4d7cx480rbnpg16qqc4yycd50lpp2mi2qzvzr6hdny91v7sa05")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" +; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) +; ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" +; ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) +; ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" +; ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) +; ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) +; ("go-github-com-yuin-goldmark-1.2.1" +; ,go-github-com-yuin-goldmark-1.2.1))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-github-com-google-go-cmp-0.5.2 +; (package +; (name "go-github-com-google-go-cmp") +; (version "0.5.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/go-cmp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0qchy411jm9q2l9mf7x3ry2ycaqp9xdhf2nx14qrpzcxfigv2705")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/go-cmp")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" +; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) +; (home-page "https://github.com/google/go-cmp") +; (synopsis "Package for equality of Go values") +; (description +; "This package is intended to be a more powerful and safer alternative to +;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-oauth2-0.0.0-20200902213428-5d25da1a8d43 +; (package +; (name "go-golang-org-x-oauth2") +; (version "0.0.0-20200902213428-5d25da1a8d43") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/oauth2") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "14jx8sxshbvnx4fggn12mlmz000zcrd1a73n1455b1wgg1xfzq3n")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/oauth2")) +; (propagated-inputs +; `(("go-google-golang-org-appengine-1.6.6" +; ,go-google-golang-org-appengine-1.6.6) +; ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" +; ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) +; ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) +; (home-page "https://golang.org/x/oauth2") +; (synopsis "OAuth2 for Go") +; (description +; "Package oauth2 provides support for making +;OAuth2 authorized and authenticated HTTP requests, +;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +;It can additionally grant authorization with Bearer JWT. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20200905004654-be1d3432aa8f +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20200905004654-be1d3432aa8f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1kd3szjsazhpgidv5xjv0s26fm4wvv2cr7j4zk8nblnqkic58as2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20200904185747-39188db58858 +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20200904185747-39188db58858") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ydyylwqzjwijy4rdp2fmvnfh3s27896dx6g74r2wa6vbhisszvk")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" +; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) +; ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" +; ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) +; ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" +; ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) +; ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) +; ("go-github-com-yuin-goldmark-1.2.1" +; ,go-github-com-yuin-goldmark-1.2.1))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20200904004341-0bd0a958aa1d +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20200904004341-0bd0a958aa1d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "01xp4ic4jvdv7n984cjgrgqbpbi9m4bj2xnfrs1s1zn1adx0jivs")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.24.0" +; ,go-google-golang-org-protobuf-1.24.0) +; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) +; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" +; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-github-com-golang-protobuf-1.4.1" +; ,go-github-com-golang-protobuf-1.4.1))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-grpc-1.31.1 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.31.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "18565vf9i2zc69znd9b8a2iz0kgv5cms0g0ppj93hnhri8rjqagk")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" +; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.3.3" +; ,go-github-com-golang-protobuf-1.3.3) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-envoyproxy-go-control-plane-0.9.4" +; ,go-github-com-envoyproxy-go-control-plane-0.9.4) +; ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" +; ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-api-0.35.0 +; (package +; (name "go-google-golang-org-api") +; (version "0.35.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-api-go-client") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0fgn21lmrlkw44sl0ivjicygwksibb1pclzp3zyh3ivn7ylvk2jd")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/api")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.31.1" ,go-google-golang-org-grpc-1.31.1) +; ("go-google-golang-org-genproto-0.0.0-20200904004341-0bd0a958aa1d" +; ,go-google-golang-org-genproto-0.0.0-20200904004341-0bd0a958aa1d) +; ("go-google-golang-org-appengine-1.6.6" +; ,go-google-golang-org-appengine-1.6.6) +; ("go-golang-org-x-tools-0.0.0-20200904185747-39188db58858" +; ,go-golang-org-x-tools-0.0.0-20200904185747-39188db58858) +; ("go-golang-org-x-sys-0.0.0-20200905004654-be1d3432aa8f" +; ,go-golang-org-x-sys-0.0.0-20200905004654-be1d3432aa8f) +; ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" +; ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) +; ("go-golang-org-x-oauth2-0.0.0-20200902213428-5d25da1a8d43" +; ,go-golang-org-x-oauth2-0.0.0-20200902213428-5d25da1a8d43) +; ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" +; ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) +; ("go-go-opencensus-io-0.22.4" ,go-go-opencensus-io-0.22.4) +; ("go-github-com-googleapis-gax-go-v2-2.0.5" +; ,go-github-com-googleapis-gax-go-v2-2.0.5) +; ("go-github-com-google-go-cmp-0.5.2" +; ,go-github-com-google-go-cmp-0.5.2) +; ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) +; (home-page "https://google.golang.org/api") +; (synopsis "Google APIs Client Library for Go") +; (description +; "Package api is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of +;sub-packages. +;") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20201109203340-2640f1f9cdfb +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20201109203340-2640f1f9cdfb") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "00mwybjbdpvmlkvmwsjvdb2z8lzzx2a340y4pf3bxqamalhdka0w")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.24.0" +; ,go-google-golang-org-protobuf-1.24.0) +; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) +; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" +; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-github-com-golang-protobuf-1.4.1" +; ,go-github-com-golang-protobuf-1.4.1))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-cloud-google-com-go-0.72.0 +; (package +; (name "go-cloud-google-com-go") +; (version "0.72.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-cloud-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1x4gy466jrzab9l02dwd3lvy2dwy84j34zpjkm5xnxh45za6hpxn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "cloud.google.com/go")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) +; ("go-google-golang-org-genproto-0.0.0-20201109203340-2640f1f9cdfb" +; ,go-google-golang-org-genproto-0.0.0-20201109203340-2640f1f9cdfb) +; ("go-google-golang-org-api-0.35.0" ,go-google-golang-org-api-0.35.0) +; ("go-golang-org-x-tools-0.0.0-20201110124207-079ba7bd75cd" +; ,go-golang-org-x-tools-0.0.0-20201110124207-079ba7bd75cd) +; ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) +; ("go-golang-org-x-oauth2-0.0.0-20200902213428-5d25da1a8d43" +; ,go-golang-org-x-oauth2-0.0.0-20200902213428-5d25da1a8d43) +; ("go-golang-org-x-net-0.0.0-20201031054903-ff519b6c9102" +; ,go-golang-org-x-net-0.0.0-20201031054903-ff519b6c9102) +; ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" +; ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) +; ("go-go-opencensus-io-0.22.5" ,go-go-opencensus-io-0.22.5) +; ("go-github-com-jstemmer-go-junit-report-0.9.1" +; ,go-github-com-jstemmer-go-junit-report-0.9.1) +; ("go-github-com-googleapis-gax-go-v2-2.0.5" +; ,go-github-com-googleapis-gax-go-v2-2.0.5) +; ("go-github-com-google-pprof-0.0.0-20201023163331-3e6fc7fc9c4c" +; ,go-github-com-google-pprof-0.0.0-20201023163331-3e6fc7fc9c4c) +; ("go-github-com-google-martian-v3-3.1.0" +; ,go-github-com-google-martian-v3-3.1.0) +; ("go-github-com-google-go-cmp-0.5.2" +; ,go-github-com-google-go-cmp-0.5.2) +; ("go-github-com-golang-protobuf-1.4.3" +; ,go-github-com-golang-protobuf-1.4.3) +; ("go-github-com-golang-mock-1.4.4" ,go-github-com-golang-mock-1.4.4) +; ("go-cloud-google-com-go-storage-1.10.0" +; ,go-cloud-google-com-go-storage-1.10.0))) +; (home-page "https://cloud.google.com/go") +; (synopsis "Google Cloud Client Libraries for Go") +; (description +; "Package cloud is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +;of sub-packages. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-oauth2-0.0.0-20201109201403-9fd604954f58 +; (package +; (name "go-golang-org-x-oauth2") +; (version "0.0.0-20201109201403-9fd604954f58") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/oauth2") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "06dj14f6jrgpqmf3v3z74zhcin3yj7yp8mzxljm3a3ihq984kz8v")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/oauth2")) +; (propagated-inputs +; `(("go-google-golang-org-appengine-1.6.6" +; ,go-google-golang-org-appengine-1.6.6) +; ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" +; ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) +; ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) +; (home-page "https://golang.org/x/oauth2") +; (synopsis "OAuth2 for Go") +; (description +; "Package oauth2 provides support for making +;OAuth2 authorized and authenticated HTTP requests, +;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +;It can additionally grant authorization with Bearer JWT. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20201201145000-ef89a241ccb3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0a8myxx2mvdr77a003gpy5jmdzbxbnrf5zppmpl4za4sspxlmwif")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20201201161351-ac6f37ff4c2a +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20201201161351-ac6f37ff4c2a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0akq0z86x51rh556fs7icjmmmgdyaa7rq7cmqlngrmvjb79wnwpl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" +; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) +; ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" +; ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) +; ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" +; ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) +; ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) +; ("go-github-com-yuin-goldmark-1.2.1" +; ,go-github-com-yuin-goldmark-1.2.1))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20201201144952-b05cb90ed32e +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20201201144952-b05cb90ed32e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1n9jlhnn5fg7a41ahdril7wgfli43kxplnpxbdbhrkknjra7xdjd")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.24.0" +; ,go-google-golang-org-protobuf-1.24.0) +; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) +; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" +; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-github-com-golang-protobuf-1.4.1" +; ,go-github-com-golang-protobuf-1.4.1))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-api-0.36.0 +; (package +; (name "go-google-golang-org-api") +; (version "0.36.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-api-go-client") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1x6wlavrqi2r6ss3h2kg94p2lfj0z019kc85zm1pajpf0k23fxp7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/api")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) +; ("go-google-golang-org-genproto-0.0.0-20201201144952-b05cb90ed32e" +; ,go-google-golang-org-genproto-0.0.0-20201201144952-b05cb90ed32e) +; ("go-google-golang-org-appengine-1.6.7" +; ,go-google-golang-org-appengine-1.6.7) +; ("go-golang-org-x-tools-0.0.0-20201201161351-ac6f37ff4c2a" +; ,go-golang-org-x-tools-0.0.0-20201201161351-ac6f37ff4c2a) +; ("go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3" +; ,go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3) +; ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" +; ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) +; ("go-golang-org-x-oauth2-0.0.0-20201109201403-9fd604954f58" +; ,go-golang-org-x-oauth2-0.0.0-20201109201403-9fd604954f58) +; ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" +; ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) +; ("go-go-opencensus-io-0.22.5" ,go-go-opencensus-io-0.22.5) +; ("go-github-com-googleapis-gax-go-v2-2.0.5" +; ,go-github-com-googleapis-gax-go-v2-2.0.5) +; ("go-github-com-google-go-cmp-0.5.4" +; ,go-github-com-google-go-cmp-0.5.4) +; ("go-cloud-google-com-go-0.72.0" ,go-cloud-google-com-go-0.72.0))) +; (home-page "https://google.golang.org/api") +; (synopsis "Google APIs Client Library for Go") +; (description +; "Package api is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of +;sub-packages. +;") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20201210142538-e3217bee35cc +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20201210142538-e3217bee35cc") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1bzfa58dw7jmkrp46hikbsq1yyk2r29a1gn51sqlilbvf7lq96p9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.24.0" +; ,go-google-golang-org-protobuf-1.24.0) +; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) +; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" +; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-github-com-golang-protobuf-1.4.1" +; ,go-github-com-golang-protobuf-1.4.1))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-cloud-google-com-go-0.74.0 +; (package +; (name "go-cloud-google-com-go") +; (version "0.74.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-cloud-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "09j1qppf2gf14bn06hsyrj9jaxz9vlbs9d7yrxrdvh2234qsbggy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "cloud.google.com/go")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.34.0" ,go-google-golang-org-grpc-1.34.0) +; ("go-google-golang-org-genproto-0.0.0-20201210142538-e3217bee35cc" +; ,go-google-golang-org-genproto-0.0.0-20201210142538-e3217bee35cc) +; ("go-google-golang-org-api-0.36.0" ,go-google-golang-org-api-0.36.0) +; ("go-golang-org-x-tools-0.0.0-20201208233053-a543418bbed2" +; ,go-golang-org-x-tools-0.0.0-20201208233053-a543418bbed2) +; ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) +; ("go-golang-org-x-oauth2-0.0.0-20201208152858-08078c50e5b5" +; ,go-golang-org-x-oauth2-0.0.0-20201208152858-08078c50e5b5) +; ("go-golang-org-x-net-0.0.0-20201209123823-ac852fbbde11" +; ,go-golang-org-x-net-0.0.0-20201209123823-ac852fbbde11) +; ("go-golang-org-x-mod-0.4.0" ,go-golang-org-x-mod-0.4.0) +; ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" +; ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) +; ("go-go-opencensus-io-0.22.5" ,go-go-opencensus-io-0.22.5) +; ("go-github-com-jstemmer-go-junit-report-0.9.1" +; ,go-github-com-jstemmer-go-junit-report-0.9.1) +; ("go-github-com-googleapis-gax-go-v2-2.0.5" +; ,go-github-com-googleapis-gax-go-v2-2.0.5) +; ("go-github-com-google-pprof-0.0.0-20201203190320-1bf35d6f28c2" +; ,go-github-com-google-pprof-0.0.0-20201203190320-1bf35d6f28c2) +; ("go-github-com-google-martian-v3-3.1.0" +; ,go-github-com-google-martian-v3-3.1.0) +; ("go-github-com-google-go-cmp-0.5.4" +; ,go-github-com-google-go-cmp-0.5.4) +; ("go-github-com-golang-protobuf-1.4.3" +; ,go-github-com-golang-protobuf-1.4.3) +; ("go-github-com-golang-mock-1.4.4" ,go-github-com-golang-mock-1.4.4) +; ("go-cloud-google-com-go-storage-1.10.0" +; ,go-cloud-google-com-go-storage-1.10.0))) +; (home-page "https://cloud.google.com/go") +; (synopsis "Google Cloud Client Libraries for Go") +; (description +; "Package cloud is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +;of sub-packages. +;") +; (license license:asl2.0))) +; +;(define-public go-go-opencensus-io-0.22.5 +; (package +; (name "go-go-opencensus-io") +; (version "0.22.5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/census-instrumentation/opencensus-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "18s1d7bk28i8gbs6i587ccd31qp3f8gibgd14dpkzs05gyvlccy6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "go.opencensus.io")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.20.1" ,go-google-golang-org-grpc-1.20.1) +; ("go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb" +; ,go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb) +; ("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) +; ("go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd" +; ,go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd) +; ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" +; ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) +; ("go-github-com-stretchr-testify-1.4.0" +; ,go-github-com-stretchr-testify-1.4.0) +; ("go-github-com-google-go-cmp-0.3.0" +; ,go-github-com-google-go-cmp-0.3.0) +; ("go-github-com-golang-protobuf-1.3.1" +; ,go-github-com-golang-protobuf-1.3.1) +; ("go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6" +; ,go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6))) +; (home-page "https://go.opencensus.io") +; (synopsis "OpenCensus Libraries for Go") +; (description "Package opencensus contains Go support for OpenCensus. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-oauth2-0.0.0-20201208152858-08078c50e5b5 +; (package +; (name "go-golang-org-x-oauth2") +; (version "0.0.0-20201208152858-08078c50e5b5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/oauth2") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0zynwxw47nhwhs6n1c87c9np43lwl9m9z2w2cmdvjwhsisa93b75")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/oauth2")) +; (propagated-inputs +; `(("go-google-golang-org-appengine-1.6.6" +; ,go-google-golang-org-appengine-1.6.6) +; ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" +; ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) +; ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) +; (home-page "https://golang.org/x/oauth2") +; (synopsis "OAuth2 for Go") +; (description +; "Package oauth2 provides support for making +;OAuth2 authorized and authenticated HTTP requests, +;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +;It can additionally grant authorization with Bearer JWT. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20210104204734-6f8348627aad +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20210104204734-6f8348627aad") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0pmz8dwjf4gxr1gwnp4iahh3yh09apcf40kvvybycsx4rfjc2gbl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20210105154028-b0ab187a4818 +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20210105154028-b0ab187a4818") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "157w706lz7j4s7cwgh7j7mf8v1sah5hm4dlmp8isf6vhnqpixdp7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" +; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) +; ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" +; ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) +; ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" +; ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) +; ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) +; ("go-github-com-yuin-goldmark-1.2.1" +; ,go-github-com-yuin-goldmark-1.2.1))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20201214200347-8c77b98c765d +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20201214200347-8c77b98c765d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1bdpss5xmla0gjz66mdk8bqpsdb5i1xz65g30k9cs2h7vrqlwzn4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.24.0" +; ,go-google-golang-org-protobuf-1.24.0) +; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) +; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" +; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-github-com-golang-protobuf-1.4.1" +; ,go-github-com-golang-protobuf-1.4.1))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-github-com-cncf-udpa-go-0.0.0-20200629203442-efcf912fb354 +; (package +; (name "go-github-com-cncf-udpa-go") +; (version "0.0.0-20200629203442-efcf912fb354") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/cncf/udpa") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "18b1v01h3id5d7v5gqabc4qsaja17r45rn3fvv38nrfx9l4smv0x")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path +; "github.com/cncf/udpa/go" +; #:unpack-path +; "github.com/cncf/udpa")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2) +; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" +; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0))) +; (home-page "https://github.com/cncf/udpa") +; (synopsis "Description") +; (description +; "This library has been deprecated in favor of @code{github.com/cncf/xds/go}. All users are recommended to switch their imports.") +; (license license:asl2.0))) +; +;(define-public go-github-com-envoyproxy-go-control-plane-0.9.7 +; (package +; (name "go-github-com-envoyproxy-go-control-plane") +; (version "0.9.7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/envoyproxy/go-control-plane") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0nx5ybyadkjqr29hndn6amhbcqpi1rkfv12bxp0rk3ay045zxsh8")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.23.0" +; ,go-google-golang-org-protobuf-1.23.0) +; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) +; ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" +; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) +; ("go-github-com-stretchr-testify-1.5.1" +; ,go-github-com-stretchr-testify-1.5.1) +; ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" +; ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.4.2" +; ,go-github-com-golang-protobuf-1.4.2) +; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" +; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) +; ("go-github-com-cncf-udpa-go-0.0.0-20200629203442-efcf912fb354" +; ,go-github-com-cncf-udpa-go-0.0.0-20200629203442-efcf912fb354) +; ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" +; ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) +; (home-page "https://github.com/envoyproxy/go-control-plane") +; (synopsis "control-plane") +; (description +; "This repository contains a Go-based implementation of an API server that +;implements the discovery service APIs defined in +;@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-grpc-1.34.0 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.34.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0s8y19qvv0zfy2irq8vv12h65v7pw18k6yqfix1j2370yxmsajgm")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.25.0" +; ,go-google-golang-org-protobuf-1.25.0) +; ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" +; ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) +; ("go-github-com-google-go-cmp-0.5.0" +; ,go-github-com-google-go-cmp-0.5.0) +; ("go-github-com-golang-protobuf-1.4.2" +; ,go-github-com-golang-protobuf-1.4.2) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-envoyproxy-go-control-plane-0.9.7" +; ,go-github-com-envoyproxy-go-control-plane-0.9.7) +; ("go-github-com-cncf-udpa-go-0.0.0-20200629203442-efcf912fb354" +; ,go-github-com-cncf-udpa-go-0.0.0-20200629203442-efcf912fb354))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-api-0.40.0 +; (package +; (name "go-google-golang-org-api") +; (version "0.40.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-api-go-client") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0vs0bnzljg5iib8x01sy49ndgsz3cl1sq53pvy3h6kzp7may0bpc")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/api")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.34.0" ,go-google-golang-org-grpc-1.34.0) +; ("go-google-golang-org-genproto-0.0.0-20201214200347-8c77b98c765d" +; ,go-google-golang-org-genproto-0.0.0-20201214200347-8c77b98c765d) +; ("go-google-golang-org-appengine-1.6.7" +; ,go-google-golang-org-appengine-1.6.7) +; ("go-golang-org-x-tools-0.0.0-20210105154028-b0ab187a4818" +; ,go-golang-org-x-tools-0.0.0-20210105154028-b0ab187a4818) +; ("go-golang-org-x-sys-0.0.0-20210104204734-6f8348627aad" +; ,go-golang-org-x-sys-0.0.0-20210104204734-6f8348627aad) +; ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" +; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) +; ("go-golang-org-x-oauth2-0.0.0-20201208152858-08078c50e5b5" +; ,go-golang-org-x-oauth2-0.0.0-20201208152858-08078c50e5b5) +; ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" +; ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) +; ("go-go-opencensus-io-0.22.5" ,go-go-opencensus-io-0.22.5) +; ("go-github-com-googleapis-gax-go-v2-2.0.5" +; ,go-github-com-googleapis-gax-go-v2-2.0.5) +; ("go-github-com-google-go-cmp-0.5.4" +; ,go-github-com-google-go-cmp-0.5.4) +; ("go-cloud-google-com-go-0.74.0" ,go-cloud-google-com-go-0.74.0))) +; (home-page "https://google.golang.org/api") +; (synopsis "Google APIs Client Library for Go") +; (description +; "Package api is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of +;sub-packages. +;") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20210222152913-aa3ee6e6a81c +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20210222152913-aa3ee6e6a81c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "06wa7v3s558rwxsqd1kqz5xy10kigzx50ciqh3zdxsbvxqvjwxrx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.24.0" +; ,go-google-golang-org-protobuf-1.24.0) +; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) +; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" +; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-github-com-golang-protobuf-1.4.1" +; ,go-github-com-golang-protobuf-1.4.1))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-grpc-1.35.0 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.35.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "15ij5acp9h8dxq0brc0jljj98badri23zpm4yvmsn6gnnxaykl72")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.25.0" +; ,go-google-golang-org-protobuf-1.25.0) +; ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" +; ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) +; ("go-github-com-google-go-cmp-0.5.0" +; ,go-github-com-google-go-cmp-0.5.0) +; ("go-github-com-golang-protobuf-1.4.2" +; ,go-github-com-golang-protobuf-1.4.2) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad" +; ,go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad) +; ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" +; ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-cloud-google-com-go-0.78.0 +; (package +; (name "go-cloud-google-com-go") +; (version "0.78.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-cloud-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "11wldladkcz41ivsfnbrqy2hg5wp55d72hnr2wki0zvnhbzsj376")))) +; (build-system go-build-system) +; (arguments '(#:import-path "cloud.google.com/go")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.35.0" ,go-google-golang-org-grpc-1.35.0) +; ("go-google-golang-org-genproto-0.0.0-20210222152913-aa3ee6e6a81c" +; ,go-google-golang-org-genproto-0.0.0-20210222152913-aa3ee6e6a81c) +; ("go-google-golang-org-api-0.40.0" ,go-google-golang-org-api-0.40.0) +; ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) +; ("go-golang-org-x-text-0.3.5" ,go-golang-org-x-text-0.3.5) +; ("go-golang-org-x-sys-0.0.0-20210220050731-9a76102bfb43" +; ,go-golang-org-x-sys-0.0.0-20210220050731-9a76102bfb43) +; ("go-golang-org-x-oauth2-0.0.0-20210218202405-ba52d332ba99" +; ,go-golang-org-x-oauth2-0.0.0-20210218202405-ba52d332ba99) +; ("go-golang-org-x-net-0.0.0-20210119194325-5f4716e94777" +; ,go-golang-org-x-net-0.0.0-20210119194325-5f4716e94777) +; ("go-golang-org-x-mod-0.4.1" ,go-golang-org-x-mod-0.4.1) +; ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" +; ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) +; ("go-go-opencensus-io-0.22.5" ,go-go-opencensus-io-0.22.5) +; ("go-github-com-jstemmer-go-junit-report-0.9.1" +; ,go-github-com-jstemmer-go-junit-report-0.9.1) +; ("go-github-com-googleapis-gax-go-v2-2.0.5" +; ,go-github-com-googleapis-gax-go-v2-2.0.5) +; ("go-github-com-google-pprof-0.0.0-20210122040257-d980be63207e" +; ,go-github-com-google-pprof-0.0.0-20210122040257-d980be63207e) +; ("go-github-com-google-martian-v3-3.1.0" +; ,go-github-com-google-martian-v3-3.1.0) +; ("go-github-com-google-go-cmp-0.5.4" +; ,go-github-com-google-go-cmp-0.5.4) +; ("go-github-com-golang-protobuf-1.4.3" +; ,go-github-com-golang-protobuf-1.4.3) +; ("go-github-com-golang-mock-1.4.4" ,go-github-com-golang-mock-1.4.4) +; ("go-cloud-google-com-go-storage-1.10.0" +; ,go-cloud-google-com-go-storage-1.10.0))) +; (home-page "https://cloud.google.com/go") +; (synopsis "Google Cloud Client Libraries for Go") +; (description +; "Package cloud is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +;of sub-packages. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-oauth2-0.0.0-20210220000619-9bb904979d93 +; (package +; (name "go-golang-org-x-oauth2") +; (version "0.0.0-20210220000619-9bb904979d93") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/oauth2") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1rhndpvpvfy5bsaxi974cznlq4hbamhmy6l06ppp9phh12pvn11p")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/oauth2")) +; (propagated-inputs +; `(("go-google-golang-org-appengine-1.6.6" +; ,go-google-golang-org-appengine-1.6.6) +; ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" +; ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) +; ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) +; (home-page "https://golang.org/x/oauth2") +; (synopsis "OAuth2 for Go") +; (description +; "Package oauth2 provides support for making +;OAuth2 authorized and authenticated HTTP requests, +;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +;It can additionally grant authorization with Bearer JWT. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20210305230114-8fe3ee5dd75b +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20210305230114-8fe3ee5dd75b") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1x7fn66vplxkac6lbwqv649wwnx7kz0bqdzgr98z7yx7cfdxd7rj")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20210303154014-9728d6b83eeb +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20210303154014-9728d6b83eeb") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1abic7gjp07d1s6imjfn00s316xdirss3zvcric74gr9varr02xn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.24.0" +; ,go-google-golang-org-protobuf-1.24.0) +; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) +; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" +; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-github-com-golang-protobuf-1.4.1" +; ,go-github-com-golang-protobuf-1.4.1))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-api-0.41.0 +; (package +; (name "go-google-golang-org-api") +; (version "0.41.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-api-go-client") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0yzz534xzl2km3vxr18h204yvnrzqlss02fagg2ign0sy3qnlkhx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/api")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.36.0" ,go-google-golang-org-grpc-1.36.0) +; ("go-google-golang-org-genproto-0.0.0-20210303154014-9728d6b83eeb" +; ,go-google-golang-org-genproto-0.0.0-20210303154014-9728d6b83eeb) +; ("go-google-golang-org-appengine-1.6.7" +; ,go-google-golang-org-appengine-1.6.7) +; ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) +; ("go-golang-org-x-sys-0.0.0-20210305230114-8fe3ee5dd75b" +; ,go-golang-org-x-sys-0.0.0-20210305230114-8fe3ee5dd75b) +; ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" +; ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) +; ("go-golang-org-x-oauth2-0.0.0-20210220000619-9bb904979d93" +; ,go-golang-org-x-oauth2-0.0.0-20210220000619-9bb904979d93) +; ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" +; ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) +; ("go-go-opencensus-io-0.23.0" ,go-go-opencensus-io-0.23.0) +; ("go-github-com-googleapis-gax-go-v2-2.0.5" +; ,go-github-com-googleapis-gax-go-v2-2.0.5) +; ("go-github-com-google-go-cmp-0.5.5" +; ,go-github-com-google-go-cmp-0.5.5) +; ("go-cloud-google-com-go-0.78.0" ,go-cloud-google-com-go-0.78.0))) +; (home-page "https://google.golang.org/api") +; (synopsis "Google APIs Client Library for Go") +; (description +; "Package api is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of +;sub-packages. +;") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20210310155132-4ce2db91004e +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20210310155132-4ce2db91004e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0r5f024c4piqna27pvc28m0h44ms9rhcbihf1zn5l8prf4vvrdw9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.24.0" +; ,go-google-golang-org-protobuf-1.24.0) +; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) +; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" +; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-github-com-golang-protobuf-1.4.1" +; ,go-github-com-golang-protobuf-1.4.1))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-cloud-google-com-go-0.79.0 +; (package +; (name "go-cloud-google-com-go") +; (version "0.79.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-cloud-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "031jrfgyys0slh154593d4swj6iqrjvs9dxwmab99dl6zfws77jv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "cloud.google.com/go")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.36.0" ,go-google-golang-org-grpc-1.36.0) +; ("go-google-golang-org-genproto-0.0.0-20210310155132-4ce2db91004e" +; ,go-google-golang-org-genproto-0.0.0-20210310155132-4ce2db91004e) +; ("go-google-golang-org-api-0.41.0" ,go-google-golang-org-api-0.41.0) +; ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) +; ("go-golang-org-x-text-0.3.5" ,go-golang-org-x-text-0.3.5) +; ("go-golang-org-x-oauth2-0.0.0-20210220000619-9bb904979d93" +; ,go-golang-org-x-oauth2-0.0.0-20210220000619-9bb904979d93) +; ("go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110" +; ,go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110) +; ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" +; ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) +; ("go-go-opencensus-io-0.23.0" ,go-go-opencensus-io-0.23.0) +; ("go-github-com-jstemmer-go-junit-report-0.9.1" +; ,go-github-com-jstemmer-go-junit-report-0.9.1) +; ("go-github-com-googleapis-gax-go-v2-2.0.5" +; ,go-github-com-googleapis-gax-go-v2-2.0.5) +; ("go-github-com-google-pprof-0.0.0-20210226084205-cbba55b83ad5" +; ,go-github-com-google-pprof-0.0.0-20210226084205-cbba55b83ad5) +; ("go-github-com-google-martian-v3-3.1.0" +; ,go-github-com-google-martian-v3-3.1.0) +; ("go-github-com-google-go-cmp-0.5.5" +; ,go-github-com-google-go-cmp-0.5.5) +; ("go-github-com-golang-protobuf-1.4.3" +; ,go-github-com-golang-protobuf-1.4.3) +; ("go-github-com-golang-mock-1.5.0" ,go-github-com-golang-mock-1.5.0) +; ("go-cloud-google-com-go-storage-1.10.0" +; ,go-cloud-google-com-go-storage-1.10.0))) +; (home-page "https://cloud.google.com/go") +; (synopsis "Google Cloud Client Libraries for Go") +; (description +; "Package cloud is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +;of sub-packages. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-oauth2-0.0.0-20210313182246-cd4f82c27b84 +; (package +; (name "go-golang-org-x-oauth2") +; (version "0.0.0-20210313182246-cd4f82c27b84") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/oauth2") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1jf68sh1957ji1lv1zrrhsbm6jr3508pw159pfzgyw6hbzsg5amv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/oauth2")) +; (propagated-inputs +; `(("go-google-golang-org-appengine-1.6.6" +; ,go-google-golang-org-appengine-1.6.6) +; ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" +; ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) +; ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) +; (home-page "https://golang.org/x/oauth2") +; (synopsis "OAuth2 for Go") +; (description +; "Package oauth2 provides support for making +;OAuth2 authorized and authenticated HTTP requests, +;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +;It can additionally grant authorization with Bearer JWT. +;") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20210319143718-93e7006c17a6 +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20210319143718-93e7006c17a6") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0l143m8rn7zmbfb2rpdawhxs8qjbdpn61hqynf47j5hwsbjci2xs")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.24.0" +; ,go-google-golang-org-protobuf-1.24.0) +; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) +; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" +; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-github-com-golang-protobuf-1.4.1" +; ,go-github-com-golang-protobuf-1.4.1))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-grpc-1.36.0 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.36.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1m4xsfv3ysc84cwqxqqr61fs3d2w04f0q5xbdjijhczjixcxwh5i")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.25.0" +; ,go-google-golang-org-protobuf-1.25.0) +; ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" +; ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) +; ("go-github-com-google-go-cmp-0.5.0" +; ,go-github-com-google-go-cmp-0.5.0) +; ("go-github-com-golang-protobuf-1.4.2" +; ,go-github-com-golang-protobuf-1.4.2) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad" +; ,go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad) +; ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" +; ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-api-0.43.0 +; (package +; (name "go-google-golang-org-api") +; (version "0.43.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-api-go-client") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0wxxbihigjn49warampi7gqfslbnp9nrj5zmk8p3ssq429jpvsib")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/api")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.36.0" ,go-google-golang-org-grpc-1.36.0) +; ("go-google-golang-org-genproto-0.0.0-20210319143718-93e7006c17a6" +; ,go-google-golang-org-genproto-0.0.0-20210319143718-93e7006c17a6) +; ("go-google-golang-org-appengine-1.6.7" +; ,go-google-golang-org-appengine-1.6.7) +; ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) +; ("go-golang-org-x-sys-0.0.0-20210320140829-1e4c9ba3b0c4" +; ,go-golang-org-x-sys-0.0.0-20210320140829-1e4c9ba3b0c4) +; ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" +; ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) +; ("go-golang-org-x-oauth2-0.0.0-20210313182246-cd4f82c27b84" +; ,go-golang-org-x-oauth2-0.0.0-20210313182246-cd4f82c27b84) +; ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" +; ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) +; ("go-go-opencensus-io-0.23.0" ,go-go-opencensus-io-0.23.0) +; ("go-github-com-googleapis-gax-go-v2-2.0.5" +; ,go-github-com-googleapis-gax-go-v2-2.0.5) +; ("go-github-com-google-go-cmp-0.5.5" +; ,go-github-com-google-go-cmp-0.5.5) +; ("go-cloud-google-com-go-0.79.0" ,go-cloud-google-com-go-0.79.0))) +; (home-page "https://google.golang.org/api") +; (synopsis "Google APIs Client Library for Go") +; (description +; "Package api is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of +;sub-packages. +;") +; (license license:bsd-3))) +; +;(define-public go-cloud-google-com-go-0.81.0 +; (package +; (name "go-cloud-google-com-go") +; (version "0.81.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-cloud-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "15jgynqb5pbxqbj3a7ii970yn4srsw1dbxzxnhpkfkmplalpgyh3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "cloud.google.com/go")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.36.1" ,go-google-golang-org-grpc-1.36.1) +; ("go-google-golang-org-genproto-0.0.0-20210402141018-6c239bbf2bb1" +; ,go-google-golang-org-genproto-0.0.0-20210402141018-6c239bbf2bb1) +; ("go-google-golang-org-api-0.43.0" ,go-google-golang-org-api-0.43.0) +; ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) +; ("go-golang-org-x-text-0.3.5" ,go-golang-org-x-text-0.3.5) +; ("go-golang-org-x-oauth2-0.0.0-20210313182246-cd4f82c27b84" +; ,go-golang-org-x-oauth2-0.0.0-20210313182246-cd4f82c27b84) +; ("go-golang-org-x-net-0.0.0-20210316092652-d523dce5a7f4" +; ,go-golang-org-x-net-0.0.0-20210316092652-d523dce5a7f4) +; ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" +; ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) +; ("go-go-opencensus-io-0.23.0" ,go-go-opencensus-io-0.23.0) +; ("go-github-com-jstemmer-go-junit-report-0.9.1" +; ,go-github-com-jstemmer-go-junit-report-0.9.1) +; ("go-github-com-googleapis-gax-go-v2-2.0.5" +; ,go-github-com-googleapis-gax-go-v2-2.0.5) +; ("go-github-com-google-pprof-0.0.0-20210226084205-cbba55b83ad5" +; ,go-github-com-google-pprof-0.0.0-20210226084205-cbba55b83ad5) +; ("go-github-com-google-martian-v3-3.1.0" +; ,go-github-com-google-martian-v3-3.1.0) +; ("go-github-com-google-go-cmp-0.5.5" +; ,go-github-com-google-go-cmp-0.5.5) +; ("go-github-com-golang-protobuf-1.5.1" +; ,go-github-com-golang-protobuf-1.5.1) +; ("go-github-com-golang-mock-1.5.0" ,go-github-com-golang-mock-1.5.0) +; ("go-cloud-google-com-go-storage-1.10.0" +; ,go-cloud-google-com-go-storage-1.10.0))) +; (home-page "https://cloud.google.com/go") +; (synopsis "Google Cloud Client Libraries for Go") +; (description +; "Package cloud is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +;of sub-packages. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e +; (package +; (name "go-github-com-golang-groupcache") +; (version "0.0.0-20200121045136-8c9f03a8e57e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/groupcache") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0vjjr79r32icjzlb05wn02k59av7jx0rn1jijml8r4whlg7dnkfh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/groupcache")) +; (home-page "https://github.com/golang/groupcache") +; (synopsis "groupcache") +; (description +; "Package groupcache provides a data loading mechanism with caching +;and de-duplication that works across a set of peer processes. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-golang-protobuf-1.4.3 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.4.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1kf1d7xmyjvy0z6j5czp6nqyvj9zrk6liv6znif08927xqfrzyln")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.23.0" +; ,go-google-golang-org-protobuf-1.23.0) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0))) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-github-com-google-go-cmp-0.5.3 +; (package +; (name "go-github-com-google-go-cmp") +; (version "0.5.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/go-cmp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "011gdkmyk3w7qkcwljhqak4h5npn4n7fwgx1fwpyx9c7wizvgkm5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/go-cmp")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" +; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) +; (home-page "https://github.com/google/go-cmp") +; (synopsis "Package for equality of Go values") +; (description +; "This package is intended to be a more powerful and safer alternative to +;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") +; (license license:bsd-3))) +; +;(define-public go-github-com-stretchr-testify-1.6.1 +; (package +; (name "go-github-com-stretchr-testify") +; (version "1.6.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/testify") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1yhiqqzjvi63pf01rgzx68gqkkvjx03fvl5wk30br5l6s81s090l")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/testify")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" +; ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) +; ("go-github-com-stretchr-objx-0.1.0" +; ,go-github-com-stretchr-objx-0.1.0) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.0" +; ,go-github-com-davecgh-go-spew-1.1.0))) +; (home-page "https://github.com/stretchr/testify") +; (synopsis "Testify - Thou Shalt Write Tests") +; (description +; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20201110031124-69a78807bb2b") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "176z5k6jbhr9vf0am2avl1lyqwym3q0mri98yb8r572z33qmcw1d")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) +; ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" +; ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) +; ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" +; ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-grpc-1.33.2 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.33.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "03yz4nlf4kqbnpw48f0mvcb2f5zzy0vjd5i2iw0hrjspd0238fzk")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.25.0" +; ,go-google-golang-org-protobuf-1.25.0) +; ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" +; ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) +; ("go-github-com-google-go-cmp-0.5.0" +; ,go-github-com-google-go-cmp-0.5.0) +; ("go-github-com-golang-protobuf-1.4.1" +; ,go-github-com-golang-protobuf-1.4.1) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-envoyproxy-go-control-plane-0.9.4" +; ,go-github-com-envoyproxy-go-control-plane-0.9.4) +; ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" +; ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-go-opencensus-io-0.23.0 +; (package +; (name "go-go-opencensus-io") +; (version "0.23.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/census-instrumentation/opencensus-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0gw4f7inf8y2ik00yfb36xganiq9rl4w2d1a41bsjqsh83ajz2km")))) +; (build-system go-build-system) +; (arguments '(#:import-path "go.opencensus.io")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) +; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" +; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-google-go-cmp-0.5.3" +; ,go-github-com-google-go-cmp-0.5.3) +; ("go-github-com-golang-protobuf-1.4.3" +; ,go-github-com-golang-protobuf-1.4.3) +; ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" +; ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e))) +; (home-page "https://go.opencensus.io") +; (synopsis "OpenCensus Libraries for Go") +; (description "Package opencensus contains Go support for OpenCensus. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-golang-mock-1.4.4 +; (package +; (name "go-github-com-golang-mock") +; (version "1.4.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/mock") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1lj0dvd6div4jaq1s0afpwqaq9ah8cxhkq93wii2ably1xmp2l0a")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/mock")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262" +; ,go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262))) +; (home-page "https://github.com/golang/mock") +; (synopsis "gomock") +; (description +; "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It +;integrates well with Go's built-in @code{testing} package, but can be used in other +;contexts too.") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-tools-0.0.0-20200825202427-b303f430e36d +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20200825202427-b303f430e36d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0zzf6ifzjvkwin6m97jp2dndbfac0sbdr84ki79j9srhpqdigl75")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" +; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) +; ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" +; ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) +; ("go-golang-org-x-net-0.0.0-20200625001655-4c5254603344" +; ,go-golang-org-x-net-0.0.0-20200625001655-4c5254603344) +; ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) +; ("go-github-com-yuin-goldmark-1.1.32" +; ,go-github-com-yuin-goldmark-1.1.32))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20190628185345-da137c7871d7 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190628185345-da137c7871d7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1qsiyr3irmb6ii06hivm9p2c7wqyxczms1a9v1ss5698yjr3fg47")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-github-com-google-martian-v3-3.0.0 +; (package +; (name "go-github-com-google-martian-v3") +; (version "3.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/martian") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ngvs4l6a06s8scnliq9i5pwvwpzfpa5wf9skg0gcvysli1rm3fm")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/martian/v3")) +; (propagated-inputs +; `(("go-golang-org-x-net-0.0.0-20190628185345-da137c7871d7" +; ,go-golang-org-x-net-0.0.0-20190628185345-da137c7871d7))) +; (home-page "https://github.com/google/martian") +; (synopsis "Martian Proxy") +; (description +; "Package martian provides an HTTP/1.1 proxy with an API for configurable +;request and response modifiers. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-google-pprof-0.0.0-20200708004538-1a94d8640e99 +; (package +; (name "go-github-com-google-pprof") +; (version "0.0.0-20200708004538-1a94d8640e99") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/pprof") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0isfwwan9vimwsfjml0phwrqv6kb83mkmk063dcb81k09gzzs3wy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/pprof")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" +; ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) +; ("go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6" +; ,go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6) +; ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" +; ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) +; ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" +; ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) +; ("go-github-com-chzyer-logex-1.1.10" +; ,go-github-com-chzyer-logex-1.1.10))) +; (home-page "https://github.com/google/pprof") +; (synopsis "Introduction") +; (description +; "pprof is a tool for collection, manipulation and visualization +;of performance profiles. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-net-0.0.0-20200707034311-ab3426394381 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20200707034311-ab3426394381") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1wr7rnnqp210yykkypinb8ciszx28aq5a3l3dvsv6swzxxngs8zn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" +; ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) +; ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" +; ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20200729194436-6467de6f59a7 +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20200729194436-6467de6f59a7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "14zpkr5idlx2zbm5dp7gk4afppy7k3j4y68s1qvpgi70yazaxzkd")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" +; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) +; ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" +; ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) +; ("go-golang-org-x-net-0.0.0-20200625001655-4c5254603344" +; ,go-golang-org-x-net-0.0.0-20200625001655-4c5254603344) +; ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) +; ("go-github-com-yuin-goldmark-1.1.32" +; ,go-github-com-yuin-goldmark-1.1.32))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262 +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20190425150028-36563e24a262") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0lasi96f6a1h11gkm8kl33x03pmxp369wrqq2dg7x7xv9nq76d6g")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" +; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-text-0.0.0-20170915032832-14c0d48ead0c +; (package +; (name "go-golang-org-x-text") +; (version "0.0.0-20170915032832-14c0d48ead0c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/text") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0y0nrj4hw7vby6m3iqklbf4v7njqlsx7s4pwfkwmvh1ryn1kb7d6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/text")) +; (home-page "https://golang.org/x/text") +; (synopsis "Go Text") +; (description +; "text is a repository of text-related packages related to internationalization +;(i18n) and localization (l10n), such as character encodings, text +;transformations, and locale-specific text handling. +;") +; (license license:bsd-3))) +; +;(define-public go-rsc-io-sampler-1.3.0 +; (package +; (name "go-rsc-io-sampler") +; (version "1.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/rsc/sampler") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0byxk2ynba50py805kcvbvjzh59l1r308i1xgyzpw6lff4xx9xjh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "rsc.io/sampler")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.0.0-20170915032832-14c0d48ead0c" +; ,go-golang-org-x-text-0.0.0-20170915032832-14c0d48ead0c))) +; (home-page "https://rsc.io/sampler") +; (synopsis #f) +; (description "Package sampler shows simple texts. +;") +; (license license:bsd-3))) +; +;(define-public go-rsc-io-quote-v3-3.1.0 +; (package +; (name "go-rsc-io-quote-v3") +; (version "3.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/rsc/quote") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0nvv97hwwrl1mx5gzsbdm1ndnwpg3m7i2jb10ig9wily7zmvki0i")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "rsc.io/quote/v3" #:unpack-path "rsc.io/quote/v3")) +; (propagated-inputs `(("go-rsc-io-sampler-1.3.0" ,go-rsc-io-sampler-1.3.0))) +; (home-page "https://rsc.io/quote/v3") +; (synopsis #f) +; (description "Package quote collects pithy sayings. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-mock-1.4.3 +; (package +; (name "go-github-com-golang-mock") +; (version "1.4.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/mock") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1p37xnja1dgq5ykx24n7wincwz2gahjh71b95p8vpw7ss2g8j8wx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/mock")) +; (propagated-inputs +; `(("go-rsc-io-quote-v3-3.1.0" ,go-rsc-io-quote-v3-3.1.0) +; ("go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262" +; ,go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262))) +; (home-page "https://github.com/golang/mock") +; (synopsis "gomock") +; (description +; "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It +;integrates well with Go's built-in @code{testing} package, but can be used in other +;contexts too.") +; (license license:asl2.0))) +; +;(define-public go-github-com-golang-protobuf-1.3.5 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.3.5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1gkd1942vk9n8kfzdwy1iil6wgvlwjq7a3y5jc49ck4lz9rhmgkq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-github-com-chzyer-logex-1.1.10 +; (package +; (name "go-github-com-chzyer-logex") +; (version "1.1.10") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/chzyer/logex") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "08pbjj3wx9acavlwyr055isa8a5hnmllgdv5k6ra60l5y1brmlq4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/chzyer/logex")) +; (home-page "https://github.com/chzyer/logex") +; (synopsis #f) +; (description #f) +; (license #f))) +; +;(define-public go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e +; (package +; (name "go-github-com-chzyer-readline") +; (version "0.0.0-20180603132655-2972be24d48e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/chzyer/readline") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "104q8dazj8yf6b089jjr82fy9h1g80zyyzvp3g8b44a7d8ngjj6r")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/chzyer/readline")) +; (home-page "https://github.com/chzyer/readline") +; (synopsis "Guide") +; (description +; "Readline is a pure go implementation for GNU-Readline kind library. +;") +; (license license:expat))) +; +;(define-public go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1 +; (package +; (name "go-github-com-chzyer-test") +; (version "0.0.0-20180213035817-a1ea475d72b1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/chzyer/test") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0rns2aqk22i9xsgyap0pq8wi4cfaxsri4d9q6xxhhyma8jjsnj2k")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/chzyer/test")) +; (home-page "https://github.com/chzyer/test") +; (synopsis "test") +; (description #f) +; (license license:expat))) +; +;(define-public go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6 +; (package +; (name "go-github-com-ianlancetaylor-demangle") +; (version "0.0.0-20181102032728-5e5cf60278f6") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/ianlancetaylor/demangle") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1fhjk11cip9c3jyj1byz9z77n6n2rlxmyz0xjx1zpn1da3cvri75")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/ianlancetaylor/demangle")) +; (home-page "https://github.com/ianlancetaylor/demangle") +; (synopsis "github.com/ianlancetaylor/demangle") +; (description +; "Package demangle defines functions that demangle GCC/LLVM +;C++ and Rust symbol names. +;This package recognizes names that were mangled according to the C++ ABI +;defined at @url{http://codesourcery.com/cxx-abi/,http://codesourcery.com/cxx-abi/} and the Rust ABI +;defined at +;@url{https://rust-lang.github.io/rfcs/2603-rust-symbol-name-mangling-v0.html,https://rust-lang.github.io/rfcs/2603-rust-symbol-name-mangling-v0.html} +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20191204072324-ce4227a45e2e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1s43wvqfml6ml5ks7iv2bis9d664g77mq86v7mfmjhn56x856g35")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-google-pprof-0.0.0-20200229191704-1ebb73c60ed3 +; (package +; (name "go-github-com-google-pprof") +; (version "0.0.0-20200229191704-1ebb73c60ed3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/pprof") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1gdi9p4j1zfm5xlm488i5l0q3kk4q6hsmbmlk6p729i0di2n3ifa")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/pprof")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" +; ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) +; ("go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6" +; ,go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6) +; ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" +; ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) +; ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" +; ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) +; ("go-github-com-chzyer-logex-1.1.10" +; ,go-github-com-chzyer-logex-1.1.10))) +; (home-page "https://github.com/google/pprof") +; (synopsis "Introduction") +; (description +; "pprof is a tool for collection, manipulation and visualization +;of performance profiles. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-jstemmer-go-junit-report-0.9.1 +; (package +; (name "go-github-com-jstemmer-go-junit-report") +; (version "0.9.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/jstemmer/go-junit-report") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1knip80yir1cdsjlb3rzy0a4w3kl4ljpiciaz6hjzwqlfhnv7bkw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/jstemmer/go-junit-report")) +; (home-page "https://github.com/jstemmer/go-junit-report") +; (synopsis "go-junit-report") +; (description +; "Converts @code{go test} output to an xml report, suitable for applications that +;expect junit xml reports (e.g. @url{http://jenkins-ci.org,Jenkins}).") +; (license license:expat))) +; +;(define-public go-golang-org-x-net-0.0.0-20200324143707-d3edc9973b7e +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20200324143707-d3edc9973b7e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "12zbjwcsh9b0lwycqlkrnbyg5a6a9dzgj8hhgq399bdda5bd97y7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" +; ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-mock-1.2.0 +; (package +; (name "go-github-com-golang-mock") +; (version "1.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/mock") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "12ddj2g8ab87id6n2n67vnbhq6p8dvgsq1pzpqfriym4dk8w54fg")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/mock")) +; (home-page "https://github.com/golang/mock") +; (synopsis "gomock") +; (description +; "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It +;integrates well with Go's built-in @code{testing} package, but can be used in other +;contexts too.") +; (license license:asl2.0))) +; +;(define-public go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c +; (package +; (name "go-github-com-google-btree") +; (version "0.0.0-20180813153112-4030bb1f1f0c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/btree") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ba430m9fbnagacp57krgidsyrgp3ycw5r7dj71brgp5r52g82p6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/btree")) +; (home-page "https://github.com/google/btree") +; (synopsis "BTree implementation for Go") +; (description +; "Package btree implements in-memory B-Trees of arbitrary degree. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-google-martian-2.1.0+incompatible +; (package +; (name "go-github-com-google-martian") +; (version "2.1.0+incompatible") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/martian") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "197hil6vrjk50b9wvwyzf61csid83whsjj6ik8mc9r2lryxlyyrp")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/martian")) +; (home-page "https://github.com/google/martian") +; (synopsis "Martian Proxy") +; (description +; "Package martian provides an HTTP/1.1 proxy with an API for configurable +;request and response modifiers. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-google-pprof-0.0.0-20181206194817-3ea8567a2e57 +; (package +; (name "go-github-com-google-pprof") +; (version "0.0.0-20181206194817-3ea8567a2e57") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/pprof") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "09rhjn3ms0a72dw0yzbp237p7yhqma772zspddn6mgkh3gi3kn4c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/pprof")) +; (home-page "https://github.com/google/pprof") +; (synopsis "Introduction") +; (description +; "pprof is a tool for collection, manipulation and visualization +;of performance profiles. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-googleapis-gax-go-v2-2.0.4 +; (package +; (name "go-github-com-googleapis-gax-go-v2") +; (version "2.0.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/gax-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1iwnm6ky1x53lgs44mw3hpdkjzrm5qd0kfs50m0qcq2ml5m1cwdm")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/googleapis/gax-go/v2")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.19.0" +; ,go-google-golang-org-grpc-1.19.0))) +; (home-page "https://github.com/googleapis/gax-go") +; (synopsis #f) +; (description +; "Package gax contains a set of modules which aid the development of APIs +;for clients and servers based on gRPC and Google API conventions. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-jstemmer-go-junit-report-0.0.0-20190106144839-af01ea7f8024 +; (package +; (name "go-github-com-jstemmer-go-junit-report") +; (version "0.0.0-20190106144839-af01ea7f8024") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/jstemmer/go-junit-report") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1lp3n94ris12hac02wi31f3whs88lcrzwgdg43a5j6cafg9p1d0s")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/jstemmer/go-junit-report")) +; (home-page "https://github.com/jstemmer/go-junit-report") +; (synopsis "go-junit-report") +; (description +; "Converts @code{go test} output to an xml report, suitable for applications that +;expect junit xml reports (e.g. @url{http://jenkins-ci.org,Jenkins}).") +; (license license:expat))) +; +;(define-public go-golang-org-x-text-0.3.1-0.20180807135948-17ff2d5776d2 +; (package +; (name "go-golang-org-x-text") +; (version "0.3.1-0.20180807135948-17ff2d5776d2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/text") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1rrh2mnmyxr45nsvy42zq3w3ly6gw6rl993knwvf1w71kyv0jjnj")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/text")) +; (home-page "https://golang.org/x/text") +; (synopsis "Go Text") +; (description +; "text is a repository of text-related packages related to internationalization +;(i18n) and localization (l10n), such as character encodings, text +;transformations, and locale-specific text handling. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-time-0.0.0-20181108054448-85acf8d2951c +; (package +; (name "go-golang-org-x-time") +; (version "0.0.0-20181108054448-85acf8d2951c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/time") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0yqnxsrarjk4qkda8kcxzmk7y90kkkxzx9iwryzrk7bzs87ky3xc")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/time")) +; (home-page "https://golang.org/x/time") +; (synopsis "Go Time") +; (description "This repository provides supplementary Go time packages.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f +; (package +; (name "go-golang-org-x-lint") +; (version "0.0.0-20190301231843-5614ed5bae6f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/lint") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0fzn0zjv0x92xvfdq3a0v9w5sgkhr7hxkfy9zaqi8i57807z8bnx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/lint")) +; (home-page "https://golang.org/x/lint") +; (synopsis "Installation") +; (description "Package lint contains a linter for Go source code. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421 +; (package +; (name "go-golang-org-x-oauth2") +; (version "0.0.0-20190226205417-e64efc72b421") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/oauth2") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0djvwz2avx7knsjbl434vw1wqbrg53xp1kh599gfixn5icrggz4m")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/oauth2")) +; (propagated-inputs +; `(("go-google-golang-org-appengine-1.4.0" +; ,go-google-golang-org-appengine-1.4.0) +; ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" +; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) +; ("go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e" +; ,go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e) +; ("go-cloud-google-com-go-0.34.0" ,go-cloud-google-com-go-0.34.0))) +; (home-page "https://golang.org/x/oauth2") +; (synopsis "OAuth2 for Go") +; (description +; "Package oauth2 provides support for making +;OAuth2 authorized and authenticated HTTP requests, +;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +;It can additionally grant authorization with Bearer JWT. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138 +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20190312170243-e65039ee4138") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0c094599cf70wdrms49a3879qkq122pqlp2av444gs2pvc8apdcx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-api-0.4.0 +; (package +; (name "go-google-golang-org-api") +; (version "0.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-api-go-client") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1hzgrw5wasmcjlqpxsmryddzzw4cwyzf2vx14i9z51v1plwssijm")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/api")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" +; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) +; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) +; ("go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19" +; ,go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19) +; ("go-google-golang-org-appengine-1.4.0" +; ,go-google-golang-org-appengine-1.4.0) +; ("go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138" +; ,go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138) +; ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" +; ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) +; ("go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421" +; ,go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421) +; ("go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f" +; ,go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f) +; ("go-go-opencensus-io-0.21.0" ,go-go-opencensus-io-0.21.0) +; ("go-github-com-google-go-cmp-0.2.0" +; ,go-github-com-google-go-cmp-0.2.0))) +; (home-page "https://google.golang.org/api") +; (synopsis "Google APIs Client Library for Go") +; (description +; "Package api is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of +;sub-packages. +;") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20190418145605-e7d98fc518a7 +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20190418145605-e7d98fc518a7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1cnavkyawwvfc5yl097ygnfy1ac69v4zc02gdfnq1bvgcvgmvnbi")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" +; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) +; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) +; ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" +; ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) +; ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" +; ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) +; ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" +; ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd) +; ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" +; ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) +; ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" +; ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-honnef-co-go-tools-0.0.0-20190106161140-3f1c8253044a +; (package +; (name "go-honnef-co-go-tools") +; (version "0.0.0-20190106161140-3f1c8253044a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/dominikh/go-tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0d3vgh0fgfj1z7i648g1s6x2pwxd07sxfjwg1xn3yagr9h06jh3h")))) +; (build-system go-build-system) +; (arguments '(#:import-path "honnef.co/go/tools")) +; (home-page "https://honnef.co/go/tools") +; (synopsis "Documentation") +; (description +; "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, +;offers simplifications, and enforces style rules.") +; (license license:expat))) +; +;(define-public go-cloud-google-com-go-0.38.0 +; (package +; (name "go-cloud-google-com-go") +; (version "0.38.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-cloud-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0n6n13b7lri2fmc4bn4ifszyawj31dpbzvyv0xafsf81440z8cyh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "cloud.google.com/go")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190106161140-3f1c8253044a" +; ,go-honnef-co-go-tools-0.0.0-20190106161140-3f1c8253044a) +; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) +; ("go-google-golang-org-genproto-0.0.0-20190418145605-e7d98fc518a7" +; ,go-google-golang-org-genproto-0.0.0-20190418145605-e7d98fc518a7) +; ("go-google-golang-org-api-0.4.0" ,go-google-golang-org-api-0.4.0) +; ("go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138" +; ,go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138) +; ("go-golang-org-x-time-0.0.0-20181108054448-85acf8d2951c" +; ,go-golang-org-x-time-0.0.0-20181108054448-85acf8d2951c) +; ("go-golang-org-x-text-0.3.1-0.20180807135948-17ff2d5776d2" +; ,go-golang-org-x-text-0.3.1-0.20180807135948-17ff2d5776d2) +; ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" +; ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) +; ("go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421" +; ,go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421) +; ("go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f" +; ,go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f) +; ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" +; ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) +; ("go-go-opencensus-io-0.21.0" ,go-go-opencensus-io-0.21.0) +; ("go-github-com-jstemmer-go-junit-report-0.0.0-20190106144839-af01ea7f8024" +; ,go-github-com-jstemmer-go-junit-report-0.0.0-20190106144839-af01ea7f8024) +; ("go-github-com-googleapis-gax-go-v2-2.0.4" +; ,go-github-com-googleapis-gax-go-v2-2.0.4) +; ("go-github-com-google-pprof-0.0.0-20181206194817-3ea8567a2e57" +; ,go-github-com-google-pprof-0.0.0-20181206194817-3ea8567a2e57) +; ("go-github-com-google-martian-2.1.0+incompatible" +; ,go-github-com-google-martian-2.1.0+incompatible) +; ("go-github-com-google-go-cmp-0.2.0" +; ,go-github-com-google-go-cmp-0.2.0) +; ("go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c" +; ,go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0) +; ("go-github-com-golang-mock-1.2.0" ,go-github-com-golang-mock-1.2.0))) +; (home-page "https://cloud.google.com/go") +; (synopsis "Google Cloud Client Libraries for Go") +; (description +; "Package cloud is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +;of sub-packages. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-hashicorp-golang-lru-0.5.1 +; (package +; (name "go-github-com-hashicorp-golang-lru") +; (version "0.5.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/golang-lru") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "13f870cvk161bzjj6x41l45r5x9i1z9r2ymwmvm7768kg08zznpy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hashicorp/golang-lru")) +; (home-page "https://github.com/hashicorp/golang-lru") +; (synopsis "golang-lru") +; (description +; "Package lru provides three different LRU caches of varying sophistication. +;") +; (license license:mpl2.0))) +; +;(define-public go-github-com-hashicorp-golang-lru-0.5.0 +; (package +; (name "go-github-com-hashicorp-golang-lru") +; (version "0.5.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/golang-lru") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "12k2cp2k615fjvfa5hyb9k2alian77wivds8s65diwshwv41939f")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hashicorp/golang-lru")) +; (home-page "https://github.com/hashicorp/golang-lru") +; (synopsis "golang-lru") +; (description +; "Package lru provides three different LRU caches of varying sophistication. +;") +; (license license:mpl2.0))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19 +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20190307195333-5fe7a883aa19") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0qjkwig0r42q0j2qv57s4ahsgmmp41dz3ih3rnaqg0619n5w7lbs")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" +; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) +; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) +; ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" +; ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) +; ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" +; ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) +; ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" +; ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd) +; ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" +; ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) +; ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" +; ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-go-opencensus-io-0.21.0 +; (package +; (name "go-go-opencensus-io") +; (version "0.21.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/census-instrumentation/opencensus-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "14s0a12xdzjvad0dgksgv8m3hh7nc585abvjkvyk6r67a29lxj6x")))) +; (build-system go-build-system) +; (arguments '(#:import-path "go.opencensus.io")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) +; ("go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19" +; ,go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-github-com-hashicorp-golang-lru-0.5.0" +; ,go-github-com-hashicorp-golang-lru-0.5.0) +; ("go-github-com-google-go-cmp-0.2.0" +; ,go-github-com-google-go-cmp-0.2.0) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0))) +; (home-page "https://go.opencensus.io") +; (synopsis "OpenCensus Libraries for Go") +; (description "Package opencensus contains Go support for OpenCensus. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422 +; (package +; (name "go-golang-org-x-lint") +; (version "0.0.0-20190409202823-959b441ac422") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/lint") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1mgcv5f00pkzsbwnq2y7vqvd1b4lr5a3s47cphh2qv4indfk7pck")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/lint")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" +; ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd))) +; (home-page "https://golang.org/x/lint") +; (synopsis "Installation") +; (description "Package lint contains a linter for Go source code. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20190503192946-f4e77d36d62c +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190503192946-f4e77d36d62c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0avjnglqqg9ya0cbhp23m4namykii219kxjywxn4cd7pfcc5arha")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45 +; (package +; (name "go-golang-org-x-oauth2") +; (version "0.0.0-20190604053449-0f29369cfe45") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/oauth2") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "06jwpvx0x2gjn2y959drbcir5kd7vg87k0r1216abk6rrdzzrzi2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/oauth2")) +; (propagated-inputs +; `(("go-google-golang-org-appengine-1.4.0" +; ,go-google-golang-org-appengine-1.4.0) +; ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" +; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) +; ("go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e" +; ,go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e) +; ("go-cloud-google-com-go-0.34.0" ,go-cloud-google-com-go-0.34.0))) +; (home-page "https://golang.org/x/oauth2") +; (synopsis "OAuth2 for Go") +; (description +; "Package oauth2 provides support for making +;OAuth2 authorized and authenticated HTTP requests, +;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +;It can additionally grant authorization with Bearer JWT. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190507160741-ecd444e8653b") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1vhld4948mzfnlgf20id29mv1bwpk9a3xlbw1mbjzxzxxdv1jds2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-appengine-1.5.0 +; (package +; (name "go-google-golang-org-appengine") +; (version "1.5.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/appengine") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0l7mkdnwhidv8m686x432vmx8z5nqcrr9f46ddgvrxbh4wvyfcll")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/appengine")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225" +; ,go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0))) +; (home-page "https://google.golang.org/appengine") +; (synopsis "Go App Engine packages") +; (description +; "Package appengine provides basic functionality for Google App Engine. +;") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-api-0.20.0 +; (package +; (name "go-google-golang-org-api") +; (version "0.20.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-api-go-client") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "13syr1x33k6mrn5w6l4sgdbzn368w3m60vf6kk2j10fwa45125rg")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/api")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" +; ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) +; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) +; ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" +; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) +; ("go-google-golang-org-appengine-1.5.0" +; ,go-google-golang-org-appengine-1.5.0) +; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" +; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) +; ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) +; ("go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b" +; ,go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b) +; ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" +; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) +; ("go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45" +; ,go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45) +; ("go-golang-org-x-net-0.0.0-20190503192946-f4e77d36d62c" +; ,go-golang-org-x-net-0.0.0-20190503192946-f4e77d36d62c) +; ("go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422" +; ,go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422) +; ("go-go-opencensus-io-0.21.0" ,go-go-opencensus-io-0.21.0) +; ("go-github-com-hashicorp-golang-lru-0.5.1" +; ,go-github-com-hashicorp-golang-lru-0.5.1) +; ("go-github-com-googleapis-gax-go-v2-2.0.5" +; ,go-github-com-googleapis-gax-go-v2-2.0.5) +; ("go-github-com-google-go-cmp-0.3.0" +; ,go-github-com-google-go-cmp-0.3.0) +; ("go-cloud-google-com-go-0.38.0" ,go-cloud-google-com-go-0.38.0))) +; (home-page "https://google.golang.org/api") +; (synopsis "Google APIs Client Library for Go") +; (description +; "Package api is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of +;sub-packages. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-google-renameio-0.1.0 +; (package +; (name "go-github-com-google-renameio") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/renameio") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ki2x5a9nrj17sn092d6n4zr29lfg5ydv4xz5cp58z6cw8ip43jx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/renameio")) +; (home-page "https://github.com/google/renameio") +; (synopsis "Atomicity vs durability") +; (description +; "Package renameio provides a way to atomically create or replace a file or +;symbolic link. +;") +; (license license:asl2.0))) +; +;(define-public go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127 +; (package +; (name "go-gopkg-in-check-v1") +; (version "1.0.0-20180628173108-788fd7840127") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/check.v1") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0v3bim0j375z81zrpr5qv42knqs0y2qv2vkjiqi5axvb78slki1a")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) +; (home-page "https://gopkg.in/check.v1") +; (synopsis "Instructions") +; (description +; "Package check is a rich testing extension for Go's testing package. +;") +; (license license:bsd-2))) +; +;(define-public go-gopkg-in-errgo-v2-2.1.0 +; (package +; (name "go-gopkg-in-errgo-v2") +; (version "2.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/errgo.v2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "065mbihiy7q67wnql0bzl9y1kkvck5ivra68254zbih52jxwrgr2")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/errgo.v2" #:unpack-path "gopkg.in/errgo.v2")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" +; ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) +; ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0))) +; (home-page "https://gopkg.in/errgo.v2") +; (synopsis #f) +; (description +; "Package errgo provides some primitives for error creation and handling.") +; (license license:bsd-3))) +; +;(define-public go-github-com-rogpeppe-go-internal-1.3.0 +; (package +; (name "go-github-com-rogpeppe-go-internal") +; (version "1.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/rogpeppe/go-internal") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0mcdh1licgnnahwml9y2iq6xy5x9xmjw5frcnds2s3wpjyqrl216")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/rogpeppe/go-internal")) +; (propagated-inputs +; `(("go-gopkg-in-errgo-v2-2.1.0" ,go-gopkg-in-errgo-v2-2.1.0))) +; (home-page "https://github.com/rogpeppe/go-internal") +; (synopsis #f) +; (description +; "This repository factors out an opinionated selection of internal packages and functionality from the Go standard +;library. Currently this consists mostly of packages and testing code from within the Go tool implementation.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20190510104115-cbcb75029529 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20190510104115-cbcb75029529") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "12831ga1gq04a3jbbcmww7kaqfdfgp7cdv2fj9aqidz8h52ajdmh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" +; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) +; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" +; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-mod-0.0.0-20190513183733-4bf6d317e70e +; (package +; (name "go-golang-org-x-mod") +; (version "0.0.0-20190513183733-4bf6d317e70e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/mod") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19lg1ly3j31anx92p0hynic1gjk417wwxphfdrb2cq1c19kj3r17")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/mod")) +; (propagated-inputs +; `(("go-golang-org-x-crypto-0.0.0-20190510104115-cbcb75029529" +; ,go-golang-org-x-crypto-0.0.0-20190510104115-cbcb75029529))) +; (home-page "https://golang.org/x/mod") +; (synopsis "mod") +; (description +; "This repository holds packages for writing tools +;that work directly with Go module mechanics. +;That is, it is for direct manipulation of Go modules themselves.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20191130070609-6e064ea0cf2d +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20191130070609-6e064ea0cf2d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1nbki367xspsa37j6276f5q2gv31vfjpb52axn3p3ymz548my75d")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7" +; ,go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7) +; ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" +; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) +; ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" +; ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-honnef-co-go-tools-0.0.1-2020.1.3 +; (package +; (name "go-honnef-co-go-tools") +; (version "0.0.1-2020.1.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/dominikh/go-tools") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0pvi1mzhy6zgx4zfgdypbl4zhvgg11hl5qv7blf2qs0a96j2djhf")))) +; (build-system go-build-system) +; (arguments '(#:import-path "honnef.co/go/tools")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20191130070609-6e064ea0cf2d" +; ,go-golang-org-x-tools-0.0.0-20191130070609-6e064ea0cf2d) +; ("go-golang-org-x-mod-0.0.0-20190513183733-4bf6d317e70e" +; ,go-golang-org-x-mod-0.0.0-20190513183733-4bf6d317e70e) +; ("go-github-com-rogpeppe-go-internal-1.3.0" +; ,go-github-com-rogpeppe-go-internal-1.3.0) +; ("go-github-com-kisielk-gotool-1.0.0" +; ,go-github-com-kisielk-gotool-1.0.0) +; ("go-github-com-google-renameio-0.1.0" +; ,go-github-com-google-renameio-0.1.0) +; ("go-github-com-burntsushi-toml-0.3.1" +; ,go-github-com-burntsushi-toml-0.3.1))) +; (home-page "https://honnef.co/go/tools") +; (synopsis "Documentation") +; (description +; "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, +;offers simplifications, and enforces style rules.") +; (license license:expat))) +; +;(define-public go-cloud-google-com-go-0.56.0 +; (package +; (name "go-cloud-google-com-go") +; (version "0.56.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-cloud-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1bpx84q7byxr5rp197qcg3pl56acs8v1q555frxgcqygxwjacszf")))) +; (build-system go-build-system) +; (arguments '(#:import-path "cloud.google.com/go")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.1-2020.1.3" +; ,go-honnef-co-go-tools-0.0.1-2020.1.3) +; ("go-google-golang-org-grpc-1.28.0" ,go-google-golang-org-grpc-1.28.0) +; ("go-google-golang-org-genproto-0.0.0-20200331122359-1ee6d9798940" +; ,go-google-golang-org-genproto-0.0.0-20200331122359-1ee6d9798940) +; ("go-google-golang-org-api-0.20.0" ,go-google-golang-org-api-0.20.0) +; ("go-golang-org-x-tools-0.0.0-20200331025713-a30bf2db82d4" +; ,go-golang-org-x-tools-0.0.0-20200331025713-a30bf2db82d4) +; ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) +; ("go-golang-org-x-sys-0.0.0-20200331124033-c3d80250170d" +; ,go-golang-org-x-sys-0.0.0-20200331124033-c3d80250170d) +; ("go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a" +; ,go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a) +; ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" +; ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) +; ("go-golang-org-x-net-0.0.0-20200324143707-d3edc9973b7e" +; ,go-golang-org-x-net-0.0.0-20200324143707-d3edc9973b7e) +; ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" +; ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) +; ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) +; ("go-github-com-jstemmer-go-junit-report-0.9.1" +; ,go-github-com-jstemmer-go-junit-report-0.9.1) +; ("go-github-com-googleapis-gax-go-v2-2.0.5" +; ,go-github-com-googleapis-gax-go-v2-2.0.5) +; ("go-github-com-google-pprof-0.0.0-20200229191704-1ebb73c60ed3" +; ,go-github-com-google-pprof-0.0.0-20200229191704-1ebb73c60ed3) +; ("go-github-com-google-martian-2.1.0+incompatible" +; ,go-github-com-google-martian-2.1.0+incompatible) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.3.5" +; ,go-github-com-golang-protobuf-1.3.5) +; ("go-github-com-golang-mock-1.4.3" ,go-github-com-golang-mock-1.4.3) +; ("go-cloud-google-com-go-storage-1.6.0" +; ,go-cloud-google-com-go-storage-1.6.0) +; ("go-cloud-google-com-go-pubsub-1.2.0" +; ,go-cloud-google-com-go-pubsub-1.2.0) +; ("go-cloud-google-com-go-datastore-1.1.0" +; ,go-cloud-google-com-go-datastore-1.1.0) +; ("go-cloud-google-com-go-bigquery-1.4.0" +; ,go-cloud-google-com-go-bigquery-1.4.0))) +; (home-page "https://cloud.google.com/go") +; (synopsis "Google Cloud Client Libraries for Go") +; (description +; "Package cloud is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +;of sub-packages. +;") +; (license license:asl2.0))) +; +;(define-public go-go-opencensus-io-0.22.3 +; (package +; (name "go-go-opencensus-io") +; (version "0.22.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/census-instrumentation/opencensus-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0xj16iq5jp26hi2py7lsd8cvqh651fgn39y05gzvjdi88d9xd3nw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "go.opencensus.io")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.20.1" ,go-google-golang-org-grpc-1.20.1) +; ("go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb" +; ,go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb) +; ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) +; ("go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd" +; ,go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd) +; ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" +; ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) +; ("go-github-com-stretchr-testify-1.4.0" +; ,go-github-com-stretchr-testify-1.4.0) +; ("go-github-com-google-go-cmp-0.3.0" +; ,go-github-com-google-go-cmp-0.3.0) +; ("go-github-com-golang-protobuf-1.3.1" +; ,go-github-com-golang-protobuf-1.3.1) +; ("go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6" +; ,go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6))) +; (home-page "https://go.opencensus.io") +; (synopsis "OpenCensus Libraries for Go") +; (description "Package opencensus contains Go support for OpenCensus. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a +; (package +; (name "go-golang-org-x-sync") +; (version "0.0.0-20200317015054-43a5402ce75a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sync") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0j6zrrb81qjr1926kkwmn0di9a0jn8qyjd9dw614rfkihxgq1vsm")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sync")) +; (home-page "https://golang.org/x/sync") +; (synopsis "Go Sync") +; (description +; "This repository provides Go concurrency primitives in addition to the +;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20200331124033-c3d80250170d +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20200331124033-c3d80250170d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1nswjhkg7yixla0b3d8xwzf94rawwyjrxipay3ffdvm426n0ld42")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-yuin-goldmark-1.1.25 +; (package +; (name "go-github-com-yuin-goldmark") +; (version "1.1.25") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/yuin/goldmark") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0cr3mk8pr7vsyisgrvln5ailnnn9xhardcy8mkshybk5c3n1kw5k")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/yuin/goldmark")) +; (home-page "https://github.com/yuin/goldmark") +; (synopsis "goldmark") +; (description +; "Package goldmark implements functions to convert markdown text to a desired format. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-tools-0.0.0-20200331025713-a30bf2db82d4 +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20200331025713-a30bf2db82d4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1rb488ydwi24zmd1zvsv8k8srs3q6xnqqfdar538hssqgljyvp7l")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" +; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) +; ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" +; ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) +; ("go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b" +; ,go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b) +; ("go-golang-org-x-mod-0.2.0" ,go-golang-org-x-mod-0.2.0) +; ("go-github-com-yuin-goldmark-1.1.25" +; ,go-github-com-yuin-goldmark-1.1.25))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-appengine-1.6.5 +; (package +; (name "go-google-golang-org-appengine") +; (version "1.6.5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/appengine") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "05hbq4cs7bqw0zl17bx8rzdkszid3nyl92100scg3jjrg70dhm7w")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/appengine")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) +; ("go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65" +; ,go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65) +; ("go-github-com-golang-protobuf-1.3.1" +; ,go-github-com-golang-protobuf-1.3.1))) +; (home-page "https://google.golang.org/appengine") +; (synopsis "Go App Engine packages") +; (description +; "Package appengine provides basic functionality for Google App Engine. +;") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20200331122359-1ee6d9798940 +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20200331122359-1ee6d9798940") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1zsp55d7xjc0b3yw5jjpvbsc0gkji1c1j2vxmcwm89dh26rz4jwd")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" +; ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) +; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) +; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" +; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-github-com-golang-protobuf-1.3.3" +; ,go-github-com-golang-protobuf-1.3.3))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-grpc-1.28.0 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.28.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1m36rg3w2mf4r3383yf0r1pjrz890mdw506h1lpm6bkc8w3kyqz3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" +; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-github-com-google-go-cmp-0.2.0" +; ,go-github-com-google-go-cmp-0.2.0) +; ("go-github-com-golang-protobuf-1.3.3" +; ,go-github-com-golang-protobuf-1.3.3) +; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" +; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) +; ("go-github-com-envoyproxy-go-control-plane-0.9.4" +; ,go-github-com-envoyproxy-go-control-plane-0.9.4))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-api-0.29.0 +; (package +; (name "go-google-golang-org-api") +; (version "0.29.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-api-go-client") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1y6izqcc6krill33pb57fbgbs7ni3jxyf3knm5jkl4qydsj9303h")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/api")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.28.0" ,go-google-golang-org-grpc-1.28.0) +; ("go-google-golang-org-genproto-0.0.0-20200331122359-1ee6d9798940" +; ,go-google-golang-org-genproto-0.0.0-20200331122359-1ee6d9798940) +; ("go-google-golang-org-appengine-1.6.5" +; ,go-google-golang-org-appengine-1.6.5) +; ("go-golang-org-x-tools-0.0.0-20200331025713-a30bf2db82d4" +; ,go-golang-org-x-tools-0.0.0-20200331025713-a30bf2db82d4) +; ("go-golang-org-x-sys-0.0.0-20200331124033-c3d80250170d" +; ,go-golang-org-x-sys-0.0.0-20200331124033-c3d80250170d) +; ("go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a" +; ,go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a) +; ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" +; ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) +; ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" +; ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) +; ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) +; ("go-github-com-googleapis-gax-go-v2-2.0.5" +; ,go-github-com-googleapis-gax-go-v2-2.0.5) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-cloud-google-com-go-0.56.0" ,go-cloud-google-com-go-0.56.0))) +; (home-page "https://google.golang.org/api") +; (synopsis "Google APIs Client Library for Go") +; (description +; "Package api is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of +;sub-packages. +;") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20200729003335-053ba62fc06f +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20200729003335-053ba62fc06f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1h34qgr4lqy1l0niay3gzqh6pc63y2xh1mmp8757y8jsrdz1s5fv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.24.0" +; ,go-google-golang-org-protobuf-1.24.0) +; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) +; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" +; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-github-com-golang-protobuf-1.4.1" +; ,go-github-com-golang-protobuf-1.4.1))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-grpc-1.30.0 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.30.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "05pb9xrxd7kpbi8zzby90f87b6sxq65nmpgqx5h3255whmmpzbi9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" +; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.3.3" +; ,go-github-com-golang-protobuf-1.3.3) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-envoyproxy-go-control-plane-0.9.4" +; ,go-github-com-envoyproxy-go-control-plane-0.9.4) +; ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" +; ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-cloud-google-com-go-0.62.0 +; (package +; (name "go-cloud-google-com-go") +; (version "0.62.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-cloud-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "00x1nlq4fvvxrwx24firscav511qwck3zl6ghs9p6zzzixla8r5h")))) +; (build-system go-build-system) +; (arguments '(#:import-path "cloud.google.com/go")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.25.0" +; ,go-google-golang-org-protobuf-1.25.0) +; ("go-google-golang-org-grpc-1.30.0" ,go-google-golang-org-grpc-1.30.0) +; ("go-google-golang-org-genproto-0.0.0-20200729003335-053ba62fc06f" +; ,go-google-golang-org-genproto-0.0.0-20200729003335-053ba62fc06f) +; ("go-google-golang-org-api-0.29.0" ,go-google-golang-org-api-0.29.0) +; ("go-golang-org-x-tools-0.0.0-20200729194436-6467de6f59a7" +; ,go-golang-org-x-tools-0.0.0-20200729194436-6467de6f59a7) +; ("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) +; ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" +; ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) +; ("go-golang-org-x-net-0.0.0-20200707034311-ab3426394381" +; ,go-golang-org-x-net-0.0.0-20200707034311-ab3426394381) +; ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" +; ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) +; ("go-go-opencensus-io-0.22.4" ,go-go-opencensus-io-0.22.4) +; ("go-github-com-jstemmer-go-junit-report-0.9.1" +; ,go-github-com-jstemmer-go-junit-report-0.9.1) +; ("go-github-com-googleapis-gax-go-v2-2.0.5" +; ,go-github-com-googleapis-gax-go-v2-2.0.5) +; ("go-github-com-google-pprof-0.0.0-20200708004538-1a94d8640e99" +; ,go-github-com-google-pprof-0.0.0-20200708004538-1a94d8640e99) +; ("go-github-com-google-martian-v3-3.0.0" +; ,go-github-com-google-martian-v3-3.0.0) +; ("go-github-com-google-go-cmp-0.5.1" +; ,go-github-com-google-go-cmp-0.5.1) +; ("go-github-com-golang-protobuf-1.4.2" +; ,go-github-com-golang-protobuf-1.4.2) +; ("go-github-com-golang-mock-1.4.3" ,go-github-com-golang-mock-1.4.3) +; ("go-cloud-google-com-go-storage-1.10.0" +; ,go-cloud-google-com-go-storage-1.10.0))) +; (home-page "https://cloud.google.com/go") +; (synopsis "Google Cloud Client Libraries for Go") +; (description +; "Package cloud is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +;of sub-packages. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-google-go-cmp-0.5.1 +; (package +; (name "go-github-com-google-go-cmp") +; (version "0.5.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/go-cmp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1wjdid59brciv09agxgmqac5k9ywg63nhzb0yi9anmqpl38gps0p")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/go-cmp")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" +; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) +; (home-page "https://github.com/google/go-cmp") +; (synopsis "Package for equality of Go values") +; (description +; "This package is intended to be a more powerful and safer alternative to +;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") +; (license license:bsd-3))) +; +;(define-public go-github-com-googleapis-gax-go-v2-2.0.5 +; (package +; (name "go-github-com-googleapis-gax-go-v2") +; (version "2.0.5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/gax-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1lxawwngv6miaqd25s3ba0didfzylbwisd2nz7r4gmbmin6jsjrx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/googleapis/gax-go/v2")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.19.0" +; ,go-google-golang-org-grpc-1.19.0))) +; (home-page "https://github.com/googleapis/gax-go") +; (synopsis #f) +; (description +; "Package gax contains a set of modules which aid the development of APIs +;for clients and servers based on gRPC and Google API conventions. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6 +; (package +; (name "go-github-com-golang-groupcache") +; (version "0.0.0-20190702054246-869f871628b6") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/groupcache") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0r4nk8129bvx50qb4xzjaay39b2h6k7cbdqqzdlanmc82ygczsbw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/groupcache")) +; (home-page "https://github.com/golang/groupcache") +; (synopsis "groupcache") +; (description +; "Package groupcache provides a data loading mechanism with caching +;and de-duplication that works across a set of peer processes. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190502145724-3ef323f4f1fd") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "15iw4gjvrnrx98rlny1qcaprp3577rh2b77byb38dr6m3q42rvc6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6 +; (package +; (name "go-golang-org-x-sync") +; (version "0.0.0-20190227155943-e225da77a7e6") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sync") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0bh3583smcfw6jw3w6lp0za93rz7hpxfdz8vhxng75b7a6vdlw4p")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sync")) +; (home-page "https://golang.org/x/sync") +; (synopsis "Go Sync") +; (description +; "This repository provides Go concurrency primitives in addition to the +;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20190425155659-357c62f0e4bb") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1h1a0wys83cc86s4w2hqmz78ixijw8f7qchmiwdv5xjvpg0i27c2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" +; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) +; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) +; ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" +; ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) +; ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" +; ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) +; ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" +; ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd) +; ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" +; ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) +; ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" +; ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-grpc-1.20.1 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.20.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0rj3fs6jillapiwnpkfn3v2jbl7a3zsb0lys4srswl26hjijviqq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" +; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) +; ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" +; ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) +; ("go-google-golang-org-appengine-1.1.0" +; ,go-google-golang-org-appengine-1.1.0) +; ("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" +; ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" +; ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0) +; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-client9-misspell-0.3.4" +; ,go-github-com-client9-misspell-0.3.4) +; ("go-github-com-burntsushi-toml-0.3.1" +; ,go-github-com-burntsushi-toml-0.3.1) +; ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-go-opencensus-io-0.22.4 +; (package +; (name "go-go-opencensus-io") +; (version "0.22.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/census-instrumentation/opencensus-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "10skbvs4yxjm3z10yfg5cj2mdzjsna87qk1icp9xv0iwp8wzq6h0")))) +; (build-system go-build-system) +; (arguments '(#:import-path "go.opencensus.io")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.20.1" ,go-google-golang-org-grpc-1.20.1) +; ("go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb" +; ,go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb) +; ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) +; ("go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd" +; ,go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd) +; ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" +; ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) +; ("go-github-com-stretchr-testify-1.4.0" +; ,go-github-com-stretchr-testify-1.4.0) +; ("go-github-com-google-go-cmp-0.3.0" +; ,go-github-com-google-go-cmp-0.3.0) +; ("go-github-com-golang-protobuf-1.3.1" +; ,go-github-com-golang-protobuf-1.3.1) +; ("go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6" +; ,go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6))) +; (home-page "https://go.opencensus.io") +; (synopsis "OpenCensus Libraries for Go") +; (description "Package opencensus contains Go support for OpenCensus. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b +; (package +; (name "go-golang-org-x-lint") +; (version "0.0.0-20200302205851-738671d3881b") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/lint") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0jkiz4py59jjnkyxbxifpf7bsar11lbgmj5jiq2kic5k03shkn9c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/lint")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7" +; ,go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7))) +; (home-page "https://golang.org/x/lint") +; (synopsis "Installation") +; (description "Package lint contains a linter for Go source code. +;") +; (license license:bsd-3))) +; +;(define-public go-cloud-google-com-go-0.34.0 +; (package +; (name "go-cloud-google-com-go") +; (version "0.34.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-cloud-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1kclgclwar3r37zbvb9gg3qxbgzkb50zk3s9778zlh2773qikmai")))) +; (build-system go-build-system) +; (arguments '(#:import-path "cloud.google.com/go")) +; (home-page "https://cloud.google.com/go") +; (synopsis "Google Cloud Client Libraries for Go") +; (description +; "Package cloud is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +;of sub-packages. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190108225652-1e06a53dbb7e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0lpqqvdccby48nixihvmn8ig1z48b950m1bxfqxn78air308qc3j")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d +; (package +; (name "go-golang-org-x-oauth2") +; (version "0.0.0-20200107190931-bf48bf16ab8d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/oauth2") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1sirdib60zwmh93kf9qrx51r8544k1p9rs5mk0797wibz3m4mrdg")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/oauth2")) +; (propagated-inputs +; `(("go-google-golang-org-appengine-1.4.0" +; ,go-google-golang-org-appengine-1.4.0) +; ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" +; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) +; ("go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e" +; ,go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e) +; ("go-cloud-google-com-go-0.34.0" ,go-cloud-google-com-go-0.34.0))) +; (home-page "https://golang.org/x/oauth2") +; (synopsis "OAuth2 for Go") +; (description +; "Package oauth2 provides support for making +;OAuth2 authorized and authenticated HTTP requests, +;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +;It can additionally grant authorization with Bearer JWT. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20200803210538-64077c9b5642 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20200803210538-64077c9b5642") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1pdrkim9v0wbxipl586d29vz4ci9xib0f02g6yv7c0nang627pag")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-yuin-goldmark-1.1.32 +; (package +; (name "go-github-com-yuin-goldmark") +; (version "1.1.32") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/yuin/goldmark") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "03i9yq6n3yvn5v70xi6x3pn49ndy8zm4217ihwwhlw2nkwhny7a5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/yuin/goldmark")) +; (home-page "https://github.com/yuin/goldmark") +; (synopsis "goldmark") +; (description +; "Package goldmark implements functions to convert markdown text to a desired format. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-net-0.0.0-20200625001655-4c5254603344 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20200625001655-4c5254603344") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1da0a1m488d95vggpi52dkag98n5671ml6sn80nwv6lgbmdx8qbq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" +; ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) +; ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" +; ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208 +; (package +; (name "go-golang-org-x-sync") +; (version "0.0.0-20200625203802-6e8e738ad208") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sync") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1avk27pszd5l5df6ff7j78wgla46ir1hhy2jwfl9a3c0ys602yx9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sync")) +; (home-page "https://golang.org/x/sync") +; (synopsis "Go Sync") +; (description +; "This repository provides Go concurrency primitives in addition to the +;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20200804011535-6c149bb5ef0d +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20200804011535-6c149bb5ef0d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1l244hp5n0qff7nmvcffggjv7jm4061g63g76z967zvdqcxh23i2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" +; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) +; ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" +; ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) +; ("go-golang-org-x-net-0.0.0-20200625001655-4c5254603344" +; ,go-golang-org-x-net-0.0.0-20200625001655-4c5254603344) +; ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) +; ("go-github-com-yuin-goldmark-1.1.32" +; ,go-github-com-yuin-goldmark-1.1.32))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20200804131852-c06518451d9c +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20200804131852-c06518451d9c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0wl9bhr94yf0b8lc947zr0iwm3l20irzy869xczfd6z0a1g54gsa")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.24.0" +; ,go-google-golang-org-protobuf-1.24.0) +; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) +; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" +; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-github-com-golang-protobuf-1.4.1" +; ,go-github-com-golang-protobuf-1.4.1))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-api-0.30.0 +; (package +; (name "go-google-golang-org-api") +; (version "0.30.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-api-go-client") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1vh5rrc6hvzh1rqawrwr4nyilnr3dgqx1pr2njjzdg0prfmflm5p")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/api")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.31.0" ,go-google-golang-org-grpc-1.31.0) +; ("go-google-golang-org-genproto-0.0.0-20200804131852-c06518451d9c" +; ,go-google-golang-org-genproto-0.0.0-20200804131852-c06518451d9c) +; ("go-google-golang-org-appengine-1.6.6" +; ,go-google-golang-org-appengine-1.6.6) +; ("go-golang-org-x-tools-0.0.0-20200804011535-6c149bb5ef0d" +; ,go-golang-org-x-tools-0.0.0-20200804011535-6c149bb5ef0d) +; ("go-golang-org-x-sys-0.0.0-20200803210538-64077c9b5642" +; ,go-golang-org-x-sys-0.0.0-20200803210538-64077c9b5642) +; ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" +; ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) +; ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" +; ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) +; ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" +; ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) +; ("go-go-opencensus-io-0.22.4" ,go-go-opencensus-io-0.22.4) +; ("go-github-com-googleapis-gax-go-v2-2.0.5" +; ,go-github-com-googleapis-gax-go-v2-2.0.5) +; ("go-github-com-google-go-cmp-0.5.1" +; ,go-github-com-google-go-cmp-0.5.1) +; ("go-cloud-google-com-go-0.62.0" ,go-cloud-google-com-go-0.62.0))) +; (home-page "https://google.golang.org/api") +; (synopsis "Google APIs Client Library for Go") +; (description +; "Package api is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of +;sub-packages. +;") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-1.24.0 +; (package +; (name "go-google-golang-org-protobuf") +; (version "1.24.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0x3qyn3rizbs671gs7f8v50rmiwf9h7kbaradpivw9718mhbg1gn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" +; ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.4.1" +; ,go-github-com-golang-protobuf-1.4.1))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20200825200019-8632dd797987 +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20200825200019-8632dd797987") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0h8s1mz8pbdiwmv2g61afa7f05zin3m6mdy2fmny6wcidz4w2i3k")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.24.0" +; ,go-google-golang-org-protobuf-1.24.0) +; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) +; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" +; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-github-com-golang-protobuf-1.4.1" +; ,go-github-com-golang-protobuf-1.4.1))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f +; (package +; (name "go-github-com-cncf-udpa-go") +; (version "0.0.0-20191209042840-269d4d468f6f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/cncf/udpa") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0i1jiaw2k3hlwwmg4hap81vb4s1p25xp9kdfww37v0fbgjariccs")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path +; "github.com/cncf/udpa/go" +; #:unpack-path +; "github.com/cncf/udpa")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2) +; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" +; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0))) +; (home-page "https://github.com/cncf/udpa") +; (synopsis "Description") +; (description +; "This library has been deprecated in favor of @code{github.com/cncf/xds/go}. All users are recommended to switch their imports.") +; (license license:asl2.0))) +; +;(define-public go-github-com-envoyproxy-go-control-plane-0.9.4 +; (package +; (name "go-github-com-envoyproxy-go-control-plane") +; (version "0.9.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/envoyproxy/go-control-plane") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0m0crzx70lp7vz13v20wxb1fcfdnzp7h3mkh3bn6a8mbfz6w5asj")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) +; ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" +; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) +; ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" +; ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) +; ("go-github-com-google-go-cmp-0.2.0" +; ,go-github-com-google-go-cmp-0.2.0) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2) +; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" +; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) +; ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" +; ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f) +; ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" +; ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) +; (home-page "https://github.com/envoyproxy/go-control-plane") +; (synopsis "control-plane") +; (description +; "This repository contains a Go-based implementation of an API server that +;implements the discovery service APIs defined in +;@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") +; (license license:asl2.0))) +; +;(define-public go-github-com-golang-protobuf-1.3.3 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.3.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1cyyr52yhj3fzrily3rmsbqyj8va4ld75lmry0857m39rgpv8sy1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-grpc-1.31.0 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.31.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1y3lilpipmaysjk4skbzw1qa6lv05vzixzw9lg9x73xfb01q4nyz")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" +; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.3.3" +; ,go-github-com-golang-protobuf-1.3.3) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-envoyproxy-go-control-plane-0.9.4" +; ,go-github-com-envoyproxy-go-control-plane-0.9.4) +; ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" +; ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-cloud-google-com-go-0.65.0 +; (package +; (name "go-cloud-google-com-go") +; (version "0.65.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-cloud-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0xrcg39jrw90gq8vl8pfq63sp3bkak04wh392yj5rh4lc1a4lxjq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "cloud.google.com/go")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.31.0" ,go-google-golang-org-grpc-1.31.0) +; ("go-google-golang-org-genproto-0.0.0-20200825200019-8632dd797987" +; ,go-google-golang-org-genproto-0.0.0-20200825200019-8632dd797987) +; ("go-google-golang-org-api-0.30.0" ,go-google-golang-org-api-0.30.0) +; ("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" +; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) +; ("go-golang-org-x-tools-0.0.0-20200825202427-b303f430e36d" +; ,go-golang-org-x-tools-0.0.0-20200825202427-b303f430e36d) +; ("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) +; ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" +; ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) +; ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" +; ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) +; ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" +; ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) +; ("go-go-opencensus-io-0.22.4" ,go-go-opencensus-io-0.22.4) +; ("go-github-com-jstemmer-go-junit-report-0.9.1" +; ,go-github-com-jstemmer-go-junit-report-0.9.1) +; ("go-github-com-googleapis-gax-go-v2-2.0.5" +; ,go-github-com-googleapis-gax-go-v2-2.0.5) +; ("go-github-com-google-pprof-0.0.0-20200708004538-1a94d8640e99" +; ,go-github-com-google-pprof-0.0.0-20200708004538-1a94d8640e99) +; ("go-github-com-google-martian-v3-3.0.0" +; ,go-github-com-google-martian-v3-3.0.0) +; ("go-github-com-google-go-cmp-0.5.1" +; ,go-github-com-google-go-cmp-0.5.1) +; ("go-github-com-golang-protobuf-1.4.2" +; ,go-github-com-golang-protobuf-1.4.2) +; ("go-github-com-golang-mock-1.4.4" ,go-github-com-golang-mock-1.4.4) +; ("go-cloud-google-com-go-storage-1.10.0" +; ,go-cloud-google-com-go-storage-1.10.0))) +; (home-page "https://cloud.google.com/go") +; (synopsis "Google Cloud Client Libraries for Go") +; (description +; "Package cloud is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +;of sub-packages. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20200323222414-85ca7c5b95cd") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1504qkgbhhm4f0bhk77v2r1lj6x171ay5m79alkg78wjb5cign5l")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20200822124328-c89045814202 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20200822124328-c89045814202") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1g3wxilwbcbf2xj20y3mpxh38jka4fyhl48akfqf00vr48zmx96x")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" +; ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) +; ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" +; ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-appengine-1.6.6 +; (package +; (name "go-google-golang-org-appengine") +; (version "1.6.6") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/appengine") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "15c38h6fbv06cnkr6yknygfrpibyms2mya4w0l29kaxf42jn1qi5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/appengine")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) +; ("go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65" +; ,go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65) +; ("go-github-com-golang-protobuf-1.3.1" +; ,go-github-com-golang-protobuf-1.3.1))) +; (home-page "https://google.golang.org/appengine") +; (synopsis "Go App Engine packages") +; (description +; "Package appengine provides basic functionality for Google App Engine. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-oauth2-0.0.0-20210402161424-2e8d93401602 +; (package +; (name "go-golang-org-x-oauth2") +; (version "0.0.0-20210402161424-2e8d93401602") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/oauth2") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0j1crxa78gip3hxrds5jngi034j4zm4q3z7r8bqs3rjxnwcki9ig")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/oauth2")) +; (propagated-inputs +; `(("go-google-golang-org-appengine-1.6.6" +; ,go-google-golang-org-appengine-1.6.6) +; ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" +; ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) +; ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) +; (home-page "https://golang.org/x/oauth2") +; (synopsis "OAuth2 for Go") +; (description +; "Package oauth2 provides support for making +;OAuth2 authorized and authenticated HTTP requests, +;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +;It can additionally grant authorization with Bearer JWT. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20210403161142-5e06dd20ab57 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20210403161142-5e06dd20ab57") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1acdn06771rxjg38ql9wl8dr1vf23nazjnvk6105z3hddnh14fgb")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190603091049-60506f45cf65") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0827yz7irmnzcdhw8vg74819jaw5ahs4w4v5fvzgfvnxyb9f6zcc")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-text-0.3.2 +; (package +; (name "go-golang-org-x-text") +; (version "0.3.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/text") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0flv9idw0jm5nm8lx25xqanbkqgfiym6619w575p7nrdh0riqwqh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/text")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" +; ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) +; (home-page "https://golang.org/x/text") +; (synopsis "Go Text") +; (description +; "text is a repository of text-related packages related to internationalization +;(i18n) and localization (l10n), such as character encodings, text +;transformations, and locale-specific text handling. +;") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-appengine-1.6.7 +; (package +; (name "go-google-golang-org-appengine") +; (version "1.6.7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/appengine") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1wkipg7xxc0ha5p6c3bj0vpgq38l18441n5l6zxdhx0gzvz5z1hs")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/appengine")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) +; ("go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65" +; ,go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65) +; ("go-github-com-golang-protobuf-1.3.1" +; ,go-github-com-golang-protobuf-1.3.1))) +; (home-page "https://google.golang.org/appengine") +; (synopsis "Go App Engine packages") +; (description +; "Package appengine provides basic functionality for Google App Engine. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-golang-protobuf-1.5.1 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.5.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1qx8gvsdx1w27vamw6wn1jns2d8pz0g9sji3l0hvs4wl1jf7p32d")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.26.0" +; ,go-google-golang-org-protobuf-1.26.0) +; ("go-github-com-google-go-cmp-0.5.5" +; ,go-github-com-google-go-cmp-0.5.5))) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5 +; (package +; (name "go-golang-org-x-lint") +; (version "0.0.0-20201208152925-83fdc39ff7b5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/lint") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ms3rs5hvpnm9bxbr5f9743i7hn2bbmqdmvzxq6nmi0f24ypv1l3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/lint")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7" +; ,go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7))) +; (home-page "https://golang.org/x/lint") +; (synopsis "Installation") +; (description "Package lint contains a linter for Go source code. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20210315160823-c6e025ad8005 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20210315160823-c6e025ad8005") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1dy8j3gvbkng0vy2wgdiy48871j4vchgsks2ggfxcx4jg32d2qsr")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20210316092652-d523dce5a7f4 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20210316092652-d523dce5a7f4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "01hhvh6msyg11adxhgjwzbv4jprq5ajzkxxb16ln3dqv4na9b2k1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) +; ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" +; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) +; ("go-golang-org-x-sys-0.0.0-20210315160823-c6e025ad8005" +; ,go-golang-org-x-sys-0.0.0-20210315160823-c6e025ad8005))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20210320140829-1e4c9ba3b0c4 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20210320140829-1e4c9ba3b0c4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0nrxjq5j058sba9s5g65l5rdw6b4f335lxa7hhcf57paklym1qgr")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.1.0 +; (package +; (name "go-golang-org-x-tools") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1asrm22kv5x891qkbpap8alg612k321jbs1akc0vwsan251gm507")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" +; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) +; ("go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4" +; ,go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4) +; ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" +; ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) +; ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" +; ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) +; ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) +; ("go-github-com-yuin-goldmark-1.2.1" +; ,go-github-com-yuin-goldmark-1.2.1))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20210402141018-6c239bbf2bb1 +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20210402141018-6c239bbf2bb1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1xih6y4dwjj939ilwc5s6w419kjnkn1hw33jsgml0nkjcnac74wc")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.26.0" +; ,go-google-golang-org-protobuf-1.26.0) +; ("go-google-golang-org-grpc-1.36.1" ,go-google-golang-org-grpc-1.36.1) +; ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) +; ("go-golang-org-x-text-0.3.5" ,go-golang-org-x-text-0.3.5) +; ("go-golang-org-x-sys-0.0.0-20210320140829-1e4c9ba3b0c4" +; ,go-golang-org-x-sys-0.0.0-20210320140829-1e4c9ba3b0c4) +; ("go-golang-org-x-net-0.0.0-20210316092652-d523dce5a7f4" +; ,go-golang-org-x-net-0.0.0-20210316092652-d523dce5a7f4) +; ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" +; ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) +; ("go-github-com-golang-protobuf-1.5.1" +; ,go-github-com-golang-protobuf-1.5.1))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad +; (package +; (name "go-github-com-envoyproxy-go-control-plane") +; (version "0.9.9-0.20201210154907-fd9021fe5dad") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/envoyproxy/go-control-plane") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0piyk6pk36x2qr3bhys2k240pfwz3bv64fhi2l0vx1mzwiddapbm")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.23.0" +; ,go-google-golang-org-protobuf-1.23.0) +; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) +; ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" +; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) +; ("go-github-com-stretchr-testify-1.5.1" +; ,go-github-com-stretchr-testify-1.5.1) +; ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" +; ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.4.2" +; ,go-github-com-golang-protobuf-1.4.2) +; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" +; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) +; ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" +; ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403) +; ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" +; ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) +; (home-page "https://github.com/envoyproxy/go-control-plane") +; (synopsis "control-plane") +; (description +; "This repository contains a Go-based implementation of an API server that +;implements the discovery service APIs defined in +;@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-grpc-1.36.1 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.36.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0l3prxp18lb0pagqg4l6c9i0l6gakfxgf6vxcsv589i0xsxw8ivm")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.25.0" +; ,go-google-golang-org-protobuf-1.25.0) +; ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" +; ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) +; ("go-github-com-google-go-cmp-0.5.0" +; ,go-github-com-google-go-cmp-0.5.0) +; ("go-github-com-golang-protobuf-1.4.2" +; ,go-github-com-golang-protobuf-1.4.2) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad" +; ,go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad) +; ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" +; ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-api-0.44.0 +; (package +; (name "go-google-golang-org-api") +; (version "0.44.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-api-go-client") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0sh6qzc3pnyliy10afrmzpfbbbm2mwcyc6mp5422xhgp3p2x370x")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/api")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.36.1" ,go-google-golang-org-grpc-1.36.1) +; ("go-google-golang-org-genproto-0.0.0-20210402141018-6c239bbf2bb1" +; ,go-google-golang-org-genproto-0.0.0-20210402141018-6c239bbf2bb1) +; ("go-google-golang-org-appengine-1.6.7" +; ,go-google-golang-org-appengine-1.6.7) +; ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) +; ("go-golang-org-x-sys-0.0.0-20210403161142-5e06dd20ab57" +; ,go-golang-org-x-sys-0.0.0-20210403161142-5e06dd20ab57) +; ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" +; ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) +; ("go-golang-org-x-oauth2-0.0.0-20210402161424-2e8d93401602" +; ,go-golang-org-x-oauth2-0.0.0-20210402161424-2e8d93401602) +; ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" +; ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) +; ("go-go-opencensus-io-0.23.0" ,go-go-opencensus-io-0.23.0) +; ("go-github-com-googleapis-gax-go-v2-2.0.5" +; ,go-github-com-googleapis-gax-go-v2-2.0.5) +; ("go-github-com-google-go-cmp-0.5.5" +; ,go-github-com-google-go-cmp-0.5.5) +; ("go-cloud-google-com-go-0.81.0" ,go-cloud-google-com-go-0.81.0))) +; (home-page "https://google.golang.org/api") +; (synopsis "Google APIs Client Library for Go") +; (description +; "Package api is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of +;sub-packages. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-bketelsen-crypt-0.0.4 +; (package +; (name "go-github-com-bketelsen-crypt") +; (version "0.0.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/bketelsen/crypt") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0fyfcvy73zskd1p1mv0cn03anxkkr5gvlawsc87znqk60hdypq3v")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/bketelsen/crypt")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.38.0" ,go-google-golang-org-grpc-1.38.0) +; ("go-google-golang-org-api-0.44.0" ,go-google-golang-org-api-0.44.0) +; ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" +; ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9) +; ("go-go-etcd-io-etcd-client-v2-2.305.0" +; ,go-go-etcd-io-etcd-client-v2-2.305.0) +; ("go-github-com-hashicorp-consul-api-1.1.0" +; ,go-github-com-hashicorp-consul-api-1.1.0) +; ("go-cloud-google-com-go-firestore-1.1.0" +; ,go-cloud-google-com-go-firestore-1.1.0))) +; (home-page "https://github.com/bketelsen/crypt") +; (synopsis "crypt") +; (description +; "You can use crypt as a command line tool or as a configuration library:") +; (license license:expat))) +; +;(define-public go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20191005200804-aed5e4c7ecf9") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0wsdsbl9n61l99z0cvib2xzg56fsfgky4yc5xapdw9ywx9h0zm3a")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-fsnotify-fsnotify-1.4.9 +; (package +; (name "go-github-com-fsnotify-fsnotify") +; (version "1.4.9") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/fsnotify/fsnotify") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1i1r72knpbfwwql9frn9bqc3nhfc2ai5m6qllcyr6wban62lr40x")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/fsnotify/fsnotify")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9" +; ,go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9))) +; (home-page "https://github.com/fsnotify/fsnotify") +; (synopsis "File system notifications for Go") +; (description +; "Package fsnotify provides a platform-independent interface for file system notifications. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-hashicorp-hcl-1.0.0 +; (package +; (name "go-github-com-hashicorp-hcl") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/hcl") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0q6ml0qqs0yil76mpn4mdx4lp94id8vbv575qm60jzl1ijcl5i66")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hashicorp/hcl")) +; (propagated-inputs +; `(("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://github.com/hashicorp/hcl") +; (synopsis "HCL") +; (description "Package hcl decodes HCL into usable Go structures. +;") +; (license license:mpl2.0))) +; +;(define-public go-github-com-magiconair-properties-1.8.5 +; (package +; (name "go-github-com-magiconair-properties") +; (version "1.8.5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/magiconair/properties") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0v4agnkhc30fblbmhs0gq2bikhdnnmqmpp4phrnza68m04j5hxbn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/magiconair/properties")) +; (home-page "https://github.com/magiconair/properties") +; (synopsis "Overview") +; (description +; "Package properties provides functions for reading and writing +;ISO-8859-1 and UTF-8 encoded .properties files and has +;support for recursive property expansion. +;") +; (license license:bsd-2))) +; +;(define-public go-github-com-mitchellh-mapstructure-1.4.1 +; (package +; (name "go-github-com-mitchellh-mapstructure") +; (version "1.4.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mitchellh/mapstructure") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1m98wiadb6kdnzv21m8p7nk1jb30zpjh47fkb1dg251r3m7bj47v")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mitchellh/mapstructure")) +; (home-page "https://github.com/mitchellh/mapstructure") +; (synopsis "mapstructure") +; (description +; "Package mapstructure exposes functionality to convert one arbitrary +;Go type into another, typically to convert a map[string]interface{} +;into a native Go structure. +;") +; (license license:expat))) +; +;(define-public go-github-com-pelletier-go-toml-1.9.3 +; (package +; (name "go-github-com-pelletier-go-toml") +; (version "1.9.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/pelletier/go-toml") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0cqwnvlgs1wgdgjxlwv8j52f7d6syniadr51sjh2fya99m5wzvsn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/pelletier/go-toml")) +; (home-page "https://github.com/pelletier/go-toml") +; (synopsis "go-toml") +; (description "Package toml is a TOML parser and manipulation library. +;") +; (license #f))) +; +;(define-public go-github-com-gopherjs-gopherjs-0.0.0-20181017120253-0766667cb4d1 +; (package +; (name "go-github-com-gopherjs-gopherjs") +; (version "0.0.0-20181017120253-0766667cb4d1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/gopherjs/gopherjs") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "13pfc9sxiwjky2lm1xb3i3lcisn8p6mgjk2d927l7r92ysph8dmw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/gopherjs/gopherjs")) +; (home-page "https://github.com/gopherjs/gopherjs") +; (synopsis "GopherJS - A compiler from Go to JavaScript") +; (description +; "GopherJS compiles Go code (@url{https://golang.org/,golang.org}) to pure JavaScript code. Its main purpose is to give you the opportunity to write front-end code in Go which will still run in all browsers.") +; (license license:bsd-2))) +; +;(define-public go-github-com-jtolds-gls-4.20.0+incompatible +; (package +; (name "go-github-com-jtolds-gls") +; (version "4.20.0+incompatible") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/jtolio/gls") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1k7xd2q2ysv2xsh373qs801v6f359240kx0vrl0ydh7731lngvk6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/jtolds/gls")) +; (home-page "https://github.com/jtolds/gls") +; (synopsis "gls") +; (description "Package gls implements goroutine-local storage. +;") +; (license license:expat))) +; +;(define-public go-github-com-smartystreets-assertions-0.0.0-20180927180507-b2de0cb4f26d +; (package +; (name "go-github-com-smartystreets-assertions") +; (version "0.0.0-20180927180507-b2de0cb4f26d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/smartystreets/assertions") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1i7ldgavgl35c7gk25p7bvdr282ckng090zr4ch9mk1705akx09y")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/smartystreets/assertions")) +; (home-page "https://github.com/smartystreets/assertions") +; (synopsis #f) +; (description +; "Package assertions contains the implementations for all assertions which +;are referenced in goconvey's `convey` package +;(github.com/smartystreets/goconvey/convey) and gunit (github.com/smartystreets/gunit) +;for use with the So(...) method. +;They can also be used in traditional Go test functions and even in +;applications. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-tools-0.0.0-20190328211700-ab21143f2384 +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20190328211700-ab21143f2384") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "15fk0psk53pplpyghz55bhay0kvsv5rikmn5hwgjnnyxq9vfy178")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-github-com-smartystreets-goconvey-1.6.4 +; (package +; (name "go-github-com-smartystreets-goconvey") +; (version "1.6.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/smartystreets/goconvey") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "07zjxwszayal88z1j2bwnqrsa32vg8l4nivks5yfr9j8xfsw7n6m")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/smartystreets/goconvey")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20190328211700-ab21143f2384" +; ,go-golang-org-x-tools-0.0.0-20190328211700-ab21143f2384) +; ("go-github-com-smartystreets-assertions-0.0.0-20180927180507-b2de0cb4f26d" +; ,go-github-com-smartystreets-assertions-0.0.0-20180927180507-b2de0cb4f26d) +; ("go-github-com-jtolds-gls-4.20.0+incompatible" +; ,go-github-com-jtolds-gls-4.20.0+incompatible) +; ("go-github-com-gopherjs-gopherjs-0.0.0-20181017120253-0766667cb4d1" +; ,go-github-com-gopherjs-gopherjs-0.0.0-20181017120253-0766667cb4d1))) +; (home-page "https://github.com/smartystreets/goconvey") +; (synopsis "GoConvey is awesome Go testing") +; (description +; "This executable provides an HTTP server that watches for file system changes +;to .go files within the working directory (and all nested go packages). +;Navigating to the configured host and port in a web browser will display the +;latest results of running `go test` in each go package. +;") +; (license license:expat))) +; +;(define-public go-github-com-kr-fs-0.1.0 +; (package +; (name "go-github-com-kr-fs") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kr/fs") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "11zg176x9hr9q7fsk95r6q0wf214gg4czy02slax4x56n79g6a7q")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kr/fs")) +; (home-page "https://github.com/kr/fs") +; (synopsis #f) +; (description "Package fs provides filesystem-related functions. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-pkg-sftp-1.10.1 +; (package +; (name "go-github-com-pkg-sftp") +; (version "1.10.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/pkg/sftp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0iw6lijdljwh5xw5hsy0b578cr52h6vvm7hbnzlrvciwhh4sfhhp")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/pkg/sftp")) +; (propagated-inputs +; `(("go-golang-org-x-crypto-0.0.0-20190820162420-60c769a6c586" +; ,go-golang-org-x-crypto-0.0.0-20190820162420-60c769a6c586) +; ("go-github-com-stretchr-testify-1.4.0" +; ,go-github-com-stretchr-testify-1.4.0) +; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) +; ("go-github-com-kr-fs-0.1.0" ,go-github-com-kr-fs-0.1.0))) +; (home-page "https://github.com/pkg/sftp") +; (synopsis "sftp") +; (description +; "Package sftp implements the SSH File Transfer Protocol as described in +;@url{https://tools.ietf.org/html/draft-ietf-secsh-filexfer-02,https://tools.ietf.org/html/draft-ietf-secsh-filexfer-02} +;") +; (license license:bsd-2))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20190820162420-60c769a6c586 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20190820162420-60c769a6c586") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1wy2pg38dz29vf1h48yfqf8m3jqvwnbdw8vkk3ldlj5d8fbbbmv8")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" +; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) +; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" +; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-github-com-spf13-afero-1.6.0 +; (package +; (name "go-github-com-spf13-afero") +; (version "1.6.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/spf13/afero") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0yi8p0yxiidpcg4cagxg2iyqcaapsng89rak4qyxmgails2fqg37")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/spf13/afero")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) +; ("go-golang-org-x-crypto-0.0.0-20190820162420-60c769a6c586" +; ,go-golang-org-x-crypto-0.0.0-20190820162420-60c769a6c586) +; ("go-github-com-pkg-sftp-1.10.1" ,go-github-com-pkg-sftp-1.10.1))) +; (home-page "https://github.com/spf13/afero") +; (synopsis "Overview") +; (description +; "This package provides a FileSystem Abstraction System for Go") +; (license license:asl2.0))) +; +;(define-public go-github-com-spf13-cast-1.3.1 +; (package +; (name "go-github-com-spf13-cast") +; (version "1.3.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/spf13/cast") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0lb84788glr0qzrq2ifi36rgvp96qrgywvxrr3ggq5hrbr38hgn1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/spf13/cast")) +; (propagated-inputs +; `(("go-github-com-stretchr-testify-1.2.2" +; ,go-github-com-stretchr-testify-1.2.2) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://github.com/spf13/cast") +; (synopsis "cast") +; (description "Package cast provides easy and safe casting in Go. +;") +; (license license:expat))) +; +;(define-public go-github-com-spf13-jwalterweatherman-1.1.0 +; (package +; (name "go-github-com-spf13-jwalterweatherman") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/spf13/jwalterweatherman") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ywmkwci5zyd88ijym6f30fj5c0k2yayxarkmnazf5ybljv50q7b")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/spf13/jwalterweatherman")) +; (propagated-inputs +; `(("go-github-com-stretchr-testify-1.2.2" +; ,go-github-com-stretchr-testify-1.2.2) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://github.com/spf13/jwalterweatherman") +; (synopsis "jWalterWeatherman") +; (description +; "Seamless printing to the terminal (stdout) and logging to a io.Writer +;(file) thatâ\x80\x99s as easy to use as fmt.Println.") +; (license license:expat))) +; +;(define-public go-github-com-subosito-gotenv-1.2.0 +; (package +; (name "go-github-com-subosito-gotenv") +; (version "1.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/subosito/gotenv") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0mav91j7r4arjkpq5zcf9j74f6pww8ic53x43wy7kg3ibw31yjs5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/subosito/gotenv")) +; (home-page "https://github.com/subosito/gotenv") +; (synopsis "gotenv") +; (description +; "Package gotenv provides functionality to dynamically load the environment variables +;") +; (license license:expat))) +; +;(define-public go-gopkg-in-ini-v1-1.62.0 +; (package +; (name "go-gopkg-in-ini-v1") +; (version "1.62.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/ini.v1") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1dm9ydqyflasp5li22kb0w73s6kp2swii8naqfhnz64v171gmm5v")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/ini.v1" #:unpack-path "gopkg.in/ini.v1")) +; (home-page "https://gopkg.in/ini.v1") +; (synopsis "INI") +; (description +; "Package ini provides INI file read and write functionality in Go. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-spf13-viper-1.8.1 +; (package +; (name "go-github-com-spf13-viper") +; (version "1.8.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/spf13/viper") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0jcsvd9l05pv10rma6zicp44q2mlvxj0qlhnf4zcg2pymb5i0hq6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/spf13/viper")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) +; ("go-gopkg-in-ini-v1-1.62.0" ,go-gopkg-in-ini-v1-1.62.0) +; ("go-github-com-subosito-gotenv-1.2.0" +; ,go-github-com-subosito-gotenv-1.2.0) +; ("go-github-com-stretchr-testify-1.7.0" +; ,go-github-com-stretchr-testify-1.7.0) +; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) +; ("go-github-com-spf13-jwalterweatherman-1.1.0" +; ,go-github-com-spf13-jwalterweatherman-1.1.0) +; ("go-github-com-spf13-cast-1.3.1" ,go-github-com-spf13-cast-1.3.1) +; ("go-github-com-spf13-afero-1.6.0" ,go-github-com-spf13-afero-1.6.0) +; ("go-github-com-smartystreets-goconvey-1.6.4" +; ,go-github-com-smartystreets-goconvey-1.6.4) +; ("go-github-com-pelletier-go-toml-1.9.3" +; ,go-github-com-pelletier-go-toml-1.9.3) +; ("go-github-com-mitchellh-mapstructure-1.4.1" +; ,go-github-com-mitchellh-mapstructure-1.4.1) +; ("go-github-com-magiconair-properties-1.8.5" +; ,go-github-com-magiconair-properties-1.8.5) +; ("go-github-com-hashicorp-hcl-1.0.0" +; ,go-github-com-hashicorp-hcl-1.0.0) +; ("go-github-com-fsnotify-fsnotify-1.4.9" +; ,go-github-com-fsnotify-fsnotify-1.4.9) +; ("go-github-com-bketelsen-crypt-0.0.4" +; ,go-github-com-bketelsen-crypt-0.0.4))) +; (home-page "https://github.com/spf13/viper") +; (synopsis "Install") +; (description "Many Go projects are built using Viper including:") +; (license license:expat))) +; +;(define-public go-github-com-spf13-cobra-1.2.1 +; (package +; (name "go-github-com-spf13-cobra") +; (version "1.2.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/spf13/cobra") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "091kz3xnlsgpqb90fc5nhjr4yfr8b8sjnyl0zd4wm1fgzkpw09jh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/spf13/cobra")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) +; ("go-github-com-spf13-viper-1.8.1" ,go-github-com-spf13-viper-1.8.1) +; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) +; ("go-github-com-inconshreveable-mousetrap-1.0.0" +; ,go-github-com-inconshreveable-mousetrap-1.0.0) +; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" +; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0))) +; (home-page "https://github.com/spf13/cobra") +; (synopsis "Table of Contents") +; (description +; "Package cobra is a commander providing a simple interface to create powerful modern CLI interfaces. +;In addition to providing an interface, Cobra simultaneously provides a controller to organize your application code. +;") +; (license license:asl2.0))) +; +;(define-public go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c +; (package +; (name "go-gopkg-in-yaml-v3") +; (version "3.0.0-20200313102051-9f266ea9e77c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/yaml.v3") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1bbai3lzb50m0x2vwsdbagrbhvfylj9k1m32hgbqwldqx4p9ay35")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" +; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) +; (home-page "https://gopkg.in/yaml.v3") +; (synopsis "YAML support for the Go language") +; (description "Package yaml implements YAML support for the Go language. +;") +; (license #f))) +; +;(define-public go-github-com-stretchr-testify-1.7.0 +; (package +; (name "go-github-com-stretchr-testify") +; (version "1.7.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/testify") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ixgjsvafr3513pz3r6pmgk074s2dxkll0dadvl25gkf30rkmh10")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/testify")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" +; ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) +; ("go-github-com-stretchr-objx-0.1.0" +; ,go-github-com-stretchr-objx-0.1.0) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.0" +; ,go-github-com-davecgh-go-spew-1.1.0))) +; (home-page "https://github.com/stretchr/testify") +; (synopsis "Testify - Thou Shalt Write Tests") +; (description +; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20211117183948-ae814b36b871 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20211117183948-ae814b36b871") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "01d5llpsijgbgm8px6mhaknqwh8g707zc5i5744gcndr8w0649sk")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.6" ,go-golang-org-x-text-0.3.6) +; ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" +; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) +; ("go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1" +; ,go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1) +; ("go-golang-org-x-net-0.0.0-20211112202133-69e39bad7dc2" +; ,go-golang-org-x-net-0.0.0-20211112202133-69e39bad7dc2))) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-github-com-shopify-logrus-bugsnag-0.0.0-20171204204709-577dee27f20d +; (package +; (name "go-github-com-shopify-logrus-bugsnag") +; (version "0.0.0-20171204204709-577dee27f20d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/Shopify/logrus-bugsnag") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1l3yahk77vzgmjs7baf8g14sv33jj04rw73iind4wayg40lfgrp8")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/Shopify/logrus-bugsnag")) +; (home-page "https://github.com/Shopify/logrus-bugsnag") +; (synopsis "logrus-bugsnag") +; (description +; "logrus-bugsnag is a hook that allows @url{https://github.com/sirupsen/logrus,Logrus} to interface with @url{https://bugsnag.com,Bugsnag}.") +; (license license:expat))) +; +;(define-public go-github-com-bshuster-repo-logrus-logstash-hook-1.0.0 +; (package +; (name "go-github-com-bshuster-repo-logrus-logstash-hook") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/bshuster-repo/logrus-logstash-hook") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1akr33xzj4jr65mc9kvfjh1wlhw8fbr3hbh4rr816kxfns3c0gwd")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "github.com/bshuster-repo/logrus-logstash-hook")) +; (home-page "https://github.com/bshuster-repo/logrus-logstash-hook") +; (synopsis "Logstash hook for logrus") +; (description +; "Use this hook to send the logs to @url{https://www.elastic.co/products/logstash,Logstash}.") +; (license license:expat))) +; +;(define-public go-github-com-bugsnag-bugsnag-go-0.0.0-20141110184014-b1d153021fcd +; (package +; (name "go-github-com-bugsnag-bugsnag-go") +; (version "0.0.0-20141110184014-b1d153021fcd") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/bugsnag/bugsnag-go") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "057vwigfzq42p9vkk9yhy8vkvgdmh6653rc988jmvmrkwbgvb352")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/bugsnag/bugsnag-go")) +; (home-page "https://github.com/bugsnag/bugsnag-go") +; (synopsis "Bugsnag error reporter for Go") +; (description +; "Package bugsnag captures errors in real-time and reports them to Bugsnag (@url{http://bugsnag.com,http://bugsnag.com}). +;") +; (license license:expat))) +; +;(define-public go-github-com-bugsnag-osext-0.0.0-20130617224835-0dd3f918b21b +; (package +; (name "go-github-com-bugsnag-osext") +; (version "0.0.0-20130617224835-0dd3f918b21b") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/bugsnag/osext") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "02pczqml6p1mnfdrygm3rs02g0r65qx8v1bi3x24dx8wv9dr5y23")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/bugsnag/osext")) +; (home-page "https://github.com/bugsnag/osext") +; (synopsis #f) +; (description "Extensions to the standard \"os\" package. +;") +; (license license:zlib))) +; +;(define-public go-github-com-bugsnag-panicwrap-0.0.0-20151223152923-e2c28503fcd0 +; (package +; (name "go-github-com-bugsnag-panicwrap") +; (version "0.0.0-20151223152923-e2c28503fcd0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/bugsnag/panicwrap") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "02z1q18s83xhfsz3n8bzv071a6n0irlad11yxppaf7015a7dl446")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/bugsnag/panicwrap")) +; (home-page "https://github.com/bugsnag/panicwrap") +; (synopsis "panicwrap") +; (description +; "The panicwrap package provides functions for capturing and handling +;panics in your application. It does this by re-executing the running +;application and monitoring stderr for any panics. At the same time, +;stdout/stderr/etc. are set to the same values so that data is shuttled +;through properly, making the existence of panicwrap mostly transparent. +;") +; (license license:expat))) +; +;(define-public go-github-com-docker-distribution-2.7.1+incompatible +; (package +; (name "go-github-com-docker-distribution") +; (version "2.7.1+incompatible") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/distribution/distribution") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1nx8b5a68rn81alp8wkkw6qd5v32mgf0fk23mxm60zdf63qk1nzw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/docker/distribution")) +; (home-page "https://github.com/docker/distribution") +; (synopsis "Distribution") +; (description +; "Package distribution will define the interfaces for the components of +;docker distribution. The goal is to allow users to reliably package, ship +;and store content related to docker images. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-danieljoos-wincred-1.1.0 +; (package +; (name "go-github-com-danieljoos-wincred") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/danieljoos/wincred") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0fllr8lwk70qb8gfndkgshfq5c7p8zdpp47bcd3816giv5w78vxi")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/danieljoos/wincred")) +; (propagated-inputs +; `(("go-github-com-stretchr-testify-1.5.1" +; ,go-github-com-stretchr-testify-1.5.1))) +; (home-page "https://github.com/danieljoos/wincred") +; (synopsis "wincred") +; (description +; "Package wincred provides primitives for accessing the Windows Credentials Management API. +;This includes functions for retrieval, listing and storage of credentials as well as Go structures for convenient access to the credential data. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20210119212857-b64e53b001e4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "16in6bazi0frdkzhqxyvmw7qcvzjavq21dnz9bmrqq8d4dpd2j44")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-docker-docker-credential-helpers-0.6.4 +; (package +; (name "go-github-com-docker-docker-credential-helpers") +; (version "0.6.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/docker/docker-credential-helpers") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0xsz8zgil2xrv835p3i6qbk7s81jz62sgasfvmmxi6lrkirahmh6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/docker/docker-credential-helpers")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4" +; ,go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4) +; ("go-github-com-danieljoos-wincred-1.1.0" +; ,go-github-com-danieljoos-wincred-1.1.0))) +; (home-page "https://github.com/docker/docker-credential-helpers") +; (synopsis "Introduction") +; (description +; "docker-credential-helpers is a suite of programs to use native stores to keep Docker credentials safe.") +; (license license:expat))) +; +;(define-public go-github-com-docker-go-connections-0.4.0 +; (package +; (name "go-github-com-docker-go-connections") +; (version "0.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/docker/go-connections") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0mv6f6b5nljc17dmwmc28hc0y11pqglz7x0d2mjrwdmfxf64hwqq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/docker/go-connections")) +; (home-page "https://github.com/docker/go-connections") +; (synopsis "Introduction") +; (description +; "Package connections provides libraries to work with network connections. +;This library is divided in several components for specific usage. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c +; (package +; (name "go-github-com-docker-go-events") +; (version "0.0.0-20190806004212-e31b211e4f1c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/docker/go-events") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "09gm4z43g23isbklabnsnfb87bwf8kjdgvvyi3vfjq2bqdjdg7cl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/docker/go-events")) +; (home-page "https://github.com/docker/go-events") +; (synopsis "Docker Events Package") +; (description +; "The Docker @code{events} package implements a composable event distribution package +;for Go.") +; (license license:asl2.0))) +; +;(define-public go-github-com-json-iterator-go-1.1.7 +; (package +; (name "go-github-com-json-iterator-go") +; (version "1.1.7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/json-iterator/go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0n79p4s67zl5zprxv7diayw3vavnmmfqkmd6snz0i9bxp825dsyz")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/json-iterator/go")) +; (propagated-inputs +; `(("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0) +; ("go-github-com-modern-go-reflect2-0.0.0-20180701023420-4b7aa43c6742" +; ,go-github-com-modern-go-reflect2-0.0.0-20180701023420-4b7aa43c6742) +; ("go-github-com-modern-go-concurrent-0.0.0-20180228061459-e0a39a4cb421" +; ,go-github-com-modern-go-concurrent-0.0.0-20180228061459-e0a39a4cb421) +; ("go-github-com-google-gofuzz-1.0.0" +; ,go-github-com-google-gofuzz-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://github.com/json-iterator/go") +; (synopsis "Benchmark") +; (description +; "Package jsoniter implements encoding and decoding of JSON as defined in +;@url{https://rfc-editor.org/rfc/rfc4627.html,RFC 4627} and provides interfaces with identical syntax of standard lib encoding/json. +;Converting from encoding/json to jsoniter is no more than replacing the package with jsoniter +;and variable type declarations (if any). +;jsoniter interfaces gives 100% compatibility with code using standard lib. +;") +; (license license:expat))) +; +;(define-public go-github-com-prometheus-common-0.6.0 +; (package +; (name "go-github-com-prometheus-common") +; (version "0.6.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/common") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1q16br348117ffycxdwsldb0i39p34miclfa8z93k6vjwnrqbh2l")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/common")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1) +; ("go-gopkg-in-alecthomas-kingpin-v2-2.2.6" +; ,go-gopkg-in-alecthomas-kingpin-v2-2.2.6) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980" +; ,go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980) +; ("go-github-com-sirupsen-logrus-1.2.0" +; ,go-github-com-sirupsen-logrus-1.2.0) +; ("go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90" +; ,go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90) +; ("go-github-com-prometheus-client-golang-1.0.0" +; ,go-github-com-prometheus-client-golang-1.0.0) +; ("go-github-com-pkg-errors-0.8.0" ,go-github-com-pkg-errors-0.8.0) +; ("go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223" +; ,go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223) +; ("go-github-com-matttproud-golang-protobuf-extensions-1.0.1" +; ,go-github-com-matttproud-golang-protobuf-extensions-1.0.1) +; ("go-github-com-julienschmidt-httprouter-1.2.0" +; ,go-github-com-julienschmidt-httprouter-1.2.0) +; ("go-github-com-golang-protobuf-1.3.1" +; ,go-github-com-golang-protobuf-1.3.1) +; ("go-github-com-go-logfmt-logfmt-0.4.0" +; ,go-github-com-go-logfmt-logfmt-0.4.0) +; ("go-github-com-go-kit-kit-0.8.0" ,go-github-com-go-kit-kit-0.8.0))) +; (home-page "https://github.com/prometheus/common") +; (synopsis "Common") +; (description +; "This repository contains Go libraries that are shared across Prometheus +;components and libraries. They are considered internal to Prometheus, without +;any stability guarantees for external usage.") +; (license license:asl2.0))) +; +;(define-public go-github-com-prometheus-procfs-0.0.3 +; (package +; (name "go-github-com-prometheus-procfs") +; (version "0.0.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/procfs") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "18c4m795fwng8f8qa395f3crvamlbk5y5afk8b5rzyisnmjq774y")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/procfs")) +; (propagated-inputs +; `(("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" +; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) +; ("go-github-com-google-go-cmp-0.3.0" +; ,go-github-com-google-go-cmp-0.3.0))) +; (home-page "https://github.com/prometheus/procfs") +; (synopsis "procfs") +; (description +; "Package procfs provides functions to retrieve system, kernel and process +;metrics from the pseudo-filesystem proc. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190801041406-cbf593c0f2f3 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190801041406-cbf593c0f2f3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1zmcmckinhclcwlvznjqvs31aww8jnf6pjm9is0nq8lqlvipg5ls")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-prometheus-client-golang-1.1.0 +; (package +; (name "go-github-com-prometheus-client-golang") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/client_golang") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1r0irxkmfnj6ininb06w6ybknini5lz02idawrbkk2i5lq1qcvvf")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/client_golang")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190801041406-cbf593c0f2f3" +; ,go-golang-org-x-sys-0.0.0-20190801041406-cbf593c0f2f3) +; ("go-github-com-prometheus-procfs-0.0.3" +; ,go-github-com-prometheus-procfs-0.0.3) +; ("go-github-com-prometheus-common-0.6.0" +; ,go-github-com-prometheus-common-0.6.0) +; ("go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90" +; ,go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90) +; ("go-github-com-json-iterator-go-1.1.7" +; ,go-github-com-json-iterator-go-1.1.7) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2) +; ("go-github-com-beorn7-perks-1.0.1" +; ,go-github-com-beorn7-perks-1.0.1))) +; (home-page "https://github.com/prometheus/client_golang") +; (synopsis "Prometheus Go client library") +; (description +; "This is the @url{http://golang.org,Go} client library for +;@url{http://prometheus.io,Prometheus}. It has two separate parts, one for +;instrumenting application code, and one for creating clients that talk to the +;Prometheus HTTP API.") +; (license license:asl2.0))) +; +;(define-public go-github-com-docker-go-metrics-0.0.1 +; (package +; (name "go-github-com-docker-go-metrics") +; (version "0.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/docker/go-metrics") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1b6f1889chmwlsgrqxylnks2jic16j2dqhsdd1dvaklk48ky95ga")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/docker/go-metrics")) +; (propagated-inputs +; `(("go-github-com-prometheus-client-golang-1.1.0" +; ,go-github-com-prometheus-client-golang-1.1.0))) +; (home-page "https://github.com/docker/go-metrics") +; (synopsis "go-metrics") +; (description +; "This package is small wrapper around the prometheus go client to help enforce convention and best practices for metrics collection in Docker projects.") +; (license (list license:asl2.0 license:cc-by-sa4.0)))) +; +;(define-public go-github-com-docker-go-units-0.4.0 +; (package +; (name "go-github-com-docker-go-units") +; (version "0.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/docker/go-units") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0k8gja8ql4pqg5rzmqvka42vjfs6rzablak87whcnqba6qxpimvz")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/docker/go-units")) +; (home-page "https://github.com/docker/go-units") +; (synopsis "Introduction") +; (description +; "Package units provides helper function to parse and print size and time units +;in human-readable format. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-docker-libtrust-0.0.0-20150114040149-fa567046d9b1 +; (package +; (name "go-github-com-docker-libtrust") +; (version "0.0.0-20150114040149-fa567046d9b1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/docker/libtrust") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1121c7fxarzyr3fvxyzfw8qs4hb8k92dsix26s5vxncgszl5svf2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/docker/libtrust")) +; (home-page "https://github.com/docker/libtrust") +; (synopsis "libtrust") +; (description +; "Package libtrust provides an interface for managing authentication and +;authorization using public key cryptography. Authentication is handled +;using the identity attached to the public key and verified through TLS +;x509 certificates, a key challenge, or signature. Authorization and +;access control is managed through a trust graph distributed between +;both remote trust servers and locally cached and managed data. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-yuin-goldmark-1.1.27 +; (package +; (name "go-github-com-yuin-goldmark") +; (version "1.1.27") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/yuin/goldmark") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1872cqnii0kwiqcy81yin0idvjy5mdy4zlzz0csb319lcjs3b923")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/yuin/goldmark")) +; (home-page "https://github.com/yuin/goldmark") +; (synopsis "goldmark") +; (description +; "Package goldmark implements functions to convert markdown text to a desired format. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-mod-0.2.0 +; (package +; (name "go-golang-org-x-mod") +; (version "0.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/mod") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1fp6885dclq77mh73v7i54v2b9llpv4di193zc8vmsbbkkc483cl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/mod")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" +; ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) +; ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" +; ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) +; ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" +; ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) +; (home-page "https://golang.org/x/mod") +; (synopsis "mod") +; (description +; "This repository holds packages for writing tools +;that work directly with Go module mechanics. +;That is, it is for direct manipulation of Go modules themselves.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20200226121028-0de0cce0169b") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1db7s5kbzyh2zd5lpv05n7hp8wbwdvgk0wpiwrlnig94mkr0y5aq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20200619180055-7c47624df98f +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20200619180055-7c47624df98f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1fhzwd32j7w9g3algq0zj8g7ivx3f0mn9nx9mj046wdscryn49mk")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" +; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) +; ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" +; ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) +; ("go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b" +; ,go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b) +; ("go-golang-org-x-mod-0.2.0" ,go-golang-org-x-mod-0.2.0) +; ("go-github-com-yuin-goldmark-1.1.27" +; ,go-github-com-yuin-goldmark-1.1.27))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-github-com-kisielk-errcheck-1.5.0 +; (package +; (name "go-github-com-kisielk-errcheck") +; (version "1.5.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kisielk/errcheck") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ci3jz2px74pfmr42jv7dpx7fdzx08vai4czp9fkiyb0gcaiqsk6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kisielk/errcheck")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20200619180055-7c47624df98f" +; ,go-golang-org-x-tools-0.0.0-20200619180055-7c47624df98f))) +; (home-page "https://github.com/kisielk/errcheck") +; (synopsis "errcheck") +; (description +; "errcheck is a program for checking for unchecked errors in go programs.") +; (license license:expat))) +; +;(define-public go-github-com-kisielk-gotool-1.0.0 +; (package +; (name "go-github-com-kisielk-gotool") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kisielk/gotool") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "14af2pa0ssyp8bp2mvdw184s5wcysk6akil3wzxmr05wwy951iwn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kisielk/gotool")) +; (home-page "https://github.com/kisielk/gotool") +; (synopsis "gotool") +; (description +; "Package gotool contains utility functions used to implement the standard +;\"cmd/go\" tool, provided as a convenience to developers who want to write +;tools with similar semantics. +;") +; (license license:expat))) +; +;(define-public go-github-com-yuin-goldmark-1.2.1 +; (package +; (name "go-github-com-yuin-goldmark") +; (version "1.2.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/yuin/goldmark") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "12rsnsf65drcp0jfw2jl9w589vsn3pxdk1zh3v9q908iigngrcmy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/yuin/goldmark")) +; (home-page "https://github.com/yuin/goldmark") +; (synopsis "goldmark") +; (description +; "Package goldmark implements functions to convert markdown text to a desired format. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-mod-0.3.0 +; (package +; (name "go-golang-org-x-mod") +; (version "0.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/mod") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ldgbx2zpprbsfn6p8pfgs4nn87gwbfcv2z0fa7n8alwsq2yw78q")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/mod")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" +; ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) +; ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" +; ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) +; ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" +; ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) +; (home-page "https://golang.org/x/mod") +; (synopsis "mod") +; (description +; "This repository holds packages for writing tools +;that work directly with Go module mechanics. +;That is, it is for direct manipulation of Go modules themselves.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20200622213623-75b288015ac9") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "18vlncvvs11ds3zaaziqjlg5s2vcwi3496nn6qv7p0dp94j5pwa2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" +; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) +; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" +; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20200930185726-fdedc70b468f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1njlfhjbvi4lxvjbq8zswrb0y0q4jd2p6x51h1q6vmyzi9af6869")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20201021035429-f5854403a974 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20201021035429-f5854403a974") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1vw63zpmhi337f3gc432x3wkib4j2ia8dy7if31wxwb9dgqvy222")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) +; ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" +; ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) +; ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" +; ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9 +; (package +; (name "go-golang-org-x-sync") +; (version "0.0.0-20201020160332-67f06af15bc9") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sync") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "093p4panc808ak5bamzz7m9nb0xxib7778jpnr6f0xkz1n4fzyw5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sync")) +; (home-page "https://golang.org/x/sync") +; (synopsis "Go Sync") +; (description +; "This repository provides Go concurrency primitives in addition to the +;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20210106214847-113979e3529a +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20210106214847-113979e3529a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0pq1a7hkamqdwsajyfrb27s56cvxz5838krsgyqz346s2djwdrzl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" +; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) +; ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" +; ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) +; ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" +; ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) +; ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) +; ("go-github-com-yuin-goldmark-1.2.1" +; ,go-github-com-yuin-goldmark-1.2.1))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-github-com-gogo-protobuf-1.3.2 +; (package +; (name "go-github-com-gogo-protobuf") +; (version "1.3.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/gogo/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0dfv1bhx5zhb5bsj5sj757nkacf2swp1ajpcyj9d0b37n602m18a")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/gogo/protobuf")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20210106214847-113979e3529a" +; ,go-golang-org-x-tools-0.0.0-20210106214847-113979e3529a) +; ("go-github-com-kisielk-gotool-1.0.0" +; ,go-github-com-kisielk-gotool-1.0.0) +; ("go-github-com-kisielk-errcheck-1.5.0" +; ,go-github-com-kisielk-errcheck-1.5.0))) +; (home-page "https://github.com/gogo/protobuf") +; (synopsis "Protocol Buffers for Go with Gadgets") +; (description +; "gogoprotobuf is a fork of @url{https://github.com/golang/protobuf,golang/protobuf} with extra code generation features.") +; (license license:bsd-3))) +; +;(define-public go-github-com-gomodule-redigo-1.8.2 +; (package +; (name "go-github-com-gomodule-redigo") +; (version "1.8.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/gomodule/redigo") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0wp37175n4lgkq234px9vx0c7mdx8sx3d45zky73az8zbabirwga")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/gomodule/redigo")) +; (propagated-inputs +; `(("go-github-com-stretchr-testify-1.5.1" +; ,go-github-com-stretchr-testify-1.5.1))) +; (home-page "https://github.com/gomodule/redigo") +; (synopsis "Redigo") +; (description +; "Redigo is a @url{http://golang.org/,Go} client for the @url{http://redis.io/,Redis} database.") +; (license license:asl2.0))) +; +;(define-public go-github-com-felixge-httpsnoop-1.0.1 +; (package +; (name "go-github-com-felixge-httpsnoop") +; (version "1.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/felixge/httpsnoop") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ncd8lar5zxiwjhsp315s4hsl4bhnm271h49jhyxc66r5yffgmac")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/felixge/httpsnoop")) +; (home-page "https://github.com/felixge/httpsnoop") +; (synopsis "httpsnoop") +; (description +; "Package httpsnoop provides an easy way to capture http related metrics (i.e. +;response time, bytes written, and http status code) from your application's +;http.Handlers. +;") +; (license license:expat))) +; +;(define-public go-github-com-gorilla-handlers-1.5.1 +; (package +; (name "go-github-com-gorilla-handlers") +; (version "1.5.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/gorilla/handlers") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "15gycdz9lkjnsvvichsbdf25vf6pi1sfn41khhz53iqf300l0w0s")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/gorilla/handlers")) +; (propagated-inputs +; `(("go-github-com-felixge-httpsnoop-1.0.1" +; ,go-github-com-felixge-httpsnoop-1.0.1))) +; (home-page "https://github.com/gorilla/handlers") +; (synopsis "gorilla/handlers") +; (description +; "Package handlers is a collection of handlers (aka \"HTTP middleware\") for use +;with Go's net/http package (or any framework supporting http.Handler). +;") +; (license license:bsd-2))) +; +;(define-public go-github-com-gorilla-mux-1.8.0 +; (package +; (name "go-github-com-gorilla-mux") +; (version "1.8.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/gorilla/mux") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "18f0q9qxgq1yh4ji07mqhiydfcwvi56z9d775v7dc7yckj33kpdk")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/gorilla/mux")) +; (home-page "https://github.com/gorilla/mux") +; (synopsis "gorilla/mux") +; (description "Package mux implements a request router and dispatcher. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-inconshreveable-mousetrap-1.0.0 +; (package +; (name "go-github-com-inconshreveable-mousetrap") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/inconshreveable/mousetrap") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1mn0kg48xkd74brf48qf5hzp0bc6g8cf5a77w895rl3qnlpfw152")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/inconshreveable/mousetrap")) +; (home-page "https://github.com/inconshreveable/mousetrap") +; (synopsis "mousetrap") +; (description "mousetrap is a tiny library that answers a single question.") +; (license license:asl2.0))) +; +;(define-public go-github-com-klauspost-compress-1.11.13 +; (package +; (name "go-github-com-klauspost-compress") +; (version "1.11.13") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/klauspost/compress") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19l2rbh6vg0ly4qp2gn5lf39ijggf7asav7lxziikkhjqqb4223j")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/klauspost/compress")) +; (home-page "https://github.com/klauspost/compress") +; (synopsis "compress") +; (description "This package provides various compression algorithms.") +; (license #f))) +; +;(define-public go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369 +; (package +; (name "go-github-com-matttproud-golang-protobuf-extensions") +; (version "1.0.2-0.20181231171920-c182affec369") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/matttproud/golang_protobuf_extensions") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1xqsf9vpcrd4hp95rl6kgmjvkv1df4aicfw4l5vfcxcwxknfx2xs")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "github.com/matttproud/golang_protobuf_extensions")) +; (propagated-inputs +; `(("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" +; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0))) +; (home-page "https://github.com/matttproud/golang_protobuf_extensions") +; (synopsis "Overview") +; (description +; "This repository provides various Protocol Buffer extensions for the Go +;language (golang), namely support for record length-delimited message +;streaming.") +; (license license:asl2.0))) +; +;(define-public go-github-com-moby-locker-1.0.1 +; (package +; (name "go-github-com-moby-locker") +; (version "1.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/moby/locker") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "07rc2c6h35f9mcy81jp382a030f6xmcifi9n5jnlayybfwxmpjir")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/moby/locker")) +; (home-page "https://github.com/moby/locker") +; (synopsis "Locker") +; (description +; "Package locker provides a mechanism for creating finer-grained locking to help +;free up more global locks to handle other tasks. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-azure-go-ansiterm-0.0.0-20170929234023-d6e3b3328b78 +; (package +; (name "go-github-com-azure-go-ansiterm") +; (version "0.0.0-20170929234023-d6e3b3328b78") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/Azure/go-ansiterm") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "010khrkhkf9cxlvvb6ncqv4c1qcdmpbz9jn38g4fxf4xsma8xx1q")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/Azure/go-ansiterm")) +; (home-page "https://github.com/Azure/go-ansiterm") +; (synopsis "go-ansiterm") +; (description +; "This is a cross platform Ansi Terminal Emulation library. It reads a stream of Ansi characters and produces the appropriate function calls. The results of the function calls are platform dependent.") +; (license license:expat))) +; +;(define-public go-github-com-pkg-errors-0.9.1 +; (package +; (name "go-github-com-pkg-errors") +; (version "0.9.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/pkg/errors") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1761pybhc2kqr6v5fm8faj08x9bql8427yqg6vnfv6nhrasx1mwq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/pkg/errors")) +; (home-page "https://github.com/pkg/errors") +; (synopsis "errors") +; (description "Package errors provides simple error handling primitives. +;") +; (license license:bsd-2))) +; +;(define-public go-golang-org-x-sys-0.0.0-20200302150141-5c8b2ff67527 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20200302150141-5c8b2ff67527") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0r5s7f4w7crrbcf5ydpr2xzsq0svjm332vsds41yp58kwi2lvh2v")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-gotest-tools-2.2.0+incompatible +; (package +; (name "go-gotest-tools") +; (version "2.2.0+incompatible") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/gotestyourself/gotest.tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0yif3gdyckmf8i54jq0xn00kflla5rhib9sarw66ngnbl7bn9kyl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "gotest.tools")) +; (home-page "https://gotest.tools") +; (synopsis "gotest.tools") +; (description +; "Package gotesttools is a collection of packages to augment `testing` and +;support common patterns. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-spf13-pflag-1.0.3 +; (package +; (name "go-github-com-spf13-pflag") +; (version "1.0.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/spf13/pflag") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1cj3cjm7d3zk0mf1xdybh0jywkbbw7a6yr3y22x9sis31scprswd")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/spf13/pflag")) +; (home-page "https://github.com/spf13/pflag") +; (synopsis "Description") +; (description +; "Package pflag is a drop-in replacement for Go's flag package, implementing +;POSIX/GNU-style --flags. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20190624222133-a101b041ded4 +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20190624222133-a101b041ded4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1pm50dybm5wixjjspvfpafjmiy81b1zp08h13gxc5cylrfgncrfl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" +; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-gotest-tools-v3-3.0.2 +; (package +; (name "go-gotest-tools-v3") +; (version "3.0.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/gotestyourself/gotest.tools") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0cap2aq2wphnbkkzkck5zdjxb64q3jqxfwpkgqys7279rbr8cvjm")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gotest.tools/v3" #:unpack-path "gotest.tools/v3")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20190624222133-a101b041ded4" +; ,go-golang-org-x-tools-0.0.0-20190624222133-a101b041ded4) +; ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) +; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) +; ("go-github-com-google-go-cmp-0.3.0" +; ,go-github-com-google-go-cmp-0.3.0))) +; (home-page "https://gotest.tools/v3") +; (synopsis "gotest.tools") +; (description +; "Package gotesttools is a collection of packages to augment `testing` and +;support common patterns. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd +; (package +; (name "go-github-com-moby-term") +; (version "0.0.0-20200312100748-672ec06f55cd") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/moby/term") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0xspasm3d101hmjsayrbx6az4r4ybbg5gkj13qybhpq674a6kkwn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/moby/term")) +; (propagated-inputs +; `(("go-gotest-tools-v3-3.0.2" ,go-gotest-tools-v3-3.0.2) +; ("go-gotest-tools-2.2.0+incompatible" +; ,go-gotest-tools-2.2.0+incompatible) +; ("go-golang-org-x-sys-0.0.0-20200302150141-5c8b2ff67527" +; ,go-golang-org-x-sys-0.0.0-20200302150141-5c8b2ff67527) +; ("go-github-com-sirupsen-logrus-1.4.2" +; ,go-github-com-sirupsen-logrus-1.4.2) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-google-go-cmp-0.3.1" +; ,go-github-com-google-go-cmp-0.3.1) +; ("go-github-com-azure-go-ansiterm-0.0.0-20170929234023-d6e3b3328b78" +; ,go-github-com-azure-go-ansiterm-0.0.0-20170929234023-d6e3b3328b78))) +; (home-page "https://github.com/moby/term") +; (synopsis "term - utilities for dealing with terminals") +; (description +; "Package term provides structures and helper functions to work with +;terminal (state, sizes). +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-morikuni-aec-1.0.0 +; (package +; (name "go-github-com-morikuni-aec") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/morikuni/aec") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1qaqh0lk9wrqgff0yrxnbznvmwyhdxy3g9b2hjpazp5bw4nj0dp7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/morikuni/aec")) +; (home-page "https://github.com/morikuni/aec") +; (synopsis "aec") +; (description "Go wrapper for ANSI escape code.") +; (license license:expat))) +; +;(define-public go-github-com-beorn7-perks-1.0.1 +; (package +; (name "go-github-com-beorn7-perks") +; (version "1.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/beorn7/perks") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "17n4yygjxa6p499dj3yaqzfww2g7528165cl13haj97hlx94dgl7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/beorn7/perks")) +; (home-page "https://github.com/beorn7/perks") +; (synopsis "Perks for Go (golang.org)") +; (description +; "Perks contains the Go package quantile that computes approximate quantiles over +;an unbounded data stream within low memory and CPU bounds.") +; (license license:expat))) +; +;(define-public go-github-com-cespare-xxhash-v2-2.1.1 +; (package +; (name "go-github-com-cespare-xxhash-v2") +; (version "2.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/cespare/xxhash") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0rl5rs8546zj1vzggv38w93wx0b5dvav7yy5hzxa8kw7iikv1cgr")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/cespare/xxhash/v2")) +; (home-page "https://github.com/cespare/xxhash") +; (synopsis "xxhash") +; (description +; "Package xxhash implements the 64-bit variant of xxHash (XXH64) as described +;at @url{http://cyan4973.github.io/xxHash/,http://cyan4973.github.io/xxHash/}. +;") +; (license license:expat))) +; +;(define-public go-github-com-google-gofuzz-1.0.0 +; (package +; (name "go-github-com-google-gofuzz") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/gofuzz") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0qz439qvccm91w0mmjz4fqgx48clxdwagkvvx89cr43q1d4iry36")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/gofuzz")) +; (home-page "https://github.com/google/gofuzz") +; (synopsis "gofuzz") +; (description +; "Package fuzz is a library for populating go objects with random values. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-modern-go-concurrent-0.0.0-20180228061459-e0a39a4cb421 +; (package +; (name "go-github-com-modern-go-concurrent") +; (version "0.0.0-20180228061459-e0a39a4cb421") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/modern-go/concurrent") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0hamz1zimsxm9vl0ih19v7sbibglwq2j6473w4j9k7ib80fmxdzr")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/modern-go/concurrent")) +; (home-page "https://github.com/modern-go/concurrent") +; (synopsis "concurrent") +; (description +; "because sync.Map is only available in go 1.9, we can use concurrent.Map to make code portable") +; (license license:asl2.0))) +; +;(define-public go-github-com-modern-go-reflect2-0.0.0-20180701023420-4b7aa43c6742 +; (package +; (name "go-github-com-modern-go-reflect2") +; (version "0.0.0-20180701023420-4b7aa43c6742") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/modern-go/reflect2") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1721y3yr3dpx5dx5ashf063qczk2awy5zjir1jvp1h5hn7qz4i49")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/modern-go/reflect2")) +; (home-page "https://github.com/modern-go/reflect2") +; (synopsis "reflect2") +; (description "reflect api that avoids runtime reflect.Value cost") +; (license license:asl2.0))) +; +;(define-public go-github-com-json-iterator-go-1.1.10 +; (package +; (name "go-github-com-json-iterator-go") +; (version "1.1.10") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/json-iterator/go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "134zwc2pmf8nd90r8065wsl6vv1mwjl23bs70i08dzhw5h98drr4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/json-iterator/go")) +; (propagated-inputs +; `(("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0) +; ("go-github-com-modern-go-reflect2-0.0.0-20180701023420-4b7aa43c6742" +; ,go-github-com-modern-go-reflect2-0.0.0-20180701023420-4b7aa43c6742) +; ("go-github-com-modern-go-concurrent-0.0.0-20180228061459-e0a39a4cb421" +; ,go-github-com-modern-go-concurrent-0.0.0-20180228061459-e0a39a4cb421) +; ("go-github-com-google-gofuzz-1.0.0" +; ,go-github-com-google-gofuzz-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://github.com/json-iterator/go") +; (synopsis "Benchmark") +; (description +; "Package jsoniter implements encoding and decoding of JSON as defined in +;@url{https://rfc-editor.org/rfc/rfc4627.html,RFC 4627} and provides interfaces with identical syntax of standard lib encoding/json. +;Converting from encoding/json to jsoniter is no more than replacing the package with jsoniter +;and variable type declarations (if any). +;jsoniter interfaces gives 100% compatibility with code using standard lib. +;") +; (license license:expat))) +; +;(define-public go-github-com-kr-pty-1.1.1 +; (package +; (name "go-github-com-kr-pty") +; (version "1.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kr/pty") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0383f0mb9kqjvncqrfpidsf8y6ns5zlrc91c6a74xpyxjwvzl2y6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kr/pty")) +; (home-page "https://github.com/kr/pty") +; (synopsis "pty") +; (description +; "Package pty is a wrapper for github.com/creack/pty, which provides +;functions for working with Unix terminals. +;") +; (license license:expat))) +; +;(define-public go-github-com-kr-text-0.1.0 +; (package +; (name "go-github-com-kr-text") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kr/text") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1gm5bsl01apvc84bw06hasawyqm4q84vx1pm32wr9jnd7a8vjgj1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kr/text")) +; (propagated-inputs +; `(("go-github-com-kr-pty-1.1.1" ,go-github-com-kr-pty-1.1.1))) +; (home-page "https://github.com/kr/text") +; (synopsis #f) +; (description +; "Package text provides rudimentary functions for manipulating text in +;paragraphs. +;") +; (license license:expat))) +; +;(define-public go-github-com-kr-pretty-0.1.0 +; (package +; (name "go-github-com-kr-pretty") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kr/pretty") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "18m4pwg2abd0j9cn5v3k2ksk9ig4vlwxmlw9rrglanziv9l967qp")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kr/pretty")) +; (propagated-inputs +; `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) +; (home-page "https://github.com/kr/pretty") +; (synopsis #f) +; (description +; "Package pretty provides pretty-printing for Go values. This is +;useful during debugging, to avoid wrapping long output lines in +;the terminal. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e +; (package +; (name "go-golang-org-x-sync") +; (version "0.0.0-20190911185100-cd5d95a43a6e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sync") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1nqkyz2y1qvqcma52ijh02s8aiqmkfb95j08f6zcjhbga3ds6hds")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sync")) +; (home-page "https://golang.org/x/sync") +; (synopsis "Go Sync") +; (description +; "This repository provides Go concurrency primitives in addition to the +;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20200106162015-b016eb3dc98e +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20200106162015-b016eb3dc98e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1k0qr26046d228gi6ngkfxp4m1rjgxk4jj75h0kh1cpyp91n5rja")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-prometheus-procfs-0.1.3 +; (package +; (name "go-github-com-prometheus-procfs") +; (version "0.1.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/procfs") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "09wmlmvmjf49nchidqffc99wn6vl98v5k9qgyyrhqgv0015xskwa")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/procfs")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20200106162015-b016eb3dc98e" +; ,go-golang-org-x-sys-0.0.0-20200106162015-b016eb3dc98e) +; ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" +; ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) +; ("go-github-com-google-go-cmp-0.3.1" +; ,go-github-com-google-go-cmp-0.3.1))) +; (home-page "https://github.com/prometheus/procfs") +; (synopsis "procfs") +; (description +; "Package procfs provides functions to retrieve system, kernel and process +;metrics from the pseudo-filesystem proc. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-stretchr-testify-1.4.0 +; (package +; (name "go-github-com-stretchr-testify") +; (version "1.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/testify") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "187i5g88sxfy4vxpm7dw1gwv29pa2qaq475lxrdh5livh69wqfjb")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/testify")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) +; ("go-github-com-stretchr-objx-0.1.0" +; ,go-github-com-stretchr-objx-0.1.0) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.0" +; ,go-github-com-davecgh-go-spew-1.1.0))) +; (home-page "https://github.com/stretchr/testify") +; (synopsis "Testify - Thou Shalt Write Tests") +; (description +; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-sys-0.0.0-20200615200032-f1bc736245b1 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20200615200032-f1bc736245b1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1fbmih4n2xw53qbpmc7msqf2660i4ryr0chbrsbj8mdalfrjr0vp")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15 +; (package +; (name "go-gopkg-in-check-v1") +; (version "1.0.0-20190902080502-41f04d3bba15") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/check.v1") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0vfk9czmlxmp6wndq8k17rhnjxal764mxfhrccza7nwlia760pjy")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) +; (home-page "https://gopkg.in/check.v1") +; (synopsis "Instructions") +; (description +; "Package check is a rich testing extension for Go's testing package. +;") +; (license license:bsd-2))) +; +;(define-public go-gopkg-in-yaml-v2-2.2.5 +; (package +; (name "go-gopkg-in-yaml-v2") +; (version "2.2.5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/yaml.v2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "08smz8dfyxp02ha74my9iszqa5qzgl3ksi28ilyp8lqipssiq6fg")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" +; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) +; (home-page "https://gopkg.in/yaml.v2") +; (synopsis "YAML support for the Go language") +; (description "Package yaml implements YAML support for the Go language. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-prometheus-client-golang-1.7.1 +; (package +; (name "go-github-com-prometheus-client-golang") +; (version "1.7.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/client_golang") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0i9wbwjq3idgp9y0vv7fvg6g7zrqi9qlfw915xc49ahw83q2h61w")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/client_golang")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.2.5" ,go-gopkg-in-yaml-v2-2.2.5) +; ("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" +; ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) +; ("go-golang-org-x-sys-0.0.0-20200615200032-f1bc736245b1" +; ,go-golang-org-x-sys-0.0.0-20200615200032-f1bc736245b1) +; ("go-github-com-stretchr-testify-1.4.0" +; ,go-github-com-stretchr-testify-1.4.0) +; ("go-github-com-prometheus-procfs-0.1.3" +; ,go-github-com-prometheus-procfs-0.1.3) +; ("go-github-com-prometheus-common-0.10.0" +; ,go-github-com-prometheus-common-0.10.0) +; ("go-github-com-prometheus-client-model-0.2.0" +; ,go-github-com-prometheus-client-model-0.2.0) +; ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) +; ("go-github-com-json-iterator-go-1.1.10" +; ,go-github-com-json-iterator-go-1.1.10) +; ("go-github-com-golang-protobuf-1.4.2" +; ,go-github-com-golang-protobuf-1.4.2) +; ("go-github-com-cespare-xxhash-v2-2.1.1" +; ,go-github-com-cespare-xxhash-v2-2.1.1) +; ("go-github-com-beorn7-perks-1.0.1" +; ,go-github-com-beorn7-perks-1.0.1))) +; (home-page "https://github.com/prometheus/client_golang") +; (synopsis "Prometheus Go client library") +; (description +; "This is the @url{http://golang.org,Go} client library for +;@url{http://prometheus.io,Prometheus}. It has two separate parts, one for +;instrumenting application code, and one for creating clients that talk to the +;Prometheus HTTP API.") +; (license license:asl2.0))) +; +;(define-public go-github-com-alecthomas-template-0.0.0-20190718012654-fb15b899a751 +; (package +; (name "go-github-com-alecthomas-template") +; (version "0.0.0-20190718012654-fb15b899a751") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/alecthomas/template") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1vlasv4dgycydh5wx6jdcvz40zdv90zz1h7836z7lhsi2ymvii26")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/alecthomas/template")) +; (home-page "https://github.com/alecthomas/template") +; (synopsis "Go's") +; (description +; "Package template implements data-driven templates for generating textual output. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-alecthomas-units-0.0.0-20190717042225-c3de453c63f4 +; (package +; (name "go-github-com-alecthomas-units") +; (version "0.0.0-20190717042225-c3de453c63f4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/alecthomas/units") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0js37zlgv37y61j4a2d46jh72xm5kxmpaiw0ya9v944bjpc386my")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/alecthomas/units")) +; (home-page "https://github.com/alecthomas/units") +; (synopsis "Units - Helpful unit multipliers and functions for Go") +; (description +; "Package units provides helpful unit multipliers and functions for Go. +;") +; (license license:expat))) +; +;(define-public go-github-com-go-kit-kit-0.9.0 +; (package +; (name "go-github-com-go-kit-kit") +; (version "0.9.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/go-kit/kit") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "09038mnw705h7isbjp8dzgp2i04bp5rqkmifxvwc5xkh75s00qpw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/go-kit/kit")) +; (home-page "https://github.com/go-kit/kit") +; (synopsis "Go kit") +; (description +; "@strong{Go kit} is a @strong{programming toolkit} for building microservices +;(or elegant monoliths) in Go. We solve common problems in distributed +;systems and application architecture so you can focus on delivering +;business value.") +; (license license:expat))) +; +;(define-public go-github-com-go-logfmt-logfmt-0.4.0 +; (package +; (name "go-github-com-go-logfmt-logfmt") +; (version "0.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/go-logfmt/logfmt") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "06smxc112xmixz78nyvk3b2hmc7wasf2sl5vxj1xz62kqcq9lzm9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/go-logfmt/logfmt")) +; (propagated-inputs +; `(("go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515" +; ,go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515))) +; (home-page "https://github.com/go-logfmt/logfmt") +; (synopsis "logfmt") +; (description +; "Package logfmt implements utilities to marshal and unmarshal data in the +;logfmt format. The logfmt format records key/value pairs in a way that +;balances readability for humans and simplicity of computer parsing. It is +;most commonly used as a more human friendly alternative to JSON for +;structured logging. +;") +; (license license:expat))) +; +;(define-public go-github-com-pkg-errors-0.8.1 +; (package +; (name "go-github-com-pkg-errors") +; (version "0.8.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/pkg/errors") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0g5qcb4d4fd96midz0zdk8b9kz8xkzwfa8kr1cliqbg8sxsy5vd1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/pkg/errors")) +; (home-page "https://github.com/pkg/errors") +; (synopsis "errors") +; (description "Package errors provides simple error handling primitives. +;") +; (license license:bsd-2))) +; +;(define-public go-github-com-beorn7-perks-1.0.0 +; (package +; (name "go-github-com-beorn7-perks") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/beorn7/perks") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1i1nz1f6g55xi2y3aiaz5kqfgvknarbfl4f0sx4nyyb4s7xb1z9x")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/beorn7/perks")) +; (home-page "https://github.com/beorn7/perks") +; (synopsis "Perks for Go (golang.org)") +; (description +; "Perks contains the Go package quantile that computes approximate quantiles over +;an unbounded data stream within low memory and CPU bounds.") +; (license license:expat))) +; +;(define-public go-github-com-golang-protobuf-1.3.1 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.3.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "15am4s4646qy6iv0g3kkqq52rzykqjhm4bf08dk0fy2r58knpsyl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-github-com-json-iterator-go-1.1.6 +; (package +; (name "go-github-com-json-iterator-go") +; (version "1.1.6") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/json-iterator/go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "08caswxvdn7nvaqyj5kyny6ghpygandlbw9vxdj7l5vkp7q0s43r")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/json-iterator/go")) +; (home-page "https://github.com/json-iterator/go") +; (synopsis "Benchmark") +; (description +; "Package jsoniter implements encoding and decoding of JSON as defined in +;@url{https://rfc-editor.org/rfc/rfc4627.html,RFC 4627} and provides interfaces with identical syntax of standard lib encoding/json. +;Converting from encoding/json to jsoniter is no more than replacing the package with jsoniter +;and variable type declarations (if any). +;jsoniter interfaces gives 100% compatibility with code using standard lib. +;") +; (license license:expat))) +; +;(define-public go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd +; (package +; (name "go-github-com-modern-go-concurrent") +; (version "0.0.0-20180306012644-bacd9c7ef1dd") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/modern-go/concurrent") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0s0fxccsyb8icjmiym5k7prcqx36hvgdwl588y0491gi18k5i4zs")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/modern-go/concurrent")) +; (home-page "https://github.com/modern-go/concurrent") +; (synopsis "concurrent") +; (description +; "because sync.Map is only available in go 1.9, we can use concurrent.Map to make code portable") +; (license license:asl2.0))) +; +;(define-public go-github-com-modern-go-reflect2-1.0.1 +; (package +; (name "go-github-com-modern-go-reflect2") +; (version "1.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/modern-go/reflect2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "06a3sablw53n1dqqbr2f53jyksbxdmmk8axaas4yvnhyfi55k4lf")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/modern-go/reflect2")) +; (home-page "https://github.com/modern-go/reflect2") +; (synopsis "reflect2") +; (description "reflect api that avoids runtime reflect.Value cost") +; (license license:asl2.0))) +; +;(define-public go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90 +; (package +; (name "go-github-com-prometheus-client-model") +; (version "0.0.0-20190129233127-fd36f4220a90") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/client_model") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1bs5d72k361llflgl94c22n0w53j30rsfh84smgk8mbjbcmjsaa5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/client_model")) +; (propagated-inputs +; `(("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" +; ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0))) +; (home-page "https://github.com/prometheus/client_model") +; (synopsis "Deprecation note") +; (description +; "This repository used to contain the code that defined both +;the data model and the exposition format of Prometheus metrics.") +; (license license:asl2.0))) +; +;(define-public go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc +; (package +; (name "go-github-com-alecthomas-template") +; (version "0.0.0-20160405071501-a0175ee3bccc") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/alecthomas/template") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0qjgvvh26vk1cyfq9fadyhfgdj36f1iapbmr5xp6zqipldz8ffxj")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/alecthomas/template")) +; (home-page "https://github.com/alecthomas/template") +; (synopsis "Go's") +; (description +; "Package template implements data-driven templates for generating textual output. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf +; (package +; (name "go-github-com-alecthomas-units") +; (version "0.0.0-20151022065526-2efee857e7cf") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/alecthomas/units") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1j65b91qb9sbrml9cpabfrcf07wmgzzghrl7809hjjhrmbzri5bl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/alecthomas/units")) +; (home-page "https://github.com/alecthomas/units") +; (synopsis "Units - Helpful unit multipliers and functions for Go") +; (description +; "Package units provides helpful unit multipliers and functions for Go. +;") +; (license license:expat))) +; +;(define-public go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973 +; (package +; (name "go-github-com-beorn7-perks") +; (version "0.0.0-20180321164747-3a771d992973") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/beorn7/perks") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1l2lns4f5jabp61201sh88zf3b0q793w4zdgp9nll7mmfcxxjif3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/beorn7/perks")) +; (home-page "https://github.com/beorn7/perks") +; (synopsis "Perks for Go (golang.org)") +; (description +; "Perks contains the Go package quantile that computes approximate quantiles over +;an unbounded data stream within low memory and CPU bounds.") +; (license license:expat))) +; +;(define-public go-github-com-go-kit-kit-0.8.0 +; (package +; (name "go-github-com-go-kit-kit") +; (version "0.8.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/go-kit/kit") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1rcywbc2pvab06qyf8pc2rdfjv7r6kxdv2v4wnpqnjhz225wqvc0")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/go-kit/kit")) +; (home-page "https://github.com/go-kit/kit") +; (synopsis "Go kit") +; (description +; "@strong{Go kit} is a @strong{programming toolkit} for building microservices +;(or elegant monoliths) in Go. We solve common problems in distributed +;systems and application architecture so you can focus on delivering +;business value.") +; (license license:expat))) +; +;(define-public go-github-com-go-logfmt-logfmt-0.3.0 +; (package +; (name "go-github-com-go-logfmt-logfmt") +; (version "0.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/go-logfmt/logfmt") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1gkgh3k5w1xwb2qbjq52p6azq3h1c1rr6pfwjlwj1zrijpzn2xb9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/go-logfmt/logfmt")) +; (home-page "https://github.com/go-logfmt/logfmt") +; (synopsis "logfmt") +; (description +; "Package logfmt implements utilities to marshal and unmarshal data in the +;logfmt format. The logfmt format records key/value pairs in a way that +;balances readability for humans and simplicity of computer parsing. It is +;most commonly used as a more human friendly alternative to JSON for +;structured logging. +;") +; (license license:expat))) +; +;(define-public go-github-com-go-stack-stack-1.8.0 +; (package +; (name "go-github-com-go-stack-stack") +; (version "1.8.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/go-stack/stack") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0wk25751ryyvxclyp8jdk5c3ar0cmfr8lrjb66qbg4808x66b96v")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/go-stack/stack")) +; (home-page "https://github.com/go-stack/stack") +; (synopsis "stack") +; (description +; "Package stack implements utilities to capture, manipulate, and format call +;stacks. It provides a simpler API than package runtime. +;") +; (license license:expat))) +; +;(define-public go-github-com-gogo-protobuf-1.1.1 +; (package +; (name "go-github-com-gogo-protobuf") +; (version "1.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/gogo/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1525pq7r6h3s8dncvq8gxi893p2nq8dxpzvq0nfl5b4p6mq0v1c2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/gogo/protobuf")) +; (home-page "https://github.com/gogo/protobuf") +; (synopsis "Protocol Buffers for Go with Gadgets") +; (description +; "gogoprotobuf is a fork of @url{https://github.com/golang/protobuf,golang/protobuf} with extra code generation features.") +; (license license:bsd-3))) +; +;(define-public go-github-com-julienschmidt-httprouter-1.2.0 +; (package +; (name "go-github-com-julienschmidt-httprouter") +; (version "1.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/julienschmidt/httprouter") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1k8bylc9s4vpvf5xhqh9h246dl1snxrzzz0614zz88cdh8yzs666")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/julienschmidt/httprouter")) +; (home-page "https://github.com/julienschmidt/httprouter") +; (synopsis "HttpRouter") +; (description +; "Package httprouter is a trie based high performance HTTP request router. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515 +; (package +; (name "go-github-com-kr-logfmt") +; (version "0.0.0-20140226030751-b84e30acd515") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kr/logfmt") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "02ldzxgznrfdzvghfraslhgp19la1fczcbzh7wm2zdc6lmpd1qq9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kr/logfmt")) +; (home-page "https://github.com/kr/logfmt") +; (synopsis #f) +; (description +; "Package implements the decoding of logfmt key-value pairs. +;") +; (license license:expat))) +; +;(define-public go-github-com-matttproud-golang-protobuf-extensions-1.0.1 +; (package +; (name "go-github-com-matttproud-golang-protobuf-extensions") +; (version "1.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/matttproud/golang_protobuf_extensions") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1d0c1isd2lk9pnfq2nk0aih356j30k3h1gi2w0ixsivi5csl7jya")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "github.com/matttproud/golang_protobuf_extensions")) +; (home-page "https://github.com/matttproud/golang_protobuf_extensions") +; (synopsis "Overview") +; (description +; "This repository provides various Protocol Buffer extensions for the Go +;language (golang), namely support for record length-delimited message +;streaming.") +; (license license:asl2.0))) +; +;(define-public go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223 +; (package +; (name "go-github-com-mwitkow-go-conntrack") +; (version "0.0.0-20161129095857-cc309e4a2223") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mwitkow/go-conntrack") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0nbrnpk7bkmqg9mzwsxlm0y8m7s9qd9phr1q30qlx2qmdmz7c1mf")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mwitkow/go-conntrack")) +; (home-page "https://github.com/mwitkow/go-conntrack") +; (synopsis "Go tracing and monitoring (Prometheus) for") +; (description +; "@url{https://prometheus.io/,Prometheus} monitoring and @url{https://godoc.org/golang.org/x/net/trace#EventLog,(code x/net/trace)} tracing wrappers @code{net.Conn}, both inbound (@code{net.Listener}) and outbound (@code{net.Dialer}).") +; (license license:asl2.0))) +; +;(define-public go-github-com-pkg-errors-0.8.0 +; (package +; (name "go-github-com-pkg-errors") +; (version "0.8.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/pkg/errors") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "001i6n71ghp2l6kdl3qq1v2vmghcz3kicv9a5wgcihrzigm75pp5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/pkg/errors")) +; (home-page "https://github.com/pkg/errors") +; (synopsis "errors") +; (description "Package errors provides simple error handling primitives. +;") +; (license license:bsd-2))) +; +;(define-public go-github-com-prometheus-client-golang-0.9.1 +; (package +; (name "go-github-com-prometheus-client-golang") +; (version "0.9.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/client_golang") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "01gnylazia30pcp069xcng482gwmm3xcx5zgrlwdkhic1lyb6i9l")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/client_golang")) +; (home-page "https://github.com/prometheus/client_golang") +; (synopsis "Prometheus Go client library") +; (description +; "This is the @url{http://golang.org,Go} client library for +;@url{http://prometheus.io,Prometheus}. It has two separate parts, one for +;instrumenting application code, and one for creating clients that talk to the +;Prometheus HTTP API.") +; (license license:asl2.0))) +; +;(define-public go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910 +; (package +; (name "go-github-com-prometheus-client-model") +; (version "0.0.0-20180712105110-5c3871d89910") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/client_model") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "04psf81l9fjcwascsys428v03fx4fi894h7fhrj2vvcz723q57k0")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/client_model")) +; (home-page "https://github.com/prometheus/client_model") +; (synopsis "Deprecation note") +; (description +; "This repository used to contain the code that defined both +;the data model and the exposition format of Prometheus metrics.") +; (license license:asl2.0))) +; +;(define-public go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d +; (package +; (name "go-github-com-prometheus-procfs") +; (version "0.0.0-20181005140218-185b4288413d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/procfs") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0d85429kdw5dgj5zhyiz1sq3i5691vj2gjnda93nnxxzx9acg8cv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/procfs")) +; (home-page "https://github.com/prometheus/procfs") +; (synopsis "procfs") +; (description +; "Package procfs provides functions to retrieve system, kernel and process +;metrics from the pseudo-filesystem proc. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20180904163835-0709b304e793 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20180904163835-0709b304e793") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0i05s09y5pavmfh71fgih7syxg58x7a4krgd8am6d3mnahnmab5c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20180905080454-ebe1bf3edb33") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0rkspxyjxdmc9f4n09hgkwj8jjd8z5p8mc9z8vwqwqcwrqv4sg7c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-sirupsen-logrus-1.2.0 +; (package +; (name "go-github-com-sirupsen-logrus") +; (version "1.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/sirupsen/logrus") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0r6334x2bls8ddznvzaldx4g88msjjns4mlks95rqrrg7h0ijigg")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/sirupsen/logrus")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33" +; ,go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33) +; ("go-golang-org-x-crypto-0.0.0-20180904163835-0709b304e793" +; ,go-golang-org-x-crypto-0.0.0-20180904163835-0709b304e793) +; ("go-github-com-stretchr-testify-1.2.2" +; ,go-github-com-stretchr-testify-1.2.2) +; ("go-github-com-stretchr-objx-0.1.1" +; ,go-github-com-stretchr-objx-0.1.1) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.1" +; ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.1) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://github.com/sirupsen/logrus") +; (synopsis "Logrus") +; (description +; "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-net-0.0.0-20181114220301-adae6a3d119a +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20181114220301-adae6a3d119a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1fx860zsgzqk28j7lmp96qsfrgb0kzbfjvr294hywswcbwdwkb01")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-gopkg-in-yaml-v2-2.2.1 +; (package +; (name "go-gopkg-in-yaml-v2") +; (version "2.2.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/yaml.v2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0dwjrs2lp2gdlscs7bsrmyc5yf6mm4fvgw71bzr9mv2qrd2q73s1")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" +; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) +; (home-page "https://gopkg.in/yaml.v2") +; (synopsis "YAML support for the Go language") +; (description "Package yaml implements YAML support for the Go language. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-prometheus-common-0.4.1 +; (package +; (name "go-github-com-prometheus-common") +; (version "0.4.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/common") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0sf4sjdckblz1hqdfvripk3zyp8xq89w7q75kbsyg4c078af896s")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/common")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1) +; ("go-gopkg-in-alecthomas-kingpin-v2-2.2.6" +; ,go-gopkg-in-alecthomas-kingpin-v2-2.2.6) +; ("go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5" +; ,go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5) +; ("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" +; ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) +; ("go-golang-org-x-net-0.0.0-20181114220301-adae6a3d119a" +; ,go-golang-org-x-net-0.0.0-20181114220301-adae6a3d119a) +; ("go-github-com-sirupsen-logrus-1.2.0" +; ,go-github-com-sirupsen-logrus-1.2.0) +; ("go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d" +; ,go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d) +; ("go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910" +; ,go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910) +; ("go-github-com-prometheus-client-golang-0.9.1" +; ,go-github-com-prometheus-client-golang-0.9.1) +; ("go-github-com-pkg-errors-0.8.0" ,go-github-com-pkg-errors-0.8.0) +; ("go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223" +; ,go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223) +; ("go-github-com-matttproud-golang-protobuf-extensions-1.0.1" +; ,go-github-com-matttproud-golang-protobuf-extensions-1.0.1) +; ("go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515" +; ,go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515) +; ("go-github-com-julienschmidt-httprouter-1.2.0" +; ,go-github-com-julienschmidt-httprouter-1.2.0) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0) +; ("go-github-com-gogo-protobuf-1.1.1" +; ,go-github-com-gogo-protobuf-1.1.1) +; ("go-github-com-go-stack-stack-1.8.0" +; ,go-github-com-go-stack-stack-1.8.0) +; ("go-github-com-go-logfmt-logfmt-0.3.0" +; ,go-github-com-go-logfmt-logfmt-0.3.0) +; ("go-github-com-go-kit-kit-0.8.0" ,go-github-com-go-kit-kit-0.8.0) +; ("go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973" +; ,go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973) +; ("go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf" +; ,go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf) +; ("go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc" +; ,go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc))) +; (home-page "https://github.com/prometheus/common") +; (synopsis "Common") +; (description +; "This repository contains Go libraries that are shared across Prometheus +;components and libraries. They are considered internal to Prometheus, without +;any stability guarantees for external usage.") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4 +; (package +; (name "go-golang-org-x-sync") +; (version "0.0.0-20181221193216-37e7f081c4d4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sync") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1bb0mw6ckb1k7z8v3iil2qlqwfj408fvvp8m1cik2b46p7snyjhm")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sync")) +; (home-page "https://golang.org/x/sync") +; (synopsis "Go Sync") +; (description +; "This repository provides Go concurrency primitives in addition to the +;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") +; (license license:bsd-3))) +; +;(define-public go-github-com-prometheus-procfs-0.0.2 +; (package +; (name "go-github-com-prometheus-procfs") +; (version "0.0.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/procfs") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0s7pvs7fgnfpmym3cd0k219av321h9sf3yvdlnn3qy0ps280lg7k")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/procfs")) +; (propagated-inputs +; `(("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" +; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4))) +; (home-page "https://github.com/prometheus/procfs") +; (synopsis "procfs") +; (description +; "Package procfs provides functions to retrieve system, kernel and process +;metrics from the pseudo-filesystem proc. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-stretchr-testify-1.3.0 +; (package +; (name "go-github-com-stretchr-testify") +; (version "1.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/testify") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0wjchp2c8xbgcbbq32w3kvblk6q6yn533g78nxl6iskq6y95lxsy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/testify")) +; (propagated-inputs +; `(("go-github-com-stretchr-objx-0.1.0" +; ,go-github-com-stretchr-objx-0.1.0) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.0" +; ,go-github-com-davecgh-go-spew-1.1.0))) +; (home-page "https://github.com/stretchr/testify") +; (synopsis "Testify - Thou Shalt Write Tests") +; (description +; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20181116152217-5ac8a444bdc5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "00zdrighflwc4iyizsag184nvl1cbkk02v73kpl5miprdrvzqlr4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-prometheus-client-golang-1.0.0 +; (package +; (name "go-github-com-prometheus-client-golang") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/client_golang") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1f03ndyi3jq7zdxinnvzimz3s4z2374r6dikkc8i42xzb6d1bli6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/client_golang")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5" +; ,go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5) +; ("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0) +; ("go-github-com-prometheus-procfs-0.0.2" +; ,go-github-com-prometheus-procfs-0.0.2) +; ("go-github-com-prometheus-common-0.4.1" +; ,go-github-com-prometheus-common-0.4.1) +; ("go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90" +; ,go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90) +; ("go-github-com-modern-go-reflect2-1.0.1" +; ,go-github-com-modern-go-reflect2-1.0.1) +; ("go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd" +; ,go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd) +; ("go-github-com-json-iterator-go-1.1.6" +; ,go-github-com-json-iterator-go-1.1.6) +; ("go-github-com-golang-protobuf-1.3.1" +; ,go-github-com-golang-protobuf-1.3.1) +; ("go-github-com-beorn7-perks-1.0.0" +; ,go-github-com-beorn7-perks-1.0.0))) +; (home-page "https://github.com/prometheus/client_golang") +; (synopsis "Prometheus Go client library") +; (description +; "This is the @url{http://golang.org,Go} client library for +;@url{http://prometheus.io,Prometheus}. It has two separate parts, one for +;instrumenting application code, and one for creating clients that talk to the +;Prometheus HTTP API.") +; (license license:asl2.0))) +; +;(define-public go-github-com-prometheus-client-model-0.2.0 +; (package +; (name "go-github-com-prometheus-client-model") +; (version "0.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/client_model") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0jffnz94d6ff39fr96b5w8i8yk26pwnrfggzz8jhi8k0yihg2c9d")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/client_model")) +; (propagated-inputs +; `(("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" +; ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0))) +; (home-page "https://github.com/prometheus/client_model") +; (synopsis "Deprecation note") +; (description +; "This repository used to contain the code that defined both +;the data model and the exposition format of Prometheus metrics.") +; (license license:asl2.0))) +; +;(define-public go-github-com-davecgh-go-spew-1.1.1 +; (package +; (name "go-github-com-davecgh-go-spew") +; (version "1.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/davecgh/go-spew") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/davecgh/go-spew")) +; (home-page "https://github.com/davecgh/go-spew") +; (synopsis "go-spew") +; (description +; "Go-spew implements a deep pretty printer for Go data structures to aid in +;debugging. A comprehensive suite of tests with 100% test coverage is provided +;to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage +;report. Go-spew is licensed under the liberal ISC license, so it may be used in +;open source or commercial projects.") +; (license license:isc))) +; +;(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.1 +; (package +; (name "go-github-com-konsorten-go-windows-terminal-sequences") +; (version "1.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/konsorten/go-windows-terminal-sequences") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1lchgf27n276vma6iyxa0v1xds68n2g8lih5lavqnx5x6q5pw2ip")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) +; (home-page "https://github.com/konsorten/go-windows-terminal-sequences") +; (synopsis "Windows Terminal Sequences") +; (description +; "This library allow for enabling Windows terminal color support for Go.") +; (license license:expat))) +; +;(define-public go-github-com-stretchr-objx-0.1.1 +; (package +; (name "go-github-com-stretchr-objx") +; (version "0.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/objx") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0iph0qmpyqg4kwv8jsx6a56a7hhqq8swrazv40ycxk9rzr0s8yls")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/objx")) +; (home-page "https://github.com/stretchr/objx") +; (synopsis "Objx") +; (description +; "Objx - Go package for dealing with maps, slices, JSON and other data. +;") +; (license license:expat))) +; +;(define-public go-github-com-stretchr-testify-1.2.2 +; (package +; (name "go-github-com-stretchr-testify") +; (version "1.2.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/testify") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0dlszlshlxbmmfxj5hlwgv3r22x0y1af45gn1vd198nvvs3pnvfs")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/testify")) +; (home-page "https://github.com/stretchr/testify") +; (synopsis "Testify - Thou Shalt Write Tests") +; (description +; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +;") +; (license license:expat))) +; +;(define-public go-github-com-sirupsen-logrus-1.4.2 +; (package +; (name "go-github-com-sirupsen-logrus") +; (version "1.4.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/sirupsen/logrus") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "087k2lxrr9p9dh68yw71d05h5g9p5v26zbwd6j7lghinjfaw334x")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/sirupsen/logrus")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894" +; ,go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894) +; ("go-github-com-stretchr-testify-1.2.2" +; ,go-github-com-stretchr-testify-1.2.2) +; ("go-github-com-stretchr-objx-0.1.1" +; ,go-github-com-stretchr-objx-0.1.1) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.1" +; ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.1) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://github.com/sirupsen/logrus") +; (synopsis "Logrus") +; (description +; "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190613194153-d28f0bde5980") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "18xj31h70m7xxb7gc86n9i21w6d7djbjz67zfaljm4jqskz6hxkf")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190422165155-953cdadca894") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0gkha4whk8xkcv3isigbs250akag99isxnd3v9xmy0kl3g88hxy1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-gopkg-in-alecthomas-kingpin-v2-2.2.6 +; (package +; (name "go-gopkg-in-alecthomas-kingpin-v2") +; (version "2.2.6") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/alecthomas/kingpin.v2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0mndnv3hdngr3bxp7yxfd47cas4prv98sqw534mx7vp38gd88n5r")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path +; "gopkg.in/alecthomas/kingpin.v2" +; #:unpack-path +; "gopkg.in/alecthomas/kingpin.v2")) +; (home-page "https://gopkg.in/alecthomas/kingpin.v2") +; (synopsis "Kingpin - A Go (golang) command line and flag parser") +; (description +; "Package kingpin provides command line interfaces like this: +;") +; (license license:expat))) +; +;(define-public go-gopkg-in-yaml-v2-2.2.4 +; (package +; (name "go-gopkg-in-yaml-v2") +; (version "2.2.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/yaml.v2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "11bwj757wi8kdrcnlgfqb8vv2d2xdhlghmyagd19i62khrkchsg2")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" +; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) +; (home-page "https://gopkg.in/yaml.v2") +; (synopsis "YAML support for the Go language") +; (description "Package yaml implements YAML support for the Go language. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-prometheus-common-0.10.0 +; (package +; (name "go-github-com-prometheus-common") +; (version "0.10.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/common") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ra7zfqsnvgfizzsxn3rk0dwhk7nx8p8082zgpvadbv2b0j1k01i")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/common")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.2.4" ,go-gopkg-in-yaml-v2-2.2.4) +; ("go-gopkg-in-alecthomas-kingpin-v2-2.2.6" +; ,go-gopkg-in-alecthomas-kingpin-v2-2.2.6) +; ("go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894" +; ,go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894) +; ("go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980" +; ,go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980) +; ("go-github-com-sirupsen-logrus-1.4.2" +; ,go-github-com-sirupsen-logrus-1.4.2) +; ("go-github-com-prometheus-client-model-0.2.0" +; ,go-github-com-prometheus-client-model-0.2.0) +; ("go-github-com-prometheus-client-golang-1.0.0" +; ,go-github-com-prometheus-client-golang-1.0.0) +; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) +; ("go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223" +; ,go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223) +; ("go-github-com-matttproud-golang-protobuf-extensions-1.0.1" +; ,go-github-com-matttproud-golang-protobuf-extensions-1.0.1) +; ("go-github-com-julienschmidt-httprouter-1.2.0" +; ,go-github-com-julienschmidt-httprouter-1.2.0) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2) +; ("go-github-com-go-logfmt-logfmt-0.4.0" +; ,go-github-com-go-logfmt-logfmt-0.4.0) +; ("go-github-com-go-kit-kit-0.9.0" ,go-github-com-go-kit-kit-0.9.0) +; ("go-github-com-alecthomas-units-0.0.0-20190717042225-c3de453c63f4" +; ,go-github-com-alecthomas-units-0.0.0-20190717042225-c3de453c63f4) +; ("go-github-com-alecthomas-template-0.0.0-20190718012654-fb15b899a751" +; ,go-github-com-alecthomas-template-0.0.0-20190718012654-fb15b899a751))) +; (home-page "https://github.com/prometheus/common") +; (synopsis "Common") +; (description +; "This repository contains Go libraries that are shared across Prometheus +;components and libraries. They are considered internal to Prometheus, without +;any stability guarantees for external usage.") +; (license license:asl2.0))) +; +;(define-public go-github-com-google-go-cmp-0.5.4 +; (package +; (name "go-github-com-google-go-cmp") +; (version "0.5.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/go-cmp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ld9pwb6l22g75g1zpa691l7q9ki7pjgpcqhwgdfr3va1zisr5ci")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/go-cmp")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" +; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) +; (home-page "https://github.com/google/go-cmp") +; (synopsis "Package for equality of Go values") +; (description +; "This package is intended to be a more powerful and safer alternative to +;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a +; (package +; (name "go-golang-org-x-sync") +; (version "0.0.0-20201207232520-09787c993a3a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sync") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1nv4mwi9njkkyc7lwmxrjr8ggfh2cf1c67a9bq85dnss81vpj61y")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sync")) +; (home-page "https://golang.org/x/sync") +; (synopsis "Go Sync") +; (description +; "This repository provides Go concurrency primitives in addition to the +;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20210124154548-22da62e12c0c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "17gp3dl75wq3x7j9z1pqgcyvjhvy9jaln1wbscy57al3whdsjp07")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-prometheus-procfs-0.6.0 +; (package +; (name "go-github-com-prometheus-procfs") +; (version "0.6.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/procfs") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0czzw37dq0sfq7rivxmxxw5hy287grqnng6q6hfz6mkqmhqgm1m6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/procfs")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" +; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) +; ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" +; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) +; ("go-github-com-google-go-cmp-0.5.4" +; ,go-github-com-google-go-cmp-0.5.4))) +; (home-page "https://github.com/prometheus/procfs") +; (synopsis "procfs") +; (description +; "Package procfs provides functions to retrieve system, kernel and process +;metrics from the pseudo-filesystem proc. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-spf13-pflag-1.0.5 +; (package +; (name "go-github-com-spf13-pflag") +; (version "1.0.5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/spf13/pflag") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0gpmacngd0gpslnbkzi263f5ishigzgh6pbdv9hp092rnjl4nd31")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/spf13/pflag")) +; (home-page "https://github.com/spf13/pflag") +; (synopsis "Description") +; (description +; "Package pflag is a drop-in replacement for Go's flag package, implementing +;POSIX/GNU-style --flags. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-yvasiyarov-go-metrics-0.0.0-20140926110328-57bccd1ccd43 +; (package +; (name "go-github-com-yvasiyarov-go-metrics") +; (version "0.0.0-20140926110328-57bccd1ccd43") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/yvasiyarov/go-metrics") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1rwlq9k3iii54da90fjivi13zacx2h6znppkzncvl653xhjpm26g")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/yvasiyarov/go-metrics")) +; (home-page "https://github.com/yvasiyarov/go-metrics") +; (synopsis "go-metrics") +; (description "Go port of Coda Hale's Metrics library +;") +; (license #f))) +; +;(define-public go-github-com-yvasiyarov-gorelic-0.0.0-20141212073537-a9bba5b9ab50 +; (package +; (name "go-github-com-yvasiyarov-gorelic") +; (version "0.0.0-20141212073537-a9bba5b9ab50") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/yvasiyarov/gorelic") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1niwv40k9rx2g5h6wddci9ykf1sm1d5ml9mjgdjd1ahm4wfq08gn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/yvasiyarov/gorelic")) +; (home-page "https://github.com/yvasiyarov/gorelic") +; (synopsis "GoRelic is deprecated in favour of") +; (description +; "Package gorelic is an New Relic agent implementation for Go runtime. It collect a lot of metrics about Go scheduler, garbage collector and memory allocator and send them to NewRelic. +;") +; (license license:bsd-2))) +; +;(define-public go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20140908184405-b21fdbd4370f +; (package +; (name "go-github-com-yvasiyarov-newrelic-platform-go") +; (version "0.0.0-20140908184405-b21fdbd4370f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/yvasiyarov/newrelic_platform_go") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0a4yncdxwsy0rn3bhkadfysm817b7ndzmh9fkg8hh92pnw5aabzw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/yvasiyarov/newrelic_platform_go")) +; (home-page "https://github.com/yvasiyarov/newrelic_platform_go") +; (synopsis "New Relic Platform Agent SDK for Go(golang)") +; (description +; "Package newrelic_platform_go is New Relic Platform Agent SDK for Go language. +;") +; (license license:bsd-2))) +; +;(define-public go-golang-org-x-sys-0.0.0-20210423082822-04245dca01da +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20210423082822-04245dca01da") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "11is2c5cpxk0gf2mxza2wpzfcf71fxb9b3in77f6w2q0pr68ykzx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20211112202133-69e39bad7dc2 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20211112202133-69e39bad7dc2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0yvg72fb037yh4xvjyfgrr8nsbz7nfiiksvq0a5922z255anamy6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.6" ,go-golang-org-x-text-0.3.6) +; ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" +; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) +; ("go-golang-org-x-sys-0.0.0-20210423082822-04245dca01da" +; ,go-golang-org-x-sys-0.0.0-20210423082822-04245dca01da))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20210615035016-665e8c7367d1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "11n848csibdbv7b46zjyf4l7sphg37n9sjzqfy1ds7p1jyakwmnv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-text-0.3.6 +; (package +; (name "go-golang-org-x-text") +; (version "0.3.6") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/text") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0wzhvdb059vrp2cczqw422ajrb9sbs4l3qd020hlngj33qfhxah0")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/text")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" +; ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) +; (home-page "https://golang.org/x/text") +; (synopsis "Go Text") +; (description +; "text is a repository of text-related packages related to internationalization +;(i18n) and localization (l10n), such as character encodings, text +;transformations, and locale-specific text handling. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.5.2 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.5.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1mh5fyim42dn821nsd3afnmgscrzzhn3h8rag635d2jnr23r1zhk")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.26.0" +; ,go-google-golang-org-protobuf-1.26.0) +; ("go-github-com-google-go-cmp-0.5.5" +; ,go-github-com-google-go-cmp-0.5.5))) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-mod-0.1.1-0.20191105210325-c90efee705ee +; (package +; (name "go-golang-org-x-mod") +; (version "0.1.1-0.20191105210325-c90efee705ee") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/mod") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0i5md645rmcy5z5ij9ng428k9rz4g3k1kjy3blsq1264rn426gdf")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/mod")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" +; ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) +; ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" +; ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) +; (home-page "https://golang.org/x/mod") +; (synopsis "mod") +; (description +; "This repository holds packages for writing tools +;that work directly with Go module mechanics. +;That is, it is for direct manipulation of Go modules themselves.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7 +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20200130002326-2f3ba24bd6e7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0j3nnmlwnbivf0h9x89vlp8ji3ha41v96bj33cxwmrrjnxq543ww")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" +; ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) +; ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" +; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) +; ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" +; ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) +; ("go-golang-org-x-mod-0.1.1-0.20191105210325-c90efee705ee" +; ,go-golang-org-x-mod-0.1.1-0.20191105210325-c90efee705ee))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-lint-0.0.0-20210508222113-6edffad5e616 +; (package +; (name "go-golang-org-x-lint") +; (version "0.0.0-20210508222113-6edffad5e616") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/lint") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1n7lrr3282q3li4f06afms444qy13rfd316za0drqihakwyki2jk")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/lint")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7" +; ,go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7))) +; (home-page "https://golang.org/x/lint") +; (synopsis "Installation") +; (description "Package lint contains a linter for Go source code. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-text-0.3.5 +; (package +; (name "go-golang-org-x-text") +; (version "0.3.5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/text") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "082s9d7wnh1aa2v08g3h5z4if2f8hl4y01pb788qsvab9329lj0w")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/text")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" +; ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) +; (home-page "https://golang.org/x/text") +; (synopsis "Go Text") +; (description +; "text is a repository of text-related packages related to internationalization +;(i18n) and localization (l10n), such as character encodings, text +;transformations, and locale-specific text handling. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-yuin-goldmark-1.3.5 +; (package +; (name "go-github-com-yuin-goldmark") +; (version "1.3.5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/yuin/goldmark") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "08rrhfji92hixiv3v0wvamwcy56f90wsw84w7lyvad7g90kbsknx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/yuin/goldmark")) +; (home-page "https://github.com/yuin/goldmark") +; (synopsis "goldmark") +; (description +; "Package goldmark implements functions to convert markdown text to a desired format. +;") +; (license license:expat))) +; +;(define-public go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190404232315-eb5bcb51f2a3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "17k4g8krxbl84gzcs275b7gsh66dzm15fdxivjnx9xz8q84l4kby")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190412213103-97732733099d +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190412213103-97732733099d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "118hkp01i4z1f5h6hcjm0ff2ngqhrzj1f7731n0kw8dr6hvbx0sw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20191011191535-87dc89f01550") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0z4i1m2yn3f31ci7wvcm2rxkx2yiv7a78mfzklncmsz2k97rlh2g")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" +; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) +; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" +; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190620200207-3b0461eec859") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0l00c8l0a8xnv6qdpwfzxxsr58jggacgzdrwiprrfx2xqm37b6d5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7 +; (package +; (name "go-golang-org-x-xerrors") +; (version "0.0.0-20190717185122-a985d3407aa7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/xerrors") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "00wzr5w8aadipgc3rkk8f11i41znskfj9ix5nhhaxyg7isrslgcj")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/xerrors")) +; (home-page "https://golang.org/x/xerrors") +; (synopsis #f) +; (description +; "Package xerrors implements functions to manipulate errors. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20191119224855-298f0cb1881e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0l4pqwib2wnfnix6nvxl0yrq87ipi7ff1rz6z5bxfzy9dki1nzmv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7" +; ,go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7) +; ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" +; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) +; ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" +; ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898 +; (package +; (name "go-golang-org-x-xerrors") +; (version "0.0.0-20191011141410-1b5146add898") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/xerrors") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0w2akj91krxjag0xdhsg78470888nicc5ismc2ap9jqpss6v1zih")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/xerrors")) +; (home-page "https://golang.org/x/xerrors") +; (synopsis #f) +; (description +; "Package xerrors implements functions to manipulate errors. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-mod-0.4.2 +; (package +; (name "go-golang-org-x-mod") +; (version "0.4.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/mod") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0z1p17i291z2k6va08i80ljyzyij2b6qsz78lnz0wi8zsnkfdz43")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/mod")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" +; ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) +; ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" +; ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) +; ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" +; ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) +; (home-page "https://golang.org/x/mod") +; (synopsis "mod") +; (description +; "This repository holds packages for writing tools +;that work directly with Go module mechanics. +;That is, it is for direct manipulation of Go modules themselves.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20210330210617-4fbd30eecc44 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20210330210617-4fbd30eecc44") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "02mmymbm7wb3vdp3z9hm8p0f45708fybyd38qm8qxzwm19zqnp56")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20201119102817-f84b799fce68") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1dvhqian5byzkcg1bnqzygqa6ccc6krc2q7j12pp1vhl3y7znnsg")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1 +; (package +; (name "go-golang-org-x-term") +; (version "0.0.0-20201126162022-7de9c90e9dd1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/term") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ba252xmv6qsvf1w1gcy98mngrj0vd4inbjw0lsklqvva65nljna")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/term")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" +; ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) +; (home-page "https://golang.org/x/term") +; (synopsis "Go terminal/console support") +; (description +; "Package term provides support functions for dealing with terminals, as +;commonly found on UNIX systems. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20180917221912-90fa682c2a6e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-text-0.3.3 +; (package +; (name "go-golang-org-x-text") +; (version "0.3.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/text") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19pihqm3phyndmiw6i42pdv6z1rbvlqlsnhsyqf9gsnn0qnmqqlh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/text")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" +; ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) +; (home-page "https://golang.org/x/text") +; (synopsis "Go Text") +; (description +; "text is a repository of text-related packages related to internationalization +;(i18n) and localization (l10n), such as character encodings, text +;transformations, and locale-specific text handling. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20210405180319-a5a99cb37ef4 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20210405180319-a5a99cb37ef4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0z90hpmxdw9i8vfhd6vf7hd63c86f1128qfb5f3y4kinvlpjy3rl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) +; ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" +; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) +; ("go-golang-org-x-sys-0.0.0-20210330210617-4fbd30eecc44" +; ,go-golang-org-x-sys-0.0.0-20210330210617-4fbd30eecc44))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c +; (package +; (name "go-golang-org-x-sync") +; (version "0.0.0-20210220032951-036812b2e83c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sync") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1gl202py3s4gl6arkaxlf8qa6f0jyyg2f95m6f89qnfmr416h85b")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sync")) +; (home-page "https://golang.org/x/sync") +; (synopsis "Go Sync") +; (description +; "This repository provides Go concurrency primitives in addition to the +;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20210510120138-977fb7262007 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20210510120138-977fb7262007") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0d2vnblgzxgvis2kly99gv10kadyl3v0cpv1lskjqg2v5d11r6hd")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1 +; (package +; (name "go-golang-org-x-xerrors") +; (version "0.0.0-20200804184101-5ec99f83aff1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/xerrors") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1dbzc3gmf2haazpv7cgmv97rq40g2xzwbglc17vas8dwhgwgwrzb")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/xerrors")) +; (home-page "https://golang.org/x/xerrors") +; (synopsis #f) +; (description +; "Package xerrors implements functions to manipulate errors. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.1.2 +; (package +; (name "go-golang-org-x-tools") +; (version "0.1.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "047qwlvxs8whsal3yjjhywr9w0xrp5ky7q969mfxb1x9r20k76ci")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" +; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) +; ("go-golang-org-x-sys-0.0.0-20210510120138-977fb7262007" +; ,go-golang-org-x-sys-0.0.0-20210510120138-977fb7262007) +; ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" +; ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) +; ("go-golang-org-x-net-0.0.0-20210405180319-a5a99cb37ef4" +; ,go-golang-org-x-net-0.0.0-20210405180319-a5a99cb37ef4) +; ("go-golang-org-x-mod-0.4.2" ,go-golang-org-x-mod-0.4.2) +; ("go-github-com-yuin-goldmark-1.3.5" +; ,go-github-com-yuin-goldmark-1.3.5))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-1.26.0 +; (package +; (name "go-google-golang-org-protobuf") +; (version "1.26.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0xq6phaps6d0vcv13ga59gzj4306l0ki9kikhmb52h6pq0iwfqlz")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.5.5" +; ,go-github-com-google-go-cmp-0.5.5) +; ("go-github-com-golang-protobuf-1.5.0" +; ,go-github-com-golang-protobuf-1.5.0))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20210602131652-f16073e35f0c +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20210602131652-f16073e35f0c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "06n5npgcjk8is2ajf0786nma5wjwpbwca273gv3yqq7dr3bkzv48")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.26.0" +; ,go-google-golang-org-protobuf-1.26.0) +; ("go-google-golang-org-grpc-1.38.0" ,go-google-golang-org-grpc-1.38.0) +; ("go-golang-org-x-tools-0.1.2" ,go-golang-org-x-tools-0.1.2) +; ("go-golang-org-x-text-0.3.5" ,go-golang-org-x-text-0.3.5) +; ("go-golang-org-x-lint-0.0.0-20210508222113-6edffad5e616" +; ,go-golang-org-x-lint-0.0.0-20210508222113-6edffad5e616) +; ("go-github-com-golang-protobuf-1.5.2" +; ,go-github-com-golang-protobuf-1.5.2))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-github-com-envoyproxy-go-control-plane-0.9.0 +; (package +; (name "go-github-com-envoyproxy-go-control-plane") +; (version "0.9.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/envoyproxy/go-control-plane") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1dpvi4wnycyj6hnai78fr8aj58b27b1vcwdp3v0id5v22kvgr3xw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.23.0" ,go-google-golang-org-grpc-1.23.0) +; ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" +; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) +; ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" +; ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2) +; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" +; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) +; ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" +; ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) +; (home-page "https://github.com/envoyproxy/go-control-plane") +; (synopsis "control-plane") +; (description +; "This repository contains a Go-based implementation of an API server that +;implements the discovery service APIs defined in +;@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-grpc-1.25.1 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.25.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0a136ij9p11yj1vx892yqy40jkh7n5nfbpdvhgydcj823mx51c6f")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" +; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-github-com-google-go-cmp-0.2.0" +; ,go-github-com-google-go-cmp-0.2.0) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2) +; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" +; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) +; ("go-github-com-envoyproxy-go-control-plane-0.9.0" +; ,go-github-com-envoyproxy-go-control-plane-0.9.0))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403 +; (package +; (name "go-github-com-cncf-udpa-go") +; (version "0.0.0-20201120205902-5459f2c99403") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/cncf/udpa") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0i3al193dsp91j7iywqrm6fr56y2sz51ci4vf19mb3j4n2x44gsi")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path +; "github.com/cncf/udpa/go" +; #:unpack-path +; "github.com/cncf/udpa")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2) +; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" +; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0))) +; (home-page "https://github.com/cncf/udpa") +; (synopsis "Description") +; (description +; "This library has been deprecated in favor of @code{github.com/cncf/xds/go}. All users are recommended to switch their imports.") +; (license license:asl2.0))) +; +;(define-public go-github-com-davecgh-go-spew-1.1.0 +; (package +; (name "go-github-com-davecgh-go-spew") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/davecgh/go-spew") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/davecgh/go-spew")) +; (home-page "https://github.com/davecgh/go-spew") +; (synopsis "go-spew") +; (description +; "Go-spew implements a deep pretty printer for Go data structures to aid in +;debugging. A comprehensive suite of tests with 100% test coverage is provided +;to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage +;report. Go-spew is licensed under the liberal ISC license, so it may be used in +;open source or commercial projects.") +; (license license:isc))) +; +;(define-public go-github-com-pmezard-go-difflib-1.0.0 +; (package +; (name "go-github-com-pmezard-go-difflib") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/pmezard/go-difflib") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/pmezard/go-difflib")) +; (home-page "https://github.com/pmezard/go-difflib") +; (synopsis "go-difflib") +; (description +; "Go-difflib is a partial port of python 3 difflib package. Its main goal +;was to make unified and context diff available in pure Go, mostly for +;testing purposes.") +; (license license:bsd-3))) +; +;(define-public go-github-com-stretchr-objx-0.1.0 +; (package +; (name "go-github-com-stretchr-objx") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/objx") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/objx")) +; (home-page "https://github.com/stretchr/objx") +; (synopsis "Objx") +; (description +; "Objx - Go package for dealing with maps, slices, JSON and other data. +;") +; (license license:expat))) +; +;(define-public go-gopkg-in-yaml-v2-2.2.2 +; (package +; (name "go-gopkg-in-yaml-v2") +; (version "2.2.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/yaml.v2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "01wj12jzsdqlnidpyjssmj0r4yavlqy7dwrg7adqd8dicjc4ncsa")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" +; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) +; (home-page "https://gopkg.in/yaml.v2") +; (synopsis "YAML support for the Go language") +; (description "Package yaml implements YAML support for the Go language. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-stretchr-testify-1.5.1 +; (package +; (name "go-github-com-stretchr-testify") +; (version "1.5.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/testify") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "09r89m1wy4cjv2nps1ykp00qjpi0531r07q3s34hr7m6njk4srkl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/testify")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) +; ("go-github-com-stretchr-objx-0.1.0" +; ,go-github-com-stretchr-objx-0.1.0) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.0" +; ,go-github-com-davecgh-go-spew-1.1.0))) +; (home-page "https://github.com/stretchr/testify") +; (synopsis "Testify - Thou Shalt Write Tests") +; (description +; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. +;") +; (license license:expat))) +; +;(define-public go-github-com-envoyproxy-go-control-plane-0.9.9-0.20210217033140-668b12f5399d +; (package +; (name "go-github-com-envoyproxy-go-control-plane") +; (version "0.9.9-0.20210217033140-668b12f5399d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/envoyproxy/go-control-plane") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0vmhc8ii081x1k2qw4kji7wjyg6l25zp1y6qxi27wq8m341i4rzb")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.23.0" +; ,go-google-golang-org-protobuf-1.23.0) +; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) +; ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" +; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) +; ("go-github-com-stretchr-testify-1.5.1" +; ,go-github-com-stretchr-testify-1.5.1) +; ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" +; ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.4.2" +; ,go-github-com-golang-protobuf-1.4.2) +; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" +; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) +; ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" +; ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403) +; ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" +; ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) +; (home-page "https://github.com/envoyproxy/go-control-plane") +; (synopsis "control-plane") +; (description +; "This repository contains a Go-based implementation of an API server that +;implements the discovery service APIs defined in +;@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-protobuf-1.23.0 +; (package +; (name "go-google-golang-org-protobuf") +; (version "1.23.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "03yan0m1v0zmlr935p4n24fd376mznsg85zy8sywbgisls4s1bzy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.4.0" +; ,go-github-com-golang-protobuf-1.4.0))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.4.2 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.4.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0m5z81im4nsyfgarjhppayk4hqnrwswr3nix9mj8pff8x9jvcjqw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.23.0" +; ,go-google-golang-org-protobuf-1.23.0) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0))) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-github-com-google-uuid-1.1.2 +; (package +; (name "go-github-com-google-uuid") +; (version "1.1.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/uuid") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1rbpfa0v0ly9sdnixcxhf79swki54ikgm1zkwwkj64p1ws66syqd")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/uuid")) +; (home-page "https://github.com/google/uuid") +; (synopsis "uuid") +; (description "Package uuid generates and inspects UUIDs. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-google-go-cmp-0.5.0 +; (package +; (name "go-github-com-google-go-cmp") +; (version "0.5.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/go-cmp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "04pzp583p6b32y34c6jygfxarff9qjs39rarvfh6467z24sdd9k4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/go-cmp")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" +; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) +; (home-page "https://github.com/google/go-cmp") +; (synopsis "Package for equality of Go values") +; (description +; "This package is intended to be a more powerful and safer alternative to +;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-1.22.0 +; (package +; (name "go-google-golang-org-protobuf") +; (version "1.22.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0n7lc4m7kfvj01glc0gnjy0zsnsic7cxnbvlajy0h14cxbab87pj")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.4.0" +; ,go-github-com-golang-protobuf-1.4.0))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.4.1 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.4.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0w7ks4vffnnkp0miwgc3chrsnmya45lzvpahb2wmw0jwhdp5kdx7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.22.0" +; ,go-google-golang-org-protobuf-1.22.0) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0))) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-github-com-census-instrumentation-opencensus-proto-0.2.1 +; (package +; (name "go-github-com-census-instrumentation-opencensus-proto") +; (version "0.2.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/census-instrumentation/opencensus-proto") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19fcx3sc99i5dsklny6r073z5j20vlwn2xqm6di1q3b1xwchzqfj")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "github.com/census-instrumentation/opencensus-proto")) +; (home-page "https://github.com/census-instrumentation/opencensus-proto") +; (synopsis +; "OpenCensus Proto - Language Independent Interface Types For OpenCensus") +; (description +; "Census provides a framework to define and collect stats against metrics and to +;break those stats down across user-defined dimensions.") +; (license license:asl2.0))) +; +;(define-public go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4 +; (package +; (name "go-github-com-prometheus-client-model") +; (version "0.0.0-20190812154241-14fe0d1b01d4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/client_model") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0zdmk6rbbx39cvfz0r59v2jg5sg9yd02b4pds5n5llgvivi99550")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/client_model")) +; (propagated-inputs +; `(("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" +; ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0))) +; (home-page "https://github.com/prometheus/client_model") +; (synopsis "Deprecation note") +; (description +; "This repository used to contain the code that defined both +;the data model and the exposition format of Prometheus metrics.") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20190311212946-11955173bddd") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0hlkai67w167wiyivkzd1fgqrnyxkb94l2c6kr51jwcscizfyfn3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3 +; (package +; (name "go-golang-org-x-lint") +; (version "0.0.0-20190313153728-d0100b6bd8b3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/lint") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0b0amr9x4ji66iv9ayfx7zrfx52k1m5g66qfcxkgj80qrb1y2yn7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/lint")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" +; ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd))) +; (home-page "https://golang.org/x/lint") +; (synopsis "Installation") +; (description "Package lint contains a linter for Go source code. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sync-0.0.0-20190423024810-112230192c58 +; (package +; (name "go-golang-org-x-sync") +; (version "0.0.0-20190423024810-112230192c58") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sync") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "05i2k43j2d0llq768hg5pf3hb2yhfzp9la1w5wp0rsnnzblr0lfn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sync")) +; (home-page "https://golang.org/x/sync") +; (synopsis "Go Sync") +; (description +; "This repository provides Go concurrency primitives in addition to the +;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135 +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20190524140312-2c0ae7006135") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1lsi2ssxajclj3bciz2a41v1vjv768ja3v6wnbyhxy8xphwkp4fk")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" +; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-grpc-1.23.0 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.23.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1cn33r2gclmq2v1ndpf1n5bmhf2qs8mms7ii5cnl6f9ch4r2c4k3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" +; ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) +; ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" +; ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) +; ("go-google-golang-org-appengine-1.1.0" +; ,go-google-golang-org-appengine-1.1.0) +; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" +; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-github-com-google-go-cmp-0.2.0" +; ,go-github-com-google-go-cmp-0.2.0) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0) +; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-client9-misspell-0.3.4" +; ,go-github-com-client9-misspell-0.3.4) +; ("go-github-com-burntsushi-toml-0.3.1" +; ,go-github-com-burntsushi-toml-0.3.1) +; ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473 +; (package +; (name "go-github-com-envoyproxy-go-control-plane") +; (version "0.9.1-0.20191026205805-5f8ba28d4473") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/envoyproxy/go-control-plane") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1f1s764rd41vd9vgk3r14h1m6fz6pdvxj6fd83q58gxifbc4q5w4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.23.0" ,go-google-golang-org-grpc-1.23.0) +; ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" +; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) +; ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" +; ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2) +; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" +; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) +; ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" +; ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) +; (home-page "https://github.com/envoyproxy/go-control-plane") +; (synopsis "control-plane") +; (description +; "This repository contains a Go-based implementation of an API server that +;implements the discovery service APIs defined in +;@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") +; (license license:asl2.0))) +; +;(define-public go-github-com-envoyproxy-protoc-gen-validate-0.1.0 +; (package +; (name "go-github-com-envoyproxy-protoc-gen-validate") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/envoyproxy/protoc-gen-validate") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0kxd3wwh3xwqk0r684hsy281xq4y71cd11d4q2hspcjbnlbwh7cy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/envoyproxy/protoc-gen-validate")) +; (home-page "https://github.com/envoyproxy/protoc-gen-validate") +; (synopsis "protoc-gen-validate (PGV)") +; (description +; "PGV is a protoc plugin to generate polyglot message validators. While protocol buffers effectively guarantee the types of structured data, they cannot enforce semantic rules for values. This plugin adds support to protoc-generated code to validate such constraints.") +; (license license:asl2.0))) +; +;(define-public go-github-com-google-go-cmp-0.2.0 +; (package +; (name "go-github-com-google-go-cmp") +; (version "0.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/go-cmp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1fbv0x27k9sn8svafc0hjwsnckk864lv4yi7bvzrxvmd3d5hskds")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/go-cmp")) +; (home-page "https://github.com/google/go-cmp") +; (synopsis "Package for equality of Go values") +; (description +; "This package is intended to be a more powerful and safer alternative to +;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20190308221718-c2843e01d9a2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20190311183353-d8887717615a +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190311183353-d8887717615a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1wfm6ngxjyj7v5a2dqib6lw8bb2rdnf1kl48diykxjrsddn0s163")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190215142949-d0b11bdaac8a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.3.2 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.3.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1k1wb4zr0qbwgpvz9q5ws9zhlal8hq7dmq62pwxxriksayl6hzym")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4 +; (package +; (name "go-golang-org-x-exp") +; (version "0.0.0-20190121172915-509febef88a4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/exp") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "02isrh39z8znrp5znplzy0dip2gnrl3jm1355raliyvhnhg04j6q")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/exp")) +; (home-page "https://golang.org/x/exp") +; (synopsis "exp") +; (description +; "This subrepository holds experimental and deprecated (in the @code{old} +;directory) packages.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961 +; (package +; (name "go-golang-org-x-lint") +; (version "0.0.0-20190227174305-5b3e6a55c961") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/lint") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "04zp5vbds9nffmjg36wjpi5vg9zmf890yf78xxasai3ni637ivfw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/lint")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" +; ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c))) +; (home-page "https://golang.org/x/lint") +; (synopsis "Installation") +; (description "Package lint contains a linter for Go source code. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190213061140-3a22650c66bd") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "12q6fgdkc0742vcms67nzadgdwvi3rnb1gx3vwkljhrvlnwvz7wc")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f +; (package +; (name "go-golang-org-x-sync") +; (version "0.0.0-20181108010431-42b317875d0f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sync") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0mrjhk7al7yyh76x9flvxy4jm5jyqh2fxbxagpaazxn1xdgkaif3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sync")) +; (home-page "https://golang.org/x/sync") +; (synopsis "Go Sync") +; (description +; "This repository provides Go concurrency primitives in addition to the +;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20180724234803-3673e40ba225") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0vx7mz18p480p7fh0w5jv6mfdbsswrlac1sz4i705q7q7ygz59lm")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-appengine-1.4.0 +; (package +; (name "go-google-golang-org-appengine") +; (version "1.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/appengine") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "06zl7w4sxgdq2pl94wy9ncii6h0z3szl4xpqds0sv3b3wbdlhbnn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/appengine")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225" +; ,go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0))) +; (home-page "https://google.golang.org/appengine") +; (synopsis "Go App Engine packages") +; (description +; "Package appengine provides basic functionality for Google App Engine. +;") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20190226205152-f727befe758c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0rpcqw6z13qd33rbasg32zb0gdhgh5lzjla63r6g651zf6hpsak0")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-google-golang-org-appengine-1.4.0" +; ,go-google-golang-org-appengine-1.4.0) +; ("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" +; ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) +; ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" +; ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-cloud-google-com-go-0.26.0 +; (package +; (name "go-cloud-google-com-go") +; (version "0.26.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-cloud-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "149v3ci17g6wd2pm18mzcncq5qpl9hwdjnz3rlbn5rfidyn46la1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "cloud.google.com/go")) +; (home-page "https://cloud.google.com/go") +; (synopsis "Google Cloud Client Libraries for Go") +; (description +; "Package cloud is the root of the packages used to access Google Cloud +;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list +;of sub-packages. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-burntsushi-toml-0.3.1 +; (package +; (name "go-github-com-burntsushi-toml") +; (version "0.3.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/BurntSushi/toml") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1fjdwwfzyzllgiwydknf1pwjvy49qxfsczqx5gz3y0izs7as99j6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/BurntSushi/toml")) +; (home-page "https://github.com/BurntSushi/toml") +; (synopsis "TOML parser and encoder for Go with reflection") +; (description +; "Package toml implements decoding and encoding of TOML files. +;") +; (license license:expat))) +; +;(define-public go-github-com-client9-misspell-0.3.4 +; (package +; (name "go-github-com-client9-misspell") +; (version "0.3.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/client9/misspell") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1vwf33wsc4la25zk9nylpbp9px3svlmldkm0bha4hp56jws4q9cs")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/client9/misspell")) +; (home-page "https://github.com/client9/misspell") +; (synopsis "Install") +; (description +; "Package misspell corrects commonly misspelled English words in source files. +;") +; (license license:expat))) +; +;(define-public go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b +; (package +; (name "go-github-com-golang-glog") +; (version "0.0.0-20160126235308-23def4e6c14b") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/glog") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0jb2834rw5sykfr937fxi8hxi2zy80sj2bdn9b3jb4b26ksqng30")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/glog")) +; (home-page "https://github.com/golang/glog") +; (synopsis "glog") +; (description +; "Package glog implements logging analogous to the Google-internal C++ INFO/ERROR/V setup. +;It provides functions Info, Warning, Error, Fatal, plus formatting variants such as +;Infof. It also provides V-style logging controlled by the -v and -vmodule=file=2 flags. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-golang-mock-1.1.1 +; (package +; (name "go-github-com-golang-mock") +; (version "1.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/mock") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ap8wb6pdl6ccmdb43advjll2ly4sz26wsc3axw0hbrjrybybzgy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/mock")) +; (home-page "https://github.com/golang/mock") +; (synopsis "gomock") +; (description +; "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It +;integrates well with Go's built-in @code{testing} package, but can be used in other +;contexts too.") +; (license license:asl2.0))) +; +;(define-public go-github-com-golang-protobuf-1.2.0 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0kf4b59rcbb1cchfny2dm9jyznp8ri2hsb14n8iak1q8986xa0ab")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3 +; (package +; (name "go-golang-org-x-lint") +; (version "0.0.0-20181026193005-c67002cb31c3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/lint") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0gymbggskjmphqxqcx4s0vnlcz7mygbix0vhwcwv5r67c0bf6765")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/lint")) +; (home-page "https://golang.org/x/lint") +; (synopsis "Installation") +; (description "Package lint contains a linter for Go source code. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20180826012351-8a410e7b638d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0hp0l8f6fir5gmgrjq0mhh5ikc0rlrm72774228800kfwqjrxxny")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be +; (package +; (name "go-golang-org-x-oauth2") +; (version "0.0.0-20180821212333-d2e6202438be") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/oauth2") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0wbn75fd10485nb93bm4kqldqifdim5xqy4v7r5sdvimvf3fyhn7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/oauth2")) +; (home-page "https://golang.org/x/oauth2") +; (synopsis "OAuth2 for Go") +; (description +; "Package oauth2 provides support for making +;OAuth2 authorized and authenticated HTTP requests, +;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. +;It can additionally grant authorization with Bearer JWT. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f +; (package +; (name "go-golang-org-x-sync") +; (version "0.0.0-20180314180146-1d60e4601c6f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sync") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "046jlanz2lkxq1r57x9bl6s4cvfqaic6p2xybsj8mq1120jv4rs6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sync")) +; (home-page "https://golang.org/x/sync") +; (synopsis "Go Sync") +; (description +; "This repository provides Go concurrency primitives in addition to the +;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20180830151530-49385e6e1522") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0spbldahns09fdxkxflb1x24f8k2awdlnr6k5i7ci4fqd19r1dv4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-text-0.3.0 +; (package +; (name "go-golang-org-x-text") +; (version "0.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/text") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/text")) +; (home-page "https://golang.org/x/text") +; (synopsis "Go Text") +; (description +; "text is a repository of text-related packages related to internationalization +;(i18n) and localization (l10n), such as character encodings, text +;transformations, and locale-specific text handling. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20190114222345-bf090417da8b") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1n3xp56k4k3lj06rx7587wr5gnwg0148nvwx6ch0g7ar02hh94hw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-appengine-1.1.0 +; (package +; (name "go-google-golang-org-appengine") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/appengine") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1pz202zszg8f35dk5pfhwgcdi3r6dx1l4yk6x6ly7nb4j45zi96x")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/appengine")) +; (home-page "https://google.golang.org/appengine") +; (synopsis "Go App Engine packages") +; (description +; "Package appengine provides basic functionality for Google App Engine. +;") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8 +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20180817151627-c66870c02cf8") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0siq7sv68556ygqi2d2zmvx8l1xjqdc0fylqzci5h1mq2i14bayn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-grpc-1.19.0 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.19.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1znqwpj7ix3dpzx4zch0q70sdl3z5lvbb7v3q4i8sf8kas3yv71v")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" +; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) +; ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" +; ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) +; ("go-google-golang-org-appengine-1.1.0" +; ,go-google-golang-org-appengine-1.1.0) +; ("go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b" +; ,go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b) +; ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522" +; ,go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522) +; ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" +; ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d" +; ,go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d) +; ("go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3" +; ,go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0) +; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-client9-misspell-0.3.4" +; ,go-github-com-client9-misspell-0.3.4) +; ("go-github-com-burntsushi-toml-0.3.1" +; ,go-github-com-burntsushi-toml-0.3.1) +; ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099 +; (package +; (name "go-honnef-co-go-tools") +; (version "0.0.0-20190102054323-c2f93a96b099") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/dominikh/go-tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "07lg29aiap80ca9f201jzng9vjr168cv3qmvjmbd7v5pmww9kmr8")))) +; (build-system go-build-system) +; (arguments '(#:import-path "honnef.co/go/tools")) +; (home-page "https://honnef.co/go/tools") +; (synopsis "Documentation") +; (description +; "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, +;offers simplifications, and enforces style rules.") +; (license license:expat))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55 +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20190819201941-24fa4b261c55") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "109zhaqlfd8zkbr1hk6zqbs6vcxfrk64scjwh2nswph05gr0m84d")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" +; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) +; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) +; ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" +; ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) +; ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" +; ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) +; ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" +; ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-grpc-1.27.0 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.27.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ijrmgrxyabfn51nm3p9l81iaasq5fg237wnr6mdc4dzsfcg8kd7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" +; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-github-com-google-go-cmp-0.2.0" +; ,go-github-com-google-go-cmp-0.2.0) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2) +; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" +; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) +; ("go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473" +; ,go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-github-com-google-go-cmp-0.3.0 +; (package +; (name "go-github-com-google-go-cmp") +; (version "0.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/go-cmp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1hyxx3434zshl2m9ja78gwlkg1rx9yl6diqa7dnjb31xz5x4gbjj")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/go-cmp")) +; (home-page "https://github.com/google/go-cmp") +; (synopsis "Package for equality of Go values") +; (description +; "This package is intended to be a more powerful and safer alternative to +;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd +; (package +; (name "go-google-golang-org-protobuf") +; (version "0.0.0-20200109180630-ec00e32a8dfd") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0w6lp9w2avxcpxwzzhspr209ifhyjagvs23k0vykfdqahl1aplrh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.3.0" +; ,go-github-com-google-go-cmp-0.3.0))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.4.0-rc.1 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.4.0-rc.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "186rirvbfgv6hrxp27ipx2cdpv19qifdd20biqfdm01wiyclqimn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd" +; ,go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd) +; ("go-github-com-google-go-cmp-0.3.1" +; ,go-github-com-google-go-cmp-0.3.1))) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-github-com-google-go-cmp-0.3.1 +; (package +; (name "go-github-com-google-go-cmp") +; (version "0.3.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/go-cmp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1caw49i0plkjxir7kdf5qhwls3krqwfmi7g4h392rdfwi3kfahx1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/go-cmp")) +; (home-page "https://github.com/google/go-cmp") +; (synopsis "Package for equality of Go values") +; (description +; "This package is intended to be a more powerful and safer alternative to +;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64 +; (package +; (name "go-google-golang-org-protobuf") +; (version "0.0.0-20200221191635-4d8936d0db64") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0563bsvdjj6k0sgwqd5yzrgfiax7sp3lcwh608gync5sv9fx39cy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.3.1" +; ,go-github-com-google-go-cmp-0.3.1) +; ("go-github-com-golang-protobuf-1.4.0-rc.1" +; ,go-github-com-golang-protobuf-1.4.0-rc.1))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.4.0-rc.1.0.20200221234624-67d41d38c208") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ykxhg3zixmw25pd435f8h16wnz1g00jpcmmg3xl030kksgqgpp6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64" +; ,go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0))) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60 +; (package +; (name "go-google-golang-org-protobuf") +; (version "0.0.0-20200228230310-ab0ca4ff8a60") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1rinspcznfp85yz4vrlf4h38hr576virgv8lcs22bsylqga808sd")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208" +; ,go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.4.0-rc.2 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.4.0-rc.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1hd43hjv5zl6bjbmhm5phx74bw4xajsi73m5zky2k56za4mpgzzc")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60" +; ,go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0))) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967 +; (package +; (name "go-google-golang-org-protobuf") +; (version "1.20.1-0.20200309200217-e05f789c0967") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "17wmy89hnmpkwc63rfcjp50q15s9f1rhmczg06c3z9yy41zk82w9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.4.0-rc.2" +; ,go-github-com-golang-protobuf-1.4.0-rc.2))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.4.0-rc.4.0.20200313231945-b860323f09d0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1zj6cwshx0l5n9cn2cpbikzzb79px5dmkpc4p19zy1iif5r5p0z0")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967" +; ,go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0))) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-1.21.0 +; (package +; (name "go-google-golang-org-protobuf") +; (version "1.21.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "12bwln8z1lf9105gdp6ip0rx741i4yfz1520gxnp8861lh9wcl63")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0" +; ,go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.4.0 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1fjvl5n77abxz5qsd4mgyvjq19x43c5bfvmq62mq3m5plx6zksc8")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.21.0" +; ,go-google-golang-org-protobuf-1.21.0) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0))) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-github-com-google-go-cmp-0.4.0 +; (package +; (name "go-github-com-google-go-cmp") +; (version "0.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/go-cmp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1x5pvl3fb5sbyng7i34431xycnhmx8xx94gq2n19g6p0vz68z2v2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/go-cmp")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" +; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) +; (home-page "https://github.com/google/go-cmp") +; (synopsis "Package for equality of Go values") +; (description +; "This package is intended to be a more powerful and safer alternative to +;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc +; (package +; (name "go-google-golang-org-protobuf") +; (version "1.23.1-0.20200526195155-81db48ad09cc") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "02cpr8rqr5wmpj2fqb32mzilsdnxkh52g1jz95a3ck3gzffc7hh1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.4.0" +; ,go-github-com-golang-protobuf-1.4.0))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc +; (package +; (name "go-honnef-co-go-tools") +; (version "0.0.0-20190523083050-ea95bdfd59fc") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/dominikh/go-tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1763nw7pwpzkvzfnm63dgzcgbq9hwmq5l1nffchnhh77vgkaq4ic")))) +; (build-system go-build-system) +; (arguments '(#:import-path "honnef.co/go/tools")) +; (home-page "https://honnef.co/go/tools") +; (synopsis "Documentation") +; (description +; "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, +;offers simplifications, and enforces style rules.") +; (license license:expat))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013 +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20200526211855-cb27e3aa2013") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ml73ghqcwbz7ipfk8fnxb5indcml49b5p7vp1fsyny0abyyrmxf")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" +; ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) +; ("go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc" +; ,go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc) +; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) +; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" +; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-github-com-golang-protobuf-1.4.1" +; ,go-github-com-golang-protobuf-1.4.1))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC +;APIs.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-protobuf-1.25.0 +; (package +; (name "go-google-golang-org-protobuf") +; (version "1.25.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0apfl42x166dh96zfq5kvv4b4ax9xljik6bq1mnvn2240ir3mc23")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" +; ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) +; ("go-github-com-google-go-cmp-0.5.0" +; ,go-github-com-google-go-cmp-0.5.0) +; ("go-github-com-golang-protobuf-1.4.1" +; ,go-github-com-golang-protobuf-1.4.1))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-grpc-1.38.0 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.38.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "08lgqdvbd0i4qwsv1y37qmf8mhsy9ywzx73ixiwih7xhnalrf7xl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.25.0" +; ,go-google-golang-org-protobuf-1.25.0) +; ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" +; ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) +; ("go-github-com-google-go-cmp-0.5.0" +; ,go-github-com-google-go-cmp-0.5.0) +; ("go-github-com-golang-protobuf-1.4.2" +; ,go-github-com-golang-protobuf-1.4.2) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-envoyproxy-go-control-plane-0.9.9-0.20210217033140-668b12f5399d" +; ,go-github-com-envoyproxy-go-control-plane-0.9.9-0.20210217033140-668b12f5399d) +; ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" +; ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC. +;") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-protobuf-1.26.0-rc.1 +; (package +; (name "go-google-golang-org-protobuf") +; (version "1.26.0-rc.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1m2jp247qcnix42jncn0q7pwrjgbhiqllb1115hfsz40xfnfhp8j")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.5.5" +; ,go-github-com-google-go-cmp-0.5.5))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.5.0 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.5.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1craaxv34g4g8q3yrv6pr28fx9ihnk7hj5gnbmxcrhcp78423lnf")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.26.0-rc.1" +; ,go-google-golang-org-protobuf-1.26.0-rc.1) +; ("go-github-com-google-go-cmp-0.5.5" +; ,go-github-com-google-go-cmp-0.5.5))) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module +;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) +;contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543 +; (package +; (name "go-golang-org-x-xerrors") +; (version "0.0.0-20191204190536-9bdfabe68543") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/xerrors") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1yjfi1bk9xb81lqn85nnm13zz725wazvrx3b50hx19qmwg7a4b0c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/xerrors")) +; (home-page "https://golang.org/x/xerrors") +; (synopsis #f) +; (description +; "Package xerrors implements functions to manipulate errors. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-google-go-cmp-0.5.5 +; (package +; (name "go-github-com-google-go-cmp") +; (version "0.5.5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/go-cmp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "12fmkdhyv5d4is8s57k78j097zb0phlgnrkqc03agiszxlid69x7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/go-cmp")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" +; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) +; (home-page "https://github.com/google/go-cmp") +; (synopsis "Package for equality of Go values") +; (description +; "This package is intended to be a more powerful and safer alternative to +;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-1.27.1 +; (package +; (name "go-google-golang-org-protobuf") +; (version "1.27.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0aszb7cv8fq1m8akgd4kjyg5q7g5z9fdqnry6057ygq9r8r2yif2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.5.5" +; ,go-github-com-google-go-cmp-0.5.5) +; ("go-github-com-golang-protobuf-1.5.0" +; ,go-github-com-golang-protobuf-1.5.0))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a +;language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} +;for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-gopkg-in-yaml-v2-2.4.0 +; (package +; (name "go-gopkg-in-yaml-v2") +; (version "2.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/yaml.v2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1pbmrpj7gcws34g8vwna4i2nhm9p6235piww36436xhyaa10cldr")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" +; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) +; (home-page "https://gopkg.in/yaml.v2") +; (synopsis "YAML support for the Go language") +; (description "Package yaml implements YAML support for the Go language. +;") +; (license license:asl2.0))) +; +;(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 +; (package +; (name "go-gopkg-in-check-v1") +; (version "0.0.0-20161208181325-20d25e280405") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/check.v1") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) +; (home-page "https://gopkg.in/check.v1") +; (synopsis "Instructions") +; (description +; "Package check is a rich testing extension for Go's testing package. +;") +; (license license:bsd-2))) +; +;(define-public go-gopkg-in-yaml-v3-3.0.0-20210107192922-496545a6307b +; (package +; (name "go-gopkg-in-yaml-v3") +; (version "3.0.0-20210107192922-496545a6307b") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/yaml.v3") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "06f4lnrp494wqaygv09dggr2dwf3z2bawqhnlnnwiamg5y787k4g")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" +; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) +; (home-page "https://gopkg.in/yaml.v3") +; (synopsis "YAML support for the Go language") +; (description "Package yaml implements YAML support for the Go language. +;") +; (license #f))) +; +;(define-public go-oras-land-oras-go-1.0.0 +; (package +; (name "go-oras-land-oras-go") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/oras-project/oras-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1pqix8xj298229c886ahdggsvbg4srm4izjr66icvfjjx7rndagz")))) +; (build-system go-build-system) +; (arguments '(#:import-path "oras.land/oras-go")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v3-3.0.0-20210107192922-496545a6307b" +; ,go-gopkg-in-yaml-v3-3.0.0-20210107192922-496545a6307b) +; ("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) +; ("go-google-golang-org-protobuf-1.27.1" +; ,go-google-golang-org-protobuf-1.27.1) +; ("go-google-golang-org-grpc-1.38.0" ,go-google-golang-org-grpc-1.38.0) +; ("go-google-golang-org-genproto-0.0.0-20210602131652-f16073e35f0c" +; ,go-google-golang-org-genproto-0.0.0-20210602131652-f16073e35f0c) +; ("go-golang-org-x-text-0.3.6" ,go-golang-org-x-text-0.3.6) +; ("go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1" +; ,go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1) +; ("go-golang-org-x-net-0.0.0-20211112202133-69e39bad7dc2" +; ,go-golang-org-x-net-0.0.0-20211112202133-69e39bad7dc2) +; ("go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20140908184405-b21fdbd4370f" +; ,go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20140908184405-b21fdbd4370f) +; ("go-github-com-yvasiyarov-gorelic-0.0.0-20141212073537-a9bba5b9ab50" +; ,go-github-com-yvasiyarov-gorelic-0.0.0-20141212073537-a9bba5b9ab50) +; ("go-github-com-yvasiyarov-go-metrics-0.0.0-20140926110328-57bccd1ccd43" +; ,go-github-com-yvasiyarov-go-metrics-0.0.0-20140926110328-57bccd1ccd43) +; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) +; ("go-github-com-prometheus-procfs-0.6.0" +; ,go-github-com-prometheus-procfs-0.6.0) +; ("go-github-com-prometheus-common-0.10.0" +; ,go-github-com-prometheus-common-0.10.0) +; ("go-github-com-prometheus-client-model-0.2.0" +; ,go-github-com-prometheus-client-model-0.2.0) +; ("go-github-com-prometheus-client-golang-1.7.1" +; ,go-github-com-prometheus-client-golang-1.7.1) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-morikuni-aec-1.0.0" ,go-github-com-morikuni-aec-1.0.0) +; ("go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd" +; ,go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd) +; ("go-github-com-moby-locker-1.0.1" ,go-github-com-moby-locker-1.0.1) +; ("go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369" +; ,go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369) +; ("go-github-com-klauspost-compress-1.11.13" +; ,go-github-com-klauspost-compress-1.11.13) +; ("go-github-com-inconshreveable-mousetrap-1.0.0" +; ,go-github-com-inconshreveable-mousetrap-1.0.0) +; ("go-github-com-gorilla-mux-1.8.0" ,go-github-com-gorilla-mux-1.8.0) +; ("go-github-com-gorilla-handlers-1.5.1" +; ,go-github-com-gorilla-handlers-1.5.1) +; ("go-github-com-gomodule-redigo-1.8.2" +; ,go-github-com-gomodule-redigo-1.8.2) +; ("go-github-com-golang-protobuf-1.5.2" +; ,go-github-com-golang-protobuf-1.5.2) +; ("go-github-com-gogo-protobuf-1.3.2" +; ,go-github-com-gogo-protobuf-1.3.2) +; ("go-github-com-felixge-httpsnoop-1.0.1" +; ,go-github-com-felixge-httpsnoop-1.0.1) +; ("go-github-com-docker-libtrust-0.0.0-20150114040149-fa567046d9b1" +; ,go-github-com-docker-libtrust-0.0.0-20150114040149-fa567046d9b1) +; ("go-github-com-docker-go-units-0.4.0" +; ,go-github-com-docker-go-units-0.4.0) +; ("go-github-com-docker-go-metrics-0.0.1" +; ,go-github-com-docker-go-metrics-0.0.1) +; ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" +; ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) +; ("go-github-com-docker-go-connections-0.4.0" +; ,go-github-com-docker-go-connections-0.4.0) +; ("go-github-com-docker-docker-credential-helpers-0.6.4" +; ,go-github-com-docker-docker-credential-helpers-0.6.4) +; ("go-github-com-docker-distribution-2.7.1+incompatible" +; ,go-github-com-docker-distribution-2.7.1+incompatible) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1) +; ("go-github-com-cespare-xxhash-v2-2.1.1" +; ,go-github-com-cespare-xxhash-v2-2.1.1) +; ("go-github-com-bugsnag-panicwrap-0.0.0-20151223152923-e2c28503fcd0" +; ,go-github-com-bugsnag-panicwrap-0.0.0-20151223152923-e2c28503fcd0) +; ("go-github-com-bugsnag-osext-0.0.0-20130617224835-0dd3f918b21b" +; ,go-github-com-bugsnag-osext-0.0.0-20130617224835-0dd3f918b21b) +; ("go-github-com-bugsnag-bugsnag-go-0.0.0-20141110184014-b1d153021fcd" +; ,go-github-com-bugsnag-bugsnag-go-0.0.0-20141110184014-b1d153021fcd) +; ("go-github-com-bshuster-repo-logrus-logstash-hook-1.0.0" +; ,go-github-com-bshuster-repo-logrus-logstash-hook-1.0.0) +; ("go-github-com-beorn7-perks-1.0.1" ,go-github-com-beorn7-perks-1.0.1) +; ("go-github-com-shopify-logrus-bugsnag-0.0.0-20171204204709-577dee27f20d" +; ,go-github-com-shopify-logrus-bugsnag-0.0.0-20171204204709-577dee27f20d) +; ("go-github-com-azure-go-ansiterm-0.0.0-20170929234023-d6e3b3328b78" +; ,go-github-com-azure-go-ansiterm-0.0.0-20170929234023-d6e3b3328b78) +; ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" +; ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) +; ("go-golang-org-x-crypto-0.0.0-20211117183948-ae814b36b871" +; ,go-golang-org-x-crypto-0.0.0-20211117183948-ae814b36b871) +; ("go-github-com-stretchr-testify-1.7.0" +; ,go-github-com-stretchr-testify-1.7.0) +; ("go-github-com-spf13-cobra-1.2.1" ,go-github-com-spf13-cobra-1.2.1) +; ("go-github-com-sirupsen-logrus-1.8.1" +; ,go-github-com-sirupsen-logrus-1.8.1) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-phayes-freeport-0.0.0-20180830031419-95f893ade6f2" +; ,go-github-com-phayes-freeport-0.0.0-20180830031419-95f893ade6f2) +; ("go-github-com-opencontainers-image-spec-1.0.2" +; ,go-github-com-opencontainers-image-spec-1.0.2) +; ("go-github-com-opencontainers-go-digest-1.0.0" +; ,go-github-com-opencontainers-go-digest-1.0.0) +; ("go-github-com-docker-docker-20.10.11+incompatible" +; ,go-github-com-docker-docker-20.10.11+incompatible) +; ("go-github-com-docker-cli-20.10.11+incompatible" +; ,go-github-com-docker-cli-20.10.11+incompatible) +; ("go-github-com-distribution-distribution-v3-3.0.0-20211118083504-a29a3c99a684" +; ,go-github-com-distribution-distribution-v3-3.0.0-20211118083504-a29a3c99a684) +; ("go-github-com-containerd-containerd-1.5.8" +; ,go-github-com-containerd-containerd-1.5.8))) +; (home-page "https://oras.land/oras-go") +; (synopsis "ORAS Go library") +; (description +; "Documentation for the ORAS Go library is located on +;the project website: @url{https://oras.land/client_libraries/go/,oras.land/client_libraries/go}") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20210226172049-e18ecbb05110") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1vlq8mdscp7yfaa1lmyv03y5m4c2d67ydg2q1i6smkrxghn3zn3q")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) +; ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" +; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) +; ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" +; ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20210615035016-665e8c7367d1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "11n848csibdbv7b46zjyf4l7sphg37n9sjzqfy1ds7p1jyakwmnv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20201119102817-f84b799fce68") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1dvhqian5byzkcg1bnqzygqa6ccc6krc2q7j12pp1vhl3y7znnsg")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1 +; (package +; (name "go-golang-org-x-term") +; (version "0.0.0-20201126162022-7de9c90e9dd1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/term") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ba252xmv6qsvf1w1gcy98mngrj0vd4inbjw0lsklqvva65nljna")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/term")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" +; ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) +; (home-page "https://golang.org/x/term") +; (synopsis "Go terminal/console support") +; (description +; "Package term provides support functions for dealing with terminals, as +;commonly found on UNIX systems. +;") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20180917221912-90fa682c2a6e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-text-0.3.3 +; (package +; (name "go-golang-org-x-text") +; (version "0.3.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/text") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19pihqm3phyndmiw6i42pdv6z1rbvlqlsnhsyqf9gsnn0qnmqqlh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/text")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" +; ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) +; (home-page "https://golang.org/x/text") +; (synopsis "Go Text") +; (description +; "text is a repository of text-related packages related to internationalization +;(i18n) and localization (l10n), such as character encodings, text +;transformations, and locale-specific text handling. +;") +; (license license:bsd-3))) +; +;(define-public go-github-com-hpcng-golang-x-crypto-0.0.0-20210830200829-e6b35e3fb874 +; (package +; (name "go-github-com-hpcng-golang-x-crypto") +; (version "0.0.0-20210830200829-e6b35e3fb874") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hpcng/golang-x-crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "17zbxn6m550dkfcx7hi6wvl7f5gm39hx72bfkdjgpzq05fdb1bfk")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hpcng/golang-x-crypto")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) +; ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" +; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) +; ("go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1" +; ,go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1) +; ("go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110" +; ,go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110))) +; (home-page "https://github.com/hpcng/golang-x-crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) From 86cac9355458d10cc4e7f81be79e2bcff872bc24 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Sat, 11 Dec 2021 13:49:21 +0100 Subject: [PATCH 161/383] adding golang deps --- glicid/packages/linux.scm | 1 + 1 file changed, 1 insertion(+) diff --git a/glicid/packages/linux.scm b/glicid/packages/linux.scm index df3ab27..9b76b04 100644 --- a/glicid/packages/linux.scm +++ b/glicid/packages/linux.scm @@ -12,6 +12,7 @@ #:use-module (gnu packages pkg-config) #:use-module (gnu packages python) #:use-module (gnu packages tls) + #:use-module (glicid packages golang) ) (define-public rdma-core-newer-37.1 From 29fdeb5f48165aaac6e26efad605c4d36d1f087a Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Sat, 11 Dec 2021 14:12:25 +0100 Subject: [PATCH 162/383] commenting golang deps --- glicid/packages/linux.scm | 102 +++++++++++++++++++------------------- 1 file changed, 51 insertions(+), 51 deletions(-) diff --git a/glicid/packages/linux.scm b/glicid/packages/linux.scm index 9b76b04..aee8dfa 100644 --- a/glicid/packages/linux.scm +++ b/glicid/packages/linux.scm @@ -12,7 +12,7 @@ #:use-module (gnu packages pkg-config) #:use-module (gnu packages python) #:use-module (gnu packages tls) - #:use-module (glicid packages golang) +; #:use-module (glicid packages golang) ) (define-public rdma-core-newer-37.1 @@ -115,56 +115,56 @@ ("cryptsetup", cryptsetup) ("go", go-1.17) ("pkg-config", pkg-config) - ("go-github-com-AdamKorcz-go-fuzz-headers", go-github-com-AdamKorcz-go-fuzz-headers) - ("go-github-com-Netflix-go-expect", go-github-com-Netflix-go-expect) - ("go-github-com-adigunhammedolalekan-registry-auth", go-github-com-adigunhammedolalekan-registry-auth) - ("go-github-com-alexflint-go-filemutex", go-github-com-alexflint-go-filemutex) - ("go-github-com-apex-log", go-github-com-apex-log) - ("go-github-com-blang-semver-v4", go-github-com-blang-semver-v4) - ("go-github-com-buger-jsonparser", go-github-com-buger-jsonparser) - ("go-github-com-bugsnag-bugsnag-go", go-github-com-bugsnag-bugsnag-go) - ("go-github-com-bugsnag-panicwrap", go-github-com-bugsnag-panicwrap) - ("go-github-com-containerd-cgroups", go-github-com-containerd-cgroups) - ("go-github-com-containerd-containerd", go-github-com-containerd-containerd) - ("go-github-com-containernetworking-cni", go-github-com-containernetworking-cni) - ("go-github-com-containernetworking-plugins", go-github-com-containernetworking-plugins) - ("go-github-com-containers-image-v5", go-github-com-containers-image-v5) - ("go-github-com-cyphar-filepath-securejoin", go-github-com-cyphar-filepath-securejoin) - ("go-github-com-fatih-color", go-github-com-fatih-color) - ("go-github-com-go-log-log", go-github-com-go-log-log) - ("go-github-com-godbus-dbus", go-github-com-godbus-dbus) - ("go-github-com-google-uuid", go-github-com-google-uuid) - ("go-github-com-gorilla-websocket", go-github-com-gorilla-websocket) - ("go-github-com-hpcng-sif", go-github-com-hpcng-sif) - ("go-github-com-kardianos-osext", go-github-com-kardianos-osext) - ("go-github-com-kr-pty", go-github-com-kr-pty) - ("go-github-com-opencontainers-go-digest", go-github-com-opencontainers-go-digest) - ("go-github-com-opencontainers-image-spec", go-github-com-opencontainers-image-spec) - ("go-github-com-opencontainers-runtime-spec", go-github-com-opencontainers-runtime-spec) - ("go-github-com-opencontainers-runtime-tools", go-github-com-opencontainers-runtime-tools) - ("go-github-com-opencontainers-selinux", go-github-com-opencontainers-selinux) - ("go-github-com-opencontainers-umoci", go-github-com-opencontainers-umoci) - ("go-github-com-pelletier-go-toml", go-github-com-pelletier-go-toml) - ("go-github-com-pkg-errors", go-github-com-pkg-errors) - ("go-github-com-russross-blackfriday-v2", go-github-com-russross-blackfriday-v2) - ("go-github-com-satori-go-uuid", go-github-com-satori-go-uuid) - ("go-github-com-seccomp-containers-golang", go-github-com-seccomp-containers-golang) - ("go-github-com-seccomp-libseccomp-golang", go-github-com-seccomp-libseccomp-golang) - ("go-github-com-spf13-cobra", go-github-com-spf13-cobra) - ("go-github-com-spf13-pflag", go-github-com-spf13-pflag) - ("go-github-com-sylabs-json-resp", go-github-com-sylabs-json-resp) - ("go-github-com-sylabs-scs-build-client", go-github-com-sylabs-scs-build-client) - ("go-github-com-sylabs-scs-key-client", go-github-com-sylabs-scs-key-client) - ("go-github-com-sylabs-scs-library-client", go-github-com-sylabs-scs-library-client) - ("go-github-com-urfave-cli", go-github-com-urfave-cli) - ("go-github-com-vbauerster-mpb-v4", go-github-com-vbauerster-mpb-v4) - ("go-github-com-vbauerster-mpb-v6", go-github-com-vbauerster-mpb-v6) - ("go-github-com-xeipuuv-gojsonpointer", go-github-com-xeipuuv-gojsonpointer) - ("go-github-com-yvasiyarov-go-metrics", go-github-com-yvasiyarov-go-metrics) - ("go-github-com-yvasiyarov-gorelic", go-github-com-yvasiyarov-gorelic) - ("go-github-com-yvasiyarov-newrelic_platform_go", go-github-com-yvasiyarov-newrelic_platform_go) - ("go-golang-org-x-crypto", go-golang-org-x-crypto) - ("go-golang-org-x-sys", go-golang-org-x-sys) +; ("go-github-com-AdamKorcz-go-fuzz-headers", go-github-com-AdamKorcz-go-fuzz-headers) +; ("go-github-com-Netflix-go-expect", go-github-com-Netflix-go-expect) +; ("go-github-com-adigunhammedolalekan-registry-auth", go-github-com-adigunhammedolalekan-registry-auth) +; ("go-github-com-alexflint-go-filemutex", go-github-com-alexflint-go-filemutex) +; ("go-github-com-apex-log", go-github-com-apex-log) +; ("go-github-com-blang-semver-v4", go-github-com-blang-semver-v4) +; ("go-github-com-buger-jsonparser", go-github-com-buger-jsonparser) +; ("go-github-com-bugsnag-bugsnag-go", go-github-com-bugsnag-bugsnag-go) +; ("go-github-com-bugsnag-panicwrap", go-github-com-bugsnag-panicwrap) +; ("go-github-com-containerd-cgroups", go-github-com-containerd-cgroups) +; ("go-github-com-containerd-containerd", go-github-com-containerd-containerd) +; ("go-github-com-containernetworking-cni", go-github-com-containernetworking-cni) +; ("go-github-com-containernetworking-plugins", go-github-com-containernetworking-plugins) +; ("go-github-com-containers-image-v5", go-github-com-containers-image-v5) +; ("go-github-com-cyphar-filepath-securejoin", go-github-com-cyphar-filepath-securejoin) +; ("go-github-com-fatih-color", go-github-com-fatih-color) +; ("go-github-com-go-log-log", go-github-com-go-log-log) +; ("go-github-com-godbus-dbus", go-github-com-godbus-dbus) +; ("go-github-com-google-uuid", go-github-com-google-uuid) +; ("go-github-com-gorilla-websocket", go-github-com-gorilla-websocket) +; ("go-github-com-hpcng-sif", go-github-com-hpcng-sif) +; ("go-github-com-kardianos-osext", go-github-com-kardianos-osext) +; ("go-github-com-kr-pty", go-github-com-kr-pty) +; ("go-github-com-opencontainers-go-digest", go-github-com-opencontainers-go-digest) +; ("go-github-com-opencontainers-image-spec", go-github-com-opencontainers-image-spec) +; ("go-github-com-opencontainers-runtime-spec", go-github-com-opencontainers-runtime-spec) +; ("go-github-com-opencontainers-runtime-tools", go-github-com-opencontainers-runtime-tools) +; ("go-github-com-opencontainers-selinux", go-github-com-opencontainers-selinux) +; ("go-github-com-opencontainers-umoci", go-github-com-opencontainers-umoci) +; ("go-github-com-pelletier-go-toml", go-github-com-pelletier-go-toml) +; ("go-github-com-pkg-errors", go-github-com-pkg-errors) +; ("go-github-com-russross-blackfriday-v2", go-github-com-russross-blackfriday-v2) +; ("go-github-com-satori-go-uuid", go-github-com-satori-go-uuid) +; ("go-github-com-seccomp-containers-golang", go-github-com-seccomp-containers-golang) +; ("go-github-com-seccomp-libseccomp-golang", go-github-com-seccomp-libseccomp-golang) +; ("go-github-com-spf13-cobra", go-github-com-spf13-cobra) +; ("go-github-com-spf13-pflag", go-github-com-spf13-pflag) +; ("go-github-com-sylabs-json-resp", go-github-com-sylabs-json-resp) +; ("go-github-com-sylabs-scs-build-client", go-github-com-sylabs-scs-build-client) +; ("go-github-com-sylabs-scs-key-client", go-github-com-sylabs-scs-key-client) +; ("go-github-com-sylabs-scs-library-client", go-github-com-sylabs-scs-library-client) +; ("go-github-com-urfave-cli", go-github-com-urfave-cli) +; ("go-github-com-vbauerster-mpb-v4", go-github-com-vbauerster-mpb-v4) +; ("go-github-com-vbauerster-mpb-v6", go-github-com-vbauerster-mpb-v6) +; ("go-github-com-xeipuuv-gojsonpointer", go-github-com-xeipuuv-gojsonpointer) +; ("go-github-com-yvasiyarov-go-metrics", go-github-com-yvasiyarov-go-metrics) +; ("go-github-com-yvasiyarov-gorelic", go-github-com-yvasiyarov-gorelic) +; ("go-github-com-yvasiyarov-newrelic_platform_go", go-github-com-yvasiyarov-newrelic_platform_go) +; ("go-golang-org-x-crypto", go-golang-org-x-crypto) +; ("go-golang-org-x-sys", go-golang-org-x-sys) )) (arguments `(#:phases From 6fa08d65bead72089a97c5d76665635cd0238d98 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Sat, 11 Dec 2021 14:21:33 +0100 Subject: [PATCH 163/383] commenting golang --- glicid/packages/golang.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index 96e6ce8..5dc16e9 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -1,4 +1,4 @@ -(define-module (glicid packages openldap) +(define-module (glicid packages golang) #:use-module (guix build-system go) #:use-module (guix download) #:use-module (guix git-download) From 43508b8a5a8527a377ce0b368089638d8454eff1 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Mon, 13 Dec 2021 12:03:47 +0100 Subject: [PATCH 164/383] change oauth token --- glicid/packages/glicid.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glicid/packages/glicid.scm b/glicid/packages/glicid.scm index 1a1f4b0..74e8e78 100644 --- a/glicid/packages/glicid.scm +++ b/glicid/packages/glicid.scm @@ -354,7 +354,7 @@ (source (origin (method git-fetch) (uri (git-reference - (url "https://oauth2:9i-PgbC2w_JEx6DUUqzf@gitlab.univ-nantes.fr/CCIPL/legacy_code_mirror/grace.git") + (url "https://oauth2:glpat-RsX2GjsD2WrzXubiJeou@gitlab.univ-nantes.fr/CCIPL/legacy_code_mirror/grace.git") (commit (string-append "v" version)))) (sha256 (base32 "1wb8v0q8xa2akas0swpgdgw1s66i50k7kh1g2f894hnk91fzx56z")) ) From 28b819f046e211368d3b3230300b9e092190c0bd Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Mon, 13 Dec 2021 22:58:08 +0100 Subject: [PATCH 165/383] change token --- glicid/packages/clam.scm | 4 ++-- glicid/packages/maths.scm | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/glicid/packages/clam.scm b/glicid/packages/clam.scm index a185382..30180bd 100644 --- a/glicid/packages/clam.scm +++ b/glicid/packages/clam.scm @@ -97,7 +97,7 @@ (method git-fetch) (uri (git-reference - (url "https://oauth2:9i-PgbC2w_JEx6DUUqzf@gitlab.univ-nantes.fr/CCIPL/stages/2021/django-keycloak.git") (commit version) + (url "https://oauth2:glpat-RsX2GjsD2WrzXubiJeou@gitlab.univ-nantes.fr/CCIPL/stages/2021/django-keycloak.git") (commit version) ) ) @@ -561,7 +561,7 @@ (method git-fetch) (uri (git-reference - (url "https://oauth2:9i-PgbC2w_JEx6DUUqzf@gitlab.univ-nantes.fr/CCIPL/stages/2021/cluster_account_manager.git") (commit version) + (url "https://oauth2:glpat-RsX2GjsD2WrzXubiJeou@gitlab.univ-nantes.fr/CCIPL/stages/2021/cluster_account_manager.git") (commit version) ) ) diff --git a/glicid/packages/maths.scm b/glicid/packages/maths.scm index cb09d93..1be9e5f 100644 --- a/glicid/packages/maths.scm +++ b/glicid/packages/maths.scm @@ -19,7 +19,7 @@ (method git-fetch) (uri (git-reference - (url "https://oauth2:9i-PgbC2w_JEx6DUUqzf@gitlab.univ-nantes.fr/CCIPL/legacy_code_mirror/scalapack.git") + (url "https://oauth2:glpat-RsX2GjsD2WrzXubiJeou@gitlab.univ-nantes.fr/CCIPL/legacy_code_mirror/scalapack.git") (commit "myv2.0.2") ) ) From ca3db91c84bd2124981628ff68c0716691eaa2e3 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Tue, 14 Dec 2021 16:32:58 +0100 Subject: [PATCH 166/383] no need for ceph, upstream is newer --- glicid/packages/storage.scm | 284 +----------------------------------- 1 file changed, 1 insertion(+), 283 deletions(-) diff --git a/glicid/packages/storage.scm b/glicid/packages/storage.scm index 5f0cf83..0f24c7e 100644 --- a/glicid/packages/storage.scm +++ b/glicid/packages/storage.scm @@ -1,285 +1,3 @@ (define-module (glicid packages storage) - #:use-module (guix packages) - #:use-module (guix download) - #:use-module (guix git-download) - #:use-module (guix build-system gnu) - #:use-module (guix build-system cmake) -; #:use-module (guix licenses) - #:use-module (gnu packages gawk) - #:use-module (gnu packages gcc) - #:use-module (gnu packages commencement) - #:use-module (guix build-system python) - #:use-module ((guix licenses) #:prefix license:) - #:use-module ((guix utils) #:select (target-64bit?)) - #:use-module (gnu packages) - #:use-module (gnu packages admin) - #:use-module (gnu packages autotools) - #:use-module (gnu packages base) - #:use-module (gnu packages freeipmi) - #:use-module (gnu packages linux) - #:use-module (gnu packages mpi) - #:use-module (gnu packages perl) - #:use-module (gnu packages pkg-config) - #:use-module (gnu packages parallel) - #:use-module ((gnu packages storage) #:prefix gnu: ) - #:use-module (gnu packages networking) - #:use-module (gnu packages gtk) - #:use-module (gnu packages python) - #:use-module (gnu packages python-science) - #:use-module (gnu packages python-web) - #:use-module (gnu packages python-xyz) - #:use-module (gnu packages readline) - #:use-module (gnu packages tcl) - #:use-module (gnu packages tls) - #:use-module (gnu packages commencement) - #:use-module (gnu packages gcc) - #:use-module (gnu packages chemistry) - #:use-module (gnu packages sphinx) - #:use-module (srfi srfi-1) - #:use-module (gnu packages mpi) - #:use-module (gnu packages sssd) - #:use-module (gnu packages fabric-management) - #:use-module (gnu packages benchmark) - #:use-module (gnu packages messaging) - #:use-module (gnu packages web) - #:use-module (gnu packages gnome) - #:use-module (gnu packages cluster) - #:use-module (gnu packages libevent) - #:use-module (gnu packages xorg) - #:use-module (gnu packages fontutils) - #:use-module (gnu packages flex) - #:use-module (gnu packages bison) - #:use-module (gnu packages pkg-config) - #:use-module (gnu packages autotools) - #:use-module (gnu packages fontutils) - #:use-module (guix build-system gnu) - #:use-module (gnu packages image) - #:use-module (gnu packages maths) - #:use-module (guix utils) - #:use-module (gnu packages cmake) - #:use-module (gnu packages pretty-print) - #:use-module (gnu packages boost) - #:use-module (gnu packages curl) - #:use-module (gnu packages cryptsetup) - #:use-module (gnu packages xml) - #:use-module (gnu packages admin) - #:use-module (gnu packages assembly) - #:use-module (gnu packages authentication) - #:use-module (gnu packages bdw-gc) - #:use-module (gnu packages boost) - #:use-module (gnu packages compression) - #:use-module (gnu packages crypto) - #:use-module (gnu packages cryptsetup) - #:use-module (gnu packages curl) - #:use-module (gnu packages databases) - #:use-module (gnu packages disk) - #:use-module (gnu packages gperf) - #:use-module (gnu packages jemalloc) - #:use-module (gnu packages linux) - #:use-module (gnu packages lua) - #:use-module (gnu packages ncurses) - #:use-module (gnu packages networking) - #:use-module (gnu packages nss) - #:use-module (gnu packages openldap) - #:use-module (gnu packages pkg-config) - #:use-module (gnu packages python) - #:use-module (gnu packages python-xyz) - #:use-module (gnu packages sphinx) - #:use-module (gnu packages tls) - #:use-module (gnu packages web) -;; #:use-module (gnu packages glicid) - #:use-module (gnu packages pretty-print) - #:use-module (gnu packages virtualization) - - -) - - -(define-public ceph - (package - (inherit gnu:ceph) - (name "ceph") - (version "15.2.15") - (source (origin - (method url-fetch) - (uri (string-append "https://download.ceph.com/tarballs/ceph-" - version ".tar.gz")) - (sha256 - (base32 - "1gyh01kwbds4s43nlaj3q1mbyx7lnpw0dz1bncsx865y5vzxmk2x")) - (patches - (search-patches "ceph-fix-snappy-breaking-change.patch")) - (modules '((guix build utils))) - (snippet - '(begin - (for-each delete-file-recursively - '(;; TODO: Unbundle these: - ;"src/isa-l" - ;"src/lua" - ;"src/xxHash" - ;"src/zstd" - ;"src/civetweb" - ;"src/seastar/fmt" - ; "src/test/downloads" - "src/c-ares" - "src/fmt" ;; YD - "src/googletest" - "src/rapidjson" - "src/spdk" - "src/rocksdb" - "src/boost")) - #t)))) - (arguments - `(#:configure-flags - (let* ((out (assoc-ref %outputs "out")) - (lib (assoc-ref %outputs "lib")) - (libdir (string-append lib "/lib"))) - (list (string-append "-DCMAKE_INSTALL_PREFIX=" out) - (string-append "-DCMAKE_INSTALL_LIBDIR=" libdir) - (string-append "-DCMAKE_INSTALL_INCLUDEDIR=" - lib "/include") - ;; We need both libdir and libdir/ceph in RUNPATH. - (string-append "-DCMAKE_INSTALL_RPATH=" - libdir ";" libdir "/ceph") - (string-append "-DCMAKE_INSTALL_SYSCONFDIR=" out "/etc") - (string-append "-DCMAKE_INSTALL_DATADIR=" lib "/share") - (string-append "-DCMAKE_INSTALL_MANDIR=" out "/share/man") - (string-append "-DCMAKE_INSTALL_DOCDIR=" out "/share/ceph/doc") - (string-append "-DCMAKE_INSTALL_LIBEXECDIR=" out "/libexec") - (string-append "-DKEYUTILS_INCLUDE_DIR=" - (assoc-ref %build-inputs "keyutils") "/include") - (string-append "-DXFS_INCLUDE_DIR=" - (assoc-ref %build-inputs "xfsprogs") "/include") - "-DCMAKE_INSTALL_LOCALSTATEDIR=/var" - "-DBUILD_SHARED_LIBS=ON" - "-DWITH_SYSTEM_ROCKSDB=ON" - "-DWITH_SYSTEM_BOOST=ON" - "-DWITH_PYTHON3=ON" - ;; TODO: Enable these when available in Guix. - "-DWITH_MGR_DASHBOARD_FRONTEND=OFF" ;requires node + nodeenv - "-DWITH_BABELTRACE=OFF" - "-DWITH_LTTNG=OFF" - "-DWITH_SPDK=OFF" - "-DWITH_RADOSGW_AMQP_ENDPOINT=OFF" - - ;; Use jemalloc instead of tcmalloc. - "-DALLOCATOR=jemalloc" - - ;; Do not bother building the tests; we are not currently running - ;; them, and they do not build with system googletest as of 14.2.5. - "-DWITH_TESTS=OFF")) - ;; FIXME: Some of the tests leak Btrfs subvolumes on Btrfs. See - ;; for details. Disable tests until - ;; resolved. - #:tests? #f - #:phases - (modify-phases %standard-phases - (add-after 'unpack 'patch-source - (lambda* (#:key outputs #:allow-other-keys) - (let ((out (assoc-ref outputs "out")) - (lib (assoc-ref outputs "lib"))) - - (substitute* "cmake/modules/Distutils.cmake" - ;; Prevent creation of Python eggs. - (("setup.py install") - "setup.py install --single-version-externally-managed --root=/")) - - (substitute* (find-files "src/pybind" "^setup\\.py$") - ;; Here we inject an extra line to the `setup.py' of the - ;; Python C libraries so RUNPATH gets set up correctly. -; (("^([[:blank:]]+)extra_compile_args=(.*)$" _ indent args) -; (string-append indent "extra_compile_args=" args -; indent "extra_link_args=['-Wl,-rpath=" -; lib "/lib'],\n"))) - - - (("^([[:blank:]]+)extra_link_args=(.*)$" _ indent args) - (string-append indent "extra_link_args=(['-Wl,-rpath=" lib "/lib'] + distutils.sysconfig.get_config_var('LDFLAGS').split() + \n"))) - - - ;; Statically link libcrc32 because it does not get installed, - ;; yet several libraries end up referring to it. - (substitute* "src/common/CMakeLists.txt" - (("add_library\\(crc32") - "add_library(crc32 STATIC")) - - (substitute* "udev/50-rbd.rules" - (("/usr/bin/ceph-rbdnamer") - (string-append out "/bin/ceph-rbdnamer"))) - #t))) - (add-before 'install 'set-install-environment - (lambda* (#:key outputs #:allow-other-keys) - (let* ((out (assoc-ref outputs "out")) - (py3sitedir - (string-append out "/lib/python" - ,(version-major+minor - (package-version python)) - "/site-packages"))) - ;; The Python install scripts refuses to function if - ;; the install directory is not on PYTHONPATH. - (setenv "PYTHONPATH" - (string-append py3sitedir ":" - (getenv "PYTHONPATH"))) - #t))) - (add-after 'install 'wrap-python-scripts - (lambda* (#:key inputs outputs #:allow-other-keys) - (let* ((out (assoc-ref outputs "out")) - (scripts '("ceph" "ceph-mgr" "ceph-volume")) - (prettytable (assoc-ref inputs "python-prettytable")) - (six (assoc-ref inputs "python-six")) - (sitedir (lambda (package) - (string-append package - "/lib/python" - ,(version-major+minor - (package-version python)) - "/site-packages"))) - (PYTHONPATH (string-append - (sitedir out) ":" - (sitedir six) ":" - (sitedir prettytable)))) - (for-each (lambda (executable) - (wrap-program (string-append out "/bin/" executable) - `("PYTHONPATH" ":" prefix (,PYTHONPATH)))) - scripts) - #t)))))) - - (inputs - `(("boost" ,boost) - ("curl" ,curl) - ("cryptsetup" ,cryptsetup) - ("expat" ,expat) - ("fcgi" ,fcgi) - ("fmt",fmt) ;; maybe need v5 ? - ("fuse" ,fuse) - ("jemalloc" ,jemalloc) - ("keyutils" ,keyutils) - ("leveldb" ,leveldb) - ("libaio" ,libaio) - ("libatomic-ops" ,libatomic-ops) - ("libcap-ng" ,libcap-ng) - ("libnl" ,libnl) - ("librdkafka" ,librdkafka) - ("lua" ,lua) - ("lz4" ,lz4) - ("oath-toolkit" ,oath-toolkit) - ("openldap" ,openldap) - ("openssl" ,openssl) - ("ncurses" ,ncurses) - ("nss" ,nss) - ("python-prettytable" ,python-prettytable) ;used by ceph_daemon.py - ("python-six" ,python-six) ;for ceph-mgr + plugins - ("python" ,python-wrapper) - ("rapidjson" ,rapidjson) - ("rdma-core" ,rdma-core) - ("rocksdb" ,rocksdb) - ("snappy" ,snappy) - ("udev" ,eudev) - ("util-linux" ,util-linux) - ("util-linux:lib" ,util-linux "lib") - ("xfsprogs" ,xfsprogs) - ("zlib" ,zlib))) - ) - -) - +;; ceph has been upgraded mainstream (16.2.XX) ; no need to redefine here \ No newline at end of file From 665d35eb7e0862129323523bbccdecf122f684f5 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Tue, 14 Dec 2021 16:36:24 +0100 Subject: [PATCH 167/383] typo --- glicid/packages/storage.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glicid/packages/storage.scm b/glicid/packages/storage.scm index 0f24c7e..234e212 100644 --- a/glicid/packages/storage.scm +++ b/glicid/packages/storage.scm @@ -1,3 +1,3 @@ -(define-module (glicid packages storage) +(define-module (glicid packages storage)) ;; ceph has been upgraded mainstream (16.2.XX) ; no need to redefine here \ No newline at end of file From 27b4282bc6360c9b1371f989940dc7b2ec1681c2 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Tue, 14 Dec 2021 22:38:58 +0100 Subject: [PATCH 168/383] sssd from github --- glicid/packages/sssd.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 glicid/packages/sssd.scm diff --git a/glicid/packages/sssd.scm b/glicid/packages/sssd.scm new file mode 100644 index 0000000..bb506e2 --- /dev/null +++ b/glicid/packages/sssd.scm @@ -0,0 +1,26 @@ +(define-module (glicid packages sssd) + #:use-module (guix packages) + #:use-module (guix download) + #:use-module (guix git-download) + #:use-module ((gnu packages sssd) #:prefix gnu:) +) + +(define-public sssd-newer-orig + (package + (inherit gnu:sssd) + (name "sssd-newer") + (version "1_16_5") + (source + (origin + (inherit (package-source gnu:sssd)) + (method git-fetch) + (uri (git-reference + (url "https://github.com/SSSD/sssd") + (commit (string-append "sssd-" version)) + )) + (file-name (git-file-name name version)) + (sha256 (base32 "04kczch2hlfzbgk929vcxx480kc6raba8rbz246j7d26k1z1zh8h")) + ) + ) + ) +) From 3741f53113401446d3043b6669ac8f78beb84820 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Tue, 14 Dec 2021 23:00:58 +0100 Subject: [PATCH 169/383] test --- glicid/packages/sssd.scm | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/glicid/packages/sssd.scm b/glicid/packages/sssd.scm index bb506e2..6c456cd 100644 --- a/glicid/packages/sssd.scm +++ b/glicid/packages/sssd.scm @@ -10,17 +10,17 @@ (inherit gnu:sssd) (name "sssd-newer") (version "1_16_5") - (source - (origin - (inherit (package-source gnu:sssd)) - (method git-fetch) - (uri (git-reference - (url "https://github.com/SSSD/sssd") - (commit (string-append "sssd-" version)) - )) - (file-name (git-file-name name version)) - (sha256 (base32 "04kczch2hlfzbgk929vcxx480kc6raba8rbz246j7d26k1z1zh8h")) - ) - ) +; (source +; (origin +; (inherit (package-source gnu:sssd)) +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/SSSD/sssd") +; (commit (string-append "sssd-" version)) +; )) +; (file-name (git-file-name name version)) +; (sha256 (base32 "04kczch2hlfzbgk929vcxx480kc6raba8rbz246j7d26k1z1zh8h")) +; ) +; ) ) ) From e5c01a8a6edcc1d107929942eadce718ec8d8d52 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Tue, 14 Dec 2021 23:09:57 +0100 Subject: [PATCH 170/383] test --- glicid/packages/sssd.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/glicid/packages/sssd.scm b/glicid/packages/sssd.scm index 6c456cd..d80b430 100644 --- a/glicid/packages/sssd.scm +++ b/glicid/packages/sssd.scm @@ -8,8 +8,8 @@ (define-public sssd-newer-orig (package (inherit gnu:sssd) - (name "sssd-newer") - (version "1_16_5") +; (name "sssd-newer") +; (version "1_16_5") ; (source ; (origin ; (inherit (package-source gnu:sssd)) From e24c16dc305eaeecda952da81c3cd80736cd5158 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Tue, 14 Dec 2021 23:22:29 +0100 Subject: [PATCH 171/383] test --- glicid/packages/sssd.scm | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/glicid/packages/sssd.scm b/glicid/packages/sssd.scm index d80b430..265c54c 100644 --- a/glicid/packages/sssd.scm +++ b/glicid/packages/sssd.scm @@ -1,13 +1,13 @@ -(define-module (glicid packages sssd) - #:use-module (guix packages) - #:use-module (guix download) - #:use-module (guix git-download) - #:use-module ((gnu packages sssd) #:prefix gnu:) -) +;(define-module (glicid packages sssd) +; #:use-module (guix packages) +; #:use-module (guix download) +; #:use-module (guix git-download) +; #:use-module ((gnu packages sssd) #:prefix gnu:) +;) -(define-public sssd-newer-orig - (package - (inherit gnu:sssd) +;(define-public sssd-newer-orig +; (package +; (inherit gnu:sssd) ; (name "sssd-newer") ; (version "1_16_5") ; (source @@ -22,5 +22,5 @@ ; (sha256 (base32 "04kczch2hlfzbgk929vcxx480kc6raba8rbz246j7d26k1z1zh8h")) ; ) ; ) - ) -) +; ) +;) From 74cc92d13db98c34e91da4559c1505a15de70553 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Tue, 14 Dec 2021 23:30:39 +0100 Subject: [PATCH 172/383] storage is now undefined --- glicid/packages/sssd.scm | 50 ++++++++++++++++++------------------- glicid/packages/storage.scm | 4 +-- 2 files changed, 27 insertions(+), 27 deletions(-) diff --git a/glicid/packages/sssd.scm b/glicid/packages/sssd.scm index 265c54c..bb506e2 100644 --- a/glicid/packages/sssd.scm +++ b/glicid/packages/sssd.scm @@ -1,26 +1,26 @@ -;(define-module (glicid packages sssd) -; #:use-module (guix packages) -; #:use-module (guix download) -; #:use-module (guix git-download) -; #:use-module ((gnu packages sssd) #:prefix gnu:) -;) +(define-module (glicid packages sssd) + #:use-module (guix packages) + #:use-module (guix download) + #:use-module (guix git-download) + #:use-module ((gnu packages sssd) #:prefix gnu:) +) -;(define-public sssd-newer-orig -; (package -; (inherit gnu:sssd) -; (name "sssd-newer") -; (version "1_16_5") -; (source -; (origin -; (inherit (package-source gnu:sssd)) -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/SSSD/sssd") -; (commit (string-append "sssd-" version)) -; )) -; (file-name (git-file-name name version)) -; (sha256 (base32 "04kczch2hlfzbgk929vcxx480kc6raba8rbz246j7d26k1z1zh8h")) -; ) -; ) -; ) -;) +(define-public sssd-newer-orig + (package + (inherit gnu:sssd) + (name "sssd-newer") + (version "1_16_5") + (source + (origin + (inherit (package-source gnu:sssd)) + (method git-fetch) + (uri (git-reference + (url "https://github.com/SSSD/sssd") + (commit (string-append "sssd-" version)) + )) + (file-name (git-file-name name version)) + (sha256 (base32 "04kczch2hlfzbgk929vcxx480kc6raba8rbz246j7d26k1z1zh8h")) + ) + ) + ) +) diff --git a/glicid/packages/storage.scm b/glicid/packages/storage.scm index 234e212..09e2ddb 100644 --- a/glicid/packages/storage.scm +++ b/glicid/packages/storage.scm @@ -1,3 +1,3 @@ -(define-module (glicid packages storage)) +;(define-module (glicid packages storage)) -;; ceph has been upgraded mainstream (16.2.XX) ; no need to redefine here \ No newline at end of file +;; ceph has been upgraded mainstream (16.2.XX) ; no need to redefine here From 13214ab69fe56c6c96a39fddcffac5fcd76d1c8e Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Tue, 14 Dec 2021 23:33:55 +0100 Subject: [PATCH 173/383] no more storage --- glicid/packages/storage.scm | 3 --- 1 file changed, 3 deletions(-) delete mode 100644 glicid/packages/storage.scm diff --git a/glicid/packages/storage.scm b/glicid/packages/storage.scm deleted file mode 100644 index 09e2ddb..0000000 --- a/glicid/packages/storage.scm +++ /dev/null @@ -1,3 +0,0 @@ -;(define-module (glicid packages storage)) - -;; ceph has been upgraded mainstream (16.2.XX) ; no need to redefine here From 58786ef88f7ffdf63410d3b3c9dba7b06ec5d979 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Tue, 14 Dec 2021 23:38:02 +0100 Subject: [PATCH 174/383] no more glicid storage --- glicid/packages/glicid.scm | 2 +- glicid/packages/nfs.scm | 2 +- glicid/packages/virtualization.scm | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/glicid/packages/glicid.scm b/glicid/packages/glicid.scm index 74e8e78..7067fa6 100644 --- a/glicid/packages/glicid.scm +++ b/glicid/packages/glicid.scm @@ -90,7 +90,7 @@ ;; #:use-module (gnu packages glicid) #:use-module (gnu packages pretty-print) #:use-module (gnu packages virtualization) - #:use-module (glicid packages storage) +;; #:use-module (glicid packages storage) #:use-module (glicid packages mpi) #:use-module (glicid packages gcc) diff --git a/glicid/packages/nfs.scm b/glicid/packages/nfs.scm index 72c4470..fa508b0 100644 --- a/glicid/packages/nfs.scm +++ b/glicid/packages/nfs.scm @@ -19,7 +19,7 @@ #:use-module (gnu packages linux) #:use-module (gnu packages jemalloc) #:use-module (gnu packages storage) - #:use-module (glicid packages storage) +; #:use-module (glicid packages storage) ) (define-public nfs-ganesha diff --git a/glicid/packages/virtualization.scm b/glicid/packages/virtualization.scm index 7e063d4..3f2d413 100644 --- a/glicid/packages/virtualization.scm +++ b/glicid/packages/virtualization.scm @@ -3,7 +3,7 @@ #:use-module (guix utils) #:use-module (gnu packages virtualization) #:use-module (gnu packages storage) - #:use-module (glicid packages storage) +; #:use-module (glicid packages storage) ) (define-public qemu-with-rbd From 530da4d204b7dfa6ec2cb48c9b5f38ba15f4d637 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Tue, 14 Dec 2021 23:46:56 +0100 Subject: [PATCH 175/383] cleanup --- glicid/packages/glicid.scm | 60 -------------------------------------- 1 file changed, 60 deletions(-) diff --git a/glicid/packages/glicid.scm b/glicid/packages/glicid.scm index 7067fa6..1380bb8 100644 --- a/glicid/packages/glicid.scm +++ b/glicid/packages/glicid.scm @@ -142,23 +142,6 @@ ) ) -;(define-public glicid-gromacs-openmpi -; (package -; (inherit gromacs) -; (name "glicid-gromacs-openmpi") -; (inputs `(("openmpi", openmpi) -; ,@(package-inputs gromacs))) -; (build-system cmake-build-system) -; (arguments -; `(#:configure-flags configure-flags) -; (append configure-flags (list "-DGMX_MPI=on" -; "-DCMAKE_C_COMPILER=mpicc" -; "-DCMAKE_CXX_COMPILER=mpiicxx" -; )) -; ) -; ) -;) - (define-public glicid-gromacs-openmpi (package @@ -257,49 +240,6 @@ ) ) -;(define-public glicid-specific-hdf5-parallel-openmpi -; (package/inherit glicid-specific-hdf5 ;use the latest -; (name "glicid-specific-hdf5-parallel-openmpi") -; (inputs -; `(("mpi" ,glicid-specific-openmpi) -; ,@(package-inputs glicid-specific-hdf5))) -; (arguments -; -;; `( -;; #:tests? #f -; -; ( -; substitute-keyword-arguments (package-arguments glicid-specific-hdf5) -; ((#:configure-flags flags) -; ``("--enable-parallel" "--disable-tests" -; ,@(delete "--enable-cxx" -; (delete "--enable-threadsafe" ,flags)))) -; ((#:phases phases) -; `(modify-phases ,phases -; (add-after 'build 'mpi-setup -; ,%openmpi-setup) -; (add-before 'check 'patch-tests -; (lambda _ -; ;; OpenMPI's mpirun will exit with non-zero status if it -; ;; detects an "abnormal termination", i.e. any process not -; ;; calling MPI_Finalize(). Since the test is explicitly -; ;; avoiding MPI_Finalize so as not to have at_exit and thus -; ;; H5C_flush_cache from being called, mpirun will always -; ;; complain, so turn this test off. -; (substitute* "testpar/Makefile" -; (("(^TEST_PROG_PARA.*)t_pflush1(.*)" front back) -; (string-append front back "\n"))) -; (substitute* "tools/test/h5diff/testph5diff.sh" -; (("/bin/sh") (which "sh"))) -; #t)))) -; -;)) -; -; -; -; (synopsis "Management suite for data with parallel IO support"))) -; - (define-public glicid-motif (package From abe41fd2296e827415616a8d22c39e8c91d98082 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Wed, 15 Dec 2021 08:54:52 +0100 Subject: [PATCH 176/383] good sha --- glicid/packages/sssd.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glicid/packages/sssd.scm b/glicid/packages/sssd.scm index bb506e2..1d4050f 100644 --- a/glicid/packages/sssd.scm +++ b/glicid/packages/sssd.scm @@ -19,7 +19,7 @@ (commit (string-append "sssd-" version)) )) (file-name (git-file-name name version)) - (sha256 (base32 "04kczch2hlfzbgk929vcxx480kc6raba8rbz246j7d26k1z1zh8h")) + (sha256 (base32 "0zbs04lkjbp7y92anmafl7gzamcnq1f147p13hc4byyvjk9rg6f7")) ) ) ) From f71a95946c998d422dd558242b06ba243df01aaf Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Wed, 15 Dec 2021 09:31:25 +0100 Subject: [PATCH 177/383] auto fs without sssd --- glicid/packages/file-systems.scm | 83 ++++++++++++++++++++++++++++++++ 1 file changed, 83 insertions(+) create mode 100644 glicid/packages/file-systems.scm diff --git a/glicid/packages/file-systems.scm b/glicid/packages/file-systems.scm new file mode 100644 index 0000000..02c0535 --- /dev/null +++ b/glicid/packages/file-systems.scm @@ -0,0 +1,83 @@ +(define-module (glicid packages file-systems) + #:use-module ((guix licenses) #:prefix license:) + #:use-module (guix packages) + #:use-module (guix download) + #:use-module (guix git-download) + #:use-module (guix utils) + #:use-module (guix build-system gnu) + +) + +(define-public autofs-glicid + (package + (name "autofs-glicid") + (version "5.1.8") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://kernel.org/linux/daemons/autofs/" + "v" (version-major version) "/" + "autofs-" version ".tar.xz")) + (sha256 + (base32 "1zf0fgf6kr9amxq5amlgsp1v13sizwl3wvx2xl7b4r2nhmci0gdk")))) + (build-system gnu-build-system) + (arguments + `(#:configure-flags + (list "--enable-ignore-busy" ; during shutdown + "--enable-sloppy-mount" ; support mount(8) -s + "--with-libtirpc" + (string-append "--with-openldap=" + (assoc-ref %build-inputs "openldap")) + (string-append "--with-sasl=" + (assoc-ref %build-inputs "cyrus-sasl")) +; "HAVE_SSS_AUTOFS=1" ; required to make sssldir click +; (string-append "sssldir=" +; (assoc-ref %build-inputs "sssd") +; "/lib/sssd/modules") + ) + #:tests? #f ; no test suite + #:phases + (modify-phases %standard-phases + (add-before 'configure 'fix-hard-coded-search-path + (lambda _ + (substitute* "configure" + (("^searchpath=\".*\"") + "searchpath=\"$PATH\"")))) + (add-before 'configure 'fix-rpath + (lambda* (#:key outputs #:allow-other-keys) + (let ((out (assoc-ref outputs "out"))) + (substitute* "Makefile.rules" + (("^AUTOFS_LIB_LINK.*=" match) + (string-append match " -Wl,-rpath=" out "/lib")))))) + (add-before 'install 'omit-obsolete-lookup_nis.so-link + ;; Building lookup_yp.so depends on $(YPCLNT) but this doesn't, + ;; leading to a make error. Since it's broken, comment it out. + (lambda _ + (substitute* "modules/Makefile" + (("ln -fs lookup_yp.so" match) + (string-append "# " match)))))))) + (native-inputs + (list bison flex pkg-config rpcsvc-proto)) + (inputs + (list cyrus-sasl + e2fsprogs ; for e[234]fsck + libtirpc + libxml2 ; needed for LDAP, SASL + mit-krb5 ; needed for LDAP, SASL + nfs-utils ; for mount.nfs + openldap + openssl ; needed for SASL + ; sssd + util-linux)) ; for mount, umount + ;; XXX A directory index is the closest thing this has to a home page. + (home-page "https://www.kernel.org/pub/linux/daemons/autofs/") + (synopsis "Kernel-based automounter for Linux") + (description + "Autofs is a kernel-based automounter for use with the Linux autofs4 +module. It automatically mounts selected file systems when they are used and +unmounts them after a set period of inactivity. This provides +centrally-managed, consistent file names for users and applications, even in a +large and/or frequently changing (network) environment.") + ;; fedfs/ is GPL-2-only but not built. + (license (list license:bsd-3 ; modules/cyrus-sasl.c + license:gpl2+)))) ; the rest From 59c66197584de0ce5fbcb344dacabdf427f5db2b Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Wed, 15 Dec 2021 09:34:44 +0100 Subject: [PATCH 178/383] missing dependancies --- glicid/packages/file-systems.scm | 1 + 1 file changed, 1 insertion(+) diff --git a/glicid/packages/file-systems.scm b/glicid/packages/file-systems.scm index 02c0535..e74b37e 100644 --- a/glicid/packages/file-systems.scm +++ b/glicid/packages/file-systems.scm @@ -5,6 +5,7 @@ #:use-module (guix git-download) #:use-module (guix utils) #:use-module (guix build-system gnu) + #:use-module (gnu packages cyrus-sasl) ) From a0143d59b792acef2ef44b38d3529256ecdd7d7a Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Wed, 15 Dec 2021 09:37:47 +0100 Subject: [PATCH 179/383] missing dep --- glicid/packages/file-systems.scm | 1 + 1 file changed, 1 insertion(+) diff --git a/glicid/packages/file-systems.scm b/glicid/packages/file-systems.scm index e74b37e..43bc63e 100644 --- a/glicid/packages/file-systems.scm +++ b/glicid/packages/file-systems.scm @@ -6,6 +6,7 @@ #:use-module (guix utils) #:use-module (guix build-system gnu) #:use-module (gnu packages cyrus-sasl) + #:use-module (gnu packages linux) ) From 1777ff3f07f3494c2b399f40813793517289a832 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Wed, 15 Dec 2021 09:40:35 +0100 Subject: [PATCH 180/383] missing dep --- glicid/packages/file-systems.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glicid/packages/file-systems.scm b/glicid/packages/file-systems.scm index 43bc63e..4f21cd8 100644 --- a/glicid/packages/file-systems.scm +++ b/glicid/packages/file-systems.scm @@ -7,7 +7,7 @@ #:use-module (guix build-system gnu) #:use-module (gnu packages cyrus-sasl) #:use-module (gnu packages linux) - + #:use-module (gnu packages onc-rpc) ) (define-public autofs-glicid From a8a6beba0ec7c12b2de5f505d411ae3ab45128cb Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Wed, 15 Dec 2021 09:44:35 +0100 Subject: [PATCH 181/383] missing dep --- glicid/packages/file-systems.scm | 1 + 1 file changed, 1 insertion(+) diff --git a/glicid/packages/file-systems.scm b/glicid/packages/file-systems.scm index 4f21cd8..3fa9a55 100644 --- a/glicid/packages/file-systems.scm +++ b/glicid/packages/file-systems.scm @@ -8,6 +8,7 @@ #:use-module (gnu packages cyrus-sasl) #:use-module (gnu packages linux) #:use-module (gnu packages onc-rpc) + #:use-module (gnu packages xml) ) (define-public autofs-glicid From 513fcb4b9b2abe4f08ea5b3243763b7414cc6da4 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Wed, 15 Dec 2021 09:47:02 +0100 Subject: [PATCH 182/383] missing dep --- glicid/packages/file-systems.scm | 1 + 1 file changed, 1 insertion(+) diff --git a/glicid/packages/file-systems.scm b/glicid/packages/file-systems.scm index 3fa9a55..1348392 100644 --- a/glicid/packages/file-systems.scm +++ b/glicid/packages/file-systems.scm @@ -9,6 +9,7 @@ #:use-module (gnu packages linux) #:use-module (gnu packages onc-rpc) #:use-module (gnu packages xml) + #:use-module (gnu packages kerberos) ) (define-public autofs-glicid From d01bc1e679bf29b9518c196ab898beaaaa311769 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Wed, 15 Dec 2021 09:49:10 +0100 Subject: [PATCH 183/383] missing dep --- glicid/packages/file-systems.scm | 1 + 1 file changed, 1 insertion(+) diff --git a/glicid/packages/file-systems.scm b/glicid/packages/file-systems.scm index 1348392..d623094 100644 --- a/glicid/packages/file-systems.scm +++ b/glicid/packages/file-systems.scm @@ -10,6 +10,7 @@ #:use-module (gnu packages onc-rpc) #:use-module (gnu packages xml) #:use-module (gnu packages kerberos) + #:use-module (gnu packages nfs) ) (define-public autofs-glicid From b33fbe70e258d7f4933a0d9d8549e938e4646276 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Wed, 15 Dec 2021 09:52:36 +0100 Subject: [PATCH 184/383] missing dep --- glicid/packages/file-systems.scm | 1 + 1 file changed, 1 insertion(+) diff --git a/glicid/packages/file-systems.scm b/glicid/packages/file-systems.scm index d623094..196feae 100644 --- a/glicid/packages/file-systems.scm +++ b/glicid/packages/file-systems.scm @@ -11,6 +11,7 @@ #:use-module (gnu packages xml) #:use-module (gnu packages kerberos) #:use-module (gnu packages nfs) + #:use-module (gnu packages openldap) ) (define-public autofs-glicid From 406b27cf74890e59c3ea8914fe27933bb97566d8 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Wed, 15 Dec 2021 10:09:16 +0100 Subject: [PATCH 185/383] missing dep --- glicid/packages/file-systems.scm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/glicid/packages/file-systems.scm b/glicid/packages/file-systems.scm index 196feae..cff99b0 100644 --- a/glicid/packages/file-systems.scm +++ b/glicid/packages/file-systems.scm @@ -12,6 +12,8 @@ #:use-module (gnu packages kerberos) #:use-module (gnu packages nfs) #:use-module (gnu packages openldap) + #:use-module (gnu packages tls) + ) (define-public autofs-glicid From a31f1fa2d0589afeec01fa185c5b25c353aa7b49 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Wed, 15 Dec 2021 10:21:04 +0100 Subject: [PATCH 186/383] missing dep --- glicid/packages/file-systems.scm | 1 + 1 file changed, 1 insertion(+) diff --git a/glicid/packages/file-systems.scm b/glicid/packages/file-systems.scm index cff99b0..2166419 100644 --- a/glicid/packages/file-systems.scm +++ b/glicid/packages/file-systems.scm @@ -13,6 +13,7 @@ #:use-module (gnu packages nfs) #:use-module (gnu packages openldap) #:use-module (gnu packages tls) + #:use-module (gnu packages bison) ) From 0050f84e899448914f29682fe541559a0743ec98 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Wed, 15 Dec 2021 10:25:11 +0100 Subject: [PATCH 187/383] missing dep --- glicid/packages/file-systems.scm | 1 + 1 file changed, 1 insertion(+) diff --git a/glicid/packages/file-systems.scm b/glicid/packages/file-systems.scm index 2166419..8fa853d 100644 --- a/glicid/packages/file-systems.scm +++ b/glicid/packages/file-systems.scm @@ -14,6 +14,7 @@ #:use-module (gnu packages openldap) #:use-module (gnu packages tls) #:use-module (gnu packages bison) + #:use-module (gnu packages flex) ) From 0974571660acf3b6f760c76d74e4c116037190f7 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Wed, 15 Dec 2021 10:39:38 +0100 Subject: [PATCH 188/383] missing dep --- glicid/packages/file-systems.scm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/glicid/packages/file-systems.scm b/glicid/packages/file-systems.scm index 8fa853d..0ce572b 100644 --- a/glicid/packages/file-systems.scm +++ b/glicid/packages/file-systems.scm @@ -15,6 +15,8 @@ #:use-module (gnu packages tls) #:use-module (gnu packages bison) #:use-module (gnu packages flex) + #:use-module (gnu packages flex) + #:use-module (gnu packages pkg-config) ) From e2c417887b479b2ac18c3369ec115b255c358b8c Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Thu, 16 Dec 2021 12:22:20 +0100 Subject: [PATCH 189/383] updating openldap --- glicid/packages/openldap.scm | 48 +++++++++++++++++++++++++++++++++++- 1 file changed, 47 insertions(+), 1 deletion(-) diff --git a/glicid/packages/openldap.scm b/glicid/packages/openldap.scm index bc89f38..6f0c35a 100644 --- a/glicid/packages/openldap.scm +++ b/glicid/packages/openldap.scm @@ -13,7 +13,53 @@ #:use-module (gnu packages tls) ) -(define-public openldap +(define-public openldap-2.6.0 + (package + (inherit openldap-2.5.7) + (name "openldap") + (version "2.6.0") + (source (origin + (method url-fetch) + (uri (list + (string-append "https://www.openldap.org/software/download/OpenLDAP/" "openldap-release/openldap-" version ".tgz") + (string-append "http://gpl.savoirfairelinux.net/pub/mirrors/openldap/" "openldap-release/openldap-" version ".tgz") + (string-append "http://repository.linagora.org/OpenLDAP/" "openldap-release/openldap-" version ".tgz") + (string-append "ftp://ftp.ntua.gr/mirror/OpenLDAP/" "openldap-release/openldap-" version ".tgz") + (string-append "https://mirror-hk.koddos.net/OpenLDAP/" "openldap-release/openldap-" version ".tgz") + (string-append "ftp://ftp.dti.ad.jp/pub/net/OpenLDAP/" "openldap-release/openldap-" version ".tgz") + (string-append "https://mirror.koddos.net/OpenLDAP/" "openldap-release/openldap-" version ".tgz") + (string-append "https://mirror.lyrahosting.com/OpenLDAP/" "openldap-release/openldap-" version ".tgz") + )) + (sha256 ( base32 "0kqswk8pxgnlibh0kz6py3a2x3yh9pfk6pyr2nx9lgjpmh75h75p" )) + ) + ) + ) +) + +(define-public openldap-2.5.9 + (package + (inherit openldap-2.5.7) + (name "openldap") + (version "2.5.9") + (source (origin + (method url-fetch) + (uri (list + (string-append "https://www.openldap.org/software/download/OpenLDAP/" "openldap-release/openldap-" version ".tgz") + (string-append "http://gpl.savoirfairelinux.net/pub/mirrors/openldap/" "openldap-release/openldap-" version ".tgz") + (string-append "http://repository.linagora.org/OpenLDAP/" "openldap-release/openldap-" version ".tgz") + (string-append "ftp://ftp.ntua.gr/mirror/OpenLDAP/" "openldap-release/openldap-" version ".tgz") + (string-append "https://mirror-hk.koddos.net/OpenLDAP/" "openldap-release/openldap-" version ".tgz") + (string-append "ftp://ftp.dti.ad.jp/pub/net/OpenLDAP/" "openldap-release/openldap-" version ".tgz") + (string-append "https://mirror.koddos.net/OpenLDAP/" "openldap-release/openldap-" version ".tgz") + (string-append "https://mirror.lyrahosting.com/OpenLDAP/" "openldap-release/openldap-" version ".tgz") + )) + (sha256 ( base32 "17pvwrj27jybbmjqpv0p7kd2qa4i6jnp134lz7cxa0sqrbs153n0" )) + ) + ) + ) +) + +(define-public openldap-2.5.7 (package (inherit gnu:openldap) (name "openldap") From 95e7e4b769ddd4d8a91e4bfa67a6d44cd3713f65 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Thu, 16 Dec 2021 12:25:57 +0100 Subject: [PATCH 190/383] updating openldap --- glicid/packages/openldap.scm | 92 ++++++++++++++++++------------------ 1 file changed, 46 insertions(+), 46 deletions(-) diff --git a/glicid/packages/openldap.scm b/glicid/packages/openldap.scm index 6f0c35a..fae6d5b 100644 --- a/glicid/packages/openldap.scm +++ b/glicid/packages/openldap.scm @@ -13,52 +13,6 @@ #:use-module (gnu packages tls) ) -(define-public openldap-2.6.0 - (package - (inherit openldap-2.5.7) - (name "openldap") - (version "2.6.0") - (source (origin - (method url-fetch) - (uri (list - (string-append "https://www.openldap.org/software/download/OpenLDAP/" "openldap-release/openldap-" version ".tgz") - (string-append "http://gpl.savoirfairelinux.net/pub/mirrors/openldap/" "openldap-release/openldap-" version ".tgz") - (string-append "http://repository.linagora.org/OpenLDAP/" "openldap-release/openldap-" version ".tgz") - (string-append "ftp://ftp.ntua.gr/mirror/OpenLDAP/" "openldap-release/openldap-" version ".tgz") - (string-append "https://mirror-hk.koddos.net/OpenLDAP/" "openldap-release/openldap-" version ".tgz") - (string-append "ftp://ftp.dti.ad.jp/pub/net/OpenLDAP/" "openldap-release/openldap-" version ".tgz") - (string-append "https://mirror.koddos.net/OpenLDAP/" "openldap-release/openldap-" version ".tgz") - (string-append "https://mirror.lyrahosting.com/OpenLDAP/" "openldap-release/openldap-" version ".tgz") - )) - (sha256 ( base32 "0kqswk8pxgnlibh0kz6py3a2x3yh9pfk6pyr2nx9lgjpmh75h75p" )) - ) - ) - ) -) - -(define-public openldap-2.5.9 - (package - (inherit openldap-2.5.7) - (name "openldap") - (version "2.5.9") - (source (origin - (method url-fetch) - (uri (list - (string-append "https://www.openldap.org/software/download/OpenLDAP/" "openldap-release/openldap-" version ".tgz") - (string-append "http://gpl.savoirfairelinux.net/pub/mirrors/openldap/" "openldap-release/openldap-" version ".tgz") - (string-append "http://repository.linagora.org/OpenLDAP/" "openldap-release/openldap-" version ".tgz") - (string-append "ftp://ftp.ntua.gr/mirror/OpenLDAP/" "openldap-release/openldap-" version ".tgz") - (string-append "https://mirror-hk.koddos.net/OpenLDAP/" "openldap-release/openldap-" version ".tgz") - (string-append "ftp://ftp.dti.ad.jp/pub/net/OpenLDAP/" "openldap-release/openldap-" version ".tgz") - (string-append "https://mirror.koddos.net/OpenLDAP/" "openldap-release/openldap-" version ".tgz") - (string-append "https://mirror.lyrahosting.com/OpenLDAP/" "openldap-release/openldap-" version ".tgz") - )) - (sha256 ( base32 "17pvwrj27jybbmjqpv0p7kd2qa4i6jnp134lz7cxa0sqrbs153n0" )) - ) - ) - ) -) - (define-public openldap-2.5.7 (package (inherit gnu:openldap) @@ -128,3 +82,49 @@ )) ) ) + +(define-public openldap-2.6.0 + (package + (inherit openldap-2.5.7) + (name "openldap") + (version "2.6.0") + (source (origin + (method url-fetch) + (uri (list + (string-append "https://www.openldap.org/software/download/OpenLDAP/" "openldap-release/openldap-" version ".tgz") + (string-append "http://gpl.savoirfairelinux.net/pub/mirrors/openldap/" "openldap-release/openldap-" version ".tgz") + (string-append "http://repository.linagora.org/OpenLDAP/" "openldap-release/openldap-" version ".tgz") + (string-append "ftp://ftp.ntua.gr/mirror/OpenLDAP/" "openldap-release/openldap-" version ".tgz") + (string-append "https://mirror-hk.koddos.net/OpenLDAP/" "openldap-release/openldap-" version ".tgz") + (string-append "ftp://ftp.dti.ad.jp/pub/net/OpenLDAP/" "openldap-release/openldap-" version ".tgz") + (string-append "https://mirror.koddos.net/OpenLDAP/" "openldap-release/openldap-" version ".tgz") + (string-append "https://mirror.lyrahosting.com/OpenLDAP/" "openldap-release/openldap-" version ".tgz") + )) + (sha256 ( base32 "0kqswk8pxgnlibh0kz6py3a2x3yh9pfk6pyr2nx9lgjpmh75h75p" )) + ) + ) + ) +) + +(define-public openldap-2.5.9 + (package + (inherit openldap-2.5.7) + (name "openldap") + (version "2.5.9") + (source (origin + (method url-fetch) + (uri (list + (string-append "https://www.openldap.org/software/download/OpenLDAP/" "openldap-release/openldap-" version ".tgz") + (string-append "http://gpl.savoirfairelinux.net/pub/mirrors/openldap/" "openldap-release/openldap-" version ".tgz") + (string-append "http://repository.linagora.org/OpenLDAP/" "openldap-release/openldap-" version ".tgz") + (string-append "ftp://ftp.ntua.gr/mirror/OpenLDAP/" "openldap-release/openldap-" version ".tgz") + (string-append "https://mirror-hk.koddos.net/OpenLDAP/" "openldap-release/openldap-" version ".tgz") + (string-append "ftp://ftp.dti.ad.jp/pub/net/OpenLDAP/" "openldap-release/openldap-" version ".tgz") + (string-append "https://mirror.koddos.net/OpenLDAP/" "openldap-release/openldap-" version ".tgz") + (string-append "https://mirror.lyrahosting.com/OpenLDAP/" "openldap-release/openldap-" version ".tgz") + )) + (sha256 ( base32 "17pvwrj27jybbmjqpv0p7kd2qa4i6jnp134lz7cxa0sqrbs153n0" )) + ) + ) + ) +) From 75816817c290e7cdb84268d3774a951e6a343e5e Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Thu, 16 Dec 2021 12:28:17 +0100 Subject: [PATCH 191/383] updating openldap --- glicid/services/openldap.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glicid/services/openldap.scm b/glicid/services/openldap.scm index 6bb99ae..00e8136 100644 --- a/glicid/services/openldap.scm +++ b/glicid/services/openldap.scm @@ -17,7 +17,7 @@ openldap-configuration make-openldap-configuration openldap-configuration? (openldap openldap-configuration-openldap - (default openldap) + (default openldap-2.6.0) ) (uri openldap-configuration-uri (default "ldapi:// ldap://") From 2c0a9281350eb971414071947f9fdd6ded6016d9 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Thu, 16 Dec 2021 12:36:30 +0100 Subject: [PATCH 192/383] updating openldap --- glicid/packages/openldap.scm | 16 ++++++++-------- glicid/services/openldap.scm | 2 +- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/glicid/packages/openldap.scm b/glicid/packages/openldap.scm index fae6d5b..fc4c48c 100644 --- a/glicid/packages/openldap.scm +++ b/glicid/packages/openldap.scm @@ -13,11 +13,11 @@ #:use-module (gnu packages tls) ) -(define-public openldap-2.5.7 +(define-public openldap (package (inherit gnu:openldap) (name "openldap") - (version "2.5.7") + (version "2.6.0") (source (origin (method url-fetch) (uri (list @@ -30,7 +30,7 @@ (string-append "https://mirror.koddos.net/OpenLDAP/" "openldap-release/openldap-" version ".tgz") (string-append "https://mirror.lyrahosting.com/OpenLDAP/" "openldap-release/openldap-" version ".tgz") )) - (sha256 ( base32 "1ayr76sa5hjwldqzis5v71sbp88hd3hysc00gw1raqn33c05g5za" )) + (sha256 ( base32 "0kqswk8pxgnlibh0kz6py3a2x3yh9pfk6pyr2nx9lgjpmh75h75p" )) ) ) (build-system gnu-build-system) @@ -83,11 +83,11 @@ ) ) -(define-public openldap-2.6.0 +(define-public openldap-2.5.7 (package - (inherit openldap-2.5.7) + (inherit openldap) (name "openldap") - (version "2.6.0") + (version "2.5.7") (source (origin (method url-fetch) (uri (list @@ -100,7 +100,7 @@ (string-append "https://mirror.koddos.net/OpenLDAP/" "openldap-release/openldap-" version ".tgz") (string-append "https://mirror.lyrahosting.com/OpenLDAP/" "openldap-release/openldap-" version ".tgz") )) - (sha256 ( base32 "0kqswk8pxgnlibh0kz6py3a2x3yh9pfk6pyr2nx9lgjpmh75h75p" )) + (sha256 ( base32 "1ayr76sa5hjwldqzis5v71sbp88hd3hysc00gw1raqn33c05g5za" )) ) ) ) @@ -108,7 +108,7 @@ (define-public openldap-2.5.9 (package - (inherit openldap-2.5.7) + (inherit openldap) (name "openldap") (version "2.5.9") (source (origin diff --git a/glicid/services/openldap.scm b/glicid/services/openldap.scm index 00e8136..6bb99ae 100644 --- a/glicid/services/openldap.scm +++ b/glicid/services/openldap.scm @@ -17,7 +17,7 @@ openldap-configuration make-openldap-configuration openldap-configuration? (openldap openldap-configuration-openldap - (default openldap-2.6.0) + (default openldap) ) (uri openldap-configuration-uri (default "ldapi:// ldap://") From 127ea916d88350035e78127ee6d149e70d5a264e Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Thu, 16 Dec 2021 15:10:02 +0100 Subject: [PATCH 193/383] updating openldap --- glicid/packages/openldap.scm | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/glicid/packages/openldap.scm b/glicid/packages/openldap.scm index fc4c48c..e242137 100644 --- a/glicid/packages/openldap.scm +++ b/glicid/packages/openldap.scm @@ -128,3 +128,10 @@ ) ) ) + + +(define-public nss-pam-ldapd + (package + (inherit nss-pam-ldapd) + ) +) From c2d2a946401639177facc9e2b6099e48e76bf107 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Thu, 16 Dec 2021 15:20:48 +0100 Subject: [PATCH 194/383] updating openldap --- glicid/packages/openldap.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glicid/packages/openldap.scm b/glicid/packages/openldap.scm index e242137..57d4f83 100644 --- a/glicid/packages/openldap.scm +++ b/glicid/packages/openldap.scm @@ -132,6 +132,6 @@ (define-public nss-pam-ldapd (package - (inherit nss-pam-ldapd) + (inherit gnu:nss-pam-ldapd) ) ) From 9d92e99d6bb52c240ebdc3cb07afbd15ca2ddad2 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Thu, 16 Dec 2021 15:30:59 +0100 Subject: [PATCH 195/383] updating openldap --- glicid/packages/openldap.scm | 47 ++++++++++++++++++++++++++++++++++-- 1 file changed, 45 insertions(+), 2 deletions(-) diff --git a/glicid/packages/openldap.scm b/glicid/packages/openldap.scm index 57d4f83..8fe1c62 100644 --- a/glicid/packages/openldap.scm +++ b/glicid/packages/openldap.scm @@ -129,9 +129,52 @@ ) ) - (define-public nss-pam-ldapd (package - (inherit gnu:nss-pam-ldapd) + (name "nss-pam-ldapd") + (version "0.9.12") + (source (origin + (method url-fetch) + (uri (string-append "https://arthurdejong.org/nss-pam-ldapd/nss-pam-ldapd-" version ".tar.gz")) + (sha256 (base32 "050fzcmxmf6y15dlcffc4gxr3wkk7fliqqwhlwqzbjwk8vkn3mn6")) + )) + (build-system gnu-build-system) + (arguments + `( + #:configure-flags + (list (string-append + "--with-pam-seclib-dir=" (assoc-ref %outputs "out") "/lib/security/") + "--with-ldap-conf-file=/etc/nslcd.conf" + ) + #:phases + (modify-phases %standard-phases + (add-after 'unpack 'override-nslcd.conf-install-path + (lambda* (#:key outputs #:allow-other-keys) + (substitute* "Makefile.in" + ( + ("\\$\\(DESTDIR\\)\\$\\(NSLCD_CONF_PATH\\)") + (string-append (assoc-ref outputs "out") "/etc/nslcd.conf.example") + ) + ) + ) + ) + ) + ) + ) + (inputs `( + ("linux-pam" ,linux-pam) + ("openldap" ,openldap) + ("mit-krb5" ,mit-krb5) + ("python" ,python) + )) + (home-page "https://arthurdejong.org/nss-pam-ldapd") + (synopsis "NSS and PAM modules for LDAP") + (description "nss-pam-ldapd provides a @dfn{Name Service Switch} (NSS) +module that allows your LDAP server to provide user account, group, host name, +alias, netgroup, and basically any other information that you would normally +get from @file{/etc} flat files or NIS. It also provides a @dfn{Pluggable +Authentication Module} (PAM) to do identity and authentication management with +an LDAP server.") + (license lgpl2.1+) ) ) From d68a0dac2557dcf8ba99cf10fe644eade6b9e93f Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Thu, 16 Dec 2021 15:43:06 +0100 Subject: [PATCH 196/383] updating openldap --- glicid/packages/openldap.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/glicid/packages/openldap.scm b/glicid/packages/openldap.scm index 8fe1c62..d83d460 100644 --- a/glicid/packages/openldap.scm +++ b/glicid/packages/openldap.scm @@ -1,6 +1,7 @@ (define-module (glicid packages openldap) #:use-module (guix build-system gnu) #:use-module (guix download) + #:use-module ((guix licenses) #:prefix license:) #:use-module (guix packages) #:use-module (guix utils) #:use-module ((gnu packages openldap) #:prefix gnu:) @@ -175,6 +176,6 @@ alias, netgroup, and basically any other information that you would normally get from @file{/etc} flat files or NIS. It also provides a @dfn{Pluggable Authentication Module} (PAM) to do identity and authentication management with an LDAP server.") - (license lgpl2.1+) + (license license:lgpl2.1+) ) ) From 17ab133b8d6dbe2430cde2028c502dfabb5c1300 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Thu, 16 Dec 2021 15:47:21 +0100 Subject: [PATCH 197/383] updating openldap --- glicid/packages/openldap.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/glicid/packages/openldap.scm b/glicid/packages/openldap.scm index d83d460..ea834f4 100644 --- a/glicid/packages/openldap.scm +++ b/glicid/packages/openldap.scm @@ -4,11 +4,12 @@ #:use-module ((guix licenses) #:prefix license:) #:use-module (guix packages) #:use-module (guix utils) - #:use-module ((gnu packages openldap) #:prefix gnu:) #:use-module (gnu packages autotools) #:use-module (gnu packages compression) #:use-module (gnu packages databases) #:use-module (gnu packages libevent) + #:use-module (gnu packages linux) + #:use-module ((gnu packages openldap) #:prefix gnu:) #:use-module (gnu packages password-utils) #:use-module (gnu packages pkg-config) #:use-module (gnu packages tls) From 8676d7c85c3ce87cc77c6a22a713b206416d6d07 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Thu, 16 Dec 2021 15:49:57 +0100 Subject: [PATCH 198/383] updating openldap --- glicid/packages/openldap.scm | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/glicid/packages/openldap.scm b/glicid/packages/openldap.scm index ea834f4..c4e5d00 100644 --- a/glicid/packages/openldap.scm +++ b/glicid/packages/openldap.scm @@ -7,10 +7,12 @@ #:use-module (gnu packages autotools) #:use-module (gnu packages compression) #:use-module (gnu packages databases) + #:use-module (gnu packages kerberos) #:use-module (gnu packages libevent) #:use-module (gnu packages linux) #:use-module ((gnu packages openldap) #:prefix gnu:) #:use-module (gnu packages password-utils) + #:use-module (gnu packages python) #:use-module (gnu packages pkg-config) #:use-module (gnu packages tls) ) @@ -164,10 +166,10 @@ ) ) (inputs `( - ("linux-pam" ,linux-pam) - ("openldap" ,openldap) - ("mit-krb5" ,mit-krb5) - ("python" ,python) + ("linux-pam", linux-pam) + ("openldap", openldap) + ("mit-krb5", mit-krb5) + ("python", python) )) (home-page "https://arthurdejong.org/nss-pam-ldapd") (synopsis "NSS and PAM modules for LDAP") From 607e7d848cfef09d34e1defe43251889178191b8 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Thu, 16 Dec 2021 15:53:46 +0100 Subject: [PATCH 199/383] updating openldap --- glicid/packages/openldap.scm | 1 + 1 file changed, 1 insertion(+) diff --git a/glicid/packages/openldap.scm b/glicid/packages/openldap.scm index c4e5d00..b1ed362 100644 --- a/glicid/packages/openldap.scm +++ b/glicid/packages/openldap.scm @@ -47,6 +47,7 @@ ("wiredtiger", wiredtiger) ("snappy", snappy) ("lz4", lz4) + ("mariadb", mariadb) ,@(package-inputs gnu:openldap) )) (arguments '( From 29b616e1310d81206786a19bc71ca0896fee48d9 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Thu, 16 Dec 2021 16:13:17 +0100 Subject: [PATCH 200/383] updating openldap --- glicid/packages/openldap.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glicid/packages/openldap.scm b/glicid/packages/openldap.scm index b1ed362..7c4b0ab 100644 --- a/glicid/packages/openldap.scm +++ b/glicid/packages/openldap.scm @@ -47,7 +47,7 @@ ("wiredtiger", wiredtiger) ("snappy", snappy) ("lz4", lz4) - ("mariadb", mariadb) + ("unixodbc", unixodbc) ,@(package-inputs gnu:openldap) )) (arguments '( From 0a508dbe432f2b5ecc76562a39afb71984746246 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Thu, 16 Dec 2021 16:28:05 +0100 Subject: [PATCH 201/383] updating openldap --- glicid/packages/openldap.scm | 2 ++ glicid/packages/perl.scm | 25 +++++++++++++++++++++++++ 2 files changed, 27 insertions(+) create mode 100644 glicid/packages/perl.scm diff --git a/glicid/packages/openldap.scm b/glicid/packages/openldap.scm index 7c4b0ab..4b98915 100644 --- a/glicid/packages/openldap.scm +++ b/glicid/packages/openldap.scm @@ -15,6 +15,7 @@ #:use-module (gnu packages python) #:use-module (gnu packages pkg-config) #:use-module (gnu packages tls) + #:use-module (glicid packages perl) ) (define-public openldap @@ -77,6 +78,7 @@ "--with-tls=openssl" ) #:make-flags '("STRIP=") + #:parallel-build? #f #:phases (modify-phases %standard-phases (add-before 'build 'make-depend (lambda* (#:key input #:allow-other-keys) diff --git a/glicid/packages/perl.scm b/glicid/packages/perl.scm new file mode 100644 index 0000000..0d03cea --- /dev/null +++ b/glicid/packages/perl.scm @@ -0,0 +1,25 @@ +(define-module (glicid packages openldap) + #:use-module (guix build-system perl) + #:use-module (guix download) + #:use-module (guix packages) + #:use-module (guix utils) +) + +(define-public perl-extutils-embed + (package + (name "perl-extutils-embed") + (version "1.14") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://cpan/authors/id/D/DO/DOUGM/ExtUtils-Embed-" version ".tar.gz")) + (sha256 (base32 "1w55q0wz6i4k9p500mc4wmr8jndnczb6qqrd2m1mrnx13v2mbr7h")) + ) + ) + (build-system perl-build-system) + (home-page "https://metacpan.org/release/ExtUtils-Embed") + (synopsis "Utilities for embedding Perl in C/C++ applications") + (description "Utilities for embedding Perl in C/C++ applications") + (license #f) + ) +) From 6929a2ae635e76565947063a92eb9ba5e6bf8611 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Thu, 16 Dec 2021 16:39:39 +0100 Subject: [PATCH 202/383] updating openldap --- glicid/packages/perl.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glicid/packages/perl.scm b/glicid/packages/perl.scm index 0d03cea..7908889 100644 --- a/glicid/packages/perl.scm +++ b/glicid/packages/perl.scm @@ -1,4 +1,4 @@ -(define-module (glicid packages openldap) +(define-module (glicid perl openldap) #:use-module (guix build-system perl) #:use-module (guix download) #:use-module (guix packages) From 7fc029d51efc218e57b3d917cd715b0507eb723a Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Thu, 16 Dec 2021 17:07:02 +0100 Subject: [PATCH 203/383] updating openldap --- glicid/packages/openldap.scm | 1 + glicid/packages/perl.scm | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/glicid/packages/openldap.scm b/glicid/packages/openldap.scm index 4b98915..5569c13 100644 --- a/glicid/packages/openldap.scm +++ b/glicid/packages/openldap.scm @@ -49,6 +49,7 @@ ("snappy", snappy) ("lz4", lz4) ("unixodbc", unixodbc) + ("perl-extutils-embed", perl-extutils-embed) ,@(package-inputs gnu:openldap) )) (arguments '( diff --git a/glicid/packages/perl.scm b/glicid/packages/perl.scm index 7908889..e9c2d8d 100644 --- a/glicid/packages/perl.scm +++ b/glicid/packages/perl.scm @@ -1,4 +1,4 @@ -(define-module (glicid perl openldap) +(define-module (glicid packages perl) #:use-module (guix build-system perl) #:use-module (guix download) #:use-module (guix packages) From 0b629982127b115e2f80497b453cd1a730b8c494 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Thu, 16 Dec 2021 17:38:37 +0100 Subject: [PATCH 204/383] updating openldap --- glicid/packages/openldap.scm | 1 + glicid/packages/perl.scm | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/glicid/packages/openldap.scm b/glicid/packages/openldap.scm index 5569c13..3955c5f 100644 --- a/glicid/packages/openldap.scm +++ b/glicid/packages/openldap.scm @@ -186,3 +186,4 @@ an LDAP server.") (license license:lgpl2.1+) ) ) +openldap diff --git a/glicid/packages/perl.scm b/glicid/packages/perl.scm index e9c2d8d..d990919 100644 --- a/glicid/packages/perl.scm +++ b/glicid/packages/perl.scm @@ -17,6 +17,10 @@ ) ) (build-system perl-build-system) + (arguments '( + #:tests? #f + #:parallel-build? #f + )) (home-page "https://metacpan.org/release/ExtUtils-Embed") (synopsis "Utilities for embedding Perl in C/C++ applications") (description "Utilities for embedding Perl in C/C++ applications") From 213dae977ba5d122315e59aecf172dcd989a900e Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Thu, 16 Dec 2021 17:52:33 +0100 Subject: [PATCH 205/383] updating openldap --- glicid/packages/openldap.scm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/glicid/packages/openldap.scm b/glicid/packages/openldap.scm index 3955c5f..f56c096 100644 --- a/glicid/packages/openldap.scm +++ b/glicid/packages/openldap.scm @@ -15,7 +15,6 @@ #:use-module (gnu packages python) #:use-module (gnu packages pkg-config) #:use-module (gnu packages tls) - #:use-module (glicid packages perl) ) (define-public openldap @@ -49,7 +48,6 @@ ("snappy", snappy) ("lz4", lz4) ("unixodbc", unixodbc) - ("perl-extutils-embed", perl-extutils-embed) ,@(package-inputs gnu:openldap) )) (arguments '( @@ -77,6 +75,7 @@ "--disable-static" "--enable-shared" "--with-tls=openssl" + "--enable-perl=no" ; error with the beck_perl ) #:make-flags '("STRIP=") #:parallel-build? #f From 6f2c6524240222ef7fb3e1deb0d6f8666acff49c Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Thu, 16 Dec 2021 18:14:59 +0100 Subject: [PATCH 206/383] updating openldap --- glicid/packages/openldap.scm | 29 +++++++++++++++++------------ glicid/packages/perl.scm | 1 - 2 files changed, 17 insertions(+), 13 deletions(-) diff --git a/glicid/packages/openldap.scm b/glicid/packages/openldap.scm index f56c096..9aa843b 100644 --- a/glicid/packages/openldap.scm +++ b/glicid/packages/openldap.scm @@ -12,6 +12,7 @@ #:use-module (gnu packages linux) #:use-module ((gnu packages openldap) #:prefix gnu:) #:use-module (gnu packages password-utils) + #:use-module (gnu packages perl) #:use-module (gnu packages python) #:use-module (gnu packages pkg-config) #:use-module (gnu packages tls) @@ -19,7 +20,6 @@ (define-public openldap (package - (inherit gnu:openldap) (name "openldap") (version "2.6.0") (source (origin @@ -39,16 +39,24 @@ ) (build-system gnu-build-system) (inputs `( - ("libltdl", libltdl) - ("pkg-config", pkg-config) - ("libevent", libevent) - ("openssl", openssl) ("argon2", argon2) - ("wiredtiger", wiredtiger) - ("snappy", snappy) + ("cyrus-sasl", cyrus-sasl) + ("libevent", libevent) + ("libgcrypt", libgcrypt) + ("libltdl", libltdl) ("lz4", lz4) + ("openssl", openssl) + ("perl", perl) + ("pkg-config", pkg-config) + ("snappy", snappy) ("unixodbc", unixodbc) - ,@(package-inputs gnu:openldap) + ("wiredtiger", wiredtiger) + ("zlib", zlib) + )) + (native-inputs `( + ("bdb-5.3", bdb-5.3) + ("groff", groff) + ("libtool", libtool) )) (arguments '( ; this is needed because the make check does not work inside guix @@ -75,10 +83,8 @@ "--disable-static" "--enable-shared" "--with-tls=openssl" - "--enable-perl=no" ; error with the beck_perl ) #:make-flags '("STRIP=") - #:parallel-build? #f #:phases (modify-phases %standard-phases (add-before 'build 'make-depend (lambda* (#:key input #:allow-other-keys) @@ -170,8 +176,8 @@ ) (inputs `( ("linux-pam", linux-pam) - ("openldap", openldap) ("mit-krb5", mit-krb5) + ("openldap", openldap) ("python", python) )) (home-page "https://arthurdejong.org/nss-pam-ldapd") @@ -185,4 +191,3 @@ an LDAP server.") (license license:lgpl2.1+) ) ) -openldap diff --git a/glicid/packages/perl.scm b/glicid/packages/perl.scm index d990919..e27704c 100644 --- a/glicid/packages/perl.scm +++ b/glicid/packages/perl.scm @@ -19,7 +19,6 @@ (build-system perl-build-system) (arguments '( #:tests? #f - #:parallel-build? #f )) (home-page "https://metacpan.org/release/ExtUtils-Embed") (synopsis "Utilities for embedding Perl in C/C++ applications") From 97aadf7f0776748e225af546649e43a0683822d1 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Thu, 16 Dec 2021 18:18:15 +0100 Subject: [PATCH 207/383] updating openldap --- glicid/packages/openldap.scm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/glicid/packages/openldap.scm b/glicid/packages/openldap.scm index 9aa843b..33667fb 100644 --- a/glicid/packages/openldap.scm +++ b/glicid/packages/openldap.scm @@ -93,6 +93,10 @@ ) ) )) + (synopsis "Implementation of the Lightweight Directory Access Protocol") + (description "OpenLDAP is a free implementation of the Lightweight Directory Access Protocol.") + (license openldap2.8) + (home-page "https://www.openldap.org/") ) ) From 8da08092f4d47dd0afff5f4c6504867f588bb5d7 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Thu, 16 Dec 2021 18:23:10 +0100 Subject: [PATCH 208/383] updating openldap --- glicid/packages/openldap.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glicid/packages/openldap.scm b/glicid/packages/openldap.scm index 33667fb..1a5ca51 100644 --- a/glicid/packages/openldap.scm +++ b/glicid/packages/openldap.scm @@ -95,7 +95,7 @@ )) (synopsis "Implementation of the Lightweight Directory Access Protocol") (description "OpenLDAP is a free implementation of the Lightweight Directory Access Protocol.") - (license openldap2.8) + (license license:openldap2.8) (home-page "https://www.openldap.org/") ) ) From 3554465fdd66e2bf08976cb59320847842324301 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Thu, 16 Dec 2021 18:25:45 +0100 Subject: [PATCH 209/383] updating openldap --- glicid/packages/openldap.scm | 1 + 1 file changed, 1 insertion(+) diff --git a/glicid/packages/openldap.scm b/glicid/packages/openldap.scm index 1a5ca51..fe0056e 100644 --- a/glicid/packages/openldap.scm +++ b/glicid/packages/openldap.scm @@ -6,6 +6,7 @@ #:use-module (guix utils) #:use-module (gnu packages autotools) #:use-module (gnu packages compression) + #:use-module (gnu packages cyrus-sasl) #:use-module (gnu packages databases) #:use-module (gnu packages kerberos) #:use-module (gnu packages libevent) From 663ae7a8847c43749dc9547fcd62f3cbb1d1a11b Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Thu, 16 Dec 2021 18:30:02 +0100 Subject: [PATCH 210/383] updating openldap --- glicid/packages/openldap.scm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/glicid/packages/openldap.scm b/glicid/packages/openldap.scm index fe0056e..807aff7 100644 --- a/glicid/packages/openldap.scm +++ b/glicid/packages/openldap.scm @@ -8,6 +8,9 @@ #:use-module (gnu packages compression) #:use-module (gnu packages cyrus-sasl) #:use-module (gnu packages databases) + #:use-module (gnu packages dbm) + #:use-module (gnu packages gnupg) + #:use-module (gnu packages groff) #:use-module (gnu packages kerberos) #:use-module (gnu packages libevent) #:use-module (gnu packages linux) @@ -55,7 +58,7 @@ ("zlib", zlib) )) (native-inputs `( - ("bdb-5.3", bdb-5.3) + ("bdb", bdb) ("groff", groff) ("libtool", libtool) )) From 6e7d33d3b680810db61818ace087e82e77fe82b6 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Thu, 16 Dec 2021 18:31:38 +0100 Subject: [PATCH 211/383] updating openldap --- glicid/packages/openldap.scm | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/glicid/packages/openldap.scm b/glicid/packages/openldap.scm index 807aff7..d6ae3d9 100644 --- a/glicid/packages/openldap.scm +++ b/glicid/packages/openldap.scm @@ -30,13 +30,6 @@ (method url-fetch) (uri (list (string-append "https://www.openldap.org/software/download/OpenLDAP/" "openldap-release/openldap-" version ".tgz") - (string-append "http://gpl.savoirfairelinux.net/pub/mirrors/openldap/" "openldap-release/openldap-" version ".tgz") - (string-append "http://repository.linagora.org/OpenLDAP/" "openldap-release/openldap-" version ".tgz") - (string-append "ftp://ftp.ntua.gr/mirror/OpenLDAP/" "openldap-release/openldap-" version ".tgz") - (string-append "https://mirror-hk.koddos.net/OpenLDAP/" "openldap-release/openldap-" version ".tgz") - (string-append "ftp://ftp.dti.ad.jp/pub/net/OpenLDAP/" "openldap-release/openldap-" version ".tgz") - (string-append "https://mirror.koddos.net/OpenLDAP/" "openldap-release/openldap-" version ".tgz") - (string-append "https://mirror.lyrahosting.com/OpenLDAP/" "openldap-release/openldap-" version ".tgz") )) (sha256 ( base32 "0kqswk8pxgnlibh0kz6py3a2x3yh9pfk6pyr2nx9lgjpmh75h75p" )) ) @@ -113,13 +106,6 @@ (method url-fetch) (uri (list (string-append "https://www.openldap.org/software/download/OpenLDAP/" "openldap-release/openldap-" version ".tgz") - (string-append "http://gpl.savoirfairelinux.net/pub/mirrors/openldap/" "openldap-release/openldap-" version ".tgz") - (string-append "http://repository.linagora.org/OpenLDAP/" "openldap-release/openldap-" version ".tgz") - (string-append "ftp://ftp.ntua.gr/mirror/OpenLDAP/" "openldap-release/openldap-" version ".tgz") - (string-append "https://mirror-hk.koddos.net/OpenLDAP/" "openldap-release/openldap-" version ".tgz") - (string-append "ftp://ftp.dti.ad.jp/pub/net/OpenLDAP/" "openldap-release/openldap-" version ".tgz") - (string-append "https://mirror.koddos.net/OpenLDAP/" "openldap-release/openldap-" version ".tgz") - (string-append "https://mirror.lyrahosting.com/OpenLDAP/" "openldap-release/openldap-" version ".tgz") )) (sha256 ( base32 "1ayr76sa5hjwldqzis5v71sbp88hd3hysc00gw1raqn33c05g5za" )) ) @@ -136,13 +122,6 @@ (method url-fetch) (uri (list (string-append "https://www.openldap.org/software/download/OpenLDAP/" "openldap-release/openldap-" version ".tgz") - (string-append "http://gpl.savoirfairelinux.net/pub/mirrors/openldap/" "openldap-release/openldap-" version ".tgz") - (string-append "http://repository.linagora.org/OpenLDAP/" "openldap-release/openldap-" version ".tgz") - (string-append "ftp://ftp.ntua.gr/mirror/OpenLDAP/" "openldap-release/openldap-" version ".tgz") - (string-append "https://mirror-hk.koddos.net/OpenLDAP/" "openldap-release/openldap-" version ".tgz") - (string-append "ftp://ftp.dti.ad.jp/pub/net/OpenLDAP/" "openldap-release/openldap-" version ".tgz") - (string-append "https://mirror.koddos.net/OpenLDAP/" "openldap-release/openldap-" version ".tgz") - (string-append "https://mirror.lyrahosting.com/OpenLDAP/" "openldap-release/openldap-" version ".tgz") )) (sha256 ( base32 "17pvwrj27jybbmjqpv0p7kd2qa4i6jnp134lz7cxa0sqrbs153n0" )) ) From 4b96be0f850be5d86852bc44d967c80eb50fc932 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 17 Dec 2021 11:00:10 +0100 Subject: [PATCH 212/383] adding making required directory by services --- glicid/services/openldap.scm | 21 +++++++++--- glicid/services/parallel.scm | 63 +++++++++++++++++++++++++++--------- 2 files changed, 64 insertions(+), 20 deletions(-) diff --git a/glicid/services/openldap.scm b/glicid/services/openldap.scm index 6bb99ae..b1b704f 100644 --- a/glicid/services/openldap.scm +++ b/glicid/services/openldap.scm @@ -62,14 +62,25 @@ ) ) + +(define openldap-activation + (with-imported-modules '((guix build utils)) + #~(begin + (use-modules (guix build utils)) + (mkdir-p "/var/run/openldap") + (mkdir-p "/var/lib/ldap") + #t + ) + ) +) + (define openldap-service-type (service-type (name 'slapd) (extensions - (list ( - service-extension - shepherd-root-service-type - openldap-shepherd-service - )) + (list + (service-extension shepherd-root-service-type openldap-shepherd-service) + (service-extension activation-service-type openldap-activation) + ) ) (description "Run @uref{https://www.openldap.org, Openldap} community developped LDAP software.") ) diff --git a/glicid/services/parallel.scm b/glicid/services/parallel.scm index 7d08f32..b97f9f6 100644 --- a/glicid/services/parallel.scm +++ b/glicid/services/parallel.scm @@ -63,14 +63,24 @@ ) ) +(define munged-activation + (with-imported-modules '((guix build utils)) + #~(begin + (use-modules (guix build utils)) + (mkdir-p "/var/run/munge") + (mkdir-p "/var/lib/munge") + #t + ) + ) +) + (define munged-service-type (service-type (name 'munged) (extensions - (list ( - service-extension - shepherd-root-service-type - munged-service - )) + (list + (service-extension shepherd-root-service-type munged-service) + (service-extension activation-service-type munged-activation) + ) ) (description "Run munged") ) @@ -116,14 +126,25 @@ ) ) +(define slurmdbd-activation + (with-imported-modules '((guix build utils)) + #~(begin + (use-modules (guix build utils)) + (mkdir-p "/var/log/slurm") + (mkdir-p "/var/lib/slurm-archives") + (mkdir-p "/var/lib/slurm") + #t + ) + ) +) + (define slurmdbd-service-type (service-type (name 'slurmdbd) (extensions - (list ( - service-extension - shepherd-root-service-type - slurmdbd-service - )) + (list + (service-extension shepherd-root-service-type slurmdbd-service) + (service-extension activation-service-type slurmdbd-activation) + ) ) (description "Run slurmdbd") ) @@ -170,15 +191,27 @@ ) ) +(define slurmctld-activation + (with-imported-modules '((guix build utils)) + #~(begin + (use-modules (guix build utils)) + (mkdir-p "/var/log/slurm") + (mkdir-p "/var/lib/slurm-archives") + (mkdir-p "/var/lib/slurm") + #t + ) + ) +) + (define slurmctld-service-type (service-type (name 'slurmctld) (extensions - (list ( - service-extension - shepherd-root-service-type - slurmctld-service - )) + (list + (service-extension shepherd-root-service-type slurmctld-service) + (service-extension activation-service-type slurmctld-activation) + ) ) (description "Run slurmctld") ) ) + From 1813825be722dd14d542782c5adbc847488f4583 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 17 Dec 2021 11:09:24 +0100 Subject: [PATCH 213/383] adding making required directory by services --- glicid/services/openldap.scm | 4 ++-- glicid/services/parallel.scm | 12 ++++++------ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/glicid/services/openldap.scm b/glicid/services/openldap.scm index b1b704f..8cd4964 100644 --- a/glicid/services/openldap.scm +++ b/glicid/services/openldap.scm @@ -63,7 +63,7 @@ ) -(define openldap-activation +(define %openldap-activation (with-imported-modules '((guix build utils)) #~(begin (use-modules (guix build utils)) @@ -79,7 +79,7 @@ (extensions (list (service-extension shepherd-root-service-type openldap-shepherd-service) - (service-extension activation-service-type openldap-activation) + (service-extension activation-service-type (const %openldap-activation)) ) ) (description "Run @uref{https://www.openldap.org, Openldap} community developped LDAP software.") diff --git a/glicid/services/parallel.scm b/glicid/services/parallel.scm index b97f9f6..d2fa607 100644 --- a/glicid/services/parallel.scm +++ b/glicid/services/parallel.scm @@ -63,7 +63,7 @@ ) ) -(define munged-activation +(define %munged-activation (with-imported-modules '((guix build utils)) #~(begin (use-modules (guix build utils)) @@ -79,7 +79,7 @@ (extensions (list (service-extension shepherd-root-service-type munged-service) - (service-extension activation-service-type munged-activation) + (service-extension activation-service-type (const %munged-activation)) ) ) (description "Run munged") @@ -126,7 +126,7 @@ ) ) -(define slurmdbd-activation +(define %slurmdbd-activation (with-imported-modules '((guix build utils)) #~(begin (use-modules (guix build utils)) @@ -143,7 +143,7 @@ (extensions (list (service-extension shepherd-root-service-type slurmdbd-service) - (service-extension activation-service-type slurmdbd-activation) + (service-extension activation-service-type (const %slurmdbd-activation)) ) ) (description "Run slurmdbd") @@ -191,7 +191,7 @@ ) ) -(define slurmctld-activation +(define %slurmctld-activation (with-imported-modules '((guix build utils)) #~(begin (use-modules (guix build utils)) @@ -208,7 +208,7 @@ (extensions (list (service-extension shepherd-root-service-type slurmctld-service) - (service-extension activation-service-type slurmctld-activation) + (service-extension activation-service-type (const %slurmctld-activation)) ) ) (description "Run slurmctld") From 11c9dd2d0dfa3bc1b7ba17ff3d763581e81da545 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 17 Dec 2021 11:42:22 +0100 Subject: [PATCH 214/383] adding making required directory by services --- glicid/services/parallel.scm | 1 + 1 file changed, 1 insertion(+) diff --git a/glicid/services/parallel.scm b/glicid/services/parallel.scm index d2fa607..d6a4dda 100644 --- a/glicid/services/parallel.scm +++ b/glicid/services/parallel.scm @@ -133,6 +133,7 @@ (mkdir-p "/var/log/slurm") (mkdir-p "/var/lib/slurm-archives") (mkdir-p "/var/lib/slurm") + (chmod "0600" /etc/slurm/slurmdbd.conf") #t ) ) From e88d78bbe320b3647db58cca0bec2ff6a88a178f Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 17 Dec 2021 12:06:14 +0100 Subject: [PATCH 215/383] adding making required directory by services --- glicid/services/parallel.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glicid/services/parallel.scm b/glicid/services/parallel.scm index d6a4dda..59bb95c 100644 --- a/glicid/services/parallel.scm +++ b/glicid/services/parallel.scm @@ -133,7 +133,7 @@ (mkdir-p "/var/log/slurm") (mkdir-p "/var/lib/slurm-archives") (mkdir-p "/var/lib/slurm") - (chmod "0600" /etc/slurm/slurmdbd.conf") + (chmod "0600" "/etc/slurm/slurmdbd.conf") #t ) ) From a5323a55b6726848327b518a9cbc38e1eb97f41b Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 17 Dec 2021 12:24:44 +0100 Subject: [PATCH 216/383] updating openldap --- glicid/packages/openldap.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glicid/packages/openldap.scm b/glicid/packages/openldap.scm index d6ae3d9..4721782 100644 --- a/glicid/packages/openldap.scm +++ b/glicid/packages/openldap.scm @@ -44,7 +44,6 @@ ("lz4", lz4) ("openssl", openssl) ("perl", perl) - ("pkg-config", pkg-config) ("snappy", snappy) ("unixodbc", unixodbc) ("wiredtiger", wiredtiger) @@ -54,6 +53,7 @@ ("bdb", bdb) ("groff", groff) ("libtool", libtool) + ("pkg-config", pkg-config) )) (arguments '( ; this is needed because the make check does not work inside guix From f6f7a0692f8e5614e6651a54fa1cdf1cb41c5ebb Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Mon, 3 Jan 2022 13:10:37 +0100 Subject: [PATCH 217/383] adding custom sudo with ldap support --- glicid/packages/admin.scm | 119 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 119 insertions(+) create mode 100644 glicid/packages/admin.scm diff --git a/glicid/packages/admin.scm b/glicid/packages/admin.scm new file mode 100644 index 0000000..1a53c6d --- /dev/null +++ b/glicid/packages/admin.scm @@ -0,0 +1,119 @@ +(define-module (glicid packages admin) + #:use-module (gnu packages admin) + #:use-module (gnu packages base) + #:use-module (gnu packages hurd) + #:use-module (gnu packages linux) + #:use-module (gnu packages compression) + #:use-module (gnu packages groff) + #:use-module (gnu packages openldap) + #:use-module (gnu packages tls) + #:use-module (gnu packages cyrus-sasl) + #:use-module (guix build-system gnu) + #:use-module (guix download) + #:use-module ((guix licenses) #:prefix license:) + #:use-module (guix packages) + #:use-module (guix utils) +) + +(define-public sudo + (package + (name "sudo") + (version "1.9.8p2") + (source (origin + (method url-fetch) + (uri + (list + (string-append "https://www.sudo.ws/sudo/dist/sudo-" version ".tar.gz") + (string-append "ftp://ftp.sudo.ws/pub/sudo/OLD/sudo-" version ".tar.gz") + ) + ) + (sha256 (base32 "0b8gd15l2g22w4fhhz0gzmq5c8370klanmy2c1p3px6yly6qnfwy")) + (modules '((guix build utils))) + (snippet + '(begin + (delete-file-recursively "lib/zlib") + ) + ) + )) + (build-system gnu-build-system) + (outputs (list "out")) + (arguments + `(#:configure-flags + (list + (string-append "--docdir=" (assoc-ref %outputs "out") "/share/doc/" ,name "-" ,version) + "--with-logpath=/var/log/sudo.log" + "--with-rundir=/var/run/sudo" ; must be cleaned up at boot time + "--with-vardir=/var/db/sudo" + "--with-iologdir=/var/log/sudo-io" + "--enable-sasl" + "--with-ldap" + "--enable-openssl" + "--with-nsswitch" + "--with-pam-login" + ;; 'visudo.c' expects _PATH_MV to be defined, but glibc doesn't provide it. + (string-append "CPPFLAGS=-D_PATH_MV='\"" (assoc-ref %build-inputs "coreutils") "/bin/mv\"'") + ) + ;; Avoid non-determinism; see . + #:parallel-build? #f + #:phases + (modify-phases %standard-phases + (add-before 'configure 'pre-configure + (lambda _ + (substitute* "src/sudo_usage.h.in" + ;; Do not capture 'configure' arguments since we would + ;; unduly retain references, and also because the + ;; CPPFLAGS above would close the string literal prematurely. + (("@CONFIGURE_ARGS@") "\"\"") + ) + (substitute* (find-files "." "Makefile\\.in") + ;; Allow installation as non-root. + (("-o [[:graph:]]+ -g [[:graph:]]+") "") + ;; Don't try to create /etc/sudoers. + (("^install: (.*)install-sudoers(.*)" _ before after) (string-append "install: " before after "\n")) + ;; Don't try to create /run/sudo. + (("\\$\\(DESTDIR\\)\\$\\(rundir\\)") "$(TMPDIR)/dummy") + ;; Install example sudo{,_logsrvd}.conf to the right place. + (("\\$\\(DESTDIR\\)\\$\\(sysconfdir\\)") "$(DESTDIR)/$(docdir)/examples") + ;; Don't try to create /var/db/sudo. + (("\\$\\(DESTDIR\\)\\$\\(vardir\\)") "$(TMPDIR)/dummy") + ) + ;; ‘Checking existing [/etc/]sudoers file for syntax errors’ is + ;; not the task of the build system, and fails. + (substitute* "plugins/sudoers/Makefile.in" + (("^pre-install:" match) (string-append match "\ndisabled-" match)) + ) + ) + ) + ) + ;; XXX: The 'testsudoers' test series expects user 'root' to exist, but + ;; the chroot's /etc/passwd doesn't have it. Turn off the tests. + #:tests? #f + ) + ) + (native-inputs + (list groff) + ) + (inputs + `(("coreutils" ,coreutils) + ,@(if (hurd-target?) + '() + `(("linux-pam" ,linux-pam)) + ) + ("zlib" ,zlib) + ("openldap" ,openldap) + ("openssl" ,openssl) + ("cyrus-sasl" ,cyrus-sasl) + ) + ) + (home-page "https://www.sudo.ws/") + (synopsis "Run commands as root") + (description + "Sudo (su \"do\") allows a system administrator to delegate authority to + give certain users (or groups of users) the ability to run some (or all) + commands as root or another user while providing an audit trail of the + commands and their arguments." + ) + ;; See . + (license license:x11) + ) +) From 36fe52d91eb61aed1cc0787b8522e1b1cb8f9425 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Wed, 5 Jan 2022 15:12:07 +0100 Subject: [PATCH 218/383] resolve conflict with sudo --- glicid/packages/admin.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/glicid/packages/admin.scm b/glicid/packages/admin.scm index 1a53c6d..56bbc6e 100644 --- a/glicid/packages/admin.scm +++ b/glicid/packages/admin.scm @@ -15,9 +15,9 @@ #:use-module (guix utils) ) -(define-public sudo +(define-public sudo-with-ldap (package - (name "sudo") + (name "sudo-with-ldap") (version "1.9.8p2") (source (origin (method url-fetch) From f3a98e94ed2557dacfbd08e3876ff69153c8843e Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Mon, 10 Jan 2022 14:20:51 +0100 Subject: [PATCH 219/383] add name for git file --- glicid/packages/glicid.scm | 1 + 1 file changed, 1 insertion(+) diff --git a/glicid/packages/glicid.scm b/glicid/packages/glicid.scm index 1380bb8..4c01664 100644 --- a/glicid/packages/glicid.scm +++ b/glicid/packages/glicid.scm @@ -296,6 +296,7 @@ (uri (git-reference (url "https://oauth2:glpat-RsX2GjsD2WrzXubiJeou@gitlab.univ-nantes.fr/CCIPL/legacy_code_mirror/grace.git") (commit (string-append "v" version)))) + (file-name (git-file-name name version)) (sha256 (base32 "1wb8v0q8xa2akas0swpgdgw1s66i50k7kh1g2f894hnk91fzx56z")) ) ) From 609959d4c317ab80a6757e81750dce4664cc8702 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Fri, 11 Feb 2022 23:01:03 +0100 Subject: [PATCH 220/383] bump ucx , rdma-core versions --- glicid/packages/fabric-management.scm | 30 +++++++++++++++++++++++++++ glicid/packages/linux.scm | 17 ++++++++++++++- 2 files changed, 46 insertions(+), 1 deletion(-) diff --git a/glicid/packages/fabric-management.scm b/glicid/packages/fabric-management.scm index 837271e..ad4c67c 100644 --- a/glicid/packages/fabric-management.scm +++ b/glicid/packages/fabric-management.scm @@ -19,5 +19,35 @@ ) ) +(define-public ucx-newer-1.11.2 + (package + (inherit gnu:ucx) + (name (string-append (package-name gnu:ucx) "-newer" )) + (version "1.11.2") + (source + (origin + (method url-fetch) + (uri (string-append "https://github.com/openucx/ucx/releases/download/v" version "/ucx-" version ".tar.gz" )) + (sha256 (base32 "1py62vjr0hgyqsdpr04jhn918i8ccn6ghjalwpcjpz24admgisyy")) + ) + ) + ) +) + +(define-public ucx-newer-1.12.0 + (package + (inherit gnu:ucx) + (name (string-append (package-name gnu:ucx) "-newer" )) + (version "1.12.0") + (source + (origin + (method url-fetch) + (uri (string-append "https://github.com/openucx/ucx/releases/download/v" version "/ucx-" version ".tar.gz" )) + (sha256 (base32 "1djxsakwjwnw21hhzsr02w6h2jd2k16bm4pah4iz6k8s5pg99sck")) + ) + ) + ) +) + (define local-ucx ucx-newer-1.11.2) (define-public ucx-latest local-ucx) diff --git a/glicid/packages/linux.scm b/glicid/packages/linux.scm index aee8dfa..4ffde2f 100644 --- a/glicid/packages/linux.scm +++ b/glicid/packages/linux.scm @@ -45,7 +45,22 @@ ) ) -(define local-rdma-core rdma-core-newer-38.0) +(define-public rdma-core-newer-39.0 + (package + (inherit gnu:rdma-core) + (name (string-append (package-name gnu:rdma-core) "-newer" )) + (version "39.0") + (source + (origin + (method url-fetch) + (uri (string-append "https://github.com/linux-rdma/rdma-core/releases/download/v" version "/rdma-core-" version ".tar.gz")) + (sha256 (base32 "0y13px3qgyh3szywjhikw183y54iym9sa60aw0sf51p3kzgg1spn")) + ) + ) + ) +) + +(define local-rdma-core rdma-core-newer-39.0) (define-public rdma-core-latest local-rdma-core) From 7d9bd3d8550280b2fe87f1ffe5046adbe0ec1307 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Fri, 11 Feb 2022 23:11:34 +0100 Subject: [PATCH 221/383] ucx-newer was still pointing to old version --- glicid/packages/fabric-management.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glicid/packages/fabric-management.scm b/glicid/packages/fabric-management.scm index ad4c67c..b17b0a3 100644 --- a/glicid/packages/fabric-management.scm +++ b/glicid/packages/fabric-management.scm @@ -49,5 +49,5 @@ ) ) -(define local-ucx ucx-newer-1.11.2) +(define local-ucx ucx-newer-1.12.0) (define-public ucx-latest local-ucx) From 87047e26231e2d6a7b775d1787547040482434e2 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Tue, 15 Feb 2022 22:09:56 +0100 Subject: [PATCH 222/383] add rust uutils /coreutils --- glicid/packages/rust.scm | 4240 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 4240 insertions(+) create mode 100644 glicid/packages/rust.scm diff --git a/glicid/packages/rust.scm b/glicid/packages/rust.scm new file mode 100644 index 0000000..7428d4e --- /dev/null +++ b/glicid/packages/rust.scm @@ -0,0 +1,4240 @@ +(define-module (glicid packages rust) + #:use-module (guix download) + #:use-module (guix packages) + #:use-module (guix build-system cargo) + #:use-module (gnu packages crates-io) + #:use-module (gnu packages crates-graphics) + #:use-module ((guix licenses) #:prefix license:) +) + +(define rust-clippy-0.0.302 rust-clippy-0.0) +(define rust-unicode-xid-0.0.4 rust-unicode-xid-0.0) + +(define-public rust-sieve-0.1 + (package + (name "rust-sieve") + (version "0.1.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "sieve" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "141wa6assczj8asmjw8bca6zj94v3xi3614814sdwc7xp2m8kr0r")))) + (build-system cargo-build-system) + (home-page "https://github.com/bemeurer/sieve") + (synopsis "Fast segmented sieve of Erasthotenes implemented in Rust") + (description "Fast segmented sieve of Erasthotenes implemented in Rust") + (license license:bsd-3))) + + + +(define-public rust-rlimit-0.4 + (package + (name "rust-rlimit") + (version "0.4.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "rlimit" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0dhm9jm1bvm4fk3839jw95gxs99yg0cwl9awwkyaclw3qdi2vc29")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-cfg-if" ,rust-cfg-if-0.1) ("rust-libc" ,rust-libc-0.2)))) + (home-page "https://github.com/Nugine/rlimit/") + (synopsis "Resource limits") + (description "Resource limits") + (license license:expat))) + +(define-public rust-pretty-assertions-1 + (package + (name "rust-pretty-assertions") + (version "1.1.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "pretty_assertions" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0l2xpgqa1a73fkbacn0qxngixwmyp1fb90k496sql095nx4bbmbn")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-ansi-term" ,rust-ansi-term-0.12) + ("rust-ctor" ,rust-ctor-0.1) + ("rust-diff" ,rust-diff-0.1) + ("rust-output-vt100" ,rust-output-vt100-0.1)))) + (home-page "https://github.com/colin-kiegel/rust-pretty-assertions") + (synopsis + "Overwrite `assert_eq!` and `assert_ne!` with drop-in replacements, adding colorful diffs.") + (description + "Overwrite `assert_eq!` and `assert_ne!` with drop-in replacements, adding +colorful diffs.") + (license (list license:expat license:asl2.0)))) + +(define-public rust-uu-yes-0.0.12 + (package + (name "rust-uu-yes") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_yes" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0fl8mdsv3v3zl4pv4d8pk573ylmlc6b9qz6dwb1661gdbmlk89nv")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-nix" ,rust-nix-0.23) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "yes ~ (uutils) repeatedly display a line with STRING (or 'y')") + (description + "yes ~ (uutils) repeatedly display a line with STRING (or 'y')") + (license license:expat))) + +(define-public rust-uu-whoami-0.0.12 + (package + (name "rust-uu-whoami") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_whoami" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0ykg4k1bnk26f816qbjbfhkhgljh9iffw3qld6qffmfah1398xy0")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-libc" ,rust-libc-0.2) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12) + ("rust-winapi" ,rust-winapi-0.3)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis + "whoami ~ (uutils) display user name of current effective user ID") + (description + "whoami ~ (uutils) display user name of current effective user ID") + (license license:expat))) + +(define-public rust-uu-who-0.0.12 + (package + (name "rust-uu-who") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_who" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "14wilyf8qys4c7na5dfpyr5c14kcq1idznn4wcjd3ypw52q6hcli")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis + "who ~ (uutils) display information about currently logged-in users") + (description + "who ~ (uutils) display information about currently logged-in users") + (license license:expat))) + +(define-public rust-utf-8-0.7 + (package + (name "rust-utf-8") + (version "0.7.6") + (source + (origin + (method url-fetch) + (uri (crate-uri "utf-8" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1a9ns3fvgird0snjkd3wbdhwd3zdpc2h5gpyybrfr6ra5pkqxk09")))) + (build-system cargo-build-system) + (arguments `(#:skip-build? #t)) + (home-page "https://github.com/SimonSapin/rust-utf8") + (synopsis "Incremental, zero-copy UTF-8 decoding with error handling") + (description "Incremental, zero-copy UTF-8 decoding with error handling") + (license (list license:expat license:asl2.0)))) + +(define-public rust-bytecount-0.6 + (package + (name "rust-bytecount") + (version "0.6.2") + (source + (origin + (method url-fetch) + (uri (crate-uri "bytecount" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0bklbbl5ml9ic18s9kn5iix1grrqc6sypz6hvfn8sjc6zhgv7zkj")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-packed-simd-2" ,rust-packed-simd-2-0.3)))) + (home-page "https://github.com/llogiq/bytecount") + (synopsis + "count occurrences of a given byte, or the number of UTF-8 code points, in a byte slice, fast") + (description + "count occurrences of a given byte, or the number of UTF-8 code points, in a byte +slice, fast") + (license (list license:asl2.0 license:expat)))) + +(define-public rust-uu-wc-0.0.12 + (package + (name "rust-uu-wc") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_wc" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0whss8lz770pkwdn7z4y8rh42r0mmvkx91d4yrwrhw7z32cfdzhd")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-bytecount" ,rust-bytecount-0.6) + ("rust-clap" ,rust-clap-2) + ("rust-libc" ,rust-libc-0.2) + ("rust-nix" ,rust-nix-0.23) + ("rust-unicode-width" ,rust-unicode-width-0.1) + ("rust-utf-8" ,rust-utf-8-0.7) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "wc ~ (uutils) display newline, word, and byte counts for input") + (description + "wc ~ (uutils) display newline, word, and byte counts for input") + (license license:expat))) + +(define-public rust-uu-users-0.0.12 + (package + (name "rust-uu-users") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_users" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0d58v8rhh37x6qs1z8i183xm4m7hvfcabjpz70ab7hvsdaxb8da3")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "users ~ (uutils) display names of currently logged-in users") + (description "users ~ (uutils) display names of currently logged-in users") + (license license:expat))) + +(define-public rust-uu-uptime-0.0.12 + (package + (name "rust-uu-uptime") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_uptime" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0zh8m7ary132x5p2kra00ri0jyab8b5wgm126j1frbxn3riqsf3i")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-chrono" ,rust-chrono-0.4) + ("rust-clap" ,rust-clap-2) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "uptime ~ (uutils) display dynamic system information") + (description "uptime ~ (uutils) display dynamic system information") + (license license:expat))) + +(define-public rust-uu-unlink-0.0.12 + (package + (name "rust-uu-unlink") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_unlink" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1ks54hh3691mycb6zzqak9s05a80l07mibmqvrismcy9b5kd0zyx")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "unlink ~ (uutils) remove a (file system) link to FILE") + (description "unlink ~ (uutils) remove a (file system) link to FILE") + (license license:expat))) + +(define-public rust-uu-uniq-0.0.12 + (package + (name "rust-uu-uniq") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_uniq" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0rskys26z41h5jl0vy1aywajhll67p5drv2xifs08gnjnz443imq")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-strum" ,rust-strum-0.21) + ("rust-strum-macros" ,rust-strum-macros-0.21) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "uniq ~ (uutils) filter identical adjacent lines from input") + (description "uniq ~ (uutils) filter identical adjacent lines from input") + (license license:expat))) + +(define-public rust-uu-unexpand-0.0.12 + (package + (name "rust-uu-unexpand") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_unexpand" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0qg2bjan33m4ar03z9yw4sivis8hz370shnj7mlcwqi4mxj5k9nv")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-unicode-width" ,rust-unicode-width-0.1) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "unexpand ~ (uutils) convert input spaces to tabs") + (description "unexpand ~ (uutils) convert input spaces to tabs") + (license license:expat))) + +(define-public rust-uu-uname-0.0.12 + (package + (name "rust-uu-uname") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_uname" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "05xx2yzz4wvavvac842jr1i8q8xjbw5y4r2b2wwg5m83jxf42n4m")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-platform-info" ,rust-platform-info-0.2) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "uname ~ (uutils) display system information") + (description "uname ~ (uutils) display system information") + (license license:expat))) + +(define-public rust-uu-tty-0.0.12 + (package + (name "rust-uu-tty") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_tty" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0c44jqn56zmy58rc3rskl91cdbyhkm8g8zjs2rfc5ylybq4vif5j")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-atty" ,rust-atty-0.2) + ("rust-clap" ,rust-clap-2) + ("rust-libc" ,rust-libc-0.2) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis + "tty ~ (uutils) display the name of the terminal connected to standard input") + (description + "tty ~ (uutils) display the name of the terminal connected to standard input") + (license license:expat))) + +(define-public rust-uu-tsort-0.0.12 + (package + (name "rust-uu-tsort") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_tsort" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1r2i7hjq7x2gf0ny171iix0r264lw90i2yic99savhi8rn2d19fv")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis + "tsort ~ (uutils) topologically sort input (partially ordered) pairs") + (description + "tsort ~ (uutils) topologically sort input (partially ordered) pairs") + (license license:expat))) + +(define-public rust-uu-truncate-0.0.12 + (package + (name "rust-uu-truncate") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_truncate" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "177c7mv0xc3vkchli09pixvm52grv3fmqh6ja2pmb581mwy9888x")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "truncate ~ (uutils) truncate (or extend) FILE to SIZE") + (description "truncate ~ (uutils) truncate (or extend) FILE to SIZE") + (license license:expat))) + +(define-public rust-uu-true-0.0.12 + (package + (name "rust-uu-true") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_true" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1gg01lds5hflbc4hh3g75l3l2z8c4pc1bbbs78hp3dbchq4wmzwf")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "true ~ (uutils) do nothing and succeed") + (description "true ~ (uutils) do nothing and succeed") + (license license:expat))) + +(define-public rust-uu-tr-0.0.12 + (package + (name "rust-uu-tr") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_tr" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "099943mpvmwgpkxiwk1dcbsgqx1vxg0h783kslfv72gs50wvr9ix")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-bit-set" ,rust-bit-set-0.5) + ("rust-clap" ,rust-clap-2) + ("rust-fnv" ,rust-fnv-1) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "tr ~ (uutils) translate characters within input and display") + (description "tr ~ (uutils) translate characters within input and display") + (license license:expat))) + +(define-public rust-uu-touch-0.0.12 + (package + (name "rust-uu-touch") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_touch" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0zhk66ckdalrvafyij3akqffpi0lin1cig6i4n0dkrcqwzzzrqnc")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-filetime" ,rust-filetime-0.2) + ("rust-time" ,rust-time-0.1) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "touch ~ (uutils) change FILE timestamps") + (description "touch ~ (uutils) change FILE timestamps") + (license license:expat))) + +(define-public rust-uu-timeout-0.0.12 + (package + (name "rust-uu-timeout") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_timeout" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0i7zn9qwc62c7yf8ynnyv32r533a6g654ji0ck16vk6nj4044gaz")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-libc" ,rust-libc-0.2) + ("rust-nix" ,rust-nix-0.23) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "timeout ~ (uutils) run COMMAND with a DURATION time limit") + (description "timeout ~ (uutils) run COMMAND with a DURATION time limit") + (license license:expat))) + +(define-public rust-uu-test-0.0.12 + (package + (name "rust-uu-test") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_test" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1ggwfm3d67h5dbsf68dipj5hkqsdkbp9k0vjs465s73ad6l0gx9f")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-libc" ,rust-libc-0.2) + ("rust-redox-syscall" ,rust-redox-syscall-0.2) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "test ~ (uutils) evaluate comparison and file type expressions") + (description + "test ~ (uutils) evaluate comparison and file type expressions") + (license license:expat))) + +(define-public rust-retain-mut-0.1 + (package + (name "rust-retain-mut") + (version "0.1.2") + (source + (origin + (method url-fetch) + (uri (crate-uri "retain_mut" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "18dvv6lmgw1xx29qjlhaazmhpvxvnc50iw1y40d3zqg195n2qmak")))) + (build-system cargo-build-system) + (arguments `(#:skip-build? #t)) + (home-page "https://github.com/upsuper/retain_mut") + (synopsis + "Provide retain_mut method that has the same functionality as retain but gives mutable borrow to the predicate.") + (description + "Provide retain_mut method that has the same functionality as retain but gives +mutable borrow to the predicate.") + (license license:expat))) + +(define-public rust-uu-tee-0.0.12 + (package + (name "rust-uu-tee") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_tee" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0ii7xsmgyrps21azhg3b1dygvj4m3lns06j6bvys52ba84vpfmqi")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-libc" ,rust-libc-0.2) + ("rust-retain-mut" ,rust-retain-mut-0.1) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "tee ~ (uutils) display input and copy to FILE") + (description "tee ~ (uutils) display input and copy to FILE") + (license license:expat))) + +(define-public rust-uu-tail-0.0.12 + (package + (name "rust-uu-tail") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_tail" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0b80l1346xf3g8fycylafxgiqq2ygvkv42b31wmvrzx0mza3zsw3")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-libc" ,rust-libc-0.2) + ("rust-nix" ,rust-nix-0.23) + ("rust-redox-syscall" ,rust-redox-syscall-0.2) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12) + ("rust-winapi" ,rust-winapi-0.3)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "tail ~ (uutils) display the last lines of input") + (description "tail ~ (uutils) display the last lines of input") + (license license:expat))) + +(define-public rust-uu-tac-0.0.12 + (package + (name "rust-uu-tac") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_tac" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0zks0dpaszl8i0br64d8n44l05mx1hl6s5gm87ys7afalpgdsjz1")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-memchr" ,rust-memchr-2) + ("rust-memmap2" ,rust-memmap2-0.5) + ("rust-regex" ,rust-regex-1) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis + "tac ~ (uutils) concatenate and display input lines in reverse order") + (description + "tac ~ (uutils) concatenate and display input lines in reverse order") + (license license:expat))) + +(define-public rust-uu-sync-0.0.12 + (package + (name "rust-uu-sync") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_sync" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0vzjrnkxmh6v277vn5rr3m0q09cz8yvvdxh9yzqzvbgpsaz7rhw5")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-libc" ,rust-libc-0.2) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12) + ("rust-winapi" ,rust-winapi-0.3)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "sync ~ (uutils) synchronize cache writes to storage") + (description "sync ~ (uutils) synchronize cache writes to storage") + (license license:expat))) + +(define-public rust-uu-sum-0.0.12 + (package + (name "rust-uu-sum") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_sum" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "055dv5rxl25f82b521p6kjwwqndahfzvd4fr811dz2s62c6n95ii")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "sum ~ (uutils) display checksum and block counts for input") + (description "sum ~ (uutils) display checksum and block counts for input") + (license license:expat))) + +(define-public rust-cpp-synmap-0.3 + (package + (name "rust-cpp-synmap") + (version "0.3.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "cpp_synmap" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1dlh5r7i051j7p4v4mq0jwm9xf6qwn772lzy7zflx1z2vff4yzl9")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-cpp-syn" ,rust-cpp-syn-0.12) + ("rust-cpp-synom" ,rust-cpp-synom-0.12) + ("rust-memchr" ,rust-memchr-1)))) + (home-page "https://github.com/mystor/rust-cpp") + (synopsis "Sourcemap and full crate parsing support for `cpp_syn`") + (description "Sourcemap and full crate parsing support for `cpp_syn`") + (license (list license:expat license:asl2.0)))) + +(define-public rust-cpp-synom-0.12 + (package + (name "rust-cpp-synom") + (version "0.12.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "cpp_synom" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0vbvqrbhkwqfl49g7iw0jsjd0nl3fy7i31f7a1hn8fr3jibdmj0z")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-unicode-xid" ,rust-unicode-xid-0.0.4)))) + (home-page "https://github.com/mystor/cpp_syn") + (synopsis "Stripped-down Nom parser used by cpp_syn") + (description "Stripped-down Nom parser used by cpp_syn") + (license (list license:expat license:asl2.0)))) + +(define-public rust-cpp-syn-0.12 + (package + (name "rust-cpp-syn") + (version "0.12.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "cpp_syn" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0kk4y7ad8hajpxladn1y0fk3i9gmk1v0r9hjzs94v05kyndn9kd8")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clippy" ,rust-clippy-0.0.302) + ("rust-cpp-synom" ,rust-cpp-synom-0.12) + ("rust-quote" ,rust-quote-0.3) + ("rust-unicode-xid" ,rust-unicode-xid-0.0.4)))) + (home-page "https://github.com/mystor/cpp_syn") + (synopsis "Internal rust-cpp nom parser for Rust source code") + (description "Internal rust-cpp nom parser for Rust source code") + (license (list license:expat license:asl2.0)))) + +(define-public rust-cpp-common-0.4 + (package + (name "rust-cpp-common") + (version "0.4.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "cpp_common" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0a6n4x01q3wz4bp86n4dqyf142l4l9y38vjv5yhgyflllx4r3qvr")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-cpp-syn" ,rust-cpp-syn-0.12) + ("rust-cpp-synom" ,rust-cpp-synom-0.12) + ("rust-lazy-static" ,rust-lazy-static-1) + ("rust-quote" ,rust-quote-0.3)))) + (home-page "https://github.com/mystor/rust-cpp") + (synopsis "Implementation details crate for the `cpp` crate") + (description "Implementation details crate for the `cpp` crate") + (license (list license:expat license:asl2.0)))) + +(define-public rust-cpp-build-0.4 + (package + (name "rust-cpp-build") + (version "0.4.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "cpp_build" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0if4a6s7lbld96ay5dfb5hf5n6jy9xwjk1q94x4asclmw3kk2xf4")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-cc" ,rust-cc-1) + ("rust-cpp-common" ,rust-cpp-common-0.4) + ("rust-cpp-syn" ,rust-cpp-syn-0.12) + ("rust-cpp-synmap" ,rust-cpp-synmap-0.3) + ("rust-cpp-synom" ,rust-cpp-synom-0.12) + ("rust-lazy-static" ,rust-lazy-static-1)))) + (home-page "https://github.com/mystor/rust-cpp") + (synopsis "Cargo build script for the `cpp` crate") + (description "Cargo build script for the `cpp` crate") + (license (list license:expat license:asl2.0)))) + +(define-public rust-if-rust-version-1 + (package + (name "rust-if-rust-version") + (version "1.0.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "if_rust_version" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1v6mj3vqy5g0x7gpyg5kiivm42qqgras69cxb0hrg4w67qrwpns6")))) + (build-system cargo-build-system) + (arguments `(#:skip-build? #t)) + (home-page "https://github.com/ogoffart/if_rust_version") + (synopsis "Macro to enable or disable code depending on the rust version") + (description + "Macro to enable or disable code depending on the rust version") + (license (list license:expat license:asl2.0)))) + +(define-public rust-cpp-common-0.5 + (package + (name "rust-cpp-common") + (version "0.5.6") + (source + (origin + (method url-fetch) + (uri (crate-uri "cpp_common" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "10zj9z639f7j1ccycix8k73j0ic77cyznyb7062l50gywllasy6z")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-lazy-static" ,rust-lazy-static-1) + ("rust-proc-macro2" ,rust-proc-macro2-1) + ("rust-syn" ,rust-syn-1)))) + (home-page "https://github.com/mystor/rust-cpp") + (synopsis "Implementation details crate for the `cpp` crate") + (description "Implementation details crate for the `cpp` crate") + (license (list license:expat license:asl2.0)))) + +(define-public rust-cpp-macros-0.5 + (package + (name "rust-cpp-macros") + (version "0.5.6") + (source + (origin + (method url-fetch) + (uri (crate-uri "cpp_macros" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "09gwm3j61y2y5ma1s55qd12pl7rfjnjzyqxv9v4an44cc4ga54sg")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-aho-corasick" ,rust-aho-corasick-0.7) + ("rust-byteorder" ,rust-byteorder-1) + ("rust-cpp-common" ,rust-cpp-common-0.5) + ("rust-if-rust-version" ,rust-if-rust-version-1) + ("rust-lazy-static" ,rust-lazy-static-1) + ("rust-proc-macro2" ,rust-proc-macro2-1) + ("rust-quote" ,rust-quote-1) + ("rust-syn" ,rust-syn-1)))) + (home-page "https://github.com/mystor/rust-cpp") + (synopsis "Procedural macro implementation for the `cpp` crate") + (description "Procedural macro implementation for the `cpp` crate") + (license (list license:expat license:asl2.0)))) + +(define-public rust-cpp-0.5 + (package + (name "rust-cpp") + (version "0.5.6") + (source + (origin + (method url-fetch) + (uri (crate-uri "cpp" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1s2hpy068k8461mdxpl4a7lm41ry9887zq3frg4xqj5y023a0xa8")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-cpp-macros" ,rust-cpp-macros-0.5)))) + (home-page "https://github.com/mystor/rust-cpp") + (synopsis "Inline C++ code closures") + (description "Inline C++ code closures") + (license (list license:expat license:asl2.0)))) + +(define-public rust-uu-stdbuf-libstdbuf-0.0.12 + (package + (name "rust-uu-stdbuf-libstdbuf") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_stdbuf_libstdbuf" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "17bjkrhvkrprv2kbgdh233iws7pvn72fhdqvy3sqi13ajbw95m8g")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-cpp" ,rust-cpp-0.5) + ("rust-cpp-build" ,rust-cpp-build-0.4) + ("rust-libc" ,rust-libc-0.2) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis + "stdbuf/libstdbuf ~ (uutils); dynamic library required for stdbuf") + (description + "stdbuf/libstdbuf ~ (uutils); dynamic library required for stdbuf") + (license license:expat))) + +(define-public rust-uu-stdbuf-0.0.12 + (package + (name "rust-uu-stdbuf") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_stdbuf" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "02vqfdf0lhs6yj6xx0mdfsrssdpzpgjbyww1js4kbw59i5kzcggy")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-tempfile" ,rust-tempfile-3) + ("rust-uu-stdbuf-libstdbuf" ,rust-uu-stdbuf-libstdbuf-0.0.12) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis + "stdbuf ~ (uutils) run COMMAND with modified standard stream buffering") + (description + "stdbuf ~ (uutils) run COMMAND with modified standard stream buffering") + (license license:expat))) + +(define-public rust-uu-stat-0.0.12 + (package + (name "rust-uu-stat") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_stat" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "07cifs7ksbdq3zqqqd2bdj63n5758rrj47nx1x7zjk6965l8fsqa")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "stat ~ (uutils) display FILE status") + (description "stat ~ (uutils) display FILE status") + (license license:expat))) + +(define-public rust-uu-split-0.0.12 + (package + (name "rust-uu-split") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_split" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1d1723zx5cw8l294fgm3b21ggh8faj6i6lbhrylwvm5lh2bgviqw")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "split ~ (uutils) split input into output files") + (description "split ~ (uutils) split input into output files") + (license license:expat))) + +(define-public rust-ouroboros-macro-0.10 + (package + (name "rust-ouroboros-macro") + (version "0.10.1") + (source + (origin + (method url-fetch) + (uri (crate-uri "ouroboros_macro" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0s6aic49lyclhas6bh1f84qfy31m333mcvnmn4v02v5rdrx8aqzl")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-inflector" ,rust-inflector-0.11) + ("rust-proc-macro-error" ,rust-proc-macro-error-1) + ("rust-proc-macro2" ,rust-proc-macro2-1) + ("rust-quote" ,rust-quote-1) + ("rust-syn" ,rust-syn-1)))) + (home-page "https://github.com/joshua-maros/ouroboros") + (synopsis "Proc macro for ouroboros crate.") + (description "Proc macro for ouroboros crate.") + (license (list license:expat license:asl2.0)))) + +(define-public rust-ouroboros-0.10 + (package + (name "rust-ouroboros") + (version "0.10.1") + (source + (origin + (method url-fetch) + (uri (crate-uri "ouroboros" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1phbp9wjp36bvkwlyvr2zznaack6xcvg0z1869r3i33iy5j6s8w4")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-aliasable" ,rust-aliasable-0.1) + ("rust-ouroboros-macro" ,rust-ouroboros-macro-0.10) + ("rust-stable-deref-trait" ,rust-stable-deref-trait-1)))) + (home-page "https://github.com/joshua-maros/ouroboros") + (synopsis "Easy, safe self-referential struct generation.") + (description "Easy, safe self-referential struct generation.") + (license (list license:expat license:asl2.0)))) + +(define-public rust-compare-0.1 + (package + (name "rust-compare") + (version "0.1.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "compare" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1lv84g7l04vc1g54z5sigz330xklhkljwl165vz7xi1fvga3608j")))) + (build-system cargo-build-system) + (arguments `(#:skip-build? #t)) + (home-page "https://github.com/contain-rs/compare") + (synopsis "Experimental comparators for collections to be generic over") + (description "Experimental comparators for collections to be generic over") + (license (list license:expat license:asl2.0)))) + +(define-public rust-binary-heap-plus-0.4 + (package + (name "rust-binary-heap-plus") + (version "0.4.1") + (source + (origin + (method url-fetch) + (uri (crate-uri "binary-heap-plus" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1mq6qs7lyckjjazj7apcndzhwhgz3r0nmrk1jf5137pzz0w8c1jg")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-compare" ,rust-compare-0.1) ("rust-serde" ,rust-serde-1)))) + (home-page "https://github.com/sekineh/binary-heap-plus-rs") + (synopsis + "Enhanced version of std::collections::BinaryHeap that supports max, min, and custom-order heaps.") + (description + "Enhanced version of std::collections::BinaryHeap that supports max, min, and +custom-order heaps.") + (license license:expat))) + +(define-public rust-uu-sort-0.0.12 + (package + (name "rust-uu-sort") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_sort" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1g4v5dbykn0l5cfa2ddsnslr91i0v1kpj4266ys5iarpvj2k8hmi")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-binary-heap-plus" ,rust-binary-heap-plus-0.4) + ("rust-clap" ,rust-clap-2) + ("rust-compare" ,rust-compare-0.1) + ("rust-ctrlc" ,rust-ctrlc-3) + ("rust-fnv" ,rust-fnv-1) + ("rust-itertools" ,rust-itertools-0.10) + ("rust-memchr" ,rust-memchr-2) + ("rust-ouroboros" ,rust-ouroboros-0.10) + ("rust-rand" ,rust-rand-0.7) + ("rust-rayon" ,rust-rayon-1) + ("rust-tempfile" ,rust-tempfile-3) + ("rust-unicode-width" ,rust-unicode-width-0.1) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "sort ~ (uutils) sort input lines") + (description "sort ~ (uutils) sort input lines") + (license license:expat))) + +(define-public rust-uu-sleep-0.0.12 + (package + (name "rust-uu-sleep") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_sleep" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0j3x5bqk66xhrx3jw0w49lz7grml4hhvg5s93hnmgz0v6cas51n0")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "sleep ~ (uutils) pause for DURATION") + (description "sleep ~ (uutils) pause for DURATION") + (license license:expat))) + +(define-public rust-uu-shuf-0.0.12 + (package + (name "rust-uu-shuf") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_shuf" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0fgr70yvmirwg1nnjwc62vrb8x676r2w33q7jiwjpx0lffv8rj50")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-rand" ,rust-rand-0.5) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "shuf ~ (uutils) display random permutations of input lines") + (description "shuf ~ (uutils) display random permutations of input lines") + (license license:expat))) + +(define-public rust-uu-shred-0.0.12 + (package + (name "rust-uu-shred") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_shred" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0zlynd918vqg6ag9zch2wxxxnlb14xhjzwwxwl1xggk2wm1gy7ym")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-libc" ,rust-libc-0.2) + ("rust-rand" ,rust-rand-0.7) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis + "shred ~ (uutils) hide former FILE contents with repeated overwrites") + (description + "shred ~ (uutils) hide former FILE contents with repeated overwrites") + (license license:expat))) + +(define-public rust-uu-seq-0.0.12 + (package + (name "rust-uu-seq") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_seq" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0y3rpv14w8lm3vhwzv6wq3nlshhy17f457dzdc9w8z5yarhcm62g")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-bigdecimal" ,rust-bigdecimal-0.3) + ("rust-clap" ,rust-clap-2) + ("rust-num-bigint" ,rust-num-bigint-0.4) + ("rust-num-traits" ,rust-num-traits-0.2) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "seq ~ (uutils) display a sequence of numbers") + (description "seq ~ (uutils) display a sequence of numbers") + (license license:expat))) + +(define-public rust-uu-runcon-0.0.12 + (package + (name "rust-uu-runcon") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_runcon" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "04p5y2gap5p0160j9rfnjz2kd35dsl2146wy62qdxlxvq3pqqdkh")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-fts-sys" ,rust-fts-sys-0.2) + ("rust-libc" ,rust-libc-0.2) + ("rust-selinux" ,rust-selinux-0.2) + ("rust-thiserror" ,rust-thiserror-1) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "runcon ~ (uutils) run command with specified security context") + (description + "runcon ~ (uutils) run command with specified security context") + (license license:expat))) + +(define-public rust-uu-rmdir-0.0.12 + (package + (name "rust-uu-rmdir") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_rmdir" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0b2kqmk6w6a5xh514ixwdyzg17b4izjnnia4l0jwmp93a1k5qwi6")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-libc" ,rust-libc-0.2) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "rmdir ~ (uutils) remove empty DIRECTORY") + (description "rmdir ~ (uutils) remove empty DIRECTORY") + (license license:expat))) + +(define-public rust-uu-rm-0.0.12 + (package + (name "rust-uu-rm") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_rm" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1m0c3ic220bvgkr4fwvangja4zx2kca43xnksw4mkf8kd37llb89")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-remove-dir-all" ,rust-remove-dir-all-0.5) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12) + ("rust-walkdir" ,rust-walkdir-2) + ("rust-winapi" ,rust-winapi-0.3)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "rm ~ (uutils) remove PATHNAME") + (description "rm ~ (uutils) remove PATHNAME") + (license license:expat))) + +(define-public rust-uu-relpath-0.0.12 + (package + (name "rust-uu-relpath") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_relpath" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1bcvbs2l7wgllvsgq3c205z6mshwmwsbmy4pl5lcvf8njl9gi1cp")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis + "relpath ~ (uutils) display relative path of PATHNAME_TO from PATHNAME_FROM") + (description + "relpath ~ (uutils) display relative path of PATHNAME_TO from PATHNAME_FROM") + (license license:expat))) + +(define-public rust-uu-realpath-0.0.12 + (package + (name "rust-uu-realpath") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_realpath" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1msgb9z1gn9pvmlx11lv40p53j8nnh9anrdw8ccckc38xhq82j3l")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "realpath ~ (uutils) display resolved absolute path of PATHNAME") + (description + "realpath ~ (uutils) display resolved absolute path of PATHNAME") + (license license:expat))) + +(define-public rust-uu-readlink-0.0.12 + (package + (name "rust-uu-readlink") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_readlink" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "039qf6k707lfvvlggja4fwrivyh9g1ambryyj1mqyvn7ylvba7c2")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-libc" ,rust-libc-0.2) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "readlink ~ (uutils) display resolved path of PATHNAME") + (description "readlink ~ (uutils) display resolved path of PATHNAME") + (license license:expat))) + +(define-public rust-uu-pwd-0.0.12 + (package + (name "rust-uu-pwd") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_pwd" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "149w4ikd9gparqb57bgyd6i2ppvz4pbvm3dxsgv4v2kbgshyx4vr")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "pwd ~ (uutils) display current working directory") + (description "pwd ~ (uutils) display current working directory") + (license license:expat))) + +(define-public rust-uu-ptx-0.0.12 + (package + (name "rust-uu-ptx") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_ptx" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0c3irsbcbwl61rkssbfcw7bbv1fxrgnr94b8hybw0r9dc9ydbpp7")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-aho-corasick" ,rust-aho-corasick-0.7) + ("rust-clap" ,rust-clap-2) + ("rust-libc" ,rust-libc-0.2) + ("rust-memchr" ,rust-memchr-2) + ("rust-regex" ,rust-regex-1) + ("rust-regex-syntax" ,rust-regex-syntax-0.6) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "ptx ~ (uutils) display a permuted index of input") + (description "ptx ~ (uutils) display a permuted index of input") + (license license:expat))) + +(define-public rust-uu-printf-0.0.12 + (package + (name "rust-uu-printf") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_printf" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "04d5n0v5ca71wfiy4lz9zd8abm6585l36nvgfirhbq1py3ad6vlc")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-itertools" ,rust-itertools-0.8) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "printf ~ (uutils) FORMAT and display ARGUMENTS") + (description "printf ~ (uutils) FORMAT and display ARGUMENTS") + (license license:expat))) + +(define-public rust-uu-printenv-0.0.12 + (package + (name "rust-uu-printenv") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_printenv" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "10yn8gkq7q303j57vbn8f0j5gzl8xskn2iwc7c0ikl1c6qk13x78")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "printenv ~ (uutils) display value of environment VAR") + (description "printenv ~ (uutils) display value of environment VAR") + (license license:expat))) + +(define-public rust-uu-pr-0.0.12 + (package + (name "rust-uu-pr") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_pr" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0djbn35agn8dm5zdqy2g96vqvnv0wvgjs1gxnili73fgw3xpm85m")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-chrono" ,rust-chrono-0.4) + ("rust-clap" ,rust-clap-2) + ("rust-getopts" ,rust-getopts-0.2) + ("rust-itertools" ,rust-itertools-0.10) + ("rust-quick-error" ,rust-quick-error-2) + ("rust-regex" ,rust-regex-1) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "pr ~ (uutils) convert text files for printing") + (description "pr ~ (uutils) convert text files for printing") + (license license:expat))) + +(define-public rust-uu-pinky-0.0.12 + (package + (name "rust-uu-pinky") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_pinky" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1x7iib6n9rxhj3vza3542j6dzpkzzzarp92lsw3k1prk2155nlq1")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "pinky ~ (uutils) display user information") + (description "pinky ~ (uutils) display user information") + (license license:expat))) + +(define-public rust-uu-pathchk-0.0.12 + (package + (name "rust-uu-pathchk") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_pathchk" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1j34ig3p8lnr4zd4j39hs75b2yx2fcf8s35vi3c36y6afkbc47wp")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-libc" ,rust-libc-0.2) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "pathchk ~ (uutils) diagnose invalid or non-portable PATHNAME") + (description + "pathchk ~ (uutils) diagnose invalid or non-portable PATHNAME") + (license license:expat))) + +(define-public rust-uu-paste-0.0.12 + (package + (name "rust-uu-paste") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_paste" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1mhppmw186xqdbrgqsal31rwr0ynn532a8wlm4p5b2nlqwrxgqy3")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "paste ~ (uutils) merge lines from inputs") + (description "paste ~ (uutils) merge lines from inputs") + (license license:expat))) + +(define-public rust-uu-od-0.0.12 + (package + (name "rust-uu-od") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_od" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1wxch9wsvcfj266qv5m507sy52wvm7rq5aba9nhgdqvkqslkmkw4")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-byteorder" ,rust-byteorder-1) + ("rust-clap" ,rust-clap-2) + ("rust-half" ,rust-half-1) + ("rust-libc" ,rust-libc-0.2) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "od ~ (uutils) display formatted representation of input") + (description "od ~ (uutils) display formatted representation of input") + (license license:expat))) + +(define-public rust-uu-numfmt-0.0.12 + (package + (name "rust-uu-numfmt") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_numfmt" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0alx0wpdkv5qkm8j769w947dcf1qnp4mqln0slknhw8cqabr2vjd")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "numfmt ~ (uutils) reformat NUMBER") + (description "numfmt ~ (uutils) reformat NUMBER") + (license license:expat))) + +(define-public rust-uu-nproc-0.0.12 + (package + (name "rust-uu-nproc") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_nproc" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1zgd47i0fqsslpjpxbqx182pl54iksv4qibm0p0yibl7f379m9m2")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-libc" ,rust-libc-0.2) + ("rust-num-cpus" ,rust-num-cpus-1) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis + "nproc ~ (uutils) display the number of processing units available") + (description + "nproc ~ (uutils) display the number of processing units available") + (license license:expat))) + +(define-public rust-uu-nohup-0.0.12 + (package + (name "rust-uu-nohup") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_nohup" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1j7llbz4jyiczhbpmjmxpnpd076950rf7lql6c6in4dz114q5ss5")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-atty" ,rust-atty-0.2) + ("rust-clap" ,rust-clap-2) + ("rust-libc" ,rust-libc-0.2) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "nohup ~ (uutils) run COMMAND, ignoring hangup signals") + (description "nohup ~ (uutils) run COMMAND, ignoring hangup signals") + (license license:expat))) + +(define-public rust-uu-nl-0.0.12 + (package + (name "rust-uu-nl") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_nl" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1mlb4k5j1dky9bv0fkhfqaw5v0wyp8j4afbix6klzhxc7yqjqwg4")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-aho-corasick" ,rust-aho-corasick-0.7) + ("rust-clap" ,rust-clap-2) + ("rust-libc" ,rust-libc-0.2) + ("rust-memchr" ,rust-memchr-2) + ("rust-regex" ,rust-regex-1) + ("rust-regex-syntax" ,rust-regex-syntax-0.6) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "nl ~ (uutils) display input with added line numbers") + (description "nl ~ (uutils) display input with added line numbers") + (license license:expat))) + +(define-public rust-uu-nice-0.0.12 + (package + (name "rust-uu-nice") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_nice" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "13j1jnb7y6af1kra15p3zc82jv04d0xvysmjh61flcjpfhf8aqid")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-libc" ,rust-libc-0.2) + ("rust-nix" ,rust-nix-0.23) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "nice ~ (uutils) run PROGRAM with modified scheduling priority") + (description + "nice ~ (uutils) run PROGRAM with modified scheduling priority") + (license license:expat))) + +(define-public rust-uu-mv-0.0.12 + (package + (name "rust-uu-mv") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_mv" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "06wqyfb64wqf3dwj48blivbm8y8gk8wshz9nj39m8h37qr0960wr")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-fs-extra" ,rust-fs-extra-1) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "mv ~ (uutils) move (rename) SOURCE to DESTINATION") + (description "mv ~ (uutils) move (rename) SOURCE to DESTINATION") + (license license:expat))) + +(define-public rust-uu-more-0.0.12 + (package + (name "rust-uu-more") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_more" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1w9sksvgsr9d49snsvk3lfg6pfx6cz47arh6bzwiy432lksd53fd")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-atty" ,rust-atty-0.2) + ("rust-clap" ,rust-clap-2) + ("rust-crossterm" ,rust-crossterm-0.20) + ("rust-nix" ,rust-nix-0.23) + ("rust-redox-syscall" ,rust-redox-syscall-0.2) + ("rust-redox-termios" ,rust-redox-termios-0.1) + ("rust-unicode-segmentation" ,rust-unicode-segmentation-1) + ("rust-unicode-width" ,rust-unicode-width-0.1) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "more ~ (uutils) input perusal filter") + (description "more ~ (uutils) input perusal filter") + (license license:expat))) + +(define-public rust-uu-mktemp-0.0.12 + (package + (name "rust-uu-mktemp") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_mktemp" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "18g55k5rcl1xvkm06s7r1g7vn9qqs3gk3m5brdkbxa34kkwdmazw")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-rand" ,rust-rand-0.5) + ("rust-tempfile" ,rust-tempfile-3) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis + "mktemp ~ (uutils) create and display a temporary file or directory from TEMPLATE") + (description + "mktemp ~ (uutils) create and display a temporary file or directory from TEMPLATE") + (license license:expat))) + +(define-public rust-uu-mknod-0.0.12 + (package + (name "rust-uu-mknod") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_mknod" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0hxgf6cp2dl4d8zbyhilhxvsssmwqfgwgprmk3h04zwgyk5vh2di")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-libc" ,rust-libc-0.2) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "mknod ~ (uutils) create special file NAME of TYPE") + (description "mknod ~ (uutils) create special file NAME of TYPE") + (license license:expat))) + +(define-public rust-uu-mkfifo-0.0.12 + (package + (name "rust-uu-mkfifo") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_mkfifo" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1k2xw6m3g2dczb587sppanbfnq589znmqv115hpysqpym6a5cfgz")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-libc" ,rust-libc-0.2) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "mkfifo ~ (uutils) create FIFOs (named pipes)") + (description "mkfifo ~ (uutils) create FIFOs (named pipes)") + (license license:expat))) + +(define-public rust-uu-mkdir-0.0.12 + (package + (name "rust-uu-mkdir") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_mkdir" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0j2hxs6ags7ca104mcznw8qx695kxxycli2ypql666n0zkk1c4wf")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-libc" ,rust-libc-0.2) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "mkdir ~ (uutils) create DIRECTORY") + (description "mkdir ~ (uutils) create DIRECTORY") + (license license:expat))) + +(define-public rust-termsize-0.1 + (package + (name "rust-termsize") + (version "0.1.6") + (source + (origin + (method url-fetch) + (uri (crate-uri "termsize" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "05r5rlng0li8ggpgij8c3dl9p6hiywgdajzgscm383z9m0jdi1jy")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-atty" ,rust-atty-0.2) + ("rust-kernel32-sys" ,rust-kernel32-sys-0.2) + ("rust-libc" ,rust-libc-0.2) + ("rust-termion" ,rust-termion-1) + ("rust-winapi" ,rust-winapi-0.2)))) + (home-page "https://github.com/softprops/termsize") + (synopsis "Retrieves terminal size") + (description "Retrieves terminal size") + (license license:expat))) + +(define-public rust-uu-ls-0.0.12 + (package + (name "rust-uu-ls") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_ls" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0w8mfjx3lfvilrr2pihxmmqkdfgb57ddhs916l8ryfxaym9sx3j2")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-atty" ,rust-atty-0.2) + ("rust-chrono" ,rust-chrono-0.4) + ("rust-clap" ,rust-clap-2) + ("rust-glob" ,rust-glob-0.3) + ("rust-lazy-static" ,rust-lazy-static-1) + ("rust-lscolors" ,rust-lscolors-0.7) + ("rust-number-prefix" ,rust-number-prefix-0.4) + ("rust-once-cell" ,rust-once-cell-1) + ("rust-selinux" ,rust-selinux-0.2) + ("rust-term-grid" ,rust-term-grid-0.1) + ("rust-termsize" ,rust-termsize-0.1) + ("rust-unicode-width" ,rust-unicode-width-0.1) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "ls ~ (uutils) display directory contents") + (description "ls ~ (uutils) display directory contents") + (license license:expat))) + +(define-public rust-uu-logname-0.0.12 + (package + (name "rust-uu-logname") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_logname" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "14cznsz6msgqi27vnv28am0zfq3kvlydx5wy155ns9449wrg607w")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-libc" ,rust-libc-0.2) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "logname ~ (uutils) display the login name of the current user") + (description + "logname ~ (uutils) display the login name of the current user") + (license license:expat))) + +(define-public rust-uu-ln-0.0.12 + (package + (name "rust-uu-ln") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_ln" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "17v6sy6v7rs0h3jkldn977g003vpv8v9w9id3i3arg111i0khvga")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-libc" ,rust-libc-0.2) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "ln ~ (uutils) create a (file system) link to TARGET") + (description "ln ~ (uutils) create a (file system) link to TARGET") + (license license:expat))) + +(define-public rust-uu-link-0.0.12 + (package + (name "rust-uu-link") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_link" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1x3inyrdfqabi3k750rrp4bmpv5m2dxj6s2m8xbh66dq3pi8sndz")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-libc" ,rust-libc-0.2) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "link ~ (uutils) create a hard (file system) link to FILE") + (description "link ~ (uutils) create a hard (file system) link to FILE") + (license license:expat))) + +(define-public rust-uu-kill-0.0.12 + (package + (name "rust-uu-kill") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_kill" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0libp9g3b9wha092892n7vlz7rv317769dylh9abn2g7cl4n4bpi")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-libc" ,rust-libc-0.2) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "kill ~ (uutils) send a signal to a process") + (description "kill ~ (uutils) send a signal to a process") + (license license:expat))) + +(define-public rust-uu-join-0.0.12 + (package + (name "rust-uu-join") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_join" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0nj0jjrrf27c69scnj7rx6ia21nfwhcffzl89wkyig0170sn6n0y")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis + "join ~ (uutils) merge lines from inputs with matching join fields") + (description + "join ~ (uutils) merge lines from inputs with matching join fields") + (license license:expat))) + +(define-public rust-file-diff-1 + (package + (name "rust-file-diff") + (version "1.0.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "file_diff" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "19a34rvbqg3b2my6ykax5n1qi2ahwbjacn9y2ji3h9gkp04ak9ri")))) + (build-system cargo-build-system) + (arguments `(#:skip-build? #t)) + (home-page "https://github.com/ethanpailes/file_diff-rs") + (synopsis "An atomic utility for diffing files in testing") + (description "An atomic utility for diffing files in testing") + (license license:bsd-3))) + +(define-public rust-uu-install-0.0.12 + (package + (name "rust-uu-install") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_install" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "045cynbkacbrw9awsk016wr834nx93l57jfwxvwmmixcvb6rk8cl")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-file-diff" ,rust-file-diff-1) + ("rust-filetime" ,rust-filetime-0.2) + ("rust-libc" ,rust-libc-0.2) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis + "install ~ (uutils) copy files from SOURCE to DESTINATION (with specified attributes)") + (description + "install ~ (uutils) copy files from SOURCE to DESTINATION (with specified +attributes)") + (license license:expat))) + +(define-public rust-uu-id-0.0.12 + (package + (name "rust-uu-id") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_id" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0p59wdnjvxfh3hwrhgk1l6zfg4jszy0mal10mdi5cxlfkc2aq5vf")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-selinux" ,rust-selinux-0.2) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "id ~ (uutils) display user and group information for USER") + (description "id ~ (uutils) display user and group information for USER") + (license license:expat))) + +(define-public rust-uu-hostname-0.0.12 + (package + (name "rust-uu-hostname") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_hostname" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0rmslbq2csy7j4fqm1qmrzqsynzswsfsi7zm8lfh0fcva12cilv1")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-hostname" ,rust-hostname-0.3) + ("rust-libc" ,rust-libc-0.2) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12) + ("rust-winapi" ,rust-winapi-0.3)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis + "hostname ~ (uutils) display or set the host name of the current host") + (description + "hostname ~ (uutils) display or set the host name of the current host") + (license license:expat))) + +(define-public rust-uu-hostid-0.0.12 + (package + (name "rust-uu-hostid") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_hostid" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0qm52r167kkjag20cd85dh5b79dmqgi0snvblm7q7594ghwm3g6y")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-libc" ,rust-libc-0.2) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis + "hostid ~ (uutils) display the numeric identifier of the current host") + (description + "hostid ~ (uutils) display the numeric identifier of the current host") + (license license:expat))) + +(define-public rust-uu-head-0.0.12 + (package + (name "rust-uu-head") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_head" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0f2n76lx8dmhrv7vwrjgn94k6ikqmgnkarxzpg14zmw6kn16da0m")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-memchr" ,rust-memchr-2) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "head ~ (uutils) display the first lines of input") + (description "head ~ (uutils) display the first lines of input") + (license license:expat))) + +(define-public rust-sha3-0.6 + (package + (name "rust-sha3") + (version "0.6.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "sha3" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "186nimd5rv3xfvsk3ravlqaaq1q5c5idmkq907398sm5nq2mjh16")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-block-buffer" ,rust-block-buffer-0.2) + ("rust-byte-tools" ,rust-byte-tools-0.2) + ("rust-digest" ,rust-digest-0.6) + ("rust-generic-array" ,rust-generic-array-0.8)))) + (home-page "https://github.com/RustCrypto/hashes") + (synopsis "SHA-3 (Keccak) hash function") + (description "SHA-3 (Keccak) hash function") + (license (list license:expat license:asl2.0)))) + +(define-public rust-blake2b-simd-0.5 + (package + (name "rust-blake2b-simd") + (version "0.5.11") + (source + (origin + (method url-fetch) + (uri (crate-uri "blake2b_simd" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "11y5nm06lpypz65dbxgncs12ckx24i5i4a777ckfhfxd93ili9xg")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-arrayref" ,rust-arrayref-0.3) + ("rust-arrayvec" ,rust-arrayvec-0.5) + ("rust-constant-time-eq" ,rust-constant-time-eq-0.1)))) + (home-page "https://github.com/oconnor663/blake2_simd") + (synopsis "a pure Rust BLAKE2b implementation with dynamic SIMD") + (description "a pure Rust BLAKE2b implementation with dynamic SIMD") + (license license:expat))) + +(define-public rust-uu-hashsum-0.0.12 + (package + (name "rust-uu-hashsum") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_hashsum" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0wpxb0wk993sw17grbwj3lgis4xgxd2as87ma6vc0m11r1n4yd15")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-blake2b-simd" ,rust-blake2b-simd-0.5) + ("rust-clap" ,rust-clap-2) + ("rust-digest" ,rust-digest-0.6) + ("rust-hex" ,rust-hex-0.2) + ("rust-libc" ,rust-libc-0.2) + ("rust-md5" ,rust-md5-0.3) + ("rust-memchr" ,rust-memchr-2) + ("rust-regex" ,rust-regex-1) + ("rust-regex-syntax" ,rust-regex-syntax-0.6) + ("rust-sha1" ,rust-sha1-0.6) + ("rust-sha2" ,rust-sha2-0.6) + ("rust-sha3" ,rust-sha3-0.6) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "hashsum ~ (uutils) display or check input digests") + (description "hashsum ~ (uutils) display or check input digests") + (license license:expat))) + +(define-public rust-uu-groups-0.0.12 + (package + (name "rust-uu-groups") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_groups" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0vvl0bznyqw0bnqyks3bv38v2xjbx6brv3lxpnlmvfqq2vq1hlh4")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "groups ~ (uutils) display group memberships for USERNAME") + (description "groups ~ (uutils) display group memberships for USERNAME") + (license license:expat))) + +(define-public rust-uu-fold-0.0.12 + (package + (name "rust-uu-fold") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_fold" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "18xlg36snrziijci11jny5xqiagyd9rz4sc4mk07cqgv303hk2p7")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "fold ~ (uutils) wrap each line of input") + (description "fold ~ (uutils) wrap each line of input") + (license license:expat))) + +(define-public rust-uu-fmt-0.0.12 + (package + (name "rust-uu-fmt") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_fmt" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1i1b2iz66y4vh8j3xx89nw05mpxx7dfxkyd4ybsbfpk7qbp8xvsg")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-libc" ,rust-libc-0.2) + ("rust-unicode-width" ,rust-unicode-width-0.1) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "fmt ~ (uutils) reformat each paragraph of input") + (description "fmt ~ (uutils) reformat each paragraph of input") + (license license:expat))) + +(define-public rust-uu-false-0.0.12 + (package + (name "rust-uu-false") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_false" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0nshb9whl9rgr8rznh0fm5xmkz5hb3vyal342i877q6063apyb3k")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "false ~ (uutils) do nothing and fail") + (description "false ~ (uutils) do nothing and fail") + (license license:expat))) + +(define-public rust-smallvec-1 + (package + (name "rust-smallvec") + (version "1.8.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "smallvec" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "10zf4fn63p2d6sx8qap3jvyarcfw563308x3431hd4c34r35gpgj")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-arbitrary" ,rust-arbitrary-1) ("rust-serde" ,rust-serde-1)))) + (home-page "https://github.com/servo/rust-smallvec") + (synopsis + "'Small vector' optimization: store up to a small number of items on the stack") + (description + "'Small vector' optimization: store up to a small number of items on the stack") + (license (list license:expat license:asl2.0)))) + +(define-public rust-coz-0.1 + (package + (name "rust-coz") + (version "0.1.3") + (source + (origin + (method url-fetch) + (uri (crate-uri "coz" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1qknvqva3kkf02pczbcy16yjann9ngl95irbw5cpsizmw8zmpxff")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-libc" ,rust-libc-0.2) ("rust-once-cell" ,rust-once-cell-1)))) + (home-page "https://github.com/plasma-umass/coz") + (synopsis + "Rust support for the `coz` Causal Profiler: https://github.com/plasma-umass/coz +") + (description + "Rust support for the `coz` Causal Profiler: https://github.com/plasma-umass/coz") + (license license:expat ))) + +(define-public rust-uu-factor-0.0.12 + (package + (name "rust-uu-factor") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_factor" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1xkky3jsingxlv274a2aapzfcb1yqygwkz1by8bv1446xzgxp6ar")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-coz" ,rust-coz-0.1) + ("rust-num-traits" ,rust-num-traits-0.2) + ("rust-num-traits" ,rust-num-traits-0.2) + ("rust-rand" ,rust-rand-0.7) + ("rust-smallvec" ,rust-smallvec-1) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "factor ~ (uutils) display the prime factors of each NUMBER") + (description "factor ~ (uutils) display the prime factors of each NUMBER") + (license license:expat))) + +(define-public rust-onig-sys-69 + (package + (name "rust-onig-sys") + (version "69.1.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "onig_sys" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1c639k5x7kp5m4vrvmvx4hqar8dyyiskknz6b07g2hd3byzi111q")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-cc" ,rust-cc-1) ("rust-pkg-config" ,rust-pkg-config-0.3)))) + (home-page "http://github.com/iwillspeak/rust-onig") + (synopsis + "The `onig_sys` crate contains raw rust bindings to the +oniguruma library. This crate exposes a set of unsafe +functions which can then be used by other crates to +create safe wrappers around Oniguruma. + +You probably don't want to link to this crate directly; +instead check out the `onig` crate. +") + (description + "The `onig_sys` crate contains raw rust bindings to the oniguruma library. This +crate exposes a set of unsafe functions which can then be used by other crates +to create safe wrappers around Oniguruma. + +You probably don't want to link to this crate directly; instead check out the +`onig` crate.") + (license license:expat))) + +(define-public rust-onig-4 + (package + (name "rust-onig") + (version "4.3.3") + (source + (origin + (method url-fetch) + (uri (crate-uri "onig" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "10xk5xfk3f3kq62s2sfaflsgr1v0v97xz6fl19gz9hmqn6rgq645")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-bitflags" ,rust-bitflags-1) + ("rust-lazy-static" ,rust-lazy-static-1) + ("rust-libc" ,rust-libc-0.2) + ("rust-onig-sys" ,rust-onig-sys-69)))) + (home-page "http://github.com/iwillspeak/rust-onig") + (synopsis + "Rust-Onig is a set of Rust bindings for the +Oniguruma regular expression library. Oniguruma +is a modern regex library with support for +multiple character encodings and regex syntaxes. +") + (description + "Rust-Onig is a set of Rust bindings for the Oniguruma regular expression +library. Oniguruma is a modern regex library with support for multiple +character encodings and regex syntaxes.") + (license license:expat))) + +(define-public rust-uu-expr-0.0.12 + (package + (name "rust-uu-expr") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_expr" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "18qy16fyazvmx4x0c80hfcskk09qbvv9rza44vkd00r2bzi2p87x")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-libc" ,rust-libc-0.2) + ("rust-num-bigint" ,rust-num-bigint-0.4) + ("rust-num-traits" ,rust-num-traits-0.2) + ("rust-onig" ,rust-onig-4) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "expr ~ (uutils) display the value of EXPRESSION") + (description "expr ~ (uutils) display the value of EXPRESSION") + (license license:expat))) + +(define-public rust-uu-expand-0.0.12 + (package + (name "rust-uu-expand") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_expand" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0s5f7442lh6zxrl6gmn58kwz4z8jc40bvmxr4wbks2s3dksfv7q8")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-unicode-width" ,rust-unicode-width-0.1) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "expand ~ (uutils) convert input tabs to spaces") + (description "expand ~ (uutils) convert input tabs to spaces") + (license license:expat))) + +(define-public rust-uu-env-0.0.12 + (package + (name "rust-uu-env") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_env" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1n283bfdbac3ybws127yzhhx7vg2nb23ydjr88xgc21ja938lfcq")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-libc" ,rust-libc-0.2) + ("rust-rust-ini" ,rust-rust-ini-0.17) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis + "env ~ (uutils) set each NAME to VALUE in the environment and run COMMAND") + (description + "env ~ (uutils) set each NAME to VALUE in the environment and run COMMAND") + (license license:expat))) + +(define-public rust-uu-echo-0.0.12 + (package + (name "rust-uu-echo") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_echo" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "08dhg0rv7anaimnxyapjhj0mfpyfjkfwpjwhxmsfhk6gy2rrj5mi")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "echo ~ (uutils) display TEXT") + (description "echo ~ (uutils) display TEXT") + (license license:expat))) + +(define-public rust-uu-du-0.0.12 + (package + (name "rust-uu-du") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_du" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0pgfaprskz7hi0c7hdggzqfsbhja8m0yd79v6qmmhspi4i1246iw")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-chrono" ,rust-chrono-0.4) + ("rust-clap" ,rust-clap-2) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12) + ("rust-winapi" ,rust-winapi-0.3)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "du ~ (uutils) display disk usage") + (description "du ~ (uutils) display disk usage") + (license license:expat))) + +(define-public rust-uu-dirname-0.0.12 + (package + (name "rust-uu-dirname") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_dirname" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1hgx8hh8r6w9d31qy3dwdkpylizpwqjwsphv4y6r5iqkrlkbzx6p")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-libc" ,rust-libc-0.2) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "dirname ~ (uutils) display parent directory of PATHNAME") + (description "dirname ~ (uutils) display parent directory of PATHNAME") + (license license:expat))) + +(define-public rust-uu-dircolors-0.0.12 + (package + (name "rust-uu-dircolors") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_dircolors" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0pg20rrz44ly9jpc8z0prrsvrw4yinf6ird59c3p8z7q6wzpzaxn")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-glob" ,rust-glob-0.3) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "dircolors ~ (uutils) display commands to set LS_COLORS") + (description "dircolors ~ (uutils) display commands to set LS_COLORS") + (license license:expat))) + +(define-public rust-number-prefix-0.4 + (package + (name "rust-number-prefix") + (version "0.4.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "number_prefix" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1wvh13wvlajqxkb1filsfzbrnq0vrmrw298v2j3sy82z1rm282w3")))) + (build-system cargo-build-system) + (arguments `(#:skip-build? #t)) + (home-page "https://github.com/ogham/rust-number-prefix") + (synopsis "Library for numeric prefixes (kilo, giga, kibi).") + (description "Library for numeric prefixes (kilo, giga, kibi).") + (license license:expat))) + +(define-public rust-uu-df-0.0.12 + (package + (name "rust-uu-df") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_df" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "18039w4296i5yc8ibarp8ndlzj4s44ax2w6i931if99w6rdlidbk")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-number-prefix" ,rust-number-prefix-0.4) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "df ~ (uutils) display file system information") + (description "df ~ (uutils) display file system information") + (license license:expat))) + +(define-public rust-gcd-2 + (package + (name "rust-gcd") + (version "2.1.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "gcd" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "16m7mb5p5zwy836sclchmwrndnrjxz0qnbrvm0w9jy6anbd7hygk")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? #t #:cargo-inputs (("rust-paste" ,rust-paste-1)))) + (home-page "https://github.com/frewsxcv/rust-gcd") + (synopsis "Calculate the greatest common divisor") + (description "Calculate the greatest common divisor") + (license (list license:expat license:asl2.0)))) + +(define-public rust-uu-dd-0.0.12 + (package + (name "rust-uu-dd") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_dd" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "19sbma2pnvqr7q37hr7w2pmdvi17apwlbacnxz8nz3a4h76rrf95")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-byte-unit" ,rust-byte-unit-4) + ("rust-clap" ,rust-clap-2) + ("rust-gcd" ,rust-gcd-2) + ("rust-libc" ,rust-libc-0.2) + ("rust-signal-hook" ,rust-signal-hook-0.3) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "dd ~ (uutils) copy and convert files") + (description "dd ~ (uutils) copy and convert files") + (license license:expat))) + +(define-public rust-uu-date-0.0.12 + (package + (name "rust-uu-date") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_date" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0pvdnz4k0x8dwakbibm8bnlcns7739c1haci4m8n71fsmib8v0h2")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-chrono" ,rust-chrono-0.4) + ("rust-clap" ,rust-clap-2) + ("rust-libc" ,rust-libc-0.2) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12) + ("rust-winapi" ,rust-winapi-0.3)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "date ~ (uutils) display or set the current time") + (description "date ~ (uutils) display or set the current time") + (license license:expat))) + +(define-public rust-uu-cut-0.0.12 + (package + (name "rust-uu-cut") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_cut" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0vgz1cgfyl8zi8y5hpykl8sqmm6q6nkl07cgnn34q9s6vazvb5qr")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-atty" ,rust-atty-0.2) + ("rust-bstr" ,rust-bstr-0.2) + ("rust-clap" ,rust-clap-2) + ("rust-memchr" ,rust-memchr-2) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "cut ~ (uutils) display byte/field columns of input lines") + (description "cut ~ (uutils) display byte/field columns of input lines") + (license license:expat))) + +(define-public rust-uu-csplit-0.0.12 + (package + (name "rust-uu-csplit") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_csplit" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "080z5k5kagvsixqqkfzz1mr508nb6xisxwmybpcmx6b73z3qkv25")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-regex" ,rust-regex-1) + ("rust-thiserror" ,rust-thiserror-1) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis + "csplit ~ (uutils) Output pieces of FILE separated by PATTERN(s) to files 'xx00', 'xx01', ..., and output byte counts of each piece to standard output") + (description + "csplit ~ (uutils) Output pieces of FILE separated by PATTERN(s) to files 'xx00', +'xx01', ..., and output byte counts of each piece to standard output") + (license license:expat))) + +(define-public rust-ioctl-sys-0.6 + (package + (name "rust-ioctl-sys") + (version "0.6.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "ioctl-sys" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0bhqal9zbala895b5iwvwfi8k13jbxb2dz19jmk8iwjqlvzryhhw")))) + (build-system cargo-build-system) + (arguments `(#:skip-build? #t)) + (home-page "https://github.com/jmesmon/ioctl") + (synopsis + "IO Control for POSIX-and-beyond systems (core fn & macros, see `ioctls` for many ioctl definitions)") + (description + "IO Control for POSIX-and-beyond systems (core fn & macros, see `ioctls` for many +ioctl definitions)") + (license (list license:expat license:asl2.0)))) + +(define-public rust-num-enum-derive-0.5 + (package + (name "rust-num-enum-derive") + (version "0.5.6") + (source + (origin + (method url-fetch) + (uri (crate-uri "num_enum_derive" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "08dvxpa7l5hx5fcdr0bdv9bzajbcbxsbbnc6hl6zxmwhhiv2p68d")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-proc-macro-crate" ,rust-proc-macro-crate-1) + ("rust-proc-macro2" ,rust-proc-macro2-1) + ("rust-quote" ,rust-quote-1) + ("rust-syn" ,rust-syn-1)))) + (home-page "https://github.com/illicitonion/num_enum") + (synopsis + "Internal implementation details for ::num_enum (Procedural macros to make inter-operation between primitives and enums easier)") + (description + "Internal implementation details for ::num_enum (Procedural macros to make +inter-operation between primitives and enums easier)") + (license (list license:bsd-3 license:expat license:asl2.0)))) + +(define-public rust-num-enum-0.5 + (package + (name "rust-num-enum") + (version "0.5.6") + (source + (origin + (method url-fetch) + (uri (crate-uri "num_enum" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1b96nmbhn2gadlh4hna6mz6w892gzp1zic60q1s4akjy0nhkw3bj")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-num-enum-derive" ,rust-num-enum-derive-0.5)))) + (home-page "https://github.com/illicitonion/num_enum") + (synopsis + "Procedural macros to make inter-operation between primitives and enums easier.") + (description + "Procedural macros to make inter-operation between primitives and enums easier.") + (license (list license:bsd-3 license:expat license:asl2.0)))) + +(define-public rust-exacl-0.6 + (package + (name "rust-exacl") + (version "0.6.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "exacl" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0axsa6bkvyzzpz5r3wfjr7s6ja0dkx287kspp5jlis416wbvv6vn")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-bindgen" ,rust-bindgen-0.58) + ("rust-bitflags" ,rust-bitflags-1) + ("rust-log" ,rust-log-0.4) + ("rust-nix" ,rust-nix-0.21) + ("rust-num-enum" ,rust-num-enum-0.5) + ("rust-scopeguard" ,rust-scopeguard-1) + ("rust-serde" ,rust-serde-1) + ("rust-uuid" ,rust-uuid-0.8)))) + (home-page "https://github.com/byllyfish/exacl") + (synopsis + "Manipulate file system access control lists (ACL) on macOS, Linux, and FreeBSD") + (description + "Manipulate file system access control lists (ACL) on macOS, Linux, and FreeBSD") + (license license:expat))) + +(define-public rust-uu-cp-0.0.12 + (package + (name "rust-uu-cp") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_cp" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1fy1ppb3ild3vlsn5il3fqy97hllcq405swwpp6fxd5649jfga23")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-exacl" ,rust-exacl-0.6) + ("rust-filetime" ,rust-filetime-0.2) + ("rust-ioctl-sys" ,rust-ioctl-sys-0.6) + ("rust-libc" ,rust-libc-0.2) + ("rust-quick-error" ,rust-quick-error-1) + ("rust-selinux" ,rust-selinux-0.2) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12) + ("rust-walkdir" ,rust-walkdir-2) + ("rust-winapi" ,rust-winapi-0.3) + ("rust-xattr" ,rust-xattr-0.2)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "cp ~ (uutils) copy SOURCE to DESTINATION") + (description "cp ~ (uutils) copy SOURCE to DESTINATION") + (license license:expat))) + +(define-public rust-uu-comm-0.0.12 + (package + (name "rust-uu-comm") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_comm" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "16ifqazjbgrs40mlf28wswhc7vcggsv0maa1k9s96dnyf1bzj4zd")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-libc" ,rust-libc-0.2) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "comm ~ (uutils) compare sorted inputs") + (description "comm ~ (uutils) compare sorted inputs") + (license license:expat))) + +(define-public rust-uu-cksum-0.0.12 + (package + (name "rust-uu-cksum") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_cksum" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "10vabph7hk1qgppzwnza2va6i7hbj9ch634lwqcf44m09zdw9bgq")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-libc" ,rust-libc-0.2) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "cksum ~ (uutils) display CRC and size of input") + (description "cksum ~ (uutils) display CRC and size of input") + (license license:expat))) + +(define-public rust-uu-chroot-0.0.12 + (package + (name "rust-uu-chroot") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_chroot" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1kgglqhc4j7aq84ixhhan09rn1d154a8j9idfy3p9f2q29lcpb9r")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "chroot ~ (uutils) run COMMAND under a new root directory") + (description "chroot ~ (uutils) run COMMAND under a new root directory") + (license license:expat))) + +(define-public rust-uu-chown-0.0.12 + (package + (name "rust-uu-chown") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_chown" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "01jgc6fy8iq5bdm2wn92g3yakxxr1sfg37cnfpskans35bv9iwvd")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "chown ~ (uutils) change the ownership of FILE") + (description "chown ~ (uutils) change the ownership of FILE") + (license license:expat))) + +(define-public rust-uu-chmod-0.0.12 + (package + (name "rust-uu-chmod") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_chmod" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "01ahjcn27yi2clxgpcbmy9lz8gzpj7ks1m2xci9nbn6hf047jlmm")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-libc" ,rust-libc-0.2) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12) + ("rust-walkdir" ,rust-walkdir-2)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "chmod ~ (uutils) change mode of FILE") + (description "chmod ~ (uutils) change mode of FILE") + (license license:expat))) + +(define-public rust-uu-chgrp-0.0.12 + (package + (name "rust-uu-chgrp") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_chgrp" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "05j4w1jbxq8s07szrp4vwis93hnrg7zrnci51v4b44wx0f2gnyjl")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "chgrp ~ (uutils) change the group ownership of FILE") + (description "chgrp ~ (uutils) change the group ownership of FILE") + (license license:expat))) + +(define-public rust-fts-sys-0.2 + (package + (name "rust-fts-sys") + (version "0.2.1") + (source + (origin + (method url-fetch) + (uri (crate-uri "fts-sys" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1jfaclykcqf3cfillbdyv5142lal5w87pbhzkbj0w9qfb3qwj7nk")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-bindgen" ,rust-bindgen-0.59) ("rust-libc" ,rust-libc-0.2)))) + (home-page "https://github.com/koutheir/fts-sys") + (synopsis "File hierarchy traversal functions (FTS)") + (description "File hierarchy traversal functions (FTS)") + (license license:expat))) + +(define-public rust-uu-chcon-0.0.12 + (package + (name "rust-uu-chcon") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_chcon" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "096kqqab3z8b72bhn5r809xwc4naad1a4v7nsj7acgim8zaz7li0")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-fts-sys" ,rust-fts-sys-0.2) + ("rust-libc" ,rust-libc-0.2) + ("rust-selinux" ,rust-selinux-0.2) + ("rust-thiserror" ,rust-thiserror-1) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "chcon ~ (uutils) change file security context") + (description "chcon ~ (uutils) change file security context") + (license license:expat))) + +(define-public rust-uu-cat-0.0.12 + (package + (name "rust-uu-cat") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_cat" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0kyb1id4gykqfdcsrdg6s6m9slnnd1nhi95d2w8jf539p8jlgd0h")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-atty" ,rust-atty-0.2) + ("rust-clap" ,rust-clap-2) + ("rust-nix" ,rust-nix-0.23) + ("rust-thiserror" ,rust-thiserror-1) + ("rust-unix-socket" ,rust-unix-socket-0.5) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12) + ("rust-winapi-util" ,rust-winapi-util-0.1)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "cat ~ (uutils) concatenate and display input") + (description "cat ~ (uutils) concatenate and display input") + (license license:expat))) + +(define-public rust-uu-basenc-0.0.12 + (package + (name "rust-uu-basenc") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_basenc" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0bicx6dm38nr1b8x0dhc2k3xdckx89rsbs24c7yiq4gjx7k1dpgp")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-uu-base32" ,rust-uu-base32-0.0.12) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "basenc ~ (uutils) decode/encode input") + (description "basenc ~ (uutils) decode/encode input") + (license license:expat))) + +(define-public rust-uu-basename-0.0.12 + (package + (name "rust-uu-basename") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_basename" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1cliw5z7yjxzw7ri0dg0inpibaai2zdwmhw8cha465lmzh2l00hq")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis + "basename ~ (uutils) display PATHNAME with leading directory components removed") + (description + "basename ~ (uutils) display PATHNAME with leading directory components removed") + (license license:expat))) + +(define-public rust-uu-base64-0.0.12 + (package + (name "rust-uu-base64") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_base64" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "03frxjwsxf0d80xkzl05yj0v2ng31fjj01wkkr33kflkp0vrlqv0")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-uu-base32" ,rust-uu-base32-0.0.12) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "base64 ~ (uutils) decode/encode input (base64-encoding)") + (description "base64 ~ (uutils) decode/encode input (base64-encoding)") + (license license:expat))) + +(define-public rust-uu-base32-0.0.12 + (package + (name "rust-uu-base32") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_base32" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1x95hy4wdd5w8nh4jgaxzaba12a0b59hsl8yi6bif6ln4kfsq7jf")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "base32 ~ (uutils) decode/encode input (base32-encoding)") + (description "base32 ~ (uutils) decode/encode input (base32-encoding)") + (license license:expat))) + +(define-public rust-uucore-procs-0.0.12 + (package + (name "rust-uucore-procs") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uucore_procs" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0ap0xkah6ss7drzvgcma9m7li6wzw5js2rwb6gj5nvvqf5gyf174")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-proc-macro2" ,rust-proc-macro2-1) + ("rust-quote" ,rust-quote-1) + ("rust-syn" ,rust-syn-1)))) + (home-page "https://github.com/uutils/uucore/uucore_procs") + (synopsis "uutils ~ 'uucore' proc-macros") + (description "uutils ~ 'uucore' proc-macros") + (license license:expat))) + +(define-public rust-z85-3 + (package + (name "rust-z85") + (version "3.0.4") + (source + (origin + (method url-fetch) + (uri (crate-uri "z85" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0mpq5932l61kyjmx0knkyf3c045jk5m2fx2znrs0nd41vf9nx2dg")))) + (build-system cargo-build-system) + (arguments `(#:skip-build? #t)) + (home-page "https://github.com/decafbad/z85") + (synopsis + "Rust implementation of ZeroMQ's Z85 encoding mechanism with padding.") + (description + "Rust implementation of ZeroMQ's Z85 encoding mechanism with padding.") + (license (list license:expat license:asl2.0)))) + +(define-public rust-os-display-0.1 + (package + (name "rust-os-display") + (version "0.1.3") + (source + (origin + (method url-fetch) + (uri (crate-uri "os_display" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0xfgfqvfg5nyidv5p85fb87l0mif1nniisxarw6npd4jv2x2jqks")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-unicode-width" ,rust-unicode-width-0.1)))) + (home-page "https://github.com/blyxxyz/os_display") + (synopsis "Display strings in a safe platform-appropriate way") + (description "Display strings in a safe platform-appropriate way") + (license license:expat))) + +(define-public rust-dns-lookup-1 + (package + (name "rust-dns-lookup") + (version "1.0.8") + (source + (origin + (method url-fetch) + (uri (crate-uri "dns-lookup" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0wk877zla9gdns5f1zgrxwzpi0abj2ld2n54a6dqsln4ab4szv2k")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-cfg-if" ,rust-cfg-if-1) + ("rust-clippy" ,rust-clippy-0.0.302) + ("rust-libc" ,rust-libc-0.2) + ("rust-socket2" ,rust-socket2-0.4) + ("rust-winapi" ,rust-winapi-0.3)))) + (home-page "https://github.com/keeperofdakeys/dns-lookup/") + (synopsis + "A simple dns resolving api, much like rust's unstable api. Also includes getaddrinfo and getnameinfo wrappers for libc variants.") + (description + "This package provides a simple dns resolving api, much like rust's unstable api. + Also includes getaddrinfo and getnameinfo wrappers for libc variants.") + (license (list license:expat license:asl2.0)))) + +(define-public rust-data-encoding-macro-internal-0.1 + (package + (name "rust-data-encoding-macro-internal") + (version "0.1.10") + (source + (origin + (method url-fetch) + (uri (crate-uri "data-encoding-macro-internal" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1nrqy2c3azch285a9ya63qx43f25ldm58l0ans0fg5dav91fvfx5")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-data-encoding" ,rust-data-encoding-2) + ("rust-syn" ,rust-syn-1)))) + (home-page "https://github.com/ia0/data-encoding") + (synopsis "Internal library for data-encoding-macro") + (description "Internal library for data-encoding-macro") + (license license:expat))) + +(define-public rust-data-encoding-macro-0.1 + (package + (name "rust-data-encoding-macro") + (version "0.1.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "data-encoding-macro" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1jls0b9p4nsp5vcp2h53cc01m3drg8l4nh47idlzm27ys9y7p4l6")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-data-encoding" ,rust-data-encoding-2) + ("rust-data-encoding-macro-internal" + ,rust-data-encoding-macro-internal-0.1)))) + (home-page "https://github.com/ia0/data-encoding") + (synopsis "Macros for data-encoding") + (description "Macros for data-encoding") + (license license:expat))) + +(define-public rust-uucore-0.0.12 + (package + (name "rust-uucore") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uucore" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0wjf6jn70696gcw7pslx9hiq8jig2islr0n2i0mkrwd57myhaqnx")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-data-encoding" ,rust-data-encoding-2) + ("rust-data-encoding-macro" ,rust-data-encoding-macro-0.1) + ("rust-dns-lookup" ,rust-dns-lookup-1) + ("rust-dunce" ,rust-dunce-1) + ("rust-libc" ,rust-libc-0.2) + ("rust-nix" ,rust-nix-0.23) + ("rust-once-cell" ,rust-once-cell-1) + ("rust-os-display" ,rust-os-display-0.1) + ("rust-termion" ,rust-termion-1) + ("rust-thiserror" ,rust-thiserror-1) + ("rust-time" ,rust-time-0.1) + ("rust-walkdir" ,rust-walkdir-2) + ("rust-wild" ,rust-wild-2) + ("rust-winapi" ,rust-winapi-0.3) + ("rust-winapi-util" ,rust-winapi-util-0.1) + ("rust-z85" ,rust-z85-3)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "uutils ~ 'core' uutils code library (cross-platform)") + (description "uutils ~ 'core' uutils code library (cross-platform)") + (license license:expat))) + +(define-public rust-platform-info-0.2 + (package + (name "rust-platform-info") + (version "0.2.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "platform-info" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "187jxpbpjy7mmf522s7p6i557vffcdgf6hx1brppwmixw16jqcw4")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-libc" ,rust-libc-0.2) ("rust-winapi" ,rust-winapi-0.3)))) + (home-page "https://github.com/uutils/platform-info") + (synopsis "A simple cross-platform interface to get info about a system") + (description + "This package provides a simple cross-platform interface to get info about a +system") + (license license:expat))) + +(define-public rust-uu-arch-0.0.12 + (package + (name "rust-uu-arch") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "uu_arch" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "08x29iwy92f8z55ypgarf3sp2akssi22nlcnslaan5y41yxhi93s")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-platform-info" ,rust-platform-info-0.2) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-uucore-procs" ,rust-uucore-procs-0.0.12)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis "arch ~ (uutils) display machine architecture") + (description "arch ~ (uutils) display machine architecture") + (license license:expat))) + +(define-public rust-unicode-linebreak-0.1 + (package + (name "rust-unicode-linebreak") + (version "0.1.2") + (source + (origin + (method url-fetch) + (uri (crate-uri "unicode-linebreak" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0grq6bsn967q4vpifld53s7a140nlmpq5vy8ghgr73f4n2mdqlis")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? #t #:cargo-inputs (("rust-regex" ,rust-regex-1)))) + (home-page "https://github.com/axelf4/unicode-linebreak") + (synopsis "Implementation of the Unicode Line Breaking Algorithm") + (description "Implementation of the Unicode Line Breaking Algorithm") + (license license:asl2.0))) + +(define-public rust-openblas-src-0.9 + (package + (name "rust-openblas-src") + (version "0.9.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "openblas-src" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0syy38a5bgv5mj6mb1n1zk1d6l5gqqrswvbmwkwx6h4z9wfrsql4")))) + (build-system cargo-build-system) + (arguments `(#:skip-build? #t)) + (home-page "https://github.com/blas-lapack-rs/openblas-src") + (synopsis "The package provides a source of BLAS and LAPACK via OpenBLAS.") + (description + "The package provides a source of BLAS and LAPACK via OpenBLAS.") + (license (list license:asl2.0 license:expat)))) + +(define-public rust-netlib-src-0.8 + (package + (name "rust-netlib-src") + (version "0.8.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "netlib-src" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "04l2ggdaq0bjc64prsw2f8ddxn84m1rmpnkjb9nr0ijdpcv1zx1r")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? #t #:cargo-inputs (("rust-cmake" ,rust-cmake-0.1)))) + (home-page "https://github.com/blas-lapack-rs/netlib-src") + (synopsis "The package provides a source of BLAS and LAPACK via Netlib.") + (description + "The package provides a source of BLAS and LAPACK via Netlib.") + (license (list license:asl2.0 license:expat)))) + +(define-public rust-intel-mkl-tool-0.1 + (package + (name "rust-intel-mkl-tool") + (version "0.1.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "intel-mkl-tool" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1myyrxvmyij4c60w9x15npwzhlbjm8y8c94lvfsnrl5pbyakz8md")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-curl" ,rust-curl-0.4) + ("rust-dirs" ,rust-dirs-2) + ("rust-env-logger" ,rust-env-logger-0.7) + ("rust-failure" ,rust-failure-0.1) + ("rust-glob" ,rust-glob-0.3) + ("rust-log" ,rust-log-0.4) + ("rust-pkg-config" ,rust-pkg-config-0.3) + ("rust-structopt" ,rust-structopt-0.3) + ("rust-tar" ,rust-tar-0.4) + ("rust-zstd" ,rust-zstd-0.5)))) + (home-page "https://github.com/rust-math/intel-mkl-src") + (synopsis "CLI utility for redistributiing Intel(R) MKL") + (description "CLI utility for redistributiing Intel(R) MKL") + (license license:expat))) + +(define-public rust-intel-mkl-src-0.5 + (package + (name "rust-intel-mkl-src") + (version "0.5.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "intel-mkl-src" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "155q49a7nfbq1lllchsyx8jv2q2pijrjh1w08awvrbjyfcxb6q3j")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-intel-mkl-tool" ,rust-intel-mkl-tool-0.1)))) + (home-page "https://github.com/rust-math/intel-mkl-src") + (synopsis "Redistribution of Intel(R) MKL as a crate") + (description "Redistribution of Intel(R) MKL as a crate") + (license license:expat))) + +(define-public rust-accelerate-src-0.3 + (package + (name "rust-accelerate-src") + (version "0.3.2") + (source + (origin + (method url-fetch) + (uri (crate-uri "accelerate-src" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "17fiqyq7f9k41pbsyrvk9pxyx9z6fw399wq036cvwkbmb14xcpj1")))) + (build-system cargo-build-system) + (arguments `(#:skip-build? #t)) + (home-page "https://github.com/blas-lapack-rs/accelerate-src") + (synopsis + "The package provides a source of BLAS and LAPACK via the Accelerate framework.") + (description + "The package provides a source of BLAS and LAPACK via the Accelerate framework.") + (license (list license:asl2.0 license:expat)))) + +(define-public rust-blas-src-0.6 + (package + (name "rust-blas-src") + (version "0.6.1") + (source + (origin + (method url-fetch) + (uri (crate-uri "blas-src" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0a134wadi4rslfqk4mafi6y7bbvacjh12x87621w4vyc3dni6px2")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-accelerate-src" ,rust-accelerate-src-0.3) + ("rust-intel-mkl-src" ,rust-intel-mkl-src-0.5) + ("rust-netlib-src" ,rust-netlib-src-0.8) + ("rust-openblas-src" ,rust-openblas-src-0.9)))) + (home-page "https://github.com/blas-lapack-rs/blas-src") + (synopsis "The package provides a BLAS source of choice.") + (description "The package provides a BLAS source of choice.") + (license (list license:asl2.0 license:expat)))) + +(define-public rust-ndarray-0.14 + (package + (name "rust-ndarray") + (version "0.14.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "ndarray" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "011wqzmrd9gpfcfvy1xfbskqfiahn96pmi2d0r9x34d682amq3bc")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-approx" ,rust-approx-0.4) + ("rust-blas-src" ,rust-blas-src-0.6) + ("rust-cblas-sys" ,rust-cblas-sys-0.1) + ("rust-matrixmultiply" ,rust-matrixmultiply-0.2) + ("rust-num-complex" ,rust-num-complex-0.3) + ("rust-num-integer" ,rust-num-integer-0.1) + ("rust-num-traits" ,rust-num-traits-0.2) + ("rust-rawpointer" ,rust-rawpointer-0.2) + ("rust-rayon" ,rust-rayon-1) + ("rust-serde" ,rust-serde-1)))) + (home-page "https://github.com/rust-ndarray/ndarray") + (synopsis + "An n-dimensional array for general elements and for numerics. Lightweight array views and slicing; views support chunking and splitting.") + (description + "An n-dimensional array for general elements and for numerics. Lightweight array +views and slicing; views support chunking and splitting.") + (license (list license:expat license:asl2.0)))) + +(define-public rust-smawk-0.3 + (package + (name "rust-smawk") + (version "0.3.1") + (source + (origin + (method url-fetch) + (uri (crate-uri "smawk" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0hv0q1mw1r1brk7v3g4a80j162p7g1dri4bdidykrakzfqjd4ypn")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? #t #:cargo-inputs (("rust-ndarray" ,rust-ndarray-0.14)))) + (home-page "https://github.com/mgeisler/smawk") + (synopsis "Functions for finding row-minima in a totally monotone matrix.") + (description + "This package provides functions for finding row-minima in a totally monotone +matrix.") + (license license:expat))) + +(define-public rust-hyphenation-commons-0.8 + (package + (name "rust-hyphenation-commons") + (version "0.8.4") + (source + (origin + (method url-fetch) + (uri (crate-uri "hyphenation_commons" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1gq59h9h8597k04yl53an0j56cvb0in98pxpp27dkiz5mnifgssz")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-fst" ,rust-fst-0.4) ("rust-serde" ,rust-serde-1)))) + (home-page "https://github.com/tapeinosyne/hyphenation") + (synopsis "Proemial code for the `hyphenation` library") + (description "Proemial code for the `hyphenation` library") + (license (list license:asl2.0 license:expat)))) + +(define-public rust-fst-0.4 + (package + (name "rust-fst") + (version "0.4.7") + (source + (origin + (method url-fetch) + (uri (crate-uri "fst" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "06mnksicgv9rp8b7w0ykkshf355l05zym3ygm74qr5z30ndmpf3s")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-utf8-ranges" ,rust-utf8-ranges-1)))) + (home-page "https://github.com/BurntSushi/fst") + (synopsis + "Use finite state transducers to compactly represents sets or maps of many +strings (> 1 billion is possible). +") + (description + "Use finite state transducers to compactly represents sets or maps of many +strings (> 1 billion is possible).") + (license (list license:unlicense license:expat)))) + +(define-public rust-hyphenation-0.8 + (package + (name "rust-hyphenation") + (version "0.8.4") + (source + (origin + (method url-fetch) + (uri (crate-uri "hyphenation" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1w2hib167vpz7jbg3zs92ifihj4akirlhb5509aib1df8i6dvx5w")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-bincode" ,rust-bincode-1) + ("rust-bincode" ,rust-bincode-1) + ("rust-fst" ,rust-fst-0.4) + ("rust-fst" ,rust-fst-0.4) + ("rust-hyphenation-commons" ,rust-hyphenation-commons-0.8) + ("rust-hyphenation-commons" ,rust-hyphenation-commons-0.8) + ("rust-pocket-resources" ,rust-pocket-resources-0.3) + ("rust-serde" ,rust-serde-1) + ("rust-serde" ,rust-serde-1) + ("rust-unicode-normalization" ,rust-unicode-normalization-0.1)))) + (home-page "https://github.com/tapeinosyne/hyphenation") + (synopsis "Knuth-Liang hyphenation for a variety of languages") + (description "Knuth-Liang hyphenation for a variety of languages") + (license (list license:asl2.0 license:expat)))) + +(define-public rust-textwrap-0.14 + (package + (name "rust-textwrap") + (version "0.14.2") + (source + (origin + (method url-fetch) + (uri (crate-uri "textwrap" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "106xjfzfpk3nj51fx9slf9kyir7xjwvpqm003v9ardgq5b8whrh0")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-hyphenation" ,rust-hyphenation-0.8) + ("rust-smawk" ,rust-smawk-0.3) + ("rust-terminal-size" ,rust-terminal-size-0.1) + ("rust-unicode-linebreak" ,rust-unicode-linebreak-0.1) + ("rust-unicode-width" ,rust-unicode-width-0.1)))) + (home-page "https://github.com/mgeisler/textwrap") + (synopsis + "Powerful library for word wrapping, indenting, and dedenting strings") + (description + "Powerful library for word wrapping, indenting, and dedenting strings") + (license license:expat))) + +(define-public rust-selinux-sys-0.5 + (package + (name "rust-selinux-sys") + (version "0.5.2") + (source + (origin + (method url-fetch) + (uri (crate-uri "selinux-sys" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "19dighj7nf8gzy9bgh206znbh1p9gp56wrcwwklv9yiq2zwp9lqj")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-bindgen" ,rust-bindgen-0.59) + ("rust-cc" ,rust-cc-1) + ("rust-dunce" ,rust-dunce-1) + ("rust-walkdir" ,rust-walkdir-2)))) + (home-page "https://github.com/koutheir/selinux-sys") + (synopsis "Flexible Mandatory Access Control (MAC) for Linux") + (description "Flexible Mandatory Access Control (MAC) for Linux") + (license license:expat))) + +(define-public rust-reference-counted-singleton-0.1 + (package + (name "rust-reference-counted-singleton") + (version "0.1.1") + (source + (origin + (method url-fetch) + (uri (crate-uri "reference-counted-singleton" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "16is1ld71ara6wmxhsm80h3xbzr0dlai34cxqr5xrp9gm49m4i7g")))) + (build-system cargo-build-system) + (arguments `(#:skip-build? #t)) + (home-page "https://github.com/koutheir/reference-counted-singleton") + (synopsis + "Reference-counted singleton whose protected data can be recreated as needed") + (description + "Reference-counted singleton whose protected data can be recreated as needed") + (license license:expat))) + +(define-public rust-selinux-0.2 + (package + (name "rust-selinux") + (version "0.2.5") + (source + (origin + (method url-fetch) + (uri (crate-uri "selinux" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0j0m5ll9qg9xf68pp5aid01r7b371bjdrr31gq21dsan8dmmsw89")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? + #t + #:cargo-inputs + (("rust-bitflags" ,rust-bitflags-1) + ("rust-libc" ,rust-libc-0.2) + ("rust-once-cell" ,rust-once-cell-1) + ("rust-reference-counted-singleton" + ,rust-reference-counted-singleton-0.1) + ("rust-selinux-sys" ,rust-selinux-sys-0.5) + ("rust-thiserror" ,rust-thiserror-1)))) + (home-page "https://github.com/koutheir/selinux") + (synopsis "Flexible Mandatory Access Control for Linux") + (description "Flexible Mandatory Access Control for Linux") + (license license:expat))) + +(define-public rust-coreutils-0.0.12 + (package + (name "rust-coreutils") + (version "0.0.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "coreutils" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0zjlbchnm9jlrh4grxhwhd3vdh3qy20l2yi41avz3avgl5vbpykl")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs + (("rust-clap" ,rust-clap-2) + ("rust-lazy-static" ,rust-lazy-static-1) + ("rust-selinux" ,rust-selinux-0.2) + ("rust-textwrap" ,rust-textwrap-0.14) + ("rust-uu-arch" ,rust-uu-arch-0.0.12) + ("rust-uu-base32" ,rust-uu-base32-0.0.12) + ("rust-uu-base64" ,rust-uu-base64-0.0.12) + ("rust-uu-basename" ,rust-uu-basename-0.0.12) + ("rust-uu-basenc" ,rust-uu-basenc-0.0.12) + ("rust-uu-cat" ,rust-uu-cat-0.0.12) + ("rust-uu-chcon" ,rust-uu-chcon-0.0.12) + ("rust-uu-chgrp" ,rust-uu-chgrp-0.0.12) + ("rust-uu-chmod" ,rust-uu-chmod-0.0.12) + ("rust-uu-chown" ,rust-uu-chown-0.0.12) + ("rust-uu-chroot" ,rust-uu-chroot-0.0.12) + ("rust-uu-cksum" ,rust-uu-cksum-0.0.12) + ("rust-uu-comm" ,rust-uu-comm-0.0.12) + ("rust-uu-cp" ,rust-uu-cp-0.0.12) + ("rust-uu-csplit" ,rust-uu-csplit-0.0.12) + ("rust-uu-cut" ,rust-uu-cut-0.0.12) + ("rust-uu-date" ,rust-uu-date-0.0.12) + ("rust-uu-dd" ,rust-uu-dd-0.0.12) + ("rust-uu-df" ,rust-uu-df-0.0.12) + ("rust-uu-dircolors" ,rust-uu-dircolors-0.0.12) + ("rust-uu-dirname" ,rust-uu-dirname-0.0.12) + ("rust-uu-du" ,rust-uu-du-0.0.12) + ("rust-uu-echo" ,rust-uu-echo-0.0.12) + ("rust-uu-env" ,rust-uu-env-0.0.12) + ("rust-uu-expand" ,rust-uu-expand-0.0.12) + ("rust-uu-expr" ,rust-uu-expr-0.0.12) + ("rust-uu-factor" ,rust-uu-factor-0.0.12) + ("rust-uu-false" ,rust-uu-false-0.0.12) + ("rust-uu-fmt" ,rust-uu-fmt-0.0.12) + ("rust-uu-fold" ,rust-uu-fold-0.0.12) + ("rust-uu-groups" ,rust-uu-groups-0.0.12) + ("rust-uu-hashsum" ,rust-uu-hashsum-0.0.12) + ("rust-uu-head" ,rust-uu-head-0.0.12) + ("rust-uu-hostid" ,rust-uu-hostid-0.0.12) + ("rust-uu-hostname" ,rust-uu-hostname-0.0.12) + ("rust-uu-id" ,rust-uu-id-0.0.12) + ("rust-uu-install" ,rust-uu-install-0.0.12) + ("rust-uu-join" ,rust-uu-join-0.0.12) + ("rust-uu-kill" ,rust-uu-kill-0.0.12) + ("rust-uu-link" ,rust-uu-link-0.0.12) + ("rust-uu-ln" ,rust-uu-ln-0.0.12) + ("rust-uu-logname" ,rust-uu-logname-0.0.12) + ("rust-uu-ls" ,rust-uu-ls-0.0.12) + ("rust-uu-mkdir" ,rust-uu-mkdir-0.0.12) + ("rust-uu-mkfifo" ,rust-uu-mkfifo-0.0.12) + ("rust-uu-mknod" ,rust-uu-mknod-0.0.12) + ("rust-uu-mktemp" ,rust-uu-mktemp-0.0.12) + ("rust-uu-more" ,rust-uu-more-0.0.12) + ("rust-uu-mv" ,rust-uu-mv-0.0.12) + ("rust-uu-nice" ,rust-uu-nice-0.0.12) + ("rust-uu-nl" ,rust-uu-nl-0.0.12) + ("rust-uu-nohup" ,rust-uu-nohup-0.0.12) + ("rust-uu-nproc" ,rust-uu-nproc-0.0.12) + ("rust-uu-numfmt" ,rust-uu-numfmt-0.0.12) + ("rust-uu-od" ,rust-uu-od-0.0.12) + ("rust-uu-paste" ,rust-uu-paste-0.0.12) + ("rust-uu-pathchk" ,rust-uu-pathchk-0.0.12) + ("rust-uu-pinky" ,rust-uu-pinky-0.0.12) + ("rust-uu-pr" ,rust-uu-pr-0.0.12) + ("rust-uu-printenv" ,rust-uu-printenv-0.0.12) + ("rust-uu-printf" ,rust-uu-printf-0.0.12) + ("rust-uu-ptx" ,rust-uu-ptx-0.0.12) + ("rust-uu-pwd" ,rust-uu-pwd-0.0.12) + ("rust-uu-readlink" ,rust-uu-readlink-0.0.12) + ("rust-uu-realpath" ,rust-uu-realpath-0.0.12) + ("rust-uu-relpath" ,rust-uu-relpath-0.0.12) + ("rust-uu-rm" ,rust-uu-rm-0.0.12) + ("rust-uu-rmdir" ,rust-uu-rmdir-0.0.12) + ("rust-uu-runcon" ,rust-uu-runcon-0.0.12) + ("rust-uu-seq" ,rust-uu-seq-0.0.12) + ("rust-uu-shred" ,rust-uu-shred-0.0.12) + ("rust-uu-shuf" ,rust-uu-shuf-0.0.12) + ("rust-uu-sleep" ,rust-uu-sleep-0.0.12) + ("rust-uu-sort" ,rust-uu-sort-0.0.12) + ("rust-uu-split" ,rust-uu-split-0.0.12) + ("rust-uu-stat" ,rust-uu-stat-0.0.12) + ("rust-uu-stdbuf" ,rust-uu-stdbuf-0.0.12) + ("rust-uu-sum" ,rust-uu-sum-0.0.12) + ("rust-uu-sync" ,rust-uu-sync-0.0.12) + ("rust-uu-tac" ,rust-uu-tac-0.0.12) + ("rust-uu-tail" ,rust-uu-tail-0.0.12) + ("rust-uu-tee" ,rust-uu-tee-0.0.12) + ("rust-uu-test" ,rust-uu-test-0.0.12) + ("rust-uu-timeout" ,rust-uu-timeout-0.0.12) + ("rust-uu-touch" ,rust-uu-touch-0.0.12) + ("rust-uu-tr" ,rust-uu-tr-0.0.12) + ("rust-uu-true" ,rust-uu-true-0.0.12) + ("rust-uu-truncate" ,rust-uu-truncate-0.0.12) + ("rust-uu-tsort" ,rust-uu-tsort-0.0.12) + ("rust-uu-tty" ,rust-uu-tty-0.0.12) + ("rust-uu-uname" ,rust-uu-uname-0.0.12) + ("rust-uu-unexpand" ,rust-uu-unexpand-0.0.12) + ("rust-uu-uniq" ,rust-uu-uniq-0.0.12) + ("rust-uu-unlink" ,rust-uu-unlink-0.0.12) + ("rust-uu-uptime" ,rust-uu-uptime-0.0.12) + ("rust-uu-users" ,rust-uu-users-0.0.12) + ("rust-uu-wc" ,rust-uu-wc-0.0.12) + ("rust-uu-who" ,rust-uu-who-0.0.12) + ("rust-uu-whoami" ,rust-uu-whoami-0.0.12) + ("rust-uu-yes" ,rust-uu-yes-0.0.12) + ("rust-uucore" ,rust-uucore-0.0.12) +; ("rust-sieve", rust-sieve-0.1) +) + #:tests? #f + #:cargo-development-inputs + (("rust-atty" ,rust-atty-0.2) + ("rust-chrono" ,rust-chrono-0.4) + ("rust-conv" ,rust-conv-0.3) + ("rust-filetime" ,rust-filetime-0.2) + ("rust-glob" ,rust-glob-0.3) + ("rust-libc" ,rust-libc-0.2) + ("rust-nix" ,rust-nix-0.23) + ("rust-pretty-assertions" ,rust-pretty-assertions-1) + ("rust-rand" ,rust-rand-0.7) + ("rust-regex" ,rust-regex-1) + ("rust-rlimit" ,rust-rlimit-0.4) + ("rust-sha1" ,rust-sha1-0.6) + ("rust-tempfile" ,rust-tempfile-3) + ("rust-time" ,rust-time-0.1) + ("rust-unindent" ,rust-unindent-0.1) + ("rust-unix-socket" ,rust-unix-socket-0.5) + ("rust-users" ,rust-users-0.10) + ("rust-uucore" ,rust-uucore-0.0.12) + ("rust-walkdir" ,rust-walkdir-2)))) + (home-page "https://github.com/uutils/coreutils") + (synopsis + "coreutils ~ GNU coreutils (updated); implemented as universal (cross-platform) utils, written in Rust") + (description + "coreutils ~ GNU coreutils (updated); implemented as universal (cross-platform) +utils, written in Rust") + (license license:expat))) + +rust-coreutils-0.0.12 \ No newline at end of file From 04d9ff1f2376b48a6b26ef66c8ac695e3a649b6f Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Fri, 25 Feb 2022 19:13:21 +0100 Subject: [PATCH 223/383] add mariadb as a dependancy --- glicid/packages/parallel.scm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/glicid/packages/parallel.scm b/glicid/packages/parallel.scm index 1301c9a..efce97e 100644 --- a/glicid/packages/parallel.scm +++ b/glicid/packages/parallel.scm @@ -11,6 +11,7 @@ #:use-module (gnu packages compression) #:use-module (gnu packages mpi) #:use-module (gnu packages haskell-xyz) + #:use-module (gnu packages databases) ) (define-public openpmix-3.1.5 @@ -81,6 +82,7 @@ ) (inputs `( ("gtk+-2", gtk+-2) + ("mariadb", mariadb) ,@(package-inputs slurm-20.02) )) ) From 43b9a08575f8262d97db6b72a184d60f6d559ec7 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Fri, 25 Feb 2022 22:24:06 +0100 Subject: [PATCH 224/383] slurm need mariadb:dev ? --- glicid/packages/parallel.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glicid/packages/parallel.scm b/glicid/packages/parallel.scm index efce97e..03bf64b 100644 --- a/glicid/packages/parallel.scm +++ b/glicid/packages/parallel.scm @@ -82,7 +82,7 @@ ) (inputs `( ("gtk+-2", gtk+-2) - ("mariadb", mariadb) + ("mariadb:dev", mariadb:dev) ,@(package-inputs slurm-20.02) )) ) From aa7687e615968932cbc1b326ca3a0bc4c8b0ec44 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Fri, 25 Feb 2022 22:27:35 +0100 Subject: [PATCH 225/383] typo --- glicid/packages/parallel.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glicid/packages/parallel.scm b/glicid/packages/parallel.scm index 03bf64b..805152d 100644 --- a/glicid/packages/parallel.scm +++ b/glicid/packages/parallel.scm @@ -82,7 +82,7 @@ ) (inputs `( ("gtk+-2", gtk+-2) - ("mariadb:dev", mariadb:dev) + ("mariadb:dev", mariadb "dev") ,@(package-inputs slurm-20.02) )) ) From 3222b1469de38d7d2bcc40f6087b0ca9c508acc3 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Mon, 28 Feb 2022 15:12:24 +0100 Subject: [PATCH 226/383] new-version of latest-version --- glicid/utils.scm | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/glicid/utils.scm b/glicid/utils.scm index ae1b244..d7f4ee0 100644 --- a/glicid/utils.scm +++ b/glicid/utils.scm @@ -10,7 +10,16 @@ #:export (transform-package) #:export (instead-of) ) -(define (latest-version v1 v2) (if (string> (package-version v1) (package-version v2)) v1 v2)) +;(define (latest-version v1 v2) (if (string> (package-version v1) (package-version v2)) v1 v2)) + +(define (latest-version v1 v2) + + (case (version-compare (package-version v1) (package-version v2)) + ((>) (v1)) + ((=) (v1)) + ((<) (v2)) + ) +) (define gcc11-instead-of-gcc (package-input-rewriting `( From 563c2549a360307dce50248f38cae8dffb585de6 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Mon, 28 Feb 2022 15:20:11 +0100 Subject: [PATCH 227/383] was missing guix utils --- glicid/utils.scm | 1 + 1 file changed, 1 insertion(+) diff --git a/glicid/utils.scm b/glicid/utils.scm index d7f4ee0..2b6b675 100644 --- a/glicid/utils.scm +++ b/glicid/utils.scm @@ -1,6 +1,7 @@ (define-module (glicid utils) #:use-module (guix packages) #:use-module (guix transformations) + #:use-module (guix utils) #:use-module (gnu packages gcc) #:use-module (glicid packages gcc) #:use-module (gnu packages commencement) From c6dca106a1e83593f5be4e862685e0e59711cd9d Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Mon, 28 Feb 2022 15:24:00 +0100 Subject: [PATCH 228/383] test --- glicid/utils.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/glicid/utils.scm b/glicid/utils.scm index 2b6b675..2781449 100644 --- a/glicid/utils.scm +++ b/glicid/utils.scm @@ -16,9 +16,9 @@ (define (latest-version v1 v2) (case (version-compare (package-version v1) (package-version v2)) - ((>) (v1)) - ((=) (v1)) - ((<) (v2)) + ((>) v1) + ((=) v1) + ((<) v2) ) ) From 68e82731e6e11030ba5d5061b06dfc6011d7206d Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Mon, 28 Feb 2022 15:37:05 +0100 Subject: [PATCH 229/383] upgrade slurm version --- glicid/packages/parallel.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glicid/packages/parallel.scm b/glicid/packages/parallel.scm index 805152d..947916e 100644 --- a/glicid/packages/parallel.scm +++ b/glicid/packages/parallel.scm @@ -103,4 +103,4 @@ ) ) -(define-public slurm-glicid slurm-20.02-glicid) +(define-public slurm-glicid slurm-20.11-glicid) From 0f390920c47cfb5cec5096221c1942494fbd5794 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Mon, 28 Feb 2022 15:58:39 +0100 Subject: [PATCH 230/383] try latest-version --- glicid/packages/fabric-management.scm | 4 +++- glicid/packages/linux.scm | 5 +++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/glicid/packages/fabric-management.scm b/glicid/packages/fabric-management.scm index b17b0a3..878dffa 100644 --- a/glicid/packages/fabric-management.scm +++ b/glicid/packages/fabric-management.scm @@ -2,6 +2,8 @@ #:use-module (guix download) #:use-module (guix packages) #:use-module ((gnu packages fabric-management) #:prefix gnu:) + #:use-module (glicid utils) + ) (define-public ucx-newer-1.11.2 @@ -50,4 +52,4 @@ ) (define local-ucx ucx-newer-1.12.0) -(define-public ucx-latest local-ucx) +(define-public ucx-latest (latest-version local-ucx gnu:ucx)) diff --git a/glicid/packages/linux.scm b/glicid/packages/linux.scm index 4ffde2f..82e7be1 100644 --- a/glicid/packages/linux.scm +++ b/glicid/packages/linux.scm @@ -13,6 +13,7 @@ #:use-module (gnu packages python) #:use-module (gnu packages tls) ; #:use-module (glicid packages golang) + #:use-module (glicid utils) ) (define-public rdma-core-newer-37.1 @@ -62,7 +63,7 @@ (define local-rdma-core rdma-core-newer-39.0) -(define-public rdma-core-latest local-rdma-core) +(define-public rdma-core-latest (latest-version local-rdma-core gnu:rdma-core)) (define-public libfabric-newer-1.13.1 (package @@ -96,7 +97,7 @@ (define local-libfabric libfabric-newer-1.14.0) -(define-public libfabric-latest local-libfabric) +(define-public libfabric-latest (latest-version local-libfabric gnu:libfabric)) (define-public apptainer-singularity-3.8.5 (package From b1ddc639a31f3c8af0dab53dc7d363257460e35a Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Mon, 28 Feb 2022 16:14:44 +0100 Subject: [PATCH 231/383] new upstream keepalived --- glicid/packages/cluster.scm | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) diff --git a/glicid/packages/cluster.scm b/glicid/packages/cluster.scm index 8f50d72..ee4cbf1 100644 --- a/glicid/packages/cluster.scm +++ b/glicid/packages/cluster.scm @@ -6,10 +6,10 @@ #:use-module (glicid utils) ) -(define-public keepalived-newer-2.2.4 +(define-public keepalived-upstream-2.2.4 (package (inherit gnu:keepalived) - (name "keepalived-newer") + (name "keepalived-upstream") (version "2.2.4") (source (origin (method url-fetch) @@ -19,7 +19,21 @@ ) ) -(define local:keepalived keepalived-newer-2.2.4) +define-public keepalived-upstream-2.2.7 + (package + (inherit gnu:keepalived) + (name "keepalived-upstream") + (version "2.2.7") + (source (origin + (method url-fetch) + (uri (string-append "http://www.keepalived.org/software/keepalived-" version ".tar.gz")) + (sha256 (base32 "17flnzcs8hpj1g8nhhqn6bwbvpksyizcyzk2ah55cjhmfkc406f6" )) + )) + ) +) + + +(define local:keepalived keepalived-upstream-2.2.4) (define keepalived-latest (latest-version local:keepalived gnu:keepalived)) (define-public keepalived-glicid From 3afb997f727ab5d829e010ef124604c399f2bcad Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Mon, 28 Feb 2022 16:22:26 +0100 Subject: [PATCH 232/383] rename packages --- glicid/packages/benchmark.scm | 2 +- glicid/packages/fabric-management.scm | 14 +++++++------- glicid/packages/linux.scm | 24 ++++++++++++------------ glicid/packages/maths.scm | 24 +++++++++++++++--------- 4 files changed, 35 insertions(+), 29 deletions(-) diff --git a/glicid/packages/benchmark.scm b/glicid/packages/benchmark.scm index 394089d..316157d 100644 --- a/glicid/packages/benchmark.scm +++ b/glicid/packages/benchmark.scm @@ -16,7 +16,7 @@ (define-public intel-mpi-benchmarks/openmpi-2021.3 (package (inherit gnu:intel-mpi-benchmarks/openmpi) - (name "intel-mpi-benchmarks-newer") + (name "intel-mpi-benchmarks-upstream") (version "2021.3") (source (origin diff --git a/glicid/packages/fabric-management.scm b/glicid/packages/fabric-management.scm index 878dffa..c826118 100644 --- a/glicid/packages/fabric-management.scm +++ b/glicid/packages/fabric-management.scm @@ -6,10 +6,10 @@ ) -(define-public ucx-newer-1.11.2 +(define-public ucx-upstream-1.11.2 (package (inherit gnu:ucx) - (name (string-append (package-name gnu:ucx) "-newer" )) + (name (string-append (package-name gnu:ucx) "-upstream" )) (version "1.11.2") (source (origin @@ -21,10 +21,10 @@ ) ) -(define-public ucx-newer-1.11.2 +(define-public ucx-upstream-1.11.2 (package (inherit gnu:ucx) - (name (string-append (package-name gnu:ucx) "-newer" )) + (name (string-append (package-name gnu:ucx) "-upstream" )) (version "1.11.2") (source (origin @@ -36,10 +36,10 @@ ) ) -(define-public ucx-newer-1.12.0 +(define-public ucx-upstream-1.12.0 (package (inherit gnu:ucx) - (name (string-append (package-name gnu:ucx) "-newer" )) + (name (string-append (package-name gnu:ucx) "-upstream" )) (version "1.12.0") (source (origin @@ -51,5 +51,5 @@ ) ) -(define local-ucx ucx-newer-1.12.0) +(define local-ucx ucx-upstream-1.12.0) (define-public ucx-latest (latest-version local-ucx gnu:ucx)) diff --git a/glicid/packages/linux.scm b/glicid/packages/linux.scm index 82e7be1..7c795f8 100644 --- a/glicid/packages/linux.scm +++ b/glicid/packages/linux.scm @@ -16,10 +16,10 @@ #:use-module (glicid utils) ) -(define-public rdma-core-newer-37.1 +(define-public rdma-core-upstream-37.1 (package (inherit gnu:rdma-core) - (name (string-append (package-name gnu:rdma-core) "-newer" )) + (name (string-append (package-name gnu:rdma-core) "-upstream" )) (version "37.1") (source (origin @@ -31,10 +31,10 @@ ) ) -(define-public rdma-core-newer-38.0 +(define-public rdma-core-upstream-38.0 (package (inherit gnu:rdma-core) - (name (string-append (package-name gnu:rdma-core) "-newer" )) + (name (string-append (package-name gnu:rdma-core) "-upstream" )) (version "38.0") (source (origin @@ -46,10 +46,10 @@ ) ) -(define-public rdma-core-newer-39.0 +(define-public rdma-core-upstream-39.0 (package (inherit gnu:rdma-core) - (name (string-append (package-name gnu:rdma-core) "-newer" )) + (name (string-append (package-name gnu:rdma-core) "-upstream" )) (version "39.0") (source (origin @@ -61,15 +61,15 @@ ) ) -(define local-rdma-core rdma-core-newer-39.0) +(define local-rdma-core rdma-core-upstream-39.0) (define-public rdma-core-latest (latest-version local-rdma-core gnu:rdma-core)) -(define-public libfabric-newer-1.13.1 +(define-public libfabric-upstream-1.13.1 (package (inherit gnu:libfabric) (version "1.13.1") - (name (string-append (package-name gnu:libfabric) "-newer" )) + (name (string-append (package-name gnu:libfabric) "-upstream" )) (source (origin (method url-fetch) @@ -80,11 +80,11 @@ ) ) -(define-public libfabric-newer-1.14.0 +(define-public libfabric-upstream-1.14.0 (package (inherit gnu:libfabric) (version "1.14.0") - (name (string-append (package-name gnu:libfabric) "-newer" )) + (name (string-append (package-name gnu:libfabric) "-upstream" )) (source (origin (method url-fetch) @@ -95,7 +95,7 @@ ) ) -(define local-libfabric libfabric-newer-1.14.0) +(define local-libfabric libfabric-upstream-1.14.0) (define-public libfabric-latest (latest-version local-libfabric gnu:libfabric)) diff --git a/glicid/packages/maths.scm b/glicid/packages/maths.scm index 1be9e5f..865bf34 100644 --- a/glicid/packages/maths.scm +++ b/glicid/packages/maths.scm @@ -1,18 +1,19 @@ (define-module (glicid packages maths) #:use-module (guix packages) #:use-module (guix utils) - #:use-module (gnu packages maths) + #:use-module ((gnu packages maths) #:prefix gnu:) #:use-module (gnu packages commencement) #:use-module (gnu packages mpi) #:use-module (guix download) #:use-module (guix git-download) #:use-module (gnu packages) + #:use-module (glicid utils) ) -(define-public scalapack-newer +(define-public scalapack-upstream (package - (inherit scalapack) - (name "scalapack-newer") + (inherit gnu:scalapack) + (name "scalapack-upstream") (version "2.1.0-new-upstream") (source (origin @@ -39,13 +40,13 @@ ) ) ) +(define local:scalapack scalapack-upstream) +(define-public scalapack-latest (latest-version local:scalapack gnu:scalapack)) -(define-public scalapack-latest scalapack-newer) - -(define-public openblas-newer-0.3.15 +(define-public openblas-upstream-0.3.15 (package - (inherit openblas) - (name "openblas-newer") + (inherit gnu:openblas) + (name "openblas-upstream") (version "0.3.15") (source (origin @@ -56,3 +57,8 @@ ) ) ) + + +(define local:openblas openblas-upstream-0.3.15) +(define-public scalapack-latest (latest-version local:openblas gnu:openblas)) + From 6d7cdb768f7d7f10685cbdb50c00b6ad5d24aa1d Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Mon, 28 Feb 2022 16:37:25 +0100 Subject: [PATCH 233/383] last rename (newer -> upstream) --- glicid/packages/sssd.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/glicid/packages/sssd.scm b/glicid/packages/sssd.scm index 1d4050f..b9fee8b 100644 --- a/glicid/packages/sssd.scm +++ b/glicid/packages/sssd.scm @@ -5,10 +5,10 @@ #:use-module ((gnu packages sssd) #:prefix gnu:) ) -(define-public sssd-newer-orig +(define-public sssd-upstream-orig (package (inherit gnu:sssd) - (name "sssd-newer") + (name "sssd-upstream") (version "1_16_5") (source (origin From 64e8af89fb02291fe56b4d19c0f2fa94504c7649 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Mon, 28 Feb 2022 16:44:08 +0100 Subject: [PATCH 234/383] typo --- glicid/packages/cluster.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/glicid/packages/cluster.scm b/glicid/packages/cluster.scm index ee4cbf1..80306b3 100644 --- a/glicid/packages/cluster.scm +++ b/glicid/packages/cluster.scm @@ -19,7 +19,7 @@ ) ) -define-public keepalived-upstream-2.2.7 +(define-public keepalived-upstream-2.2.7 (package (inherit gnu:keepalived) (name "keepalived-upstream") @@ -33,7 +33,7 @@ define-public keepalived-upstream-2.2.7 ) -(define local:keepalived keepalived-upstream-2.2.4) +(define local:keepalived keepalived-upstream-2.2.7) (define keepalived-latest (latest-version local:keepalived gnu:keepalived)) (define-public keepalived-glicid From a914fd2dda4aa09a62e3c241d1ff27751d21b202 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Tue, 8 Mar 2022 11:53:46 +0100 Subject: [PATCH 235/383] adding nginx-geoip2-module-3.3 --- glicid/packages/nginx.scm | 59 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) diff --git a/glicid/packages/nginx.scm b/glicid/packages/nginx.scm index db2f844..96dfd82 100644 --- a/glicid/packages/nginx.scm +++ b/glicid/packages/nginx.scm @@ -8,6 +8,7 @@ #:use-module (guix utils) #:use-module (gnu packages compression) #:use-module (gnu packages curl) + #:use-module (gnu packages geo) #:use-module (gnu packages pcre) #:use-module (gnu packages perl) #:use-module (gnu packages pkg-config) @@ -175,3 +176,61 @@ ) ) ) + +(define-public nginx-geoip2-module + (package + (inherit nginx) + (name "nginx-geoip2-module") + (version "3.3") + (source + (origin + (method url-fetch) + (uri (list + (string-append "https://github.com/leev/ngx_http_geoip2_module/archive/refs/tags/" version ".tar.gz") + )) + (sha256 (base32 "19vqzwr6gaqkh3b7zbxc61f87d044ykw9l39i2hi7qrkr0w88ds1" )) + ) + ) + (synopsis "GeoIP2 module for nginx") + (description "GeoIP2 module for nginx.") + (build-system gnu-build-system) + (inputs + `(("nginx-sources" ,(package-source nginx)) + ("libmaxminddb", libmaxminddb) + ,@(package-inputs nginx))) + (arguments + (substitute-keyword-arguments + `(#:configure-flags '("--add-dynamic-module=.") + #:make-flags '("modules") + ,@(package-arguments nginx) + ) + ((#:phases phases) + `(modify-phases ,phases + (add-after 'unpack 'unpack-nginx-sources + (lambda* (#:key inputs native-inputs #:allow-other-keys) + (begin + ;; The nginx source code is part of the module’s source. + (format #t "decompressing nginx source code~%") + (let ((tar (assoc-ref inputs "tar")) (nginx-srcs (assoc-ref inputs "nginx-sources"))) + (invoke (string-append tar "/bin/tar") "xvf" nginx-srcs "--strip-components=1") + ) + #t + ) + ) + ) + (replace 'install + (lambda* (#:key outputs #:allow-other-keys) + (let ((modules-dir (string-append (assoc-ref outputs "out") "/etc/nginx/modules"))) + (install-file "objs/ngx_http_geoip2_module.so" modules-dir) + #t + ) + ) + ) + (delete 'fix-root-dirs) + (delete 'install-man-page) + ) + ) + ) + ) + ) +) From cdbaf7c867a16b2f140cc697c1177064dde11697 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Tue, 8 Mar 2022 12:05:31 +0100 Subject: [PATCH 236/383] updating nginx-geoip2-module-3.3 --- glicid/packages/nginx.scm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/glicid/packages/nginx.scm b/glicid/packages/nginx.scm index 96dfd82..906231b 100644 --- a/glicid/packages/nginx.scm +++ b/glicid/packages/nginx.scm @@ -222,6 +222,7 @@ (lambda* (#:key outputs #:allow-other-keys) (let ((modules-dir (string-append (assoc-ref outputs "out") "/etc/nginx/modules"))) (install-file "objs/ngx_http_geoip2_module.so" modules-dir) + (install-file "objs/ngx_stream_geoip2_module.so" modules-dir) #t ) ) @@ -234,3 +235,4 @@ ) ) ) + From 8bf3ee4336ab068727d5a2c2c9d89f2d50a1ae95 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Wed, 9 Mar 2022 11:14:06 +0100 Subject: [PATCH 237/383] test --- glicid/packages/mpi.scm | 10 ++++++++++ glicid/packages/parallel.scm | 1 + 2 files changed, 11 insertions(+) diff --git a/glicid/packages/mpi.scm b/glicid/packages/mpi.scm index 29e65ce..9d1c804 100644 --- a/glicid/packages/mpi.scm +++ b/glicid/packages/mpi.scm @@ -71,6 +71,16 @@ ) ) +(define-public openmpi-ccipl-libfabric-rdma-ucx + (transform-package + ( + (instead-of "slurm" slurm-ccipl) + openmpi-glicid-libfabric-rdma-ucx + ) "ccipl" + ) +) + + (define openmpi-glicid-transform-gcc-11 (gcc11-instead-of-gcc openmpi-glicid)) (define-public openmpi-glicid-gcc-11 diff --git a/glicid/packages/parallel.scm b/glicid/packages/parallel.scm index 947916e..74bace1 100644 --- a/glicid/packages/parallel.scm +++ b/glicid/packages/parallel.scm @@ -104,3 +104,4 @@ ) (define-public slurm-glicid slurm-20.11-glicid) +(define-public slurm-ccipl slurm-20.02-glicid) From afc92d177b722f2423c3d9c2a9b3f11dc14337ff Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Wed, 9 Mar 2022 12:08:36 +0100 Subject: [PATCH 238/383] tests --- glicid/packages/benchmark.scm | 8 ++++++++ glicid/packages/mpi.scm | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/glicid/packages/benchmark.scm b/glicid/packages/benchmark.scm index 316157d..71d6fe6 100644 --- a/glicid/packages/benchmark.scm +++ b/glicid/packages/benchmark.scm @@ -51,6 +51,14 @@ ) ) +(define-public intel-mpi-benchmarks/openmpi-2021.3-all-ccipl + (transform-package ( + (instead-of "openmpi-glicid-libfabric-rdma" openmpi-glicid-libfabric-rdma-ucx-ccipl) + intel-mpi-benchmarks/openmpi-2021.3-gcc-11 + ) "ccipl") +) + + (define-public stream-benchmarks (package (name "stream-benchmarks") diff --git a/glicid/packages/mpi.scm b/glicid/packages/mpi.scm index 9d1c804..dac1188 100644 --- a/glicid/packages/mpi.scm +++ b/glicid/packages/mpi.scm @@ -71,7 +71,7 @@ ) ) -(define-public openmpi-ccipl-libfabric-rdma-ucx +(define-public openmpi-glicid-libfabric-rdma-ucx-ccipl (transform-package ( (instead-of "slurm" slurm-ccipl) From a650fd6dbefe320b2c9ddf22d64ccb96402fa4db Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Wed, 9 Mar 2022 12:19:41 +0100 Subject: [PATCH 239/383] test --- glicid/packages/mpi.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glicid/packages/mpi.scm b/glicid/packages/mpi.scm index dac1188..9128e8a 100644 --- a/glicid/packages/mpi.scm +++ b/glicid/packages/mpi.scm @@ -74,7 +74,7 @@ (define-public openmpi-glicid-libfabric-rdma-ucx-ccipl (transform-package ( - (instead-of "slurm" slurm-ccipl) + (instead-of "slurm-glicid" slurm-ccipl) openmpi-glicid-libfabric-rdma-ucx ) "ccipl" ) From 1e2831a6f4443652c87262910e9bfc2b079a8122 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Fri, 18 Mar 2022 22:07:47 +0100 Subject: [PATCH 240/383] test libfabric opx --- glicid/packages/linux.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/glicid/packages/linux.scm b/glicid/packages/linux.scm index 7c795f8..16626be 100644 --- a/glicid/packages/linux.scm +++ b/glicid/packages/linux.scm @@ -1,6 +1,7 @@ (define-module (glicid packages linux) #:use-module (guix packages) #:use-module (guix download) + #:use-module (guix git-download) #:use-module ((guix licenses) #:prefix license:) #:use-module (guix build-system gnu) #:use-module (guix build-system go) @@ -95,6 +96,33 @@ ) ) +(define-public libfabric-opx-beta-upstream-1.14.0-a + +(let ((commit "89cbe4d54b23ef98a4795ef8c59f7da85b3a3872")) + (package + (inherit gnu:libfabric) + (version "1.14.0") + (name (string-append (package-name gnu:libfabric) "-opx-beta-upstream" )) + + (source + (origin + + (method git-fetch) + (uri (git-reference + (url "https://github.com/cornelisnetworks/libfabric") +;; (branch "opx-beta-upstream") +;; (commit ("89cbe4d54b23ef98a4795ef8c59f7da85b3a3872")) ;; no tag, as of 2022 03 18 + (commit commit) + )) + (file-name (git-file-name name version)) + (sha256 (base32 "0zbs04lkjbp7y92anmafl7gzamcnq1f147p13hc4byyvjk9rg6f7")) + + ) + ) + ) +) +) + (define local-libfabric libfabric-upstream-1.14.0) (define-public libfabric-latest (latest-version local-libfabric gnu:libfabric)) From 4d4972a7597ad28c18a39abe6e230c183b3fa8d4 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Fri, 18 Mar 2022 22:15:36 +0100 Subject: [PATCH 241/383] checksum error. --- glicid/packages/linux.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glicid/packages/linux.scm b/glicid/packages/linux.scm index 16626be..5abf034 100644 --- a/glicid/packages/linux.scm +++ b/glicid/packages/linux.scm @@ -115,7 +115,7 @@ (commit commit) )) (file-name (git-file-name name version)) - (sha256 (base32 "0zbs04lkjbp7y92anmafl7gzamcnq1f147p13hc4byyvjk9rg6f7")) + (sha256 (base32 "0jbm7yadzk0pc7wv2xsvgdgydh3fpracvcc0j15vbjgf6zhr63iw")) ) ) From daba232823b1c6e610a70cf34f1d9a1e2d94a73c Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Fri, 18 Mar 2022 22:27:47 +0100 Subject: [PATCH 242/383] =?UTF-8?q?inputs=E2=80=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- glicid/packages/linux.scm | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/glicid/packages/linux.scm b/glicid/packages/linux.scm index 5abf034..10dc416 100644 --- a/glicid/packages/linux.scm +++ b/glicid/packages/linux.scm @@ -118,7 +118,11 @@ (sha256 (base32 "0jbm7yadzk0pc7wv2xsvgdgydh3fpracvcc0j15vbjgf6zhr63iw")) ) - ) + ) + (inputs `( + ("autoconf", autoconf) + ,@(package-inputs gnu:libfabric))) + ) ) ) @@ -225,3 +229,5 @@ ) ) ) + + From 3670c79190042741bf10863bac1d205602da790e Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Fri, 18 Mar 2022 22:34:43 +0100 Subject: [PATCH 243/383] missing packages --- glicid/packages/linux.scm | 1 + 1 file changed, 1 insertion(+) diff --git a/glicid/packages/linux.scm b/glicid/packages/linux.scm index 10dc416..1ef1d1f 100644 --- a/glicid/packages/linux.scm +++ b/glicid/packages/linux.scm @@ -11,6 +11,7 @@ #:use-module (gnu packages golang) #:use-module ((gnu packages linux) #:prefix gnu:) #:use-module (gnu packages pkg-config) + #:use-module (gnu packages autotools) #:use-module (gnu packages python) #:use-module (gnu packages tls) ; #:use-module (glicid packages golang) From f3e56a62f6fb0b3cbff5513f0f14c32d64a1f56a Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Mon, 21 Mar 2022 15:50:50 +0100 Subject: [PATCH 244/383] new upstream --- glicid/packages/linux.scm | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/glicid/packages/linux.scm b/glicid/packages/linux.scm index 1ef1d1f..ca14e26 100644 --- a/glicid/packages/linux.scm +++ b/glicid/packages/linux.scm @@ -10,6 +10,7 @@ #:use-module (gnu packages cryptsetup) #:use-module (gnu packages golang) #:use-module ((gnu packages linux) #:prefix gnu:) +; #:use-module (gnu packages linux) ;; yes : redundant FIXIT #:use-module (gnu packages pkg-config) #:use-module (gnu packages autotools) #:use-module (gnu packages python) @@ -99,7 +100,7 @@ (define-public libfabric-opx-beta-upstream-1.14.0-a -(let ((commit "89cbe4d54b23ef98a4795ef8c59f7da85b3a3872")) +(let ((commit "e127cd074bbfd8c50b9f3cfb5b8e24162f8076a4")) (package (inherit gnu:libfabric) (version "1.14.0") @@ -110,11 +111,11 @@ (method git-fetch) (uri (git-reference - (url "https://github.com/cornelisnetworks/libfabric") + (url "https://github.com/ofiwg/libfabric.git") ;; (branch "opx-beta-upstream") ;; (commit ("89cbe4d54b23ef98a4795ef8c59f7da85b3a3872")) ;; no tag, as of 2022 03 18 (commit commit) - )) + )) (file-name (git-file-name name version)) (sha256 (base32 "0jbm7yadzk0pc7wv2xsvgdgydh3fpracvcc0j15vbjgf6zhr63iw")) @@ -122,10 +123,13 @@ ) (inputs `( ("autoconf", autoconf) + ("automake", automake) + ("libtool", libtool) +; ("libuuid" , util-linux "lib") ,@(package-inputs gnu:libfabric))) - ) -) + ) + ) ) (define local-libfabric libfabric-upstream-1.14.0) @@ -232,3 +236,4 @@ ) +libfabric-opx-beta-upstream-1.14.0-a From 943b4e9f4bb201ceb853d71e0f96d01583d728a9 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Mon, 21 Mar 2022 22:25:52 +0100 Subject: [PATCH 245/383] new (beta) libfabric --- glicid/packages/linux.scm | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/glicid/packages/linux.scm b/glicid/packages/linux.scm index ca14e26..6f7c7d4 100644 --- a/glicid/packages/linux.scm +++ b/glicid/packages/linux.scm @@ -10,7 +10,8 @@ #:use-module (gnu packages cryptsetup) #:use-module (gnu packages golang) #:use-module ((gnu packages linux) #:prefix gnu:) -; #:use-module (gnu packages linux) ;; yes : redundant FIXIT + #:use-module (gnu packages linux) ;; yes : redundant FIXIT + #:use-module (gnu system uuid) #:use-module (gnu packages pkg-config) #:use-module (gnu packages autotools) #:use-module (gnu packages python) @@ -98,12 +99,12 @@ ) ) -(define-public libfabric-opx-beta-upstream-1.14.0-a +(define-public libfabric-opx-beta-upstream-1.14.0-c (let ((commit "e127cd074bbfd8c50b9f3cfb5b8e24162f8076a4")) (package (inherit gnu:libfabric) - (version "1.14.0") + (version "1.14.0c") (name (string-append (package-name gnu:libfabric) "-opx-beta-upstream" )) (source @@ -112,12 +113,10 @@ (method git-fetch) (uri (git-reference (url "https://github.com/ofiwg/libfabric.git") -;; (branch "opx-beta-upstream") -;; (commit ("89cbe4d54b23ef98a4795ef8c59f7da85b3a3872")) ;; no tag, as of 2022 03 18 (commit commit) )) (file-name (git-file-name name version)) - (sha256 (base32 "0jbm7yadzk0pc7wv2xsvgdgydh3fpracvcc0j15vbjgf6zhr63iw")) + (sha256 (base32 "0fh665l2xcl59zhbn63y5bm8v9s652gk5s8r094qb4if0bp3in04")) ) ) @@ -125,14 +124,16 @@ ("autoconf", autoconf) ("automake", automake) ("libtool", libtool) -; ("libuuid" , util-linux "lib") + ("libuuid" , util-linux "lib") + ("numactl" , gnu:numactl) + ("psm2" , gnu:psm2) ,@(package-inputs gnu:libfabric))) ) ) ) -(define local-libfabric libfabric-upstream-1.14.0) +(define local-libfabric libfabric-upstream-1.14.0c) (define-public libfabric-latest (latest-version local-libfabric gnu:libfabric)) @@ -236,4 +237,3 @@ ) -libfabric-opx-beta-upstream-1.14.0-a From d07ac40d0eaa7824cc3398ba5b2a357039c253be Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Mon, 21 Mar 2022 22:30:43 +0100 Subject: [PATCH 246/383] typo --- glicid/packages/linux.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glicid/packages/linux.scm b/glicid/packages/linux.scm index 6f7c7d4..b0cadfb 100644 --- a/glicid/packages/linux.scm +++ b/glicid/packages/linux.scm @@ -133,7 +133,7 @@ ) ) -(define local-libfabric libfabric-upstream-1.14.0c) +(define local-libfabric libfabric-opx-beta-upstream-1.14.0-c) (define-public libfabric-latest (latest-version local-libfabric gnu:libfabric)) From afe100dc2c43eaa1e366bb74852d9045336d3b9d Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Tue, 22 Mar 2022 16:36:48 +0100 Subject: [PATCH 247/383] test --- glicid/packages/mpi.scm | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) diff --git a/glicid/packages/mpi.scm b/glicid/packages/mpi.scm index 9128e8a..156c4b6 100644 --- a/glicid/packages/mpi.scm +++ b/glicid/packages/mpi.scm @@ -5,10 +5,33 @@ #:use-module (glicid packages linux) #:use-module (glicid packages fabric-management) #:use-module (glicid utils) + #:use-module (guix utils) #:use-module (glicid packages parallel) ) -(define openmpi-latest gnu:openmpi) + +(define-public openmpi-upstream-4.1.2 + (package + (inherit gnu:openmpi) + (name "openmpi-upstream") + (version "4.1.2") + (source + (origin + (method url-fetch) + (uri (string-append "https://www.open-mpi.org/software/ompi/v" + (version-major+minor version) + "/downloads/openmpi-" version ".tar.bz2")) + (sha256 + (base32 "1nkwq123vvmggcay48snm9qqmrh0bdzpln0l1jnp26niidvplkz2")) + (patches (search-patches "openmpi-mtl-priorities.patch")))) + + ) +) + +(define local-openmpi openmpi-upstream-4.1.2) + +(define-public openmpi-latest (latest-version local-openmpi gnu:openmpi)) + (define-public openmpi-glicid (transform-package @@ -89,3 +112,6 @@ (name (string-append (package-name openmpi-glicid-transform-gcc-11) "-gcc-11" )) ) ) + + +; openmpi-glicid-libfabric-rdma-ucx-ccipl From 452303ae46100c4ab433c635d33fde7d2bf065a8 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Tue, 22 Mar 2022 16:57:25 +0100 Subject: [PATCH 248/383] add mpi upstream --- glicid/packages/mpi.scm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/glicid/packages/mpi.scm b/glicid/packages/mpi.scm index 156c4b6..f8472ea 100644 --- a/glicid/packages/mpi.scm +++ b/glicid/packages/mpi.scm @@ -7,6 +7,7 @@ #:use-module (glicid utils) #:use-module (guix utils) #:use-module (glicid packages parallel) + #:use-module (gnu packages) ) @@ -22,7 +23,7 @@ (version-major+minor version) "/downloads/openmpi-" version ".tar.bz2")) (sha256 - (base32 "1nkwq123vvmggcay48snm9qqmrh0bdzpln0l1jnp26niidvplkz2")) + (base32 "09xmlr4mfs02kwcf5cmdgkcdjj81fjwjmpa3rz2k28f3gz7wfy4v")) (patches (search-patches "openmpi-mtl-priorities.patch")))) ) @@ -114,4 +115,4 @@ ) -; openmpi-glicid-libfabric-rdma-ucx-ccipl +;openmpi-glicid-libfabric-rdma-ucx-ccipl From b428ebcf24eca6dba534c9b434b8bb44c37ee1ed Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Tue, 22 Mar 2022 22:07:18 +0100 Subject: [PATCH 249/383] dependency error --- glicid/packages/benchmark.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glicid/packages/benchmark.scm b/glicid/packages/benchmark.scm index 71d6fe6..d50a85e 100644 --- a/glicid/packages/benchmark.scm +++ b/glicid/packages/benchmark.scm @@ -54,7 +54,7 @@ (define-public intel-mpi-benchmarks/openmpi-2021.3-all-ccipl (transform-package ( (instead-of "openmpi-glicid-libfabric-rdma" openmpi-glicid-libfabric-rdma-ucx-ccipl) - intel-mpi-benchmarks/openmpi-2021.3-gcc-11 + intel-mpi-benchmarks/openmpi-2021.3 ) "ccipl") ) From dc16e4033633eb9e2b07515c01886a1053842177 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Tue, 22 Mar 2022 22:29:53 +0100 Subject: [PATCH 250/383] test --- glicid/packages/benchmark.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glicid/packages/benchmark.scm b/glicid/packages/benchmark.scm index d50a85e..5e8a74b 100644 --- a/glicid/packages/benchmark.scm +++ b/glicid/packages/benchmark.scm @@ -54,7 +54,7 @@ (define-public intel-mpi-benchmarks/openmpi-2021.3-all-ccipl (transform-package ( (instead-of "openmpi-glicid-libfabric-rdma" openmpi-glicid-libfabric-rdma-ucx-ccipl) - intel-mpi-benchmarks/openmpi-2021.3 + intel-mpi-benchmarks/openmpi-2021.3-libfabric-rdma ) "ccipl") ) From 3544e2a774bc8f83cbd20292a5fcdb8aa60abf12 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Tue, 22 Mar 2022 23:05:49 +0100 Subject: [PATCH 251/383] need upstream now --- glicid/packages/benchmark.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glicid/packages/benchmark.scm b/glicid/packages/benchmark.scm index 5e8a74b..8d0d539 100644 --- a/glicid/packages/benchmark.scm +++ b/glicid/packages/benchmark.scm @@ -53,7 +53,7 @@ (define-public intel-mpi-benchmarks/openmpi-2021.3-all-ccipl (transform-package ( - (instead-of "openmpi-glicid-libfabric-rdma" openmpi-glicid-libfabric-rdma-ucx-ccipl) + (instead-of "openmpi-upstream-glicid-libfabric-rdma" openmpi-uptstream-glicid-libfabric-rdma-ucx-ccipl) intel-mpi-benchmarks/openmpi-2021.3-libfabric-rdma ) "ccipl") ) From f20f7b75886f9e61702a6e5e96948a9a16ca0282 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Tue, 22 Mar 2022 23:32:02 +0100 Subject: [PATCH 252/383] test --- glicid/packages/benchmark.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glicid/packages/benchmark.scm b/glicid/packages/benchmark.scm index 8d0d539..1eeb7bf 100644 --- a/glicid/packages/benchmark.scm +++ b/glicid/packages/benchmark.scm @@ -53,7 +53,7 @@ (define-public intel-mpi-benchmarks/openmpi-2021.3-all-ccipl (transform-package ( - (instead-of "openmpi-upstream-glicid-libfabric-rdma" openmpi-uptstream-glicid-libfabric-rdma-ucx-ccipl) + (instead-of "openmpi-upstream-glicid-libfabric-rdma" openmpi-glicid-libfabric-rdma-ucx-ccipl) intel-mpi-benchmarks/openmpi-2021.3-libfabric-rdma ) "ccipl") ) From 4ea76562d7acdfa2f080f5ef1eb88d3b5c8526e7 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Tue, 22 Mar 2022 23:52:46 +0100 Subject: [PATCH 253/383] tests --- glicid/packages/fabric-management.scm | 27 ++++++++++++--------------- glicid/packages/mpi.scm | 6 +++--- 2 files changed, 15 insertions(+), 18 deletions(-) diff --git a/glicid/packages/fabric-management.scm b/glicid/packages/fabric-management.scm index c826118..21448c9 100644 --- a/glicid/packages/fabric-management.scm +++ b/glicid/packages/fabric-management.scm @@ -21,21 +21,6 @@ ) ) -(define-public ucx-upstream-1.11.2 - (package - (inherit gnu:ucx) - (name (string-append (package-name gnu:ucx) "-upstream" )) - (version "1.11.2") - (source - (origin - (method url-fetch) - (uri (string-append "https://github.com/openucx/ucx/releases/download/v" version "/ucx-" version ".tar.gz" )) - (sha256 (base32 "1py62vjr0hgyqsdpr04jhn918i8ccn6ghjalwpcjpz24admgisyy")) - ) - ) - ) -) - (define-public ucx-upstream-1.12.0 (package (inherit gnu:ucx) @@ -51,5 +36,17 @@ ) ) + (define local-ucx ucx-upstream-1.12.0) (define-public ucx-latest (latest-version local-ucx gnu:ucx)) + + + +(define-public ucx-latest-glicid + (transform-package + ( + (instead-of "rdma-core" rdma-core-latest) + ucx-latest + ) "glicid" + ) +) diff --git a/glicid/packages/mpi.scm b/glicid/packages/mpi.scm index f8472ea..ed38a5e 100644 --- a/glicid/packages/mpi.scm +++ b/glicid/packages/mpi.scm @@ -63,7 +63,7 @@ (define-public openmpi-glicid-ucx (transform-package ( - (instead-of "ucx" ucx-latest) openmpi-glicid + (instead-of "ucx" ucx-latest-glicid) openmpi-glicid ) "ucx" ) ) @@ -80,7 +80,7 @@ (define-public openmpi-glicid-libfabric-ucx (transform-package ( - (instead-of "ucx" ucx-latest) + (instead-of "ucx" ucx-latest-glicid) openmpi-glicid-libfabric ) "ucx" ) @@ -89,7 +89,7 @@ (define-public openmpi-glicid-libfabric-rdma-ucx (transform-package ( - (instead-of "ucx" ucx-latest) + (instead-of "ucx" ucx-latest-glicid) openmpi-glicid-libfabric-rdma ) "ucx" ) From 168b5631cff9a7ab3bab314e7180d66b742d1228 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Tue, 22 Mar 2022 23:58:58 +0100 Subject: [PATCH 254/383] missing dep --- glicid/packages/fabric-management.scm | 1 + 1 file changed, 1 insertion(+) diff --git a/glicid/packages/fabric-management.scm b/glicid/packages/fabric-management.scm index 21448c9..6069807 100644 --- a/glicid/packages/fabric-management.scm +++ b/glicid/packages/fabric-management.scm @@ -2,6 +2,7 @@ #:use-module (guix download) #:use-module (guix packages) #:use-module ((gnu packages fabric-management) #:prefix gnu:) + #:use-module (glicid packages linux) #:use-module (glicid utils) ) From 8cb0d22c69bbb550a07a4be2b70d2a86428bf368 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Wed, 23 Mar 2022 14:59:10 +0100 Subject: [PATCH 255/383] new version without psm2 and psm3 --- glicid/packages/linux.scm | 40 ++++++++++++++++++++++++++++++++++++++- 1 file changed, 39 insertions(+), 1 deletion(-) diff --git a/glicid/packages/linux.scm b/glicid/packages/linux.scm index b0cadfb..8252a7a 100644 --- a/glicid/packages/linux.scm +++ b/glicid/packages/linux.scm @@ -133,7 +133,45 @@ ) ) -(define local-libfabric libfabric-opx-beta-upstream-1.14.0-c) + +(define-public libfabric-opx-beta-upstream-1.14.0-d + +(let ((commit "e127cd074bbfd8c50b9f3cfb5b8e24162f8076a4")) + (package + (inherit gnu:libfabric) + (version "1.14.0d") + (name (string-append (package-name gnu:libfabric) "-opx-beta-upstream" )) + + (source + (origin + + (method git-fetch) + (uri (git-reference + (url "https://github.com/ofiwg/libfabric.git") + (commit commit) + )) + (file-name (git-file-name name version)) + (sha256 (base32 "0fh665l2xcl59zhbn63y5bm8v9s652gk5s8r094qb4if0bp3in04")) + + ) + ) + (inputs `( + ("autoconf", autoconf) + ("automake", automake) + ("libtool", libtool) + ; ("libuuid" , util-linux "lib") ; intended : no psm3 + ("numactl" , gnu:numactl) + ; ("psm2" , gnu:psm2) ; intended : no psm2 + ,@(package-inputs gnu:libfabric))) + + ) + ) +) + + + +;(define local-libfabric libfabric-opx-beta-upstream-1.14.0-c) +(define local-libfabric libfabric-opx-beta-upstream-1.14.0-d) (define-public libfabric-latest (latest-version local-libfabric gnu:libfabric)) From b33087e7121bdb50629793a4715a786c35239a96 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Wed, 23 Mar 2022 15:19:08 +0100 Subject: [PATCH 256/383] adding apptainer 1.0.1 --- glicid/packages/linux.scm | 49 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) diff --git a/glicid/packages/linux.scm b/glicid/packages/linux.scm index b0cadfb..c59cbb5 100644 --- a/glicid/packages/linux.scm +++ b/glicid/packages/linux.scm @@ -236,4 +236,53 @@ ) ) +(define-public apptainer + (package + (name "apptainer") + (version "1.0.1") + (source (origin + (method url-fetch) + (uri (list + (string-append "https://github.com/apptainer/apptainer/archive/refs/tags/v" version ".tar.gz") + )) + (sha256 (base32 "192x2s7d6gqkgl8p0v6b66qy07zx1n7i537gqgy7k5gdhhif958b")) + ) + ) + (home-page "https://apptainer.org/") + (synopsis "THE CONTAINER SYSTEM FOR SECURE HIGH PERFORMANCE COMPUTING") + (description "Apptainer/Singularity is the most widely used container system for HPC. + It is designed to execute applications at bare-metal performance while + being secure, portable, and 100% reproducible. Apptainer is an + open-source project with a friendly community of developers and users. + The user base continues to expand, with Apptainer/Singularity now used + across industry and academia in many areas of work." + ) + (license license:bsd-3) + (build-system gnu-build-system) + (inputs `( + ("libarchive", libarchive) + ("python", python-wrapper) + ("zlib", zlib) + ("squashfs-tools", squashfs-tools) + ("openssl", openssl) + ("libseccomp", gnu:libseccomp) + ("cryptsetup", cryptsetup) + ("go", go-1.17) + ("pkg-config", pkg-config) + )) + (arguments + `(#:phases + (modify-phases %standard-phases + (replace 'configure + (lambda* (#:key inputs native-inputs propagated-inputs configure-flags #:allow-other-keys) + (begin + (invoke "./mconfig" "--localstatedir=/var") + ) + ) + ) + ) + ) + ) + ) +) From 5e5bb89199fbf1c8bde21670a5536dfd4c329ea3 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Wed, 23 Mar 2022 15:24:55 +0100 Subject: [PATCH 257/383] tests --- glicid/packages/linux.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glicid/packages/linux.scm b/glicid/packages/linux.scm index 8252a7a..0a5e725 100644 --- a/glicid/packages/linux.scm +++ b/glicid/packages/linux.scm @@ -159,7 +159,7 @@ ("autoconf", autoconf) ("automake", automake) ("libtool", libtool) - ; ("libuuid" , util-linux "lib") ; intended : no psm3 + ("libuuid" , util-linux "lib") ("numactl" , gnu:numactl) ; ("psm2" , gnu:psm2) ; intended : no psm2 ,@(package-inputs gnu:libfabric))) From cc10403812e93a91f974581b15b99dbbcfbfc834 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Wed, 23 Mar 2022 15:26:46 +0100 Subject: [PATCH 258/383] adding apptainer 1.0.1 --- glicid/packages/linux.scm | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/glicid/packages/linux.scm b/glicid/packages/linux.scm index 733de5e..d2be2e3 100644 --- a/glicid/packages/linux.scm +++ b/glicid/packages/linux.scm @@ -279,13 +279,13 @@ (name "apptainer") (version "1.0.1") (source (origin - (method url-fetch) - (uri (list - (string-append "https://github.com/apptainer/apptainer/archive/refs/tags/v" version ".tar.gz") - )) - (sha256 (base32 "192x2s7d6gqkgl8p0v6b66qy07zx1n7i537gqgy7k5gdhhif958b")) - ) - ) + (method git-fetch) + (uri (git-reference + (url "https://github.com/apptainer/apptainer/") + (commit "a308dd1a664a0bf01ff74b39c69d07442c7fac4f") + )) + (sha256 (base32 "1canl8277phpy6137qphs3i6yhxpi890b29qjf9jb7sqa3y8yf1n")) + )) (home-page "https://apptainer.org/") (synopsis "THE CONTAINER SYSTEM FOR SECURE HIGH PERFORMANCE COMPUTING") (description "Apptainer/Singularity is the most widely used container system for HPC. From a5d12b8599ac82c1c489ccfef6a2e03420a8a119 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Wed, 23 Mar 2022 15:30:14 +0100 Subject: [PATCH 259/383] adding apptainer 1.0.1 --- glicid/packages/linux.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glicid/packages/linux.scm b/glicid/packages/linux.scm index 8095129..94e712c 100644 --- a/glicid/packages/linux.scm +++ b/glicid/packages/linux.scm @@ -284,7 +284,7 @@ (url "https://github.com/apptainer/apptainer/") (commit "a308dd1a664a0bf01ff74b39c69d07442c7fac4f") )) - (sha256 (base32 "1canl8277phpy6137qphs3i6yhxpi890b29qjf9jb7sqa3y8yf1n")) + (sha256 (base32 "0k2fkwlvp72vh07a7m1sdzj1f3zml9y5mligzhnscs7zzlv5s28j")) )) (home-page "https://apptainer.org/") (synopsis "THE CONTAINER SYSTEM FOR SECURE HIGH PERFORMANCE COMPUTING") From 1458cf8dc0a962c99ac649cbdebd358559888ccf Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Wed, 23 Mar 2022 16:26:03 +0100 Subject: [PATCH 260/383] adding apptainer 1.0.1 --- glicid/packages/linux.scm | 99 --------------------------------------- 1 file changed, 99 deletions(-) diff --git a/glicid/packages/linux.scm b/glicid/packages/linux.scm index 94e712c..1c92ddb 100644 --- a/glicid/packages/linux.scm +++ b/glicid/packages/linux.scm @@ -175,105 +175,6 @@ (define-public libfabric-latest (latest-version local-libfabric gnu:libfabric)) -(define-public apptainer-singularity-3.8.5 - (package - (name "singularity") - (version "3.8.5") - (source - (origin - (method url-fetch) - (uri (string-append "https://github.com/apptainer/singularity/releases/download/v" version "/singularity-" version ".tar.gz")) - (sha256 (base32 "1r1w2n1ndj5psvpm87ij6gwr0hwrbsn6gllv4q44spbvq2spizvz")) - ) - ) - (home-page "https://apptainer.org/") - (synopsis "THE CONTAINER SYSTEM FOR SECURE HIGH PERFORMANCE COMPUTING") - (description "Apptainer/Singularity is the most widely used container system for HPC. - It is designed to execute applications at bare-metal performance while - being secure, portable, and 100% reproducible. Apptainer is an - open-source project with a friendly community of developers and users. - The user base continues to expand, with Apptainer/Singularity now used - across industry and academia in many areas of work." - ) - (license license:bsd-3) - (build-system gnu-build-system) - (inputs `( - ("libarchive", libarchive) - ("python", python-wrapper) - ("zlib", zlib) - ("squashfs-tools", squashfs-tools) - ("openssl", openssl) - ("libseccomp", gnu:libseccomp) - ("cryptsetup", cryptsetup) - ("go", go-1.17) - ("pkg-config", pkg-config) -; ("go-github-com-AdamKorcz-go-fuzz-headers", go-github-com-AdamKorcz-go-fuzz-headers) -; ("go-github-com-Netflix-go-expect", go-github-com-Netflix-go-expect) -; ("go-github-com-adigunhammedolalekan-registry-auth", go-github-com-adigunhammedolalekan-registry-auth) -; ("go-github-com-alexflint-go-filemutex", go-github-com-alexflint-go-filemutex) -; ("go-github-com-apex-log", go-github-com-apex-log) -; ("go-github-com-blang-semver-v4", go-github-com-blang-semver-v4) -; ("go-github-com-buger-jsonparser", go-github-com-buger-jsonparser) -; ("go-github-com-bugsnag-bugsnag-go", go-github-com-bugsnag-bugsnag-go) -; ("go-github-com-bugsnag-panicwrap", go-github-com-bugsnag-panicwrap) -; ("go-github-com-containerd-cgroups", go-github-com-containerd-cgroups) -; ("go-github-com-containerd-containerd", go-github-com-containerd-containerd) -; ("go-github-com-containernetworking-cni", go-github-com-containernetworking-cni) -; ("go-github-com-containernetworking-plugins", go-github-com-containernetworking-plugins) -; ("go-github-com-containers-image-v5", go-github-com-containers-image-v5) -; ("go-github-com-cyphar-filepath-securejoin", go-github-com-cyphar-filepath-securejoin) -; ("go-github-com-fatih-color", go-github-com-fatih-color) -; ("go-github-com-go-log-log", go-github-com-go-log-log) -; ("go-github-com-godbus-dbus", go-github-com-godbus-dbus) -; ("go-github-com-google-uuid", go-github-com-google-uuid) -; ("go-github-com-gorilla-websocket", go-github-com-gorilla-websocket) -; ("go-github-com-hpcng-sif", go-github-com-hpcng-sif) -; ("go-github-com-kardianos-osext", go-github-com-kardianos-osext) -; ("go-github-com-kr-pty", go-github-com-kr-pty) -; ("go-github-com-opencontainers-go-digest", go-github-com-opencontainers-go-digest) -; ("go-github-com-opencontainers-image-spec", go-github-com-opencontainers-image-spec) -; ("go-github-com-opencontainers-runtime-spec", go-github-com-opencontainers-runtime-spec) -; ("go-github-com-opencontainers-runtime-tools", go-github-com-opencontainers-runtime-tools) -; ("go-github-com-opencontainers-selinux", go-github-com-opencontainers-selinux) -; ("go-github-com-opencontainers-umoci", go-github-com-opencontainers-umoci) -; ("go-github-com-pelletier-go-toml", go-github-com-pelletier-go-toml) -; ("go-github-com-pkg-errors", go-github-com-pkg-errors) -; ("go-github-com-russross-blackfriday-v2", go-github-com-russross-blackfriday-v2) -; ("go-github-com-satori-go-uuid", go-github-com-satori-go-uuid) -; ("go-github-com-seccomp-containers-golang", go-github-com-seccomp-containers-golang) -; ("go-github-com-seccomp-libseccomp-golang", go-github-com-seccomp-libseccomp-golang) -; ("go-github-com-spf13-cobra", go-github-com-spf13-cobra) -; ("go-github-com-spf13-pflag", go-github-com-spf13-pflag) -; ("go-github-com-sylabs-json-resp", go-github-com-sylabs-json-resp) -; ("go-github-com-sylabs-scs-build-client", go-github-com-sylabs-scs-build-client) -; ("go-github-com-sylabs-scs-key-client", go-github-com-sylabs-scs-key-client) -; ("go-github-com-sylabs-scs-library-client", go-github-com-sylabs-scs-library-client) -; ("go-github-com-urfave-cli", go-github-com-urfave-cli) -; ("go-github-com-vbauerster-mpb-v4", go-github-com-vbauerster-mpb-v4) -; ("go-github-com-vbauerster-mpb-v6", go-github-com-vbauerster-mpb-v6) -; ("go-github-com-xeipuuv-gojsonpointer", go-github-com-xeipuuv-gojsonpointer) -; ("go-github-com-yvasiyarov-go-metrics", go-github-com-yvasiyarov-go-metrics) -; ("go-github-com-yvasiyarov-gorelic", go-github-com-yvasiyarov-gorelic) -; ("go-github-com-yvasiyarov-newrelic_platform_go", go-github-com-yvasiyarov-newrelic_platform_go) -; ("go-golang-org-x-crypto", go-golang-org-x-crypto) -; ("go-golang-org-x-sys", go-golang-org-x-sys) - )) - (arguments - `(#:phases - (modify-phases %standard-phases - (replace 'configure - (lambda* (#:key inputs native-inputs propagated-inputs configure-flags #:allow-other-keys) - (begin - (invoke "./mconfig" "--localstatedir=/var") - ) - ) - ) - ) - ) - ) - ) -) - (define-public apptainer (package (name "apptainer") From 1cc1b5faf8a6fef74734407cead48e3bc2dd244a Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Wed, 23 Mar 2022 16:36:37 +0100 Subject: [PATCH 261/383] adding apptainer 1.0.1 --- glicid/packages/linux.scm | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/glicid/packages/linux.scm b/glicid/packages/linux.scm index 1c92ddb..e9f82bb 100644 --- a/glicid/packages/linux.scm +++ b/glicid/packages/linux.scm @@ -219,6 +219,11 @@ ) ) ) + (add-before 'build 'make-depend + (lambda* (#:key input #:allow-other-keys) + (invoke "echo" version " > VERSION") + ) + ) ) ) ) From 3501d6a55a1e9ffd40819e5f3783c78d4b2b9cfb Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Wed, 23 Mar 2022 16:42:17 +0100 Subject: [PATCH 262/383] adding apptainer 1.0.1 --- glicid/packages/linux.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glicid/packages/linux.scm b/glicid/packages/linux.scm index e9f82bb..c6e2771 100644 --- a/glicid/packages/linux.scm +++ b/glicid/packages/linux.scm @@ -219,7 +219,7 @@ ) ) ) - (add-before 'build 'make-depend + (add-before 'configure (lambda* (#:key input #:allow-other-keys) (invoke "echo" version " > VERSION") ) From 9cf0fa2de3b7232fb800b0bc720dff9552bc8fcb Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Wed, 23 Mar 2022 16:44:43 +0100 Subject: [PATCH 263/383] adding apptainer 1.0.1 --- glicid/packages/linux.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glicid/packages/linux.scm b/glicid/packages/linux.scm index c6e2771..0214022 100644 --- a/glicid/packages/linux.scm +++ b/glicid/packages/linux.scm @@ -221,7 +221,7 @@ ) (add-before 'configure (lambda* (#:key input #:allow-other-keys) - (invoke "echo" version " > VERSION") + (invoke "echo" version ">" "VERSION") ) ) ) From bebb78c93ef9abd79784425232a8dc1b52b0db16 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Wed, 23 Mar 2022 16:45:26 +0100 Subject: [PATCH 264/383] adding apptainer 1.0.1 --- glicid/packages/linux.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glicid/packages/linux.scm b/glicid/packages/linux.scm index 0214022..b85e5a7 100644 --- a/glicid/packages/linux.scm +++ b/glicid/packages/linux.scm @@ -221,7 +221,7 @@ ) (add-before 'configure (lambda* (#:key input #:allow-other-keys) - (invoke "echo" version ">" "VERSION") + (invoke "echo" "1.1.0" ">" "VERSION") ) ) ) From 00931c64a63106eaf546d12b9781f25240d1da6a Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Wed, 23 Mar 2022 16:46:14 +0100 Subject: [PATCH 265/383] adding apptainer 1.0.1 --- glicid/packages/linux.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/glicid/packages/linux.scm b/glicid/packages/linux.scm index b85e5a7..776fe54 100644 --- a/glicid/packages/linux.scm +++ b/glicid/packages/linux.scm @@ -219,9 +219,9 @@ ) ) ) - (add-before 'configure + (add-before 'configure 'set-version (lambda* (#:key input #:allow-other-keys) - (invoke "echo" "1.1.0" ">" "VERSION") + (invoke "echo" version ">" "VERSION") ) ) ) From 422a7a33f8994d609cb088d81be51aaff215c9f4 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Wed, 23 Mar 2022 16:48:40 +0100 Subject: [PATCH 266/383] adding apptainer 1.0.1 --- glicid/packages/linux.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glicid/packages/linux.scm b/glicid/packages/linux.scm index 776fe54..cce5703 100644 --- a/glicid/packages/linux.scm +++ b/glicid/packages/linux.scm @@ -221,7 +221,7 @@ ) (add-before 'configure 'set-version (lambda* (#:key input #:allow-other-keys) - (invoke "echo" version ">" "VERSION") + (invoke "echo" "1.0.1" ">" "VERSION") ) ) ) From c43568d4d612407527162dd7d15f8314161cfe74 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Wed, 23 Mar 2022 16:52:25 +0100 Subject: [PATCH 267/383] adding apptainer 1.0.1 --- glicid/packages/linux.scm | 1 + 1 file changed, 1 insertion(+) diff --git a/glicid/packages/linux.scm b/glicid/packages/linux.scm index cce5703..183d498 100644 --- a/glicid/packages/linux.scm +++ b/glicid/packages/linux.scm @@ -215,6 +215,7 @@ (replace 'configure (lambda* (#:key inputs native-inputs propagated-inputs configure-flags #:allow-other-keys) (begin + (invoke "echo" "1.0.1" ">" "VERSION") (invoke "./mconfig" "--localstatedir=/var") ) ) From 1e3f79cfc39af3055316fc61dc41a10dea18f7c8 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Wed, 23 Mar 2022 17:00:46 +0100 Subject: [PATCH 268/383] adding apptainer 1.0.1 --- glicid/packages/linux.scm | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/glicid/packages/linux.scm b/glicid/packages/linux.scm index 183d498..0102c67 100644 --- a/glicid/packages/linux.scm +++ b/glicid/packages/linux.scm @@ -220,6 +220,13 @@ ) ) ) + (replace 'build + (lambda* (#:key inputs native-inputs propagated-inputs configure-flags #:allow-other-keys) + (begin + (invoke "make" "-C" "buildir") + ) + ) + ) (add-before 'configure 'set-version (lambda* (#:key input #:allow-other-keys) (invoke "echo" "1.0.1" ">" "VERSION") From e2c9498a866ef135d8016f4a42054e536741d49d Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Wed, 23 Mar 2022 17:02:59 +0100 Subject: [PATCH 269/383] adding apptainer 1.0.1 --- glicid/packages/linux.scm | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/glicid/packages/linux.scm b/glicid/packages/linux.scm index 0102c67..ee1281b 100644 --- a/glicid/packages/linux.scm +++ b/glicid/packages/linux.scm @@ -215,7 +215,7 @@ (replace 'configure (lambda* (#:key inputs native-inputs propagated-inputs configure-flags #:allow-other-keys) (begin - (invoke "echo" "1.0.1" ">" "VERSION") + (invoke "echo 1.0.1" ">" "VERSION") (invoke "./mconfig" "--localstatedir=/var") ) ) @@ -223,10 +223,18 @@ (replace 'build (lambda* (#:key inputs native-inputs propagated-inputs configure-flags #:allow-other-keys) (begin - (invoke "make" "-C" "buildir") + (invoke "make" "-C" "builddir") ) ) ) + (replace 'install + (lambda* (#:key inputs native-inputs propagated-inputs configure-flags #:allow-other-keys) + (begin + (invoke "make" "-C" "builddir" "install") + ) + ) + ) + (add-before 'configure 'set-version (add-before 'configure 'set-version (lambda* (#:key input #:allow-other-keys) (invoke "echo" "1.0.1" ">" "VERSION") From 7378cbd2812b6ad14f5c7cd8fc7537ea94630ddb Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Wed, 23 Mar 2022 17:04:40 +0100 Subject: [PATCH 270/383] adding apptainer 1.0.1 --- glicid/packages/linux.scm | 1 - 1 file changed, 1 deletion(-) diff --git a/glicid/packages/linux.scm b/glicid/packages/linux.scm index ee1281b..81c9893 100644 --- a/glicid/packages/linux.scm +++ b/glicid/packages/linux.scm @@ -234,7 +234,6 @@ ) ) ) - (add-before 'configure 'set-version (add-before 'configure 'set-version (lambda* (#:key input #:allow-other-keys) (invoke "echo" "1.0.1" ">" "VERSION") From 9a8266322a3e4187ce11831fb7f1deaa16858339 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Wed, 23 Mar 2022 17:11:08 +0100 Subject: [PATCH 271/383] adding apptainer 1.0.1 --- glicid/packages/linux.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glicid/packages/linux.scm b/glicid/packages/linux.scm index 81c9893..cd5de92 100644 --- a/glicid/packages/linux.scm +++ b/glicid/packages/linux.scm @@ -236,7 +236,7 @@ ) (add-before 'configure 'set-version (lambda* (#:key input #:allow-other-keys) - (invoke "echo" "1.0.1" ">" "VERSION") + (invoke "echo" "'1.0.1' > VERSION") ) ) ) From 01edb97dbf6abc4ef7b6f47d59df2e6a04900ced Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Wed, 23 Mar 2022 17:13:18 +0100 Subject: [PATCH 272/383] adding apptainer 1.0.1 --- glicid/packages/linux.scm | 1 - 1 file changed, 1 deletion(-) diff --git a/glicid/packages/linux.scm b/glicid/packages/linux.scm index cd5de92..1576fa8 100644 --- a/glicid/packages/linux.scm +++ b/glicid/packages/linux.scm @@ -215,7 +215,6 @@ (replace 'configure (lambda* (#:key inputs native-inputs propagated-inputs configure-flags #:allow-other-keys) (begin - (invoke "echo 1.0.1" ">" "VERSION") (invoke "./mconfig" "--localstatedir=/var") ) ) From 9d655e364aee645a71958e98f7f12ca55744ec1b Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Wed, 23 Mar 2022 17:56:58 +0100 Subject: [PATCH 273/383] adding apptainer 1.0.1 --- glicid/packages/golang.scm | 112256 +--------------------------------- glicid/packages/linux.scm | 50 +- 2 files changed, 1771 insertions(+), 110535 deletions(-) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index 5dc16e9..f0ce537 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -6,110538 +6,1726 @@ #:use-module (guix packages) ) -;(define-public go-github-com-adamkorcz-go-fuzz-headers-0.0.0-20210319161527-f761c2329661 -; (package -; (name "go-github-com-adamkorcz-go-fuzz-headers") -; (version "0.0.0-20210319161527-f761c2329661") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/AdamKorcz/go-fuzz-headers") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "043a8lialk5kmxy2g5ka1pss8k71d42y4g0ikkv0ls8kgvxw3cc6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/AdamKorcz/go-fuzz-headers")) -; (home-page "https://github.com/AdamKorcz/go-fuzz-headers") -; (synopsis #f) -; (description #f) -; (license #f))) -; -;(define-public go-github-com-netflix-go-expect-0.0.0-20190729225929-0e00d9168667 -; (package -; (name "go-github-com-netflix-go-expect") -; (version "0.0.0-20190729225929-0e00d9168667") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/Netflix/go-expect") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0kzas7m7fllyj3cn2ijasaw7xkv2yvqxli2l1j3jqsi0ln51fa52")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/Netflix/go-expect")) -; (home-page "https://github.com/Netflix/go-expect") -; (synopsis "go-expect") -; (description -; "Package expect provides an expect-like interface to automate control of -;applications. It is unlike expect in that it does not spawn or manage -;process lifecycle. This package only focuses on expecting output and sending -;input through it's psuedoterminal. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-docker-distribution-2.7.1+incompatible -; (package -; (name "go-github-com-docker-distribution") -; (version "2.7.1+incompatible") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/distribution/distribution") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1nx8b5a68rn81alp8wkkw6qd5v32mgf0fk23mxm60zdf63qk1nzw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/docker/distribution")) -; (home-page "https://github.com/docker/distribution") -; (synopsis "Distribution") -; (description -; "Package distribution will define the interfaces for the components of -;docker distribution. The goal is to allow users to reliably package, ship -;and store content related to docker images. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-docker-libtrust-0.0.0-20160708172513-aabc10ec26b7 -; (package -; (name "go-github-com-docker-libtrust") -; (version "0.0.0-20160708172513-aabc10ec26b7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/docker/libtrust") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1lwslbggzc2b0c4wxl5pn6i2nfgz5jz8f7s7vnid9mrlsk59h7s1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/docker/libtrust")) -; (home-page "https://github.com/docker/libtrust") -; (synopsis "libtrust") -; (description -; "Package libtrust provides an interface for managing authentication and -;authorization using public key cryptography. Authentication is handled -;using the identity attached to the public key and verified through TLS -;x509 certificates, a key challenge, or signature. Authorization and -;access control is managed through a trust graph distributed between -;both remote trust servers and locally cached and managed data. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-gorilla-mux-1.7.4 -; (package -; (name "go-github-com-gorilla-mux") -; (version "1.7.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/gorilla/mux") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1d0sy1paa055ic84sp3766s9pa24q008hf77dc842vrgvn8p3wmh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/gorilla/mux")) -; (home-page "https://github.com/gorilla/mux") -; (synopsis "gorilla/mux") -; (description "Package mux implements a request router and dispatcher. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-davecgh-go-spew-1.1.1 -; (package -; (name "go-github-com-davecgh-go-spew") -; (version "1.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/davecgh/go-spew") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/davecgh/go-spew")) -; (home-page "https://github.com/davecgh/go-spew") -; (synopsis "go-spew") -; (description -; "Go-spew implements a deep pretty printer for Go data structures to aid in -;debugging. A comprehensive suite of tests with 100% test coverage is provided -;to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage -;report. Go-spew is licensed under the liberal ISC license, so it may be used in -;open source or commercial projects.") -; (license license:isc))) -; -;(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.1 -; (package -; (name "go-github-com-konsorten-go-windows-terminal-sequences") -; (version "1.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/konsorten/go-windows-terminal-sequences") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1lchgf27n276vma6iyxa0v1xds68n2g8lih5lavqnx5x6q5pw2ip")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) -; (home-page "https://github.com/konsorten/go-windows-terminal-sequences") -; (synopsis "Windows Terminal Sequences") -; (description -; "This library allow for enabling Windows terminal color support for Go.") -; (license license:expat))) -; -;(define-public go-github-com-pmezard-go-difflib-1.0.0 -; (package -; (name "go-github-com-pmezard-go-difflib") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/pmezard/go-difflib") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/pmezard/go-difflib")) -; (home-page "https://github.com/pmezard/go-difflib") -; (synopsis "go-difflib") -; (description -; "Go-difflib is a partial port of python 3 difflib package. Its main goal -;was to make unified and context diff available in pure Go, mostly for -;testing purposes.") -; (license license:bsd-3))) -; -;(define-public go-github-com-stretchr-objx-0.1.1 -; (package -; (name "go-github-com-stretchr-objx") -; (version "0.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/objx") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0iph0qmpyqg4kwv8jsx6a56a7hhqq8swrazv40ycxk9rzr0s8yls")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/objx")) -; (home-page "https://github.com/stretchr/objx") -; (synopsis "Objx") -; (description -; "Objx - Go package for dealing with maps, slices, JSON and other data. -;") -; (license license:expat))) -; -;(define-public go-github-com-stretchr-testify-1.2.2 -; (package -; (name "go-github-com-stretchr-testify") -; (version "1.2.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/testify") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0dlszlshlxbmmfxj5hlwgv3r22x0y1af45gn1vd198nvvs3pnvfs")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/testify")) -; (home-page "https://github.com/stretchr/testify") -; (synopsis "Testify - Thou Shalt Write Tests") -; (description -; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190422165155-953cdadca894") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0gkha4whk8xkcv3isigbs250akag99isxnd3v9xmy0kl3g88hxy1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-sirupsen-logrus-1.4.2 -; (package -; (name "go-github-com-sirupsen-logrus") -; (version "1.4.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/sirupsen/logrus") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "087k2lxrr9p9dh68yw71d05h5g9p5v26zbwd6j7lghinjfaw334x")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/sirupsen/logrus")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894" -; ,go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894) -; ("go-github-com-stretchr-testify-1.2.2" -; ,go-github-com-stretchr-testify-1.2.2) -; ("go-github-com-stretchr-objx-0.1.1" -; ,go-github-com-stretchr-objx-0.1.1) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.1" -; ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.1) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://github.com/sirupsen/logrus") -; (synopsis "Logrus") -; (description -; "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. -;") -; (license license:expat))) -; -;(define-public go-github-com-adigunhammedolalekan-registry-auth-0.0.0-20200730122110-8cde180a3a60 -; (package -; (name "go-github-com-adigunhammedolalekan-registry-auth") -; (version "0.0.0-20200730122110-8cde180a3a60") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/adigunhammedolalekan/registry-auth") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0855a5c0ifi6q2ghb6gax0kwwra5j7pd2lplq4wp8r83dnv4vwj0")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "github.com/adigunhammedolalekan/registry-auth")) -; (propagated-inputs -; `(("go-github-com-sirupsen-logrus-1.4.2" -; ,go-github-com-sirupsen-logrus-1.4.2) -; ("go-github-com-gorilla-mux-1.7.4" ,go-github-com-gorilla-mux-1.7.4) -; ("go-github-com-docker-libtrust-0.0.0-20160708172513-aabc10ec26b7" -; ,go-github-com-docker-libtrust-0.0.0-20160708172513-aabc10ec26b7) -; ("go-github-com-docker-distribution-2.7.1+incompatible" -; ,go-github-com-docker-distribution-2.7.1+incompatible))) -; (home-page "https://github.com/adigunhammedolalekan/registry-auth") -; (synopsis "registry-auth") -; (description -; "a package to implements docker registry token authentication server as described here [https://github.com/docker/distribution/blob/1b9ab303a477ded9bdd3fc97e9119fa8f9e58fca/docs/spec/auth/index.md]") -; (license license:expat))) -; -;(define-public go-github-com-alexflint-go-filemutex-0.0.0-20171028004239-d358565f3c3f -; (package -; (name "go-github-com-alexflint-go-filemutex") -; (version "0.0.0-20171028004239-d358565f3c3f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/alexflint/go-filemutex") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "19fzbm0x8821awsmqj9ig49dxxkd72p1yfqbijmdwwszvw2r0ggz")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/alexflint/go-filemutex")) -; (home-page "https://github.com/alexflint/go-filemutex") -; (synopsis "FileMutex") -; (description -; "FileMutex is similar to @code{sync.RWMutex}, but also synchronizes across processes. -;On Linux, OSX, and other POSIX systems it uses the flock system call. On windows -;it uses the LockFileEx and UnlockFileEx system calls.") -; (license license:expat))) -; -;(define-public go-github-com-stretchr-testify-1.3.0 -; (package -; (name "go-github-com-stretchr-testify") -; (version "1.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/testify") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0wjchp2c8xbgcbbq32w3kvblk6q6yn533g78nxl6iskq6y95lxsy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/testify")) -; (propagated-inputs -; `(("go-github-com-stretchr-objx-0.1.0" -; ,go-github-com-stretchr-objx-0.1.0) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-davecgh-go-spew-1.1.0" -; ,go-github-com-davecgh-go-spew-1.1.0))) -; (home-page "https://github.com/stretchr/testify") -; (synopsis "Testify - Thou Shalt Write Tests") -; (description -; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -;") -; (license license:expat))) -; -;(define-public go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0 -; (package -; (name "go-github-com-tj-assert") -; (version "0.0.0-20171129193455-018094318fb0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/tj/assert") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "15ika7izp5hkd10dm30apwfvpm0d1yl2rnxs6896q0svz9zvi2z3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/tj/assert")) -; (home-page "https://github.com/tj/assert") -; (synopsis "assert") -; (description -; "Package assert implements the same assertions as the `assert` package but -;stops test execution when a test fails. -;") -; (license license:expat))) -; -;(define-public go-github-com-apex-logs-1.0.0 -; (package -; (name "go-github-com-apex-logs") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/apex/logs") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1kysjp3s8718p02ngpr60gnjjspv0a69biksfjqa1540svrbi850")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/apex/logs")) -; (propagated-inputs -; `(("go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0" -; ,go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0) -; ("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0))) -; (home-page "https://github.com/apex/logs") -; (synopsis "Example") -; (description "Go client for @url{https://apex.sh/logs/,Apex Logs}.") -; (license license:expat))) -; -;(define-public go-github-com-aphistic-golf-0.0.0-20180712155816-02c07f170c5a -; (package -; (name "go-github-com-aphistic-golf") -; (version "0.0.0-20180712155816-02c07f170c5a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/aphistic/golf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1qixab9bb29wqbr4nc5j3g25hq1j7am93f181rkj7a4qacncx763")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/aphistic/golf")) -; (home-page "https://github.com/aphistic/golf") -; (synopsis "golf") -; (description -; "This package provides logging capabilities using the GELF (@url{https://www.graylog.org/resources/gelf-2/,https://www.graylog.org/resources/gelf-2/}) log format -;") -; (license license:expat))) -; -;(define-public go-github-com-mattn-go-isatty-0.0.5 -; (package -; (name "go-github-com-mattn-go-isatty") -; (version "0.0.5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mattn/go-isatty") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "114d5xm8rfxplzd7nxz97gfngb4bhqy102szl084d1afcxsvm4aa")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mattn/go-isatty")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223" -; ,go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223))) -; (home-page "https://github.com/mattn/go-isatty") -; (synopsis "go-isatty") -; (description "Package isatty implements interface to isatty -;") -; (license license:expat))) -; -;(define-public go-github-com-mattn-go-colorable-0.1.1 -; (package -; (name "go-github-com-mattn-go-colorable") -; (version "0.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mattn/go-colorable") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0l640974j804c1yyjfgyxqlsivz0yrzmbql4mhcw2azryigkp08p")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mattn/go-colorable")) -; (propagated-inputs -; `(("go-github-com-mattn-go-isatty-0.0.5" -; ,go-github-com-mattn-go-isatty-0.0.5))) -; (home-page "https://github.com/mattn/go-colorable") -; (synopsis "go-colorable") -; (description "Colorable writer for windows.") -; (license license:expat))) -; -;(define-public go-github-com-mgutz-ansi-0.0.0-20170206155736-9520e82c474b -; (package -; (name "go-github-com-mgutz-ansi") -; (version "0.0.0-20170206155736-9520e82c474b") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mgutz/ansi") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "00bz22314j26736w1f0q4jy9d9dfaml17vn890n5zqy3cmvmww1j")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mgutz/ansi")) -; (home-page "https://github.com/mgutz/ansi") -; (synopsis "ansi") -; (description -; "Package ansi is a small, fast library to create ANSI colored strings and codes. -;") -; (license license:expat))) -; -;(define-public go-github-com-fsnotify-fsnotify-1.4.7 -; (package -; (name "go-github-com-fsnotify-fsnotify") -; (version "1.4.7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/fsnotify/fsnotify") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/fsnotify/fsnotify")) -; (home-page "https://github.com/fsnotify/fsnotify") -; (synopsis "File system notifications for Go") -; (description -; "Package fsnotify provides a platform-independent interface for file system notifications. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.2.0 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0kf4b59rcbb1cchfny2dm9jyznp8ri2hsb14n8iak1q8986xa0ab")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-github-com-hpcloud-tail-1.0.0 -; (package -; (name "go-github-com-hpcloud-tail") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hpcloud/tail") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1njpzc0pi1acg5zx9y6vj9xi6ksbsc5d387rd6904hy6rh2m6kn0")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hpcloud/tail")) -; (home-page "https://github.com/hpcloud/tail") -; (synopsis "Go package for tail-ing files") -; (description -; "This package provides a Go package striving to emulate the features of the BSD @code{tail} program.") -; (license license:expat))) -; -;(define-public go-github-com-onsi-ginkgo-1.6.0 -; (package -; (name "go-github-com-onsi-ginkgo") -; (version "1.6.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/onsi/ginkgo") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0x0gc89vgq38xhgmi2h22bhr73cf2gmk42g89nz89k8dgg9hhr25")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/onsi/ginkgo")) -; (home-page "https://github.com/onsi/ginkgo") -; (synopsis "Ginkgo 2.0 Release Candidate is available!") -; (description "Ginkgo is a BDD-style testing framework for Golang -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20180906233101-161cd47e91fd") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0254ld010iijygbzykib2vags1dc0wlmcmhgh4jl8iny159lhbcv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f -; (package -; (name "go-golang-org-x-sync") -; (version "0.0.0-20180314180146-1d60e4601c6f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sync") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "046jlanz2lkxq1r57x9bl6s4cvfqaic6p2xybsj8mq1120jv4rs6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sync")) -; (home-page "https://golang.org/x/sync") -; (synopsis "Go Sync") -; (description -; "This repository provides Go concurrency primitives in addition to the -;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20180909124046-d0be0721c37e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "081wyvfnlf842dqg03raxfz6lldlxpmyh1prix9lmrrm65arxb12")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-gopkg-in-fsnotify-v1-1.4.7 -; (package -; (name "go-gopkg-in-fsnotify-v1") -; (version "1.4.7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/fsnotify.v1") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path -; "gopkg.in/fsnotify.v1" -; #:unpack-path -; "gopkg.in/fsnotify.v1")) -; (home-page "https://gopkg.in/fsnotify.v1") -; (synopsis "File system notifications for Go") -; (description -; "Package fsnotify provides a platform-independent interface for file system notifications. -;") -; (license license:bsd-3))) -; -;(define-public go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7 -; (package -; (name "go-gopkg-in-tomb-v1") -; (version "1.0.0-20141024135613-dd632973f1e7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/tomb.v1") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1lqmq1ag7s4b3gc3ddvr792c5xb5k6sfn0cchr3i2s7f1c231zjv")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/tomb.v1" #:unpack-path "gopkg.in/tomb.v1")) -; (home-page "https://gopkg.in/tomb.v1") -; (synopsis "Installation and usage") -; (description -; "The tomb package offers a conventional API for clean goroutine termination. -;") -; (license license:bsd-3))) -; -;(define-public go-gopkg-in-yaml-v2-2.2.1 -; (package -; (name "go-gopkg-in-yaml-v2") -; (version "2.2.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/yaml.v2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0dwjrs2lp2gdlscs7bsrmyc5yf6mm4fvgw71bzr9mv2qrd2q73s1")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" -; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) -; (home-page "https://gopkg.in/yaml.v2") -; (synopsis "YAML support for the Go language") -; (description "Package yaml implements YAML support for the Go language. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-onsi-gomega-1.5.0 -; (package -; (name "go-github-com-onsi-gomega") -; (version "1.5.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/onsi/gomega") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1n7i4hksdgv410m43v2sw14bl5vy59dkp6nlw5l76nibbh37syr9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/onsi/gomega")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1) -; ("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" -; ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) -; ("go-gopkg-in-fsnotify-v1-1.4.7" ,go-gopkg-in-fsnotify-v1-1.4.7) -; ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e" -; ,go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e) -; ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" -; ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) -; ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" -; ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) -; ("go-github-com-onsi-ginkgo-1.6.0" ,go-github-com-onsi-ginkgo-1.6.0) -; ("go-github-com-hpcloud-tail-1.0.0" ,go-github-com-hpcloud-tail-1.0.0) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0) -; ("go-github-com-fsnotify-fsnotify-1.4.7" -; ,go-github-com-fsnotify-fsnotify-1.4.7))) -; (home-page "https://github.com/onsi/gomega") -; (synopsis ": a BDD Testing Framework for Golang") -; (description -; "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library. -;") -; (license license:expat))) -; -;(define-public go-github-com-sergi-go-diff-1.0.0 -; (package -; (name "go-github-com-sergi-go-diff") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/sergi/go-diff") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0swiazj8wphs2zmk1qgq75xza6m19snif94h2m6fi8dqkwqdl7c7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/sergi/go-diff")) -; (home-page "https://github.com/sergi/go-diff") -; (synopsis "go-diff") -; (description -; "go-diff offers algorithms to perform operations required for synchronizing plain text:") -; (license license:expat))) -; -;(define-public go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20190404232315-eb5bcb51f2a3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "17k4g8krxbl84gzcs275b7gsh66dzm15fdxivjnx9xz8q84l4kby")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190412213103-97732733099d -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190412213103-97732733099d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "118hkp01i4z1f5h6hcjm0ff2ngqhrzj1f7731n0kw8dr6hvbx0sw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20190426145343-a29dc8fdc734 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20190426145343-a29dc8fdc734") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "07f0jj4haqs0ywc1akk1qjwn5msl2j0pry1rxjkkbfcq4r6ihc1p")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" -; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) -; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" -; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-github-com-aphistic-sweet-0.2.0 -; (package -; (name "go-github-com-aphistic-sweet") -; (version "0.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/aphistic/sweet") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1bb4qagfxf6byqn2yx0vq24xfvisz3ah4w6bvqclc8cklvfngw43")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/aphistic/sweet")) -; (propagated-inputs -; `(("go-golang-org-x-crypto-0.0.0-20190426145343-a29dc8fdc734" -; ,go-golang-org-x-crypto-0.0.0-20190426145343-a29dc8fdc734) -; ("go-github-com-sergi-go-diff-1.0.0" -; ,go-github-com-sergi-go-diff-1.0.0) -; ("go-github-com-onsi-gomega-1.5.0" ,go-github-com-onsi-gomega-1.5.0) -; ("go-github-com-mgutz-ansi-0.0.0-20170206155736-9520e82c474b" -; ,go-github-com-mgutz-ansi-0.0.0-20170206155736-9520e82c474b) -; ("go-github-com-mattn-go-colorable-0.1.1" -; ,go-github-com-mattn-go-colorable-0.1.1))) -; (home-page "https://github.com/aphistic/sweet") -; (synopsis "sweet") -; (description -; "Sweet is a pluggable test runner capable of hooking into standard Go tests. It attempts to provide access to the standard Go test tool as close as possible while adding support for test suites and plugins that can hook into test results to add additional functionality.") -; (license license:expat))) -; -;(define-public go-github-com-jmespath-go-jmespath-0.0.0-20180206201540-c2b33e8439af -; (package -; (name "go-github-com-jmespath-go-jmespath") -; (version "0.0.0-20180206201540-c2b33e8439af") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/jmespath/go-jmespath") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1r6w7ydx8ydryxk3sfhzsk8m6f1nsik9jg3i1zhi69v4kfl4d5cz")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/jmespath/go-jmespath")) -; (home-page "https://github.com/jmespath/go-jmespath") -; (synopsis "go-jmespath - A JMESPath implementation in Go") -; (description -; "go-jmespath is a GO implementation of JMESPath, -;which is a query language for JSON. It will take a JSON -;document and transform it into another JSON document -;through a JMESPath expression.") -; (license license:asl2.0))) -; -;(define-public go-github-com-aws-aws-sdk-go-1.20.6 -; (package -; (name "go-github-com-aws-aws-sdk-go") -; (version "1.20.6") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/aws/aws-sdk-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "016vy5s9finyfgh08j7rvn2pnwymdgj2ydr59w57pysnri87mdwx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/aws/aws-sdk-go")) -; (propagated-inputs -; `(("go-github-com-jmespath-go-jmespath-0.0.0-20180206201540-c2b33e8439af" -; ,go-github-com-jmespath-go-jmespath-0.0.0-20180206201540-c2b33e8439af))) -; (home-page "https://github.com/aws/aws-sdk-go") -; (synopsis "AWS SDK for Go") -; (description -; "Package sdk is the official AWS SDK for the Go programming language. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-aybabtme-rgbterm-0.0.0-20170906152045-cc83f3b3ce59 -; (package -; (name "go-github-com-aybabtme-rgbterm") -; (version "0.0.0-20170906152045-cc83f3b3ce59") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/aybabtme/rgbterm") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0wvmxvjn64968ikvnxrflb1x8rlcwzpfl53fzbxff2axbx9lq50q")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/aybabtme/rgbterm")) -; (home-page "https://github.com/aybabtme/rgbterm") -; (synopsis "RGB terminal") -; (description -; "Package rgbterm colorizes bytes and strings using RGB colors, for a -;full range of pretty terminal strings. -;") -; (license #f))) -; -;(define-public go-github-com-fatih-color-1.7.0 -; (package -; (name "go-github-com-fatih-color") -; (version "1.7.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/fatih/color") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0v8msvg38r8d1iiq2i5r4xyfx0invhc941kjrsg5gzwvagv55inv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/fatih/color")) -; (home-page "https://github.com/fatih/color") -; (synopsis "color") -; (description -; "Package color is an ANSI color package to output colorized or SGR defined -;output to the standard output. The API can be used in several way, pick one -;that suits you. -;") -; (license license:expat))) -; -;(define-public go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515 -; (package -; (name "go-github-com-kr-logfmt") -; (version "0.0.0-20140226030751-b84e30acd515") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kr/logfmt") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "02ldzxgznrfdzvghfraslhgp19la1fczcbzh7wm2zdc6lmpd1qq9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kr/logfmt")) -; (home-page "https://github.com/kr/logfmt") -; (synopsis #f) -; (description -; "Package implements the decoding of logfmt key-value pairs. -;") -; (license license:expat))) -; -;(define-public go-github-com-go-logfmt-logfmt-0.4.0 -; (package -; (name "go-github-com-go-logfmt-logfmt") -; (version "0.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/go-logfmt/logfmt") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "06smxc112xmixz78nyvk3b2hmc7wasf2sl5vxj1xz62kqcq9lzm9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/go-logfmt/logfmt")) -; (propagated-inputs -; `(("go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515" -; ,go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515))) -; (home-page "https://github.com/go-logfmt/logfmt") -; (synopsis "logfmt") -; (description -; "Package logfmt implements utilities to marshal and unmarshal data in the -;logfmt format. The logfmt format records key/value pairs in a way that -;balances readability for humans and simplicity of computer parsing. It is -;most commonly used as a more human friendly alternative to JSON for -;structured logging. -;") -; (license license:expat))) -; -;(define-public go-github-com-golang-protobuf-1.3.1 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.3.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "15am4s4646qy6iv0g3kkqq52rzykqjhm4bf08dk0fy2r58knpsyl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-github-com-google-uuid-1.1.1 -; (package -; (name "go-github-com-google-uuid") -; (version "1.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/uuid") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0hfxcf9frkb57k6q0rdkrmnfs78ms21r1qfk9fhlqga2yh5xg8zb")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/uuid")) -; (home-page "https://github.com/google/uuid") -; (synopsis "uuid") -; (description "Package uuid generates and inspects UUIDs. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-jpillora-backoff-0.0.0-20180909062703-3050d21c67d7 -; (package -; (name "go-github-com-jpillora-backoff") -; (version "0.0.0-20180909062703-3050d21c67d7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/jpillora/backoff") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1nxapdx9xg5gwiscfhq7m0w14hj4gaxb4avmgf1mx9zd3jnw9jxv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/jpillora/backoff")) -; (home-page "https://github.com/jpillora/backoff") -; (synopsis "Backoff") -; (description -; "Package backoff provides an exponential-backoff implementation. -;") -; (license license:expat))) -; -;(define-public go-github-com-kr-pty-1.1.1 -; (package -; (name "go-github-com-kr-pty") -; (version "1.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kr/pty") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0383f0mb9kqjvncqrfpidsf8y6ns5zlrc91c6a74xpyxjwvzl2y6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kr/pty")) -; (home-page "https://github.com/kr/pty") -; (synopsis "pty") -; (description -; "Package pty is a wrapper for github.com/creack/pty, which provides -;functions for working with Unix terminals. -;") -; (license license:expat))) -; -;(define-public go-github-com-kr-text-0.1.0 -; (package -; (name "go-github-com-kr-text") -; (version "0.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kr/text") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1gm5bsl01apvc84bw06hasawyqm4q84vx1pm32wr9jnd7a8vjgj1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kr/text")) -; (propagated-inputs -; `(("go-github-com-kr-pty-1.1.1" ,go-github-com-kr-pty-1.1.1))) -; (home-page "https://github.com/kr/text") -; (synopsis #f) -; (description -; "Package text provides rudimentary functions for manipulating text in -;paragraphs. -;") -; (license license:expat))) -; -;(define-public go-github-com-kr-pretty-0.2.0 -; (package -; (name "go-github-com-kr-pretty") -; (version "0.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kr/pretty") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ywbfzz1h3a3qd8rpkiqwi1dm4w8ls9ijb4x1b7567grns9f0vnp")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kr/pretty")) -; (propagated-inputs -; `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) -; (home-page "https://github.com/kr/pretty") -; (synopsis #f) -; (description -; "Package pretty provides pretty-printing for Go values. This is -;useful during debugging, to avoid wrapping long output lines in -;the terminal. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190222072716-a9d3bda3a223") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1w45zc13xrjzl19s1sx74r5mg3lf2z2nm13wygcdq5r5pyjlhdz9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-mattn-go-isatty-0.0.8 -; (package -; (name "go-github-com-mattn-go-isatty") -; (version "0.0.8") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mattn/go-isatty") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0rqfh1rj6f5wm8p2ky7inm8g10152p7w6n2cli17kf9gad797i8h")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mattn/go-isatty")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223" -; ,go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223))) -; (home-page "https://github.com/mattn/go-isatty") -; (synopsis "go-isatty") -; (description "Package isatty implements interface to isatty -;") -; (license license:expat))) -; -;(define-public go-github-com-mattn-go-colorable-0.1.2 -; (package -; (name "go-github-com-mattn-go-colorable") -; (version "0.1.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mattn/go-colorable") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0512jm3wmzkkn7d99x9wflyqf48n5ri3npy1fqkq6l6adc5mni3n")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mattn/go-colorable")) -; (propagated-inputs -; `(("go-github-com-mattn-go-isatty-0.0.8" -; ,go-github-com-mattn-go-isatty-0.0.8))) -; (home-page "https://github.com/mattn/go-colorable") -; (synopsis "go-colorable") -; (description "Colorable writer for windows.") -; (license license:expat))) -; -;(define-public go-github-com-pkg-errors-0.8.1 -; (package -; (name "go-github-com-pkg-errors") -; (version "0.8.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/pkg/errors") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0g5qcb4d4fd96midz0zdk8b9kz8xkzwfa8kr1cliqbg8sxsy5vd1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/pkg/errors")) -; (home-page "https://github.com/pkg/errors") -; (synopsis "errors") -; (description "Package errors provides simple error handling primitives. -;") -; (license license:bsd-2))) -; -;(define-public go-github-com-rogpeppe-fastuuid-1.1.0 -; (package -; (name "go-github-com-rogpeppe-fastuuid") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/rogpeppe/fastuuid") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1jlif5pxyz3md02ij93kd2y2j1zz0ajc9k8azvn83vv6l3r5c1zg")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/rogpeppe/fastuuid")) -; (home-page "https://github.com/rogpeppe/fastuuid") -; (synopsis "fastuuid") -; (description -; "Package fastuuid provides fast UUID generation of 192 bit -;universally unique identifiers. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-smartystreets-go-aws-auth-0.0.0-20180515143844-0c1422d1fdb9 -; (package -; (name "go-github-com-smartystreets-go-aws-auth") -; (version "0.0.0-20180515143844-0c1422d1fdb9") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/smartystreets-archives/go-aws-auth") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0krfdpgn3gfii1z9fi8ydfw0wwfqyvp6w3rji7w92m528zkjl93d")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/smartystreets/go-aws-auth")) -; (home-page "https://github.com/smartystreets/go-aws-auth") -; (synopsis "go-aws-auth") -; (description -; "Package awsauth implements AWS request signing using Signed Signature Version 2, -;Signed Signature Version 3, and Signed Signature Version 4. Supports S3 and STS. -;") -; (license license:expat))) -; -;(define-public go-github-com-smartystreets-assertions-1.0.0 -; (package -; (name "go-github-com-smartystreets-assertions") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/smartystreets/assertions") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1188hs39zvil41sdnxs83h1hp319lfyc5n2rvd1xnhz1dh5qjjh4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/smartystreets/assertions")) -; (home-page "https://github.com/smartystreets/assertions") -; (synopsis #f) -; (description -; "Package assertions contains the implementations for all assertions which -;are referenced in goconvey's `convey` package -;(github.com/smartystreets/goconvey/convey) and gunit (github.com/smartystreets/gunit) -;for use with the So(...) method. -;They can also be used in traditional Go test functions and even in -;applications. -;") -; (license license:expat))) -; -;(define-public go-github-com-smartystreets-gunit-1.0.0 -; (package -; (name "go-github-com-smartystreets-gunit") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/smartystreets/gunit") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "11d09rl5qqpj36a311pjj8w5jkj83d5b8gdcsx8f1zn4j924sm5d")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/smartystreets/gunit")) -; (propagated-inputs -; `(("go-github-com-smartystreets-assertions-1.0.0" -; ,go-github-com-smartystreets-assertions-1.0.0))) -; (home-page "https://github.com/smartystreets/gunit") -; (synopsis "gunit") -; (description -; "Package gunit provides \"testing\" package hooks and convenience -;functions for writing tests in an xUnit style. -;See the README file and the examples folder for examples. -;") -; (license license:expat))) -; -;(define-public go-github-com-davecgh-go-spew-1.1.1 -; (package -; (name "go-github-com-davecgh-go-spew") -; (version "1.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/davecgh/go-spew") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/davecgh/go-spew")) -; (home-page "https://github.com/davecgh/go-spew") -; (synopsis "go-spew") -; (description -; "Go-spew implements a deep pretty printer for Go data structures to aid in -;debugging. A comprehensive suite of tests with 100% test coverage is provided -;to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage -;report. Go-spew is licensed under the liberal ISC license, so it may be used in -;open source or commercial projects.") -; (license license:isc))) -; -;(define-public go-github-com-davecgh-go-spew-1.1.0 -; (package -; (name "go-github-com-davecgh-go-spew") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/davecgh/go-spew") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/davecgh/go-spew")) -; (home-page "https://github.com/davecgh/go-spew") -; (synopsis "go-spew") -; (description -; "Go-spew implements a deep pretty printer for Go data structures to aid in -;debugging. A comprehensive suite of tests with 100% test coverage is provided -;to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage -;report. Go-spew is licensed under the liberal ISC license, so it may be used in -;open source or commercial projects.") -; (license license:isc))) -; -;(define-public go-github-com-pmezard-go-difflib-1.0.0 -; (package -; (name "go-github-com-pmezard-go-difflib") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/pmezard/go-difflib") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/pmezard/go-difflib")) -; (home-page "https://github.com/pmezard/go-difflib") -; (synopsis "go-difflib") -; (description -; "Go-difflib is a partial port of python 3 difflib package. Its main goal -;was to make unified and context diff available in pure Go, mostly for -;testing purposes.") -; (license license:bsd-3))) -; -;(define-public go-github-com-stretchr-objx-0.1.0 -; (package -; (name "go-github-com-stretchr-objx") -; (version "0.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/objx") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/objx")) -; (home-page "https://github.com/stretchr/objx") -; (synopsis "Objx") -; (description -; "Objx - Go package for dealing with maps, slices, JSON and other data. -;") -; (license license:expat))) -; -;(define-public go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c -; (package -; (name "go-gopkg-in-yaml-v3") -; (version "3.0.0-20200313102051-9f266ea9e77c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/yaml.v3") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1bbai3lzb50m0x2vwsdbagrbhvfylj9k1m32hgbqwldqx4p9ay35")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" -; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) -; (home-page "https://gopkg.in/yaml.v3") -; (synopsis "YAML support for the Go language") -; (description "Package yaml implements YAML support for the Go language. -;") -; (license #f))) -; -;(define-public go-github-com-stretchr-testify-1.6.1 -; (package -; (name "go-github-com-stretchr-testify") -; (version "1.6.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/testify") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1yhiqqzjvi63pf01rgzx68gqkkvjx03fvl5wk30br5l6s81s090l")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/testify")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" -; ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) -; ("go-github-com-stretchr-objx-0.1.0" -; ,go-github-com-stretchr-objx-0.1.0) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-davecgh-go-spew-1.1.0" -; ,go-github-com-davecgh-go-spew-1.1.0))) -; (home-page "https://github.com/stretchr/testify") -; (synopsis "Testify - Thou Shalt Write Tests") -; (description -; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -;") -; (license license:expat))) -; -;(define-public go-gopkg-in-yaml-v3-3.0.0-20200605160147-a5ece683394c -; (package -; (name "go-gopkg-in-yaml-v3") -; (version "3.0.0-20200605160147-a5ece683394c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/yaml.v3") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "03cm7c3p5fh0aa8vnxv5010dgqqr268ivb480ix1salxx3396w68")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" -; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) -; (home-page "https://gopkg.in/yaml.v3") -; (synopsis "YAML support for the Go language") -; (description "Package yaml implements YAML support for the Go language. -;") -; (license #f))) -; -;(define-public go-github-com-tj-assert-0.0.3 -; (package -; (name "go-github-com-tj-assert") -; (version "0.0.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/tj/assert") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1j5swk3fjq1h5fpqkipddz2ccnbidr7qrpm5dpdaflg9q5jnc673")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/tj/assert")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v3-3.0.0-20200605160147-a5ece683394c" -; ,go-gopkg-in-yaml-v3-3.0.0-20200605160147-a5ece683394c) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://github.com/tj/assert") -; (synopsis "assert") -; (description -; "Package assert implements the same assertions as the `assert` package but -;stops test execution when a test fails. -;") -; (license license:expat))) -; -;(define-public go-github-com-tj-go-buffer-1.1.0 -; (package -; (name "go-github-com-tj-go-buffer") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/tj/go-buffer") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1qdxpa069pjjbzh217aadpzz1aq1n6h32lhp60yjcpi7hr4q8fxx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/tj/go-buffer")) -; (propagated-inputs -; `(("go-github-com-tj-assert-0.0.3" ,go-github-com-tj-assert-0.0.3))) -; (home-page "https://github.com/tj/go-buffer") -; (synopsis "Buffer") -; (description -; "Package buffer provides a generic buffer or batching mechanism for flushing -;entries at a given size or interval, useful for cases such as batching log -;events. -;") -; (license license:expat))) -; -;(define-public go-github-com-tj-go-elastic-0.0.0-20171221160941-36157cbbebc2 -; (package -; (name "go-github-com-tj-go-elastic") -; (version "0.0.0-20171221160941-36157cbbebc2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/tj/go-elastic") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1r94vc4hbfvqvjz74n4mvsw4dy3vbyzlivb90kyn8vn76a4wqk69")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/tj/go-elastic")) -; (home-page "https://github.com/tj/go-elastic") -; (synopsis "go-elastic") -; (description -; "Package elastic provides an Elasticsearch client with AWS sigv4 support. -;") -; (license license:expat))) -; -;(define-public go-github-com-tj-go-kinesis-0.0.0-20171128231115-08b17f58cb1b -; (package -; (name "go-github-com-tj-go-kinesis") -; (version "0.0.0-20171128231115-08b17f58cb1b") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/tj/go-kinesis") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "108c6p5j6rhhc2cnc2v5368yfsw73y6lzlvz02vpvvjph8rhmld4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/tj/go-kinesis")) -; (home-page "https://github.com/tj/go-kinesis") -; (synopsis "go-kinesis") -; (description -; "Package kinesis implements a batch producer built on top of the official AWS SDK. -;") -; (license license:expat))) -; -;(define-public go-github-com-tj-go-spin-1.1.0 -; (package -; (name "go-github-com-tj-go-spin") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/tj/go-spin") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "11xr67991m5pwsy1dira3iwd0sr55vmn1cyjwmlqziw4bwpym64s")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/tj/go-spin")) -; (home-page "https://github.com/tj/go-spin") -; (synopsis #f) -; (description #f) -; (license #f))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20190308221718-c2843e01d9a2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190215142949-d0b11bdaac8a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-text-0.3.0 -; (package -; (name "go-golang-org-x-text") -; (version "0.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/text") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/text")) -; (home-page "https://golang.org/x/text") -; (synopsis "Go Text") -; (description -; "text is a repository of text-related packages related to internationalization -;(i18n) and localization (l10n), such as character encodings, text -;transformations, and locale-specific text handling. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20190620200207-3b0461eec859") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0l00c8l0a8xnv6qdpwfzxxsr58jggacgzdrwiprrfx2xqm37b6d5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20180917221912-90fa682c2a6e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-text-0.3.2 -; (package -; (name "go-golang-org-x-text") -; (version "0.3.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/text") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0flv9idw0jm5nm8lx25xqanbkqgfiym6619w575p7nrdh0riqwqh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/text")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" -; ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) -; (home-page "https://golang.org/x/text") -; (synopsis "Go Text") -; (description -; "text is a repository of text-related packages related to internationalization -;(i18n) and localization (l10n), such as character encodings, text -;transformations, and locale-specific text handling. -;") -; (license license:bsd-3))) -; -;(define-public go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15 -; (package -; (name "go-gopkg-in-check-v1") -; (version "1.0.0-20190902080502-41f04d3bba15") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/check.v1") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0vfk9czmlxmp6wndq8k17rhnjxal764mxfhrccza7nwlia760pjy")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) -; (home-page "https://gopkg.in/check.v1") -; (synopsis "Instructions") -; (description -; "Package check is a rich testing extension for Go's testing package. -;") -; (license license:bsd-2))) -; -;(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 -; (package -; (name "go-gopkg-in-check-v1") -; (version "0.0.0-20161208181325-20d25e280405") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/check.v1") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) -; (home-page "https://gopkg.in/check.v1") -; (synopsis "Instructions") -; (description -; "Package check is a rich testing extension for Go's testing package. -;") -; (license license:bsd-2))) -; -;(define-public go-gopkg-in-yaml-v2-2.2.2 -; (package -; (name "go-gopkg-in-yaml-v2") -; (version "2.2.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/yaml.v2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "01wj12jzsdqlnidpyjssmj0r4yavlqy7dwrg7adqd8dicjc4ncsa")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" -; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) -; (home-page "https://gopkg.in/yaml.v2") -; (synopsis "YAML support for the Go language") -; (description "Package yaml implements YAML support for the Go language. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-apex-log-1.9.0 -; (package -; (name "go-github-com-apex-log") -; (version "1.9.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/apex/log") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ibqkncnb8wcwilg2kyfyl5541g69rg551iy6m61q6iwdn5vfhi2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/apex/log")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) -; ("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" -; ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) -; ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) -; ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" -; ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) -; ("go-github-com-tj-go-spin-1.1.0" ,go-github-com-tj-go-spin-1.1.0) -; ("go-github-com-tj-go-kinesis-0.0.0-20171128231115-08b17f58cb1b" -; ,go-github-com-tj-go-kinesis-0.0.0-20171128231115-08b17f58cb1b) -; ("go-github-com-tj-go-elastic-0.0.0-20171221160941-36157cbbebc2" -; ,go-github-com-tj-go-elastic-0.0.0-20171221160941-36157cbbebc2) -; ("go-github-com-tj-go-buffer-1.1.0" ,go-github-com-tj-go-buffer-1.1.0) -; ("go-github-com-tj-assert-0.0.3" ,go-github-com-tj-assert-0.0.3) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-smartystreets-gunit-1.0.0" -; ,go-github-com-smartystreets-gunit-1.0.0) -; ("go-github-com-smartystreets-go-aws-auth-0.0.0-20180515143844-0c1422d1fdb9" -; ,go-github-com-smartystreets-go-aws-auth-0.0.0-20180515143844-0c1422d1fdb9) -; ("go-github-com-rogpeppe-fastuuid-1.1.0" -; ,go-github-com-rogpeppe-fastuuid-1.1.0) -; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) -; ("go-github-com-mattn-go-colorable-0.1.2" -; ,go-github-com-mattn-go-colorable-0.1.2) -; ("go-github-com-kr-pretty-0.2.0" ,go-github-com-kr-pretty-0.2.0) -; ("go-github-com-jpillora-backoff-0.0.0-20180909062703-3050d21c67d7" -; ,go-github-com-jpillora-backoff-0.0.0-20180909062703-3050d21c67d7) -; ("go-github-com-google-uuid-1.1.1" ,go-github-com-google-uuid-1.1.1) -; ("go-github-com-golang-protobuf-1.3.1" -; ,go-github-com-golang-protobuf-1.3.1) -; ("go-github-com-go-logfmt-logfmt-0.4.0" -; ,go-github-com-go-logfmt-logfmt-0.4.0) -; ("go-github-com-fatih-color-1.7.0" ,go-github-com-fatih-color-1.7.0) -; ("go-github-com-aybabtme-rgbterm-0.0.0-20170906152045-cc83f3b3ce59" -; ,go-github-com-aybabtme-rgbterm-0.0.0-20170906152045-cc83f3b3ce59) -; ("go-github-com-aws-aws-sdk-go-1.20.6" -; ,go-github-com-aws-aws-sdk-go-1.20.6) -; ("go-github-com-aphistic-sweet-0.2.0" -; ,go-github-com-aphistic-sweet-0.2.0) -; ("go-github-com-aphistic-golf-0.0.0-20180712155816-02c07f170c5a" -; ,go-github-com-aphistic-golf-0.0.0-20180712155816-02c07f170c5a) -; ("go-github-com-apex-logs-1.0.0" ,go-github-com-apex-logs-1.0.0))) -; (home-page "https://github.com/apex/log") -; (synopsis "Handlers") -; (description -; "Package log implements a simple structured logging API designed with few assumptions. Designed for -;centralized logging solutions such as Kinesis which require encoding and decoding before fanning-out -;to handlers. -;") -; (license license:expat))) -; -;(define-public go-github-com-blang-semver-v4-4.0.0 -; (package -; (name "go-github-com-blang-semver-v4") -; (version "4.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/blang/semver") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "14h9ys4n4kx9cbj42lkdf4i5k3nkll6sd62jcvl7cs565v6fiknz")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/blang/semver/v4")) -; (home-page "https://github.com/blang/semver") -; (synopsis #f) -; (description #f) -; (license license:expat))) -; -;(define-public go-github-com-buger-jsonparser-1.1.1 -; (package -; (name "go-github-com-buger-jsonparser") -; (version "1.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/buger/jsonparser") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0qv2lsh2biwxn927941gqiv5pqg7n4v58j0i536pjp7pr17pq7dp")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/buger/jsonparser")) -; (home-page "https://github.com/buger/jsonparser") -; (synopsis -; "Alternative JSON parser for Go (10x times faster standard library)") -; (description -; "It does not require you to know the structure of the payload (eg. create structs), and allows accessing fields by providing the path to them. It is up to @strong{10 times faster} than standard @code{encoding/json} package (depending on payload size and usage), @strong{allocates no memory}. See benchmarks below.") -; (license license:expat))) -; -;(define-public go-github-com-bugsnag-bugsnag-go-1.5.1 -; (package -; (name "go-github-com-bugsnag-bugsnag-go") -; (version "1.5.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/bugsnag/bugsnag-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "133yi7x5ygwg7iabl246nj2i3lqkkh0pmhpcw4maq2g0b8d7np54")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/bugsnag/bugsnag-go")) -; (home-page "https://github.com/bugsnag/bugsnag-go") -; (synopsis "Bugsnag error reporter for Go") -; (description -; "Package bugsnag captures errors in real-time and reports them to Bugsnag (@url{http://bugsnag.com,http://bugsnag.com}). -;") -; (license license:expat))) -; -;(define-public go-github-com-bugsnag-panicwrap-1.2.0 -; (package -; (name "go-github-com-bugsnag-panicwrap") -; (version "1.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/bugsnag/panicwrap") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1dzsnpdy4b16h8gh6qr9k3bl5dfch7vmglqhsbcxwyli8s09pimx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/bugsnag/panicwrap")) -; (home-page "https://github.com/bugsnag/panicwrap") -; (synopsis "panicwrap") -; (description -; "The panicwrap package provides functions for capturing and handling -;panics in your application. It does this by re-executing the running -;application and monitoring stderr for any panics. At the same time, -;stdout/stderr/etc. are set to the same values so that data is shuttled -;through properly, making the existence of panicwrap mostly transparent. -;") -; (license license:expat))) -; -;(define-public go-github-com-kr-pty-1.1.1 -; (package -; (name "go-github-com-kr-pty") -; (version "1.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kr/pty") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0383f0mb9kqjvncqrfpidsf8y6ns5zlrc91c6a74xpyxjwvzl2y6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kr/pty")) -; (home-page "https://github.com/kr/pty") -; (synopsis "pty") -; (description -; "Package pty is a wrapper for github.com/creack/pty, which provides -;functions for working with Unix terminals. -;") -; (license license:expat))) -; -;(define-public go-github-com-kr-text-0.1.0 -; (package -; (name "go-github-com-kr-text") -; (version "0.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kr/text") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1gm5bsl01apvc84bw06hasawyqm4q84vx1pm32wr9jnd7a8vjgj1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kr/text")) -; (propagated-inputs -; `(("go-github-com-kr-pty-1.1.1" ,go-github-com-kr-pty-1.1.1))) -; (home-page "https://github.com/kr/text") -; (synopsis #f) -; (description -; "Package text provides rudimentary functions for manipulating text in -;paragraphs. -;") -; (license license:expat))) -; -;(define-public go-github-com-kr-pretty-0.2.1 -; (package -; (name "go-github-com-kr-pretty") -; (version "0.2.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kr/pretty") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0vzfz06y9q8gs2nxx0kys0591vzp78k0fvpb8digi5n15h3b25hy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kr/pretty")) -; (propagated-inputs -; `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) -; (home-page "https://github.com/kr/pretty") -; (synopsis #f) -; (description -; "Package pretty provides pretty-printing for Go values. This is -;useful during debugging, to avoid wrapping long output lines in -;the terminal. -;") -; (license license:expat))) -; -;(define-public go-github-com-frankban-quicktest-1.11.3 -; (package -; (name "go-github-com-frankban-quicktest") -; (version "1.11.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/frankban/quicktest") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0d5njmwkfq2809vlimnlvy8ir6kln0c4cgdwr680fwsclpbr43qs")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/frankban/quicktest")) -; (propagated-inputs -; `(("go-github-com-kr-pretty-0.2.1" ,go-github-com-kr-pretty-0.2.1) -; ("go-github-com-google-go-cmp-0.5.4" -; ,go-github-com-google-go-cmp-0.5.4))) -; (home-page "https://github.com/frankban/quicktest") -; (synopsis "quicktest") -; (description -; "Package quicktest provides a collection of Go helpers for writing tests. -;") -; (license license:expat))) -; -;(define-public go-github-com-google-go-cmp-0.5.4 -; (package -; (name "go-github-com-google-go-cmp") -; (version "0.5.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/go-cmp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ld9pwb6l22g75g1zpa691l7q9ki7pjgpcqhwgdfr3va1zisr5ci")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/go-cmp")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" -; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) -; (home-page "https://github.com/google/go-cmp") -; (synopsis "Package for equality of Go values") -; (description -; "This package is intended to be a more powerful and safer alternative to -;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") -; (license license:bsd-3))) -; -;(define-public go-github-com-cilium-ebpf-0.4.0 -; (package -; (name "go-github-com-cilium-ebpf") -; (version "0.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/cilium/ebpf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1j33vfz8mxnqadkd17l0y3ll71gph3ndm8hwrwbwnf5px7bfv9yl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/cilium/ebpf")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" -; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) -; ("go-github-com-google-go-cmp-0.5.4" -; ,go-github-com-google-go-cmp-0.5.4) -; ("go-github-com-frankban-quicktest-1.11.3" -; ,go-github-com-frankban-quicktest-1.11.3))) -; (home-page "https://github.com/cilium/ebpf") -; (synopsis "eBPF") -; (description "Package ebpf is a toolkit for working with eBPF programs. -;") -; (license license:expat))) -; -;(define-public go-github-com-coreos-go-systemd-v22-22.1.0 -; (package -; (name "go-github-com-coreos-go-systemd-v22") -; (version "22.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/coreos/go-systemd") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "127dj1iwp69yj74nwh9ckgc0mkk1mv4yzbxmbdxix1r7j6q35z3j")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/coreos/go-systemd/v22")) -; (propagated-inputs -; `(("go-github-com-godbus-dbus-v5-5.0.3" -; ,go-github-com-godbus-dbus-v5-5.0.3))) -; (home-page "https://github.com/coreos/go-systemd") -; (synopsis "go-systemd") -; (description "Go bindings to systemd. The project has several packages:") -; (license license:asl2.0))) -; -;(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0 -; (package -; (name "go-github-com-cpuguy83-go-md2man-v2") -; (version "2.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/cpuguy83/go-md2man") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) -; (propagated-inputs -; `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" -; ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) -; ("go-github-com-russross-blackfriday-v2-2.0.1" -; ,go-github-com-russross-blackfriday-v2-2.0.1) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0))) -; (home-page "https://github.com/cpuguy83/go-md2man") -; (synopsis "go-md2man") -; (description "Converts markdown into roff (man pages).") -; (license license:expat))) -; -;(define-public go-github-com-docker-go-units-0.4.0 -; (package -; (name "go-github-com-docker-go-units") -; (version "0.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/docker/go-units") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0k8gja8ql4pqg5rzmqvka42vjfs6rzablak87whcnqba6qxpimvz")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/docker/go-units")) -; (home-page "https://github.com/docker/go-units") -; (synopsis "Introduction") -; (description -; "Package units provides helper function to parse and print size and time units -;in human-readable format. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-godbus-dbus-v5-5.0.3 -; (package -; (name "go-github-com-godbus-dbus-v5") -; (version "5.0.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/godbus/dbus") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1bkc904073k807yxg6mvqaxrr6ammmhginr9p54jfb55mz3hfw3s")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/godbus/dbus/v5")) -; (home-page "https://github.com/godbus/dbus") -; (synopsis "dbus") -; (description -; "Package dbus implements bindings to the D-Bus message bus system. -;") -; (license license:bsd-2))) -; -;(define-public go-github-com-yuin-goldmark-1.1.27 -; (package -; (name "go-github-com-yuin-goldmark") -; (version "1.1.27") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/yuin/goldmark") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1872cqnii0kwiqcy81yin0idvjy5mdy4zlzz0csb319lcjs3b923")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/yuin/goldmark")) -; (home-page "https://github.com/yuin/goldmark") -; (synopsis "goldmark") -; (description -; "Package goldmark implements functions to convert markdown text to a desired format. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-mod-0.2.0 -; (package -; (name "go-golang-org-x-mod") -; (version "0.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/mod") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1fp6885dclq77mh73v7i54v2b9llpv4di193zc8vmsbbkkc483cl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/mod")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" -; ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) -; ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" -; ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) -; ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" -; ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) -; (home-page "https://golang.org/x/mod") -; (synopsis "mod") -; (description -; "This repository holds packages for writing tools -;that work directly with Go module mechanics. -;That is, it is for direct manipulation of Go modules themselves.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20200226121028-0de0cce0169b") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1db7s5kbzyh2zd5lpv05n7hp8wbwdvgk0wpiwrlnig94mkr0y5aq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e -; (package -; (name "go-golang-org-x-sync") -; (version "0.0.0-20190911185100-cd5d95a43a6e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sync") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1nqkyz2y1qvqcma52ijh02s8aiqmkfb95j08f6zcjhbga3ds6hds")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sync")) -; (home-page "https://golang.org/x/sync") -; (synopsis "Go Sync") -; (description -; "This repository provides Go concurrency primitives in addition to the -;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543 -; (package -; (name "go-golang-org-x-xerrors") -; (version "0.0.0-20191204190536-9bdfabe68543") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/xerrors") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1yjfi1bk9xb81lqn85nnm13zz725wazvrx3b50hx19qmwg7a4b0c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/xerrors")) -; (home-page "https://golang.org/x/xerrors") -; (synopsis #f) -; (description -; "Package xerrors implements functions to manipulate errors. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20200619180055-7c47624df98f -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20200619180055-7c47624df98f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1fhzwd32j7w9g3algq0zj8g7ivx3f0mn9nx9mj046wdscryn49mk")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" -; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) -; ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" -; ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) -; ("go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b" -; ,go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b) -; ("go-golang-org-x-mod-0.2.0" ,go-golang-org-x-mod-0.2.0) -; ("go-github-com-yuin-goldmark-1.1.27" -; ,go-github-com-yuin-goldmark-1.1.27))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-github-com-kisielk-errcheck-1.5.0 -; (package -; (name "go-github-com-kisielk-errcheck") -; (version "1.5.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kisielk/errcheck") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ci3jz2px74pfmr42jv7dpx7fdzx08vai4czp9fkiyb0gcaiqsk6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kisielk/errcheck")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20200619180055-7c47624df98f" -; ,go-golang-org-x-tools-0.0.0-20200619180055-7c47624df98f))) -; (home-page "https://github.com/kisielk/errcheck") -; (synopsis "errcheck") -; (description -; "errcheck is a program for checking for unchecked errors in go programs.") -; (license license:expat))) -; -;(define-public go-github-com-kisielk-gotool-1.0.0 -; (package -; (name "go-github-com-kisielk-gotool") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kisielk/gotool") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "14af2pa0ssyp8bp2mvdw184s5wcysk6akil3wzxmr05wwy951iwn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kisielk/gotool")) -; (home-page "https://github.com/kisielk/gotool") -; (synopsis "gotool") -; (description -; "Package gotool contains utility functions used to implement the standard -;\"cmd/go\" tool, provided as a convenience to developers who want to write -;tools with similar semantics. -;") -; (license license:expat))) -; -;(define-public go-github-com-yuin-goldmark-1.2.1 -; (package -; (name "go-github-com-yuin-goldmark") -; (version "1.2.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/yuin/goldmark") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "12rsnsf65drcp0jfw2jl9w589vsn3pxdk1zh3v9q908iigngrcmy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/yuin/goldmark")) -; (home-page "https://github.com/yuin/goldmark") -; (synopsis "goldmark") -; (description -; "Package goldmark implements functions to convert markdown text to a desired format. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20191011191535-87dc89f01550") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0z4i1m2yn3f31ci7wvcm2rxkx2yiv7a78mfzklncmsz2k97rlh2g")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" -; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) -; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" -; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20190620200207-3b0461eec859") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0l00c8l0a8xnv6qdpwfzxxsr58jggacgzdrwiprrfx2xqm37b6d5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sync-0.0.0-20190423024810-112230192c58 -; (package -; (name "go-golang-org-x-sync") -; (version "0.0.0-20190423024810-112230192c58") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sync") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "05i2k43j2d0llq768hg5pf3hb2yhfzp9la1w5wp0rsnnzblr0lfn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sync")) -; (home-page "https://golang.org/x/sync") -; (synopsis "Go Sync") -; (description -; "This repository provides Go concurrency primitives in addition to the -;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7 -; (package -; (name "go-golang-org-x-xerrors") -; (version "0.0.0-20190717185122-a985d3407aa7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/xerrors") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "00wzr5w8aadipgc3rkk8f11i41znskfj9ix5nhhaxyg7isrslgcj")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/xerrors")) -; (home-page "https://golang.org/x/xerrors") -; (synopsis #f) -; (description -; "Package xerrors implements functions to manipulate errors. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20191119224855-298f0cb1881e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0l4pqwib2wnfnix6nvxl0yrq87ipi7ff1rz6z5bxfzy9dki1nzmv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7" -; ,go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7) -; ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" -; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) -; ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" -; ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898 -; (package -; (name "go-golang-org-x-xerrors") -; (version "0.0.0-20191011141410-1b5146add898") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/xerrors") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0w2akj91krxjag0xdhsg78470888nicc5ismc2ap9jqpss6v1zih")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/xerrors")) -; (home-page "https://golang.org/x/xerrors") -; (synopsis #f) -; (description -; "Package xerrors implements functions to manipulate errors. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-mod-0.3.0 -; (package -; (name "go-golang-org-x-mod") -; (version "0.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/mod") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ldgbx2zpprbsfn6p8pfgs4nn87gwbfcv2z0fa7n8alwsq2yw78q")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/mod")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" -; ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) -; ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" -; ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) -; ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" -; ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) -; (home-page "https://golang.org/x/mod") -; (synopsis "mod") -; (description -; "This repository holds packages for writing tools -;that work directly with Go module mechanics. -;That is, it is for direct manipulation of Go modules themselves.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190215142949-d0b11bdaac8a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20190308221718-c2843e01d9a2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-text-0.3.0 -; (package -; (name "go-golang-org-x-text") -; (version "0.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/text") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/text")) -; (home-page "https://golang.org/x/text") -; (synopsis "Go Text") -; (description -; "text is a repository of text-related packages related to internationalization -;(i18n) and localization (l10n), such as character encodings, text -;transformations, and locale-specific text handling. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20190404232315-eb5bcb51f2a3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "17k4g8krxbl84gzcs275b7gsh66dzm15fdxivjnx9xz8q84l4kby")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190412213103-97732733099d -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190412213103-97732733099d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "118hkp01i4z1f5h6hcjm0ff2ngqhrzj1f7731n0kw8dr6hvbx0sw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20200622213623-75b288015ac9") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "18vlncvvs11ds3zaaziqjlg5s2vcwi3496nn6qv7p0dp94j5pwa2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" -; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) -; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" -; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20200930185726-fdedc70b468f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1njlfhjbvi4lxvjbq8zswrb0y0q4jd2p6x51h1q6vmyzi9af6869")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20180917221912-90fa682c2a6e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-text-0.3.3 -; (package -; (name "go-golang-org-x-text") -; (version "0.3.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/text") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "19pihqm3phyndmiw6i42pdv6z1rbvlqlsnhsyqf9gsnn0qnmqqlh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/text")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" -; ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) -; (home-page "https://golang.org/x/text") -; (synopsis "Go Text") -; (description -; "text is a repository of text-related packages related to internationalization -;(i18n) and localization (l10n), such as character encodings, text -;transformations, and locale-specific text handling. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20201021035429-f5854403a974 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20201021035429-f5854403a974") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1vw63zpmhi337f3gc432x3wkib4j2ia8dy7if31wxwb9dgqvy222")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) -; ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" -; ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) -; ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" -; ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9 -; (package -; (name "go-golang-org-x-sync") -; (version "0.0.0-20201020160332-67f06af15bc9") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sync") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "093p4panc808ak5bamzz7m9nb0xxib7778jpnr6f0xkz1n4fzyw5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sync")) -; (home-page "https://golang.org/x/sync") -; (synopsis "Go Sync") -; (description -; "This repository provides Go concurrency primitives in addition to the -;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1 -; (package -; (name "go-golang-org-x-xerrors") -; (version "0.0.0-20200804184101-5ec99f83aff1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/xerrors") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1dbzc3gmf2haazpv7cgmv97rq40g2xzwbglc17vas8dwhgwgwrzb")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/xerrors")) -; (home-page "https://golang.org/x/xerrors") -; (synopsis #f) -; (description -; "Package xerrors implements functions to manipulate errors. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20210106214847-113979e3529a -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20210106214847-113979e3529a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0pq1a7hkamqdwsajyfrb27s56cvxz5838krsgyqz346s2djwdrzl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" -; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) -; ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" -; ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) -; ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" -; ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) -; ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) -; ("go-github-com-yuin-goldmark-1.2.1" -; ,go-github-com-yuin-goldmark-1.2.1))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-github-com-gogo-protobuf-1.3.2 -; (package -; (name "go-github-com-gogo-protobuf") -; (version "1.3.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/gogo/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0dfv1bhx5zhb5bsj5sj757nkacf2swp1ajpcyj9d0b37n602m18a")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/gogo/protobuf")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20210106214847-113979e3529a" -; ,go-golang-org-x-tools-0.0.0-20210106214847-113979e3529a) -; ("go-github-com-kisielk-gotool-1.0.0" -; ,go-github-com-kisielk-gotool-1.0.0) -; ("go-github-com-kisielk-errcheck-1.5.0" -; ,go-github-com-kisielk-errcheck-1.5.0))) -; (home-page "https://github.com/gogo/protobuf") -; (synopsis "Protocol Buffers for Go with Gadgets") -; (description -; "gogoprotobuf is a fork of @url{https://github.com/golang/protobuf,golang/protobuf} with extra code generation features.") -; (license license:bsd-3))) -; -;(define-public go-github-com-opencontainers-runtime-spec-1.0.2 -; (package -; (name "go-github-com-opencontainers-runtime-spec") -; (version "1.0.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/runtime-spec") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "19w981vcmd5lp2hy0630x6ayb8zz17n2vxqm2py5mg945xflcizg")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) -; (home-page "https://github.com/opencontainers/runtime-spec") -; (synopsis "Open Container Initiative Runtime Specification") -; (description -; "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") -; (license license:asl2.0))) -; -;(define-public go-github-com-pkg-errors-0.9.1 -; (package -; (name "go-github-com-pkg-errors") -; (version "0.9.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/pkg/errors") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1761pybhc2kqr6v5fm8faj08x9bql8427yqg6vnfv6nhrasx1mwq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/pkg/errors")) -; (home-page "https://github.com/pkg/errors") -; (synopsis "errors") -; (description "Package errors provides simple error handling primitives. -;") -; (license license:bsd-2))) -; -;(define-public go-github-com-davecgh-go-spew-1.1.1 -; (package -; (name "go-github-com-davecgh-go-spew") -; (version "1.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/davecgh/go-spew") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/davecgh/go-spew")) -; (home-page "https://github.com/davecgh/go-spew") -; (synopsis "go-spew") -; (description -; "Go-spew implements a deep pretty printer for Go data structures to aid in -;debugging. A comprehensive suite of tests with 100% test coverage is provided -;to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage -;report. Go-spew is licensed under the liberal ISC license, so it may be used in -;open source or commercial projects.") -; (license license:isc))) -; -;(define-public go-github-com-stretchr-testify-1.2.2 -; (package -; (name "go-github-com-stretchr-testify") -; (version "1.2.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/testify") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0dlszlshlxbmmfxj5hlwgv3r22x0y1af45gn1vd198nvvs3pnvfs")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/testify")) -; (home-page "https://github.com/stretchr/testify") -; (synopsis "Testify - Thou Shalt Write Tests") -; (description -; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20191026070338-33540a1f6037") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0fjcv0vzvi6za0b4xmnk3932pr9f9gczzf03y0kgq3ry9rqg169y")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-sirupsen-logrus-1.7.0 -; (package -; (name "go-github-com-sirupsen-logrus") -; (version "1.7.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/sirupsen/logrus") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1a59pw7zimvm8k423iq9l4f4qjj1ia1xc6pkmhwl2mxc46y2n442")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/sirupsen/logrus")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037" -; ,go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037) -; ("go-github-com-stretchr-testify-1.2.2" -; ,go-github-com-stretchr-testify-1.2.2) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://github.com/sirupsen/logrus") -; (synopsis "Logrus") -; (description -; "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. -;") -; (license license:expat))) -; -;(define-public go-github-com-davecgh-go-spew-1.1.0 -; (package -; (name "go-github-com-davecgh-go-spew") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/davecgh/go-spew") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/davecgh/go-spew")) -; (home-page "https://github.com/davecgh/go-spew") -; (synopsis "go-spew") -; (description -; "Go-spew implements a deep pretty printer for Go data structures to aid in -;debugging. A comprehensive suite of tests with 100% test coverage is provided -;to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage -;report. Go-spew is licensed under the liberal ISC license, so it may be used in -;open source or commercial projects.") -; (license license:isc))) -; -;(define-public go-github-com-stretchr-objx-0.1.0 -; (package -; (name "go-github-com-stretchr-objx") -; (version "0.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/objx") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/objx")) -; (home-page "https://github.com/stretchr/objx") -; (synopsis "Objx") -; (description -; "Objx - Go package for dealing with maps, slices, JSON and other data. -;") -; (license license:expat))) -; -;(define-public go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c -; (package -; (name "go-gopkg-in-yaml-v3") -; (version "3.0.0-20200313102051-9f266ea9e77c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/yaml.v3") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1bbai3lzb50m0x2vwsdbagrbhvfylj9k1m32hgbqwldqx4p9ay35")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" -; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) -; (home-page "https://gopkg.in/yaml.v3") -; (synopsis "YAML support for the Go language") -; (description "Package yaml implements YAML support for the Go language. -;") -; (license #f))) -; -;(define-public go-github-com-stretchr-testify-1.6.1 -; (package -; (name "go-github-com-stretchr-testify") -; (version "1.6.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/testify") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1yhiqqzjvi63pf01rgzx68gqkkvjx03fvl5wk30br5l6s81s090l")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/testify")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" -; ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) -; ("go-github-com-stretchr-objx-0.1.0" -; ,go-github-com-stretchr-objx-0.1.0) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-davecgh-go-spew-1.1.0" -; ,go-github-com-davecgh-go-spew-1.1.0))) -; (home-page "https://github.com/stretchr/testify") -; (synopsis "Testify - Thou Shalt Write Tests") -; (description -; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -;") -; (license license:expat))) -; -;(define-public go-github-com-burntsushi-toml-0.3.1 -; (package -; (name "go-github-com-burntsushi-toml") -; (version "0.3.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/BurntSushi/toml") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1fjdwwfzyzllgiwydknf1pwjvy49qxfsczqx5gz3y0izs7as99j6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/BurntSushi/toml")) -; (home-page "https://github.com/BurntSushi/toml") -; (synopsis "TOML parser and encoder for Go with reflection") -; (description -; "Package toml implements decoding and encoding of TOML files. -;") -; (license license:expat))) -; -;(define-public go-github-com-pmezard-go-difflib-1.0.0 -; (package -; (name "go-github-com-pmezard-go-difflib") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/pmezard/go-difflib") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/pmezard/go-difflib")) -; (home-page "https://github.com/pmezard/go-difflib") -; (synopsis "go-difflib") -; (description -; "Go-difflib is a partial port of python 3 difflib package. Its main goal -;was to make unified and context diff available in pure Go, mostly for -;testing purposes.") -; (license license:bsd-3))) -; -;(define-public go-github-com-russross-blackfriday-v2-2.0.1 -; (package -; (name "go-github-com-russross-blackfriday-v2") -; (version "2.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/russross/blackfriday") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0nlz7isdd4rgnwzs68499hlwicxz34j2k2a0b8jy0y7ycd2bcr5j")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/russross/blackfriday/v2")) -; (home-page "https://github.com/russross/blackfriday") -; (synopsis "Blackfriday") -; (description "Package blackfriday is a markdown processor. -;") -; (license license:bsd-2))) -; -;(define-public go-github-com-shurcool-sanitized-anchor-name-1.0.0 -; (package -; (name "go-github-com-shurcool-sanitized-anchor-name") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/shurcooL/sanitized_anchor_name") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1gv9p2nr46z80dnfjsklc6zxbgk96349sdsxjz05f3z6wb6m5l8f")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/shurcooL/sanitized_anchor_name")) -; (home-page "https://github.com/shurcooL/sanitized_anchor_name") -; (synopsis "sanitized_anchor_name") -; (description -; "Package sanitized_anchor_name provides a func to create sanitized anchor names. -;") -; (license license:expat))) -; -;(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d -; (package -; (name "go-github-com-cpuguy83-go-md2man-v2") -; (version "2.0.0-20190314233015-f79a8a8ca69d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/cpuguy83/go-md2man") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) -; (propagated-inputs -; `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" -; ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) -; ("go-github-com-russross-blackfriday-v2-2.0.1" -; ,go-github-com-russross-blackfriday-v2-2.0.1) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0))) -; (home-page "https://github.com/cpuguy83/go-md2man") -; (synopsis "go-md2man") -; (description "Converts markdown into roff (man pages).") -; (license license:expat))) -; -;(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 -; (package -; (name "go-gopkg-in-check-v1") -; (version "0.0.0-20161208181325-20d25e280405") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/check.v1") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) -; (home-page "https://gopkg.in/check.v1") -; (synopsis "Instructions") -; (description -; "Package check is a rich testing extension for Go's testing package. -;") -; (license license:bsd-2))) -; -;(define-public go-gopkg-in-yaml-v2-2.2.2 -; (package -; (name "go-gopkg-in-yaml-v2") -; (version "2.2.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/yaml.v2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "01wj12jzsdqlnidpyjssmj0r4yavlqy7dwrg7adqd8dicjc4ncsa")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" -; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) -; (home-page "https://gopkg.in/yaml.v2") -; (synopsis "YAML support for the Go language") -; (description "Package yaml implements YAML support for the Go language. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-urfave-cli-1.22.2 -; (package -; (name "go-github-com-urfave-cli") -; (version "1.22.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/urfave/cli") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "10mcnvi5qmn00vpyk6si8gjka7p654wr9hac4zc9w5h3ickhvbdc")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/urfave/cli")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) -; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d" -; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d) -; ("go-github-com-burntsushi-toml-0.3.1" -; ,go-github-com-burntsushi-toml-0.3.1))) -; (home-page "https://github.com/urfave/cli") -; (synopsis "cli") -; (description -; "Package cli provides a minimal framework for creating and organizing command line -;Go applications. cli is designed to be easy to understand and write, the most simple -;cli application can be written as follows: -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20210124154548-22da62e12c0c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "17gp3dl75wq3x7j9z1pqgcyvjhvy9jaln1wbscy57al3whdsjp07")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-containerd-cgroups-1.0.1 -; (package -; (name "go-github-com-containerd-cgroups") -; (version "1.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/cgroups") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1p992w942xba9z77nhhbc6nk5q09c3zxxhq9n7fm5alx3a8fwbpl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/cgroups")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" -; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) -; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-sirupsen-logrus-1.7.0" -; ,go-github-com-sirupsen-logrus-1.7.0) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-runtime-spec-1.0.2" -; ,go-github-com-opencontainers-runtime-spec-1.0.2) -; ("go-github-com-gogo-protobuf-1.3.2" -; ,go-github-com-gogo-protobuf-1.3.2) -; ("go-github-com-godbus-dbus-v5-5.0.3" -; ,go-github-com-godbus-dbus-v5-5.0.3) -; ("go-github-com-docker-go-units-0.4.0" -; ,go-github-com-docker-go-units-0.4.0) -; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" -; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) -; ("go-github-com-coreos-go-systemd-v22-22.1.0" -; ,go-github-com-coreos-go-systemd-v22-22.1.0) -; ("go-github-com-cilium-ebpf-0.4.0" ,go-github-com-cilium-ebpf-0.4.0))) -; (home-page "https://github.com/containerd/cgroups") -; (synopsis "cgroups") -; (description -; "Go package for creating, managing, inspecting, and destroying cgroups. -;The resources format for settings on the cgroup uses the OCI runtime-spec found -;@url{https://github.com/opencontainers/runtime-spec,here}.") -; (license license:asl2.0))) -; -;(define-public go-github-com-microsoft-go-winio-0.4.17 -; (package -; (name "go-github-com-microsoft-go-winio") -; (version "0.4.17") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/microsoft/go-winio") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0gmgiak4x4gdyr17zm4b9vvharflk9pz5aj5jayh9hq50133b2f9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/Microsoft/go-winio")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" -; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) -; ("go-github-com-sirupsen-logrus-1.7.0" -; ,go-github-com-sirupsen-logrus-1.7.0) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) -; (home-page "https://github.com/Microsoft/go-winio") -; (synopsis "go-winio") -; (description -; "This repository contains utilities for efficiently performing Win32 IO operations in -;Go. Currently, this is focused on accessing named pipes and other file handles, and -;for using named pipes as a net transport.") -; (license license:expat))) -; -;(define-public go-github-com-cenkalti-backoff-v4-4.1.1 -; (package -; (name "go-github-com-cenkalti-backoff-v4") -; (version "4.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/cenkalti/backoff") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "08c28226q612i1pv83161y57qh16631vpc51ai9f76qfrzsy946z")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/cenkalti/backoff/v4")) -; (home-page "https://github.com/cenkalti/backoff") -; (synopsis "Exponential Backoff") -; (description -; "Package backoff implements backoff algorithms for retrying operations. -;") -; (license license:expat))) -; -;(define-public go-github-com-containerd-containerd-1.4.9 -; (package -; (name "go-github-com-containerd-containerd") -; (version "1.4.9") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/containerd") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ykikks6ihgg899ibk9m9m0hqrbss0cx7l7z4yjb873b10bacj52")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/containerd")) -; (home-page "https://github.com/containerd/containerd") -; (synopsis "Now Recruiting") -; (description -; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") -; (license license:asl2.0))) -; -;(define-public go-github-com-microsoft-hcsshim-0.8.23 -; (package -; (name "go-github-com-microsoft-hcsshim") -; (version "0.8.23") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/microsoft/hcsshim") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "19gmwvq72vrlw6wvnmz4rjmg6r34c1nbqk71mj4bqq08rpi3i89r")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/Microsoft/hcsshim")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) -; ("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) -; ("go-golang-org-x-sys-0.0.0-20210324051608-47abb6519492" -; ,go-golang-org-x-sys-0.0.0-20210324051608-47abb6519492) -; ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" -; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) -; ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) -; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) -; ("go-github-com-sirupsen-logrus-1.8.1" -; ,go-github-com-sirupsen-logrus-1.8.1) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" -; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) -; ("go-github-com-gogo-protobuf-1.3.2" -; ,go-github-com-gogo-protobuf-1.3.2) -; ("go-github-com-containerd-typeurl-1.0.2" -; ,go-github-com-containerd-typeurl-1.0.2) -; ("go-github-com-containerd-ttrpc-1.1.0" -; ,go-github-com-containerd-ttrpc-1.1.0) -; ("go-github-com-containerd-go-runc-1.0.0" -; ,go-github-com-containerd-go-runc-1.0.0) -; ("go-github-com-containerd-fifo-1.0.0" -; ,go-github-com-containerd-fifo-1.0.0) -; ("go-github-com-containerd-continuity-0.1.0" -; ,go-github-com-containerd-continuity-0.1.0) -; ("go-github-com-containerd-containerd-1.4.9" -; ,go-github-com-containerd-containerd-1.4.9) -; ("go-github-com-containerd-console-1.0.2" -; ,go-github-com-containerd-console-1.0.2) -; ("go-github-com-containerd-cgroups-1.0.1" -; ,go-github-com-containerd-cgroups-1.0.1) -; ("go-github-com-cenkalti-backoff-v4-4.1.1" -; ,go-github-com-cenkalti-backoff-v4-4.1.1) -; ("go-github-com-microsoft-go-winio-0.4.17" -; ,go-github-com-microsoft-go-winio-0.4.17))) -; (home-page "https://github.com/Microsoft/hcsshim") -; (synopsis "hcsshim") -; (description -; "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") -; (license license:expat))) -; -;(define-public go-github-com-containerd-aufs-1.0.0 -; (package -; (name "go-github-com-containerd-aufs") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/aufs") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0jyyyf6sr910m602axmp4h4j1l2n680cpp60z09pvprz55zi4ba0")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/aufs")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" -; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" -; ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) -; ("go-github-com-containerd-containerd-1.5.0-beta.3" -; ,go-github-com-containerd-containerd-1.5.0-beta.3))) -; (home-page "https://github.com/containerd/aufs") -; (synopsis "aufs snapshotter") -; (description -; "AUFS implementation of the snapshot interface for containerd.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-btrfs-1.0.0 -; (package -; (name "go-github-com-containerd-btrfs") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/btrfs") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1yf38gg41y1v12m0cl81r9q7d13170a4npzqxhbz7qn32zr23kzn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/btrfs")) -; (propagated-inputs -; `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) -; (home-page "https://github.com/containerd/btrfs") -; (synopsis "go-btrfs") -; (description -; "Package btrfs provides bindings for working with btrfs partitions from Go. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-cilium-ebpf-0.4.0 -; (package -; (name "go-github-com-cilium-ebpf") -; (version "0.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/cilium/ebpf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1j33vfz8mxnqadkd17l0y3ll71gph3ndm8hwrwbwnf5px7bfv9yl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/cilium/ebpf")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" -; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) -; ("go-github-com-google-go-cmp-0.5.4" -; ,go-github-com-google-go-cmp-0.5.4) -; ("go-github-com-frankban-quicktest-1.11.3" -; ,go-github-com-frankban-quicktest-1.11.3))) -; (home-page "https://github.com/cilium/ebpf") -; (synopsis "eBPF") -; (description "Package ebpf is a toolkit for working with eBPF programs. -;") -; (license license:expat))) -; -;(define-public go-github-com-containerd-cgroups-1.0.1 -; (package -; (name "go-github-com-containerd-cgroups") -; (version "1.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/cgroups") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1p992w942xba9z77nhhbc6nk5q09c3zxxhq9n7fm5alx3a8fwbpl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/cgroups")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" -; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) -; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-sirupsen-logrus-1.7.0" -; ,go-github-com-sirupsen-logrus-1.7.0) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-runtime-spec-1.0.2" -; ,go-github-com-opencontainers-runtime-spec-1.0.2) -; ("go-github-com-gogo-protobuf-1.3.2" -; ,go-github-com-gogo-protobuf-1.3.2) -; ("go-github-com-godbus-dbus-v5-5.0.3" -; ,go-github-com-godbus-dbus-v5-5.0.3) -; ("go-github-com-docker-go-units-0.4.0" -; ,go-github-com-docker-go-units-0.4.0) -; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" -; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) -; ("go-github-com-coreos-go-systemd-v22-22.1.0" -; ,go-github-com-coreos-go-systemd-v22-22.1.0) -; ("go-github-com-cilium-ebpf-0.4.0" ,go-github-com-cilium-ebpf-0.4.0))) -; (home-page "https://github.com/containerd/cgroups") -; (synopsis "cgroups") -; (description -; "Go package for creating, managing, inspecting, and destroying cgroups. -;The resources format for settings on the cgroup uses the OCI runtime-spec found -;@url{https://github.com/opencontainers/runtime-spec,here}.") -; (license license:asl2.0))) -; -;(define-public go-github-com-mitchellh-go-homedir-1.1.0 -; (package -; (name "go-github-com-mitchellh-go-homedir") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mitchellh/go-homedir") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ydzkipf28hwj2bfxqmwlww47khyk6d152xax4bnyh60f4lq3nx1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mitchellh/go-homedir")) -; (home-page "https://github.com/mitchellh/go-homedir") -; (synopsis "go-homedir") -; (description -; "This is a Go library for detecting the user's home directory without -;the use of cgo, so the library can be used in cross-compilation environments.") -; (license license:expat))) -; -;(define-public go-github-com-armon-consul-api-0.0.0-20180202201655-eb2c6b5be1b6 -; (package -; (name "go-github-com-armon-consul-api") -; (version "0.0.0-20180202201655-eb2c6b5be1b6") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/armon/consul-api") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1j6fdr1sg36qy4n4xjl7brq739fpm5npq98cmvklzjc9qrx98nk9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/armon/consul-api")) -; (home-page "https://github.com/armon/consul-api") -; (synopsis "consul-api") -; (description -; " Please use @url{https://github.com/hashicorp/consul/tree/master/api,consul api package} instead. -;Godocs for that package @url{http://godoc.org/github.com/hashicorp/consul/api,are here}.") -; (license license:mpl2.0))) -; -;(define-public go-github-com-coreos-bbolt-1.3.2 -; (package -; (name "go-github-com-coreos-bbolt") -; (version "1.3.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/etcd-io/bbolt") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "13d5l6p6c5wvkr6vn9hkhz9c593qifn7fgx0hg4d6jcvg1y0bnm2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/coreos/bbolt")) -; (home-page "https://github.com/coreos/bbolt") -; (synopsis "bbolt") -; (description -; "package bbolt implements a low-level key/value store in pure Go. It supports -;fully serializable transactions, ACID semantics, and lock-free MVCC with -;multiple readers and a single writer. Bolt can be used for projects that -;want a simple data store without the need to add large dependencies such as -;Postgres or MySQL. -;") -; (license license:expat))) -; -;(define-public go-github-com-coreos-etcd-3.3.10+incompatible -; (package -; (name "go-github-com-coreos-etcd") -; (version "3.3.10+incompatible") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/etcd-io/etcd") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1x2ii1hj8jraba8rbxz6dmc03y3sjxdnzipdvg6fywnlq1f3l3wl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/coreos/etcd")) -; (home-page "https://github.com/coreos/etcd") -; (synopsis "etcd") -; (description -; "Package main is a simple wrapper of the real etcd entrypoint package -;(located at github.com/coreos/etcd/etcdmain) to ensure that etcd is still -;\"go getable\"; e.g. `go get github.com/coreos/etcd` works as expected and -;builds a binary in $GOBIN/etcd -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-golang-groupcache-0.0.0-20190129154638-5b532d6fd5ef -; (package -; (name "go-github-com-golang-groupcache") -; (version "0.0.0-20190129154638-5b532d6fd5ef") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/groupcache") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ls2i4ixyd4r2556j7c5jmlligjb35gfvxknrdn2abjmcahgqd6h")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/groupcache")) -; (home-page "https://github.com/golang/groupcache") -; (synopsis "groupcache") -; (description -; "Package groupcache provides a data loading mechanism with caching -;and de-duplication that works across a set of peer processes. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-gorilla-websocket-1.4.0 -; (package -; (name "go-github-com-gorilla-websocket") -; (version "1.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/gorilla/websocket") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "00i4vb31nsfkzzk7swvx3i75r2d960js3dri1875vypk3v2s0pzk")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/gorilla/websocket")) -; (home-page "https://github.com/gorilla/websocket") -; (synopsis "Gorilla WebSocket") -; (description -; "Package websocket implements the WebSocket protocol defined in @url{https://rfc-editor.org/rfc/rfc6455.html,RFC 6455}. -;") -; (license license:bsd-2))) -; -;(define-public go-github-com-grpc-ecosystem-go-grpc-middleware-1.0.0 -; (package -; (name "go-github-com-grpc-ecosystem-go-grpc-middleware") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc-ecosystem/go-grpc-middleware") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0lwgxih021xfhfb1xb9la5f98bpgpaiz63sbllx77qwwl2rmhrsp")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/grpc-ecosystem/go-grpc-middleware")) -; (home-page "https://github.com/grpc-ecosystem/go-grpc-middleware") -; (synopsis "Go gRPC Middleware") -; (description -; "`grpc_middleware` is a collection of gRPC middleware packages: interceptors, helpers and tools. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-grpc-ecosystem-grpc-gateway-1.9.0 -; (package -; (name "go-github-com-grpc-ecosystem-grpc-gateway") -; (version "1.9.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc-ecosystem/grpc-gateway") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1r4y48c76yxc2hpqszfjirvh7zxjb6z72qmk95li12ar79dhv3dy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/grpc-ecosystem/grpc-gateway")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.0.0-20170812160011-eb3733d160e7" -; ,go-gopkg-in-yaml-v2-2.0.0-20170812160011-eb3733d160e7) -; ("go-gopkg-in-resty-v1-1.12.0" ,go-gopkg-in-resty-v1-1.12.0) -; ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" -; ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) -; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) -; ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" -; ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) -; ("go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8" -; ,go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8) -; ("go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3" -; ,go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3) -; ("go-github-com-rogpeppe-fastuuid-0.0.0-20150106093220-6724a57986af" -; ,go-github-com-rogpeppe-fastuuid-0.0.0-20150106093220-6724a57986af) -; ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-ghodss-yaml-1.0.0" ,go-github-com-ghodss-yaml-1.0.0))) -; (home-page "https://github.com/grpc-ecosystem/grpc-gateway") -; (synopsis "grpc-gateway") -; (description -; "The grpc-gateway is a plugin of the Google protocol buffers compiler -;@url{https://github.com/protocolbuffers/protobuf,protoc}. -;It reads protobuf service definitions and generates a reverse-proxy server which -;translates a RESTful HTTP API into gRPC. This server is generated according to the -;@url{https://github.com/googleapis/googleapis/raw/master/google/api/http.proto#L46,(code google.api.http)} -;annotations in your service definitions.") -; (license license:bsd-3))) -; -;(define-public go-github-com-hashicorp-hcl-1.0.0 -; (package -; (name "go-github-com-hashicorp-hcl") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/hcl") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0q6ml0qqs0yil76mpn4mdx4lp94id8vbv575qm60jzl1ijcl5i66")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hashicorp/hcl")) -; (propagated-inputs -; `(("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://github.com/hashicorp/hcl") -; (synopsis "HCL") -; (description "Package hcl decodes HCL into usable Go structures. -;") -; (license license:mpl2.0))) -; -;(define-public go-github-com-magiconair-properties-1.8.0 -; (package -; (name "go-github-com-magiconair-properties") -; (version "1.8.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/magiconair/properties") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1a10362wv8a8qwb818wygn2z48lgzch940hvpv81hv8gc747ajxn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/magiconair/properties")) -; (home-page "https://github.com/magiconair/properties") -; (synopsis "Overview") -; (description -; "Package properties provides functions for reading and writing -;ISO-8859-1 and UTF-8 encoded .properties files and has -;support for recursive property expansion. -;") -; (license license:bsd-2))) -; -;(define-public go-github-com-pelletier-go-toml-1.2.0 -; (package -; (name "go-github-com-pelletier-go-toml") -; (version "1.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/pelletier/go-toml") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1fjzpcjng60mc3a4b2ql5a00d5gah84wj740dabv9kq67mpg8fxy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/pelletier/go-toml")) -; (home-page "https://github.com/pelletier/go-toml") -; (synopsis "go-toml") -; (description "Package toml is a TOML parser and manipulation library. -;") -; (license #f))) -; -;(define-public go-github-com-prometheus-common-0.4.0 -; (package -; (name "go-github-com-prometheus-common") -; (version "0.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/common") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "00008pczafy982m59n1j31pnp41f4grbc2c40jccp52xg3m5klmr")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/common")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1) -; ("go-gopkg-in-alecthomas-kingpin-v2-2.2.6" -; ,go-gopkg-in-alecthomas-kingpin-v2-2.2.6) -; ("go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5" -; ,go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5) -; ("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" -; ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) -; ("go-golang-org-x-net-0.0.0-20181114220301-adae6a3d119a" -; ,go-golang-org-x-net-0.0.0-20181114220301-adae6a3d119a) -; ("go-github-com-sirupsen-logrus-1.2.0" -; ,go-github-com-sirupsen-logrus-1.2.0) -; ("go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d" -; ,go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d) -; ("go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910" -; ,go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910) -; ("go-github-com-prometheus-client-golang-0.9.1" -; ,go-github-com-prometheus-client-golang-0.9.1) -; ("go-github-com-pkg-errors-0.8.0" ,go-github-com-pkg-errors-0.8.0) -; ("go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223" -; ,go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223) -; ("go-github-com-matttproud-golang-protobuf-extensions-1.0.1" -; ,go-github-com-matttproud-golang-protobuf-extensions-1.0.1) -; ("go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515" -; ,go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515) -; ("go-github-com-julienschmidt-httprouter-1.2.0" -; ,go-github-com-julienschmidt-httprouter-1.2.0) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0) -; ("go-github-com-gogo-protobuf-1.1.1" -; ,go-github-com-gogo-protobuf-1.1.1) -; ("go-github-com-go-stack-stack-1.8.0" -; ,go-github-com-go-stack-stack-1.8.0) -; ("go-github-com-go-logfmt-logfmt-0.3.0" -; ,go-github-com-go-logfmt-logfmt-0.3.0) -; ("go-github-com-go-kit-kit-0.8.0" ,go-github-com-go-kit-kit-0.8.0) -; ("go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973" -; ,go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973) -; ("go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf" -; ,go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf) -; ("go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc" -; ,go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc))) -; (home-page "https://github.com/prometheus/common") -; (synopsis "Common") -; (description -; "This repository contains Go libraries that are shared across Prometheus -;components and libraries. They are considered internal to Prometheus, without -;any stability guarantees for external usage.") -; (license license:asl2.0))) -; -;(define-public go-github-com-prometheus-procfs-0.0.0-20190507164030-5867b95ac084 -; (package -; (name "go-github-com-prometheus-procfs") -; (version "0.0.0-20190507164030-5867b95ac084") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/procfs") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1rahdk62ajj4zpfb3mgzjqip773la9fb0m87m7s9a0b39l3fmzvr")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/procfs")) -; (propagated-inputs -; `(("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" -; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4))) -; (home-page "https://github.com/prometheus/procfs") -; (synopsis "procfs") -; (description -; "Package procfs provides functions to retrieve system, kernel and process -;metrics from the pseudo-filesystem proc. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-oneofone-xxhash-1.2.2 -; (package -; (name "go-github-com-oneofone-xxhash") -; (version "1.2.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/OneOfOne/xxhash") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1mjfhrwhvxa48rycjnqpqzm521i38h1hdyz6pdwmhd7xb8j6gwi6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/OneOfOne/xxhash")) -; (home-page "https://github.com/OneOfOne/xxhash") -; (synopsis "xxhash") -; (description -; "This is a native Go implementation of the excellent @url{https://github.com/Cyan4973/xxHash,xxhash}* algorithm, an extremely fast non-cryptographic Hash algorithm, working at speeds close to RAM limits.") -; (license license:asl2.0))) -; -;(define-public go-github-com-spaolacci-murmur3-0.0.0-20180118202830-f09979ecbc72 -; (package -; (name "go-github-com-spaolacci-murmur3") -; (version "0.0.0-20180118202830-f09979ecbc72") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/spaolacci/murmur3") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1lv3zyz3jy2d76bhvvs8svygx66606iygdvwy5cwc0p5z8yghq25")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/spaolacci/murmur3")) -; (home-page "https://github.com/spaolacci/murmur3") -; (synopsis "murmur3") -; (description -; "Package murmur3 implements Austin Appleby's non-cryptographic MurmurHash3. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-cespare-xxhash-1.1.0 -; (package -; (name "go-github-com-cespare-xxhash") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/cespare/xxhash") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1qyzlcdcayavfazvi03izx83fvip8h36kis44zr2sg7xf6sx6l4x")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/cespare/xxhash")) -; (propagated-inputs -; `(("go-github-com-spaolacci-murmur3-0.0.0-20180118202830-f09979ecbc72" -; ,go-github-com-spaolacci-murmur3-0.0.0-20180118202830-f09979ecbc72) -; ("go-github-com-oneofone-xxhash-1.2.2" -; ,go-github-com-oneofone-xxhash-1.2.2))) -; (home-page "https://github.com/cespare/xxhash") -; (synopsis "xxhash") -; (description -; "Package xxhash implements the 64-bit variant of xxHash (XXH64) as described -;at @url{http://cyan4973.github.io/xxHash/,http://cyan4973.github.io/xxHash/}. -;") -; (license license:expat))) -; -;(define-public go-github-com-dgryski-go-sip13-0.0.0-20181026042036-e10d5fee7954 -; (package -; (name "go-github-com-dgryski-go-sip13") -; (version "0.0.0-20181026042036-e10d5fee7954") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/dgryski/go-sip13") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "15fyibfas209ljz3f7g07kdmfbl3hhyd9n5n7aq5n5p9m5mn41d6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/dgryski/go-sip13")) -; (home-page "https://github.com/dgryski/go-sip13") -; (synopsis #f) -; (description #f) -; (license license:expat))) -; -;(define-public go-github-com-oklog-ulid-1.3.1 -; (package -; (name "go-github-com-oklog-ulid") -; (version "1.3.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/oklog/ulid") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0hybwyid820n80axrk863k2py93hbqlq6hxhf84ppmz0qd0ys0gq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/oklog/ulid")) -; (home-page "https://github.com/oklog/ulid") -; (synopsis "Universally Unique Lexicographically Sortable Identifier") -; (description -; "This package provides a Go port of @url{https://github.com/alizain/ulid,alizain/ulid} with binary format implemented.") -; (license license:asl2.0))) -; -;(define-public go-github-com-prometheus-common-0.0.0-20181113130724-41aa239b4cce -; (package -; (name "go-github-com-prometheus-common") -; (version "0.0.0-20181113130724-41aa239b4cce") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/common") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0spy10lwanqa5ynks9cagphkq74zz4b3jm4w59vvizdcw4fhd7s6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/common")) -; (home-page "https://github.com/prometheus/common") -; (synopsis "Common") -; (description -; "This repository contains Go libraries that are shared across Prometheus -;components and libraries. They are considered internal to Prometheus, without -;any stability guarantees for external usage.") -; (license license:asl2.0))) -; -;(define-public go-github-com-prometheus-tsdb-0.7.1 -; (package -; (name "go-github-com-prometheus-tsdb") -; (version "0.7.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus-junkyard/tsdb") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1c1da8i5byvhh4fp3vqjfb65aaksjskn3ggb8wg9hcfzjrhgpz04")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/tsdb")) -; (propagated-inputs -; `(("go-gopkg-in-alecthomas-kingpin-v2-2.2.6" -; ,go-gopkg-in-alecthomas-kingpin-v2-2.2.6) -; ("go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8" -; ,go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8) -; ("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" -; ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) -; ("go-github-com-stretchr-testify-1.2.2" -; ,go-github-com-stretchr-testify-1.2.2) -; ("go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d" -; ,go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d) -; ("go-github-com-prometheus-common-0.0.0-20181113130724-41aa239b4cce" -; ,go-github-com-prometheus-common-0.0.0-20181113130724-41aa239b4cce) -; ("go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910" -; ,go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910) -; ("go-github-com-prometheus-client-golang-0.9.1" -; ,go-github-com-prometheus-client-golang-0.9.1) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-pkg-errors-0.8.0" ,go-github-com-pkg-errors-0.8.0) -; ("go-github-com-oklog-ulid-1.3.1" ,go-github-com-oklog-ulid-1.3.1) -; ("go-github-com-matttproud-golang-protobuf-extensions-1.0.1" -; ,go-github-com-matttproud-golang-protobuf-extensions-1.0.1) -; ("go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515" -; ,go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0) -; ("go-github-com-gogo-protobuf-1.1.1" -; ,go-github-com-gogo-protobuf-1.1.1) -; ("go-github-com-go-stack-stack-1.8.0" -; ,go-github-com-go-stack-stack-1.8.0) -; ("go-github-com-go-logfmt-logfmt-0.3.0" -; ,go-github-com-go-logfmt-logfmt-0.3.0) -; ("go-github-com-go-kit-kit-0.8.0" ,go-github-com-go-kit-kit-0.8.0) -; ("go-github-com-dgryski-go-sip13-0.0.0-20181026042036-e10d5fee7954" -; ,go-github-com-dgryski-go-sip13-0.0.0-20181026042036-e10d5fee7954) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1) -; ("go-github-com-cespare-xxhash-1.1.0" -; ,go-github-com-cespare-xxhash-1.1.0) -; ("go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973" -; ,go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973) -; ("go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf" -; ,go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf) -; ("go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc" -; ,go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc))) -; (home-page "https://github.com/prometheus/tsdb") -; (synopsis "TSDB") -; (description -; "Package tsdb implements a time series storage for float64 sample data. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-prometheus-client-golang-0.9.3 -; (package -; (name "go-github-com-prometheus-client-golang") -; (version "0.9.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/client_golang") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1608rm1y2p3iv8k2x7wyc6hshvpbfkv2k77hy0x870syms1g3g1p")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/client_golang")) -; (propagated-inputs -; `(("go-github-com-prometheus-tsdb-0.7.1" -; ,go-github-com-prometheus-tsdb-0.7.1) -; ("go-github-com-prometheus-procfs-0.0.0-20190507164030-5867b95ac084" -; ,go-github-com-prometheus-procfs-0.0.0-20190507164030-5867b95ac084) -; ("go-github-com-prometheus-common-0.4.0" -; ,go-github-com-prometheus-common-0.4.0) -; ("go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90" -; ,go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90) -; ("go-github-com-golang-protobuf-1.3.1" -; ,go-github-com-golang-protobuf-1.3.1) -; ("go-github-com-go-logfmt-logfmt-0.4.0" -; ,go-github-com-go-logfmt-logfmt-0.4.0) -; ("go-github-com-beorn7-perks-1.0.0" -; ,go-github-com-beorn7-perks-1.0.0))) -; (home-page "https://github.com/prometheus/client_golang") -; (synopsis "Prometheus Go client library") -; (description -; "This is the @url{http://golang.org,Go} client library for -;@url{http://prometheus.io,Prometheus}. It has two separate parts, one for -;instrumenting application code, and one for creating clients that talk to the -;Prometheus HTTP API.") -; (license license:asl2.0))) -; -;(define-public go-github-com-spf13-afero-1.1.2 -; (package -; (name "go-github-com-spf13-afero") -; (version "1.1.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/spf13/afero") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0miv4faf5ihjfifb1zv6aia6f6ik7h1s4954kcb8n6ixzhx9ck6k")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/spf13/afero")) -; (home-page "https://github.com/spf13/afero") -; (synopsis "Overview") -; (description -; "This package provides a FileSystem Abstraction System for Go") -; (license license:asl2.0))) -; -;(define-public go-github-com-spf13-cast-1.3.0 -; (package -; (name "go-github-com-spf13-cast") -; (version "1.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/spf13/cast") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0xq1ffqj8y8h7dcnm0m9lfrh0ga7pssnn2c1dnr09chqbpn4bdc5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/spf13/cast")) -; (propagated-inputs -; `(("go-github-com-stretchr-testify-1.2.2" -; ,go-github-com-stretchr-testify-1.2.2) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://github.com/spf13/cast") -; (synopsis "cast") -; (description "Package cast provides easy and safe casting in Go. -;") -; (license license:expat))) -; -;(define-public go-github-com-spf13-jwalterweatherman-1.0.0 -; (package -; (name "go-github-com-spf13-jwalterweatherman") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/spf13/jwalterweatherman") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "093fmmvavv84pv4q84hav7ph3fmrq87bvspjj899q0qsx37yvdr8")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/spf13/jwalterweatherman")) -; (home-page "https://github.com/spf13/jwalterweatherman") -; (synopsis "jWalterWeatherman") -; (description -; "Seamless printing to the terminal (stdout) and logging to a io.Writer -;(file) thatâ\x80\x99s as easy to use as fmt.Println.") -; (license license:expat))) -; -;(define-public go-github-com-ugorji-go-1.1.4 -; (package -; (name "go-github-com-ugorji-go") -; (version "1.1.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/ugorji/go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ma2qvn5wqvjidpdz74x832a813qnr1cxbx6n6n125ak9b3wbn5w")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/ugorji/go")) -; (home-page "https://github.com/ugorji/go") -; (synopsis "go-codec") -; (description -; "This repository contains the @code{go-codec} library, the @code{codecgen} tool and -;benchmarks for comparing against other libraries.") -; (license license:expat))) -; -;(define-public go-github-com-xordataexchange-crypt-0.0.3-0.20170626215501-b2862e3d0a77 -; (package -; (name "go-github-com-xordataexchange-crypt") -; (version "0.0.3-0.20170626215501-b2862e3d0a77") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/xordataexchange/crypt") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "04q3856anpzl4gdfgmg7pbp9cx231nkz3ymq2xp27rnmmwhfxr8y")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/xordataexchange/crypt")) -; (home-page "https://github.com/xordataexchange/crypt") -; (synopsis "crypt") -; (description -; "You can use crypt as a command line tool or as a configuration library:") -; (license license:expat))) -; -;(define-public go-go-etcd-io-bbolt-1.3.2 -; (package -; (name "go-go-etcd-io-bbolt") -; (version "1.3.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/etcd-io/bbolt") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "13d5l6p6c5wvkr6vn9hkhz9c593qifn7fgx0hg4d6jcvg1y0bnm2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "go.etcd.io/bbolt")) -; (home-page "https://go.etcd.io/bbolt") -; (synopsis "bbolt") -; (description -; "package bbolt implements a low-level key/value store in pure Go. It supports -;fully serializable transactions, ACID semantics, and lock-free MVCC with -;multiple readers and a single writer. Bolt can be used for projects that -;want a simple data store without the need to add large dependencies such as -;Postgres or MySQL. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-time-0.0.0-20190308202827-9d24e82272b4 -; (package -; (name "go-golang-org-x-time") -; (version "0.0.0-20190308202827-9d24e82272b4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/time") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1f5nkr4vys2vbd8wrwyiq2f5wcaahhpxmia85d1gshcbqjqf8dkb")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/time")) -; (home-page "https://golang.org/x/time") -; (synopsis "Go Time") -; (description "This repository provides supplementary Go time packages.") -; (license license:bsd-3))) -; -;(define-public go-github-com-spf13-viper-1.4.0 -; (package -; (name "go-github-com-spf13-viper") -; (version "1.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/spf13/viper") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1zpzxvn13wpvbblbbn73svaq39zgxfjqhci9d68g3qf309pcfy19")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/spf13/viper")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) -; ("go-google-golang-org-grpc-1.21.0" ,go-google-golang-org-grpc-1.21.0) -; ("go-golang-org-x-time-0.0.0-20190308202827-9d24e82272b4" -; ,go-golang-org-x-time-0.0.0-20190308202827-9d24e82272b4) -; ("go-golang-org-x-net-0.0.0-20190522155817-f3200d17e092" -; ,go-golang-org-x-net-0.0.0-20190522155817-f3200d17e092) -; ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) -; ("go-go-uber-org-multierr-1.1.0" ,go-go-uber-org-multierr-1.1.0) -; ("go-go-uber-org-atomic-1.4.0" ,go-go-uber-org-atomic-1.4.0) -; ("go-go-etcd-io-bbolt-1.3.2" ,go-go-etcd-io-bbolt-1.3.2) -; ("go-github-com-xordataexchange-crypt-0.0.3-0.20170626215501-b2862e3d0a77" -; ,go-github-com-xordataexchange-crypt-0.0.3-0.20170626215501-b2862e3d0a77) -; ("go-github-com-xiang90-probing-0.0.0-20190116061207-43a291ad63a2" -; ,go-github-com-xiang90-probing-0.0.0-20190116061207-43a291ad63a2) -; ("go-github-com-ugorji-go-1.1.4" ,go-github-com-ugorji-go-1.1.4) -; ("go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5" -; ,go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5) -; ("go-github-com-stretchr-testify-1.2.2" -; ,go-github-com-stretchr-testify-1.2.2) -; ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) -; ("go-github-com-spf13-jwalterweatherman-1.0.0" -; ,go-github-com-spf13-jwalterweatherman-1.0.0) -; ("go-github-com-spf13-cast-1.3.0" ,go-github-com-spf13-cast-1.3.0) -; ("go-github-com-spf13-afero-1.1.2" ,go-github-com-spf13-afero-1.1.2) -; ("go-github-com-soheilhy-cmux-0.1.4" -; ,go-github-com-soheilhy-cmux-0.1.4) -; ("go-github-com-prometheus-client-golang-0.9.3" -; ,go-github-com-prometheus-client-golang-0.9.3) -; ("go-github-com-pelletier-go-toml-1.2.0" -; ,go-github-com-pelletier-go-toml-1.2.0) -; ("go-github-com-mitchellh-mapstructure-1.1.2" -; ,go-github-com-mitchellh-mapstructure-1.1.2) -; ("go-github-com-magiconair-properties-1.8.0" -; ,go-github-com-magiconair-properties-1.8.0) -; ("go-github-com-jonboulle-clockwork-0.1.0" -; ,go-github-com-jonboulle-clockwork-0.1.0) -; ("go-github-com-hashicorp-hcl-1.0.0" -; ,go-github-com-hashicorp-hcl-1.0.0) -; ("go-github-com-grpc-ecosystem-grpc-gateway-1.9.0" -; ,go-github-com-grpc-ecosystem-grpc-gateway-1.9.0) -; ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" -; ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) -; ("go-github-com-grpc-ecosystem-go-grpc-middleware-1.0.0" -; ,go-github-com-grpc-ecosystem-go-grpc-middleware-1.0.0) -; ("go-github-com-gorilla-websocket-1.4.0" -; ,go-github-com-gorilla-websocket-1.4.0) -; ("go-github-com-google-btree-1.0.0" ,go-github-com-google-btree-1.0.0) -; ("go-github-com-golang-groupcache-0.0.0-20190129154638-5b532d6fd5ef" -; ,go-github-com-golang-groupcache-0.0.0-20190129154638-5b532d6fd5ef) -; ("go-github-com-gogo-protobuf-1.2.1" -; ,go-github-com-gogo-protobuf-1.2.1) -; ("go-github-com-fsnotify-fsnotify-1.4.7" -; ,go-github-com-fsnotify-fsnotify-1.4.7) -; ("go-github-com-dgrijalva-jwt-go-3.2.0+incompatible" -; ,go-github-com-dgrijalva-jwt-go-3.2.0+incompatible) -; ("go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f" -; ,go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f) -; ("go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e" -; ,go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e) -; ("go-github-com-coreos-go-semver-0.2.0" -; ,go-github-com-coreos-go-semver-0.2.0) -; ("go-github-com-coreos-etcd-3.3.10+incompatible" -; ,go-github-com-coreos-etcd-3.3.10+incompatible) -; ("go-github-com-coreos-bbolt-1.3.2" ,go-github-com-coreos-bbolt-1.3.2) -; ("go-github-com-armon-consul-api-0.0.0-20180202201655-eb2c6b5be1b6" -; ,go-github-com-armon-consul-api-0.0.0-20180202201655-eb2c6b5be1b6))) -; (home-page "https://github.com/spf13/viper") -; (synopsis "Install") -; (description "Many Go projects are built using Viper including:") -; (license license:expat))) -; -;(define-public go-github-com-spf13-cobra-1.0.0 -; (package -; (name "go-github-com-spf13-cobra") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/spf13/cobra") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0vbppqqhby302a5ayn0296jqr71qkcd4c9am7wzsk6z71fwdsa7h")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/spf13/cobra")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) -; ("go-github-com-spf13-viper-1.4.0" ,go-github-com-spf13-viper-1.4.0) -; ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) -; ("go-github-com-mitchellh-go-homedir-1.1.0" -; ,go-github-com-mitchellh-go-homedir-1.1.0) -; ("go-github-com-inconshreveable-mousetrap-1.0.0" -; ,go-github-com-inconshreveable-mousetrap-1.0.0) -; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" -; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0))) -; (home-page "https://github.com/spf13/cobra") -; (synopsis "Table of Contents") -; (description -; "Package cobra is a commander providing a simple interface to create powerful modern CLI interfaces. -;In addition to providing an interface, Cobra simultaneously provides a controller to organize your application code. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-continuity-0.1.0 -; (package -; (name "go-github-com-containerd-continuity") -; (version "0.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/continuity") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1h756l1xc31sc4zc1d3hmh64kl9qm5vpbbw0c93hrasn51ki96yz")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/continuity")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" -; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) -; ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" -; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) -; ("go-github-com-spf13-cobra-1.0.0" ,go-github-com-spf13-cobra-1.0.0) -; ("go-github-com-sirupsen-logrus-1.7.0" -; ,go-github-com-sirupsen-logrus-1.7.0) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-go-digest-1.0.0" -; ,go-github-com-opencontainers-go-digest-1.0.0) -; ("go-github-com-golang-protobuf-1.3.5" -; ,go-github-com-golang-protobuf-1.3.5) -; ("go-github-com-dustin-go-humanize-1.0.0" -; ,go-github-com-dustin-go-humanize-1.0.0) -; ("go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898" -; ,go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898))) -; (home-page "https://github.com/containerd/continuity") -; (synopsis "continuity") -; (description -; "This package provides a transport-agnostic, filesystem metadata manifest system") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-fifo-1.0.0 -; (package -; (name "go-github-com-containerd-fifo") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/fifo") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1l6jy9b4mjcj7pbz1n79zmipni1dz60rf5n66vn5p2ggavbq7h1q")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/fifo")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" -; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) -; (home-page "https://github.com/containerd/fifo") -; (synopsis "fifo") -; (description "Go package for handling fifos in a sane way.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-go-cni-1.0.2 -; (package -; (name "go-github-com-containerd-go-cni") -; (version "1.0.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/go-cni") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1hqwy402qy04slz2vj05s517mhdbmmkdjs6nhfnk184a730whgv6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/go-cni")) -; (propagated-inputs -; `(("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-onsi-gomega-1.7.1" ,go-github-com-onsi-gomega-1.7.1) -; ("go-github-com-onsi-ginkgo-1.10.3" ,go-github-com-onsi-ginkgo-1.10.3) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1) -; ("go-github-com-containernetworking-cni-0.8.0" -; ,go-github-com-containernetworking-cni-0.8.0))) -; (home-page "https://github.com/containerd/go-cni") -; (synopsis "go-cni") -; (description -; "This package provides a generic CNI library to provide APIs for CNI plugin interactions. The library provides APIs to:") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-go-runc-1.0.0 -; (package -; (name "go-github-com-containerd-go-runc") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/go-runc") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0xk30dzzxmd83bnfyilplizlxh1pg1gqz2jrq9wz9rqqkxazc03n")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/go-runc")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f" -; ,go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f) -; ("go-github-com-sirupsen-logrus-1.7.0" -; ,go-github-com-sirupsen-logrus-1.7.0) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-runtime-spec-1.0.2" -; ,go-github-com-opencontainers-runtime-spec-1.0.2) -; ("go-github-com-containerd-console-1.0.1" -; ,go-github-com-containerd-console-1.0.1))) -; (home-page "https://github.com/containerd/go-runc") -; (synopsis "go-runc") -; (description -; "This is a package for consuming the @url{https://github.com/opencontainers/runc,runc} binary in your Go applications. -;It tries to expose all the settings and features of the runc CLI. If there is something missing then add it, its opensource!") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-zfs-0.0.0-20210315114300-dde8f0fda960 -; (package -; (name "go-github-com-containerd-zfs") -; (version "0.0.0-20210315114300-dde8f0fda960") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/zfs") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ag5p2vqzdavq66wb1z42yw5jzrncsi97g8qk2x9nq51z1nj8rdi")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/zfs")) -; (propagated-inputs -; `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible" -; ,go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible) -; ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" -; ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) -; ("go-github-com-containerd-containerd-1.5.0-beta.3" -; ,go-github-com-containerd-containerd-1.5.0-beta.3))) -; (home-page "https://github.com/containerd/zfs") -; (synopsis "ZFS snapshotter plugin") -; (description "ZFS snapshotter plugin for containerd.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-containerd-1.5.0-beta.4 -; (package -; (name "go-github-com-containerd-containerd") -; (version "1.5.0-beta.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/containerd") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "039c26mjq8qs1s4kbx76fc99wnmnx165bqn16b2b9gyvxcphs7iv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/containerd")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) -; ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) -; ("go-github-com-golang-protobuf-1.3.5" -; ,go-github-com-golang-protobuf-1.3.5) -; ("go-github-com-gogo-googleapis-1.3.2" -; ,go-github-com-gogo-googleapis-1.3.2) -; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" -; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) -; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) -; ("go-k8s-io-cri-api-0.20.1" ,go-k8s-io-cri-api-0.20.1) -; ("go-k8s-io-component-base-0.20.1" ,go-k8s-io-component-base-0.20.1) -; ("go-k8s-io-client-go-0.20.1" ,go-k8s-io-client-go-0.20.1) -; ("go-k8s-io-apiserver-0.20.1" ,go-k8s-io-apiserver-0.20.1) -; ("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) -; ("go-k8s-io-api-0.20.1" ,go-k8s-io-api-0.20.1) -; ("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) -; ("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" -; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) -; ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" -; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) -; ("go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b" -; ,go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b) -; ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) -; ("go-github-com-tchap-go-patricia-2.2.6+incompatible" -; ,go-github-com-tchap-go-patricia-2.2.6+incompatible) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-sirupsen-logrus-1.7.0" -; ,go-github-com-sirupsen-logrus-1.7.0) -; ("go-github-com-prometheus-client-golang-1.7.1" -; ,go-github-com-prometheus-client-golang-1.7.1) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-selinux-1.8.0" -; ,go-github-com-opencontainers-selinux-1.8.0) -; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" -; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) -; ("go-github-com-opencontainers-runc-1.0.0-rc93" -; ,go-github-com-opencontainers-runc-1.0.0-rc93) -; ("go-github-com-opencontainers-image-spec-1.0.1" -; ,go-github-com-opencontainers-image-spec-1.0.1) -; ("go-github-com-opencontainers-go-digest-1.0.0" -; ,go-github-com-opencontainers-go-digest-1.0.0) -; ("go-github-com-moby-sys-symlink-0.1.0" -; ,go-github-com-moby-sys-symlink-0.1.0) -; ("go-github-com-moby-sys-mountinfo-0.4.1" -; ,go-github-com-moby-sys-mountinfo-0.4.1) -; ("go-github-com-klauspost-compress-1.11.3" -; ,go-github-com-klauspost-compress-1.11.3) -; ("go-github-com-imdario-mergo-0.3.11" -; ,go-github-com-imdario-mergo-0.3.11) -; ("go-github-com-hashicorp-go-multierror-1.0.0" -; ,go-github-com-hashicorp-go-multierror-1.0.0) -; ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" -; ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) -; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) -; ("go-github-com-google-go-cmp-0.5.4" -; ,go-github-com-google-go-cmp-0.5.4) -; ("go-github-com-gogo-protobuf-1.3.2" -; ,go-github-com-gogo-protobuf-1.3.2) -; ("go-github-com-fsnotify-fsnotify-1.4.9" -; ,go-github-com-fsnotify-fsnotify-1.4.9) -; ("go-github-com-emicklei-go-restful-2.9.5+incompatible" -; ,go-github-com-emicklei-go-restful-2.9.5+incompatible) -; ("go-github-com-docker-go-units-0.4.0" -; ,go-github-com-docker-go-units-0.4.0) -; ("go-github-com-docker-go-metrics-0.0.1" -; ,go-github-com-docker-go-metrics-0.0.1) -; ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" -; ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1) -; ("go-github-com-coreos-go-systemd-v22-22.1.0" -; ,go-github-com-coreos-go-systemd-v22-22.1.0) -; ("go-github-com-containernetworking-plugins-0.8.6" -; ,go-github-com-containernetworking-plugins-0.8.6) -; ("go-github-com-containerd-zfs-0.0.0-20210315114300-dde8f0fda960" -; ,go-github-com-containerd-zfs-0.0.0-20210315114300-dde8f0fda960) -; ("go-github-com-containerd-typeurl-1.0.1" -; ,go-github-com-containerd-typeurl-1.0.1) -; ("go-github-com-containerd-ttrpc-1.0.2" -; ,go-github-com-containerd-ttrpc-1.0.2) -; ("go-github-com-containerd-nri-0.0.0-20210316161719-dbaa18c31c14" -; ,go-github-com-containerd-nri-0.0.0-20210316161719-dbaa18c31c14) -; ("go-github-com-containerd-imgcrypt-1.1.1-0.20210312161619-7ed62a527887" -; ,go-github-com-containerd-imgcrypt-1.1.1-0.20210312161619-7ed62a527887) -; ("go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0" -; ,go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0) -; ("go-github-com-containerd-go-cni-1.0.1" -; ,go-github-com-containerd-go-cni-1.0.1) -; ("go-github-com-containerd-fifo-0.0.0-20210316144830-115abcc95a1d" -; ,go-github-com-containerd-fifo-0.0.0-20210316144830-115abcc95a1d) -; ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" -; ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) -; ("go-github-com-containerd-console-1.0.1" -; ,go-github-com-containerd-console-1.0.1) -; ("go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68" -; ,go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68) -; ("go-github-com-containerd-btrfs-0.0.0-20210316141732-918d888fb676" -; ,go-github-com-containerd-btrfs-0.0.0-20210316141732-918d888fb676) -; ("go-github-com-containerd-aufs-0.0.0-20210316121734-20793ff83c97" -; ,go-github-com-containerd-aufs-0.0.0-20210316121734-20793ff83c97) -; ("go-github-com-microsoft-hcsshim-0.8.15" -; ,go-github-com-microsoft-hcsshim-0.8.15) -; ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" -; ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3) -; ("go-github-com-burntsushi-toml-0.3.1" -; ,go-github-com-burntsushi-toml-0.3.1))) -; (home-page "https://github.com/containerd/containerd") -; (synopsis "Now Recruiting") -; (description -; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-sys-0.0.0-20210324051608-47abb6519492 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20210324051608-47abb6519492") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "19g0pa8lazad5kcq396ggg9x1d6sx39rw9brz3hklx71gg1jd3ja")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-microsoft-hcsshim-0.8.16 -; (package -; (name "go-github-com-microsoft-hcsshim") -; (version "0.8.16") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/microsoft/hcsshim") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "15bxkqq4zavwspx3ga8j3vx9jrc7l0jazsa6cs6im9liy6xhkbd6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/Microsoft/hcsshim")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) -; ("go-golang-org-x-sys-0.0.0-20210324051608-47abb6519492" -; ,go-golang-org-x-sys-0.0.0-20210324051608-47abb6519492) -; ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" -; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) -; ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) -; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) -; ("go-github-com-sirupsen-logrus-1.7.0" -; ,go-github-com-sirupsen-logrus-1.7.0) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" -; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) -; ("go-github-com-gogo-protobuf-1.3.2" -; ,go-github-com-gogo-protobuf-1.3.2) -; ("go-github-com-containerd-typeurl-1.0.1" -; ,go-github-com-containerd-typeurl-1.0.1) -; ("go-github-com-containerd-ttrpc-1.0.2" -; ,go-github-com-containerd-ttrpc-1.0.2) -; ("go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0" -; ,go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0) -; ("go-github-com-containerd-containerd-1.5.0-beta.4" -; ,go-github-com-containerd-containerd-1.5.0-beta.4) -; ("go-github-com-containerd-console-1.0.1" -; ,go-github-com-containerd-console-1.0.1) -; ("go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68" -; ,go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68) -; ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" -; ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3))) -; (home-page "https://github.com/Microsoft/hcsshim") -; (synopsis "hcsshim") -; (description -; "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") -; (license license:expat))) -; -;(define-public go-github-com-microsoft-go-winio-0.4.17-0.20210324224401-5516f17a5958 -; (package -; (name "go-github-com-microsoft-go-winio") -; (version "0.4.17-0.20210324224401-5516f17a5958") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/microsoft/go-winio") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0gmgiak4x4gdyr17zm4b9vvharflk9pz5aj5jayh9hq50133b2f9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/Microsoft/go-winio")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" -; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) -; ("go-github-com-sirupsen-logrus-1.7.0" -; ,go-github-com-sirupsen-logrus-1.7.0) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) -; (home-page "https://github.com/Microsoft/go-winio") -; (synopsis "go-winio") -; (description -; "This repository contains utilities for efficiently performing Win32 IO operations in -;Go. Currently, this is focused on accessing named pipes and other file handles, and -;for using named pipes as a net transport.") -; (license license:expat))) -; -;(define-public go-github-com-containerd-aufs-0.0.0-20210316121734-20793ff83c97 -; (package -; (name "go-github-com-containerd-aufs") -; (version "0.0.0-20210316121734-20793ff83c97") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/aufs") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ipr8pafb2xpkchfvnxjcfx9pb48mjr9k8krj9gnagssxhynbkd5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/aufs")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" -; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" -; ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) -; ("go-github-com-containerd-containerd-1.5.0-beta.3" -; ,go-github-com-containerd-containerd-1.5.0-beta.3))) -; (home-page "https://github.com/containerd/aufs") -; (synopsis "aufs snapshotter") -; (description -; "AUFS implementation of the snapshot interface for containerd.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-btrfs-0.0.0-20210316141732-918d888fb676 -; (package -; (name "go-github-com-containerd-btrfs") -; (version "0.0.0-20210316141732-918d888fb676") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/btrfs") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1yf38gg41y1v12m0cl81r9q7d13170a4npzqxhbz7qn32zr23kzn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/btrfs")) -; (propagated-inputs -; `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) -; (home-page "https://github.com/containerd/btrfs") -; (synopsis "go-btrfs") -; (description -; "Package btrfs provides bindings for working with btrfs partitions from Go. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-fifo-0.0.0-20210316144830-115abcc95a1d -; (package -; (name "go-github-com-containerd-fifo") -; (version "0.0.0-20210316144830-115abcc95a1d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/fifo") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0hqna43p8r6g3xv8g8n985hq1nzipsvjiwm70xpbzbgynh4ym6z5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/fifo")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" -; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) -; (home-page "https://github.com/containerd/fifo") -; (synopsis "fifo") -; (description "Go package for handling fifos in a sane way.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0 -; (package -; (name "go-github-com-containerd-go-runc") -; (version "0.0.0-20201020171139-16b287bc67d0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/go-runc") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0xk30dzzxmd83bnfyilplizlxh1pg1gqz2jrq9wz9rqqkxazc03n")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/go-runc")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f" -; ,go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f) -; ("go-github-com-sirupsen-logrus-1.7.0" -; ,go-github-com-sirupsen-logrus-1.7.0) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-runtime-spec-1.0.2" -; ,go-github-com-opencontainers-runtime-spec-1.0.2) -; ("go-github-com-containerd-console-1.0.1" -; ,go-github-com-containerd-console-1.0.1))) -; (home-page "https://github.com/containerd/go-runc") -; (synopsis "go-runc") -; (description -; "This is a package for consuming the @url{https://github.com/opencontainers/runc,runc} binary in your Go applications. -;It tries to expose all the settings and features of the runc CLI. If there is something missing then add it, its opensource!") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-imgcrypt-1.1.1-0.20210312161619-7ed62a527887 -; (package -; (name "go-github-com-containerd-imgcrypt") -; (version "1.1.1-0.20210312161619-7ed62a527887") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/imgcrypt") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "16pgcc0w8m2cxhfjzmmd2h3n6mxzc1nlghrhgjlx0lf4q96hv904")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/imgcrypt")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) -; ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" -; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) -; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) -; ("go-github-com-sirupsen-logrus-1.7.0" -; ,go-github-com-sirupsen-logrus-1.7.0) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" -; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) -; ("go-github-com-opencontainers-image-spec-1.0.1" -; ,go-github-com-opencontainers-image-spec-1.0.1) -; ("go-github-com-opencontainers-go-digest-1.0.0" -; ,go-github-com-opencontainers-go-digest-1.0.0) -; ("go-github-com-gogo-protobuf-1.3.2" -; ,go-github-com-gogo-protobuf-1.3.2) -; ("go-github-com-containers-ocicrypt-1.1.0" -; ,go-github-com-containers-ocicrypt-1.1.0) -; ("go-github-com-containerd-typeurl-1.0.1" -; ,go-github-com-containerd-typeurl-1.0.1) -; ("go-github-com-containerd-containerd-1.5.0-beta.3" -; ,go-github-com-containerd-containerd-1.5.0-beta.3) -; ("go-github-com-containerd-console-1.0.1" -; ,go-github-com-containerd-console-1.0.1) -; ("go-github-com-microsoft-hcsshim-0.8.15" -; ,go-github-com-microsoft-hcsshim-0.8.15) -; ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" -; ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3))) -; (home-page "https://github.com/containerd/imgcrypt") -; (synopsis "imgcrypt image encryption library and command line tool") -; (description -; "Project @code{imgcrypt} is a non-core subproject of containerd.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-nri-0.0.0-20210316161719-dbaa18c31c14 -; (package -; (name "go-github-com-containerd-nri") -; (version "0.0.0-20210316161719-dbaa18c31c14") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/nri") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0kyrvagbga6yib7il0m4zvqz977a4wsv5lgjd3ix53xmr4h7fgm7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/nri")) -; (propagated-inputs -; `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-containerd-containerd-1.5.0-beta.3" -; ,go-github-com-containerd-containerd-1.5.0-beta.3))) -; (home-page "https://github.com/containerd/nri") -; (synopsis "nri - Node Resource Interface") -; (description -; "This project is a WIP for a new, CNI like, interface for managing resources on a node for Pods and Containers.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-zfs-0.0.0-20210324211415-d5c4544f0433 -; (package -; (name "go-github-com-containerd-zfs") -; (version "0.0.0-20210324211415-d5c4544f0433") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/zfs") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1wsqwqv2pyn05asgpm9clgpwq9b8b0fjk4khzkjvscrf5j4v1rx4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/zfs")) -; (propagated-inputs -; `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible" -; ,go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible) -; ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" -; ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) -; ("go-github-com-containerd-containerd-1.5.0-beta.3" -; ,go-github-com-containerd-containerd-1.5.0-beta.3))) -; (home-page "https://github.com/containerd/zfs") -; (synopsis "ZFS snapshotter plugin") -; (description "ZFS snapshotter plugin for containerd.") -; (license license:asl2.0))) -; -;(define-public go-k8s-io-apiserver-0.20.4 -; (package -; (name "go-k8s-io-apiserver") -; (version "0.20.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes/apiserver") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1gffl7z6bvi46v0fvphbak4waddsgf4pd5w16khgrzl1sv9skn61")))) -; (build-system go-build-system) -; (arguments '(#:import-path "k8s.io/apiserver")) -; (propagated-inputs -; `(("go-k8s-io-component-base-0.20.4" ,go-k8s-io-component-base-0.20.4) -; ("go-k8s-io-client-go-0.20.4" ,go-k8s-io-client-go-0.20.4) -; ("go-k8s-io-apimachinery-0.20.4" ,go-k8s-io-apimachinery-0.20.4) -; ("go-k8s-io-api-0.20.4" ,go-k8s-io-api-0.20.4) -; ("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) -; ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.2" -; ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.2) -; ("go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.14" -; ,go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.14) -; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" -; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) -; ("go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd" -; ,go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd) -; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) -; ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) -; ("go-gopkg-in-square-go-jose-v2-2.2.2" -; ,go-gopkg-in-square-go-jose-v2-2.2.2) -; ("go-gopkg-in-natefinch-lumberjack-v2-2.0.0" -; ,go-gopkg-in-natefinch-lumberjack-v2-2.0.0) -; ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) -; ("go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a" -; ,go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a) -; ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" -; ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) -; ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" -; ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) -; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" -; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) -; ("go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0" -; ,go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0) -; ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) -; ("go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489" -; ,go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489) -; ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) -; ("go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5" -; ,go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) -; ("go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021" -; ,go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822" -; ,go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822) -; ("go-github-com-mailru-easyjson-0.7.0" -; ,go-github-com-mailru-easyjson-0.7.0) -; ("go-github-com-hashicorp-golang-lru-0.5.1" -; ,go-github-com-hashicorp-golang-lru-0.5.1) -; ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" -; ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) -; ("go-github-com-gorilla-websocket-1.4.2" -; ,go-github-com-gorilla-websocket-1.4.2) -; ("go-github-com-googleapis-gnostic-0.4.1" -; ,go-github-com-googleapis-gnostic-0.4.1) -; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) -; ("go-github-com-google-gofuzz-1.1.0" -; ,go-github-com-google-gofuzz-1.1.0) -; ("go-github-com-google-go-cmp-0.5.2" -; ,go-github-com-google-go-cmp-0.5.2) -; ("go-github-com-gogo-protobuf-1.3.1" -; ,go-github-com-gogo-protobuf-1.3.1) -; ("go-github-com-go-openapi-spec-0.19.3" -; ,go-github-com-go-openapi-spec-0.19.3) -; ("go-github-com-evanphx-json-patch-4.9.0+incompatible" -; ,go-github-com-evanphx-json-patch-4.9.0+incompatible) -; ("go-github-com-emicklei-go-restful-2.9.5+incompatible" -; ,go-github-com-emicklei-go-restful-2.9.5+incompatible) -; ("go-github-com-dustin-go-humanize-1.0.0" -; ,go-github-com-dustin-go-humanize-1.0.0) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1) -; ("go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f" -; ,go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f) -; ("go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e" -; ,go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e) -; ("go-github-com-coreos-go-semver-0.3.0" -; ,go-github-com-coreos-go-semver-0.3.0) -; ("go-github-com-coreos-go-oidc-2.1.0+incompatible" -; ,go-github-com-coreos-go-oidc-2.1.0+incompatible))) -; (home-page "https://k8s.io/apiserver") -; (synopsis "apiserver") -; (description -; "Generic library for building a Kubernetes aggregated API server.") -; (license license:asl2.0))) -; -;(define-public go-k8s-io-api-0.20.4 -; (package -; (name "go-k8s-io-api") -; (version "0.20.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes/api") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0hjckd94vpsr690kwx7dad8qlb8xjg2bz5ms315s9h6wc5cqwvgy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "k8s.io/api")) -; (propagated-inputs -; `(("go-k8s-io-apimachinery-0.20.4" ,go-k8s-io-apimachinery-0.20.4) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-gogo-protobuf-1.3.1" -; ,go-github-com-gogo-protobuf-1.3.1))) -; (home-page "https://k8s.io/api") -; (synopsis "api") -; (description -; "Schema of the external API types that are served by the Kubernetes API server.") -; (license license:asl2.0))) -; -;(define-public go-k8s-io-apimachinery-0.20.4 -; (package -; (name "go-k8s-io-apimachinery") -; (version "0.20.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes/apimachinery") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "15qc12lbzpd4lgajy0rv24b3ky4hhg5y1l37qxdfiakhz91didfw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "k8s.io/apimachinery")) -; (propagated-inputs -; `(("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) -; ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.2" -; ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.2) -; ("go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd" -; ,go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd) -; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) -; ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) -; ("go-gopkg-in-inf-v0-0.9.1" ,go-gopkg-in-inf-v0-0.9.1) -; ("go-google-golang-org-protobuf-1.25.0" -; ,go-google-golang-org-protobuf-1.25.0) -; ("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" -; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) -; ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) -; ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" -; ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) -; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" -; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-onsi-gomega-1.7.0" ,go-github-com-onsi-gomega-1.7.0) -; ("go-github-com-onsi-ginkgo-1.11.0" ,go-github-com-onsi-ginkgo-1.11.0) -; ("go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f" -; ,go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f) -; ("go-github-com-modern-go-reflect2-1.0.1" -; ,go-github-com-modern-go-reflect2-1.0.1) -; ("go-github-com-json-iterator-go-1.1.10" -; ,go-github-com-json-iterator-go-1.1.10) -; ("go-github-com-hashicorp-golang-lru-0.5.1" -; ,go-github-com-hashicorp-golang-lru-0.5.1) -; ("go-github-com-googleapis-gnostic-0.4.1" -; ,go-github-com-googleapis-gnostic-0.4.1) -; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) -; ("go-github-com-google-gofuzz-1.1.0" -; ,go-github-com-google-gofuzz-1.1.0) -; ("go-github-com-google-go-cmp-0.5.2" -; ,go-github-com-google-go-cmp-0.5.2) -; ("go-github-com-golang-protobuf-1.4.3" -; ,go-github-com-golang-protobuf-1.4.3) -; ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" -; ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) -; ("go-github-com-gogo-protobuf-1.3.1" -; ,go-github-com-gogo-protobuf-1.3.1) -; ("go-github-com-fsnotify-fsnotify-1.4.9" -; ,go-github-com-fsnotify-fsnotify-1.4.9) -; ("go-github-com-evanphx-json-patch-4.9.0+incompatible" -; ,go-github-com-evanphx-json-patch-4.9.0+incompatible) -; ("go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153" -; ,go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153) -; ("go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96" -; ,go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://k8s.io/apimachinery") -; (synopsis "apimachinery") -; (description -; "Scheme, typing, encoding, decoding, and conversion packages for Kubernetes and Kubernetes-like API objects.") -; (license license:asl2.0))) -; -;(define-public go-k8s-io-client-go-0.20.4 -; (package -; (name "go-k8s-io-client-go") -; (version "0.20.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes/client-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0g8x2d59qm6068rql63c0mdhcjz9jsyyf7a5fdg1hyf88dvigfcx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "k8s.io/client-go")) -; (propagated-inputs -; `(("go-k8s-io-apimachinery-0.20.4" ,go-k8s-io-apimachinery-0.20.4) -; ("go-k8s-io-api-0.20.4" ,go-k8s-io-api-0.20.4) -; ("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) -; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" -; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) -; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) -; ("go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e" -; ,go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e) -; ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" -; ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) -; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" -; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) -; ("go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0" -; ,go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) -; ("go-github-com-peterbourgon-diskv-2.0.1+incompatible" -; ,go-github-com-peterbourgon-diskv-2.0.1+incompatible) -; ("go-github-com-imdario-mergo-0.3.5" -; ,go-github-com-imdario-mergo-0.3.5) -; ("go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7" -; ,go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7) -; ("go-github-com-googleapis-gnostic-0.4.1" -; ,go-github-com-googleapis-gnostic-0.4.1) -; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) -; ("go-github-com-google-gofuzz-1.1.0" -; ,go-github-com-google-gofuzz-1.1.0) -; ("go-github-com-google-go-cmp-0.5.2" -; ,go-github-com-google-go-cmp-0.5.2) -; ("go-github-com-golang-protobuf-1.4.3" -; ,go-github-com-golang-protobuf-1.4.3) -; ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" -; ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) -; ("go-github-com-gogo-protobuf-1.3.1" -; ,go-github-com-gogo-protobuf-1.3.1) -; ("go-github-com-evanphx-json-patch-4.9.0+incompatible" -; ,go-github-com-evanphx-json-patch-4.9.0+incompatible) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1) -; ("go-github-com-azure-go-autorest-autorest-adal-0.9.5" -; ,go-github-com-azure-go-autorest-autorest-adal-0.9.5) -; ("go-github-com-azure-go-autorest-autorest-0.11.1" -; ,go-github-com-azure-go-autorest-autorest-0.11.1) -; ("go-cloud-google-com-go-0.54.0" ,go-cloud-google-com-go-0.54.0))) -; (home-page "https://k8s.io/client-go") -; (synopsis "client-go") -; (description -; "Go clients for talking to a @url{http://kubernetes.io/,kubernetes} cluster.") -; (license license:asl2.0))) -; -;(define-public go-k8s-io-component-base-0.20.4 -; (package -; (name "go-k8s-io-component-base") -; (version "0.20.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes/component-base") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "02b782p63h8z3pg64i1kfgkmxwslxpyl6afkhd1agbig9zd6g7w8")))) -; (build-system go-build-system) -; (arguments '(#:import-path "k8s.io/component-base")) -; (propagated-inputs -; `(("go-k8s-io-client-go-0.20.4" ,go-k8s-io-client-go-0.20.4) -; ("go-k8s-io-apimachinery-0.20.4" ,go-k8s-io-apimachinery-0.20.4) -; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" -; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) -; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) -; ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) -; ("go-go-uber-org-multierr-1.1.0" ,go-go-uber-org-multierr-1.1.0) -; ("go-go-uber-org-atomic-1.4.0" ,go-go-uber-org-atomic-1.4.0) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) -; ("go-github-com-sirupsen-logrus-1.6.0" -; ,go-github-com-sirupsen-logrus-1.6.0) -; ("go-github-com-prometheus-procfs-0.2.0" -; ,go-github-com-prometheus-procfs-0.2.0) -; ("go-github-com-prometheus-common-0.10.0" -; ,go-github-com-prometheus-common-0.10.0) -; ("go-github-com-prometheus-client-model-0.2.0" -; ,go-github-com-prometheus-client-model-0.2.0) -; ("go-github-com-prometheus-client-golang-1.7.1" -; ,go-github-com-prometheus-client-golang-1.7.1) -; ("go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd" -; ,go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd) -; ("go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369" -; ,go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369) -; ("go-github-com-google-go-cmp-0.5.2" -; ,go-github-com-google-go-cmp-0.5.2) -; ("go-github-com-go-logr-logr-0.2.0" ,go-github-com-go-logr-logr-0.2.0) -; ("go-github-com-blang-semver-3.5.1+incompatible" -; ,go-github-com-blang-semver-3.5.1+incompatible))) -; (home-page "https://k8s.io/component-base") -; (synopsis "component-base") -; (description -; "Implement KEP 32: @url{https://github.com/kubernetes/enhancements/blob/master/keps/sig-cluster-lifecycle/wgs/783-component-base/README.md,https://github.com/kubernetes/enhancements/blob/master/keps/sig-cluster-lifecycle/wgs/783-component-base/README.md}") -; (license license:asl2.0))) -; -;(define-public go-k8s-io-cri-api-0.20.4 -; (package -; (name "go-k8s-io-cri-api") -; (version "0.20.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes/cri-api") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1r98d0kv42sijdg3404xx2g5jj0zixvfagkky2zla12p68ajm4xr")))) -; (build-system go-build-system) -; (arguments '(#:import-path "k8s.io/cri-api")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" -; ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) -; ("go-google-golang-org-protobuf-1.25.0" -; ,go-google-golang-org-protobuf-1.25.0) -; ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) -; ("go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a" -; ,go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a) -; ("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" -; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) -; ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) -; ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" -; ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) -; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" -; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-kr-pretty-0.2.0" ,go-github-com-kr-pretty-0.2.0) -; ("go-github-com-google-go-cmp-0.5.2" -; ,go-github-com-google-go-cmp-0.5.2) -; ("go-github-com-golang-protobuf-1.4.3" -; ,go-github-com-golang-protobuf-1.4.3) -; ("go-github-com-gogo-protobuf-1.3.1" -; ,go-github-com-gogo-protobuf-1.3.1) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://k8s.io/cri-api") -; (synopsis "Purpose") -; (description -; "This repository contains the definitions for the Container Runtime Interface (CRI). -;CRI is a plugin interface which enables kubelet to use a wide variety of container runtimes, -;without the need to recompile. CRI consists of a protocol buffers and gRPC API.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-containerd-1.5.0-rc.0 -; (package -; (name "go-github-com-containerd-containerd") -; (version "1.5.0-rc.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/containerd") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "148z6782bj0vy3vzbhg2xf53g14llvxfsmdsqkz6x5n49rm6xr4i")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/containerd")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) -; ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) -; ("go-github-com-golang-protobuf-1.3.5" -; ,go-github-com-golang-protobuf-1.3.5) -; ("go-github-com-gogo-googleapis-1.3.2" -; ,go-github-com-gogo-googleapis-1.3.2) -; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" -; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) -; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) -; ("go-k8s-io-cri-api-0.20.4" ,go-k8s-io-cri-api-0.20.4) -; ("go-k8s-io-component-base-0.20.4" ,go-k8s-io-component-base-0.20.4) -; ("go-k8s-io-client-go-0.20.4" ,go-k8s-io-client-go-0.20.4) -; ("go-k8s-io-apiserver-0.20.4" ,go-k8s-io-apiserver-0.20.4) -; ("go-k8s-io-apimachinery-0.20.4" ,go-k8s-io-apimachinery-0.20.4) -; ("go-k8s-io-api-0.20.4" ,go-k8s-io-api-0.20.4) -; ("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) -; ("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" -; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) -; ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" -; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) -; ("go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b" -; ,go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b) -; ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) -; ("go-github-com-tchap-go-patricia-2.2.6+incompatible" -; ,go-github-com-tchap-go-patricia-2.2.6+incompatible) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-sirupsen-logrus-1.7.0" -; ,go-github-com-sirupsen-logrus-1.7.0) -; ("go-github-com-prometheus-client-golang-1.7.1" -; ,go-github-com-prometheus-client-golang-1.7.1) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-pelletier-go-toml-1.8.1" -; ,go-github-com-pelletier-go-toml-1.8.1) -; ("go-github-com-opencontainers-selinux-1.8.0" -; ,go-github-com-opencontainers-selinux-1.8.0) -; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" -; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) -; ("go-github-com-opencontainers-runc-1.0.0-rc93" -; ,go-github-com-opencontainers-runc-1.0.0-rc93) -; ("go-github-com-opencontainers-image-spec-1.0.1" -; ,go-github-com-opencontainers-image-spec-1.0.1) -; ("go-github-com-opencontainers-go-digest-1.0.0" -; ,go-github-com-opencontainers-go-digest-1.0.0) -; ("go-github-com-moby-sys-symlink-0.1.0" -; ,go-github-com-moby-sys-symlink-0.1.0) -; ("go-github-com-moby-sys-mountinfo-0.4.1" -; ,go-github-com-moby-sys-mountinfo-0.4.1) -; ("go-github-com-klauspost-compress-1.11.13" -; ,go-github-com-klauspost-compress-1.11.13) -; ("go-github-com-imdario-mergo-0.3.11" -; ,go-github-com-imdario-mergo-0.3.11) -; ("go-github-com-hashicorp-go-multierror-1.0.0" -; ,go-github-com-hashicorp-go-multierror-1.0.0) -; ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" -; ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) -; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) -; ("go-github-com-google-go-cmp-0.5.4" -; ,go-github-com-google-go-cmp-0.5.4) -; ("go-github-com-gogo-protobuf-1.3.2" -; ,go-github-com-gogo-protobuf-1.3.2) -; ("go-github-com-fsnotify-fsnotify-1.4.9" -; ,go-github-com-fsnotify-fsnotify-1.4.9) -; ("go-github-com-emicklei-go-restful-2.9.5+incompatible" -; ,go-github-com-emicklei-go-restful-2.9.5+incompatible) -; ("go-github-com-docker-go-units-0.4.0" -; ,go-github-com-docker-go-units-0.4.0) -; ("go-github-com-docker-go-metrics-0.0.1" -; ,go-github-com-docker-go-metrics-0.0.1) -; ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" -; ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1) -; ("go-github-com-coreos-go-systemd-v22-22.1.0" -; ,go-github-com-coreos-go-systemd-v22-22.1.0) -; ("go-github-com-containernetworking-plugins-0.8.6" -; ,go-github-com-containernetworking-plugins-0.8.6) -; ("go-github-com-containerd-zfs-0.0.0-20210324211415-d5c4544f0433" -; ,go-github-com-containerd-zfs-0.0.0-20210324211415-d5c4544f0433) -; ("go-github-com-containerd-typeurl-1.0.1" -; ,go-github-com-containerd-typeurl-1.0.1) -; ("go-github-com-containerd-ttrpc-1.0.2" -; ,go-github-com-containerd-ttrpc-1.0.2) -; ("go-github-com-containerd-nri-0.0.0-20210316161719-dbaa18c31c14" -; ,go-github-com-containerd-nri-0.0.0-20210316161719-dbaa18c31c14) -; ("go-github-com-containerd-imgcrypt-1.1.1-0.20210312161619-7ed62a527887" -; ,go-github-com-containerd-imgcrypt-1.1.1-0.20210312161619-7ed62a527887) -; ("go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0" -; ,go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0) -; ("go-github-com-containerd-go-cni-1.0.1" -; ,go-github-com-containerd-go-cni-1.0.1) -; ("go-github-com-containerd-fifo-0.0.0-20210316144830-115abcc95a1d" -; ,go-github-com-containerd-fifo-0.0.0-20210316144830-115abcc95a1d) -; ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" -; ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) -; ("go-github-com-containerd-console-1.0.1" -; ,go-github-com-containerd-console-1.0.1) -; ("go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68" -; ,go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68) -; ("go-github-com-containerd-btrfs-0.0.0-20210316141732-918d888fb676" -; ,go-github-com-containerd-btrfs-0.0.0-20210316141732-918d888fb676) -; ("go-github-com-containerd-aufs-0.0.0-20210316121734-20793ff83c97" -; ,go-github-com-containerd-aufs-0.0.0-20210316121734-20793ff83c97) -; ("go-github-com-microsoft-hcsshim-0.8.15" -; ,go-github-com-microsoft-hcsshim-0.8.15) -; ("go-github-com-microsoft-go-winio-0.4.17-0.20210324224401-5516f17a5958" -; ,go-github-com-microsoft-go-winio-0.4.17-0.20210324224401-5516f17a5958))) -; (home-page "https://github.com/containerd/containerd") -; (synopsis "Now Recruiting") -; (description -; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20210322153248-0c34fe9e7dc2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "021szs1czc0xg4chpays7i05dvkax9s8mns314ab01r887kchqxq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (propagated-inputs -; `(("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" -; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) -; ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" -; ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68) -; ("go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110" -; ,go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110))) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-github-com-containers-ocicrypt-1.1.1 -; (package -; (name "go-github-com-containers-ocicrypt") -; (version "1.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containers/ocicrypt") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1l0bfk244sxnakg3my529jsw532pffkmiyk5y1iqblz4mkjfphc8")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containers/ocicrypt")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) -; ("go-gopkg-in-square-go-jose-v2-2.5.1" -; ,go-gopkg-in-square-go-jose-v2-2.5.1) -; ("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) -; ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" -; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) -; ("go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2" -; ,go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2) -; ("go-go-mozilla-org-pkcs7-0.0.0-20200128120323-432b2356ecb1" -; ,go-go-mozilla-org-pkcs7-0.0.0-20200128120323-432b2356ecb1) -; ("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0) -; ("go-github-com-stefanberger-go-pkcs11uri-0.0.0-20201008174630-78d3cae3a980" -; ,go-github-com-stefanberger-go-pkcs11uri-0.0.0-20201008174630-78d3cae3a980) -; ("go-github-com-sirupsen-logrus-1.7.0" -; ,go-github-com-sirupsen-logrus-1.7.0) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-image-spec-1.0.1" -; ,go-github-com-opencontainers-image-spec-1.0.1) -; ("go-github-com-opencontainers-go-digest-1.0.0" -; ,go-github-com-opencontainers-go-digest-1.0.0) -; ("go-github-com-miekg-pkcs11-1.0.3" ,go-github-com-miekg-pkcs11-1.0.3) -; ("go-github-com-google-go-cmp-0.5.2" -; ,go-github-com-google-go-cmp-0.5.2) -; ("go-github-com-golang-protobuf-1.4.3" -; ,go-github-com-golang-protobuf-1.4.3))) -; (home-page "https://github.com/containers/ocicrypt") -; (synopsis "OCIcrypt Library") -; (description -; "The @code{ocicrypt} library is the OCI image spec implementation of container image encryption. More details of the spec can be seen in the @url{https://github.com/opencontainers/image-spec/pull/775,OCI repository}. The purpose of this library is to encode spec structures and consts in code, as well as provide a consistent implementation of image encryption across container runtimes and build tools.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-imgcrypt-1.1.1 -; (package -; (name "go-github-com-containerd-imgcrypt") -; (version "1.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/imgcrypt") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "177fs3p2xzwjsffcxqqllx6wi6ghfyqbvfgn95v3q7a2993yqk4k")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/imgcrypt")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) -; ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" -; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) -; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) -; ("go-github-com-sirupsen-logrus-1.7.0" -; ,go-github-com-sirupsen-logrus-1.7.0) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" -; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) -; ("go-github-com-opencontainers-image-spec-1.0.1" -; ,go-github-com-opencontainers-image-spec-1.0.1) -; ("go-github-com-opencontainers-go-digest-1.0.0" -; ,go-github-com-opencontainers-go-digest-1.0.0) -; ("go-github-com-gogo-protobuf-1.3.2" -; ,go-github-com-gogo-protobuf-1.3.2) -; ("go-github-com-containers-ocicrypt-1.1.1" -; ,go-github-com-containers-ocicrypt-1.1.1) -; ("go-github-com-containerd-typeurl-1.0.1" -; ,go-github-com-containerd-typeurl-1.0.1) -; ("go-github-com-containerd-containerd-1.5.0-rc.0" -; ,go-github-com-containerd-containerd-1.5.0-rc.0) -; ("go-github-com-containerd-console-1.0.2" -; ,go-github-com-containerd-console-1.0.2) -; ("go-github-com-microsoft-hcsshim-0.8.16" -; ,go-github-com-microsoft-hcsshim-0.8.16) -; ("go-github-com-microsoft-go-winio-0.4.17-0.20210324224401-5516f17a5958" -; ,go-github-com-microsoft-go-winio-0.4.17-0.20210324224401-5516f17a5958))) -; (home-page "https://github.com/containerd/imgcrypt") -; (synopsis "imgcrypt image encryption library and command line tool") -; (description -; "Project @code{imgcrypt} is a non-core subproject of containerd.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-nri-0.1.0 -; (package -; (name "go-github-com-containerd-nri") -; (version "0.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/nri") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0hqji5qa0n0fdyv9sjdl7mv3bb4fnq9i79pdzlw6m1nigrnb18qp")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/nri")) -; (propagated-inputs -; `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-containerd-containerd-1.5.0-beta.3" -; ,go-github-com-containerd-containerd-1.5.0-beta.3))) -; (home-page "https://github.com/containerd/nri") -; (synopsis "nri - Node Resource Interface") -; (description -; "This project is a WIP for a new, CNI like, interface for managing resources on a node for Pods and Containers.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20200224152610-e50cd9704f63 -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20200224152610-e50cd9704f63") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1392q1dfg4kkfg86w05gsszdlkd0hf424rvich1xzjqbm3ad3lin")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" -; ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) -; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) -; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" -; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-github-com-golang-protobuf-1.3.3" -; ,go-github-com-golang-protobuf-1.3.3))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-protobuf-1.27.1 -; (package -; (name "go-google-golang-org-protobuf") -; (version "1.27.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0aszb7cv8fq1m8akgd4kjyg5q7g5z9fdqnry6057ygq9r8r2yif2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.5.5" -; ,go-github-com-google-go-cmp-0.5.5) -; ("go-github-com-golang-protobuf-1.5.0" -; ,go-github-com-golang-protobuf-1.5.0))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-github-com-containerd-ttrpc-1.1.0 -; (package -; (name "go-github-com-containerd-ttrpc") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/ttrpc") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "13grp3ivmkdyhwpzhnva2w4lv035c4i1m0a2bdci4z44mif86gns")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/ttrpc")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.27.1" -; ,go-google-golang-org-protobuf-1.27.1) -; ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) -; ("go-google-golang-org-genproto-0.0.0-20200224152610-e50cd9704f63" -; ,go-google-golang-org-genproto-0.0.0-20200224152610-e50cd9704f63) -; ("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" -; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) -; ("go-github-com-sirupsen-logrus-1.8.1" -; ,go-github-com-sirupsen-logrus-1.8.1) -; ("go-github-com-prometheus-procfs-0.6.0" -; ,go-github-com-prometheus-procfs-0.6.0) -; ("go-github-com-gogo-protobuf-1.3.2" -; ,go-github-com-gogo-protobuf-1.3.2))) -; (home-page "https://github.com/containerd/ttrpc") -; (synopsis "ttrpc") -; (description "GRPC for low-memory environments.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-typeurl-1.0.2 -; (package -; (name "go-github-com-containerd-typeurl") -; (version "1.0.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/typeurl") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0wvfxlxgkln11d9s6rxay965c715bnpk203klbsq8m8qpjqrz620")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/typeurl")) -; (propagated-inputs -; `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-gogo-protobuf-1.3.2" -; ,go-github-com-gogo-protobuf-1.3.2))) -; (home-page "https://github.com/containerd/typeurl") -; (synopsis "typeurl") -; (description -; "This package provides a Go package for managing the registration, marshaling, and unmarshaling of encoded types.") -; (license license:asl2.0))) -; -;(define-public go-github-com-microsoft-hcsshim-0.8.15 -; (package -; (name "go-github-com-microsoft-hcsshim") -; (version "0.8.15") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/microsoft/hcsshim") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1119qf7nklpnn9li61m8jrd5wvifhiz7qh7sfjjy04rfvbvlsi6c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/Microsoft/hcsshim")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.30.0" ,go-google-golang-org-grpc-1.30.0) -; ("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" -; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) -; ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" -; ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) -; ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) -; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) -; ("go-github-com-sirupsen-logrus-1.7.0" -; ,go-github-com-sirupsen-logrus-1.7.0) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" -; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) -; ("go-github-com-gogo-protobuf-1.3.2" -; ,go-github-com-gogo-protobuf-1.3.2) -; ("go-github-com-containerd-typeurl-1.0.1" -; ,go-github-com-containerd-typeurl-1.0.1) -; ("go-github-com-containerd-ttrpc-1.0.2" -; ,go-github-com-containerd-ttrpc-1.0.2) -; ("go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328" -; ,go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328) -; ("go-github-com-containerd-containerd-1.5.0-beta.1" -; ,go-github-com-containerd-containerd-1.5.0-beta.1) -; ("go-github-com-containerd-console-1.0.1" -; ,go-github-com-containerd-console-1.0.1) -; ("go-github-com-containerd-cgroups-0.0.0-20200824123100-0b889c03f102" -; ,go-github-com-containerd-cgroups-0.0.0-20200824123100-0b889c03f102) -; ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" -; ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3))) -; (home-page "https://github.com/Microsoft/hcsshim") -; (synopsis "hcsshim") -; (description -; "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") -; (license license:expat))) -; -;(define-public go-github-com-containerd-containerd-1.4.1 -; (package -; (name "go-github-com-containerd-containerd") -; (version "1.4.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/containerd") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1k6dqaidnldf7kpxdszf0wn6xb8m6vaizm2aza81fri1q0051213")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/containerd")) -; (home-page "https://github.com/containerd/containerd") -; (synopsis "Now Recruiting") -; (description -; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-sys-0.0.0-20200622214017-ed371f2e16b4 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20200622214017-ed371f2e16b4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "107wfy2fj6z5zps1v72j8drfrfvss1158drb0yqhz5awlbvgrpj7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-containerd-aufs-0.0.0-20201003224125-76a6863f2989 -; (package -; (name "go-github-com-containerd-aufs") -; (version "0.0.0-20201003224125-76a6863f2989") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/aufs") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0nsiyqjrgf3vvv6hpiljknpbkzlla1czpkq69i607f7p5jd8bgaq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/aufs")) -; (propagated-inputs -; `(("go-gotest-tools-v3-3.0.2" ,go-gotest-tools-v3-3.0.2) -; ("go-golang-org-x-sys-0.0.0-20200622214017-ed371f2e16b4" -; ,go-golang-org-x-sys-0.0.0-20200622214017-ed371f2e16b4) -; ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-image-spec-1.0.1" -; ,go-github-com-opencontainers-image-spec-1.0.1) -; ("go-github-com-google-go-cmp-0.3.1" -; ,go-github-com-google-go-cmp-0.3.1) -; ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" -; ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) -; ("go-github-com-containerd-typeurl-1.0.1" -; ,go-github-com-containerd-typeurl-1.0.1) -; ("go-github-com-containerd-ttrpc-1.0.1" -; ,go-github-com-containerd-ttrpc-1.0.1) -; ("go-github-com-containerd-continuity-0.0.0-20200710164510-efbc4488d8fe" -; ,go-github-com-containerd-continuity-0.0.0-20200710164510-efbc4488d8fe) -; ("go-github-com-containerd-containerd-1.4.1" -; ,go-github-com-containerd-containerd-1.4.1) -; ("go-github-com-microsoft-hcsshim-0.8.9" -; ,go-github-com-microsoft-hcsshim-0.8.9))) -; (home-page "https://github.com/containerd/aufs") -; (synopsis "aufs snapshotter") -; (description -; "AUFS implementation of the snapshot interface for containerd.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68 -; (package -; (name "go-github-com-containerd-cgroups") -; (version "0.0.0-20210114181951-8a68de567b68") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/cgroups") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0v70kxazvsizx33w9nz341hg14acg2vnbfcpx9yknmsjqdwgqnhs")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/cgroups")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9" -; ,go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9) -; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) -; ("go-github-com-stretchr-testify-1.2.2" -; ,go-github-com-stretchr-testify-1.2.2) -; ("go-github-com-sirupsen-logrus-1.7.0" -; ,go-github-com-sirupsen-logrus-1.7.0) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-runtime-spec-1.0.2" -; ,go-github-com-opencontainers-runtime-spec-1.0.2) -; ("go-github-com-gogo-protobuf-1.3.1" -; ,go-github-com-gogo-protobuf-1.3.1) -; ("go-github-com-godbus-dbus-v5-5.0.3" -; ,go-github-com-godbus-dbus-v5-5.0.3) -; ("go-github-com-docker-go-units-0.4.0" -; ,go-github-com-docker-go-units-0.4.0) -; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" -; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) -; ("go-github-com-coreos-go-systemd-v22-22.1.0" -; ,go-github-com-coreos-go-systemd-v22-22.1.0) -; ("go-github-com-cilium-ebpf-0.2.0" ,go-github-com-cilium-ebpf-0.2.0))) -; (home-page "https://github.com/containerd/cgroups") -; (synopsis "cgroups") -; (description -; "Go package for creating, managing, inspecting, and destroying cgroups. -;The resources format for settings on the cgroup uses the OCI runtime-spec found -;@url{https://github.com/opencontainers/runtime-spec,here}.") -; (license license:asl2.0))) -; -;(define-public go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3 -; (package -; (name "go-github-com-microsoft-go-winio") -; (version "0.4.17-0.20210211115548-6eac466e5fa3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/microsoft/go-winio") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0w8fmybsl0v5azwi66qa299gwh0mlp907mrg4yaiya7s0cjmjx0d")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/Microsoft/go-winio")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" -; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) -; ("go-github-com-sirupsen-logrus-1.7.0" -; ,go-github-com-sirupsen-logrus-1.7.0) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) -; (home-page "https://github.com/Microsoft/go-winio") -; (synopsis "go-winio") -; (description -; "This repository contains utilities for efficiently performing Win32 IO operations in -;Go. Currently, this is focused on accessing named pipes and other file handles, and -;for using named pipes as a net transport.") -; (license license:expat))) -; -;(define-public go-github-com-microsoft-hcsshim-test-0.0.0-20210227013316-43a75bb4edd3 -; (package -; (name "go-github-com-microsoft-hcsshim-test") -; (version "0.0.0-20210227013316-43a75bb4edd3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/microsoft/hcsshim") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1j899w4hdw1mk6rfyy9qsm902iavgc49ykbjdsb02m6wszq1z0wy")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path -; "github.com/Microsoft/hcsshim/test" -; #:unpack-path -; "github.com/Microsoft/hcsshim")) -; (propagated-inputs -; `(("go-k8s-io-cri-api-0.20.1" ,go-k8s-io-cri-api-0.20.1) -; ("go-google-golang-org-grpc-1.30.0" ,go-google-golang-org-grpc-1.30.0) -; ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" -; ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) -; ("go-github-com-sirupsen-logrus-1.7.0" -; ,go-github-com-sirupsen-logrus-1.7.0) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39" -; ,go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39) -; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" -; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) -; ("go-github-com-gogo-protobuf-1.3.2" -; ,go-github-com-gogo-protobuf-1.3.2) -; ("go-github-com-containerd-typeurl-1.0.1" -; ,go-github-com-containerd-typeurl-1.0.1) -; ("go-github-com-containerd-ttrpc-1.0.2" -; ,go-github-com-containerd-ttrpc-1.0.2) -; ("go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328" -; ,go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328) -; ("go-github-com-containerd-containerd-1.5.0-beta.1" -; ,go-github-com-containerd-containerd-1.5.0-beta.1) -; ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" -; ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3))) -; (home-page "https://github.com/Microsoft/hcsshim") -; (synopsis #f) -; (description #f) -; (license license:expat))) -; -;(define-public go-github-com-microsoft-go-winio-0.4.16 -; (package -; (name "go-github-com-microsoft-go-winio") -; (version "0.4.16") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/microsoft/go-winio") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0snwbwdjs34x0my9ri77cvrbnahdiyjh2jlkzf12fy48p7fyk7pq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/Microsoft/go-winio")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3" -; ,go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3) -; ("go-github-com-sirupsen-logrus-1.4.1" -; ,go-github-com-sirupsen-logrus-1.4.1) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) -; (home-page "https://github.com/Microsoft/go-winio") -; (synopsis "go-winio") -; (description -; "This repository contains utilities for efficiently performing Win32 IO operations in -;Go. Currently, this is focused on accessing named pipes and other file handles, and -;for using named pipes as a net transport.") -; (license license:expat))) -; -;(define-public go-github-com-azure-azure-sdk-for-go-16.2.1+incompatible -; (package -; (name "go-github-com-azure-azure-sdk-for-go") -; (version "16.2.1+incompatible") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/Azure/azure-sdk-for-go") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1hwrspsyfs003h4f8zl8b41g3a6jpkqawqrykd1mjw9p6hs1c6k8")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/Azure/azure-sdk-for-go")) -; (home-page "https://github.com/Azure/azure-sdk-for-go") -; (synopsis "Azure SDK for Go") -; (description -; "Package sdk provides Go packages for managing and using Azure services. -;") -; (license license:expat))) -; -;(define-public go-github-com-azure-go-autorest-10.8.1+incompatible -; (package -; (name "go-github-com-azure-go-autorest") -; (version "10.8.1+incompatible") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/Azure/go-autorest") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "122zfifj93vkix8ggkdh0dz5rmzxh4bql4nry1hws2czmzgxlkdm")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/Azure/go-autorest")) -; (home-page "https://github.com/Azure/go-autorest") -; (synopsis "go-autorest") -; (description -; "Package go-autorest provides an HTTP request client for use with Autorest-generated API client packages. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-shopify-logrus-bugsnag-0.0.0-20171204204709-577dee27f20d -; (package -; (name "go-github-com-shopify-logrus-bugsnag") -; (version "0.0.0-20171204204709-577dee27f20d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/Shopify/logrus-bugsnag") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1l3yahk77vzgmjs7baf8g14sv33jj04rw73iind4wayg40lfgrp8")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/Shopify/logrus-bugsnag")) -; (home-page "https://github.com/Shopify/logrus-bugsnag") -; (synopsis "logrus-bugsnag") -; (description -; "logrus-bugsnag is a hook that allows @url{https://github.com/sirupsen/logrus,Logrus} to interface with @url{https://bugsnag.com,Bugsnag}.") -; (license license:expat))) -; -;(define-public go-github-com-go-ini-ini-1.25.4 -; (package -; (name "go-github-com-go-ini-ini") -; (version "1.25.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/go-ini/ini") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0b6cql5ripbiyrm18d6bfd1rfjnwcbskppw3d0vb80l0wy72d0c6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/go-ini/ini")) -; (home-page "https://github.com/go-ini/ini") -; (synopsis "INI") -; (description -; "Package ini provides INI file read and write functionality in Go. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-jmespath-go-jmespath-0.0.0-20160202185014-0b12d6b521d8 -; (package -; (name "go-github-com-jmespath-go-jmespath") -; (version "0.0.0-20160202185014-0b12d6b521d8") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/jmespath/go-jmespath") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1vv6hph8j6xgv7gwl9vvhlsaaqsm22sxxqmgmldi4v11783pc1ld")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/jmespath/go-jmespath")) -; (home-page "https://github.com/jmespath/go-jmespath") -; (synopsis "go-jmespath - A JMESPath implementation in Go") -; (description -; "go-jmespath is a GO implementation of JMESPath, -;which is a query language for JSON. It will take a JSON -;document and transform it into another JSON document -;through a JMESPath expression.") -; (license license:asl2.0))) -; -;(define-public go-github-com-aws-aws-sdk-go-1.15.11 -; (package -; (name "go-github-com-aws-aws-sdk-go") -; (version "1.15.11") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/aws/aws-sdk-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0w960w39k3nyc17p1lvd41cls39qwg7kzfm57vfbdb4h1m5sck99")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/aws/aws-sdk-go")) -; (propagated-inputs -; `(("go-github-com-jmespath-go-jmespath-0.0.0-20160202185014-0b12d6b521d8" -; ,go-github-com-jmespath-go-jmespath-0.0.0-20160202185014-0b12d6b521d8) -; ("go-github-com-go-ini-ini-1.25.4" ,go-github-com-go-ini-ini-1.25.4))) -; (home-page "https://github.com/aws/aws-sdk-go") -; (synopsis "AWS SDK for Go") -; (description -; "Package sdk is the official AWS SDK for the Go programming language. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-beorn7-perks-0.0.0-20160804104726-4c0e84591b9a -; (package -; (name "go-github-com-beorn7-perks") -; (version "0.0.0-20160804104726-4c0e84591b9a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/beorn7/perks") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1hrybsql68xw57brzj805xx2mghydpdiysv3gbhr7f5wlxj2514y")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/beorn7/perks")) -; (home-page "https://github.com/beorn7/perks") -; (synopsis "Perks for Go (golang.org)") -; (description -; "Perks contains the Go package quantile that computes approximate quantiles over -;an unbounded data stream within low memory and CPU bounds.") -; (license license:expat))) -; -;(define-public go-github-com-bitly-go-simplejson-0.5.0 -; (package -; (name "go-github-com-bitly-go-simplejson") -; (version "0.5.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/bitly/go-simplejson") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0n9f9dz1jn1jx86d48569nznpjn9fmq3knn7r65xpy7jhih284jj")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/bitly/go-simplejson")) -; (home-page "https://github.com/bitly/go-simplejson") -; (synopsis "go-simplejson") -; (description "a Go package to interact with arbitrary JSON") -; (license license:expat))) -; -;(define-public go-github-com-bmizerany-assert-0.0.0-20160611221934-b7ed37b82869 -; (package -; (name "go-github-com-bmizerany-assert") -; (version "0.0.0-20160611221934-b7ed37b82869") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/bmizerany/assert") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "18hy1wyl9zdi7sgxafrn3m7fadh6in0rhhb8l0cvkxqzdl0jcw2s")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/bmizerany/assert")) -; (home-page "https://github.com/bmizerany/assert") -; (synopsis #f) -; (description #f) -; (license #f))) -; -;(define-public go-github-com-bshuster-repo-logrus-logstash-hook-0.4.1 -; (package -; (name "go-github-com-bshuster-repo-logrus-logstash-hook") -; (version "0.4.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/bshuster-repo/logrus-logstash-hook") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1kkjzav4i3l2ahgpirysr0cqh60vdq517lpj00cc9z32zfrsw87k")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "github.com/bshuster-repo/logrus-logstash-hook")) -; (home-page "https://github.com/bshuster-repo/logrus-logstash-hook") -; (synopsis "Logstash hook for logrus") -; (description -; "Use this hook to send the logs to @url{https://www.elastic.co/products/logstash,Logstash}.") -; (license license:expat))) -; -;(define-public go-github-com-bugsnag-bugsnag-go-0.0.0-20141110184014-b1d153021fcd -; (package -; (name "go-github-com-bugsnag-bugsnag-go") -; (version "0.0.0-20141110184014-b1d153021fcd") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/bugsnag/bugsnag-go") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "057vwigfzq42p9vkk9yhy8vkvgdmh6653rc988jmvmrkwbgvb352")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/bugsnag/bugsnag-go")) -; (home-page "https://github.com/bugsnag/bugsnag-go") -; (synopsis "Bugsnag error reporter for Go") -; (description -; "Package bugsnag captures errors in real-time and reports them to Bugsnag (@url{http://bugsnag.com,http://bugsnag.com}). -;") -; (license license:expat))) -; -;(define-public go-github-com-bugsnag-osext-0.0.0-20130617224835-0dd3f918b21b -; (package -; (name "go-github-com-bugsnag-osext") -; (version "0.0.0-20130617224835-0dd3f918b21b") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/bugsnag/osext") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "02pczqml6p1mnfdrygm3rs02g0r65qx8v1bi3x24dx8wv9dr5y23")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/bugsnag/osext")) -; (home-page "https://github.com/bugsnag/osext") -; (synopsis #f) -; (description "Extensions to the standard \"os\" package. -;") -; (license license:zlib))) -; -;(define-public go-github-com-bugsnag-panicwrap-0.0.0-20151223152923-e2c28503fcd0 -; (package -; (name "go-github-com-bugsnag-panicwrap") -; (version "0.0.0-20151223152923-e2c28503fcd0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/bugsnag/panicwrap") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "02z1q18s83xhfsz3n8bzv071a6n0irlad11yxppaf7015a7dl446")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/bugsnag/panicwrap")) -; (home-page "https://github.com/bugsnag/panicwrap") -; (synopsis "panicwrap") -; (description -; "The panicwrap package provides functions for capturing and handling -;panics in your application. It does this by re-executing the running -;application and monitoring stderr for any panics. At the same time, -;stdout/stderr/etc. are set to the same values so that data is shuttled -;through properly, making the existence of panicwrap mostly transparent. -;") -; (license license:expat))) -; -;(define-public go-github-com-denverdino-aliyungo-0.0.0-20190125010748-a747050bb1ba -; (package -; (name "go-github-com-denverdino-aliyungo") -; (version "0.0.0-20190125010748-a747050bb1ba") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/denverdino/aliyungo") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0rc16ciz8gjpn36fhp0qz1ns0inlvjaz07z1qffl9ni4b49hhwkn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/denverdino/aliyungo")) -; (home-page "https://github.com/denverdino/aliyungo") -; (synopsis "AliyunGo: Go SDK for Aliyun Services") -; (description -; "This is an unofficial Go SDK for Aliyun services. You are welcome for contribution.") -; (license license:asl2.0))) -; -;(define-public go-github-com-dgrijalva-jwt-go-0.0.0-20170104182250-a601269ab70c -; (package -; (name "go-github-com-dgrijalva-jwt-go") -; (version "0.0.0-20170104182250-a601269ab70c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/dgrijalva/jwt-go") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1c2dhmj95wh9cs099cr43qghgmp6bqx0mq44vha2dqq5jkbazwfv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/dgrijalva/jwt-go")) -; (home-page "https://github.com/dgrijalva/jwt-go") -; (synopsis "jwt-go") -; (description -; "Package jwt is a Go implementation of JSON Web Tokens: @url{http://self-issued.info/docs/draft-jones-json-web-token.html,http://self-issued.info/docs/draft-jones-json-web-token.html} -;") -; (license license:expat))) -; -;(define-public go-github-com-dnaeon-go-vcr-1.0.1 -; (package -; (name "go-github-com-dnaeon-go-vcr") -; (version "1.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/dnaeon/go-vcr") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1d0kpqr12qrqlamz5a47bp05mx49za2v6l1k7c6z71xahfmb7v2d")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/dnaeon/go-vcr")) -; (home-page "https://github.com/dnaeon/go-vcr") -; (synopsis "go-vcr") -; (description -; "@code{go-vcr} simplifies testing by recording your HTTP interactions and -;replaying them in future runs in order to provide fast, deterministic -;and accurate testing of your code.") -; (license license:bsd-2))) -; -;(define-public go-github-com-docker-go-metrics-0.0.0-20180209012529-399ea8c73916 -; (package -; (name "go-github-com-docker-go-metrics") -; (version "0.0.0-20180209012529-399ea8c73916") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/docker/go-metrics") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0najfy92fq05b330cnjk5b326yi7dnnmvzfk6g5lsa1fci78yzw4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/docker/go-metrics")) -; (home-page "https://github.com/docker/go-metrics") -; (synopsis "go-metrics") -; (description -; "This package is small wrapper around the prometheus go client to help enforce convention and best practices for metrics collection in Docker projects.") -; (license (list license:asl2.0 license:cc-by-sa4.0)))) -; -;(define-public go-github-com-docker-libtrust-0.0.0-20150114040149-fa567046d9b1 -; (package -; (name "go-github-com-docker-libtrust") -; (version "0.0.0-20150114040149-fa567046d9b1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/docker/libtrust") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1121c7fxarzyr3fvxyzfw8qs4hb8k92dsix26s5vxncgszl5svf2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/docker/libtrust")) -; (home-page "https://github.com/docker/libtrust") -; (synopsis "libtrust") -; (description -; "Package libtrust provides an interface for managing authentication and -;authorization using public key cryptography. Authentication is handled -;using the identity attached to the public key and verified through TLS -;x509 certificates, a key challenge, or signature. Authorization and -;access control is managed through a trust graph distributed between -;both remote trust servers and locally cached and managed data. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-garyburd-redigo-0.0.0-20150301180006-535138d7bcd7 -; (package -; (name "go-github-com-garyburd-redigo") -; (version "0.0.0-20150301180006-535138d7bcd7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/garyburd/redigo") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1m7nc1gvv5yqnq8ii75f33485il6y6prf8gxl97dimsw94qccc5v")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/garyburd/redigo")) -; (home-page "https://github.com/garyburd/redigo") -; (synopsis #f) -; (description -; "Future development of Redigo is at -;@url{https://github.com/gomodule/redigo,github.com/gomodule/redigo}. Please submit -;issues at gomodule/redigo. The repository at github.com/garyburd/redigo is a -;read-only snapshot.") -; (license license:asl2.0))) -; -;(define-public go-github-com-gorilla-handlers-0.0.0-20150720190736-60c7bfde3e33 -; (package -; (name "go-github-com-gorilla-handlers") -; (version "0.0.0-20150720190736-60c7bfde3e33") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/gorilla/handlers") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0zvpxvybdn8yqpk2cxs134ip9wxmw6c1s0kw9nahf7qw1kfyzycm")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/gorilla/handlers")) -; (home-page "https://github.com/gorilla/handlers") -; (synopsis "gorilla/handlers") -; (description -; "Package handlers is a collection of handlers (aka \"HTTP middleware\") for use -;with Go's net/http package (or any framework supporting http.Handler). -;") -; (license license:bsd-2))) -; -;(define-public go-github-com-gorilla-mux-1.7.2 -; (package -; (name "go-github-com-gorilla-mux") -; (version "1.7.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/gorilla/mux") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1gjcbgpdl3snc38i8sj8k6sqbv3inyrxqyggbqvr4jfx2phv2zy6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/gorilla/mux")) -; (home-page "https://github.com/gorilla/mux") -; (synopsis "gorilla/mux") -; (description "Package mux implements a request router and dispatcher. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-jmespath-go-jmespath-0.0.0-20160803190731-bd40a432e4c7 -; (package -; (name "go-github-com-jmespath-go-jmespath") -; (version "0.0.0-20160803190731-bd40a432e4c7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/jmespath/go-jmespath") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1kgzwiyqn24ba9kgpjxlq1h746gnyby0psbjj9mp2yx0h1i0kc4z")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/jmespath/go-jmespath")) -; (home-page "https://github.com/jmespath/go-jmespath") -; (synopsis "go-jmespath - A JMESPath implementation in Go") -; (description -; "go-jmespath is a GO implementation of JMESPath, -;which is a query language for JSON. It will take a JSON -;document and transform it into another JSON document -;through a JMESPath expression.") -; (license license:asl2.0))) -; -;(define-public go-github-com-marstr-guid-1.1.0 -; (package -; (name "go-github-com-marstr-guid") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/marstr/guid") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "081qrar6wwpmb2pq3swv4byh73r9riyhl2dwv0902d8jg3kwricm")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/marstr/guid")) -; (home-page "https://github.com/marstr/guid") -; (synopsis "Guid") -; (description -; "Globally unique identifiers offer a quick means of generating non-colliding values across a distributed system. For this implemenation, @url{http://ietf.org/rfc/rfc4122.txt,RFC 4122} governs the desired behavior.") -; (license license:expat))) -; -;(define-public go-github-com-mitchellh-osext-0.0.0-20151018003038-5e2d6d41470f -; (package -; (name "go-github-com-mitchellh-osext") -; (version "0.0.0-20151018003038-5e2d6d41470f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mitchellh/osext") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0j635c1cx7crs5wlirlk713l36x70pnlmqrzd3x3bjgnjg194jrk")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mitchellh/osext")) -; (home-page "https://github.com/mitchellh/osext") -; (synopsis "osext") -; (description "Extensions to the standard \"os\" package. -;") -; (license license:zlib))) -; -;(define-public go-github-com-ncw-swift-1.0.47 -; (package -; (name "go-github-com-ncw-swift") -; (version "1.0.47") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/ncw/swift") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0wxz4lvy6pjabghq8inby2fyh58ysclayccziawc8fd7a67kh4cd")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/ncw/swift")) -; (home-page "https://github.com/ncw/swift") -; (synopsis "Swift") -; (description -; "Package swift provides an easy to use interface to Swift / Openstack Object Storage / Rackspace Cloud Files -;") -; (license license:expat))) -; -;(define-public go-github-com-opencontainers-go-digest-0.0.0-20170106003457-a6d0ee40d420 -; (package -; (name "go-github-com-opencontainers-go-digest") -; (version "0.0.0-20170106003457-a6d0ee40d420") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/go-digest") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1paz3na2xkhi10p5bk7f7gbh5yykfgr9f9i2gcc13rb461yq6fmg")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/go-digest")) -; (home-page "https://github.com/opencontainers/go-digest") -; (synopsis "go-digest") -; (description -; "Package digest provides a generalized type to opaquely represent message -;digests and their operations within the registry. The Digest type is -;designed to serve as a flexible identifier in a content-addressable system. -;More importantly, it provides tools and wrappers to work with -;hash.Hash-based digests with little effort. -;") -; (license (list license:asl2.0 license:cc-by-sa4.0)))) -; -;(define-public go-github-com-opencontainers-image-spec-1.0.0 -; (package -; (name "go-github-com-opencontainers-image-spec") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/image-spec") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "04ax2pylpwzsa5pw6wk94shdpdmfyqf70ys0idhpxsygzc2m5l23")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/image-spec")) -; (home-page "https://github.com/opencontainers/image-spec") -; (synopsis "OCI Image Format Specification") -; (description -; "The OCI Image Format project creates and maintains the software shipping container image format spec (OCI Image Format).") -; (license license:asl2.0))) -; -;(define-public go-github-com-prometheus-client-golang-0.0.0-20180209125602-c332b6f63c06 -; (package -; (name "go-github-com-prometheus-client-golang") -; (version "0.0.0-20180209125602-c332b6f63c06") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/client_golang") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "068r759wnh1lxcjhj89z4bqbpl7ydcx2drn2967ygw80nyab30pq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/client_golang")) -; (home-page "https://github.com/prometheus/client_golang") -; (synopsis "Prometheus Go client library") -; (description -; "This is the @url{http://golang.org,Go} client library for -;@url{http://prometheus.io,Prometheus}. It has two separate parts, one for -;instrumenting application code, and one for creating clients that talk to the -;Prometheus HTTP API.") -; (license license:asl2.0))) -; -;(define-public go-github-com-prometheus-client-model-0.0.0-20171117100541-99fa1f4be8e5 -; (package -; (name "go-github-com-prometheus-client-model") -; (version "0.0.0-20171117100541-99fa1f4be8e5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/client_model") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "19y4ywsivhpxj7ikf2j0gm9k3cmyw37qcbfi78n526jxcc7kw998")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/client_model")) -; (home-page "https://github.com/prometheus/client_model") -; (synopsis "Deprecation note") -; (description -; "This repository used to contain the code that defined both -;the data model and the exposition format of Prometheus metrics.") -; (license license:asl2.0))) -; -;(define-public go-github-com-prometheus-common-0.0.0-20180110214958-89604d197083 -; (package -; (name "go-github-com-prometheus-common") -; (version "0.0.0-20180110214958-89604d197083") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/common") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "169rdlaf2mk9z4fydz7ajmngyhmf3q1lk96yhvx46bn986x5xkyn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/common")) -; (home-page "https://github.com/prometheus/common") -; (synopsis "Common") -; (description -; "This repository contains Go libraries that are shared across Prometheus -;components and libraries. They are considered internal to Prometheus, without -;any stability guarantees for external usage.") -; (license license:asl2.0))) -; -;(define-public go-github-com-gopherjs-gopherjs-0.0.0-20181017120253-0766667cb4d1 -; (package -; (name "go-github-com-gopherjs-gopherjs") -; (version "0.0.0-20181017120253-0766667cb4d1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/gopherjs/gopherjs") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "13pfc9sxiwjky2lm1xb3i3lcisn8p6mgjk2d927l7r92ysph8dmw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/gopherjs/gopherjs")) -; (home-page "https://github.com/gopherjs/gopherjs") -; (synopsis "GopherJS - A compiler from Go to JavaScript") -; (description -; "GopherJS compiles Go code (@url{https://golang.org/,golang.org}) to pure JavaScript code. Its main purpose is to give you the opportunity to write front-end code in Go which will still run in all browsers.") -; (license license:bsd-2))) -; -;(define-public go-github-com-jtolds-gls-4.20.0+incompatible -; (package -; (name "go-github-com-jtolds-gls") -; (version "4.20.0+incompatible") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/jtolio/gls") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1k7xd2q2ysv2xsh373qs801v6f359240kx0vrl0ydh7731lngvk6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/jtolds/gls")) -; (home-page "https://github.com/jtolds/gls") -; (synopsis "gls") -; (description "Package gls implements goroutine-local storage. -;") -; (license license:expat))) -; -;(define-public go-github-com-smartystreets-assertions-0.0.0-20180927180507-b2de0cb4f26d -; (package -; (name "go-github-com-smartystreets-assertions") -; (version "0.0.0-20180927180507-b2de0cb4f26d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/smartystreets/assertions") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1i7ldgavgl35c7gk25p7bvdr282ckng090zr4ch9mk1705akx09y")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/smartystreets/assertions")) -; (home-page "https://github.com/smartystreets/assertions") -; (synopsis #f) -; (description -; "Package assertions contains the implementations for all assertions which -;are referenced in goconvey's `convey` package -;(github.com/smartystreets/goconvey/convey) and gunit (github.com/smartystreets/gunit) -;for use with the So(...) method. -;They can also be used in traditional Go test functions and even in -;applications. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-tools-0.0.0-20190328211700-ab21143f2384 -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20190328211700-ab21143f2384") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "15fk0psk53pplpyghz55bhay0kvsv5rikmn5hwgjnnyxq9vfy178")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-github-com-smartystreets-goconvey-0.0.0-20190330032615-68dc04aab96a -; (package -; (name "go-github-com-smartystreets-goconvey") -; (version "0.0.0-20190330032615-68dc04aab96a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/smartystreets/goconvey") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1kas5v95fzhr88hg4rjy0vp03y4pzvy3pwwgkfz2yhn5nlj29nk6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/smartystreets/goconvey")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20190328211700-ab21143f2384" -; ,go-golang-org-x-tools-0.0.0-20190328211700-ab21143f2384) -; ("go-github-com-smartystreets-assertions-0.0.0-20180927180507-b2de0cb4f26d" -; ,go-github-com-smartystreets-assertions-0.0.0-20180927180507-b2de0cb4f26d) -; ("go-github-com-jtolds-gls-4.20.0+incompatible" -; ,go-github-com-jtolds-gls-4.20.0+incompatible) -; ("go-github-com-gopherjs-gopherjs-0.0.0-20181017120253-0766667cb4d1" -; ,go-github-com-gopherjs-gopherjs-0.0.0-20181017120253-0766667cb4d1))) -; (home-page "https://github.com/smartystreets/goconvey") -; (synopsis "GoConvey is awesome Go testing") -; (description -; "This executable provides an HTTP server that watches for file system changes -;to .go files within the working directory (and all nested go packages). -;Navigating to the configured host and port in a web browser will display the -;latest results of running `go test` in each go package. -;") -; (license license:expat))) -; -;(define-public go-github-com-yvasiyarov-go-metrics-0.0.0-20140926110328-57bccd1ccd43 -; (package -; (name "go-github-com-yvasiyarov-go-metrics") -; (version "0.0.0-20140926110328-57bccd1ccd43") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/yvasiyarov/go-metrics") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1rwlq9k3iii54da90fjivi13zacx2h6znppkzncvl653xhjpm26g")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/yvasiyarov/go-metrics")) -; (home-page "https://github.com/yvasiyarov/go-metrics") -; (synopsis "go-metrics") -; (description "Go port of Coda Hale's Metrics library -;") -; (license #f))) -; -;(define-public go-github-com-yvasiyarov-gorelic-0.0.0-20141212073537-a9bba5b9ab50 -; (package -; (name "go-github-com-yvasiyarov-gorelic") -; (version "0.0.0-20141212073537-a9bba5b9ab50") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/yvasiyarov/gorelic") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1niwv40k9rx2g5h6wddci9ykf1sm1d5ml9mjgdjd1ahm4wfq08gn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/yvasiyarov/gorelic")) -; (home-page "https://github.com/yvasiyarov/gorelic") -; (synopsis "GoRelic is deprecated in favour of") -; (description -; "Package gorelic is an New Relic agent implementation for Go runtime. It collect a lot of metrics about Go scheduler, garbage collector and memory allocator and send them to NewRelic. -;") -; (license license:bsd-2))) -; -;(define-public go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20140908184405-b21fdbd4370f -; (package -; (name "go-github-com-yvasiyarov-newrelic-platform-go") -; (version "0.0.0-20140908184405-b21fdbd4370f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/yvasiyarov/newrelic_platform_go") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0a4yncdxwsy0rn3bhkadfysm817b7ndzmh9fkg8hh92pnw5aabzw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/yvasiyarov/newrelic_platform_go")) -; (home-page "https://github.com/yvasiyarov/newrelic_platform_go") -; (synopsis "New Relic Platform Agent SDK for Go(golang)") -; (description -; "Package newrelic_platform_go is New Relic Platform Agent SDK for Go language. -;") -; (license license:bsd-2))) -; -;(define-public go-golang-org-x-net-0.0.0-20190619014844-b5b0513f8c1b -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20190619014844-b5b0513f8c1b") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0sr4gbiq09izkmm6hcmfnia6lz6ngzzqjbwlrzh7jifbzyck53wz")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190602015325-4c4f7f33c9ed -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190602015325-4c4f7f33c9ed") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "191001bxqyc3xfs46nnqmm7jdk0r73vk7a4zqngfl7zwjv9smwsq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-api-0.0.0-20160322025152-9bf6e6e569ff -; (package -; (name "go-google-golang-org-api") -; (version "0.0.0-20160322025152-9bf6e6e569ff") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-api-go-client") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "02zn0zr4jrkdnxhxa0h3vm30j27bsc4lcswrffilkrafbspjsrxz")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/api")) -; (home-page "https://google.golang.org/api") -; (synopsis "Google APIs Client Library for Go") -; (description -; "Package api is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of -;sub-packages. -;") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-cloud-0.0.0-20151119220103-975617b05ea8 -; (package -; (name "go-google-golang-org-cloud") -; (version "0.0.0-20151119220103-975617b05ea8") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-cloud-go") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "156jhn1kakr98jfk830y4yr8lhisdj6qs38ypa42ddmgza9qcmdd")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/cloud")) -; (home-page "https://google.golang.org/cloud") -; (synopsis "Google Cloud Client Libraries for Go") -; (description -; "Package cloud is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -;of sub-packages. -;") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-grpc-0.0.0-20160317175043-d3ddb4469d5a -; (package -; (name "go-google-golang-org-grpc") -; (version "0.0.0-20160317175043-d3ddb4469d5a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0p45by0s66ragvx9hs8gkz1k1gy8456y794b5zspa0b86y2b53w9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-gopkg-in-check-v1-1.0.0-20141024133853-64131543e789 -; (package -; (name "go-gopkg-in-check-v1") -; (version "1.0.0-20141024133853-64131543e789") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/check.v1") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "01sz40asq0zwf6j7q2hww33wr1cflglngq8xazw466c9d1f9kyyh")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) -; (home-page "https://gopkg.in/check.v1") -; (synopsis "Instructions") -; (description -; "Package check is a rich testing extension for Go's testing package. -;") -; (license license:bsd-2))) -; -;(define-public go-github-com-docker-distribution-0.0.0-20190905152932-14b96e55d84c -; (package -; (name "go-github-com-docker-distribution") -; (version "0.0.0-20190905152932-14b96e55d84c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/distribution/distribution") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0jd7ccjy7ahznsh6hf9dhqbgn9glwc0db9g5nv8n6sys5d1jdni9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/docker/distribution")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) -; ("go-gopkg-in-check-v1-1.0.0-20141024133853-64131543e789" -; ,go-gopkg-in-check-v1-1.0.0-20141024133853-64131543e789) -; ("go-google-golang-org-grpc-0.0.0-20160317175043-d3ddb4469d5a" -; ,go-google-golang-org-grpc-0.0.0-20160317175043-d3ddb4469d5a) -; ("go-google-golang-org-cloud-0.0.0-20151119220103-975617b05ea8" -; ,go-google-golang-org-cloud-0.0.0-20151119220103-975617b05ea8) -; ("go-google-golang-org-api-0.0.0-20160322025152-9bf6e6e569ff" -; ,go-google-golang-org-api-0.0.0-20160322025152-9bf6e6e569ff) -; ("go-golang-org-x-sys-0.0.0-20190602015325-4c4f7f33c9ed" -; ,go-golang-org-x-sys-0.0.0-20190602015325-4c4f7f33c9ed) -; ("go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45" -; ,go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45) -; ("go-golang-org-x-net-0.0.0-20190619014844-b5b0513f8c1b" -; ,go-golang-org-x-net-0.0.0-20190619014844-b5b0513f8c1b) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2) -; ("go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20140908184405-b21fdbd4370f" -; ,go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20140908184405-b21fdbd4370f) -; ("go-github-com-yvasiyarov-gorelic-0.0.0-20141212073537-a9bba5b9ab50" -; ,go-github-com-yvasiyarov-gorelic-0.0.0-20141212073537-a9bba5b9ab50) -; ("go-github-com-yvasiyarov-go-metrics-0.0.0-20140926110328-57bccd1ccd43" -; ,go-github-com-yvasiyarov-go-metrics-0.0.0-20140926110328-57bccd1ccd43) -; ("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0) -; ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) -; ("go-github-com-spf13-cobra-0.0.3" ,go-github-com-spf13-cobra-0.0.3) -; ("go-github-com-smartystreets-goconvey-0.0.0-20190330032615-68dc04aab96a" -; ,go-github-com-smartystreets-goconvey-0.0.0-20190330032615-68dc04aab96a) -; ("go-github-com-sirupsen-logrus-1.4.2" -; ,go-github-com-sirupsen-logrus-1.4.2) -; ("go-github-com-satori-go-uuid-1.2.0" -; ,go-github-com-satori-go-uuid-1.2.0) -; ("go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7" -; ,go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7) -; ("go-github-com-prometheus-common-0.0.0-20180110214958-89604d197083" -; ,go-github-com-prometheus-common-0.0.0-20180110214958-89604d197083) -; ("go-github-com-prometheus-client-model-0.0.0-20171117100541-99fa1f4be8e5" -; ,go-github-com-prometheus-client-model-0.0.0-20171117100541-99fa1f4be8e5) -; ("go-github-com-prometheus-client-golang-0.0.0-20180209125602-c332b6f63c06" -; ,go-github-com-prometheus-client-golang-0.0.0-20180209125602-c332b6f63c06) -; ("go-github-com-opencontainers-image-spec-1.0.0" -; ,go-github-com-opencontainers-image-spec-1.0.0) -; ("go-github-com-opencontainers-go-digest-0.0.0-20170106003457-a6d0ee40d420" -; ,go-github-com-opencontainers-go-digest-0.0.0-20170106003457-a6d0ee40d420) -; ("go-github-com-ncw-swift-1.0.47" ,go-github-com-ncw-swift-1.0.47) -; ("go-github-com-mitchellh-osext-0.0.0-20151018003038-5e2d6d41470f" -; ,go-github-com-mitchellh-osext-0.0.0-20151018003038-5e2d6d41470f) -; ("go-github-com-mitchellh-mapstructure-1.1.2" -; ,go-github-com-mitchellh-mapstructure-1.1.2) -; ("go-github-com-matttproud-golang-protobuf-extensions-1.0.1" -; ,go-github-com-matttproud-golang-protobuf-extensions-1.0.1) -; ("go-github-com-marstr-guid-1.1.0" ,go-github-com-marstr-guid-1.1.0) -; ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) -; ("go-github-com-jmespath-go-jmespath-0.0.0-20160803190731-bd40a432e4c7" -; ,go-github-com-jmespath-go-jmespath-0.0.0-20160803190731-bd40a432e4c7) -; ("go-github-com-inconshreveable-mousetrap-1.0.0" -; ,go-github-com-inconshreveable-mousetrap-1.0.0) -; ("go-github-com-gorilla-mux-1.7.2" ,go-github-com-gorilla-mux-1.7.2) -; ("go-github-com-gorilla-handlers-0.0.0-20150720190736-60c7bfde3e33" -; ,go-github-com-gorilla-handlers-0.0.0-20150720190736-60c7bfde3e33) -; ("go-github-com-garyburd-redigo-0.0.0-20150301180006-535138d7bcd7" -; ,go-github-com-garyburd-redigo-0.0.0-20150301180006-535138d7bcd7) -; ("go-github-com-docker-libtrust-0.0.0-20150114040149-fa567046d9b1" -; ,go-github-com-docker-libtrust-0.0.0-20150114040149-fa567046d9b1) -; ("go-github-com-docker-go-metrics-0.0.0-20180209012529-399ea8c73916" -; ,go-github-com-docker-go-metrics-0.0.0-20180209012529-399ea8c73916) -; ("go-github-com-dnaeon-go-vcr-1.0.1" -; ,go-github-com-dnaeon-go-vcr-1.0.1) -; ("go-github-com-dgrijalva-jwt-go-0.0.0-20170104182250-a601269ab70c" -; ,go-github-com-dgrijalva-jwt-go-0.0.0-20170104182250-a601269ab70c) -; ("go-github-com-denverdino-aliyungo-0.0.0-20190125010748-a747050bb1ba" -; ,go-github-com-denverdino-aliyungo-0.0.0-20190125010748-a747050bb1ba) -; ("go-github-com-bugsnag-panicwrap-0.0.0-20151223152923-e2c28503fcd0" -; ,go-github-com-bugsnag-panicwrap-0.0.0-20151223152923-e2c28503fcd0) -; ("go-github-com-bugsnag-osext-0.0.0-20130617224835-0dd3f918b21b" -; ,go-github-com-bugsnag-osext-0.0.0-20130617224835-0dd3f918b21b) -; ("go-github-com-bugsnag-bugsnag-go-0.0.0-20141110184014-b1d153021fcd" -; ,go-github-com-bugsnag-bugsnag-go-0.0.0-20141110184014-b1d153021fcd) -; ("go-github-com-bshuster-repo-logrus-logstash-hook-0.4.1" -; ,go-github-com-bshuster-repo-logrus-logstash-hook-0.4.1) -; ("go-github-com-bmizerany-assert-0.0.0-20160611221934-b7ed37b82869" -; ,go-github-com-bmizerany-assert-0.0.0-20160611221934-b7ed37b82869) -; ("go-github-com-bitly-go-simplejson-0.5.0" -; ,go-github-com-bitly-go-simplejson-0.5.0) -; ("go-github-com-beorn7-perks-0.0.0-20160804104726-4c0e84591b9a" -; ,go-github-com-beorn7-perks-0.0.0-20160804104726-4c0e84591b9a) -; ("go-github-com-aws-aws-sdk-go-1.15.11" -; ,go-github-com-aws-aws-sdk-go-1.15.11) -; ("go-github-com-shopify-logrus-bugsnag-0.0.0-20171204204709-577dee27f20d" -; ,go-github-com-shopify-logrus-bugsnag-0.0.0-20171204204709-577dee27f20d) -; ("go-github-com-azure-go-autorest-10.8.1+incompatible" -; ,go-github-com-azure-go-autorest-10.8.1+incompatible) -; ("go-github-com-azure-azure-sdk-for-go-16.2.1+incompatible" -; ,go-github-com-azure-azure-sdk-for-go-16.2.1+incompatible))) -; (home-page "https://github.com/docker/distribution") -; (synopsis "Distribution") -; (description -; "Package distribution will define the interfaces for the components of -;docker distribution. The goal is to allow users to reliably package, ship -;and store content related to docker images. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-gogo-protobuf-1.2.2-0.20190723190241-65acae22fc9d -; (package -; (name "go-github-com-gogo-protobuf") -; (version "1.2.2-0.20190723190241-65acae22fc9d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/gogo/protobuf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0700alky9z0g9akhrzn20wf4jr1600d0clhs32sm8chnlbvidy46")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/gogo/protobuf")) -; (propagated-inputs -; `(("go-github-com-kisielk-gotool-1.0.0" -; ,go-github-com-kisielk-gotool-1.0.0) -; ("go-github-com-kisielk-errcheck-1.2.0" -; ,go-github-com-kisielk-errcheck-1.2.0))) -; (home-page "https://github.com/gogo/protobuf") -; (synopsis "Protocol Buffers for Go with Gadgets") -; (description -; "gogoprotobuf is a fork of @url{https://github.com/golang/protobuf,golang/protobuf} with extra code generation features.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190813064441-fde4db37ae7a -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190813064441-fde4db37ae7a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "16k4w4pzziq1kln18k5fg01qgk4hpzb5xsm7175kaky6d6gwyhg3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-k8s-io-cri-api-0.17.3 -; (package -; (name "go-k8s-io-cri-api") -; (version "0.17.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes/cri-api") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "047wg80q4cb9qikpj0zp2kzcgp599cdqwiqlravfy86bga4r3fgf")))) -; (build-system go-build-system) -; (arguments '(#:import-path "k8s.io/cri-api")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190813064441-fde4db37ae7a" -; ,go-golang-org-x-sys-0.0.0-20190813064441-fde4db37ae7a) -; ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) -; ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" -; ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) -; ("go-google-golang-org-grpc-1.23.1" ,go-google-golang-org-grpc-1.23.1) -; ("go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873" -; ,go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873) -; ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) -; ("go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9" -; ,go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9) -; ("go-github-com-stretchr-testify-1.4.0" -; ,go-github-com-stretchr-testify-1.4.0) -; ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2) -; ("go-github-com-gogo-protobuf-1.2.2-0.20190723190241-65acae22fc9d" -; ,go-github-com-gogo-protobuf-1.2.2-0.20190723190241-65acae22fc9d) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://k8s.io/cri-api") -; (synopsis "Purpose") -; (description -; "This repository contains the definitions for the Container Runtime Interface (CRI). -;CRI is a plugin interface which enables kubelet to use a wide variety of container runtimes, -;without the need to recompile. CRI consists of a protocol buffers and gRPC API.") -; (license license:asl2.0))) -; -;(define-public go-github-com-microsoft-hcsshim-test-0.0.0-20201218223536-d3e5debf77da -; (package -; (name "go-github-com-microsoft-hcsshim-test") -; (version "0.0.0-20201218223536-d3e5debf77da") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/microsoft/hcsshim") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0k57knv8zrf32hp7rpv1km9j772w6752pfvdbpd3l711ism48c84")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path -; "github.com/Microsoft/hcsshim/test" -; #:unpack-path -; "github.com/Microsoft/hcsshim")) -; (propagated-inputs -; `(("go-k8s-io-cri-api-0.17.3" ,go-k8s-io-cri-api-0.17.3) -; ("go-google-golang-org-grpc-1.23.1" ,go-google-golang-org-grpc-1.23.1) -; ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" -; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) -; ("go-go-etcd-io-bbolt-1.3.3" ,go-go-etcd-io-bbolt-1.3.3) -; ("go-github-com-xeipuuv-gojsonschema-0.0.0-20180618132009-1d523034197f" -; ,go-github-com-xeipuuv-gojsonschema-0.0.0-20180618132009-1d523034197f) -; ("go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415" -; ,go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415) -; ("go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f" -; ,go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f) -; ("go-github-com-syndtr-gocapability-0.0.0-20170704070218-db04d3cc01c8" -; ,go-github-com-syndtr-gocapability-0.0.0-20170704070218-db04d3cc01c8) -; ("go-github-com-sirupsen-logrus-1.4.2" -; ,go-github-com-sirupsen-logrus-1.4.2) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39" -; ,go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39) -; ("go-github-com-opencontainers-runtime-spec-1.0.2" -; ,go-github-com-opencontainers-runtime-spec-1.0.2) -; ("go-github-com-imdario-mergo-0.3.8" -; ,go-github-com-imdario-mergo-0.3.8) -; ("go-github-com-hashicorp-go-multierror-0.0.0-20161216184304-ed905158d874" -; ,go-github-com-hashicorp-go-multierror-0.0.0-20161216184304-ed905158d874) -; ("go-github-com-hashicorp-errwrap-0.0.0-20141028054710-7554cd9344ce" -; ,go-github-com-hashicorp-errwrap-0.0.0-20141028054710-7554cd9344ce) -; ("go-github-com-gogo-protobuf-1.3.1" -; ,go-github-com-gogo-protobuf-1.3.1) -; ("go-github-com-gogo-googleapis-1.2.0" -; ,go-github-com-gogo-googleapis-1.2.0) -; ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" -; ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) -; ("go-github-com-docker-distribution-0.0.0-20190905152932-14b96e55d84c" -; ,go-github-com-docker-distribution-0.0.0-20190905152932-14b96e55d84c) -; ("go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd" -; ,go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd) -; ("go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de" -; ,go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de) -; ("go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3" -; ,go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3) -; ("go-github-com-containerd-containerd-1.3.2" -; ,go-github-com-containerd-containerd-1.3.2) -; ("go-github-com-blang-semver-3.1.0+incompatible" -; ,go-github-com-blang-semver-3.1.0+incompatible) -; ("go-github-com-microsoft-go-winio-0.4.16-0.20201130162521-d1ffc52c7331" -; ,go-github-com-microsoft-go-winio-0.4.16-0.20201130162521-d1ffc52c7331))) -; (home-page "https://github.com/Microsoft/hcsshim") -; (synopsis #f) -; (description #f) -; (license license:expat))) -; -;(define-public go-github-com-containerd-aufs-0.0.0-20200908144142-dab0cbea06f4 -; (package -; (name "go-github-com-containerd-aufs") -; (version "0.0.0-20200908144142-dab0cbea06f4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/aufs") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "060iqypyrdmww0ykip1zqi5f2fl1il55vndgdn5aq5zj6530mgsn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/aufs")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) -; ("go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449" -; ,go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449) -; ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" -; ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) -; ("go-go-etcd-io-bbolt-1.3.3" ,go-go-etcd-io-bbolt-1.3.3) -; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) -; ("go-github-com-opencontainers-runc-1.0.0-rc9" -; ,go-github-com-opencontainers-runc-1.0.0-rc9) -; ("go-github-com-opencontainers-image-spec-1.0.1" -; ,go-github-com-opencontainers-image-spec-1.0.1) -; ("go-github-com-opencontainers-go-digest-1.0.0-rc1" -; ,go-github-com-opencontainers-go-digest-1.0.0-rc1) -; ("go-github-com-google-go-cmp-0.3.1" -; ,go-github-com-google-go-cmp-0.3.1) -; ("go-github-com-gogo-protobuf-1.3.1" -; ,go-github-com-gogo-protobuf-1.3.1) -; ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" -; ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) -; ("go-github-com-containerd-typeurl-0.0.0-20190911142611-5eb25027c9fd" -; ,go-github-com-containerd-typeurl-0.0.0-20190911142611-5eb25027c9fd) -; ("go-github-com-containerd-ttrpc-0.0.0-20191028202541-4f1b8fe65a5c" -; ,go-github-com-containerd-ttrpc-0.0.0-20191028202541-4f1b8fe65a5c) -; ("go-github-com-containerd-continuity-0.0.0-20191127005431-f65d91d395eb" -; ,go-github-com-containerd-continuity-0.0.0-20191127005431-f65d91d395eb) -; ("go-github-com-containerd-containerd-1.3.1-0.20191213020239-082f7e3aed57" -; ,go-github-com-containerd-containerd-1.3.1-0.20191213020239-082f7e3aed57) -; ("go-github-com-microsoft-hcsshim-0.8.7" -; ,go-github-com-microsoft-hcsshim-0.8.7))) -; (home-page "https://github.com/containerd/aufs") -; (synopsis "aufs snapshotter") -; (description -; "AUFS implementation of the snapshot interface for containerd.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-btrfs-0.0.0-20201111183144-404b9149801e -; (package -; (name "go-github-com-containerd-btrfs") -; (version "0.0.0-20201111183144-404b9149801e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/btrfs") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "10aakvy9njaly2mfwi1cvys8dxjn27mnd7wnpnmxh8pxb7g2svag")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/btrfs")) -; (propagated-inputs -; `(("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) -; (home-page "https://github.com/containerd/btrfs") -; (synopsis "go-btrfs") -; (description -; "Package btrfs provides bindings for working with btrfs partitions from Go. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-cgroups-0.0.0-20200824123100-0b889c03f102 -; (package -; (name "go-github-com-containerd-cgroups") -; (version "0.0.0-20200824123100-0b889c03f102") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/cgroups") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1zjmphy2df9y20hzrmwxfpyyvz8vb5lazr4pjyx3c5a5x0j4rv8d")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/cgroups")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9" -; ,go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9) -; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) -; ("go-github-com-stretchr-testify-1.2.2" -; ,go-github-com-stretchr-testify-1.2.2) -; ("go-github-com-sirupsen-logrus-1.6.0" -; ,go-github-com-sirupsen-logrus-1.6.0) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-runtime-spec-1.0.2" -; ,go-github-com-opencontainers-runtime-spec-1.0.2) -; ("go-github-com-gogo-protobuf-1.3.1" -; ,go-github-com-gogo-protobuf-1.3.1) -; ("go-github-com-godbus-dbus-v5-5.0.3" -; ,go-github-com-godbus-dbus-v5-5.0.3) -; ("go-github-com-docker-go-units-0.4.0" -; ,go-github-com-docker-go-units-0.4.0) -; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" -; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) -; ("go-github-com-coreos-go-systemd-v22-22.0.0" -; ,go-github-com-coreos-go-systemd-v22-22.0.0) -; ("go-github-com-cilium-ebpf-0.0.0-20200702112145-1c8d4c9ef775" -; ,go-github-com-cilium-ebpf-0.0.0-20200702112145-1c8d4c9ef775))) -; (home-page "https://github.com/containerd/cgroups") -; (synopsis "cgroups") -; (description -; "Go package for creating, managing, inspecting, and destroying cgroups. -;The resources format for settings on the cgroup uses the OCI runtime-spec found -;@url{https://github.com/opencontainers/runtime-spec,here}.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-continuity-0.0.0-20201208142359-180525291bb7 -; (package -; (name "go-github-com-containerd-continuity") -; (version "0.0.0-20201208142359-180525291bb7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/continuity") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1di4pspqfwfafdni0in84kzyn8h1fhqb6vh4i0g5skqmrc4sxf4h")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/continuity")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3" -; ,go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3) -; ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" -; ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) -; ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" -; ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) -; ("go-github-com-stretchr-testify-1.4.0" -; ,go-github-com-stretchr-testify-1.4.0) -; ("go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95" -; ,go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95) -; ("go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee" -; ,go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee) -; ("go-github-com-sirupsen-logrus-1.6.0" -; ,go-github-com-sirupsen-logrus-1.6.0) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-go-digest-1.0.0" -; ,go-github-com-opencontainers-go-digest-1.0.0) -; ("go-github-com-inconshreveable-mousetrap-1.0.0" -; ,go-github-com-inconshreveable-mousetrap-1.0.0) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0) -; ("go-github-com-dustin-go-humanize-1.0.0" -; ,go-github-com-dustin-go-humanize-1.0.0) -; ("go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898" -; ,go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898))) -; (home-page "https://github.com/containerd/continuity") -; (synopsis "continuity") -; (description -; "This package provides a transport-agnostic, filesystem metadata manifest system") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-fifo-0.0.0-20201026212402-0724c46b320c -; (package -; (name "go-github-com-containerd-fifo") -; (version "0.0.0-20201026212402-0724c46b320c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/fifo") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "11d9j0isblnnqf78ygvwjyijjxn6zdzf7p803v0jv2py4d0pkvj8")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/fifo")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449" -; ,go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449) -; ("go-github-com-stretchr-testify-1.4.0" -; ,go-github-com-stretchr-testify-1.4.0) -; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) -; (home-page "https://github.com/containerd/fifo") -; (synopsis "fifo") -; (description "Go package for handling fifos in a sane way.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containernetworking-cni-0.8.0 -; (package -; (name "go-github-com-containernetworking-cni") -; (version "0.8.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containernetworking/cni") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "16i59dhiq7pc7qs32cdk4yv4w9rjx4vvlw7fb6a6jhq6hxxjrgiw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containernetworking/cni")) -; (home-page "https://github.com/containernetworking/cni") -; (synopsis "CNI - the Container Network Interface") -; (description -; "CNI (), a @url{https://cncf.io,Cloud Native Computing Foundation} project, consists of a specification and libraries for writing plugins to configure network interfaces in Linux containers, along with a number of supported plugins. -;CNI concerns itself only with network connectivity of containers and removing allocated resources when the container is deleted. -;Because of this focus, CNI has a wide range of support and the specification is simple to implement.") -; (license license:asl2.0))) -; -;(define-public go-github-com-onsi-ginkgo-1.10.3 -; (package -; (name "go-github-com-onsi-ginkgo") -; (version "1.10.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/onsi/ginkgo") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "00a40by9f5ylycnar8h3p9b4z5rcsvfvg4j3v5s5mchdqrqjv1pc")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/onsi/ginkgo")) -; (home-page "https://github.com/onsi/ginkgo") -; (synopsis "Ginkgo 2.0 Release Candidate is available!") -; (description "Ginkgo is a BDD-style testing framework for Golang -;") -; (license license:expat))) -; -;(define-public go-github-com-stretchr-objx-0.0.0-20180129172003-8a3f7159479f -; (package -; (name "go-github-com-stretchr-objx") -; (version "0.0.0-20180129172003-8a3f7159479f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/objx") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0rbz4x4jbq9vp3zxmv0c2wh1vbg48lmc8ncdgz7zxk7241fc31ki")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/objx")) -; (home-page "https://github.com/stretchr/objx") -; (synopsis "Objx") -; (description -; "Objx - Go package for dealing with maps, slices, JSON and other data. -;") -; (license license:expat))) -; -;(define-public go-github-com-stretchr-testify-0.0.0-20180303142811-b89eecf5ca5d -; (package -; (name "go-github-com-stretchr-testify") -; (version "0.0.0-20180303142811-b89eecf5ca5d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/testify") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0g946ii8qjaynvidj648z8izl91i6yhy0ir6g3qsrn136im3r8wk")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/testify")) -; (home-page "https://github.com/stretchr/testify") -; (synopsis "Testify - Thou Shalt Write Tests") -; (description -; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -;") -; (license license:expat))) -; -;(define-public go-github-com-containerd-go-cni-1.0.1 -; (package -; (name "go-github-com-containerd-go-cni") -; (version "1.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/go-cni") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0sdlwa4d0kzpm3vg9jy6fxqqcfjq8innv1zjcyp8n9qy8vj9b24y")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/go-cni")) -; (propagated-inputs -; `(("go-github-com-stretchr-testify-0.0.0-20180303142811-b89eecf5ca5d" -; ,go-github-com-stretchr-testify-0.0.0-20180303142811-b89eecf5ca5d) -; ("go-github-com-stretchr-objx-0.0.0-20180129172003-8a3f7159479f" -; ,go-github-com-stretchr-objx-0.0.0-20180129172003-8a3f7159479f) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-onsi-gomega-1.7.1" ,go-github-com-onsi-gomega-1.7.1) -; ("go-github-com-onsi-ginkgo-1.10.3" ,go-github-com-onsi-ginkgo-1.10.3) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1) -; ("go-github-com-containernetworking-cni-0.8.0" -; ,go-github-com-containernetworking-cni-0.8.0))) -; (home-page "https://github.com/containerd/go-cni") -; (synopsis "go-cni") -; (description -; "This package provides a generic CNI library to provide APIs for CNI plugin interactions. The library provides APIs to:") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-console-0.0.0-20191206165004-02ecf6a7291e -; (package -; (name "go-github-com-containerd-console") -; (version "0.0.0-20191206165004-02ecf6a7291e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/console") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1b3yq446gv8da4fajknbjxr5syz1ypz0nii9sqw066hx8kmqzgqh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/console")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e" -; ,go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e) -; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) -; (home-page "https://github.com/containerd/console") -; (synopsis "console") -; (description -; "Golang package for dealing with consoles. Light on deps and a simple API.") -; (license license:asl2.0))) -; -;(define-public go-github-com-opencontainers-runtime-spec-1.0.1 -; (package -; (name "go-github-com-opencontainers-runtime-spec") -; (version "1.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/runtime-spec") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "00qb0q7ndxsll12ilp5a8pqfi4i1jqrlqzv0yf7sn52lkrdrw5f4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) -; (home-page "https://github.com/opencontainers/runtime-spec") -; (synopsis "Open Container Initiative Runtime Specification") -; (description -; "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328 -; (package -; (name "go-github-com-containerd-go-runc") -; (version "0.0.0-20200220073739-7016d3ce2328") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/go-runc") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1mx2lvfkxw9kiyhi18g3c6hcpb9r2115zjzyvz6rkdqr08xrij9k")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/go-runc")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449" -; ,go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449) -; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) -; ("go-github-com-opencontainers-runtime-spec-1.0.1" -; ,go-github-com-opencontainers-runtime-spec-1.0.1) -; ("go-github-com-containerd-console-0.0.0-20191206165004-02ecf6a7291e" -; ,go-github-com-containerd-console-0.0.0-20191206165004-02ecf6a7291e))) -; (home-page "https://github.com/containerd/go-runc") -; (synopsis "go-runc") -; (description -; "This is a package for consuming the @url{https://github.com/opencontainers/runc,runc} binary in your Go applications. -;It tries to expose all the settings and features of the runc CLI. If there is something missing then add it, its opensource!") -; (license license:asl2.0))) -; -;(define-public go-github-com-microsoft-go-winio-0.4.14 -; (package -; (name "go-github-com-microsoft-go-winio") -; (version "0.4.14") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/microsoft/go-winio") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0n34wi9l9ks2z3cz97j30ljfmqppwf1zxr16hwbnswyrk54fcxm3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/Microsoft/go-winio")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b" -; ,go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b) -; ("go-github-com-sirupsen-logrus-1.4.1" -; ,go-github-com-sirupsen-logrus-1.4.1) -; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) -; (home-page "https://github.com/Microsoft/go-winio") -; (synopsis "go-winio") -; (description -; "This repository contains utilities for efficiently performing Win32 IO operations in -;Go. Currently, this is focused on accessing named pipes and other file handles, and -;for using named pipes as a net transport.") -; (license license:expat))) -; -;(define-public go-github-com-microsoft-hcsshim-0.8.7-0.20190325164909-8abdbb8205e4 -; (package -; (name "go-github-com-microsoft-hcsshim") -; (version "0.8.7-0.20190325164909-8abdbb8205e4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/microsoft/hcsshim") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0029085clghvprb3bs2m9q7xk4njx5fg2gr5wm3a0y8kqx0awv45")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/Microsoft/hcsshim")) -; (home-page "https://github.com/Microsoft/hcsshim") -; (synopsis "hcsshim") -; (description -; "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") -; (license license:expat))) -; -;(define-public go-github-com-containerd-cgroups-0.0.0-20190717030353-c4b9ac5c7601 -; (package -; (name "go-github-com-containerd-cgroups") -; (version "0.0.0-20190717030353-c4b9ac5c7601") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/cgroups") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1fpai6nsm7qd5zfd8ykq8j4ngbqcy5v2isw16j086j0qabyw2iiw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/cgroups")) -; (home-page "https://github.com/containerd/cgroups") -; (synopsis "cgroups") -; (description -; "Go package for creating, managing, inspecting, and destroying cgroups. -;The resources format for settings on the cgroup uses the OCI runtime-spec found -;@url{https://github.com/opencontainers/runtime-spec,here}.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-console-0.0.0-20181022165439-0650fd9eeb50 -; (package -; (name "go-github-com-containerd-console") -; (version "0.0.0-20181022165439-0650fd9eeb50") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/console") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0cs11g3gjan15rnbgryf60725sw2hf83fb6y2hwn1rgcm0jab1b8")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/console")) -; (home-page "https://github.com/containerd/console") -; (synopsis "console") -; (description -; "Golang package for dealing with consoles. Light on deps and a simple API.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-containerd-1.3.0 -; (package -; (name "go-github-com-containerd-containerd") -; (version "1.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/containerd") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "05mr33l0rhkj49n6wf9lk95ijqvqwhp68ll879rpad1ypfv2f8as")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/containerd")) -; (home-page "https://github.com/containerd/containerd") -; (synopsis "Now Recruiting") -; (description -; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-continuity-0.0.0-20190815185530-f2a389ac0a02 -; (package -; (name "go-github-com-containerd-continuity") -; (version "0.0.0-20190815185530-f2a389ac0a02") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/continuity") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0h8a7npx46sjak0dyypkgg0h5dkq6dqpa4gx1v22ik62rmw0jy8r")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/continuity")) -; (home-page "https://github.com/containerd/continuity") -; (synopsis "continuity") -; (description -; "This package provides a transport-agnostic, filesystem metadata manifest system") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-fifo-0.0.0-20180307165137-3d5202aec260 -; (package -; (name "go-github-com-containerd-fifo") -; (version "0.0.0-20180307165137-3d5202aec260") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/fifo") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "11jp12vgfj0xg9m2w5cfay72fwrxb6w8za7rkcqw8yy8hypiqqxq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/fifo")) -; (home-page "https://github.com/containerd/fifo") -; (synopsis "fifo") -; (description "Go package for handling fifos in a sane way.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-go-runc-0.0.0-20190911050354-e029b79d8cda -; (package -; (name "go-github-com-containerd-go-runc") -; (version "0.0.0-20190911050354-e029b79d8cda") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/go-runc") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0zwb6bfnfmj09rnz1z3xx1y2pm4wrhyp2ls7vmf7p62j5zyvdpkw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/go-runc")) -; (home-page "https://github.com/containerd/go-runc") -; (synopsis "go-runc") -; (description -; "This is a package for consuming the @url{https://github.com/opencontainers/runc,runc} binary in your Go applications. -;It tries to expose all the settings and features of the runc CLI. If there is something missing then add it, its opensource!") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-ttrpc-0.0.0-20190828172938-92c8520ef9f8 -; (package -; (name "go-github-com-containerd-ttrpc") -; (version "0.0.0-20190828172938-92c8520ef9f8") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/ttrpc") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1kzclhmicw2xkiqsg6npx0xzs5jx36mqmyd0gj5dzv88i7p4b8dx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/ttrpc")) -; (home-page "https://github.com/containerd/ttrpc") -; (synopsis "ttrpc") -; (description "GRPC for low-memory environments.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-containerd-1.2.10 -; (package -; (name "go-github-com-containerd-containerd") -; (version "1.2.10") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/containerd") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1kddhkd93wkrimk0yjcqiavdrqc818nd39rf3wrgxyilx1mfnrwb")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/containerd")) -; (home-page "https://github.com/containerd/containerd") -; (synopsis "Now Recruiting") -; (description -; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") -; (license license:asl2.0))) -; -;(define-public go-github-com-fullsailor-pkcs7-0.0.0-20190404230743-d7302db945fa -; (package -; (name "go-github-com-fullsailor-pkcs7") -; (version "0.0.0-20190404230743-d7302db945fa") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/fullsailor/pkcs7") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "13d7dpj85j36pxwg1kn7b23rm54va5p9v3vdcx27pma2jjlsxsm1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/fullsailor/pkcs7")) -; (home-page "https://github.com/fullsailor/pkcs7") -; (synopsis "pkcs7") -; (description -; "Package pkcs7 implements parsing and generation of some PKCS#7 structures. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20190701094942-4def268fd1a4 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20190701094942-4def268fd1a4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1bfsnari529gw34cz0zqk3d9mrkcj1ay35kangri8kbgll0ss5a6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" -; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) -; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" -; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-gopkg-in-square-go-jose-v2-2.3.1 -; (package -; (name "go-gopkg-in-square-go-jose-v2") -; (version "2.3.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/square/go-jose.v2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "11r93g9xrcjqj7qvq8sbd5hy5rnbpmim0vdsp6rbav8gl7wimaa3")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path -; "gopkg.in/square/go-jose.v2" -; #:unpack-path -; "gopkg.in/square/go-jose.v2")) -; (home-page "https://gopkg.in/square/go-jose.v2") -; (synopsis "Go JOSE") -; (description -; "Package jose aims to provide an implementation of the Javascript Object Signing -;and Encryption set of standards. It implements encryption and signing based on -;the JSON Web Encryption and JSON Web Signature standards, with optional JSON -;Web Token support available in a sub-package. The library supports both the -;compact and full serialization formats, and has optional support for multiple -;recipients. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-containers-ocicrypt-1.0.1 -; (package -; (name "go-github-com-containers-ocicrypt") -; (version "1.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containers/ocicrypt") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0q27vzgdsimypkpi7iv0rl1xz571554adphyl0j8b5qa8wrf0n7v")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containers/ocicrypt")) -; (propagated-inputs -; `(("go-gotest-tools-2.2.0+incompatible" -; ,go-gotest-tools-2.2.0+incompatible) -; ("go-gopkg-in-square-go-jose-v2-2.3.1" -; ,go-gopkg-in-square-go-jose-v2-2.3.1) -; ("go-google-golang-org-grpc-1.24.0" ,go-google-golang-org-grpc-1.24.0) -; ("go-golang-org-x-crypto-0.0.0-20190701094942-4def268fd1a4" -; ,go-golang-org-x-crypto-0.0.0-20190701094942-4def268fd1a4) -; ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) -; ("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0) -; ("go-github-com-sirupsen-logrus-1.4.2" -; ,go-github-com-sirupsen-logrus-1.4.2) -; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) -; ("go-github-com-opencontainers-image-spec-1.0.1" -; ,go-github-com-opencontainers-image-spec-1.0.1) -; ("go-github-com-opencontainers-go-digest-1.0.0-rc1" -; ,go-github-com-opencontainers-go-digest-1.0.0-rc1) -; ("go-github-com-fullsailor-pkcs7-0.0.0-20190404230743-d7302db945fa" -; ,go-github-com-fullsailor-pkcs7-0.0.0-20190404230743-d7302db945fa) -; ("go-github-com-containerd-containerd-1.2.10" -; ,go-github-com-containerd-containerd-1.2.10))) -; (home-page "https://github.com/containers/ocicrypt") -; (synopsis "OCIcrypt Library") -; (description -; "The @code{ocicrypt} library is the OCI image spec implementation of container image encryption. More details of the spec can be seen in the @url{https://github.com/opencontainers/image-spec/pull/775,OCI repository}. The purpose of this library is to encode spec structures and consts in code, as well as provide a consistent implementation of image encryption across container runtimes and build tools.") -; (license license:asl2.0))) -; -;(define-public go-github-com-coreos-go-systemd-0.0.0-20161114122254-48702e0da86b -; (package -; (name "go-github-com-coreos-go-systemd") -; (version "0.0.0-20161114122254-48702e0da86b") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/coreos/go-systemd") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "04zl9ns4j3lpjykf32rv5cb6sj9x5ci8yi90vab1bl27vnqjgdkh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/coreos/go-systemd")) -; (home-page "https://github.com/coreos/go-systemd") -; (synopsis "go-systemd") -; (description "Go bindings to systemd. The project has several packages:") -; (license license:asl2.0))) -; -;(define-public go-github-com-docker-distribution-2.7.1-0.20190205005809-0d3efadf0154+incompatible -; (package -; (name "go-github-com-docker-distribution") -; (version "2.7.1-0.20190205005809-0d3efadf0154+incompatible") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/distribution/distribution") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1wayhmcxr6l281fqkbw1gh0ymhxlznf4jj1rcldhwrc64l2zjh8l")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/docker/distribution")) -; (home-page "https://github.com/docker/distribution") -; (synopsis "Distribution") -; (description -; "Package distribution will define the interfaces for the components of -;docker distribution. The goal is to allow users to reliably package, ship -;and store content related to docker images. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-docker-go-events-0.0.0-20170721190031-9461782956ad -; (package -; (name "go-github-com-docker-go-events") -; (version "0.0.0-20170721190031-9461782956ad") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/docker/go-events") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0vn0kd0w253jwdk86gv1h6s8p6bzxiyif74xdzlb39zr6fdrr145")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/docker/go-events")) -; (home-page "https://github.com/docker/go-events") -; (synopsis "Docker Events Package") -; (description -; "The Docker @code{events} package implements a composable event distribution package -;for Go.") -; (license license:asl2.0))) -; -;(define-public go-github-com-godbus-dbus-0.0.0-20151105175453-c7fdd8b5cd55 -; (package -; (name "go-github-com-godbus-dbus") -; (version "0.0.0-20151105175453-c7fdd8b5cd55") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/godbus/dbus") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "09zazkiny2im24xaiac5kbyhhnbqdbhwi9z9n7fj6rhpg8msiq9n")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/godbus/dbus")) -; (home-page "https://github.com/godbus/dbus") -; (synopsis "dbus") -; (description -; "Package dbus implements bindings to the D-Bus message bus system. -;") -; (license license:bsd-2))) -; -;(define-public go-github-com-gogo-googleapis-1.2.0 -; (package -; (name "go-github-com-gogo-googleapis") -; (version "1.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/gogo/googleapis") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1a82n0xp0v8lgjxzl3aa595r0rmy7afgyn2l3kv6z9kzw339i0jp")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/gogo/googleapis")) -; (propagated-inputs -; `(("go-github-com-gogo-protobuf-1.2.1" -; ,go-github-com-gogo-protobuf-1.2.1))) -; (home-page "https://github.com/gogo/googleapis") -; (synopsis "Google APIs generated by gogoprotobuf") -; (description -; "The @url{https://github.com/gogo/grpc-example,grpc-example} includes an example usage of this repository.") -; (license license:asl2.0))) -; -;(define-public go-github-com-imdario-mergo-0.3.8 -; (package -; (name "go-github-com-imdario-mergo") -; (version "0.3.8") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/imdario/mergo") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "15xwyrnwng11ib0fxi7clwick2r0njwn0gs3va2g5m1ad418ry57")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/imdario/mergo")) -; (home-page "https://github.com/imdario/mergo") -; (synopsis "Mergo") -; (description -; "This package provides a helper to merge structs and maps in Golang. Useful for configuration default values, avoiding messy if-statements. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-opencontainers-go-digest-1.0.0-rc1.0.20180430190053-c9281466c8b2 -; (package -; (name "go-github-com-opencontainers-go-digest") -; (version "1.0.0-rc1.0.20180430190053-c9281466c8b2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/go-digest") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1djdazssy27xn91pjhx3dgb0f11bnlzzbwkh7f8zwnpz011anasi")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/go-digest")) -; (home-page "https://github.com/opencontainers/go-digest") -; (synopsis "go-digest") -; (description -; "Package digest provides a generalized type to opaquely represent message -;digests and their operations within the registry. The Digest type is -;designed to serve as a flexible identifier in a content-addressable system. -;More importantly, it provides tools and wrappers to work with -;hash.Hash-based digests with little effort. -;") -; (license (list license:asl2.0 license:cc-by-sa4.0)))) -; -;(define-public go-github-com-opencontainers-runc-1.0.0-rc8.0.20190926000215-3e425f80a8c9 -; (package -; (name "go-github-com-opencontainers-runc") -; (version "1.0.0-rc8.0.20190926000215-3e425f80a8c9") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/runc") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "18psc830b2rkwml1x6vxngam5b5wi3pj14mw817rshpzy87prspj")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/runc")) -; (home-page "https://github.com/opencontainers/runc") -; (synopsis "runc") -; (description -; "@code{runc} is a CLI tool for spawning and running containers according to the OCI specification.") -; (license license:asl2.0))) -; -;(define-public go-github-com-opencontainers-runtime-spec-1.0.2-0.20190207185410-29686dbc5559 -; (package -; (name "go-github-com-opencontainers-runtime-spec") -; (version "1.0.2-0.20190207185410-29686dbc5559") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/runtime-spec") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0i8q3520jk4yl9rsxs8mn5vsi9i0gd3drysbhciaqwm5l8c30h65")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) -; (home-page "https://github.com/opencontainers/runtime-spec") -; (synopsis "Open Container Initiative Runtime Specification") -; (description -; "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") -; (license license:asl2.0))) -; -;(define-public go-github-com-prometheus-procfs-0.0.8 -; (package -; (name "go-github-com-prometheus-procfs") -; (version "0.0.8") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/procfs") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "076wblhz8fjdc73fmz1lg0hafbwg1xv8hszm78lbg9anjpfgacvq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/procfs")) -; (propagated-inputs -; `(("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" -; ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) -; ("go-github-com-google-go-cmp-0.3.1" -; ,go-github-com-google-go-cmp-0.3.1))) -; (home-page "https://github.com/prometheus/procfs") -; (synopsis "procfs") -; (description -; "Package procfs provides functions to retrieve system, kernel and process -;metrics from the pseudo-filesystem proc. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-net-0.0.0-20190522155817-f3200d17e092 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20190522155817-f3200d17e092") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1mskh7p80dd8j1ffy16917d3cyy7lfh1gb56n4rq9g1bwckz4lwy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190812073006-9eafafc0a87e -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190812073006-9eafafc0a87e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0g5wcpiafz47066993mgz77gka9qzww6w6crxpnyir0459j7z07r")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-grpc-1.24.0 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.24.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0h8mwv74vzcfb7p4ai247x094skxca71vjp4wpj2wzmri0x9p4v6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" -; ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) -; ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" -; ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) -; ("go-google-golang-org-appengine-1.1.0" -; ,go-google-golang-org-appengine-1.1.0) -; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" -; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-github-com-google-go-cmp-0.2.0" -; ,go-github-com-google-go-cmp-0.2.0) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2) -; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-client9-misspell-0.3.4" -; ,go-github-com-client9-misspell-0.3.4) -; ("go-github-com-burntsushi-toml-0.3.1" -; ,go-github-com-burntsushi-toml-0.3.1) -; ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-imgcrypt-1.0.1 -; (package -; (name "go-github-com-containerd-imgcrypt") -; (version "1.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/imgcrypt") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0y0gbnp8imckw6rv3sjf3sycp8rc9lyhv0pp0x3q3yksvqmbqh5v")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/imgcrypt")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.24.0" ,go-google-golang-org-grpc-1.24.0) -; ("go-golang-org-x-sys-0.0.0-20190812073006-9eafafc0a87e" -; ,go-golang-org-x-sys-0.0.0-20190812073006-9eafafc0a87e) -; ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" -; ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) -; ("go-golang-org-x-net-0.0.0-20190522155817-f3200d17e092" -; ,go-golang-org-x-net-0.0.0-20190522155817-f3200d17e092) -; ("go-go-etcd-io-bbolt-1.3.3" ,go-go-etcd-io-bbolt-1.3.3) -; ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) -; ("go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2" -; ,go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2) -; ("go-github-com-sirupsen-logrus-1.4.2" -; ,go-github-com-sirupsen-logrus-1.4.2) -; ("go-github-com-prometheus-procfs-0.0.8" -; ,go-github-com-prometheus-procfs-0.0.8) -; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) -; ("go-github-com-opencontainers-runtime-spec-1.0.2-0.20190207185410-29686dbc5559" -; ,go-github-com-opencontainers-runtime-spec-1.0.2-0.20190207185410-29686dbc5559) -; ("go-github-com-opencontainers-runc-1.0.0-rc8.0.20190926000215-3e425f80a8c9" -; ,go-github-com-opencontainers-runc-1.0.0-rc8.0.20190926000215-3e425f80a8c9) -; ("go-github-com-opencontainers-image-spec-1.0.1" -; ,go-github-com-opencontainers-image-spec-1.0.1) -; ("go-github-com-opencontainers-go-digest-1.0.0-rc1.0.20180430190053-c9281466c8b2" -; ,go-github-com-opencontainers-go-digest-1.0.0-rc1.0.20180430190053-c9281466c8b2) -; ("go-github-com-imdario-mergo-0.3.8" -; ,go-github-com-imdario-mergo-0.3.8) -; ("go-github-com-gogo-protobuf-1.2.1" -; ,go-github-com-gogo-protobuf-1.2.1) -; ("go-github-com-gogo-googleapis-1.2.0" -; ,go-github-com-gogo-googleapis-1.2.0) -; ("go-github-com-godbus-dbus-0.0.0-20151105175453-c7fdd8b5cd55" -; ,go-github-com-godbus-dbus-0.0.0-20151105175453-c7fdd8b5cd55) -; ("go-github-com-docker-go-units-0.4.0" -; ,go-github-com-docker-go-units-0.4.0) -; ("go-github-com-docker-go-events-0.0.0-20170721190031-9461782956ad" -; ,go-github-com-docker-go-events-0.0.0-20170721190031-9461782956ad) -; ("go-github-com-docker-distribution-2.7.1-0.20190205005809-0d3efadf0154+incompatible" -; ,go-github-com-docker-distribution-2.7.1-0.20190205005809-0d3efadf0154+incompatible) -; ("go-github-com-coreos-go-systemd-0.0.0-20161114122254-48702e0da86b" -; ,go-github-com-coreos-go-systemd-0.0.0-20161114122254-48702e0da86b) -; ("go-github-com-containers-ocicrypt-1.0.1" -; ,go-github-com-containers-ocicrypt-1.0.1) -; ("go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd" -; ,go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd) -; ("go-github-com-containerd-ttrpc-0.0.0-20190828172938-92c8520ef9f8" -; ,go-github-com-containerd-ttrpc-0.0.0-20190828172938-92c8520ef9f8) -; ("go-github-com-containerd-go-runc-0.0.0-20190911050354-e029b79d8cda" -; ,go-github-com-containerd-go-runc-0.0.0-20190911050354-e029b79d8cda) -; ("go-github-com-containerd-fifo-0.0.0-20180307165137-3d5202aec260" -; ,go-github-com-containerd-fifo-0.0.0-20180307165137-3d5202aec260) -; ("go-github-com-containerd-continuity-0.0.0-20190815185530-f2a389ac0a02" -; ,go-github-com-containerd-continuity-0.0.0-20190815185530-f2a389ac0a02) -; ("go-github-com-containerd-containerd-1.3.0" -; ,go-github-com-containerd-containerd-1.3.0) -; ("go-github-com-containerd-console-0.0.0-20181022165439-0650fd9eeb50" -; ,go-github-com-containerd-console-0.0.0-20181022165439-0650fd9eeb50) -; ("go-github-com-containerd-cgroups-0.0.0-20190717030353-c4b9ac5c7601" -; ,go-github-com-containerd-cgroups-0.0.0-20190717030353-c4b9ac5c7601) -; ("go-github-com-microsoft-hcsshim-0.8.7-0.20190325164909-8abdbb8205e4" -; ,go-github-com-microsoft-hcsshim-0.8.7-0.20190325164909-8abdbb8205e4) -; ("go-github-com-microsoft-go-winio-0.4.14" -; ,go-github-com-microsoft-go-winio-0.4.14))) -; (home-page "https://github.com/containerd/imgcrypt") -; (synopsis "imgcrypt image encryption library and command line tool") -; (description -; "Project @code{imgcrypt} is a non-core subproject of containerd.") -; (license license:asl2.0))) -; -;(define-public go-github-com-blang-semver-3.1.0+incompatible -; (package -; (name "go-github-com-blang-semver") -; (version "3.1.0+incompatible") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/blang/semver") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1s80qlij6j6wrh0fhm0l11hbf3qjra67nca5bl7izyfjj4621fcd")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/blang/semver")) -; (home-page "https://github.com/blang/semver") -; (synopsis "semver for golang") -; (description -; "semver is a @url{http://semver.org/,Semantic Versioning} library written in golang. It fully covers spec version @code{2.0.0}.") -; (license license:expat))) -; -;(define-public go-github-com-containerd-containerd-1.3.0-beta.2.0.20190828155532-0293cbd26c69 -; (package -; (name "go-github-com-containerd-containerd") -; (version "1.3.0-beta.2.0.20190828155532-0293cbd26c69") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/containerd") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1jhb4a7fczf817d9dwj0a02wfscv46hkymrqh1dcsgpdsp80igkw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/containerd")) -; (home-page "https://github.com/containerd/containerd") -; (synopsis "Now Recruiting") -; (description -; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") -; (license license:asl2.0))) -; -;(define-public go-github-com-hashicorp-errwrap-0.0.0-20141028054710-7554cd9344ce -; (package -; (name "go-github-com-hashicorp-errwrap") -; (version "0.0.0-20141028054710-7554cd9344ce") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/errwrap") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0kmv0p605di6jc8i1778qzass18m0mv9ks9vxxrfsiwcp4la82jf")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hashicorp/errwrap")) -; (home-page "https://github.com/hashicorp/errwrap") -; (synopsis "errwrap") -; (description -; "Package errwrap implements methods to formalize error wrapping in Go. -;") -; (license license:mpl2.0))) -; -;(define-public go-github-com-hashicorp-go-multierror-0.0.0-20161216184304-ed905158d874 -; (package -; (name "go-github-com-hashicorp-go-multierror") -; (version "0.0.0-20161216184304-ed905158d874") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/go-multierror") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1bldhx9dmx9q4gjsag3g1xswq1jsf394rs69fdbmgnkj75j3sp70")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hashicorp/go-multierror")) -; (home-page "https://github.com/hashicorp/go-multierror") -; (synopsis "go-multierror") -; (description -; "@code{go-multierror} is a package for Go that provides a mechanism for -;representing a list of @code{error} values as a single @code{error}.") -; (license license:mpl2.0))) -; -;(define-public go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39 -; (package -; (name "go-github-com-opencontainers-runtime-tools") -; (version "0.0.0-20181011054405-1d69bd0f9c39") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/runtime-tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1wgisl2v8i1hvy3bf8f16v7rarx2ynyasb0jx4kffp5n5hz2hfcl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/runtime-tools")) -; (home-page "https://github.com/opencontainers/runtime-tools") -; (synopsis "oci-runtime-tool") -; (description -; "oci-runtime-tool is a collection of tools for working with the @url{https://github.com/opencontainers/runtime-spec,OCI runtime specification}. -;To build from source code, runtime-tools requires Go 1.10.x or above.") -; (license license:asl2.0))) -; -;(define-public go-github-com-prometheus-procfs-0.0.5 -; (package -; (name "go-github-com-prometheus-procfs") -; (version "0.0.5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/procfs") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1nqn8ip9f4f6kqrvand4lxhcxrkk19dwf8s3nh336i9wr2jfhbwa")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/procfs")) -; (propagated-inputs -; `(("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" -; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) -; ("go-github-com-google-go-cmp-0.3.0" -; ,go-github-com-google-go-cmp-0.3.0))) -; (home-page "https://github.com/prometheus/procfs") -; (synopsis "procfs") -; (description -; "Package procfs provides functions to retrieve system, kernel and process -;metrics from the pseudo-filesystem proc. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-syndtr-gocapability-0.0.0-20170704070218-db04d3cc01c8 -; (package -; (name "go-github-com-syndtr-gocapability") -; (version "0.0.0-20170704070218-db04d3cc01c8") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/syndtr/gocapability") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0jwica5kqax70rd4gbc2yjdz54401s4mr6clyn60gcmnxc0wynds")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/syndtr/gocapability")) -; (home-page "https://github.com/syndtr/gocapability") -; (synopsis #f) -; (description #f) -; (license license:bsd-2))) -; -;(define-public go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f -; (package -; (name "go-github-com-xeipuuv-gojsonpointer") -; (version "0.0.0-20180127040702-4e3ac2762d5f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/xeipuuv/gojsonpointer") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "13y6iq2nzf9z4ls66bfgnnamj2m3438absmbpqry64bpwjfbsi9q")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/xeipuuv/gojsonpointer")) -; (home-page "https://github.com/xeipuuv/gojsonpointer") -; (synopsis "gojsonpointer") -; (description "An implementation of JSON Pointer - Go language") -; (license license:asl2.0))) -; -;(define-public go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415 -; (package -; (name "go-github-com-xeipuuv-gojsonreference") -; (version "0.0.0-20180127040603-bd5ef7bd5415") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/xeipuuv/gojsonreference") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1xby79padc7bmyb8rfbad8wfnfdzpnh51b1n8c0kibch0kwc1db5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/xeipuuv/gojsonreference")) -; (home-page "https://github.com/xeipuuv/gojsonreference") -; (synopsis "gojsonreference") -; (description "An implementation of JSON Reference - Go language") -; (license license:asl2.0))) -; -;(define-public go-github-com-xeipuuv-gojsonschema-0.0.0-20180618132009-1d523034197f -; (package -; (name "go-github-com-xeipuuv-gojsonschema") -; (version "0.0.0-20180618132009-1d523034197f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/xeipuuv/gojsonschema") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1z8c6x8sfh6d1ib2lm2jps7r139qip6h3zik3fxhy1yr1380qbzp")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/xeipuuv/gojsonschema")) -; (home-page "https://github.com/xeipuuv/gojsonschema") -; (synopsis "gojsonschema") -; (description -; "An implementation of JSON Schema for the Go programming language. Supports draft-04, draft-06 and draft-07.") -; (license license:asl2.0))) -; -;(define-public go-k8s-io-kubernetes-1.13.0 -; (package -; (name "go-k8s-io-kubernetes") -; (version "1.13.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes/kubernetes") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "12cvw8b7l319p8nc2imc2wck7zz7vzrwcjyxq5djqj7l5rbcwmzs")))) -; (build-system go-build-system) -; (arguments '(#:import-path "k8s.io/kubernetes")) -; (home-page "https://k8s.io/kubernetes") -; (synopsis "Kubernetes (K8s)") -; (description -; "Kubernetes, also known as K8s, is an open source system for managing @url{https://kubernetes.io/docs/concepts/overview/what-is-kubernetes/,containerized applications} -;across multiple hosts. It provides basic mechanisms for deployment, maintenance, -;and scaling of applications.") -; (license license:asl2.0))) -; -;(define-public go-github-com-microsoft-hcsshim-0.8.7 -; (package -; (name "go-github-com-microsoft-hcsshim") -; (version "0.8.7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/microsoft/hcsshim") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1c6ix202ll48n7x00xxb7gzgm3srm9zwwbx2503l6vz3sqclh9xm")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/Microsoft/hcsshim")) -; (propagated-inputs -; `(("go-k8s-io-kubernetes-1.13.0" ,go-k8s-io-kubernetes-1.13.0) -; ("go-gotest-tools-2.2.0+incompatible" -; ,go-gotest-tools-2.2.0+incompatible) -; ("go-google-golang-org-grpc-1.20.1" ,go-google-golang-org-grpc-1.20.1) -; ("go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3" -; ,go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3) -; ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" -; ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) -; ("go-go-opencensus-io-0.22.0" ,go-go-opencensus-io-0.22.0) -; ("go-github-com-xeipuuv-gojsonschema-0.0.0-20180618132009-1d523034197f" -; ,go-github-com-xeipuuv-gojsonschema-0.0.0-20180618132009-1d523034197f) -; ("go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415" -; ,go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415) -; ("go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f" -; ,go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f) -; ("go-github-com-urfave-cli-0.0.0-20171014202726-7bc6a0acffa5" -; ,go-github-com-urfave-cli-0.0.0-20171014202726-7bc6a0acffa5) -; ("go-github-com-syndtr-gocapability-0.0.0-20170704070218-db04d3cc01c8" -; ,go-github-com-syndtr-gocapability-0.0.0-20170704070218-db04d3cc01c8) -; ("go-github-com-sirupsen-logrus-1.4.1" -; ,go-github-com-sirupsen-logrus-1.4.1) -; ("go-github-com-prometheus-procfs-0.0.5" -; ,go-github-com-prometheus-procfs-0.0.5) -; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) -; ("go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39" -; ,go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39) -; ("go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700" -; ,go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700) -; ("go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f" -; ,go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f) -; ("go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2" -; ,go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2) -; ("go-github-com-hashicorp-go-multierror-0.0.0-20161216184304-ed905158d874" -; ,go-github-com-hashicorp-go-multierror-0.0.0-20161216184304-ed905158d874) -; ("go-github-com-hashicorp-errwrap-0.0.0-20141028054710-7554cd9344ce" -; ,go-github-com-hashicorp-errwrap-0.0.0-20141028054710-7554cd9344ce) -; ("go-github-com-gogo-protobuf-1.2.1" -; ,go-github-com-gogo-protobuf-1.2.1) -; ("go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd" -; ,go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd) -; ("go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de" -; ,go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de) -; ("go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3" -; ,go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3) -; ("go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448" -; ,go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448) -; ("go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc" -; ,go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc) -; ("go-github-com-containerd-containerd-1.3.0-beta.2.0.20190828155532-0293cbd26c69" -; ,go-github-com-containerd-containerd-1.3.0-beta.2.0.20190828155532-0293cbd26c69) -; ("go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1" -; ,go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1) -; ("go-github-com-containerd-cgroups-0.0.0-20190919134610-bf292b21730f" -; ,go-github-com-containerd-cgroups-0.0.0-20190919134610-bf292b21730f) -; ("go-github-com-blang-semver-3.1.0+incompatible" -; ,go-github-com-blang-semver-3.1.0+incompatible) -; ("go-github-com-microsoft-go-winio-0.4.15-0.20190919025122-fc70bd9a86b5" -; ,go-github-com-microsoft-go-winio-0.4.15-0.20190919025122-fc70bd9a86b5))) -; (home-page "https://github.com/Microsoft/hcsshim") -; (synopsis "hcsshim") -; (description -; "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") -; (license license:expat))) -; -;(define-public go-github-com-containerd-containerd-1.3.1-0.20191213020239-082f7e3aed57 -; (package -; (name "go-github-com-containerd-containerd") -; (version "1.3.1-0.20191213020239-082f7e3aed57") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/containerd") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1piaha1adhzhj150l7zhskn5fgl4r2cyvwhrrm8bbm3vnvhmgw7v")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/containerd")) -; (home-page "https://github.com/containerd/containerd") -; (synopsis "Now Recruiting") -; (description -; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-continuity-0.0.0-20191127005431-f65d91d395eb -; (package -; (name "go-github-com-containerd-continuity") -; (version "0.0.0-20191127005431-f65d91d395eb") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/continuity") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "15yh5idl3if8a982gsnq9q72021a7jcs9bdcrqaxbl4dwdqcszki")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/continuity")) -; (home-page "https://github.com/containerd/continuity") -; (synopsis "continuity") -; (description -; "This package provides a transport-agnostic, filesystem metadata manifest system") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190522044717-8097e1b27ff5 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190522044717-8097e1b27ff5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1rgflfvh365x5lwdyqdd9qk8hh3ycr88a2488bgqgvfhp5ri5p6x")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20190522204451-c2c4e71fbf69 -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20190522204451-c2c4e71fbf69") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1y44pmyy92pg822fhw80pnciifx1ah0g73i2l0ixickd24wyznnm")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" -; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) -; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) -; ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" -; ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) -; ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" -; ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) -; ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" -; ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) -; ("go-github-com-golang-protobuf-1.3.1" -; ,go-github-com-golang-protobuf-1.3.1))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-grpc-1.21.0 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.21.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0zxjlxnvjqfn6zfx7gbmqhadx0j788vxfn95g1ngbmjkgppzsnfp")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" -; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) -; ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" -; ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) -; ("go-google-golang-org-appengine-1.1.0" -; ,go-google-golang-org-appengine-1.1.0) -; ("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" -; ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" -; ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-github-com-google-go-cmp-0.2.0" -; ,go-github-com-google-go-cmp-0.2.0) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0) -; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-client9-misspell-0.3.4" -; ,go-github-com-client9-misspell-0.3.4) -; ("go-github-com-burntsushi-toml-0.3.1" -; ,go-github-com-burntsushi-toml-0.3.1) -; ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-ttrpc-0.0.0-20191028202541-4f1b8fe65a5c -; (package -; (name "go-github-com-containerd-ttrpc") -; (version "0.0.0-20191028202541-4f1b8fe65a5c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/ttrpc") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "19fhm39jagk2sfgi9g5zdqx4rynziwxhaap03x4mdj8kczlz21x8")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/ttrpc")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.21.0" ,go-google-golang-org-grpc-1.21.0) -; ("go-google-golang-org-genproto-0.0.0-20190522204451-c2c4e71fbf69" -; ,go-google-golang-org-genproto-0.0.0-20190522204451-c2c4e71fbf69) -; ("go-golang-org-x-sys-0.0.0-20190522044717-8097e1b27ff5" -; ,go-golang-org-x-sys-0.0.0-20190522044717-8097e1b27ff5) -; ("go-github-com-sirupsen-logrus-1.4.2" -; ,go-github-com-sirupsen-logrus-1.4.2) -; ("go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1" -; ,go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1) -; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) -; ("go-github-com-gogo-protobuf-1.2.1" -; ,go-github-com-gogo-protobuf-1.2.1))) -; (home-page "https://github.com/containerd/ttrpc") -; (synopsis "ttrpc") -; (description "GRPC for low-memory environments.") -; (license license:asl2.0))) -; -;(define-public go-github-com-gogo-protobuf-1.3.0 -; (package -; (name "go-github-com-gogo-protobuf") -; (version "1.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/gogo/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0slfyrmbpdcppf0z3waar90bpszdhi2gv705ys1b0zx5x6ax8f1a")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/gogo/protobuf")) -; (propagated-inputs -; `(("go-github-com-kisielk-gotool-1.0.0" -; ,go-github-com-kisielk-gotool-1.0.0) -; ("go-github-com-kisielk-errcheck-1.2.0" -; ,go-github-com-kisielk-errcheck-1.2.0))) -; (home-page "https://github.com/gogo/protobuf") -; (synopsis "Protocol Buffers for Go with Gadgets") -; (description -; "gogoprotobuf is a fork of @url{https://github.com/golang/protobuf,golang/protobuf} with extra code generation features.") -; (license license:bsd-3))) -; -;(define-public go-github-com-containerd-typeurl-0.0.0-20190911142611-5eb25027c9fd -; (package -; (name "go-github-com-containerd-typeurl") -; (version "0.0.0-20190911142611-5eb25027c9fd") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/typeurl") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1fyc2962b9sqgqycnlkxls6n0d701nszl84bayxrdv3r1491jn9v")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/typeurl")) -; (propagated-inputs -; `(("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) -; ("go-github-com-gogo-protobuf-1.3.0" -; ,go-github-com-gogo-protobuf-1.3.0))) -; (home-page "https://github.com/containerd/typeurl") -; (synopsis "typeurl") -; (description -; "This package provides a Go package for managing the registration, marshaling, and unmarshaling of encoded types.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-zfs-0.0.0-20200918131355-0a33824f23a2 -; (package -; (name "go-github-com-containerd-zfs") -; (version "0.0.0-20200918131355-0a33824f23a2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/zfs") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "112bj6mxc3r2ncybblf3w1fgqa6w0070f6a8vlqcml1g00ljhsz6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/zfs")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) -; ("go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449" -; ,go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449) -; ("go-go-etcd-io-bbolt-1.3.3" ,go-go-etcd-io-bbolt-1.3.3) -; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) -; ("go-github-com-opencontainers-runc-1.0.0-rc9" -; ,go-github-com-opencontainers-runc-1.0.0-rc9) -; ("go-github-com-opencontainers-image-spec-1.0.1" -; ,go-github-com-opencontainers-image-spec-1.0.1) -; ("go-github-com-opencontainers-go-digest-1.0.0-rc1" -; ,go-github-com-opencontainers-go-digest-1.0.0-rc1) -; ("go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible" -; ,go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible) -; ("go-github-com-google-uuid-1.1.1" ,go-github-com-google-uuid-1.1.1) -; ("go-github-com-google-go-cmp-0.3.1" -; ,go-github-com-google-go-cmp-0.3.1) -; ("go-github-com-gogo-protobuf-1.3.1" -; ,go-github-com-gogo-protobuf-1.3.1) -; ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" -; ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) -; ("go-github-com-containerd-typeurl-0.0.0-20190911142611-5eb25027c9fd" -; ,go-github-com-containerd-typeurl-0.0.0-20190911142611-5eb25027c9fd) -; ("go-github-com-containerd-ttrpc-0.0.0-20191028202541-4f1b8fe65a5c" -; ,go-github-com-containerd-ttrpc-0.0.0-20191028202541-4f1b8fe65a5c) -; ("go-github-com-containerd-continuity-0.0.0-20191127005431-f65d91d395eb" -; ,go-github-com-containerd-continuity-0.0.0-20191127005431-f65d91d395eb) -; ("go-github-com-containerd-containerd-1.3.1-0.20191213020239-082f7e3aed57" -; ,go-github-com-containerd-containerd-1.3.1-0.20191213020239-082f7e3aed57) -; ("go-github-com-microsoft-hcsshim-0.8.7" -; ,go-github-com-microsoft-hcsshim-0.8.7))) -; (home-page "https://github.com/containerd/zfs") -; (synopsis "ZFS snapshotter plugin") -; (description "ZFS snapshotter plugin for containerd.") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-sys-0.0.0-20201202213521-69691e467435 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20201202213521-69691e467435") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0lndxdnazszfj1jl87cpz31vd12jrjm1wj0zw1c2p8yg64cfkhna")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-containerd-containerd-1.5.0-beta.1 -; (package -; (name "go-github-com-containerd-containerd") -; (version "1.5.0-beta.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/containerd") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1jki3jwmbfk4mp2qhz4ppd6vgnicalszzv5ffibasa4qj5v19wcd")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/containerd")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) -; ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) -; ("go-github-com-golang-protobuf-1.3.5" -; ,go-github-com-golang-protobuf-1.3.5) -; ("go-github-com-gogo-googleapis-1.3.2" -; ,go-github-com-gogo-googleapis-1.3.2) -; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" -; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) -; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) -; ("go-k8s-io-cri-api-0.20.1" ,go-k8s-io-cri-api-0.20.1) -; ("go-k8s-io-component-base-0.20.1" ,go-k8s-io-component-base-0.20.1) -; ("go-k8s-io-client-go-0.20.1" ,go-k8s-io-client-go-0.20.1) -; ("go-k8s-io-apiserver-0.20.1" ,go-k8s-io-apiserver-0.20.1) -; ("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) -; ("go-k8s-io-api-0.20.1" ,go-k8s-io-api-0.20.1) -; ("go-gotest-tools-v3-3.0.2" ,go-gotest-tools-v3-3.0.2) -; ("go-golang-org-x-sys-0.0.0-20201202213521-69691e467435" -; ,go-golang-org-x-sys-0.0.0-20201202213521-69691e467435) -; ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" -; ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) -; ("go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b" -; ,go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b) -; ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) -; ("go-github-com-tchap-go-patricia-2.2.6+incompatible" -; ,go-github-com-tchap-go-patricia-2.2.6+incompatible) -; ("go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635" -; ,go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-sirupsen-logrus-1.7.0" -; ,go-github-com-sirupsen-logrus-1.7.0) -; ("go-github-com-prometheus-client-golang-1.7.1" -; ,go-github-com-prometheus-client-golang-1.7.1) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-selinux-1.8.0" -; ,go-github-com-opencontainers-selinux-1.8.0) -; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" -; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) -; ("go-github-com-opencontainers-runc-1.0.0-rc93" -; ,go-github-com-opencontainers-runc-1.0.0-rc93) -; ("go-github-com-opencontainers-image-spec-1.0.1" -; ,go-github-com-opencontainers-image-spec-1.0.1) -; ("go-github-com-opencontainers-go-digest-1.0.0" -; ,go-github-com-opencontainers-go-digest-1.0.0) -; ("go-github-com-moby-sys-symlink-0.1.0" -; ,go-github-com-moby-sys-symlink-0.1.0) -; ("go-github-com-moby-sys-mountinfo-0.4.0" -; ,go-github-com-moby-sys-mountinfo-0.4.0) -; ("go-github-com-klauspost-compress-1.11.3" -; ,go-github-com-klauspost-compress-1.11.3) -; ("go-github-com-imdario-mergo-0.3.10" -; ,go-github-com-imdario-mergo-0.3.10) -; ("go-github-com-hashicorp-go-multierror-1.0.0" -; ,go-github-com-hashicorp-go-multierror-1.0.0) -; ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" -; ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) -; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) -; ("go-github-com-google-go-cmp-0.5.2" -; ,go-github-com-google-go-cmp-0.5.2) -; ("go-github-com-gogo-protobuf-1.3.2" -; ,go-github-com-gogo-protobuf-1.3.2) -; ("go-github-com-fsnotify-fsnotify-1.4.9" -; ,go-github-com-fsnotify-fsnotify-1.4.9) -; ("go-github-com-emicklei-go-restful-2.9.5+incompatible" -; ,go-github-com-emicklei-go-restful-2.9.5+incompatible) -; ("go-github-com-docker-go-units-0.4.0" -; ,go-github-com-docker-go-units-0.4.0) -; ("go-github-com-docker-go-metrics-0.0.1" -; ,go-github-com-docker-go-metrics-0.0.1) -; ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" -; ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1) -; ("go-github-com-coreos-go-systemd-v22-22.1.0" -; ,go-github-com-coreos-go-systemd-v22-22.1.0) -; ("go-github-com-containernetworking-plugins-0.8.6" -; ,go-github-com-containernetworking-plugins-0.8.6) -; ("go-github-com-containerd-zfs-0.0.0-20200918131355-0a33824f23a2" -; ,go-github-com-containerd-zfs-0.0.0-20200918131355-0a33824f23a2) -; ("go-github-com-containerd-typeurl-1.0.1" -; ,go-github-com-containerd-typeurl-1.0.1) -; ("go-github-com-containerd-ttrpc-1.0.2" -; ,go-github-com-containerd-ttrpc-1.0.2) -; ("go-github-com-containerd-nri-0.0.0-20201007170849-eb1350a75164" -; ,go-github-com-containerd-nri-0.0.0-20201007170849-eb1350a75164) -; ("go-github-com-containerd-imgcrypt-1.0.1" -; ,go-github-com-containerd-imgcrypt-1.0.1) -; ("go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328" -; ,go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328) -; ("go-github-com-containerd-go-cni-1.0.1" -; ,go-github-com-containerd-go-cni-1.0.1) -; ("go-github-com-containerd-fifo-0.0.0-20201026212402-0724c46b320c" -; ,go-github-com-containerd-fifo-0.0.0-20201026212402-0724c46b320c) -; ("go-github-com-containerd-continuity-0.0.0-20201208142359-180525291bb7" -; ,go-github-com-containerd-continuity-0.0.0-20201208142359-180525291bb7) -; ("go-github-com-containerd-console-1.0.1" -; ,go-github-com-containerd-console-1.0.1) -; ("go-github-com-containerd-cgroups-0.0.0-20200824123100-0b889c03f102" -; ,go-github-com-containerd-cgroups-0.0.0-20200824123100-0b889c03f102) -; ("go-github-com-containerd-btrfs-0.0.0-20201111183144-404b9149801e" -; ,go-github-com-containerd-btrfs-0.0.0-20201111183144-404b9149801e) -; ("go-github-com-containerd-aufs-0.0.0-20200908144142-dab0cbea06f4" -; ,go-github-com-containerd-aufs-0.0.0-20200908144142-dab0cbea06f4) -; ("go-github-com-microsoft-hcsshim-test-0.0.0-20201218223536-d3e5debf77da" -; ,go-github-com-microsoft-hcsshim-test-0.0.0-20201218223536-d3e5debf77da) -; ("go-github-com-microsoft-hcsshim-0.8.14" -; ,go-github-com-microsoft-hcsshim-0.8.14) -; ("go-github-com-microsoft-go-winio-0.4.16" -; ,go-github-com-microsoft-go-winio-0.4.16) -; ("go-github-com-burntsushi-toml-0.3.1" -; ,go-github-com-burntsushi-toml-0.3.1))) -; (home-page "https://github.com/containerd/containerd") -; (synopsis "Now Recruiting") -; (description -; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") -; (license license:asl2.0))) -; -;(define-public go-github-com-miekg-pkcs11-1.0.3 -; (package -; (name "go-github-com-miekg-pkcs11") -; (version "1.0.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/miekg/pkcs11") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0rmmgssb6y28x54si5h63gwbdsjjxf5n9xvm3zqdfsf9l10gx2m6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/miekg/pkcs11")) -; (home-page "https://github.com/miekg/pkcs11") -; (synopsis "PKCS#11") -; (description -; "Package pkcs11 is a wrapper around the PKCS#11 cryptographic library. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-stefanberger-go-pkcs11uri-0.0.0-20201008174630-78d3cae3a980 -; (package -; (name "go-github-com-stefanberger-go-pkcs11uri") -; (version "0.0.0-20201008174630-78d3cae3a980") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stefanberger/go-pkcs11uri") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "09bnd1fn2v5y5ngsxz751a0x9fsqn8idlfrwyymfv9l57wvmrd2l")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stefanberger/go-pkcs11uri")) -; (home-page "https://github.com/stefanberger/go-pkcs11uri") -; (synopsis "go-pkcs11uri") -; (description -; "Welcome to the go-pkcs11uri library. The implementation follows @url{https://tools.ietf.org/html/rfc7512,RFC 7512} and this @url{https://www.rfc-editor.org/errata/rfc7512,errata}.") -; (license license:asl2.0))) -; -;(define-public go-go-mozilla-org-pkcs7-0.0.0-20200128120323-432b2356ecb1 -; (package -; (name "go-go-mozilla-org-pkcs7") -; (version "0.0.0-20200128120323-432b2356ecb1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mozilla-services/pkcs7") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0yncaq6i1x6apykvng92yyqkj5kmzl4c43lmcalr5lq7ks009p40")))) -; (build-system go-build-system) -; (arguments '(#:import-path "go.mozilla.org/pkcs7")) -; (home-page "https://go.mozilla.org/pkcs7") -; (synopsis "pkcs7") -; (description -; "Package pkcs7 implements parsing and generation of some PKCS#7 structures. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20200728195943-123391ffb6de -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20200728195943-123391ffb6de") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1a3wnn8yjvckh3smyqzwd2k2gvl3i8dk68pvcap0wha8hmga1vf3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" -; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) -; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" -; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20200817155316-9781c653f443 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20200817155316-9781c653f443") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1fkwiydhhmn6cxmd9jb4rj2wp06yxmqc3903b7zawsxm9jpslicm")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-gopkg-in-square-go-jose-v2-2.5.1 -; (package -; (name "go-gopkg-in-square-go-jose-v2") -; (version "2.5.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/square/go-jose.v2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0z0hbmb5yyvnjkyiyn259wkbqbjxs2pzx87jz472shn2bgggxa4n")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path -; "gopkg.in/square/go-jose.v2" -; #:unpack-path -; "gopkg.in/square/go-jose.v2")) -; (home-page "https://gopkg.in/square/go-jose.v2") -; (synopsis "Go JOSE") -; (description -; "Package jose aims to provide an implementation of the Javascript Object Signing -;and Encryption set of standards. It implements encryption and signing based on -;the JSON Web Encryption and JSON Web Signature standards, with optional JSON -;Web Token support available in a sub-package. The library supports both the -;compact and full serialization formats, and has optional support for multiple -;recipients. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-containers-ocicrypt-1.1.0 -; (package -; (name "go-github-com-containers-ocicrypt") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containers/ocicrypt") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "13avih8ml00idn6qy96ash3jxkimqxpkz4cy4kgryc8jx303nv6i")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containers/ocicrypt")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.3.0" ,go-gopkg-in-yaml-v2-2.3.0) -; ("go-gopkg-in-square-go-jose-v2-2.5.1" -; ,go-gopkg-in-square-go-jose-v2-2.5.1) -; ("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) -; ("go-golang-org-x-sys-0.0.0-20200817155316-9781c653f443" -; ,go-golang-org-x-sys-0.0.0-20200817155316-9781c653f443) -; ("go-golang-org-x-crypto-0.0.0-20200728195943-123391ffb6de" -; ,go-golang-org-x-crypto-0.0.0-20200728195943-123391ffb6de) -; ("go-go-mozilla-org-pkcs7-0.0.0-20200128120323-432b2356ecb1" -; ,go-go-mozilla-org-pkcs7-0.0.0-20200128120323-432b2356ecb1) -; ("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0) -; ("go-github-com-stefanberger-go-pkcs11uri-0.0.0-20201008174630-78d3cae3a980" -; ,go-github-com-stefanberger-go-pkcs11uri-0.0.0-20201008174630-78d3cae3a980) -; ("go-github-com-sirupsen-logrus-1.7.0" -; ,go-github-com-sirupsen-logrus-1.7.0) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-image-spec-1.0.1" -; ,go-github-com-opencontainers-image-spec-1.0.1) -; ("go-github-com-opencontainers-go-digest-1.0.0" -; ,go-github-com-opencontainers-go-digest-1.0.0) -; ("go-github-com-miekg-pkcs11-1.0.3" ,go-github-com-miekg-pkcs11-1.0.3) -; ("go-github-com-google-go-cmp-0.5.2" -; ,go-github-com-google-go-cmp-0.5.2) -; ("go-github-com-golang-protobuf-1.4.3" -; ,go-github-com-golang-protobuf-1.4.3))) -; (home-page "https://github.com/containers/ocicrypt") -; (synopsis "OCIcrypt Library") -; (description -; "The @code{ocicrypt} library is the OCI image spec implementation of container image encryption. More details of the spec can be seen in the @url{https://github.com/opencontainers/image-spec/pull/775,OCI repository}. The purpose of this library is to encode spec structures and consts in code, as well as provide a consistent implementation of image encryption across container runtimes and build tools.") -; (license license:asl2.0))) -; -;(define-public go-github-com-prometheus-procfs-0.6.0 -; (package -; (name "go-github-com-prometheus-procfs") -; (version "0.6.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/procfs") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0czzw37dq0sfq7rivxmxxw5hy287grqnng6q6hfz6mkqmhqgm1m6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/procfs")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" -; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) -; ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" -; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) -; ("go-github-com-google-go-cmp-0.5.4" -; ,go-github-com-google-go-cmp-0.5.4))) -; (home-page "https://github.com/prometheus/procfs") -; (synopsis "procfs") -; (description -; "Package procfs provides functions to retrieve system, kernel and process -;metrics from the pseudo-filesystem proc. -;") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-grpc-1.33.2 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.33.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "03yz4nlf4kqbnpw48f0mvcb2f5zzy0vjd5i2iw0hrjspd0238fzk")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.25.0" -; ,go-google-golang-org-protobuf-1.25.0) -; ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" -; ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) -; ("go-github-com-google-go-cmp-0.5.0" -; ,go-github-com-google-go-cmp-0.5.0) -; ("go-github-com-golang-protobuf-1.4.1" -; ,go-github-com-golang-protobuf-1.4.1) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-envoyproxy-go-control-plane-0.9.4" -; ,go-github-com-envoyproxy-go-control-plane-0.9.4) -; ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" -; ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-gopkg-in-yaml-v2-2.4.0 -; (package -; (name "go-gopkg-in-yaml-v2") -; (version "2.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/yaml.v2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1pbmrpj7gcws34g8vwna4i2nhm9p6235piww36436xhyaa10cldr")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" -; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) -; (home-page "https://gopkg.in/yaml.v2") -; (synopsis "YAML support for the Go language") -; (description "Package yaml implements YAML support for the Go language. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-imgcrypt-1.0.4-0.20210301171431-0ae5c75f59ba -; (package -; (name "go-github-com-containerd-imgcrypt") -; (version "1.0.4-0.20210301171431-0ae5c75f59ba") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/imgcrypt") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0vkwgcxh3mpsn6wp231c9ad3sx6gmnc9948nn3vvbw8bsmjd4i77")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/imgcrypt")) -; (propagated-inputs -; `(("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) -; ("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) -; ("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) -; ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" -; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) -; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) -; ("go-github-com-sirupsen-logrus-1.7.0" -; ,go-github-com-sirupsen-logrus-1.7.0) -; ("go-github-com-prometheus-procfs-0.6.0" -; ,go-github-com-prometheus-procfs-0.6.0) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" -; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) -; ("go-github-com-opencontainers-image-spec-1.0.1" -; ,go-github-com-opencontainers-image-spec-1.0.1) -; ("go-github-com-opencontainers-go-digest-1.0.0" -; ,go-github-com-opencontainers-go-digest-1.0.0) -; ("go-github-com-imdario-mergo-0.3.11" -; ,go-github-com-imdario-mergo-0.3.11) -; ("go-github-com-gogo-protobuf-1.3.2" -; ,go-github-com-gogo-protobuf-1.3.2) -; ("go-github-com-containers-ocicrypt-1.1.0" -; ,go-github-com-containers-ocicrypt-1.1.0) -; ("go-github-com-containerd-typeurl-1.0.1" -; ,go-github-com-containerd-typeurl-1.0.1) -; ("go-github-com-containerd-containerd-1.5.0-beta.1" -; ,go-github-com-containerd-containerd-1.5.0-beta.1) -; ("go-github-com-containerd-console-1.0.1" -; ,go-github-com-containerd-console-1.0.1) -; ("go-github-com-microsoft-hcsshim-test-0.0.0-20210227013316-43a75bb4edd3" -; ,go-github-com-microsoft-hcsshim-test-0.0.0-20210227013316-43a75bb4edd3) -; ("go-github-com-microsoft-hcsshim-0.8.14" -; ,go-github-com-microsoft-hcsshim-0.8.14) -; ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" -; ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3))) -; (home-page "https://github.com/containerd/imgcrypt") -; (synopsis "imgcrypt image encryption library and command line tool") -; (description -; "Project @code{imgcrypt} is a non-core subproject of containerd.") -; (license license:asl2.0))) -; -;(define-public go-github-com-microsoft-go-winio-0.4.15-0.20190919025122-fc70bd9a86b5 -; (package -; (name "go-github-com-microsoft-go-winio") -; (version "0.4.15-0.20190919025122-fc70bd9a86b5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/microsoft/go-winio") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "015ra2h3qfaq436d0g7akahgz7bikyvljq48m0l2d2f4k3wki86p")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/Microsoft/go-winio")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3" -; ,go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3) -; ("go-github-com-sirupsen-logrus-1.4.1" -; ,go-github-com-sirupsen-logrus-1.4.1) -; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) -; (home-page "https://github.com/Microsoft/go-winio") -; (synopsis "go-winio") -; (description -; "This repository contains utilities for efficiently performing Win32 IO operations in -;Go. Currently, this is focused on accessing named pipes and other file handles, and -;for using named pipes as a net transport.") -; (license license:expat))) -; -;(define-public go-github-com-godbus-dbus-0.0.0-20190422162347-ade71ed3457e -; (package -; (name "go-github-com-godbus-dbus") -; (version "0.0.0-20190422162347-ade71ed3457e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/godbus/dbus") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "12ga9izv32j1zjij1p9f2sdnxjy3v80lw964518dvzirxpvwfszn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/godbus/dbus")) -; (home-page "https://github.com/godbus/dbus") -; (synopsis "dbus") -; (description -; "Package dbus implements bindings to the D-Bus message bus system. -;") -; (license license:bsd-2))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190514135907-3a4b5fb9f71f -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190514135907-3a4b5fb9f71f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "122ry2lw2525mqlnw2zc006y1flvj3yhj8rnpxqdwxp71jc3kqii")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-containerd-cgroups-0.0.0-20190919134610-bf292b21730f -; (package -; (name "go-github-com-containerd-cgroups") -; (version "0.0.0-20190919134610-bf292b21730f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/cgroups") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1vvk1vrwm9spilyl4r1r8626sg0zvnx3s3zmzigzinpkzzvbdqpw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/cgroups")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190514135907-3a4b5fb9f71f" -; ,go-golang-org-x-sys-0.0.0-20190514135907-3a4b5fb9f71f) -; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) -; ("go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700" -; ,go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700) -; ("go-github-com-gogo-protobuf-1.2.1" -; ,go-github-com-gogo-protobuf-1.2.1) -; ("go-github-com-godbus-dbus-0.0.0-20190422162347-ade71ed3457e" -; ,go-github-com-godbus-dbus-0.0.0-20190422162347-ade71ed3457e) -; ("go-github-com-docker-go-units-0.4.0" -; ,go-github-com-docker-go-units-0.4.0) -; ("go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e" -; ,go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e))) -; (home-page "https://github.com/containerd/cgroups") -; (synopsis "cgroups") -; (description -; "Go package for creating, managing, inspecting, and destroying cgroups. -;The resources format for settings on the cgroup uses the OCI runtime-spec found -;@url{https://github.com/opencontainers/runtime-spec,here}.") -; (license license:asl2.0))) -; -;(define-public go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700 -; (package -; (name "go-github-com-opencontainers-runtime-spec") -; (version "0.1.2-0.20190507144316-5b71a03e2700") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/runtime-spec") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1dx0bp4f885vx6l4b5b7h19j6sm0jn9s2qxarfd917f4wp8l0cpl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) -; (home-page "https://github.com/opencontainers/runtime-spec") -; (synopsis "Open Container Initiative Runtime Specification") -; (description -; "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") -; (license license:asl2.0))) -; -;(define-public go-github-com-urfave-cli-0.0.0-20171014202726-7bc6a0acffa5 -; (package -; (name "go-github-com-urfave-cli") -; (version "0.0.0-20171014202726-7bc6a0acffa5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/urfave/cli") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "13li8phkaznh81qxs9vg0r8294ph014rwca4cqf7gxhvyjlaigwp")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/urfave/cli")) -; (home-page "https://github.com/urfave/cli") -; (synopsis "cli") -; (description -; "Package cli provides a minimal framework for creating and organizing command line -;Go applications. cli is designed to be easy to understand and write, the most simple -;cli application can be written as follows: -;") -; (license license:expat))) -; -;(define-public go-github-com-microsoft-hcsshim-0.8.9 -; (package -; (name "go-github-com-microsoft-hcsshim") -; (version "0.8.9") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/microsoft/hcsshim") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1imyqhh51311fdmp81ffasf7z52rbqhblbhx6477d9w20p74866b")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/Microsoft/hcsshim")) -; (propagated-inputs -; `(("go-gotest-tools-2.2.0+incompatible" -; ,go-gotest-tools-2.2.0+incompatible) -; ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) -; ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" -; ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) -; ("go-google-golang-org-grpc-1.23.1" ,go-google-golang-org-grpc-1.23.1) -; ("go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873" -; ,go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873) -; ("go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3" -; ,go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3) -; ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" -; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) -; ("go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9" -; ,go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9) -; ("go-go-opencensus-io-0.22.0" ,go-go-opencensus-io-0.22.0) -; ("go-github-com-urfave-cli-0.0.0-20171014202726-7bc6a0acffa5" -; ,go-github-com-urfave-cli-0.0.0-20171014202726-7bc6a0acffa5) -; ("go-github-com-stretchr-testify-1.4.0" -; ,go-github-com-stretchr-testify-1.4.0) -; ("go-github-com-sirupsen-logrus-1.4.2" -; ,go-github-com-sirupsen-logrus-1.4.2) -; ("go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7" -; ,go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7) -; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) -; ("go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700" -; ,go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700) -; ("go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f" -; ,go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f) -; ("go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2" -; ,go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2) -; ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2) -; ("go-github-com-gogo-protobuf-1.3.1" -; ,go-github-com-gogo-protobuf-1.3.1) -; ("go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd" -; ,go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd) -; ("go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de" -; ,go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de) -; ("go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3" -; ,go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3) -; ("go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448" -; ,go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448) -; ("go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc" -; ,go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc) -; ("go-github-com-containerd-containerd-1.3.2" -; ,go-github-com-containerd-containerd-1.3.2) -; ("go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1" -; ,go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1) -; ("go-github-com-containerd-cgroups-0.0.0-20190919134610-bf292b21730f" -; ,go-github-com-containerd-cgroups-0.0.0-20190919134610-bf292b21730f) -; ("go-github-com-microsoft-go-winio-0.4.15-0.20190919025122-fc70bd9a86b5" -; ,go-github-com-microsoft-go-winio-0.4.15-0.20190919025122-fc70bd9a86b5))) -; (home-page "https://github.com/Microsoft/hcsshim") -; (synopsis "hcsshim") -; (description -; "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") -; (license license:expat))) -; -;(define-public go-github-com-cilium-ebpf-0.0.0-20200702112145-1c8d4c9ef775 -; (package -; (name "go-github-com-cilium-ebpf") -; (version "0.0.0-20200702112145-1c8d4c9ef775") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/cilium/ebpf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1la90b88a1li5hmlqxfx9lgxlyzqb2pd4c2dxmz4s5gg2gz8a5x5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/cilium/ebpf")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9" -; ,go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9))) -; (home-page "https://github.com/cilium/ebpf") -; (synopsis "eBPF") -; (description "Package ebpf is a toolkit for working with eBPF programs. -;") -; (license license:expat))) -; -;(define-public go-github-com-containerd-cgroups-0.0.0-20200710171044-318312a37340 -; (package -; (name "go-github-com-containerd-cgroups") -; (version "0.0.0-20200710171044-318312a37340") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/cgroups") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1kizbm55pmlnly2dggymp84a0d9pn4fh7jf31h6wqm385zrs14zp")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/cgroups")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9" -; ,go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9) -; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) -; ("go-github-com-stretchr-testify-1.2.2" -; ,go-github-com-stretchr-testify-1.2.2) -; ("go-github-com-sirupsen-logrus-1.6.0" -; ,go-github-com-sirupsen-logrus-1.6.0) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-runtime-spec-1.0.2" -; ,go-github-com-opencontainers-runtime-spec-1.0.2) -; ("go-github-com-gogo-protobuf-1.3.1" -; ,go-github-com-gogo-protobuf-1.3.1) -; ("go-github-com-godbus-dbus-v5-5.0.3" -; ,go-github-com-godbus-dbus-v5-5.0.3) -; ("go-github-com-docker-go-units-0.4.0" -; ,go-github-com-docker-go-units-0.4.0) -; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" -; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) -; ("go-github-com-coreos-go-systemd-v22-22.0.0" -; ,go-github-com-coreos-go-systemd-v22-22.0.0) -; ("go-github-com-cilium-ebpf-0.0.0-20200702112145-1c8d4c9ef775" -; ,go-github-com-cilium-ebpf-0.0.0-20200702112145-1c8d4c9ef775))) -; (home-page "https://github.com/containerd/cgroups") -; (synopsis "cgroups") -; (description -; "Go package for creating, managing, inspecting, and destroying cgroups. -;The resources format for settings on the cgroup uses the OCI runtime-spec found -;@url{https://github.com/opencontainers/runtime-spec,here}.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-containerd-1.4.0-beta.2.0.20200729163537-40b22ef07410 -; (package -; (name "go-github-com-containerd-containerd") -; (version "1.4.0-beta.2.0.20200729163537-40b22ef07410") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/containerd") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ky7ny5b0rvkr6a58pdlcm35kc9wls6jvl7cdk8py4a16y1f2lx9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/containerd")) -; (home-page "https://github.com/containerd/containerd") -; (synopsis "Now Recruiting") -; (description -; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") -; (license license:asl2.0))) -; -;(define-public go-github-com-onsi-ginkgo-1.10.1 -; (package -; (name "go-github-com-onsi-ginkgo") -; (version "1.10.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/onsi/ginkgo") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "033a42h1wzmji57p86igg9whvsbp6nvfdsypskw738ys903n3z4d")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/onsi/ginkgo")) -; (home-page "https://github.com/onsi/ginkgo") -; (synopsis "Ginkgo 2.0 Release Candidate is available!") -; (description "Ginkgo is a BDD-style testing framework for Golang -;") -; (license license:expat))) -; -;(define-public go-github-com-opencontainers-go-digest-1.0.0-rc1 -; (package -; (name "go-github-com-opencontainers-go-digest") -; (version "1.0.0-rc1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/go-digest") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "01gc7fpn8ax429024p2fcx3yb18axwz5bjf2hqxlii1jbsgw4bh9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/go-digest")) -; (home-page "https://github.com/opencontainers/go-digest") -; (synopsis "go-digest") -; (description -; "Package digest provides a generalized type to opaquely represent message -;digests and their operations within the registry. The Digest type is -;designed to serve as a flexible identifier in a content-addressable system. -;More importantly, it provides tools and wrappers to work with -;hash.Hash-based digests with little effort. -;") -; (license (list license:asl2.0 license:cc-by-sa4.0)))) -; -;(define-public go-github-com-pkg-errors-0.8.1-0.20171018195549-f15c970de5b7 -; (package -; (name "go-github-com-pkg-errors") -; (version "0.8.1-0.20171018195549-f15c970de5b7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/pkg/errors") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "18jihrffhfsjvz3rkanlhq9xjcdxkqilmflnijc64s7y7lijlbfm")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/pkg/errors")) -; (home-page "https://github.com/pkg/errors") -; (synopsis "errors") -; (description "Package errors provides simple error handling primitives. -;") -; (license license:bsd-2))) -; -;(define-public go-github-com-sirupsen-logrus-1.0.4-0.20170822132746-89742aefa4b2 -; (package -; (name "go-github-com-sirupsen-logrus") -; (version "1.0.4-0.20170822132746-89742aefa4b2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/sirupsen/logrus") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0hk7fabx59msg2y0iik6xvfp80s73ybrwlcshbm9ds91iqbkcxi6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/sirupsen/logrus")) -; (home-page "https://github.com/sirupsen/logrus") -; (synopsis "Logrus") -; (description -; "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20171113213409-9f005a07e0d3 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20171113213409-9f005a07e0d3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1mhmr6ljzl3iafsz4qy8vval7rmr828wh59dlqqqjqx6sqmcs1dv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-github-com-containerd-continuity-0.0.0-20200710164510-efbc4488d8fe -; (package -; (name "go-github-com-containerd-continuity") -; (version "0.0.0-20200710164510-efbc4488d8fe") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/continuity") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0d638nj7z7y8z19zdwbysamqh5m3kiwvnqny7av6bxax9gg6c3h8")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/continuity")) -; (propagated-inputs -; `(("go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2" -; ,go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2) -; ("go-gopkg-in-airbrake-gobrake-v2-2.0.9" -; ,go-gopkg-in-airbrake-gobrake-v2-2.0.9) -; ("go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e" -; ,go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e) -; ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" -; ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) -; ("go-golang-org-x-crypto-0.0.0-20171113213409-9f005a07e0d3" -; ,go-golang-org-x-crypto-0.0.0-20171113213409-9f005a07e0d3) -; ("go-github-com-stretchr-testify-1.4.0" -; ,go-github-com-stretchr-testify-1.4.0) -; ("go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95" -; ,go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95) -; ("go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee" -; ,go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee) -; ("go-github-com-sirupsen-logrus-1.0.4-0.20170822132746-89742aefa4b2" -; ,go-github-com-sirupsen-logrus-1.0.4-0.20170822132746-89742aefa4b2) -; ("go-github-com-pkg-errors-0.8.1-0.20171018195549-f15c970de5b7" -; ,go-github-com-pkg-errors-0.8.1-0.20171018195549-f15c970de5b7) -; ("go-github-com-opencontainers-go-digest-1.0.0-rc1" -; ,go-github-com-opencontainers-go-digest-1.0.0-rc1) -; ("go-github-com-onsi-gomega-1.7.0" ,go-github-com-onsi-gomega-1.7.0) -; ("go-github-com-onsi-ginkgo-1.10.1" ,go-github-com-onsi-ginkgo-1.10.1) -; ("go-github-com-inconshreveable-mousetrap-1.0.0" -; ,go-github-com-inconshreveable-mousetrap-1.0.0) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0) -; ("go-github-com-dustin-go-humanize-0.0.0-20171111073723-bb3d318650d4" -; ,go-github-com-dustin-go-humanize-0.0.0-20171111073723-bb3d318650d4) -; ("go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898" -; ,go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898))) -; (home-page "https://github.com/containerd/continuity") -; (synopsis "continuity") -; (description -; "This package provides a transport-agnostic, filesystem metadata manifest system") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20191210023423-ac6580df4449") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "14gvx65w5lddi20s4wypbbvbg9ni3m8777jhp9nqxhixc61k3dyi")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-containerd-fifo-0.0.0-20200410184934-f15a3290365b -; (package -; (name "go-github-com-containerd-fifo") -; (version "0.0.0-20200410184934-f15a3290365b") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/fifo") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1i3pylxr2a4b9gaifjrhfa21n147vvq2z9iqwzz9id532xv9mr48")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/fifo")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449" -; ,go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449) -; ("go-github-com-stretchr-testify-1.4.0" -; ,go-github-com-stretchr-testify-1.4.0) -; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) -; (home-page "https://github.com/containerd/fifo") -; (synopsis "fifo") -; (description "Go package for handling fifos in a sane way.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-ttrpc-1.0.1 -; (package -; (name "go-github-com-containerd-ttrpc") -; (version "1.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/ttrpc") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "02ilz14f1k9zip7caqfjwvfg2nwa7bs6880pi6fxbri1wy6ar45q")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/ttrpc")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.26.0" ,go-google-golang-org-grpc-1.26.0) -; ("go-google-golang-org-genproto-0.0.0-20200117163144-32f20d992d24" -; ,go-google-golang-org-genproto-0.0.0-20200117163144-32f20d992d24) -; ("go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479" -; ,go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479) -; ("go-github-com-sirupsen-logrus-1.4.2" -; ,go-github-com-sirupsen-logrus-1.4.2) -; ("go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1" -; ,go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.2" -; ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.2) -; ("go-github-com-gogo-protobuf-1.3.1" -; ,go-github-com-gogo-protobuf-1.3.1))) -; (home-page "https://github.com/containerd/ttrpc") -; (synopsis "ttrpc") -; (description "GRPC for low-memory environments.") -; (license license:asl2.0))) -; -;(define-public go-github-com-docker-distribution-2.7.1+incompatible -; (package -; (name "go-github-com-docker-distribution") -; (version "2.7.1+incompatible") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/distribution/distribution") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1nx8b5a68rn81alp8wkkw6qd5v32mgf0fk23mxm60zdf63qk1nzw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/docker/distribution")) -; (home-page "https://github.com/docker/distribution") -; (synopsis "Distribution") -; (description -; "Package distribution will define the interfaces for the components of -;docker distribution. The goal is to allow users to reliably package, ship -;and store content related to docker images. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-gogo-googleapis-1.4.0 -; (package -; (name "go-github-com-gogo-googleapis") -; (version "1.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/gogo/googleapis") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1kka9qmra1klfkjza0s5papqvsi65f2d349dl8k1lvfq487iv9r4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/gogo/googleapis")) -; (propagated-inputs -; `(("go-github-com-gogo-protobuf-1.3.1" -; ,go-github-com-gogo-protobuf-1.3.1))) -; (home-page "https://github.com/gogo/googleapis") -; (synopsis "Google APIs generated by gogoprotobuf") -; (description -; "The @url{https://github.com/gogo/grpc-example,grpc-example} includes an example usage of this repository.") -; (license license:asl2.0))) -; -;(define-public go-github-com-google-go-cmp-0.5.1 -; (package -; (name "go-github-com-google-go-cmp") -; (version "0.5.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/go-cmp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1wjdid59brciv09agxgmqac5k9ywg63nhzb0yi9anmqpl38gps0p")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/go-cmp")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" -; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) -; (home-page "https://github.com/google/go-cmp") -; (synopsis "Package for equality of Go values") -; (description -; "This package is intended to be a more powerful and safer alternative to -;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") -; (license license:bsd-3))) -; -;(define-public go-github-com-imdario-mergo-0.3.10 -; (package -; (name "go-github-com-imdario-mergo") -; (version "0.3.10") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/imdario/mergo") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "09h765p8yby9r8s0a3hv5kl8n2i382mda76wmvk48w1cc1w9s92p")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/imdario/mergo")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.3.0" ,go-gopkg-in-yaml-v2-2.3.0))) -; (home-page "https://github.com/imdario/mergo") -; (synopsis "Mergo") -; (description -; "This package provides a helper to merge structs and maps in Golang. Useful for configuration default values, avoiding messy if-statements. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-opencontainers-runc-0.1.1 -; (package -; (name "go-github-com-opencontainers-runc") -; (version "0.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/runc") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "09fm7f1k4lvx8v3crqb0cli1x2brlz8ka7f7qa8d2sb6ln58h7w7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/runc")) -; (home-page "https://github.com/opencontainers/runc") -; (synopsis "runc") -; (description -; "@code{runc} is a CLI tool for spawning and running containers according to the OCI specification.") -; (license license:asl2.0))) -; -;(define-public go-github-com-willf-bitset-1.1.11-0.20200630133818-d5bec3311243 -; (package -; (name "go-github-com-willf-bitset") -; (version "1.1.11-0.20200630133818-d5bec3311243") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/bits-and-blooms/bitset") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "05nyd0vhp2h9hbqlv2s9l2py6mr8hpz2zyfj09an1q7wd8vph4ja")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/willf/bitset")) -; (home-page "https://github.com/willf/bitset") -; (synopsis "bitset") -; (description -; "Package bitset implements bitsets, a mapping -;between non-negative integers and boolean values. It should be more -;efficient than map[uint] bool. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-opencontainers-selinux-1.6.0 -; (package -; (name "go-github-com-opencontainers-selinux") -; (version "1.6.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/selinux") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ja41zfgrkhk5khixjnxpi1b85xfcxlkhq2q9b7ma6xjfdhg8bq2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/selinux")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777" -; ,go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777) -; ("go-github-com-willf-bitset-1.1.11-0.20200630133818-d5bec3311243" -; ,go-github-com-willf-bitset-1.1.11-0.20200630133818-d5bec3311243) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) -; (home-page "https://github.com/opencontainers/selinux") -; (synopsis "selinux") -; (description "Common SELinux package used across the container ecosystem.") -; (license license:asl2.0))) -; -;(define-public go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2 -; (package -; (name "go-github-com-syndtr-gocapability") -; (version "0.0.0-20180916011248-d98352740cb2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/syndtr/gocapability") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "065y16562ynixxzj7iys4f4spb7knilbj3h833qlhds381j8hn93")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/syndtr/gocapability")) -; (home-page "https://github.com/syndtr/gocapability") -; (synopsis #f) -; (description #f) -; (license license:bsd-2))) -; -;(define-public go-golang-org-x-net-0.0.0-20200707034311-ab3426394381 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20200707034311-ab3426394381") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1wr7rnnqp210yykkypinb8ciszx28aq5a3l3dvsv6swzxxngs8zn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" -; ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) -; ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" -; ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208 -; (package -; (name "go-golang-org-x-sync") -; (version "0.0.0-20200625203802-6e8e738ad208") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sync") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1avk27pszd5l5df6ff7j78wgla46ir1hhy2jwfl9a3c0ys602yx9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sync")) -; (home-page "https://golang.org/x/sync") -; (synopsis "Go Sync") -; (description -; "This repository provides Go concurrency primitives in addition to the -;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") -; (license license:bsd-3))) -; -;(define-public go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f -; (package -; (name "go-github-com-cncf-udpa-go") -; (version "0.0.0-20191209042840-269d4d468f6f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/cncf/udpa") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0i1jiaw2k3hlwwmg4hap81vb4s1p25xp9kdfww37v0fbgjariccs")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path -; "github.com/cncf/udpa/go" -; #:unpack-path -; "github.com/cncf/udpa")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2) -; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" -; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0))) -; (home-page "https://github.com/cncf/udpa") -; (synopsis "Description") -; (description -; "This library has been deprecated in favor of @code{github.com/cncf/xds/go}. All users are recommended to switch their imports.") -; (license license:asl2.0))) -; -;(define-public go-github-com-envoyproxy-go-control-plane-0.9.0 -; (package -; (name "go-github-com-envoyproxy-go-control-plane") -; (version "0.9.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/envoyproxy/go-control-plane") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1dpvi4wnycyj6hnai78fr8aj58b27b1vcwdp3v0id5v22kvgr3xw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.23.0" ,go-google-golang-org-grpc-1.23.0) -; ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" -; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) -; ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" -; ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2) -; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" -; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) -; ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" -; ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) -; (home-page "https://github.com/envoyproxy/go-control-plane") -; (synopsis "control-plane") -; (description -; "This repository contains a Go-based implementation of an API server that -;implements the discovery service APIs defined in -;@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-grpc-1.25.1 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.25.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0a136ij9p11yj1vx892yqy40jkh7n5nfbpdvhgydcj823mx51c6f")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" -; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-github-com-google-go-cmp-0.2.0" -; ,go-github-com-google-go-cmp-0.2.0) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2) -; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" -; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) -; ("go-github-com-envoyproxy-go-control-plane-0.9.0" -; ,go-github-com-envoyproxy-go-control-plane-0.9.0))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-envoyproxy-go-control-plane-0.9.4 -; (package -; (name "go-github-com-envoyproxy-go-control-plane") -; (version "0.9.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/envoyproxy/go-control-plane") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0m0crzx70lp7vz13v20wxb1fcfdnzp7h3mkh3bn6a8mbfz6w5asj")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) -; ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" -; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) -; ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" -; ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) -; ("go-github-com-google-go-cmp-0.2.0" -; ,go-github-com-google-go-cmp-0.2.0) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2) -; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" -; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) -; ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" -; ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f) -; ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" -; ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) -; (home-page "https://github.com/envoyproxy/go-control-plane") -; (synopsis "control-plane") -; (description -; "This repository contains a Go-based implementation of an API server that -;implements the discovery service APIs defined in -;@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-grpc-1.30.0 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.30.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "05pb9xrxd7kpbi8zzby90f87b6sxq65nmpgqx5h3255whmmpzbi9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" -; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.3.3" -; ,go-github-com-golang-protobuf-1.3.3) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-envoyproxy-go-control-plane-0.9.4" -; ,go-github-com-envoyproxy-go-control-plane-0.9.4) -; ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" -; ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-nri-0.0.0-20201007170849-eb1350a75164 -; (package -; (name "go-github-com-containerd-nri") -; (version "0.0.0-20201007170849-eb1350a75164") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/nri") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1yhrxl36fswgxv7ny3p9xi99jsbwyk920gmzkjyfyk6nqs0hqbkg")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/nri")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.30.0" ,go-google-golang-org-grpc-1.30.0) -; ("go-golang-org-x-sys-0.0.0-20200728102440-3e129f6d46b1" -; ,go-golang-org-x-sys-0.0.0-20200728102440-3e129f6d46b1) -; ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" -; ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) -; ("go-golang-org-x-net-0.0.0-20200707034311-ab3426394381" -; ,go-golang-org-x-net-0.0.0-20200707034311-ab3426394381) -; ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) -; ("go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2" -; ,go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-selinux-1.6.0" -; ,go-github-com-opencontainers-selinux-1.6.0) -; ("go-github-com-opencontainers-runc-0.1.1" -; ,go-github-com-opencontainers-runc-0.1.1) -; ("go-github-com-opencontainers-image-spec-1.0.1" -; ,go-github-com-opencontainers-image-spec-1.0.1) -; ("go-github-com-opencontainers-go-digest-1.0.0" -; ,go-github-com-opencontainers-go-digest-1.0.0) -; ("go-github-com-imdario-mergo-0.3.10" -; ,go-github-com-imdario-mergo-0.3.10) -; ("go-github-com-google-uuid-1.1.1" ,go-github-com-google-uuid-1.1.1) -; ("go-github-com-google-go-cmp-0.5.1" -; ,go-github-com-google-go-cmp-0.5.1) -; ("go-github-com-gogo-googleapis-1.4.0" -; ,go-github-com-gogo-googleapis-1.4.0) -; ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" -; ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) -; ("go-github-com-docker-distribution-2.7.1+incompatible" -; ,go-github-com-docker-distribution-2.7.1+incompatible) -; ("go-github-com-containerd-typeurl-1.0.1" -; ,go-github-com-containerd-typeurl-1.0.1) -; ("go-github-com-containerd-ttrpc-1.0.1" -; ,go-github-com-containerd-ttrpc-1.0.1) -; ("go-github-com-containerd-fifo-0.0.0-20200410184934-f15a3290365b" -; ,go-github-com-containerd-fifo-0.0.0-20200410184934-f15a3290365b) -; ("go-github-com-containerd-continuity-0.0.0-20200710164510-efbc4488d8fe" -; ,go-github-com-containerd-continuity-0.0.0-20200710164510-efbc4488d8fe) -; ("go-github-com-containerd-containerd-1.4.0-beta.2.0.20200729163537-40b22ef07410" -; ,go-github-com-containerd-containerd-1.4.0-beta.2.0.20200729163537-40b22ef07410) -; ("go-github-com-containerd-cgroups-0.0.0-20200710171044-318312a37340" -; ,go-github-com-containerd-cgroups-0.0.0-20200710171044-318312a37340) -; ("go-github-com-microsoft-hcsshim-0.8.9" -; ,go-github-com-microsoft-hcsshim-0.8.9))) -; (home-page "https://github.com/containerd/nri") -; (synopsis "nri - Node Resource Interface") -; (description -; "This project is a WIP for a new, CNI like, interface for managing resources on a node for Pods and Containers.") -; (license license:asl2.0))) -; -;(define-public go-github-com-sirupsen-logrus-1.4.1 -; (package -; (name "go-github-com-sirupsen-logrus") -; (version "1.4.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/sirupsen/logrus") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1m7ny9jkb98cxqhsp13xa5hnqh1s9f25x04q6arsala4zswsw33c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/sirupsen/logrus")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33" -; ,go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33) -; ("go-github-com-stretchr-testify-1.2.2" -; ,go-github-com-stretchr-testify-1.2.2) -; ("go-github-com-stretchr-objx-0.1.1" -; ,go-github-com-stretchr-objx-0.1.1) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.1" -; ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.1) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://github.com/sirupsen/logrus") -; (synopsis "Logrus") -; (description -; "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190916202348-b4ddaad3f8a3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "05pa68kqxhpjk71b4cbm8vyzh6527b3ig6war2jr1g4aj3b7f1ak")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-microsoft-go-winio-0.4.16-0.20201130162521-d1ffc52c7331 -; (package -; (name "go-github-com-microsoft-go-winio") -; (version "0.4.16-0.20201130162521-d1ffc52c7331") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/microsoft/go-winio") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0snwbwdjs34x0my9ri77cvrbnahdiyjh2jlkzf12fy48p7fyk7pq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/Microsoft/go-winio")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3" -; ,go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3) -; ("go-github-com-sirupsen-logrus-1.4.1" -; ,go-github-com-sirupsen-logrus-1.4.1) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) -; (home-page "https://github.com/Microsoft/go-winio") -; (synopsis "go-winio") -; (description -; "This repository contains utilities for efficiently performing Win32 IO operations in -;Go. Currently, this is focused on accessing named pipes and other file handles, and -;for using named pipes as a net transport.") -; (license license:expat))) -; -;(define-public go-golang-org-x-sys-0.0.0-20191022100944-742c48ecaeb7 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20191022100944-742c48ecaeb7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1saf59bplvvb753my15ijxcy4a1jwfg53cmkgb6wkln2x4fgnhkp")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-cilium-ebpf-0.0.0-20200110133405-4032b1d8aae3 -; (package -; (name "go-github-com-cilium-ebpf") -; (version "0.0.0-20200110133405-4032b1d8aae3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/cilium/ebpf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "107x63zl8dlw2izn5xw8pnflgq19srpa46bgvjs8q4d61i02q1fr")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/cilium/ebpf")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20191022100944-742c48ecaeb7" -; ,go-golang-org-x-sys-0.0.0-20191022100944-742c48ecaeb7) -; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) -; (home-page "https://github.com/cilium/ebpf") -; (synopsis "eBPF") -; (description "Package ebpf is a toolkit for working with eBPF programs. -;") -; (license license:expat))) -; -;(define-public go-github-com-coreos-go-systemd-v22-22.0.0 -; (package -; (name "go-github-com-coreos-go-systemd-v22") -; (version "22.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/coreos/go-systemd") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0p4sb2fxxm2j1xny2l4fkq4kwj74plvh600gih8nyniqzannhrdx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/coreos/go-systemd/v22")) -; (propagated-inputs -; `(("go-github-com-godbus-dbus-v5-5.0.3" -; ,go-github-com-godbus-dbus-v5-5.0.3))) -; (home-page "https://github.com/coreos/go-systemd") -; (synopsis "go-systemd") -; (description "Go bindings to systemd. The project has several packages:") -; (license license:asl2.0))) -; -;(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0 -; (package -; (name "go-github-com-cpuguy83-go-md2man-v2") -; (version "2.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/cpuguy83/go-md2man") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) -; (propagated-inputs -; `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" -; ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) -; ("go-github-com-russross-blackfriday-v2-2.0.1" -; ,go-github-com-russross-blackfriday-v2-2.0.1) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0))) -; (home-page "https://github.com/cpuguy83/go-md2man") -; (synopsis "go-md2man") -; (description "Converts markdown into roff (man pages).") -; (license license:expat))) -; -;(define-public go-github-com-containerd-cgroups-0.0.0-20200531161412-0dbf7f05ba59 -; (package -; (name "go-github-com-containerd-cgroups") -; (version "0.0.0-20200531161412-0dbf7f05ba59") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/cgroups") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "10abzkjf77s8pv4mpyvy2jbl8wckhk3j7ykgs01sclal21v8p251")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/cgroups")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479" -; ,go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479) -; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) -; ("go-github-com-stretchr-testify-1.2.2" -; ,go-github-com-stretchr-testify-1.2.2) -; ("go-github-com-sirupsen-logrus-1.4.2" -; ,go-github-com-sirupsen-logrus-1.4.2) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-runtime-spec-1.0.2" -; ,go-github-com-opencontainers-runtime-spec-1.0.2) -; ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.2" -; ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.2) -; ("go-github-com-gogo-protobuf-1.3.1" -; ,go-github-com-gogo-protobuf-1.3.1) -; ("go-github-com-godbus-dbus-v5-5.0.3" -; ,go-github-com-godbus-dbus-v5-5.0.3) -; ("go-github-com-docker-go-units-0.4.0" -; ,go-github-com-docker-go-units-0.4.0) -; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" -; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) -; ("go-github-com-coreos-go-systemd-v22-22.0.0" -; ,go-github-com-coreos-go-systemd-v22-22.0.0) -; ("go-github-com-cilium-ebpf-0.0.0-20200110133405-4032b1d8aae3" -; ,go-github-com-cilium-ebpf-0.0.0-20200110133405-4032b1d8aae3))) -; (home-page "https://github.com/containerd/cgroups") -; (synopsis "cgroups") -; (description -; "Go package for creating, managing, inspecting, and destroying cgroups. -;The resources format for settings on the cgroup uses the OCI runtime-spec found -;@url{https://github.com/opencontainers/runtime-spec,here}.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1 -; (package -; (name "go-github-com-containerd-console") -; (version "0.0.0-20180822173158-c12b1e7919c1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/console") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ylrnmdhn9a2f8w8fsdgsvwnz5j0whhyhppjnhqc4lh8h9p9dpi9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/console")) -; (home-page "https://github.com/containerd/console") -; (synopsis "console") -; (description -; "Golang package for dealing with consoles. Light on deps and a simple API.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-containerd-1.3.2 -; (package -; (name "go-github-com-containerd-containerd") -; (version "1.3.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/containerd") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0qz6ss7a6f2r7gl7aar39pr5ry9l7nh7dn3kclr18nwdv01gmrvc")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/containerd")) -; (home-page "https://github.com/containerd/containerd") -; (synopsis "Now Recruiting") -; (description -; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc -; (package -; (name "go-github-com-containerd-continuity") -; (version "0.0.0-20190426062206-aaeac12a7ffc") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/continuity") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "05caqvxxb831xfvqnga692k98cy8xzkllqg1ibra0fb0ljnhbmca")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/continuity")) -; (home-page "https://github.com/containerd/continuity") -; (synopsis "continuity") -; (description -; "This package provides a transport-agnostic, filesystem metadata manifest system") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448 -; (package -; (name "go-github-com-containerd-fifo") -; (version "0.0.0-20190226154929-a9fb20d87448") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/fifo") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0c0sgfnafjnws4jgziczs6wxh0adjdrp6yyd88b7xy0hv13fsnqa")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/fifo")) -; (home-page "https://github.com/containerd/fifo") -; (synopsis "fifo") -; (description "Go package for handling fifos in a sane way.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3 -; (package -; (name "go-github-com-containerd-go-runc") -; (version "0.0.0-20180907222934-5a6d9f37cfa3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/go-runc") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "07qpxcjy64m238igpmj8g9z7qhf06k5xy1jcgpgvf5n912g4k3vd")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/go-runc")) -; (home-page "https://github.com/containerd/go-runc") -; (synopsis "go-runc") -; (description -; "This is a package for consuming the @url{https://github.com/opencontainers/runc,runc} binary in your Go applications. -;It tries to expose all the settings and features of the runc CLI. If there is something missing then add it, its opensource!") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de -; (package -; (name "go-github-com-containerd-ttrpc") -; (version "0.0.0-20190828154514-0e0f228740de") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/ttrpc") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1kzclhmicw2xkiqsg6npx0xzs5jx36mqmyd0gj5dzv88i7p4b8dx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/ttrpc")) -; (home-page "https://github.com/containerd/ttrpc") -; (synopsis "ttrpc") -; (description "GRPC for low-memory environments.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd -; (package -; (name "go-github-com-containerd-typeurl") -; (version "0.0.0-20180627222232-a93fcdb778cd") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/typeurl") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0aqnf5rzc5pldln0czhxlr0fqaf5553ab7wzsq85p90lg1ryqnd6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/typeurl")) -; (home-page "https://github.com/containerd/typeurl") -; (synopsis "typeurl") -; (description -; "This package provides a Go package for managing the registration, marshaling, and unmarshaling of encoded types.") -; (license license:asl2.0))) -; -;(define-public go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2 -; (package -; (name "go-github-com-opencontainers-go-digest") -; (version "0.0.0-20180430190053-c9281466c8b2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/go-digest") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1djdazssy27xn91pjhx3dgb0f11bnlzzbwkh7f8zwnpz011anasi")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/go-digest")) -; (home-page "https://github.com/opencontainers/go-digest") -; (synopsis "go-digest") -; (description -; "Package digest provides a generalized type to opaquely represent message -;digests and their operations within the registry. The Digest type is -;designed to serve as a flexible identifier in a content-addressable system. -;More importantly, it provides tools and wrappers to work with -;hash.Hash-based digests with little effort. -;") -; (license (list license:asl2.0 license:cc-by-sa4.0)))) -; -;(define-public go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f -; (package -; (name "go-github-com-opencontainers-runc") -; (version "0.0.0-20190115041553-12f6a991201f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/runc") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0lr4q440pliilq2njyj5glfpma89r9l1cl687niwkp2pzb32dm45")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/runc")) -; (home-page "https://github.com/opencontainers/runc") -; (synopsis "runc") -; (description -; "@code{runc} is a CLI tool for spawning and running containers according to the OCI specification.") -; (license license:asl2.0))) -; -;(define-public go-github-com-opencontainers-runtime-spec-1.0.2 -; (package -; (name "go-github-com-opencontainers-runtime-spec") -; (version "1.0.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/runtime-spec") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "19w981vcmd5lp2hy0630x6ayb8zz17n2vxqm2py5mg945xflcizg")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) -; (home-page "https://github.com/opencontainers/runtime-spec") -; (synopsis "Open Container Initiative Runtime Specification") -; (description -; "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") -; (license license:asl2.0))) -; -;(define-public go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7 -; (package -; (name "go-github-com-prometheus-procfs") -; (version "0.0.0-20180125133057-cb4147076ac7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/procfs") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0zhlrik0f9q1lj6cisgnxgbz4darbcix52hm5abi24l2ahchf5ca")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/procfs")) -; (home-page "https://github.com/prometheus/procfs") -; (synopsis "procfs") -; (description -; "Package procfs provides functions to retrieve system, kernel and process -;metrics from the pseudo-filesystem proc. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-urfave-cli-1.22.2 -; (package -; (name "go-github-com-urfave-cli") -; (version "1.22.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/urfave/cli") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "10mcnvi5qmn00vpyk6si8gjka7p654wr9hac4zc9w5h3ickhvbdc")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/urfave/cli")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) -; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d" -; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d) -; ("go-github-com-burntsushi-toml-0.3.1" -; ,go-github-com-burntsushi-toml-0.3.1))) -; (home-page "https://github.com/urfave/cli") -; (synopsis "cli") -; (description -; "Package cli provides a minimal framework for creating and organizing command line -;Go applications. cli is designed to be easy to understand and write, the most simple -;cli application can be written as follows: -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-net-0.0.0-20190501004415-9ce7a6920f09 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20190501004415-9ce7a6920f09") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1kbs85jsqbv4v89ii2zam4b8dhmllhsrf46njmi09x0w6s0b9cbk")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-go-opencensus-io-0.22.0 -; (package -; (name "go-go-opencensus-io") -; (version "0.22.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/census-instrumentation/opencensus-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "05jr8gkr2w34i5wwki4zhl5ch0qrgi7cdgag5iy5gpxplhbrvbg9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "go.opencensus.io")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.20.1" ,go-google-golang-org-grpc-1.20.1) -; ("go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb" -; ,go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb) -; ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) -; ("go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd" -; ,go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd) -; ("go-golang-org-x-net-0.0.0-20190501004415-9ce7a6920f09" -; ,go-golang-org-x-net-0.0.0-20190501004415-9ce7a6920f09) -; ("go-github-com-hashicorp-golang-lru-0.5.1" -; ,go-github-com-hashicorp-golang-lru-0.5.1) -; ("go-github-com-google-go-cmp-0.3.0" -; ,go-github-com-google-go-cmp-0.3.0) -; ("go-github-com-golang-protobuf-1.3.1" -; ,go-github-com-golang-protobuf-1.3.1))) -; (home-page "https://go.opencensus.io") -; (synopsis "OpenCensus Libraries for Go") -; (description "Package opencensus contains Go support for OpenCensus. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20191004110552-13f9640d40b9") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ba2767lvklnmfvb9jkwvd4m7z6326gaiz3rgylh795g88hy34g1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873 -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20190502173448-54afdca5d873") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1vm1vggl874jd4wi6qyl7aggc6s6kdsazk4vj0cs2dfcw2xnw8ag")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" -; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) -; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) -; ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" -; ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) -; ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" -; ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) -; ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" -; ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd) -; ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" -; ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) -; ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" -; ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-grpc-1.23.1 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.23.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1d8gjjhrqbiq8pb56lb4x10hb752k7k06wspjvh7v0vpzmf25981")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" -; ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) -; ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" -; ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) -; ("go-google-golang-org-appengine-1.1.0" -; ,go-google-golang-org-appengine-1.1.0) -; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" -; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-github-com-google-go-cmp-0.2.0" -; ,go-github-com-google-go-cmp-0.2.0) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0) -; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-client9-misspell-0.3.4" -; ,go-github-com-client9-misspell-0.3.4) -; ("go-github-com-burntsushi-toml-0.3.1" -; ,go-github-com-burntsushi-toml-0.3.1) -; ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-microsoft-hcsshim-0.8.14 -; (package -; (name "go-github-com-microsoft-hcsshim") -; (version "0.8.14") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/microsoft/hcsshim") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0k57knv8zrf32hp7rpv1km9j772w6752pfvdbpd3l711ism48c84")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/Microsoft/hcsshim")) -; (propagated-inputs -; `(("go-gotest-tools-2.2.0+incompatible" -; ,go-gotest-tools-2.2.0+incompatible) -; ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) -; ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" -; ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) -; ("go-google-golang-org-grpc-1.23.1" ,go-google-golang-org-grpc-1.23.1) -; ("go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873" -; ,go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873) -; ("go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3" -; ,go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3) -; ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" -; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) -; ("go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9" -; ,go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9) -; ("go-go-opencensus-io-0.22.0" ,go-go-opencensus-io-0.22.0) -; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) -; ("go-github-com-stretchr-testify-1.4.0" -; ,go-github-com-stretchr-testify-1.4.0) -; ("go-github-com-sirupsen-logrus-1.4.2" -; ,go-github-com-sirupsen-logrus-1.4.2) -; ("go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7" -; ,go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-runtime-spec-1.0.2" -; ,go-github-com-opencontainers-runtime-spec-1.0.2) -; ("go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f" -; ,go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f) -; ("go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2" -; ,go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2) -; ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2) -; ("go-github-com-gogo-protobuf-1.3.1" -; ,go-github-com-gogo-protobuf-1.3.1) -; ("go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd" -; ,go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd) -; ("go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de" -; ,go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de) -; ("go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3" -; ,go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3) -; ("go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448" -; ,go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448) -; ("go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc" -; ,go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc) -; ("go-github-com-containerd-containerd-1.3.2" -; ,go-github-com-containerd-containerd-1.3.2) -; ("go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1" -; ,go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1) -; ("go-github-com-containerd-cgroups-0.0.0-20200531161412-0dbf7f05ba59" -; ,go-github-com-containerd-cgroups-0.0.0-20200531161412-0dbf7f05ba59) -; ("go-github-com-microsoft-go-winio-0.4.16-0.20201130162521-d1ffc52c7331" -; ,go-github-com-microsoft-go-winio-0.4.16-0.20201130162521-d1ffc52c7331))) -; (home-page "https://github.com/Microsoft/hcsshim") -; (synopsis "hcsshim") -; (description -; "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") -; (license license:expat))) -; -;(define-public go-github-com-containerd-containerd-1.4.3 -; (package -; (name "go-github-com-containerd-containerd") -; (version "1.4.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/containerd") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "09xvhjg5f8h90w1y94kqqnqzhbhd62dcdd9wb9sdqakisjk6zrl0")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/containerd")) -; (home-page "https://github.com/containerd/containerd") -; (synopsis "Now Recruiting") -; (description -; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") -; (license license:asl2.0))) -; -;(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.2 -; (package -; (name "go-github-com-konsorten-go-windows-terminal-sequences") -; (version "1.0.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/konsorten/go-windows-terminal-sequences") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "09mn209ika7ciy87xf2x31dq5fnqw39jidgaljvmqxwk7ff1hnx7")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) -; (home-page "https://github.com/konsorten/go-windows-terminal-sequences") -; (synopsis "Windows Terminal Sequences") -; (description -; "This library allow for enabling Windows terminal color support for Go.") -; (license license:expat))) -; -;(define-public go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1 -; (package -; (name "go-github-com-prometheus-procfs") -; (version "0.0.0-20190522114515-bc1a522cf7b1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/procfs") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "13ws66kd65zbhk31zmax9qgmh22fzjcgs5ihy4fm1d775w6bmdzx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/procfs")) -; (propagated-inputs -; `(("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" -; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4))) -; (home-page "https://github.com/prometheus/procfs") -; (synopsis "procfs") -; (description -; "Package procfs provides functions to retrieve system, kernel and process -;metrics from the pseudo-filesystem proc. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20200120151820-655fe14d7479") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "133yxmdcny5b0r8775m52sj7zja36riv0x2437k7jccywqi8nx32")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20200117163144-32f20d992d24 -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20200117163144-32f20d992d24") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1kl696jd8fykykjjbngqpgqsngajwbbrvrpl1q0804l6hz8qk858")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" -; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) -; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) -; ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" -; ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) -; ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" -; ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) -; ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" -; ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-ttrpc-1.0.2 -; (package -; (name "go-github-com-containerd-ttrpc") -; (version "1.0.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/ttrpc") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0plkm3yrr20vccfl0x8dxys3iphjwnmi285in0pivff6p9djf3yz")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/ttrpc")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.26.0" ,go-google-golang-org-grpc-1.26.0) -; ("go-google-golang-org-genproto-0.0.0-20200117163144-32f20d992d24" -; ,go-google-golang-org-genproto-0.0.0-20200117163144-32f20d992d24) -; ("go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479" -; ,go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479) -; ("go-github-com-sirupsen-logrus-1.4.2" -; ,go-github-com-sirupsen-logrus-1.4.2) -; ("go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1" -; ,go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.2" -; ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.2) -; ("go-github-com-gogo-protobuf-1.3.1" -; ,go-github-com-gogo-protobuf-1.3.1))) -; (home-page "https://github.com/containerd/ttrpc") -; (synopsis "ttrpc") -; (description "GRPC for low-memory environments.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-typeurl-1.0.1 -; (package -; (name "go-github-com-containerd-typeurl") -; (version "1.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/typeurl") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "09cgrchrw5d36zq0mc321l5qr2gfbdm1z1a3hhkhqr4qay6vglqn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/typeurl")) -; (propagated-inputs -; `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-gogo-protobuf-1.3.1" -; ,go-github-com-gogo-protobuf-1.3.1))) -; (home-page "https://github.com/containerd/typeurl") -; (synopsis "typeurl") -; (description -; "This package provides a Go package for managing the registration, marshaling, and unmarshaling of encoded types.") -; (license license:asl2.0))) -; -;(define-public go-github-com-opencontainers-runc-1.0.0-rc9 -; (package -; (name "go-github-com-opencontainers-runc") -; (version "1.0.0-rc9") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/runc") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ss5b46cbbckyqlwgj8dbd5l59c5y0kp679hcpc0ybaj53pmwxj7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/runc")) -; (home-page "https://github.com/opencontainers/runc") -; (synopsis "runc") -; (description -; "@code{runc} is a CLI tool for spawning and running containers according to the OCI specification.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-zfs-0.0.0-20210301145711-11e8f1707f62 -; (package -; (name "go-github-com-containerd-zfs") -; (version "0.0.0-20210301145711-11e8f1707f62") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/zfs") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1919ax45a07v2y56xq5c0xihkn2c5zgyqv68rzx3x5cc20n2p8yg")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/zfs")) -; (propagated-inputs -; `(("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) -; ("go-go-etcd-io-bbolt-1.3.3" ,go-go-etcd-io-bbolt-1.3.3) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-runc-1.0.0-rc9" -; ,go-github-com-opencontainers-runc-1.0.0-rc9) -; ("go-github-com-opencontainers-image-spec-1.0.1" -; ,go-github-com-opencontainers-image-spec-1.0.1) -; ("go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible" -; ,go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible) -; ("go-github-com-google-uuid-1.1.1" ,go-github-com-google-uuid-1.1.1) -; ("go-github-com-gogo-protobuf-1.3.1" -; ,go-github-com-gogo-protobuf-1.3.1) -; ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" -; ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) -; ("go-github-com-containerd-typeurl-1.0.1" -; ,go-github-com-containerd-typeurl-1.0.1) -; ("go-github-com-containerd-ttrpc-1.0.2" -; ,go-github-com-containerd-ttrpc-1.0.2) -; ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" -; ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) -; ("go-github-com-containerd-containerd-1.4.3" -; ,go-github-com-containerd-containerd-1.4.3) -; ("go-github-com-microsoft-hcsshim-0.8.14" -; ,go-github-com-microsoft-hcsshim-0.8.14))) -; (home-page "https://github.com/containerd/zfs") -; (synopsis "ZFS snapshotter plugin") -; (description "ZFS snapshotter plugin for containerd.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containernetworking-cni-0.7.1 -; (package -; (name "go-github-com-containernetworking-cni") -; (version "0.7.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containernetworking/cni") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "02qn1br8164d99978acalisy1sx294g1axnii4yh1wji0fc735xz")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containernetworking/cni")) -; (home-page "https://github.com/containernetworking/cni") -; (synopsis "CNI - the Container Network Interface") -; (description -; "CNI (), a @url{https://cncf.io,Cloud Native Computing Foundation} project, consists of a specification and libraries for writing plugins to configure network interfaces in Linux containers, along with a number of supported plugins. -;CNI concerns itself only with network connectivity of containers and removing allocated resources when the container is deleted. -;Because of this focus, CNI has a wide range of support and the specification is simple to implement.") -; (license license:asl2.0))) -; -;(define-public go-github-com-coreos-go-iptables-0.4.5 -; (package -; (name "go-github-com-coreos-go-iptables") -; (version "0.4.5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/coreos/go-iptables") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "04iqh4hvvrrvjsfjyaa5bdyqklwzrzzy8yiyvja90hvv121f7975")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/coreos/go-iptables")) -; (home-page "https://github.com/coreos/go-iptables") -; (synopsis "go-iptables") -; (description "Go bindings for iptables utility.") -; (license license:asl2.0))) -; -;(define-public go-github-com-onsi-ginkgo-0.0.0-20151202141238-7f8ab55aaf3b -; (package -; (name "go-github-com-onsi-ginkgo") -; (version "0.0.0-20151202141238-7f8ab55aaf3b") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/onsi/ginkgo") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0nas6wqdym4jx42kw9wj80b58r69k9qhnvglz009lj34g5gba7rw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/onsi/ginkgo")) -; (home-page "https://github.com/onsi/ginkgo") -; (synopsis "Ginkgo 2.0 Release Candidate is available!") -; (description "Ginkgo is a BDD-style testing framework for Golang -;") -; (license license:expat))) -; -;(define-public go-github-com-onsi-gomega-0.0.0-20151007035656-2152b45fa28a -; (package -; (name "go-github-com-onsi-gomega") -; (version "0.0.0-20151007035656-2152b45fa28a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/onsi/gomega") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0amjlkawp84mmdqjgdamf93p1546cla6h4wwrx7hf5r862r2qcw2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/onsi/gomega")) -; (home-page "https://github.com/onsi/gomega") -; (synopsis ": a BDD Testing Framework for Golang") -; (description -; "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library. -;") -; (license license:expat))) -; -;(define-public go-github-com-vishvananda-netlink-0.0.0-20181108222139-023a6dafdcdf -; (package -; (name "go-github-com-vishvananda-netlink") -; (version "0.0.0-20181108222139-023a6dafdcdf") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/vishvananda/netlink") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1i5q8r8rg7lxzvq2vhbf25lrkzdlgficfv0bxg9rf7cgg6z819sn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/vishvananda/netlink")) -; (home-page "https://github.com/vishvananda/netlink") -; (synopsis "netlink - netlink library for go") -; (description -; "Package netlink provides a simple library for netlink. Netlink is -;the interface a user-space program in linux uses to communicate with -;the kernel. It can be used to add and remove interfaces, set up ip -;addresses and routes, and confiugre ipsec. Netlink communication -;requires elevated privileges, so in most cases this code needs to -;be run as root. The low level primitives for netlink are contained -;in the nl subpackage. This package attempts to provide a high-level -;interface that is loosly modeled on the iproute2 cli. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-vishvananda-netns-0.0.0-20180720170159-13995c7128cc -; (package -; (name "go-github-com-vishvananda-netns") -; (version "0.0.0-20180720170159-13995c7128cc") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/vishvananda/netns") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1zk6w8158qi4niva5rijchbv9ixgmijsgqshh54wdaav4xrhjshn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/vishvananda/netns")) -; (home-page "https://github.com/vishvananda/netns") -; (synopsis "netns - network namespaces in go") -; (description -; "Package netns allows ultra-simple network namespace handling. NsHandles -;can be retrieved and set. Note that the current namespace is thread -;local so actions that set and reset namespaces should use LockOSThread -;to make sure the namespace doesn't change due to a goroutine switch. -;It is best to close NsHandles when you are done with them. This can be -;accomplished via a `defer ns.Close()` on the handle. Changing namespaces -;requires elevated privileges, so in most cases this code needs to be run -;as root. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20181009213950-7c1a557ab941 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20181009213950-7c1a557ab941") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1f1q9mby8m7ws3gbj90v0prhnf4g2sgf74azmw31kzwd6azlar3m")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20181011144130-49bb7cea24b1 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20181011144130-49bb7cea24b1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "111q4qm3hcjvzvyv9y5rz8ydnyg48rckcygxqy6gv63q618wz6gn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-github-com-containernetworking-plugins-0.8.6 -; (package -; (name "go-github-com-containernetworking-plugins") -; (version "0.8.6") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containernetworking/plugins") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0f1cqxjf26sy1c4aw6y7pyd9lrz0vknby4q5j6xj77a1pab9073m")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containernetworking/plugins")) -; (propagated-inputs -; `(("go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2" -; ,go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2) -; ("go-gopkg-in-airbrake-gobrake-v2-2.0.9" -; ,go-gopkg-in-airbrake-gobrake-v2-2.0.9) -; ("go-golang-org-x-sys-0.0.0-20190616124812-15dcb6c0061f" -; ,go-golang-org-x-sys-0.0.0-20190616124812-15dcb6c0061f) -; ("go-golang-org-x-net-0.0.0-20181011144130-49bb7cea24b1" -; ,go-golang-org-x-net-0.0.0-20181011144130-49bb7cea24b1) -; ("go-golang-org-x-crypto-0.0.0-20181009213950-7c1a557ab941" -; ,go-golang-org-x-crypto-0.0.0-20181009213950-7c1a557ab941) -; ("go-github-com-vishvananda-netns-0.0.0-20180720170159-13995c7128cc" -; ,go-github-com-vishvananda-netns-0.0.0-20180720170159-13995c7128cc) -; ("go-github-com-vishvananda-netlink-0.0.0-20181108222139-023a6dafdcdf" -; ,go-github-com-vishvananda-netlink-0.0.0-20181108222139-023a6dafdcdf) -; ("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0) -; ("go-github-com-sirupsen-logrus-1.0.6" -; ,go-github-com-sirupsen-logrus-1.0.6) -; ("go-github-com-safchain-ethtool-0.0.0-20190326074333-42ed695e3de8" -; ,go-github-com-safchain-ethtool-0.0.0-20190326074333-42ed695e3de8) -; ("go-github-com-onsi-gomega-0.0.0-20151007035656-2152b45fa28a" -; ,go-github-com-onsi-gomega-0.0.0-20151007035656-2152b45fa28a) -; ("go-github-com-onsi-ginkgo-0.0.0-20151202141238-7f8ab55aaf3b" -; ,go-github-com-onsi-ginkgo-0.0.0-20151202141238-7f8ab55aaf3b) -; ("go-github-com-mattn-go-shellwords-1.0.3" -; ,go-github-com-mattn-go-shellwords-1.0.3) -; ("go-github-com-j-keck-arping-0.0.0-20160618110441-2cf9dc699c56" -; ,go-github-com-j-keck-arping-0.0.0-20160618110441-2cf9dc699c56) -; ("go-github-com-golang-protobuf-1.3.1" -; ,go-github-com-golang-protobuf-1.3.1) -; ("go-github-com-godbus-dbus-0.0.0-20180201030542-885f9cc04c9c" -; ,go-github-com-godbus-dbus-0.0.0-20180201030542-885f9cc04c9c) -; ("go-github-com-d2g-hardwareaddr-0.0.0-20190221164911-e7d9fbe030e4" -; ,go-github-com-d2g-hardwareaddr-0.0.0-20190221164911-e7d9fbe030e4) -; ("go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5" -; ,go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5) -; ("go-github-com-d2g-dhcp4client-1.0.0" -; ,go-github-com-d2g-dhcp4client-1.0.0) -; ("go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c" -; ,go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c) -; ("go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7" -; ,go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7) -; ("go-github-com-coreos-go-iptables-0.4.5" -; ,go-github-com-coreos-go-iptables-0.4.5) -; ("go-github-com-containernetworking-cni-0.7.1" -; ,go-github-com-containernetworking-cni-0.7.1) -; ("go-github-com-buger-jsonparser-0.0.0-20180808090653-f4dd9f5a6b44" -; ,go-github-com-buger-jsonparser-0.0.0-20180808090653-f4dd9f5a6b44) -; ("go-github-com-alexflint-go-filemutex-0.0.0-20171022225611-72bdc8eae2ae" -; ,go-github-com-alexflint-go-filemutex-0.0.0-20171022225611-72bdc8eae2ae) -; ("go-github-com-microsoft-hcsshim-0.8.6" -; ,go-github-com-microsoft-hcsshim-0.8.6) -; ("go-github-com-microsoft-go-winio-0.4.11" -; ,go-github-com-microsoft-go-winio-0.4.11))) -; (home-page "https://github.com/containernetworking/plugins") -; (synopsis "Plugins") -; (description -; "Some CNI network plugins, maintained by the containernetworking team. For more information, see the @url{https://www.cni.dev,CNI website}.") -; (license license:asl2.0))) -; -;(define-public go-github-com-imdario-mergo-0.3.11 -; (package -; (name "go-github-com-imdario-mergo") -; (version "0.3.11") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/imdario/mergo") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "07iay9j3ry7qrflvn9bgyyggvwacl1s1in1cnbmsp1020ydkph8k")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/imdario/mergo")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.3.0" ,go-gopkg-in-yaml-v2-2.3.0))) -; (home-page "https://github.com/imdario/mergo") -; (synopsis "Mergo") -; (description -; "This package provides a helper to merge structs and maps in Golang. Useful for configuration default values, avoiding messy if-statements. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-klauspost-compress-1.11.3 -; (package -; (name "go-github-com-klauspost-compress") -; (version "1.11.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/klauspost/compress") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "04wpilw6072fh2wd492ma1nw4br7bvz466mj0vi2m1g4w6d0z88z")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/klauspost/compress")) -; (home-page "https://github.com/klauspost/compress") -; (synopsis "compress") -; (description "This package provides various compression algorithms.") -; (license #f))) -; -;(define-public go-github-com-checkpoint-restore-go-criu-v4-4.1.0 -; (package -; (name "go-github-com-checkpoint-restore-go-criu-v4") -; (version "4.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/checkpoint-restore/go-criu") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0hfgjck015df5h44hczl3x4gg430saczgkl619cp0l6cpaxga5yi")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/checkpoint-restore/go-criu/v4")) -; (propagated-inputs -; `(("go-github-com-golang-protobuf-1.3.5" -; ,go-github-com-golang-protobuf-1.3.5))) -; (home-page "https://github.com/checkpoint-restore/go-criu") -; (synopsis "go-criu -- Go bindings for") -; (description -; "This repository provides Go bindings for CRIU. The code is based on the Go based PHaul -;implementation from the CRIU repository. For easier inclusion into other Go projects the -;CRIU Go bindings have been moved to this repository.") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20200124204421-9fbb57f87de9") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0qaz2jjkrxzgkapmjqingdwamrgq2aiblxvzzgrcsv2qhkj0wdps")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-cilium-ebpf-0.2.0 -; (package -; (name "go-github-com-cilium-ebpf") -; (version "0.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/cilium/ebpf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0f7my8n5v2c5cmgrcikgi0naamglr7c4khgxkbb1k5wl8mm9465a")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/cilium/ebpf")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9" -; ,go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9) -; ("go-github-com-google-go-cmp-0.5.2" -; ,go-github-com-google-go-cmp-0.5.2))) -; (home-page "https://github.com/cilium/ebpf") -; (synopsis "eBPF") -; (description "Package ebpf is a toolkit for working with eBPF programs. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20200916030750-2334cc1a136f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1lc7d513gwwpr6r7f55743684n1qsgn9vmg6b79x0hsp1x90z4mr")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-containerd-console-1.0.1 -; (package -; (name "go-github-com-containerd-console") -; (version "1.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/console") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0s837wj6h80fykk2pdmaji75rw9c3863by0gh0cq51hh0lgyjpvg")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/console")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f" -; ,go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) -; (home-page "https://github.com/containerd/console") -; (synopsis "console") -; (description -; "Golang package for dealing with consoles. Light on deps and a simple API.") -; (license license:asl2.0))) -; -;(define-public go-github-com-coreos-go-systemd-v22-22.1.0 -; (package -; (name "go-github-com-coreos-go-systemd-v22") -; (version "22.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/coreos/go-systemd") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "127dj1iwp69yj74nwh9ckgc0mkk1mv4yzbxmbdxix1r7j6q35z3j")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/coreos/go-systemd/v22")) -; (propagated-inputs -; `(("go-github-com-godbus-dbus-v5-5.0.3" -; ,go-github-com-godbus-dbus-v5-5.0.3))) -; (home-page "https://github.com/coreos/go-systemd") -; (synopsis "go-systemd") -; (description "Go bindings to systemd. The project has several packages:") -; (license license:asl2.0))) -; -;(define-public go-github-com-godbus-dbus-v5-5.0.3 -; (package -; (name "go-github-com-godbus-dbus-v5") -; (version "5.0.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/godbus/dbus") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1bkc904073k807yxg6mvqaxrr6ammmhginr9p54jfb55mz3hfw3s")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/godbus/dbus/v5")) -; (home-page "https://github.com/godbus/dbus") -; (synopsis "dbus") -; (description -; "Package dbus implements bindings to the D-Bus message bus system. -;") -; (license license:bsd-2))) -; -;(define-public go-github-com-opencontainers-runc-1.0.0-rc93 -; (package -; (name "go-github-com-opencontainers-runc") -; (version "1.0.0-rc93") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/runc") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "008d5wkznic80n5q1vwx727qn5ifalc7cydq68hc1gk9wrhna4v4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/runc")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" -; ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68) -; ("go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b" -; ,go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b) -; ("go-github-com-willf-bitset-1.1.11" -; ,go-github-com-willf-bitset-1.1.11) -; ("go-github-com-vishvananda-netlink-1.1.0" -; ,go-github-com-vishvananda-netlink-1.1.0) -; ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) -; ("go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635" -; ,go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635) -; ("go-github-com-sirupsen-logrus-1.7.0" -; ,go-github-com-sirupsen-logrus-1.7.0) -; ("go-github-com-seccomp-libseccomp-golang-0.9.1" -; ,go-github-com-seccomp-libseccomp-golang-0.9.1) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-selinux-1.8.0" -; ,go-github-com-opencontainers-selinux-1.8.0) -; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" -; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) -; ("go-github-com-mrunalp-fileutils-0.5.0" -; ,go-github-com-mrunalp-fileutils-0.5.0) -; ("go-github-com-moby-sys-mountinfo-0.4.0" -; ,go-github-com-moby-sys-mountinfo-0.4.0) -; ("go-github-com-golang-protobuf-1.4.3" -; ,go-github-com-golang-protobuf-1.4.3) -; ("go-github-com-godbus-dbus-v5-5.0.3" -; ,go-github-com-godbus-dbus-v5-5.0.3) -; ("go-github-com-docker-go-units-0.4.0" -; ,go-github-com-docker-go-units-0.4.0) -; ("go-github-com-cyphar-filepath-securejoin-0.2.2" -; ,go-github-com-cyphar-filepath-securejoin-0.2.2) -; ("go-github-com-coreos-go-systemd-v22-22.1.0" -; ,go-github-com-coreos-go-systemd-v22-22.1.0) -; ("go-github-com-containerd-console-1.0.1" -; ,go-github-com-containerd-console-1.0.1) -; ("go-github-com-cilium-ebpf-0.2.0" ,go-github-com-cilium-ebpf-0.2.0) -; ("go-github-com-checkpoint-restore-go-criu-v4-4.1.0" -; ,go-github-com-checkpoint-restore-go-criu-v4-4.1.0))) -; (home-page "https://github.com/opencontainers/runc") -; (synopsis "runc") -; (description -; "@code{runc} is a CLI tool for spawning and running containers according to the OCI specification.") -; (license license:asl2.0))) -; -;(define-public go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d -; (package -; (name "go-github-com-opencontainers-runtime-spec") -; (version "1.0.3-0.20200929063507-e6143ca7d51d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/runtime-spec") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "06yk9kjif5mgi46d0hcgqcikdcplf3yflqbj8h6ljxshp6jzc49w")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) -; (home-page "https://github.com/opencontainers/runtime-spec") -; (synopsis "Open Container Initiative Runtime Specification") -; (description -; "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") -; (license license:asl2.0))) -; -;(define-public go-github-com-willf-bitset-1.1.11 -; (package -; (name "go-github-com-willf-bitset") -; (version "1.1.11") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/bits-and-blooms/bitset") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1v7wnikdxiyhwdxnsj2wcrsrsi1kb2ssmarvbrda90vmxzafjl7d")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/willf/bitset")) -; (home-page "https://github.com/willf/bitset") -; (synopsis "bitset") -; (description -; "Package bitset implements bitsets, a mapping -;between non-negative integers and boolean values. It should be more -;efficient than map[uint] bool. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-opencontainers-selinux-1.8.0 -; (package -; (name "go-github-com-opencontainers-selinux") -; (version "1.8.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/selinux") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "08aakiva619hk4lgfvyi6kpjgw7hfirs0jlc2jdgzcv7p0gfhbmx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/selinux")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777" -; ,go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777) -; ("go-github-com-willf-bitset-1.1.11" -; ,go-github-com-willf-bitset-1.1.11) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) -; (home-page "https://github.com/opencontainers/selinux") -; (synopsis "selinux") -; (description "Common SELinux package used across the container ecosystem.") -; (license license:asl2.0))) -; -;(define-public go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.14 -; (package -; (name "go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client") -; (version "0.0.14") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes-sigs/apiserver-network-proxy") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0px41x5apgcssmwmx75cwm000s8b8pgd84dxn56maxx223dzz9vm")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path -; "sigs.k8s.io/apiserver-network-proxy/konnectivity-client")) -; (propagated-inputs -; `(("go-k8s-io-klog-v2-2.0.0" ,go-k8s-io-klog-v2-2.0.0) -; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) -; ("go-github-com-golang-protobuf-1.4.0" -; ,go-github-com-golang-protobuf-1.4.0))) -; (home-page -; "https://sigs.k8s.io/apiserver-network-proxy/konnectivity-client") -; (synopsis #f) -; (description #f) -; (license license:asl2.0))) -; -;(define-public go-k8s-io-apiserver-0.20.1 -; (package -; (name "go-k8s-io-apiserver") -; (version "0.20.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes/apiserver") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "03k8kjisscj59i410kk2bz0qfpxa2d2vbwxiwyn93k7a2avbn7cs")))) -; (build-system go-build-system) -; (arguments '(#:import-path "k8s.io/apiserver")) -; (propagated-inputs -; `(("go-k8s-io-component-base-0.20.1" ,go-k8s-io-component-base-0.20.1) -; ("go-k8s-io-client-go-0.20.1" ,go-k8s-io-client-go-0.20.1) -; ("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) -; ("go-k8s-io-api-0.20.1" ,go-k8s-io-api-0.20.1) -; ("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) -; ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.2" -; ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.2) -; ("go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.14" -; ,go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.14) -; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" -; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) -; ("go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd" -; ,go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd) -; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) -; ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) -; ("go-gopkg-in-square-go-jose-v2-2.2.2" -; ,go-gopkg-in-square-go-jose-v2-2.2.2) -; ("go-gopkg-in-natefinch-lumberjack-v2-2.0.0" -; ,go-gopkg-in-natefinch-lumberjack-v2-2.0.0) -; ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) -; ("go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a" -; ,go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a) -; ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" -; ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) -; ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" -; ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) -; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" -; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) -; ("go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0" -; ,go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0) -; ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) -; ("go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489" -; ,go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489) -; ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) -; ("go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5" -; ,go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) -; ("go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021" -; ,go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822" -; ,go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822) -; ("go-github-com-mailru-easyjson-0.7.0" -; ,go-github-com-mailru-easyjson-0.7.0) -; ("go-github-com-hashicorp-golang-lru-0.5.1" -; ,go-github-com-hashicorp-golang-lru-0.5.1) -; ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" -; ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) -; ("go-github-com-gorilla-websocket-1.4.2" -; ,go-github-com-gorilla-websocket-1.4.2) -; ("go-github-com-googleapis-gnostic-0.4.1" -; ,go-github-com-googleapis-gnostic-0.4.1) -; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) -; ("go-github-com-google-gofuzz-1.1.0" -; ,go-github-com-google-gofuzz-1.1.0) -; ("go-github-com-google-go-cmp-0.5.2" -; ,go-github-com-google-go-cmp-0.5.2) -; ("go-github-com-gogo-protobuf-1.3.1" -; ,go-github-com-gogo-protobuf-1.3.1) -; ("go-github-com-go-openapi-spec-0.19.3" -; ,go-github-com-go-openapi-spec-0.19.3) -; ("go-github-com-evanphx-json-patch-4.9.0+incompatible" -; ,go-github-com-evanphx-json-patch-4.9.0+incompatible) -; ("go-github-com-emicklei-go-restful-2.9.5+incompatible" -; ,go-github-com-emicklei-go-restful-2.9.5+incompatible) -; ("go-github-com-dustin-go-humanize-1.0.0" -; ,go-github-com-dustin-go-humanize-1.0.0) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1) -; ("go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f" -; ,go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f) -; ("go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e" -; ,go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e) -; ("go-github-com-coreos-go-semver-0.3.0" -; ,go-github-com-coreos-go-semver-0.3.0) -; ("go-github-com-coreos-go-oidc-2.1.0+incompatible" -; ,go-github-com-coreos-go-oidc-2.1.0+incompatible))) -; (home-page "https://k8s.io/apiserver") -; (synopsis "apiserver") -; (description -; "Generic library for building a Kubernetes aggregated API server.") -; (license license:asl2.0))) -; -;(define-public go-k8s-io-api-0.20.1 -; (package -; (name "go-k8s-io-api") -; (version "0.20.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes/api") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "051nl7g66k0jkc9rmfbvwdsmqkn36nq71kvnfym3lhnjcgg53k0l")))) -; (build-system go-build-system) -; (arguments '(#:import-path "k8s.io/api")) -; (propagated-inputs -; `(("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-gogo-protobuf-1.3.1" -; ,go-github-com-gogo-protobuf-1.3.1))) -; (home-page "https://k8s.io/api") -; (synopsis "api") -; (description -; "Schema of the external API types that are served by the Kubernetes API server.") -; (license license:asl2.0))) -; -;(define-public go-k8s-io-apimachinery-0.20.1 -; (package -; (name "go-k8s-io-apimachinery") -; (version "0.20.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes/apimachinery") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "15qc12lbzpd4lgajy0rv24b3ky4hhg5y1l37qxdfiakhz91didfw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "k8s.io/apimachinery")) -; (propagated-inputs -; `(("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) -; ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.2" -; ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.2) -; ("go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd" -; ,go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd) -; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) -; ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) -; ("go-gopkg-in-inf-v0-0.9.1" ,go-gopkg-in-inf-v0-0.9.1) -; ("go-google-golang-org-protobuf-1.25.0" -; ,go-google-golang-org-protobuf-1.25.0) -; ("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" -; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) -; ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) -; ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" -; ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) -; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" -; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-onsi-gomega-1.7.0" ,go-github-com-onsi-gomega-1.7.0) -; ("go-github-com-onsi-ginkgo-1.11.0" ,go-github-com-onsi-ginkgo-1.11.0) -; ("go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f" -; ,go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f) -; ("go-github-com-modern-go-reflect2-1.0.1" -; ,go-github-com-modern-go-reflect2-1.0.1) -; ("go-github-com-json-iterator-go-1.1.10" -; ,go-github-com-json-iterator-go-1.1.10) -; ("go-github-com-hashicorp-golang-lru-0.5.1" -; ,go-github-com-hashicorp-golang-lru-0.5.1) -; ("go-github-com-googleapis-gnostic-0.4.1" -; ,go-github-com-googleapis-gnostic-0.4.1) -; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) -; ("go-github-com-google-gofuzz-1.1.0" -; ,go-github-com-google-gofuzz-1.1.0) -; ("go-github-com-google-go-cmp-0.5.2" -; ,go-github-com-google-go-cmp-0.5.2) -; ("go-github-com-golang-protobuf-1.4.3" -; ,go-github-com-golang-protobuf-1.4.3) -; ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" -; ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) -; ("go-github-com-gogo-protobuf-1.3.1" -; ,go-github-com-gogo-protobuf-1.3.1) -; ("go-github-com-fsnotify-fsnotify-1.4.9" -; ,go-github-com-fsnotify-fsnotify-1.4.9) -; ("go-github-com-evanphx-json-patch-4.9.0+incompatible" -; ,go-github-com-evanphx-json-patch-4.9.0+incompatible) -; ("go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153" -; ,go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153) -; ("go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96" -; ,go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://k8s.io/apimachinery") -; (synopsis "apimachinery") -; (description -; "Scheme, typing, encoding, decoding, and conversion packages for Kubernetes and Kubernetes-like API objects.") -; (license license:asl2.0))) -; -;(define-public go-k8s-io-client-go-0.20.1 -; (package -; (name "go-k8s-io-client-go") -; (version "0.20.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes/client-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "02jrzwwcrdlya91fga2wvf8dsl1yka3kky194dm6l9pmd754qwzs")))) -; (build-system go-build-system) -; (arguments '(#:import-path "k8s.io/client-go")) -; (propagated-inputs -; `(("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) -; ("go-k8s-io-api-0.20.1" ,go-k8s-io-api-0.20.1) -; ("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) -; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" -; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) -; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) -; ("go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e" -; ,go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e) -; ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" -; ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) -; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" -; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) -; ("go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0" -; ,go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) -; ("go-github-com-peterbourgon-diskv-2.0.1+incompatible" -; ,go-github-com-peterbourgon-diskv-2.0.1+incompatible) -; ("go-github-com-imdario-mergo-0.3.5" -; ,go-github-com-imdario-mergo-0.3.5) -; ("go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7" -; ,go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7) -; ("go-github-com-googleapis-gnostic-0.4.1" -; ,go-github-com-googleapis-gnostic-0.4.1) -; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) -; ("go-github-com-google-gofuzz-1.1.0" -; ,go-github-com-google-gofuzz-1.1.0) -; ("go-github-com-google-go-cmp-0.5.2" -; ,go-github-com-google-go-cmp-0.5.2) -; ("go-github-com-golang-protobuf-1.4.3" -; ,go-github-com-golang-protobuf-1.4.3) -; ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" -; ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) -; ("go-github-com-gogo-protobuf-1.3.1" -; ,go-github-com-gogo-protobuf-1.3.1) -; ("go-github-com-evanphx-json-patch-4.9.0+incompatible" -; ,go-github-com-evanphx-json-patch-4.9.0+incompatible) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1) -; ("go-github-com-azure-go-autorest-autorest-adal-0.9.5" -; ,go-github-com-azure-go-autorest-autorest-adal-0.9.5) -; ("go-github-com-azure-go-autorest-autorest-0.11.1" -; ,go-github-com-azure-go-autorest-autorest-0.11.1) -; ("go-cloud-google-com-go-0.54.0" ,go-cloud-google-com-go-0.54.0))) -; (home-page "https://k8s.io/client-go") -; (synopsis "client-go") -; (description -; "Go clients for talking to a @url{http://kubernetes.io/,kubernetes} cluster.") -; (license license:asl2.0))) -; -;(define-public go-k8s-io-component-base-0.20.1 -; (package -; (name "go-k8s-io-component-base") -; (version "0.20.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes/component-base") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "05x3mv1lxh7s6ckfh1s9wwmb0n9rg14a9637ai9bhxdfps47sz0v")))) -; (build-system go-build-system) -; (arguments '(#:import-path "k8s.io/component-base")) -; (propagated-inputs -; `(("go-k8s-io-client-go-0.20.1" ,go-k8s-io-client-go-0.20.1) -; ("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) -; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" -; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) -; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) -; ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) -; ("go-go-uber-org-multierr-1.1.0" ,go-go-uber-org-multierr-1.1.0) -; ("go-go-uber-org-atomic-1.4.0" ,go-go-uber-org-atomic-1.4.0) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) -; ("go-github-com-sirupsen-logrus-1.6.0" -; ,go-github-com-sirupsen-logrus-1.6.0) -; ("go-github-com-prometheus-procfs-0.2.0" -; ,go-github-com-prometheus-procfs-0.2.0) -; ("go-github-com-prometheus-common-0.10.0" -; ,go-github-com-prometheus-common-0.10.0) -; ("go-github-com-prometheus-client-model-0.2.0" -; ,go-github-com-prometheus-client-model-0.2.0) -; ("go-github-com-prometheus-client-golang-1.7.1" -; ,go-github-com-prometheus-client-golang-1.7.1) -; ("go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd" -; ,go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd) -; ("go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369" -; ,go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369) -; ("go-github-com-google-go-cmp-0.5.2" -; ,go-github-com-google-go-cmp-0.5.2) -; ("go-github-com-go-logr-logr-0.2.0" ,go-github-com-go-logr-logr-0.2.0) -; ("go-github-com-blang-semver-3.5.1+incompatible" -; ,go-github-com-blang-semver-3.5.1+incompatible))) -; (home-page "https://k8s.io/component-base") -; (synopsis "component-base") -; (description -; "Implement KEP 32: @url{https://github.com/kubernetes/enhancements/blob/master/keps/sig-cluster-lifecycle/wgs/783-component-base/README.md,https://github.com/kubernetes/enhancements/blob/master/keps/sig-cluster-lifecycle/wgs/783-component-base/README.md}") -; (license license:asl2.0))) -; -;(define-public go-k8s-io-cri-api-0.20.1 -; (package -; (name "go-k8s-io-cri-api") -; (version "0.20.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes/cri-api") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1r98d0kv42sijdg3404xx2g5jj0zixvfagkky2zla12p68ajm4xr")))) -; (build-system go-build-system) -; (arguments '(#:import-path "k8s.io/cri-api")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" -; ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) -; ("go-google-golang-org-protobuf-1.25.0" -; ,go-google-golang-org-protobuf-1.25.0) -; ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) -; ("go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a" -; ,go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a) -; ("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" -; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) -; ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) -; ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" -; ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) -; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" -; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-kr-pretty-0.2.0" ,go-github-com-kr-pretty-0.2.0) -; ("go-github-com-google-go-cmp-0.5.2" -; ,go-github-com-google-go-cmp-0.5.2) -; ("go-github-com-golang-protobuf-1.4.3" -; ,go-github-com-golang-protobuf-1.4.3) -; ("go-github-com-gogo-protobuf-1.3.1" -; ,go-github-com-gogo-protobuf-1.3.1) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://k8s.io/cri-api") -; (synopsis "Purpose") -; (description -; "This repository contains the definitions for the Container Runtime Interface (CRI). -;CRI is a plugin interface which enables kubelet to use a wide variety of container runtimes, -;without the need to recompile. CRI consists of a protocol buffers and gRPC API.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-containerd-1.5.0-beta.3 -; (package -; (name "go-github-com-containerd-containerd") -; (version "1.5.0-beta.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/containerd") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0fbd4llrwg5hi5adfkmfndma5y129yl9wwz3c3fjn7cfhc64hlqf")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/containerd")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) -; ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) -; ("go-github-com-golang-protobuf-1.3.5" -; ,go-github-com-golang-protobuf-1.3.5) -; ("go-github-com-gogo-googleapis-1.3.2" -; ,go-github-com-gogo-googleapis-1.3.2) -; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" -; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) -; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) -; ("go-k8s-io-cri-api-0.20.1" ,go-k8s-io-cri-api-0.20.1) -; ("go-k8s-io-component-base-0.20.1" ,go-k8s-io-component-base-0.20.1) -; ("go-k8s-io-client-go-0.20.1" ,go-k8s-io-client-go-0.20.1) -; ("go-k8s-io-apiserver-0.20.1" ,go-k8s-io-apiserver-0.20.1) -; ("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) -; ("go-k8s-io-api-0.20.1" ,go-k8s-io-api-0.20.1) -; ("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) -; ("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" -; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) -; ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" -; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) -; ("go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b" -; ,go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b) -; ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) -; ("go-github-com-tchap-go-patricia-2.2.6+incompatible" -; ,go-github-com-tchap-go-patricia-2.2.6+incompatible) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-sirupsen-logrus-1.7.0" -; ,go-github-com-sirupsen-logrus-1.7.0) -; ("go-github-com-prometheus-client-golang-1.7.1" -; ,go-github-com-prometheus-client-golang-1.7.1) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-selinux-1.8.0" -; ,go-github-com-opencontainers-selinux-1.8.0) -; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" -; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) -; ("go-github-com-opencontainers-runc-1.0.0-rc93" -; ,go-github-com-opencontainers-runc-1.0.0-rc93) -; ("go-github-com-opencontainers-image-spec-1.0.1" -; ,go-github-com-opencontainers-image-spec-1.0.1) -; ("go-github-com-opencontainers-go-digest-1.0.0" -; ,go-github-com-opencontainers-go-digest-1.0.0) -; ("go-github-com-moby-sys-symlink-0.1.0" -; ,go-github-com-moby-sys-symlink-0.1.0) -; ("go-github-com-moby-sys-mountinfo-0.4.0" -; ,go-github-com-moby-sys-mountinfo-0.4.0) -; ("go-github-com-klauspost-compress-1.11.3" -; ,go-github-com-klauspost-compress-1.11.3) -; ("go-github-com-imdario-mergo-0.3.11" -; ,go-github-com-imdario-mergo-0.3.11) -; ("go-github-com-hashicorp-go-multierror-1.0.0" -; ,go-github-com-hashicorp-go-multierror-1.0.0) -; ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" -; ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) -; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) -; ("go-github-com-google-go-cmp-0.5.4" -; ,go-github-com-google-go-cmp-0.5.4) -; ("go-github-com-gogo-protobuf-1.3.2" -; ,go-github-com-gogo-protobuf-1.3.2) -; ("go-github-com-fsnotify-fsnotify-1.4.9" -; ,go-github-com-fsnotify-fsnotify-1.4.9) -; ("go-github-com-emicklei-go-restful-2.9.5+incompatible" -; ,go-github-com-emicklei-go-restful-2.9.5+incompatible) -; ("go-github-com-docker-go-units-0.4.0" -; ,go-github-com-docker-go-units-0.4.0) -; ("go-github-com-docker-go-metrics-0.0.1" -; ,go-github-com-docker-go-metrics-0.0.1) -; ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" -; ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1) -; ("go-github-com-coreos-go-systemd-v22-22.1.0" -; ,go-github-com-coreos-go-systemd-v22-22.1.0) -; ("go-github-com-containernetworking-plugins-0.8.6" -; ,go-github-com-containernetworking-plugins-0.8.6) -; ("go-github-com-containerd-zfs-0.0.0-20210301145711-11e8f1707f62" -; ,go-github-com-containerd-zfs-0.0.0-20210301145711-11e8f1707f62) -; ("go-github-com-containerd-typeurl-1.0.1" -; ,go-github-com-containerd-typeurl-1.0.1) -; ("go-github-com-containerd-ttrpc-1.0.2" -; ,go-github-com-containerd-ttrpc-1.0.2) -; ("go-github-com-containerd-nri-0.0.0-20201007170849-eb1350a75164" -; ,go-github-com-containerd-nri-0.0.0-20201007170849-eb1350a75164) -; ("go-github-com-containerd-imgcrypt-1.0.4-0.20210301171431-0ae5c75f59ba" -; ,go-github-com-containerd-imgcrypt-1.0.4-0.20210301171431-0ae5c75f59ba) -; ("go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328" -; ,go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328) -; ("go-github-com-containerd-go-cni-1.0.1" -; ,go-github-com-containerd-go-cni-1.0.1) -; ("go-github-com-containerd-fifo-0.0.0-20201026212402-0724c46b320c" -; ,go-github-com-containerd-fifo-0.0.0-20201026212402-0724c46b320c) -; ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" -; ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) -; ("go-github-com-containerd-console-1.0.1" -; ,go-github-com-containerd-console-1.0.1) -; ("go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68" -; ,go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68) -; ("go-github-com-containerd-btrfs-0.0.0-20201111183144-404b9149801e" -; ,go-github-com-containerd-btrfs-0.0.0-20201111183144-404b9149801e) -; ("go-github-com-containerd-aufs-0.0.0-20201003224125-76a6863f2989" -; ,go-github-com-containerd-aufs-0.0.0-20201003224125-76a6863f2989) -; ("go-github-com-microsoft-hcsshim-test-0.0.0-20210227013316-43a75bb4edd3" -; ,go-github-com-microsoft-hcsshim-test-0.0.0-20210227013316-43a75bb4edd3) -; ("go-github-com-microsoft-hcsshim-0.8.15" -; ,go-github-com-microsoft-hcsshim-0.8.15) -; ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" -; ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3) -; ("go-github-com-burntsushi-toml-0.3.1" -; ,go-github-com-burntsushi-toml-0.3.1))) -; (home-page "https://github.com/containerd/containerd") -; (synopsis "Now Recruiting") -; (description -; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") -; (license license:asl2.0))) -; -;(define-public go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898 -; (package -; (name "go-bazil-org-fuse") -; (version "0.0.0-20160811212531-371fbbdaa898") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/bazil/fuse") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1x5p301py7mcxgwklfm6pqqkzssln0nfzllng49pnk60m03ilp4w")))) -; (build-system go-build-system) -; (arguments '(#:import-path "bazil.org/fuse")) -; (home-page "https://bazil.org/fuse") -; (synopsis "bazil.org/fuse -- Filesystems in Go") -; (description -; "Package fuse enables writing FUSE file systems on Linux and FreeBSD. -;") -; (license #f))) -; -;(define-public go-github-com-sirupsen-logrus-1.7.0 -; (package -; (name "go-github-com-sirupsen-logrus") -; (version "1.7.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/sirupsen/logrus") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1a59pw7zimvm8k423iq9l4f4qjj1ia1xc6pkmhwl2mxc46y2n442")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/sirupsen/logrus")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037" -; ,go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037) -; ("go-github-com-stretchr-testify-1.2.2" -; ,go-github-com-stretchr-testify-1.2.2) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://github.com/sirupsen/logrus") -; (synopsis "Logrus") -; (description -; "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. -;") -; (license license:expat))) -; -;(define-public go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee -; (package -; (name "go-github-com-spf13-cobra") -; (version "0.0.2-0.20171109065643-2da4a54c5cee") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/spf13/cobra") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "18qbrp774fx6dyibjcy9snld705gslq6z2sql1biyjahxkm1vpfy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/spf13/cobra")) -; (home-page "https://github.com/spf13/cobra") -; (synopsis "Table of Contents") -; (description -; "Package cobra is a commander providing a simple interface to create powerful modern CLI interfaces. -;In addition to providing an interface, Cobra simultaneously provides a controller to organize your application code. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95 -; (package -; (name "go-github-com-spf13-pflag") -; (version "1.0.1-0.20171106142849-4c012f6dcd95") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/spf13/pflag") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0plmm67lkm25ir0lczwh7hmanyilrs1vxmbp8a0dyr282ji1dqm5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/spf13/pflag")) -; (home-page "https://github.com/spf13/pflag") -; (synopsis "Description") -; (description -; "Package pflag is a drop-in replacement for Go's flag package, implementing -;POSIX/GNU-style --flags. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20201201145000-ef89a241ccb3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0a8myxx2mvdr77a003gpy5jmdzbxbnrf5zppmpl4za4sspxlmwif")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e -; (package -; (name "go-github-com-containerd-continuity") -; (version "0.0.0-20210208174643-50096c924a4e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/continuity") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1drmxbb2l4z12b19dq3vvh1ss7b4z8fq1n5g6c8ln13mjgz6cq48")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/continuity")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3" -; ,go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3) -; ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" -; ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) -; ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" -; ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) -; ("go-github-com-stretchr-testify-1.4.0" -; ,go-github-com-stretchr-testify-1.4.0) -; ("go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95" -; ,go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95) -; ("go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee" -; ,go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee) -; ("go-github-com-sirupsen-logrus-1.7.0" -; ,go-github-com-sirupsen-logrus-1.7.0) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-go-digest-1.0.0" -; ,go-github-com-opencontainers-go-digest-1.0.0) -; ("go-github-com-inconshreveable-mousetrap-1.0.0" -; ,go-github-com-inconshreveable-mousetrap-1.0.0) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0) -; ("go-github-com-dustin-go-humanize-1.0.0" -; ,go-github-com-dustin-go-humanize-1.0.0) -; ("go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898" -; ,go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898))) -; (home-page "https://github.com/containerd/continuity") -; (synopsis "continuity") -; (description -; "This package provides a transport-agnostic, filesystem metadata manifest system") -; (license license:asl2.0))) -; -;(define-public go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible -; (package -; (name "go-github-com-mistifyio-go-zfs") -; (version "2.1.2-0.20190413222219-f784269be439+incompatible") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mistifyio/go-zfs") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0x6ncjaqjm06c615kbwkqbd5wcdg9nmrbl7wm4w185s6kq6l8fpw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mistifyio/go-zfs")) -; (home-page "https://github.com/mistifyio/go-zfs") -; (synopsis "Go Wrapper for ZFS") -; (description -; "Package zfs provides wrappers around the ZFS command line tools. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-zfs-1.0.0 -; (package -; (name "go-github-com-containerd-zfs") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/zfs") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "10shqmcdxlxxi90kwgs5cljz12589yz5cm78aimv9m4cgwiv3wl3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/zfs")) -; (propagated-inputs -; `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible" -; ,go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible) -; ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" -; ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) -; ("go-github-com-containerd-containerd-1.5.0-beta.3" -; ,go-github-com-containerd-containerd-1.5.0-beta.3))) -; (home-page "https://github.com/containerd/zfs") -; (synopsis "ZFS snapshotter plugin") -; (description "ZFS snapshotter plugin for containerd.") -; (license license:asl2.0))) -; -;(define-public go-github-com-microsoft-go-winio-0.4.11 -; (package -; (name "go-github-com-microsoft-go-winio") -; (version "0.4.11") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/microsoft/go-winio") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "14y1gryr3pb3zy09v2g8dh89m363rfd9sch0wgbabh531hfx72vn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/Microsoft/go-winio")) -; (home-page "https://github.com/Microsoft/go-winio") -; (synopsis "go-winio") -; (description -; "This repository contains utilities for efficiently performing Win32 IO operations in -;Go. Currently, this is focused on accessing named pipes and other file handles, and -;for using named pipes as a net transport.") -; (license license:expat))) -; -;(define-public go-github-com-microsoft-hcsshim-0.8.6 -; (package -; (name "go-github-com-microsoft-hcsshim") -; (version "0.8.6") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/microsoft/hcsshim") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "05arx8y4b6rvhjcnwizhc8svzab3ld0njkgj8vijgs27az84z6pw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/Microsoft/hcsshim")) -; (home-page "https://github.com/Microsoft/hcsshim") -; (synopsis "hcsshim") -; (description -; "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") -; (license license:expat))) -; -;(define-public go-github-com-alexflint-go-filemutex-0.0.0-20171022225611-72bdc8eae2ae -; (package -; (name "go-github-com-alexflint-go-filemutex") -; (version "0.0.0-20171022225611-72bdc8eae2ae") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/alexflint/go-filemutex") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "082y6y9zv40q3kaqvsv6fyaw2fc42j0sn9z0dl9rbiz4szixj3c4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/alexflint/go-filemutex")) -; (home-page "https://github.com/alexflint/go-filemutex") -; (synopsis "FileMutex") -; (description -; "FileMutex is similar to @code{sync.RWMutex}, but also synchronizes across processes. -;On Linux, OSX, and other POSIX systems it uses the flock system call. On windows -;it uses the LockFileEx and UnlockFileEx system calls.") -; (license license:expat))) -; -;(define-public go-github-com-buger-jsonparser-0.0.0-20180808090653-f4dd9f5a6b44 -; (package -; (name "go-github-com-buger-jsonparser") -; (version "0.0.0-20180808090653-f4dd9f5a6b44") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/buger/jsonparser") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "12qa2n33s7yz88ywpr3k9kg3b4gm6rqgnv28iyikyxw8h5jascz5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/buger/jsonparser")) -; (home-page "https://github.com/buger/jsonparser") -; (synopsis -; "Alternative JSON parser for Go (10x times faster standard library)") -; (description -; "It does not require you to know the structure of the payload (eg. create structs), and allows accessing fields by providing the path to them. It is up to @strong{10 times faster} than standard @code{encoding/json} package (depending on payload size and usage), @strong{allocates no memory}. See benchmarks below.") -; (license license:expat))) -; -;(define-public go-github-com-containernetworking-cni-0.8.1 -; (package -; (name "go-github-com-containernetworking-cni") -; (version "0.8.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containernetworking/cni") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ydzsiq6kfwjghf5dd4ld2rv3cxgbjq6c1523jxmib1phwf0s75z")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containernetworking/cni")) -; (home-page "https://github.com/containernetworking/cni") -; (synopsis "CNI - the Container Network Interface") -; (description -; "CNI (), a @url{https://cncf.io,Cloud Native Computing Foundation} project, consists of a specification and libraries for writing plugins to configure network interfaces in Linux containers, along with a number of supported plugins. -;CNI concerns itself only with network connectivity of containers and removing allocated resources when the container is deleted. -;Because of this focus, CNI has a wide range of support and the specification is simple to implement.") -; (license license:asl2.0))) -; -;(define-public go-github-com-coreos-go-iptables-0.5.0 -; (package -; (name "go-github-com-coreos-go-iptables") -; (version "0.5.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/coreos/go-iptables") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0syxjad9b3d19sjy7cy7zjpx5bx60yvbhidz8r9cdv43iqadxmp7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/coreos/go-iptables")) -; (home-page "https://github.com/coreos/go-iptables") -; (synopsis "go-iptables") -; (description "Go bindings for iptables utility.") -; (license license:asl2.0))) -; -;(define-public go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c -; (package -; (name "go-github-com-d2g-dhcp4") -; (version "0.0.0-20170904100407-a1d1b6c41b1c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/d2g/dhcp4") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "191hzw6yqzkm042h6miyycq3g0zrhqjhhpl27f8vhwzp4wanasiz")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/d2g/dhcp4")) -; (home-page "https://github.com/d2g/dhcp4") -; (synopsis "DHCP4 - A DHCP library written in Go.") -; (description -; "Warning: This library is still being developed. Function calls will change.") -; (license license:bsd-3))) -; -;(define-public go-github-com-d2g-dhcp4client-1.0.0 -; (package -; (name "go-github-com-d2g-dhcp4client") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/d2g/dhcp4client") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1n4qrn7xsgvnshmddq56hr8g2si5vfmxi0wnp0w71lmdfsxvvx0q")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/d2g/dhcp4client")) -; (home-page "https://github.com/d2g/dhcp4client") -; (synopsis "dhcp4client") -; (description "DHCP Client") -; (license license:mpl2.0))) -; -;(define-public go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5 -; (package -; (name "go-github-com-d2g-dhcp4server") -; (version "0.0.0-20181031114812-7d4a0a7f59a5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/d2g/dhcp4server") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "03ibq32flr74pxfly1yca9qicb6f15xgl159jjg3svgnzfjpblwl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/d2g/dhcp4server")) -; (home-page "https://github.com/d2g/dhcp4server") -; (synopsis "dhcp4server") -; (description "DHCP Server") -; (license license:mpl2.0))) -; -;(define-public go-github-com-d2g-hardwareaddr-0.0.0-20190221164911-e7d9fbe030e4 -; (package -; (name "go-github-com-d2g-hardwareaddr") -; (version "0.0.0-20190221164911-e7d9fbe030e4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/d2g/hardwareaddr") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "09nm5py9xbb9klwhzqkf6786i3b59ynba78xkrv9jx4ari7ibh8q")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/d2g/hardwareaddr")) -; (home-page "https://github.com/d2g/hardwareaddr") -; (synopsis "hardwareaddr") -; (description "Generate Hardware Addresses") -; (license license:mpl2.0))) -; -;(define-public go-github-com-godbus-dbus-0.0.0-20180201030542-885f9cc04c9c -; (package -; (name "go-github-com-godbus-dbus") -; (version "0.0.0-20180201030542-885f9cc04c9c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/godbus/dbus") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0wjpaj4vr5lvpnwc5faf3qizd7zd2v9yq0fm0558wap1hiyqb8x8")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/godbus/dbus")) -; (home-page "https://github.com/godbus/dbus") -; (synopsis "dbus") -; (description -; "Package dbus implements bindings to the D-Bus message bus system. -;") -; (license license:bsd-2))) -; -;(define-public go-github-com-j-keck-arping-0.0.0-20160618110441-2cf9dc699c56 -; (package -; (name "go-github-com-j-keck-arping") -; (version "0.0.0-20160618110441-2cf9dc699c56") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/j-keck/arping") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1bid8mpx3j4546ni0a6q5xyz7hb854g95qnxqmg5jzs9vrcird3c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/j-keck/arping")) -; (home-page "https://github.com/j-keck/arping") -; (synopsis "arping") -; (description -; "Package arping is a native go library to ping a host per arp datagram, or query a host mac address -;") -; (license license:expat))) -; -;(define-public go-github-com-mattn-go-shellwords-1.0.3 -; (package -; (name "go-github-com-mattn-go-shellwords") -; (version "1.0.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mattn/go-shellwords") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1pg7pl25wvpl2dbpyrv9p1r7prnqimxlf6136vn0dfm54j2x4mnr")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mattn/go-shellwords")) -; (home-page "https://github.com/mattn/go-shellwords") -; (synopsis "go-shellwords") -; (description "Parse line as shell words.") -; (license license:expat))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190904154756-749cb33beabd -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190904154756-749cb33beabd") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0dm3257q3rv2kyn5lmqqim2fqg634v6rhrqq4glvbk4wx4l3v337")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-nxadm-tail-1.4.4 -; (package -; (name "go-github-com-nxadm-tail") -; (version "1.4.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/nxadm/tail") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1czmwqii0fc8v3ar5bwqpfanprkxg19waly405zlvcflzvj53wwc")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/nxadm/tail")) -; (propagated-inputs -; `(("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" -; ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) -; ("go-golang-org-x-sys-0.0.0-20190904154756-749cb33beabd" -; ,go-golang-org-x-sys-0.0.0-20190904154756-749cb33beabd) -; ("go-github-com-fsnotify-fsnotify-1.4.7" -; ,go-github-com-fsnotify-fsnotify-1.4.7))) -; (home-page "https://github.com/nxadm/tail") -; (synopsis "tail functionality in Go") -; (description -; "nxadm/tail provides a Go library that emulates the features of the BSD `tail` -;program. The library comes with full support for truncation/move detection as -;it is designed to work with log rotation tools. The library works on all -;operating systems supported by Go, including POSIX systems like Linux and -;*BSD, and MS Windows. Go 1.9 is the oldest compiler release supported. -;") -; (license license:expat))) -; -;(define-public go-github-com-onsi-gomega-1.7.1 -; (package -; (name "go-github-com-onsi-gomega") -; (version "1.7.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/onsi/gomega") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "06p3x0910cdaa64l7d44s728d4j3yhps315dlcvrbjzhljjj7mam")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/onsi/gomega")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.2.4" ,go-gopkg-in-yaml-v2-2.2.4) -; ("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" -; ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) -; ("go-gopkg-in-fsnotify-v1-1.4.7" ,go-gopkg-in-fsnotify-v1-1.4.7) -; ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e" -; ,go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e) -; ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" -; ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) -; ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" -; ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) -; ("go-github-com-onsi-ginkgo-1.6.0" ,go-github-com-onsi-ginkgo-1.6.0) -; ("go-github-com-hpcloud-tail-1.0.0" ,go-github-com-hpcloud-tail-1.0.0) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0) -; ("go-github-com-fsnotify-fsnotify-1.4.7" -; ,go-github-com-fsnotify-fsnotify-1.4.7))) -; (home-page "https://github.com/onsi/gomega") -; (synopsis ": a BDD Testing Framework for Golang") -; (description -; "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20191120155948-bd437916bb0e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1i8x26frmlin55k69k936zd1rp5sqnq14y5ms4rkxbfzhasdm2rx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-onsi-ginkgo-1.12.1 -; (package -; (name "go-github-com-onsi-ginkgo") -; (version "1.12.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/onsi/ginkgo") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0xs9724l2b0bwjwrvw5cs3akxaw0n1j5kyxrb1ggfsdjz0zmjcxh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/onsi/ginkgo")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e" -; ,go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e) -; ("go-github-com-onsi-gomega-1.7.1" ,go-github-com-onsi-gomega-1.7.1) -; ("go-github-com-nxadm-tail-1.4.4" ,go-github-com-nxadm-tail-1.4.4))) -; (home-page "https://github.com/onsi/ginkgo") -; (synopsis "Ginkgo 2.0 Release Candidate is available!") -; (description "Ginkgo is a BDD-style testing framework for Golang -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-net-0.0.0-20201006153459-a7d1128ccaa0 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20201006153459-a7d1128ccaa0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1iqqq7s95b2a29bspfxv68qnby8vwjvy9f8gl2262p6f9hhp21d2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) -; ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" -; ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) -; ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" -; ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-github-com-onsi-gomega-1.10.3 -; (package -; (name "go-github-com-onsi-gomega") -; (version "1.10.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/onsi/gomega") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1jvp5wlny86ncsqak5rz70qfn61y3ajc64w0hrj4840zgh90zb06")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/onsi/gomega")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.3.0" ,go-gopkg-in-yaml-v2-2.3.0) -; ("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" -; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) -; ("go-golang-org-x-net-0.0.0-20201006153459-a7d1128ccaa0" -; ,go-golang-org-x-net-0.0.0-20201006153459-a7d1128ccaa0) -; ("go-github-com-onsi-ginkgo-1.12.1" ,go-github-com-onsi-ginkgo-1.12.1) -; ("go-github-com-golang-protobuf-1.4.2" -; ,go-github-com-golang-protobuf-1.4.2))) -; (home-page "https://github.com/onsi/gomega") -; (synopsis ": a BDD Testing Framework for Golang") -; (description -; "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library. -;") -; (license license:expat))) -; -;(define-public go-github-com-safchain-ethtool-0.0.0-20190326074333-42ed695e3de8 -; (package -; (name "go-github-com-safchain-ethtool") -; (version "0.0.0-20190326074333-42ed695e3de8") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/safchain/ethtool") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0n5hkrzc1bh46nidcssx4539kvcmgj501v3kzh2pljpg27509daj")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/safchain/ethtool")) -; (home-page "https://github.com/safchain/ethtool") -; (synopsis "ethtool go package") -; (description -; "Package ethtool aims to provide a library giving a simple access to the -;Linux SIOCETHTOOL ioctl operations. It can be used to retrieve informations -;from a network device like statistics, driver related informations or -;even the peer of a VETH interface. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-sirupsen-logrus-1.0.6 -; (package -; (name "go-github-com-sirupsen-logrus") -; (version "1.0.6") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/sirupsen/logrus") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "029irw2lsbqi944gdrbkwdw0m2794sqni4g21gsnmz142hbzds8c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/sirupsen/logrus")) -; (home-page "https://github.com/sirupsen/logrus") -; (synopsis "Logrus") -; (description -; "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-sys-0.0.0-20200217220822-9197077df867 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20200217220822-9197077df867") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1270yyiqzlgrsygp2j0qavh4agm4xjv3ljfpk4wgqgmg4ph1lmx1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-vishvananda-netns-0.0.0-20200728191858-db3c7e526aae -; (package -; (name "go-github-com-vishvananda-netns") -; (version "0.0.0-20200728191858-db3c7e526aae") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/vishvananda/netns") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1gx41r06by67q5yyyvjpr0cyqqs2pcksfaqxy0s36cx4vpjn5x9r")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/vishvananda/netns")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20200217220822-9197077df867" -; ,go-golang-org-x-sys-0.0.0-20200217220822-9197077df867))) -; (home-page "https://github.com/vishvananda/netns") -; (synopsis "netns - network namespaces in go") -; (description -; "Package netns allows ultra-simple network namespace handling. NsHandles -;can be retrieved and set. Note that the current namespace is thread -;local so actions that set and reset namespaces should use LockOSThread -;to make sure the namespace doesn't change due to a goroutine switch. -;It is best to close NsHandles when you are done with them. This can be -;accomplished via a `defer ns.Close()` on the handle. Changing namespaces -;requires elevated privileges, so in most cases this code needs to be run -;as root. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-sys-0.0.0-20200728102440-3e129f6d46b1 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20200728102440-3e129f6d46b1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "02wcaghvpysqijiqsiimk52vma7lx99g5kvdid2r1qsf9hmwgvy2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-vishvananda-netlink-1.1.1-0.20201029203352-d40f9887b852 -; (package -; (name "go-github-com-vishvananda-netlink") -; (version "1.1.1-0.20201029203352-d40f9887b852") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/vishvananda/netlink") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1aq13npm7vd153vxrk1vhsg36r2g9hrh21cvk422ssrf57qy2fsj")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/vishvananda/netlink")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20200728102440-3e129f6d46b1" -; ,go-golang-org-x-sys-0.0.0-20200728102440-3e129f6d46b1) -; ("go-github-com-vishvananda-netns-0.0.0-20200728191858-db3c7e526aae" -; ,go-github-com-vishvananda-netns-0.0.0-20200728191858-db3c7e526aae))) -; (home-page "https://github.com/vishvananda/netlink") -; (synopsis "netlink - netlink library for go") -; (description -; "Package netlink provides a simple library for netlink. Netlink is -;the interface a user-space program in linux uses to communicate with -;the kernel. It can be used to add and remove interfaces, set up ip -;addresses and routes, and confiugre ipsec. Netlink communication -;requires elevated privileges, so in most cases this code needs to -;be run as root. The low level primitives for netlink are contained -;in the nl subpackage. This package attempts to provide a high-level -;interface that is loosly modeled on the iproute2 cli. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-sys-0.0.0-20201117170446-d9b008d0a637 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20201117170446-d9b008d0a637") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "06pp1nrhzx6nm6rwwzm0xzf8bs3r1mfsrkclyhlhnr7x5r0a0ppi")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-gopkg-in-airbrake-gobrake-v2-2.0.9 -; (package -; (name "go-gopkg-in-airbrake-gobrake-v2") -; (version "2.0.9") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/airbrake/gobrake.v2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1x06f7n7qlyzqgyz0sdfcidf3w4ldn6zs6qx2mhibggk2z4whcjw")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path -; "gopkg.in/airbrake/gobrake.v2" -; #:unpack-path -; "gopkg.in/airbrake/gobrake.v2")) -; (home-page "https://gopkg.in/airbrake/gobrake.v2") -; (synopsis "Airbrake Golang Notifier") -; (description -; "You can use @url{https://github.com/airbrake/glog,glog fork} to send your logs to Airbrake.") -; (license license:bsd-3))) -; -;(define-public go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2 -; (package -; (name "go-gopkg-in-gemnasium-logrus-airbrake-hook-v2") -; (version "2.1.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/gemnasium/logrus-airbrake-hook.v2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0sbg0dn6cysmf8f2bi209jwl4jnpiwp4rdghnxlzirw3c32ms5y5")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path -; "gopkg.in/gemnasium/logrus-airbrake-hook.v2" -; #:unpack-path -; "gopkg.in/gemnasium/logrus-airbrake-hook.v2")) -; (home-page "https://gopkg.in/gemnasium/logrus-airbrake-hook.v2") -; (synopsis "Airbrake Hook for Logrus") -; (description -; "Use this hook to send your errors to @url{https://airbrake.io/,Airbrake}. -;This hook is using the @url{https://github.com/airbrake/gobrake,official airbrake go package}, and will hit the api V3. -;The hook is synchronous and will send the error for @code{log.Error}, @code{log.Fatal} and @code{log.Panic} levels.") -; (license license:expat))) -; -;(define-public go-github-com-containernetworking-plugins-0.9.1 -; (package -; (name "go-github-com-containernetworking-plugins") -; (version "0.9.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containernetworking/plugins") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "17rafngfa9b0ybs3j4lvjjqdva6jkamhnbb1n0qnv685g0asvqwz")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containernetworking/plugins")) -; (propagated-inputs -; `(("go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2" -; ,go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2) -; ("go-gopkg-in-airbrake-gobrake-v2-2.0.9" -; ,go-gopkg-in-airbrake-gobrake-v2-2.0.9) -; ("go-golang-org-x-sys-0.0.0-20201117170446-d9b008d0a637" -; ,go-golang-org-x-sys-0.0.0-20201117170446-d9b008d0a637) -; ("go-github-com-vishvananda-netlink-1.1.1-0.20201029203352-d40f9887b852" -; ,go-github-com-vishvananda-netlink-1.1.1-0.20201029203352-d40f9887b852) -; ("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0) -; ("go-github-com-sirupsen-logrus-1.0.6" -; ,go-github-com-sirupsen-logrus-1.0.6) -; ("go-github-com-safchain-ethtool-0.0.0-20190326074333-42ed695e3de8" -; ,go-github-com-safchain-ethtool-0.0.0-20190326074333-42ed695e3de8) -; ("go-github-com-onsi-gomega-1.10.3" ,go-github-com-onsi-gomega-1.10.3) -; ("go-github-com-onsi-ginkgo-1.12.1" ,go-github-com-onsi-ginkgo-1.12.1) -; ("go-github-com-mattn-go-shellwords-1.0.3" -; ,go-github-com-mattn-go-shellwords-1.0.3) -; ("go-github-com-j-keck-arping-0.0.0-20160618110441-2cf9dc699c56" -; ,go-github-com-j-keck-arping-0.0.0-20160618110441-2cf9dc699c56) -; ("go-github-com-godbus-dbus-0.0.0-20180201030542-885f9cc04c9c" -; ,go-github-com-godbus-dbus-0.0.0-20180201030542-885f9cc04c9c) -; ("go-github-com-d2g-hardwareaddr-0.0.0-20190221164911-e7d9fbe030e4" -; ,go-github-com-d2g-hardwareaddr-0.0.0-20190221164911-e7d9fbe030e4) -; ("go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5" -; ,go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5) -; ("go-github-com-d2g-dhcp4client-1.0.0" -; ,go-github-com-d2g-dhcp4client-1.0.0) -; ("go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c" -; ,go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c) -; ("go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7" -; ,go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7) -; ("go-github-com-coreos-go-iptables-0.5.0" -; ,go-github-com-coreos-go-iptables-0.5.0) -; ("go-github-com-containernetworking-cni-0.8.1" -; ,go-github-com-containernetworking-cni-0.8.1) -; ("go-github-com-buger-jsonparser-0.0.0-20180808090653-f4dd9f5a6b44" -; ,go-github-com-buger-jsonparser-0.0.0-20180808090653-f4dd9f5a6b44) -; ("go-github-com-alexflint-go-filemutex-0.0.0-20171022225611-72bdc8eae2ae" -; ,go-github-com-alexflint-go-filemutex-0.0.0-20171022225611-72bdc8eae2ae) -; ("go-github-com-microsoft-hcsshim-0.8.6" -; ,go-github-com-microsoft-hcsshim-0.8.6) -; ("go-github-com-microsoft-go-winio-0.4.11" -; ,go-github-com-microsoft-go-winio-0.4.11))) -; (home-page "https://github.com/containernetworking/plugins") -; (synopsis "Plugins") -; (description -; "Some CNI network plugins, maintained by the containernetworking team. For more information, see the @url{https://www.cni.dev,CNI website}.") -; (license license:asl2.0))) -; -;(define-public go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c -; (package -; (name "go-github-com-docker-go-events") -; (version "0.0.0-20190806004212-e31b211e4f1c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/docker/go-events") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "09gm4z43g23isbklabnsnfb87bwf8kjdgvvyi3vfjq2bqdjdg7cl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/docker/go-events")) -; (home-page "https://github.com/docker/go-events") -; (synopsis "Docker Events Package") -; (description -; "The Docker @code{events} package implements a composable event distribution package -;for Go.") -; (license license:asl2.0))) -; -;(define-public go-github-com-prometheus-common-0.6.0 -; (package -; (name "go-github-com-prometheus-common") -; (version "0.6.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/common") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1q16br348117ffycxdwsldb0i39p34miclfa8z93k6vjwnrqbh2l")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/common")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1) -; ("go-gopkg-in-alecthomas-kingpin-v2-2.2.6" -; ,go-gopkg-in-alecthomas-kingpin-v2-2.2.6) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980" -; ,go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980) -; ("go-github-com-sirupsen-logrus-1.2.0" -; ,go-github-com-sirupsen-logrus-1.2.0) -; ("go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90" -; ,go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90) -; ("go-github-com-prometheus-client-golang-1.0.0" -; ,go-github-com-prometheus-client-golang-1.0.0) -; ("go-github-com-pkg-errors-0.8.0" ,go-github-com-pkg-errors-0.8.0) -; ("go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223" -; ,go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223) -; ("go-github-com-matttproud-golang-protobuf-extensions-1.0.1" -; ,go-github-com-matttproud-golang-protobuf-extensions-1.0.1) -; ("go-github-com-julienschmidt-httprouter-1.2.0" -; ,go-github-com-julienschmidt-httprouter-1.2.0) -; ("go-github-com-golang-protobuf-1.3.1" -; ,go-github-com-golang-protobuf-1.3.1) -; ("go-github-com-go-logfmt-logfmt-0.4.0" -; ,go-github-com-go-logfmt-logfmt-0.4.0) -; ("go-github-com-go-kit-kit-0.8.0" ,go-github-com-go-kit-kit-0.8.0))) -; (home-page "https://github.com/prometheus/common") -; (synopsis "Common") -; (description -; "This repository contains Go libraries that are shared across Prometheus -;components and libraries. They are considered internal to Prometheus, without -;any stability guarantees for external usage.") -; (license license:asl2.0))) -; -;(define-public go-github-com-prometheus-procfs-0.0.3 -; (package -; (name "go-github-com-prometheus-procfs") -; (version "0.0.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/procfs") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "18c4m795fwng8f8qa395f3crvamlbk5y5afk8b5rzyisnmjq774y")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/procfs")) -; (propagated-inputs -; `(("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" -; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) -; ("go-github-com-google-go-cmp-0.3.0" -; ,go-github-com-google-go-cmp-0.3.0))) -; (home-page "https://github.com/prometheus/procfs") -; (synopsis "procfs") -; (description -; "Package procfs provides functions to retrieve system, kernel and process -;metrics from the pseudo-filesystem proc. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190801041406-cbf593c0f2f3 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190801041406-cbf593c0f2f3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1zmcmckinhclcwlvznjqvs31aww8jnf6pjm9is0nq8lqlvipg5ls")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-prometheus-client-golang-1.1.0 -; (package -; (name "go-github-com-prometheus-client-golang") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/client_golang") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1r0irxkmfnj6ininb06w6ybknini5lz02idawrbkk2i5lq1qcvvf")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/client_golang")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190801041406-cbf593c0f2f3" -; ,go-golang-org-x-sys-0.0.0-20190801041406-cbf593c0f2f3) -; ("go-github-com-prometheus-procfs-0.0.3" -; ,go-github-com-prometheus-procfs-0.0.3) -; ("go-github-com-prometheus-common-0.6.0" -; ,go-github-com-prometheus-common-0.6.0) -; ("go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90" -; ,go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90) -; ("go-github-com-json-iterator-go-1.1.7" -; ,go-github-com-json-iterator-go-1.1.7) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2) -; ("go-github-com-beorn7-perks-1.0.1" -; ,go-github-com-beorn7-perks-1.0.1))) -; (home-page "https://github.com/prometheus/client_golang") -; (synopsis "Prometheus Go client library") -; (description -; "This is the @url{http://golang.org,Go} client library for -;@url{http://prometheus.io,Prometheus}. It has two separate parts, one for -;instrumenting application code, and one for creating clients that talk to the -;Prometheus HTTP API.") -; (license license:asl2.0))) -; -;(define-public go-github-com-docker-go-metrics-0.0.1 -; (package -; (name "go-github-com-docker-go-metrics") -; (version "0.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/docker/go-metrics") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1b6f1889chmwlsgrqxylnks2jic16j2dqhsdd1dvaklk48ky95ga")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/docker/go-metrics")) -; (propagated-inputs -; `(("go-github-com-prometheus-client-golang-1.1.0" -; ,go-github-com-prometheus-client-golang-1.1.0))) -; (home-page "https://github.com/docker/go-metrics") -; (synopsis "go-metrics") -; (description -; "This package is small wrapper around the prometheus go client to help enforce convention and best practices for metrics collection in Docker projects.") -; (license (list license:asl2.0 license:cc-by-sa4.0)))) -; -;(define-public go-github-com-google-uuid-1.2.0 -; (package -; (name "go-github-com-google-uuid") -; (version "1.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/uuid") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "08wqig98w23cg2ngjijhgm6s0mdayb95awa3cn3bs69lg20gryac")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/uuid")) -; (home-page "https://github.com/google/uuid") -; (synopsis "uuid") -; (description "Package uuid generates and inspects UUIDs. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-hashicorp-errwrap-1.0.0 -; (package -; (name "go-github-com-hashicorp-errwrap") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/errwrap") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0slfb6w3b61xz04r32bi0a1bygc82rjzhqkxj2si2074wynqnr1c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hashicorp/errwrap")) -; (home-page "https://github.com/hashicorp/errwrap") -; (synopsis "errwrap") -; (description -; "Package errwrap implements methods to formalize error wrapping in Go. -;") -; (license license:mpl2.0))) -; -;(define-public go-github-com-hashicorp-go-multierror-1.0.0 -; (package -; (name "go-github-com-hashicorp-go-multierror") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/go-multierror") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "00nyn8llqzbfm8aflr9kwsvpzi4kv8v45c141v88xskxp5xf6z49")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hashicorp/go-multierror")) -; (propagated-inputs -; `(("go-github-com-hashicorp-errwrap-1.0.0" -; ,go-github-com-hashicorp-errwrap-1.0.0))) -; (home-page "https://github.com/hashicorp/go-multierror") -; (synopsis "go-multierror") -; (description -; "@code{go-multierror} is a package for Go that provides a mechanism for -;representing a list of @code{error} values as a single @code{error}.") -; (license license:mpl2.0))) -; -;(define-public go-gopkg-in-yaml-v2-2.3.0 -; (package -; (name "go-gopkg-in-yaml-v2") -; (version "2.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/yaml.v2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1md0hlyd9s6myv3663i9l59y74n4xjazifmmyxn43g86fgkc5lzj")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" -; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) -; (home-page "https://gopkg.in/yaml.v2") -; (synopsis "YAML support for the Go language") -; (description "Package yaml implements YAML support for the Go language. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-imdario-mergo-0.3.12 -; (package -; (name "go-github-com-imdario-mergo") -; (version "0.3.12") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/imdario/mergo") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "15s6807vcm7xq4l6my7rnw1i7x57712jvdidjli5bip79jfaxw90")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/imdario/mergo")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.3.0" ,go-gopkg-in-yaml-v2-2.3.0))) -; (home-page "https://github.com/imdario/mergo") -; (synopsis "Mergo") -; (description -; "This package provides a helper to merge structs and maps in Golang. Useful for configuration default values, avoiding messy if-statements. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-klauspost-compress-1.11.13 -; (package -; (name "go-github-com-klauspost-compress") -; (version "1.11.13") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/klauspost/compress") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "19l2rbh6vg0ly4qp2gn5lf39ijggf7asav7lxziikkhjqqb4223j")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/klauspost/compress")) -; (home-page "https://github.com/klauspost/compress") -; (synopsis "compress") -; (description "This package provides various compression algorithms.") -; (license #f))) -; -;(define-public go-github-com-moby-locker-1.0.1 -; (package -; (name "go-github-com-moby-locker") -; (version "1.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/moby/locker") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "07rc2c6h35f9mcy81jp382a030f6xmcifi9n5jnlayybfwxmpjir")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/moby/locker")) -; (home-page "https://github.com/moby/locker") -; (synopsis "Locker") -; (description -; "Package locker provides a mechanism for creating finer-grained locking to help -;free up more global locks to handle other tasks. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-opencontainers-go-digest-1.0.0 -; (package -; (name "go-github-com-opencontainers-go-digest") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/go-digest") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0i5acjajvr6hi9zb7gxwifd8w28y884cv7cx36adj8lngj647xbi")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/go-digest")) -; (home-page "https://github.com/opencontainers/go-digest") -; (synopsis "go-digest") -; (description -; "Package digest provides a generalized type to opaquely represent message -;digests and their operations within the registry. The Digest type is -;designed to serve as a flexible identifier in a content-addressable system. -;More importantly, it provides tools and wrappers to work with -;hash.Hash-based digests with little effort. -;") -; (license (list license:asl2.0 license:cc-by-sa4.0)))) -; -;(define-public go-github-com-opencontainers-image-spec-1.0.1 -; (package -; (name "go-github-com-opencontainers-image-spec") -; (version "1.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/image-spec") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "03dvbj3dln8c55v9gp79mgmz2yi2ws3r08iyz2fk41y3i22iaw1q")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/image-spec")) -; (home-page "https://github.com/opencontainers/image-spec") -; (synopsis "OCI Image Format Specification") -; (description -; "The OCI Image Format project creates and maintains the software shipping container image format spec (OCI Image Format).") -; (license license:asl2.0))) -; -;(define-public go-github-com-checkpoint-restore-go-criu-v5-5.0.0 -; (package -; (name "go-github-com-checkpoint-restore-go-criu-v5") -; (version "5.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/checkpoint-restore/go-criu") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "07dal5a9y43azkkh61jf6s81h7anbl17drkh2mal9mzcsi8wa2z8")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/checkpoint-restore/go-criu/v5")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.23.0" -; ,go-google-golang-org-protobuf-1.23.0) -; ("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" -; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) -; ("go-github-com-golang-protobuf-1.4.3" -; ,go-github-com-golang-protobuf-1.4.3))) -; (home-page "https://github.com/checkpoint-restore/go-criu") -; (synopsis "go-criu -- Go bindings for CRIU") -; (description -; "This repository provides Go bindings for @url{https://criu.org/,CRIU}. The code is based on the Go-based PHaul -;implementation from the CRIU repository. For easier inclusion into other Go projects the -;CRIU Go bindings have been moved to this repository.") -; (license license:asl2.0))) -; -;(define-public go-github-com-kr-pretty-0.2.1 -; (package -; (name "go-github-com-kr-pretty") -; (version "0.2.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kr/pretty") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0vzfz06y9q8gs2nxx0kys0591vzp78k0fvpb8digi5n15h3b25hy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kr/pretty")) -; (propagated-inputs -; `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) -; (home-page "https://github.com/kr/pretty") -; (synopsis #f) -; (description -; "Package pretty provides pretty-printing for Go values. This is -;useful during debugging, to avoid wrapping long output lines in -;the terminal. -;") -; (license license:expat))) -; -;(define-public go-github-com-frankban-quicktest-1.11.3 -; (package -; (name "go-github-com-frankban-quicktest") -; (version "1.11.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/frankban/quicktest") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0d5njmwkfq2809vlimnlvy8ir6kln0c4cgdwr680fwsclpbr43qs")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/frankban/quicktest")) -; (propagated-inputs -; `(("go-github-com-kr-pretty-0.2.1" ,go-github-com-kr-pretty-0.2.1) -; ("go-github-com-google-go-cmp-0.5.4" -; ,go-github-com-google-go-cmp-0.5.4))) -; (home-page "https://github.com/frankban/quicktest") -; (synopsis "quicktest") -; (description -; "Package quicktest provides a collection of Go helpers for writing tests. -;") -; (license license:expat))) -; -;(define-public go-github-com-google-go-cmp-0.5.4 -; (package -; (name "go-github-com-google-go-cmp") -; (version "0.5.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/go-cmp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ld9pwb6l22g75g1zpa691l7q9ki7pjgpcqhwgdfr3va1zisr5ci")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/go-cmp")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" -; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) -; (home-page "https://github.com/google/go-cmp") -; (synopsis "Package for equality of Go values") -; (description -; "This package is intended to be a more powerful and safer alternative to -;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") -; (license license:bsd-3))) -; -;(define-public go-github-com-cilium-ebpf-0.6.2 -; (package -; (name "go-github-com-cilium-ebpf") -; (version "0.6.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/cilium/ebpf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0x64sg0kyc8bbsp75dpv8g2jfmpdldsshf9ni49jh6rgsnnqhpf8")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/cilium/ebpf")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" -; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) -; ("go-github-com-google-go-cmp-0.5.4" -; ,go-github-com-google-go-cmp-0.5.4) -; ("go-github-com-frankban-quicktest-1.11.3" -; ,go-github-com-frankban-quicktest-1.11.3))) -; (home-page "https://github.com/cilium/ebpf") -; (synopsis "eBPF") -; (description "Package ebpf is a toolkit for working with eBPF programs. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20210124154548-22da62e12c0c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "17gp3dl75wq3x7j9z1pqgcyvjhvy9jaln1wbscy57al3whdsjp07")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-containerd-console-1.0.2 -; (package -; (name "go-github-com-containerd-console") -; (version "1.0.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/console") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0rxwgq578hphs2ldx1gg6c9fq1qm8rgqfx3vgi2sbrsmxn6m2438")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/console")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" -; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) -; (home-page "https://github.com/containerd/console") -; (synopsis "console") -; (description -; "Golang package for dealing with consoles. Light on deps and a simple API.") -; (license license:asl2.0))) -; -;(define-public go-github-com-coreos-go-systemd-v22-22.3.2 -; (package -; (name "go-github-com-coreos-go-systemd-v22") -; (version "22.3.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/coreos/go-systemd") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ndi86b8va84ha93njqgafypz4di7yxfd5r5kf1r0s3y3ghcjajq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/coreos/go-systemd/v22")) -; (propagated-inputs -; `(("go-github-com-godbus-dbus-v5-5.0.4" -; ,go-github-com-godbus-dbus-v5-5.0.4))) -; (home-page "https://github.com/coreos/go-systemd") -; (synopsis "go-systemd") -; (description "Go bindings to systemd. The project has several packages:") -; (license license:asl2.0))) -; -;(define-public go-github-com-cyphar-filepath-securejoin-0.2.2 -; (package -; (name "go-github-com-cyphar-filepath-securejoin") -; (version "0.2.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/cyphar/filepath-securejoin") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0id32zjb92wm569m29nfrzz5mw9z1glr3klayr6j134pp4h1sgq4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/cyphar/filepath-securejoin")) -; (home-page "https://github.com/cyphar/filepath-securejoin") -; (synopsis #f) -; (description -; "Package securejoin is an implementation of the hopefully-soon-to-be-included -;SecureJoin helper that is meant to be part of the \"path/filepath\" package. -;The purpose of this project is to provide a PoC implementation to make the -;SecureJoin proposal (@url{https://github.com/golang/go/issues/20126,https://github.com/golang/go/issues/20126}) more -;tangible. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-docker-go-units-0.4.0 -; (package -; (name "go-github-com-docker-go-units") -; (version "0.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/docker/go-units") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0k8gja8ql4pqg5rzmqvka42vjfs6rzablak87whcnqba6qxpimvz")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/docker/go-units")) -; (home-page "https://github.com/docker/go-units") -; (synopsis "Introduction") -; (description -; "Package units provides helper function to parse and print size and time units -;in human-readable format. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-godbus-dbus-v5-5.0.4 -; (package -; (name "go-github-com-godbus-dbus-v5") -; (version "5.0.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/godbus/dbus") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0znax8kskb5gmp5fj75w56bc9p7b22wrdswzlh4d04sprlc471yi")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/godbus/dbus/v5")) -; (home-page "https://github.com/godbus/dbus") -; (synopsis "dbus") -; (description -; "Package dbus implements bindings to the D-Bus message bus system. -;") -; (license license:bsd-2))) -; -;(define-public go-github-com-mrunalp-fileutils-0.5.0 -; (package -; (name "go-github-com-mrunalp-fileutils") -; (version "0.5.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mrunalp/fileutils") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1zrs959gf4zgi6ijwkdn4dcqk0svfblpaikkqy63q30rqz4swm0x")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mrunalp/fileutils")) -; (home-page "https://github.com/mrunalp/fileutils") -; (synopsis "fileutils") -; (description "Collection of utilities for file manipulation in golang") -; (license license:asl2.0))) -; -;(define-public go-github-com-seccomp-libseccomp-golang-0.9.1 -; (package -; (name "go-github-com-seccomp-libseccomp-golang") -; (version "0.9.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/seccomp/libseccomp-golang") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "022c8prvxz0shrifams7lq4xidvkcqg9xi87wjjcpmbikqi72cna")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/seccomp/libseccomp-golang")) -; (home-page "https://github.com/seccomp/libseccomp-golang") -; (synopsis #f) -; (description -; "Package seccomp provides bindings for libseccomp, a library wrapping the Linux -;seccomp syscall. Seccomp enables an application to restrict system call use -;for itself and its children. -;") -; (license license:bsd-2))) -; -;(define-public go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635 -; (package -; (name "go-github-com-syndtr-gocapability") -; (version "0.0.0-20200815063812-42c35b437635") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/syndtr/gocapability") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "00zi0k190ydlm9drnafvj9p4cf6axm858wr71pbmq1p3r94iqws4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/syndtr/gocapability")) -; (home-page "https://github.com/syndtr/gocapability") -; (synopsis #f) -; (description #f) -; (license license:bsd-2))) -; -;(define-public go-github-com-vishvananda-netns-0.0.0-20191106174202-0a2b9b5464df -; (package -; (name "go-github-com-vishvananda-netns") -; (version "0.0.0-20191106174202-0a2b9b5464df") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/vishvananda/netns") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1k1zb7pzc4r4wicq7ncspf6zsvq298lvpsq963ibj813shg657xw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/vishvananda/netns")) -; (home-page "https://github.com/vishvananda/netns") -; (synopsis "netns - network namespaces in go") -; (description -; "Package netns allows ultra-simple network namespace handling. NsHandles -;can be retrieved and set. Note that the current namespace is thread -;local so actions that set and reset namespaces should use LockOSThread -;to make sure the namespace doesn't change due to a goroutine switch. -;It is best to close NsHandles when you are done with them. This can be -;accomplished via a `defer ns.Close()` on the handle. Changing namespaces -;requires elevated privileges, so in most cases this code needs to be run -;as root. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190606203320-7fc4e5ec1444 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190606203320-7fc4e5ec1444") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "18rv3m1kksv3758aqiaac2l6j334g0bapic6ibsj999agcn7y9fg")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-vishvananda-netlink-1.1.0 -; (package -; (name "go-github-com-vishvananda-netlink") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/vishvananda/netlink") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1vhl30p1gx636a088ls4h6a0l8jjyfvz79fr5w0qzdrg4qg9h08h")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/vishvananda/netlink")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190606203320-7fc4e5ec1444" -; ,go-golang-org-x-sys-0.0.0-20190606203320-7fc4e5ec1444) -; ("go-github-com-vishvananda-netns-0.0.0-20191106174202-0a2b9b5464df" -; ,go-github-com-vishvananda-netns-0.0.0-20191106174202-0a2b9b5464df))) -; (home-page "https://github.com/vishvananda/netlink") -; (synopsis "netlink - netlink library for go") -; (description -; "Package netlink provides a simple library for netlink. Netlink is -;the interface a user-space program in linux uses to communicate with -;the kernel. It can be used to add and remove interfaces, set up ip -;addresses and routes, and confiugre ipsec. Netlink communication -;requires elevated privileges, so in most cases this code needs to -;be run as root. The low level primitives for netlink are contained -;in the nl subpackage. This package attempts to provide a high-level -;interface that is loosly modeled on the iproute2 cli. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20201224014010-6772e930b67b") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0zlr39dxbg0fxfdrc20c4x0pw43n9kz749ssml97cdzqy116p5qa")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) -; ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" -; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) -; ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" -; ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-1.26.0-rc.1 -; (package -; (name "go-google-golang-org-protobuf") -; (version "1.26.0-rc.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1m2jp247qcnix42jncn0q7pwrjgbhiqllb1115hfsz40xfnfhp8j")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.5.5" -; ,go-github-com-google-go-cmp-0.5.5))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.5.0 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.5.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1craaxv34g4g8q3yrv6pr28fx9ihnk7hj5gnbmxcrhcp78423lnf")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.26.0-rc.1" -; ,go-google-golang-org-protobuf-1.26.0-rc.1) -; ("go-github-com-google-go-cmp-0.5.5" -; ,go-github-com-google-go-cmp-0.5.5))) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-github-com-google-go-cmp-0.5.5 -; (package -; (name "go-github-com-google-go-cmp") -; (version "0.5.5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/go-cmp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "12fmkdhyv5d4is8s57k78j097zb0phlgnrkqc03agiszxlid69x7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/go-cmp")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" -; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) -; (home-page "https://github.com/google/go-cmp") -; (synopsis "Package for equality of Go values") -; (description -; "This package is intended to be a more powerful and safer alternative to -;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-1.26.0 -; (package -; (name "go-google-golang-org-protobuf") -; (version "1.26.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0xq6phaps6d0vcv13ga59gzj4306l0ki9kikhmb52h6pq0iwfqlz")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.5.5" -; ,go-github-com-google-go-cmp-0.5.5) -; ("go-github-com-golang-protobuf-1.5.0" -; ,go-github-com-golang-protobuf-1.5.0))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-github-com-opencontainers-runc-1.0.2 -; (package -; (name "go-github-com-opencontainers-runc") -; (version "1.0.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/runc") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1bpckghjah0rczciw1a1ab8z718lb2d3k4mjm4zb45lpm3njmrcp")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/runc")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.26.0" -; ,go-google-golang-org-protobuf-1.26.0) -; ("go-golang-org-x-sys-0.0.0-20210426230700-d19ff857e887" -; ,go-golang-org-x-sys-0.0.0-20210426230700-d19ff857e887) -; ("go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b" -; ,go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b) -; ("go-github-com-vishvananda-netlink-1.1.0" -; ,go-github-com-vishvananda-netlink-1.1.0) -; ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) -; ("go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635" -; ,go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635) -; ("go-github-com-sirupsen-logrus-1.8.1" -; ,go-github-com-sirupsen-logrus-1.8.1) -; ("go-github-com-seccomp-libseccomp-golang-0.9.1" -; ,go-github-com-seccomp-libseccomp-golang-0.9.1) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-selinux-1.8.2" -; ,go-github-com-opencontainers-selinux-1.8.2) -; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417" -; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417) -; ("go-github-com-mrunalp-fileutils-0.5.0" -; ,go-github-com-mrunalp-fileutils-0.5.0) -; ("go-github-com-moby-sys-mountinfo-0.4.1" -; ,go-github-com-moby-sys-mountinfo-0.4.1) -; ("go-github-com-godbus-dbus-v5-5.0.4" -; ,go-github-com-godbus-dbus-v5-5.0.4) -; ("go-github-com-docker-go-units-0.4.0" -; ,go-github-com-docker-go-units-0.4.0) -; ("go-github-com-cyphar-filepath-securejoin-0.2.2" -; ,go-github-com-cyphar-filepath-securejoin-0.2.2) -; ("go-github-com-coreos-go-systemd-v22-22.3.2" -; ,go-github-com-coreos-go-systemd-v22-22.3.2) -; ("go-github-com-containerd-console-1.0.2" -; ,go-github-com-containerd-console-1.0.2) -; ("go-github-com-cilium-ebpf-0.6.2" ,go-github-com-cilium-ebpf-0.6.2) -; ("go-github-com-checkpoint-restore-go-criu-v5-5.0.0" -; ,go-github-com-checkpoint-restore-go-criu-v5-5.0.0) -; ("go-github-com-bits-and-blooms-bitset-1.2.0" -; ,go-github-com-bits-and-blooms-bitset-1.2.0))) -; (home-page "https://github.com/opencontainers/runc") -; (synopsis "runc") -; (description -; "@code{runc} is a CLI tool for spawning and running containers according to the OCI specification.") -; (license license:asl2.0))) -; -;(define-public go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417 -; (package -; (name "go-github-com-opencontainers-runtime-spec") -; (version "1.0.3-0.20210326190908-1c3f411f0417") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/runtime-spec") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1azk8z41ga8af35c966f06vrq9y9hwz6mkm59r3py5qaamzim3qq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) -; (home-page "https://github.com/opencontainers/runtime-spec") -; (synopsis "Open Container Initiative Runtime Specification") -; (description -; "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") -; (license license:asl2.0))) -; -;(define-public go-github-com-bits-and-blooms-bitset-1.2.0 -; (package -; (name "go-github-com-bits-and-blooms-bitset") -; (version "1.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/bits-and-blooms/bitset") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0r9f7lvz6znl7yr6njg77m8hj472yhdshf1qaybwyw7j8as6c4r3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/bits-and-blooms/bitset")) -; (home-page "https://github.com/bits-and-blooms/bitset") -; (synopsis "bitset") -; (description -; "Package bitset implements bitsets, a mapping -;between non-negative integers and boolean values. It should be more -;efficient than map[uint] bool. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20191115151921-52ab43148777") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1kakxbqrb1w2vwg7r1896z68qcx2lfvimsl8cs2niiipbgpi6imx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-opencontainers-selinux-1.8.2 -; (package -; (name "go-github-com-opencontainers-selinux") -; (version "1.8.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/selinux") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1dl1h8nzpyhsfki1dcjphm5h4n52qwilahyl6qlnwgzcc76pwizq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/selinux")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777" -; ,go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-bits-and-blooms-bitset-1.2.0" -; ,go-github-com-bits-and-blooms-bitset-1.2.0))) -; (home-page "https://github.com/opencontainers/selinux") -; (synopsis "selinux") -; (description "Common SELinux package used across the container ecosystem.") -; (license license:asl2.0))) -; -;(define-public go-github-com-pelletier-go-toml-1.8.1 -; (package -; (name "go-github-com-pelletier-go-toml") -; (version "1.8.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/pelletier/go-toml") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1pi1r9ds0vxjza4qrbk52y98wxrzh1ghwzc9c2v1w6i02pdwdcz9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/pelletier/go-toml")) -; (propagated-inputs -; `(("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://github.com/pelletier/go-toml") -; (synopsis "go-toml") -; (description "Package toml is a TOML parser and manipulation library. -;") -; (license #f))) -; -;(define-public go-github-com-satori-go-uuid-1.2.0 -; (package -; (name "go-github-com-satori-go-uuid") -; (version "1.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/satori/go.uuid") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1j4s5pfg2ldm35y8ls8jah4dya2grfnx2drb4jcbjsyrp4cm5yfb")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/satori/go.uuid")) -; (home-page "https://github.com/satori/go.uuid") -; (synopsis "UUID package for Go language") -; (description -; "Package uuid provides implementation of Universally Unique Identifier (UUID). -;Supported versions are 1, 3, 4 and 5 (as specified in @url{https://rfc-editor.org/rfc/rfc4122.html,RFC 4122}) and -;version 2 (as specified in DCE 1.1). -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20191026070338-33540a1f6037") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0fjcv0vzvi6za0b4xmnk3932pr9f9gczzf03y0kgq3ry9rqg169y")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-sirupsen-logrus-1.8.1 -; (package -; (name "go-github-com-sirupsen-logrus") -; (version "1.8.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/sirupsen/logrus") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0rvqzic2zz7fpxyizmqxwmhv1m52ii9bgxnqa6km8wsa0l08wh42")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/sirupsen/logrus")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037" -; ,go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037) -; ("go-github-com-stretchr-testify-1.2.2" -; ,go-github-com-stretchr-testify-1.2.2) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://github.com/sirupsen/logrus") -; (synopsis "Logrus") -; (description -; "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. -;") -; (license license:expat))) -; -;(define-public go-github-com-tchap-go-patricia-2.2.6+incompatible -; (package -; (name "go-github-com-tchap-go-patricia") -; (version "2.2.6+incompatible") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/tchap/go-patricia") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1yy1s3pnll52iyzphwi50drvz36lx628vn3xfy5ld29fxqngrckb")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/tchap/go-patricia")) -; (home-page "https://github.com/tchap/go-patricia") -; (synopsis "go-patricia") -; (description -; "@strong{Documentation}: @url{http://godoc.org/github.com/tchap/go-patricia/patricia,GoDoc} -;@strong{Test Coverage}: @url{https://coveralls.io/r/tchap/go-patricia,(img (@ (src https://coveralls.io/repos/tchap/go-patricia/badge.png) (alt CoverageStatus)))}") -; (license license:expat))) -; -;(define-public go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20201119102817-f84b799fce68") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1dvhqian5byzkcg1bnqzygqa6ccc6krc2q7j12pp1vhl3y7znnsg")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1 -; (package -; (name "go-golang-org-x-term") -; (version "0.0.0-20201126162022-7de9c90e9dd1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/term") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ba252xmv6qsvf1w1gcy98mngrj0vd4inbjw0lsklqvva65nljna")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/term")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" -; ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) -; (home-page "https://golang.org/x/term") -; (synopsis "Go terminal/console support") -; (description -; "Package term provides support functions for dealing with terminals, as -;commonly found on UNIX systems. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20210226172049-e18ecbb05110") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1vlq8mdscp7yfaa1lmyv03y5m4c2d67ydg2q1i6smkrxghn3zn3q")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) -; ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" -; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) -; ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" -; ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a -; (package -; (name "go-golang-org-x-sync") -; (version "0.0.0-20201207232520-09787c993a3a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sync") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1nv4mwi9njkkyc7lwmxrjr8ggfh2cf1c67a9bq85dnss81vpj61y")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sync")) -; (home-page "https://golang.org/x/sync") -; (synopsis "Go Sync") -; (description -; "This repository provides Go concurrency primitives in addition to the -;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20210426230700-d19ff857e887 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20210426230700-d19ff857e887") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "12m35a34dfm99agcv2ln9zvvyczigaxfwqbzqirvwn1lw4784whn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-gotest-tools-v3-3.0.3 -; (package -; (name "go-gotest-tools-v3") -; (version "3.0.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/gotestyourself/gotest.tools") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1h316233n33lkfhbak8ljdj5i8df6hcwwm48n200svf22x3d95ww")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gotest.tools/v3" #:unpack-path "gotest.tools/v3")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20190624222133-a101b041ded4" -; ,go-golang-org-x-tools-0.0.0-20190624222133-a101b041ded4) -; ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) -; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0))) -; (home-page "https://gotest.tools/v3") -; (synopsis "gotest.tools") -; (description -; "Package gotesttools is a collection of packages to augment `testing` and -;support common patterns. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-coreos-go-oidc-2.1.0+incompatible -; (package -; (name "go-github-com-coreos-go-oidc") -; (version "2.1.0+incompatible") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/coreos/go-oidc") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0y9vxack1whvxy766jrc6xhh2rfkvnznwxi356si2kabzjv2lp6h")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/coreos/go-oidc")) -; (home-page "https://github.com/coreos/go-oidc") -; (synopsis "go-oidc") -; (description -; "Package oidc implements OpenID Connect client logic for the golang.org/x/oauth2 package. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-coreos-go-semver-0.3.0 -; (package -; (name "go-github-com-coreos-go-semver") -; (version "0.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/coreos/go-semver") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0770h1mpig2j5sbiha3abnwaw8p6dg9i87r8pc7cf6m4kwml3sc9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/coreos/go-semver")) -; (home-page "https://github.com/coreos/go-semver") -; (synopsis "go-semver - Semantic Versioning Library") -; (description -; "go-semver is a @url{http://semver.org/,semantic versioning} library for Go. It lets you parse -;and compare two semantic version strings.") -; (license license:asl2.0))) -; -;(define-public go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e -; (package -; (name "go-github-com-coreos-go-systemd") -; (version "0.0.0-20190321100706-95778dfbb74e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/coreos/go-systemd") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1s3bg9p78wkixn2bqb2p23wbsqfg949ml6crw2b498s71mwh8rcf")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/coreos/go-systemd")) -; (home-page "https://github.com/coreos/go-systemd") -; (synopsis "go-systemd") -; (description "Go bindings to systemd. The project has several packages:") -; (license license:asl2.0))) -; -;(define-public go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f -; (package -; (name "go-github-com-coreos-pkg") -; (version "0.0.0-20180928190104-399ea9e2e55f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/coreos/pkg") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0nxbn0m7lr4dg0yrwnvlkfiyg3ndv8vdpssjx7b714nivpc6ar0y")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/coreos/pkg")) -; (home-page "https://github.com/coreos/pkg") -; (synopsis #f) -; (description "a collection of go utility packages") -; (license license:asl2.0))) -; -;(define-public go-github-com-dustin-go-humanize-1.0.0 -; (package -; (name "go-github-com-dustin-go-humanize") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/dustin/go-humanize") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1kqf1kavdyvjk7f8kx62pnm7fbypn9z1vbf8v2qdh3y7z7a0cbl3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/dustin/go-humanize")) -; (home-page "https://github.com/dustin/go-humanize") -; (synopsis "Humane Units") -; (description -; "Package humanize converts boring ugly numbers to human-friendly strings and back. -;") -; (license license:expat))) -; -;(define-public go-github-com-emicklei-go-restful-2.9.5+incompatible -; (package -; (name "go-github-com-emicklei-go-restful") -; (version "2.9.5+incompatible") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/emicklei/go-restful") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0258y7q2krih98zznc4jsym9mf689afn6nsnsif1jhshrj653k36")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/emicklei/go-restful")) -; (home-page "https://github.com/emicklei/go-restful") -; (synopsis "go-restful") -; (description -; "Package restful , a lean package for creating REST-style WebServices without magic. -;") -; (license license:expat))) -; -;(define-public go-github-com-gorilla-websocket-1.4.2 -; (package -; (name "go-github-com-gorilla-websocket") -; (version "1.4.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/gorilla/websocket") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0mkm9w6kjkrlzab5wh8p4qxkc0icqawjbvr01d2nk6ykylrln40s")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/gorilla/websocket")) -; (home-page "https://github.com/gorilla/websocket") -; (synopsis "Gorilla WebSocket") -; (description -; "Package websocket implements the WebSocket protocol defined in @url{https://rfc-editor.org/rfc/rfc6455.html,RFC 6455}. -;") -; (license license:bsd-2))) -; -;(define-public go-github-com-mailru-easyjson-0.7.0 -; (package -; (name "go-github-com-mailru-easyjson") -; (version "0.7.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mailru/easyjson") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "13zv5fvjp3nr65lhqhiw6i6mlmqvyls882rlmcas0ab35alsxni8")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mailru/easyjson")) -; (home-page "https://github.com/mailru/easyjson") -; (synopsis "easyjson") -; (description -; "Package easyjson contains marshaler/unmarshaler interfaces and helper functions. -;") -; (license license:expat))) -; -;(define-public go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822 -; (package -; (name "go-github-com-munnerz-goautoneg") -; (version "0.0.0-20191010083416-a7dc8b61c822") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/munnerz/goautoneg") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1m4v6bw6yf1g0kvpc46isjp0qfhx2y8gnvlnyjf637jy64613mgg")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/munnerz/goautoneg")) -; (home-page "https://github.com/munnerz/goautoneg") -; (synopsis #f) -; (description #f) -; (license license:bsd-3))) -; -;(define-public go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021 -; (package -; (name "go-github-com-pquerna-cachecontrol") -; (version "0.0.0-20171018203845-0dec1b30a021") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/pquerna/cachecontrol") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "14yyfhrv60rvb983rqm7s916nwvn9kcmbvnrcna2md0s3mkzs3yh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/pquerna/cachecontrol")) -; (home-page "https://github.com/pquerna/cachecontrol") -; (synopsis "cachecontrol: HTTP Caching Parser and Interpretation") -; (description -; "Package cachecontrol implements the logic for HTTP Caching -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5 -; (package -; (name "go-github-com-tmc-grpc-websocket-proxy") -; (version "0.0.0-20190109142713-0ad062ec5ee5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/tmc/grpc-websocket-proxy") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1anw4v9wspnw9xf2z5r9w0sszwjklyanl0l85wgg6nxak9gnrqp4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/tmc/grpc-websocket-proxy")) -; (home-page "https://github.com/tmc/grpc-websocket-proxy") -; (synopsis "grpc-websocket-proxy") -; (description -; "Wrap your grpc-gateway mux with this helper to expose streaming endpoints over websockets.") -; (license license:expat))) -; -;(define-public go-golang-org-x-sys-0.0.0-20200202164722-d101bd2416d5 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20200202164722-d101bd2416d5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ksxf37b0ym21n8j29m3wgbaiw1kcjw3hgf88kipc1ry2j13l98p")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-go-etcd-io-bbolt-1.3.5 -; (package -; (name "go-go-etcd-io-bbolt") -; (version "1.3.5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/etcd-io/bbolt") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1h64gipvcg7060byv5wjlf524kqwj12p3v08kfh4ygv46vpm8p2r")))) -; (build-system go-build-system) -; (arguments '(#:import-path "go.etcd.io/bbolt")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20200202164722-d101bd2416d5" -; ,go-golang-org-x-sys-0.0.0-20200202164722-d101bd2416d5))) -; (home-page "https://go.etcd.io/bbolt") -; (synopsis "bbolt") -; (description -; "package bbolt implements a low-level key/value store in pure Go. It supports -;fully serializable transactions, ACID semantics, and lock-free MVCC with -;multiple readers and a single writer. Bolt can be used for projects that -;want a simple data store without the need to add large dependencies such as -;Postgres or MySQL. -;") -; (license license:expat))) -; -;(define-public go-github-com-bgentry-speakeasy-0.1.0 -; (package -; (name "go-github-com-bgentry-speakeasy") -; (version "0.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/bgentry/speakeasy") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "02dfrj0wyphd3db9zn2mixqxwiz1ivnyc5xc7gkz58l5l27nzp8s")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/bgentry/speakeasy")) -; (home-page "https://github.com/bgentry/speakeasy") -; (synopsis "Speakeasy") -; (description -; "This package provides cross-platform Go (#golang) helpers for taking user input -;from the terminal while not echoing the input back (similar to @code{getpasswd}). The -;package uses syscalls to avoid any dependence on cgo, and is therefore -;compatible with cross-compiling.") -; (license license:expat))) -; -;(define-public go-github-com-cockroachdb-datadriven-0.0.0-20190809214429-80d97fb3cbaa -; (package -; (name "go-github-com-cockroachdb-datadriven") -; (version "0.0.0-20190809214429-80d97fb3cbaa") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/cockroachdb/datadriven") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0rvavka9zhri6r50n8fy98247fl5vycb1hffjrhshsicjv1frmlp")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/cockroachdb/datadriven")) -; (home-page "https://github.com/cockroachdb/datadriven") -; (synopsis "Data-Driven Tests for Go") -; (description -; "This repository implements an extension of @url{https://github.com/golang/go/wiki/TableDrivenTests,Table-Driven Testing}. Instead of -;building and iterating over a table in the test code, the input is further -;separated into files (or inline strings). For certain classes of tests, this -;can significantly reduce the friction involved in writing and reading these -;tests.") -; (license license:asl2.0))) -; -;(define-public go-github-com-coreos-go-semver-0.2.0 -; (package -; (name "go-github-com-coreos-go-semver") -; (version "0.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/coreos/go-semver") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1gghi5bnqj50hfxhqc1cxmynqmh2yk9ii7ab9gsm75y5cp94ymk0")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/coreos/go-semver")) -; (home-page "https://github.com/coreos/go-semver") -; (synopsis "go-semver - Semantic Versioning Library") -; (description -; "go-semver is a @url{http://semver.org/,semantic versioning} library for Go. It lets you parse -;and compare two semantic version strings.") -; (license license:asl2.0))) -; -;(define-public go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7 -; (package -; (name "go-github-com-coreos-go-systemd") -; (version "0.0.0-20180511133405-39ca1b05acc7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/coreos/go-systemd") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1kzqrrzqspa5qm7kwslxl3m16lqzns23c24rv474ajzwmj3ixmx1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/coreos/go-systemd")) -; (home-page "https://github.com/coreos/go-systemd") -; (synopsis "go-systemd") -; (description "Go bindings to systemd. The project has several packages:") -; (license license:asl2.0))) -; -;(define-public go-github-com-coreos-pkg-0.0.0-20160727233714-3ac0863d7acf -; (package -; (name "go-github-com-coreos-pkg") -; (version "0.0.0-20160727233714-3ac0863d7acf") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/coreos/pkg") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0l5ans1ls2gknkrnhymgc0zbgg5nqjbjbqc51r611adcr0m6gg8l")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/coreos/pkg")) -; (home-page "https://github.com/coreos/pkg") -; (synopsis #f) -; (description "a collection of go utility packages") -; (license license:asl2.0))) -; -;(define-public go-github-com-creack-pty-1.1.7 -; (package -; (name "go-github-com-creack-pty") -; (version "1.1.7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/creack/pty") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1plwwlk1i9b80zv8zdplvv81shfyc9gf0flydnydsh5sr3ib5vrc")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/creack/pty")) -; (home-page "https://github.com/creack/pty") -; (synopsis "pty") -; (description -; "Package pty provides functions for working with Unix terminals. -;") -; (license license:expat))) -; -;(define-public go-github-com-dgrijalva-jwt-go-3.2.0+incompatible -; (package -; (name "go-github-com-dgrijalva-jwt-go") -; (version "3.2.0+incompatible") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/dgrijalva/jwt-go") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "08m27vlms74pfy5z79w67f9lk9zkx6a9jd68k3c4msxy75ry36mp")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/dgrijalva/jwt-go")) -; (home-page "https://github.com/dgrijalva/jwt-go") -; (synopsis "jwt-go") -; (description -; "Package jwt is a Go implementation of JSON Web Tokens: @url{http://self-issued.info/docs/draft-jones-json-web-token.html,http://self-issued.info/docs/draft-jones-json-web-token.html} -;") -; (license license:expat))) -; -;(define-public go-github-com-dustin-go-humanize-0.0.0-20171111073723-bb3d318650d4 -; (package -; (name "go-github-com-dustin-go-humanize") -; (version "0.0.0-20171111073723-bb3d318650d4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/dustin/go-humanize") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1lqd8ix3cb164j5iazjby2jpa6bdsflhy0h9mi4yldvvcvrc194c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/dustin/go-humanize")) -; (home-page "https://github.com/dustin/go-humanize") -; (synopsis "Humane Units") -; (description -; "Package humanize converts boring ugly numbers to human-friendly strings and back. -;") -; (license license:expat))) -; -;(define-public go-github-com-fatih-color-1.7.0 -; (package -; (name "go-github-com-fatih-color") -; (version "1.7.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/fatih/color") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0v8msvg38r8d1iiq2i5r4xyfx0invhc941kjrsg5gzwvagv55inv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/fatih/color")) -; (home-page "https://github.com/fatih/color") -; (synopsis "color") -; (description -; "Package color is an ANSI color package to output colorized or SGR defined -;output to the standard output. The API can be used in several way, pick one -;that suits you. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-tools-0.0.0-20180221164845-07fd8470d635 -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20180221164845-07fd8470d635") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "193g0a1zxb9ikph7r2klc6rdqxqzfmmr8d5bcibyhsm2l63s17mx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-github-com-kisielk-errcheck-1.1.0 -; (package -; (name "go-github-com-kisielk-errcheck") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kisielk/errcheck") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "19vd4rxmqbk5lpiav3pf7df3yjlz0l0dwx9mn0gjq5f998iyhy6y")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kisielk/errcheck")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20180221164845-07fd8470d635" -; ,go-golang-org-x-tools-0.0.0-20180221164845-07fd8470d635) -; ("go-github-com-kisielk-gotool-1.0.0" -; ,go-github-com-kisielk-gotool-1.0.0))) -; (home-page "https://github.com/kisielk/errcheck") -; (synopsis "errcheck") -; (description -; "errcheck is a program for checking for unchecked errors in go programs.") -; (license license:expat))) -; -;(define-public go-github-com-gogo-protobuf-1.2.1 -; (package -; (name "go-github-com-gogo-protobuf") -; (version "1.2.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/gogo/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "06yqa6h0kw3gr5pc3qmas7f7435a96zf7iw7p0l00r2hqf6fqq6m")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/gogo/protobuf")) -; (propagated-inputs -; `(("go-github-com-kisielk-errcheck-1.1.0" -; ,go-github-com-kisielk-errcheck-1.1.0))) -; (home-page "https://github.com/gogo/protobuf") -; (synopsis "Protocol Buffers for Go with Gadgets") -; (description -; "gogoprotobuf is a fork of @url{https://github.com/golang/protobuf,golang/protobuf} with extra code generation features.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-groupcache-0.0.0-20160516000752-02826c3e7903 -; (package -; (name "go-github-com-golang-groupcache") -; (version "0.0.0-20160516000752-02826c3e7903") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/groupcache") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0w46bsllddfij66nrg8jbfjsr54birvfww8a2fj9fmgyig5syn2x")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/groupcache")) -; (home-page "https://github.com/golang/groupcache") -; (synopsis "groupcache") -; (description -; "Package groupcache provides a data loading mechanism with caching -;and de-duplication that works across a set of peer processes. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-google-btree-1.0.0 -; (package -; (name "go-github-com-google-btree") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/btree") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ba430m9fbnagacp57krgidsyrgp3ycw5r7dj71brgp5r52g82p6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/btree")) -; (home-page "https://github.com/google/btree") -; (synopsis "BTree implementation for Go") -; (description -; "Package btree implements in-memory B-Trees of arbitrary degree. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-google-uuid-1.0.0 -; (package -; (name "go-github-com-google-uuid") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/uuid") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1922bjrnx66692dm0rrc1ckmznsaqx920ww4jzsds3xzrwf15mqv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/uuid")) -; (home-page "https://github.com/google/uuid") -; (synopsis "uuid") -; (description "Package uuid generates and inspects UUIDs. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-gorilla-websocket-0.0.0-20170926233335-4201258b820c -; (package -; (name "go-github-com-gorilla-websocket") -; (version "0.0.0-20170926233335-4201258b820c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/gorilla/websocket") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1kpdg3m46kp15ixl9ahhchhadyiblz0qpcxzylp8jhffc1rnxjb7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/gorilla/websocket")) -; (home-page "https://github.com/gorilla/websocket") -; (synopsis "Gorilla WebSocket") -; (description -; "Package websocket implements the WebSocket protocol defined in @url{https://rfc-editor.org/rfc/rfc6455.html,RFC 6455}. -;") -; (license license:bsd-2))) -; -;(define-public go-github-com-grpc-ecosystem-go-grpc-middleware-1.0.1-0.20190118093823-f849b5445de4 -; (package -; (name "go-github-com-grpc-ecosystem-go-grpc-middleware") -; (version "1.0.1-0.20190118093823-f849b5445de4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc-ecosystem/go-grpc-middleware") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0hscypgj0nd1407jp6y4qrnrr0mrhc4wgxz9b3mj1cs3pkvi61vc")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/grpc-ecosystem/go-grpc-middleware")) -; (home-page "https://github.com/grpc-ecosystem/go-grpc-middleware") -; (synopsis "Go gRPC Middleware") -; (description -; "`grpc_middleware` is a collection of gRPC middleware packages: interceptors, helpers and tools. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0 -; (package -; (name "go-github-com-grpc-ecosystem-go-grpc-prometheus") -; (version "1.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc-ecosystem/go-grpc-prometheus") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1lzk54h7np32b3acidg1ggbn8ppbnns0m71gcg9d1qkkdh8zrijl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/grpc-ecosystem/go-grpc-prometheus")) -; (home-page "https://github.com/grpc-ecosystem/go-grpc-prometheus") -; (synopsis "Go gRPC Interceptors for Prometheus monitoring") -; (description -; "@url{https://prometheus.io/,Prometheus} monitoring for your @url{https://github.com/grpc/grpc-go,gRPC Go} servers and clients.") -; (license license:asl2.0))) -; -;(define-public go-github-com-ghodss-yaml-1.0.0 -; (package -; (name "go-github-com-ghodss-yaml") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/ghodss/yaml") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0skwmimpy7hlh7pva2slpcplnm912rp3igs98xnqmn859kwa5v8g")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/ghodss/yaml")) -; (home-page "https://github.com/ghodss/yaml") -; (synopsis "YAML marshaling and unmarshaling support for Go") -; (description -; "Copyright 2013 The Go Authors. All rights reserved. -;Use of this source code is governed by a BSD-style -;license that can be found in the LICENSE file. -;") -; (license #f))) -; -;(define-public go-github-com-rogpeppe-fastuuid-0.0.0-20150106093220-6724a57986af -; (package -; (name "go-github-com-rogpeppe-fastuuid") -; (version "0.0.0-20150106093220-6724a57986af") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/rogpeppe/fastuuid") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "12s65phfx6hxj4v0b5kj8akgrbf5mxpa101fyzw03h6hld1f70cz")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/rogpeppe/fastuuid")) -; (home-page "https://github.com/rogpeppe/fastuuid") -; (synopsis "fastuuid") -; (description -; "Package fastuuid provides fast UUID generation of 192 bit -;universally unique identifiers. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20181107165924-66b7b1311ac8") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "00ny4r2bbj6rz939iy9g699acqydq7rfi6r6awn25w9i2dld9m13")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20181220203305-927f97764cc3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0np7b766gb92vbm514yhdl7cjmqvn0dxdxskd84aas2ri1fkpgw5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-gopkg-in-resty-v1-1.12.0 -; (package -; (name "go-gopkg-in-resty-v1") -; (version "1.12.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/resty.v1") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "062mn735rqzhha5ag07z4gz08hxzrfm2yx067jfmaaxmb6797lmp")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/resty.v1" #:unpack-path "gopkg.in/resty.v1")) -; (propagated-inputs -; `(("go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3" -; ,go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3))) -; (home-page "https://gopkg.in/resty.v1") -; (synopsis "News") -; (description -; "Package resty provides Simple HTTP and REST client library for Go. -;") -; (license license:expat))) -; -;(define-public go-gopkg-in-yaml-v2-2.0.0-20170812160011-eb3733d160e7 -; (package -; (name "go-gopkg-in-yaml-v2") -; (version "2.0.0-20170812160011-eb3733d160e7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/yaml.v2") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1srhvcaa9db3a6xj29mkjr5kg33y71pclrlx4vcwz5m1lgb5c7q6")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) -; (home-page "https://gopkg.in/yaml.v2") -; (synopsis "YAML support for the Go language") -; (description "Package yaml implements YAML support for the Go language. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-grpc-ecosystem-grpc-gateway-1.9.5 -; (package -; (name "go-github-com-grpc-ecosystem-grpc-gateway") -; (version "1.9.5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc-ecosystem/grpc-gateway") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0acpbxa1i1bxcpkclkcif2macbcfrlywb58vly5pzwsj261mg58a")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/grpc-ecosystem/grpc-gateway")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.0.0-20170812160011-eb3733d160e7" -; ,go-gopkg-in-yaml-v2-2.0.0-20170812160011-eb3733d160e7) -; ("go-gopkg-in-resty-v1-1.12.0" ,go-gopkg-in-resty-v1-1.12.0) -; ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" -; ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) -; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) -; ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" -; ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) -; ("go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8" -; ,go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8) -; ("go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3" -; ,go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3) -; ("go-github-com-rogpeppe-fastuuid-0.0.0-20150106093220-6724a57986af" -; ,go-github-com-rogpeppe-fastuuid-0.0.0-20150106093220-6724a57986af) -; ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-ghodss-yaml-1.0.0" ,go-github-com-ghodss-yaml-1.0.0))) -; (home-page "https://github.com/grpc-ecosystem/grpc-gateway") -; (synopsis "grpc-gateway") -; (description -; "The grpc-gateway is a plugin of the Google protocol buffers compiler -;@url{https://github.com/protocolbuffers/protobuf,protoc}. -;It reads protobuf service definitions and generates a reverse-proxy server which -;translates a RESTful HTTP API into gRPC. This server is generated according to the -;@url{https://github.com/googleapis/googleapis/raw/master/google/api/http.proto#L46,(code google.api.http)} -;annotations in your service definitions.") -; (license license:bsd-3))) -; -;(define-public go-github-com-inconshreveable-mousetrap-1.0.0 -; (package -; (name "go-github-com-inconshreveable-mousetrap") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/inconshreveable/mousetrap") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1mn0kg48xkd74brf48qf5hzp0bc6g8cf5a77w895rl3qnlpfw152")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/inconshreveable/mousetrap")) -; (home-page "https://github.com/inconshreveable/mousetrap") -; (synopsis "mousetrap") -; (description "mousetrap is a tiny library that answers a single question.") -; (license license:asl2.0))) -; -;(define-public go-github-com-jonboulle-clockwork-0.1.0 -; (package -; (name "go-github-com-jonboulle-clockwork") -; (version "0.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/jonboulle/clockwork") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1pqxhsdavbp1n5grgyx2j6ylvql2fzn2cvpsgkc8li69dil7sibl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/jonboulle/clockwork")) -; (home-page "https://github.com/jonboulle/clockwork") -; (synopsis "clockwork") -; (description -; "Replace uses of the @code{time} package with the @code{clockwork.Clock} interface instead.") -; (license license:asl2.0))) -; -;(define-public go-github-com-json-iterator-go-1.1.7 -; (package -; (name "go-github-com-json-iterator-go") -; (version "1.1.7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/json-iterator/go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0n79p4s67zl5zprxv7diayw3vavnmmfqkmd6snz0i9bxp825dsyz")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/json-iterator/go")) -; (propagated-inputs -; `(("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0) -; ("go-github-com-modern-go-reflect2-0.0.0-20180701023420-4b7aa43c6742" -; ,go-github-com-modern-go-reflect2-0.0.0-20180701023420-4b7aa43c6742) -; ("go-github-com-modern-go-concurrent-0.0.0-20180228061459-e0a39a4cb421" -; ,go-github-com-modern-go-concurrent-0.0.0-20180228061459-e0a39a4cb421) -; ("go-github-com-google-gofuzz-1.0.0" -; ,go-github-com-google-gofuzz-1.0.0) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://github.com/json-iterator/go") -; (synopsis "Benchmark") -; (description -; "Package jsoniter implements encoding and decoding of JSON as defined in -;@url{https://rfc-editor.org/rfc/rfc4627.html,RFC 4627} and provides interfaces with identical syntax of standard lib encoding/json. -;Converting from encoding/json to jsoniter is no more than replacing the package with jsoniter -;and variable type declarations (if any). -;jsoniter interfaces gives 100% compatibility with code using standard lib. -;") -; (license license:expat))) -; -;(define-public go-github-com-mattn-go-colorable-0.0.9 -; (package -; (name "go-github-com-mattn-go-colorable") -; (version "0.0.9") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mattn/go-colorable") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1nwjmsppsjicr7anq8na6md7b1z84l9ppnlr045hhxjvbkqwalvx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mattn/go-colorable")) -; (home-page "https://github.com/mattn/go-colorable") -; (synopsis "go-colorable") -; (description "Colorable writer for windows.") -; (license license:expat))) -; -;(define-public go-github-com-mattn-go-isatty-0.0.4 -; (package -; (name "go-github-com-mattn-go-isatty") -; (version "0.0.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mattn/go-isatty") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0zs92j2cqaw9j8qx1sdxpv3ap0rgbs0vrvi72m40mg8aa36gd39w")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mattn/go-isatty")) -; (home-page "https://github.com/mattn/go-isatty") -; (synopsis "go-isatty") -; (description "Package isatty implements interface to isatty -;") -; (license license:expat))) -; -;(define-public go-github-com-mattn-go-runewidth-0.0.2 -; (package -; (name "go-github-com-mattn-go-runewidth") -; (version "0.0.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mattn/go-runewidth") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0vkrfrz3fzn5n6ix4k8s0cg0b448459sldq8bp4riavsxm932jzb")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mattn/go-runewidth")) -; (home-page "https://github.com/mattn/go-runewidth") -; (synopsis "go-runewidth") -; (description -; "This package provides functions to get fixed width of the character or string.") -; (license license:expat))) -; -;(define-public go-github-com-olekukonko-tablewriter-0.0.0-20170122224234-a0225b3f23b5 -; (package -; (name "go-github-com-olekukonko-tablewriter") -; (version "0.0.0-20170122224234-a0225b3f23b5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/olekukonko/tablewriter") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0bp9r6xzy6d3p7l2hjmvr25y3rp3p8c9xv1agkllkksm45ng6681")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/olekukonko/tablewriter")) -; (home-page "https://github.com/olekukonko/tablewriter") -; (synopsis "ASCII Table Writer") -; (description "Create & Generate text based table -;") -; (license license:expat))) -; -;(define-public go-github-com-soheilhy-cmux-0.1.4 -; (package -; (name "go-github-com-soheilhy-cmux") -; (version "0.1.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/soheilhy/cmux") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1f736g68d9vwlyfb6g0fxkr0r875369xafk30cz8kaq5niaqwv0h")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/soheilhy/cmux")) -; (home-page "https://github.com/soheilhy/cmux") -; (synopsis "cmux: Connection Mux") -; (description -; "Package cmux is a library to multiplex network connections based on -;their payload. Using cmux, you can serve different protocols from the -;same listener. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-spf13-cobra-0.0.3 -; (package -; (name "go-github-com-spf13-cobra") -; (version "0.0.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/spf13/cobra") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1q1nsx05svyv9fv3fy6xv6gs9ffimkyzsfm49flvl3wnvf1ncrkd")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/spf13/cobra")) -; (home-page "https://github.com/spf13/cobra") -; (synopsis "Table of Contents") -; (description -; "Package cobra is a commander providing a simple interface to create powerful modern CLI interfaces. -;In addition to providing an interface, Cobra simultaneously provides a controller to organize your application code. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-spf13-pflag-1.0.1 -; (package -; (name "go-github-com-spf13-pflag") -; (version "1.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/spf13/pflag") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0nr4mdpfhhk94hq4ymn5b2sxc47b29p1akxd8b0hx4dvdybmipb5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/spf13/pflag")) -; (home-page "https://github.com/spf13/pflag") -; (synopsis "Description") -; (description -; "Package pflag is a drop-in replacement for Go's flag package, implementing -;POSIX/GNU-style --flags. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-tmc-grpc-websocket-proxy-0.0.0-20170815181823-89b8d40f7ca8 -; (package -; (name "go-github-com-tmc-grpc-websocket-proxy") -; (version "0.0.0-20170815181823-89b8d40f7ca8") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/tmc/grpc-websocket-proxy") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1bg6m0cycy5sww175zkbnhi9lvzb08iicc8xka8klrgaa9mc5nsk")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/tmc/grpc-websocket-proxy")) -; (home-page "https://github.com/tmc/grpc-websocket-proxy") -; (synopsis "grpc-websocket-proxy") -; (description -; "Wrap your grpc-gateway mux with this helper to expose streaming endpoints over websockets.") -; (license license:expat))) -; -;(define-public go-github-com-urfave-cli-1.20.0 -; (package -; (name "go-github-com-urfave-cli") -; (version "1.20.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/urfave/cli") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0y6f4sbzkiiwrxbl15biivj8c7qwxnvm3zl2dd3mw4wzg4x10ygj")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/urfave/cli")) -; (home-page "https://github.com/urfave/cli") -; (synopsis "cli") -; (description -; "Package cli provides a minimal framework for creating and organizing command line -;Go applications. cli is designed to be easy to understand and write, the most simple -;cli application can be written as follows: -;") -; (license license:expat))) -; -;(define-public go-github-com-xiang90-probing-0.0.0-20190116061207-43a291ad63a2 -; (package -; (name "go-github-com-xiang90-probing") -; (version "0.0.0-20190116061207-43a291ad63a2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/xiang90/probing") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1z22ms16j5j42775mf31isanwx2pwr1d8wqw8006dczjv36qnz5i")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/xiang90/probing")) -; (home-page "https://github.com/xiang90/probing") -; (synopsis "Getting Started") -; (description "We first need to serve the probing HTTP handler.") -; (license license:expat))) -; -;(define-public go-go-etcd-io-bbolt-1.3.3 -; (package -; (name "go-go-etcd-io-bbolt") -; (version "1.3.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/etcd-io/bbolt") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0dn0zngks9xiz0rrrb3911f73ghl64z84jsmzai2yfmzqr7cdkqc")))) -; (build-system go-build-system) -; (arguments '(#:import-path "go.etcd.io/bbolt")) -; (home-page "https://go.etcd.io/bbolt") -; (synopsis "bbolt") -; (description -; "package bbolt implements a low-level key/value store in pure Go. It supports -;fully serializable transactions, ACID semantics, and lock-free MVCC with -;multiple readers and a single writer. Bolt can be used for projects that -;want a simple data store without the need to add large dependencies such as -;Postgres or MySQL. -;") -; (license license:expat))) -; -;(define-public go-go-uber-org-atomic-1.3.2 -; (package -; (name "go-go-uber-org-atomic") -; (version "1.3.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/uber-go/atomic") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "11pzvjys5ddjjgrv94pgk9pnip9yyb54z7idf33zk7p7xylpnsv6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "go.uber.org/atomic")) -; (home-page "https://go.uber.org/atomic") -; (synopsis "atomic") -; (description -; "Package atomic provides simple wrappers around numerics to enforce atomic -;access. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-net-0.0.0-20190813141303-74dc4d7220e7 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20190813141303-74dc4d7220e7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0563yswwqknxx2gsvl0qikn0lmwalilbng8i12iw4d3v40n23s0l")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190826190057-c7b8b68b1456 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190826190057-c7b8b68b1456") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0lqnnrx5prrvkinnhgyvzzhcyvi8x5w54rlp336xjhpslkgqn132")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-time-0.0.0-20180412165947-fbb02b2291d2 -; (package -; (name "go-golang-org-x-time") -; (version "0.0.0-20180412165947-fbb02b2291d2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/time") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0jjqcv6rzihlgg4i797q80g1f6ch5diz2kxqh6488gwkb6nds4h4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/time")) -; (home-page "https://golang.org/x/time") -; (synopsis "Go Time") -; (description "This repository provides supplementary Go time packages.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-grpc-1.26.0 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.26.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1qsb2mcswpp3vd7i9gfvz4a3ypdwk2svhhn09nyywgb1vvw80krv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" -; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-github-com-google-go-cmp-0.2.0" -; ,go-github-com-google-go-cmp-0.2.0) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2) -; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" -; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) -; ("go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473" -; ,go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-gopkg-in-cheggaaa-pb-v1-1.0.25 -; (package -; (name "go-gopkg-in-cheggaaa-pb-v1") -; (version "1.0.25") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/cheggaaa/pb.v1") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0vxqiw6f3xyv0zy3g4lksf8za0z8i0hvfpw92hqimsy84f79j3dp")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path -; "gopkg.in/cheggaaa/pb.v1" -; #:unpack-path -; "gopkg.in/cheggaaa/pb.v1")) -; (home-page "https://gopkg.in/cheggaaa/pb.v1") -; (synopsis "Terminal progress bar for Go") -; (description "Simple console progress bars -;") -; (license license:bsd-3))) -; -;(define-public go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489 -; (package -; (name "go-go-etcd-io-etcd") -; (version "0.5.0-alpha.5.0.20200910180754-dd1b699fc489") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/etcd-io/etcd") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "11zkvkq7ipqi0n8y05zgn8lf7qm59xdk75x7jbxj5sflx38yfa0k")))) -; (build-system go-build-system) -; (arguments '(#:import-path "go.etcd.io/etcd")) -; (propagated-inputs -; `(("go-sigs-k8s-io-yaml-1.1.0" ,go-sigs-k8s-io-yaml-1.1.0) -; ("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" -; ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) -; ("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) -; ("go-gopkg-in-cheggaaa-pb-v1-1.0.25" -; ,go-gopkg-in-cheggaaa-pb-v1-1.0.25) -; ("go-google-golang-org-grpc-1.26.0" ,go-google-golang-org-grpc-1.26.0) -; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" -; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) -; ("go-golang-org-x-time-0.0.0-20180412165947-fbb02b2291d2" -; ,go-golang-org-x-time-0.0.0-20180412165947-fbb02b2291d2) -; ("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) -; ("go-golang-org-x-sys-0.0.0-20190826190057-c7b8b68b1456" -; ,go-golang-org-x-sys-0.0.0-20190826190057-c7b8b68b1456) -; ("go-golang-org-x-net-0.0.0-20190813141303-74dc4d7220e7" -; ,go-golang-org-x-net-0.0.0-20190813141303-74dc4d7220e7) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2) -; ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) -; ("go-go-uber-org-multierr-1.1.0" ,go-go-uber-org-multierr-1.1.0) -; ("go-go-uber-org-atomic-1.3.2" ,go-go-uber-org-atomic-1.3.2) -; ("go-go-etcd-io-bbolt-1.3.3" ,go-go-etcd-io-bbolt-1.3.3) -; ("go-github-com-xiang90-probing-0.0.0-20190116061207-43a291ad63a2" -; ,go-github-com-xiang90-probing-0.0.0-20190116061207-43a291ad63a2) -; ("go-github-com-urfave-cli-1.20.0" ,go-github-com-urfave-cli-1.20.0) -; ("go-github-com-tmc-grpc-websocket-proxy-0.0.0-20170815181823-89b8d40f7ca8" -; ,go-github-com-tmc-grpc-websocket-proxy-0.0.0-20170815181823-89b8d40f7ca8) -; ("go-github-com-spf13-pflag-1.0.1" ,go-github-com-spf13-pflag-1.0.1) -; ("go-github-com-spf13-cobra-0.0.3" ,go-github-com-spf13-cobra-0.0.3) -; ("go-github-com-soheilhy-cmux-0.1.4" -; ,go-github-com-soheilhy-cmux-0.1.4) -; ("go-github-com-sirupsen-logrus-1.4.2" -; ,go-github-com-sirupsen-logrus-1.4.2) -; ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" -; ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) -; ("go-github-com-prometheus-client-golang-1.0.0" -; ,go-github-com-prometheus-client-golang-1.0.0) -; ("go-github-com-olekukonko-tablewriter-0.0.0-20170122224234-a0225b3f23b5" -; ,go-github-com-olekukonko-tablewriter-0.0.0-20170122224234-a0225b3f23b5) -; ("go-github-com-modern-go-reflect2-1.0.1" -; ,go-github-com-modern-go-reflect2-1.0.1) -; ("go-github-com-mattn-go-runewidth-0.0.2" -; ,go-github-com-mattn-go-runewidth-0.0.2) -; ("go-github-com-mattn-go-isatty-0.0.4" -; ,go-github-com-mattn-go-isatty-0.0.4) -; ("go-github-com-mattn-go-colorable-0.0.9" -; ,go-github-com-mattn-go-colorable-0.0.9) -; ("go-github-com-json-iterator-go-1.1.7" -; ,go-github-com-json-iterator-go-1.1.7) -; ("go-github-com-jonboulle-clockwork-0.1.0" -; ,go-github-com-jonboulle-clockwork-0.1.0) -; ("go-github-com-inconshreveable-mousetrap-1.0.0" -; ,go-github-com-inconshreveable-mousetrap-1.0.0) -; ("go-github-com-grpc-ecosystem-grpc-gateway-1.9.5" -; ,go-github-com-grpc-ecosystem-grpc-gateway-1.9.5) -; ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" -; ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) -; ("go-github-com-grpc-ecosystem-go-grpc-middleware-1.0.1-0.20190118093823-f849b5445de4" -; ,go-github-com-grpc-ecosystem-go-grpc-middleware-1.0.1-0.20190118093823-f849b5445de4) -; ("go-github-com-gorilla-websocket-0.0.0-20170926233335-4201258b820c" -; ,go-github-com-gorilla-websocket-0.0.0-20170926233335-4201258b820c) -; ("go-github-com-google-uuid-1.0.0" ,go-github-com-google-uuid-1.0.0) -; ("go-github-com-google-btree-1.0.0" ,go-github-com-google-btree-1.0.0) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2) -; ("go-github-com-golang-groupcache-0.0.0-20160516000752-02826c3e7903" -; ,go-github-com-golang-groupcache-0.0.0-20160516000752-02826c3e7903) -; ("go-github-com-gogo-protobuf-1.2.1" -; ,go-github-com-gogo-protobuf-1.2.1) -; ("go-github-com-fatih-color-1.7.0" ,go-github-com-fatih-color-1.7.0) -; ("go-github-com-dustin-go-humanize-0.0.0-20171111073723-bb3d318650d4" -; ,go-github-com-dustin-go-humanize-0.0.0-20171111073723-bb3d318650d4) -; ("go-github-com-dgrijalva-jwt-go-3.2.0+incompatible" -; ,go-github-com-dgrijalva-jwt-go-3.2.0+incompatible) -; ("go-github-com-creack-pty-1.1.7" ,go-github-com-creack-pty-1.1.7) -; ("go-github-com-coreos-pkg-0.0.0-20160727233714-3ac0863d7acf" -; ,go-github-com-coreos-pkg-0.0.0-20160727233714-3ac0863d7acf) -; ("go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7" -; ,go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7) -; ("go-github-com-coreos-go-semver-0.2.0" -; ,go-github-com-coreos-go-semver-0.2.0) -; ("go-github-com-cockroachdb-datadriven-0.0.0-20190809214429-80d97fb3cbaa" -; ,go-github-com-cockroachdb-datadriven-0.0.0-20190809214429-80d97fb3cbaa) -; ("go-github-com-bgentry-speakeasy-0.1.0" -; ,go-github-com-bgentry-speakeasy-0.1.0))) -; (home-page "https://go.etcd.io/etcd") -; (synopsis "etcd") -; (description -; "Package main is a simple wrapper of the real etcd entrypoint package -;(located at github.com/coreos/etcd/etcdmain) to ensure that etcd is still -;\"go getable\"; e.g. `go get github.com/coreos/etcd` works as expected and -;builds a binary in $GOBIN/etcd -;") -; (license license:asl2.0))) -; -;(define-public go-gopkg-in-natefinch-lumberjack-v2-2.0.0 -; (package -; (name "go-gopkg-in-natefinch-lumberjack-v2") -; (version "2.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/natefinch/lumberjack.v2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1m2sxypk7p805jvc68padvylyx5v7cwkh5klnnxxr0340kgspf08")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path -; "gopkg.in/natefinch/lumberjack.v2" -; #:unpack-path -; "gopkg.in/natefinch/lumberjack.v2")) -; (home-page "https://gopkg.in/natefinch/lumberjack.v2") -; (synopsis "lumberjack") -; (description "Package lumberjack provides a rolling logger. -;") -; (license license:expat))) -; -;(define-public go-gopkg-in-square-go-jose-v2-2.2.2 -; (package -; (name "go-gopkg-in-square-go-jose-v2") -; (version "2.2.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/square/go-jose.v2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1cpvfqw7pw8m8wfj8nda4kam0z48q3gp6b9a3a0wr90zv9ldszbv")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path -; "gopkg.in/square/go-jose.v2" -; #:unpack-path -; "gopkg.in/square/go-jose.v2")) -; (home-page "https://gopkg.in/square/go-jose.v2") -; (synopsis "Go JOSE") -; (description -; "Package jose aims to provide an implementation of the Javascript Object Signing -;and Encryption set of standards. It implements encryption and signing based on -;the JSON Web Encryption and JSON Web Signature standards, with optional JSON -;Web Token support available in a sub-package. The library supports both the -;compact and full serialization formats, and has optional support for multiple -;recipients. -;") -; (license license:asl2.0))) -; -;(define-public go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.15 -; (package -; (name "go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client") -; (version "0.0.15") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes-sigs/apiserver-network-proxy") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "00ad9yjr3g1pj118xy063z7rnydkilqmvz9xf89vdva2kjqd7fal")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path -; "sigs.k8s.io/apiserver-network-proxy/konnectivity-client")) -; (propagated-inputs -; `(("go-k8s-io-klog-v2-2.0.0" ,go-k8s-io-klog-v2-2.0.0) -; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) -; ("go-github-com-golang-protobuf-1.4.0" -; ,go-github-com-golang-protobuf-1.4.0))) -; (home-page -; "https://sigs.k8s.io/apiserver-network-proxy/konnectivity-client") -; (synopsis #f) -; (description #f) -; (license license:asl2.0))) -; -;(define-public go-k8s-io-apiserver-0.20.6 -; (package -; (name "go-k8s-io-apiserver") -; (version "0.20.6") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes/apiserver") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0b53aw2cp9i2v5kg1m2s5kwkz7525ii8vs1g7d8yc2j980aar9y3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "k8s.io/apiserver")) -; (propagated-inputs -; `(("go-k8s-io-component-base-0.20.6" ,go-k8s-io-component-base-0.20.6) -; ("go-k8s-io-client-go-0.20.6" ,go-k8s-io-client-go-0.20.6) -; ("go-k8s-io-apimachinery-0.20.6" ,go-k8s-io-apimachinery-0.20.6) -; ("go-k8s-io-api-0.20.6" ,go-k8s-io-api-0.20.6) -; ("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) -; ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.3" -; ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.3) -; ("go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.15" -; ,go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.15) -; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" -; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) -; ("go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd" -; ,go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd) -; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) -; ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) -; ("go-gopkg-in-square-go-jose-v2-2.2.2" -; ,go-gopkg-in-square-go-jose-v2-2.2.2) -; ("go-gopkg-in-natefinch-lumberjack-v2-2.0.0" -; ,go-gopkg-in-natefinch-lumberjack-v2-2.0.0) -; ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) -; ("go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a" -; ,go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a) -; ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" -; ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) -; ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" -; ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) -; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" -; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) -; ("go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0" -; ,go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0) -; ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) -; ("go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489" -; ,go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489) -; ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) -; ("go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5" -; ,go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) -; ("go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021" -; ,go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822" -; ,go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822) -; ("go-github-com-mailru-easyjson-0.7.0" -; ,go-github-com-mailru-easyjson-0.7.0) -; ("go-github-com-hashicorp-golang-lru-0.5.1" -; ,go-github-com-hashicorp-golang-lru-0.5.1) -; ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" -; ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) -; ("go-github-com-gorilla-websocket-1.4.2" -; ,go-github-com-gorilla-websocket-1.4.2) -; ("go-github-com-googleapis-gnostic-0.4.1" -; ,go-github-com-googleapis-gnostic-0.4.1) -; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) -; ("go-github-com-google-gofuzz-1.1.0" -; ,go-github-com-google-gofuzz-1.1.0) -; ("go-github-com-google-go-cmp-0.5.2" -; ,go-github-com-google-go-cmp-0.5.2) -; ("go-github-com-gogo-protobuf-1.3.2" -; ,go-github-com-gogo-protobuf-1.3.2) -; ("go-github-com-go-openapi-spec-0.19.3" -; ,go-github-com-go-openapi-spec-0.19.3) -; ("go-github-com-evanphx-json-patch-4.9.0+incompatible" -; ,go-github-com-evanphx-json-patch-4.9.0+incompatible) -; ("go-github-com-emicklei-go-restful-2.9.5+incompatible" -; ,go-github-com-emicklei-go-restful-2.9.5+incompatible) -; ("go-github-com-dustin-go-humanize-1.0.0" -; ,go-github-com-dustin-go-humanize-1.0.0) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1) -; ("go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f" -; ,go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f) -; ("go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e" -; ,go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e) -; ("go-github-com-coreos-go-semver-0.3.0" -; ,go-github-com-coreos-go-semver-0.3.0) -; ("go-github-com-coreos-go-oidc-2.1.0+incompatible" -; ,go-github-com-coreos-go-oidc-2.1.0+incompatible))) -; (home-page "https://k8s.io/apiserver") -; (synopsis "apiserver") -; (description -; "Generic library for building a Kubernetes aggregated API server.") -; (license license:asl2.0))) -; -;(define-public go-github-com-blang-semver-3.5.1+incompatible -; (package -; (name "go-github-com-blang-semver") -; (version "3.5.1+incompatible") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/blang/semver") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "13ws259bwcibkclbr82ilhk6zadm63kxklxhk12wayklj8ghhsmy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/blang/semver")) -; (home-page "https://github.com/blang/semver") -; (synopsis "semver for golang") -; (description -; "semver is a @url{http://semver.org/,Semantic Versioning} library written in golang. It fully covers spec version @code{2.0.0}.") -; (license license:expat))) -; -;(define-public go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369 -; (package -; (name "go-github-com-matttproud-golang-protobuf-extensions") -; (version "1.0.2-0.20181231171920-c182affec369") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/matttproud/golang_protobuf_extensions") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1xqsf9vpcrd4hp95rl6kgmjvkv1df4aicfw4l5vfcxcwxknfx2xs")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "github.com/matttproud/golang_protobuf_extensions")) -; (propagated-inputs -; `(("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" -; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0))) -; (home-page "https://github.com/matttproud/golang_protobuf_extensions") -; (synopsis "Overview") -; (description -; "This repository provides various Protocol Buffer extensions for the Go -;language (golang), namely support for record length-delimited message -;streaming.") -; (license license:asl2.0))) -; -;(define-public go-github-com-azure-go-ansiterm-0.0.0-20170929234023-d6e3b3328b78 -; (package -; (name "go-github-com-azure-go-ansiterm") -; (version "0.0.0-20170929234023-d6e3b3328b78") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/Azure/go-ansiterm") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "010khrkhkf9cxlvvb6ncqv4c1qcdmpbz9jn38g4fxf4xsma8xx1q")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/Azure/go-ansiterm")) -; (home-page "https://github.com/Azure/go-ansiterm") -; (synopsis "go-ansiterm") -; (description -; "This is a cross platform Ansi Terminal Emulation library. It reads a stream of Ansi characters and produces the appropriate function calls. The results of the function calls are platform dependent.") -; (license license:expat))) -; -;(define-public go-gotest-tools-2.2.0+incompatible -; (package -; (name "go-gotest-tools") -; (version "2.2.0+incompatible") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/gotestyourself/gotest.tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0yif3gdyckmf8i54jq0xn00kflla5rhib9sarw66ngnbl7bn9kyl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "gotest.tools")) -; (home-page "https://gotest.tools") -; (synopsis "gotest.tools") -; (description -; "Package gotesttools is a collection of packages to augment `testing` and -;support common patterns. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-spf13-pflag-1.0.3 -; (package -; (name "go-github-com-spf13-pflag") -; (version "1.0.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/spf13/pflag") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1cj3cjm7d3zk0mf1xdybh0jywkbbw7a6yr3y22x9sis31scprswd")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/spf13/pflag")) -; (home-page "https://github.com/spf13/pflag") -; (synopsis "Description") -; (description -; "Package pflag is a drop-in replacement for Go's flag package, implementing -;POSIX/GNU-style --flags. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20190624222133-a101b041ded4 -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20190624222133-a101b041ded4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1pm50dybm5wixjjspvfpafjmiy81b1zp08h13gxc5cylrfgncrfl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" -; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-gotest-tools-v3-3.0.2 -; (package -; (name "go-gotest-tools-v3") -; (version "3.0.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/gotestyourself/gotest.tools") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0cap2aq2wphnbkkzkck5zdjxb64q3jqxfwpkgqys7279rbr8cvjm")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gotest.tools/v3" #:unpack-path "gotest.tools/v3")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20190624222133-a101b041ded4" -; ,go-golang-org-x-tools-0.0.0-20190624222133-a101b041ded4) -; ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) -; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) -; ("go-github-com-google-go-cmp-0.3.0" -; ,go-github-com-google-go-cmp-0.3.0))) -; (home-page "https://gotest.tools/v3") -; (synopsis "gotest.tools") -; (description -; "Package gotesttools is a collection of packages to augment `testing` and -;support common patterns. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd -; (package -; (name "go-github-com-moby-term") -; (version "0.0.0-20200312100748-672ec06f55cd") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/moby/term") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0xspasm3d101hmjsayrbx6az4r4ybbg5gkj13qybhpq674a6kkwn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/moby/term")) -; (propagated-inputs -; `(("go-gotest-tools-v3-3.0.2" ,go-gotest-tools-v3-3.0.2) -; ("go-gotest-tools-2.2.0+incompatible" -; ,go-gotest-tools-2.2.0+incompatible) -; ("go-golang-org-x-sys-0.0.0-20200302150141-5c8b2ff67527" -; ,go-golang-org-x-sys-0.0.0-20200302150141-5c8b2ff67527) -; ("go-github-com-sirupsen-logrus-1.4.2" -; ,go-github-com-sirupsen-logrus-1.4.2) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-google-go-cmp-0.3.1" -; ,go-github-com-google-go-cmp-0.3.1) -; ("go-github-com-azure-go-ansiterm-0.0.0-20170929234023-d6e3b3328b78" -; ,go-github-com-azure-go-ansiterm-0.0.0-20170929234023-d6e3b3328b78))) -; (home-page "https://github.com/moby/term") -; (synopsis "term - utilities for dealing with terminals") -; (description -; "Package term provides structures and helper functions to work with -;terminal (state, sizes). -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-beorn7-perks-1.0.1 -; (package -; (name "go-github-com-beorn7-perks") -; (version "1.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/beorn7/perks") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "17n4yygjxa6p499dj3yaqzfww2g7528165cl13haj97hlx94dgl7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/beorn7/perks")) -; (home-page "https://github.com/beorn7/perks") -; (synopsis "Perks for Go (golang.org)") -; (description -; "Perks contains the Go package quantile that computes approximate quantiles over -;an unbounded data stream within low memory and CPU bounds.") -; (license license:expat))) -; -;(define-public go-github-com-cespare-xxhash-v2-2.1.1 -; (package -; (name "go-github-com-cespare-xxhash-v2") -; (version "2.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/cespare/xxhash") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0rl5rs8546zj1vzggv38w93wx0b5dvav7yy5hzxa8kw7iikv1cgr")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/cespare/xxhash/v2")) -; (home-page "https://github.com/cespare/xxhash") -; (synopsis "xxhash") -; (description -; "Package xxhash implements the 64-bit variant of xxHash (XXH64) as described -;at @url{http://cyan4973.github.io/xxHash/,http://cyan4973.github.io/xxHash/}. -;") -; (license license:expat))) -; -;(define-public go-github-com-golang-protobuf-1.4.2 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.4.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0m5z81im4nsyfgarjhppayk4hqnrwswr3nix9mj8pff8x9jvcjqw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.23.0" -; ,go-google-golang-org-protobuf-1.23.0) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0))) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-github-com-prometheus-procfs-0.1.3 -; (package -; (name "go-github-com-prometheus-procfs") -; (version "0.1.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/procfs") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "09wmlmvmjf49nchidqffc99wn6vl98v5k9qgyyrhqgv0015xskwa")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/procfs")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20200106162015-b016eb3dc98e" -; ,go-golang-org-x-sys-0.0.0-20200106162015-b016eb3dc98e) -; ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" -; ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) -; ("go-github-com-google-go-cmp-0.3.1" -; ,go-github-com-google-go-cmp-0.3.1))) -; (home-page "https://github.com/prometheus/procfs") -; (synopsis "procfs") -; (description -; "Package procfs provides functions to retrieve system, kernel and process -;metrics from the pseudo-filesystem proc. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-sys-0.0.0-20200615200032-f1bc736245b1 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20200615200032-f1bc736245b1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1fbmih4n2xw53qbpmc7msqf2660i4ryr0chbrsbj8mdalfrjr0vp")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-gopkg-in-yaml-v2-2.2.5 -; (package -; (name "go-gopkg-in-yaml-v2") -; (version "2.2.5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/yaml.v2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "08smz8dfyxp02ha74my9iszqa5qzgl3ksi28ilyp8lqipssiq6fg")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" -; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) -; (home-page "https://gopkg.in/yaml.v2") -; (synopsis "YAML support for the Go language") -; (description "Package yaml implements YAML support for the Go language. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-prometheus-client-golang-1.7.1 -; (package -; (name "go-github-com-prometheus-client-golang") -; (version "1.7.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/client_golang") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0i9wbwjq3idgp9y0vv7fvg6g7zrqi9qlfw915xc49ahw83q2h61w")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/client_golang")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.2.5" ,go-gopkg-in-yaml-v2-2.2.5) -; ("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" -; ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) -; ("go-golang-org-x-sys-0.0.0-20200615200032-f1bc736245b1" -; ,go-golang-org-x-sys-0.0.0-20200615200032-f1bc736245b1) -; ("go-github-com-stretchr-testify-1.4.0" -; ,go-github-com-stretchr-testify-1.4.0) -; ("go-github-com-prometheus-procfs-0.1.3" -; ,go-github-com-prometheus-procfs-0.1.3) -; ("go-github-com-prometheus-common-0.10.0" -; ,go-github-com-prometheus-common-0.10.0) -; ("go-github-com-prometheus-client-model-0.2.0" -; ,go-github-com-prometheus-client-model-0.2.0) -; ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) -; ("go-github-com-json-iterator-go-1.1.10" -; ,go-github-com-json-iterator-go-1.1.10) -; ("go-github-com-golang-protobuf-1.4.2" -; ,go-github-com-golang-protobuf-1.4.2) -; ("go-github-com-cespare-xxhash-v2-2.1.1" -; ,go-github-com-cespare-xxhash-v2-2.1.1) -; ("go-github-com-beorn7-perks-1.0.1" -; ,go-github-com-beorn7-perks-1.0.1))) -; (home-page "https://github.com/prometheus/client_golang") -; (synopsis "Prometheus Go client library") -; (description -; "This is the @url{http://golang.org,Go} client library for -;@url{http://prometheus.io,Prometheus}. It has two separate parts, one for -;instrumenting application code, and one for creating clients that talk to the -;Prometheus HTTP API.") -; (license license:asl2.0))) -; -;(define-public go-github-com-alecthomas-template-0.0.0-20190718012654-fb15b899a751 -; (package -; (name "go-github-com-alecthomas-template") -; (version "0.0.0-20190718012654-fb15b899a751") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/alecthomas/template") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1vlasv4dgycydh5wx6jdcvz40zdv90zz1h7836z7lhsi2ymvii26")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/alecthomas/template")) -; (home-page "https://github.com/alecthomas/template") -; (synopsis "Go's") -; (description -; "Package template implements data-driven templates for generating textual output. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-alecthomas-units-0.0.0-20190717042225-c3de453c63f4 -; (package -; (name "go-github-com-alecthomas-units") -; (version "0.0.0-20190717042225-c3de453c63f4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/alecthomas/units") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0js37zlgv37y61j4a2d46jh72xm5kxmpaiw0ya9v944bjpc386my")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/alecthomas/units")) -; (home-page "https://github.com/alecthomas/units") -; (synopsis "Units - Helpful unit multipliers and functions for Go") -; (description -; "Package units provides helpful unit multipliers and functions for Go. -;") -; (license license:expat))) -; -;(define-public go-github-com-go-kit-kit-0.9.0 -; (package -; (name "go-github-com-go-kit-kit") -; (version "0.9.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/go-kit/kit") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "09038mnw705h7isbjp8dzgp2i04bp5rqkmifxvwc5xkh75s00qpw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/go-kit/kit")) -; (home-page "https://github.com/go-kit/kit") -; (synopsis "Go kit") -; (description -; "@strong{Go kit} is a @strong{programming toolkit} for building microservices -;(or elegant monoliths) in Go. We solve common problems in distributed -;systems and application architecture so you can focus on delivering -;business value.") -; (license license:expat))) -; -;(define-public go-github-com-go-logfmt-logfmt-0.4.0 -; (package -; (name "go-github-com-go-logfmt-logfmt") -; (version "0.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/go-logfmt/logfmt") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "06smxc112xmixz78nyvk3b2hmc7wasf2sl5vxj1xz62kqcq9lzm9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/go-logfmt/logfmt")) -; (propagated-inputs -; `(("go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515" -; ,go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515))) -; (home-page "https://github.com/go-logfmt/logfmt") -; (synopsis "logfmt") -; (description -; "Package logfmt implements utilities to marshal and unmarshal data in the -;logfmt format. The logfmt format records key/value pairs in a way that -;balances readability for humans and simplicity of computer parsing. It is -;most commonly used as a more human friendly alternative to JSON for -;structured logging. -;") -; (license license:expat))) -; -;(define-public go-github-com-pkg-errors-0.8.1 -; (package -; (name "go-github-com-pkg-errors") -; (version "0.8.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/pkg/errors") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0g5qcb4d4fd96midz0zdk8b9kz8xkzwfa8kr1cliqbg8sxsy5vd1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/pkg/errors")) -; (home-page "https://github.com/pkg/errors") -; (synopsis "errors") -; (description "Package errors provides simple error handling primitives. -;") -; (license license:bsd-2))) -; -;(define-public go-github-com-beorn7-perks-1.0.0 -; (package -; (name "go-github-com-beorn7-perks") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/beorn7/perks") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1i1nz1f6g55xi2y3aiaz5kqfgvknarbfl4f0sx4nyyb4s7xb1z9x")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/beorn7/perks")) -; (home-page "https://github.com/beorn7/perks") -; (synopsis "Perks for Go (golang.org)") -; (description -; "Perks contains the Go package quantile that computes approximate quantiles over -;an unbounded data stream within low memory and CPU bounds.") -; (license license:expat))) -; -;(define-public go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90 -; (package -; (name "go-github-com-prometheus-client-model") -; (version "0.0.0-20190129233127-fd36f4220a90") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/client_model") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1bs5d72k361llflgl94c22n0w53j30rsfh84smgk8mbjbcmjsaa5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/client_model")) -; (propagated-inputs -; `(("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" -; ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0))) -; (home-page "https://github.com/prometheus/client_model") -; (synopsis "Deprecation note") -; (description -; "This repository used to contain the code that defined both -;the data model and the exposition format of Prometheus metrics.") -; (license license:asl2.0))) -; -;(define-public go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc -; (package -; (name "go-github-com-alecthomas-template") -; (version "0.0.0-20160405071501-a0175ee3bccc") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/alecthomas/template") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0qjgvvh26vk1cyfq9fadyhfgdj36f1iapbmr5xp6zqipldz8ffxj")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/alecthomas/template")) -; (home-page "https://github.com/alecthomas/template") -; (synopsis "Go's") -; (description -; "Package template implements data-driven templates for generating textual output. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf -; (package -; (name "go-github-com-alecthomas-units") -; (version "0.0.0-20151022065526-2efee857e7cf") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/alecthomas/units") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1j65b91qb9sbrml9cpabfrcf07wmgzzghrl7809hjjhrmbzri5bl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/alecthomas/units")) -; (home-page "https://github.com/alecthomas/units") -; (synopsis "Units - Helpful unit multipliers and functions for Go") -; (description -; "Package units provides helpful unit multipliers and functions for Go. -;") -; (license license:expat))) -; -;(define-public go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973 -; (package -; (name "go-github-com-beorn7-perks") -; (version "0.0.0-20180321164747-3a771d992973") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/beorn7/perks") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1l2lns4f5jabp61201sh88zf3b0q793w4zdgp9nll7mmfcxxjif3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/beorn7/perks")) -; (home-page "https://github.com/beorn7/perks") -; (synopsis "Perks for Go (golang.org)") -; (description -; "Perks contains the Go package quantile that computes approximate quantiles over -;an unbounded data stream within low memory and CPU bounds.") -; (license license:expat))) -; -;(define-public go-github-com-go-kit-kit-0.8.0 -; (package -; (name "go-github-com-go-kit-kit") -; (version "0.8.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/go-kit/kit") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1rcywbc2pvab06qyf8pc2rdfjv7r6kxdv2v4wnpqnjhz225wqvc0")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/go-kit/kit")) -; (home-page "https://github.com/go-kit/kit") -; (synopsis "Go kit") -; (description -; "@strong{Go kit} is a @strong{programming toolkit} for building microservices -;(or elegant monoliths) in Go. We solve common problems in distributed -;systems and application architecture so you can focus on delivering -;business value.") -; (license license:expat))) -; -;(define-public go-github-com-go-logfmt-logfmt-0.3.0 -; (package -; (name "go-github-com-go-logfmt-logfmt") -; (version "0.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/go-logfmt/logfmt") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1gkgh3k5w1xwb2qbjq52p6azq3h1c1rr6pfwjlwj1zrijpzn2xb9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/go-logfmt/logfmt")) -; (home-page "https://github.com/go-logfmt/logfmt") -; (synopsis "logfmt") -; (description -; "Package logfmt implements utilities to marshal and unmarshal data in the -;logfmt format. The logfmt format records key/value pairs in a way that -;balances readability for humans and simplicity of computer parsing. It is -;most commonly used as a more human friendly alternative to JSON for -;structured logging. -;") -; (license license:expat))) -; -;(define-public go-github-com-go-stack-stack-1.8.0 -; (package -; (name "go-github-com-go-stack-stack") -; (version "1.8.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/go-stack/stack") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0wk25751ryyvxclyp8jdk5c3ar0cmfr8lrjb66qbg4808x66b96v")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/go-stack/stack")) -; (home-page "https://github.com/go-stack/stack") -; (synopsis "stack") -; (description -; "Package stack implements utilities to capture, manipulate, and format call -;stacks. It provides a simpler API than package runtime. -;") -; (license license:expat))) -; -;(define-public go-github-com-julienschmidt-httprouter-1.2.0 -; (package -; (name "go-github-com-julienschmidt-httprouter") -; (version "1.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/julienschmidt/httprouter") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1k8bylc9s4vpvf5xhqh9h246dl1snxrzzz0614zz88cdh8yzs666")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/julienschmidt/httprouter")) -; (home-page "https://github.com/julienschmidt/httprouter") -; (synopsis "HttpRouter") -; (description -; "Package httprouter is a trie based high performance HTTP request router. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515 -; (package -; (name "go-github-com-kr-logfmt") -; (version "0.0.0-20140226030751-b84e30acd515") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kr/logfmt") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "02ldzxgznrfdzvghfraslhgp19la1fczcbzh7wm2zdc6lmpd1qq9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kr/logfmt")) -; (home-page "https://github.com/kr/logfmt") -; (synopsis #f) -; (description -; "Package implements the decoding of logfmt key-value pairs. -;") -; (license license:expat))) -; -;(define-public go-github-com-matttproud-golang-protobuf-extensions-1.0.1 -; (package -; (name "go-github-com-matttproud-golang-protobuf-extensions") -; (version "1.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/matttproud/golang_protobuf_extensions") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1d0c1isd2lk9pnfq2nk0aih356j30k3h1gi2w0ixsivi5csl7jya")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "github.com/matttproud/golang_protobuf_extensions")) -; (home-page "https://github.com/matttproud/golang_protobuf_extensions") -; (synopsis "Overview") -; (description -; "This repository provides various Protocol Buffer extensions for the Go -;language (golang), namely support for record length-delimited message -;streaming.") -; (license license:asl2.0))) -; -;(define-public go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223 -; (package -; (name "go-github-com-mwitkow-go-conntrack") -; (version "0.0.0-20161129095857-cc309e4a2223") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mwitkow/go-conntrack") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0nbrnpk7bkmqg9mzwsxlm0y8m7s9qd9phr1q30qlx2qmdmz7c1mf")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mwitkow/go-conntrack")) -; (home-page "https://github.com/mwitkow/go-conntrack") -; (synopsis "Go tracing and monitoring (Prometheus) for") -; (description -; "@url{https://prometheus.io/,Prometheus} monitoring and @url{https://godoc.org/golang.org/x/net/trace#EventLog,(code x/net/trace)} tracing wrappers @code{net.Conn}, both inbound (@code{net.Listener}) and outbound (@code{net.Dialer}).") -; (license license:asl2.0))) -; -;(define-public go-github-com-pkg-errors-0.8.0 -; (package -; (name "go-github-com-pkg-errors") -; (version "0.8.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/pkg/errors") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "001i6n71ghp2l6kdl3qq1v2vmghcz3kicv9a5wgcihrzigm75pp5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/pkg/errors")) -; (home-page "https://github.com/pkg/errors") -; (synopsis "errors") -; (description "Package errors provides simple error handling primitives. -;") -; (license license:bsd-2))) -; -;(define-public go-github-com-prometheus-client-golang-0.9.1 -; (package -; (name "go-github-com-prometheus-client-golang") -; (version "0.9.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/client_golang") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "01gnylazia30pcp069xcng482gwmm3xcx5zgrlwdkhic1lyb6i9l")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/client_golang")) -; (home-page "https://github.com/prometheus/client_golang") -; (synopsis "Prometheus Go client library") -; (description -; "This is the @url{http://golang.org,Go} client library for -;@url{http://prometheus.io,Prometheus}. It has two separate parts, one for -;instrumenting application code, and one for creating clients that talk to the -;Prometheus HTTP API.") -; (license license:asl2.0))) -; -;(define-public go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910 -; (package -; (name "go-github-com-prometheus-client-model") -; (version "0.0.0-20180712105110-5c3871d89910") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/client_model") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "04psf81l9fjcwascsys428v03fx4fi894h7fhrj2vvcz723q57k0")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/client_model")) -; (home-page "https://github.com/prometheus/client_model") -; (synopsis "Deprecation note") -; (description -; "This repository used to contain the code that defined both -;the data model and the exposition format of Prometheus metrics.") -; (license license:asl2.0))) -; -;(define-public go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d -; (package -; (name "go-github-com-prometheus-procfs") -; (version "0.0.0-20181005140218-185b4288413d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/procfs") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0d85429kdw5dgj5zhyiz1sq3i5691vj2gjnda93nnxxzx9acg8cv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/procfs")) -; (home-page "https://github.com/prometheus/procfs") -; (synopsis "procfs") -; (description -; "Package procfs provides functions to retrieve system, kernel and process -;metrics from the pseudo-filesystem proc. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20180904163835-0709b304e793 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20180904163835-0709b304e793") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0i05s09y5pavmfh71fgih7syxg58x7a4krgd8am6d3mnahnmab5c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20180905080454-ebe1bf3edb33") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0rkspxyjxdmc9f4n09hgkwj8jjd8z5p8mc9z8vwqwqcwrqv4sg7c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-sirupsen-logrus-1.2.0 -; (package -; (name "go-github-com-sirupsen-logrus") -; (version "1.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/sirupsen/logrus") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0r6334x2bls8ddznvzaldx4g88msjjns4mlks95rqrrg7h0ijigg")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/sirupsen/logrus")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33" -; ,go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33) -; ("go-golang-org-x-crypto-0.0.0-20180904163835-0709b304e793" -; ,go-golang-org-x-crypto-0.0.0-20180904163835-0709b304e793) -; ("go-github-com-stretchr-testify-1.2.2" -; ,go-github-com-stretchr-testify-1.2.2) -; ("go-github-com-stretchr-objx-0.1.1" -; ,go-github-com-stretchr-objx-0.1.1) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.1" -; ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.1) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://github.com/sirupsen/logrus") -; (synopsis "Logrus") -; (description -; "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-net-0.0.0-20181114220301-adae6a3d119a -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20181114220301-adae6a3d119a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1fx860zsgzqk28j7lmp96qsfrgb0kzbfjvr294hywswcbwdwkb01")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-github-com-prometheus-common-0.4.1 -; (package -; (name "go-github-com-prometheus-common") -; (version "0.4.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/common") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0sf4sjdckblz1hqdfvripk3zyp8xq89w7q75kbsyg4c078af896s")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/common")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1) -; ("go-gopkg-in-alecthomas-kingpin-v2-2.2.6" -; ,go-gopkg-in-alecthomas-kingpin-v2-2.2.6) -; ("go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5" -; ,go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5) -; ("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" -; ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) -; ("go-golang-org-x-net-0.0.0-20181114220301-adae6a3d119a" -; ,go-golang-org-x-net-0.0.0-20181114220301-adae6a3d119a) -; ("go-github-com-sirupsen-logrus-1.2.0" -; ,go-github-com-sirupsen-logrus-1.2.0) -; ("go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d" -; ,go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d) -; ("go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910" -; ,go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910) -; ("go-github-com-prometheus-client-golang-0.9.1" -; ,go-github-com-prometheus-client-golang-0.9.1) -; ("go-github-com-pkg-errors-0.8.0" ,go-github-com-pkg-errors-0.8.0) -; ("go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223" -; ,go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223) -; ("go-github-com-matttproud-golang-protobuf-extensions-1.0.1" -; ,go-github-com-matttproud-golang-protobuf-extensions-1.0.1) -; ("go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515" -; ,go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515) -; ("go-github-com-julienschmidt-httprouter-1.2.0" -; ,go-github-com-julienschmidt-httprouter-1.2.0) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0) -; ("go-github-com-gogo-protobuf-1.1.1" -; ,go-github-com-gogo-protobuf-1.1.1) -; ("go-github-com-go-stack-stack-1.8.0" -; ,go-github-com-go-stack-stack-1.8.0) -; ("go-github-com-go-logfmt-logfmt-0.3.0" -; ,go-github-com-go-logfmt-logfmt-0.3.0) -; ("go-github-com-go-kit-kit-0.8.0" ,go-github-com-go-kit-kit-0.8.0) -; ("go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973" -; ,go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973) -; ("go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf" -; ,go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf) -; ("go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc" -; ,go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc))) -; (home-page "https://github.com/prometheus/common") -; (synopsis "Common") -; (description -; "This repository contains Go libraries that are shared across Prometheus -;components and libraries. They are considered internal to Prometheus, without -;any stability guarantees for external usage.") -; (license license:asl2.0))) -; -;(define-public go-github-com-prometheus-procfs-0.0.2 -; (package -; (name "go-github-com-prometheus-procfs") -; (version "0.0.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/procfs") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0s7pvs7fgnfpmym3cd0k219av321h9sf3yvdlnn3qy0ps280lg7k")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/procfs")) -; (propagated-inputs -; `(("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" -; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4))) -; (home-page "https://github.com/prometheus/procfs") -; (synopsis "procfs") -; (description -; "Package procfs provides functions to retrieve system, kernel and process -;metrics from the pseudo-filesystem proc. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20181116152217-5ac8a444bdc5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "00zdrighflwc4iyizsag184nvl1cbkk02v73kpl5miprdrvzqlr4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-prometheus-client-golang-1.0.0 -; (package -; (name "go-github-com-prometheus-client-golang") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/client_golang") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1f03ndyi3jq7zdxinnvzimz3s4z2374r6dikkc8i42xzb6d1bli6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/client_golang")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5" -; ,go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5) -; ("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0) -; ("go-github-com-prometheus-procfs-0.0.2" -; ,go-github-com-prometheus-procfs-0.0.2) -; ("go-github-com-prometheus-common-0.4.1" -; ,go-github-com-prometheus-common-0.4.1) -; ("go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90" -; ,go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90) -; ("go-github-com-modern-go-reflect2-1.0.1" -; ,go-github-com-modern-go-reflect2-1.0.1) -; ("go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd" -; ,go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd) -; ("go-github-com-json-iterator-go-1.1.6" -; ,go-github-com-json-iterator-go-1.1.6) -; ("go-github-com-golang-protobuf-1.3.1" -; ,go-github-com-golang-protobuf-1.3.1) -; ("go-github-com-beorn7-perks-1.0.0" -; ,go-github-com-beorn7-perks-1.0.0))) -; (home-page "https://github.com/prometheus/client_golang") -; (synopsis "Prometheus Go client library") -; (description -; "This is the @url{http://golang.org,Go} client library for -;@url{http://prometheus.io,Prometheus}. It has two separate parts, one for -;instrumenting application code, and one for creating clients that talk to the -;Prometheus HTTP API.") -; (license license:asl2.0))) -; -;(define-public go-github-com-prometheus-client-model-0.2.0 -; (package -; (name "go-github-com-prometheus-client-model") -; (version "0.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/client_model") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0jffnz94d6ff39fr96b5w8i8yk26pwnrfggzz8jhi8k0yihg2c9d")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/client_model")) -; (propagated-inputs -; `(("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" -; ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0))) -; (home-page "https://github.com/prometheus/client_model") -; (synopsis "Deprecation note") -; (description -; "This repository used to contain the code that defined both -;the data model and the exposition format of Prometheus metrics.") -; (license license:asl2.0))) -; -;(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.1 -; (package -; (name "go-github-com-konsorten-go-windows-terminal-sequences") -; (version "1.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/konsorten/go-windows-terminal-sequences") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1lchgf27n276vma6iyxa0v1xds68n2g8lih5lavqnx5x6q5pw2ip")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) -; (home-page "https://github.com/konsorten/go-windows-terminal-sequences") -; (synopsis "Windows Terminal Sequences") -; (description -; "This library allow for enabling Windows terminal color support for Go.") -; (license license:expat))) -; -;(define-public go-github-com-stretchr-objx-0.1.1 -; (package -; (name "go-github-com-stretchr-objx") -; (version "0.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/objx") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0iph0qmpyqg4kwv8jsx6a56a7hhqq8swrazv40ycxk9rzr0s8yls")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/objx")) -; (home-page "https://github.com/stretchr/objx") -; (synopsis "Objx") -; (description -; "Objx - Go package for dealing with maps, slices, JSON and other data. -;") -; (license license:expat))) -; -;(define-public go-github-com-sirupsen-logrus-1.4.2 -; (package -; (name "go-github-com-sirupsen-logrus") -; (version "1.4.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/sirupsen/logrus") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "087k2lxrr9p9dh68yw71d05h5g9p5v26zbwd6j7lghinjfaw334x")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/sirupsen/logrus")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894" -; ,go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894) -; ("go-github-com-stretchr-testify-1.2.2" -; ,go-github-com-stretchr-testify-1.2.2) -; ("go-github-com-stretchr-objx-0.1.1" -; ,go-github-com-stretchr-objx-0.1.1) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.1" -; ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.1) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://github.com/sirupsen/logrus") -; (synopsis "Logrus") -; (description -; "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. -;") -; (license license:expat))) -; -;(define-public go-gopkg-in-alecthomas-kingpin-v2-2.2.6 -; (package -; (name "go-gopkg-in-alecthomas-kingpin-v2") -; (version "2.2.6") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/alecthomas/kingpin.v2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0mndnv3hdngr3bxp7yxfd47cas4prv98sqw534mx7vp38gd88n5r")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path -; "gopkg.in/alecthomas/kingpin.v2" -; #:unpack-path -; "gopkg.in/alecthomas/kingpin.v2")) -; (home-page "https://gopkg.in/alecthomas/kingpin.v2") -; (synopsis "Kingpin - A Go (golang) command line and flag parser") -; (description -; "Package kingpin provides command line interfaces like this: -;") -; (license license:expat))) -; -;(define-public go-gopkg-in-yaml-v2-2.2.4 -; (package -; (name "go-gopkg-in-yaml-v2") -; (version "2.2.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/yaml.v2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "11bwj757wi8kdrcnlgfqb8vv2d2xdhlghmyagd19i62khrkchsg2")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" -; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) -; (home-page "https://gopkg.in/yaml.v2") -; (synopsis "YAML support for the Go language") -; (description "Package yaml implements YAML support for the Go language. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-prometheus-common-0.10.0 -; (package -; (name "go-github-com-prometheus-common") -; (version "0.10.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/common") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ra7zfqsnvgfizzsxn3rk0dwhk7nx8p8082zgpvadbv2b0j1k01i")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/common")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.2.4" ,go-gopkg-in-yaml-v2-2.2.4) -; ("go-gopkg-in-alecthomas-kingpin-v2-2.2.6" -; ,go-gopkg-in-alecthomas-kingpin-v2-2.2.6) -; ("go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894" -; ,go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894) -; ("go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980" -; ,go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980) -; ("go-github-com-sirupsen-logrus-1.4.2" -; ,go-github-com-sirupsen-logrus-1.4.2) -; ("go-github-com-prometheus-client-model-0.2.0" -; ,go-github-com-prometheus-client-model-0.2.0) -; ("go-github-com-prometheus-client-golang-1.0.0" -; ,go-github-com-prometheus-client-golang-1.0.0) -; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) -; ("go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223" -; ,go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223) -; ("go-github-com-matttproud-golang-protobuf-extensions-1.0.1" -; ,go-github-com-matttproud-golang-protobuf-extensions-1.0.1) -; ("go-github-com-julienschmidt-httprouter-1.2.0" -; ,go-github-com-julienschmidt-httprouter-1.2.0) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2) -; ("go-github-com-go-logfmt-logfmt-0.4.0" -; ,go-github-com-go-logfmt-logfmt-0.4.0) -; ("go-github-com-go-kit-kit-0.9.0" ,go-github-com-go-kit-kit-0.9.0) -; ("go-github-com-alecthomas-units-0.0.0-20190717042225-c3de453c63f4" -; ,go-github-com-alecthomas-units-0.0.0-20190717042225-c3de453c63f4) -; ("go-github-com-alecthomas-template-0.0.0-20190718012654-fb15b899a751" -; ,go-github-com-alecthomas-template-0.0.0-20190718012654-fb15b899a751))) -; (home-page "https://github.com/prometheus/common") -; (synopsis "Common") -; (description -; "This repository contains Go libraries that are shared across Prometheus -;components and libraries. They are considered internal to Prometheus, without -;any stability guarantees for external usage.") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-sys-0.0.0-20200106162015-b016eb3dc98e -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20200106162015-b016eb3dc98e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1k0qr26046d228gi6ngkfxp4m1rjgxk4jj75h0kh1cpyp91n5rja")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-prometheus-procfs-0.2.0 -; (package -; (name "go-github-com-prometheus-procfs") -; (version "0.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/procfs") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0rkpyq1grk3qyfahnfry5qkxjg5qb10yh1l8cvm8b79nqsmdyjbm")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/procfs")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20200106162015-b016eb3dc98e" -; ,go-golang-org-x-sys-0.0.0-20200106162015-b016eb3dc98e) -; ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" -; ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) -; ("go-github-com-google-go-cmp-0.3.1" -; ,go-github-com-google-go-cmp-0.3.1))) -; (home-page "https://github.com/prometheus/procfs") -; (synopsis "procfs") -; (description -; "Package procfs provides functions to retrieve system, kernel and process -;metrics from the pseudo-filesystem proc. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.3 -; (package -; (name "go-github-com-konsorten-go-windows-terminal-sequences") -; (version "1.0.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/konsorten/go-windows-terminal-sequences") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1yrsd4s8vhjnxhwbigirymz89dn6qfjnhn28i33vvvdgf96j6ypl")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) -; (home-page "https://github.com/konsorten/go-windows-terminal-sequences") -; (synopsis "Windows Terminal Sequences") -; (description -; "This library allow for enabling Windows terminal color support for Go.") -; (license license:expat))) -; -;(define-public go-github-com-stretchr-testify-1.2.2 -; (package -; (name "go-github-com-stretchr-testify") -; (version "1.2.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/testify") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0dlszlshlxbmmfxj5hlwgv3r22x0y1af45gn1vd198nvvs3pnvfs")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/testify")) -; (home-page "https://github.com/stretchr/testify") -; (synopsis "Testify - Thou Shalt Write Tests") -; (description -; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190422165155-953cdadca894") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0gkha4whk8xkcv3isigbs250akag99isxnd3v9xmy0kl3g88hxy1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-sirupsen-logrus-1.6.0 -; (package -; (name "go-github-com-sirupsen-logrus") -; (version "1.6.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/sirupsen/logrus") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1zf9is1yxxnna0d1pyag2m9ziy3l27zb2j92p9msm1gx5jjrvzzj")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/sirupsen/logrus")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894" -; ,go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894) -; ("go-github-com-stretchr-testify-1.2.2" -; ,go-github-com-stretchr-testify-1.2.2) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.3" -; ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.3) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://github.com/sirupsen/logrus") -; (synopsis "Logrus") -; (description -; "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. -;") -; (license license:expat))) -; -;(define-public go-go-uber-org-atomic-1.4.0 -; (package -; (name "go-go-uber-org-atomic") -; (version "1.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/uber-go/atomic") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0c6yzx15c20719xii3dm0vyjd8i9jx45m0wh5yp1zf29b0gbljcy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "go.uber.org/atomic")) -; (home-page "https://go.uber.org/atomic") -; (synopsis "atomic") -; (description -; "Package atomic provides simple wrappers around numerics to enforce atomic -;access. -;") -; (license license:expat))) -; -;(define-public go-go-uber-org-multierr-1.1.0 -; (package -; (name "go-go-uber-org-multierr") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/uber-go/multierr") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1slfc6syvw8cvr6rbrjsy6ja5w8gsx0f8aq8qm16rp2x5c2pj07w")))) -; (build-system go-build-system) -; (arguments '(#:import-path "go.uber.org/multierr")) -; (home-page "https://go.uber.org/multierr") -; (synopsis "multierr") -; (description -; "Package multierr allows combining one or more errors together. -;") -; (license license:expat))) -; -;(define-public go-go-uber-org-zap-1.10.0 -; (package -; (name "go-go-uber-org-zap") -; (version "1.10.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/uber-go/zap") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "10hdzr1rghwbsl6bbd30779dx44fh9mg9pq8d2cgqlknqxxpvpvr")))) -; (build-system go-build-system) -; (arguments '(#:import-path "go.uber.org/zap")) -; (home-page "https://go.uber.org/zap") -; (synopsis "â\x9a¡ zap") -; (description "Package zap provides fast, structured, leveled logging. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262 -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20190425150028-36563e24a262") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0lasi96f6a1h11gkm8kl33x03pmxp369wrqq2dg7x7xv9nq76d6g")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" -; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-text-0.0.0-20170915032832-14c0d48ead0c -; (package -; (name "go-golang-org-x-text") -; (version "0.0.0-20170915032832-14c0d48ead0c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/text") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0y0nrj4hw7vby6m3iqklbf4v7njqlsx7s4pwfkwmvh1ryn1kb7d6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/text")) -; (home-page "https://golang.org/x/text") -; (synopsis "Go Text") -; (description -; "text is a repository of text-related packages related to internationalization -;(i18n) and localization (l10n), such as character encodings, text -;transformations, and locale-specific text handling. -;") -; (license license:bsd-3))) -; -;(define-public go-rsc-io-sampler-1.3.0 -; (package -; (name "go-rsc-io-sampler") -; (version "1.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/rsc/sampler") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0byxk2ynba50py805kcvbvjzh59l1r308i1xgyzpw6lff4xx9xjh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "rsc.io/sampler")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.0.0-20170915032832-14c0d48ead0c" -; ,go-golang-org-x-text-0.0.0-20170915032832-14c0d48ead0c))) -; (home-page "https://rsc.io/sampler") -; (synopsis #f) -; (description "Package sampler shows simple texts. -;") -; (license license:bsd-3))) -; -;(define-public go-rsc-io-quote-v3-3.1.0 -; (package -; (name "go-rsc-io-quote-v3") -; (version "3.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/rsc/quote") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0nvv97hwwrl1mx5gzsbdm1ndnwpg3m7i2jb10ig9wily7zmvki0i")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "rsc.io/quote/v3" #:unpack-path "rsc.io/quote/v3")) -; (propagated-inputs `(("go-rsc-io-sampler-1.3.0" ,go-rsc-io-sampler-1.3.0))) -; (home-page "https://rsc.io/quote/v3") -; (synopsis #f) -; (description "Package quote collects pithy sayings. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-mock-1.4.1 -; (package -; (name "go-github-com-golang-mock") -; (version "1.4.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/mock") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1zb4n285mv85dh3y2f8fqbs30h2dhzw7vbczr6z0zg2gqr6vzg0q")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/mock")) -; (propagated-inputs -; `(("go-rsc-io-quote-v3-3.1.0" ,go-rsc-io-quote-v3-3.1.0) -; ("go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262" -; ,go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262))) -; (home-page "https://github.com/golang/mock") -; (synopsis "gomock") -; (description -; "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It -;integrates well with Go's built-in @code{testing} package, but can be used in other -;contexts too.") -; (license license:asl2.0))) -; -;(define-public go-github-com-golang-protobuf-1.3.4 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.3.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "12dclmj2if8l0069fby4psrpqby7p810dr1dr63nwx93g9jhvkmx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-github-com-chzyer-logex-1.1.10 -; (package -; (name "go-github-com-chzyer-logex") -; (version "1.1.10") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/chzyer/logex") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "08pbjj3wx9acavlwyr055isa8a5hnmllgdv5k6ra60l5y1brmlq4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/chzyer/logex")) -; (home-page "https://github.com/chzyer/logex") -; (synopsis #f) -; (description #f) -; (license #f))) -; -;(define-public go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e -; (package -; (name "go-github-com-chzyer-readline") -; (version "0.0.0-20180603132655-2972be24d48e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/chzyer/readline") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "104q8dazj8yf6b089jjr82fy9h1g80zyyzvp3g8b44a7d8ngjj6r")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/chzyer/readline")) -; (home-page "https://github.com/chzyer/readline") -; (synopsis "Guide") -; (description -; "Readline is a pure go implementation for GNU-Readline kind library. -;") -; (license license:expat))) -; -;(define-public go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1 -; (package -; (name "go-github-com-chzyer-test") -; (version "0.0.0-20180213035817-a1ea475d72b1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/chzyer/test") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0rns2aqk22i9xsgyap0pq8wi4cfaxsri4d9q6xxhhyma8jjsnj2k")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/chzyer/test")) -; (home-page "https://github.com/chzyer/test") -; (synopsis "test") -; (description #f) -; (license license:expat))) -; -;(define-public go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6 -; (package -; (name "go-github-com-ianlancetaylor-demangle") -; (version "0.0.0-20181102032728-5e5cf60278f6") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/ianlancetaylor/demangle") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1fhjk11cip9c3jyj1byz9z77n6n2rlxmyz0xjx1zpn1da3cvri75")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/ianlancetaylor/demangle")) -; (home-page "https://github.com/ianlancetaylor/demangle") -; (synopsis "github.com/ianlancetaylor/demangle") -; (description -; "Package demangle defines functions that demangle GCC/LLVM -;C++ and Rust symbol names. -;This package recognizes names that were mangled according to the C++ ABI -;defined at @url{http://codesourcery.com/cxx-abi/,http://codesourcery.com/cxx-abi/} and the Rust ABI -;defined at -;@url{https://rust-lang.github.io/rfcs/2603-rust-symbol-name-mangling-v0.html,https://rust-lang.github.io/rfcs/2603-rust-symbol-name-mangling-v0.html} -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20191204072324-ce4227a45e2e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1s43wvqfml6ml5ks7iv2bis9d664g77mq86v7mfmjhn56x856g35")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-google-pprof-0.0.0-20200229191704-1ebb73c60ed3 -; (package -; (name "go-github-com-google-pprof") -; (version "0.0.0-20200229191704-1ebb73c60ed3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/pprof") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1gdi9p4j1zfm5xlm488i5l0q3kk4q6hsmbmlk6p729i0di2n3ifa")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/pprof")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" -; ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) -; ("go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6" -; ,go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6) -; ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" -; ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) -; ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" -; ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) -; ("go-github-com-chzyer-logex-1.1.10" -; ,go-github-com-chzyer-logex-1.1.10))) -; (home-page "https://github.com/google/pprof") -; (synopsis "Introduction") -; (description -; "pprof is a tool for collection, manipulation and visualization -;of performance profiles. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-jstemmer-go-junit-report-0.9.1 -; (package -; (name "go-github-com-jstemmer-go-junit-report") -; (version "0.9.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/jstemmer/go-junit-report") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1knip80yir1cdsjlb3rzy0a4w3kl4ljpiciaz6hjzwqlfhnv7bkw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/jstemmer/go-junit-report")) -; (home-page "https://github.com/jstemmer/go-junit-report") -; (synopsis "go-junit-report") -; (description -; "Converts @code{go test} output to an xml report, suitable for applications that -;expect junit xml reports (e.g. @url{http://jenkins-ci.org,Jenkins}).") -; (license license:expat))) -; -;(define-public go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6 -; (package -; (name "go-github-com-golang-groupcache") -; (version "0.0.0-20190702054246-869f871628b6") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/groupcache") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0r4nk8129bvx50qb4xzjaay39b2h6k7cbdqqzdlanmc82ygczsbw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/groupcache")) -; (home-page "https://github.com/golang/groupcache") -; (synopsis "groupcache") -; (description -; "Package groupcache provides a data loading mechanism with caching -;and de-duplication that works across a set of peer processes. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-golang-protobuf-1.3.1 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.3.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "15am4s4646qy6iv0g3kkqq52rzykqjhm4bf08dk0fy2r58knpsyl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-github-com-stretchr-testify-1.4.0 -; (package -; (name "go-github-com-stretchr-testify") -; (version "1.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/testify") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "187i5g88sxfy4vxpm7dw1gwv29pa2qaq475lxrdh5livh69wqfjb")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/testify")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) -; ("go-github-com-stretchr-objx-0.1.0" -; ,go-github-com-stretchr-objx-0.1.0) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-davecgh-go-spew-1.1.0" -; ,go-github-com-davecgh-go-spew-1.1.0))) -; (home-page "https://github.com/stretchr/testify") -; (synopsis "Testify - Thou Shalt Write Tests") -; (description -; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190502145724-3ef323f4f1fd") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "15iw4gjvrnrx98rlny1qcaprp3577rh2b77byb38dr6m3q42rvc6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20190425155659-357c62f0e4bb") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1h1a0wys83cc86s4w2hqmz78ixijw8f7qchmiwdv5xjvpg0i27c2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" -; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) -; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) -; ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" -; ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) -; ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" -; ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) -; ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" -; ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd) -; ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" -; ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) -; ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" -; ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-grpc-1.20.1 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.20.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0rj3fs6jillapiwnpkfn3v2jbl7a3zsb0lys4srswl26hjijviqq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" -; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) -; ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" -; ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) -; ("go-google-golang-org-appengine-1.1.0" -; ,go-google-golang-org-appengine-1.1.0) -; ("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" -; ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" -; ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0) -; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-client9-misspell-0.3.4" -; ,go-github-com-client9-misspell-0.3.4) -; ("go-github-com-burntsushi-toml-0.3.1" -; ,go-github-com-burntsushi-toml-0.3.1) -; ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-go-opencensus-io-0.22.3 -; (package -; (name "go-go-opencensus-io") -; (version "0.22.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/census-instrumentation/opencensus-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0xj16iq5jp26hi2py7lsd8cvqh651fgn39y05gzvjdi88d9xd3nw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "go.opencensus.io")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.20.1" ,go-google-golang-org-grpc-1.20.1) -; ("go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb" -; ,go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb) -; ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) -; ("go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd" -; ,go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd) -; ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" -; ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) -; ("go-github-com-stretchr-testify-1.4.0" -; ,go-github-com-stretchr-testify-1.4.0) -; ("go-github-com-google-go-cmp-0.3.0" -; ,go-github-com-google-go-cmp-0.3.0) -; ("go-github-com-golang-protobuf-1.3.1" -; ,go-github-com-golang-protobuf-1.3.1) -; ("go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6" -; ,go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6))) -; (home-page "https://go.opencensus.io") -; (synopsis "OpenCensus Libraries for Go") -; (description "Package opencensus contains Go support for OpenCensus. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-mod-0.1.1-0.20191105210325-c90efee705ee -; (package -; (name "go-golang-org-x-mod") -; (version "0.1.1-0.20191105210325-c90efee705ee") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/mod") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0i5md645rmcy5z5ij9ng428k9rz4g3k1kjy3blsq1264rn426gdf")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/mod")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" -; ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) -; ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" -; ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) -; (home-page "https://golang.org/x/mod") -; (synopsis "mod") -; (description -; "This repository holds packages for writing tools -;that work directly with Go module mechanics. -;That is, it is for direct manipulation of Go modules themselves.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7 -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20200130002326-2f3ba24bd6e7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0j3nnmlwnbivf0h9x89vlp8ji3ha41v96bj33cxwmrrjnxq543ww")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" -; ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) -; ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" -; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) -; ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" -; ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) -; ("go-golang-org-x-mod-0.1.1-0.20191105210325-c90efee705ee" -; ,go-golang-org-x-mod-0.1.1-0.20191105210325-c90efee705ee))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b -; (package -; (name "go-golang-org-x-lint") -; (version "0.0.0-20200302205851-738671d3881b") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/lint") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0jkiz4py59jjnkyxbxifpf7bsar11lbgmj5jiq2kic5k03shkn9c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/lint")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7" -; ,go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7))) -; (home-page "https://golang.org/x/lint") -; (synopsis "Installation") -; (description "Package lint contains a linter for Go source code. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20200301022130-244492dfa37a -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20200301022130-244492dfa37a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0vm2q44phz4vjnzq9428rjk58c82fxf003whczp7c9ryn9fazh7s")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20200302150141-5c8b2ff67527 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20200302150141-5c8b2ff67527") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0r5s7f4w7crrbcf5ydpr2xzsq0svjm332vsds41yp58kwi2lvh2v")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20200304193943-95d2e580d8eb -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20200304193943-95d2e580d8eb") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0f46657xsdc12lr29ksqg80fp0j8v2iqgihzh788avcj5cmhnqyl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" -; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) -; ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" -; ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) -; ("go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b" -; ,go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b) -; ("go-golang-org-x-mod-0.2.0" ,go-golang-org-x-mod-0.2.0))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-mock-1.2.0 -; (package -; (name "go-github-com-golang-mock") -; (version "1.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/mock") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "12ddj2g8ab87id6n2n67vnbhq6p8dvgsq1pzpqfriym4dk8w54fg")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/mock")) -; (home-page "https://github.com/golang/mock") -; (synopsis "gomock") -; (description -; "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It -;integrates well with Go's built-in @code{testing} package, but can be used in other -;contexts too.") -; (license license:asl2.0))) -; -;(define-public go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c -; (package -; (name "go-github-com-google-btree") -; (version "0.0.0-20180813153112-4030bb1f1f0c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/btree") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ba430m9fbnagacp57krgidsyrgp3ycw5r7dj71brgp5r52g82p6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/btree")) -; (home-page "https://github.com/google/btree") -; (synopsis "BTree implementation for Go") -; (description -; "Package btree implements in-memory B-Trees of arbitrary degree. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-google-martian-2.1.0+incompatible -; (package -; (name "go-github-com-google-martian") -; (version "2.1.0+incompatible") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/martian") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "197hil6vrjk50b9wvwyzf61csid83whsjj6ik8mc9r2lryxlyyrp")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/martian")) -; (home-page "https://github.com/google/martian") -; (synopsis "Martian Proxy") -; (description -; "Package martian provides an HTTP/1.1 proxy with an API for configurable -;request and response modifiers. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-google-pprof-0.0.0-20181206194817-3ea8567a2e57 -; (package -; (name "go-github-com-google-pprof") -; (version "0.0.0-20181206194817-3ea8567a2e57") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/pprof") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "09rhjn3ms0a72dw0yzbp237p7yhqma772zspddn6mgkh3gi3kn4c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/pprof")) -; (home-page "https://github.com/google/pprof") -; (synopsis "Introduction") -; (description -; "pprof is a tool for collection, manipulation and visualization -;of performance profiles. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-googleapis-gax-go-v2-2.0.4 -; (package -; (name "go-github-com-googleapis-gax-go-v2") -; (version "2.0.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/gax-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1iwnm6ky1x53lgs44mw3hpdkjzrm5qd0kfs50m0qcq2ml5m1cwdm")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/googleapis/gax-go/v2")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.19.0" -; ,go-google-golang-org-grpc-1.19.0))) -; (home-page "https://github.com/googleapis/gax-go") -; (synopsis #f) -; (description -; "Package gax contains a set of modules which aid the development of APIs -;for clients and servers based on gRPC and Google API conventions. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-jstemmer-go-junit-report-0.0.0-20190106144839-af01ea7f8024 -; (package -; (name "go-github-com-jstemmer-go-junit-report") -; (version "0.0.0-20190106144839-af01ea7f8024") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/jstemmer/go-junit-report") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1lp3n94ris12hac02wi31f3whs88lcrzwgdg43a5j6cafg9p1d0s")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/jstemmer/go-junit-report")) -; (home-page "https://github.com/jstemmer/go-junit-report") -; (synopsis "go-junit-report") -; (description -; "Converts @code{go test} output to an xml report, suitable for applications that -;expect junit xml reports (e.g. @url{http://jenkins-ci.org,Jenkins}).") -; (license license:expat))) -; -;(define-public go-golang-org-x-text-0.3.1-0.20180807135948-17ff2d5776d2 -; (package -; (name "go-golang-org-x-text") -; (version "0.3.1-0.20180807135948-17ff2d5776d2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/text") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1rrh2mnmyxr45nsvy42zq3w3ly6gw6rl993knwvf1w71kyv0jjnj")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/text")) -; (home-page "https://golang.org/x/text") -; (synopsis "Go Text") -; (description -; "text is a repository of text-related packages related to internationalization -;(i18n) and localization (l10n), such as character encodings, text -;transformations, and locale-specific text handling. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-time-0.0.0-20181108054448-85acf8d2951c -; (package -; (name "go-golang-org-x-time") -; (version "0.0.0-20181108054448-85acf8d2951c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/time") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0yqnxsrarjk4qkda8kcxzmk7y90kkkxzx9iwryzrk7bzs87ky3xc")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/time")) -; (home-page "https://golang.org/x/time") -; (synopsis "Go Time") -; (description "This repository provides supplementary Go time packages.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f -; (package -; (name "go-golang-org-x-lint") -; (version "0.0.0-20190301231843-5614ed5bae6f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/lint") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0fzn0zjv0x92xvfdq3a0v9w5sgkhr7hxkfy9zaqi8i57807z8bnx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/lint")) -; (home-page "https://golang.org/x/lint") -; (synopsis "Installation") -; (description "Package lint contains a linter for Go source code. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421 -; (package -; (name "go-golang-org-x-oauth2") -; (version "0.0.0-20190226205417-e64efc72b421") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/oauth2") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0djvwz2avx7knsjbl434vw1wqbrg53xp1kh599gfixn5icrggz4m")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/oauth2")) -; (propagated-inputs -; `(("go-google-golang-org-appengine-1.4.0" -; ,go-google-golang-org-appengine-1.4.0) -; ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" -; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) -; ("go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e" -; ,go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e) -; ("go-cloud-google-com-go-0.34.0" ,go-cloud-google-com-go-0.34.0))) -; (home-page "https://golang.org/x/oauth2") -; (synopsis "OAuth2 for Go") -; (description -; "Package oauth2 provides support for making -;OAuth2 authorized and authenticated HTTP requests, -;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -;It can additionally grant authorization with Bearer JWT. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138 -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20190312170243-e65039ee4138") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0c094599cf70wdrms49a3879qkq122pqlp2av444gs2pvc8apdcx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-api-0.4.0 -; (package -; (name "go-google-golang-org-api") -; (version "0.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-api-go-client") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1hzgrw5wasmcjlqpxsmryddzzw4cwyzf2vx14i9z51v1plwssijm")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/api")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" -; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) -; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) -; ("go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19" -; ,go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19) -; ("go-google-golang-org-appengine-1.4.0" -; ,go-google-golang-org-appengine-1.4.0) -; ("go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138" -; ,go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138) -; ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" -; ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) -; ("go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421" -; ,go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421) -; ("go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f" -; ,go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f) -; ("go-go-opencensus-io-0.21.0" ,go-go-opencensus-io-0.21.0) -; ("go-github-com-google-go-cmp-0.2.0" -; ,go-github-com-google-go-cmp-0.2.0))) -; (home-page "https://google.golang.org/api") -; (synopsis "Google APIs Client Library for Go") -; (description -; "Package api is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of -;sub-packages. -;") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20190418145605-e7d98fc518a7 -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20190418145605-e7d98fc518a7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1cnavkyawwvfc5yl097ygnfy1ac69v4zc02gdfnq1bvgcvgmvnbi")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" -; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) -; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) -; ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" -; ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) -; ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" -; ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) -; ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" -; ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd) -; ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" -; ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) -; ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" -; ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-honnef-co-go-tools-0.0.0-20190106161140-3f1c8253044a -; (package -; (name "go-honnef-co-go-tools") -; (version "0.0.0-20190106161140-3f1c8253044a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/dominikh/go-tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0d3vgh0fgfj1z7i648g1s6x2pwxd07sxfjwg1xn3yagr9h06jh3h")))) -; (build-system go-build-system) -; (arguments '(#:import-path "honnef.co/go/tools")) -; (home-page "https://honnef.co/go/tools") -; (synopsis "Documentation") -; (description -; "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, -;offers simplifications, and enforces style rules.") -; (license license:expat))) -; -;(define-public go-cloud-google-com-go-0.38.0 -; (package -; (name "go-cloud-google-com-go") -; (version "0.38.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-cloud-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0n6n13b7lri2fmc4bn4ifszyawj31dpbzvyv0xafsf81440z8cyh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "cloud.google.com/go")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190106161140-3f1c8253044a" -; ,go-honnef-co-go-tools-0.0.0-20190106161140-3f1c8253044a) -; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) -; ("go-google-golang-org-genproto-0.0.0-20190418145605-e7d98fc518a7" -; ,go-google-golang-org-genproto-0.0.0-20190418145605-e7d98fc518a7) -; ("go-google-golang-org-api-0.4.0" ,go-google-golang-org-api-0.4.0) -; ("go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138" -; ,go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138) -; ("go-golang-org-x-time-0.0.0-20181108054448-85acf8d2951c" -; ,go-golang-org-x-time-0.0.0-20181108054448-85acf8d2951c) -; ("go-golang-org-x-text-0.3.1-0.20180807135948-17ff2d5776d2" -; ,go-golang-org-x-text-0.3.1-0.20180807135948-17ff2d5776d2) -; ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" -; ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) -; ("go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421" -; ,go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421) -; ("go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f" -; ,go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f) -; ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" -; ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) -; ("go-go-opencensus-io-0.21.0" ,go-go-opencensus-io-0.21.0) -; ("go-github-com-jstemmer-go-junit-report-0.0.0-20190106144839-af01ea7f8024" -; ,go-github-com-jstemmer-go-junit-report-0.0.0-20190106144839-af01ea7f8024) -; ("go-github-com-googleapis-gax-go-v2-2.0.4" -; ,go-github-com-googleapis-gax-go-v2-2.0.4) -; ("go-github-com-google-pprof-0.0.0-20181206194817-3ea8567a2e57" -; ,go-github-com-google-pprof-0.0.0-20181206194817-3ea8567a2e57) -; ("go-github-com-google-martian-2.1.0+incompatible" -; ,go-github-com-google-martian-2.1.0+incompatible) -; ("go-github-com-google-go-cmp-0.2.0" -; ,go-github-com-google-go-cmp-0.2.0) -; ("go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c" -; ,go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0) -; ("go-github-com-golang-mock-1.2.0" ,go-github-com-golang-mock-1.2.0))) -; (home-page "https://cloud.google.com/go") -; (synopsis "Google Cloud Client Libraries for Go") -; (description -; "Package cloud is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -;of sub-packages. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-googleapis-gax-go-v2-2.0.5 -; (package -; (name "go-github-com-googleapis-gax-go-v2") -; (version "2.0.5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/gax-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1lxawwngv6miaqd25s3ba0didfzylbwisd2nz7r4gmbmin6jsjrx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/googleapis/gax-go/v2")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.19.0" -; ,go-google-golang-org-grpc-1.19.0))) -; (home-page "https://github.com/googleapis/gax-go") -; (synopsis #f) -; (description -; "Package gax contains a set of modules which aid the development of APIs -;for clients and servers based on gRPC and Google API conventions. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-hashicorp-golang-lru-0.5.0 -; (package -; (name "go-github-com-hashicorp-golang-lru") -; (version "0.5.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/golang-lru") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "12k2cp2k615fjvfa5hyb9k2alian77wivds8s65diwshwv41939f")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hashicorp/golang-lru")) -; (home-page "https://github.com/hashicorp/golang-lru") -; (synopsis "golang-lru") -; (description -; "Package lru provides three different LRU caches of varying sophistication. -;") -; (license license:mpl2.0))) -; -;(define-public go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6 -; (package -; (name "go-golang-org-x-sync") -; (version "0.0.0-20190227155943-e225da77a7e6") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sync") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0bh3583smcfw6jw3w6lp0za93rz7hpxfdz8vhxng75b7a6vdlw4p")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sync")) -; (home-page "https://golang.org/x/sync") -; (synopsis "Go Sync") -; (description -; "This repository provides Go concurrency primitives in addition to the -;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19 -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20190307195333-5fe7a883aa19") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0qjkwig0r42q0j2qv57s4ahsgmmp41dz3ih3rnaqg0619n5w7lbs")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" -; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) -; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) -; ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" -; ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) -; ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" -; ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) -; ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" -; ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd) -; ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" -; ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) -; ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" -; ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-go-opencensus-io-0.21.0 -; (package -; (name "go-go-opencensus-io") -; (version "0.21.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/census-instrumentation/opencensus-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "14s0a12xdzjvad0dgksgv8m3hh7nc585abvjkvyk6r67a29lxj6x")))) -; (build-system go-build-system) -; (arguments '(#:import-path "go.opencensus.io")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) -; ("go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19" -; ,go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-github-com-hashicorp-golang-lru-0.5.0" -; ,go-github-com-hashicorp-golang-lru-0.5.0) -; ("go-github-com-google-go-cmp-0.2.0" -; ,go-github-com-google-go-cmp-0.2.0) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0))) -; (home-page "https://go.opencensus.io") -; (synopsis "OpenCensus Libraries for Go") -; (description "Package opencensus contains Go support for OpenCensus. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-net-0.0.0-20190503192946-f4e77d36d62c -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20190503192946-f4e77d36d62c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0avjnglqqg9ya0cbhp23m4namykii219kxjywxn4cd7pfcc5arha")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45 -; (package -; (name "go-golang-org-x-oauth2") -; (version "0.0.0-20190604053449-0f29369cfe45") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/oauth2") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "06jwpvx0x2gjn2y959drbcir5kd7vg87k0r1216abk6rrdzzrzi2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/oauth2")) -; (propagated-inputs -; `(("go-google-golang-org-appengine-1.4.0" -; ,go-google-golang-org-appengine-1.4.0) -; ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" -; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) -; ("go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e" -; ,go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e) -; ("go-cloud-google-com-go-0.34.0" ,go-cloud-google-com-go-0.34.0))) -; (home-page "https://golang.org/x/oauth2") -; (synopsis "OAuth2 for Go") -; (description -; "Package oauth2 provides support for making -;OAuth2 authorized and authenticated HTTP requests, -;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -;It can additionally grant authorization with Bearer JWT. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190507160741-ecd444e8653b") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1vhld4948mzfnlgf20id29mv1bwpk9a3xlbw1mbjzxzxxdv1jds2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-appengine-1.5.0 -; (package -; (name "go-google-golang-org-appengine") -; (version "1.5.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/appengine") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0l7mkdnwhidv8m686x432vmx8z5nqcrr9f46ddgvrxbh4wvyfcll")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/appengine")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225" -; ,go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0))) -; (home-page "https://google.golang.org/appengine") -; (synopsis "Go App Engine packages") -; (description -; "Package appengine provides basic functionality for Google App Engine. -;") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-api-0.20.0 -; (package -; (name "go-google-golang-org-api") -; (version "0.20.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-api-go-client") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "13syr1x33k6mrn5w6l4sgdbzn368w3m60vf6kk2j10fwa45125rg")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/api")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" -; ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) -; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) -; ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" -; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) -; ("go-google-golang-org-appengine-1.5.0" -; ,go-google-golang-org-appengine-1.5.0) -; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" -; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) -; ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) -; ("go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b" -; ,go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b) -; ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" -; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) -; ("go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45" -; ,go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45) -; ("go-golang-org-x-net-0.0.0-20190503192946-f4e77d36d62c" -; ,go-golang-org-x-net-0.0.0-20190503192946-f4e77d36d62c) -; ("go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422" -; ,go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422) -; ("go-go-opencensus-io-0.21.0" ,go-go-opencensus-io-0.21.0) -; ("go-github-com-hashicorp-golang-lru-0.5.1" -; ,go-github-com-hashicorp-golang-lru-0.5.1) -; ("go-github-com-googleapis-gax-go-v2-2.0.5" -; ,go-github-com-googleapis-gax-go-v2-2.0.5) -; ("go-github-com-google-go-cmp-0.3.0" -; ,go-github-com-google-go-cmp-0.3.0) -; ("go-cloud-google-com-go-0.38.0" ,go-cloud-google-com-go-0.38.0))) -; (home-page "https://google.golang.org/api") -; (synopsis "Google APIs Client Library for Go") -; (description -; "Package api is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of -;sub-packages. -;") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20200305110556-506484158171 -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20200305110556-506484158171") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "19h7sxkfjcrkm7majd0pyzzirdnk1qlsxc3h5zklhm234d8jg407")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" -; ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) -; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) -; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" -; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-github-com-golang-protobuf-1.3.3" -; ,go-github-com-golang-protobuf-1.3.3))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-github-com-google-renameio-0.1.0 -; (package -; (name "go-github-com-google-renameio") -; (version "0.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/renameio") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ki2x5a9nrj17sn092d6n4zr29lfg5ydv4xz5cp58z6cw8ip43jx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/renameio")) -; (home-page "https://github.com/google/renameio") -; (synopsis "Atomicity vs durability") -; (description -; "Package renameio provides a way to atomically create or replace a file or -;symbolic link. -;") -; (license license:asl2.0))) -; -;(define-public go-gopkg-in-errgo-v2-2.1.0 -; (package -; (name "go-gopkg-in-errgo-v2") -; (version "2.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/errgo.v2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "065mbihiy7q67wnql0bzl9y1kkvck5ivra68254zbih52jxwrgr2")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/errgo.v2" #:unpack-path "gopkg.in/errgo.v2")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" -; ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) -; ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0))) -; (home-page "https://gopkg.in/errgo.v2") -; (synopsis #f) -; (description -; "Package errgo provides some primitives for error creation and handling.") -; (license license:bsd-3))) -; -;(define-public go-github-com-rogpeppe-go-internal-1.3.0 -; (package -; (name "go-github-com-rogpeppe-go-internal") -; (version "1.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/rogpeppe/go-internal") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0mcdh1licgnnahwml9y2iq6xy5x9xmjw5frcnds2s3wpjyqrl216")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/rogpeppe/go-internal")) -; (propagated-inputs -; `(("go-gopkg-in-errgo-v2-2.1.0" ,go-gopkg-in-errgo-v2-2.1.0))) -; (home-page "https://github.com/rogpeppe/go-internal") -; (synopsis #f) -; (description -; "This repository factors out an opinionated selection of internal packages and functionality from the Go standard -;library. Currently this consists mostly of packages and testing code from within the Go tool implementation.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20190510104115-cbcb75029529 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20190510104115-cbcb75029529") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "12831ga1gq04a3jbbcmww7kaqfdfgp7cdv2fj9aqidz8h52ajdmh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" -; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) -; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" -; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-mod-0.0.0-20190513183733-4bf6d317e70e -; (package -; (name "go-golang-org-x-mod") -; (version "0.0.0-20190513183733-4bf6d317e70e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/mod") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "19lg1ly3j31anx92p0hynic1gjk417wwxphfdrb2cq1c19kj3r17")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/mod")) -; (propagated-inputs -; `(("go-golang-org-x-crypto-0.0.0-20190510104115-cbcb75029529" -; ,go-golang-org-x-crypto-0.0.0-20190510104115-cbcb75029529))) -; (home-page "https://golang.org/x/mod") -; (synopsis "mod") -; (description -; "This repository holds packages for writing tools -;that work directly with Go module mechanics. -;That is, it is for direct manipulation of Go modules themselves.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20191130070609-6e064ea0cf2d -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20191130070609-6e064ea0cf2d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1nbki367xspsa37j6276f5q2gv31vfjpb52axn3p3ymz548my75d")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7" -; ,go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7) -; ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" -; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) -; ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" -; ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-honnef-co-go-tools-0.0.1-2020.1.3 -; (package -; (name "go-honnef-co-go-tools") -; (version "0.0.1-2020.1.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/dominikh/go-tools") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0pvi1mzhy6zgx4zfgdypbl4zhvgg11hl5qv7blf2qs0a96j2djhf")))) -; (build-system go-build-system) -; (arguments '(#:import-path "honnef.co/go/tools")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20191130070609-6e064ea0cf2d" -; ,go-golang-org-x-tools-0.0.0-20191130070609-6e064ea0cf2d) -; ("go-golang-org-x-mod-0.0.0-20190513183733-4bf6d317e70e" -; ,go-golang-org-x-mod-0.0.0-20190513183733-4bf6d317e70e) -; ("go-github-com-rogpeppe-go-internal-1.3.0" -; ,go-github-com-rogpeppe-go-internal-1.3.0) -; ("go-github-com-kisielk-gotool-1.0.0" -; ,go-github-com-kisielk-gotool-1.0.0) -; ("go-github-com-google-renameio-0.1.0" -; ,go-github-com-google-renameio-0.1.0) -; ("go-github-com-burntsushi-toml-0.3.1" -; ,go-github-com-burntsushi-toml-0.3.1))) -; (home-page "https://honnef.co/go/tools") -; (synopsis "Documentation") -; (description -; "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, -;offers simplifications, and enforces style rules.") -; (license license:expat))) -; -;(define-public go-cloud-google-com-go-0.54.0 -; (package -; (name "go-cloud-google-com-go") -; (version "0.54.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-cloud-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ilqqymrphg546c66jc0npd48dlr88wbgrg462h1jgm2ykbnq1ba")))) -; (build-system go-build-system) -; (arguments '(#:import-path "cloud.google.com/go")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.1-2020.1.3" -; ,go-honnef-co-go-tools-0.0.1-2020.1.3) -; ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) -; ("go-google-golang-org-genproto-0.0.0-20200305110556-506484158171" -; ,go-google-golang-org-genproto-0.0.0-20200305110556-506484158171) -; ("go-google-golang-org-api-0.20.0" ,go-google-golang-org-api-0.20.0) -; ("go-golang-org-x-tools-0.0.0-20200304193943-95d2e580d8eb" -; ,go-golang-org-x-tools-0.0.0-20200304193943-95d2e580d8eb) -; ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) -; ("go-golang-org-x-sys-0.0.0-20200302150141-5c8b2ff67527" -; ,go-golang-org-x-sys-0.0.0-20200302150141-5c8b2ff67527) -; ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" -; ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) -; ("go-golang-org-x-net-0.0.0-20200301022130-244492dfa37a" -; ,go-golang-org-x-net-0.0.0-20200301022130-244492dfa37a) -; ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" -; ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) -; ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) -; ("go-github-com-jstemmer-go-junit-report-0.9.1" -; ,go-github-com-jstemmer-go-junit-report-0.9.1) -; ("go-github-com-googleapis-gax-go-v2-2.0.5" -; ,go-github-com-googleapis-gax-go-v2-2.0.5) -; ("go-github-com-google-pprof-0.0.0-20200229191704-1ebb73c60ed3" -; ,go-github-com-google-pprof-0.0.0-20200229191704-1ebb73c60ed3) -; ("go-github-com-google-martian-2.1.0+incompatible" -; ,go-github-com-google-martian-2.1.0+incompatible) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.3.4" -; ,go-github-com-golang-protobuf-1.3.4) -; ("go-github-com-golang-mock-1.4.1" ,go-github-com-golang-mock-1.4.1) -; ("go-cloud-google-com-go-storage-1.6.0" -; ,go-cloud-google-com-go-storage-1.6.0) -; ("go-cloud-google-com-go-pubsub-1.2.0" -; ,go-cloud-google-com-go-pubsub-1.2.0) -; ("go-cloud-google-com-go-datastore-1.1.0" -; ,go-cloud-google-com-go-datastore-1.1.0) -; ("go-cloud-google-com-go-bigquery-1.4.0" -; ,go-cloud-google-com-go-bigquery-1.4.0))) -; (home-page "https://cloud.google.com/go") -; (synopsis "Google Cloud Client Libraries for Go") -; (description -; "Package cloud is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -;of sub-packages. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7 -; (package -; (name "go-github-com-gregjones-httpcache") -; (version "0.0.0-20180305231024-9cad4c3443a7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/gregjones/httpcache") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0wjdwcwqqcx2d5y68qvhg6qyj977il5ijmnn9h9cd6wjbdy0ay6s")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/gregjones/httpcache")) -; (home-page "https://github.com/gregjones/httpcache") -; (synopsis "httpcache") -; (description -; "Package httpcache provides a http.RoundTripper implementation that works as a -;mostly RFC-compliant cache for http responses. -;") -; (license license:expat))) -; -;(define-public go-github-com-imdario-mergo-0.3.5 -; (package -; (name "go-github-com-imdario-mergo") -; (version "0.3.5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/imdario/mergo") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1mvgn89vp39gcpvhiq4n7nw5ipj7fk6h03jgc6fjwgvwvss213pb")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/imdario/mergo")) -; (home-page "https://github.com/imdario/mergo") -; (synopsis "Mergo") -; (description -; "This package provides a helper to merge structs and maps in Golang. Useful for configuration default values, avoiding messy if-statements. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-peterbourgon-diskv-2.0.1+incompatible -; (package -; (name "go-github-com-peterbourgon-diskv") -; (version "2.0.1+incompatible") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/peterbourgon/diskv") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1mxpa5aad08x30qcbffzk80g9540wvbca4blc1r2qyzl65b8929b")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/peterbourgon/diskv")) -; (home-page "https://github.com/peterbourgon/diskv") -; (synopsis "What is diskv?") -; (description -; "Diskv (disk-vee) is a simple, persistent key-value store written in the Go -;language. It starts with an incredibly simple API for storing arbitrary data on -;a filesystem by key, and builds several layers of performance-enhancing -;abstraction on top. The end result is a conceptually simple, but highly -;performant, disk-backed storage system.") -; (license license:expat))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20201002170205-7f63de1d35b0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1dr89jfs4dmpr3jqfshqqvfpzzdx4r76nkzhrvmixfrmn6wxrnd1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" -; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) -; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" -; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-cloud-google-com-go-0.34.0 -; (package -; (name "go-cloud-google-com-go") -; (version "0.34.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-cloud-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1kclgclwar3r37zbvb9gg3qxbgzkb50zk3s9778zlh2773qikmai")))) -; (build-system go-build-system) -; (arguments '(#:import-path "cloud.google.com/go")) -; (home-page "https://cloud.google.com/go") -; (synopsis "Google Cloud Client Libraries for Go") -; (description -; "Package cloud is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -;of sub-packages. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20190108225652-1e06a53dbb7e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0lpqqvdccby48nixihvmn8ig1z48b950m1bxfqxn78air308qc3j")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4 -; (package -; (name "go-golang-org-x-sync") -; (version "0.0.0-20181221193216-37e7f081c4d4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sync") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1bb0mw6ckb1k7z8v3iil2qlqwfj408fvvp8m1cik2b46p7snyjhm")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sync")) -; (home-page "https://golang.org/x/sync") -; (synopsis "Go Sync") -; (description -; "This repository provides Go concurrency primitives in addition to the -;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d -; (package -; (name "go-golang-org-x-oauth2") -; (version "0.0.0-20200107190931-bf48bf16ab8d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/oauth2") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1sirdib60zwmh93kf9qrx51r8544k1p9rs5mk0797wibz3m4mrdg")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/oauth2")) -; (propagated-inputs -; `(("go-google-golang-org-appengine-1.4.0" -; ,go-google-golang-org-appengine-1.4.0) -; ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" -; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) -; ("go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e" -; ,go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e) -; ("go-cloud-google-com-go-0.34.0" ,go-cloud-google-com-go-0.34.0))) -; (home-page "https://golang.org/x/oauth2") -; (synopsis "OAuth2 for Go") -; (description -; "Package oauth2 provides support for making -;OAuth2 authorized and authenticated HTTP requests, -;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -;It can additionally grant authorization with Bearer JWT. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e -; (package -; (name "go-golang-org-x-time") -; (version "0.0.0-20200630173020-3af7569d3a1e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/time") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "05hqhw3vlssi499y6m41zgdp1yyjsw2kj95ahymlw6pkhsssh2vq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/time")) -; (home-page "https://golang.org/x/time") -; (synopsis "Go Time") -; (description "This repository provides supplementary Go time packages.") -; (license license:bsd-3))) -; -;(define-public go-k8s-io-api-0.20.6 -; (package -; (name "go-k8s-io-api") -; (version "0.20.6") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes/api") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0mm6a91a4nrlsvnfcbgn2574vdwxf1nxpgrd5avklh8mym2ngimw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "k8s.io/api")) -; (propagated-inputs -; `(("go-k8s-io-apimachinery-0.20.6" ,go-k8s-io-apimachinery-0.20.6) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-gogo-protobuf-1.3.2" -; ,go-github-com-gogo-protobuf-1.3.2))) -; (home-page "https://k8s.io/api") -; (synopsis "api") -; (description -; "Schema of the external API types that are served by the Kubernetes API server.") -; (license license:asl2.0))) -; -;(define-public go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96 -; (package -; (name "go-github-com-docker-spdystream") -; (version "0.0.0-20160310174837-449fdfce4d96") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/moby/spdystream") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1412cpiis971iq1kxrirzirhj2708ispjh0x0dh879b66x8507sl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/docker/spdystream")) -; (home-page "https://github.com/docker/spdystream") -; (synopsis "SpdyStream") -; (description -; "This package provides a multiplexed stream library using spdy") -; (license license:asl2.0))) -; -;(define-public go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153 -; (package -; (name "go-github-com-elazarl-goproxy") -; (version "0.0.0-20180725130230-947c36da3153") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/elazarl/goproxy") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0lmsnr5xmda89wig8sw62llg6acjb5caghz5jmdhnm85rm6rnssk")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/elazarl/goproxy")) -; (home-page "https://github.com/elazarl/goproxy") -; (synopsis "Introduction") -; (description -; "Taken from $GOROOT/src/pkg/net/http/chunked -;needed to write https responses to client. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-evanphx-json-patch-4.9.0+incompatible -; (package -; (name "go-github-com-evanphx-json-patch") -; (version "4.9.0+incompatible") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/evanphx/json-patch") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1r88qpzjxsx8skij9s5pi4a5qcv4bm18vq8sy21gpwgzp3qf6qzx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/evanphx/json-patch")) -; (home-page "https://github.com/evanphx/json-patch") -; (synopsis "JSON-Patch") -; (description -; "@code{jsonpatch} is a library which provides functionality for both applying -;@url{http://tools.ietf.org/html/rfc6902,RFC6902 JSON patches} against documents, as -;well as for calculating & applying @url{https://tools.ietf.org/html/rfc7396,RFC7396 JSON merge patches}.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20191005200804-aed5e4c7ecf9") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0wsdsbl9n61l99z0cvib2xzg56fsfgky4yc5xapdw9ywx9h0zm3a")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-fsnotify-fsnotify-1.4.9 -; (package -; (name "go-github-com-fsnotify-fsnotify") -; (version "1.4.9") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/fsnotify/fsnotify") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1i1r72knpbfwwql9frn9bqc3nhfc2ai5m6qllcyr6wban62lr40x")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/fsnotify/fsnotify")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9" -; ,go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9))) -; (home-page "https://github.com/fsnotify/fsnotify") -; (synopsis "File system notifications for Go") -; (description -; "Package fsnotify provides a platform-independent interface for file system notifications. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e -; (package -; (name "go-github-com-golang-groupcache") -; (version "0.0.0-20200121045136-8c9f03a8e57e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/groupcache") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0vjjr79r32icjzlb05wn02k59av7jx0rn1jijml8r4whlg7dnkfh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/groupcache")) -; (home-page "https://github.com/golang/groupcache") -; (synopsis "groupcache") -; (description -; "Package groupcache provides a data loading mechanism with caching -;and de-duplication that works across a set of peer processes. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-google-gofuzz-1.1.0 -; (package -; (name "go-github-com-google-gofuzz") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/gofuzz") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0si2fiigj45vr4jnw4grjhls7nw56wkwinnn93gqbl9ng9ynw8rx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/gofuzz")) -; (home-page "https://github.com/google/gofuzz") -; (synopsis "gofuzz") -; (description -; "Package fuzz is a library for populating go objects with random values. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-google-uuid-1.1.2 -; (package -; (name "go-github-com-google-uuid") -; (version "1.1.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/uuid") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1rbpfa0v0ly9sdnixcxhf79swki54ikgm1zkwwkj64p1ws66syqd")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/uuid")) -; (home-page "https://github.com/google/uuid") -; (synopsis "uuid") -; (description "Package uuid generates and inspects UUIDs. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-hashicorp-golang-lru-0.5.1 -; (package -; (name "go-github-com-hashicorp-golang-lru") -; (version "0.5.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/golang-lru") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "13f870cvk161bzjj6x41l45r5x9i1z9r2ymwmvm7768kg08zznpy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hashicorp/golang-lru")) -; (home-page "https://github.com/hashicorp/golang-lru") -; (synopsis "golang-lru") -; (description -; "Package lru provides three different LRU caches of varying sophistication. -;") -; (license license:mpl2.0))) -; -;(define-public go-github-com-modern-go-concurrent-0.0.0-20180228061459-e0a39a4cb421 -; (package -; (name "go-github-com-modern-go-concurrent") -; (version "0.0.0-20180228061459-e0a39a4cb421") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/modern-go/concurrent") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0hamz1zimsxm9vl0ih19v7sbibglwq2j6473w4j9k7ib80fmxdzr")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/modern-go/concurrent")) -; (home-page "https://github.com/modern-go/concurrent") -; (synopsis "concurrent") -; (description -; "because sync.Map is only available in go 1.9, we can use concurrent.Map to make code portable") -; (license license:asl2.0))) -; -;(define-public go-github-com-modern-go-reflect2-0.0.0-20180701023420-4b7aa43c6742 -; (package -; (name "go-github-com-modern-go-reflect2") -; (version "0.0.0-20180701023420-4b7aa43c6742") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/modern-go/reflect2") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1721y3yr3dpx5dx5ashf063qczk2awy5zjir1jvp1h5hn7qz4i49")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/modern-go/reflect2")) -; (home-page "https://github.com/modern-go/reflect2") -; (synopsis "reflect2") -; (description "reflect api that avoids runtime reflect.Value cost") -; (license license:asl2.0))) -; -;(define-public go-github-com-json-iterator-go-1.1.10 -; (package -; (name "go-github-com-json-iterator-go") -; (version "1.1.10") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/json-iterator/go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "134zwc2pmf8nd90r8065wsl6vv1mwjl23bs70i08dzhw5h98drr4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/json-iterator/go")) -; (propagated-inputs -; `(("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0) -; ("go-github-com-modern-go-reflect2-0.0.0-20180701023420-4b7aa43c6742" -; ,go-github-com-modern-go-reflect2-0.0.0-20180701023420-4b7aa43c6742) -; ("go-github-com-modern-go-concurrent-0.0.0-20180228061459-e0a39a4cb421" -; ,go-github-com-modern-go-concurrent-0.0.0-20180228061459-e0a39a4cb421) -; ("go-github-com-google-gofuzz-1.0.0" -; ,go-github-com-google-gofuzz-1.0.0) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://github.com/json-iterator/go") -; (synopsis "Benchmark") -; (description -; "Package jsoniter implements encoding and decoding of JSON as defined in -;@url{https://rfc-editor.org/rfc/rfc4627.html,RFC 4627} and provides interfaces with identical syntax of standard lib encoding/json. -;Converting from encoding/json to jsoniter is no more than replacing the package with jsoniter -;and variable type declarations (if any). -;jsoniter interfaces gives 100% compatibility with code using standard lib. -;") -; (license license:expat))) -; -;(define-public go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f -; (package -; (name "go-github-com-mxk-go-flowrate") -; (version "0.0.0-20140419014527-cca7078d478f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mxk/go-flowrate") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0zqs39923ja0yypdmiqk6x8pgmfs3ms5x5sl1dqv9z6zyx2xy541")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mxk/go-flowrate")) -; (home-page "https://github.com/mxk/go-flowrate") -; (synopsis #f) -; (description #f) -; (license license:bsd-3))) -; -;(define-public go-github-com-onsi-ginkgo-1.11.0 -; (package -; (name "go-github-com-onsi-ginkgo") -; (version "1.11.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/onsi/ginkgo") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1vxmb5k89bq50m2kzcw5l3bdvci4czpifkgxd4nbq1yzv5ir03kp")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/onsi/ginkgo")) -; (home-page "https://github.com/onsi/ginkgo") -; (synopsis "Ginkgo 2.0 Release Candidate is available!") -; (description "Ginkgo is a BDD-style testing framework for Golang -;") -; (license license:expat))) -; -;(define-public go-github-com-fsnotify-fsnotify-1.4.7 -; (package -; (name "go-github-com-fsnotify-fsnotify") -; (version "1.4.7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/fsnotify/fsnotify") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/fsnotify/fsnotify")) -; (home-page "https://github.com/fsnotify/fsnotify") -; (synopsis "File system notifications for Go") -; (description -; "Package fsnotify provides a platform-independent interface for file system notifications. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-hpcloud-tail-1.0.0 -; (package -; (name "go-github-com-hpcloud-tail") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hpcloud/tail") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1njpzc0pi1acg5zx9y6vj9xi6ksbsc5d387rd6904hy6rh2m6kn0")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hpcloud/tail")) -; (home-page "https://github.com/hpcloud/tail") -; (synopsis "Go package for tail-ing files") -; (description -; "This package provides a Go package striving to emulate the features of the BSD @code{tail} program.") -; (license license:expat))) -; -;(define-public go-github-com-onsi-ginkgo-1.6.0 -; (package -; (name "go-github-com-onsi-ginkgo") -; (version "1.6.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/onsi/ginkgo") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0x0gc89vgq38xhgmi2h22bhr73cf2gmk42g89nz89k8dgg9hhr25")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/onsi/ginkgo")) -; (home-page "https://github.com/onsi/ginkgo") -; (synopsis "Ginkgo 2.0 Release Candidate is available!") -; (description "Ginkgo is a BDD-style testing framework for Golang -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20180906233101-161cd47e91fd") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0254ld010iijygbzykib2vags1dc0wlmcmhgh4jl8iny159lhbcv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20180909124046-d0be0721c37e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "081wyvfnlf842dqg03raxfz6lldlxpmyh1prix9lmrrm65arxb12")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-gopkg-in-fsnotify-v1-1.4.7 -; (package -; (name "go-gopkg-in-fsnotify-v1") -; (version "1.4.7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/fsnotify.v1") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path -; "gopkg.in/fsnotify.v1" -; #:unpack-path -; "gopkg.in/fsnotify.v1")) -; (home-page "https://gopkg.in/fsnotify.v1") -; (synopsis "File system notifications for Go") -; (description -; "Package fsnotify provides a platform-independent interface for file system notifications. -;") -; (license license:bsd-3))) -; -;(define-public go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7 -; (package -; (name "go-gopkg-in-tomb-v1") -; (version "1.0.0-20141024135613-dd632973f1e7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/tomb.v1") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1lqmq1ag7s4b3gc3ddvr792c5xb5k6sfn0cchr3i2s7f1c231zjv")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/tomb.v1" #:unpack-path "gopkg.in/tomb.v1")) -; (home-page "https://gopkg.in/tomb.v1") -; (synopsis "Installation and usage") -; (description -; "The tomb package offers a conventional API for clean goroutine termination. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-onsi-gomega-1.7.0 -; (package -; (name "go-github-com-onsi-gomega") -; (version "1.7.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/onsi/gomega") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "09j6wq425wgzzsbwm9ckhfgl2capv3yyqbrf45qyrjwkzm49i02y")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/onsi/gomega")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1) -; ("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" -; ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) -; ("go-gopkg-in-fsnotify-v1-1.4.7" ,go-gopkg-in-fsnotify-v1-1.4.7) -; ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e" -; ,go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e) -; ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" -; ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) -; ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" -; ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) -; ("go-github-com-onsi-ginkgo-1.6.0" ,go-github-com-onsi-ginkgo-1.6.0) -; ("go-github-com-hpcloud-tail-1.0.0" ,go-github-com-hpcloud-tail-1.0.0) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0) -; ("go-github-com-fsnotify-fsnotify-1.4.7" -; ,go-github-com-fsnotify-fsnotify-1.4.7))) -; (home-page "https://github.com/onsi/gomega") -; (synopsis ": a BDD Testing Framework for Golang") -; (description -; "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library. -;") -; (license license:expat))) -; -;(define-public go-github-com-pkg-errors-0.9.1 -; (package -; (name "go-github-com-pkg-errors") -; (version "0.9.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/pkg/errors") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1761pybhc2kqr6v5fm8faj08x9bql8427yqg6vnfv6nhrasx1mwq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/pkg/errors")) -; (home-page "https://github.com/pkg/errors") -; (synopsis "errors") -; (description "Package errors provides simple error handling primitives. -;") -; (license license:bsd-2))) -; -;(define-public go-github-com-spf13-pflag-1.0.5 -; (package -; (name "go-github-com-spf13-pflag") -; (version "1.0.5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/spf13/pflag") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0gpmacngd0gpslnbkzi263f5ishigzgh6pbdv9hp092rnjl4nd31")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/spf13/pflag")) -; (home-page "https://github.com/spf13/pflag") -; (synopsis "Description") -; (description -; "Package pflag is a drop-in replacement for Go's flag package, implementing -;POSIX/GNU-style --flags. -;") -; (license license:bsd-3))) -; -;(define-public go-gopkg-in-inf-v0-0.9.1 -; (package -; (name "go-gopkg-in-inf-v0") -; (version "0.9.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/inf.v0") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "00k5iqjcp371fllqxncv7jkf80hn1zww92zm78cclbcn4ybigkng")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/inf.v0" #:unpack-path "gopkg.in/inf.v0")) -; (home-page "https://gopkg.in/inf.v0") -; (synopsis #f) -; (description -; "Package inf (type inf.Dec) implements \"infinite-precision\" decimal -;arithmetic. -;\"Infinite precision\" describes two characteristics: practically unlimited -;precision for decimal number representation and no support for calculating -;with any specific fixed precision. -;(Although there is no practical limit on precision, inf.Dec can only -;represent finite decimals.) -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-nytimes-gziphandler-0.0.0-20170623195520-56545f4a5d46 -; (package -; (name "go-github-com-nytimes-gziphandler") -; (version "0.0.0-20170623195520-56545f4a5d46") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/nytimes/gziphandler") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1fwk9wz6vrvq72f2gq8jhvd1nvv6grqgwrjq66vjpm0726pxar72")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/NYTimes/gziphandler")) -; (home-page "https://github.com/NYTimes/gziphandler") -; (synopsis "Gzip Handler") -; (description -; "This is a tiny Go package which wraps HTTP handlers to transparently gzip the -;response body, for clients which support it. Although it's usually simpler to -;leave that to a reverse proxy (like nginx or Varnish), this package is useful -;when that's undesirable.") -; (license license:asl2.0))) -; -;(define-public go-github-com-asaskevich-govalidator-0.0.0-20190424111038-f61b66f89f4a -; (package -; (name "go-github-com-asaskevich-govalidator") -; (version "0.0.0-20190424111038-f61b66f89f4a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/asaskevich/govalidator") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1jzjd9ak4byb83bwhbyrrdclnhrgglyxcbr4d4qh39a6ywvcijm5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/asaskevich/govalidator")) -; (home-page "https://github.com/asaskevich/govalidator") -; (synopsis "govalidator") -; (description -; "Package govalidator is package of validators and sanitizers for strings, structs and collections. -;") -; (license license:expat))) -; -;(define-public go-github-com-emicklei-go-restful-0.0.0-20170410110728-ff4f55a20633 -; (package -; (name "go-github-com-emicklei-go-restful") -; (version "0.0.0-20170410110728-ff4f55a20633") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/emicklei/go-restful") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1v5lj5142abz3gvbygp6xghpdx4ps2lwswl8559ivaidahwnc21c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/emicklei/go-restful")) -; (home-page "https://github.com/emicklei/go-restful") -; (synopsis "go-restful") -; (description -; "Package restful , a lean package for creating REST-style WebServices without magic. -;") -; (license license:expat))) -; -;(define-public go-github-com-ghodss-yaml-0.0.0-20150909031657-73d445a93680 -; (package -; (name "go-github-com-ghodss-yaml") -; (version "0.0.0-20150909031657-73d445a93680") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/ghodss/yaml") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0pg53ky4sy3sp9j4n7vgf1p3gw4nbckwqfldcmmi9rf13kjh0mr7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/ghodss/yaml")) -; (home-page "https://github.com/ghodss/yaml") -; (synopsis "YAML marshaling and unmarshaling support for Go") -; (description -; "Copyright 2013 The Go Authors. All rights reserved. -;Use of this source code is governed by a BSD-style -;license that can be found in the LICENSE file. -;") -; (license #f))) -; -;(define-public go-github-com-go-openapi-jsonreference-0.19.3 -; (package -; (name "go-github-com-go-openapi-jsonreference") -; (version "0.19.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/go-openapi/jsonreference") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ln21xai74fynwmi4ck5j0c70yszjy96wfagc705y8khjxsgncsw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/go-openapi/jsonreference")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) -; ("go-golang-org-x-net-0.0.0-20190827160401-ba9fcec4b297" -; ,go-golang-org-x-net-0.0.0-20190827160401-ba9fcec4b297) -; ("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0) -; ("go-github-com-go-openapi-jsonpointer-0.19.3" -; ,go-github-com-go-openapi-jsonpointer-0.19.3) -; ("go-github-com-puerkitobio-urlesc-0.0.0-20170810143723-de5bf2ad4578" -; ,go-github-com-puerkitobio-urlesc-0.0.0-20170810143723-de5bf2ad4578) -; ("go-github-com-puerkitobio-purell-1.1.1" -; ,go-github-com-puerkitobio-purell-1.1.1))) -; (home-page "https://github.com/go-openapi/jsonreference") -; (synopsis "gojsonreference") -; (description -; "@url{https://raw.githubusercontent.com/go-openapi/jsonreference/master/LICENSE,(img (@ (src http://img.shields.io/badge/license-Apache%20v2-orange.svg) (alt license)))} @url{http://godoc.org/github.com/go-openapi/jsonreference,(img (@ (src https://godoc.org/github.com/go-openapi/jsonreference?status.svg=) (alt GoDoc)))} -;An implementation of JSON Reference - Go language") -; (license license:asl2.0))) -; -;(define-public go-github-com-mailru-easyjson-0.0.0-20190626092158-b2ccc519800e -; (package -; (name "go-github-com-mailru-easyjson") -; (version "0.0.0-20190626092158-b2ccc519800e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mailru/easyjson") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0q85h383mhbkcjm2vqm72bi8n2252fv3c56q3lclzb8n2crnjcdk")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mailru/easyjson")) -; (home-page "https://github.com/mailru/easyjson") -; (synopsis "easyjson") -; (description -; "Package easyjson contains marshaler/unmarshaler interfaces and helper functions. -;") -; (license license:expat))) -; -;(define-public go-github-com-go-openapi-jsonpointer-0.19.3 -; (package -; (name "go-github-com-go-openapi-jsonpointer") -; (version "0.19.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/go-openapi/jsonpointer") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1m4bb7c5y8ss2s8wl50k7lsk84nl4lcldkbkphrfdl21y51gz4jr")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/go-openapi/jsonpointer")) -; (propagated-inputs -; `(("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0) -; ("go-github-com-mailru-easyjson-0.0.0-20190626092158-b2ccc519800e" -; ,go-github-com-mailru-easyjson-0.0.0-20190626092158-b2ccc519800e) -; ("go-github-com-go-openapi-swag-0.19.5" -; ,go-github-com-go-openapi-swag-0.19.5))) -; (home-page "https://github.com/go-openapi/jsonpointer") -; (synopsis "gojsonpointer") -; (description -; "@url{https://raw.githubusercontent.com/go-openapi/jsonpointer/master/LICENSE,(img (@ (src http://img.shields.io/badge/license-Apache%20v2-orange.svg) (alt license)))} @url{http://godoc.org/github.com/go-openapi/jsonpointer,(img (@ (src https://godoc.org/github.com/go-openapi/jsonpointer?status.svg=) (alt GoDoc)))} -;An implementation of JSON Pointer - Go language") -; (license license:asl2.0))) -; -;(define-public go-github-com-puerkitobio-purell-1.1.1 -; (package -; (name "go-github-com-puerkitobio-purell") -; (version "1.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/PuerkitoBio/purell") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0c525frsxmalrn55hzzsxy17ng8avkd40ga0wxfw9haxsdjgqdqy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/PuerkitoBio/purell")) -; (home-page "https://github.com/PuerkitoBio/purell") -; (synopsis "Purell") -; (description -; "Package purell offers URL normalization as described on the wikipedia page: -;@url{http://en.wikipedia.org/wiki/URL_normalization,http://en.wikipedia.org/wiki/URL_normalization} -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-puerkitobio-urlesc-0.0.0-20170810143723-de5bf2ad4578 -; (package -; (name "go-github-com-puerkitobio-urlesc") -; (version "0.0.0-20170810143723-de5bf2ad4578") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/PuerkitoBio/urlesc") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0n0srpqwbaan1wrhh2b7ysz543pjs1xw2rghvqyffg9l0g8kzgcw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/PuerkitoBio/urlesc")) -; (home-page "https://github.com/PuerkitoBio/urlesc") -; (synopsis "urlesc") -; (description -; "Package urlesc implements query escaping as per @url{https://rfc-editor.org/rfc/rfc3986.html,RFC 3986}. -;It contains some parts of the net/url package, modified so as to allow -;some reserved characters incorrectly escaped by net/url. -;See @url{https://github.com/golang/go/issues/5684,https://github.com/golang/go/issues/5684} -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-go-openapi-swag-0.19.2 -; (package -; (name "go-github-com-go-openapi-swag") -; (version "0.19.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/go-openapi/swag") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1mlxlajx2p9wjm72rmqjrx5g49q2sn04y45s3nrykkf6jqlq1v4z")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/go-openapi/swag")) -; (propagated-inputs -; `(("go-github-com-sourcegraph-go-diff-0.5.1" -; ,go-github-com-sourcegraph-go-diff-0.5.1) -; ("go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422" -; ,go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422) -; ("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) -; ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" -; ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) -; ("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0) -; ("go-github-com-mailru-easyjson-0.0.0-20190614124828-94de47d64c63" -; ,go-github-com-mailru-easyjson-0.0.0-20190614124828-94de47d64c63) -; ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://github.com/go-openapi/swag") -; (synopsis "Swag") -; (description -; "Package swag contains a bunch of helper functions for go-openapi and go-swagger projects. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-go-openapi-jsonpointer-0.19.2 -; (package -; (name "go-github-com-go-openapi-jsonpointer") -; (version "0.19.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/go-openapi/jsonpointer") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1s3cqf4svrbygvvpvi7hf122szsgihas52vqh0bba3avf4w03g9n")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/go-openapi/jsonpointer")) -; (propagated-inputs -; `(("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0) -; ("go-github-com-go-openapi-swag-0.19.2" -; ,go-github-com-go-openapi-swag-0.19.2))) -; (home-page "https://github.com/go-openapi/jsonpointer") -; (synopsis "gojsonpointer") -; (description -; "@url{https://raw.githubusercontent.com/go-openapi/jsonpointer/master/LICENSE,(img (@ (src http://img.shields.io/badge/license-Apache%20v2-orange.svg) (alt license)))} @url{http://godoc.org/github.com/go-openapi/jsonpointer,(img (@ (src https://godoc.org/github.com/go-openapi/jsonpointer?status.svg=) (alt GoDoc)))} -;An implementation of JSON Pointer - Go language") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20190613194153-d28f0bde5980") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "18xj31h70m7xxb7gc86n9i21w6d7djbjz67zfaljm4jqskz6hxkf")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-text-0.3.2 -; (package -; (name "go-golang-org-x-text") -; (version "0.3.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/text") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0flv9idw0jm5nm8lx25xqanbkqgfiym6619w575p7nrdh0riqwqh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/text")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" -; ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) -; (home-page "https://golang.org/x/text") -; (synopsis "Go Text") -; (description -; "text is a repository of text-related packages related to internationalization -;(i18n) and localization (l10n), such as character encodings, text -;transformations, and locale-specific text handling. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-go-openapi-jsonreference-0.19.2 -; (package -; (name "go-github-com-go-openapi-jsonreference") -; (version "0.19.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/go-openapi/jsonreference") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0v933yvcwyzzlpdxwb9204ki7lls2rwfd96ww2i901ndvz37kdf8")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/go-openapi/jsonreference")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) -; ("go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980" -; ,go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980) -; ("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0) -; ("go-github-com-go-openapi-jsonpointer-0.19.2" -; ,go-github-com-go-openapi-jsonpointer-0.19.2) -; ("go-github-com-puerkitobio-urlesc-0.0.0-20170810143723-de5bf2ad4578" -; ,go-github-com-puerkitobio-urlesc-0.0.0-20170810143723-de5bf2ad4578) -; ("go-github-com-puerkitobio-purell-1.1.1" -; ,go-github-com-puerkitobio-purell-1.1.1))) -; (home-page "https://github.com/go-openapi/jsonreference") -; (synopsis "gojsonreference") -; (description -; "@url{https://raw.githubusercontent.com/go-openapi/jsonreference/master/LICENSE,(img (@ (src http://img.shields.io/badge/license-Apache%20v2-orange.svg) (alt license)))} @url{http://godoc.org/github.com/go-openapi/jsonreference,(img (@ (src https://godoc.org/github.com/go-openapi/jsonreference?status.svg=) (alt GoDoc)))} -;An implementation of JSON Reference - Go language") -; (license license:asl2.0))) -; -;(define-public go-github-com-kr-pty-1.1.5 -; (package -; (name "go-github-com-kr-pty") -; (version "1.1.5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kr/pty") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1bpq77b90z72cv9h66dvxsg2j197ylpgcps23xsjfbs752bykfw1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kr/pty")) -; (home-page "https://github.com/kr/pty") -; (synopsis "pty") -; (description -; "Package pty is a wrapper for github.com/creack/pty, which provides -;functions for working with Unix terminals. -;") -; (license license:expat))) -; -;(define-public go-github-com-stretchr-objx-0.2.0 -; (package -; (name "go-github-com-stretchr-objx") -; (version "0.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/objx") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0pcdvakxgddaiwcdj73ra4da05a3q4cgwbpm2w75ycq4kzv8ij8k")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/objx")) -; (propagated-inputs -; `(("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://github.com/stretchr/objx") -; (synopsis "Objx") -; (description -; "Objx - Go package for dealing with maps, slices, JSON and other data. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20190611184440-5c40567a22f8 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20190611184440-5c40567a22f8") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "17g8fb9vy2sqq8vgz8jdvf6c6d2290gm2qs0i4yzsd86mgn4dlrg")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" -; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) -; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" -; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20190827160401-ba9fcec4b297 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20190827160401-ba9fcec4b297") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1hbqvy6r0s5h0dpdqw8fynl3cq0acin3iyqki9xvl5r8h33yb9bx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190616124812-15dcb6c0061f -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190616124812-15dcb6c0061f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1qfkkysbyn44nyx57cq8mmw1cjgpxi9gi9xrf6kljmd9c1416zdd")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20190614205625-5aca471b1d59 -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20190614205625-5aca471b1d59") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1i4h3q83w4y9s065w0wnnnwlssy69jbrj08k47ppsa8dnv85kyrf")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" -; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-github-com-go-openapi-spec-0.19.3 -; (package -; (name "go-github-com-go-openapi-spec") -; (version "0.19.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/go-openapi/spec") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1dikq1p550vj5i9y918s075pgk0fxkixxk3fb70ri7wkm51s6nlj")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/go-openapi/spec")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) -; ("go-golang-org-x-tools-0.0.0-20190614205625-5aca471b1d59" -; ,go-golang-org-x-tools-0.0.0-20190614205625-5aca471b1d59) -; ("go-golang-org-x-sys-0.0.0-20190616124812-15dcb6c0061f" -; ,go-golang-org-x-sys-0.0.0-20190616124812-15dcb6c0061f) -; ("go-golang-org-x-net-0.0.0-20190827160401-ba9fcec4b297" -; ,go-golang-org-x-net-0.0.0-20190827160401-ba9fcec4b297) -; ("go-golang-org-x-crypto-0.0.0-20190611184440-5c40567a22f8" -; ,go-golang-org-x-crypto-0.0.0-20190611184440-5c40567a22f8) -; ("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0) -; ("go-github-com-stretchr-objx-0.2.0" -; ,go-github-com-stretchr-objx-0.2.0) -; ("go-github-com-kr-pty-1.1.5" ,go-github-com-kr-pty-1.1.5) -; ("go-github-com-go-openapi-swag-0.19.5" -; ,go-github-com-go-openapi-swag-0.19.5) -; ("go-github-com-go-openapi-jsonreference-0.19.2" -; ,go-github-com-go-openapi-jsonreference-0.19.2) -; ("go-github-com-go-openapi-jsonpointer-0.19.3" -; ,go-github-com-go-openapi-jsonpointer-0.19.3))) -; (home-page "https://github.com/go-openapi/spec") -; (synopsis "OAI object model") -; (description "The object model for OpenAPI specification documents.") -; (license license:asl2.0))) -; -;(define-public go-github-com-kr-pretty-0.1.0 -; (package -; (name "go-github-com-kr-pretty") -; (version "0.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kr/pretty") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "18m4pwg2abd0j9cn5v3k2ksk9ig4vlwxmlw9rrglanziv9l967qp")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kr/pretty")) -; (propagated-inputs -; `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) -; (home-page "https://github.com/kr/pretty") -; (synopsis #f) -; (description -; "Package pretty provides pretty-printing for Go values. This is -;useful during debugging, to avoid wrapping long output lines in -;the terminal. -;") -; (license license:expat))) -; -;(define-public go-github-com-mailru-easyjson-0.0.0-20190614124828-94de47d64c63 -; (package -; (name "go-github-com-mailru-easyjson") -; (version "0.0.0-20190614124828-94de47d64c63") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mailru/easyjson") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1km0kkh7cf7dlz5pqi9yr1wamv0167y41cyv1dbrcxfdmwgpfd23")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mailru/easyjson")) -; (home-page "https://github.com/mailru/easyjson") -; (synopsis "easyjson") -; (description -; "Package easyjson contains marshaler/unmarshaler interfaces and helper functions. -;") -; (license license:expat))) -; -;(define-public go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127 -; (package -; (name "go-gopkg-in-check-v1") -; (version "1.0.0-20180628173108-788fd7840127") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/check.v1") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0v3bim0j375z81zrpr5qv42knqs0y2qv2vkjiqi5axvb78slki1a")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) -; (home-page "https://gopkg.in/check.v1") -; (synopsis "Instructions") -; (description -; "Package check is a rich testing extension for Go's testing package. -;") -; (license license:bsd-2))) -; -;(define-public go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422 -; (package -; (name "go-golang-org-x-lint") -; (version "0.0.0-20190409202823-959b441ac422") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/lint") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1mgcv5f00pkzsbwnq2y7vqvd1b4lr5a3s47cphh2qv4indfk7pck")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/lint")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" -; ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd))) -; (home-page "https://golang.org/x/lint") -; (synopsis "Installation") -; (description "Package lint contains a linter for Go source code. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-gogo-protobuf-1.1.1 -; (package -; (name "go-github-com-gogo-protobuf") -; (version "1.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/gogo/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1525pq7r6h3s8dncvq8gxi893p2nq8dxpzvq0nfl5b4p6mq0v1c2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/gogo/protobuf")) -; (home-page "https://github.com/gogo/protobuf") -; (synopsis "Protocol Buffers for Go with Gadgets") -; (description -; "gogoprotobuf is a fork of @url{https://github.com/golang/protobuf,golang/protobuf} with extra code generation features.") -; (license license:bsd-3))) -; -;(define-public go-github-com-shurcool-go-0.0.0-20180423040247-9e1955d9fb6e -; (package -; (name "go-github-com-shurcool-go") -; (version "0.0.0-20180423040247-9e1955d9fb6e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/shurcooL/go") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1lad9bvs75jsn61cfza19739c2c057k0bqxg2b4xz3z3l4w1mkqj")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/shurcooL/go")) -; (home-page "https://github.com/shurcooL/go") -; (synopsis "go") -; (description "Common Go code.") -; (license license:expat))) -; -;(define-public go-github-com-shurcool-go-goon-0.0.0-20170922171312-37c2f522c041 -; (package -; (name "go-github-com-shurcool-go-goon") -; (version "0.0.0-20170922171312-37c2f522c041") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/shurcooL/go-goon") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "17ac6j6msdcxbmfhq6pxhw5z339b87bd6ciln9909drjv2szyxqv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/shurcooL/go-goon")) -; (home-page "https://github.com/shurcooL/go-goon") -; (synopsis "goon") -; (description -; "Package goon is a deep pretty printer with Go-like notation. It implements the goon specification. -;") -; (license license:expat))) -; -;(define-public go-sourcegraph-com-sqs-pbtypes-0.0.0-20180604144634-d3ebe8f20ae4 -; (package -; (name "go-sourcegraph-com-sqs-pbtypes") -; (version "0.0.0-20180604144634-d3ebe8f20ae4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/sqs/pbtypes") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0vcyqq4jc2jv1wh288qdxv51qxcfj07lvnlf37pjicsd2yrb7yrr")))) -; (build-system go-build-system) -; (arguments '(#:import-path "sourcegraph.com/sqs/pbtypes")) -; (home-page "https://sourcegraph.com/sqs/pbtypes") -; (synopsis "pbtypes") -; (description -; "Package pbtypes contains protocol buffer types (Timestamp, Void, -;etc.) and related helpers. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-sourcegraph-go-diff-0.5.1 -; (package -; (name "go-github-com-sourcegraph-go-diff") -; (version "0.5.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/sourcegraph/go-diff") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0acabccjmxgdvhyd7fr0krlf7ymc7mngdq292n03hfys9nrnb0b2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/sourcegraph/go-diff")) -; (propagated-inputs -; `(("go-sourcegraph-com-sqs-pbtypes-0.0.0-20180604144634-d3ebe8f20ae4" -; ,go-sourcegraph-com-sqs-pbtypes-0.0.0-20180604144634-d3ebe8f20ae4) -; ("go-github-com-shurcool-go-goon-0.0.0-20170922171312-37c2f522c041" -; ,go-github-com-shurcool-go-goon-0.0.0-20170922171312-37c2f522c041) -; ("go-github-com-shurcool-go-0.0.0-20180423040247-9e1955d9fb6e" -; ,go-github-com-shurcool-go-0.0.0-20180423040247-9e1955d9fb6e) -; ("go-github-com-gogo-protobuf-1.1.1" -; ,go-github-com-gogo-protobuf-1.1.1))) -; (home-page "https://github.com/sourcegraph/go-diff") -; (synopsis "go-diff") -; (description "Diff parser and printer for Go.") -; (license license:expat))) -; -;(define-public go-github-com-go-openapi-swag-0.19.5 -; (package -; (name "go-github-com-go-openapi-swag") -; (version "0.19.5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/go-openapi/swag") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1z34vqc5yz6rzvarrvlhkimxx33p74iaxb28l1mv716njvlsmjhg")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/go-openapi/swag")) -; (propagated-inputs -; `(("go-github-com-sourcegraph-go-diff-0.5.1" -; ,go-github-com-sourcegraph-go-diff-0.5.1) -; ("go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422" -; ,go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422) -; ("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) -; ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" -; ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) -; ("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0) -; ("go-github-com-mailru-easyjson-0.0.0-20190614124828-94de47d64c63" -; ,go-github-com-mailru-easyjson-0.0.0-20190614124828-94de47d64c63) -; ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://github.com/go-openapi/swag") -; (synopsis "Swag") -; (description -; "Package swag contains a bunch of helper functions for go-openapi and go-swagger projects. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-google-uuid-1.1.1 -; (package -; (name "go-github-com-google-uuid") -; (version "1.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/uuid") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0hfxcf9frkb57k6q0rdkrmnfs78ms21r1qfk9fhlqga2yh5xg8zb")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/uuid")) -; (home-page "https://github.com/google/uuid") -; (synopsis "uuid") -; (description "Package uuid generates and inspects UUIDs. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-docopt-docopt-go-0.0.0-20180111231733-ee0de3bc6815 -; (package -; (name "go-github-com-docopt-docopt-go") -; (version "0.0.0-20180111231733-ee0de3bc6815") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/docopt/docopt.go") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0hlra7rmi5pmd7d93rv56ahiy4qkgmq8a6mz0jpadvbi5qh8lq6j")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/docopt/docopt-go")) -; (home-page "https://github.com/docopt/docopt-go") -; (synopsis "docopt-go") -; (description -; "Package docopt parses command-line arguments based on a help message. -;") -; (license license:expat))) -; -;(define-public go-github-com-golang-protobuf-1.3.3 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.3.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1cyyr52yhj3fzrily3rmsbqyj8va4ld75lmry0857m39rgpv8sy1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-github-com-googleapis-gnostic-0.4.1 -; (package -; (name "go-github-com-googleapis-gnostic") -; (version "0.4.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/gnostic") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1fw28m3ach5pkcdh4ijd6s7w09j0n88p6mah3hp0k8918jsc6mj9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/googleapis/gnostic")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) -; ("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" -; ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) -; ("go-github-com-kr-pretty-0.2.0" ,go-github-com-kr-pretty-0.2.0) -; ("go-github-com-golang-protobuf-1.3.3" -; ,go-github-com-golang-protobuf-1.3.3) -; ("go-github-com-docopt-docopt-go-0.0.0-20180111231733-ee0de3bc6815" -; ,go-github-com-docopt-docopt-go-0.0.0-20180111231733-ee0de3bc6815))) -; (home-page "https://github.com/googleapis/gnostic") -; (synopsis "â¨\x81 gnostic") -; (description -; "Gnostic is a tool for building better REST APIs through knowledge. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-mitchellh-mapstructure-1.1.2 -; (package -; (name "go-github-com-mitchellh-mapstructure") -; (version "1.1.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mitchellh/mapstructure") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "03bpv28jz9zhn4947saqwi328ydj7f6g6pf1m2d4m5zdh5jlfkrr")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mitchellh/mapstructure")) -; (home-page "https://github.com/mitchellh/mapstructure") -; (synopsis "mapstructure") -; (description -; "Package mapstructure exposes functionality to convert one arbitrary -;Go type into another, typically to convert a map[string]interface{} -;into a native Go structure. -;") -; (license license:expat))) -; -;(define-public go-github-com-munnerz-goautoneg-0.0.0-20120707110453-a547fc61f48d -; (package -; (name "go-github-com-munnerz-goautoneg") -; (version "0.0.0-20120707110453-a547fc61f48d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/munnerz/goautoneg") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "19khhn5xhqv1yp7d6k987gh5w5rhrjnp4p0c6fyrd8z6lzz5h9qi")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/munnerz/goautoneg")) -; (home-page "https://github.com/munnerz/goautoneg") -; (synopsis #f) -; (description #f) -; (license license:bsd-3))) -; -;(define-public go-github-com-onsi-ginkgo-0.0.0-20170829012221-11459a886d9c -; (package -; (name "go-github-com-onsi-ginkgo") -; (version "0.0.0-20170829012221-11459a886d9c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/onsi/ginkgo") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1nswc1fnrrs792qbix05h91bilj8rr3wxmxgwi97p2gjk0r292zh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/onsi/ginkgo")) -; (home-page "https://github.com/onsi/ginkgo") -; (synopsis "Ginkgo 2.0 Release Candidate is available!") -; (description "Ginkgo is a BDD-style testing framework for Golang -;") -; (license license:expat))) -; -;(define-public go-github-com-onsi-gomega-0.0.0-20170829124025-dcabb60a477c -; (package -; (name "go-github-com-onsi-gomega") -; (version "0.0.0-20170829124025-dcabb60a477c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/onsi/gomega") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1775lv5jbsgv3ghq5v2827slqlhqdadrzc1nkpq4y0hdv2qzrgkm")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/onsi/gomega")) -; (home-page "https://github.com/onsi/gomega") -; (synopsis ": a BDD Testing Framework for Golang") -; (description -; "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library. -;") -; (license license:expat))) -; -;(define-public go-github-com-spf13-pflag-0.0.0-20170130214245-9ff6c6923cff -; (package -; (name "go-github-com-spf13-pflag") -; (version "0.0.0-20170130214245-9ff6c6923cff") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/spf13/pflag") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0mfrxzyl8x7araa126lh8l3sihbbgfbzgkrg3v3cx7y4n3wrsqvn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/spf13/pflag")) -; (home-page "https://github.com/spf13/pflag") -; (synopsis "Description") -; (description -; "Package pflag is a drop-in replacement for Go's flag package, implementing -;POSIX/GNU-style --flags. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20200323222414-85ca7c5b95cd") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1504qkgbhhm4f0bhk77v2r1lj6x171ay5m79alkg78wjb5cign5l")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20200324143707-d3edc9973b7e -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20200324143707-d3edc9973b7e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "12zbjwcsh9b0lwycqlkrnbyg5a6a9dzgj8hhgq399bdda5bd97y7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" -; ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-k8s-io-gengo-0.0.0-20200413195148-3a45101e95ac -; (package -; (name "go-k8s-io-gengo") -; (version "0.0.0-20200413195148-3a45101e95ac") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes/gengo") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0x46jq6rv8z0y96231rfgzvfscgy5hp5aacid3r93zy0rq9r37g6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "k8s.io/gengo")) -; (home-page "https://k8s.io/gengo") -; (synopsis "gengo") -; (description -; "This package provides a package for generating things based on go files. This mechanism was first used -;in Kubernetes and is split out here for ease of reuse and maintainability.") -; (license license:asl2.0))) -; -;(define-public go-sigs-k8s-io-structured-merge-diff-v4-4.0.2 -; (package -; (name "go-sigs-k8s-io-structured-merge-diff-v4") -; (version "4.0.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes-sigs/structured-merge-diff") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1z60sw6nrlzyddyx5pvh6afwf8jvmn8c2zw15hklq17iyvj3lj7a")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path -; "sigs.k8s.io/structured-merge-diff/v4" -; #:unpack-path -; "sigs.k8s.io/structured-merge-diff/v4")) -; (propagated-inputs -; `(("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0) -; ("go-github-com-modern-go-reflect2-1.0.1" -; ,go-github-com-modern-go-reflect2-1.0.1) -; ("go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd" -; ,go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd) -; ("go-github-com-json-iterator-go-1.1.6" -; ,go-github-com-json-iterator-go-1.1.6) -; ("go-github-com-google-gofuzz-1.0.0" -; ,go-github-com-google-gofuzz-1.0.0) -; ("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1))) -; (home-page "https://sigs.k8s.io/structured-merge-diff/v4") -; (synopsis "Structured Merge and Diff") -; (description -; "This repo contains code which implements the Kubernetes \"apply\" operation.") -; (license license:asl2.0))) -; -;(define-public go-sigs-k8s-io-yaml-1.1.0 -; (package -; (name "go-sigs-k8s-io-yaml") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes-sigs/yaml") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1p7hvjdr5jsyk7nys1g1pmgnf3ys6n320i6hds85afppk81k01kb")))) -; (build-system go-build-system) -; (arguments '(#:import-path "sigs.k8s.io/yaml")) -; (home-page "https://sigs.k8s.io/yaml") -; (synopsis "YAML marshaling and unmarshaling support for Go") -; (description -; "kubernetes-sigs/yaml is a permanent fork of @url{https://github.com/ghodss/yaml,ghodss/yaml}.") -; (license #f))) -; -;(define-public go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd -; (package -; (name "go-k8s-io-kube-openapi") -; (version "0.0.0-20201113171705-d219536bb9fd") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes/kube-openapi") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "11d420a3rxznh3f6x5a6xp22zjwv6jfq4w1gb6srqb4vn9rhgrka")))) -; (build-system go-build-system) -; (arguments '(#:import-path "k8s.io/kube-openapi")) -; (propagated-inputs -; `(("go-sigs-k8s-io-yaml-1.1.0" ,go-sigs-k8s-io-yaml-1.1.0) -; ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.2" -; ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.2) -; ("go-k8s-io-klog-v2-2.0.0" ,go-k8s-io-klog-v2-2.0.0) -; ("go-k8s-io-gengo-0.0.0-20200413195148-3a45101e95ac" -; ,go-k8s-io-gengo-0.0.0-20200413195148-3a45101e95ac) -; ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) -; ("go-golang-org-x-net-0.0.0-20200324143707-d3edc9973b7e" -; ,go-golang-org-x-net-0.0.0-20200324143707-d3edc9973b7e) -; ("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0) -; ("go-github-com-spf13-pflag-0.0.0-20170130214245-9ff6c6923cff" -; ,go-github-com-spf13-pflag-0.0.0-20170130214245-9ff6c6923cff) -; ("go-github-com-onsi-gomega-0.0.0-20170829124025-dcabb60a477c" -; ,go-github-com-onsi-gomega-0.0.0-20170829124025-dcabb60a477c) -; ("go-github-com-onsi-ginkgo-0.0.0-20170829012221-11459a886d9c" -; ,go-github-com-onsi-ginkgo-0.0.0-20170829012221-11459a886d9c) -; ("go-github-com-munnerz-goautoneg-0.0.0-20120707110453-a547fc61f48d" -; ,go-github-com-munnerz-goautoneg-0.0.0-20120707110453-a547fc61f48d) -; ("go-github-com-mitchellh-mapstructure-1.1.2" -; ,go-github-com-mitchellh-mapstructure-1.1.2) -; ("go-github-com-json-iterator-go-1.1.6" -; ,go-github-com-json-iterator-go-1.1.6) -; ("go-github-com-googleapis-gnostic-0.4.1" -; ,go-github-com-googleapis-gnostic-0.4.1) -; ("go-github-com-google-uuid-1.1.1" ,go-github-com-google-uuid-1.1.1) -; ("go-github-com-google-gofuzz-1.0.0" -; ,go-github-com-google-gofuzz-1.0.0) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.3.3" -; ,go-github-com-golang-protobuf-1.3.3) -; ("go-github-com-go-openapi-swag-0.19.5" -; ,go-github-com-go-openapi-swag-0.19.5) -; ("go-github-com-go-openapi-spec-0.19.3" -; ,go-github-com-go-openapi-spec-0.19.3) -; ("go-github-com-go-openapi-jsonreference-0.19.3" -; ,go-github-com-go-openapi-jsonreference-0.19.3) -; ("go-github-com-go-openapi-jsonpointer-0.19.3" -; ,go-github-com-go-openapi-jsonpointer-0.19.3) -; ("go-github-com-ghodss-yaml-0.0.0-20150909031657-73d445a93680" -; ,go-github-com-ghodss-yaml-0.0.0-20150909031657-73d445a93680) -; ("go-github-com-emicklei-go-restful-0.0.0-20170410110728-ff4f55a20633" -; ,go-github-com-emicklei-go-restful-0.0.0-20170410110728-ff4f55a20633) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1) -; ("go-github-com-asaskevich-govalidator-0.0.0-20190424111038-f61b66f89f4a" -; ,go-github-com-asaskevich-govalidator-0.0.0-20190424111038-f61b66f89f4a) -; ("go-github-com-nytimes-gziphandler-0.0.0-20170623195520-56545f4a5d46" -; ,go-github-com-nytimes-gziphandler-0.0.0-20170623195520-56545f4a5d46))) -; (home-page "https://k8s.io/kube-openapi") -; (synopsis "Kube OpenAPI") -; (description -; "This repo is the home for Kubernetes OpenAPI discovery spec generation. The goal -;is to support a subset of OpenAPI features to satisfy kubernetes use-cases but -;implement that subset with little to no assumption about the structure of the -;code or routes. Thus, there should be no kubernetes specific code in this repo.") -; (license license:asl2.0))) -; -;(define-public go-gopkg-in-yaml-v2-2.2.1 -; (package -; (name "go-gopkg-in-yaml-v2") -; (version "2.2.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/yaml.v2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0dwjrs2lp2gdlscs7bsrmyc5yf6mm4fvgw71bzr9mv2qrd2q73s1")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" -; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) -; (home-page "https://gopkg.in/yaml.v2") -; (synopsis "YAML support for the Go language") -; (description "Package yaml implements YAML support for the Go language. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-google-gofuzz-1.0.0 -; (package -; (name "go-github-com-google-gofuzz") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/gofuzz") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0qz439qvccm91w0mmjz4fqgx48clxdwagkvvx89cr43q1d4iry36")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/gofuzz")) -; (home-page "https://github.com/google/gofuzz") -; (synopsis "gofuzz") -; (description -; "Package fuzz is a library for populating go objects with random values. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-json-iterator-go-1.1.6 -; (package -; (name "go-github-com-json-iterator-go") -; (version "1.1.6") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/json-iterator/go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "08caswxvdn7nvaqyj5kyny6ghpygandlbw9vxdj7l5vkp7q0s43r")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/json-iterator/go")) -; (home-page "https://github.com/json-iterator/go") -; (synopsis "Benchmark") -; (description -; "Package jsoniter implements encoding and decoding of JSON as defined in -;@url{https://rfc-editor.org/rfc/rfc4627.html,RFC 4627} and provides interfaces with identical syntax of standard lib encoding/json. -;Converting from encoding/json to jsoniter is no more than replacing the package with jsoniter -;and variable type declarations (if any). -;jsoniter interfaces gives 100% compatibility with code using standard lib. -;") -; (license license:expat))) -; -;(define-public go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd -; (package -; (name "go-github-com-modern-go-concurrent") -; (version "0.0.0-20180306012644-bacd9c7ef1dd") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/modern-go/concurrent") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0s0fxccsyb8icjmiym5k7prcqx36hvgdwl588y0491gi18k5i4zs")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/modern-go/concurrent")) -; (home-page "https://github.com/modern-go/concurrent") -; (synopsis "concurrent") -; (description -; "because sync.Map is only available in go 1.9, we can use concurrent.Map to make code portable") -; (license license:asl2.0))) -; -;(define-public go-github-com-modern-go-reflect2-1.0.1 -; (package -; (name "go-github-com-modern-go-reflect2") -; (version "1.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/modern-go/reflect2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "06a3sablw53n1dqqbr2f53jyksbxdmmk8axaas4yvnhyfi55k4lf")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/modern-go/reflect2")) -; (home-page "https://github.com/modern-go/reflect2") -; (synopsis "reflect2") -; (description "reflect api that avoids runtime reflect.Value cost") -; (license license:asl2.0))) -; -;(define-public go-sigs-k8s-io-structured-merge-diff-v4-4.0.3 -; (package -; (name "go-sigs-k8s-io-structured-merge-diff-v4") -; (version "4.0.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes-sigs/structured-merge-diff") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1jv60bkk0z437bsz5ldjyc006k20njmpl0xfl8p3g1q0bx0fkypa")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path -; "sigs.k8s.io/structured-merge-diff/v4" -; #:unpack-path -; "sigs.k8s.io/structured-merge-diff/v4")) -; (propagated-inputs -; `(("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0) -; ("go-github-com-modern-go-reflect2-1.0.1" -; ,go-github-com-modern-go-reflect2-1.0.1) -; ("go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd" -; ,go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd) -; ("go-github-com-json-iterator-go-1.1.6" -; ,go-github-com-json-iterator-go-1.1.6) -; ("go-github-com-google-gofuzz-1.0.0" -; ,go-github-com-google-gofuzz-1.0.0) -; ("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1))) -; (home-page "https://sigs.k8s.io/structured-merge-diff/v4") -; (synopsis "Structured Merge and Diff") -; (description -; "This repo contains code which implements the Kubernetes \"apply\" operation.") -; (license license:asl2.0))) -; -;(define-public go-gopkg-in-yaml-v2-2.2.8 -; (package -; (name "go-gopkg-in-yaml-v2") -; (version "2.2.8") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/yaml.v2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1inf7svydzscwv9fcjd2rm61a4xjk6jkswknybmns2n58shimapw")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" -; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) -; (home-page "https://gopkg.in/yaml.v2") -; (synopsis "YAML support for the Go language") -; (description "Package yaml implements YAML support for the Go language. -;") -; (license license:asl2.0))) -; -;(define-public go-sigs-k8s-io-yaml-1.2.0 -; (package -; (name "go-sigs-k8s-io-yaml") -; (version "1.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes-sigs/yaml") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "059a1chkd6afyvqszrx7h93k6cgik3ia92x29f5whpwi66461pzq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "sigs.k8s.io/yaml")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://sigs.k8s.io/yaml") -; (synopsis "YAML marshaling and unmarshaling support for Go") -; (description -; "kubernetes-sigs/yaml is a permanent fork of @url{https://github.com/ghodss/yaml,ghodss/yaml}.") -; (license #f))) -; -;(define-public go-k8s-io-apimachinery-0.20.6 -; (package -; (name "go-k8s-io-apimachinery") -; (version "0.20.6") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes/apimachinery") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "16952v7zjk3pdyw5r3wy28qkcfx3risid0847pwdw8gmalwxr237")))) -; (build-system go-build-system) -; (arguments '(#:import-path "k8s.io/apimachinery")) -; (propagated-inputs -; `(("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) -; ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.3" -; ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.3) -; ("go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd" -; ,go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd) -; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) -; ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) -; ("go-gopkg-in-inf-v0-0.9.1" ,go-gopkg-in-inf-v0-0.9.1) -; ("go-google-golang-org-protobuf-1.25.0" -; ,go-google-golang-org-protobuf-1.25.0) -; ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) -; ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" -; ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) -; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" -; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-onsi-gomega-1.7.0" ,go-github-com-onsi-gomega-1.7.0) -; ("go-github-com-onsi-ginkgo-1.11.0" ,go-github-com-onsi-ginkgo-1.11.0) -; ("go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f" -; ,go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f) -; ("go-github-com-modern-go-reflect2-1.0.1" -; ,go-github-com-modern-go-reflect2-1.0.1) -; ("go-github-com-json-iterator-go-1.1.10" -; ,go-github-com-json-iterator-go-1.1.10) -; ("go-github-com-hashicorp-golang-lru-0.5.1" -; ,go-github-com-hashicorp-golang-lru-0.5.1) -; ("go-github-com-googleapis-gnostic-0.4.1" -; ,go-github-com-googleapis-gnostic-0.4.1) -; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) -; ("go-github-com-google-gofuzz-1.1.0" -; ,go-github-com-google-gofuzz-1.1.0) -; ("go-github-com-google-go-cmp-0.5.2" -; ,go-github-com-google-go-cmp-0.5.2) -; ("go-github-com-golang-protobuf-1.4.3" -; ,go-github-com-golang-protobuf-1.4.3) -; ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" -; ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) -; ("go-github-com-gogo-protobuf-1.3.2" -; ,go-github-com-gogo-protobuf-1.3.2) -; ("go-github-com-fsnotify-fsnotify-1.4.9" -; ,go-github-com-fsnotify-fsnotify-1.4.9) -; ("go-github-com-evanphx-json-patch-4.9.0+incompatible" -; ,go-github-com-evanphx-json-patch-4.9.0+incompatible) -; ("go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153" -; ,go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153) -; ("go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96" -; ,go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://k8s.io/apimachinery") -; (synopsis "apimachinery") -; (description -; "Scheme, typing, encoding, decoding, and conversion packages for Kubernetes and Kubernetes-like API objects.") -; (license license:asl2.0))) -; -;(define-public go-k8s-io-client-go-0.20.6 -; (package -; (name "go-k8s-io-client-go") -; (version "0.20.6") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes/client-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1fpz56pfadbfp8mlzmzicfmlgk5zqbk2rdwnr8c8h6ypjd5xjcvz")))) -; (build-system go-build-system) -; (arguments '(#:import-path "k8s.io/client-go")) -; (propagated-inputs -; `(("go-k8s-io-apimachinery-0.20.6" ,go-k8s-io-apimachinery-0.20.6) -; ("go-k8s-io-api-0.20.6" ,go-k8s-io-api-0.20.6) -; ("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) -; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" -; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) -; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) -; ("go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e" -; ,go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e) -; ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" -; ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) -; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" -; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) -; ("go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0" -; ,go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) -; ("go-github-com-peterbourgon-diskv-2.0.1+incompatible" -; ,go-github-com-peterbourgon-diskv-2.0.1+incompatible) -; ("go-github-com-imdario-mergo-0.3.5" -; ,go-github-com-imdario-mergo-0.3.5) -; ("go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7" -; ,go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7) -; ("go-github-com-googleapis-gnostic-0.4.1" -; ,go-github-com-googleapis-gnostic-0.4.1) -; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) -; ("go-github-com-google-gofuzz-1.1.0" -; ,go-github-com-google-gofuzz-1.1.0) -; ("go-github-com-google-go-cmp-0.5.2" -; ,go-github-com-google-go-cmp-0.5.2) -; ("go-github-com-golang-protobuf-1.4.3" -; ,go-github-com-golang-protobuf-1.4.3) -; ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" -; ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) -; ("go-github-com-gogo-protobuf-1.3.2" -; ,go-github-com-gogo-protobuf-1.3.2) -; ("go-github-com-evanphx-json-patch-4.9.0+incompatible" -; ,go-github-com-evanphx-json-patch-4.9.0+incompatible) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1) -; ("go-github-com-azure-go-autorest-autorest-adal-0.9.5" -; ,go-github-com-azure-go-autorest-autorest-adal-0.9.5) -; ("go-github-com-azure-go-autorest-autorest-0.11.1" -; ,go-github-com-azure-go-autorest-autorest-0.11.1) -; ("go-cloud-google-com-go-0.54.0" ,go-cloud-google-com-go-0.54.0))) -; (home-page "https://k8s.io/client-go") -; (synopsis "client-go") -; (description -; "Go clients for talking to a @url{http://kubernetes.io/,kubernetes} cluster.") -; (license license:asl2.0))) -; -;(define-public go-k8s-io-component-base-0.20.6 -; (package -; (name "go-k8s-io-component-base") -; (version "0.20.6") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes/component-base") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1987vm5lhbnn4ynrpzdgz3873lp78664cpdpkbv9jwnhzqdhpyhf")))) -; (build-system go-build-system) -; (arguments '(#:import-path "k8s.io/component-base")) -; (propagated-inputs -; `(("go-k8s-io-client-go-0.20.6" ,go-k8s-io-client-go-0.20.6) -; ("go-k8s-io-apimachinery-0.20.6" ,go-k8s-io-apimachinery-0.20.6) -; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" -; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) -; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) -; ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) -; ("go-go-uber-org-multierr-1.1.0" ,go-go-uber-org-multierr-1.1.0) -; ("go-go-uber-org-atomic-1.4.0" ,go-go-uber-org-atomic-1.4.0) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) -; ("go-github-com-sirupsen-logrus-1.6.0" -; ,go-github-com-sirupsen-logrus-1.6.0) -; ("go-github-com-prometheus-procfs-0.2.0" -; ,go-github-com-prometheus-procfs-0.2.0) -; ("go-github-com-prometheus-common-0.10.0" -; ,go-github-com-prometheus-common-0.10.0) -; ("go-github-com-prometheus-client-model-0.2.0" -; ,go-github-com-prometheus-client-model-0.2.0) -; ("go-github-com-prometheus-client-golang-1.7.1" -; ,go-github-com-prometheus-client-golang-1.7.1) -; ("go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd" -; ,go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd) -; ("go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369" -; ,go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369) -; ("go-github-com-google-go-cmp-0.5.2" -; ,go-github-com-google-go-cmp-0.5.2) -; ("go-github-com-go-logr-logr-0.2.0" ,go-github-com-go-logr-logr-0.2.0) -; ("go-github-com-blang-semver-3.5.1+incompatible" -; ,go-github-com-blang-semver-3.5.1+incompatible))) -; (home-page "https://k8s.io/component-base") -; (synopsis "component-base") -; (description -; "Implement KEP 32: @url{https://github.com/kubernetes/enhancements/blob/master/keps/sig-cluster-lifecycle/wgs/783-component-base/README.md,https://github.com/kubernetes/enhancements/blob/master/keps/sig-cluster-lifecycle/wgs/783-component-base/README.md}") -; (license license:asl2.0))) -; -;(define-public go-github-com-yuin-goldmark-1.1.27 -; (package -; (name "go-github-com-yuin-goldmark") -; (version "1.1.27") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/yuin/goldmark") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1872cqnii0kwiqcy81yin0idvjy5mdy4zlzz0csb319lcjs3b923")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/yuin/goldmark")) -; (home-page "https://github.com/yuin/goldmark") -; (synopsis "goldmark") -; (description -; "Package goldmark implements functions to convert markdown text to a desired format. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-mod-0.2.0 -; (package -; (name "go-golang-org-x-mod") -; (version "0.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/mod") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1fp6885dclq77mh73v7i54v2b9llpv4di193zc8vmsbbkkc483cl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/mod")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" -; ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) -; ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" -; ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) -; ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" -; ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) -; (home-page "https://golang.org/x/mod") -; (synopsis "mod") -; (description -; "This repository holds packages for writing tools -;that work directly with Go module mechanics. -;That is, it is for direct manipulation of Go modules themselves.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20200226121028-0de0cce0169b") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1db7s5kbzyh2zd5lpv05n7hp8wbwdvgk0wpiwrlnig94mkr0y5aq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e -; (package -; (name "go-golang-org-x-sync") -; (version "0.0.0-20190911185100-cd5d95a43a6e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sync") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1nqkyz2y1qvqcma52ijh02s8aiqmkfb95j08f6zcjhbga3ds6hds")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sync")) -; (home-page "https://golang.org/x/sync") -; (synopsis "Go Sync") -; (description -; "This repository provides Go concurrency primitives in addition to the -;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20200619180055-7c47624df98f -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20200619180055-7c47624df98f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1fhzwd32j7w9g3algq0zj8g7ivx3f0mn9nx9mj046wdscryn49mk")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" -; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) -; ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" -; ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) -; ("go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b" -; ,go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b) -; ("go-golang-org-x-mod-0.2.0" ,go-golang-org-x-mod-0.2.0) -; ("go-github-com-yuin-goldmark-1.1.27" -; ,go-github-com-yuin-goldmark-1.1.27))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-github-com-kisielk-errcheck-1.5.0 -; (package -; (name "go-github-com-kisielk-errcheck") -; (version "1.5.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kisielk/errcheck") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ci3jz2px74pfmr42jv7dpx7fdzx08vai4czp9fkiyb0gcaiqsk6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kisielk/errcheck")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20200619180055-7c47624df98f" -; ,go-golang-org-x-tools-0.0.0-20200619180055-7c47624df98f))) -; (home-page "https://github.com/kisielk/errcheck") -; (synopsis "errcheck") -; (description -; "errcheck is a program for checking for unchecked errors in go programs.") -; (license license:expat))) -; -;(define-public go-github-com-yuin-goldmark-1.2.1 -; (package -; (name "go-github-com-yuin-goldmark") -; (version "1.2.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/yuin/goldmark") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "12rsnsf65drcp0jfw2jl9w589vsn3pxdk1zh3v9q908iigngrcmy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/yuin/goldmark")) -; (home-page "https://github.com/yuin/goldmark") -; (synopsis "goldmark") -; (description -; "Package goldmark implements functions to convert markdown text to a desired format. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20191011191535-87dc89f01550") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0z4i1m2yn3f31ci7wvcm2rxkx2yiv7a78mfzklncmsz2k97rlh2g")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" -; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) -; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" -; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20190620200207-3b0461eec859") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0l00c8l0a8xnv6qdpwfzxxsr58jggacgzdrwiprrfx2xqm37b6d5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7 -; (package -; (name "go-golang-org-x-xerrors") -; (version "0.0.0-20190717185122-a985d3407aa7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/xerrors") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "00wzr5w8aadipgc3rkk8f11i41znskfj9ix5nhhaxyg7isrslgcj")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/xerrors")) -; (home-page "https://golang.org/x/xerrors") -; (synopsis #f) -; (description -; "Package xerrors implements functions to manipulate errors. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20191119224855-298f0cb1881e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0l4pqwib2wnfnix6nvxl0yrq87ipi7ff1rz6z5bxfzy9dki1nzmv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7" -; ,go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7) -; ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" -; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) -; ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" -; ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898 -; (package -; (name "go-golang-org-x-xerrors") -; (version "0.0.0-20191011141410-1b5146add898") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/xerrors") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0w2akj91krxjag0xdhsg78470888nicc5ismc2ap9jqpss6v1zih")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/xerrors")) -; (home-page "https://golang.org/x/xerrors") -; (synopsis #f) -; (description -; "Package xerrors implements functions to manipulate errors. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-mod-0.3.0 -; (package -; (name "go-golang-org-x-mod") -; (version "0.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/mod") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ldgbx2zpprbsfn6p8pfgs4nn87gwbfcv2z0fa7n8alwsq2yw78q")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/mod")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" -; ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) -; ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" -; ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) -; ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" -; ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) -; (home-page "https://golang.org/x/mod") -; (synopsis "mod") -; (description -; "This repository holds packages for writing tools -;that work directly with Go module mechanics. -;That is, it is for direct manipulation of Go modules themselves.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20201021035429-f5854403a974 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20201021035429-f5854403a974") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1vw63zpmhi337f3gc432x3wkib4j2ia8dy7if31wxwb9dgqvy222")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) -; ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" -; ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) -; ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" -; ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9 -; (package -; (name "go-golang-org-x-sync") -; (version "0.0.0-20201020160332-67f06af15bc9") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sync") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "093p4panc808ak5bamzz7m9nb0xxib7778jpnr6f0xkz1n4fzyw5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sync")) -; (home-page "https://golang.org/x/sync") -; (synopsis "Go Sync") -; (description -; "This repository provides Go concurrency primitives in addition to the -;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1 -; (package -; (name "go-golang-org-x-xerrors") -; (version "0.0.0-20200804184101-5ec99f83aff1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/xerrors") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1dbzc3gmf2haazpv7cgmv97rq40g2xzwbglc17vas8dwhgwgwrzb")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/xerrors")) -; (home-page "https://golang.org/x/xerrors") -; (synopsis #f) -; (description -; "Package xerrors implements functions to manipulate errors. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20210106214847-113979e3529a -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20210106214847-113979e3529a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0pq1a7hkamqdwsajyfrb27s56cvxz5838krsgyqz346s2djwdrzl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" -; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) -; ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" -; ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) -; ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" -; ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) -; ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) -; ("go-github-com-yuin-goldmark-1.2.1" -; ,go-github-com-yuin-goldmark-1.2.1))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-github-com-gogo-protobuf-1.3.2 -; (package -; (name "go-github-com-gogo-protobuf") -; (version "1.3.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/gogo/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0dfv1bhx5zhb5bsj5sj757nkacf2swp1ajpcyj9d0b37n602m18a")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/gogo/protobuf")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20210106214847-113979e3529a" -; ,go-golang-org-x-tools-0.0.0-20210106214847-113979e3529a) -; ("go-github-com-kisielk-gotool-1.0.0" -; ,go-github-com-kisielk-gotool-1.0.0) -; ("go-github-com-kisielk-errcheck-1.5.0" -; ,go-github-com-kisielk-errcheck-1.5.0))) -; (home-page "https://github.com/gogo/protobuf") -; (synopsis "Protocol Buffers for Go with Gadgets") -; (description -; "gogoprotobuf is a fork of @url{https://github.com/golang/protobuf,golang/protobuf} with extra code generation features.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-1.23.0 -; (package -; (name "go-google-golang-org-protobuf") -; (version "1.23.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "03yan0m1v0zmlr935p4n24fd376mznsg85zy8sywbgisls4s1bzy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.4.0" -; ,go-github-com-golang-protobuf-1.4.0))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.4.3 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.4.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1kf1d7xmyjvy0z6j5czp6nqyvj9zrk6liv6znif08927xqfrzyln")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.23.0" -; ,go-google-golang-org-protobuf-1.23.0) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0))) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-github-com-google-go-cmp-0.5.2 -; (package -; (name "go-github-com-google-go-cmp") -; (version "0.5.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/go-cmp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0qchy411jm9q2l9mf7x3ry2ycaqp9xdhf2nx14qrpzcxfigv2705")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/go-cmp")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" -; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) -; (home-page "https://github.com/google/go-cmp") -; (synopsis "Package for equality of Go values") -; (description -; "This package is intended to be a more powerful and safer alternative to -;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") -; (license license:bsd-3))) -; -;(define-public go-github-com-kr-pty-1.1.1 -; (package -; (name "go-github-com-kr-pty") -; (version "1.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kr/pty") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0383f0mb9kqjvncqrfpidsf8y6ns5zlrc91c6a74xpyxjwvzl2y6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kr/pty")) -; (home-page "https://github.com/kr/pty") -; (synopsis "pty") -; (description -; "Package pty is a wrapper for github.com/creack/pty, which provides -;functions for working with Unix terminals. -;") -; (license license:expat))) -; -;(define-public go-github-com-kr-text-0.1.0 -; (package -; (name "go-github-com-kr-text") -; (version "0.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kr/text") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1gm5bsl01apvc84bw06hasawyqm4q84vx1pm32wr9jnd7a8vjgj1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kr/text")) -; (propagated-inputs -; `(("go-github-com-kr-pty-1.1.1" ,go-github-com-kr-pty-1.1.1))) -; (home-page "https://github.com/kr/text") -; (synopsis #f) -; (description -; "Package text provides rudimentary functions for manipulating text in -;paragraphs. -;") -; (license license:expat))) -; -;(define-public go-github-com-kr-pretty-0.2.0 -; (package -; (name "go-github-com-kr-pretty") -; (version "0.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kr/pretty") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ywbfzz1h3a3qd8rpkiqwi1dm4w8ls9ijb4x1b7567grns9f0vnp")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kr/pretty")) -; (propagated-inputs -; `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) -; (home-page "https://github.com/kr/pretty") -; (synopsis #f) -; (description -; "Package pretty provides pretty-printing for Go values. This is -;useful during debugging, to avoid wrapping long output lines in -;the terminal. -;") -; (license license:expat))) -; -;(define-public go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c -; (package -; (name "go-gopkg-in-yaml-v3") -; (version "3.0.0-20200313102051-9f266ea9e77c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/yaml.v3") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1bbai3lzb50m0x2vwsdbagrbhvfylj9k1m32hgbqwldqx4p9ay35")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" -; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) -; (home-page "https://gopkg.in/yaml.v3") -; (synopsis "YAML support for the Go language") -; (description "Package yaml implements YAML support for the Go language. -;") -; (license #f))) -; -;(define-public go-github-com-stretchr-testify-1.6.1 -; (package -; (name "go-github-com-stretchr-testify") -; (version "1.6.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/testify") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1yhiqqzjvi63pf01rgzx68gqkkvjx03fvl5wk30br5l6s81s090l")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/testify")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" -; ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) -; ("go-github-com-stretchr-objx-0.1.0" -; ,go-github-com-stretchr-objx-0.1.0) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-davecgh-go-spew-1.1.0" -; ,go-github-com-davecgh-go-spew-1.1.0))) -; (home-page "https://github.com/stretchr/testify") -; (synopsis "Testify - Thou Shalt Write Tests") -; (description -; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20190404232315-eb5bcb51f2a3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "17k4g8krxbl84gzcs275b7gsh66dzm15fdxivjnx9xz8q84l4kby")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190412213103-97732733099d -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190412213103-97732733099d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "118hkp01i4z1f5h6hcjm0ff2ngqhrzj1f7731n0kw8dr6hvbx0sw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20200622213623-75b288015ac9") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "18vlncvvs11ds3zaaziqjlg5s2vcwi3496nn6qv7p0dp94j5pwa2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" -; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) -; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" -; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20200930185726-fdedc70b468f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1njlfhjbvi4lxvjbq8zswrb0y0q4jd2p6x51h1q6vmyzi9af6869")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-text-0.3.3 -; (package -; (name "go-golang-org-x-text") -; (version "0.3.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/text") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "19pihqm3phyndmiw6i42pdv6z1rbvlqlsnhsyqf9gsnn0qnmqqlh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/text")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" -; ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) -; (home-page "https://golang.org/x/text") -; (synopsis "Go Text") -; (description -; "text is a repository of text-related packages related to internationalization -;(i18n) and localization (l10n), such as character encodings, text -;transformations, and locale-specific text handling. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20201110031124-69a78807bb2b") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "176z5k6jbhr9vf0am2avl1lyqwym3q0mri98yb8r572z33qmcw1d")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) -; ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" -; ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) -; ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" -; ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20201112073958-5cba982894dd") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "08dvnwmi2p4slmhyx7gzkmzfp51mmnkzi0ngwhvv0vip1s3s3zjc")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20180917221912-90fa682c2a6e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-text-0.3.4 -; (package -; (name "go-golang-org-x-text") -; (version "0.3.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/text") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "11jdvix83xcl5xnb039y4zrz4x5skzsps0w1jryp6wrar53cydvz")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/text")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" -; ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) -; (home-page "https://golang.org/x/text") -; (synopsis "Go Text") -; (description -; "text is a repository of text-related packages related to internationalization -;(i18n) and localization (l10n), such as character encodings, text -;transformations, and locale-specific text handling. -;") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-1.24.0 -; (package -; (name "go-google-golang-org-protobuf") -; (version "1.24.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0x3qyn3rizbs671gs7f8v50rmiwf9h7kbaradpivw9718mhbg1gn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" -; ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.4.1" -; ,go-github-com-golang-protobuf-1.4.1))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20201110150050-8816d57aaa9a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0cbfam4w9jr5gib43v3s2r5j8mhd3hl6ks3azwsahaff6idggg20")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.24.0" -; ,go-google-golang-org-protobuf-1.24.0) -; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) -; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" -; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-github-com-golang-protobuf-1.4.1" -; ,go-github-com-golang-protobuf-1.4.1))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-github-com-google-go-cmp-0.5.0 -; (package -; (name "go-github-com-google-go-cmp") -; (version "0.5.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/go-cmp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "04pzp583p6b32y34c6jygfxarff9qjs39rarvfh6467z24sdd9k4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/go-cmp")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" -; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) -; (home-page "https://github.com/google/go-cmp") -; (synopsis "Package for equality of Go values") -; (description -; "This package is intended to be a more powerful and safer alternative to -;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-1.22.0 -; (package -; (name "go-google-golang-org-protobuf") -; (version "1.22.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0n7lc4m7kfvj01glc0gnjy0zsnsic7cxnbvlajy0h14cxbab87pj")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.4.0" -; ,go-github-com-golang-protobuf-1.4.0))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.4.1 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.4.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0w7ks4vffnnkp0miwgc3chrsnmya45lzvpahb2wmw0jwhdp5kdx7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.22.0" -; ,go-google-golang-org-protobuf-1.22.0) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0))) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-grpc-1.27.0 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.27.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ijrmgrxyabfn51nm3p9l81iaasq5fg237wnr6mdc4dzsfcg8kd7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" -; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-github-com-google-go-cmp-0.2.0" -; ,go-github-com-google-go-cmp-0.2.0) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2) -; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" -; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) -; ("go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473" -; ,go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-google-go-cmp-0.3.0 -; (package -; (name "go-github-com-google-go-cmp") -; (version "0.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/go-cmp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1hyxx3434zshl2m9ja78gwlkg1rx9yl6diqa7dnjb31xz5x4gbjj")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/go-cmp")) -; (home-page "https://github.com/google/go-cmp") -; (synopsis "Package for equality of Go values") -; (description -; "This package is intended to be a more powerful and safer alternative to -;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd -; (package -; (name "go-google-golang-org-protobuf") -; (version "0.0.0-20200109180630-ec00e32a8dfd") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0w6lp9w2avxcpxwzzhspr209ifhyjagvs23k0vykfdqahl1aplrh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.3.0" -; ,go-github-com-google-go-cmp-0.3.0))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.4.0-rc.1 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.4.0-rc.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "186rirvbfgv6hrxp27ipx2cdpv19qifdd20biqfdm01wiyclqimn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd" -; ,go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd) -; ("go-github-com-google-go-cmp-0.3.1" -; ,go-github-com-google-go-cmp-0.3.1))) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-github-com-google-go-cmp-0.3.1 -; (package -; (name "go-github-com-google-go-cmp") -; (version "0.3.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/go-cmp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1caw49i0plkjxir7kdf5qhwls3krqwfmi7g4h392rdfwi3kfahx1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/go-cmp")) -; (home-page "https://github.com/google/go-cmp") -; (synopsis "Package for equality of Go values") -; (description -; "This package is intended to be a more powerful and safer alternative to -;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64 -; (package -; (name "go-google-golang-org-protobuf") -; (version "0.0.0-20200221191635-4d8936d0db64") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0563bsvdjj6k0sgwqd5yzrgfiax7sp3lcwh608gync5sv9fx39cy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.3.1" -; ,go-github-com-google-go-cmp-0.3.1) -; ("go-github-com-golang-protobuf-1.4.0-rc.1" -; ,go-github-com-golang-protobuf-1.4.0-rc.1))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.4.0-rc.1.0.20200221234624-67d41d38c208") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ykxhg3zixmw25pd435f8h16wnz1g00jpcmmg3xl030kksgqgpp6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64" -; ,go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0))) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60 -; (package -; (name "go-google-golang-org-protobuf") -; (version "0.0.0-20200228230310-ab0ca4ff8a60") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1rinspcznfp85yz4vrlf4h38hr576virgv8lcs22bsylqga808sd")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208" -; ,go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.4.0-rc.2 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.4.0-rc.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1hd43hjv5zl6bjbmhm5phx74bw4xajsi73m5zky2k56za4mpgzzc")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60" -; ,go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0))) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967 -; (package -; (name "go-google-golang-org-protobuf") -; (version "1.20.1-0.20200309200217-e05f789c0967") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "17wmy89hnmpkwc63rfcjp50q15s9f1rhmczg06c3z9yy41zk82w9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.4.0-rc.2" -; ,go-github-com-golang-protobuf-1.4.0-rc.2))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.4.0-rc.4.0.20200313231945-b860323f09d0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1zj6cwshx0l5n9cn2cpbikzzb79px5dmkpc4p19zy1iif5r5p0z0")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967" -; ,go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0))) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-1.21.0 -; (package -; (name "go-google-golang-org-protobuf") -; (version "1.21.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "12bwln8z1lf9105gdp6ip0rx741i4yfz1520gxnp8861lh9wcl63")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0" -; ,go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.4.0 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1fjvl5n77abxz5qsd4mgyvjq19x43c5bfvmq62mq3m5plx6zksc8")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.21.0" -; ,go-google-golang-org-protobuf-1.21.0) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0))) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543 -; (package -; (name "go-golang-org-x-xerrors") -; (version "0.0.0-20191204190536-9bdfabe68543") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/xerrors") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1yjfi1bk9xb81lqn85nnm13zz725wazvrx3b50hx19qmwg7a4b0c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/xerrors")) -; (home-page "https://golang.org/x/xerrors") -; (synopsis #f) -; (description -; "Package xerrors implements functions to manipulate errors. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-google-go-cmp-0.4.0 -; (package -; (name "go-github-com-google-go-cmp") -; (version "0.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/go-cmp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1x5pvl3fb5sbyng7i34431xycnhmx8xx94gq2n19g6p0vz68z2v2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/go-cmp")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" -; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) -; (home-page "https://github.com/google/go-cmp") -; (synopsis "Package for equality of Go values") -; (description -; "This package is intended to be a more powerful and safer alternative to -;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc -; (package -; (name "go-google-golang-org-protobuf") -; (version "1.23.1-0.20200526195155-81db48ad09cc") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "02cpr8rqr5wmpj2fqb32mzilsdnxkh52g1jz95a3ck3gzffc7hh1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.4.0" -; ,go-github-com-golang-protobuf-1.4.0))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013 -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20200526211855-cb27e3aa2013") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ml73ghqcwbz7ipfk8fnxb5indcml49b5p7vp1fsyny0abyyrmxf")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" -; ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) -; ("go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc" -; ,go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc) -; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) -; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" -; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-github-com-golang-protobuf-1.4.1" -; ,go-github-com-golang-protobuf-1.4.1))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-protobuf-1.25.0 -; (package -; (name "go-google-golang-org-protobuf") -; (version "1.25.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0apfl42x166dh96zfq5kvv4b4ax9xljik6bq1mnvn2240ir3mc23")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" -; ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) -; ("go-github-com-google-go-cmp-0.5.0" -; ,go-github-com-google-go-cmp-0.5.0) -; ("go-github-com-golang-protobuf-1.4.1" -; ,go-github-com-golang-protobuf-1.4.1))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15 -; (package -; (name "go-gopkg-in-check-v1") -; (version "1.0.0-20190902080502-41f04d3bba15") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/check.v1") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0vfk9czmlxmp6wndq8k17rhnjxal764mxfhrccza7nwlia760pjy")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) -; (home-page "https://gopkg.in/check.v1") -; (synopsis "Instructions") -; (description -; "Package check is a rich testing extension for Go's testing package. -;") -; (license license:bsd-2))) -; -;(define-public go-k8s-io-cri-api-0.20.6 -; (package -; (name "go-k8s-io-cri-api") -; (version "0.20.6") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes/cri-api") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0yp4rfxjn4h78z4sbmwhcqm8mva9bsvsc5jky2qa76npp0hycjhx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "k8s.io/cri-api")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" -; ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) -; ("go-google-golang-org-protobuf-1.25.0" -; ,go-google-golang-org-protobuf-1.25.0) -; ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) -; ("go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a" -; ,go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a) -; ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) -; ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" -; ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) -; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" -; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-kr-pretty-0.2.0" ,go-github-com-kr-pretty-0.2.0) -; ("go-github-com-google-go-cmp-0.5.2" -; ,go-github-com-google-go-cmp-0.5.2) -; ("go-github-com-golang-protobuf-1.4.3" -; ,go-github-com-golang-protobuf-1.4.3) -; ("go-github-com-gogo-protobuf-1.3.2" -; ,go-github-com-gogo-protobuf-1.3.2) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://k8s.io/cri-api") -; (synopsis "Purpose") -; (description -; "This repository contains the definitions for the Container Runtime Interface (CRI). -;CRI is a plugin interface which enables kubelet to use a wide variety of container runtimes, -;without the need to recompile. CRI consists of a protocol buffers and gRPC API.") -; (license license:asl2.0))) -; -;(define-public go-github-com-go-logr-logr-0.2.0 -; (package -; (name "go-github-com-go-logr-logr") -; (version "0.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/go-logr/logr") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "06xh4pw53z38vyi300mgpnr4pkqgknw9xakdyk1xzqfg9zd60d7d")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/go-logr/logr")) -; (home-page "https://github.com/go-logr/logr") -; (synopsis "A minimal logging API for Go") -; (description -; "Package logr defines a general-purpose logging API and abstract interfaces -;to back that API. Packages in the Go ecosystem can depend on this package, -;while callers can implement logging with whatever backend is appropriate. -;") -; (license license:asl2.0))) -; -;(define-public go-k8s-io-klog-v2-2.4.0 -; (package -; (name "go-k8s-io-klog-v2") -; (version "2.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes/klog") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1zjih6bgdalga5hqaa2fwwidslq6lv358gkj88a8wwj7w253wc8c")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "k8s.io/klog/v2" #:unpack-path "k8s.io/klog/v2")) -; (propagated-inputs -; `(("go-github-com-go-logr-logr-0.2.0" -; ,go-github-com-go-logr-logr-0.2.0))) -; (home-page "https://k8s.io/klog/v2") -; (synopsis "klog") -; (description -; "Package klog implements logging analogous to the Google-internal C++ INFO/ERROR/V setup. -;It provides functions Info, Warning, Error, Fatal, plus formatting variants such as -;Infof. It also provides V-style logging controlled by the -v and -vmodule=file=2 flags. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-davecgh-go-spew-1.1.1 -; (package -; (name "go-github-com-davecgh-go-spew") -; (version "1.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/davecgh/go-spew") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/davecgh/go-spew")) -; (home-page "https://github.com/davecgh/go-spew") -; (synopsis "go-spew") -; (description -; "Go-spew implements a deep pretty printer for Go data structures to aid in -;debugging. A comprehensive suite of tests with 100% test coverage is provided -;to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage -;report. Go-spew is licensed under the liberal ISC license, so it may be used in -;open source or commercial projects.") -; (license license:isc))) -; -;(define-public go-github-com-spf13-afero-1.2.2 -; (package -; (name "go-github-com-spf13-afero") -; (version "1.2.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/spf13/afero") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0j9r65qgd58324m85lkl49vk9dgwd62g7dwvkfcm3k6i9dc555a9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/spf13/afero")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0))) -; (home-page "https://github.com/spf13/afero") -; (synopsis "Overview") -; (description -; "This package provides a FileSystem Abstraction System for Go") -; (license license:asl2.0))) -; -;(define-public go-github-com-davecgh-go-spew-1.1.0 -; (package -; (name "go-github-com-davecgh-go-spew") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/davecgh/go-spew") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/davecgh/go-spew")) -; (home-page "https://github.com/davecgh/go-spew") -; (synopsis "go-spew") -; (description -; "Go-spew implements a deep pretty printer for Go data structures to aid in -;debugging. A comprehensive suite of tests with 100% test coverage is provided -;to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage -;report. Go-spew is licensed under the liberal ISC license, so it may be used in -;open source or commercial projects.") -; (license license:isc))) -; -;(define-public go-github-com-stretchr-objx-0.1.0 -; (package -; (name "go-github-com-stretchr-objx") -; (version "0.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/objx") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/objx")) -; (home-page "https://github.com/stretchr/objx") -; (synopsis "Objx") -; (description -; "Objx - Go package for dealing with maps, slices, JSON and other data. -;") -; (license license:expat))) -; -;(define-public go-github-com-stretchr-testify-1.3.0 -; (package -; (name "go-github-com-stretchr-testify") -; (version "1.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/testify") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0wjchp2c8xbgcbbq32w3kvblk6q6yn533g78nxl6iskq6y95lxsy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/testify")) -; (propagated-inputs -; `(("go-github-com-stretchr-objx-0.1.0" -; ,go-github-com-stretchr-objx-0.1.0) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-davecgh-go-spew-1.1.0" -; ,go-github-com-davecgh-go-spew-1.1.0))) -; (home-page "https://github.com/stretchr/testify") -; (synopsis "Testify - Thou Shalt Write Tests") -; (description -; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -;") -; (license license:expat))) -; -;(define-public go-github-com-go-logr-logr-0.1.0 -; (package -; (name "go-github-com-go-logr-logr") -; (version "0.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/go-logr/logr") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0fhijjhxz4n2j5i24ckzv8r9kri3v44jdyklgbqjfq0xm7izqg14")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/go-logr/logr")) -; (home-page "https://github.com/go-logr/logr") -; (synopsis "A minimal logging API for Go") -; (description -; "Package logr defines a general-purpose logging API and abstract interfaces -;to back that API. Packages in the Go ecosystem can depend on this package, -;while callers can implement logging with whatever backend is appropriate. -;") -; (license license:asl2.0))) -; -;(define-public go-k8s-io-klog-v2-2.0.0 -; (package -; (name "go-k8s-io-klog-v2") -; (version "2.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes/klog") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "09vqm0n5l64lzpk3xqm4njbncnphx52qk21gwx8nsgyivlxx1n8g")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "k8s.io/klog/v2" #:unpack-path "k8s.io/klog/v2")) -; (propagated-inputs -; `(("go-github-com-go-logr-logr-0.1.0" -; ,go-github-com-go-logr-logr-0.1.0))) -; (home-page "https://k8s.io/klog/v2") -; (synopsis "klog") -; (description -; "Package klog implements logging analogous to the Google-internal C++ INFO/ERROR/V setup. -;It provides functions Info, Warning, Error, Fatal, plus formatting variants such as -;Infof. It also provides V-style logging controlled by the -v and -vmodule=file=2 flags. -;") -; (license license:asl2.0))) -; -;(define-public go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920 -; (package -; (name "go-k8s-io-utils") -; (version "0.0.0-20201110183641-67b214c5f920") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes/utils") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "19rc9v5xin0a8qbf25my3rd0jd74cin2mk2a38j2dwplqy3s9crl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "k8s.io/utils")) -; (propagated-inputs -; `(("go-k8s-io-klog-v2-2.0.0" ,go-k8s-io-klog-v2-2.0.0) -; ("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0) -; ("go-github-com-spf13-afero-1.2.2" ,go-github-com-spf13-afero-1.2.2) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://k8s.io/utils") -; (synopsis "Utils") -; (description -; "This package provides a set of Go libraries that provide low-level, kubernetes-independent packages -;supplementing the @url{https://golang.org/pkg/#stdlib,Go standard libs}.") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-tools-0.0.0-20181030221726-6c7e314b6563 -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20181030221726-6c7e314b6563") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1m1n6r8v6mrlh0yvlz3qxz4s7jc7nis0zf3dfl1i6hqh5xblkwnw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-github-com-kisielk-errcheck-1.2.0 -; (package -; (name "go-github-com-kisielk-errcheck") -; (version "1.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kisielk/errcheck") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0am6g10ipdxw84byscm7shda654882wjcbinq5c4696m6mhi2qrd")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kisielk/errcheck")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20181030221726-6c7e314b6563" -; ,go-golang-org-x-tools-0.0.0-20181030221726-6c7e314b6563))) -; (home-page "https://github.com/kisielk/errcheck") -; (synopsis "errcheck") -; (description -; "errcheck is a program for checking for unchecked errors in go programs.") -; (license license:expat))) -; -;(define-public go-github-com-kisielk-gotool-1.0.0 -; (package -; (name "go-github-com-kisielk-gotool") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kisielk/gotool") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "14af2pa0ssyp8bp2mvdw184s5wcysk6akil3wzxmr05wwy951iwn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kisielk/gotool")) -; (home-page "https://github.com/kisielk/gotool") -; (synopsis "gotool") -; (description -; "Package gotool contains utility functions used to implement the standard -;\"cmd/go\" tool, provided as a convenience to developers who want to write -;tools with similar semantics. -;") -; (license license:expat))) -; -;(define-public go-github-com-gogo-protobuf-1.3.1 -; (package -; (name "go-github-com-gogo-protobuf") -; (version "1.3.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/gogo/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0x77x64sxjgfhmbijqfzmj8h4ar25l2w97h01q3cqs1wk7zfnkhp")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/gogo/protobuf")) -; (propagated-inputs -; `(("go-github-com-kisielk-gotool-1.0.0" -; ,go-github-com-kisielk-gotool-1.0.0) -; ("go-github-com-kisielk-errcheck-1.2.0" -; ,go-github-com-kisielk-errcheck-1.2.0))) -; (home-page "https://github.com/gogo/protobuf") -; (synopsis "Protocol Buffers for Go with Gadgets") -; (description -; "gogoprotobuf is a fork of @url{https://github.com/golang/protobuf,golang/protobuf} with extra code generation features.") -; (license license:bsd-3))) -; -;(define-public go-github-com-gogo-googleapis-1.3.2 -; (package -; (name "go-github-com-gogo-googleapis") -; (version "1.3.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/gogo/googleapis") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "10670qprmk151n6pa1yclr89kgrvmalzvkq221xqbid83iv59s2h")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/gogo/googleapis")) -; (propagated-inputs -; `(("go-github-com-gogo-protobuf-1.3.1" -; ,go-github-com-gogo-protobuf-1.3.1))) -; (home-page "https://github.com/gogo/googleapis") -; (synopsis "Google APIs generated by gogoprotobuf") -; (description -; "The @url{https://github.com/gogo/grpc-example,grpc-example} includes an example usage of this repository.") -; (license license:asl2.0))) -; -;(define-public go-github-com-golang-protobuf-1.3.5 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.3.5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1gkd1942vk9n8kfzdwy1iil6wgvlwjq7a3y5jc49ck4lz9rhmgkq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-github-com-pmezard-go-difflib-1.0.0 -; (package -; (name "go-github-com-pmezard-go-difflib") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/pmezard/go-difflib") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/pmezard/go-difflib")) -; (home-page "https://github.com/pmezard/go-difflib") -; (synopsis "go-difflib") -; (description -; "Go-difflib is a partial port of python 3 difflib package. Its main goal -;was to make unified and context diff available in pure Go, mostly for -;testing purposes.") -; (license license:bsd-3))) -; -;(define-public go-github-com-russross-blackfriday-v2-2.0.1 -; (package -; (name "go-github-com-russross-blackfriday-v2") -; (version "2.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/russross/blackfriday") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0nlz7isdd4rgnwzs68499hlwicxz34j2k2a0b8jy0y7ycd2bcr5j")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/russross/blackfriday/v2")) -; (home-page "https://github.com/russross/blackfriday") -; (synopsis "Blackfriday") -; (description "Package blackfriday is a markdown processor. -;") -; (license license:bsd-2))) -; -;(define-public go-github-com-shurcool-sanitized-anchor-name-1.0.0 -; (package -; (name "go-github-com-shurcool-sanitized-anchor-name") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/shurcooL/sanitized_anchor_name") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1gv9p2nr46z80dnfjsklc6zxbgk96349sdsxjz05f3z6wb6m5l8f")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/shurcooL/sanitized_anchor_name")) -; (home-page "https://github.com/shurcooL/sanitized_anchor_name") -; (synopsis "sanitized_anchor_name") -; (description -; "Package sanitized_anchor_name provides a func to create sanitized anchor names. -;") -; (license license:expat))) -; -;(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d -; (package -; (name "go-github-com-cpuguy83-go-md2man-v2") -; (version "2.0.0-20190314233015-f79a8a8ca69d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/cpuguy83/go-md2man") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) -; (propagated-inputs -; `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" -; ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) -; ("go-github-com-russross-blackfriday-v2-2.0.1" -; ,go-github-com-russross-blackfriday-v2-2.0.1) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0))) -; (home-page "https://github.com/cpuguy83/go-md2man") -; (synopsis "go-md2man") -; (description "Converts markdown into roff (man pages).") -; (license license:expat))) -; -;(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 -; (package -; (name "go-gopkg-in-check-v1") -; (version "0.0.0-20161208181325-20d25e280405") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/check.v1") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) -; (home-page "https://gopkg.in/check.v1") -; (synopsis "Instructions") -; (description -; "Package check is a rich testing extension for Go's testing package. -;") -; (license license:bsd-2))) -; -;(define-public go-gopkg-in-yaml-v2-2.2.2 -; (package -; (name "go-gopkg-in-yaml-v2") -; (version "2.2.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/yaml.v2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "01wj12jzsdqlnidpyjssmj0r4yavlqy7dwrg7adqd8dicjc4ncsa")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" -; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) -; (home-page "https://gopkg.in/yaml.v2") -; (synopsis "YAML support for the Go language") -; (description "Package yaml implements YAML support for the Go language. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-urfave-cli-1.22.1 -; (package -; (name "go-github-com-urfave-cli") -; (version "1.22.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/urfave/cli") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "04ymak18flqlfcn8lycmg8r3931al8dvr8f1cg9n4yjaskmg72v8")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/urfave/cli")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) -; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d" -; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d) -; ("go-github-com-burntsushi-toml-0.3.1" -; ,go-github-com-burntsushi-toml-0.3.1))) -; (home-page "https://github.com/urfave/cli") -; (synopsis "cli") -; (description -; "Package cli provides a minimal framework for creating and organizing command line -;Go applications. cli is designed to be easy to understand and write, the most simple -;cli application can be written as follows: -;") -; (license license:expat))) -; -;(define-public go-github-com-census-instrumentation-opencensus-proto-0.2.1 -; (package -; (name "go-github-com-census-instrumentation-opencensus-proto") -; (version "0.2.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/census-instrumentation/opencensus-proto") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "19fcx3sc99i5dsklny6r073z5j20vlwn2xqm6di1q3b1xwchzqfj")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "github.com/census-instrumentation/opencensus-proto")) -; (home-page "https://github.com/census-instrumentation/opencensus-proto") -; (synopsis -; "OpenCensus Proto - Language Independent Interface Types For OpenCensus") -; (description -; "Census provides a framework to define and collect stats against metrics and to -;break those stats down across user-defined dimensions.") -; (license license:asl2.0))) -; -;(define-public go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4 -; (package -; (name "go-github-com-prometheus-client-model") -; (version "0.0.0-20190812154241-14fe0d1b01d4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/client_model") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0zdmk6rbbx39cvfz0r59v2jg5sg9yd02b4pds5n5llgvivi99550")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/client_model")) -; (propagated-inputs -; `(("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" -; ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0))) -; (home-page "https://github.com/prometheus/client_model") -; (synopsis "Deprecation note") -; (description -; "This repository used to contain the code that defined both -;the data model and the exposition format of Prometheus metrics.") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20190311212946-11955173bddd") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0hlkai67w167wiyivkzd1fgqrnyxkb94l2c6kr51jwcscizfyfn3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3 -; (package -; (name "go-golang-org-x-lint") -; (version "0.0.0-20190313153728-d0100b6bd8b3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/lint") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0b0amr9x4ji66iv9ayfx7zrfx52k1m5g66qfcxkgj80qrb1y2yn7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/lint")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" -; ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd))) -; (home-page "https://golang.org/x/lint") -; (synopsis "Installation") -; (description "Package lint contains a linter for Go source code. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sync-0.0.0-20190423024810-112230192c58 -; (package -; (name "go-golang-org-x-sync") -; (version "0.0.0-20190423024810-112230192c58") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sync") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "05i2k43j2d0llq768hg5pf3hb2yhfzp9la1w5wp0rsnnzblr0lfn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sync")) -; (home-page "https://golang.org/x/sync") -; (synopsis "Go Sync") -; (description -; "This repository provides Go concurrency primitives in addition to the -;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135 -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20190524140312-2c0ae7006135") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1lsi2ssxajclj3bciz2a41v1vjv768ja3v6wnbyhxy8xphwkp4fk")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" -; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc -; (package -; (name "go-honnef-co-go-tools") -; (version "0.0.0-20190523083050-ea95bdfd59fc") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/dominikh/go-tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1763nw7pwpzkvzfnm63dgzcgbq9hwmq5l1nffchnhh77vgkaq4ic")))) -; (build-system go-build-system) -; (arguments '(#:import-path "honnef.co/go/tools")) -; (home-page "https://honnef.co/go/tools") -; (synopsis "Documentation") -; (description -; "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, -;offers simplifications, and enforces style rules.") -; (license license:expat))) -; -;(define-public go-google-golang-org-grpc-1.23.0 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.23.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1cn33r2gclmq2v1ndpf1n5bmhf2qs8mms7ii5cnl6f9ch4r2c4k3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" -; ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) -; ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" -; ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) -; ("go-google-golang-org-appengine-1.1.0" -; ,go-google-golang-org-appengine-1.1.0) -; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" -; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-github-com-google-go-cmp-0.2.0" -; ,go-github-com-google-go-cmp-0.2.0) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0) -; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-client9-misspell-0.3.4" -; ,go-github-com-client9-misspell-0.3.4) -; ("go-github-com-burntsushi-toml-0.3.1" -; ,go-github-com-burntsushi-toml-0.3.1) -; ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473 -; (package -; (name "go-github-com-envoyproxy-go-control-plane") -; (version "0.9.1-0.20191026205805-5f8ba28d4473") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/envoyproxy/go-control-plane") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1f1s764rd41vd9vgk3r14h1m6fz6pdvxj6fd83q58gxifbc4q5w4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.23.0" ,go-google-golang-org-grpc-1.23.0) -; ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" -; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) -; ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" -; ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2) -; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" -; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) -; ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" -; ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) -; (home-page "https://github.com/envoyproxy/go-control-plane") -; (synopsis "control-plane") -; (description -; "This repository contains a Go-based implementation of an API server that -;implements the discovery service APIs defined in -;@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") -; (license license:asl2.0))) -; -;(define-public go-github-com-envoyproxy-protoc-gen-validate-0.1.0 -; (package -; (name "go-github-com-envoyproxy-protoc-gen-validate") -; (version "0.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/envoyproxy/protoc-gen-validate") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0kxd3wwh3xwqk0r684hsy281xq4y71cd11d4q2hspcjbnlbwh7cy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/envoyproxy/protoc-gen-validate")) -; (home-page "https://github.com/envoyproxy/protoc-gen-validate") -; (synopsis "protoc-gen-validate (PGV)") -; (description -; "PGV is a protoc plugin to generate polyglot message validators. While protocol buffers effectively guarantee the types of structured data, they cannot enforce semantic rules for values. This plugin adds support to protoc-generated code to validate such constraints.") -; (license license:asl2.0))) -; -;(define-public go-github-com-google-go-cmp-0.2.0 -; (package -; (name "go-github-com-google-go-cmp") -; (version "0.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/go-cmp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1fbv0x27k9sn8svafc0hjwsnckk864lv4yi7bvzrxvmd3d5hskds")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/go-cmp")) -; (home-page "https://github.com/google/go-cmp") -; (synopsis "Package for equality of Go values") -; (description -; "This package is intended to be a more powerful and safer alternative to -;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20190308221718-c2843e01d9a2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20190311183353-d8887717615a -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20190311183353-d8887717615a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1wfm6ngxjyj7v5a2dqib6lw8bb2rdnf1kl48diykxjrsddn0s163")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190215142949-d0b11bdaac8a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.3.2 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.3.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1k1wb4zr0qbwgpvz9q5ws9zhlal8hq7dmq62pwxxriksayl6hzym")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4 -; (package -; (name "go-golang-org-x-exp") -; (version "0.0.0-20190121172915-509febef88a4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/exp") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "02isrh39z8znrp5znplzy0dip2gnrl3jm1355raliyvhnhg04j6q")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/exp")) -; (home-page "https://golang.org/x/exp") -; (synopsis "exp") -; (description -; "This subrepository holds experimental and deprecated (in the @code{old} -;directory) packages.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961 -; (package -; (name "go-golang-org-x-lint") -; (version "0.0.0-20190227174305-5b3e6a55c961") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/lint") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "04zp5vbds9nffmjg36wjpi5vg9zmf890yf78xxasai3ni637ivfw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/lint")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" -; ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c))) -; (home-page "https://golang.org/x/lint") -; (synopsis "Installation") -; (description "Package lint contains a linter for Go source code. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20190213061140-3a22650c66bd") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "12q6fgdkc0742vcms67nzadgdwvi3rnb1gx3vwkljhrvlnwvz7wc")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f -; (package -; (name "go-golang-org-x-sync") -; (version "0.0.0-20181108010431-42b317875d0f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sync") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0mrjhk7al7yyh76x9flvxy4jm5jyqh2fxbxagpaazxn1xdgkaif3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sync")) -; (home-page "https://golang.org/x/sync") -; (synopsis "Go Sync") -; (description -; "This repository provides Go concurrency primitives in addition to the -;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20180724234803-3673e40ba225") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0vx7mz18p480p7fh0w5jv6mfdbsswrlac1sz4i705q7q7ygz59lm")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-appengine-1.4.0 -; (package -; (name "go-google-golang-org-appengine") -; (version "1.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/appengine") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "06zl7w4sxgdq2pl94wy9ncii6h0z3szl4xpqds0sv3b3wbdlhbnn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/appengine")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225" -; ,go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0))) -; (home-page "https://google.golang.org/appengine") -; (synopsis "Go App Engine packages") -; (description -; "Package appengine provides basic functionality for Google App Engine. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20190226205152-f727befe758c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0rpcqw6z13qd33rbasg32zb0gdhgh5lzjla63r6g651zf6hpsak0")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-google-golang-org-appengine-1.4.0" -; ,go-google-golang-org-appengine-1.4.0) -; ("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" -; ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) -; ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" -; ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-cloud-google-com-go-0.26.0 -; (package -; (name "go-cloud-google-com-go") -; (version "0.26.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-cloud-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "149v3ci17g6wd2pm18mzcncq5qpl9hwdjnz3rlbn5rfidyn46la1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "cloud.google.com/go")) -; (home-page "https://cloud.google.com/go") -; (synopsis "Google Cloud Client Libraries for Go") -; (description -; "Package cloud is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -;of sub-packages. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-burntsushi-toml-0.3.1 -; (package -; (name "go-github-com-burntsushi-toml") -; (version "0.3.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/BurntSushi/toml") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1fjdwwfzyzllgiwydknf1pwjvy49qxfsczqx5gz3y0izs7as99j6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/BurntSushi/toml")) -; (home-page "https://github.com/BurntSushi/toml") -; (synopsis "TOML parser and encoder for Go with reflection") -; (description -; "Package toml implements decoding and encoding of TOML files. -;") -; (license license:expat))) -; -;(define-public go-github-com-client9-misspell-0.3.4 -; (package -; (name "go-github-com-client9-misspell") -; (version "0.3.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/client9/misspell") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1vwf33wsc4la25zk9nylpbp9px3svlmldkm0bha4hp56jws4q9cs")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/client9/misspell")) -; (home-page "https://github.com/client9/misspell") -; (synopsis "Install") -; (description -; "Package misspell corrects commonly misspelled English words in source files. -;") -; (license license:expat))) -; -;(define-public go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b -; (package -; (name "go-github-com-golang-glog") -; (version "0.0.0-20160126235308-23def4e6c14b") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/glog") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0jb2834rw5sykfr937fxi8hxi2zy80sj2bdn9b3jb4b26ksqng30")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/glog")) -; (home-page "https://github.com/golang/glog") -; (synopsis "glog") -; (description -; "Package glog implements logging analogous to the Google-internal C++ INFO/ERROR/V setup. -;It provides functions Info, Warning, Error, Fatal, plus formatting variants such as -;Infof. It also provides V-style logging controlled by the -v and -vmodule=file=2 flags. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-golang-mock-1.1.1 -; (package -; (name "go-github-com-golang-mock") -; (version "1.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/mock") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ap8wb6pdl6ccmdb43advjll2ly4sz26wsc3axw0hbrjrybybzgy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/mock")) -; (home-page "https://github.com/golang/mock") -; (synopsis "gomock") -; (description -; "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It -;integrates well with Go's built-in @code{testing} package, but can be used in other -;contexts too.") -; (license license:asl2.0))) -; -;(define-public go-github-com-golang-protobuf-1.2.0 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0kf4b59rcbb1cchfny2dm9jyznp8ri2hsb14n8iak1q8986xa0ab")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3 -; (package -; (name "go-golang-org-x-lint") -; (version "0.0.0-20181026193005-c67002cb31c3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/lint") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0gymbggskjmphqxqcx4s0vnlcz7mygbix0vhwcwv5r67c0bf6765")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/lint")) -; (home-page "https://golang.org/x/lint") -; (synopsis "Installation") -; (description "Package lint contains a linter for Go source code. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20180826012351-8a410e7b638d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0hp0l8f6fir5gmgrjq0mhh5ikc0rlrm72774228800kfwqjrxxny")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be -; (package -; (name "go-golang-org-x-oauth2") -; (version "0.0.0-20180821212333-d2e6202438be") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/oauth2") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0wbn75fd10485nb93bm4kqldqifdim5xqy4v7r5sdvimvf3fyhn7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/oauth2")) -; (home-page "https://golang.org/x/oauth2") -; (synopsis "OAuth2 for Go") -; (description -; "Package oauth2 provides support for making -;OAuth2 authorized and authenticated HTTP requests, -;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -;It can additionally grant authorization with Bearer JWT. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f -; (package -; (name "go-golang-org-x-sync") -; (version "0.0.0-20180314180146-1d60e4601c6f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sync") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "046jlanz2lkxq1r57x9bl6s4cvfqaic6p2xybsj8mq1120jv4rs6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sync")) -; (home-page "https://golang.org/x/sync") -; (synopsis "Go Sync") -; (description -; "This repository provides Go concurrency primitives in addition to the -;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20180830151530-49385e6e1522") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0spbldahns09fdxkxflb1x24f8k2awdlnr6k5i7ci4fqd19r1dv4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-text-0.3.0 -; (package -; (name "go-golang-org-x-text") -; (version "0.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/text") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/text")) -; (home-page "https://golang.org/x/text") -; (synopsis "Go Text") -; (description -; "text is a repository of text-related packages related to internationalization -;(i18n) and localization (l10n), such as character encodings, text -;transformations, and locale-specific text handling. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20190114222345-bf090417da8b") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1n3xp56k4k3lj06rx7587wr5gnwg0148nvwx6ch0g7ar02hh94hw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-appengine-1.1.0 -; (package -; (name "go-google-golang-org-appengine") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/appengine") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1pz202zszg8f35dk5pfhwgcdi3r6dx1l4yk6x6ly7nb4j45zi96x")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/appengine")) -; (home-page "https://google.golang.org/appengine") -; (synopsis "Go App Engine packages") -; (description -; "Package appengine provides basic functionality for Google App Engine. -;") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8 -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20180817151627-c66870c02cf8") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0siq7sv68556ygqi2d2zmvx8l1xjqdc0fylqzci5h1mq2i14bayn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-grpc-1.19.0 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.19.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1znqwpj7ix3dpzx4zch0q70sdl3z5lvbb7v3q4i8sf8kas3yv71v")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" -; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) -; ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" -; ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) -; ("go-google-golang-org-appengine-1.1.0" -; ,go-google-golang-org-appengine-1.1.0) -; ("go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b" -; ,go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b) -; ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522" -; ,go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522) -; ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" -; ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d" -; ,go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d) -; ("go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3" -; ,go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0) -; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-client9-misspell-0.3.4" -; ,go-github-com-client9-misspell-0.3.4) -; ("go-github-com-burntsushi-toml-0.3.1" -; ,go-github-com-burntsushi-toml-0.3.1) -; ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099 -; (package -; (name "go-honnef-co-go-tools") -; (version "0.0.0-20190102054323-c2f93a96b099") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/dominikh/go-tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "07lg29aiap80ca9f201jzng9vjr168cv3qmvjmbd7v5pmww9kmr8")))) -; (build-system go-build-system) -; (arguments '(#:import-path "honnef.co/go/tools")) -; (home-page "https://honnef.co/go/tools") -; (synopsis "Documentation") -; (description -; "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, -;offers simplifications, and enforces style rules.") -; (license license:expat))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55 -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20190819201941-24fa4b261c55") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "109zhaqlfd8zkbr1hk6zqbs6vcxfrk64scjwh2nswph05gr0m84d")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" -; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) -; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) -; ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" -; ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) -; ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" -; ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) -; ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" -; ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-grpc-1.27.1 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.27.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "09phrrsafgq6hnbw8cawvx44bdpk1p584fys17x1bwn0j0451zzs")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" -; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-github-com-google-go-cmp-0.2.0" -; ,go-github-com-google-go-cmp-0.2.0) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2) -; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" -; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) -; ("go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473" -; ,go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-containerd-1.5.8 -; (package -; (name "go-github-com-containerd-containerd") -; (version "1.5.8") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/containerd") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "18lzmpbhbk1kq1nwdp6zcxb577kp425l2ikcmb45jcwgqdwzla6l")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/containerd")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) -; ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) -; ("go-github-com-golang-protobuf-1.3.5" -; ,go-github-com-golang-protobuf-1.3.5) -; ("go-github-com-gogo-googleapis-1.3.2" -; ,go-github-com-gogo-googleapis-1.3.2) -; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" -; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) -; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) -; ("go-k8s-io-cri-api-0.20.6" ,go-k8s-io-cri-api-0.20.6) -; ("go-k8s-io-component-base-0.20.6" ,go-k8s-io-component-base-0.20.6) -; ("go-k8s-io-client-go-0.20.6" ,go-k8s-io-client-go-0.20.6) -; ("go-k8s-io-apiserver-0.20.6" ,go-k8s-io-apiserver-0.20.6) -; ("go-k8s-io-apimachinery-0.20.6" ,go-k8s-io-apimachinery-0.20.6) -; ("go-k8s-io-api-0.20.6" ,go-k8s-io-api-0.20.6) -; ("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) -; ("go-golang-org-x-sys-0.0.0-20210426230700-d19ff857e887" -; ,go-golang-org-x-sys-0.0.0-20210426230700-d19ff857e887) -; ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" -; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) -; ("go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110" -; ,go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110) -; ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) -; ("go-github-com-tchap-go-patricia-2.2.6+incompatible" -; ,go-github-com-tchap-go-patricia-2.2.6+incompatible) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-sirupsen-logrus-1.8.1" -; ,go-github-com-sirupsen-logrus-1.8.1) -; ("go-github-com-satori-go-uuid-1.2.0" -; ,go-github-com-satori-go-uuid-1.2.0) -; ("go-github-com-prometheus-client-golang-1.7.1" -; ,go-github-com-prometheus-client-golang-1.7.1) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-pelletier-go-toml-1.8.1" -; ,go-github-com-pelletier-go-toml-1.8.1) -; ("go-github-com-opencontainers-selinux-1.8.2" -; ,go-github-com-opencontainers-selinux-1.8.2) -; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417" -; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417) -; ("go-github-com-opencontainers-runc-1.0.2" -; ,go-github-com-opencontainers-runc-1.0.2) -; ("go-github-com-opencontainers-image-spec-1.0.1" -; ,go-github-com-opencontainers-image-spec-1.0.1) -; ("go-github-com-opencontainers-go-digest-1.0.0" -; ,go-github-com-opencontainers-go-digest-1.0.0) -; ("go-github-com-moby-sys-symlink-0.1.0" -; ,go-github-com-moby-sys-symlink-0.1.0) -; ("go-github-com-moby-sys-mountinfo-0.4.1" -; ,go-github-com-moby-sys-mountinfo-0.4.1) -; ("go-github-com-moby-locker-1.0.1" ,go-github-com-moby-locker-1.0.1) -; ("go-github-com-klauspost-compress-1.11.13" -; ,go-github-com-klauspost-compress-1.11.13) -; ("go-github-com-imdario-mergo-0.3.12" -; ,go-github-com-imdario-mergo-0.3.12) -; ("go-github-com-hashicorp-go-multierror-1.0.0" -; ,go-github-com-hashicorp-go-multierror-1.0.0) -; ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" -; ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) -; ("go-github-com-google-uuid-1.2.0" ,go-github-com-google-uuid-1.2.0) -; ("go-github-com-google-go-cmp-0.5.5" -; ,go-github-com-google-go-cmp-0.5.5) -; ("go-github-com-gogo-protobuf-1.3.2" -; ,go-github-com-gogo-protobuf-1.3.2) -; ("go-github-com-fsnotify-fsnotify-1.4.9" -; ,go-github-com-fsnotify-fsnotify-1.4.9) -; ("go-github-com-emicklei-go-restful-2.9.5+incompatible" -; ,go-github-com-emicklei-go-restful-2.9.5+incompatible) -; ("go-github-com-docker-go-units-0.4.0" -; ,go-github-com-docker-go-units-0.4.0) -; ("go-github-com-docker-go-metrics-0.0.1" -; ,go-github-com-docker-go-metrics-0.0.1) -; ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" -; ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1) -; ("go-github-com-coreos-go-systemd-v22-22.3.2" -; ,go-github-com-coreos-go-systemd-v22-22.3.2) -; ("go-github-com-containernetworking-plugins-0.9.1" -; ,go-github-com-containernetworking-plugins-0.9.1) -; ("go-github-com-containerd-zfs-1.0.0" -; ,go-github-com-containerd-zfs-1.0.0) -; ("go-github-com-containerd-typeurl-1.0.2" -; ,go-github-com-containerd-typeurl-1.0.2) -; ("go-github-com-containerd-ttrpc-1.1.0" -; ,go-github-com-containerd-ttrpc-1.1.0) -; ("go-github-com-containerd-nri-0.1.0" -; ,go-github-com-containerd-nri-0.1.0) -; ("go-github-com-containerd-imgcrypt-1.1.1" -; ,go-github-com-containerd-imgcrypt-1.1.1) -; ("go-github-com-containerd-go-runc-1.0.0" -; ,go-github-com-containerd-go-runc-1.0.0) -; ("go-github-com-containerd-go-cni-1.0.2" -; ,go-github-com-containerd-go-cni-1.0.2) -; ("go-github-com-containerd-fifo-1.0.0" -; ,go-github-com-containerd-fifo-1.0.0) -; ("go-github-com-containerd-continuity-0.1.0" -; ,go-github-com-containerd-continuity-0.1.0) -; ("go-github-com-containerd-console-1.0.2" -; ,go-github-com-containerd-console-1.0.2) -; ("go-github-com-containerd-cgroups-1.0.1" -; ,go-github-com-containerd-cgroups-1.0.1) -; ("go-github-com-containerd-btrfs-1.0.0" -; ,go-github-com-containerd-btrfs-1.0.0) -; ("go-github-com-containerd-aufs-1.0.0" -; ,go-github-com-containerd-aufs-1.0.0) -; ("go-github-com-microsoft-hcsshim-0.8.23" -; ,go-github-com-microsoft-hcsshim-0.8.23) -; ("go-github-com-microsoft-go-winio-0.4.17" -; ,go-github-com-microsoft-go-winio-0.4.17))) -; (home-page "https://github.com/containerd/containerd") -; (synopsis "Now Recruiting") -; (description -; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containernetworking-cni-0.8.1 -; (package -; (name "go-github-com-containernetworking-cni") -; (version "0.8.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containernetworking/cni") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ydzsiq6kfwjghf5dd4ld2rv3cxgbjq6c1523jxmib1phwf0s75z")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containernetworking/cni")) -; (home-page "https://github.com/containernetworking/cni") -; (synopsis "CNI - the Container Network Interface") -; (description -; "CNI (), a @url{https://cncf.io,Cloud Native Computing Foundation} project, consists of a specification and libraries for writing plugins to configure network interfaces in Linux containers, along with a number of supported plugins. -;CNI concerns itself only with network connectivity of containers and removing allocated resources when the container is deleted. -;Because of this focus, CNI has a wide range of support and the specification is simple to implement.") -; (license license:asl2.0))) -; -;(define-public go-github-com-microsoft-go-winio-0.4.11 -; (package -; (name "go-github-com-microsoft-go-winio") -; (version "0.4.11") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/microsoft/go-winio") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "14y1gryr3pb3zy09v2g8dh89m363rfd9sch0wgbabh531hfx72vn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/Microsoft/go-winio")) -; (home-page "https://github.com/Microsoft/go-winio") -; (synopsis "go-winio") -; (description -; "This repository contains utilities for efficiently performing Win32 IO operations in -;Go. Currently, this is focused on accessing named pipes and other file handles, and -;for using named pipes as a net transport.") -; (license license:expat))) -; -;(define-public go-github-com-microsoft-hcsshim-0.8.6 -; (package -; (name "go-github-com-microsoft-hcsshim") -; (version "0.8.6") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/microsoft/hcsshim") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "05arx8y4b6rvhjcnwizhc8svzab3ld0njkgj8vijgs27az84z6pw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/Microsoft/hcsshim")) -; (home-page "https://github.com/Microsoft/hcsshim") -; (synopsis "hcsshim") -; (description -; "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") -; (license license:expat))) -; -;(define-public go-github-com-alexflint-go-filemutex-0.0.0-20171022225611-72bdc8eae2ae -; (package -; (name "go-github-com-alexflint-go-filemutex") -; (version "0.0.0-20171022225611-72bdc8eae2ae") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/alexflint/go-filemutex") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "082y6y9zv40q3kaqvsv6fyaw2fc42j0sn9z0dl9rbiz4szixj3c4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/alexflint/go-filemutex")) -; (home-page "https://github.com/alexflint/go-filemutex") -; (synopsis "FileMutex") -; (description -; "FileMutex is similar to @code{sync.RWMutex}, but also synchronizes across processes. -;On Linux, OSX, and other POSIX systems it uses the flock system call. On windows -;it uses the LockFileEx and UnlockFileEx system calls.") -; (license license:expat))) -; -;(define-public go-github-com-buger-jsonparser-0.0.0-20180808090653-f4dd9f5a6b44 -; (package -; (name "go-github-com-buger-jsonparser") -; (version "0.0.0-20180808090653-f4dd9f5a6b44") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/buger/jsonparser") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "12qa2n33s7yz88ywpr3k9kg3b4gm6rqgnv28iyikyxw8h5jascz5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/buger/jsonparser")) -; (home-page "https://github.com/buger/jsonparser") -; (synopsis -; "Alternative JSON parser for Go (10x times faster standard library)") -; (description -; "It does not require you to know the structure of the payload (eg. create structs), and allows accessing fields by providing the path to them. It is up to @strong{10 times faster} than standard @code{encoding/json} package (depending on payload size and usage), @strong{allocates no memory}. See benchmarks below.") -; (license license:expat))) -; -;(define-public go-github-com-containernetworking-cni-0.8.1 -; (package -; (name "go-github-com-containernetworking-cni") -; (version "0.8.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containernetworking/cni") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ydzsiq6kfwjghf5dd4ld2rv3cxgbjq6c1523jxmib1phwf0s75z")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containernetworking/cni")) -; (home-page "https://github.com/containernetworking/cni") -; (synopsis "CNI - the Container Network Interface") -; (description -; "CNI (), a @url{https://cncf.io,Cloud Native Computing Foundation} project, consists of a specification and libraries for writing plugins to configure network interfaces in Linux containers, along with a number of supported plugins. -;CNI concerns itself only with network connectivity of containers and removing allocated resources when the container is deleted. -;Because of this focus, CNI has a wide range of support and the specification is simple to implement.") -; (license license:asl2.0))) -; -;(define-public go-github-com-coreos-go-iptables-0.5.0 -; (package -; (name "go-github-com-coreos-go-iptables") -; (version "0.5.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/coreos/go-iptables") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0syxjad9b3d19sjy7cy7zjpx5bx60yvbhidz8r9cdv43iqadxmp7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/coreos/go-iptables")) -; (home-page "https://github.com/coreos/go-iptables") -; (synopsis "go-iptables") -; (description "Go bindings for iptables utility.") -; (license license:asl2.0))) -; -;(define-public go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7 -; (package -; (name "go-github-com-coreos-go-systemd") -; (version "0.0.0-20180511133405-39ca1b05acc7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/coreos/go-systemd") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1kzqrrzqspa5qm7kwslxl3m16lqzns23c24rv474ajzwmj3ixmx1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/coreos/go-systemd")) -; (home-page "https://github.com/coreos/go-systemd") -; (synopsis "go-systemd") -; (description "Go bindings to systemd. The project has several packages:") -; (license license:asl2.0))) -; -;(define-public go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c -; (package -; (name "go-github-com-d2g-dhcp4") -; (version "0.0.0-20170904100407-a1d1b6c41b1c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/d2g/dhcp4") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "191hzw6yqzkm042h6miyycq3g0zrhqjhhpl27f8vhwzp4wanasiz")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/d2g/dhcp4")) -; (home-page "https://github.com/d2g/dhcp4") -; (synopsis "DHCP4 - A DHCP library written in Go.") -; (description -; "Warning: This library is still being developed. Function calls will change.") -; (license license:bsd-3))) -; -;(define-public go-github-com-d2g-dhcp4client-1.0.0 -; (package -; (name "go-github-com-d2g-dhcp4client") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/d2g/dhcp4client") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1n4qrn7xsgvnshmddq56hr8g2si5vfmxi0wnp0w71lmdfsxvvx0q")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/d2g/dhcp4client")) -; (home-page "https://github.com/d2g/dhcp4client") -; (synopsis "dhcp4client") -; (description "DHCP Client") -; (license license:mpl2.0))) -; -;(define-public go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5 -; (package -; (name "go-github-com-d2g-dhcp4server") -; (version "0.0.0-20181031114812-7d4a0a7f59a5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/d2g/dhcp4server") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "03ibq32flr74pxfly1yca9qicb6f15xgl159jjg3svgnzfjpblwl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/d2g/dhcp4server")) -; (home-page "https://github.com/d2g/dhcp4server") -; (synopsis "dhcp4server") -; (description "DHCP Server") -; (license license:mpl2.0))) -; -;(define-public go-github-com-d2g-hardwareaddr-0.0.0-20190221164911-e7d9fbe030e4 -; (package -; (name "go-github-com-d2g-hardwareaddr") -; (version "0.0.0-20190221164911-e7d9fbe030e4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/d2g/hardwareaddr") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "09nm5py9xbb9klwhzqkf6786i3b59ynba78xkrv9jx4ari7ibh8q")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/d2g/hardwareaddr")) -; (home-page "https://github.com/d2g/hardwareaddr") -; (synopsis "hardwareaddr") -; (description "Generate Hardware Addresses") -; (license license:mpl2.0))) -; -;(define-public go-github-com-godbus-dbus-0.0.0-20180201030542-885f9cc04c9c -; (package -; (name "go-github-com-godbus-dbus") -; (version "0.0.0-20180201030542-885f9cc04c9c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/godbus/dbus") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0wjpaj4vr5lvpnwc5faf3qizd7zd2v9yq0fm0558wap1hiyqb8x8")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/godbus/dbus")) -; (home-page "https://github.com/godbus/dbus") -; (synopsis "dbus") -; (description -; "Package dbus implements bindings to the D-Bus message bus system. -;") -; (license license:bsd-2))) -; -;(define-public go-github-com-j-keck-arping-0.0.0-20160618110441-2cf9dc699c56 -; (package -; (name "go-github-com-j-keck-arping") -; (version "0.0.0-20160618110441-2cf9dc699c56") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/j-keck/arping") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1bid8mpx3j4546ni0a6q5xyz7hb854g95qnxqmg5jzs9vrcird3c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/j-keck/arping")) -; (home-page "https://github.com/j-keck/arping") -; (synopsis "arping") -; (description -; "Package arping is a native go library to ping a host per arp datagram, or query a host mac address -;") -; (license license:expat))) -; -;(define-public go-github-com-mattn-go-shellwords-1.0.3 -; (package -; (name "go-github-com-mattn-go-shellwords") -; (version "1.0.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mattn/go-shellwords") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1pg7pl25wvpl2dbpyrv9p1r7prnqimxlf6136vn0dfm54j2x4mnr")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mattn/go-shellwords")) -; (home-page "https://github.com/mattn/go-shellwords") -; (synopsis "go-shellwords") -; (description "Parse line as shell words.") -; (license license:expat))) -; -;(define-public go-github-com-google-go-cmp-0.3.0 -; (package -; (name "go-github-com-google-go-cmp") -; (version "0.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/go-cmp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1hyxx3434zshl2m9ja78gwlkg1rx9yl6diqa7dnjb31xz5x4gbjj")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/go-cmp")) -; (home-page "https://github.com/google/go-cmp") -; (synopsis "Package for equality of Go values") -; (description -; "This package is intended to be a more powerful and safer alternative to -;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd -; (package -; (name "go-google-golang-org-protobuf") -; (version "0.0.0-20200109180630-ec00e32a8dfd") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0w6lp9w2avxcpxwzzhspr209ifhyjagvs23k0vykfdqahl1aplrh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.3.0" -; ,go-github-com-google-go-cmp-0.3.0))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.4.0-rc.1 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.4.0-rc.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "186rirvbfgv6hrxp27ipx2cdpv19qifdd20biqfdm01wiyclqimn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd" -; ,go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd) -; ("go-github-com-google-go-cmp-0.3.1" -; ,go-github-com-google-go-cmp-0.3.1))) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-github-com-google-go-cmp-0.3.1 -; (package -; (name "go-github-com-google-go-cmp") -; (version "0.3.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/go-cmp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1caw49i0plkjxir7kdf5qhwls3krqwfmi7g4h392rdfwi3kfahx1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/go-cmp")) -; (home-page "https://github.com/google/go-cmp") -; (synopsis "Package for equality of Go values") -; (description -; "This package is intended to be a more powerful and safer alternative to -;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64 -; (package -; (name "go-google-golang-org-protobuf") -; (version "0.0.0-20200221191635-4d8936d0db64") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0563bsvdjj6k0sgwqd5yzrgfiax7sp3lcwh608gync5sv9fx39cy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.3.1" -; ,go-github-com-google-go-cmp-0.3.1) -; ("go-github-com-golang-protobuf-1.4.0-rc.1" -; ,go-github-com-golang-protobuf-1.4.0-rc.1))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.4.0-rc.1.0.20200221234624-67d41d38c208") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ykxhg3zixmw25pd435f8h16wnz1g00jpcmmg3xl030kksgqgpp6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64" -; ,go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0))) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60 -; (package -; (name "go-google-golang-org-protobuf") -; (version "0.0.0-20200228230310-ab0ca4ff8a60") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1rinspcznfp85yz4vrlf4h38hr576virgv8lcs22bsylqga808sd")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208" -; ,go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.4.0-rc.2 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.4.0-rc.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1hd43hjv5zl6bjbmhm5phx74bw4xajsi73m5zky2k56za4mpgzzc")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60" -; ,go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0))) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967 -; (package -; (name "go-google-golang-org-protobuf") -; (version "1.20.1-0.20200309200217-e05f789c0967") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "17wmy89hnmpkwc63rfcjp50q15s9f1rhmczg06c3z9yy41zk82w9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.4.0-rc.2" -; ,go-github-com-golang-protobuf-1.4.0-rc.2))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.4.0-rc.4.0.20200313231945-b860323f09d0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1zj6cwshx0l5n9cn2cpbikzzb79px5dmkpc4p19zy1iif5r5p0z0")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967" -; ,go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0))) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-1.21.0 -; (package -; (name "go-google-golang-org-protobuf") -; (version "1.21.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "12bwln8z1lf9105gdp6ip0rx741i4yfz1520gxnp8861lh9wcl63")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0" -; ,go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.4.0 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1fjvl5n77abxz5qsd4mgyvjq19x43c5bfvmq62mq3m5plx6zksc8")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.21.0" -; ,go-google-golang-org-protobuf-1.21.0) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0))) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-github-com-google-go-cmp-0.4.0 -; (package -; (name "go-github-com-google-go-cmp") -; (version "0.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/go-cmp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1x5pvl3fb5sbyng7i34431xycnhmx8xx94gq2n19g6p0vz68z2v2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/go-cmp")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" -; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) -; (home-page "https://github.com/google/go-cmp") -; (synopsis "Package for equality of Go values") -; (description -; "This package is intended to be a more powerful and safer alternative to -;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-1.23.0 -; (package -; (name "go-google-golang-org-protobuf") -; (version "1.23.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "03yan0m1v0zmlr935p4n24fd376mznsg85zy8sywbgisls4s1bzy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.4.0" -; ,go-github-com-golang-protobuf-1.4.0))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.4.2 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.4.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0m5z81im4nsyfgarjhppayk4hqnrwswr3nix9mj8pff8x9jvcjqw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.23.0" -; ,go-google-golang-org-protobuf-1.23.0) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0))) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190904154756-749cb33beabd -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190904154756-749cb33beabd") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0dm3257q3rv2kyn5lmqqim2fqg634v6rhrqq4glvbk4wx4l3v337")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-nxadm-tail-1.4.4 -; (package -; (name "go-github-com-nxadm-tail") -; (version "1.4.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/nxadm/tail") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1czmwqii0fc8v3ar5bwqpfanprkxg19waly405zlvcflzvj53wwc")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/nxadm/tail")) -; (propagated-inputs -; `(("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" -; ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) -; ("go-golang-org-x-sys-0.0.0-20190904154756-749cb33beabd" -; ,go-golang-org-x-sys-0.0.0-20190904154756-749cb33beabd) -; ("go-github-com-fsnotify-fsnotify-1.4.7" -; ,go-github-com-fsnotify-fsnotify-1.4.7))) -; (home-page "https://github.com/nxadm/tail") -; (synopsis "tail functionality in Go") -; (description -; "nxadm/tail provides a Go library that emulates the features of the BSD `tail` -;program. The library comes with full support for truncation/move detection as -;it is designed to work with log rotation tools. The library works on all -;operating systems supported by Go, including POSIX systems like Linux and -;*BSD, and MS Windows. Go 1.9 is the oldest compiler release supported. -;") -; (license license:expat))) -; -;(define-public go-github-com-fsnotify-fsnotify-1.4.7 -; (package -; (name "go-github-com-fsnotify-fsnotify") -; (version "1.4.7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/fsnotify/fsnotify") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/fsnotify/fsnotify")) -; (home-page "https://github.com/fsnotify/fsnotify") -; (synopsis "File system notifications for Go") -; (description -; "Package fsnotify provides a platform-independent interface for file system notifications. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.2.0 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0kf4b59rcbb1cchfny2dm9jyznp8ri2hsb14n8iak1q8986xa0ab")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-github-com-hpcloud-tail-1.0.0 -; (package -; (name "go-github-com-hpcloud-tail") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hpcloud/tail") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1njpzc0pi1acg5zx9y6vj9xi6ksbsc5d387rd6904hy6rh2m6kn0")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hpcloud/tail")) -; (home-page "https://github.com/hpcloud/tail") -; (synopsis "Go package for tail-ing files") -; (description -; "This package provides a Go package striving to emulate the features of the BSD @code{tail} program.") -; (license license:expat))) -; -;(define-public go-github-com-onsi-ginkgo-1.6.0 -; (package -; (name "go-github-com-onsi-ginkgo") -; (version "1.6.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/onsi/ginkgo") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0x0gc89vgq38xhgmi2h22bhr73cf2gmk42g89nz89k8dgg9hhr25")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/onsi/ginkgo")) -; (home-page "https://github.com/onsi/ginkgo") -; (synopsis "Ginkgo 2.0 Release Candidate is available!") -; (description "Ginkgo is a BDD-style testing framework for Golang -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20180906233101-161cd47e91fd") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0254ld010iijygbzykib2vags1dc0wlmcmhgh4jl8iny159lhbcv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f -; (package -; (name "go-golang-org-x-sync") -; (version "0.0.0-20180314180146-1d60e4601c6f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sync") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "046jlanz2lkxq1r57x9bl6s4cvfqaic6p2xybsj8mq1120jv4rs6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sync")) -; (home-page "https://golang.org/x/sync") -; (synopsis "Go Sync") -; (description -; "This repository provides Go concurrency primitives in addition to the -;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20180909124046-d0be0721c37e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "081wyvfnlf842dqg03raxfz6lldlxpmyh1prix9lmrrm65arxb12")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-gopkg-in-fsnotify-v1-1.4.7 -; (package -; (name "go-gopkg-in-fsnotify-v1") -; (version "1.4.7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/fsnotify.v1") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path -; "gopkg.in/fsnotify.v1" -; #:unpack-path -; "gopkg.in/fsnotify.v1")) -; (home-page "https://gopkg.in/fsnotify.v1") -; (synopsis "File system notifications for Go") -; (description -; "Package fsnotify provides a platform-independent interface for file system notifications. -;") -; (license license:bsd-3))) -; -;(define-public go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7 -; (package -; (name "go-gopkg-in-tomb-v1") -; (version "1.0.0-20141024135613-dd632973f1e7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/tomb.v1") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1lqmq1ag7s4b3gc3ddvr792c5xb5k6sfn0cchr3i2s7f1c231zjv")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/tomb.v1" #:unpack-path "gopkg.in/tomb.v1")) -; (home-page "https://gopkg.in/tomb.v1") -; (synopsis "Installation and usage") -; (description -; "The tomb package offers a conventional API for clean goroutine termination. -;") -; (license license:bsd-3))) -; -;(define-public go-gopkg-in-yaml-v2-2.2.4 -; (package -; (name "go-gopkg-in-yaml-v2") -; (version "2.2.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/yaml.v2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "11bwj757wi8kdrcnlgfqb8vv2d2xdhlghmyagd19i62khrkchsg2")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" -; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) -; (home-page "https://gopkg.in/yaml.v2") -; (synopsis "YAML support for the Go language") -; (description "Package yaml implements YAML support for the Go language. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-onsi-gomega-1.7.1 -; (package -; (name "go-github-com-onsi-gomega") -; (version "1.7.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/onsi/gomega") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "06p3x0910cdaa64l7d44s728d4j3yhps315dlcvrbjzhljjj7mam")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/onsi/gomega")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.2.4" ,go-gopkg-in-yaml-v2-2.2.4) -; ("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" -; ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) -; ("go-gopkg-in-fsnotify-v1-1.4.7" ,go-gopkg-in-fsnotify-v1-1.4.7) -; ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e" -; ,go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e) -; ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" -; ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) -; ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" -; ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) -; ("go-github-com-onsi-ginkgo-1.6.0" ,go-github-com-onsi-ginkgo-1.6.0) -; ("go-github-com-hpcloud-tail-1.0.0" ,go-github-com-hpcloud-tail-1.0.0) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0) -; ("go-github-com-fsnotify-fsnotify-1.4.7" -; ,go-github-com-fsnotify-fsnotify-1.4.7))) -; (home-page "https://github.com/onsi/gomega") -; (synopsis ": a BDD Testing Framework for Golang") -; (description -; "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20191120155948-bd437916bb0e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1i8x26frmlin55k69k936zd1rp5sqnq14y5ms4rkxbfzhasdm2rx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-onsi-ginkgo-1.12.1 -; (package -; (name "go-github-com-onsi-ginkgo") -; (version "1.12.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/onsi/ginkgo") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0xs9724l2b0bwjwrvw5cs3akxaw0n1j5kyxrb1ggfsdjz0zmjcxh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/onsi/ginkgo")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e" -; ,go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e) -; ("go-github-com-onsi-gomega-1.7.1" ,go-github-com-onsi-gomega-1.7.1) -; ("go-github-com-nxadm-tail-1.4.4" ,go-github-com-nxadm-tail-1.4.4))) -; (home-page "https://github.com/onsi/ginkgo") -; (synopsis "Ginkgo 2.0 Release Candidate is available!") -; (description "Ginkgo is a BDD-style testing framework for Golang -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190215142949-d0b11bdaac8a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20190308221718-c2843e01d9a2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-text-0.3.0 -; (package -; (name "go-golang-org-x-text") -; (version "0.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/text") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/text")) -; (home-page "https://golang.org/x/text") -; (synopsis "Go Text") -; (description -; "text is a repository of text-related packages related to internationalization -;(i18n) and localization (l10n), such as character encodings, text -;transformations, and locale-specific text handling. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20190404232315-eb5bcb51f2a3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "17k4g8krxbl84gzcs275b7gsh66dzm15fdxivjnx9xz8q84l4kby")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190412213103-97732733099d -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190412213103-97732733099d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "118hkp01i4z1f5h6hcjm0ff2ngqhrzj1f7731n0kw8dr6hvbx0sw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20200622213623-75b288015ac9") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "18vlncvvs11ds3zaaziqjlg5s2vcwi3496nn6qv7p0dp94j5pwa2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" -; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) -; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" -; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20200930185726-fdedc70b468f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1njlfhjbvi4lxvjbq8zswrb0y0q4jd2p6x51h1q6vmyzi9af6869")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20180917221912-90fa682c2a6e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-text-0.3.3 -; (package -; (name "go-golang-org-x-text") -; (version "0.3.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/text") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "19pihqm3phyndmiw6i42pdv6z1rbvlqlsnhsyqf9gsnn0qnmqqlh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/text")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" -; ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) -; (home-page "https://golang.org/x/text") -; (synopsis "Go Text") -; (description -; "text is a repository of text-related packages related to internationalization -;(i18n) and localization (l10n), such as character encodings, text -;transformations, and locale-specific text handling. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20201006153459-a7d1128ccaa0 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20201006153459-a7d1128ccaa0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1iqqq7s95b2a29bspfxv68qnby8vwjvy9f8gl2262p6f9hhp21d2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) -; ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" -; ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) -; ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" -; ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543 -; (package -; (name "go-golang-org-x-xerrors") -; (version "0.0.0-20191204190536-9bdfabe68543") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/xerrors") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1yjfi1bk9xb81lqn85nnm13zz725wazvrx3b50hx19qmwg7a4b0c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/xerrors")) -; (home-page "https://golang.org/x/xerrors") -; (synopsis #f) -; (description -; "Package xerrors implements functions to manipulate errors. -;") -; (license license:bsd-3))) -; -;(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 -; (package -; (name "go-gopkg-in-check-v1") -; (version "0.0.0-20161208181325-20d25e280405") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/check.v1") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) -; (home-page "https://gopkg.in/check.v1") -; (synopsis "Instructions") -; (description -; "Package check is a rich testing extension for Go's testing package. -;") -; (license license:bsd-2))) -; -;(define-public go-gopkg-in-yaml-v2-2.3.0 -; (package -; (name "go-gopkg-in-yaml-v2") -; (version "2.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/yaml.v2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1md0hlyd9s6myv3663i9l59y74n4xjazifmmyxn43g86fgkc5lzj")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" -; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) -; (home-page "https://gopkg.in/yaml.v2") -; (synopsis "YAML support for the Go language") -; (description "Package yaml implements YAML support for the Go language. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-onsi-gomega-1.10.3 -; (package -; (name "go-github-com-onsi-gomega") -; (version "1.10.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/onsi/gomega") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1jvp5wlny86ncsqak5rz70qfn61y3ajc64w0hrj4840zgh90zb06")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/onsi/gomega")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.3.0" ,go-gopkg-in-yaml-v2-2.3.0) -; ("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" -; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) -; ("go-golang-org-x-net-0.0.0-20201006153459-a7d1128ccaa0" -; ,go-golang-org-x-net-0.0.0-20201006153459-a7d1128ccaa0) -; ("go-github-com-onsi-ginkgo-1.12.1" ,go-github-com-onsi-ginkgo-1.12.1) -; ("go-github-com-golang-protobuf-1.4.2" -; ,go-github-com-golang-protobuf-1.4.2))) -; (home-page "https://github.com/onsi/gomega") -; (synopsis ": a BDD Testing Framework for Golang") -; (description -; "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library. -;") -; (license license:expat))) -; -;(define-public go-github-com-safchain-ethtool-0.0.0-20190326074333-42ed695e3de8 -; (package -; (name "go-github-com-safchain-ethtool") -; (version "0.0.0-20190326074333-42ed695e3de8") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/safchain/ethtool") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0n5hkrzc1bh46nidcssx4539kvcmgj501v3kzh2pljpg27509daj")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/safchain/ethtool")) -; (home-page "https://github.com/safchain/ethtool") -; (synopsis "ethtool go package") -; (description -; "Package ethtool aims to provide a library giving a simple access to the -;Linux SIOCETHTOOL ioctl operations. It can be used to retrieve informations -;from a network device like statistics, driver related informations or -;even the peer of a VETH interface. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-sirupsen-logrus-1.0.6 -; (package -; (name "go-github-com-sirupsen-logrus") -; (version "1.0.6") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/sirupsen/logrus") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "029irw2lsbqi944gdrbkwdw0m2794sqni4g21gsnmz142hbzds8c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/sirupsen/logrus")) -; (home-page "https://github.com/sirupsen/logrus") -; (synopsis "Logrus") -; (description -; "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. -;") -; (license license:expat))) -; -;(define-public go-github-com-davecgh-go-spew-1.1.0 -; (package -; (name "go-github-com-davecgh-go-spew") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/davecgh/go-spew") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/davecgh/go-spew")) -; (home-page "https://github.com/davecgh/go-spew") -; (synopsis "go-spew") -; (description -; "Go-spew implements a deep pretty printer for Go data structures to aid in -;debugging. A comprehensive suite of tests with 100% test coverage is provided -;to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage -;report. Go-spew is licensed under the liberal ISC license, so it may be used in -;open source or commercial projects.") -; (license license:isc))) -; -;(define-public go-github-com-pmezard-go-difflib-1.0.0 -; (package -; (name "go-github-com-pmezard-go-difflib") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/pmezard/go-difflib") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/pmezard/go-difflib")) -; (home-page "https://github.com/pmezard/go-difflib") -; (synopsis "go-difflib") -; (description -; "Go-difflib is a partial port of python 3 difflib package. Its main goal -;was to make unified and context diff available in pure Go, mostly for -;testing purposes.") -; (license license:bsd-3))) -; -;(define-public go-github-com-stretchr-objx-0.1.0 -; (package -; (name "go-github-com-stretchr-objx") -; (version "0.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/objx") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/objx")) -; (home-page "https://github.com/stretchr/objx") -; (synopsis "Objx") -; (description -; "Objx - Go package for dealing with maps, slices, JSON and other data. -;") -; (license license:expat))) -; -;(define-public go-github-com-stretchr-testify-1.3.0 -; (package -; (name "go-github-com-stretchr-testify") -; (version "1.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/testify") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0wjchp2c8xbgcbbq32w3kvblk6q6yn533g78nxl6iskq6y95lxsy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/testify")) -; (propagated-inputs -; `(("go-github-com-stretchr-objx-0.1.0" -; ,go-github-com-stretchr-objx-0.1.0) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-davecgh-go-spew-1.1.0" -; ,go-github-com-davecgh-go-spew-1.1.0))) -; (home-page "https://github.com/stretchr/testify") -; (synopsis "Testify - Thou Shalt Write Tests") -; (description -; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-sys-0.0.0-20200217220822-9197077df867 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20200217220822-9197077df867") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1270yyiqzlgrsygp2j0qavh4agm4xjv3ljfpk4wgqgmg4ph1lmx1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-vishvananda-netns-0.0.0-20200728191858-db3c7e526aae -; (package -; (name "go-github-com-vishvananda-netns") -; (version "0.0.0-20200728191858-db3c7e526aae") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/vishvananda/netns") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1gx41r06by67q5yyyvjpr0cyqqs2pcksfaqxy0s36cx4vpjn5x9r")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/vishvananda/netns")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20200217220822-9197077df867" -; ,go-golang-org-x-sys-0.0.0-20200217220822-9197077df867))) -; (home-page "https://github.com/vishvananda/netns") -; (synopsis "netns - network namespaces in go") -; (description -; "Package netns allows ultra-simple network namespace handling. NsHandles -;can be retrieved and set. Note that the current namespace is thread -;local so actions that set and reset namespaces should use LockOSThread -;to make sure the namespace doesn't change due to a goroutine switch. -;It is best to close NsHandles when you are done with them. This can be -;accomplished via a `defer ns.Close()` on the handle. Changing namespaces -;requires elevated privileges, so in most cases this code needs to be run -;as root. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-sys-0.0.0-20200728102440-3e129f6d46b1 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20200728102440-3e129f6d46b1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "02wcaghvpysqijiqsiimk52vma7lx99g5kvdid2r1qsf9hmwgvy2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-vishvananda-netlink-1.1.1-0.20201029203352-d40f9887b852 -; (package -; (name "go-github-com-vishvananda-netlink") -; (version "1.1.1-0.20201029203352-d40f9887b852") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/vishvananda/netlink") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1aq13npm7vd153vxrk1vhsg36r2g9hrh21cvk422ssrf57qy2fsj")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/vishvananda/netlink")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20200728102440-3e129f6d46b1" -; ,go-golang-org-x-sys-0.0.0-20200728102440-3e129f6d46b1) -; ("go-github-com-vishvananda-netns-0.0.0-20200728191858-db3c7e526aae" -; ,go-github-com-vishvananda-netns-0.0.0-20200728191858-db3c7e526aae))) -; (home-page "https://github.com/vishvananda/netlink") -; (synopsis "netlink - netlink library for go") -; (description -; "Package netlink provides a simple library for netlink. Netlink is -;the interface a user-space program in linux uses to communicate with -;the kernel. It can be used to add and remove interfaces, set up ip -;addresses and routes, and confiugre ipsec. Netlink communication -;requires elevated privileges, so in most cases this code needs to -;be run as root. The low level primitives for netlink are contained -;in the nl subpackage. This package attempts to provide a high-level -;interface that is loosly modeled on the iproute2 cli. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-sys-0.0.0-20201117170446-d9b008d0a637 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20201117170446-d9b008d0a637") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "06pp1nrhzx6nm6rwwzm0xzf8bs3r1mfsrkclyhlhnr7x5r0a0ppi")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-gopkg-in-airbrake-gobrake-v2-2.0.9 -; (package -; (name "go-gopkg-in-airbrake-gobrake-v2") -; (version "2.0.9") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/airbrake/gobrake.v2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1x06f7n7qlyzqgyz0sdfcidf3w4ldn6zs6qx2mhibggk2z4whcjw")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path -; "gopkg.in/airbrake/gobrake.v2" -; #:unpack-path -; "gopkg.in/airbrake/gobrake.v2")) -; (home-page "https://gopkg.in/airbrake/gobrake.v2") -; (synopsis "Airbrake Golang Notifier") -; (description -; "You can use @url{https://github.com/airbrake/glog,glog fork} to send your logs to Airbrake.") -; (license license:bsd-3))) -; -;(define-public go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2 -; (package -; (name "go-gopkg-in-gemnasium-logrus-airbrake-hook-v2") -; (version "2.1.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/gemnasium/logrus-airbrake-hook.v2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0sbg0dn6cysmf8f2bi209jwl4jnpiwp4rdghnxlzirw3c32ms5y5")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path -; "gopkg.in/gemnasium/logrus-airbrake-hook.v2" -; #:unpack-path -; "gopkg.in/gemnasium/logrus-airbrake-hook.v2")) -; (home-page "https://gopkg.in/gemnasium/logrus-airbrake-hook.v2") -; (synopsis "Airbrake Hook for Logrus") -; (description -; "Use this hook to send your errors to @url{https://airbrake.io/,Airbrake}. -;This hook is using the @url{https://github.com/airbrake/gobrake,official airbrake go package}, and will hit the api V3. -;The hook is synchronous and will send the error for @code{log.Error}, @code{log.Fatal} and @code{log.Panic} levels.") -; (license license:expat))) -; -;(define-public go-github-com-containernetworking-plugins-0.9.1 -; (package -; (name "go-github-com-containernetworking-plugins") -; (version "0.9.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containernetworking/plugins") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "17rafngfa9b0ybs3j4lvjjqdva6jkamhnbb1n0qnv685g0asvqwz")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containernetworking/plugins")) -; (propagated-inputs -; `(("go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2" -; ,go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2) -; ("go-gopkg-in-airbrake-gobrake-v2-2.0.9" -; ,go-gopkg-in-airbrake-gobrake-v2-2.0.9) -; ("go-golang-org-x-sys-0.0.0-20201117170446-d9b008d0a637" -; ,go-golang-org-x-sys-0.0.0-20201117170446-d9b008d0a637) -; ("go-github-com-vishvananda-netlink-1.1.1-0.20201029203352-d40f9887b852" -; ,go-github-com-vishvananda-netlink-1.1.1-0.20201029203352-d40f9887b852) -; ("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0) -; ("go-github-com-sirupsen-logrus-1.0.6" -; ,go-github-com-sirupsen-logrus-1.0.6) -; ("go-github-com-safchain-ethtool-0.0.0-20190326074333-42ed695e3de8" -; ,go-github-com-safchain-ethtool-0.0.0-20190326074333-42ed695e3de8) -; ("go-github-com-onsi-gomega-1.10.3" ,go-github-com-onsi-gomega-1.10.3) -; ("go-github-com-onsi-ginkgo-1.12.1" ,go-github-com-onsi-ginkgo-1.12.1) -; ("go-github-com-mattn-go-shellwords-1.0.3" -; ,go-github-com-mattn-go-shellwords-1.0.3) -; ("go-github-com-j-keck-arping-0.0.0-20160618110441-2cf9dc699c56" -; ,go-github-com-j-keck-arping-0.0.0-20160618110441-2cf9dc699c56) -; ("go-github-com-godbus-dbus-0.0.0-20180201030542-885f9cc04c9c" -; ,go-github-com-godbus-dbus-0.0.0-20180201030542-885f9cc04c9c) -; ("go-github-com-d2g-hardwareaddr-0.0.0-20190221164911-e7d9fbe030e4" -; ,go-github-com-d2g-hardwareaddr-0.0.0-20190221164911-e7d9fbe030e4) -; ("go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5" -; ,go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5) -; ("go-github-com-d2g-dhcp4client-1.0.0" -; ,go-github-com-d2g-dhcp4client-1.0.0) -; ("go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c" -; ,go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c) -; ("go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7" -; ,go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7) -; ("go-github-com-coreos-go-iptables-0.5.0" -; ,go-github-com-coreos-go-iptables-0.5.0) -; ("go-github-com-containernetworking-cni-0.8.1" -; ,go-github-com-containernetworking-cni-0.8.1) -; ("go-github-com-buger-jsonparser-0.0.0-20180808090653-f4dd9f5a6b44" -; ,go-github-com-buger-jsonparser-0.0.0-20180808090653-f4dd9f5a6b44) -; ("go-github-com-alexflint-go-filemutex-0.0.0-20171022225611-72bdc8eae2ae" -; ,go-github-com-alexflint-go-filemutex-0.0.0-20171022225611-72bdc8eae2ae) -; ("go-github-com-microsoft-hcsshim-0.8.6" -; ,go-github-com-microsoft-hcsshim-0.8.6) -; ("go-github-com-microsoft-go-winio-0.4.11" -; ,go-github-com-microsoft-go-winio-0.4.11))) -; (home-page "https://github.com/containernetworking/plugins") -; (synopsis "Plugins") -; (description -; "Some CNI network plugins, maintained by the containernetworking team. For more information, see the @url{https://www.cni.dev,CNI website}.") -; (license license:asl2.0))) -; -;(define-public go-github-com-14rcole-gopopulate-0.0.0-20180821133914-b175b219e774 -; (package -; (name "go-github-com-14rcole-gopopulate") -; (version "0.0.0-20180821133914-b175b219e774") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/14rcole/gopopulate") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0rrrwsmjvkswn3mrdm03q53sl6r9y00galv83lcm7b789m9a6abf")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/14rcole/gopopulate")) -; (home-page "https://github.com/14rcole/gopopulate") -; (synopsis "gopopulate") -; (description #f) -; (license license:expat))) -; -;(define-public go-github-com-containerd-containerd-1.5.1 -; (package -; (name "go-github-com-containerd-containerd") -; (version "1.5.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/containerd") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1mbdk7c1drl14wzxykh6h3hxd5d9xxgdslp9634yj9pwi5wkx3n3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/containerd")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) -; ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) -; ("go-github-com-golang-protobuf-1.3.5" -; ,go-github-com-golang-protobuf-1.3.5) -; ("go-github-com-gogo-googleapis-1.3.2" -; ,go-github-com-gogo-googleapis-1.3.2) -; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" -; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) -; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) -; ("go-k8s-io-cri-api-0.20.6" ,go-k8s-io-cri-api-0.20.6) -; ("go-k8s-io-component-base-0.20.6" ,go-k8s-io-component-base-0.20.6) -; ("go-k8s-io-client-go-0.20.6" ,go-k8s-io-client-go-0.20.6) -; ("go-k8s-io-apiserver-0.20.6" ,go-k8s-io-apiserver-0.20.6) -; ("go-k8s-io-apimachinery-0.20.6" ,go-k8s-io-apimachinery-0.20.6) -; ("go-k8s-io-api-0.20.6" ,go-k8s-io-api-0.20.6) -; ("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) -; ("go-golang-org-x-sys-0.0.0-20210324051608-47abb6519492" -; ,go-golang-org-x-sys-0.0.0-20210324051608-47abb6519492) -; ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" -; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) -; ("go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110" -; ,go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110) -; ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) -; ("go-github-com-tchap-go-patricia-2.2.6+incompatible" -; ,go-github-com-tchap-go-patricia-2.2.6+incompatible) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-sirupsen-logrus-1.7.0" -; ,go-github-com-sirupsen-logrus-1.7.0) -; ("go-github-com-satori-go-uuid-1.2.0" -; ,go-github-com-satori-go-uuid-1.2.0) -; ("go-github-com-prometheus-procfs-0.6.0" -; ,go-github-com-prometheus-procfs-0.6.0) -; ("go-github-com-prometheus-client-golang-1.7.1" -; ,go-github-com-prometheus-client-golang-1.7.1) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-pelletier-go-toml-1.8.1" -; ,go-github-com-pelletier-go-toml-1.8.1) -; ("go-github-com-opencontainers-selinux-1.8.0" -; ,go-github-com-opencontainers-selinux-1.8.0) -; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" -; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) -; ("go-github-com-opencontainers-runc-1.0.0-rc93" -; ,go-github-com-opencontainers-runc-1.0.0-rc93) -; ("go-github-com-opencontainers-image-spec-1.0.1" -; ,go-github-com-opencontainers-image-spec-1.0.1) -; ("go-github-com-opencontainers-go-digest-1.0.0" -; ,go-github-com-opencontainers-go-digest-1.0.0) -; ("go-github-com-moby-sys-symlink-0.1.0" -; ,go-github-com-moby-sys-symlink-0.1.0) -; ("go-github-com-moby-sys-mountinfo-0.4.1" -; ,go-github-com-moby-sys-mountinfo-0.4.1) -; ("go-github-com-moby-locker-1.0.1" ,go-github-com-moby-locker-1.0.1) -; ("go-github-com-klauspost-compress-1.11.13" -; ,go-github-com-klauspost-compress-1.11.13) -; ("go-github-com-imdario-mergo-0.3.11" -; ,go-github-com-imdario-mergo-0.3.11) -; ("go-github-com-hashicorp-go-multierror-1.0.0" -; ,go-github-com-hashicorp-go-multierror-1.0.0) -; ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" -; ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) -; ("go-github-com-google-uuid-1.2.0" ,go-github-com-google-uuid-1.2.0) -; ("go-github-com-google-go-cmp-0.5.4" -; ,go-github-com-google-go-cmp-0.5.4) -; ("go-github-com-gogo-protobuf-1.3.2" -; ,go-github-com-gogo-protobuf-1.3.2) -; ("go-github-com-fsnotify-fsnotify-1.4.9" -; ,go-github-com-fsnotify-fsnotify-1.4.9) -; ("go-github-com-emicklei-go-restful-2.9.5+incompatible" -; ,go-github-com-emicklei-go-restful-2.9.5+incompatible) -; ("go-github-com-docker-go-units-0.4.0" -; ,go-github-com-docker-go-units-0.4.0) -; ("go-github-com-docker-go-metrics-0.0.1" -; ,go-github-com-docker-go-metrics-0.0.1) -; ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" -; ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1) -; ("go-github-com-coreos-go-systemd-v22-22.1.0" -; ,go-github-com-coreos-go-systemd-v22-22.1.0) -; ("go-github-com-containernetworking-plugins-0.9.1" -; ,go-github-com-containernetworking-plugins-0.9.1) -; ("go-github-com-containerd-zfs-1.0.0" -; ,go-github-com-containerd-zfs-1.0.0) -; ("go-github-com-containerd-typeurl-1.0.2" -; ,go-github-com-containerd-typeurl-1.0.2) -; ("go-github-com-containerd-ttrpc-1.0.2" -; ,go-github-com-containerd-ttrpc-1.0.2) -; ("go-github-com-containerd-nri-0.1.0" -; ,go-github-com-containerd-nri-0.1.0) -; ("go-github-com-containerd-imgcrypt-1.1.1" -; ,go-github-com-containerd-imgcrypt-1.1.1) -; ("go-github-com-containerd-go-runc-1.0.0" -; ,go-github-com-containerd-go-runc-1.0.0) -; ("go-github-com-containerd-go-cni-1.0.2" -; ,go-github-com-containerd-go-cni-1.0.2) -; ("go-github-com-containerd-fifo-1.0.0" -; ,go-github-com-containerd-fifo-1.0.0) -; ("go-github-com-containerd-continuity-0.1.0" -; ,go-github-com-containerd-continuity-0.1.0) -; ("go-github-com-containerd-console-1.0.2" -; ,go-github-com-containerd-console-1.0.2) -; ("go-github-com-containerd-cgroups-1.0.1" -; ,go-github-com-containerd-cgroups-1.0.1) -; ("go-github-com-containerd-btrfs-1.0.0" -; ,go-github-com-containerd-btrfs-1.0.0) -; ("go-github-com-containerd-aufs-1.0.0" -; ,go-github-com-containerd-aufs-1.0.0) -; ("go-github-com-microsoft-hcsshim-0.8.16" -; ,go-github-com-microsoft-hcsshim-0.8.16) -; ("go-github-com-microsoft-go-winio-0.4.17" -; ,go-github-com-microsoft-go-winio-0.4.17))) -; (home-page "https://github.com/containerd/containerd") -; (synopsis "Now Recruiting") -; (description -; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") -; (license license:asl2.0))) -; -;(define-public go-github-com-microsoft-hcsshim-0.8.21 -; (package -; (name "go-github-com-microsoft-hcsshim") -; (version "0.8.21") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/microsoft/hcsshim") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1z0imk1nr6h6smi3r5fr7zl54k1wzbkgwff6jijg0zr2m3lqp051")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/Microsoft/hcsshim")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) -; ("go-golang-org-x-sys-0.0.0-20210324051608-47abb6519492" -; ,go-golang-org-x-sys-0.0.0-20210324051608-47abb6519492) -; ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" -; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) -; ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) -; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) -; ("go-github-com-sirupsen-logrus-1.7.0" -; ,go-github-com-sirupsen-logrus-1.7.0) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" -; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) -; ("go-github-com-gogo-protobuf-1.3.2" -; ,go-github-com-gogo-protobuf-1.3.2) -; ("go-github-com-containerd-typeurl-1.0.2" -; ,go-github-com-containerd-typeurl-1.0.2) -; ("go-github-com-containerd-ttrpc-1.0.2" -; ,go-github-com-containerd-ttrpc-1.0.2) -; ("go-github-com-containerd-go-runc-1.0.0" -; ,go-github-com-containerd-go-runc-1.0.0) -; ("go-github-com-containerd-containerd-1.5.1" -; ,go-github-com-containerd-containerd-1.5.1) -; ("go-github-com-containerd-console-1.0.2" -; ,go-github-com-containerd-console-1.0.2) -; ("go-github-com-containerd-cgroups-1.0.1" -; ,go-github-com-containerd-cgroups-1.0.1) -; ("go-github-com-microsoft-go-winio-0.4.17" -; ,go-github-com-microsoft-go-winio-0.4.17))) -; (home-page "https://github.com/Microsoft/hcsshim") -; (synopsis "hcsshim") -; (description -; "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") -; (license license:expat))) -; -;(define-public go-github-com-containerd-aufs-1.0.0 -; (package -; (name "go-github-com-containerd-aufs") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/aufs") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0jyyyf6sr910m602axmp4h4j1l2n680cpp60z09pvprz55zi4ba0")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/aufs")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" -; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" -; ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) -; ("go-github-com-containerd-containerd-1.5.0-beta.3" -; ,go-github-com-containerd-containerd-1.5.0-beta.3))) -; (home-page "https://github.com/containerd/aufs") -; (synopsis "aufs snapshotter") -; (description -; "AUFS implementation of the snapshot interface for containerd.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-btrfs-1.0.0 -; (package -; (name "go-github-com-containerd-btrfs") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/btrfs") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1yf38gg41y1v12m0cl81r9q7d13170a4npzqxhbz7qn32zr23kzn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/btrfs")) -; (propagated-inputs -; `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) -; (home-page "https://github.com/containerd/btrfs") -; (synopsis "go-btrfs") -; (description -; "Package btrfs provides bindings for working with btrfs partitions from Go. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-go-cni-1.0.2 -; (package -; (name "go-github-com-containerd-go-cni") -; (version "1.0.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/go-cni") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1hqwy402qy04slz2vj05s517mhdbmmkdjs6nhfnk184a730whgv6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/go-cni")) -; (propagated-inputs -; `(("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-onsi-gomega-1.7.1" ,go-github-com-onsi-gomega-1.7.1) -; ("go-github-com-onsi-ginkgo-1.10.3" ,go-github-com-onsi-ginkgo-1.10.3) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1) -; ("go-github-com-containernetworking-cni-0.8.0" -; ,go-github-com-containernetworking-cni-0.8.0))) -; (home-page "https://github.com/containerd/go-cni") -; (synopsis "go-cni") -; (description -; "This package provides a generic CNI library to provide APIs for CNI plugin interactions. The library provides APIs to:") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-zfs-0.0.0-20210315114300-dde8f0fda960 -; (package -; (name "go-github-com-containerd-zfs") -; (version "0.0.0-20210315114300-dde8f0fda960") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/zfs") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ag5p2vqzdavq66wb1z42yw5jzrncsi97g8qk2x9nq51z1nj8rdi")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/zfs")) -; (propagated-inputs -; `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible" -; ,go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible) -; ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" -; ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) -; ("go-github-com-containerd-containerd-1.5.0-beta.3" -; ,go-github-com-containerd-containerd-1.5.0-beta.3))) -; (home-page "https://github.com/containerd/zfs") -; (synopsis "ZFS snapshotter plugin") -; (description "ZFS snapshotter plugin for containerd.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-containerd-1.5.0-beta.4 -; (package -; (name "go-github-com-containerd-containerd") -; (version "1.5.0-beta.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/containerd") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "039c26mjq8qs1s4kbx76fc99wnmnx165bqn16b2b9gyvxcphs7iv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/containerd")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) -; ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) -; ("go-github-com-golang-protobuf-1.3.5" -; ,go-github-com-golang-protobuf-1.3.5) -; ("go-github-com-gogo-googleapis-1.3.2" -; ,go-github-com-gogo-googleapis-1.3.2) -; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" -; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) -; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) -; ("go-k8s-io-cri-api-0.20.1" ,go-k8s-io-cri-api-0.20.1) -; ("go-k8s-io-component-base-0.20.1" ,go-k8s-io-component-base-0.20.1) -; ("go-k8s-io-client-go-0.20.1" ,go-k8s-io-client-go-0.20.1) -; ("go-k8s-io-apiserver-0.20.1" ,go-k8s-io-apiserver-0.20.1) -; ("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) -; ("go-k8s-io-api-0.20.1" ,go-k8s-io-api-0.20.1) -; ("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) -; ("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" -; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) -; ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" -; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) -; ("go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b" -; ,go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b) -; ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) -; ("go-github-com-tchap-go-patricia-2.2.6+incompatible" -; ,go-github-com-tchap-go-patricia-2.2.6+incompatible) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-sirupsen-logrus-1.7.0" -; ,go-github-com-sirupsen-logrus-1.7.0) -; ("go-github-com-prometheus-client-golang-1.7.1" -; ,go-github-com-prometheus-client-golang-1.7.1) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-selinux-1.8.0" -; ,go-github-com-opencontainers-selinux-1.8.0) -; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" -; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) -; ("go-github-com-opencontainers-runc-1.0.0-rc93" -; ,go-github-com-opencontainers-runc-1.0.0-rc93) -; ("go-github-com-opencontainers-image-spec-1.0.1" -; ,go-github-com-opencontainers-image-spec-1.0.1) -; ("go-github-com-opencontainers-go-digest-1.0.0" -; ,go-github-com-opencontainers-go-digest-1.0.0) -; ("go-github-com-moby-sys-symlink-0.1.0" -; ,go-github-com-moby-sys-symlink-0.1.0) -; ("go-github-com-moby-sys-mountinfo-0.4.1" -; ,go-github-com-moby-sys-mountinfo-0.4.1) -; ("go-github-com-klauspost-compress-1.11.3" -; ,go-github-com-klauspost-compress-1.11.3) -; ("go-github-com-imdario-mergo-0.3.11" -; ,go-github-com-imdario-mergo-0.3.11) -; ("go-github-com-hashicorp-go-multierror-1.0.0" -; ,go-github-com-hashicorp-go-multierror-1.0.0) -; ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" -; ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) -; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) -; ("go-github-com-google-go-cmp-0.5.4" -; ,go-github-com-google-go-cmp-0.5.4) -; ("go-github-com-gogo-protobuf-1.3.2" -; ,go-github-com-gogo-protobuf-1.3.2) -; ("go-github-com-fsnotify-fsnotify-1.4.9" -; ,go-github-com-fsnotify-fsnotify-1.4.9) -; ("go-github-com-emicklei-go-restful-2.9.5+incompatible" -; ,go-github-com-emicklei-go-restful-2.9.5+incompatible) -; ("go-github-com-docker-go-units-0.4.0" -; ,go-github-com-docker-go-units-0.4.0) -; ("go-github-com-docker-go-metrics-0.0.1" -; ,go-github-com-docker-go-metrics-0.0.1) -; ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" -; ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1) -; ("go-github-com-coreos-go-systemd-v22-22.1.0" -; ,go-github-com-coreos-go-systemd-v22-22.1.0) -; ("go-github-com-containernetworking-plugins-0.8.6" -; ,go-github-com-containernetworking-plugins-0.8.6) -; ("go-github-com-containerd-zfs-0.0.0-20210315114300-dde8f0fda960" -; ,go-github-com-containerd-zfs-0.0.0-20210315114300-dde8f0fda960) -; ("go-github-com-containerd-typeurl-1.0.1" -; ,go-github-com-containerd-typeurl-1.0.1) -; ("go-github-com-containerd-ttrpc-1.0.2" -; ,go-github-com-containerd-ttrpc-1.0.2) -; ("go-github-com-containerd-nri-0.0.0-20210316161719-dbaa18c31c14" -; ,go-github-com-containerd-nri-0.0.0-20210316161719-dbaa18c31c14) -; ("go-github-com-containerd-imgcrypt-1.1.1-0.20210312161619-7ed62a527887" -; ,go-github-com-containerd-imgcrypt-1.1.1-0.20210312161619-7ed62a527887) -; ("go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0" -; ,go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0) -; ("go-github-com-containerd-go-cni-1.0.1" -; ,go-github-com-containerd-go-cni-1.0.1) -; ("go-github-com-containerd-fifo-0.0.0-20210316144830-115abcc95a1d" -; ,go-github-com-containerd-fifo-0.0.0-20210316144830-115abcc95a1d) -; ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" -; ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) -; ("go-github-com-containerd-console-1.0.1" -; ,go-github-com-containerd-console-1.0.1) -; ("go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68" -; ,go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68) -; ("go-github-com-containerd-btrfs-0.0.0-20210316141732-918d888fb676" -; ,go-github-com-containerd-btrfs-0.0.0-20210316141732-918d888fb676) -; ("go-github-com-containerd-aufs-0.0.0-20210316121734-20793ff83c97" -; ,go-github-com-containerd-aufs-0.0.0-20210316121734-20793ff83c97) -; ("go-github-com-microsoft-hcsshim-0.8.15" -; ,go-github-com-microsoft-hcsshim-0.8.15) -; ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" -; ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3) -; ("go-github-com-burntsushi-toml-0.3.1" -; ,go-github-com-burntsushi-toml-0.3.1))) -; (home-page "https://github.com/containerd/containerd") -; (synopsis "Now Recruiting") -; (description -; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") -; (license license:asl2.0))) -; -;(define-public go-github-com-microsoft-hcsshim-0.8.16 -; (package -; (name "go-github-com-microsoft-hcsshim") -; (version "0.8.16") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/microsoft/hcsshim") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "15bxkqq4zavwspx3ga8j3vx9jrc7l0jazsa6cs6im9liy6xhkbd6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/Microsoft/hcsshim")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) -; ("go-golang-org-x-sys-0.0.0-20210324051608-47abb6519492" -; ,go-golang-org-x-sys-0.0.0-20210324051608-47abb6519492) -; ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" -; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) -; ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) -; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) -; ("go-github-com-sirupsen-logrus-1.7.0" -; ,go-github-com-sirupsen-logrus-1.7.0) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" -; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) -; ("go-github-com-gogo-protobuf-1.3.2" -; ,go-github-com-gogo-protobuf-1.3.2) -; ("go-github-com-containerd-typeurl-1.0.1" -; ,go-github-com-containerd-typeurl-1.0.1) -; ("go-github-com-containerd-ttrpc-1.0.2" -; ,go-github-com-containerd-ttrpc-1.0.2) -; ("go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0" -; ,go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0) -; ("go-github-com-containerd-containerd-1.5.0-beta.4" -; ,go-github-com-containerd-containerd-1.5.0-beta.4) -; ("go-github-com-containerd-console-1.0.1" -; ,go-github-com-containerd-console-1.0.1) -; ("go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68" -; ,go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68) -; ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" -; ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3))) -; (home-page "https://github.com/Microsoft/hcsshim") -; (synopsis "hcsshim") -; (description -; "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") -; (license license:expat))) -; -;(define-public go-github-com-microsoft-go-winio-0.4.17-0.20210324224401-5516f17a5958 -; (package -; (name "go-github-com-microsoft-go-winio") -; (version "0.4.17-0.20210324224401-5516f17a5958") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/microsoft/go-winio") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0gmgiak4x4gdyr17zm4b9vvharflk9pz5aj5jayh9hq50133b2f9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/Microsoft/go-winio")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" -; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) -; ("go-github-com-sirupsen-logrus-1.7.0" -; ,go-github-com-sirupsen-logrus-1.7.0) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) -; (home-page "https://github.com/Microsoft/go-winio") -; (synopsis "go-winio") -; (description -; "This repository contains utilities for efficiently performing Win32 IO operations in -;Go. Currently, this is focused on accessing named pipes and other file handles, and -;for using named pipes as a net transport.") -; (license license:expat))) -; -;(define-public go-github-com-containerd-aufs-0.0.0-20210316121734-20793ff83c97 -; (package -; (name "go-github-com-containerd-aufs") -; (version "0.0.0-20210316121734-20793ff83c97") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/aufs") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ipr8pafb2xpkchfvnxjcfx9pb48mjr9k8krj9gnagssxhynbkd5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/aufs")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" -; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" -; ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) -; ("go-github-com-containerd-containerd-1.5.0-beta.3" -; ,go-github-com-containerd-containerd-1.5.0-beta.3))) -; (home-page "https://github.com/containerd/aufs") -; (synopsis "aufs snapshotter") -; (description -; "AUFS implementation of the snapshot interface for containerd.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-btrfs-0.0.0-20210316141732-918d888fb676 -; (package -; (name "go-github-com-containerd-btrfs") -; (version "0.0.0-20210316141732-918d888fb676") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/btrfs") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1yf38gg41y1v12m0cl81r9q7d13170a4npzqxhbz7qn32zr23kzn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/btrfs")) -; (propagated-inputs -; `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) -; (home-page "https://github.com/containerd/btrfs") -; (synopsis "go-btrfs") -; (description -; "Package btrfs provides bindings for working with btrfs partitions from Go. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-fifo-0.0.0-20210316144830-115abcc95a1d -; (package -; (name "go-github-com-containerd-fifo") -; (version "0.0.0-20210316144830-115abcc95a1d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/fifo") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0hqna43p8r6g3xv8g8n985hq1nzipsvjiwm70xpbzbgynh4ym6z5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/fifo")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" -; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) -; (home-page "https://github.com/containerd/fifo") -; (synopsis "fifo") -; (description "Go package for handling fifos in a sane way.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0 -; (package -; (name "go-github-com-containerd-go-runc") -; (version "0.0.0-20201020171139-16b287bc67d0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/go-runc") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0xk30dzzxmd83bnfyilplizlxh1pg1gqz2jrq9wz9rqqkxazc03n")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/go-runc")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f" -; ,go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f) -; ("go-github-com-sirupsen-logrus-1.7.0" -; ,go-github-com-sirupsen-logrus-1.7.0) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-runtime-spec-1.0.2" -; ,go-github-com-opencontainers-runtime-spec-1.0.2) -; ("go-github-com-containerd-console-1.0.1" -; ,go-github-com-containerd-console-1.0.1))) -; (home-page "https://github.com/containerd/go-runc") -; (synopsis "go-runc") -; (description -; "This is a package for consuming the @url{https://github.com/opencontainers/runc,runc} binary in your Go applications. -;It tries to expose all the settings and features of the runc CLI. If there is something missing then add it, its opensource!") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-imgcrypt-1.1.1-0.20210312161619-7ed62a527887 -; (package -; (name "go-github-com-containerd-imgcrypt") -; (version "1.1.1-0.20210312161619-7ed62a527887") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/imgcrypt") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "16pgcc0w8m2cxhfjzmmd2h3n6mxzc1nlghrhgjlx0lf4q96hv904")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/imgcrypt")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) -; ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" -; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) -; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) -; ("go-github-com-sirupsen-logrus-1.7.0" -; ,go-github-com-sirupsen-logrus-1.7.0) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" -; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) -; ("go-github-com-opencontainers-image-spec-1.0.1" -; ,go-github-com-opencontainers-image-spec-1.0.1) -; ("go-github-com-opencontainers-go-digest-1.0.0" -; ,go-github-com-opencontainers-go-digest-1.0.0) -; ("go-github-com-gogo-protobuf-1.3.2" -; ,go-github-com-gogo-protobuf-1.3.2) -; ("go-github-com-containers-ocicrypt-1.1.0" -; ,go-github-com-containers-ocicrypt-1.1.0) -; ("go-github-com-containerd-typeurl-1.0.1" -; ,go-github-com-containerd-typeurl-1.0.1) -; ("go-github-com-containerd-containerd-1.5.0-beta.3" -; ,go-github-com-containerd-containerd-1.5.0-beta.3) -; ("go-github-com-containerd-console-1.0.1" -; ,go-github-com-containerd-console-1.0.1) -; ("go-github-com-microsoft-hcsshim-0.8.15" -; ,go-github-com-microsoft-hcsshim-0.8.15) -; ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" -; ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3))) -; (home-page "https://github.com/containerd/imgcrypt") -; (synopsis "imgcrypt image encryption library and command line tool") -; (description -; "Project @code{imgcrypt} is a non-core subproject of containerd.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-nri-0.0.0-20210316161719-dbaa18c31c14 -; (package -; (name "go-github-com-containerd-nri") -; (version "0.0.0-20210316161719-dbaa18c31c14") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/nri") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0kyrvagbga6yib7il0m4zvqz977a4wsv5lgjd3ix53xmr4h7fgm7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/nri")) -; (propagated-inputs -; `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-containerd-containerd-1.5.0-beta.3" -; ,go-github-com-containerd-containerd-1.5.0-beta.3))) -; (home-page "https://github.com/containerd/nri") -; (synopsis "nri - Node Resource Interface") -; (description -; "This project is a WIP for a new, CNI like, interface for managing resources on a node for Pods and Containers.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-zfs-0.0.0-20210324211415-d5c4544f0433 -; (package -; (name "go-github-com-containerd-zfs") -; (version "0.0.0-20210324211415-d5c4544f0433") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/zfs") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1wsqwqv2pyn05asgpm9clgpwq9b8b0fjk4khzkjvscrf5j4v1rx4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/zfs")) -; (propagated-inputs -; `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible" -; ,go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible) -; ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" -; ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) -; ("go-github-com-containerd-containerd-1.5.0-beta.3" -; ,go-github-com-containerd-containerd-1.5.0-beta.3))) -; (home-page "https://github.com/containerd/zfs") -; (synopsis "ZFS snapshotter plugin") -; (description "ZFS snapshotter plugin for containerd.") -; (license license:asl2.0))) -; -;(define-public go-k8s-io-apiserver-0.20.4 -; (package -; (name "go-k8s-io-apiserver") -; (version "0.20.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes/apiserver") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1gffl7z6bvi46v0fvphbak4waddsgf4pd5w16khgrzl1sv9skn61")))) -; (build-system go-build-system) -; (arguments '(#:import-path "k8s.io/apiserver")) -; (propagated-inputs -; `(("go-k8s-io-component-base-0.20.4" ,go-k8s-io-component-base-0.20.4) -; ("go-k8s-io-client-go-0.20.4" ,go-k8s-io-client-go-0.20.4) -; ("go-k8s-io-apimachinery-0.20.4" ,go-k8s-io-apimachinery-0.20.4) -; ("go-k8s-io-api-0.20.4" ,go-k8s-io-api-0.20.4) -; ("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) -; ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.2" -; ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.2) -; ("go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.14" -; ,go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.14) -; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" -; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) -; ("go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd" -; ,go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd) -; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) -; ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) -; ("go-gopkg-in-square-go-jose-v2-2.2.2" -; ,go-gopkg-in-square-go-jose-v2-2.2.2) -; ("go-gopkg-in-natefinch-lumberjack-v2-2.0.0" -; ,go-gopkg-in-natefinch-lumberjack-v2-2.0.0) -; ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) -; ("go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a" -; ,go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a) -; ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" -; ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) -; ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" -; ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) -; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" -; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) -; ("go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0" -; ,go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0) -; ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) -; ("go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489" -; ,go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489) -; ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) -; ("go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5" -; ,go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) -; ("go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021" -; ,go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822" -; ,go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822) -; ("go-github-com-mailru-easyjson-0.7.0" -; ,go-github-com-mailru-easyjson-0.7.0) -; ("go-github-com-hashicorp-golang-lru-0.5.1" -; ,go-github-com-hashicorp-golang-lru-0.5.1) -; ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" -; ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) -; ("go-github-com-gorilla-websocket-1.4.2" -; ,go-github-com-gorilla-websocket-1.4.2) -; ("go-github-com-googleapis-gnostic-0.4.1" -; ,go-github-com-googleapis-gnostic-0.4.1) -; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) -; ("go-github-com-google-gofuzz-1.1.0" -; ,go-github-com-google-gofuzz-1.1.0) -; ("go-github-com-google-go-cmp-0.5.2" -; ,go-github-com-google-go-cmp-0.5.2) -; ("go-github-com-gogo-protobuf-1.3.1" -; ,go-github-com-gogo-protobuf-1.3.1) -; ("go-github-com-go-openapi-spec-0.19.3" -; ,go-github-com-go-openapi-spec-0.19.3) -; ("go-github-com-evanphx-json-patch-4.9.0+incompatible" -; ,go-github-com-evanphx-json-patch-4.9.0+incompatible) -; ("go-github-com-emicklei-go-restful-2.9.5+incompatible" -; ,go-github-com-emicklei-go-restful-2.9.5+incompatible) -; ("go-github-com-dustin-go-humanize-1.0.0" -; ,go-github-com-dustin-go-humanize-1.0.0) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1) -; ("go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f" -; ,go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f) -; ("go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e" -; ,go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e) -; ("go-github-com-coreos-go-semver-0.3.0" -; ,go-github-com-coreos-go-semver-0.3.0) -; ("go-github-com-coreos-go-oidc-2.1.0+incompatible" -; ,go-github-com-coreos-go-oidc-2.1.0+incompatible))) -; (home-page "https://k8s.io/apiserver") -; (synopsis "apiserver") -; (description -; "Generic library for building a Kubernetes aggregated API server.") -; (license license:asl2.0))) -; -;(define-public go-k8s-io-api-0.20.4 -; (package -; (name "go-k8s-io-api") -; (version "0.20.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes/api") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0hjckd94vpsr690kwx7dad8qlb8xjg2bz5ms315s9h6wc5cqwvgy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "k8s.io/api")) -; (propagated-inputs -; `(("go-k8s-io-apimachinery-0.20.4" ,go-k8s-io-apimachinery-0.20.4) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-gogo-protobuf-1.3.1" -; ,go-github-com-gogo-protobuf-1.3.1))) -; (home-page "https://k8s.io/api") -; (synopsis "api") -; (description -; "Schema of the external API types that are served by the Kubernetes API server.") -; (license license:asl2.0))) -; -;(define-public go-k8s-io-apimachinery-0.20.4 -; (package -; (name "go-k8s-io-apimachinery") -; (version "0.20.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes/apimachinery") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "15qc12lbzpd4lgajy0rv24b3ky4hhg5y1l37qxdfiakhz91didfw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "k8s.io/apimachinery")) -; (propagated-inputs -; `(("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) -; ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.2" -; ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.2) -; ("go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd" -; ,go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd) -; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) -; ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) -; ("go-gopkg-in-inf-v0-0.9.1" ,go-gopkg-in-inf-v0-0.9.1) -; ("go-google-golang-org-protobuf-1.25.0" -; ,go-google-golang-org-protobuf-1.25.0) -; ("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" -; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) -; ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) -; ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" -; ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) -; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" -; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-onsi-gomega-1.7.0" ,go-github-com-onsi-gomega-1.7.0) -; ("go-github-com-onsi-ginkgo-1.11.0" ,go-github-com-onsi-ginkgo-1.11.0) -; ("go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f" -; ,go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f) -; ("go-github-com-modern-go-reflect2-1.0.1" -; ,go-github-com-modern-go-reflect2-1.0.1) -; ("go-github-com-json-iterator-go-1.1.10" -; ,go-github-com-json-iterator-go-1.1.10) -; ("go-github-com-hashicorp-golang-lru-0.5.1" -; ,go-github-com-hashicorp-golang-lru-0.5.1) -; ("go-github-com-googleapis-gnostic-0.4.1" -; ,go-github-com-googleapis-gnostic-0.4.1) -; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) -; ("go-github-com-google-gofuzz-1.1.0" -; ,go-github-com-google-gofuzz-1.1.0) -; ("go-github-com-google-go-cmp-0.5.2" -; ,go-github-com-google-go-cmp-0.5.2) -; ("go-github-com-golang-protobuf-1.4.3" -; ,go-github-com-golang-protobuf-1.4.3) -; ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" -; ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) -; ("go-github-com-gogo-protobuf-1.3.1" -; ,go-github-com-gogo-protobuf-1.3.1) -; ("go-github-com-fsnotify-fsnotify-1.4.9" -; ,go-github-com-fsnotify-fsnotify-1.4.9) -; ("go-github-com-evanphx-json-patch-4.9.0+incompatible" -; ,go-github-com-evanphx-json-patch-4.9.0+incompatible) -; ("go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153" -; ,go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153) -; ("go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96" -; ,go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://k8s.io/apimachinery") -; (synopsis "apimachinery") -; (description -; "Scheme, typing, encoding, decoding, and conversion packages for Kubernetes and Kubernetes-like API objects.") -; (license license:asl2.0))) -; -;(define-public go-k8s-io-client-go-0.20.4 -; (package -; (name "go-k8s-io-client-go") -; (version "0.20.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes/client-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0g8x2d59qm6068rql63c0mdhcjz9jsyyf7a5fdg1hyf88dvigfcx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "k8s.io/client-go")) -; (propagated-inputs -; `(("go-k8s-io-apimachinery-0.20.4" ,go-k8s-io-apimachinery-0.20.4) -; ("go-k8s-io-api-0.20.4" ,go-k8s-io-api-0.20.4) -; ("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) -; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" -; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) -; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) -; ("go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e" -; ,go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e) -; ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" -; ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) -; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" -; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) -; ("go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0" -; ,go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) -; ("go-github-com-peterbourgon-diskv-2.0.1+incompatible" -; ,go-github-com-peterbourgon-diskv-2.0.1+incompatible) -; ("go-github-com-imdario-mergo-0.3.5" -; ,go-github-com-imdario-mergo-0.3.5) -; ("go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7" -; ,go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7) -; ("go-github-com-googleapis-gnostic-0.4.1" -; ,go-github-com-googleapis-gnostic-0.4.1) -; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) -; ("go-github-com-google-gofuzz-1.1.0" -; ,go-github-com-google-gofuzz-1.1.0) -; ("go-github-com-google-go-cmp-0.5.2" -; ,go-github-com-google-go-cmp-0.5.2) -; ("go-github-com-golang-protobuf-1.4.3" -; ,go-github-com-golang-protobuf-1.4.3) -; ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" -; ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) -; ("go-github-com-gogo-protobuf-1.3.1" -; ,go-github-com-gogo-protobuf-1.3.1) -; ("go-github-com-evanphx-json-patch-4.9.0+incompatible" -; ,go-github-com-evanphx-json-patch-4.9.0+incompatible) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1) -; ("go-github-com-azure-go-autorest-autorest-adal-0.9.5" -; ,go-github-com-azure-go-autorest-autorest-adal-0.9.5) -; ("go-github-com-azure-go-autorest-autorest-0.11.1" -; ,go-github-com-azure-go-autorest-autorest-0.11.1) -; ("go-cloud-google-com-go-0.54.0" ,go-cloud-google-com-go-0.54.0))) -; (home-page "https://k8s.io/client-go") -; (synopsis "client-go") -; (description -; "Go clients for talking to a @url{http://kubernetes.io/,kubernetes} cluster.") -; (license license:asl2.0))) -; -;(define-public go-k8s-io-component-base-0.20.4 -; (package -; (name "go-k8s-io-component-base") -; (version "0.20.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes/component-base") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "02b782p63h8z3pg64i1kfgkmxwslxpyl6afkhd1agbig9zd6g7w8")))) -; (build-system go-build-system) -; (arguments '(#:import-path "k8s.io/component-base")) -; (propagated-inputs -; `(("go-k8s-io-client-go-0.20.4" ,go-k8s-io-client-go-0.20.4) -; ("go-k8s-io-apimachinery-0.20.4" ,go-k8s-io-apimachinery-0.20.4) -; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" -; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) -; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) -; ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) -; ("go-go-uber-org-multierr-1.1.0" ,go-go-uber-org-multierr-1.1.0) -; ("go-go-uber-org-atomic-1.4.0" ,go-go-uber-org-atomic-1.4.0) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) -; ("go-github-com-sirupsen-logrus-1.6.0" -; ,go-github-com-sirupsen-logrus-1.6.0) -; ("go-github-com-prometheus-procfs-0.2.0" -; ,go-github-com-prometheus-procfs-0.2.0) -; ("go-github-com-prometheus-common-0.10.0" -; ,go-github-com-prometheus-common-0.10.0) -; ("go-github-com-prometheus-client-model-0.2.0" -; ,go-github-com-prometheus-client-model-0.2.0) -; ("go-github-com-prometheus-client-golang-1.7.1" -; ,go-github-com-prometheus-client-golang-1.7.1) -; ("go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd" -; ,go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd) -; ("go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369" -; ,go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369) -; ("go-github-com-google-go-cmp-0.5.2" -; ,go-github-com-google-go-cmp-0.5.2) -; ("go-github-com-go-logr-logr-0.2.0" ,go-github-com-go-logr-logr-0.2.0) -; ("go-github-com-blang-semver-3.5.1+incompatible" -; ,go-github-com-blang-semver-3.5.1+incompatible))) -; (home-page "https://k8s.io/component-base") -; (synopsis "component-base") -; (description -; "Implement KEP 32: @url{https://github.com/kubernetes/enhancements/blob/master/keps/sig-cluster-lifecycle/wgs/783-component-base/README.md,https://github.com/kubernetes/enhancements/blob/master/keps/sig-cluster-lifecycle/wgs/783-component-base/README.md}") -; (license license:asl2.0))) -; -;(define-public go-k8s-io-cri-api-0.20.4 -; (package -; (name "go-k8s-io-cri-api") -; (version "0.20.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes/cri-api") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1r98d0kv42sijdg3404xx2g5jj0zixvfagkky2zla12p68ajm4xr")))) -; (build-system go-build-system) -; (arguments '(#:import-path "k8s.io/cri-api")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" -; ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) -; ("go-google-golang-org-protobuf-1.25.0" -; ,go-google-golang-org-protobuf-1.25.0) -; ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) -; ("go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a" -; ,go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a) -; ("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" -; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) -; ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) -; ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" -; ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) -; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" -; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-kr-pretty-0.2.0" ,go-github-com-kr-pretty-0.2.0) -; ("go-github-com-google-go-cmp-0.5.2" -; ,go-github-com-google-go-cmp-0.5.2) -; ("go-github-com-golang-protobuf-1.4.3" -; ,go-github-com-golang-protobuf-1.4.3) -; ("go-github-com-gogo-protobuf-1.3.1" -; ,go-github-com-gogo-protobuf-1.3.1) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://k8s.io/cri-api") -; (synopsis "Purpose") -; (description -; "This repository contains the definitions for the Container Runtime Interface (CRI). -;CRI is a plugin interface which enables kubelet to use a wide variety of container runtimes, -;without the need to recompile. CRI consists of a protocol buffers and gRPC API.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-containerd-1.5.0-rc.0 -; (package -; (name "go-github-com-containerd-containerd") -; (version "1.5.0-rc.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/containerd") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "148z6782bj0vy3vzbhg2xf53g14llvxfsmdsqkz6x5n49rm6xr4i")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/containerd")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) -; ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) -; ("go-github-com-golang-protobuf-1.3.5" -; ,go-github-com-golang-protobuf-1.3.5) -; ("go-github-com-gogo-googleapis-1.3.2" -; ,go-github-com-gogo-googleapis-1.3.2) -; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" -; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) -; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) -; ("go-k8s-io-cri-api-0.20.4" ,go-k8s-io-cri-api-0.20.4) -; ("go-k8s-io-component-base-0.20.4" ,go-k8s-io-component-base-0.20.4) -; ("go-k8s-io-client-go-0.20.4" ,go-k8s-io-client-go-0.20.4) -; ("go-k8s-io-apiserver-0.20.4" ,go-k8s-io-apiserver-0.20.4) -; ("go-k8s-io-apimachinery-0.20.4" ,go-k8s-io-apimachinery-0.20.4) -; ("go-k8s-io-api-0.20.4" ,go-k8s-io-api-0.20.4) -; ("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) -; ("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" -; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) -; ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" -; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) -; ("go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b" -; ,go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b) -; ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) -; ("go-github-com-tchap-go-patricia-2.2.6+incompatible" -; ,go-github-com-tchap-go-patricia-2.2.6+incompatible) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-sirupsen-logrus-1.7.0" -; ,go-github-com-sirupsen-logrus-1.7.0) -; ("go-github-com-prometheus-client-golang-1.7.1" -; ,go-github-com-prometheus-client-golang-1.7.1) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-pelletier-go-toml-1.8.1" -; ,go-github-com-pelletier-go-toml-1.8.1) -; ("go-github-com-opencontainers-selinux-1.8.0" -; ,go-github-com-opencontainers-selinux-1.8.0) -; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" -; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) -; ("go-github-com-opencontainers-runc-1.0.0-rc93" -; ,go-github-com-opencontainers-runc-1.0.0-rc93) -; ("go-github-com-opencontainers-image-spec-1.0.1" -; ,go-github-com-opencontainers-image-spec-1.0.1) -; ("go-github-com-opencontainers-go-digest-1.0.0" -; ,go-github-com-opencontainers-go-digest-1.0.0) -; ("go-github-com-moby-sys-symlink-0.1.0" -; ,go-github-com-moby-sys-symlink-0.1.0) -; ("go-github-com-moby-sys-mountinfo-0.4.1" -; ,go-github-com-moby-sys-mountinfo-0.4.1) -; ("go-github-com-klauspost-compress-1.11.13" -; ,go-github-com-klauspost-compress-1.11.13) -; ("go-github-com-imdario-mergo-0.3.11" -; ,go-github-com-imdario-mergo-0.3.11) -; ("go-github-com-hashicorp-go-multierror-1.0.0" -; ,go-github-com-hashicorp-go-multierror-1.0.0) -; ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" -; ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) -; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) -; ("go-github-com-google-go-cmp-0.5.4" -; ,go-github-com-google-go-cmp-0.5.4) -; ("go-github-com-gogo-protobuf-1.3.2" -; ,go-github-com-gogo-protobuf-1.3.2) -; ("go-github-com-fsnotify-fsnotify-1.4.9" -; ,go-github-com-fsnotify-fsnotify-1.4.9) -; ("go-github-com-emicklei-go-restful-2.9.5+incompatible" -; ,go-github-com-emicklei-go-restful-2.9.5+incompatible) -; ("go-github-com-docker-go-units-0.4.0" -; ,go-github-com-docker-go-units-0.4.0) -; ("go-github-com-docker-go-metrics-0.0.1" -; ,go-github-com-docker-go-metrics-0.0.1) -; ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" -; ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1) -; ("go-github-com-coreos-go-systemd-v22-22.1.0" -; ,go-github-com-coreos-go-systemd-v22-22.1.0) -; ("go-github-com-containernetworking-plugins-0.8.6" -; ,go-github-com-containernetworking-plugins-0.8.6) -; ("go-github-com-containerd-zfs-0.0.0-20210324211415-d5c4544f0433" -; ,go-github-com-containerd-zfs-0.0.0-20210324211415-d5c4544f0433) -; ("go-github-com-containerd-typeurl-1.0.1" -; ,go-github-com-containerd-typeurl-1.0.1) -; ("go-github-com-containerd-ttrpc-1.0.2" -; ,go-github-com-containerd-ttrpc-1.0.2) -; ("go-github-com-containerd-nri-0.0.0-20210316161719-dbaa18c31c14" -; ,go-github-com-containerd-nri-0.0.0-20210316161719-dbaa18c31c14) -; ("go-github-com-containerd-imgcrypt-1.1.1-0.20210312161619-7ed62a527887" -; ,go-github-com-containerd-imgcrypt-1.1.1-0.20210312161619-7ed62a527887) -; ("go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0" -; ,go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0) -; ("go-github-com-containerd-go-cni-1.0.1" -; ,go-github-com-containerd-go-cni-1.0.1) -; ("go-github-com-containerd-fifo-0.0.0-20210316144830-115abcc95a1d" -; ,go-github-com-containerd-fifo-0.0.0-20210316144830-115abcc95a1d) -; ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" -; ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) -; ("go-github-com-containerd-console-1.0.1" -; ,go-github-com-containerd-console-1.0.1) -; ("go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68" -; ,go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68) -; ("go-github-com-containerd-btrfs-0.0.0-20210316141732-918d888fb676" -; ,go-github-com-containerd-btrfs-0.0.0-20210316141732-918d888fb676) -; ("go-github-com-containerd-aufs-0.0.0-20210316121734-20793ff83c97" -; ,go-github-com-containerd-aufs-0.0.0-20210316121734-20793ff83c97) -; ("go-github-com-microsoft-hcsshim-0.8.15" -; ,go-github-com-microsoft-hcsshim-0.8.15) -; ("go-github-com-microsoft-go-winio-0.4.17-0.20210324224401-5516f17a5958" -; ,go-github-com-microsoft-go-winio-0.4.17-0.20210324224401-5516f17a5958))) -; (home-page "https://github.com/containerd/containerd") -; (synopsis "Now Recruiting") -; (description -; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containers-ocicrypt-1.1.1 -; (package -; (name "go-github-com-containers-ocicrypt") -; (version "1.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containers/ocicrypt") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1l0bfk244sxnakg3my529jsw532pffkmiyk5y1iqblz4mkjfphc8")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containers/ocicrypt")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) -; ("go-gopkg-in-square-go-jose-v2-2.5.1" -; ,go-gopkg-in-square-go-jose-v2-2.5.1) -; ("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) -; ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" -; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) -; ("go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2" -; ,go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2) -; ("go-go-mozilla-org-pkcs7-0.0.0-20200128120323-432b2356ecb1" -; ,go-go-mozilla-org-pkcs7-0.0.0-20200128120323-432b2356ecb1) -; ("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0) -; ("go-github-com-stefanberger-go-pkcs11uri-0.0.0-20201008174630-78d3cae3a980" -; ,go-github-com-stefanberger-go-pkcs11uri-0.0.0-20201008174630-78d3cae3a980) -; ("go-github-com-sirupsen-logrus-1.7.0" -; ,go-github-com-sirupsen-logrus-1.7.0) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-image-spec-1.0.1" -; ,go-github-com-opencontainers-image-spec-1.0.1) -; ("go-github-com-opencontainers-go-digest-1.0.0" -; ,go-github-com-opencontainers-go-digest-1.0.0) -; ("go-github-com-miekg-pkcs11-1.0.3" ,go-github-com-miekg-pkcs11-1.0.3) -; ("go-github-com-google-go-cmp-0.5.2" -; ,go-github-com-google-go-cmp-0.5.2) -; ("go-github-com-golang-protobuf-1.4.3" -; ,go-github-com-golang-protobuf-1.4.3))) -; (home-page "https://github.com/containers/ocicrypt") -; (synopsis "OCIcrypt Library") -; (description -; "The @code{ocicrypt} library is the OCI image spec implementation of container image encryption. More details of the spec can be seen in the @url{https://github.com/opencontainers/image-spec/pull/775,OCI repository}. The purpose of this library is to encode spec structures and consts in code, as well as provide a consistent implementation of image encryption across container runtimes and build tools.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-imgcrypt-1.1.1 -; (package -; (name "go-github-com-containerd-imgcrypt") -; (version "1.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/imgcrypt") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "177fs3p2xzwjsffcxqqllx6wi6ghfyqbvfgn95v3q7a2993yqk4k")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/imgcrypt")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) -; ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" -; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) -; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) -; ("go-github-com-sirupsen-logrus-1.7.0" -; ,go-github-com-sirupsen-logrus-1.7.0) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" -; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) -; ("go-github-com-opencontainers-image-spec-1.0.1" -; ,go-github-com-opencontainers-image-spec-1.0.1) -; ("go-github-com-opencontainers-go-digest-1.0.0" -; ,go-github-com-opencontainers-go-digest-1.0.0) -; ("go-github-com-gogo-protobuf-1.3.2" -; ,go-github-com-gogo-protobuf-1.3.2) -; ("go-github-com-containers-ocicrypt-1.1.1" -; ,go-github-com-containers-ocicrypt-1.1.1) -; ("go-github-com-containerd-typeurl-1.0.1" -; ,go-github-com-containerd-typeurl-1.0.1) -; ("go-github-com-containerd-containerd-1.5.0-rc.0" -; ,go-github-com-containerd-containerd-1.5.0-rc.0) -; ("go-github-com-containerd-console-1.0.2" -; ,go-github-com-containerd-console-1.0.2) -; ("go-github-com-microsoft-hcsshim-0.8.16" -; ,go-github-com-microsoft-hcsshim-0.8.16) -; ("go-github-com-microsoft-go-winio-0.4.17-0.20210324224401-5516f17a5958" -; ,go-github-com-microsoft-go-winio-0.4.17-0.20210324224401-5516f17a5958))) -; (home-page "https://github.com/containerd/imgcrypt") -; (synopsis "imgcrypt image encryption library and command line tool") -; (description -; "Project @code{imgcrypt} is a non-core subproject of containerd.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-nri-0.1.0 -; (package -; (name "go-github-com-containerd-nri") -; (version "0.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/nri") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0hqji5qa0n0fdyv9sjdl7mv3bb4fnq9i79pdzlw6m1nigrnb18qp")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/nri")) -; (propagated-inputs -; `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-containerd-containerd-1.5.0-beta.3" -; ,go-github-com-containerd-containerd-1.5.0-beta.3))) -; (home-page "https://github.com/containerd/nri") -; (synopsis "nri - Node Resource Interface") -; (description -; "This project is a WIP for a new, CNI like, interface for managing resources on a node for Pods and Containers.") -; (license license:asl2.0))) -; -;(define-public go-github-com-microsoft-hcsshim-0.8.15 -; (package -; (name "go-github-com-microsoft-hcsshim") -; (version "0.8.15") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/microsoft/hcsshim") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1119qf7nklpnn9li61m8jrd5wvifhiz7qh7sfjjy04rfvbvlsi6c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/Microsoft/hcsshim")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.30.0" ,go-google-golang-org-grpc-1.30.0) -; ("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" -; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) -; ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" -; ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) -; ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) -; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) -; ("go-github-com-sirupsen-logrus-1.7.0" -; ,go-github-com-sirupsen-logrus-1.7.0) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" -; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) -; ("go-github-com-gogo-protobuf-1.3.2" -; ,go-github-com-gogo-protobuf-1.3.2) -; ("go-github-com-containerd-typeurl-1.0.1" -; ,go-github-com-containerd-typeurl-1.0.1) -; ("go-github-com-containerd-ttrpc-1.0.2" -; ,go-github-com-containerd-ttrpc-1.0.2) -; ("go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328" -; ,go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328) -; ("go-github-com-containerd-containerd-1.5.0-beta.1" -; ,go-github-com-containerd-containerd-1.5.0-beta.1) -; ("go-github-com-containerd-console-1.0.1" -; ,go-github-com-containerd-console-1.0.1) -; ("go-github-com-containerd-cgroups-0.0.0-20200824123100-0b889c03f102" -; ,go-github-com-containerd-cgroups-0.0.0-20200824123100-0b889c03f102) -; ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" -; ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3))) -; (home-page "https://github.com/Microsoft/hcsshim") -; (synopsis "hcsshim") -; (description -; "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") -; (license license:expat))) -; -;(define-public go-github-com-containerd-containerd-1.4.1 -; (package -; (name "go-github-com-containerd-containerd") -; (version "1.4.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/containerd") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1k6dqaidnldf7kpxdszf0wn6xb8m6vaizm2aza81fri1q0051213")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/containerd")) -; (home-page "https://github.com/containerd/containerd") -; (synopsis "Now Recruiting") -; (description -; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-sys-0.0.0-20200622214017-ed371f2e16b4 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20200622214017-ed371f2e16b4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "107wfy2fj6z5zps1v72j8drfrfvss1158drb0yqhz5awlbvgrpj7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-containerd-aufs-0.0.0-20201003224125-76a6863f2989 -; (package -; (name "go-github-com-containerd-aufs") -; (version "0.0.0-20201003224125-76a6863f2989") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/aufs") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0nsiyqjrgf3vvv6hpiljknpbkzlla1czpkq69i607f7p5jd8bgaq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/aufs")) -; (propagated-inputs -; `(("go-gotest-tools-v3-3.0.2" ,go-gotest-tools-v3-3.0.2) -; ("go-golang-org-x-sys-0.0.0-20200622214017-ed371f2e16b4" -; ,go-golang-org-x-sys-0.0.0-20200622214017-ed371f2e16b4) -; ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-image-spec-1.0.1" -; ,go-github-com-opencontainers-image-spec-1.0.1) -; ("go-github-com-google-go-cmp-0.3.1" -; ,go-github-com-google-go-cmp-0.3.1) -; ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" -; ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) -; ("go-github-com-containerd-typeurl-1.0.1" -; ,go-github-com-containerd-typeurl-1.0.1) -; ("go-github-com-containerd-ttrpc-1.0.1" -; ,go-github-com-containerd-ttrpc-1.0.1) -; ("go-github-com-containerd-continuity-0.0.0-20200710164510-efbc4488d8fe" -; ,go-github-com-containerd-continuity-0.0.0-20200710164510-efbc4488d8fe) -; ("go-github-com-containerd-containerd-1.4.1" -; ,go-github-com-containerd-containerd-1.4.1) -; ("go-github-com-microsoft-hcsshim-0.8.9" -; ,go-github-com-microsoft-hcsshim-0.8.9))) -; (home-page "https://github.com/containerd/aufs") -; (synopsis "aufs snapshotter") -; (description -; "AUFS implementation of the snapshot interface for containerd.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68 -; (package -; (name "go-github-com-containerd-cgroups") -; (version "0.0.0-20210114181951-8a68de567b68") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/cgroups") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0v70kxazvsizx33w9nz341hg14acg2vnbfcpx9yknmsjqdwgqnhs")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/cgroups")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9" -; ,go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9) -; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) -; ("go-github-com-stretchr-testify-1.2.2" -; ,go-github-com-stretchr-testify-1.2.2) -; ("go-github-com-sirupsen-logrus-1.7.0" -; ,go-github-com-sirupsen-logrus-1.7.0) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-runtime-spec-1.0.2" -; ,go-github-com-opencontainers-runtime-spec-1.0.2) -; ("go-github-com-gogo-protobuf-1.3.1" -; ,go-github-com-gogo-protobuf-1.3.1) -; ("go-github-com-godbus-dbus-v5-5.0.3" -; ,go-github-com-godbus-dbus-v5-5.0.3) -; ("go-github-com-docker-go-units-0.4.0" -; ,go-github-com-docker-go-units-0.4.0) -; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" -; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) -; ("go-github-com-coreos-go-systemd-v22-22.1.0" -; ,go-github-com-coreos-go-systemd-v22-22.1.0) -; ("go-github-com-cilium-ebpf-0.2.0" ,go-github-com-cilium-ebpf-0.2.0))) -; (home-page "https://github.com/containerd/cgroups") -; (synopsis "cgroups") -; (description -; "Go package for creating, managing, inspecting, and destroying cgroups. -;The resources format for settings on the cgroup uses the OCI runtime-spec found -;@url{https://github.com/opencontainers/runtime-spec,here}.") -; (license license:asl2.0))) -; -;(define-public go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3 -; (package -; (name "go-github-com-microsoft-go-winio") -; (version "0.4.17-0.20210211115548-6eac466e5fa3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/microsoft/go-winio") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0w8fmybsl0v5azwi66qa299gwh0mlp907mrg4yaiya7s0cjmjx0d")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/Microsoft/go-winio")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" -; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) -; ("go-github-com-sirupsen-logrus-1.7.0" -; ,go-github-com-sirupsen-logrus-1.7.0) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) -; (home-page "https://github.com/Microsoft/go-winio") -; (synopsis "go-winio") -; (description -; "This repository contains utilities for efficiently performing Win32 IO operations in -;Go. Currently, this is focused on accessing named pipes and other file handles, and -;for using named pipes as a net transport.") -; (license license:expat))) -; -;(define-public go-github-com-microsoft-hcsshim-test-0.0.0-20210227013316-43a75bb4edd3 -; (package -; (name "go-github-com-microsoft-hcsshim-test") -; (version "0.0.0-20210227013316-43a75bb4edd3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/microsoft/hcsshim") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1j899w4hdw1mk6rfyy9qsm902iavgc49ykbjdsb02m6wszq1z0wy")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path -; "github.com/Microsoft/hcsshim/test" -; #:unpack-path -; "github.com/Microsoft/hcsshim")) -; (propagated-inputs -; `(("go-k8s-io-cri-api-0.20.1" ,go-k8s-io-cri-api-0.20.1) -; ("go-google-golang-org-grpc-1.30.0" ,go-google-golang-org-grpc-1.30.0) -; ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" -; ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) -; ("go-github-com-sirupsen-logrus-1.7.0" -; ,go-github-com-sirupsen-logrus-1.7.0) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39" -; ,go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39) -; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" -; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) -; ("go-github-com-gogo-protobuf-1.3.2" -; ,go-github-com-gogo-protobuf-1.3.2) -; ("go-github-com-containerd-typeurl-1.0.1" -; ,go-github-com-containerd-typeurl-1.0.1) -; ("go-github-com-containerd-ttrpc-1.0.2" -; ,go-github-com-containerd-ttrpc-1.0.2) -; ("go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328" -; ,go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328) -; ("go-github-com-containerd-containerd-1.5.0-beta.1" -; ,go-github-com-containerd-containerd-1.5.0-beta.1) -; ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" -; ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3))) -; (home-page "https://github.com/Microsoft/hcsshim") -; (synopsis #f) -; (description #f) -; (license license:expat))) -; -;(define-public go-github-com-microsoft-go-winio-0.4.16 -; (package -; (name "go-github-com-microsoft-go-winio") -; (version "0.4.16") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/microsoft/go-winio") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0snwbwdjs34x0my9ri77cvrbnahdiyjh2jlkzf12fy48p7fyk7pq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/Microsoft/go-winio")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3" -; ,go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3) -; ("go-github-com-sirupsen-logrus-1.4.1" -; ,go-github-com-sirupsen-logrus-1.4.1) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) -; (home-page "https://github.com/Microsoft/go-winio") -; (synopsis "go-winio") -; (description -; "This repository contains utilities for efficiently performing Win32 IO operations in -;Go. Currently, this is focused on accessing named pipes and other file handles, and -;for using named pipes as a net transport.") -; (license license:expat))) -; -;(define-public go-github-com-azure-azure-sdk-for-go-16.2.1+incompatible -; (package -; (name "go-github-com-azure-azure-sdk-for-go") -; (version "16.2.1+incompatible") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/Azure/azure-sdk-for-go") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1hwrspsyfs003h4f8zl8b41g3a6jpkqawqrykd1mjw9p6hs1c6k8")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/Azure/azure-sdk-for-go")) -; (home-page "https://github.com/Azure/azure-sdk-for-go") -; (synopsis "Azure SDK for Go") -; (description -; "Package sdk provides Go packages for managing and using Azure services. -;") -; (license license:expat))) -; -;(define-public go-github-com-azure-go-autorest-10.8.1+incompatible -; (package -; (name "go-github-com-azure-go-autorest") -; (version "10.8.1+incompatible") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/Azure/go-autorest") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "122zfifj93vkix8ggkdh0dz5rmzxh4bql4nry1hws2czmzgxlkdm")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/Azure/go-autorest")) -; (home-page "https://github.com/Azure/go-autorest") -; (synopsis "go-autorest") -; (description -; "Package go-autorest provides an HTTP request client for use with Autorest-generated API client packages. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-shopify-logrus-bugsnag-0.0.0-20171204204709-577dee27f20d -; (package -; (name "go-github-com-shopify-logrus-bugsnag") -; (version "0.0.0-20171204204709-577dee27f20d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/Shopify/logrus-bugsnag") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1l3yahk77vzgmjs7baf8g14sv33jj04rw73iind4wayg40lfgrp8")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/Shopify/logrus-bugsnag")) -; (home-page "https://github.com/Shopify/logrus-bugsnag") -; (synopsis "logrus-bugsnag") -; (description -; "logrus-bugsnag is a hook that allows @url{https://github.com/sirupsen/logrus,Logrus} to interface with @url{https://bugsnag.com,Bugsnag}.") -; (license license:expat))) -; -;(define-public go-github-com-go-ini-ini-1.25.4 -; (package -; (name "go-github-com-go-ini-ini") -; (version "1.25.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/go-ini/ini") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0b6cql5ripbiyrm18d6bfd1rfjnwcbskppw3d0vb80l0wy72d0c6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/go-ini/ini")) -; (home-page "https://github.com/go-ini/ini") -; (synopsis "INI") -; (description -; "Package ini provides INI file read and write functionality in Go. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-jmespath-go-jmespath-0.0.0-20160202185014-0b12d6b521d8 -; (package -; (name "go-github-com-jmespath-go-jmespath") -; (version "0.0.0-20160202185014-0b12d6b521d8") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/jmespath/go-jmespath") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1vv6hph8j6xgv7gwl9vvhlsaaqsm22sxxqmgmldi4v11783pc1ld")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/jmespath/go-jmespath")) -; (home-page "https://github.com/jmespath/go-jmespath") -; (synopsis "go-jmespath - A JMESPath implementation in Go") -; (description -; "go-jmespath is a GO implementation of JMESPath, -;which is a query language for JSON. It will take a JSON -;document and transform it into another JSON document -;through a JMESPath expression.") -; (license license:asl2.0))) -; -;(define-public go-github-com-aws-aws-sdk-go-1.15.11 -; (package -; (name "go-github-com-aws-aws-sdk-go") -; (version "1.15.11") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/aws/aws-sdk-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0w960w39k3nyc17p1lvd41cls39qwg7kzfm57vfbdb4h1m5sck99")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/aws/aws-sdk-go")) -; (propagated-inputs -; `(("go-github-com-jmespath-go-jmespath-0.0.0-20160202185014-0b12d6b521d8" -; ,go-github-com-jmespath-go-jmespath-0.0.0-20160202185014-0b12d6b521d8) -; ("go-github-com-go-ini-ini-1.25.4" ,go-github-com-go-ini-ini-1.25.4))) -; (home-page "https://github.com/aws/aws-sdk-go") -; (synopsis "AWS SDK for Go") -; (description -; "Package sdk is the official AWS SDK for the Go programming language. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-beorn7-perks-0.0.0-20160804104726-4c0e84591b9a -; (package -; (name "go-github-com-beorn7-perks") -; (version "0.0.0-20160804104726-4c0e84591b9a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/beorn7/perks") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1hrybsql68xw57brzj805xx2mghydpdiysv3gbhr7f5wlxj2514y")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/beorn7/perks")) -; (home-page "https://github.com/beorn7/perks") -; (synopsis "Perks for Go (golang.org)") -; (description -; "Perks contains the Go package quantile that computes approximate quantiles over -;an unbounded data stream within low memory and CPU bounds.") -; (license license:expat))) -; -;(define-public go-github-com-bitly-go-simplejson-0.5.0 -; (package -; (name "go-github-com-bitly-go-simplejson") -; (version "0.5.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/bitly/go-simplejson") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0n9f9dz1jn1jx86d48569nznpjn9fmq3knn7r65xpy7jhih284jj")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/bitly/go-simplejson")) -; (home-page "https://github.com/bitly/go-simplejson") -; (synopsis "go-simplejson") -; (description "a Go package to interact with arbitrary JSON") -; (license license:expat))) -; -;(define-public go-github-com-bmizerany-assert-0.0.0-20160611221934-b7ed37b82869 -; (package -; (name "go-github-com-bmizerany-assert") -; (version "0.0.0-20160611221934-b7ed37b82869") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/bmizerany/assert") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "18hy1wyl9zdi7sgxafrn3m7fadh6in0rhhb8l0cvkxqzdl0jcw2s")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/bmizerany/assert")) -; (home-page "https://github.com/bmizerany/assert") -; (synopsis #f) -; (description #f) -; (license #f))) -; -;(define-public go-github-com-bshuster-repo-logrus-logstash-hook-0.4.1 -; (package -; (name "go-github-com-bshuster-repo-logrus-logstash-hook") -; (version "0.4.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/bshuster-repo/logrus-logstash-hook") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1kkjzav4i3l2ahgpirysr0cqh60vdq517lpj00cc9z32zfrsw87k")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "github.com/bshuster-repo/logrus-logstash-hook")) -; (home-page "https://github.com/bshuster-repo/logrus-logstash-hook") -; (synopsis "Logstash hook for logrus") -; (description -; "Use this hook to send the logs to @url{https://www.elastic.co/products/logstash,Logstash}.") -; (license license:expat))) -; -;(define-public go-github-com-bugsnag-bugsnag-go-0.0.0-20141110184014-b1d153021fcd -; (package -; (name "go-github-com-bugsnag-bugsnag-go") -; (version "0.0.0-20141110184014-b1d153021fcd") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/bugsnag/bugsnag-go") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "057vwigfzq42p9vkk9yhy8vkvgdmh6653rc988jmvmrkwbgvb352")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/bugsnag/bugsnag-go")) -; (home-page "https://github.com/bugsnag/bugsnag-go") -; (synopsis "Bugsnag error reporter for Go") -; (description -; "Package bugsnag captures errors in real-time and reports them to Bugsnag (@url{http://bugsnag.com,http://bugsnag.com}). -;") -; (license license:expat))) -; -;(define-public go-github-com-bugsnag-osext-0.0.0-20130617224835-0dd3f918b21b -; (package -; (name "go-github-com-bugsnag-osext") -; (version "0.0.0-20130617224835-0dd3f918b21b") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/bugsnag/osext") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "02pczqml6p1mnfdrygm3rs02g0r65qx8v1bi3x24dx8wv9dr5y23")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/bugsnag/osext")) -; (home-page "https://github.com/bugsnag/osext") -; (synopsis #f) -; (description "Extensions to the standard \"os\" package. -;") -; (license license:zlib))) -; -;(define-public go-github-com-bugsnag-panicwrap-0.0.0-20151223152923-e2c28503fcd0 -; (package -; (name "go-github-com-bugsnag-panicwrap") -; (version "0.0.0-20151223152923-e2c28503fcd0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/bugsnag/panicwrap") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "02z1q18s83xhfsz3n8bzv071a6n0irlad11yxppaf7015a7dl446")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/bugsnag/panicwrap")) -; (home-page "https://github.com/bugsnag/panicwrap") -; (synopsis "panicwrap") -; (description -; "The panicwrap package provides functions for capturing and handling -;panics in your application. It does this by re-executing the running -;application and monitoring stderr for any panics. At the same time, -;stdout/stderr/etc. are set to the same values so that data is shuttled -;through properly, making the existence of panicwrap mostly transparent. -;") -; (license license:expat))) -; -;(define-public go-github-com-denverdino-aliyungo-0.0.0-20190125010748-a747050bb1ba -; (package -; (name "go-github-com-denverdino-aliyungo") -; (version "0.0.0-20190125010748-a747050bb1ba") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/denverdino/aliyungo") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0rc16ciz8gjpn36fhp0qz1ns0inlvjaz07z1qffl9ni4b49hhwkn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/denverdino/aliyungo")) -; (home-page "https://github.com/denverdino/aliyungo") -; (synopsis "AliyunGo: Go SDK for Aliyun Services") -; (description -; "This is an unofficial Go SDK for Aliyun services. You are welcome for contribution.") -; (license license:asl2.0))) -; -;(define-public go-github-com-dgrijalva-jwt-go-0.0.0-20170104182250-a601269ab70c -; (package -; (name "go-github-com-dgrijalva-jwt-go") -; (version "0.0.0-20170104182250-a601269ab70c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/dgrijalva/jwt-go") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1c2dhmj95wh9cs099cr43qghgmp6bqx0mq44vha2dqq5jkbazwfv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/dgrijalva/jwt-go")) -; (home-page "https://github.com/dgrijalva/jwt-go") -; (synopsis "jwt-go") -; (description -; "Package jwt is a Go implementation of JSON Web Tokens: @url{http://self-issued.info/docs/draft-jones-json-web-token.html,http://self-issued.info/docs/draft-jones-json-web-token.html} -;") -; (license license:expat))) -; -;(define-public go-github-com-dnaeon-go-vcr-1.0.1 -; (package -; (name "go-github-com-dnaeon-go-vcr") -; (version "1.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/dnaeon/go-vcr") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1d0kpqr12qrqlamz5a47bp05mx49za2v6l1k7c6z71xahfmb7v2d")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/dnaeon/go-vcr")) -; (home-page "https://github.com/dnaeon/go-vcr") -; (synopsis "go-vcr") -; (description -; "@code{go-vcr} simplifies testing by recording your HTTP interactions and -;replaying them in future runs in order to provide fast, deterministic -;and accurate testing of your code.") -; (license license:bsd-2))) -; -;(define-public go-github-com-docker-go-metrics-0.0.0-20180209012529-399ea8c73916 -; (package -; (name "go-github-com-docker-go-metrics") -; (version "0.0.0-20180209012529-399ea8c73916") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/docker/go-metrics") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0najfy92fq05b330cnjk5b326yi7dnnmvzfk6g5lsa1fci78yzw4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/docker/go-metrics")) -; (home-page "https://github.com/docker/go-metrics") -; (synopsis "go-metrics") -; (description -; "This package is small wrapper around the prometheus go client to help enforce convention and best practices for metrics collection in Docker projects.") -; (license (list license:asl2.0 license:cc-by-sa4.0)))) -; -;(define-public go-github-com-docker-libtrust-0.0.0-20150114040149-fa567046d9b1 -; (package -; (name "go-github-com-docker-libtrust") -; (version "0.0.0-20150114040149-fa567046d9b1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/docker/libtrust") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1121c7fxarzyr3fvxyzfw8qs4hb8k92dsix26s5vxncgszl5svf2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/docker/libtrust")) -; (home-page "https://github.com/docker/libtrust") -; (synopsis "libtrust") -; (description -; "Package libtrust provides an interface for managing authentication and -;authorization using public key cryptography. Authentication is handled -;using the identity attached to the public key and verified through TLS -;x509 certificates, a key challenge, or signature. Authorization and -;access control is managed through a trust graph distributed between -;both remote trust servers and locally cached and managed data. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-garyburd-redigo-0.0.0-20150301180006-535138d7bcd7 -; (package -; (name "go-github-com-garyburd-redigo") -; (version "0.0.0-20150301180006-535138d7bcd7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/garyburd/redigo") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1m7nc1gvv5yqnq8ii75f33485il6y6prf8gxl97dimsw94qccc5v")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/garyburd/redigo")) -; (home-page "https://github.com/garyburd/redigo") -; (synopsis #f) -; (description -; "Future development of Redigo is at -;@url{https://github.com/gomodule/redigo,github.com/gomodule/redigo}. Please submit -;issues at gomodule/redigo. The repository at github.com/garyburd/redigo is a -;read-only snapshot.") -; (license license:asl2.0))) -; -;(define-public go-github-com-gorilla-handlers-0.0.0-20150720190736-60c7bfde3e33 -; (package -; (name "go-github-com-gorilla-handlers") -; (version "0.0.0-20150720190736-60c7bfde3e33") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/gorilla/handlers") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0zvpxvybdn8yqpk2cxs134ip9wxmw6c1s0kw9nahf7qw1kfyzycm")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/gorilla/handlers")) -; (home-page "https://github.com/gorilla/handlers") -; (synopsis "gorilla/handlers") -; (description -; "Package handlers is a collection of handlers (aka \"HTTP middleware\") for use -;with Go's net/http package (or any framework supporting http.Handler). -;") -; (license license:bsd-2))) -; -;(define-public go-github-com-gorilla-mux-1.7.2 -; (package -; (name "go-github-com-gorilla-mux") -; (version "1.7.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/gorilla/mux") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1gjcbgpdl3snc38i8sj8k6sqbv3inyrxqyggbqvr4jfx2phv2zy6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/gorilla/mux")) -; (home-page "https://github.com/gorilla/mux") -; (synopsis "gorilla/mux") -; (description "Package mux implements a request router and dispatcher. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-jmespath-go-jmespath-0.0.0-20160803190731-bd40a432e4c7 -; (package -; (name "go-github-com-jmespath-go-jmespath") -; (version "0.0.0-20160803190731-bd40a432e4c7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/jmespath/go-jmespath") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1kgzwiyqn24ba9kgpjxlq1h746gnyby0psbjj9mp2yx0h1i0kc4z")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/jmespath/go-jmespath")) -; (home-page "https://github.com/jmespath/go-jmespath") -; (synopsis "go-jmespath - A JMESPath implementation in Go") -; (description -; "go-jmespath is a GO implementation of JMESPath, -;which is a query language for JSON. It will take a JSON -;document and transform it into another JSON document -;through a JMESPath expression.") -; (license license:asl2.0))) -; -;(define-public go-github-com-marstr-guid-1.1.0 -; (package -; (name "go-github-com-marstr-guid") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/marstr/guid") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "081qrar6wwpmb2pq3swv4byh73r9riyhl2dwv0902d8jg3kwricm")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/marstr/guid")) -; (home-page "https://github.com/marstr/guid") -; (synopsis "Guid") -; (description -; "Globally unique identifiers offer a quick means of generating non-colliding values across a distributed system. For this implemenation, @url{http://ietf.org/rfc/rfc4122.txt,RFC 4122} governs the desired behavior.") -; (license license:expat))) -; -;(define-public go-github-com-mitchellh-osext-0.0.0-20151018003038-5e2d6d41470f -; (package -; (name "go-github-com-mitchellh-osext") -; (version "0.0.0-20151018003038-5e2d6d41470f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mitchellh/osext") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0j635c1cx7crs5wlirlk713l36x70pnlmqrzd3x3bjgnjg194jrk")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mitchellh/osext")) -; (home-page "https://github.com/mitchellh/osext") -; (synopsis "osext") -; (description "Extensions to the standard \"os\" package. -;") -; (license license:zlib))) -; -;(define-public go-github-com-ncw-swift-1.0.47 -; (package -; (name "go-github-com-ncw-swift") -; (version "1.0.47") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/ncw/swift") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0wxz4lvy6pjabghq8inby2fyh58ysclayccziawc8fd7a67kh4cd")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/ncw/swift")) -; (home-page "https://github.com/ncw/swift") -; (synopsis "Swift") -; (description -; "Package swift provides an easy to use interface to Swift / Openstack Object Storage / Rackspace Cloud Files -;") -; (license license:expat))) -; -;(define-public go-github-com-opencontainers-go-digest-0.0.0-20170106003457-a6d0ee40d420 -; (package -; (name "go-github-com-opencontainers-go-digest") -; (version "0.0.0-20170106003457-a6d0ee40d420") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/go-digest") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1paz3na2xkhi10p5bk7f7gbh5yykfgr9f9i2gcc13rb461yq6fmg")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/go-digest")) -; (home-page "https://github.com/opencontainers/go-digest") -; (synopsis "go-digest") -; (description -; "Package digest provides a generalized type to opaquely represent message -;digests and their operations within the registry. The Digest type is -;designed to serve as a flexible identifier in a content-addressable system. -;More importantly, it provides tools and wrappers to work with -;hash.Hash-based digests with little effort. -;") -; (license (list license:asl2.0 license:cc-by-sa4.0)))) -; -;(define-public go-github-com-opencontainers-image-spec-1.0.0 -; (package -; (name "go-github-com-opencontainers-image-spec") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/image-spec") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "04ax2pylpwzsa5pw6wk94shdpdmfyqf70ys0idhpxsygzc2m5l23")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/image-spec")) -; (home-page "https://github.com/opencontainers/image-spec") -; (synopsis "OCI Image Format Specification") -; (description -; "The OCI Image Format project creates and maintains the software shipping container image format spec (OCI Image Format).") -; (license license:asl2.0))) -; -;(define-public go-github-com-prometheus-client-golang-0.0.0-20180209125602-c332b6f63c06 -; (package -; (name "go-github-com-prometheus-client-golang") -; (version "0.0.0-20180209125602-c332b6f63c06") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/client_golang") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "068r759wnh1lxcjhj89z4bqbpl7ydcx2drn2967ygw80nyab30pq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/client_golang")) -; (home-page "https://github.com/prometheus/client_golang") -; (synopsis "Prometheus Go client library") -; (description -; "This is the @url{http://golang.org,Go} client library for -;@url{http://prometheus.io,Prometheus}. It has two separate parts, one for -;instrumenting application code, and one for creating clients that talk to the -;Prometheus HTTP API.") -; (license license:asl2.0))) -; -;(define-public go-github-com-prometheus-client-model-0.0.0-20171117100541-99fa1f4be8e5 -; (package -; (name "go-github-com-prometheus-client-model") -; (version "0.0.0-20171117100541-99fa1f4be8e5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/client_model") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "19y4ywsivhpxj7ikf2j0gm9k3cmyw37qcbfi78n526jxcc7kw998")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/client_model")) -; (home-page "https://github.com/prometheus/client_model") -; (synopsis "Deprecation note") -; (description -; "This repository used to contain the code that defined both -;the data model and the exposition format of Prometheus metrics.") -; (license license:asl2.0))) -; -;(define-public go-github-com-prometheus-common-0.0.0-20180110214958-89604d197083 -; (package -; (name "go-github-com-prometheus-common") -; (version "0.0.0-20180110214958-89604d197083") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/common") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "169rdlaf2mk9z4fydz7ajmngyhmf3q1lk96yhvx46bn986x5xkyn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/common")) -; (home-page "https://github.com/prometheus/common") -; (synopsis "Common") -; (description -; "This repository contains Go libraries that are shared across Prometheus -;components and libraries. They are considered internal to Prometheus, without -;any stability guarantees for external usage.") -; (license license:asl2.0))) -; -;(define-public go-github-com-gopherjs-gopherjs-0.0.0-20181017120253-0766667cb4d1 -; (package -; (name "go-github-com-gopherjs-gopherjs") -; (version "0.0.0-20181017120253-0766667cb4d1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/gopherjs/gopherjs") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "13pfc9sxiwjky2lm1xb3i3lcisn8p6mgjk2d927l7r92ysph8dmw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/gopherjs/gopherjs")) -; (home-page "https://github.com/gopherjs/gopherjs") -; (synopsis "GopherJS - A compiler from Go to JavaScript") -; (description -; "GopherJS compiles Go code (@url{https://golang.org/,golang.org}) to pure JavaScript code. Its main purpose is to give you the opportunity to write front-end code in Go which will still run in all browsers.") -; (license license:bsd-2))) -; -;(define-public go-github-com-jtolds-gls-4.20.0+incompatible -; (package -; (name "go-github-com-jtolds-gls") -; (version "4.20.0+incompatible") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/jtolio/gls") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1k7xd2q2ysv2xsh373qs801v6f359240kx0vrl0ydh7731lngvk6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/jtolds/gls")) -; (home-page "https://github.com/jtolds/gls") -; (synopsis "gls") -; (description "Package gls implements goroutine-local storage. -;") -; (license license:expat))) -; -;(define-public go-github-com-smartystreets-assertions-0.0.0-20180927180507-b2de0cb4f26d -; (package -; (name "go-github-com-smartystreets-assertions") -; (version "0.0.0-20180927180507-b2de0cb4f26d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/smartystreets/assertions") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1i7ldgavgl35c7gk25p7bvdr282ckng090zr4ch9mk1705akx09y")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/smartystreets/assertions")) -; (home-page "https://github.com/smartystreets/assertions") -; (synopsis #f) -; (description -; "Package assertions contains the implementations for all assertions which -;are referenced in goconvey's `convey` package -;(github.com/smartystreets/goconvey/convey) and gunit (github.com/smartystreets/gunit) -;for use with the So(...) method. -;They can also be used in traditional Go test functions and even in -;applications. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-tools-0.0.0-20190328211700-ab21143f2384 -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20190328211700-ab21143f2384") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "15fk0psk53pplpyghz55bhay0kvsv5rikmn5hwgjnnyxq9vfy178")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-github-com-smartystreets-goconvey-0.0.0-20190330032615-68dc04aab96a -; (package -; (name "go-github-com-smartystreets-goconvey") -; (version "0.0.0-20190330032615-68dc04aab96a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/smartystreets/goconvey") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1kas5v95fzhr88hg4rjy0vp03y4pzvy3pwwgkfz2yhn5nlj29nk6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/smartystreets/goconvey")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20190328211700-ab21143f2384" -; ,go-golang-org-x-tools-0.0.0-20190328211700-ab21143f2384) -; ("go-github-com-smartystreets-assertions-0.0.0-20180927180507-b2de0cb4f26d" -; ,go-github-com-smartystreets-assertions-0.0.0-20180927180507-b2de0cb4f26d) -; ("go-github-com-jtolds-gls-4.20.0+incompatible" -; ,go-github-com-jtolds-gls-4.20.0+incompatible) -; ("go-github-com-gopherjs-gopherjs-0.0.0-20181017120253-0766667cb4d1" -; ,go-github-com-gopherjs-gopherjs-0.0.0-20181017120253-0766667cb4d1))) -; (home-page "https://github.com/smartystreets/goconvey") -; (synopsis "GoConvey is awesome Go testing") -; (description -; "This executable provides an HTTP server that watches for file system changes -;to .go files within the working directory (and all nested go packages). -;Navigating to the configured host and port in a web browser will display the -;latest results of running `go test` in each go package. -;") -; (license license:expat))) -; -;(define-public go-github-com-yvasiyarov-go-metrics-0.0.0-20140926110328-57bccd1ccd43 -; (package -; (name "go-github-com-yvasiyarov-go-metrics") -; (version "0.0.0-20140926110328-57bccd1ccd43") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/yvasiyarov/go-metrics") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1rwlq9k3iii54da90fjivi13zacx2h6znppkzncvl653xhjpm26g")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/yvasiyarov/go-metrics")) -; (home-page "https://github.com/yvasiyarov/go-metrics") -; (synopsis "go-metrics") -; (description "Go port of Coda Hale's Metrics library -;") -; (license #f))) -; -;(define-public go-github-com-yvasiyarov-gorelic-0.0.0-20141212073537-a9bba5b9ab50 -; (package -; (name "go-github-com-yvasiyarov-gorelic") -; (version "0.0.0-20141212073537-a9bba5b9ab50") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/yvasiyarov/gorelic") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1niwv40k9rx2g5h6wddci9ykf1sm1d5ml9mjgdjd1ahm4wfq08gn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/yvasiyarov/gorelic")) -; (home-page "https://github.com/yvasiyarov/gorelic") -; (synopsis "GoRelic is deprecated in favour of") -; (description -; "Package gorelic is an New Relic agent implementation for Go runtime. It collect a lot of metrics about Go scheduler, garbage collector and memory allocator and send them to NewRelic. -;") -; (license license:bsd-2))) -; -;(define-public go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20140908184405-b21fdbd4370f -; (package -; (name "go-github-com-yvasiyarov-newrelic-platform-go") -; (version "0.0.0-20140908184405-b21fdbd4370f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/yvasiyarov/newrelic_platform_go") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0a4yncdxwsy0rn3bhkadfysm817b7ndzmh9fkg8hh92pnw5aabzw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/yvasiyarov/newrelic_platform_go")) -; (home-page "https://github.com/yvasiyarov/newrelic_platform_go") -; (synopsis "New Relic Platform Agent SDK for Go(golang)") -; (description -; "Package newrelic_platform_go is New Relic Platform Agent SDK for Go language. -;") -; (license license:bsd-2))) -; -;(define-public go-golang-org-x-net-0.0.0-20190619014844-b5b0513f8c1b -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20190619014844-b5b0513f8c1b") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0sr4gbiq09izkmm6hcmfnia6lz6ngzzqjbwlrzh7jifbzyck53wz")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190602015325-4c4f7f33c9ed -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190602015325-4c4f7f33c9ed") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "191001bxqyc3xfs46nnqmm7jdk0r73vk7a4zqngfl7zwjv9smwsq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-api-0.0.0-20160322025152-9bf6e6e569ff -; (package -; (name "go-google-golang-org-api") -; (version "0.0.0-20160322025152-9bf6e6e569ff") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-api-go-client") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "02zn0zr4jrkdnxhxa0h3vm30j27bsc4lcswrffilkrafbspjsrxz")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/api")) -; (home-page "https://google.golang.org/api") -; (synopsis "Google APIs Client Library for Go") -; (description -; "Package api is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of -;sub-packages. -;") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-cloud-0.0.0-20151119220103-975617b05ea8 -; (package -; (name "go-google-golang-org-cloud") -; (version "0.0.0-20151119220103-975617b05ea8") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-cloud-go") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "156jhn1kakr98jfk830y4yr8lhisdj6qs38ypa42ddmgza9qcmdd")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/cloud")) -; (home-page "https://google.golang.org/cloud") -; (synopsis "Google Cloud Client Libraries for Go") -; (description -; "Package cloud is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -;of sub-packages. -;") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-grpc-0.0.0-20160317175043-d3ddb4469d5a -; (package -; (name "go-google-golang-org-grpc") -; (version "0.0.0-20160317175043-d3ddb4469d5a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0p45by0s66ragvx9hs8gkz1k1gy8456y794b5zspa0b86y2b53w9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-gopkg-in-check-v1-1.0.0-20141024133853-64131543e789 -; (package -; (name "go-gopkg-in-check-v1") -; (version "1.0.0-20141024133853-64131543e789") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/check.v1") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "01sz40asq0zwf6j7q2hww33wr1cflglngq8xazw466c9d1f9kyyh")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) -; (home-page "https://gopkg.in/check.v1") -; (synopsis "Instructions") -; (description -; "Package check is a rich testing extension for Go's testing package. -;") -; (license license:bsd-2))) -; -;(define-public go-github-com-docker-distribution-0.0.0-20190905152932-14b96e55d84c -; (package -; (name "go-github-com-docker-distribution") -; (version "0.0.0-20190905152932-14b96e55d84c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/distribution/distribution") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0jd7ccjy7ahznsh6hf9dhqbgn9glwc0db9g5nv8n6sys5d1jdni9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/docker/distribution")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) -; ("go-gopkg-in-check-v1-1.0.0-20141024133853-64131543e789" -; ,go-gopkg-in-check-v1-1.0.0-20141024133853-64131543e789) -; ("go-google-golang-org-grpc-0.0.0-20160317175043-d3ddb4469d5a" -; ,go-google-golang-org-grpc-0.0.0-20160317175043-d3ddb4469d5a) -; ("go-google-golang-org-cloud-0.0.0-20151119220103-975617b05ea8" -; ,go-google-golang-org-cloud-0.0.0-20151119220103-975617b05ea8) -; ("go-google-golang-org-api-0.0.0-20160322025152-9bf6e6e569ff" -; ,go-google-golang-org-api-0.0.0-20160322025152-9bf6e6e569ff) -; ("go-golang-org-x-sys-0.0.0-20190602015325-4c4f7f33c9ed" -; ,go-golang-org-x-sys-0.0.0-20190602015325-4c4f7f33c9ed) -; ("go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45" -; ,go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45) -; ("go-golang-org-x-net-0.0.0-20190619014844-b5b0513f8c1b" -; ,go-golang-org-x-net-0.0.0-20190619014844-b5b0513f8c1b) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2) -; ("go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20140908184405-b21fdbd4370f" -; ,go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20140908184405-b21fdbd4370f) -; ("go-github-com-yvasiyarov-gorelic-0.0.0-20141212073537-a9bba5b9ab50" -; ,go-github-com-yvasiyarov-gorelic-0.0.0-20141212073537-a9bba5b9ab50) -; ("go-github-com-yvasiyarov-go-metrics-0.0.0-20140926110328-57bccd1ccd43" -; ,go-github-com-yvasiyarov-go-metrics-0.0.0-20140926110328-57bccd1ccd43) -; ("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0) -; ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) -; ("go-github-com-spf13-cobra-0.0.3" ,go-github-com-spf13-cobra-0.0.3) -; ("go-github-com-smartystreets-goconvey-0.0.0-20190330032615-68dc04aab96a" -; ,go-github-com-smartystreets-goconvey-0.0.0-20190330032615-68dc04aab96a) -; ("go-github-com-sirupsen-logrus-1.4.2" -; ,go-github-com-sirupsen-logrus-1.4.2) -; ("go-github-com-satori-go-uuid-1.2.0" -; ,go-github-com-satori-go-uuid-1.2.0) -; ("go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7" -; ,go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7) -; ("go-github-com-prometheus-common-0.0.0-20180110214958-89604d197083" -; ,go-github-com-prometheus-common-0.0.0-20180110214958-89604d197083) -; ("go-github-com-prometheus-client-model-0.0.0-20171117100541-99fa1f4be8e5" -; ,go-github-com-prometheus-client-model-0.0.0-20171117100541-99fa1f4be8e5) -; ("go-github-com-prometheus-client-golang-0.0.0-20180209125602-c332b6f63c06" -; ,go-github-com-prometheus-client-golang-0.0.0-20180209125602-c332b6f63c06) -; ("go-github-com-opencontainers-image-spec-1.0.0" -; ,go-github-com-opencontainers-image-spec-1.0.0) -; ("go-github-com-opencontainers-go-digest-0.0.0-20170106003457-a6d0ee40d420" -; ,go-github-com-opencontainers-go-digest-0.0.0-20170106003457-a6d0ee40d420) -; ("go-github-com-ncw-swift-1.0.47" ,go-github-com-ncw-swift-1.0.47) -; ("go-github-com-mitchellh-osext-0.0.0-20151018003038-5e2d6d41470f" -; ,go-github-com-mitchellh-osext-0.0.0-20151018003038-5e2d6d41470f) -; ("go-github-com-mitchellh-mapstructure-1.1.2" -; ,go-github-com-mitchellh-mapstructure-1.1.2) -; ("go-github-com-matttproud-golang-protobuf-extensions-1.0.1" -; ,go-github-com-matttproud-golang-protobuf-extensions-1.0.1) -; ("go-github-com-marstr-guid-1.1.0" ,go-github-com-marstr-guid-1.1.0) -; ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) -; ("go-github-com-jmespath-go-jmespath-0.0.0-20160803190731-bd40a432e4c7" -; ,go-github-com-jmespath-go-jmespath-0.0.0-20160803190731-bd40a432e4c7) -; ("go-github-com-inconshreveable-mousetrap-1.0.0" -; ,go-github-com-inconshreveable-mousetrap-1.0.0) -; ("go-github-com-gorilla-mux-1.7.2" ,go-github-com-gorilla-mux-1.7.2) -; ("go-github-com-gorilla-handlers-0.0.0-20150720190736-60c7bfde3e33" -; ,go-github-com-gorilla-handlers-0.0.0-20150720190736-60c7bfde3e33) -; ("go-github-com-garyburd-redigo-0.0.0-20150301180006-535138d7bcd7" -; ,go-github-com-garyburd-redigo-0.0.0-20150301180006-535138d7bcd7) -; ("go-github-com-docker-libtrust-0.0.0-20150114040149-fa567046d9b1" -; ,go-github-com-docker-libtrust-0.0.0-20150114040149-fa567046d9b1) -; ("go-github-com-docker-go-metrics-0.0.0-20180209012529-399ea8c73916" -; ,go-github-com-docker-go-metrics-0.0.0-20180209012529-399ea8c73916) -; ("go-github-com-dnaeon-go-vcr-1.0.1" -; ,go-github-com-dnaeon-go-vcr-1.0.1) -; ("go-github-com-dgrijalva-jwt-go-0.0.0-20170104182250-a601269ab70c" -; ,go-github-com-dgrijalva-jwt-go-0.0.0-20170104182250-a601269ab70c) -; ("go-github-com-denverdino-aliyungo-0.0.0-20190125010748-a747050bb1ba" -; ,go-github-com-denverdino-aliyungo-0.0.0-20190125010748-a747050bb1ba) -; ("go-github-com-bugsnag-panicwrap-0.0.0-20151223152923-e2c28503fcd0" -; ,go-github-com-bugsnag-panicwrap-0.0.0-20151223152923-e2c28503fcd0) -; ("go-github-com-bugsnag-osext-0.0.0-20130617224835-0dd3f918b21b" -; ,go-github-com-bugsnag-osext-0.0.0-20130617224835-0dd3f918b21b) -; ("go-github-com-bugsnag-bugsnag-go-0.0.0-20141110184014-b1d153021fcd" -; ,go-github-com-bugsnag-bugsnag-go-0.0.0-20141110184014-b1d153021fcd) -; ("go-github-com-bshuster-repo-logrus-logstash-hook-0.4.1" -; ,go-github-com-bshuster-repo-logrus-logstash-hook-0.4.1) -; ("go-github-com-bmizerany-assert-0.0.0-20160611221934-b7ed37b82869" -; ,go-github-com-bmizerany-assert-0.0.0-20160611221934-b7ed37b82869) -; ("go-github-com-bitly-go-simplejson-0.5.0" -; ,go-github-com-bitly-go-simplejson-0.5.0) -; ("go-github-com-beorn7-perks-0.0.0-20160804104726-4c0e84591b9a" -; ,go-github-com-beorn7-perks-0.0.0-20160804104726-4c0e84591b9a) -; ("go-github-com-aws-aws-sdk-go-1.15.11" -; ,go-github-com-aws-aws-sdk-go-1.15.11) -; ("go-github-com-shopify-logrus-bugsnag-0.0.0-20171204204709-577dee27f20d" -; ,go-github-com-shopify-logrus-bugsnag-0.0.0-20171204204709-577dee27f20d) -; ("go-github-com-azure-go-autorest-10.8.1+incompatible" -; ,go-github-com-azure-go-autorest-10.8.1+incompatible) -; ("go-github-com-azure-azure-sdk-for-go-16.2.1+incompatible" -; ,go-github-com-azure-azure-sdk-for-go-16.2.1+incompatible))) -; (home-page "https://github.com/docker/distribution") -; (synopsis "Distribution") -; (description -; "Package distribution will define the interfaces for the components of -;docker distribution. The goal is to allow users to reliably package, ship -;and store content related to docker images. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-gogo-protobuf-1.2.2-0.20190723190241-65acae22fc9d -; (package -; (name "go-github-com-gogo-protobuf") -; (version "1.2.2-0.20190723190241-65acae22fc9d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/gogo/protobuf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0700alky9z0g9akhrzn20wf4jr1600d0clhs32sm8chnlbvidy46")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/gogo/protobuf")) -; (propagated-inputs -; `(("go-github-com-kisielk-gotool-1.0.0" -; ,go-github-com-kisielk-gotool-1.0.0) -; ("go-github-com-kisielk-errcheck-1.2.0" -; ,go-github-com-kisielk-errcheck-1.2.0))) -; (home-page "https://github.com/gogo/protobuf") -; (synopsis "Protocol Buffers for Go with Gadgets") -; (description -; "gogoprotobuf is a fork of @url{https://github.com/golang/protobuf,golang/protobuf} with extra code generation features.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190813064441-fde4db37ae7a -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190813064441-fde4db37ae7a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "16k4w4pzziq1kln18k5fg01qgk4hpzb5xsm7175kaky6d6gwyhg3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-k8s-io-cri-api-0.17.3 -; (package -; (name "go-k8s-io-cri-api") -; (version "0.17.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes/cri-api") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "047wg80q4cb9qikpj0zp2kzcgp599cdqwiqlravfy86bga4r3fgf")))) -; (build-system go-build-system) -; (arguments '(#:import-path "k8s.io/cri-api")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190813064441-fde4db37ae7a" -; ,go-golang-org-x-sys-0.0.0-20190813064441-fde4db37ae7a) -; ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) -; ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" -; ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) -; ("go-google-golang-org-grpc-1.23.1" ,go-google-golang-org-grpc-1.23.1) -; ("go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873" -; ,go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873) -; ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) -; ("go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9" -; ,go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9) -; ("go-github-com-stretchr-testify-1.4.0" -; ,go-github-com-stretchr-testify-1.4.0) -; ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2) -; ("go-github-com-gogo-protobuf-1.2.2-0.20190723190241-65acae22fc9d" -; ,go-github-com-gogo-protobuf-1.2.2-0.20190723190241-65acae22fc9d) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://k8s.io/cri-api") -; (synopsis "Purpose") -; (description -; "This repository contains the definitions for the Container Runtime Interface (CRI). -;CRI is a plugin interface which enables kubelet to use a wide variety of container runtimes, -;without the need to recompile. CRI consists of a protocol buffers and gRPC API.") -; (license license:asl2.0))) -; -;(define-public go-github-com-microsoft-hcsshim-test-0.0.0-20201218223536-d3e5debf77da -; (package -; (name "go-github-com-microsoft-hcsshim-test") -; (version "0.0.0-20201218223536-d3e5debf77da") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/microsoft/hcsshim") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0k57knv8zrf32hp7rpv1km9j772w6752pfvdbpd3l711ism48c84")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path -; "github.com/Microsoft/hcsshim/test" -; #:unpack-path -; "github.com/Microsoft/hcsshim")) -; (propagated-inputs -; `(("go-k8s-io-cri-api-0.17.3" ,go-k8s-io-cri-api-0.17.3) -; ("go-google-golang-org-grpc-1.23.1" ,go-google-golang-org-grpc-1.23.1) -; ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" -; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) -; ("go-go-etcd-io-bbolt-1.3.3" ,go-go-etcd-io-bbolt-1.3.3) -; ("go-github-com-xeipuuv-gojsonschema-0.0.0-20180618132009-1d523034197f" -; ,go-github-com-xeipuuv-gojsonschema-0.0.0-20180618132009-1d523034197f) -; ("go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415" -; ,go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415) -; ("go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f" -; ,go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f) -; ("go-github-com-syndtr-gocapability-0.0.0-20170704070218-db04d3cc01c8" -; ,go-github-com-syndtr-gocapability-0.0.0-20170704070218-db04d3cc01c8) -; ("go-github-com-sirupsen-logrus-1.4.2" -; ,go-github-com-sirupsen-logrus-1.4.2) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39" -; ,go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39) -; ("go-github-com-opencontainers-runtime-spec-1.0.2" -; ,go-github-com-opencontainers-runtime-spec-1.0.2) -; ("go-github-com-imdario-mergo-0.3.8" -; ,go-github-com-imdario-mergo-0.3.8) -; ("go-github-com-hashicorp-go-multierror-0.0.0-20161216184304-ed905158d874" -; ,go-github-com-hashicorp-go-multierror-0.0.0-20161216184304-ed905158d874) -; ("go-github-com-hashicorp-errwrap-0.0.0-20141028054710-7554cd9344ce" -; ,go-github-com-hashicorp-errwrap-0.0.0-20141028054710-7554cd9344ce) -; ("go-github-com-gogo-protobuf-1.3.1" -; ,go-github-com-gogo-protobuf-1.3.1) -; ("go-github-com-gogo-googleapis-1.2.0" -; ,go-github-com-gogo-googleapis-1.2.0) -; ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" -; ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) -; ("go-github-com-docker-distribution-0.0.0-20190905152932-14b96e55d84c" -; ,go-github-com-docker-distribution-0.0.0-20190905152932-14b96e55d84c) -; ("go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd" -; ,go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd) -; ("go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de" -; ,go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de) -; ("go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3" -; ,go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3) -; ("go-github-com-containerd-containerd-1.3.2" -; ,go-github-com-containerd-containerd-1.3.2) -; ("go-github-com-blang-semver-3.1.0+incompatible" -; ,go-github-com-blang-semver-3.1.0+incompatible) -; ("go-github-com-microsoft-go-winio-0.4.16-0.20201130162521-d1ffc52c7331" -; ,go-github-com-microsoft-go-winio-0.4.16-0.20201130162521-d1ffc52c7331))) -; (home-page "https://github.com/Microsoft/hcsshim") -; (synopsis #f) -; (description #f) -; (license license:expat))) -; -;(define-public go-github-com-containerd-aufs-0.0.0-20200908144142-dab0cbea06f4 -; (package -; (name "go-github-com-containerd-aufs") -; (version "0.0.0-20200908144142-dab0cbea06f4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/aufs") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "060iqypyrdmww0ykip1zqi5f2fl1il55vndgdn5aq5zj6530mgsn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/aufs")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) -; ("go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449" -; ,go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449) -; ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" -; ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) -; ("go-go-etcd-io-bbolt-1.3.3" ,go-go-etcd-io-bbolt-1.3.3) -; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) -; ("go-github-com-opencontainers-runc-1.0.0-rc9" -; ,go-github-com-opencontainers-runc-1.0.0-rc9) -; ("go-github-com-opencontainers-image-spec-1.0.1" -; ,go-github-com-opencontainers-image-spec-1.0.1) -; ("go-github-com-opencontainers-go-digest-1.0.0-rc1" -; ,go-github-com-opencontainers-go-digest-1.0.0-rc1) -; ("go-github-com-google-go-cmp-0.3.1" -; ,go-github-com-google-go-cmp-0.3.1) -; ("go-github-com-gogo-protobuf-1.3.1" -; ,go-github-com-gogo-protobuf-1.3.1) -; ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" -; ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) -; ("go-github-com-containerd-typeurl-0.0.0-20190911142611-5eb25027c9fd" -; ,go-github-com-containerd-typeurl-0.0.0-20190911142611-5eb25027c9fd) -; ("go-github-com-containerd-ttrpc-0.0.0-20191028202541-4f1b8fe65a5c" -; ,go-github-com-containerd-ttrpc-0.0.0-20191028202541-4f1b8fe65a5c) -; ("go-github-com-containerd-continuity-0.0.0-20191127005431-f65d91d395eb" -; ,go-github-com-containerd-continuity-0.0.0-20191127005431-f65d91d395eb) -; ("go-github-com-containerd-containerd-1.3.1-0.20191213020239-082f7e3aed57" -; ,go-github-com-containerd-containerd-1.3.1-0.20191213020239-082f7e3aed57) -; ("go-github-com-microsoft-hcsshim-0.8.7" -; ,go-github-com-microsoft-hcsshim-0.8.7))) -; (home-page "https://github.com/containerd/aufs") -; (synopsis "aufs snapshotter") -; (description -; "AUFS implementation of the snapshot interface for containerd.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-btrfs-0.0.0-20201111183144-404b9149801e -; (package -; (name "go-github-com-containerd-btrfs") -; (version "0.0.0-20201111183144-404b9149801e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/btrfs") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "10aakvy9njaly2mfwi1cvys8dxjn27mnd7wnpnmxh8pxb7g2svag")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/btrfs")) -; (propagated-inputs -; `(("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) -; (home-page "https://github.com/containerd/btrfs") -; (synopsis "go-btrfs") -; (description -; "Package btrfs provides bindings for working with btrfs partitions from Go. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-cgroups-0.0.0-20200824123100-0b889c03f102 -; (package -; (name "go-github-com-containerd-cgroups") -; (version "0.0.0-20200824123100-0b889c03f102") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/cgroups") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1zjmphy2df9y20hzrmwxfpyyvz8vb5lazr4pjyx3c5a5x0j4rv8d")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/cgroups")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9" -; ,go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9) -; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) -; ("go-github-com-stretchr-testify-1.2.2" -; ,go-github-com-stretchr-testify-1.2.2) -; ("go-github-com-sirupsen-logrus-1.6.0" -; ,go-github-com-sirupsen-logrus-1.6.0) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-runtime-spec-1.0.2" -; ,go-github-com-opencontainers-runtime-spec-1.0.2) -; ("go-github-com-gogo-protobuf-1.3.1" -; ,go-github-com-gogo-protobuf-1.3.1) -; ("go-github-com-godbus-dbus-v5-5.0.3" -; ,go-github-com-godbus-dbus-v5-5.0.3) -; ("go-github-com-docker-go-units-0.4.0" -; ,go-github-com-docker-go-units-0.4.0) -; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" -; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) -; ("go-github-com-coreos-go-systemd-v22-22.0.0" -; ,go-github-com-coreos-go-systemd-v22-22.0.0) -; ("go-github-com-cilium-ebpf-0.0.0-20200702112145-1c8d4c9ef775" -; ,go-github-com-cilium-ebpf-0.0.0-20200702112145-1c8d4c9ef775))) -; (home-page "https://github.com/containerd/cgroups") -; (synopsis "cgroups") -; (description -; "Go package for creating, managing, inspecting, and destroying cgroups. -;The resources format for settings on the cgroup uses the OCI runtime-spec found -;@url{https://github.com/opencontainers/runtime-spec,here}.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-continuity-0.0.0-20201208142359-180525291bb7 -; (package -; (name "go-github-com-containerd-continuity") -; (version "0.0.0-20201208142359-180525291bb7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/continuity") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1di4pspqfwfafdni0in84kzyn8h1fhqb6vh4i0g5skqmrc4sxf4h")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/continuity")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3" -; ,go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3) -; ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" -; ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) -; ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" -; ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) -; ("go-github-com-stretchr-testify-1.4.0" -; ,go-github-com-stretchr-testify-1.4.0) -; ("go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95" -; ,go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95) -; ("go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee" -; ,go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee) -; ("go-github-com-sirupsen-logrus-1.6.0" -; ,go-github-com-sirupsen-logrus-1.6.0) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-go-digest-1.0.0" -; ,go-github-com-opencontainers-go-digest-1.0.0) -; ("go-github-com-inconshreveable-mousetrap-1.0.0" -; ,go-github-com-inconshreveable-mousetrap-1.0.0) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0) -; ("go-github-com-dustin-go-humanize-1.0.0" -; ,go-github-com-dustin-go-humanize-1.0.0) -; ("go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898" -; ,go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898))) -; (home-page "https://github.com/containerd/continuity") -; (synopsis "continuity") -; (description -; "This package provides a transport-agnostic, filesystem metadata manifest system") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-fifo-0.0.0-20201026212402-0724c46b320c -; (package -; (name "go-github-com-containerd-fifo") -; (version "0.0.0-20201026212402-0724c46b320c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/fifo") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "11d9j0isblnnqf78ygvwjyijjxn6zdzf7p803v0jv2py4d0pkvj8")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/fifo")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449" -; ,go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449) -; ("go-github-com-stretchr-testify-1.4.0" -; ,go-github-com-stretchr-testify-1.4.0) -; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) -; (home-page "https://github.com/containerd/fifo") -; (synopsis "fifo") -; (description "Go package for handling fifos in a sane way.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containernetworking-cni-0.8.0 -; (package -; (name "go-github-com-containernetworking-cni") -; (version "0.8.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containernetworking/cni") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "16i59dhiq7pc7qs32cdk4yv4w9rjx4vvlw7fb6a6jhq6hxxjrgiw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containernetworking/cni")) -; (home-page "https://github.com/containernetworking/cni") -; (synopsis "CNI - the Container Network Interface") -; (description -; "CNI (), a @url{https://cncf.io,Cloud Native Computing Foundation} project, consists of a specification and libraries for writing plugins to configure network interfaces in Linux containers, along with a number of supported plugins. -;CNI concerns itself only with network connectivity of containers and removing allocated resources when the container is deleted. -;Because of this focus, CNI has a wide range of support and the specification is simple to implement.") -; (license license:asl2.0))) -; -;(define-public go-github-com-onsi-ginkgo-1.10.3 -; (package -; (name "go-github-com-onsi-ginkgo") -; (version "1.10.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/onsi/ginkgo") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "00a40by9f5ylycnar8h3p9b4z5rcsvfvg4j3v5s5mchdqrqjv1pc")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/onsi/ginkgo")) -; (home-page "https://github.com/onsi/ginkgo") -; (synopsis "Ginkgo 2.0 Release Candidate is available!") -; (description "Ginkgo is a BDD-style testing framework for Golang -;") -; (license license:expat))) -; -;(define-public go-github-com-stretchr-objx-0.0.0-20180129172003-8a3f7159479f -; (package -; (name "go-github-com-stretchr-objx") -; (version "0.0.0-20180129172003-8a3f7159479f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/objx") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0rbz4x4jbq9vp3zxmv0c2wh1vbg48lmc8ncdgz7zxk7241fc31ki")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/objx")) -; (home-page "https://github.com/stretchr/objx") -; (synopsis "Objx") -; (description -; "Objx - Go package for dealing with maps, slices, JSON and other data. -;") -; (license license:expat))) -; -;(define-public go-github-com-stretchr-testify-0.0.0-20180303142811-b89eecf5ca5d -; (package -; (name "go-github-com-stretchr-testify") -; (version "0.0.0-20180303142811-b89eecf5ca5d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/testify") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0g946ii8qjaynvidj648z8izl91i6yhy0ir6g3qsrn136im3r8wk")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/testify")) -; (home-page "https://github.com/stretchr/testify") -; (synopsis "Testify - Thou Shalt Write Tests") -; (description -; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -;") -; (license license:expat))) -; -;(define-public go-github-com-containerd-go-cni-1.0.1 -; (package -; (name "go-github-com-containerd-go-cni") -; (version "1.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/go-cni") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0sdlwa4d0kzpm3vg9jy6fxqqcfjq8innv1zjcyp8n9qy8vj9b24y")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/go-cni")) -; (propagated-inputs -; `(("go-github-com-stretchr-testify-0.0.0-20180303142811-b89eecf5ca5d" -; ,go-github-com-stretchr-testify-0.0.0-20180303142811-b89eecf5ca5d) -; ("go-github-com-stretchr-objx-0.0.0-20180129172003-8a3f7159479f" -; ,go-github-com-stretchr-objx-0.0.0-20180129172003-8a3f7159479f) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-onsi-gomega-1.7.1" ,go-github-com-onsi-gomega-1.7.1) -; ("go-github-com-onsi-ginkgo-1.10.3" ,go-github-com-onsi-ginkgo-1.10.3) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1) -; ("go-github-com-containernetworking-cni-0.8.0" -; ,go-github-com-containernetworking-cni-0.8.0))) -; (home-page "https://github.com/containerd/go-cni") -; (synopsis "go-cni") -; (description -; "This package provides a generic CNI library to provide APIs for CNI plugin interactions. The library provides APIs to:") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-console-0.0.0-20191206165004-02ecf6a7291e -; (package -; (name "go-github-com-containerd-console") -; (version "0.0.0-20191206165004-02ecf6a7291e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/console") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1b3yq446gv8da4fajknbjxr5syz1ypz0nii9sqw066hx8kmqzgqh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/console")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e" -; ,go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e) -; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) -; (home-page "https://github.com/containerd/console") -; (synopsis "console") -; (description -; "Golang package for dealing with consoles. Light on deps and a simple API.") -; (license license:asl2.0))) -; -;(define-public go-github-com-opencontainers-runtime-spec-1.0.1 -; (package -; (name "go-github-com-opencontainers-runtime-spec") -; (version "1.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/runtime-spec") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "00qb0q7ndxsll12ilp5a8pqfi4i1jqrlqzv0yf7sn52lkrdrw5f4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) -; (home-page "https://github.com/opencontainers/runtime-spec") -; (synopsis "Open Container Initiative Runtime Specification") -; (description -; "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328 -; (package -; (name "go-github-com-containerd-go-runc") -; (version "0.0.0-20200220073739-7016d3ce2328") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/go-runc") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1mx2lvfkxw9kiyhi18g3c6hcpb9r2115zjzyvz6rkdqr08xrij9k")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/go-runc")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449" -; ,go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449) -; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) -; ("go-github-com-opencontainers-runtime-spec-1.0.1" -; ,go-github-com-opencontainers-runtime-spec-1.0.1) -; ("go-github-com-containerd-console-0.0.0-20191206165004-02ecf6a7291e" -; ,go-github-com-containerd-console-0.0.0-20191206165004-02ecf6a7291e))) -; (home-page "https://github.com/containerd/go-runc") -; (synopsis "go-runc") -; (description -; "This is a package for consuming the @url{https://github.com/opencontainers/runc,runc} binary in your Go applications. -;It tries to expose all the settings and features of the runc CLI. If there is something missing then add it, its opensource!") -; (license license:asl2.0))) -; -;(define-public go-github-com-microsoft-go-winio-0.4.14 -; (package -; (name "go-github-com-microsoft-go-winio") -; (version "0.4.14") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/microsoft/go-winio") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0n34wi9l9ks2z3cz97j30ljfmqppwf1zxr16hwbnswyrk54fcxm3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/Microsoft/go-winio")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b" -; ,go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b) -; ("go-github-com-sirupsen-logrus-1.4.1" -; ,go-github-com-sirupsen-logrus-1.4.1) -; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) -; (home-page "https://github.com/Microsoft/go-winio") -; (synopsis "go-winio") -; (description -; "This repository contains utilities for efficiently performing Win32 IO operations in -;Go. Currently, this is focused on accessing named pipes and other file handles, and -;for using named pipes as a net transport.") -; (license license:expat))) -; -;(define-public go-github-com-microsoft-hcsshim-0.8.7-0.20190325164909-8abdbb8205e4 -; (package -; (name "go-github-com-microsoft-hcsshim") -; (version "0.8.7-0.20190325164909-8abdbb8205e4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/microsoft/hcsshim") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0029085clghvprb3bs2m9q7xk4njx5fg2gr5wm3a0y8kqx0awv45")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/Microsoft/hcsshim")) -; (home-page "https://github.com/Microsoft/hcsshim") -; (synopsis "hcsshim") -; (description -; "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") -; (license license:expat))) -; -;(define-public go-github-com-containerd-cgroups-0.0.0-20190717030353-c4b9ac5c7601 -; (package -; (name "go-github-com-containerd-cgroups") -; (version "0.0.0-20190717030353-c4b9ac5c7601") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/cgroups") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1fpai6nsm7qd5zfd8ykq8j4ngbqcy5v2isw16j086j0qabyw2iiw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/cgroups")) -; (home-page "https://github.com/containerd/cgroups") -; (synopsis "cgroups") -; (description -; "Go package for creating, managing, inspecting, and destroying cgroups. -;The resources format for settings on the cgroup uses the OCI runtime-spec found -;@url{https://github.com/opencontainers/runtime-spec,here}.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-console-0.0.0-20181022165439-0650fd9eeb50 -; (package -; (name "go-github-com-containerd-console") -; (version "0.0.0-20181022165439-0650fd9eeb50") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/console") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0cs11g3gjan15rnbgryf60725sw2hf83fb6y2hwn1rgcm0jab1b8")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/console")) -; (home-page "https://github.com/containerd/console") -; (synopsis "console") -; (description -; "Golang package for dealing with consoles. Light on deps and a simple API.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-containerd-1.3.0 -; (package -; (name "go-github-com-containerd-containerd") -; (version "1.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/containerd") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "05mr33l0rhkj49n6wf9lk95ijqvqwhp68ll879rpad1ypfv2f8as")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/containerd")) -; (home-page "https://github.com/containerd/containerd") -; (synopsis "Now Recruiting") -; (description -; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-continuity-0.0.0-20190815185530-f2a389ac0a02 -; (package -; (name "go-github-com-containerd-continuity") -; (version "0.0.0-20190815185530-f2a389ac0a02") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/continuity") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0h8a7npx46sjak0dyypkgg0h5dkq6dqpa4gx1v22ik62rmw0jy8r")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/continuity")) -; (home-page "https://github.com/containerd/continuity") -; (synopsis "continuity") -; (description -; "This package provides a transport-agnostic, filesystem metadata manifest system") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-fifo-0.0.0-20180307165137-3d5202aec260 -; (package -; (name "go-github-com-containerd-fifo") -; (version "0.0.0-20180307165137-3d5202aec260") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/fifo") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "11jp12vgfj0xg9m2w5cfay72fwrxb6w8za7rkcqw8yy8hypiqqxq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/fifo")) -; (home-page "https://github.com/containerd/fifo") -; (synopsis "fifo") -; (description "Go package for handling fifos in a sane way.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-go-runc-0.0.0-20190911050354-e029b79d8cda -; (package -; (name "go-github-com-containerd-go-runc") -; (version "0.0.0-20190911050354-e029b79d8cda") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/go-runc") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0zwb6bfnfmj09rnz1z3xx1y2pm4wrhyp2ls7vmf7p62j5zyvdpkw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/go-runc")) -; (home-page "https://github.com/containerd/go-runc") -; (synopsis "go-runc") -; (description -; "This is a package for consuming the @url{https://github.com/opencontainers/runc,runc} binary in your Go applications. -;It tries to expose all the settings and features of the runc CLI. If there is something missing then add it, its opensource!") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-ttrpc-0.0.0-20190828172938-92c8520ef9f8 -; (package -; (name "go-github-com-containerd-ttrpc") -; (version "0.0.0-20190828172938-92c8520ef9f8") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/ttrpc") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1kzclhmicw2xkiqsg6npx0xzs5jx36mqmyd0gj5dzv88i7p4b8dx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/ttrpc")) -; (home-page "https://github.com/containerd/ttrpc") -; (synopsis "ttrpc") -; (description "GRPC for low-memory environments.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-containerd-1.2.10 -; (package -; (name "go-github-com-containerd-containerd") -; (version "1.2.10") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/containerd") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1kddhkd93wkrimk0yjcqiavdrqc818nd39rf3wrgxyilx1mfnrwb")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/containerd")) -; (home-page "https://github.com/containerd/containerd") -; (synopsis "Now Recruiting") -; (description -; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") -; (license license:asl2.0))) -; -;(define-public go-github-com-fullsailor-pkcs7-0.0.0-20190404230743-d7302db945fa -; (package -; (name "go-github-com-fullsailor-pkcs7") -; (version "0.0.0-20190404230743-d7302db945fa") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/fullsailor/pkcs7") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "13d7dpj85j36pxwg1kn7b23rm54va5p9v3vdcx27pma2jjlsxsm1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/fullsailor/pkcs7")) -; (home-page "https://github.com/fullsailor/pkcs7") -; (synopsis "pkcs7") -; (description -; "Package pkcs7 implements parsing and generation of some PKCS#7 structures. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20190701094942-4def268fd1a4 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20190701094942-4def268fd1a4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1bfsnari529gw34cz0zqk3d9mrkcj1ay35kangri8kbgll0ss5a6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" -; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) -; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" -; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-gopkg-in-square-go-jose-v2-2.3.1 -; (package -; (name "go-gopkg-in-square-go-jose-v2") -; (version "2.3.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/square/go-jose.v2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "11r93g9xrcjqj7qvq8sbd5hy5rnbpmim0vdsp6rbav8gl7wimaa3")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path -; "gopkg.in/square/go-jose.v2" -; #:unpack-path -; "gopkg.in/square/go-jose.v2")) -; (home-page "https://gopkg.in/square/go-jose.v2") -; (synopsis "Go JOSE") -; (description -; "Package jose aims to provide an implementation of the Javascript Object Signing -;and Encryption set of standards. It implements encryption and signing based on -;the JSON Web Encryption and JSON Web Signature standards, with optional JSON -;Web Token support available in a sub-package. The library supports both the -;compact and full serialization formats, and has optional support for multiple -;recipients. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-containers-ocicrypt-1.0.1 -; (package -; (name "go-github-com-containers-ocicrypt") -; (version "1.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containers/ocicrypt") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0q27vzgdsimypkpi7iv0rl1xz571554adphyl0j8b5qa8wrf0n7v")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containers/ocicrypt")) -; (propagated-inputs -; `(("go-gotest-tools-2.2.0+incompatible" -; ,go-gotest-tools-2.2.0+incompatible) -; ("go-gopkg-in-square-go-jose-v2-2.3.1" -; ,go-gopkg-in-square-go-jose-v2-2.3.1) -; ("go-google-golang-org-grpc-1.24.0" ,go-google-golang-org-grpc-1.24.0) -; ("go-golang-org-x-crypto-0.0.0-20190701094942-4def268fd1a4" -; ,go-golang-org-x-crypto-0.0.0-20190701094942-4def268fd1a4) -; ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) -; ("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0) -; ("go-github-com-sirupsen-logrus-1.4.2" -; ,go-github-com-sirupsen-logrus-1.4.2) -; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) -; ("go-github-com-opencontainers-image-spec-1.0.1" -; ,go-github-com-opencontainers-image-spec-1.0.1) -; ("go-github-com-opencontainers-go-digest-1.0.0-rc1" -; ,go-github-com-opencontainers-go-digest-1.0.0-rc1) -; ("go-github-com-fullsailor-pkcs7-0.0.0-20190404230743-d7302db945fa" -; ,go-github-com-fullsailor-pkcs7-0.0.0-20190404230743-d7302db945fa) -; ("go-github-com-containerd-containerd-1.2.10" -; ,go-github-com-containerd-containerd-1.2.10))) -; (home-page "https://github.com/containers/ocicrypt") -; (synopsis "OCIcrypt Library") -; (description -; "The @code{ocicrypt} library is the OCI image spec implementation of container image encryption. More details of the spec can be seen in the @url{https://github.com/opencontainers/image-spec/pull/775,OCI repository}. The purpose of this library is to encode spec structures and consts in code, as well as provide a consistent implementation of image encryption across container runtimes and build tools.") -; (license license:asl2.0))) -; -;(define-public go-github-com-coreos-go-systemd-0.0.0-20161114122254-48702e0da86b -; (package -; (name "go-github-com-coreos-go-systemd") -; (version "0.0.0-20161114122254-48702e0da86b") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/coreos/go-systemd") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "04zl9ns4j3lpjykf32rv5cb6sj9x5ci8yi90vab1bl27vnqjgdkh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/coreos/go-systemd")) -; (home-page "https://github.com/coreos/go-systemd") -; (synopsis "go-systemd") -; (description "Go bindings to systemd. The project has several packages:") -; (license license:asl2.0))) -; -;(define-public go-github-com-docker-distribution-2.7.1-0.20190205005809-0d3efadf0154+incompatible -; (package -; (name "go-github-com-docker-distribution") -; (version "2.7.1-0.20190205005809-0d3efadf0154+incompatible") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/distribution/distribution") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1wayhmcxr6l281fqkbw1gh0ymhxlznf4jj1rcldhwrc64l2zjh8l")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/docker/distribution")) -; (home-page "https://github.com/docker/distribution") -; (synopsis "Distribution") -; (description -; "Package distribution will define the interfaces for the components of -;docker distribution. The goal is to allow users to reliably package, ship -;and store content related to docker images. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-docker-go-events-0.0.0-20170721190031-9461782956ad -; (package -; (name "go-github-com-docker-go-events") -; (version "0.0.0-20170721190031-9461782956ad") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/docker/go-events") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0vn0kd0w253jwdk86gv1h6s8p6bzxiyif74xdzlb39zr6fdrr145")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/docker/go-events")) -; (home-page "https://github.com/docker/go-events") -; (synopsis "Docker Events Package") -; (description -; "The Docker @code{events} package implements a composable event distribution package -;for Go.") -; (license license:asl2.0))) -; -;(define-public go-github-com-godbus-dbus-0.0.0-20151105175453-c7fdd8b5cd55 -; (package -; (name "go-github-com-godbus-dbus") -; (version "0.0.0-20151105175453-c7fdd8b5cd55") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/godbus/dbus") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "09zazkiny2im24xaiac5kbyhhnbqdbhwi9z9n7fj6rhpg8msiq9n")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/godbus/dbus")) -; (home-page "https://github.com/godbus/dbus") -; (synopsis "dbus") -; (description -; "Package dbus implements bindings to the D-Bus message bus system. -;") -; (license license:bsd-2))) -; -;(define-public go-github-com-gogo-googleapis-1.2.0 -; (package -; (name "go-github-com-gogo-googleapis") -; (version "1.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/gogo/googleapis") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1a82n0xp0v8lgjxzl3aa595r0rmy7afgyn2l3kv6z9kzw339i0jp")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/gogo/googleapis")) -; (propagated-inputs -; `(("go-github-com-gogo-protobuf-1.2.1" -; ,go-github-com-gogo-protobuf-1.2.1))) -; (home-page "https://github.com/gogo/googleapis") -; (synopsis "Google APIs generated by gogoprotobuf") -; (description -; "The @url{https://github.com/gogo/grpc-example,grpc-example} includes an example usage of this repository.") -; (license license:asl2.0))) -; -;(define-public go-github-com-imdario-mergo-0.3.8 -; (package -; (name "go-github-com-imdario-mergo") -; (version "0.3.8") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/imdario/mergo") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "15xwyrnwng11ib0fxi7clwick2r0njwn0gs3va2g5m1ad418ry57")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/imdario/mergo")) -; (home-page "https://github.com/imdario/mergo") -; (synopsis "Mergo") -; (description -; "This package provides a helper to merge structs and maps in Golang. Useful for configuration default values, avoiding messy if-statements. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-opencontainers-go-digest-1.0.0-rc1.0.20180430190053-c9281466c8b2 -; (package -; (name "go-github-com-opencontainers-go-digest") -; (version "1.0.0-rc1.0.20180430190053-c9281466c8b2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/go-digest") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1djdazssy27xn91pjhx3dgb0f11bnlzzbwkh7f8zwnpz011anasi")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/go-digest")) -; (home-page "https://github.com/opencontainers/go-digest") -; (synopsis "go-digest") -; (description -; "Package digest provides a generalized type to opaquely represent message -;digests and their operations within the registry. The Digest type is -;designed to serve as a flexible identifier in a content-addressable system. -;More importantly, it provides tools and wrappers to work with -;hash.Hash-based digests with little effort. -;") -; (license (list license:asl2.0 license:cc-by-sa4.0)))) -; -;(define-public go-github-com-opencontainers-runc-1.0.0-rc8.0.20190926000215-3e425f80a8c9 -; (package -; (name "go-github-com-opencontainers-runc") -; (version "1.0.0-rc8.0.20190926000215-3e425f80a8c9") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/runc") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "18psc830b2rkwml1x6vxngam5b5wi3pj14mw817rshpzy87prspj")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/runc")) -; (home-page "https://github.com/opencontainers/runc") -; (synopsis "runc") -; (description -; "@code{runc} is a CLI tool for spawning and running containers according to the OCI specification.") -; (license license:asl2.0))) -; -;(define-public go-github-com-opencontainers-runtime-spec-1.0.2-0.20190207185410-29686dbc5559 -; (package -; (name "go-github-com-opencontainers-runtime-spec") -; (version "1.0.2-0.20190207185410-29686dbc5559") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/runtime-spec") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0i8q3520jk4yl9rsxs8mn5vsi9i0gd3drysbhciaqwm5l8c30h65")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) -; (home-page "https://github.com/opencontainers/runtime-spec") -; (synopsis "Open Container Initiative Runtime Specification") -; (description -; "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") -; (license license:asl2.0))) -; -;(define-public go-github-com-prometheus-procfs-0.0.8 -; (package -; (name "go-github-com-prometheus-procfs") -; (version "0.0.8") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/procfs") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "076wblhz8fjdc73fmz1lg0hafbwg1xv8hszm78lbg9anjpfgacvq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/procfs")) -; (propagated-inputs -; `(("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" -; ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) -; ("go-github-com-google-go-cmp-0.3.1" -; ,go-github-com-google-go-cmp-0.3.1))) -; (home-page "https://github.com/prometheus/procfs") -; (synopsis "procfs") -; (description -; "Package procfs provides functions to retrieve system, kernel and process -;metrics from the pseudo-filesystem proc. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190812073006-9eafafc0a87e -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190812073006-9eafafc0a87e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0g5wcpiafz47066993mgz77gka9qzww6w6crxpnyir0459j7z07r")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-grpc-1.24.0 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.24.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0h8mwv74vzcfb7p4ai247x094skxca71vjp4wpj2wzmri0x9p4v6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" -; ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) -; ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" -; ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) -; ("go-google-golang-org-appengine-1.1.0" -; ,go-google-golang-org-appengine-1.1.0) -; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" -; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-github-com-google-go-cmp-0.2.0" -; ,go-github-com-google-go-cmp-0.2.0) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2) -; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-client9-misspell-0.3.4" -; ,go-github-com-client9-misspell-0.3.4) -; ("go-github-com-burntsushi-toml-0.3.1" -; ,go-github-com-burntsushi-toml-0.3.1) -; ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-imgcrypt-1.0.1 -; (package -; (name "go-github-com-containerd-imgcrypt") -; (version "1.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/imgcrypt") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0y0gbnp8imckw6rv3sjf3sycp8rc9lyhv0pp0x3q3yksvqmbqh5v")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/imgcrypt")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.24.0" ,go-google-golang-org-grpc-1.24.0) -; ("go-golang-org-x-sys-0.0.0-20190812073006-9eafafc0a87e" -; ,go-golang-org-x-sys-0.0.0-20190812073006-9eafafc0a87e) -; ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" -; ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) -; ("go-golang-org-x-net-0.0.0-20190522155817-f3200d17e092" -; ,go-golang-org-x-net-0.0.0-20190522155817-f3200d17e092) -; ("go-go-etcd-io-bbolt-1.3.3" ,go-go-etcd-io-bbolt-1.3.3) -; ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) -; ("go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2" -; ,go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2) -; ("go-github-com-sirupsen-logrus-1.4.2" -; ,go-github-com-sirupsen-logrus-1.4.2) -; ("go-github-com-prometheus-procfs-0.0.8" -; ,go-github-com-prometheus-procfs-0.0.8) -; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) -; ("go-github-com-opencontainers-runtime-spec-1.0.2-0.20190207185410-29686dbc5559" -; ,go-github-com-opencontainers-runtime-spec-1.0.2-0.20190207185410-29686dbc5559) -; ("go-github-com-opencontainers-runc-1.0.0-rc8.0.20190926000215-3e425f80a8c9" -; ,go-github-com-opencontainers-runc-1.0.0-rc8.0.20190926000215-3e425f80a8c9) -; ("go-github-com-opencontainers-image-spec-1.0.1" -; ,go-github-com-opencontainers-image-spec-1.0.1) -; ("go-github-com-opencontainers-go-digest-1.0.0-rc1.0.20180430190053-c9281466c8b2" -; ,go-github-com-opencontainers-go-digest-1.0.0-rc1.0.20180430190053-c9281466c8b2) -; ("go-github-com-imdario-mergo-0.3.8" -; ,go-github-com-imdario-mergo-0.3.8) -; ("go-github-com-gogo-protobuf-1.2.1" -; ,go-github-com-gogo-protobuf-1.2.1) -; ("go-github-com-gogo-googleapis-1.2.0" -; ,go-github-com-gogo-googleapis-1.2.0) -; ("go-github-com-godbus-dbus-0.0.0-20151105175453-c7fdd8b5cd55" -; ,go-github-com-godbus-dbus-0.0.0-20151105175453-c7fdd8b5cd55) -; ("go-github-com-docker-go-units-0.4.0" -; ,go-github-com-docker-go-units-0.4.0) -; ("go-github-com-docker-go-events-0.0.0-20170721190031-9461782956ad" -; ,go-github-com-docker-go-events-0.0.0-20170721190031-9461782956ad) -; ("go-github-com-docker-distribution-2.7.1-0.20190205005809-0d3efadf0154+incompatible" -; ,go-github-com-docker-distribution-2.7.1-0.20190205005809-0d3efadf0154+incompatible) -; ("go-github-com-coreos-go-systemd-0.0.0-20161114122254-48702e0da86b" -; ,go-github-com-coreos-go-systemd-0.0.0-20161114122254-48702e0da86b) -; ("go-github-com-containers-ocicrypt-1.0.1" -; ,go-github-com-containers-ocicrypt-1.0.1) -; ("go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd" -; ,go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd) -; ("go-github-com-containerd-ttrpc-0.0.0-20190828172938-92c8520ef9f8" -; ,go-github-com-containerd-ttrpc-0.0.0-20190828172938-92c8520ef9f8) -; ("go-github-com-containerd-go-runc-0.0.0-20190911050354-e029b79d8cda" -; ,go-github-com-containerd-go-runc-0.0.0-20190911050354-e029b79d8cda) -; ("go-github-com-containerd-fifo-0.0.0-20180307165137-3d5202aec260" -; ,go-github-com-containerd-fifo-0.0.0-20180307165137-3d5202aec260) -; ("go-github-com-containerd-continuity-0.0.0-20190815185530-f2a389ac0a02" -; ,go-github-com-containerd-continuity-0.0.0-20190815185530-f2a389ac0a02) -; ("go-github-com-containerd-containerd-1.3.0" -; ,go-github-com-containerd-containerd-1.3.0) -; ("go-github-com-containerd-console-0.0.0-20181022165439-0650fd9eeb50" -; ,go-github-com-containerd-console-0.0.0-20181022165439-0650fd9eeb50) -; ("go-github-com-containerd-cgroups-0.0.0-20190717030353-c4b9ac5c7601" -; ,go-github-com-containerd-cgroups-0.0.0-20190717030353-c4b9ac5c7601) -; ("go-github-com-microsoft-hcsshim-0.8.7-0.20190325164909-8abdbb8205e4" -; ,go-github-com-microsoft-hcsshim-0.8.7-0.20190325164909-8abdbb8205e4) -; ("go-github-com-microsoft-go-winio-0.4.14" -; ,go-github-com-microsoft-go-winio-0.4.14))) -; (home-page "https://github.com/containerd/imgcrypt") -; (synopsis "imgcrypt image encryption library and command line tool") -; (description -; "Project @code{imgcrypt} is a non-core subproject of containerd.") -; (license license:asl2.0))) -; -;(define-public go-github-com-blang-semver-3.1.0+incompatible -; (package -; (name "go-github-com-blang-semver") -; (version "3.1.0+incompatible") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/blang/semver") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1s80qlij6j6wrh0fhm0l11hbf3qjra67nca5bl7izyfjj4621fcd")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/blang/semver")) -; (home-page "https://github.com/blang/semver") -; (synopsis "semver for golang") -; (description -; "semver is a @url{http://semver.org/,Semantic Versioning} library written in golang. It fully covers spec version @code{2.0.0}.") -; (license license:expat))) -; -;(define-public go-github-com-containerd-containerd-1.3.0-beta.2.0.20190828155532-0293cbd26c69 -; (package -; (name "go-github-com-containerd-containerd") -; (version "1.3.0-beta.2.0.20190828155532-0293cbd26c69") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/containerd") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1jhb4a7fczf817d9dwj0a02wfscv46hkymrqh1dcsgpdsp80igkw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/containerd")) -; (home-page "https://github.com/containerd/containerd") -; (synopsis "Now Recruiting") -; (description -; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") -; (license license:asl2.0))) -; -;(define-public go-github-com-hashicorp-errwrap-0.0.0-20141028054710-7554cd9344ce -; (package -; (name "go-github-com-hashicorp-errwrap") -; (version "0.0.0-20141028054710-7554cd9344ce") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/errwrap") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0kmv0p605di6jc8i1778qzass18m0mv9ks9vxxrfsiwcp4la82jf")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hashicorp/errwrap")) -; (home-page "https://github.com/hashicorp/errwrap") -; (synopsis "errwrap") -; (description -; "Package errwrap implements methods to formalize error wrapping in Go. -;") -; (license license:mpl2.0))) -; -;(define-public go-github-com-hashicorp-go-multierror-0.0.0-20161216184304-ed905158d874 -; (package -; (name "go-github-com-hashicorp-go-multierror") -; (version "0.0.0-20161216184304-ed905158d874") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/go-multierror") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1bldhx9dmx9q4gjsag3g1xswq1jsf394rs69fdbmgnkj75j3sp70")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hashicorp/go-multierror")) -; (home-page "https://github.com/hashicorp/go-multierror") -; (synopsis "go-multierror") -; (description -; "@code{go-multierror} is a package for Go that provides a mechanism for -;representing a list of @code{error} values as a single @code{error}.") -; (license license:mpl2.0))) -; -;(define-public go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39 -; (package -; (name "go-github-com-opencontainers-runtime-tools") -; (version "0.0.0-20181011054405-1d69bd0f9c39") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/runtime-tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1wgisl2v8i1hvy3bf8f16v7rarx2ynyasb0jx4kffp5n5hz2hfcl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/runtime-tools")) -; (home-page "https://github.com/opencontainers/runtime-tools") -; (synopsis "oci-runtime-tool") -; (description -; "oci-runtime-tool is a collection of tools for working with the @url{https://github.com/opencontainers/runtime-spec,OCI runtime specification}. -;To build from source code, runtime-tools requires Go 1.10.x or above.") -; (license license:asl2.0))) -; -;(define-public go-github-com-prometheus-procfs-0.0.5 -; (package -; (name "go-github-com-prometheus-procfs") -; (version "0.0.5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/procfs") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1nqn8ip9f4f6kqrvand4lxhcxrkk19dwf8s3nh336i9wr2jfhbwa")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/procfs")) -; (propagated-inputs -; `(("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" -; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) -; ("go-github-com-google-go-cmp-0.3.0" -; ,go-github-com-google-go-cmp-0.3.0))) -; (home-page "https://github.com/prometheus/procfs") -; (synopsis "procfs") -; (description -; "Package procfs provides functions to retrieve system, kernel and process -;metrics from the pseudo-filesystem proc. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-syndtr-gocapability-0.0.0-20170704070218-db04d3cc01c8 -; (package -; (name "go-github-com-syndtr-gocapability") -; (version "0.0.0-20170704070218-db04d3cc01c8") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/syndtr/gocapability") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0jwica5kqax70rd4gbc2yjdz54401s4mr6clyn60gcmnxc0wynds")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/syndtr/gocapability")) -; (home-page "https://github.com/syndtr/gocapability") -; (synopsis #f) -; (description #f) -; (license license:bsd-2))) -; -;(define-public go-github-com-xeipuuv-gojsonschema-0.0.0-20180618132009-1d523034197f -; (package -; (name "go-github-com-xeipuuv-gojsonschema") -; (version "0.0.0-20180618132009-1d523034197f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/xeipuuv/gojsonschema") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1z8c6x8sfh6d1ib2lm2jps7r139qip6h3zik3fxhy1yr1380qbzp")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/xeipuuv/gojsonschema")) -; (home-page "https://github.com/xeipuuv/gojsonschema") -; (synopsis "gojsonschema") -; (description -; "An implementation of JSON Schema for the Go programming language. Supports draft-04, draft-06 and draft-07.") -; (license license:asl2.0))) -; -;(define-public go-k8s-io-kubernetes-1.13.0 -; (package -; (name "go-k8s-io-kubernetes") -; (version "1.13.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes/kubernetes") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "12cvw8b7l319p8nc2imc2wck7zz7vzrwcjyxq5djqj7l5rbcwmzs")))) -; (build-system go-build-system) -; (arguments '(#:import-path "k8s.io/kubernetes")) -; (home-page "https://k8s.io/kubernetes") -; (synopsis "Kubernetes (K8s)") -; (description -; "Kubernetes, also known as K8s, is an open source system for managing @url{https://kubernetes.io/docs/concepts/overview/what-is-kubernetes/,containerized applications} -;across multiple hosts. It provides basic mechanisms for deployment, maintenance, -;and scaling of applications.") -; (license license:asl2.0))) -; -;(define-public go-github-com-microsoft-hcsshim-0.8.7 -; (package -; (name "go-github-com-microsoft-hcsshim") -; (version "0.8.7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/microsoft/hcsshim") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1c6ix202ll48n7x00xxb7gzgm3srm9zwwbx2503l6vz3sqclh9xm")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/Microsoft/hcsshim")) -; (propagated-inputs -; `(("go-k8s-io-kubernetes-1.13.0" ,go-k8s-io-kubernetes-1.13.0) -; ("go-gotest-tools-2.2.0+incompatible" -; ,go-gotest-tools-2.2.0+incompatible) -; ("go-google-golang-org-grpc-1.20.1" ,go-google-golang-org-grpc-1.20.1) -; ("go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3" -; ,go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3) -; ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" -; ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) -; ("go-go-opencensus-io-0.22.0" ,go-go-opencensus-io-0.22.0) -; ("go-github-com-xeipuuv-gojsonschema-0.0.0-20180618132009-1d523034197f" -; ,go-github-com-xeipuuv-gojsonschema-0.0.0-20180618132009-1d523034197f) -; ("go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415" -; ,go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415) -; ("go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f" -; ,go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f) -; ("go-github-com-urfave-cli-0.0.0-20171014202726-7bc6a0acffa5" -; ,go-github-com-urfave-cli-0.0.0-20171014202726-7bc6a0acffa5) -; ("go-github-com-syndtr-gocapability-0.0.0-20170704070218-db04d3cc01c8" -; ,go-github-com-syndtr-gocapability-0.0.0-20170704070218-db04d3cc01c8) -; ("go-github-com-sirupsen-logrus-1.4.1" -; ,go-github-com-sirupsen-logrus-1.4.1) -; ("go-github-com-prometheus-procfs-0.0.5" -; ,go-github-com-prometheus-procfs-0.0.5) -; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) -; ("go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39" -; ,go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39) -; ("go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700" -; ,go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700) -; ("go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f" -; ,go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f) -; ("go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2" -; ,go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2) -; ("go-github-com-hashicorp-go-multierror-0.0.0-20161216184304-ed905158d874" -; ,go-github-com-hashicorp-go-multierror-0.0.0-20161216184304-ed905158d874) -; ("go-github-com-hashicorp-errwrap-0.0.0-20141028054710-7554cd9344ce" -; ,go-github-com-hashicorp-errwrap-0.0.0-20141028054710-7554cd9344ce) -; ("go-github-com-gogo-protobuf-1.2.1" -; ,go-github-com-gogo-protobuf-1.2.1) -; ("go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd" -; ,go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd) -; ("go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de" -; ,go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de) -; ("go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3" -; ,go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3) -; ("go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448" -; ,go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448) -; ("go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc" -; ,go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc) -; ("go-github-com-containerd-containerd-1.3.0-beta.2.0.20190828155532-0293cbd26c69" -; ,go-github-com-containerd-containerd-1.3.0-beta.2.0.20190828155532-0293cbd26c69) -; ("go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1" -; ,go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1) -; ("go-github-com-containerd-cgroups-0.0.0-20190919134610-bf292b21730f" -; ,go-github-com-containerd-cgroups-0.0.0-20190919134610-bf292b21730f) -; ("go-github-com-blang-semver-3.1.0+incompatible" -; ,go-github-com-blang-semver-3.1.0+incompatible) -; ("go-github-com-microsoft-go-winio-0.4.15-0.20190919025122-fc70bd9a86b5" -; ,go-github-com-microsoft-go-winio-0.4.15-0.20190919025122-fc70bd9a86b5))) -; (home-page "https://github.com/Microsoft/hcsshim") -; (synopsis "hcsshim") -; (description -; "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") -; (license license:expat))) -; -;(define-public go-github-com-containerd-containerd-1.3.1-0.20191213020239-082f7e3aed57 -; (package -; (name "go-github-com-containerd-containerd") -; (version "1.3.1-0.20191213020239-082f7e3aed57") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/containerd") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1piaha1adhzhj150l7zhskn5fgl4r2cyvwhrrm8bbm3vnvhmgw7v")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/containerd")) -; (home-page "https://github.com/containerd/containerd") -; (synopsis "Now Recruiting") -; (description -; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-continuity-0.0.0-20191127005431-f65d91d395eb -; (package -; (name "go-github-com-containerd-continuity") -; (version "0.0.0-20191127005431-f65d91d395eb") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/continuity") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "15yh5idl3if8a982gsnq9q72021a7jcs9bdcrqaxbl4dwdqcszki")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/continuity")) -; (home-page "https://github.com/containerd/continuity") -; (synopsis "continuity") -; (description -; "This package provides a transport-agnostic, filesystem metadata manifest system") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190522044717-8097e1b27ff5 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190522044717-8097e1b27ff5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1rgflfvh365x5lwdyqdd9qk8hh3ycr88a2488bgqgvfhp5ri5p6x")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20190522204451-c2c4e71fbf69 -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20190522204451-c2c4e71fbf69") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1y44pmyy92pg822fhw80pnciifx1ah0g73i2l0ixickd24wyznnm")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" -; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) -; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) -; ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" -; ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) -; ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" -; ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) -; ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" -; ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) -; ("go-github-com-golang-protobuf-1.3.1" -; ,go-github-com-golang-protobuf-1.3.1))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-ttrpc-0.0.0-20191028202541-4f1b8fe65a5c -; (package -; (name "go-github-com-containerd-ttrpc") -; (version "0.0.0-20191028202541-4f1b8fe65a5c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/ttrpc") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "19fhm39jagk2sfgi9g5zdqx4rynziwxhaap03x4mdj8kczlz21x8")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/ttrpc")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.21.0" ,go-google-golang-org-grpc-1.21.0) -; ("go-google-golang-org-genproto-0.0.0-20190522204451-c2c4e71fbf69" -; ,go-google-golang-org-genproto-0.0.0-20190522204451-c2c4e71fbf69) -; ("go-golang-org-x-sys-0.0.0-20190522044717-8097e1b27ff5" -; ,go-golang-org-x-sys-0.0.0-20190522044717-8097e1b27ff5) -; ("go-github-com-sirupsen-logrus-1.4.2" -; ,go-github-com-sirupsen-logrus-1.4.2) -; ("go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1" -; ,go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1) -; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) -; ("go-github-com-gogo-protobuf-1.2.1" -; ,go-github-com-gogo-protobuf-1.2.1))) -; (home-page "https://github.com/containerd/ttrpc") -; (synopsis "ttrpc") -; (description "GRPC for low-memory environments.") -; (license license:asl2.0))) -; -;(define-public go-github-com-gogo-protobuf-1.3.0 -; (package -; (name "go-github-com-gogo-protobuf") -; (version "1.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/gogo/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0slfyrmbpdcppf0z3waar90bpszdhi2gv705ys1b0zx5x6ax8f1a")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/gogo/protobuf")) -; (propagated-inputs -; `(("go-github-com-kisielk-gotool-1.0.0" -; ,go-github-com-kisielk-gotool-1.0.0) -; ("go-github-com-kisielk-errcheck-1.2.0" -; ,go-github-com-kisielk-errcheck-1.2.0))) -; (home-page "https://github.com/gogo/protobuf") -; (synopsis "Protocol Buffers for Go with Gadgets") -; (description -; "gogoprotobuf is a fork of @url{https://github.com/golang/protobuf,golang/protobuf} with extra code generation features.") -; (license license:bsd-3))) -; -;(define-public go-github-com-containerd-typeurl-0.0.0-20190911142611-5eb25027c9fd -; (package -; (name "go-github-com-containerd-typeurl") -; (version "0.0.0-20190911142611-5eb25027c9fd") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/typeurl") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1fyc2962b9sqgqycnlkxls6n0d701nszl84bayxrdv3r1491jn9v")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/typeurl")) -; (propagated-inputs -; `(("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) -; ("go-github-com-gogo-protobuf-1.3.0" -; ,go-github-com-gogo-protobuf-1.3.0))) -; (home-page "https://github.com/containerd/typeurl") -; (synopsis "typeurl") -; (description -; "This package provides a Go package for managing the registration, marshaling, and unmarshaling of encoded types.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-zfs-0.0.0-20200918131355-0a33824f23a2 -; (package -; (name "go-github-com-containerd-zfs") -; (version "0.0.0-20200918131355-0a33824f23a2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/zfs") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "112bj6mxc3r2ncybblf3w1fgqa6w0070f6a8vlqcml1g00ljhsz6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/zfs")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) -; ("go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449" -; ,go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449) -; ("go-go-etcd-io-bbolt-1.3.3" ,go-go-etcd-io-bbolt-1.3.3) -; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) -; ("go-github-com-opencontainers-runc-1.0.0-rc9" -; ,go-github-com-opencontainers-runc-1.0.0-rc9) -; ("go-github-com-opencontainers-image-spec-1.0.1" -; ,go-github-com-opencontainers-image-spec-1.0.1) -; ("go-github-com-opencontainers-go-digest-1.0.0-rc1" -; ,go-github-com-opencontainers-go-digest-1.0.0-rc1) -; ("go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible" -; ,go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible) -; ("go-github-com-google-uuid-1.1.1" ,go-github-com-google-uuid-1.1.1) -; ("go-github-com-google-go-cmp-0.3.1" -; ,go-github-com-google-go-cmp-0.3.1) -; ("go-github-com-gogo-protobuf-1.3.1" -; ,go-github-com-gogo-protobuf-1.3.1) -; ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" -; ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) -; ("go-github-com-containerd-typeurl-0.0.0-20190911142611-5eb25027c9fd" -; ,go-github-com-containerd-typeurl-0.0.0-20190911142611-5eb25027c9fd) -; ("go-github-com-containerd-ttrpc-0.0.0-20191028202541-4f1b8fe65a5c" -; ,go-github-com-containerd-ttrpc-0.0.0-20191028202541-4f1b8fe65a5c) -; ("go-github-com-containerd-continuity-0.0.0-20191127005431-f65d91d395eb" -; ,go-github-com-containerd-continuity-0.0.0-20191127005431-f65d91d395eb) -; ("go-github-com-containerd-containerd-1.3.1-0.20191213020239-082f7e3aed57" -; ,go-github-com-containerd-containerd-1.3.1-0.20191213020239-082f7e3aed57) -; ("go-github-com-microsoft-hcsshim-0.8.7" -; ,go-github-com-microsoft-hcsshim-0.8.7))) -; (home-page "https://github.com/containerd/zfs") -; (synopsis "ZFS snapshotter plugin") -; (description "ZFS snapshotter plugin for containerd.") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-sys-0.0.0-20201202213521-69691e467435 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20201202213521-69691e467435") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0lndxdnazszfj1jl87cpz31vd12jrjm1wj0zw1c2p8yg64cfkhna")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-containerd-containerd-1.5.0-beta.1 -; (package -; (name "go-github-com-containerd-containerd") -; (version "1.5.0-beta.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/containerd") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1jki3jwmbfk4mp2qhz4ppd6vgnicalszzv5ffibasa4qj5v19wcd")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/containerd")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) -; ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) -; ("go-github-com-golang-protobuf-1.3.5" -; ,go-github-com-golang-protobuf-1.3.5) -; ("go-github-com-gogo-googleapis-1.3.2" -; ,go-github-com-gogo-googleapis-1.3.2) -; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" -; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) -; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) -; ("go-k8s-io-cri-api-0.20.1" ,go-k8s-io-cri-api-0.20.1) -; ("go-k8s-io-component-base-0.20.1" ,go-k8s-io-component-base-0.20.1) -; ("go-k8s-io-client-go-0.20.1" ,go-k8s-io-client-go-0.20.1) -; ("go-k8s-io-apiserver-0.20.1" ,go-k8s-io-apiserver-0.20.1) -; ("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) -; ("go-k8s-io-api-0.20.1" ,go-k8s-io-api-0.20.1) -; ("go-gotest-tools-v3-3.0.2" ,go-gotest-tools-v3-3.0.2) -; ("go-golang-org-x-sys-0.0.0-20201202213521-69691e467435" -; ,go-golang-org-x-sys-0.0.0-20201202213521-69691e467435) -; ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" -; ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) -; ("go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b" -; ,go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b) -; ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) -; ("go-github-com-tchap-go-patricia-2.2.6+incompatible" -; ,go-github-com-tchap-go-patricia-2.2.6+incompatible) -; ("go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635" -; ,go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-sirupsen-logrus-1.7.0" -; ,go-github-com-sirupsen-logrus-1.7.0) -; ("go-github-com-prometheus-client-golang-1.7.1" -; ,go-github-com-prometheus-client-golang-1.7.1) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-selinux-1.8.0" -; ,go-github-com-opencontainers-selinux-1.8.0) -; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" -; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) -; ("go-github-com-opencontainers-runc-1.0.0-rc93" -; ,go-github-com-opencontainers-runc-1.0.0-rc93) -; ("go-github-com-opencontainers-image-spec-1.0.1" -; ,go-github-com-opencontainers-image-spec-1.0.1) -; ("go-github-com-opencontainers-go-digest-1.0.0" -; ,go-github-com-opencontainers-go-digest-1.0.0) -; ("go-github-com-moby-sys-symlink-0.1.0" -; ,go-github-com-moby-sys-symlink-0.1.0) -; ("go-github-com-moby-sys-mountinfo-0.4.0" -; ,go-github-com-moby-sys-mountinfo-0.4.0) -; ("go-github-com-klauspost-compress-1.11.3" -; ,go-github-com-klauspost-compress-1.11.3) -; ("go-github-com-imdario-mergo-0.3.10" -; ,go-github-com-imdario-mergo-0.3.10) -; ("go-github-com-hashicorp-go-multierror-1.0.0" -; ,go-github-com-hashicorp-go-multierror-1.0.0) -; ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" -; ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) -; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) -; ("go-github-com-google-go-cmp-0.5.2" -; ,go-github-com-google-go-cmp-0.5.2) -; ("go-github-com-gogo-protobuf-1.3.2" -; ,go-github-com-gogo-protobuf-1.3.2) -; ("go-github-com-fsnotify-fsnotify-1.4.9" -; ,go-github-com-fsnotify-fsnotify-1.4.9) -; ("go-github-com-emicklei-go-restful-2.9.5+incompatible" -; ,go-github-com-emicklei-go-restful-2.9.5+incompatible) -; ("go-github-com-docker-go-units-0.4.0" -; ,go-github-com-docker-go-units-0.4.0) -; ("go-github-com-docker-go-metrics-0.0.1" -; ,go-github-com-docker-go-metrics-0.0.1) -; ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" -; ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1) -; ("go-github-com-coreos-go-systemd-v22-22.1.0" -; ,go-github-com-coreos-go-systemd-v22-22.1.0) -; ("go-github-com-containernetworking-plugins-0.8.6" -; ,go-github-com-containernetworking-plugins-0.8.6) -; ("go-github-com-containerd-zfs-0.0.0-20200918131355-0a33824f23a2" -; ,go-github-com-containerd-zfs-0.0.0-20200918131355-0a33824f23a2) -; ("go-github-com-containerd-typeurl-1.0.1" -; ,go-github-com-containerd-typeurl-1.0.1) -; ("go-github-com-containerd-ttrpc-1.0.2" -; ,go-github-com-containerd-ttrpc-1.0.2) -; ("go-github-com-containerd-nri-0.0.0-20201007170849-eb1350a75164" -; ,go-github-com-containerd-nri-0.0.0-20201007170849-eb1350a75164) -; ("go-github-com-containerd-imgcrypt-1.0.1" -; ,go-github-com-containerd-imgcrypt-1.0.1) -; ("go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328" -; ,go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328) -; ("go-github-com-containerd-go-cni-1.0.1" -; ,go-github-com-containerd-go-cni-1.0.1) -; ("go-github-com-containerd-fifo-0.0.0-20201026212402-0724c46b320c" -; ,go-github-com-containerd-fifo-0.0.0-20201026212402-0724c46b320c) -; ("go-github-com-containerd-continuity-0.0.0-20201208142359-180525291bb7" -; ,go-github-com-containerd-continuity-0.0.0-20201208142359-180525291bb7) -; ("go-github-com-containerd-console-1.0.1" -; ,go-github-com-containerd-console-1.0.1) -; ("go-github-com-containerd-cgroups-0.0.0-20200824123100-0b889c03f102" -; ,go-github-com-containerd-cgroups-0.0.0-20200824123100-0b889c03f102) -; ("go-github-com-containerd-btrfs-0.0.0-20201111183144-404b9149801e" -; ,go-github-com-containerd-btrfs-0.0.0-20201111183144-404b9149801e) -; ("go-github-com-containerd-aufs-0.0.0-20200908144142-dab0cbea06f4" -; ,go-github-com-containerd-aufs-0.0.0-20200908144142-dab0cbea06f4) -; ("go-github-com-microsoft-hcsshim-test-0.0.0-20201218223536-d3e5debf77da" -; ,go-github-com-microsoft-hcsshim-test-0.0.0-20201218223536-d3e5debf77da) -; ("go-github-com-microsoft-hcsshim-0.8.14" -; ,go-github-com-microsoft-hcsshim-0.8.14) -; ("go-github-com-microsoft-go-winio-0.4.16" -; ,go-github-com-microsoft-go-winio-0.4.16) -; ("go-github-com-burntsushi-toml-0.3.1" -; ,go-github-com-burntsushi-toml-0.3.1))) -; (home-page "https://github.com/containerd/containerd") -; (synopsis "Now Recruiting") -; (description -; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20200728195943-123391ffb6de -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20200728195943-123391ffb6de") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1a3wnn8yjvckh3smyqzwd2k2gvl3i8dk68pvcap0wha8hmga1vf3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" -; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) -; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" -; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20200817155316-9781c653f443 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20200817155316-9781c653f443") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1fkwiydhhmn6cxmd9jb4rj2wp06yxmqc3903b7zawsxm9jpslicm")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-containers-ocicrypt-1.1.0 -; (package -; (name "go-github-com-containers-ocicrypt") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containers/ocicrypt") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "13avih8ml00idn6qy96ash3jxkimqxpkz4cy4kgryc8jx303nv6i")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containers/ocicrypt")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.3.0" ,go-gopkg-in-yaml-v2-2.3.0) -; ("go-gopkg-in-square-go-jose-v2-2.5.1" -; ,go-gopkg-in-square-go-jose-v2-2.5.1) -; ("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) -; ("go-golang-org-x-sys-0.0.0-20200817155316-9781c653f443" -; ,go-golang-org-x-sys-0.0.0-20200817155316-9781c653f443) -; ("go-golang-org-x-crypto-0.0.0-20200728195943-123391ffb6de" -; ,go-golang-org-x-crypto-0.0.0-20200728195943-123391ffb6de) -; ("go-go-mozilla-org-pkcs7-0.0.0-20200128120323-432b2356ecb1" -; ,go-go-mozilla-org-pkcs7-0.0.0-20200128120323-432b2356ecb1) -; ("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0) -; ("go-github-com-stefanberger-go-pkcs11uri-0.0.0-20201008174630-78d3cae3a980" -; ,go-github-com-stefanberger-go-pkcs11uri-0.0.0-20201008174630-78d3cae3a980) -; ("go-github-com-sirupsen-logrus-1.7.0" -; ,go-github-com-sirupsen-logrus-1.7.0) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-image-spec-1.0.1" -; ,go-github-com-opencontainers-image-spec-1.0.1) -; ("go-github-com-opencontainers-go-digest-1.0.0" -; ,go-github-com-opencontainers-go-digest-1.0.0) -; ("go-github-com-miekg-pkcs11-1.0.3" ,go-github-com-miekg-pkcs11-1.0.3) -; ("go-github-com-google-go-cmp-0.5.2" -; ,go-github-com-google-go-cmp-0.5.2) -; ("go-github-com-golang-protobuf-1.4.3" -; ,go-github-com-golang-protobuf-1.4.3))) -; (home-page "https://github.com/containers/ocicrypt") -; (synopsis "OCIcrypt Library") -; (description -; "The @code{ocicrypt} library is the OCI image spec implementation of container image encryption. More details of the spec can be seen in the @url{https://github.com/opencontainers/image-spec/pull/775,OCI repository}. The purpose of this library is to encode spec structures and consts in code, as well as provide a consistent implementation of image encryption across container runtimes and build tools.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-imgcrypt-1.0.4-0.20210301171431-0ae5c75f59ba -; (package -; (name "go-github-com-containerd-imgcrypt") -; (version "1.0.4-0.20210301171431-0ae5c75f59ba") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/imgcrypt") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0vkwgcxh3mpsn6wp231c9ad3sx6gmnc9948nn3vvbw8bsmjd4i77")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/imgcrypt")) -; (propagated-inputs -; `(("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) -; ("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) -; ("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) -; ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" -; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) -; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) -; ("go-github-com-sirupsen-logrus-1.7.0" -; ,go-github-com-sirupsen-logrus-1.7.0) -; ("go-github-com-prometheus-procfs-0.6.0" -; ,go-github-com-prometheus-procfs-0.6.0) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" -; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) -; ("go-github-com-opencontainers-image-spec-1.0.1" -; ,go-github-com-opencontainers-image-spec-1.0.1) -; ("go-github-com-opencontainers-go-digest-1.0.0" -; ,go-github-com-opencontainers-go-digest-1.0.0) -; ("go-github-com-imdario-mergo-0.3.11" -; ,go-github-com-imdario-mergo-0.3.11) -; ("go-github-com-gogo-protobuf-1.3.2" -; ,go-github-com-gogo-protobuf-1.3.2) -; ("go-github-com-containers-ocicrypt-1.1.0" -; ,go-github-com-containers-ocicrypt-1.1.0) -; ("go-github-com-containerd-typeurl-1.0.1" -; ,go-github-com-containerd-typeurl-1.0.1) -; ("go-github-com-containerd-containerd-1.5.0-beta.1" -; ,go-github-com-containerd-containerd-1.5.0-beta.1) -; ("go-github-com-containerd-console-1.0.1" -; ,go-github-com-containerd-console-1.0.1) -; ("go-github-com-microsoft-hcsshim-test-0.0.0-20210227013316-43a75bb4edd3" -; ,go-github-com-microsoft-hcsshim-test-0.0.0-20210227013316-43a75bb4edd3) -; ("go-github-com-microsoft-hcsshim-0.8.14" -; ,go-github-com-microsoft-hcsshim-0.8.14) -; ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" -; ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3))) -; (home-page "https://github.com/containerd/imgcrypt") -; (synopsis "imgcrypt image encryption library and command line tool") -; (description -; "Project @code{imgcrypt} is a non-core subproject of containerd.") -; (license license:asl2.0))) -; -;(define-public go-github-com-microsoft-go-winio-0.4.15-0.20190919025122-fc70bd9a86b5 -; (package -; (name "go-github-com-microsoft-go-winio") -; (version "0.4.15-0.20190919025122-fc70bd9a86b5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/microsoft/go-winio") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "015ra2h3qfaq436d0g7akahgz7bikyvljq48m0l2d2f4k3wki86p")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/Microsoft/go-winio")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3" -; ,go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3) -; ("go-github-com-sirupsen-logrus-1.4.1" -; ,go-github-com-sirupsen-logrus-1.4.1) -; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) -; (home-page "https://github.com/Microsoft/go-winio") -; (synopsis "go-winio") -; (description -; "This repository contains utilities for efficiently performing Win32 IO operations in -;Go. Currently, this is focused on accessing named pipes and other file handles, and -;for using named pipes as a net transport.") -; (license license:expat))) -; -;(define-public go-github-com-godbus-dbus-0.0.0-20190422162347-ade71ed3457e -; (package -; (name "go-github-com-godbus-dbus") -; (version "0.0.0-20190422162347-ade71ed3457e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/godbus/dbus") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "12ga9izv32j1zjij1p9f2sdnxjy3v80lw964518dvzirxpvwfszn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/godbus/dbus")) -; (home-page "https://github.com/godbus/dbus") -; (synopsis "dbus") -; (description -; "Package dbus implements bindings to the D-Bus message bus system. -;") -; (license license:bsd-2))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190514135907-3a4b5fb9f71f -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190514135907-3a4b5fb9f71f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "122ry2lw2525mqlnw2zc006y1flvj3yhj8rnpxqdwxp71jc3kqii")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-containerd-cgroups-0.0.0-20190919134610-bf292b21730f -; (package -; (name "go-github-com-containerd-cgroups") -; (version "0.0.0-20190919134610-bf292b21730f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/cgroups") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1vvk1vrwm9spilyl4r1r8626sg0zvnx3s3zmzigzinpkzzvbdqpw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/cgroups")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190514135907-3a4b5fb9f71f" -; ,go-golang-org-x-sys-0.0.0-20190514135907-3a4b5fb9f71f) -; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) -; ("go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700" -; ,go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700) -; ("go-github-com-gogo-protobuf-1.2.1" -; ,go-github-com-gogo-protobuf-1.2.1) -; ("go-github-com-godbus-dbus-0.0.0-20190422162347-ade71ed3457e" -; ,go-github-com-godbus-dbus-0.0.0-20190422162347-ade71ed3457e) -; ("go-github-com-docker-go-units-0.4.0" -; ,go-github-com-docker-go-units-0.4.0) -; ("go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e" -; ,go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e))) -; (home-page "https://github.com/containerd/cgroups") -; (synopsis "cgroups") -; (description -; "Go package for creating, managing, inspecting, and destroying cgroups. -;The resources format for settings on the cgroup uses the OCI runtime-spec found -;@url{https://github.com/opencontainers/runtime-spec,here}.") -; (license license:asl2.0))) -; -;(define-public go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700 -; (package -; (name "go-github-com-opencontainers-runtime-spec") -; (version "0.1.2-0.20190507144316-5b71a03e2700") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/runtime-spec") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1dx0bp4f885vx6l4b5b7h19j6sm0jn9s2qxarfd917f4wp8l0cpl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) -; (home-page "https://github.com/opencontainers/runtime-spec") -; (synopsis "Open Container Initiative Runtime Specification") -; (description -; "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") -; (license license:asl2.0))) -; -;(define-public go-github-com-urfave-cli-0.0.0-20171014202726-7bc6a0acffa5 -; (package -; (name "go-github-com-urfave-cli") -; (version "0.0.0-20171014202726-7bc6a0acffa5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/urfave/cli") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "13li8phkaznh81qxs9vg0r8294ph014rwca4cqf7gxhvyjlaigwp")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/urfave/cli")) -; (home-page "https://github.com/urfave/cli") -; (synopsis "cli") -; (description -; "Package cli provides a minimal framework for creating and organizing command line -;Go applications. cli is designed to be easy to understand and write, the most simple -;cli application can be written as follows: -;") -; (license license:expat))) -; -;(define-public go-github-com-microsoft-hcsshim-0.8.9 -; (package -; (name "go-github-com-microsoft-hcsshim") -; (version "0.8.9") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/microsoft/hcsshim") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1imyqhh51311fdmp81ffasf7z52rbqhblbhx6477d9w20p74866b")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/Microsoft/hcsshim")) -; (propagated-inputs -; `(("go-gotest-tools-2.2.0+incompatible" -; ,go-gotest-tools-2.2.0+incompatible) -; ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) -; ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" -; ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) -; ("go-google-golang-org-grpc-1.23.1" ,go-google-golang-org-grpc-1.23.1) -; ("go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873" -; ,go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873) -; ("go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3" -; ,go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3) -; ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" -; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) -; ("go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9" -; ,go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9) -; ("go-go-opencensus-io-0.22.0" ,go-go-opencensus-io-0.22.0) -; ("go-github-com-urfave-cli-0.0.0-20171014202726-7bc6a0acffa5" -; ,go-github-com-urfave-cli-0.0.0-20171014202726-7bc6a0acffa5) -; ("go-github-com-stretchr-testify-1.4.0" -; ,go-github-com-stretchr-testify-1.4.0) -; ("go-github-com-sirupsen-logrus-1.4.2" -; ,go-github-com-sirupsen-logrus-1.4.2) -; ("go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7" -; ,go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7) -; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) -; ("go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700" -; ,go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700) -; ("go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f" -; ,go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f) -; ("go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2" -; ,go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2) -; ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2) -; ("go-github-com-gogo-protobuf-1.3.1" -; ,go-github-com-gogo-protobuf-1.3.1) -; ("go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd" -; ,go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd) -; ("go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de" -; ,go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de) -; ("go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3" -; ,go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3) -; ("go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448" -; ,go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448) -; ("go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc" -; ,go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc) -; ("go-github-com-containerd-containerd-1.3.2" -; ,go-github-com-containerd-containerd-1.3.2) -; ("go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1" -; ,go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1) -; ("go-github-com-containerd-cgroups-0.0.0-20190919134610-bf292b21730f" -; ,go-github-com-containerd-cgroups-0.0.0-20190919134610-bf292b21730f) -; ("go-github-com-microsoft-go-winio-0.4.15-0.20190919025122-fc70bd9a86b5" -; ,go-github-com-microsoft-go-winio-0.4.15-0.20190919025122-fc70bd9a86b5))) -; (home-page "https://github.com/Microsoft/hcsshim") -; (synopsis "hcsshim") -; (description -; "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") -; (license license:expat))) -; -;(define-public go-github-com-cilium-ebpf-0.0.0-20200702112145-1c8d4c9ef775 -; (package -; (name "go-github-com-cilium-ebpf") -; (version "0.0.0-20200702112145-1c8d4c9ef775") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/cilium/ebpf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1la90b88a1li5hmlqxfx9lgxlyzqb2pd4c2dxmz4s5gg2gz8a5x5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/cilium/ebpf")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9" -; ,go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9))) -; (home-page "https://github.com/cilium/ebpf") -; (synopsis "eBPF") -; (description "Package ebpf is a toolkit for working with eBPF programs. -;") -; (license license:expat))) -; -;(define-public go-github-com-containerd-cgroups-0.0.0-20200710171044-318312a37340 -; (package -; (name "go-github-com-containerd-cgroups") -; (version "0.0.0-20200710171044-318312a37340") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/cgroups") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1kizbm55pmlnly2dggymp84a0d9pn4fh7jf31h6wqm385zrs14zp")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/cgroups")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9" -; ,go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9) -; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) -; ("go-github-com-stretchr-testify-1.2.2" -; ,go-github-com-stretchr-testify-1.2.2) -; ("go-github-com-sirupsen-logrus-1.6.0" -; ,go-github-com-sirupsen-logrus-1.6.0) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-runtime-spec-1.0.2" -; ,go-github-com-opencontainers-runtime-spec-1.0.2) -; ("go-github-com-gogo-protobuf-1.3.1" -; ,go-github-com-gogo-protobuf-1.3.1) -; ("go-github-com-godbus-dbus-v5-5.0.3" -; ,go-github-com-godbus-dbus-v5-5.0.3) -; ("go-github-com-docker-go-units-0.4.0" -; ,go-github-com-docker-go-units-0.4.0) -; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" -; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) -; ("go-github-com-coreos-go-systemd-v22-22.0.0" -; ,go-github-com-coreos-go-systemd-v22-22.0.0) -; ("go-github-com-cilium-ebpf-0.0.0-20200702112145-1c8d4c9ef775" -; ,go-github-com-cilium-ebpf-0.0.0-20200702112145-1c8d4c9ef775))) -; (home-page "https://github.com/containerd/cgroups") -; (synopsis "cgroups") -; (description -; "Go package for creating, managing, inspecting, and destroying cgroups. -;The resources format for settings on the cgroup uses the OCI runtime-spec found -;@url{https://github.com/opencontainers/runtime-spec,here}.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-containerd-1.4.0-beta.2.0.20200729163537-40b22ef07410 -; (package -; (name "go-github-com-containerd-containerd") -; (version "1.4.0-beta.2.0.20200729163537-40b22ef07410") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/containerd") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ky7ny5b0rvkr6a58pdlcm35kc9wls6jvl7cdk8py4a16y1f2lx9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/containerd")) -; (home-page "https://github.com/containerd/containerd") -; (synopsis "Now Recruiting") -; (description -; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") -; (license license:asl2.0))) -; -;(define-public go-github-com-onsi-ginkgo-1.10.1 -; (package -; (name "go-github-com-onsi-ginkgo") -; (version "1.10.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/onsi/ginkgo") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "033a42h1wzmji57p86igg9whvsbp6nvfdsypskw738ys903n3z4d")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/onsi/ginkgo")) -; (home-page "https://github.com/onsi/ginkgo") -; (synopsis "Ginkgo 2.0 Release Candidate is available!") -; (description "Ginkgo is a BDD-style testing framework for Golang -;") -; (license license:expat))) -; -;(define-public go-github-com-opencontainers-go-digest-1.0.0-rc1 -; (package -; (name "go-github-com-opencontainers-go-digest") -; (version "1.0.0-rc1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/go-digest") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "01gc7fpn8ax429024p2fcx3yb18axwz5bjf2hqxlii1jbsgw4bh9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/go-digest")) -; (home-page "https://github.com/opencontainers/go-digest") -; (synopsis "go-digest") -; (description -; "Package digest provides a generalized type to opaquely represent message -;digests and their operations within the registry. The Digest type is -;designed to serve as a flexible identifier in a content-addressable system. -;More importantly, it provides tools and wrappers to work with -;hash.Hash-based digests with little effort. -;") -; (license (list license:asl2.0 license:cc-by-sa4.0)))) -; -;(define-public go-github-com-pkg-errors-0.8.1-0.20171018195549-f15c970de5b7 -; (package -; (name "go-github-com-pkg-errors") -; (version "0.8.1-0.20171018195549-f15c970de5b7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/pkg/errors") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "18jihrffhfsjvz3rkanlhq9xjcdxkqilmflnijc64s7y7lijlbfm")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/pkg/errors")) -; (home-page "https://github.com/pkg/errors") -; (synopsis "errors") -; (description "Package errors provides simple error handling primitives. -;") -; (license license:bsd-2))) -; -;(define-public go-github-com-sirupsen-logrus-1.0.4-0.20170822132746-89742aefa4b2 -; (package -; (name "go-github-com-sirupsen-logrus") -; (version "1.0.4-0.20170822132746-89742aefa4b2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/sirupsen/logrus") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0hk7fabx59msg2y0iik6xvfp80s73ybrwlcshbm9ds91iqbkcxi6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/sirupsen/logrus")) -; (home-page "https://github.com/sirupsen/logrus") -; (synopsis "Logrus") -; (description -; "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20171113213409-9f005a07e0d3 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20171113213409-9f005a07e0d3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1mhmr6ljzl3iafsz4qy8vval7rmr828wh59dlqqqjqx6sqmcs1dv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-github-com-containerd-continuity-0.0.0-20200710164510-efbc4488d8fe -; (package -; (name "go-github-com-containerd-continuity") -; (version "0.0.0-20200710164510-efbc4488d8fe") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/continuity") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0d638nj7z7y8z19zdwbysamqh5m3kiwvnqny7av6bxax9gg6c3h8")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/continuity")) -; (propagated-inputs -; `(("go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2" -; ,go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2) -; ("go-gopkg-in-airbrake-gobrake-v2-2.0.9" -; ,go-gopkg-in-airbrake-gobrake-v2-2.0.9) -; ("go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e" -; ,go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e) -; ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" -; ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) -; ("go-golang-org-x-crypto-0.0.0-20171113213409-9f005a07e0d3" -; ,go-golang-org-x-crypto-0.0.0-20171113213409-9f005a07e0d3) -; ("go-github-com-stretchr-testify-1.4.0" -; ,go-github-com-stretchr-testify-1.4.0) -; ("go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95" -; ,go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95) -; ("go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee" -; ,go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee) -; ("go-github-com-sirupsen-logrus-1.0.4-0.20170822132746-89742aefa4b2" -; ,go-github-com-sirupsen-logrus-1.0.4-0.20170822132746-89742aefa4b2) -; ("go-github-com-pkg-errors-0.8.1-0.20171018195549-f15c970de5b7" -; ,go-github-com-pkg-errors-0.8.1-0.20171018195549-f15c970de5b7) -; ("go-github-com-opencontainers-go-digest-1.0.0-rc1" -; ,go-github-com-opencontainers-go-digest-1.0.0-rc1) -; ("go-github-com-onsi-gomega-1.7.0" ,go-github-com-onsi-gomega-1.7.0) -; ("go-github-com-onsi-ginkgo-1.10.1" ,go-github-com-onsi-ginkgo-1.10.1) -; ("go-github-com-inconshreveable-mousetrap-1.0.0" -; ,go-github-com-inconshreveable-mousetrap-1.0.0) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0) -; ("go-github-com-dustin-go-humanize-0.0.0-20171111073723-bb3d318650d4" -; ,go-github-com-dustin-go-humanize-0.0.0-20171111073723-bb3d318650d4) -; ("go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898" -; ,go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898))) -; (home-page "https://github.com/containerd/continuity") -; (synopsis "continuity") -; (description -; "This package provides a transport-agnostic, filesystem metadata manifest system") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20191210023423-ac6580df4449") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "14gvx65w5lddi20s4wypbbvbg9ni3m8777jhp9nqxhixc61k3dyi")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-containerd-fifo-0.0.0-20200410184934-f15a3290365b -; (package -; (name "go-github-com-containerd-fifo") -; (version "0.0.0-20200410184934-f15a3290365b") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/fifo") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1i3pylxr2a4b9gaifjrhfa21n147vvq2z9iqwzz9id532xv9mr48")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/fifo")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449" -; ,go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449) -; ("go-github-com-stretchr-testify-1.4.0" -; ,go-github-com-stretchr-testify-1.4.0) -; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) -; (home-page "https://github.com/containerd/fifo") -; (synopsis "fifo") -; (description "Go package for handling fifos in a sane way.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-ttrpc-1.0.1 -; (package -; (name "go-github-com-containerd-ttrpc") -; (version "1.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/ttrpc") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "02ilz14f1k9zip7caqfjwvfg2nwa7bs6880pi6fxbri1wy6ar45q")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/ttrpc")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.26.0" ,go-google-golang-org-grpc-1.26.0) -; ("go-google-golang-org-genproto-0.0.0-20200117163144-32f20d992d24" -; ,go-google-golang-org-genproto-0.0.0-20200117163144-32f20d992d24) -; ("go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479" -; ,go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479) -; ("go-github-com-sirupsen-logrus-1.4.2" -; ,go-github-com-sirupsen-logrus-1.4.2) -; ("go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1" -; ,go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.2" -; ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.2) -; ("go-github-com-gogo-protobuf-1.3.1" -; ,go-github-com-gogo-protobuf-1.3.1))) -; (home-page "https://github.com/containerd/ttrpc") -; (synopsis "ttrpc") -; (description "GRPC for low-memory environments.") -; (license license:asl2.0))) -; -;(define-public go-github-com-gogo-googleapis-1.4.0 -; (package -; (name "go-github-com-gogo-googleapis") -; (version "1.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/gogo/googleapis") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1kka9qmra1klfkjza0s5papqvsi65f2d349dl8k1lvfq487iv9r4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/gogo/googleapis")) -; (propagated-inputs -; `(("go-github-com-gogo-protobuf-1.3.1" -; ,go-github-com-gogo-protobuf-1.3.1))) -; (home-page "https://github.com/gogo/googleapis") -; (synopsis "Google APIs generated by gogoprotobuf") -; (description -; "The @url{https://github.com/gogo/grpc-example,grpc-example} includes an example usage of this repository.") -; (license license:asl2.0))) -; -;(define-public go-github-com-google-go-cmp-0.5.1 -; (package -; (name "go-github-com-google-go-cmp") -; (version "0.5.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/go-cmp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1wjdid59brciv09agxgmqac5k9ywg63nhzb0yi9anmqpl38gps0p")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/go-cmp")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" -; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) -; (home-page "https://github.com/google/go-cmp") -; (synopsis "Package for equality of Go values") -; (description -; "This package is intended to be a more powerful and safer alternative to -;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") -; (license license:bsd-3))) -; -;(define-public go-github-com-imdario-mergo-0.3.10 -; (package -; (name "go-github-com-imdario-mergo") -; (version "0.3.10") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/imdario/mergo") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "09h765p8yby9r8s0a3hv5kl8n2i382mda76wmvk48w1cc1w9s92p")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/imdario/mergo")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.3.0" ,go-gopkg-in-yaml-v2-2.3.0))) -; (home-page "https://github.com/imdario/mergo") -; (synopsis "Mergo") -; (description -; "This package provides a helper to merge structs and maps in Golang. Useful for configuration default values, avoiding messy if-statements. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-opencontainers-runc-0.1.1 -; (package -; (name "go-github-com-opencontainers-runc") -; (version "0.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/runc") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "09fm7f1k4lvx8v3crqb0cli1x2brlz8ka7f7qa8d2sb6ln58h7w7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/runc")) -; (home-page "https://github.com/opencontainers/runc") -; (synopsis "runc") -; (description -; "@code{runc} is a CLI tool for spawning and running containers according to the OCI specification.") -; (license license:asl2.0))) -; -;(define-public go-github-com-willf-bitset-1.1.11-0.20200630133818-d5bec3311243 -; (package -; (name "go-github-com-willf-bitset") -; (version "1.1.11-0.20200630133818-d5bec3311243") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/bits-and-blooms/bitset") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "05nyd0vhp2h9hbqlv2s9l2py6mr8hpz2zyfj09an1q7wd8vph4ja")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/willf/bitset")) -; (home-page "https://github.com/willf/bitset") -; (synopsis "bitset") -; (description -; "Package bitset implements bitsets, a mapping -;between non-negative integers and boolean values. It should be more -;efficient than map[uint] bool. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-opencontainers-selinux-1.6.0 -; (package -; (name "go-github-com-opencontainers-selinux") -; (version "1.6.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/selinux") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ja41zfgrkhk5khixjnxpi1b85xfcxlkhq2q9b7ma6xjfdhg8bq2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/selinux")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777" -; ,go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777) -; ("go-github-com-willf-bitset-1.1.11-0.20200630133818-d5bec3311243" -; ,go-github-com-willf-bitset-1.1.11-0.20200630133818-d5bec3311243) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) -; (home-page "https://github.com/opencontainers/selinux") -; (synopsis "selinux") -; (description "Common SELinux package used across the container ecosystem.") -; (license license:asl2.0))) -; -;(define-public go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2 -; (package -; (name "go-github-com-syndtr-gocapability") -; (version "0.0.0-20180916011248-d98352740cb2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/syndtr/gocapability") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "065y16562ynixxzj7iys4f4spb7knilbj3h833qlhds381j8hn93")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/syndtr/gocapability")) -; (home-page "https://github.com/syndtr/gocapability") -; (synopsis #f) -; (description #f) -; (license license:bsd-2))) -; -;(define-public go-golang-org-x-net-0.0.0-20200707034311-ab3426394381 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20200707034311-ab3426394381") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1wr7rnnqp210yykkypinb8ciszx28aq5a3l3dvsv6swzxxngs8zn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" -; ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) -; ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" -; ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208 -; (package -; (name "go-golang-org-x-sync") -; (version "0.0.0-20200625203802-6e8e738ad208") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sync") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1avk27pszd5l5df6ff7j78wgla46ir1hhy2jwfl9a3c0ys602yx9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sync")) -; (home-page "https://golang.org/x/sync") -; (synopsis "Go Sync") -; (description -; "This repository provides Go concurrency primitives in addition to the -;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-grpc-1.30.0 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.30.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "05pb9xrxd7kpbi8zzby90f87b6sxq65nmpgqx5h3255whmmpzbi9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" -; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.3.3" -; ,go-github-com-golang-protobuf-1.3.3) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-envoyproxy-go-control-plane-0.9.4" -; ,go-github-com-envoyproxy-go-control-plane-0.9.4) -; ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" -; ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-nri-0.0.0-20201007170849-eb1350a75164 -; (package -; (name "go-github-com-containerd-nri") -; (version "0.0.0-20201007170849-eb1350a75164") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/nri") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1yhrxl36fswgxv7ny3p9xi99jsbwyk920gmzkjyfyk6nqs0hqbkg")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/nri")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.30.0" ,go-google-golang-org-grpc-1.30.0) -; ("go-golang-org-x-sys-0.0.0-20200728102440-3e129f6d46b1" -; ,go-golang-org-x-sys-0.0.0-20200728102440-3e129f6d46b1) -; ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" -; ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) -; ("go-golang-org-x-net-0.0.0-20200707034311-ab3426394381" -; ,go-golang-org-x-net-0.0.0-20200707034311-ab3426394381) -; ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) -; ("go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2" -; ,go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-selinux-1.6.0" -; ,go-github-com-opencontainers-selinux-1.6.0) -; ("go-github-com-opencontainers-runc-0.1.1" -; ,go-github-com-opencontainers-runc-0.1.1) -; ("go-github-com-opencontainers-image-spec-1.0.1" -; ,go-github-com-opencontainers-image-spec-1.0.1) -; ("go-github-com-opencontainers-go-digest-1.0.0" -; ,go-github-com-opencontainers-go-digest-1.0.0) -; ("go-github-com-imdario-mergo-0.3.10" -; ,go-github-com-imdario-mergo-0.3.10) -; ("go-github-com-google-uuid-1.1.1" ,go-github-com-google-uuid-1.1.1) -; ("go-github-com-google-go-cmp-0.5.1" -; ,go-github-com-google-go-cmp-0.5.1) -; ("go-github-com-gogo-googleapis-1.4.0" -; ,go-github-com-gogo-googleapis-1.4.0) -; ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" -; ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) -; ("go-github-com-docker-distribution-2.7.1+incompatible" -; ,go-github-com-docker-distribution-2.7.1+incompatible) -; ("go-github-com-containerd-typeurl-1.0.1" -; ,go-github-com-containerd-typeurl-1.0.1) -; ("go-github-com-containerd-ttrpc-1.0.1" -; ,go-github-com-containerd-ttrpc-1.0.1) -; ("go-github-com-containerd-fifo-0.0.0-20200410184934-f15a3290365b" -; ,go-github-com-containerd-fifo-0.0.0-20200410184934-f15a3290365b) -; ("go-github-com-containerd-continuity-0.0.0-20200710164510-efbc4488d8fe" -; ,go-github-com-containerd-continuity-0.0.0-20200710164510-efbc4488d8fe) -; ("go-github-com-containerd-containerd-1.4.0-beta.2.0.20200729163537-40b22ef07410" -; ,go-github-com-containerd-containerd-1.4.0-beta.2.0.20200729163537-40b22ef07410) -; ("go-github-com-containerd-cgroups-0.0.0-20200710171044-318312a37340" -; ,go-github-com-containerd-cgroups-0.0.0-20200710171044-318312a37340) -; ("go-github-com-microsoft-hcsshim-0.8.9" -; ,go-github-com-microsoft-hcsshim-0.8.9))) -; (home-page "https://github.com/containerd/nri") -; (synopsis "nri - Node Resource Interface") -; (description -; "This project is a WIP for a new, CNI like, interface for managing resources on a node for Pods and Containers.") -; (license license:asl2.0))) -; -;(define-public go-github-com-sirupsen-logrus-1.4.1 -; (package -; (name "go-github-com-sirupsen-logrus") -; (version "1.4.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/sirupsen/logrus") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1m7ny9jkb98cxqhsp13xa5hnqh1s9f25x04q6arsala4zswsw33c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/sirupsen/logrus")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33" -; ,go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33) -; ("go-github-com-stretchr-testify-1.2.2" -; ,go-github-com-stretchr-testify-1.2.2) -; ("go-github-com-stretchr-objx-0.1.1" -; ,go-github-com-stretchr-objx-0.1.1) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.1" -; ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.1) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://github.com/sirupsen/logrus") -; (synopsis "Logrus") -; (description -; "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190916202348-b4ddaad3f8a3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "05pa68kqxhpjk71b4cbm8vyzh6527b3ig6war2jr1g4aj3b7f1ak")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-microsoft-go-winio-0.4.16-0.20201130162521-d1ffc52c7331 -; (package -; (name "go-github-com-microsoft-go-winio") -; (version "0.4.16-0.20201130162521-d1ffc52c7331") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/microsoft/go-winio") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0snwbwdjs34x0my9ri77cvrbnahdiyjh2jlkzf12fy48p7fyk7pq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/Microsoft/go-winio")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3" -; ,go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3) -; ("go-github-com-sirupsen-logrus-1.4.1" -; ,go-github-com-sirupsen-logrus-1.4.1) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) -; (home-page "https://github.com/Microsoft/go-winio") -; (synopsis "go-winio") -; (description -; "This repository contains utilities for efficiently performing Win32 IO operations in -;Go. Currently, this is focused on accessing named pipes and other file handles, and -;for using named pipes as a net transport.") -; (license license:expat))) -; -;(define-public go-golang-org-x-sys-0.0.0-20191022100944-742c48ecaeb7 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20191022100944-742c48ecaeb7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1saf59bplvvb753my15ijxcy4a1jwfg53cmkgb6wkln2x4fgnhkp")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-cilium-ebpf-0.0.0-20200110133405-4032b1d8aae3 -; (package -; (name "go-github-com-cilium-ebpf") -; (version "0.0.0-20200110133405-4032b1d8aae3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/cilium/ebpf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "107x63zl8dlw2izn5xw8pnflgq19srpa46bgvjs8q4d61i02q1fr")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/cilium/ebpf")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20191022100944-742c48ecaeb7" -; ,go-golang-org-x-sys-0.0.0-20191022100944-742c48ecaeb7) -; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) -; (home-page "https://github.com/cilium/ebpf") -; (synopsis "eBPF") -; (description "Package ebpf is a toolkit for working with eBPF programs. -;") -; (license license:expat))) -; -;(define-public go-github-com-coreos-go-systemd-v22-22.0.0 -; (package -; (name "go-github-com-coreos-go-systemd-v22") -; (version "22.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/coreos/go-systemd") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0p4sb2fxxm2j1xny2l4fkq4kwj74plvh600gih8nyniqzannhrdx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/coreos/go-systemd/v22")) -; (propagated-inputs -; `(("go-github-com-godbus-dbus-v5-5.0.3" -; ,go-github-com-godbus-dbus-v5-5.0.3))) -; (home-page "https://github.com/coreos/go-systemd") -; (synopsis "go-systemd") -; (description "Go bindings to systemd. The project has several packages:") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-cgroups-0.0.0-20200531161412-0dbf7f05ba59 -; (package -; (name "go-github-com-containerd-cgroups") -; (version "0.0.0-20200531161412-0dbf7f05ba59") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/cgroups") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "10abzkjf77s8pv4mpyvy2jbl8wckhk3j7ykgs01sclal21v8p251")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/cgroups")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479" -; ,go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479) -; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) -; ("go-github-com-stretchr-testify-1.2.2" -; ,go-github-com-stretchr-testify-1.2.2) -; ("go-github-com-sirupsen-logrus-1.4.2" -; ,go-github-com-sirupsen-logrus-1.4.2) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-runtime-spec-1.0.2" -; ,go-github-com-opencontainers-runtime-spec-1.0.2) -; ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.2" -; ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.2) -; ("go-github-com-gogo-protobuf-1.3.1" -; ,go-github-com-gogo-protobuf-1.3.1) -; ("go-github-com-godbus-dbus-v5-5.0.3" -; ,go-github-com-godbus-dbus-v5-5.0.3) -; ("go-github-com-docker-go-units-0.4.0" -; ,go-github-com-docker-go-units-0.4.0) -; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" -; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) -; ("go-github-com-coreos-go-systemd-v22-22.0.0" -; ,go-github-com-coreos-go-systemd-v22-22.0.0) -; ("go-github-com-cilium-ebpf-0.0.0-20200110133405-4032b1d8aae3" -; ,go-github-com-cilium-ebpf-0.0.0-20200110133405-4032b1d8aae3))) -; (home-page "https://github.com/containerd/cgroups") -; (synopsis "cgroups") -; (description -; "Go package for creating, managing, inspecting, and destroying cgroups. -;The resources format for settings on the cgroup uses the OCI runtime-spec found -;@url{https://github.com/opencontainers/runtime-spec,here}.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1 -; (package -; (name "go-github-com-containerd-console") -; (version "0.0.0-20180822173158-c12b1e7919c1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/console") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ylrnmdhn9a2f8w8fsdgsvwnz5j0whhyhppjnhqc4lh8h9p9dpi9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/console")) -; (home-page "https://github.com/containerd/console") -; (synopsis "console") -; (description -; "Golang package for dealing with consoles. Light on deps and a simple API.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-containerd-1.3.2 -; (package -; (name "go-github-com-containerd-containerd") -; (version "1.3.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/containerd") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0qz6ss7a6f2r7gl7aar39pr5ry9l7nh7dn3kclr18nwdv01gmrvc")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/containerd")) -; (home-page "https://github.com/containerd/containerd") -; (synopsis "Now Recruiting") -; (description -; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc -; (package -; (name "go-github-com-containerd-continuity") -; (version "0.0.0-20190426062206-aaeac12a7ffc") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/continuity") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "05caqvxxb831xfvqnga692k98cy8xzkllqg1ibra0fb0ljnhbmca")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/continuity")) -; (home-page "https://github.com/containerd/continuity") -; (synopsis "continuity") -; (description -; "This package provides a transport-agnostic, filesystem metadata manifest system") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448 -; (package -; (name "go-github-com-containerd-fifo") -; (version "0.0.0-20190226154929-a9fb20d87448") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/fifo") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0c0sgfnafjnws4jgziczs6wxh0adjdrp6yyd88b7xy0hv13fsnqa")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/fifo")) -; (home-page "https://github.com/containerd/fifo") -; (synopsis "fifo") -; (description "Go package for handling fifos in a sane way.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3 -; (package -; (name "go-github-com-containerd-go-runc") -; (version "0.0.0-20180907222934-5a6d9f37cfa3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/go-runc") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "07qpxcjy64m238igpmj8g9z7qhf06k5xy1jcgpgvf5n912g4k3vd")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/go-runc")) -; (home-page "https://github.com/containerd/go-runc") -; (synopsis "go-runc") -; (description -; "This is a package for consuming the @url{https://github.com/opencontainers/runc,runc} binary in your Go applications. -;It tries to expose all the settings and features of the runc CLI. If there is something missing then add it, its opensource!") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de -; (package -; (name "go-github-com-containerd-ttrpc") -; (version "0.0.0-20190828154514-0e0f228740de") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/ttrpc") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1kzclhmicw2xkiqsg6npx0xzs5jx36mqmyd0gj5dzv88i7p4b8dx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/ttrpc")) -; (home-page "https://github.com/containerd/ttrpc") -; (synopsis "ttrpc") -; (description "GRPC for low-memory environments.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd -; (package -; (name "go-github-com-containerd-typeurl") -; (version "0.0.0-20180627222232-a93fcdb778cd") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/typeurl") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0aqnf5rzc5pldln0czhxlr0fqaf5553ab7wzsq85p90lg1ryqnd6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/typeurl")) -; (home-page "https://github.com/containerd/typeurl") -; (synopsis "typeurl") -; (description -; "This package provides a Go package for managing the registration, marshaling, and unmarshaling of encoded types.") -; (license license:asl2.0))) -; -;(define-public go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2 -; (package -; (name "go-github-com-opencontainers-go-digest") -; (version "0.0.0-20180430190053-c9281466c8b2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/go-digest") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1djdazssy27xn91pjhx3dgb0f11bnlzzbwkh7f8zwnpz011anasi")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/go-digest")) -; (home-page "https://github.com/opencontainers/go-digest") -; (synopsis "go-digest") -; (description -; "Package digest provides a generalized type to opaquely represent message -;digests and their operations within the registry. The Digest type is -;designed to serve as a flexible identifier in a content-addressable system. -;More importantly, it provides tools and wrappers to work with -;hash.Hash-based digests with little effort. -;") -; (license (list license:asl2.0 license:cc-by-sa4.0)))) -; -;(define-public go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f -; (package -; (name "go-github-com-opencontainers-runc") -; (version "0.0.0-20190115041553-12f6a991201f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/runc") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0lr4q440pliilq2njyj5glfpma89r9l1cl687niwkp2pzb32dm45")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/runc")) -; (home-page "https://github.com/opencontainers/runc") -; (synopsis "runc") -; (description -; "@code{runc} is a CLI tool for spawning and running containers according to the OCI specification.") -; (license license:asl2.0))) -; -;(define-public go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7 -; (package -; (name "go-github-com-prometheus-procfs") -; (version "0.0.0-20180125133057-cb4147076ac7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/procfs") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0zhlrik0f9q1lj6cisgnxgbz4darbcix52hm5abi24l2ahchf5ca")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/procfs")) -; (home-page "https://github.com/prometheus/procfs") -; (synopsis "procfs") -; (description -; "Package procfs provides functions to retrieve system, kernel and process -;metrics from the pseudo-filesystem proc. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-net-0.0.0-20190501004415-9ce7a6920f09 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20190501004415-9ce7a6920f09") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1kbs85jsqbv4v89ii2zam4b8dhmllhsrf46njmi09x0w6s0b9cbk")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-go-opencensus-io-0.22.0 -; (package -; (name "go-go-opencensus-io") -; (version "0.22.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/census-instrumentation/opencensus-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "05jr8gkr2w34i5wwki4zhl5ch0qrgi7cdgag5iy5gpxplhbrvbg9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "go.opencensus.io")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.20.1" ,go-google-golang-org-grpc-1.20.1) -; ("go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb" -; ,go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb) -; ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) -; ("go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd" -; ,go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd) -; ("go-golang-org-x-net-0.0.0-20190501004415-9ce7a6920f09" -; ,go-golang-org-x-net-0.0.0-20190501004415-9ce7a6920f09) -; ("go-github-com-hashicorp-golang-lru-0.5.1" -; ,go-github-com-hashicorp-golang-lru-0.5.1) -; ("go-github-com-google-go-cmp-0.3.0" -; ,go-github-com-google-go-cmp-0.3.0) -; ("go-github-com-golang-protobuf-1.3.1" -; ,go-github-com-golang-protobuf-1.3.1))) -; (home-page "https://go.opencensus.io") -; (synopsis "OpenCensus Libraries for Go") -; (description "Package opencensus contains Go support for OpenCensus. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20191004110552-13f9640d40b9") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ba2767lvklnmfvb9jkwvd4m7z6326gaiz3rgylh795g88hy34g1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873 -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20190502173448-54afdca5d873") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1vm1vggl874jd4wi6qyl7aggc6s6kdsazk4vj0cs2dfcw2xnw8ag")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" -; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) -; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) -; ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" -; ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) -; ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" -; ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) -; ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" -; ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd) -; ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" -; ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) -; ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" -; ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-grpc-1.23.1 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.23.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1d8gjjhrqbiq8pb56lb4x10hb752k7k06wspjvh7v0vpzmf25981")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" -; ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) -; ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" -; ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) -; ("go-google-golang-org-appengine-1.1.0" -; ,go-google-golang-org-appengine-1.1.0) -; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" -; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-github-com-google-go-cmp-0.2.0" -; ,go-github-com-google-go-cmp-0.2.0) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0) -; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-client9-misspell-0.3.4" -; ,go-github-com-client9-misspell-0.3.4) -; ("go-github-com-burntsushi-toml-0.3.1" -; ,go-github-com-burntsushi-toml-0.3.1) -; ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-microsoft-hcsshim-0.8.14 -; (package -; (name "go-github-com-microsoft-hcsshim") -; (version "0.8.14") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/microsoft/hcsshim") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0k57knv8zrf32hp7rpv1km9j772w6752pfvdbpd3l711ism48c84")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/Microsoft/hcsshim")) -; (propagated-inputs -; `(("go-gotest-tools-2.2.0+incompatible" -; ,go-gotest-tools-2.2.0+incompatible) -; ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) -; ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" -; ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) -; ("go-google-golang-org-grpc-1.23.1" ,go-google-golang-org-grpc-1.23.1) -; ("go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873" -; ,go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873) -; ("go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3" -; ,go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3) -; ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" -; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) -; ("go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9" -; ,go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9) -; ("go-go-opencensus-io-0.22.0" ,go-go-opencensus-io-0.22.0) -; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) -; ("go-github-com-stretchr-testify-1.4.0" -; ,go-github-com-stretchr-testify-1.4.0) -; ("go-github-com-sirupsen-logrus-1.4.2" -; ,go-github-com-sirupsen-logrus-1.4.2) -; ("go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7" -; ,go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-runtime-spec-1.0.2" -; ,go-github-com-opencontainers-runtime-spec-1.0.2) -; ("go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f" -; ,go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f) -; ("go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2" -; ,go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2) -; ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2) -; ("go-github-com-gogo-protobuf-1.3.1" -; ,go-github-com-gogo-protobuf-1.3.1) -; ("go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd" -; ,go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd) -; ("go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de" -; ,go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de) -; ("go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3" -; ,go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3) -; ("go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448" -; ,go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448) -; ("go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc" -; ,go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc) -; ("go-github-com-containerd-containerd-1.3.2" -; ,go-github-com-containerd-containerd-1.3.2) -; ("go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1" -; ,go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1) -; ("go-github-com-containerd-cgroups-0.0.0-20200531161412-0dbf7f05ba59" -; ,go-github-com-containerd-cgroups-0.0.0-20200531161412-0dbf7f05ba59) -; ("go-github-com-microsoft-go-winio-0.4.16-0.20201130162521-d1ffc52c7331" -; ,go-github-com-microsoft-go-winio-0.4.16-0.20201130162521-d1ffc52c7331))) -; (home-page "https://github.com/Microsoft/hcsshim") -; (synopsis "hcsshim") -; (description -; "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") -; (license license:expat))) -; -;(define-public go-github-com-containerd-containerd-1.4.3 -; (package -; (name "go-github-com-containerd-containerd") -; (version "1.4.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/containerd") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "09xvhjg5f8h90w1y94kqqnqzhbhd62dcdd9wb9sdqakisjk6zrl0")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/containerd")) -; (home-page "https://github.com/containerd/containerd") -; (synopsis "Now Recruiting") -; (description -; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-typeurl-1.0.1 -; (package -; (name "go-github-com-containerd-typeurl") -; (version "1.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/typeurl") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "09cgrchrw5d36zq0mc321l5qr2gfbdm1z1a3hhkhqr4qay6vglqn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/typeurl")) -; (propagated-inputs -; `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-gogo-protobuf-1.3.1" -; ,go-github-com-gogo-protobuf-1.3.1))) -; (home-page "https://github.com/containerd/typeurl") -; (synopsis "typeurl") -; (description -; "This package provides a Go package for managing the registration, marshaling, and unmarshaling of encoded types.") -; (license license:asl2.0))) -; -;(define-public go-github-com-opencontainers-runc-1.0.0-rc9 -; (package -; (name "go-github-com-opencontainers-runc") -; (version "1.0.0-rc9") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/runc") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ss5b46cbbckyqlwgj8dbd5l59c5y0kp679hcpc0ybaj53pmwxj7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/runc")) -; (home-page "https://github.com/opencontainers/runc") -; (synopsis "runc") -; (description -; "@code{runc} is a CLI tool for spawning and running containers according to the OCI specification.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-zfs-0.0.0-20210301145711-11e8f1707f62 -; (package -; (name "go-github-com-containerd-zfs") -; (version "0.0.0-20210301145711-11e8f1707f62") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/zfs") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1919ax45a07v2y56xq5c0xihkn2c5zgyqv68rzx3x5cc20n2p8yg")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/zfs")) -; (propagated-inputs -; `(("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) -; ("go-go-etcd-io-bbolt-1.3.3" ,go-go-etcd-io-bbolt-1.3.3) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-runc-1.0.0-rc9" -; ,go-github-com-opencontainers-runc-1.0.0-rc9) -; ("go-github-com-opencontainers-image-spec-1.0.1" -; ,go-github-com-opencontainers-image-spec-1.0.1) -; ("go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible" -; ,go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible) -; ("go-github-com-google-uuid-1.1.1" ,go-github-com-google-uuid-1.1.1) -; ("go-github-com-gogo-protobuf-1.3.1" -; ,go-github-com-gogo-protobuf-1.3.1) -; ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" -; ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) -; ("go-github-com-containerd-typeurl-1.0.1" -; ,go-github-com-containerd-typeurl-1.0.1) -; ("go-github-com-containerd-ttrpc-1.0.2" -; ,go-github-com-containerd-ttrpc-1.0.2) -; ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" -; ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) -; ("go-github-com-containerd-containerd-1.4.3" -; ,go-github-com-containerd-containerd-1.4.3) -; ("go-github-com-microsoft-hcsshim-0.8.14" -; ,go-github-com-microsoft-hcsshim-0.8.14))) -; (home-page "https://github.com/containerd/zfs") -; (synopsis "ZFS snapshotter plugin") -; (description "ZFS snapshotter plugin for containerd.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containernetworking-cni-0.7.1 -; (package -; (name "go-github-com-containernetworking-cni") -; (version "0.7.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containernetworking/cni") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "02qn1br8164d99978acalisy1sx294g1axnii4yh1wji0fc735xz")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containernetworking/cni")) -; (home-page "https://github.com/containernetworking/cni") -; (synopsis "CNI - the Container Network Interface") -; (description -; "CNI (), a @url{https://cncf.io,Cloud Native Computing Foundation} project, consists of a specification and libraries for writing plugins to configure network interfaces in Linux containers, along with a number of supported plugins. -;CNI concerns itself only with network connectivity of containers and removing allocated resources when the container is deleted. -;Because of this focus, CNI has a wide range of support and the specification is simple to implement.") -; (license license:asl2.0))) -; -;(define-public go-github-com-coreos-go-iptables-0.4.5 -; (package -; (name "go-github-com-coreos-go-iptables") -; (version "0.4.5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/coreos/go-iptables") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "04iqh4hvvrrvjsfjyaa5bdyqklwzrzzy8yiyvja90hvv121f7975")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/coreos/go-iptables")) -; (home-page "https://github.com/coreos/go-iptables") -; (synopsis "go-iptables") -; (description "Go bindings for iptables utility.") -; (license license:asl2.0))) -; -;(define-public go-github-com-onsi-ginkgo-0.0.0-20151202141238-7f8ab55aaf3b -; (package -; (name "go-github-com-onsi-ginkgo") -; (version "0.0.0-20151202141238-7f8ab55aaf3b") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/onsi/ginkgo") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0nas6wqdym4jx42kw9wj80b58r69k9qhnvglz009lj34g5gba7rw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/onsi/ginkgo")) -; (home-page "https://github.com/onsi/ginkgo") -; (synopsis "Ginkgo 2.0 Release Candidate is available!") -; (description "Ginkgo is a BDD-style testing framework for Golang -;") -; (license license:expat))) -; -;(define-public go-github-com-onsi-gomega-0.0.0-20151007035656-2152b45fa28a -; (package -; (name "go-github-com-onsi-gomega") -; (version "0.0.0-20151007035656-2152b45fa28a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/onsi/gomega") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0amjlkawp84mmdqjgdamf93p1546cla6h4wwrx7hf5r862r2qcw2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/onsi/gomega")) -; (home-page "https://github.com/onsi/gomega") -; (synopsis ": a BDD Testing Framework for Golang") -; (description -; "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library. -;") -; (license license:expat))) -; -;(define-public go-github-com-vishvananda-netlink-0.0.0-20181108222139-023a6dafdcdf -; (package -; (name "go-github-com-vishvananda-netlink") -; (version "0.0.0-20181108222139-023a6dafdcdf") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/vishvananda/netlink") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1i5q8r8rg7lxzvq2vhbf25lrkzdlgficfv0bxg9rf7cgg6z819sn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/vishvananda/netlink")) -; (home-page "https://github.com/vishvananda/netlink") -; (synopsis "netlink - netlink library for go") -; (description -; "Package netlink provides a simple library for netlink. Netlink is -;the interface a user-space program in linux uses to communicate with -;the kernel. It can be used to add and remove interfaces, set up ip -;addresses and routes, and confiugre ipsec. Netlink communication -;requires elevated privileges, so in most cases this code needs to -;be run as root. The low level primitives for netlink are contained -;in the nl subpackage. This package attempts to provide a high-level -;interface that is loosly modeled on the iproute2 cli. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-vishvananda-netns-0.0.0-20180720170159-13995c7128cc -; (package -; (name "go-github-com-vishvananda-netns") -; (version "0.0.0-20180720170159-13995c7128cc") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/vishvananda/netns") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1zk6w8158qi4niva5rijchbv9ixgmijsgqshh54wdaav4xrhjshn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/vishvananda/netns")) -; (home-page "https://github.com/vishvananda/netns") -; (synopsis "netns - network namespaces in go") -; (description -; "Package netns allows ultra-simple network namespace handling. NsHandles -;can be retrieved and set. Note that the current namespace is thread -;local so actions that set and reset namespaces should use LockOSThread -;to make sure the namespace doesn't change due to a goroutine switch. -;It is best to close NsHandles when you are done with them. This can be -;accomplished via a `defer ns.Close()` on the handle. Changing namespaces -;requires elevated privileges, so in most cases this code needs to be run -;as root. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20181009213950-7c1a557ab941 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20181009213950-7c1a557ab941") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1f1q9mby8m7ws3gbj90v0prhnf4g2sgf74azmw31kzwd6azlar3m")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20181011144130-49bb7cea24b1 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20181011144130-49bb7cea24b1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "111q4qm3hcjvzvyv9y5rz8ydnyg48rckcygxqy6gv63q618wz6gn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-github-com-containernetworking-plugins-0.8.6 -; (package -; (name "go-github-com-containernetworking-plugins") -; (version "0.8.6") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containernetworking/plugins") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0f1cqxjf26sy1c4aw6y7pyd9lrz0vknby4q5j6xj77a1pab9073m")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containernetworking/plugins")) -; (propagated-inputs -; `(("go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2" -; ,go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2) -; ("go-gopkg-in-airbrake-gobrake-v2-2.0.9" -; ,go-gopkg-in-airbrake-gobrake-v2-2.0.9) -; ("go-golang-org-x-sys-0.0.0-20190616124812-15dcb6c0061f" -; ,go-golang-org-x-sys-0.0.0-20190616124812-15dcb6c0061f) -; ("go-golang-org-x-net-0.0.0-20181011144130-49bb7cea24b1" -; ,go-golang-org-x-net-0.0.0-20181011144130-49bb7cea24b1) -; ("go-golang-org-x-crypto-0.0.0-20181009213950-7c1a557ab941" -; ,go-golang-org-x-crypto-0.0.0-20181009213950-7c1a557ab941) -; ("go-github-com-vishvananda-netns-0.0.0-20180720170159-13995c7128cc" -; ,go-github-com-vishvananda-netns-0.0.0-20180720170159-13995c7128cc) -; ("go-github-com-vishvananda-netlink-0.0.0-20181108222139-023a6dafdcdf" -; ,go-github-com-vishvananda-netlink-0.0.0-20181108222139-023a6dafdcdf) -; ("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0) -; ("go-github-com-sirupsen-logrus-1.0.6" -; ,go-github-com-sirupsen-logrus-1.0.6) -; ("go-github-com-safchain-ethtool-0.0.0-20190326074333-42ed695e3de8" -; ,go-github-com-safchain-ethtool-0.0.0-20190326074333-42ed695e3de8) -; ("go-github-com-onsi-gomega-0.0.0-20151007035656-2152b45fa28a" -; ,go-github-com-onsi-gomega-0.0.0-20151007035656-2152b45fa28a) -; ("go-github-com-onsi-ginkgo-0.0.0-20151202141238-7f8ab55aaf3b" -; ,go-github-com-onsi-ginkgo-0.0.0-20151202141238-7f8ab55aaf3b) -; ("go-github-com-mattn-go-shellwords-1.0.3" -; ,go-github-com-mattn-go-shellwords-1.0.3) -; ("go-github-com-j-keck-arping-0.0.0-20160618110441-2cf9dc699c56" -; ,go-github-com-j-keck-arping-0.0.0-20160618110441-2cf9dc699c56) -; ("go-github-com-golang-protobuf-1.3.1" -; ,go-github-com-golang-protobuf-1.3.1) -; ("go-github-com-godbus-dbus-0.0.0-20180201030542-885f9cc04c9c" -; ,go-github-com-godbus-dbus-0.0.0-20180201030542-885f9cc04c9c) -; ("go-github-com-d2g-hardwareaddr-0.0.0-20190221164911-e7d9fbe030e4" -; ,go-github-com-d2g-hardwareaddr-0.0.0-20190221164911-e7d9fbe030e4) -; ("go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5" -; ,go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5) -; ("go-github-com-d2g-dhcp4client-1.0.0" -; ,go-github-com-d2g-dhcp4client-1.0.0) -; ("go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c" -; ,go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c) -; ("go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7" -; ,go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7) -; ("go-github-com-coreos-go-iptables-0.4.5" -; ,go-github-com-coreos-go-iptables-0.4.5) -; ("go-github-com-containernetworking-cni-0.7.1" -; ,go-github-com-containernetworking-cni-0.7.1) -; ("go-github-com-buger-jsonparser-0.0.0-20180808090653-f4dd9f5a6b44" -; ,go-github-com-buger-jsonparser-0.0.0-20180808090653-f4dd9f5a6b44) -; ("go-github-com-alexflint-go-filemutex-0.0.0-20171022225611-72bdc8eae2ae" -; ,go-github-com-alexflint-go-filemutex-0.0.0-20171022225611-72bdc8eae2ae) -; ("go-github-com-microsoft-hcsshim-0.8.6" -; ,go-github-com-microsoft-hcsshim-0.8.6) -; ("go-github-com-microsoft-go-winio-0.4.11" -; ,go-github-com-microsoft-go-winio-0.4.11))) -; (home-page "https://github.com/containernetworking/plugins") -; (synopsis "Plugins") -; (description -; "Some CNI network plugins, maintained by the containernetworking team. For more information, see the @url{https://www.cni.dev,CNI website}.") -; (license license:asl2.0))) -; -;(define-public go-github-com-imdario-mergo-0.3.11 -; (package -; (name "go-github-com-imdario-mergo") -; (version "0.3.11") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/imdario/mergo") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "07iay9j3ry7qrflvn9bgyyggvwacl1s1in1cnbmsp1020ydkph8k")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/imdario/mergo")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.3.0" ,go-gopkg-in-yaml-v2-2.3.0))) -; (home-page "https://github.com/imdario/mergo") -; (synopsis "Mergo") -; (description -; "This package provides a helper to merge structs and maps in Golang. Useful for configuration default values, avoiding messy if-statements. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-klauspost-compress-1.11.3 -; (package -; (name "go-github-com-klauspost-compress") -; (version "1.11.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/klauspost/compress") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "04wpilw6072fh2wd492ma1nw4br7bvz466mj0vi2m1g4w6d0z88z")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/klauspost/compress")) -; (home-page "https://github.com/klauspost/compress") -; (synopsis "compress") -; (description "This package provides various compression algorithms.") -; (license #f))) -; -;(define-public go-github-com-checkpoint-restore-go-criu-v4-4.1.0 -; (package -; (name "go-github-com-checkpoint-restore-go-criu-v4") -; (version "4.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/checkpoint-restore/go-criu") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0hfgjck015df5h44hczl3x4gg430saczgkl619cp0l6cpaxga5yi")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/checkpoint-restore/go-criu/v4")) -; (propagated-inputs -; `(("go-github-com-golang-protobuf-1.3.5" -; ,go-github-com-golang-protobuf-1.3.5))) -; (home-page "https://github.com/checkpoint-restore/go-criu") -; (synopsis "go-criu -- Go bindings for") -; (description -; "This repository provides Go bindings for CRIU. The code is based on the Go based PHaul -;implementation from the CRIU repository. For easier inclusion into other Go projects the -;CRIU Go bindings have been moved to this repository.") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20200124204421-9fbb57f87de9") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0qaz2jjkrxzgkapmjqingdwamrgq2aiblxvzzgrcsv2qhkj0wdps")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-cilium-ebpf-0.2.0 -; (package -; (name "go-github-com-cilium-ebpf") -; (version "0.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/cilium/ebpf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0f7my8n5v2c5cmgrcikgi0naamglr7c4khgxkbb1k5wl8mm9465a")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/cilium/ebpf")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9" -; ,go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9) -; ("go-github-com-google-go-cmp-0.5.2" -; ,go-github-com-google-go-cmp-0.5.2))) -; (home-page "https://github.com/cilium/ebpf") -; (synopsis "eBPF") -; (description "Package ebpf is a toolkit for working with eBPF programs. -;") -; (license license:expat))) -; -;(define-public go-github-com-opencontainers-runc-1.0.0-rc93 -; (package -; (name "go-github-com-opencontainers-runc") -; (version "1.0.0-rc93") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/runc") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "008d5wkznic80n5q1vwx727qn5ifalc7cydq68hc1gk9wrhna4v4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/runc")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" -; ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68) -; ("go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b" -; ,go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b) -; ("go-github-com-willf-bitset-1.1.11" -; ,go-github-com-willf-bitset-1.1.11) -; ("go-github-com-vishvananda-netlink-1.1.0" -; ,go-github-com-vishvananda-netlink-1.1.0) -; ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) -; ("go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635" -; ,go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635) -; ("go-github-com-sirupsen-logrus-1.7.0" -; ,go-github-com-sirupsen-logrus-1.7.0) -; ("go-github-com-seccomp-libseccomp-golang-0.9.1" -; ,go-github-com-seccomp-libseccomp-golang-0.9.1) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-selinux-1.8.0" -; ,go-github-com-opencontainers-selinux-1.8.0) -; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" -; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) -; ("go-github-com-mrunalp-fileutils-0.5.0" -; ,go-github-com-mrunalp-fileutils-0.5.0) -; ("go-github-com-moby-sys-mountinfo-0.4.0" -; ,go-github-com-moby-sys-mountinfo-0.4.0) -; ("go-github-com-golang-protobuf-1.4.3" -; ,go-github-com-golang-protobuf-1.4.3) -; ("go-github-com-godbus-dbus-v5-5.0.3" -; ,go-github-com-godbus-dbus-v5-5.0.3) -; ("go-github-com-docker-go-units-0.4.0" -; ,go-github-com-docker-go-units-0.4.0) -; ("go-github-com-cyphar-filepath-securejoin-0.2.2" -; ,go-github-com-cyphar-filepath-securejoin-0.2.2) -; ("go-github-com-coreos-go-systemd-v22-22.1.0" -; ,go-github-com-coreos-go-systemd-v22-22.1.0) -; ("go-github-com-containerd-console-1.0.1" -; ,go-github-com-containerd-console-1.0.1) -; ("go-github-com-cilium-ebpf-0.2.0" ,go-github-com-cilium-ebpf-0.2.0) -; ("go-github-com-checkpoint-restore-go-criu-v4-4.1.0" -; ,go-github-com-checkpoint-restore-go-criu-v4-4.1.0))) -; (home-page "https://github.com/opencontainers/runc") -; (synopsis "runc") -; (description -; "@code{runc} is a CLI tool for spawning and running containers according to the OCI specification.") -; (license license:asl2.0))) -; -;(define-public go-github-com-willf-bitset-1.1.11 -; (package -; (name "go-github-com-willf-bitset") -; (version "1.1.11") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/bits-and-blooms/bitset") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1v7wnikdxiyhwdxnsj2wcrsrsi1kb2ssmarvbrda90vmxzafjl7d")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/willf/bitset")) -; (home-page "https://github.com/willf/bitset") -; (synopsis "bitset") -; (description -; "Package bitset implements bitsets, a mapping -;between non-negative integers and boolean values. It should be more -;efficient than map[uint] bool. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-opencontainers-selinux-1.8.0 -; (package -; (name "go-github-com-opencontainers-selinux") -; (version "1.8.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/selinux") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "08aakiva619hk4lgfvyi6kpjgw7hfirs0jlc2jdgzcv7p0gfhbmx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/selinux")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777" -; ,go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777) -; ("go-github-com-willf-bitset-1.1.11" -; ,go-github-com-willf-bitset-1.1.11) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) -; (home-page "https://github.com/opencontainers/selinux") -; (synopsis "selinux") -; (description "Common SELinux package used across the container ecosystem.") -; (license license:asl2.0))) -; -;(define-public go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.14 -; (package -; (name "go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client") -; (version "0.0.14") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes-sigs/apiserver-network-proxy") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0px41x5apgcssmwmx75cwm000s8b8pgd84dxn56maxx223dzz9vm")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path -; "sigs.k8s.io/apiserver-network-proxy/konnectivity-client")) -; (propagated-inputs -; `(("go-k8s-io-klog-v2-2.0.0" ,go-k8s-io-klog-v2-2.0.0) -; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) -; ("go-github-com-golang-protobuf-1.4.0" -; ,go-github-com-golang-protobuf-1.4.0))) -; (home-page -; "https://sigs.k8s.io/apiserver-network-proxy/konnectivity-client") -; (synopsis #f) -; (description #f) -; (license license:asl2.0))) -; -;(define-public go-k8s-io-apiserver-0.20.1 -; (package -; (name "go-k8s-io-apiserver") -; (version "0.20.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes/apiserver") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "03k8kjisscj59i410kk2bz0qfpxa2d2vbwxiwyn93k7a2avbn7cs")))) -; (build-system go-build-system) -; (arguments '(#:import-path "k8s.io/apiserver")) -; (propagated-inputs -; `(("go-k8s-io-component-base-0.20.1" ,go-k8s-io-component-base-0.20.1) -; ("go-k8s-io-client-go-0.20.1" ,go-k8s-io-client-go-0.20.1) -; ("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) -; ("go-k8s-io-api-0.20.1" ,go-k8s-io-api-0.20.1) -; ("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) -; ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.2" -; ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.2) -; ("go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.14" -; ,go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.14) -; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" -; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) -; ("go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd" -; ,go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd) -; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) -; ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) -; ("go-gopkg-in-square-go-jose-v2-2.2.2" -; ,go-gopkg-in-square-go-jose-v2-2.2.2) -; ("go-gopkg-in-natefinch-lumberjack-v2-2.0.0" -; ,go-gopkg-in-natefinch-lumberjack-v2-2.0.0) -; ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) -; ("go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a" -; ,go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a) -; ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" -; ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) -; ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" -; ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) -; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" -; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) -; ("go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0" -; ,go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0) -; ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) -; ("go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489" -; ,go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489) -; ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) -; ("go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5" -; ,go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) -; ("go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021" -; ,go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822" -; ,go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822) -; ("go-github-com-mailru-easyjson-0.7.0" -; ,go-github-com-mailru-easyjson-0.7.0) -; ("go-github-com-hashicorp-golang-lru-0.5.1" -; ,go-github-com-hashicorp-golang-lru-0.5.1) -; ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" -; ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) -; ("go-github-com-gorilla-websocket-1.4.2" -; ,go-github-com-gorilla-websocket-1.4.2) -; ("go-github-com-googleapis-gnostic-0.4.1" -; ,go-github-com-googleapis-gnostic-0.4.1) -; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) -; ("go-github-com-google-gofuzz-1.1.0" -; ,go-github-com-google-gofuzz-1.1.0) -; ("go-github-com-google-go-cmp-0.5.2" -; ,go-github-com-google-go-cmp-0.5.2) -; ("go-github-com-gogo-protobuf-1.3.1" -; ,go-github-com-gogo-protobuf-1.3.1) -; ("go-github-com-go-openapi-spec-0.19.3" -; ,go-github-com-go-openapi-spec-0.19.3) -; ("go-github-com-evanphx-json-patch-4.9.0+incompatible" -; ,go-github-com-evanphx-json-patch-4.9.0+incompatible) -; ("go-github-com-emicklei-go-restful-2.9.5+incompatible" -; ,go-github-com-emicklei-go-restful-2.9.5+incompatible) -; ("go-github-com-dustin-go-humanize-1.0.0" -; ,go-github-com-dustin-go-humanize-1.0.0) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1) -; ("go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f" -; ,go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f) -; ("go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e" -; ,go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e) -; ("go-github-com-coreos-go-semver-0.3.0" -; ,go-github-com-coreos-go-semver-0.3.0) -; ("go-github-com-coreos-go-oidc-2.1.0+incompatible" -; ,go-github-com-coreos-go-oidc-2.1.0+incompatible))) -; (home-page "https://k8s.io/apiserver") -; (synopsis "apiserver") -; (description -; "Generic library for building a Kubernetes aggregated API server.") -; (license license:asl2.0))) -; -;(define-public go-k8s-io-api-0.20.1 -; (package -; (name "go-k8s-io-api") -; (version "0.20.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes/api") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "051nl7g66k0jkc9rmfbvwdsmqkn36nq71kvnfym3lhnjcgg53k0l")))) -; (build-system go-build-system) -; (arguments '(#:import-path "k8s.io/api")) -; (propagated-inputs -; `(("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-gogo-protobuf-1.3.1" -; ,go-github-com-gogo-protobuf-1.3.1))) -; (home-page "https://k8s.io/api") -; (synopsis "api") -; (description -; "Schema of the external API types that are served by the Kubernetes API server.") -; (license license:asl2.0))) -; -;(define-public go-k8s-io-apimachinery-0.20.1 -; (package -; (name "go-k8s-io-apimachinery") -; (version "0.20.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes/apimachinery") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "15qc12lbzpd4lgajy0rv24b3ky4hhg5y1l37qxdfiakhz91didfw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "k8s.io/apimachinery")) -; (propagated-inputs -; `(("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) -; ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.2" -; ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.2) -; ("go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd" -; ,go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd) -; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) -; ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) -; ("go-gopkg-in-inf-v0-0.9.1" ,go-gopkg-in-inf-v0-0.9.1) -; ("go-google-golang-org-protobuf-1.25.0" -; ,go-google-golang-org-protobuf-1.25.0) -; ("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" -; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) -; ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) -; ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" -; ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) -; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" -; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-onsi-gomega-1.7.0" ,go-github-com-onsi-gomega-1.7.0) -; ("go-github-com-onsi-ginkgo-1.11.0" ,go-github-com-onsi-ginkgo-1.11.0) -; ("go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f" -; ,go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f) -; ("go-github-com-modern-go-reflect2-1.0.1" -; ,go-github-com-modern-go-reflect2-1.0.1) -; ("go-github-com-json-iterator-go-1.1.10" -; ,go-github-com-json-iterator-go-1.1.10) -; ("go-github-com-hashicorp-golang-lru-0.5.1" -; ,go-github-com-hashicorp-golang-lru-0.5.1) -; ("go-github-com-googleapis-gnostic-0.4.1" -; ,go-github-com-googleapis-gnostic-0.4.1) -; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) -; ("go-github-com-google-gofuzz-1.1.0" -; ,go-github-com-google-gofuzz-1.1.0) -; ("go-github-com-google-go-cmp-0.5.2" -; ,go-github-com-google-go-cmp-0.5.2) -; ("go-github-com-golang-protobuf-1.4.3" -; ,go-github-com-golang-protobuf-1.4.3) -; ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" -; ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) -; ("go-github-com-gogo-protobuf-1.3.1" -; ,go-github-com-gogo-protobuf-1.3.1) -; ("go-github-com-fsnotify-fsnotify-1.4.9" -; ,go-github-com-fsnotify-fsnotify-1.4.9) -; ("go-github-com-evanphx-json-patch-4.9.0+incompatible" -; ,go-github-com-evanphx-json-patch-4.9.0+incompatible) -; ("go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153" -; ,go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153) -; ("go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96" -; ,go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://k8s.io/apimachinery") -; (synopsis "apimachinery") -; (description -; "Scheme, typing, encoding, decoding, and conversion packages for Kubernetes and Kubernetes-like API objects.") -; (license license:asl2.0))) -; -;(define-public go-k8s-io-client-go-0.20.1 -; (package -; (name "go-k8s-io-client-go") -; (version "0.20.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes/client-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "02jrzwwcrdlya91fga2wvf8dsl1yka3kky194dm6l9pmd754qwzs")))) -; (build-system go-build-system) -; (arguments '(#:import-path "k8s.io/client-go")) -; (propagated-inputs -; `(("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) -; ("go-k8s-io-api-0.20.1" ,go-k8s-io-api-0.20.1) -; ("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) -; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" -; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) -; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) -; ("go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e" -; ,go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e) -; ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" -; ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) -; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" -; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) -; ("go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0" -; ,go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) -; ("go-github-com-peterbourgon-diskv-2.0.1+incompatible" -; ,go-github-com-peterbourgon-diskv-2.0.1+incompatible) -; ("go-github-com-imdario-mergo-0.3.5" -; ,go-github-com-imdario-mergo-0.3.5) -; ("go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7" -; ,go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7) -; ("go-github-com-googleapis-gnostic-0.4.1" -; ,go-github-com-googleapis-gnostic-0.4.1) -; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) -; ("go-github-com-google-gofuzz-1.1.0" -; ,go-github-com-google-gofuzz-1.1.0) -; ("go-github-com-google-go-cmp-0.5.2" -; ,go-github-com-google-go-cmp-0.5.2) -; ("go-github-com-golang-protobuf-1.4.3" -; ,go-github-com-golang-protobuf-1.4.3) -; ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" -; ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) -; ("go-github-com-gogo-protobuf-1.3.1" -; ,go-github-com-gogo-protobuf-1.3.1) -; ("go-github-com-evanphx-json-patch-4.9.0+incompatible" -; ,go-github-com-evanphx-json-patch-4.9.0+incompatible) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1) -; ("go-github-com-azure-go-autorest-autorest-adal-0.9.5" -; ,go-github-com-azure-go-autorest-autorest-adal-0.9.5) -; ("go-github-com-azure-go-autorest-autorest-0.11.1" -; ,go-github-com-azure-go-autorest-autorest-0.11.1) -; ("go-cloud-google-com-go-0.54.0" ,go-cloud-google-com-go-0.54.0))) -; (home-page "https://k8s.io/client-go") -; (synopsis "client-go") -; (description -; "Go clients for talking to a @url{http://kubernetes.io/,kubernetes} cluster.") -; (license license:asl2.0))) -; -;(define-public go-k8s-io-component-base-0.20.1 -; (package -; (name "go-k8s-io-component-base") -; (version "0.20.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes/component-base") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "05x3mv1lxh7s6ckfh1s9wwmb0n9rg14a9637ai9bhxdfps47sz0v")))) -; (build-system go-build-system) -; (arguments '(#:import-path "k8s.io/component-base")) -; (propagated-inputs -; `(("go-k8s-io-client-go-0.20.1" ,go-k8s-io-client-go-0.20.1) -; ("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) -; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" -; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) -; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) -; ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) -; ("go-go-uber-org-multierr-1.1.0" ,go-go-uber-org-multierr-1.1.0) -; ("go-go-uber-org-atomic-1.4.0" ,go-go-uber-org-atomic-1.4.0) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) -; ("go-github-com-sirupsen-logrus-1.6.0" -; ,go-github-com-sirupsen-logrus-1.6.0) -; ("go-github-com-prometheus-procfs-0.2.0" -; ,go-github-com-prometheus-procfs-0.2.0) -; ("go-github-com-prometheus-common-0.10.0" -; ,go-github-com-prometheus-common-0.10.0) -; ("go-github-com-prometheus-client-model-0.2.0" -; ,go-github-com-prometheus-client-model-0.2.0) -; ("go-github-com-prometheus-client-golang-1.7.1" -; ,go-github-com-prometheus-client-golang-1.7.1) -; ("go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd" -; ,go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd) -; ("go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369" -; ,go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369) -; ("go-github-com-google-go-cmp-0.5.2" -; ,go-github-com-google-go-cmp-0.5.2) -; ("go-github-com-go-logr-logr-0.2.0" ,go-github-com-go-logr-logr-0.2.0) -; ("go-github-com-blang-semver-3.5.1+incompatible" -; ,go-github-com-blang-semver-3.5.1+incompatible))) -; (home-page "https://k8s.io/component-base") -; (synopsis "component-base") -; (description -; "Implement KEP 32: @url{https://github.com/kubernetes/enhancements/blob/master/keps/sig-cluster-lifecycle/wgs/783-component-base/README.md,https://github.com/kubernetes/enhancements/blob/master/keps/sig-cluster-lifecycle/wgs/783-component-base/README.md}") -; (license license:asl2.0))) -; -;(define-public go-k8s-io-cri-api-0.20.1 -; (package -; (name "go-k8s-io-cri-api") -; (version "0.20.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes/cri-api") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1r98d0kv42sijdg3404xx2g5jj0zixvfagkky2zla12p68ajm4xr")))) -; (build-system go-build-system) -; (arguments '(#:import-path "k8s.io/cri-api")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" -; ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) -; ("go-google-golang-org-protobuf-1.25.0" -; ,go-google-golang-org-protobuf-1.25.0) -; ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) -; ("go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a" -; ,go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a) -; ("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" -; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) -; ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) -; ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" -; ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) -; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" -; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-kr-pretty-0.2.0" ,go-github-com-kr-pretty-0.2.0) -; ("go-github-com-google-go-cmp-0.5.2" -; ,go-github-com-google-go-cmp-0.5.2) -; ("go-github-com-golang-protobuf-1.4.3" -; ,go-github-com-golang-protobuf-1.4.3) -; ("go-github-com-gogo-protobuf-1.3.1" -; ,go-github-com-gogo-protobuf-1.3.1) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://k8s.io/cri-api") -; (synopsis "Purpose") -; (description -; "This repository contains the definitions for the Container Runtime Interface (CRI). -;CRI is a plugin interface which enables kubelet to use a wide variety of container runtimes, -;without the need to recompile. CRI consists of a protocol buffers and gRPC API.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-containerd-1.5.0-beta.3 -; (package -; (name "go-github-com-containerd-containerd") -; (version "1.5.0-beta.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/containerd") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0fbd4llrwg5hi5adfkmfndma5y129yl9wwz3c3fjn7cfhc64hlqf")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/containerd")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) -; ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) -; ("go-github-com-golang-protobuf-1.3.5" -; ,go-github-com-golang-protobuf-1.3.5) -; ("go-github-com-gogo-googleapis-1.3.2" -; ,go-github-com-gogo-googleapis-1.3.2) -; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" -; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) -; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) -; ("go-k8s-io-cri-api-0.20.1" ,go-k8s-io-cri-api-0.20.1) -; ("go-k8s-io-component-base-0.20.1" ,go-k8s-io-component-base-0.20.1) -; ("go-k8s-io-client-go-0.20.1" ,go-k8s-io-client-go-0.20.1) -; ("go-k8s-io-apiserver-0.20.1" ,go-k8s-io-apiserver-0.20.1) -; ("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) -; ("go-k8s-io-api-0.20.1" ,go-k8s-io-api-0.20.1) -; ("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) -; ("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" -; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) -; ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" -; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) -; ("go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b" -; ,go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b) -; ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) -; ("go-github-com-tchap-go-patricia-2.2.6+incompatible" -; ,go-github-com-tchap-go-patricia-2.2.6+incompatible) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-sirupsen-logrus-1.7.0" -; ,go-github-com-sirupsen-logrus-1.7.0) -; ("go-github-com-prometheus-client-golang-1.7.1" -; ,go-github-com-prometheus-client-golang-1.7.1) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-selinux-1.8.0" -; ,go-github-com-opencontainers-selinux-1.8.0) -; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" -; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) -; ("go-github-com-opencontainers-runc-1.0.0-rc93" -; ,go-github-com-opencontainers-runc-1.0.0-rc93) -; ("go-github-com-opencontainers-image-spec-1.0.1" -; ,go-github-com-opencontainers-image-spec-1.0.1) -; ("go-github-com-opencontainers-go-digest-1.0.0" -; ,go-github-com-opencontainers-go-digest-1.0.0) -; ("go-github-com-moby-sys-symlink-0.1.0" -; ,go-github-com-moby-sys-symlink-0.1.0) -; ("go-github-com-moby-sys-mountinfo-0.4.0" -; ,go-github-com-moby-sys-mountinfo-0.4.0) -; ("go-github-com-klauspost-compress-1.11.3" -; ,go-github-com-klauspost-compress-1.11.3) -; ("go-github-com-imdario-mergo-0.3.11" -; ,go-github-com-imdario-mergo-0.3.11) -; ("go-github-com-hashicorp-go-multierror-1.0.0" -; ,go-github-com-hashicorp-go-multierror-1.0.0) -; ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" -; ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) -; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) -; ("go-github-com-google-go-cmp-0.5.4" -; ,go-github-com-google-go-cmp-0.5.4) -; ("go-github-com-gogo-protobuf-1.3.2" -; ,go-github-com-gogo-protobuf-1.3.2) -; ("go-github-com-fsnotify-fsnotify-1.4.9" -; ,go-github-com-fsnotify-fsnotify-1.4.9) -; ("go-github-com-emicklei-go-restful-2.9.5+incompatible" -; ,go-github-com-emicklei-go-restful-2.9.5+incompatible) -; ("go-github-com-docker-go-units-0.4.0" -; ,go-github-com-docker-go-units-0.4.0) -; ("go-github-com-docker-go-metrics-0.0.1" -; ,go-github-com-docker-go-metrics-0.0.1) -; ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" -; ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1) -; ("go-github-com-coreos-go-systemd-v22-22.1.0" -; ,go-github-com-coreos-go-systemd-v22-22.1.0) -; ("go-github-com-containernetworking-plugins-0.8.6" -; ,go-github-com-containernetworking-plugins-0.8.6) -; ("go-github-com-containerd-zfs-0.0.0-20210301145711-11e8f1707f62" -; ,go-github-com-containerd-zfs-0.0.0-20210301145711-11e8f1707f62) -; ("go-github-com-containerd-typeurl-1.0.1" -; ,go-github-com-containerd-typeurl-1.0.1) -; ("go-github-com-containerd-ttrpc-1.0.2" -; ,go-github-com-containerd-ttrpc-1.0.2) -; ("go-github-com-containerd-nri-0.0.0-20201007170849-eb1350a75164" -; ,go-github-com-containerd-nri-0.0.0-20201007170849-eb1350a75164) -; ("go-github-com-containerd-imgcrypt-1.0.4-0.20210301171431-0ae5c75f59ba" -; ,go-github-com-containerd-imgcrypt-1.0.4-0.20210301171431-0ae5c75f59ba) -; ("go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328" -; ,go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328) -; ("go-github-com-containerd-go-cni-1.0.1" -; ,go-github-com-containerd-go-cni-1.0.1) -; ("go-github-com-containerd-fifo-0.0.0-20201026212402-0724c46b320c" -; ,go-github-com-containerd-fifo-0.0.0-20201026212402-0724c46b320c) -; ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" -; ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) -; ("go-github-com-containerd-console-1.0.1" -; ,go-github-com-containerd-console-1.0.1) -; ("go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68" -; ,go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68) -; ("go-github-com-containerd-btrfs-0.0.0-20201111183144-404b9149801e" -; ,go-github-com-containerd-btrfs-0.0.0-20201111183144-404b9149801e) -; ("go-github-com-containerd-aufs-0.0.0-20201003224125-76a6863f2989" -; ,go-github-com-containerd-aufs-0.0.0-20201003224125-76a6863f2989) -; ("go-github-com-microsoft-hcsshim-test-0.0.0-20210227013316-43a75bb4edd3" -; ,go-github-com-microsoft-hcsshim-test-0.0.0-20210227013316-43a75bb4edd3) -; ("go-github-com-microsoft-hcsshim-0.8.15" -; ,go-github-com-microsoft-hcsshim-0.8.15) -; ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" -; ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3) -; ("go-github-com-burntsushi-toml-0.3.1" -; ,go-github-com-burntsushi-toml-0.3.1))) -; (home-page "https://github.com/containerd/containerd") -; (synopsis "Now Recruiting") -; (description -; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") -; (license license:asl2.0))) -; -;(define-public go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee -; (package -; (name "go-github-com-spf13-cobra") -; (version "0.0.2-0.20171109065643-2da4a54c5cee") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/spf13/cobra") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "18qbrp774fx6dyibjcy9snld705gslq6z2sql1biyjahxkm1vpfy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/spf13/cobra")) -; (home-page "https://github.com/spf13/cobra") -; (synopsis "Table of Contents") -; (description -; "Package cobra is a commander providing a simple interface to create powerful modern CLI interfaces. -;In addition to providing an interface, Cobra simultaneously provides a controller to organize your application code. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95 -; (package -; (name "go-github-com-spf13-pflag") -; (version "1.0.1-0.20171106142849-4c012f6dcd95") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/spf13/pflag") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0plmm67lkm25ir0lczwh7hmanyilrs1vxmbp8a0dyr282ji1dqm5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/spf13/pflag")) -; (home-page "https://github.com/spf13/pflag") -; (synopsis "Description") -; (description -; "Package pflag is a drop-in replacement for Go's flag package, implementing -;POSIX/GNU-style --flags. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20201201145000-ef89a241ccb3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0a8myxx2mvdr77a003gpy5jmdzbxbnrf5zppmpl4za4sspxlmwif")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e -; (package -; (name "go-github-com-containerd-continuity") -; (version "0.0.0-20210208174643-50096c924a4e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/continuity") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1drmxbb2l4z12b19dq3vvh1ss7b4z8fq1n5g6c8ln13mjgz6cq48")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/continuity")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3" -; ,go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3) -; ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" -; ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) -; ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" -; ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) -; ("go-github-com-stretchr-testify-1.4.0" -; ,go-github-com-stretchr-testify-1.4.0) -; ("go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95" -; ,go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95) -; ("go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee" -; ,go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee) -; ("go-github-com-sirupsen-logrus-1.7.0" -; ,go-github-com-sirupsen-logrus-1.7.0) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-go-digest-1.0.0" -; ,go-github-com-opencontainers-go-digest-1.0.0) -; ("go-github-com-inconshreveable-mousetrap-1.0.0" -; ,go-github-com-inconshreveable-mousetrap-1.0.0) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0) -; ("go-github-com-dustin-go-humanize-1.0.0" -; ,go-github-com-dustin-go-humanize-1.0.0) -; ("go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898" -; ,go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898))) -; (home-page "https://github.com/containerd/continuity") -; (synopsis "continuity") -; (description -; "This package provides a transport-agnostic, filesystem metadata manifest system") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-zfs-1.0.0 -; (package -; (name "go-github-com-containerd-zfs") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/zfs") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "10shqmcdxlxxi90kwgs5cljz12589yz5cm78aimv9m4cgwiv3wl3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/zfs")) -; (propagated-inputs -; `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible" -; ,go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible) -; ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" -; ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) -; ("go-github-com-containerd-containerd-1.5.0-beta.3" -; ,go-github-com-containerd-containerd-1.5.0-beta.3))) -; (home-page "https://github.com/containerd/zfs") -; (synopsis "ZFS snapshotter plugin") -; (description "ZFS snapshotter plugin for containerd.") -; (license license:asl2.0))) -; -;(define-public go-github-com-microsoft-go-winio-0.4.11 -; (package -; (name "go-github-com-microsoft-go-winio") -; (version "0.4.11") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/microsoft/go-winio") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "14y1gryr3pb3zy09v2g8dh89m363rfd9sch0wgbabh531hfx72vn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/Microsoft/go-winio")) -; (home-page "https://github.com/Microsoft/go-winio") -; (synopsis "go-winio") -; (description -; "This repository contains utilities for efficiently performing Win32 IO operations in -;Go. Currently, this is focused on accessing named pipes and other file handles, and -;for using named pipes as a net transport.") -; (license license:expat))) -; -;(define-public go-github-com-microsoft-hcsshim-0.8.6 -; (package -; (name "go-github-com-microsoft-hcsshim") -; (version "0.8.6") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/microsoft/hcsshim") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "05arx8y4b6rvhjcnwizhc8svzab3ld0njkgj8vijgs27az84z6pw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/Microsoft/hcsshim")) -; (home-page "https://github.com/Microsoft/hcsshim") -; (synopsis "hcsshim") -; (description -; "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") -; (license license:expat))) -; -;(define-public go-github-com-alexflint-go-filemutex-0.0.0-20171022225611-72bdc8eae2ae -; (package -; (name "go-github-com-alexflint-go-filemutex") -; (version "0.0.0-20171022225611-72bdc8eae2ae") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/alexflint/go-filemutex") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "082y6y9zv40q3kaqvsv6fyaw2fc42j0sn9z0dl9rbiz4szixj3c4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/alexflint/go-filemutex")) -; (home-page "https://github.com/alexflint/go-filemutex") -; (synopsis "FileMutex") -; (description -; "FileMutex is similar to @code{sync.RWMutex}, but also synchronizes across processes. -;On Linux, OSX, and other POSIX systems it uses the flock system call. On windows -;it uses the LockFileEx and UnlockFileEx system calls.") -; (license license:expat))) -; -;(define-public go-github-com-buger-jsonparser-0.0.0-20180808090653-f4dd9f5a6b44 -; (package -; (name "go-github-com-buger-jsonparser") -; (version "0.0.0-20180808090653-f4dd9f5a6b44") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/buger/jsonparser") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "12qa2n33s7yz88ywpr3k9kg3b4gm6rqgnv28iyikyxw8h5jascz5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/buger/jsonparser")) -; (home-page "https://github.com/buger/jsonparser") -; (synopsis -; "Alternative JSON parser for Go (10x times faster standard library)") -; (description -; "It does not require you to know the structure of the payload (eg. create structs), and allows accessing fields by providing the path to them. It is up to @strong{10 times faster} than standard @code{encoding/json} package (depending on payload size and usage), @strong{allocates no memory}. See benchmarks below.") -; (license license:expat))) -; -;(define-public go-github-com-containernetworking-cni-0.8.1 -; (package -; (name "go-github-com-containernetworking-cni") -; (version "0.8.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containernetworking/cni") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ydzsiq6kfwjghf5dd4ld2rv3cxgbjq6c1523jxmib1phwf0s75z")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containernetworking/cni")) -; (home-page "https://github.com/containernetworking/cni") -; (synopsis "CNI - the Container Network Interface") -; (description -; "CNI (), a @url{https://cncf.io,Cloud Native Computing Foundation} project, consists of a specification and libraries for writing plugins to configure network interfaces in Linux containers, along with a number of supported plugins. -;CNI concerns itself only with network connectivity of containers and removing allocated resources when the container is deleted. -;Because of this focus, CNI has a wide range of support and the specification is simple to implement.") -; (license license:asl2.0))) -; -;(define-public go-github-com-coreos-go-iptables-0.5.0 -; (package -; (name "go-github-com-coreos-go-iptables") -; (version "0.5.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/coreos/go-iptables") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0syxjad9b3d19sjy7cy7zjpx5bx60yvbhidz8r9cdv43iqadxmp7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/coreos/go-iptables")) -; (home-page "https://github.com/coreos/go-iptables") -; (synopsis "go-iptables") -; (description "Go bindings for iptables utility.") -; (license license:asl2.0))) -; -;(define-public go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c -; (package -; (name "go-github-com-d2g-dhcp4") -; (version "0.0.0-20170904100407-a1d1b6c41b1c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/d2g/dhcp4") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "191hzw6yqzkm042h6miyycq3g0zrhqjhhpl27f8vhwzp4wanasiz")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/d2g/dhcp4")) -; (home-page "https://github.com/d2g/dhcp4") -; (synopsis "DHCP4 - A DHCP library written in Go.") -; (description -; "Warning: This library is still being developed. Function calls will change.") -; (license license:bsd-3))) -; -;(define-public go-github-com-d2g-dhcp4client-1.0.0 -; (package -; (name "go-github-com-d2g-dhcp4client") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/d2g/dhcp4client") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1n4qrn7xsgvnshmddq56hr8g2si5vfmxi0wnp0w71lmdfsxvvx0q")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/d2g/dhcp4client")) -; (home-page "https://github.com/d2g/dhcp4client") -; (synopsis "dhcp4client") -; (description "DHCP Client") -; (license license:mpl2.0))) -; -;(define-public go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5 -; (package -; (name "go-github-com-d2g-dhcp4server") -; (version "0.0.0-20181031114812-7d4a0a7f59a5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/d2g/dhcp4server") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "03ibq32flr74pxfly1yca9qicb6f15xgl159jjg3svgnzfjpblwl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/d2g/dhcp4server")) -; (home-page "https://github.com/d2g/dhcp4server") -; (synopsis "dhcp4server") -; (description "DHCP Server") -; (license license:mpl2.0))) -; -;(define-public go-github-com-d2g-hardwareaddr-0.0.0-20190221164911-e7d9fbe030e4 -; (package -; (name "go-github-com-d2g-hardwareaddr") -; (version "0.0.0-20190221164911-e7d9fbe030e4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/d2g/hardwareaddr") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "09nm5py9xbb9klwhzqkf6786i3b59ynba78xkrv9jx4ari7ibh8q")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/d2g/hardwareaddr")) -; (home-page "https://github.com/d2g/hardwareaddr") -; (synopsis "hardwareaddr") -; (description "Generate Hardware Addresses") -; (license license:mpl2.0))) -; -;(define-public go-github-com-godbus-dbus-0.0.0-20180201030542-885f9cc04c9c -; (package -; (name "go-github-com-godbus-dbus") -; (version "0.0.0-20180201030542-885f9cc04c9c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/godbus/dbus") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0wjpaj4vr5lvpnwc5faf3qizd7zd2v9yq0fm0558wap1hiyqb8x8")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/godbus/dbus")) -; (home-page "https://github.com/godbus/dbus") -; (synopsis "dbus") -; (description -; "Package dbus implements bindings to the D-Bus message bus system. -;") -; (license license:bsd-2))) -; -;(define-public go-github-com-j-keck-arping-0.0.0-20160618110441-2cf9dc699c56 -; (package -; (name "go-github-com-j-keck-arping") -; (version "0.0.0-20160618110441-2cf9dc699c56") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/j-keck/arping") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1bid8mpx3j4546ni0a6q5xyz7hb854g95qnxqmg5jzs9vrcird3c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/j-keck/arping")) -; (home-page "https://github.com/j-keck/arping") -; (synopsis "arping") -; (description -; "Package arping is a native go library to ping a host per arp datagram, or query a host mac address -;") -; (license license:expat))) -; -;(define-public go-github-com-mattn-go-shellwords-1.0.3 -; (package -; (name "go-github-com-mattn-go-shellwords") -; (version "1.0.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mattn/go-shellwords") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1pg7pl25wvpl2dbpyrv9p1r7prnqimxlf6136vn0dfm54j2x4mnr")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mattn/go-shellwords")) -; (home-page "https://github.com/mattn/go-shellwords") -; (synopsis "go-shellwords") -; (description "Parse line as shell words.") -; (license license:expat))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190904154756-749cb33beabd -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190904154756-749cb33beabd") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0dm3257q3rv2kyn5lmqqim2fqg634v6rhrqq4glvbk4wx4l3v337")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-nxadm-tail-1.4.4 -; (package -; (name "go-github-com-nxadm-tail") -; (version "1.4.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/nxadm/tail") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1czmwqii0fc8v3ar5bwqpfanprkxg19waly405zlvcflzvj53wwc")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/nxadm/tail")) -; (propagated-inputs -; `(("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" -; ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) -; ("go-golang-org-x-sys-0.0.0-20190904154756-749cb33beabd" -; ,go-golang-org-x-sys-0.0.0-20190904154756-749cb33beabd) -; ("go-github-com-fsnotify-fsnotify-1.4.7" -; ,go-github-com-fsnotify-fsnotify-1.4.7))) -; (home-page "https://github.com/nxadm/tail") -; (synopsis "tail functionality in Go") -; (description -; "nxadm/tail provides a Go library that emulates the features of the BSD `tail` -;program. The library comes with full support for truncation/move detection as -;it is designed to work with log rotation tools. The library works on all -;operating systems supported by Go, including POSIX systems like Linux and -;*BSD, and MS Windows. Go 1.9 is the oldest compiler release supported. -;") -; (license license:expat))) -; -;(define-public go-github-com-onsi-gomega-1.7.1 -; (package -; (name "go-github-com-onsi-gomega") -; (version "1.7.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/onsi/gomega") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "06p3x0910cdaa64l7d44s728d4j3yhps315dlcvrbjzhljjj7mam")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/onsi/gomega")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.2.4" ,go-gopkg-in-yaml-v2-2.2.4) -; ("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" -; ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) -; ("go-gopkg-in-fsnotify-v1-1.4.7" ,go-gopkg-in-fsnotify-v1-1.4.7) -; ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e" -; ,go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e) -; ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" -; ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) -; ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" -; ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) -; ("go-github-com-onsi-ginkgo-1.6.0" ,go-github-com-onsi-ginkgo-1.6.0) -; ("go-github-com-hpcloud-tail-1.0.0" ,go-github-com-hpcloud-tail-1.0.0) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0) -; ("go-github-com-fsnotify-fsnotify-1.4.7" -; ,go-github-com-fsnotify-fsnotify-1.4.7))) -; (home-page "https://github.com/onsi/gomega") -; (synopsis ": a BDD Testing Framework for Golang") -; (description -; "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20191120155948-bd437916bb0e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1i8x26frmlin55k69k936zd1rp5sqnq14y5ms4rkxbfzhasdm2rx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-onsi-ginkgo-1.12.1 -; (package -; (name "go-github-com-onsi-ginkgo") -; (version "1.12.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/onsi/ginkgo") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0xs9724l2b0bwjwrvw5cs3akxaw0n1j5kyxrb1ggfsdjz0zmjcxh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/onsi/ginkgo")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e" -; ,go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e) -; ("go-github-com-onsi-gomega-1.7.1" ,go-github-com-onsi-gomega-1.7.1) -; ("go-github-com-nxadm-tail-1.4.4" ,go-github-com-nxadm-tail-1.4.4))) -; (home-page "https://github.com/onsi/ginkgo") -; (synopsis "Ginkgo 2.0 Release Candidate is available!") -; (description "Ginkgo is a BDD-style testing framework for Golang -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-net-0.0.0-20201006153459-a7d1128ccaa0 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20201006153459-a7d1128ccaa0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1iqqq7s95b2a29bspfxv68qnby8vwjvy9f8gl2262p6f9hhp21d2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) -; ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" -; ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) -; ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" -; ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-github-com-onsi-gomega-1.10.3 -; (package -; (name "go-github-com-onsi-gomega") -; (version "1.10.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/onsi/gomega") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1jvp5wlny86ncsqak5rz70qfn61y3ajc64w0hrj4840zgh90zb06")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/onsi/gomega")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.3.0" ,go-gopkg-in-yaml-v2-2.3.0) -; ("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" -; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) -; ("go-golang-org-x-net-0.0.0-20201006153459-a7d1128ccaa0" -; ,go-golang-org-x-net-0.0.0-20201006153459-a7d1128ccaa0) -; ("go-github-com-onsi-ginkgo-1.12.1" ,go-github-com-onsi-ginkgo-1.12.1) -; ("go-github-com-golang-protobuf-1.4.2" -; ,go-github-com-golang-protobuf-1.4.2))) -; (home-page "https://github.com/onsi/gomega") -; (synopsis ": a BDD Testing Framework for Golang") -; (description -; "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library. -;") -; (license license:expat))) -; -;(define-public go-github-com-safchain-ethtool-0.0.0-20190326074333-42ed695e3de8 -; (package -; (name "go-github-com-safchain-ethtool") -; (version "0.0.0-20190326074333-42ed695e3de8") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/safchain/ethtool") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0n5hkrzc1bh46nidcssx4539kvcmgj501v3kzh2pljpg27509daj")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/safchain/ethtool")) -; (home-page "https://github.com/safchain/ethtool") -; (synopsis "ethtool go package") -; (description -; "Package ethtool aims to provide a library giving a simple access to the -;Linux SIOCETHTOOL ioctl operations. It can be used to retrieve informations -;from a network device like statistics, driver related informations or -;even the peer of a VETH interface. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-sirupsen-logrus-1.0.6 -; (package -; (name "go-github-com-sirupsen-logrus") -; (version "1.0.6") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/sirupsen/logrus") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "029irw2lsbqi944gdrbkwdw0m2794sqni4g21gsnmz142hbzds8c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/sirupsen/logrus")) -; (home-page "https://github.com/sirupsen/logrus") -; (synopsis "Logrus") -; (description -; "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-sys-0.0.0-20200217220822-9197077df867 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20200217220822-9197077df867") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1270yyiqzlgrsygp2j0qavh4agm4xjv3ljfpk4wgqgmg4ph1lmx1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-vishvananda-netns-0.0.0-20200728191858-db3c7e526aae -; (package -; (name "go-github-com-vishvananda-netns") -; (version "0.0.0-20200728191858-db3c7e526aae") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/vishvananda/netns") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1gx41r06by67q5yyyvjpr0cyqqs2pcksfaqxy0s36cx4vpjn5x9r")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/vishvananda/netns")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20200217220822-9197077df867" -; ,go-golang-org-x-sys-0.0.0-20200217220822-9197077df867))) -; (home-page "https://github.com/vishvananda/netns") -; (synopsis "netns - network namespaces in go") -; (description -; "Package netns allows ultra-simple network namespace handling. NsHandles -;can be retrieved and set. Note that the current namespace is thread -;local so actions that set and reset namespaces should use LockOSThread -;to make sure the namespace doesn't change due to a goroutine switch. -;It is best to close NsHandles when you are done with them. This can be -;accomplished via a `defer ns.Close()` on the handle. Changing namespaces -;requires elevated privileges, so in most cases this code needs to be run -;as root. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-sys-0.0.0-20200728102440-3e129f6d46b1 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20200728102440-3e129f6d46b1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "02wcaghvpysqijiqsiimk52vma7lx99g5kvdid2r1qsf9hmwgvy2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-vishvananda-netlink-1.1.1-0.20201029203352-d40f9887b852 -; (package -; (name "go-github-com-vishvananda-netlink") -; (version "1.1.1-0.20201029203352-d40f9887b852") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/vishvananda/netlink") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1aq13npm7vd153vxrk1vhsg36r2g9hrh21cvk422ssrf57qy2fsj")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/vishvananda/netlink")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20200728102440-3e129f6d46b1" -; ,go-golang-org-x-sys-0.0.0-20200728102440-3e129f6d46b1) -; ("go-github-com-vishvananda-netns-0.0.0-20200728191858-db3c7e526aae" -; ,go-github-com-vishvananda-netns-0.0.0-20200728191858-db3c7e526aae))) -; (home-page "https://github.com/vishvananda/netlink") -; (synopsis "netlink - netlink library for go") -; (description -; "Package netlink provides a simple library for netlink. Netlink is -;the interface a user-space program in linux uses to communicate with -;the kernel. It can be used to add and remove interfaces, set up ip -;addresses and routes, and confiugre ipsec. Netlink communication -;requires elevated privileges, so in most cases this code needs to -;be run as root. The low level primitives for netlink are contained -;in the nl subpackage. This package attempts to provide a high-level -;interface that is loosly modeled on the iproute2 cli. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-sys-0.0.0-20201117170446-d9b008d0a637 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20201117170446-d9b008d0a637") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "06pp1nrhzx6nm6rwwzm0xzf8bs3r1mfsrkclyhlhnr7x5r0a0ppi")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-gopkg-in-airbrake-gobrake-v2-2.0.9 -; (package -; (name "go-gopkg-in-airbrake-gobrake-v2") -; (version "2.0.9") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/airbrake/gobrake.v2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1x06f7n7qlyzqgyz0sdfcidf3w4ldn6zs6qx2mhibggk2z4whcjw")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path -; "gopkg.in/airbrake/gobrake.v2" -; #:unpack-path -; "gopkg.in/airbrake/gobrake.v2")) -; (home-page "https://gopkg.in/airbrake/gobrake.v2") -; (synopsis "Airbrake Golang Notifier") -; (description -; "You can use @url{https://github.com/airbrake/glog,glog fork} to send your logs to Airbrake.") -; (license license:bsd-3))) -; -;(define-public go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2 -; (package -; (name "go-gopkg-in-gemnasium-logrus-airbrake-hook-v2") -; (version "2.1.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/gemnasium/logrus-airbrake-hook.v2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0sbg0dn6cysmf8f2bi209jwl4jnpiwp4rdghnxlzirw3c32ms5y5")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path -; "gopkg.in/gemnasium/logrus-airbrake-hook.v2" -; #:unpack-path -; "gopkg.in/gemnasium/logrus-airbrake-hook.v2")) -; (home-page "https://gopkg.in/gemnasium/logrus-airbrake-hook.v2") -; (synopsis "Airbrake Hook for Logrus") -; (description -; "Use this hook to send your errors to @url{https://airbrake.io/,Airbrake}. -;This hook is using the @url{https://github.com/airbrake/gobrake,official airbrake go package}, and will hit the api V3. -;The hook is synchronous and will send the error for @code{log.Error}, @code{log.Fatal} and @code{log.Panic} levels.") -; (license license:expat))) -; -;(define-public go-github-com-containernetworking-plugins-0.9.1 -; (package -; (name "go-github-com-containernetworking-plugins") -; (version "0.9.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containernetworking/plugins") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "17rafngfa9b0ybs3j4lvjjqdva6jkamhnbb1n0qnv685g0asvqwz")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containernetworking/plugins")) -; (propagated-inputs -; `(("go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2" -; ,go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2) -; ("go-gopkg-in-airbrake-gobrake-v2-2.0.9" -; ,go-gopkg-in-airbrake-gobrake-v2-2.0.9) -; ("go-golang-org-x-sys-0.0.0-20201117170446-d9b008d0a637" -; ,go-golang-org-x-sys-0.0.0-20201117170446-d9b008d0a637) -; ("go-github-com-vishvananda-netlink-1.1.1-0.20201029203352-d40f9887b852" -; ,go-github-com-vishvananda-netlink-1.1.1-0.20201029203352-d40f9887b852) -; ("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0) -; ("go-github-com-sirupsen-logrus-1.0.6" -; ,go-github-com-sirupsen-logrus-1.0.6) -; ("go-github-com-safchain-ethtool-0.0.0-20190326074333-42ed695e3de8" -; ,go-github-com-safchain-ethtool-0.0.0-20190326074333-42ed695e3de8) -; ("go-github-com-onsi-gomega-1.10.3" ,go-github-com-onsi-gomega-1.10.3) -; ("go-github-com-onsi-ginkgo-1.12.1" ,go-github-com-onsi-ginkgo-1.12.1) -; ("go-github-com-mattn-go-shellwords-1.0.3" -; ,go-github-com-mattn-go-shellwords-1.0.3) -; ("go-github-com-j-keck-arping-0.0.0-20160618110441-2cf9dc699c56" -; ,go-github-com-j-keck-arping-0.0.0-20160618110441-2cf9dc699c56) -; ("go-github-com-godbus-dbus-0.0.0-20180201030542-885f9cc04c9c" -; ,go-github-com-godbus-dbus-0.0.0-20180201030542-885f9cc04c9c) -; ("go-github-com-d2g-hardwareaddr-0.0.0-20190221164911-e7d9fbe030e4" -; ,go-github-com-d2g-hardwareaddr-0.0.0-20190221164911-e7d9fbe030e4) -; ("go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5" -; ,go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5) -; ("go-github-com-d2g-dhcp4client-1.0.0" -; ,go-github-com-d2g-dhcp4client-1.0.0) -; ("go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c" -; ,go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c) -; ("go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7" -; ,go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7) -; ("go-github-com-coreos-go-iptables-0.5.0" -; ,go-github-com-coreos-go-iptables-0.5.0) -; ("go-github-com-containernetworking-cni-0.8.1" -; ,go-github-com-containernetworking-cni-0.8.1) -; ("go-github-com-buger-jsonparser-0.0.0-20180808090653-f4dd9f5a6b44" -; ,go-github-com-buger-jsonparser-0.0.0-20180808090653-f4dd9f5a6b44) -; ("go-github-com-alexflint-go-filemutex-0.0.0-20171022225611-72bdc8eae2ae" -; ,go-github-com-alexflint-go-filemutex-0.0.0-20171022225611-72bdc8eae2ae) -; ("go-github-com-microsoft-hcsshim-0.8.6" -; ,go-github-com-microsoft-hcsshim-0.8.6) -; ("go-github-com-microsoft-go-winio-0.4.11" -; ,go-github-com-microsoft-go-winio-0.4.11))) -; (home-page "https://github.com/containernetworking/plugins") -; (synopsis "Plugins") -; (description -; "Some CNI network plugins, maintained by the containernetworking team. For more information, see the @url{https://www.cni.dev,CNI website}.") -; (license license:asl2.0))) -; -;(define-public go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c -; (package -; (name "go-github-com-docker-go-events") -; (version "0.0.0-20190806004212-e31b211e4f1c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/docker/go-events") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "09gm4z43g23isbklabnsnfb87bwf8kjdgvvyi3vfjq2bqdjdg7cl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/docker/go-events")) -; (home-page "https://github.com/docker/go-events") -; (synopsis "Docker Events Package") -; (description -; "The Docker @code{events} package implements a composable event distribution package -;for Go.") -; (license license:asl2.0))) -; -;(define-public go-github-com-prometheus-common-0.6.0 -; (package -; (name "go-github-com-prometheus-common") -; (version "0.6.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/common") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1q16br348117ffycxdwsldb0i39p34miclfa8z93k6vjwnrqbh2l")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/common")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1) -; ("go-gopkg-in-alecthomas-kingpin-v2-2.2.6" -; ,go-gopkg-in-alecthomas-kingpin-v2-2.2.6) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980" -; ,go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980) -; ("go-github-com-sirupsen-logrus-1.2.0" -; ,go-github-com-sirupsen-logrus-1.2.0) -; ("go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90" -; ,go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90) -; ("go-github-com-prometheus-client-golang-1.0.0" -; ,go-github-com-prometheus-client-golang-1.0.0) -; ("go-github-com-pkg-errors-0.8.0" ,go-github-com-pkg-errors-0.8.0) -; ("go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223" -; ,go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223) -; ("go-github-com-matttproud-golang-protobuf-extensions-1.0.1" -; ,go-github-com-matttproud-golang-protobuf-extensions-1.0.1) -; ("go-github-com-julienschmidt-httprouter-1.2.0" -; ,go-github-com-julienschmidt-httprouter-1.2.0) -; ("go-github-com-golang-protobuf-1.3.1" -; ,go-github-com-golang-protobuf-1.3.1) -; ("go-github-com-go-logfmt-logfmt-0.4.0" -; ,go-github-com-go-logfmt-logfmt-0.4.0) -; ("go-github-com-go-kit-kit-0.8.0" ,go-github-com-go-kit-kit-0.8.0))) -; (home-page "https://github.com/prometheus/common") -; (synopsis "Common") -; (description -; "This repository contains Go libraries that are shared across Prometheus -;components and libraries. They are considered internal to Prometheus, without -;any stability guarantees for external usage.") -; (license license:asl2.0))) -; -;(define-public go-github-com-prometheus-procfs-0.0.3 -; (package -; (name "go-github-com-prometheus-procfs") -; (version "0.0.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/procfs") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "18c4m795fwng8f8qa395f3crvamlbk5y5afk8b5rzyisnmjq774y")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/procfs")) -; (propagated-inputs -; `(("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" -; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) -; ("go-github-com-google-go-cmp-0.3.0" -; ,go-github-com-google-go-cmp-0.3.0))) -; (home-page "https://github.com/prometheus/procfs") -; (synopsis "procfs") -; (description -; "Package procfs provides functions to retrieve system, kernel and process -;metrics from the pseudo-filesystem proc. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190801041406-cbf593c0f2f3 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190801041406-cbf593c0f2f3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1zmcmckinhclcwlvznjqvs31aww8jnf6pjm9is0nq8lqlvipg5ls")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-prometheus-client-golang-1.1.0 -; (package -; (name "go-github-com-prometheus-client-golang") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/client_golang") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1r0irxkmfnj6ininb06w6ybknini5lz02idawrbkk2i5lq1qcvvf")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/client_golang")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190801041406-cbf593c0f2f3" -; ,go-golang-org-x-sys-0.0.0-20190801041406-cbf593c0f2f3) -; ("go-github-com-prometheus-procfs-0.0.3" -; ,go-github-com-prometheus-procfs-0.0.3) -; ("go-github-com-prometheus-common-0.6.0" -; ,go-github-com-prometheus-common-0.6.0) -; ("go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90" -; ,go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90) -; ("go-github-com-json-iterator-go-1.1.7" -; ,go-github-com-json-iterator-go-1.1.7) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2) -; ("go-github-com-beorn7-perks-1.0.1" -; ,go-github-com-beorn7-perks-1.0.1))) -; (home-page "https://github.com/prometheus/client_golang") -; (synopsis "Prometheus Go client library") -; (description -; "This is the @url{http://golang.org,Go} client library for -;@url{http://prometheus.io,Prometheus}. It has two separate parts, one for -;instrumenting application code, and one for creating clients that talk to the -;Prometheus HTTP API.") -; (license license:asl2.0))) -; -;(define-public go-github-com-docker-go-metrics-0.0.1 -; (package -; (name "go-github-com-docker-go-metrics") -; (version "0.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/docker/go-metrics") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1b6f1889chmwlsgrqxylnks2jic16j2dqhsdd1dvaklk48ky95ga")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/docker/go-metrics")) -; (propagated-inputs -; `(("go-github-com-prometheus-client-golang-1.1.0" -; ,go-github-com-prometheus-client-golang-1.1.0))) -; (home-page "https://github.com/docker/go-metrics") -; (synopsis "go-metrics") -; (description -; "This package is small wrapper around the prometheus go client to help enforce convention and best practices for metrics collection in Docker projects.") -; (license (list license:asl2.0 license:cc-by-sa4.0)))) -; -;(define-public go-github-com-hashicorp-go-multierror-1.0.0 -; (package -; (name "go-github-com-hashicorp-go-multierror") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/go-multierror") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "00nyn8llqzbfm8aflr9kwsvpzi4kv8v45c141v88xskxp5xf6z49")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hashicorp/go-multierror")) -; (propagated-inputs -; `(("go-github-com-hashicorp-errwrap-1.0.0" -; ,go-github-com-hashicorp-errwrap-1.0.0))) -; (home-page "https://github.com/hashicorp/go-multierror") -; (synopsis "go-multierror") -; (description -; "@code{go-multierror} is a package for Go that provides a mechanism for -;representing a list of @code{error} values as a single @code{error}.") -; (license license:mpl2.0))) -; -;(define-public go-github-com-klauspost-compress-1.11.13 -; (package -; (name "go-github-com-klauspost-compress") -; (version "1.11.13") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/klauspost/compress") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "19l2rbh6vg0ly4qp2gn5lf39ijggf7asav7lxziikkhjqqb4223j")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/klauspost/compress")) -; (home-page "https://github.com/klauspost/compress") -; (synopsis "compress") -; (description "This package provides various compression algorithms.") -; (license #f))) -; -;(define-public go-github-com-moby-locker-1.0.1 -; (package -; (name "go-github-com-moby-locker") -; (version "1.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/moby/locker") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "07rc2c6h35f9mcy81jp382a030f6xmcifi9n5jnlayybfwxmpjir")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/moby/locker")) -; (home-page "https://github.com/moby/locker") -; (synopsis "Locker") -; (description -; "Package locker provides a mechanism for creating finer-grained locking to help -;free up more global locks to handle other tasks. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-pelletier-go-toml-1.8.1 -; (package -; (name "go-github-com-pelletier-go-toml") -; (version "1.8.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/pelletier/go-toml") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1pi1r9ds0vxjza4qrbk52y98wxrzh1ghwzc9c2v1w6i02pdwdcz9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/pelletier/go-toml")) -; (propagated-inputs -; `(("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://github.com/pelletier/go-toml") -; (synopsis "go-toml") -; (description "Package toml is a TOML parser and manipulation library. -;") -; (license #f))) -; -;(define-public go-github-com-prometheus-procfs-0.6.0 -; (package -; (name "go-github-com-prometheus-procfs") -; (version "0.6.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/procfs") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0czzw37dq0sfq7rivxmxxw5hy287grqnng6q6hfz6mkqmhqgm1m6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/procfs")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" -; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) -; ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" -; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) -; ("go-github-com-google-go-cmp-0.5.4" -; ,go-github-com-google-go-cmp-0.5.4))) -; (home-page "https://github.com/prometheus/procfs") -; (synopsis "procfs") -; (description -; "Package procfs provides functions to retrieve system, kernel and process -;metrics from the pseudo-filesystem proc. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-satori-go-uuid-1.2.0 -; (package -; (name "go-github-com-satori-go-uuid") -; (version "1.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/satori/go.uuid") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1j4s5pfg2ldm35y8ls8jah4dya2grfnx2drb4jcbjsyrp4cm5yfb")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/satori/go.uuid")) -; (home-page "https://github.com/satori/go.uuid") -; (synopsis "UUID package for Go language") -; (description -; "Package uuid provides implementation of Universally Unique Identifier (UUID). -;Supported versions are 1, 3, 4 and 5 (as specified in @url{https://rfc-editor.org/rfc/rfc4122.html,RFC 4122}) and -;version 2 (as specified in DCE 1.1). -;") -; (license license:expat))) -; -;(define-public go-github-com-tchap-go-patricia-2.2.6+incompatible -; (package -; (name "go-github-com-tchap-go-patricia") -; (version "2.2.6+incompatible") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/tchap/go-patricia") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1yy1s3pnll52iyzphwi50drvz36lx628vn3xfy5ld29fxqngrckb")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/tchap/go-patricia")) -; (home-page "https://github.com/tchap/go-patricia") -; (synopsis "go-patricia") -; (description -; "@strong{Documentation}: @url{http://godoc.org/github.com/tchap/go-patricia/patricia,GoDoc} -;@strong{Test Coverage}: @url{https://coveralls.io/r/tchap/go-patricia,(img (@ (src https://coveralls.io/repos/tchap/go-patricia/badge.png) (alt CoverageStatus)))}") -; (license license:expat))) -; -;(define-public go-github-com-coreos-go-oidc-2.1.0+incompatible -; (package -; (name "go-github-com-coreos-go-oidc") -; (version "2.1.0+incompatible") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/coreos/go-oidc") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0y9vxack1whvxy766jrc6xhh2rfkvnznwxi356si2kabzjv2lp6h")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/coreos/go-oidc")) -; (home-page "https://github.com/coreos/go-oidc") -; (synopsis "go-oidc") -; (description -; "Package oidc implements OpenID Connect client logic for the golang.org/x/oauth2 package. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-coreos-go-semver-0.3.0 -; (package -; (name "go-github-com-coreos-go-semver") -; (version "0.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/coreos/go-semver") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0770h1mpig2j5sbiha3abnwaw8p6dg9i87r8pc7cf6m4kwml3sc9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/coreos/go-semver")) -; (home-page "https://github.com/coreos/go-semver") -; (synopsis "go-semver - Semantic Versioning Library") -; (description -; "go-semver is a @url{http://semver.org/,semantic versioning} library for Go. It lets you parse -;and compare two semantic version strings.") -; (license license:asl2.0))) -; -;(define-public go-github-com-emicklei-go-restful-2.9.5+incompatible -; (package -; (name "go-github-com-emicklei-go-restful") -; (version "2.9.5+incompatible") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/emicklei/go-restful") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0258y7q2krih98zznc4jsym9mf689afn6nsnsif1jhshrj653k36")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/emicklei/go-restful")) -; (home-page "https://github.com/emicklei/go-restful") -; (synopsis "go-restful") -; (description -; "Package restful , a lean package for creating REST-style WebServices without magic. -;") -; (license license:expat))) -; -;(define-public go-github-com-gorilla-websocket-1.4.2 -; (package -; (name "go-github-com-gorilla-websocket") -; (version "1.4.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/gorilla/websocket") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0mkm9w6kjkrlzab5wh8p4qxkc0icqawjbvr01d2nk6ykylrln40s")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/gorilla/websocket")) -; (home-page "https://github.com/gorilla/websocket") -; (synopsis "Gorilla WebSocket") -; (description -; "Package websocket implements the WebSocket protocol defined in @url{https://rfc-editor.org/rfc/rfc6455.html,RFC 6455}. -;") -; (license license:bsd-2))) -; -;(define-public go-github-com-mailru-easyjson-0.7.0 -; (package -; (name "go-github-com-mailru-easyjson") -; (version "0.7.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mailru/easyjson") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "13zv5fvjp3nr65lhqhiw6i6mlmqvyls882rlmcas0ab35alsxni8")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mailru/easyjson")) -; (home-page "https://github.com/mailru/easyjson") -; (synopsis "easyjson") -; (description -; "Package easyjson contains marshaler/unmarshaler interfaces and helper functions. -;") -; (license license:expat))) -; -;(define-public go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822 -; (package -; (name "go-github-com-munnerz-goautoneg") -; (version "0.0.0-20191010083416-a7dc8b61c822") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/munnerz/goautoneg") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1m4v6bw6yf1g0kvpc46isjp0qfhx2y8gnvlnyjf637jy64613mgg")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/munnerz/goautoneg")) -; (home-page "https://github.com/munnerz/goautoneg") -; (synopsis #f) -; (description #f) -; (license license:bsd-3))) -; -;(define-public go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021 -; (package -; (name "go-github-com-pquerna-cachecontrol") -; (version "0.0.0-20171018203845-0dec1b30a021") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/pquerna/cachecontrol") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "14yyfhrv60rvb983rqm7s916nwvn9kcmbvnrcna2md0s3mkzs3yh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/pquerna/cachecontrol")) -; (home-page "https://github.com/pquerna/cachecontrol") -; (synopsis "cachecontrol: HTTP Caching Parser and Interpretation") -; (description -; "Package cachecontrol implements the logic for HTTP Caching -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-sys-0.0.0-20200202164722-d101bd2416d5 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20200202164722-d101bd2416d5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ksxf37b0ym21n8j29m3wgbaiw1kcjw3hgf88kipc1ry2j13l98p")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-go-etcd-io-bbolt-1.3.5 -; (package -; (name "go-go-etcd-io-bbolt") -; (version "1.3.5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/etcd-io/bbolt") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1h64gipvcg7060byv5wjlf524kqwj12p3v08kfh4ygv46vpm8p2r")))) -; (build-system go-build-system) -; (arguments '(#:import-path "go.etcd.io/bbolt")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20200202164722-d101bd2416d5" -; ,go-golang-org-x-sys-0.0.0-20200202164722-d101bd2416d5))) -; (home-page "https://go.etcd.io/bbolt") -; (synopsis "bbolt") -; (description -; "package bbolt implements a low-level key/value store in pure Go. It supports -;fully serializable transactions, ACID semantics, and lock-free MVCC with -;multiple readers and a single writer. Bolt can be used for projects that -;want a simple data store without the need to add large dependencies such as -;Postgres or MySQL. -;") -; (license license:expat))) -; -;(define-public go-github-com-bgentry-speakeasy-0.1.0 -; (package -; (name "go-github-com-bgentry-speakeasy") -; (version "0.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/bgentry/speakeasy") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "02dfrj0wyphd3db9zn2mixqxwiz1ivnyc5xc7gkz58l5l27nzp8s")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/bgentry/speakeasy")) -; (home-page "https://github.com/bgentry/speakeasy") -; (synopsis "Speakeasy") -; (description -; "This package provides cross-platform Go (#golang) helpers for taking user input -;from the terminal while not echoing the input back (similar to @code{getpasswd}). The -;package uses syscalls to avoid any dependence on cgo, and is therefore -;compatible with cross-compiling.") -; (license license:expat))) -; -;(define-public go-github-com-cockroachdb-datadriven-0.0.0-20190809214429-80d97fb3cbaa -; (package -; (name "go-github-com-cockroachdb-datadriven") -; (version "0.0.0-20190809214429-80d97fb3cbaa") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/cockroachdb/datadriven") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0rvavka9zhri6r50n8fy98247fl5vycb1hffjrhshsicjv1frmlp")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/cockroachdb/datadriven")) -; (home-page "https://github.com/cockroachdb/datadriven") -; (synopsis "Data-Driven Tests for Go") -; (description -; "This repository implements an extension of @url{https://github.com/golang/go/wiki/TableDrivenTests,Table-Driven Testing}. Instead of -;building and iterating over a table in the test code, the input is further -;separated into files (or inline strings). For certain classes of tests, this -;can significantly reduce the friction involved in writing and reading these -;tests.") -; (license license:asl2.0))) -; -;(define-public go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7 -; (package -; (name "go-github-com-coreos-go-systemd") -; (version "0.0.0-20180511133405-39ca1b05acc7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/coreos/go-systemd") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1kzqrrzqspa5qm7kwslxl3m16lqzns23c24rv474ajzwmj3ixmx1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/coreos/go-systemd")) -; (home-page "https://github.com/coreos/go-systemd") -; (synopsis "go-systemd") -; (description "Go bindings to systemd. The project has several packages:") -; (license license:asl2.0))) -; -;(define-public go-github-com-coreos-pkg-0.0.0-20160727233714-3ac0863d7acf -; (package -; (name "go-github-com-coreos-pkg") -; (version "0.0.0-20160727233714-3ac0863d7acf") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/coreos/pkg") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0l5ans1ls2gknkrnhymgc0zbgg5nqjbjbqc51r611adcr0m6gg8l")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/coreos/pkg")) -; (home-page "https://github.com/coreos/pkg") -; (synopsis #f) -; (description "a collection of go utility packages") -; (license license:asl2.0))) -; -;(define-public go-github-com-creack-pty-1.1.7 -; (package -; (name "go-github-com-creack-pty") -; (version "1.1.7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/creack/pty") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1plwwlk1i9b80zv8zdplvv81shfyc9gf0flydnydsh5sr3ib5vrc")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/creack/pty")) -; (home-page "https://github.com/creack/pty") -; (synopsis "pty") -; (description -; "Package pty provides functions for working with Unix terminals. -;") -; (license license:expat))) -; -;(define-public go-github-com-dustin-go-humanize-0.0.0-20171111073723-bb3d318650d4 -; (package -; (name "go-github-com-dustin-go-humanize") -; (version "0.0.0-20171111073723-bb3d318650d4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/dustin/go-humanize") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1lqd8ix3cb164j5iazjby2jpa6bdsflhy0h9mi4yldvvcvrc194c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/dustin/go-humanize")) -; (home-page "https://github.com/dustin/go-humanize") -; (synopsis "Humane Units") -; (description -; "Package humanize converts boring ugly numbers to human-friendly strings and back. -;") -; (license license:expat))) -; -;(define-public go-github-com-fatih-color-1.7.0 -; (package -; (name "go-github-com-fatih-color") -; (version "1.7.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/fatih/color") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0v8msvg38r8d1iiq2i5r4xyfx0invhc941kjrsg5gzwvagv55inv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/fatih/color")) -; (home-page "https://github.com/fatih/color") -; (synopsis "color") -; (description -; "Package color is an ANSI color package to output colorized or SGR defined -;output to the standard output. The API can be used in several way, pick one -;that suits you. -;") -; (license license:expat))) -; -;(define-public go-github-com-golang-groupcache-0.0.0-20160516000752-02826c3e7903 -; (package -; (name "go-github-com-golang-groupcache") -; (version "0.0.0-20160516000752-02826c3e7903") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/groupcache") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0w46bsllddfij66nrg8jbfjsr54birvfww8a2fj9fmgyig5syn2x")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/groupcache")) -; (home-page "https://github.com/golang/groupcache") -; (synopsis "groupcache") -; (description -; "Package groupcache provides a data loading mechanism with caching -;and de-duplication that works across a set of peer processes. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-google-uuid-1.0.0 -; (package -; (name "go-github-com-google-uuid") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/uuid") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1922bjrnx66692dm0rrc1ckmznsaqx920ww4jzsds3xzrwf15mqv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/uuid")) -; (home-page "https://github.com/google/uuid") -; (synopsis "uuid") -; (description "Package uuid generates and inspects UUIDs. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-gorilla-websocket-0.0.0-20170926233335-4201258b820c -; (package -; (name "go-github-com-gorilla-websocket") -; (version "0.0.0-20170926233335-4201258b820c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/gorilla/websocket") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1kpdg3m46kp15ixl9ahhchhadyiblz0qpcxzylp8jhffc1rnxjb7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/gorilla/websocket")) -; (home-page "https://github.com/gorilla/websocket") -; (synopsis "Gorilla WebSocket") -; (description -; "Package websocket implements the WebSocket protocol defined in @url{https://rfc-editor.org/rfc/rfc6455.html,RFC 6455}. -;") -; (license license:bsd-2))) -; -;(define-public go-github-com-grpc-ecosystem-go-grpc-middleware-1.0.1-0.20190118093823-f849b5445de4 -; (package -; (name "go-github-com-grpc-ecosystem-go-grpc-middleware") -; (version "1.0.1-0.20190118093823-f849b5445de4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc-ecosystem/go-grpc-middleware") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0hscypgj0nd1407jp6y4qrnrr0mrhc4wgxz9b3mj1cs3pkvi61vc")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/grpc-ecosystem/go-grpc-middleware")) -; (home-page "https://github.com/grpc-ecosystem/go-grpc-middleware") -; (synopsis "Go gRPC Middleware") -; (description -; "`grpc_middleware` is a collection of gRPC middleware packages: interceptors, helpers and tools. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-grpc-ecosystem-grpc-gateway-1.9.5 -; (package -; (name "go-github-com-grpc-ecosystem-grpc-gateway") -; (version "1.9.5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc-ecosystem/grpc-gateway") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0acpbxa1i1bxcpkclkcif2macbcfrlywb58vly5pzwsj261mg58a")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/grpc-ecosystem/grpc-gateway")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.0.0-20170812160011-eb3733d160e7" -; ,go-gopkg-in-yaml-v2-2.0.0-20170812160011-eb3733d160e7) -; ("go-gopkg-in-resty-v1-1.12.0" ,go-gopkg-in-resty-v1-1.12.0) -; ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" -; ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) -; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) -; ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" -; ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) -; ("go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8" -; ,go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8) -; ("go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3" -; ,go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3) -; ("go-github-com-rogpeppe-fastuuid-0.0.0-20150106093220-6724a57986af" -; ,go-github-com-rogpeppe-fastuuid-0.0.0-20150106093220-6724a57986af) -; ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-ghodss-yaml-1.0.0" ,go-github-com-ghodss-yaml-1.0.0))) -; (home-page "https://github.com/grpc-ecosystem/grpc-gateway") -; (synopsis "grpc-gateway") -; (description -; "The grpc-gateway is a plugin of the Google protocol buffers compiler -;@url{https://github.com/protocolbuffers/protobuf,protoc}. -;It reads protobuf service definitions and generates a reverse-proxy server which -;translates a RESTful HTTP API into gRPC. This server is generated according to the -;@url{https://github.com/googleapis/googleapis/raw/master/google/api/http.proto#L46,(code google.api.http)} -;annotations in your service definitions.") -; (license license:bsd-3))) -; -;(define-public go-github-com-json-iterator-go-1.1.7 -; (package -; (name "go-github-com-json-iterator-go") -; (version "1.1.7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/json-iterator/go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0n79p4s67zl5zprxv7diayw3vavnmmfqkmd6snz0i9bxp825dsyz")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/json-iterator/go")) -; (propagated-inputs -; `(("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0) -; ("go-github-com-modern-go-reflect2-0.0.0-20180701023420-4b7aa43c6742" -; ,go-github-com-modern-go-reflect2-0.0.0-20180701023420-4b7aa43c6742) -; ("go-github-com-modern-go-concurrent-0.0.0-20180228061459-e0a39a4cb421" -; ,go-github-com-modern-go-concurrent-0.0.0-20180228061459-e0a39a4cb421) -; ("go-github-com-google-gofuzz-1.0.0" -; ,go-github-com-google-gofuzz-1.0.0) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://github.com/json-iterator/go") -; (synopsis "Benchmark") -; (description -; "Package jsoniter implements encoding and decoding of JSON as defined in -;@url{https://rfc-editor.org/rfc/rfc4627.html,RFC 4627} and provides interfaces with identical syntax of standard lib encoding/json. -;Converting from encoding/json to jsoniter is no more than replacing the package with jsoniter -;and variable type declarations (if any). -;jsoniter interfaces gives 100% compatibility with code using standard lib. -;") -; (license license:expat))) -; -;(define-public go-github-com-mattn-go-colorable-0.0.9 -; (package -; (name "go-github-com-mattn-go-colorable") -; (version "0.0.9") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mattn/go-colorable") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1nwjmsppsjicr7anq8na6md7b1z84l9ppnlr045hhxjvbkqwalvx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mattn/go-colorable")) -; (home-page "https://github.com/mattn/go-colorable") -; (synopsis "go-colorable") -; (description "Colorable writer for windows.") -; (license license:expat))) -; -;(define-public go-github-com-mattn-go-isatty-0.0.4 -; (package -; (name "go-github-com-mattn-go-isatty") -; (version "0.0.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mattn/go-isatty") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0zs92j2cqaw9j8qx1sdxpv3ap0rgbs0vrvi72m40mg8aa36gd39w")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mattn/go-isatty")) -; (home-page "https://github.com/mattn/go-isatty") -; (synopsis "go-isatty") -; (description "Package isatty implements interface to isatty -;") -; (license license:expat))) -; -;(define-public go-github-com-mattn-go-runewidth-0.0.2 -; (package -; (name "go-github-com-mattn-go-runewidth") -; (version "0.0.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mattn/go-runewidth") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0vkrfrz3fzn5n6ix4k8s0cg0b448459sldq8bp4riavsxm932jzb")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mattn/go-runewidth")) -; (home-page "https://github.com/mattn/go-runewidth") -; (synopsis "go-runewidth") -; (description -; "This package provides functions to get fixed width of the character or string.") -; (license license:expat))) -; -;(define-public go-github-com-olekukonko-tablewriter-0.0.0-20170122224234-a0225b3f23b5 -; (package -; (name "go-github-com-olekukonko-tablewriter") -; (version "0.0.0-20170122224234-a0225b3f23b5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/olekukonko/tablewriter") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0bp9r6xzy6d3p7l2hjmvr25y3rp3p8c9xv1agkllkksm45ng6681")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/olekukonko/tablewriter")) -; (home-page "https://github.com/olekukonko/tablewriter") -; (synopsis "ASCII Table Writer") -; (description "Create & Generate text based table -;") -; (license license:expat))) -; -;(define-public go-github-com-spf13-cobra-0.0.3 -; (package -; (name "go-github-com-spf13-cobra") -; (version "0.0.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/spf13/cobra") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1q1nsx05svyv9fv3fy6xv6gs9ffimkyzsfm49flvl3wnvf1ncrkd")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/spf13/cobra")) -; (home-page "https://github.com/spf13/cobra") -; (synopsis "Table of Contents") -; (description -; "Package cobra is a commander providing a simple interface to create powerful modern CLI interfaces. -;In addition to providing an interface, Cobra simultaneously provides a controller to organize your application code. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-spf13-pflag-1.0.1 -; (package -; (name "go-github-com-spf13-pflag") -; (version "1.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/spf13/pflag") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0nr4mdpfhhk94hq4ymn5b2sxc47b29p1akxd8b0hx4dvdybmipb5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/spf13/pflag")) -; (home-page "https://github.com/spf13/pflag") -; (synopsis "Description") -; (description -; "Package pflag is a drop-in replacement for Go's flag package, implementing -;POSIX/GNU-style --flags. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-tmc-grpc-websocket-proxy-0.0.0-20170815181823-89b8d40f7ca8 -; (package -; (name "go-github-com-tmc-grpc-websocket-proxy") -; (version "0.0.0-20170815181823-89b8d40f7ca8") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/tmc/grpc-websocket-proxy") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1bg6m0cycy5sww175zkbnhi9lvzb08iicc8xka8klrgaa9mc5nsk")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/tmc/grpc-websocket-proxy")) -; (home-page "https://github.com/tmc/grpc-websocket-proxy") -; (synopsis "grpc-websocket-proxy") -; (description -; "Wrap your grpc-gateway mux with this helper to expose streaming endpoints over websockets.") -; (license license:expat))) -; -;(define-public go-github-com-urfave-cli-1.20.0 -; (package -; (name "go-github-com-urfave-cli") -; (version "1.20.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/urfave/cli") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0y6f4sbzkiiwrxbl15biivj8c7qwxnvm3zl2dd3mw4wzg4x10ygj")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/urfave/cli")) -; (home-page "https://github.com/urfave/cli") -; (synopsis "cli") -; (description -; "Package cli provides a minimal framework for creating and organizing command line -;Go applications. cli is designed to be easy to understand and write, the most simple -;cli application can be written as follows: -;") -; (license license:expat))) -; -;(define-public go-go-etcd-io-bbolt-1.3.3 -; (package -; (name "go-go-etcd-io-bbolt") -; (version "1.3.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/etcd-io/bbolt") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0dn0zngks9xiz0rrrb3911f73ghl64z84jsmzai2yfmzqr7cdkqc")))) -; (build-system go-build-system) -; (arguments '(#:import-path "go.etcd.io/bbolt")) -; (home-page "https://go.etcd.io/bbolt") -; (synopsis "bbolt") -; (description -; "package bbolt implements a low-level key/value store in pure Go. It supports -;fully serializable transactions, ACID semantics, and lock-free MVCC with -;multiple readers and a single writer. Bolt can be used for projects that -;want a simple data store without the need to add large dependencies such as -;Postgres or MySQL. -;") -; (license license:expat))) -; -;(define-public go-go-uber-org-atomic-1.3.2 -; (package -; (name "go-go-uber-org-atomic") -; (version "1.3.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/uber-go/atomic") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "11pzvjys5ddjjgrv94pgk9pnip9yyb54z7idf33zk7p7xylpnsv6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "go.uber.org/atomic")) -; (home-page "https://go.uber.org/atomic") -; (synopsis "atomic") -; (description -; "Package atomic provides simple wrappers around numerics to enforce atomic -;access. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-net-0.0.0-20190813141303-74dc4d7220e7 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20190813141303-74dc4d7220e7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0563yswwqknxx2gsvl0qikn0lmwalilbng8i12iw4d3v40n23s0l")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190826190057-c7b8b68b1456 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190826190057-c7b8b68b1456") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0lqnnrx5prrvkinnhgyvzzhcyvi8x5w54rlp336xjhpslkgqn132")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-time-0.0.0-20180412165947-fbb02b2291d2 -; (package -; (name "go-golang-org-x-time") -; (version "0.0.0-20180412165947-fbb02b2291d2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/time") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0jjqcv6rzihlgg4i797q80g1f6ch5diz2kxqh6488gwkb6nds4h4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/time")) -; (home-page "https://golang.org/x/time") -; (synopsis "Go Time") -; (description "This repository provides supplementary Go time packages.") -; (license license:bsd-3))) -; -;(define-public go-gopkg-in-cheggaaa-pb-v1-1.0.25 -; (package -; (name "go-gopkg-in-cheggaaa-pb-v1") -; (version "1.0.25") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/cheggaaa/pb.v1") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0vxqiw6f3xyv0zy3g4lksf8za0z8i0hvfpw92hqimsy84f79j3dp")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path -; "gopkg.in/cheggaaa/pb.v1" -; #:unpack-path -; "gopkg.in/cheggaaa/pb.v1")) -; (home-page "https://gopkg.in/cheggaaa/pb.v1") -; (synopsis "Terminal progress bar for Go") -; (description "Simple console progress bars -;") -; (license license:bsd-3))) -; -;(define-public go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489 -; (package -; (name "go-go-etcd-io-etcd") -; (version "0.5.0-alpha.5.0.20200910180754-dd1b699fc489") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/etcd-io/etcd") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "11zkvkq7ipqi0n8y05zgn8lf7qm59xdk75x7jbxj5sflx38yfa0k")))) -; (build-system go-build-system) -; (arguments '(#:import-path "go.etcd.io/etcd")) -; (propagated-inputs -; `(("go-sigs-k8s-io-yaml-1.1.0" ,go-sigs-k8s-io-yaml-1.1.0) -; ("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" -; ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) -; ("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) -; ("go-gopkg-in-cheggaaa-pb-v1-1.0.25" -; ,go-gopkg-in-cheggaaa-pb-v1-1.0.25) -; ("go-google-golang-org-grpc-1.26.0" ,go-google-golang-org-grpc-1.26.0) -; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" -; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) -; ("go-golang-org-x-time-0.0.0-20180412165947-fbb02b2291d2" -; ,go-golang-org-x-time-0.0.0-20180412165947-fbb02b2291d2) -; ("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) -; ("go-golang-org-x-sys-0.0.0-20190826190057-c7b8b68b1456" -; ,go-golang-org-x-sys-0.0.0-20190826190057-c7b8b68b1456) -; ("go-golang-org-x-net-0.0.0-20190813141303-74dc4d7220e7" -; ,go-golang-org-x-net-0.0.0-20190813141303-74dc4d7220e7) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2) -; ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) -; ("go-go-uber-org-multierr-1.1.0" ,go-go-uber-org-multierr-1.1.0) -; ("go-go-uber-org-atomic-1.3.2" ,go-go-uber-org-atomic-1.3.2) -; ("go-go-etcd-io-bbolt-1.3.3" ,go-go-etcd-io-bbolt-1.3.3) -; ("go-github-com-xiang90-probing-0.0.0-20190116061207-43a291ad63a2" -; ,go-github-com-xiang90-probing-0.0.0-20190116061207-43a291ad63a2) -; ("go-github-com-urfave-cli-1.20.0" ,go-github-com-urfave-cli-1.20.0) -; ("go-github-com-tmc-grpc-websocket-proxy-0.0.0-20170815181823-89b8d40f7ca8" -; ,go-github-com-tmc-grpc-websocket-proxy-0.0.0-20170815181823-89b8d40f7ca8) -; ("go-github-com-spf13-pflag-1.0.1" ,go-github-com-spf13-pflag-1.0.1) -; ("go-github-com-spf13-cobra-0.0.3" ,go-github-com-spf13-cobra-0.0.3) -; ("go-github-com-soheilhy-cmux-0.1.4" -; ,go-github-com-soheilhy-cmux-0.1.4) -; ("go-github-com-sirupsen-logrus-1.4.2" -; ,go-github-com-sirupsen-logrus-1.4.2) -; ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" -; ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) -; ("go-github-com-prometheus-client-golang-1.0.0" -; ,go-github-com-prometheus-client-golang-1.0.0) -; ("go-github-com-olekukonko-tablewriter-0.0.0-20170122224234-a0225b3f23b5" -; ,go-github-com-olekukonko-tablewriter-0.0.0-20170122224234-a0225b3f23b5) -; ("go-github-com-modern-go-reflect2-1.0.1" -; ,go-github-com-modern-go-reflect2-1.0.1) -; ("go-github-com-mattn-go-runewidth-0.0.2" -; ,go-github-com-mattn-go-runewidth-0.0.2) -; ("go-github-com-mattn-go-isatty-0.0.4" -; ,go-github-com-mattn-go-isatty-0.0.4) -; ("go-github-com-mattn-go-colorable-0.0.9" -; ,go-github-com-mattn-go-colorable-0.0.9) -; ("go-github-com-json-iterator-go-1.1.7" -; ,go-github-com-json-iterator-go-1.1.7) -; ("go-github-com-jonboulle-clockwork-0.1.0" -; ,go-github-com-jonboulle-clockwork-0.1.0) -; ("go-github-com-inconshreveable-mousetrap-1.0.0" -; ,go-github-com-inconshreveable-mousetrap-1.0.0) -; ("go-github-com-grpc-ecosystem-grpc-gateway-1.9.5" -; ,go-github-com-grpc-ecosystem-grpc-gateway-1.9.5) -; ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" -; ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) -; ("go-github-com-grpc-ecosystem-go-grpc-middleware-1.0.1-0.20190118093823-f849b5445de4" -; ,go-github-com-grpc-ecosystem-go-grpc-middleware-1.0.1-0.20190118093823-f849b5445de4) -; ("go-github-com-gorilla-websocket-0.0.0-20170926233335-4201258b820c" -; ,go-github-com-gorilla-websocket-0.0.0-20170926233335-4201258b820c) -; ("go-github-com-google-uuid-1.0.0" ,go-github-com-google-uuid-1.0.0) -; ("go-github-com-google-btree-1.0.0" ,go-github-com-google-btree-1.0.0) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2) -; ("go-github-com-golang-groupcache-0.0.0-20160516000752-02826c3e7903" -; ,go-github-com-golang-groupcache-0.0.0-20160516000752-02826c3e7903) -; ("go-github-com-gogo-protobuf-1.2.1" -; ,go-github-com-gogo-protobuf-1.2.1) -; ("go-github-com-fatih-color-1.7.0" ,go-github-com-fatih-color-1.7.0) -; ("go-github-com-dustin-go-humanize-0.0.0-20171111073723-bb3d318650d4" -; ,go-github-com-dustin-go-humanize-0.0.0-20171111073723-bb3d318650d4) -; ("go-github-com-dgrijalva-jwt-go-3.2.0+incompatible" -; ,go-github-com-dgrijalva-jwt-go-3.2.0+incompatible) -; ("go-github-com-creack-pty-1.1.7" ,go-github-com-creack-pty-1.1.7) -; ("go-github-com-coreos-pkg-0.0.0-20160727233714-3ac0863d7acf" -; ,go-github-com-coreos-pkg-0.0.0-20160727233714-3ac0863d7acf) -; ("go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7" -; ,go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7) -; ("go-github-com-coreos-go-semver-0.2.0" -; ,go-github-com-coreos-go-semver-0.2.0) -; ("go-github-com-cockroachdb-datadriven-0.0.0-20190809214429-80d97fb3cbaa" -; ,go-github-com-cockroachdb-datadriven-0.0.0-20190809214429-80d97fb3cbaa) -; ("go-github-com-bgentry-speakeasy-0.1.0" -; ,go-github-com-bgentry-speakeasy-0.1.0))) -; (home-page "https://go.etcd.io/etcd") -; (synopsis "etcd") -; (description -; "Package main is a simple wrapper of the real etcd entrypoint package -;(located at github.com/coreos/etcd/etcdmain) to ensure that etcd is still -;\"go getable\"; e.g. `go get github.com/coreos/etcd` works as expected and -;builds a binary in $GOBIN/etcd -;") -; (license license:asl2.0))) -; -;(define-public go-gopkg-in-natefinch-lumberjack-v2-2.0.0 -; (package -; (name "go-gopkg-in-natefinch-lumberjack-v2") -; (version "2.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/natefinch/lumberjack.v2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1m2sxypk7p805jvc68padvylyx5v7cwkh5klnnxxr0340kgspf08")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path -; "gopkg.in/natefinch/lumberjack.v2" -; #:unpack-path -; "gopkg.in/natefinch/lumberjack.v2")) -; (home-page "https://gopkg.in/natefinch/lumberjack.v2") -; (synopsis "lumberjack") -; (description "Package lumberjack provides a rolling logger. -;") -; (license license:expat))) -; -;(define-public go-gopkg-in-square-go-jose-v2-2.2.2 -; (package -; (name "go-gopkg-in-square-go-jose-v2") -; (version "2.2.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/square/go-jose.v2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1cpvfqw7pw8m8wfj8nda4kam0z48q3gp6b9a3a0wr90zv9ldszbv")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path -; "gopkg.in/square/go-jose.v2" -; #:unpack-path -; "gopkg.in/square/go-jose.v2")) -; (home-page "https://gopkg.in/square/go-jose.v2") -; (synopsis "Go JOSE") -; (description -; "Package jose aims to provide an implementation of the Javascript Object Signing -;and Encryption set of standards. It implements encryption and signing based on -;the JSON Web Encryption and JSON Web Signature standards, with optional JSON -;Web Token support available in a sub-package. The library supports both the -;compact and full serialization formats, and has optional support for multiple -;recipients. -;") -; (license license:asl2.0))) -; -;(define-public go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.15 -; (package -; (name "go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client") -; (version "0.0.15") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes-sigs/apiserver-network-proxy") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "00ad9yjr3g1pj118xy063z7rnydkilqmvz9xf89vdva2kjqd7fal")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path -; "sigs.k8s.io/apiserver-network-proxy/konnectivity-client")) -; (propagated-inputs -; `(("go-k8s-io-klog-v2-2.0.0" ,go-k8s-io-klog-v2-2.0.0) -; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) -; ("go-github-com-golang-protobuf-1.4.0" -; ,go-github-com-golang-protobuf-1.4.0))) -; (home-page -; "https://sigs.k8s.io/apiserver-network-proxy/konnectivity-client") -; (synopsis #f) -; (description #f) -; (license license:asl2.0))) -; -;(define-public go-k8s-io-apiserver-0.20.6 -; (package -; (name "go-k8s-io-apiserver") -; (version "0.20.6") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes/apiserver") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0b53aw2cp9i2v5kg1m2s5kwkz7525ii8vs1g7d8yc2j980aar9y3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "k8s.io/apiserver")) -; (propagated-inputs -; `(("go-k8s-io-component-base-0.20.6" ,go-k8s-io-component-base-0.20.6) -; ("go-k8s-io-client-go-0.20.6" ,go-k8s-io-client-go-0.20.6) -; ("go-k8s-io-apimachinery-0.20.6" ,go-k8s-io-apimachinery-0.20.6) -; ("go-k8s-io-api-0.20.6" ,go-k8s-io-api-0.20.6) -; ("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) -; ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.3" -; ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.3) -; ("go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.15" -; ,go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.15) -; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" -; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) -; ("go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd" -; ,go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd) -; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) -; ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) -; ("go-gopkg-in-square-go-jose-v2-2.2.2" -; ,go-gopkg-in-square-go-jose-v2-2.2.2) -; ("go-gopkg-in-natefinch-lumberjack-v2-2.0.0" -; ,go-gopkg-in-natefinch-lumberjack-v2-2.0.0) -; ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) -; ("go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a" -; ,go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a) -; ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" -; ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) -; ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" -; ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) -; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" -; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) -; ("go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0" -; ,go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0) -; ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) -; ("go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489" -; ,go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489) -; ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) -; ("go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5" -; ,go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) -; ("go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021" -; ,go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822" -; ,go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822) -; ("go-github-com-mailru-easyjson-0.7.0" -; ,go-github-com-mailru-easyjson-0.7.0) -; ("go-github-com-hashicorp-golang-lru-0.5.1" -; ,go-github-com-hashicorp-golang-lru-0.5.1) -; ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" -; ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) -; ("go-github-com-gorilla-websocket-1.4.2" -; ,go-github-com-gorilla-websocket-1.4.2) -; ("go-github-com-googleapis-gnostic-0.4.1" -; ,go-github-com-googleapis-gnostic-0.4.1) -; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) -; ("go-github-com-google-gofuzz-1.1.0" -; ,go-github-com-google-gofuzz-1.1.0) -; ("go-github-com-google-go-cmp-0.5.2" -; ,go-github-com-google-go-cmp-0.5.2) -; ("go-github-com-gogo-protobuf-1.3.2" -; ,go-github-com-gogo-protobuf-1.3.2) -; ("go-github-com-go-openapi-spec-0.19.3" -; ,go-github-com-go-openapi-spec-0.19.3) -; ("go-github-com-evanphx-json-patch-4.9.0+incompatible" -; ,go-github-com-evanphx-json-patch-4.9.0+incompatible) -; ("go-github-com-emicklei-go-restful-2.9.5+incompatible" -; ,go-github-com-emicklei-go-restful-2.9.5+incompatible) -; ("go-github-com-dustin-go-humanize-1.0.0" -; ,go-github-com-dustin-go-humanize-1.0.0) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1) -; ("go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f" -; ,go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f) -; ("go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e" -; ,go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e) -; ("go-github-com-coreos-go-semver-0.3.0" -; ,go-github-com-coreos-go-semver-0.3.0) -; ("go-github-com-coreos-go-oidc-2.1.0+incompatible" -; ,go-github-com-coreos-go-oidc-2.1.0+incompatible))) -; (home-page "https://k8s.io/apiserver") -; (synopsis "apiserver") -; (description -; "Generic library for building a Kubernetes aggregated API server.") -; (license license:asl2.0))) -; -;(define-public go-github-com-blang-semver-3.5.1+incompatible -; (package -; (name "go-github-com-blang-semver") -; (version "3.5.1+incompatible") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/blang/semver") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "13ws259bwcibkclbr82ilhk6zadm63kxklxhk12wayklj8ghhsmy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/blang/semver")) -; (home-page "https://github.com/blang/semver") -; (synopsis "semver for golang") -; (description -; "semver is a @url{http://semver.org/,Semantic Versioning} library written in golang. It fully covers spec version @code{2.0.0}.") -; (license license:expat))) -; -;(define-public go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369 -; (package -; (name "go-github-com-matttproud-golang-protobuf-extensions") -; (version "1.0.2-0.20181231171920-c182affec369") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/matttproud/golang_protobuf_extensions") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1xqsf9vpcrd4hp95rl6kgmjvkv1df4aicfw4l5vfcxcwxknfx2xs")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "github.com/matttproud/golang_protobuf_extensions")) -; (propagated-inputs -; `(("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" -; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0))) -; (home-page "https://github.com/matttproud/golang_protobuf_extensions") -; (synopsis "Overview") -; (description -; "This repository provides various Protocol Buffer extensions for the Go -;language (golang), namely support for record length-delimited message -;streaming.") -; (license license:asl2.0))) -; -;(define-public go-github-com-azure-go-ansiterm-0.0.0-20170929234023-d6e3b3328b78 -; (package -; (name "go-github-com-azure-go-ansiterm") -; (version "0.0.0-20170929234023-d6e3b3328b78") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/Azure/go-ansiterm") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "010khrkhkf9cxlvvb6ncqv4c1qcdmpbz9jn38g4fxf4xsma8xx1q")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/Azure/go-ansiterm")) -; (home-page "https://github.com/Azure/go-ansiterm") -; (synopsis "go-ansiterm") -; (description -; "This is a cross platform Ansi Terminal Emulation library. It reads a stream of Ansi characters and produces the appropriate function calls. The results of the function calls are platform dependent.") -; (license license:expat))) -; -;(define-public go-gotest-tools-v3-3.0.2 -; (package -; (name "go-gotest-tools-v3") -; (version "3.0.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/gotestyourself/gotest.tools") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0cap2aq2wphnbkkzkck5zdjxb64q3jqxfwpkgqys7279rbr8cvjm")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gotest.tools/v3" #:unpack-path "gotest.tools/v3")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20190624222133-a101b041ded4" -; ,go-golang-org-x-tools-0.0.0-20190624222133-a101b041ded4) -; ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) -; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) -; ("go-github-com-google-go-cmp-0.3.0" -; ,go-github-com-google-go-cmp-0.3.0))) -; (home-page "https://gotest.tools/v3") -; (synopsis "gotest.tools") -; (description -; "Package gotesttools is a collection of packages to augment `testing` and -;support common patterns. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd -; (package -; (name "go-github-com-moby-term") -; (version "0.0.0-20200312100748-672ec06f55cd") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/moby/term") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0xspasm3d101hmjsayrbx6az4r4ybbg5gkj13qybhpq674a6kkwn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/moby/term")) -; (propagated-inputs -; `(("go-gotest-tools-v3-3.0.2" ,go-gotest-tools-v3-3.0.2) -; ("go-gotest-tools-2.2.0+incompatible" -; ,go-gotest-tools-2.2.0+incompatible) -; ("go-golang-org-x-sys-0.0.0-20200302150141-5c8b2ff67527" -; ,go-golang-org-x-sys-0.0.0-20200302150141-5c8b2ff67527) -; ("go-github-com-sirupsen-logrus-1.4.2" -; ,go-github-com-sirupsen-logrus-1.4.2) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-google-go-cmp-0.3.1" -; ,go-github-com-google-go-cmp-0.3.1) -; ("go-github-com-azure-go-ansiterm-0.0.0-20170929234023-d6e3b3328b78" -; ,go-github-com-azure-go-ansiterm-0.0.0-20170929234023-d6e3b3328b78))) -; (home-page "https://github.com/moby/term") -; (synopsis "term - utilities for dealing with terminals") -; (description -; "Package term provides structures and helper functions to work with -;terminal (state, sizes). -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-beorn7-perks-1.0.1 -; (package -; (name "go-github-com-beorn7-perks") -; (version "1.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/beorn7/perks") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "17n4yygjxa6p499dj3yaqzfww2g7528165cl13haj97hlx94dgl7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/beorn7/perks")) -; (home-page "https://github.com/beorn7/perks") -; (synopsis "Perks for Go (golang.org)") -; (description -; "Perks contains the Go package quantile that computes approximate quantiles over -;an unbounded data stream within low memory and CPU bounds.") -; (license license:expat))) -; -;(define-public go-github-com-prometheus-procfs-0.1.3 -; (package -; (name "go-github-com-prometheus-procfs") -; (version "0.1.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/procfs") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "09wmlmvmjf49nchidqffc99wn6vl98v5k9qgyyrhqgv0015xskwa")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/procfs")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20200106162015-b016eb3dc98e" -; ,go-golang-org-x-sys-0.0.0-20200106162015-b016eb3dc98e) -; ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" -; ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) -; ("go-github-com-google-go-cmp-0.3.1" -; ,go-github-com-google-go-cmp-0.3.1))) -; (home-page "https://github.com/prometheus/procfs") -; (synopsis "procfs") -; (description -; "Package procfs provides functions to retrieve system, kernel and process -;metrics from the pseudo-filesystem proc. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-sys-0.0.0-20200615200032-f1bc736245b1 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20200615200032-f1bc736245b1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1fbmih4n2xw53qbpmc7msqf2660i4ryr0chbrsbj8mdalfrjr0vp")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-gopkg-in-yaml-v2-2.2.5 -; (package -; (name "go-gopkg-in-yaml-v2") -; (version "2.2.5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/yaml.v2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "08smz8dfyxp02ha74my9iszqa5qzgl3ksi28ilyp8lqipssiq6fg")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" -; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) -; (home-page "https://gopkg.in/yaml.v2") -; (synopsis "YAML support for the Go language") -; (description "Package yaml implements YAML support for the Go language. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-prometheus-client-golang-1.7.1 -; (package -; (name "go-github-com-prometheus-client-golang") -; (version "1.7.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/client_golang") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0i9wbwjq3idgp9y0vv7fvg6g7zrqi9qlfw915xc49ahw83q2h61w")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/client_golang")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.2.5" ,go-gopkg-in-yaml-v2-2.2.5) -; ("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" -; ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) -; ("go-golang-org-x-sys-0.0.0-20200615200032-f1bc736245b1" -; ,go-golang-org-x-sys-0.0.0-20200615200032-f1bc736245b1) -; ("go-github-com-stretchr-testify-1.4.0" -; ,go-github-com-stretchr-testify-1.4.0) -; ("go-github-com-prometheus-procfs-0.1.3" -; ,go-github-com-prometheus-procfs-0.1.3) -; ("go-github-com-prometheus-common-0.10.0" -; ,go-github-com-prometheus-common-0.10.0) -; ("go-github-com-prometheus-client-model-0.2.0" -; ,go-github-com-prometheus-client-model-0.2.0) -; ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) -; ("go-github-com-json-iterator-go-1.1.10" -; ,go-github-com-json-iterator-go-1.1.10) -; ("go-github-com-golang-protobuf-1.4.2" -; ,go-github-com-golang-protobuf-1.4.2) -; ("go-github-com-cespare-xxhash-v2-2.1.1" -; ,go-github-com-cespare-xxhash-v2-2.1.1) -; ("go-github-com-beorn7-perks-1.0.1" -; ,go-github-com-beorn7-perks-1.0.1))) -; (home-page "https://github.com/prometheus/client_golang") -; (synopsis "Prometheus Go client library") -; (description -; "This is the @url{http://golang.org,Go} client library for -;@url{http://prometheus.io,Prometheus}. It has two separate parts, one for -;instrumenting application code, and one for creating clients that talk to the -;Prometheus HTTP API.") -; (license license:asl2.0))) -; -;(define-public go-github-com-alecthomas-template-0.0.0-20190718012654-fb15b899a751 -; (package -; (name "go-github-com-alecthomas-template") -; (version "0.0.0-20190718012654-fb15b899a751") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/alecthomas/template") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1vlasv4dgycydh5wx6jdcvz40zdv90zz1h7836z7lhsi2ymvii26")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/alecthomas/template")) -; (home-page "https://github.com/alecthomas/template") -; (synopsis "Go's") -; (description -; "Package template implements data-driven templates for generating textual output. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-alecthomas-units-0.0.0-20190717042225-c3de453c63f4 -; (package -; (name "go-github-com-alecthomas-units") -; (version "0.0.0-20190717042225-c3de453c63f4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/alecthomas/units") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0js37zlgv37y61j4a2d46jh72xm5kxmpaiw0ya9v944bjpc386my")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/alecthomas/units")) -; (home-page "https://github.com/alecthomas/units") -; (synopsis "Units - Helpful unit multipliers and functions for Go") -; (description -; "Package units provides helpful unit multipliers and functions for Go. -;") -; (license license:expat))) -; -;(define-public go-github-com-go-kit-kit-0.9.0 -; (package -; (name "go-github-com-go-kit-kit") -; (version "0.9.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/go-kit/kit") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "09038mnw705h7isbjp8dzgp2i04bp5rqkmifxvwc5xkh75s00qpw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/go-kit/kit")) -; (home-page "https://github.com/go-kit/kit") -; (synopsis "Go kit") -; (description -; "@strong{Go kit} is a @strong{programming toolkit} for building microservices -;(or elegant monoliths) in Go. We solve common problems in distributed -;systems and application architecture so you can focus on delivering -;business value.") -; (license license:expat))) -; -;(define-public go-github-com-prometheus-common-0.4.1 -; (package -; (name "go-github-com-prometheus-common") -; (version "0.4.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/common") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0sf4sjdckblz1hqdfvripk3zyp8xq89w7q75kbsyg4c078af896s")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/common")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1) -; ("go-gopkg-in-alecthomas-kingpin-v2-2.2.6" -; ,go-gopkg-in-alecthomas-kingpin-v2-2.2.6) -; ("go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5" -; ,go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5) -; ("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" -; ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) -; ("go-golang-org-x-net-0.0.0-20181114220301-adae6a3d119a" -; ,go-golang-org-x-net-0.0.0-20181114220301-adae6a3d119a) -; ("go-github-com-sirupsen-logrus-1.2.0" -; ,go-github-com-sirupsen-logrus-1.2.0) -; ("go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d" -; ,go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d) -; ("go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910" -; ,go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910) -; ("go-github-com-prometheus-client-golang-0.9.1" -; ,go-github-com-prometheus-client-golang-0.9.1) -; ("go-github-com-pkg-errors-0.8.0" ,go-github-com-pkg-errors-0.8.0) -; ("go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223" -; ,go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223) -; ("go-github-com-matttproud-golang-protobuf-extensions-1.0.1" -; ,go-github-com-matttproud-golang-protobuf-extensions-1.0.1) -; ("go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515" -; ,go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515) -; ("go-github-com-julienschmidt-httprouter-1.2.0" -; ,go-github-com-julienschmidt-httprouter-1.2.0) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0) -; ("go-github-com-gogo-protobuf-1.1.1" -; ,go-github-com-gogo-protobuf-1.1.1) -; ("go-github-com-go-stack-stack-1.8.0" -; ,go-github-com-go-stack-stack-1.8.0) -; ("go-github-com-go-logfmt-logfmt-0.3.0" -; ,go-github-com-go-logfmt-logfmt-0.3.0) -; ("go-github-com-go-kit-kit-0.8.0" ,go-github-com-go-kit-kit-0.8.0) -; ("go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973" -; ,go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973) -; ("go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf" -; ,go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf) -; ("go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc" -; ,go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc))) -; (home-page "https://github.com/prometheus/common") -; (synopsis "Common") -; (description -; "This repository contains Go libraries that are shared across Prometheus -;components and libraries. They are considered internal to Prometheus, without -;any stability guarantees for external usage.") -; (license license:asl2.0))) -; -;(define-public go-github-com-prometheus-procfs-0.0.2 -; (package -; (name "go-github-com-prometheus-procfs") -; (version "0.0.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/procfs") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0s7pvs7fgnfpmym3cd0k219av321h9sf3yvdlnn3qy0ps280lg7k")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/procfs")) -; (propagated-inputs -; `(("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" -; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4))) -; (home-page "https://github.com/prometheus/procfs") -; (synopsis "procfs") -; (description -; "Package procfs provides functions to retrieve system, kernel and process -;metrics from the pseudo-filesystem proc. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-prometheus-client-golang-1.0.0 -; (package -; (name "go-github-com-prometheus-client-golang") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/client_golang") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1f03ndyi3jq7zdxinnvzimz3s4z2374r6dikkc8i42xzb6d1bli6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/client_golang")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5" -; ,go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5) -; ("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0) -; ("go-github-com-prometheus-procfs-0.0.2" -; ,go-github-com-prometheus-procfs-0.0.2) -; ("go-github-com-prometheus-common-0.4.1" -; ,go-github-com-prometheus-common-0.4.1) -; ("go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90" -; ,go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90) -; ("go-github-com-modern-go-reflect2-1.0.1" -; ,go-github-com-modern-go-reflect2-1.0.1) -; ("go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd" -; ,go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd) -; ("go-github-com-json-iterator-go-1.1.6" -; ,go-github-com-json-iterator-go-1.1.6) -; ("go-github-com-golang-protobuf-1.3.1" -; ,go-github-com-golang-protobuf-1.3.1) -; ("go-github-com-beorn7-perks-1.0.0" -; ,go-github-com-beorn7-perks-1.0.0))) -; (home-page "https://github.com/prometheus/client_golang") -; (synopsis "Prometheus Go client library") -; (description -; "This is the @url{http://golang.org,Go} client library for -;@url{http://prometheus.io,Prometheus}. It has two separate parts, one for -;instrumenting application code, and one for creating clients that talk to the -;Prometheus HTTP API.") -; (license license:asl2.0))) -; -;(define-public go-github-com-prometheus-client-model-0.2.0 -; (package -; (name "go-github-com-prometheus-client-model") -; (version "0.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/client_model") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0jffnz94d6ff39fr96b5w8i8yk26pwnrfggzz8jhi8k0yihg2c9d")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/client_model")) -; (propagated-inputs -; `(("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" -; ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0))) -; (home-page "https://github.com/prometheus/client_model") -; (synopsis "Deprecation note") -; (description -; "This repository used to contain the code that defined both -;the data model and the exposition format of Prometheus metrics.") -; (license license:asl2.0))) -; -;(define-public go-gopkg-in-yaml-v2-2.2.4 -; (package -; (name "go-gopkg-in-yaml-v2") -; (version "2.2.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/yaml.v2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "11bwj757wi8kdrcnlgfqb8vv2d2xdhlghmyagd19i62khrkchsg2")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" -; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) -; (home-page "https://gopkg.in/yaml.v2") -; (synopsis "YAML support for the Go language") -; (description "Package yaml implements YAML support for the Go language. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-prometheus-common-0.10.0 -; (package -; (name "go-github-com-prometheus-common") -; (version "0.10.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/common") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ra7zfqsnvgfizzsxn3rk0dwhk7nx8p8082zgpvadbv2b0j1k01i")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/common")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.2.4" ,go-gopkg-in-yaml-v2-2.2.4) -; ("go-gopkg-in-alecthomas-kingpin-v2-2.2.6" -; ,go-gopkg-in-alecthomas-kingpin-v2-2.2.6) -; ("go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894" -; ,go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894) -; ("go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980" -; ,go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980) -; ("go-github-com-sirupsen-logrus-1.4.2" -; ,go-github-com-sirupsen-logrus-1.4.2) -; ("go-github-com-prometheus-client-model-0.2.0" -; ,go-github-com-prometheus-client-model-0.2.0) -; ("go-github-com-prometheus-client-golang-1.0.0" -; ,go-github-com-prometheus-client-golang-1.0.0) -; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) -; ("go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223" -; ,go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223) -; ("go-github-com-matttproud-golang-protobuf-extensions-1.0.1" -; ,go-github-com-matttproud-golang-protobuf-extensions-1.0.1) -; ("go-github-com-julienschmidt-httprouter-1.2.0" -; ,go-github-com-julienschmidt-httprouter-1.2.0) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2) -; ("go-github-com-go-logfmt-logfmt-0.4.0" -; ,go-github-com-go-logfmt-logfmt-0.4.0) -; ("go-github-com-go-kit-kit-0.9.0" ,go-github-com-go-kit-kit-0.9.0) -; ("go-github-com-alecthomas-units-0.0.0-20190717042225-c3de453c63f4" -; ,go-github-com-alecthomas-units-0.0.0-20190717042225-c3de453c63f4) -; ("go-github-com-alecthomas-template-0.0.0-20190718012654-fb15b899a751" -; ,go-github-com-alecthomas-template-0.0.0-20190718012654-fb15b899a751))) -; (home-page "https://github.com/prometheus/common") -; (synopsis "Common") -; (description -; "This repository contains Go libraries that are shared across Prometheus -;components and libraries. They are considered internal to Prometheus, without -;any stability guarantees for external usage.") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-sys-0.0.0-20200106162015-b016eb3dc98e -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20200106162015-b016eb3dc98e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1k0qr26046d228gi6ngkfxp4m1rjgxk4jj75h0kh1cpyp91n5rja")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-prometheus-procfs-0.2.0 -; (package -; (name "go-github-com-prometheus-procfs") -; (version "0.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/procfs") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0rkpyq1grk3qyfahnfry5qkxjg5qb10yh1l8cvm8b79nqsmdyjbm")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/procfs")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20200106162015-b016eb3dc98e" -; ,go-golang-org-x-sys-0.0.0-20200106162015-b016eb3dc98e) -; ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" -; ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) -; ("go-github-com-google-go-cmp-0.3.1" -; ,go-github-com-google-go-cmp-0.3.1))) -; (home-page "https://github.com/prometheus/procfs") -; (synopsis "procfs") -; (description -; "Package procfs provides functions to retrieve system, kernel and process -;metrics from the pseudo-filesystem proc. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.3 -; (package -; (name "go-github-com-konsorten-go-windows-terminal-sequences") -; (version "1.0.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/konsorten/go-windows-terminal-sequences") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1yrsd4s8vhjnxhwbigirymz89dn6qfjnhn28i33vvvdgf96j6ypl")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) -; (home-page "https://github.com/konsorten/go-windows-terminal-sequences") -; (synopsis "Windows Terminal Sequences") -; (description -; "This library allow for enabling Windows terminal color support for Go.") -; (license license:expat))) -; -;(define-public go-github-com-sirupsen-logrus-1.6.0 -; (package -; (name "go-github-com-sirupsen-logrus") -; (version "1.6.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/sirupsen/logrus") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1zf9is1yxxnna0d1pyag2m9ziy3l27zb2j92p9msm1gx5jjrvzzj")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/sirupsen/logrus")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894" -; ,go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894) -; ("go-github-com-stretchr-testify-1.2.2" -; ,go-github-com-stretchr-testify-1.2.2) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.3" -; ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.3) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://github.com/sirupsen/logrus") -; (synopsis "Logrus") -; (description -; "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262 -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20190425150028-36563e24a262") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0lasi96f6a1h11gkm8kl33x03pmxp369wrqq2dg7x7xv9nq76d6g")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" -; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-text-0.0.0-20170915032832-14c0d48ead0c -; (package -; (name "go-golang-org-x-text") -; (version "0.0.0-20170915032832-14c0d48ead0c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/text") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0y0nrj4hw7vby6m3iqklbf4v7njqlsx7s4pwfkwmvh1ryn1kb7d6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/text")) -; (home-page "https://golang.org/x/text") -; (synopsis "Go Text") -; (description -; "text is a repository of text-related packages related to internationalization -;(i18n) and localization (l10n), such as character encodings, text -;transformations, and locale-specific text handling. -;") -; (license license:bsd-3))) -; -;(define-public go-rsc-io-sampler-1.3.0 -; (package -; (name "go-rsc-io-sampler") -; (version "1.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/rsc/sampler") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0byxk2ynba50py805kcvbvjzh59l1r308i1xgyzpw6lff4xx9xjh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "rsc.io/sampler")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.0.0-20170915032832-14c0d48ead0c" -; ,go-golang-org-x-text-0.0.0-20170915032832-14c0d48ead0c))) -; (home-page "https://rsc.io/sampler") -; (synopsis #f) -; (description "Package sampler shows simple texts. -;") -; (license license:bsd-3))) -; -;(define-public go-rsc-io-quote-v3-3.1.0 -; (package -; (name "go-rsc-io-quote-v3") -; (version "3.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/rsc/quote") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0nvv97hwwrl1mx5gzsbdm1ndnwpg3m7i2jb10ig9wily7zmvki0i")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "rsc.io/quote/v3" #:unpack-path "rsc.io/quote/v3")) -; (propagated-inputs `(("go-rsc-io-sampler-1.3.0" ,go-rsc-io-sampler-1.3.0))) -; (home-page "https://rsc.io/quote/v3") -; (synopsis #f) -; (description "Package quote collects pithy sayings. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-mock-1.4.1 -; (package -; (name "go-github-com-golang-mock") -; (version "1.4.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/mock") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1zb4n285mv85dh3y2f8fqbs30h2dhzw7vbczr6z0zg2gqr6vzg0q")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/mock")) -; (propagated-inputs -; `(("go-rsc-io-quote-v3-3.1.0" ,go-rsc-io-quote-v3-3.1.0) -; ("go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262" -; ,go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262))) -; (home-page "https://github.com/golang/mock") -; (synopsis "gomock") -; (description -; "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It -;integrates well with Go's built-in @code{testing} package, but can be used in other -;contexts too.") -; (license license:asl2.0))) -; -;(define-public go-github-com-golang-protobuf-1.3.4 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.3.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "12dclmj2if8l0069fby4psrpqby7p810dr1dr63nwx93g9jhvkmx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6 -; (package -; (name "go-github-com-ianlancetaylor-demangle") -; (version "0.0.0-20181102032728-5e5cf60278f6") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/ianlancetaylor/demangle") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1fhjk11cip9c3jyj1byz9z77n6n2rlxmyz0xjx1zpn1da3cvri75")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/ianlancetaylor/demangle")) -; (home-page "https://github.com/ianlancetaylor/demangle") -; (synopsis "github.com/ianlancetaylor/demangle") -; (description -; "Package demangle defines functions that demangle GCC/LLVM -;C++ and Rust symbol names. -;This package recognizes names that were mangled according to the C++ ABI -;defined at @url{http://codesourcery.com/cxx-abi/,http://codesourcery.com/cxx-abi/} and the Rust ABI -;defined at -;@url{https://rust-lang.github.io/rfcs/2603-rust-symbol-name-mangling-v0.html,https://rust-lang.github.io/rfcs/2603-rust-symbol-name-mangling-v0.html} -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20191204072324-ce4227a45e2e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1s43wvqfml6ml5ks7iv2bis9d664g77mq86v7mfmjhn56x856g35")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-google-pprof-0.0.0-20200229191704-1ebb73c60ed3 -; (package -; (name "go-github-com-google-pprof") -; (version "0.0.0-20200229191704-1ebb73c60ed3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/pprof") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1gdi9p4j1zfm5xlm488i5l0q3kk4q6hsmbmlk6p729i0di2n3ifa")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/pprof")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" -; ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) -; ("go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6" -; ,go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6) -; ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" -; ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) -; ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" -; ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) -; ("go-github-com-chzyer-logex-1.1.10" -; ,go-github-com-chzyer-logex-1.1.10))) -; (home-page "https://github.com/google/pprof") -; (synopsis "Introduction") -; (description -; "pprof is a tool for collection, manipulation and visualization -;of performance profiles. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-jstemmer-go-junit-report-0.9.1 -; (package -; (name "go-github-com-jstemmer-go-junit-report") -; (version "0.9.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/jstemmer/go-junit-report") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1knip80yir1cdsjlb3rzy0a4w3kl4ljpiciaz6hjzwqlfhnv7bkw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/jstemmer/go-junit-report")) -; (home-page "https://github.com/jstemmer/go-junit-report") -; (synopsis "go-junit-report") -; (description -; "Converts @code{go test} output to an xml report, suitable for applications that -;expect junit xml reports (e.g. @url{http://jenkins-ci.org,Jenkins}).") -; (license license:expat))) -; -;(define-public go-golang-org-x-mod-0.1.1-0.20191105210325-c90efee705ee -; (package -; (name "go-golang-org-x-mod") -; (version "0.1.1-0.20191105210325-c90efee705ee") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/mod") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0i5md645rmcy5z5ij9ng428k9rz4g3k1kjy3blsq1264rn426gdf")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/mod")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" -; ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) -; ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" -; ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) -; (home-page "https://golang.org/x/mod") -; (synopsis "mod") -; (description -; "This repository holds packages for writing tools -;that work directly with Go module mechanics. -;That is, it is for direct manipulation of Go modules themselves.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7 -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20200130002326-2f3ba24bd6e7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0j3nnmlwnbivf0h9x89vlp8ji3ha41v96bj33cxwmrrjnxq543ww")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" -; ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) -; ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" -; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) -; ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" -; ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) -; ("go-golang-org-x-mod-0.1.1-0.20191105210325-c90efee705ee" -; ,go-golang-org-x-mod-0.1.1-0.20191105210325-c90efee705ee))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b -; (package -; (name "go-golang-org-x-lint") -; (version "0.0.0-20200302205851-738671d3881b") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/lint") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0jkiz4py59jjnkyxbxifpf7bsar11lbgmj5jiq2kic5k03shkn9c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/lint")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7" -; ,go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7))) -; (home-page "https://golang.org/x/lint") -; (synopsis "Installation") -; (description "Package lint contains a linter for Go source code. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20200301022130-244492dfa37a -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20200301022130-244492dfa37a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0vm2q44phz4vjnzq9428rjk58c82fxf003whczp7c9ryn9fazh7s")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20200302150141-5c8b2ff67527 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20200302150141-5c8b2ff67527") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0r5s7f4w7crrbcf5ydpr2xzsq0svjm332vsds41yp58kwi2lvh2v")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20200304193943-95d2e580d8eb -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20200304193943-95d2e580d8eb") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0f46657xsdc12lr29ksqg80fp0j8v2iqgihzh788avcj5cmhnqyl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" -; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) -; ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" -; ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) -; ("go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b" -; ,go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b) -; ("go-golang-org-x-mod-0.2.0" ,go-golang-org-x-mod-0.2.0))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-mock-1.2.0 -; (package -; (name "go-github-com-golang-mock") -; (version "1.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/mock") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "12ddj2g8ab87id6n2n67vnbhq6p8dvgsq1pzpqfriym4dk8w54fg")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/mock")) -; (home-page "https://github.com/golang/mock") -; (synopsis "gomock") -; (description -; "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It -;integrates well with Go's built-in @code{testing} package, but can be used in other -;contexts too.") -; (license license:asl2.0))) -; -;(define-public go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c -; (package -; (name "go-github-com-google-btree") -; (version "0.0.0-20180813153112-4030bb1f1f0c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/btree") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ba430m9fbnagacp57krgidsyrgp3ycw5r7dj71brgp5r52g82p6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/btree")) -; (home-page "https://github.com/google/btree") -; (synopsis "BTree implementation for Go") -; (description -; "Package btree implements in-memory B-Trees of arbitrary degree. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-google-martian-2.1.0+incompatible -; (package -; (name "go-github-com-google-martian") -; (version "2.1.0+incompatible") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/martian") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "197hil6vrjk50b9wvwyzf61csid83whsjj6ik8mc9r2lryxlyyrp")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/martian")) -; (home-page "https://github.com/google/martian") -; (synopsis "Martian Proxy") -; (description -; "Package martian provides an HTTP/1.1 proxy with an API for configurable -;request and response modifiers. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-google-pprof-0.0.0-20181206194817-3ea8567a2e57 -; (package -; (name "go-github-com-google-pprof") -; (version "0.0.0-20181206194817-3ea8567a2e57") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/pprof") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "09rhjn3ms0a72dw0yzbp237p7yhqma772zspddn6mgkh3gi3kn4c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/pprof")) -; (home-page "https://github.com/google/pprof") -; (synopsis "Introduction") -; (description -; "pprof is a tool for collection, manipulation and visualization -;of performance profiles. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-googleapis-gax-go-v2-2.0.4 -; (package -; (name "go-github-com-googleapis-gax-go-v2") -; (version "2.0.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/gax-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1iwnm6ky1x53lgs44mw3hpdkjzrm5qd0kfs50m0qcq2ml5m1cwdm")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/googleapis/gax-go/v2")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.19.0" -; ,go-google-golang-org-grpc-1.19.0))) -; (home-page "https://github.com/googleapis/gax-go") -; (synopsis #f) -; (description -; "Package gax contains a set of modules which aid the development of APIs -;for clients and servers based on gRPC and Google API conventions. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-jstemmer-go-junit-report-0.0.0-20190106144839-af01ea7f8024 -; (package -; (name "go-github-com-jstemmer-go-junit-report") -; (version "0.0.0-20190106144839-af01ea7f8024") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/jstemmer/go-junit-report") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1lp3n94ris12hac02wi31f3whs88lcrzwgdg43a5j6cafg9p1d0s")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/jstemmer/go-junit-report")) -; (home-page "https://github.com/jstemmer/go-junit-report") -; (synopsis "go-junit-report") -; (description -; "Converts @code{go test} output to an xml report, suitable for applications that -;expect junit xml reports (e.g. @url{http://jenkins-ci.org,Jenkins}).") -; (license license:expat))) -; -;(define-public go-golang-org-x-text-0.3.1-0.20180807135948-17ff2d5776d2 -; (package -; (name "go-golang-org-x-text") -; (version "0.3.1-0.20180807135948-17ff2d5776d2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/text") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1rrh2mnmyxr45nsvy42zq3w3ly6gw6rl993knwvf1w71kyv0jjnj")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/text")) -; (home-page "https://golang.org/x/text") -; (synopsis "Go Text") -; (description -; "text is a repository of text-related packages related to internationalization -;(i18n) and localization (l10n), such as character encodings, text -;transformations, and locale-specific text handling. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-time-0.0.0-20181108054448-85acf8d2951c -; (package -; (name "go-golang-org-x-time") -; (version "0.0.0-20181108054448-85acf8d2951c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/time") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0yqnxsrarjk4qkda8kcxzmk7y90kkkxzx9iwryzrk7bzs87ky3xc")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/time")) -; (home-page "https://golang.org/x/time") -; (synopsis "Go Time") -; (description "This repository provides supplementary Go time packages.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f -; (package -; (name "go-golang-org-x-lint") -; (version "0.0.0-20190301231843-5614ed5bae6f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/lint") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0fzn0zjv0x92xvfdq3a0v9w5sgkhr7hxkfy9zaqi8i57807z8bnx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/lint")) -; (home-page "https://golang.org/x/lint") -; (synopsis "Installation") -; (description "Package lint contains a linter for Go source code. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421 -; (package -; (name "go-golang-org-x-oauth2") -; (version "0.0.0-20190226205417-e64efc72b421") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/oauth2") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0djvwz2avx7knsjbl434vw1wqbrg53xp1kh599gfixn5icrggz4m")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/oauth2")) -; (propagated-inputs -; `(("go-google-golang-org-appengine-1.4.0" -; ,go-google-golang-org-appengine-1.4.0) -; ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" -; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) -; ("go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e" -; ,go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e) -; ("go-cloud-google-com-go-0.34.0" ,go-cloud-google-com-go-0.34.0))) -; (home-page "https://golang.org/x/oauth2") -; (synopsis "OAuth2 for Go") -; (description -; "Package oauth2 provides support for making -;OAuth2 authorized and authenticated HTTP requests, -;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -;It can additionally grant authorization with Bearer JWT. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138 -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20190312170243-e65039ee4138") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0c094599cf70wdrms49a3879qkq122pqlp2av444gs2pvc8apdcx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-api-0.4.0 -; (package -; (name "go-google-golang-org-api") -; (version "0.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-api-go-client") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1hzgrw5wasmcjlqpxsmryddzzw4cwyzf2vx14i9z51v1plwssijm")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/api")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" -; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) -; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) -; ("go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19" -; ,go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19) -; ("go-google-golang-org-appengine-1.4.0" -; ,go-google-golang-org-appengine-1.4.0) -; ("go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138" -; ,go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138) -; ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" -; ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) -; ("go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421" -; ,go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421) -; ("go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f" -; ,go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f) -; ("go-go-opencensus-io-0.21.0" ,go-go-opencensus-io-0.21.0) -; ("go-github-com-google-go-cmp-0.2.0" -; ,go-github-com-google-go-cmp-0.2.0))) -; (home-page "https://google.golang.org/api") -; (synopsis "Google APIs Client Library for Go") -; (description -; "Package api is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of -;sub-packages. -;") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20190418145605-e7d98fc518a7 -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20190418145605-e7d98fc518a7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1cnavkyawwvfc5yl097ygnfy1ac69v4zc02gdfnq1bvgcvgmvnbi")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" -; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) -; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) -; ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" -; ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) -; ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" -; ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) -; ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" -; ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd) -; ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" -; ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) -; ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" -; ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-honnef-co-go-tools-0.0.0-20190106161140-3f1c8253044a -; (package -; (name "go-honnef-co-go-tools") -; (version "0.0.0-20190106161140-3f1c8253044a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/dominikh/go-tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0d3vgh0fgfj1z7i648g1s6x2pwxd07sxfjwg1xn3yagr9h06jh3h")))) -; (build-system go-build-system) -; (arguments '(#:import-path "honnef.co/go/tools")) -; (home-page "https://honnef.co/go/tools") -; (synopsis "Documentation") -; (description -; "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, -;offers simplifications, and enforces style rules.") -; (license license:expat))) -; -;(define-public go-cloud-google-com-go-0.38.0 -; (package -; (name "go-cloud-google-com-go") -; (version "0.38.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-cloud-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0n6n13b7lri2fmc4bn4ifszyawj31dpbzvyv0xafsf81440z8cyh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "cloud.google.com/go")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190106161140-3f1c8253044a" -; ,go-honnef-co-go-tools-0.0.0-20190106161140-3f1c8253044a) -; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) -; ("go-google-golang-org-genproto-0.0.0-20190418145605-e7d98fc518a7" -; ,go-google-golang-org-genproto-0.0.0-20190418145605-e7d98fc518a7) -; ("go-google-golang-org-api-0.4.0" ,go-google-golang-org-api-0.4.0) -; ("go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138" -; ,go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138) -; ("go-golang-org-x-time-0.0.0-20181108054448-85acf8d2951c" -; ,go-golang-org-x-time-0.0.0-20181108054448-85acf8d2951c) -; ("go-golang-org-x-text-0.3.1-0.20180807135948-17ff2d5776d2" -; ,go-golang-org-x-text-0.3.1-0.20180807135948-17ff2d5776d2) -; ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" -; ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) -; ("go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421" -; ,go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421) -; ("go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f" -; ,go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f) -; ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" -; ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) -; ("go-go-opencensus-io-0.21.0" ,go-go-opencensus-io-0.21.0) -; ("go-github-com-jstemmer-go-junit-report-0.0.0-20190106144839-af01ea7f8024" -; ,go-github-com-jstemmer-go-junit-report-0.0.0-20190106144839-af01ea7f8024) -; ("go-github-com-googleapis-gax-go-v2-2.0.4" -; ,go-github-com-googleapis-gax-go-v2-2.0.4) -; ("go-github-com-google-pprof-0.0.0-20181206194817-3ea8567a2e57" -; ,go-github-com-google-pprof-0.0.0-20181206194817-3ea8567a2e57) -; ("go-github-com-google-martian-2.1.0+incompatible" -; ,go-github-com-google-martian-2.1.0+incompatible) -; ("go-github-com-google-go-cmp-0.2.0" -; ,go-github-com-google-go-cmp-0.2.0) -; ("go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c" -; ,go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0) -; ("go-github-com-golang-mock-1.2.0" ,go-github-com-golang-mock-1.2.0))) -; (home-page "https://cloud.google.com/go") -; (synopsis "Google Cloud Client Libraries for Go") -; (description -; "Package cloud is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -;of sub-packages. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-googleapis-gax-go-v2-2.0.5 -; (package -; (name "go-github-com-googleapis-gax-go-v2") -; (version "2.0.5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/gax-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1lxawwngv6miaqd25s3ba0didfzylbwisd2nz7r4gmbmin6jsjrx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/googleapis/gax-go/v2")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.19.0" -; ,go-google-golang-org-grpc-1.19.0))) -; (home-page "https://github.com/googleapis/gax-go") -; (synopsis #f) -; (description -; "Package gax contains a set of modules which aid the development of APIs -;for clients and servers based on gRPC and Google API conventions. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-hashicorp-golang-lru-0.5.0 -; (package -; (name "go-github-com-hashicorp-golang-lru") -; (version "0.5.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/golang-lru") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "12k2cp2k615fjvfa5hyb9k2alian77wivds8s65diwshwv41939f")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hashicorp/golang-lru")) -; (home-page "https://github.com/hashicorp/golang-lru") -; (synopsis "golang-lru") -; (description -; "Package lru provides three different LRU caches of varying sophistication. -;") -; (license license:mpl2.0))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19 -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20190307195333-5fe7a883aa19") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0qjkwig0r42q0j2qv57s4ahsgmmp41dz3ih3rnaqg0619n5w7lbs")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" -; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) -; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) -; ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" -; ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) -; ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" -; ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) -; ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" -; ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd) -; ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" -; ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) -; ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" -; ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-go-opencensus-io-0.21.0 -; (package -; (name "go-go-opencensus-io") -; (version "0.21.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/census-instrumentation/opencensus-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "14s0a12xdzjvad0dgksgv8m3hh7nc585abvjkvyk6r67a29lxj6x")))) -; (build-system go-build-system) -; (arguments '(#:import-path "go.opencensus.io")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) -; ("go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19" -; ,go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-github-com-hashicorp-golang-lru-0.5.0" -; ,go-github-com-hashicorp-golang-lru-0.5.0) -; ("go-github-com-google-go-cmp-0.2.0" -; ,go-github-com-google-go-cmp-0.2.0) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0))) -; (home-page "https://go.opencensus.io") -; (synopsis "OpenCensus Libraries for Go") -; (description "Package opencensus contains Go support for OpenCensus. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-net-0.0.0-20190503192946-f4e77d36d62c -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20190503192946-f4e77d36d62c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0avjnglqqg9ya0cbhp23m4namykii219kxjywxn4cd7pfcc5arha")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45 -; (package -; (name "go-golang-org-x-oauth2") -; (version "0.0.0-20190604053449-0f29369cfe45") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/oauth2") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "06jwpvx0x2gjn2y959drbcir5kd7vg87k0r1216abk6rrdzzrzi2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/oauth2")) -; (propagated-inputs -; `(("go-google-golang-org-appengine-1.4.0" -; ,go-google-golang-org-appengine-1.4.0) -; ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" -; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) -; ("go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e" -; ,go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e) -; ("go-cloud-google-com-go-0.34.0" ,go-cloud-google-com-go-0.34.0))) -; (home-page "https://golang.org/x/oauth2") -; (synopsis "OAuth2 for Go") -; (description -; "Package oauth2 provides support for making -;OAuth2 authorized and authenticated HTTP requests, -;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -;It can additionally grant authorization with Bearer JWT. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190507160741-ecd444e8653b") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1vhld4948mzfnlgf20id29mv1bwpk9a3xlbw1mbjzxzxxdv1jds2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-appengine-1.5.0 -; (package -; (name "go-google-golang-org-appengine") -; (version "1.5.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/appengine") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0l7mkdnwhidv8m686x432vmx8z5nqcrr9f46ddgvrxbh4wvyfcll")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/appengine")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225" -; ,go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0))) -; (home-page "https://google.golang.org/appengine") -; (synopsis "Go App Engine packages") -; (description -; "Package appengine provides basic functionality for Google App Engine. -;") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-api-0.20.0 -; (package -; (name "go-google-golang-org-api") -; (version "0.20.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-api-go-client") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "13syr1x33k6mrn5w6l4sgdbzn368w3m60vf6kk2j10fwa45125rg")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/api")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" -; ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) -; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) -; ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" -; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) -; ("go-google-golang-org-appengine-1.5.0" -; ,go-google-golang-org-appengine-1.5.0) -; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" -; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) -; ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) -; ("go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b" -; ,go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b) -; ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" -; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) -; ("go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45" -; ,go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45) -; ("go-golang-org-x-net-0.0.0-20190503192946-f4e77d36d62c" -; ,go-golang-org-x-net-0.0.0-20190503192946-f4e77d36d62c) -; ("go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422" -; ,go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422) -; ("go-go-opencensus-io-0.21.0" ,go-go-opencensus-io-0.21.0) -; ("go-github-com-hashicorp-golang-lru-0.5.1" -; ,go-github-com-hashicorp-golang-lru-0.5.1) -; ("go-github-com-googleapis-gax-go-v2-2.0.5" -; ,go-github-com-googleapis-gax-go-v2-2.0.5) -; ("go-github-com-google-go-cmp-0.3.0" -; ,go-github-com-google-go-cmp-0.3.0) -; ("go-cloud-google-com-go-0.38.0" ,go-cloud-google-com-go-0.38.0))) -; (home-page "https://google.golang.org/api") -; (synopsis "Google APIs Client Library for Go") -; (description -; "Package api is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of -;sub-packages. -;") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20200305110556-506484158171 -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20200305110556-506484158171") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "19h7sxkfjcrkm7majd0pyzzirdnk1qlsxc3h5zklhm234d8jg407")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" -; ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) -; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) -; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" -; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-github-com-golang-protobuf-1.3.3" -; ,go-github-com-golang-protobuf-1.3.3))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-github-com-google-renameio-0.1.0 -; (package -; (name "go-github-com-google-renameio") -; (version "0.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/renameio") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ki2x5a9nrj17sn092d6n4zr29lfg5ydv4xz5cp58z6cw8ip43jx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/renameio")) -; (home-page "https://github.com/google/renameio") -; (synopsis "Atomicity vs durability") -; (description -; "Package renameio provides a way to atomically create or replace a file or -;symbolic link. -;") -; (license license:asl2.0))) -; -;(define-public go-gopkg-in-errgo-v2-2.1.0 -; (package -; (name "go-gopkg-in-errgo-v2") -; (version "2.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/errgo.v2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "065mbihiy7q67wnql0bzl9y1kkvck5ivra68254zbih52jxwrgr2")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/errgo.v2" #:unpack-path "gopkg.in/errgo.v2")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" -; ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) -; ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0))) -; (home-page "https://gopkg.in/errgo.v2") -; (synopsis #f) -; (description -; "Package errgo provides some primitives for error creation and handling.") -; (license license:bsd-3))) -; -;(define-public go-github-com-rogpeppe-go-internal-1.3.0 -; (package -; (name "go-github-com-rogpeppe-go-internal") -; (version "1.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/rogpeppe/go-internal") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0mcdh1licgnnahwml9y2iq6xy5x9xmjw5frcnds2s3wpjyqrl216")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/rogpeppe/go-internal")) -; (propagated-inputs -; `(("go-gopkg-in-errgo-v2-2.1.0" ,go-gopkg-in-errgo-v2-2.1.0))) -; (home-page "https://github.com/rogpeppe/go-internal") -; (synopsis #f) -; (description -; "This repository factors out an opinionated selection of internal packages and functionality from the Go standard -;library. Currently this consists mostly of packages and testing code from within the Go tool implementation.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20190510104115-cbcb75029529 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20190510104115-cbcb75029529") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "12831ga1gq04a3jbbcmww7kaqfdfgp7cdv2fj9aqidz8h52ajdmh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" -; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) -; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" -; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-mod-0.0.0-20190513183733-4bf6d317e70e -; (package -; (name "go-golang-org-x-mod") -; (version "0.0.0-20190513183733-4bf6d317e70e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/mod") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "19lg1ly3j31anx92p0hynic1gjk417wwxphfdrb2cq1c19kj3r17")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/mod")) -; (propagated-inputs -; `(("go-golang-org-x-crypto-0.0.0-20190510104115-cbcb75029529" -; ,go-golang-org-x-crypto-0.0.0-20190510104115-cbcb75029529))) -; (home-page "https://golang.org/x/mod") -; (synopsis "mod") -; (description -; "This repository holds packages for writing tools -;that work directly with Go module mechanics. -;That is, it is for direct manipulation of Go modules themselves.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20191130070609-6e064ea0cf2d -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20191130070609-6e064ea0cf2d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1nbki367xspsa37j6276f5q2gv31vfjpb52axn3p3ymz548my75d")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7" -; ,go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7) -; ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" -; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) -; ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" -; ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-honnef-co-go-tools-0.0.1-2020.1.3 -; (package -; (name "go-honnef-co-go-tools") -; (version "0.0.1-2020.1.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/dominikh/go-tools") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0pvi1mzhy6zgx4zfgdypbl4zhvgg11hl5qv7blf2qs0a96j2djhf")))) -; (build-system go-build-system) -; (arguments '(#:import-path "honnef.co/go/tools")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20191130070609-6e064ea0cf2d" -; ,go-golang-org-x-tools-0.0.0-20191130070609-6e064ea0cf2d) -; ("go-golang-org-x-mod-0.0.0-20190513183733-4bf6d317e70e" -; ,go-golang-org-x-mod-0.0.0-20190513183733-4bf6d317e70e) -; ("go-github-com-rogpeppe-go-internal-1.3.0" -; ,go-github-com-rogpeppe-go-internal-1.3.0) -; ("go-github-com-kisielk-gotool-1.0.0" -; ,go-github-com-kisielk-gotool-1.0.0) -; ("go-github-com-google-renameio-0.1.0" -; ,go-github-com-google-renameio-0.1.0) -; ("go-github-com-burntsushi-toml-0.3.1" -; ,go-github-com-burntsushi-toml-0.3.1))) -; (home-page "https://honnef.co/go/tools") -; (synopsis "Documentation") -; (description -; "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, -;offers simplifications, and enforces style rules.") -; (license license:expat))) -; -;(define-public go-cloud-google-com-go-0.54.0 -; (package -; (name "go-cloud-google-com-go") -; (version "0.54.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-cloud-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ilqqymrphg546c66jc0npd48dlr88wbgrg462h1jgm2ykbnq1ba")))) -; (build-system go-build-system) -; (arguments '(#:import-path "cloud.google.com/go")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.1-2020.1.3" -; ,go-honnef-co-go-tools-0.0.1-2020.1.3) -; ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) -; ("go-google-golang-org-genproto-0.0.0-20200305110556-506484158171" -; ,go-google-golang-org-genproto-0.0.0-20200305110556-506484158171) -; ("go-google-golang-org-api-0.20.0" ,go-google-golang-org-api-0.20.0) -; ("go-golang-org-x-tools-0.0.0-20200304193943-95d2e580d8eb" -; ,go-golang-org-x-tools-0.0.0-20200304193943-95d2e580d8eb) -; ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) -; ("go-golang-org-x-sys-0.0.0-20200302150141-5c8b2ff67527" -; ,go-golang-org-x-sys-0.0.0-20200302150141-5c8b2ff67527) -; ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" -; ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) -; ("go-golang-org-x-net-0.0.0-20200301022130-244492dfa37a" -; ,go-golang-org-x-net-0.0.0-20200301022130-244492dfa37a) -; ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" -; ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) -; ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) -; ("go-github-com-jstemmer-go-junit-report-0.9.1" -; ,go-github-com-jstemmer-go-junit-report-0.9.1) -; ("go-github-com-googleapis-gax-go-v2-2.0.5" -; ,go-github-com-googleapis-gax-go-v2-2.0.5) -; ("go-github-com-google-pprof-0.0.0-20200229191704-1ebb73c60ed3" -; ,go-github-com-google-pprof-0.0.0-20200229191704-1ebb73c60ed3) -; ("go-github-com-google-martian-2.1.0+incompatible" -; ,go-github-com-google-martian-2.1.0+incompatible) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.3.4" -; ,go-github-com-golang-protobuf-1.3.4) -; ("go-github-com-golang-mock-1.4.1" ,go-github-com-golang-mock-1.4.1) -; ("go-cloud-google-com-go-storage-1.6.0" -; ,go-cloud-google-com-go-storage-1.6.0) -; ("go-cloud-google-com-go-pubsub-1.2.0" -; ,go-cloud-google-com-go-pubsub-1.2.0) -; ("go-cloud-google-com-go-datastore-1.1.0" -; ,go-cloud-google-com-go-datastore-1.1.0) -; ("go-cloud-google-com-go-bigquery-1.4.0" -; ,go-cloud-google-com-go-bigquery-1.4.0))) -; (home-page "https://cloud.google.com/go") -; (synopsis "Google Cloud Client Libraries for Go") -; (description -; "Package cloud is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -;of sub-packages. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7 -; (package -; (name "go-github-com-gregjones-httpcache") -; (version "0.0.0-20180305231024-9cad4c3443a7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/gregjones/httpcache") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0wjdwcwqqcx2d5y68qvhg6qyj977il5ijmnn9h9cd6wjbdy0ay6s")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/gregjones/httpcache")) -; (home-page "https://github.com/gregjones/httpcache") -; (synopsis "httpcache") -; (description -; "Package httpcache provides a http.RoundTripper implementation that works as a -;mostly RFC-compliant cache for http responses. -;") -; (license license:expat))) -; -;(define-public go-github-com-imdario-mergo-0.3.5 -; (package -; (name "go-github-com-imdario-mergo") -; (version "0.3.5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/imdario/mergo") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1mvgn89vp39gcpvhiq4n7nw5ipj7fk6h03jgc6fjwgvwvss213pb")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/imdario/mergo")) -; (home-page "https://github.com/imdario/mergo") -; (synopsis "Mergo") -; (description -; "This package provides a helper to merge structs and maps in Golang. Useful for configuration default values, avoiding messy if-statements. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-peterbourgon-diskv-2.0.1+incompatible -; (package -; (name "go-github-com-peterbourgon-diskv") -; (version "2.0.1+incompatible") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/peterbourgon/diskv") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1mxpa5aad08x30qcbffzk80g9540wvbca4blc1r2qyzl65b8929b")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/peterbourgon/diskv")) -; (home-page "https://github.com/peterbourgon/diskv") -; (synopsis "What is diskv?") -; (description -; "Diskv (disk-vee) is a simple, persistent key-value store written in the Go -;language. It starts with an incredibly simple API for storing arbitrary data on -;a filesystem by key, and builds several layers of performance-enhancing -;abstraction on top. The end result is a conceptually simple, but highly -;performant, disk-backed storage system.") -; (license license:expat))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20201002170205-7f63de1d35b0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1dr89jfs4dmpr3jqfshqqvfpzzdx4r76nkzhrvmixfrmn6wxrnd1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" -; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) -; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" -; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e -; (package -; (name "go-golang-org-x-time") -; (version "0.0.0-20200630173020-3af7569d3a1e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/time") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "05hqhw3vlssi499y6m41zgdp1yyjsw2kj95ahymlw6pkhsssh2vq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/time")) -; (home-page "https://golang.org/x/time") -; (synopsis "Go Time") -; (description "This repository provides supplementary Go time packages.") -; (license license:bsd-3))) -; -;(define-public go-k8s-io-api-0.20.6 -; (package -; (name "go-k8s-io-api") -; (version "0.20.6") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes/api") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0mm6a91a4nrlsvnfcbgn2574vdwxf1nxpgrd5avklh8mym2ngimw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "k8s.io/api")) -; (propagated-inputs -; `(("go-k8s-io-apimachinery-0.20.6" ,go-k8s-io-apimachinery-0.20.6) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-gogo-protobuf-1.3.2" -; ,go-github-com-gogo-protobuf-1.3.2))) -; (home-page "https://k8s.io/api") -; (synopsis "api") -; (description -; "Schema of the external API types that are served by the Kubernetes API server.") -; (license license:asl2.0))) -; -;(define-public go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96 -; (package -; (name "go-github-com-docker-spdystream") -; (version "0.0.0-20160310174837-449fdfce4d96") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/moby/spdystream") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1412cpiis971iq1kxrirzirhj2708ispjh0x0dh879b66x8507sl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/docker/spdystream")) -; (home-page "https://github.com/docker/spdystream") -; (synopsis "SpdyStream") -; (description -; "This package provides a multiplexed stream library using spdy") -; (license license:asl2.0))) -; -;(define-public go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153 -; (package -; (name "go-github-com-elazarl-goproxy") -; (version "0.0.0-20180725130230-947c36da3153") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/elazarl/goproxy") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0lmsnr5xmda89wig8sw62llg6acjb5caghz5jmdhnm85rm6rnssk")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/elazarl/goproxy")) -; (home-page "https://github.com/elazarl/goproxy") -; (synopsis "Introduction") -; (description -; "Taken from $GOROOT/src/pkg/net/http/chunked -;needed to write https responses to client. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-evanphx-json-patch-4.9.0+incompatible -; (package -; (name "go-github-com-evanphx-json-patch") -; (version "4.9.0+incompatible") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/evanphx/json-patch") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1r88qpzjxsx8skij9s5pi4a5qcv4bm18vq8sy21gpwgzp3qf6qzx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/evanphx/json-patch")) -; (home-page "https://github.com/evanphx/json-patch") -; (synopsis "JSON-Patch") -; (description -; "@code{jsonpatch} is a library which provides functionality for both applying -;@url{http://tools.ietf.org/html/rfc6902,RFC6902 JSON patches} against documents, as -;well as for calculating & applying @url{https://tools.ietf.org/html/rfc7396,RFC7396 JSON merge patches}.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20191005200804-aed5e4c7ecf9") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0wsdsbl9n61l99z0cvib2xzg56fsfgky4yc5xapdw9ywx9h0zm3a")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-fsnotify-fsnotify-1.4.9 -; (package -; (name "go-github-com-fsnotify-fsnotify") -; (version "1.4.9") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/fsnotify/fsnotify") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1i1r72knpbfwwql9frn9bqc3nhfc2ai5m6qllcyr6wban62lr40x")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/fsnotify/fsnotify")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9" -; ,go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9))) -; (home-page "https://github.com/fsnotify/fsnotify") -; (synopsis "File system notifications for Go") -; (description -; "Package fsnotify provides a platform-independent interface for file system notifications. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-google-gofuzz-1.1.0 -; (package -; (name "go-github-com-google-gofuzz") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/gofuzz") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0si2fiigj45vr4jnw4grjhls7nw56wkwinnn93gqbl9ng9ynw8rx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/gofuzz")) -; (home-page "https://github.com/google/gofuzz") -; (synopsis "gofuzz") -; (description -; "Package fuzz is a library for populating go objects with random values. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-hashicorp-golang-lru-0.5.1 -; (package -; (name "go-github-com-hashicorp-golang-lru") -; (version "0.5.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/golang-lru") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "13f870cvk161bzjj6x41l45r5x9i1z9r2ymwmvm7768kg08zznpy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hashicorp/golang-lru")) -; (home-page "https://github.com/hashicorp/golang-lru") -; (synopsis "golang-lru") -; (description -; "Package lru provides three different LRU caches of varying sophistication. -;") -; (license license:mpl2.0))) -; -;(define-public go-github-com-modern-go-reflect2-0.0.0-20180701023420-4b7aa43c6742 -; (package -; (name "go-github-com-modern-go-reflect2") -; (version "0.0.0-20180701023420-4b7aa43c6742") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/modern-go/reflect2") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1721y3yr3dpx5dx5ashf063qczk2awy5zjir1jvp1h5hn7qz4i49")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/modern-go/reflect2")) -; (home-page "https://github.com/modern-go/reflect2") -; (synopsis "reflect2") -; (description "reflect api that avoids runtime reflect.Value cost") -; (license license:asl2.0))) -; -;(define-public go-github-com-json-iterator-go-1.1.10 -; (package -; (name "go-github-com-json-iterator-go") -; (version "1.1.10") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/json-iterator/go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "134zwc2pmf8nd90r8065wsl6vv1mwjl23bs70i08dzhw5h98drr4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/json-iterator/go")) -; (propagated-inputs -; `(("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0) -; ("go-github-com-modern-go-reflect2-0.0.0-20180701023420-4b7aa43c6742" -; ,go-github-com-modern-go-reflect2-0.0.0-20180701023420-4b7aa43c6742) -; ("go-github-com-modern-go-concurrent-0.0.0-20180228061459-e0a39a4cb421" -; ,go-github-com-modern-go-concurrent-0.0.0-20180228061459-e0a39a4cb421) -; ("go-github-com-google-gofuzz-1.0.0" -; ,go-github-com-google-gofuzz-1.0.0) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://github.com/json-iterator/go") -; (synopsis "Benchmark") -; (description -; "Package jsoniter implements encoding and decoding of JSON as defined in -;@url{https://rfc-editor.org/rfc/rfc4627.html,RFC 4627} and provides interfaces with identical syntax of standard lib encoding/json. -;Converting from encoding/json to jsoniter is no more than replacing the package with jsoniter -;and variable type declarations (if any). -;jsoniter interfaces gives 100% compatibility with code using standard lib. -;") -; (license license:expat))) -; -;(define-public go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f -; (package -; (name "go-github-com-mxk-go-flowrate") -; (version "0.0.0-20140419014527-cca7078d478f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mxk/go-flowrate") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0zqs39923ja0yypdmiqk6x8pgmfs3ms5x5sl1dqv9z6zyx2xy541")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mxk/go-flowrate")) -; (home-page "https://github.com/mxk/go-flowrate") -; (synopsis #f) -; (description #f) -; (license license:bsd-3))) -; -;(define-public go-github-com-onsi-ginkgo-1.11.0 -; (package -; (name "go-github-com-onsi-ginkgo") -; (version "1.11.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/onsi/ginkgo") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1vxmb5k89bq50m2kzcw5l3bdvci4czpifkgxd4nbq1yzv5ir03kp")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/onsi/ginkgo")) -; (home-page "https://github.com/onsi/ginkgo") -; (synopsis "Ginkgo 2.0 Release Candidate is available!") -; (description "Ginkgo is a BDD-style testing framework for Golang -;") -; (license license:expat))) -; -;(define-public go-github-com-hpcloud-tail-1.0.0 -; (package -; (name "go-github-com-hpcloud-tail") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hpcloud/tail") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1njpzc0pi1acg5zx9y6vj9xi6ksbsc5d387rd6904hy6rh2m6kn0")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hpcloud/tail")) -; (home-page "https://github.com/hpcloud/tail") -; (synopsis "Go package for tail-ing files") -; (description -; "This package provides a Go package striving to emulate the features of the BSD @code{tail} program.") -; (license license:expat))) -; -;(define-public go-github-com-onsi-ginkgo-1.6.0 -; (package -; (name "go-github-com-onsi-ginkgo") -; (version "1.6.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/onsi/ginkgo") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0x0gc89vgq38xhgmi2h22bhr73cf2gmk42g89nz89k8dgg9hhr25")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/onsi/ginkgo")) -; (home-page "https://github.com/onsi/ginkgo") -; (synopsis "Ginkgo 2.0 Release Candidate is available!") -; (description "Ginkgo is a BDD-style testing framework for Golang -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20180906233101-161cd47e91fd") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0254ld010iijygbzykib2vags1dc0wlmcmhgh4jl8iny159lhbcv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20180909124046-d0be0721c37e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "081wyvfnlf842dqg03raxfz6lldlxpmyh1prix9lmrrm65arxb12")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-gopkg-in-fsnotify-v1-1.4.7 -; (package -; (name "go-gopkg-in-fsnotify-v1") -; (version "1.4.7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/fsnotify.v1") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path -; "gopkg.in/fsnotify.v1" -; #:unpack-path -; "gopkg.in/fsnotify.v1")) -; (home-page "https://gopkg.in/fsnotify.v1") -; (synopsis "File system notifications for Go") -; (description -; "Package fsnotify provides a platform-independent interface for file system notifications. -;") -; (license license:bsd-3))) -; -;(define-public go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7 -; (package -; (name "go-gopkg-in-tomb-v1") -; (version "1.0.0-20141024135613-dd632973f1e7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/tomb.v1") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1lqmq1ag7s4b3gc3ddvr792c5xb5k6sfn0cchr3i2s7f1c231zjv")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/tomb.v1" #:unpack-path "gopkg.in/tomb.v1")) -; (home-page "https://gopkg.in/tomb.v1") -; (synopsis "Installation and usage") -; (description -; "The tomb package offers a conventional API for clean goroutine termination. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-onsi-gomega-1.7.0 -; (package -; (name "go-github-com-onsi-gomega") -; (version "1.7.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/onsi/gomega") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "09j6wq425wgzzsbwm9ckhfgl2capv3yyqbrf45qyrjwkzm49i02y")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/onsi/gomega")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1) -; ("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" -; ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) -; ("go-gopkg-in-fsnotify-v1-1.4.7" ,go-gopkg-in-fsnotify-v1-1.4.7) -; ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e" -; ,go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e) -; ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" -; ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) -; ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" -; ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) -; ("go-github-com-onsi-ginkgo-1.6.0" ,go-github-com-onsi-ginkgo-1.6.0) -; ("go-github-com-hpcloud-tail-1.0.0" ,go-github-com-hpcloud-tail-1.0.0) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0) -; ("go-github-com-fsnotify-fsnotify-1.4.7" -; ,go-github-com-fsnotify-fsnotify-1.4.7))) -; (home-page "https://github.com/onsi/gomega") -; (synopsis ": a BDD Testing Framework for Golang") -; (description -; "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library. -;") -; (license license:expat))) -; -;(define-public go-github-com-spf13-pflag-1.0.5 -; (package -; (name "go-github-com-spf13-pflag") -; (version "1.0.5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/spf13/pflag") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0gpmacngd0gpslnbkzi263f5ishigzgh6pbdv9hp092rnjl4nd31")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/spf13/pflag")) -; (home-page "https://github.com/spf13/pflag") -; (synopsis "Description") -; (description -; "Package pflag is a drop-in replacement for Go's flag package, implementing -;POSIX/GNU-style --flags. -;") -; (license license:bsd-3))) -; -;(define-public go-gopkg-in-inf-v0-0.9.1 -; (package -; (name "go-gopkg-in-inf-v0") -; (version "0.9.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/inf.v0") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "00k5iqjcp371fllqxncv7jkf80hn1zww92zm78cclbcn4ybigkng")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/inf.v0" #:unpack-path "gopkg.in/inf.v0")) -; (home-page "https://gopkg.in/inf.v0") -; (synopsis #f) -; (description -; "Package inf (type inf.Dec) implements \"infinite-precision\" decimal -;arithmetic. -;\"Infinite precision\" describes two characteristics: practically unlimited -;precision for decimal number representation and no support for calculating -;with any specific fixed precision. -;(Although there is no practical limit on precision, inf.Dec can only -;represent finite decimals.) -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-nytimes-gziphandler-0.0.0-20170623195520-56545f4a5d46 -; (package -; (name "go-github-com-nytimes-gziphandler") -; (version "0.0.0-20170623195520-56545f4a5d46") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/nytimes/gziphandler") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1fwk9wz6vrvq72f2gq8jhvd1nvv6grqgwrjq66vjpm0726pxar72")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/NYTimes/gziphandler")) -; (home-page "https://github.com/NYTimes/gziphandler") -; (synopsis "Gzip Handler") -; (description -; "This is a tiny Go package which wraps HTTP handlers to transparently gzip the -;response body, for clients which support it. Although it's usually simpler to -;leave that to a reverse proxy (like nginx or Varnish), this package is useful -;when that's undesirable.") -; (license license:asl2.0))) -; -;(define-public go-github-com-asaskevich-govalidator-0.0.0-20190424111038-f61b66f89f4a -; (package -; (name "go-github-com-asaskevich-govalidator") -; (version "0.0.0-20190424111038-f61b66f89f4a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/asaskevich/govalidator") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1jzjd9ak4byb83bwhbyrrdclnhrgglyxcbr4d4qh39a6ywvcijm5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/asaskevich/govalidator")) -; (home-page "https://github.com/asaskevich/govalidator") -; (synopsis "govalidator") -; (description -; "Package govalidator is package of validators and sanitizers for strings, structs and collections. -;") -; (license license:expat))) -; -;(define-public go-github-com-emicklei-go-restful-0.0.0-20170410110728-ff4f55a20633 -; (package -; (name "go-github-com-emicklei-go-restful") -; (version "0.0.0-20170410110728-ff4f55a20633") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/emicklei/go-restful") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1v5lj5142abz3gvbygp6xghpdx4ps2lwswl8559ivaidahwnc21c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/emicklei/go-restful")) -; (home-page "https://github.com/emicklei/go-restful") -; (synopsis "go-restful") -; (description -; "Package restful , a lean package for creating REST-style WebServices without magic. -;") -; (license license:expat))) -; -;(define-public go-github-com-ghodss-yaml-0.0.0-20150909031657-73d445a93680 -; (package -; (name "go-github-com-ghodss-yaml") -; (version "0.0.0-20150909031657-73d445a93680") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/ghodss/yaml") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0pg53ky4sy3sp9j4n7vgf1p3gw4nbckwqfldcmmi9rf13kjh0mr7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/ghodss/yaml")) -; (home-page "https://github.com/ghodss/yaml") -; (synopsis "YAML marshaling and unmarshaling support for Go") -; (description -; "Copyright 2013 The Go Authors. All rights reserved. -;Use of this source code is governed by a BSD-style -;license that can be found in the LICENSE file. -;") -; (license #f))) -; -;(define-public go-github-com-go-openapi-jsonreference-0.19.3 -; (package -; (name "go-github-com-go-openapi-jsonreference") -; (version "0.19.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/go-openapi/jsonreference") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ln21xai74fynwmi4ck5j0c70yszjy96wfagc705y8khjxsgncsw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/go-openapi/jsonreference")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) -; ("go-golang-org-x-net-0.0.0-20190827160401-ba9fcec4b297" -; ,go-golang-org-x-net-0.0.0-20190827160401-ba9fcec4b297) -; ("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0) -; ("go-github-com-go-openapi-jsonpointer-0.19.3" -; ,go-github-com-go-openapi-jsonpointer-0.19.3) -; ("go-github-com-puerkitobio-urlesc-0.0.0-20170810143723-de5bf2ad4578" -; ,go-github-com-puerkitobio-urlesc-0.0.0-20170810143723-de5bf2ad4578) -; ("go-github-com-puerkitobio-purell-1.1.1" -; ,go-github-com-puerkitobio-purell-1.1.1))) -; (home-page "https://github.com/go-openapi/jsonreference") -; (synopsis "gojsonreference") -; (description -; "@url{https://raw.githubusercontent.com/go-openapi/jsonreference/master/LICENSE,(img (@ (src http://img.shields.io/badge/license-Apache%20v2-orange.svg) (alt license)))} @url{http://godoc.org/github.com/go-openapi/jsonreference,(img (@ (src https://godoc.org/github.com/go-openapi/jsonreference?status.svg=) (alt GoDoc)))} -;An implementation of JSON Reference - Go language") -; (license license:asl2.0))) -; -;(define-public go-github-com-mailru-easyjson-0.0.0-20190626092158-b2ccc519800e -; (package -; (name "go-github-com-mailru-easyjson") -; (version "0.0.0-20190626092158-b2ccc519800e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mailru/easyjson") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0q85h383mhbkcjm2vqm72bi8n2252fv3c56q3lclzb8n2crnjcdk")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mailru/easyjson")) -; (home-page "https://github.com/mailru/easyjson") -; (synopsis "easyjson") -; (description -; "Package easyjson contains marshaler/unmarshaler interfaces and helper functions. -;") -; (license license:expat))) -; -;(define-public go-github-com-go-openapi-jsonpointer-0.19.3 -; (package -; (name "go-github-com-go-openapi-jsonpointer") -; (version "0.19.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/go-openapi/jsonpointer") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1m4bb7c5y8ss2s8wl50k7lsk84nl4lcldkbkphrfdl21y51gz4jr")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/go-openapi/jsonpointer")) -; (propagated-inputs -; `(("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0) -; ("go-github-com-mailru-easyjson-0.0.0-20190626092158-b2ccc519800e" -; ,go-github-com-mailru-easyjson-0.0.0-20190626092158-b2ccc519800e) -; ("go-github-com-go-openapi-swag-0.19.5" -; ,go-github-com-go-openapi-swag-0.19.5))) -; (home-page "https://github.com/go-openapi/jsonpointer") -; (synopsis "gojsonpointer") -; (description -; "@url{https://raw.githubusercontent.com/go-openapi/jsonpointer/master/LICENSE,(img (@ (src http://img.shields.io/badge/license-Apache%20v2-orange.svg) (alt license)))} @url{http://godoc.org/github.com/go-openapi/jsonpointer,(img (@ (src https://godoc.org/github.com/go-openapi/jsonpointer?status.svg=) (alt GoDoc)))} -;An implementation of JSON Pointer - Go language") -; (license license:asl2.0))) -; -;(define-public go-github-com-puerkitobio-purell-1.1.1 -; (package -; (name "go-github-com-puerkitobio-purell") -; (version "1.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/PuerkitoBio/purell") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0c525frsxmalrn55hzzsxy17ng8avkd40ga0wxfw9haxsdjgqdqy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/PuerkitoBio/purell")) -; (home-page "https://github.com/PuerkitoBio/purell") -; (synopsis "Purell") -; (description -; "Package purell offers URL normalization as described on the wikipedia page: -;@url{http://en.wikipedia.org/wiki/URL_normalization,http://en.wikipedia.org/wiki/URL_normalization} -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-puerkitobio-urlesc-0.0.0-20170810143723-de5bf2ad4578 -; (package -; (name "go-github-com-puerkitobio-urlesc") -; (version "0.0.0-20170810143723-de5bf2ad4578") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/PuerkitoBio/urlesc") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0n0srpqwbaan1wrhh2b7ysz543pjs1xw2rghvqyffg9l0g8kzgcw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/PuerkitoBio/urlesc")) -; (home-page "https://github.com/PuerkitoBio/urlesc") -; (synopsis "urlesc") -; (description -; "Package urlesc implements query escaping as per @url{https://rfc-editor.org/rfc/rfc3986.html,RFC 3986}. -;It contains some parts of the net/url package, modified so as to allow -;some reserved characters incorrectly escaped by net/url. -;See @url{https://github.com/golang/go/issues/5684,https://github.com/golang/go/issues/5684} -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-go-openapi-swag-0.19.2 -; (package -; (name "go-github-com-go-openapi-swag") -; (version "0.19.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/go-openapi/swag") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1mlxlajx2p9wjm72rmqjrx5g49q2sn04y45s3nrykkf6jqlq1v4z")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/go-openapi/swag")) -; (propagated-inputs -; `(("go-github-com-sourcegraph-go-diff-0.5.1" -; ,go-github-com-sourcegraph-go-diff-0.5.1) -; ("go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422" -; ,go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422) -; ("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) -; ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" -; ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) -; ("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0) -; ("go-github-com-mailru-easyjson-0.0.0-20190614124828-94de47d64c63" -; ,go-github-com-mailru-easyjson-0.0.0-20190614124828-94de47d64c63) -; ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://github.com/go-openapi/swag") -; (synopsis "Swag") -; (description -; "Package swag contains a bunch of helper functions for go-openapi and go-swagger projects. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-go-openapi-jsonpointer-0.19.2 -; (package -; (name "go-github-com-go-openapi-jsonpointer") -; (version "0.19.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/go-openapi/jsonpointer") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1s3cqf4svrbygvvpvi7hf122szsgihas52vqh0bba3avf4w03g9n")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/go-openapi/jsonpointer")) -; (propagated-inputs -; `(("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0) -; ("go-github-com-go-openapi-swag-0.19.2" -; ,go-github-com-go-openapi-swag-0.19.2))) -; (home-page "https://github.com/go-openapi/jsonpointer") -; (synopsis "gojsonpointer") -; (description -; "@url{https://raw.githubusercontent.com/go-openapi/jsonpointer/master/LICENSE,(img (@ (src http://img.shields.io/badge/license-Apache%20v2-orange.svg) (alt license)))} @url{http://godoc.org/github.com/go-openapi/jsonpointer,(img (@ (src https://godoc.org/github.com/go-openapi/jsonpointer?status.svg=) (alt GoDoc)))} -;An implementation of JSON Pointer - Go language") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20190613194153-d28f0bde5980") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "18xj31h70m7xxb7gc86n9i21w6d7djbjz67zfaljm4jqskz6hxkf")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-github-com-go-openapi-jsonreference-0.19.2 -; (package -; (name "go-github-com-go-openapi-jsonreference") -; (version "0.19.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/go-openapi/jsonreference") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0v933yvcwyzzlpdxwb9204ki7lls2rwfd96ww2i901ndvz37kdf8")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/go-openapi/jsonreference")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) -; ("go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980" -; ,go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980) -; ("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0) -; ("go-github-com-go-openapi-jsonpointer-0.19.2" -; ,go-github-com-go-openapi-jsonpointer-0.19.2) -; ("go-github-com-puerkitobio-urlesc-0.0.0-20170810143723-de5bf2ad4578" -; ,go-github-com-puerkitobio-urlesc-0.0.0-20170810143723-de5bf2ad4578) -; ("go-github-com-puerkitobio-purell-1.1.1" -; ,go-github-com-puerkitobio-purell-1.1.1))) -; (home-page "https://github.com/go-openapi/jsonreference") -; (synopsis "gojsonreference") -; (description -; "@url{https://raw.githubusercontent.com/go-openapi/jsonreference/master/LICENSE,(img (@ (src http://img.shields.io/badge/license-Apache%20v2-orange.svg) (alt license)))} @url{http://godoc.org/github.com/go-openapi/jsonreference,(img (@ (src https://godoc.org/github.com/go-openapi/jsonreference?status.svg=) (alt GoDoc)))} -;An implementation of JSON Reference - Go language") -; (license license:asl2.0))) -; -;(define-public go-github-com-kr-pty-1.1.5 -; (package -; (name "go-github-com-kr-pty") -; (version "1.1.5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kr/pty") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1bpq77b90z72cv9h66dvxsg2j197ylpgcps23xsjfbs752bykfw1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kr/pty")) -; (home-page "https://github.com/kr/pty") -; (synopsis "pty") -; (description -; "Package pty is a wrapper for github.com/creack/pty, which provides -;functions for working with Unix terminals. -;") -; (license license:expat))) -; -;(define-public go-github-com-stretchr-objx-0.2.0 -; (package -; (name "go-github-com-stretchr-objx") -; (version "0.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/objx") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0pcdvakxgddaiwcdj73ra4da05a3q4cgwbpm2w75ycq4kzv8ij8k")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/objx")) -; (propagated-inputs -; `(("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://github.com/stretchr/objx") -; (synopsis "Objx") -; (description -; "Objx - Go package for dealing with maps, slices, JSON and other data. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20190611184440-5c40567a22f8 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20190611184440-5c40567a22f8") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "17g8fb9vy2sqq8vgz8jdvf6c6d2290gm2qs0i4yzsd86mgn4dlrg")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" -; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) -; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" -; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20190827160401-ba9fcec4b297 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20190827160401-ba9fcec4b297") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1hbqvy6r0s5h0dpdqw8fynl3cq0acin3iyqki9xvl5r8h33yb9bx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190616124812-15dcb6c0061f -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190616124812-15dcb6c0061f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1qfkkysbyn44nyx57cq8mmw1cjgpxi9gi9xrf6kljmd9c1416zdd")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20190614205625-5aca471b1d59 -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20190614205625-5aca471b1d59") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1i4h3q83w4y9s065w0wnnnwlssy69jbrj08k47ppsa8dnv85kyrf")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" -; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-github-com-go-openapi-spec-0.19.3 -; (package -; (name "go-github-com-go-openapi-spec") -; (version "0.19.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/go-openapi/spec") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1dikq1p550vj5i9y918s075pgk0fxkixxk3fb70ri7wkm51s6nlj")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/go-openapi/spec")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) -; ("go-golang-org-x-tools-0.0.0-20190614205625-5aca471b1d59" -; ,go-golang-org-x-tools-0.0.0-20190614205625-5aca471b1d59) -; ("go-golang-org-x-sys-0.0.0-20190616124812-15dcb6c0061f" -; ,go-golang-org-x-sys-0.0.0-20190616124812-15dcb6c0061f) -; ("go-golang-org-x-net-0.0.0-20190827160401-ba9fcec4b297" -; ,go-golang-org-x-net-0.0.0-20190827160401-ba9fcec4b297) -; ("go-golang-org-x-crypto-0.0.0-20190611184440-5c40567a22f8" -; ,go-golang-org-x-crypto-0.0.0-20190611184440-5c40567a22f8) -; ("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0) -; ("go-github-com-stretchr-objx-0.2.0" -; ,go-github-com-stretchr-objx-0.2.0) -; ("go-github-com-kr-pty-1.1.5" ,go-github-com-kr-pty-1.1.5) -; ("go-github-com-go-openapi-swag-0.19.5" -; ,go-github-com-go-openapi-swag-0.19.5) -; ("go-github-com-go-openapi-jsonreference-0.19.2" -; ,go-github-com-go-openapi-jsonreference-0.19.2) -; ("go-github-com-go-openapi-jsonpointer-0.19.3" -; ,go-github-com-go-openapi-jsonpointer-0.19.3))) -; (home-page "https://github.com/go-openapi/spec") -; (synopsis "OAI object model") -; (description "The object model for OpenAPI specification documents.") -; (license license:asl2.0))) -; -;(define-public go-github-com-mailru-easyjson-0.0.0-20190614124828-94de47d64c63 -; (package -; (name "go-github-com-mailru-easyjson") -; (version "0.0.0-20190614124828-94de47d64c63") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mailru/easyjson") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1km0kkh7cf7dlz5pqi9yr1wamv0167y41cyv1dbrcxfdmwgpfd23")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mailru/easyjson")) -; (home-page "https://github.com/mailru/easyjson") -; (synopsis "easyjson") -; (description -; "Package easyjson contains marshaler/unmarshaler interfaces and helper functions. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422 -; (package -; (name "go-golang-org-x-lint") -; (version "0.0.0-20190409202823-959b441ac422") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/lint") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1mgcv5f00pkzsbwnq2y7vqvd1b4lr5a3s47cphh2qv4indfk7pck")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/lint")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" -; ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd))) -; (home-page "https://golang.org/x/lint") -; (synopsis "Installation") -; (description "Package lint contains a linter for Go source code. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-shurcool-go-0.0.0-20180423040247-9e1955d9fb6e -; (package -; (name "go-github-com-shurcool-go") -; (version "0.0.0-20180423040247-9e1955d9fb6e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/shurcooL/go") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1lad9bvs75jsn61cfza19739c2c057k0bqxg2b4xz3z3l4w1mkqj")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/shurcooL/go")) -; (home-page "https://github.com/shurcooL/go") -; (synopsis "go") -; (description "Common Go code.") -; (license license:expat))) -; -;(define-public go-github-com-shurcool-go-goon-0.0.0-20170922171312-37c2f522c041 -; (package -; (name "go-github-com-shurcool-go-goon") -; (version "0.0.0-20170922171312-37c2f522c041") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/shurcooL/go-goon") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "17ac6j6msdcxbmfhq6pxhw5z339b87bd6ciln9909drjv2szyxqv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/shurcooL/go-goon")) -; (home-page "https://github.com/shurcooL/go-goon") -; (synopsis "goon") -; (description -; "Package goon is a deep pretty printer with Go-like notation. It implements the goon specification. -;") -; (license license:expat))) -; -;(define-public go-sourcegraph-com-sqs-pbtypes-0.0.0-20180604144634-d3ebe8f20ae4 -; (package -; (name "go-sourcegraph-com-sqs-pbtypes") -; (version "0.0.0-20180604144634-d3ebe8f20ae4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/sqs/pbtypes") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0vcyqq4jc2jv1wh288qdxv51qxcfj07lvnlf37pjicsd2yrb7yrr")))) -; (build-system go-build-system) -; (arguments '(#:import-path "sourcegraph.com/sqs/pbtypes")) -; (home-page "https://sourcegraph.com/sqs/pbtypes") -; (synopsis "pbtypes") -; (description -; "Package pbtypes contains protocol buffer types (Timestamp, Void, -;etc.) and related helpers. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-sourcegraph-go-diff-0.5.1 -; (package -; (name "go-github-com-sourcegraph-go-diff") -; (version "0.5.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/sourcegraph/go-diff") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0acabccjmxgdvhyd7fr0krlf7ymc7mngdq292n03hfys9nrnb0b2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/sourcegraph/go-diff")) -; (propagated-inputs -; `(("go-sourcegraph-com-sqs-pbtypes-0.0.0-20180604144634-d3ebe8f20ae4" -; ,go-sourcegraph-com-sqs-pbtypes-0.0.0-20180604144634-d3ebe8f20ae4) -; ("go-github-com-shurcool-go-goon-0.0.0-20170922171312-37c2f522c041" -; ,go-github-com-shurcool-go-goon-0.0.0-20170922171312-37c2f522c041) -; ("go-github-com-shurcool-go-0.0.0-20180423040247-9e1955d9fb6e" -; ,go-github-com-shurcool-go-0.0.0-20180423040247-9e1955d9fb6e) -; ("go-github-com-gogo-protobuf-1.1.1" -; ,go-github-com-gogo-protobuf-1.1.1))) -; (home-page "https://github.com/sourcegraph/go-diff") -; (synopsis "go-diff") -; (description "Diff parser and printer for Go.") -; (license license:expat))) -; -;(define-public go-github-com-go-openapi-swag-0.19.5 -; (package -; (name "go-github-com-go-openapi-swag") -; (version "0.19.5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/go-openapi/swag") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1z34vqc5yz6rzvarrvlhkimxx33p74iaxb28l1mv716njvlsmjhg")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/go-openapi/swag")) -; (propagated-inputs -; `(("go-github-com-sourcegraph-go-diff-0.5.1" -; ,go-github-com-sourcegraph-go-diff-0.5.1) -; ("go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422" -; ,go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422) -; ("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) -; ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" -; ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) -; ("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0) -; ("go-github-com-mailru-easyjson-0.0.0-20190614124828-94de47d64c63" -; ,go-github-com-mailru-easyjson-0.0.0-20190614124828-94de47d64c63) -; ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://github.com/go-openapi/swag") -; (synopsis "Swag") -; (description -; "Package swag contains a bunch of helper functions for go-openapi and go-swagger projects. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-google-uuid-1.1.1 -; (package -; (name "go-github-com-google-uuid") -; (version "1.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/uuid") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0hfxcf9frkb57k6q0rdkrmnfs78ms21r1qfk9fhlqga2yh5xg8zb")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/uuid")) -; (home-page "https://github.com/google/uuid") -; (synopsis "uuid") -; (description "Package uuid generates and inspects UUIDs. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-docopt-docopt-go-0.0.0-20180111231733-ee0de3bc6815 -; (package -; (name "go-github-com-docopt-docopt-go") -; (version "0.0.0-20180111231733-ee0de3bc6815") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/docopt/docopt.go") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0hlra7rmi5pmd7d93rv56ahiy4qkgmq8a6mz0jpadvbi5qh8lq6j")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/docopt/docopt-go")) -; (home-page "https://github.com/docopt/docopt-go") -; (synopsis "docopt-go") -; (description -; "Package docopt parses command-line arguments based on a help message. -;") -; (license license:expat))) -; -;(define-public go-github-com-googleapis-gnostic-0.4.1 -; (package -; (name "go-github-com-googleapis-gnostic") -; (version "0.4.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/gnostic") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1fw28m3ach5pkcdh4ijd6s7w09j0n88p6mah3hp0k8918jsc6mj9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/googleapis/gnostic")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) -; ("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" -; ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) -; ("go-github-com-kr-pretty-0.2.0" ,go-github-com-kr-pretty-0.2.0) -; ("go-github-com-golang-protobuf-1.3.3" -; ,go-github-com-golang-protobuf-1.3.3) -; ("go-github-com-docopt-docopt-go-0.0.0-20180111231733-ee0de3bc6815" -; ,go-github-com-docopt-docopt-go-0.0.0-20180111231733-ee0de3bc6815))) -; (home-page "https://github.com/googleapis/gnostic") -; (synopsis "â¨\x81 gnostic") -; (description -; "Gnostic is a tool for building better REST APIs through knowledge. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-munnerz-goautoneg-0.0.0-20120707110453-a547fc61f48d -; (package -; (name "go-github-com-munnerz-goautoneg") -; (version "0.0.0-20120707110453-a547fc61f48d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/munnerz/goautoneg") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "19khhn5xhqv1yp7d6k987gh5w5rhrjnp4p0c6fyrd8z6lzz5h9qi")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/munnerz/goautoneg")) -; (home-page "https://github.com/munnerz/goautoneg") -; (synopsis #f) -; (description #f) -; (license license:bsd-3))) -; -;(define-public go-github-com-onsi-ginkgo-0.0.0-20170829012221-11459a886d9c -; (package -; (name "go-github-com-onsi-ginkgo") -; (version "0.0.0-20170829012221-11459a886d9c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/onsi/ginkgo") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1nswc1fnrrs792qbix05h91bilj8rr3wxmxgwi97p2gjk0r292zh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/onsi/ginkgo")) -; (home-page "https://github.com/onsi/ginkgo") -; (synopsis "Ginkgo 2.0 Release Candidate is available!") -; (description "Ginkgo is a BDD-style testing framework for Golang -;") -; (license license:expat))) -; -;(define-public go-github-com-onsi-gomega-0.0.0-20170829124025-dcabb60a477c -; (package -; (name "go-github-com-onsi-gomega") -; (version "0.0.0-20170829124025-dcabb60a477c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/onsi/gomega") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1775lv5jbsgv3ghq5v2827slqlhqdadrzc1nkpq4y0hdv2qzrgkm")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/onsi/gomega")) -; (home-page "https://github.com/onsi/gomega") -; (synopsis ": a BDD Testing Framework for Golang") -; (description -; "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library. -;") -; (license license:expat))) -; -;(define-public go-github-com-spf13-pflag-0.0.0-20170130214245-9ff6c6923cff -; (package -; (name "go-github-com-spf13-pflag") -; (version "0.0.0-20170130214245-9ff6c6923cff") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/spf13/pflag") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0mfrxzyl8x7araa126lh8l3sihbbgfbzgkrg3v3cx7y4n3wrsqvn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/spf13/pflag")) -; (home-page "https://github.com/spf13/pflag") -; (synopsis "Description") -; (description -; "Package pflag is a drop-in replacement for Go's flag package, implementing -;POSIX/GNU-style --flags. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20200324143707-d3edc9973b7e -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20200324143707-d3edc9973b7e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "12zbjwcsh9b0lwycqlkrnbyg5a6a9dzgj8hhgq399bdda5bd97y7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" -; ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-k8s-io-gengo-0.0.0-20200413195148-3a45101e95ac -; (package -; (name "go-k8s-io-gengo") -; (version "0.0.0-20200413195148-3a45101e95ac") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes/gengo") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0x46jq6rv8z0y96231rfgzvfscgy5hp5aacid3r93zy0rq9r37g6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "k8s.io/gengo")) -; (home-page "https://k8s.io/gengo") -; (synopsis "gengo") -; (description -; "This package provides a package for generating things based on go files. This mechanism was first used -;in Kubernetes and is split out here for ease of reuse and maintainability.") -; (license license:asl2.0))) -; -;(define-public go-sigs-k8s-io-structured-merge-diff-v4-4.0.2 -; (package -; (name "go-sigs-k8s-io-structured-merge-diff-v4") -; (version "4.0.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes-sigs/structured-merge-diff") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1z60sw6nrlzyddyx5pvh6afwf8jvmn8c2zw15hklq17iyvj3lj7a")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path -; "sigs.k8s.io/structured-merge-diff/v4" -; #:unpack-path -; "sigs.k8s.io/structured-merge-diff/v4")) -; (propagated-inputs -; `(("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0) -; ("go-github-com-modern-go-reflect2-1.0.1" -; ,go-github-com-modern-go-reflect2-1.0.1) -; ("go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd" -; ,go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd) -; ("go-github-com-json-iterator-go-1.1.6" -; ,go-github-com-json-iterator-go-1.1.6) -; ("go-github-com-google-gofuzz-1.0.0" -; ,go-github-com-google-gofuzz-1.0.0) -; ("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1))) -; (home-page "https://sigs.k8s.io/structured-merge-diff/v4") -; (synopsis "Structured Merge and Diff") -; (description -; "This repo contains code which implements the Kubernetes \"apply\" operation.") -; (license license:asl2.0))) -; -;(define-public go-sigs-k8s-io-yaml-1.1.0 -; (package -; (name "go-sigs-k8s-io-yaml") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes-sigs/yaml") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1p7hvjdr5jsyk7nys1g1pmgnf3ys6n320i6hds85afppk81k01kb")))) -; (build-system go-build-system) -; (arguments '(#:import-path "sigs.k8s.io/yaml")) -; (home-page "https://sigs.k8s.io/yaml") -; (synopsis "YAML marshaling and unmarshaling support for Go") -; (description -; "kubernetes-sigs/yaml is a permanent fork of @url{https://github.com/ghodss/yaml,ghodss/yaml}.") -; (license #f))) -; -;(define-public go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd -; (package -; (name "go-k8s-io-kube-openapi") -; (version "0.0.0-20201113171705-d219536bb9fd") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes/kube-openapi") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "11d420a3rxznh3f6x5a6xp22zjwv6jfq4w1gb6srqb4vn9rhgrka")))) -; (build-system go-build-system) -; (arguments '(#:import-path "k8s.io/kube-openapi")) -; (propagated-inputs -; `(("go-sigs-k8s-io-yaml-1.1.0" ,go-sigs-k8s-io-yaml-1.1.0) -; ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.2" -; ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.2) -; ("go-k8s-io-klog-v2-2.0.0" ,go-k8s-io-klog-v2-2.0.0) -; ("go-k8s-io-gengo-0.0.0-20200413195148-3a45101e95ac" -; ,go-k8s-io-gengo-0.0.0-20200413195148-3a45101e95ac) -; ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) -; ("go-golang-org-x-net-0.0.0-20200324143707-d3edc9973b7e" -; ,go-golang-org-x-net-0.0.0-20200324143707-d3edc9973b7e) -; ("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0) -; ("go-github-com-spf13-pflag-0.0.0-20170130214245-9ff6c6923cff" -; ,go-github-com-spf13-pflag-0.0.0-20170130214245-9ff6c6923cff) -; ("go-github-com-onsi-gomega-0.0.0-20170829124025-dcabb60a477c" -; ,go-github-com-onsi-gomega-0.0.0-20170829124025-dcabb60a477c) -; ("go-github-com-onsi-ginkgo-0.0.0-20170829012221-11459a886d9c" -; ,go-github-com-onsi-ginkgo-0.0.0-20170829012221-11459a886d9c) -; ("go-github-com-munnerz-goautoneg-0.0.0-20120707110453-a547fc61f48d" -; ,go-github-com-munnerz-goautoneg-0.0.0-20120707110453-a547fc61f48d) -; ("go-github-com-mitchellh-mapstructure-1.1.2" -; ,go-github-com-mitchellh-mapstructure-1.1.2) -; ("go-github-com-json-iterator-go-1.1.6" -; ,go-github-com-json-iterator-go-1.1.6) -; ("go-github-com-googleapis-gnostic-0.4.1" -; ,go-github-com-googleapis-gnostic-0.4.1) -; ("go-github-com-google-uuid-1.1.1" ,go-github-com-google-uuid-1.1.1) -; ("go-github-com-google-gofuzz-1.0.0" -; ,go-github-com-google-gofuzz-1.0.0) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.3.3" -; ,go-github-com-golang-protobuf-1.3.3) -; ("go-github-com-go-openapi-swag-0.19.5" -; ,go-github-com-go-openapi-swag-0.19.5) -; ("go-github-com-go-openapi-spec-0.19.3" -; ,go-github-com-go-openapi-spec-0.19.3) -; ("go-github-com-go-openapi-jsonreference-0.19.3" -; ,go-github-com-go-openapi-jsonreference-0.19.3) -; ("go-github-com-go-openapi-jsonpointer-0.19.3" -; ,go-github-com-go-openapi-jsonpointer-0.19.3) -; ("go-github-com-ghodss-yaml-0.0.0-20150909031657-73d445a93680" -; ,go-github-com-ghodss-yaml-0.0.0-20150909031657-73d445a93680) -; ("go-github-com-emicklei-go-restful-0.0.0-20170410110728-ff4f55a20633" -; ,go-github-com-emicklei-go-restful-0.0.0-20170410110728-ff4f55a20633) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1) -; ("go-github-com-asaskevich-govalidator-0.0.0-20190424111038-f61b66f89f4a" -; ,go-github-com-asaskevich-govalidator-0.0.0-20190424111038-f61b66f89f4a) -; ("go-github-com-nytimes-gziphandler-0.0.0-20170623195520-56545f4a5d46" -; ,go-github-com-nytimes-gziphandler-0.0.0-20170623195520-56545f4a5d46))) -; (home-page "https://k8s.io/kube-openapi") -; (synopsis "Kube OpenAPI") -; (description -; "This repo is the home for Kubernetes OpenAPI discovery spec generation. The goal -;is to support a subset of OpenAPI features to satisfy kubernetes use-cases but -;implement that subset with little to no assumption about the structure of the -;code or routes. Thus, there should be no kubernetes specific code in this repo.") -; (license license:asl2.0))) -; -;(define-public go-github-com-json-iterator-go-1.1.6 -; (package -; (name "go-github-com-json-iterator-go") -; (version "1.1.6") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/json-iterator/go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "08caswxvdn7nvaqyj5kyny6ghpygandlbw9vxdj7l5vkp7q0s43r")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/json-iterator/go")) -; (home-page "https://github.com/json-iterator/go") -; (synopsis "Benchmark") -; (description -; "Package jsoniter implements encoding and decoding of JSON as defined in -;@url{https://rfc-editor.org/rfc/rfc4627.html,RFC 4627} and provides interfaces with identical syntax of standard lib encoding/json. -;Converting from encoding/json to jsoniter is no more than replacing the package with jsoniter -;and variable type declarations (if any). -;jsoniter interfaces gives 100% compatibility with code using standard lib. -;") -; (license license:expat))) -; -;(define-public go-github-com-modern-go-reflect2-1.0.1 -; (package -; (name "go-github-com-modern-go-reflect2") -; (version "1.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/modern-go/reflect2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "06a3sablw53n1dqqbr2f53jyksbxdmmk8axaas4yvnhyfi55k4lf")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/modern-go/reflect2")) -; (home-page "https://github.com/modern-go/reflect2") -; (synopsis "reflect2") -; (description "reflect api that avoids runtime reflect.Value cost") -; (license license:asl2.0))) -; -;(define-public go-sigs-k8s-io-structured-merge-diff-v4-4.0.3 -; (package -; (name "go-sigs-k8s-io-structured-merge-diff-v4") -; (version "4.0.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes-sigs/structured-merge-diff") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1jv60bkk0z437bsz5ldjyc006k20njmpl0xfl8p3g1q0bx0fkypa")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path -; "sigs.k8s.io/structured-merge-diff/v4" -; #:unpack-path -; "sigs.k8s.io/structured-merge-diff/v4")) -; (propagated-inputs -; `(("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0) -; ("go-github-com-modern-go-reflect2-1.0.1" -; ,go-github-com-modern-go-reflect2-1.0.1) -; ("go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd" -; ,go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd) -; ("go-github-com-json-iterator-go-1.1.6" -; ,go-github-com-json-iterator-go-1.1.6) -; ("go-github-com-google-gofuzz-1.0.0" -; ,go-github-com-google-gofuzz-1.0.0) -; ("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1))) -; (home-page "https://sigs.k8s.io/structured-merge-diff/v4") -; (synopsis "Structured Merge and Diff") -; (description -; "This repo contains code which implements the Kubernetes \"apply\" operation.") -; (license license:asl2.0))) -; -;(define-public go-gopkg-in-yaml-v2-2.2.8 -; (package -; (name "go-gopkg-in-yaml-v2") -; (version "2.2.8") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/yaml.v2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1inf7svydzscwv9fcjd2rm61a4xjk6jkswknybmns2n58shimapw")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" -; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) -; (home-page "https://gopkg.in/yaml.v2") -; (synopsis "YAML support for the Go language") -; (description "Package yaml implements YAML support for the Go language. -;") -; (license license:asl2.0))) -; -;(define-public go-sigs-k8s-io-yaml-1.2.0 -; (package -; (name "go-sigs-k8s-io-yaml") -; (version "1.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes-sigs/yaml") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "059a1chkd6afyvqszrx7h93k6cgik3ia92x29f5whpwi66461pzq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "sigs.k8s.io/yaml")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://sigs.k8s.io/yaml") -; (synopsis "YAML marshaling and unmarshaling support for Go") -; (description -; "kubernetes-sigs/yaml is a permanent fork of @url{https://github.com/ghodss/yaml,ghodss/yaml}.") -; (license #f))) -; -;(define-public go-k8s-io-apimachinery-0.20.6 -; (package -; (name "go-k8s-io-apimachinery") -; (version "0.20.6") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes/apimachinery") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "16952v7zjk3pdyw5r3wy28qkcfx3risid0847pwdw8gmalwxr237")))) -; (build-system go-build-system) -; (arguments '(#:import-path "k8s.io/apimachinery")) -; (propagated-inputs -; `(("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) -; ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.3" -; ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.3) -; ("go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd" -; ,go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd) -; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) -; ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) -; ("go-gopkg-in-inf-v0-0.9.1" ,go-gopkg-in-inf-v0-0.9.1) -; ("go-google-golang-org-protobuf-1.25.0" -; ,go-google-golang-org-protobuf-1.25.0) -; ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) -; ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" -; ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) -; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" -; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-onsi-gomega-1.7.0" ,go-github-com-onsi-gomega-1.7.0) -; ("go-github-com-onsi-ginkgo-1.11.0" ,go-github-com-onsi-ginkgo-1.11.0) -; ("go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f" -; ,go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f) -; ("go-github-com-modern-go-reflect2-1.0.1" -; ,go-github-com-modern-go-reflect2-1.0.1) -; ("go-github-com-json-iterator-go-1.1.10" -; ,go-github-com-json-iterator-go-1.1.10) -; ("go-github-com-hashicorp-golang-lru-0.5.1" -; ,go-github-com-hashicorp-golang-lru-0.5.1) -; ("go-github-com-googleapis-gnostic-0.4.1" -; ,go-github-com-googleapis-gnostic-0.4.1) -; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) -; ("go-github-com-google-gofuzz-1.1.0" -; ,go-github-com-google-gofuzz-1.1.0) -; ("go-github-com-google-go-cmp-0.5.2" -; ,go-github-com-google-go-cmp-0.5.2) -; ("go-github-com-golang-protobuf-1.4.3" -; ,go-github-com-golang-protobuf-1.4.3) -; ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" -; ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) -; ("go-github-com-gogo-protobuf-1.3.2" -; ,go-github-com-gogo-protobuf-1.3.2) -; ("go-github-com-fsnotify-fsnotify-1.4.9" -; ,go-github-com-fsnotify-fsnotify-1.4.9) -; ("go-github-com-evanphx-json-patch-4.9.0+incompatible" -; ,go-github-com-evanphx-json-patch-4.9.0+incompatible) -; ("go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153" -; ,go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153) -; ("go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96" -; ,go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://k8s.io/apimachinery") -; (synopsis "apimachinery") -; (description -; "Scheme, typing, encoding, decoding, and conversion packages for Kubernetes and Kubernetes-like API objects.") -; (license license:asl2.0))) -; -;(define-public go-k8s-io-client-go-0.20.6 -; (package -; (name "go-k8s-io-client-go") -; (version "0.20.6") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes/client-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1fpz56pfadbfp8mlzmzicfmlgk5zqbk2rdwnr8c8h6ypjd5xjcvz")))) -; (build-system go-build-system) -; (arguments '(#:import-path "k8s.io/client-go")) -; (propagated-inputs -; `(("go-k8s-io-apimachinery-0.20.6" ,go-k8s-io-apimachinery-0.20.6) -; ("go-k8s-io-api-0.20.6" ,go-k8s-io-api-0.20.6) -; ("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) -; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" -; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) -; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) -; ("go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e" -; ,go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e) -; ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" -; ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) -; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" -; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) -; ("go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0" -; ,go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) -; ("go-github-com-peterbourgon-diskv-2.0.1+incompatible" -; ,go-github-com-peterbourgon-diskv-2.0.1+incompatible) -; ("go-github-com-imdario-mergo-0.3.5" -; ,go-github-com-imdario-mergo-0.3.5) -; ("go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7" -; ,go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7) -; ("go-github-com-googleapis-gnostic-0.4.1" -; ,go-github-com-googleapis-gnostic-0.4.1) -; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) -; ("go-github-com-google-gofuzz-1.1.0" -; ,go-github-com-google-gofuzz-1.1.0) -; ("go-github-com-google-go-cmp-0.5.2" -; ,go-github-com-google-go-cmp-0.5.2) -; ("go-github-com-golang-protobuf-1.4.3" -; ,go-github-com-golang-protobuf-1.4.3) -; ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" -; ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) -; ("go-github-com-gogo-protobuf-1.3.2" -; ,go-github-com-gogo-protobuf-1.3.2) -; ("go-github-com-evanphx-json-patch-4.9.0+incompatible" -; ,go-github-com-evanphx-json-patch-4.9.0+incompatible) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1) -; ("go-github-com-azure-go-autorest-autorest-adal-0.9.5" -; ,go-github-com-azure-go-autorest-autorest-adal-0.9.5) -; ("go-github-com-azure-go-autorest-autorest-0.11.1" -; ,go-github-com-azure-go-autorest-autorest-0.11.1) -; ("go-cloud-google-com-go-0.54.0" ,go-cloud-google-com-go-0.54.0))) -; (home-page "https://k8s.io/client-go") -; (synopsis "client-go") -; (description -; "Go clients for talking to a @url{http://kubernetes.io/,kubernetes} cluster.") -; (license license:asl2.0))) -; -;(define-public go-k8s-io-component-base-0.20.6 -; (package -; (name "go-k8s-io-component-base") -; (version "0.20.6") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes/component-base") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1987vm5lhbnn4ynrpzdgz3873lp78664cpdpkbv9jwnhzqdhpyhf")))) -; (build-system go-build-system) -; (arguments '(#:import-path "k8s.io/component-base")) -; (propagated-inputs -; `(("go-k8s-io-client-go-0.20.6" ,go-k8s-io-client-go-0.20.6) -; ("go-k8s-io-apimachinery-0.20.6" ,go-k8s-io-apimachinery-0.20.6) -; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" -; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) -; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) -; ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) -; ("go-go-uber-org-multierr-1.1.0" ,go-go-uber-org-multierr-1.1.0) -; ("go-go-uber-org-atomic-1.4.0" ,go-go-uber-org-atomic-1.4.0) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) -; ("go-github-com-sirupsen-logrus-1.6.0" -; ,go-github-com-sirupsen-logrus-1.6.0) -; ("go-github-com-prometheus-procfs-0.2.0" -; ,go-github-com-prometheus-procfs-0.2.0) -; ("go-github-com-prometheus-common-0.10.0" -; ,go-github-com-prometheus-common-0.10.0) -; ("go-github-com-prometheus-client-model-0.2.0" -; ,go-github-com-prometheus-client-model-0.2.0) -; ("go-github-com-prometheus-client-golang-1.7.1" -; ,go-github-com-prometheus-client-golang-1.7.1) -; ("go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd" -; ,go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd) -; ("go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369" -; ,go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369) -; ("go-github-com-google-go-cmp-0.5.2" -; ,go-github-com-google-go-cmp-0.5.2) -; ("go-github-com-go-logr-logr-0.2.0" ,go-github-com-go-logr-logr-0.2.0) -; ("go-github-com-blang-semver-3.5.1+incompatible" -; ,go-github-com-blang-semver-3.5.1+incompatible))) -; (home-page "https://k8s.io/component-base") -; (synopsis "component-base") -; (description -; "Implement KEP 32: @url{https://github.com/kubernetes/enhancements/blob/master/keps/sig-cluster-lifecycle/wgs/783-component-base/README.md,https://github.com/kubernetes/enhancements/blob/master/keps/sig-cluster-lifecycle/wgs/783-component-base/README.md}") -; (license license:asl2.0))) -; -;(define-public go-github-com-kr-pretty-0.2.0 -; (package -; (name "go-github-com-kr-pretty") -; (version "0.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kr/pretty") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ywbfzz1h3a3qd8rpkiqwi1dm4w8ls9ijb4x1b7567grns9f0vnp")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kr/pretty")) -; (propagated-inputs -; `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) -; (home-page "https://github.com/kr/pretty") -; (synopsis #f) -; (description -; "Package pretty provides pretty-printing for Go values. This is -;useful during debugging, to avoid wrapping long output lines in -;the terminal. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20201112073958-5cba982894dd") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "08dvnwmi2p4slmhyx7gzkmzfp51mmnkzi0ngwhvv0vip1s3s3zjc")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-text-0.3.4 -; (package -; (name "go-golang-org-x-text") -; (version "0.3.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/text") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "11jdvix83xcl5xnb039y4zrz4x5skzsps0w1jryp6wrar53cydvz")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/text")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" -; ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) -; (home-page "https://golang.org/x/text") -; (synopsis "Go Text") -; (description -; "text is a repository of text-related packages related to internationalization -;(i18n) and localization (l10n), such as character encodings, text -;transformations, and locale-specific text handling. -;") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-1.24.0 -; (package -; (name "go-google-golang-org-protobuf") -; (version "1.24.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0x3qyn3rizbs671gs7f8v50rmiwf9h7kbaradpivw9718mhbg1gn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" -; ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.4.1" -; ,go-github-com-golang-protobuf-1.4.1))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20201110150050-8816d57aaa9a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0cbfam4w9jr5gib43v3s2r5j8mhd3hl6ks3azwsahaff6idggg20")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.24.0" -; ,go-google-golang-org-protobuf-1.24.0) -; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) -; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" -; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-github-com-golang-protobuf-1.4.1" -; ,go-github-com-golang-protobuf-1.4.1))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-k8s-io-cri-api-0.20.6 -; (package -; (name "go-k8s-io-cri-api") -; (version "0.20.6") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes/cri-api") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0yp4rfxjn4h78z4sbmwhcqm8mva9bsvsc5jky2qa76npp0hycjhx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "k8s.io/cri-api")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" -; ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) -; ("go-google-golang-org-protobuf-1.25.0" -; ,go-google-golang-org-protobuf-1.25.0) -; ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) -; ("go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a" -; ,go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a) -; ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) -; ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" -; ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) -; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" -; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-kr-pretty-0.2.0" ,go-github-com-kr-pretty-0.2.0) -; ("go-github-com-google-go-cmp-0.5.2" -; ,go-github-com-google-go-cmp-0.5.2) -; ("go-github-com-golang-protobuf-1.4.3" -; ,go-github-com-golang-protobuf-1.4.3) -; ("go-github-com-gogo-protobuf-1.3.2" -; ,go-github-com-gogo-protobuf-1.3.2) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://k8s.io/cri-api") -; (synopsis "Purpose") -; (description -; "This repository contains the definitions for the Container Runtime Interface (CRI). -;CRI is a plugin interface which enables kubelet to use a wide variety of container runtimes, -;without the need to recompile. CRI consists of a protocol buffers and gRPC API.") -; (license license:asl2.0))) -; -;(define-public go-github-com-go-logr-logr-0.2.0 -; (package -; (name "go-github-com-go-logr-logr") -; (version "0.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/go-logr/logr") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "06xh4pw53z38vyi300mgpnr4pkqgknw9xakdyk1xzqfg9zd60d7d")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/go-logr/logr")) -; (home-page "https://github.com/go-logr/logr") -; (synopsis "A minimal logging API for Go") -; (description -; "Package logr defines a general-purpose logging API and abstract interfaces -;to back that API. Packages in the Go ecosystem can depend on this package, -;while callers can implement logging with whatever backend is appropriate. -;") -; (license license:asl2.0))) -; -;(define-public go-k8s-io-klog-v2-2.4.0 -; (package -; (name "go-k8s-io-klog-v2") -; (version "2.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes/klog") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1zjih6bgdalga5hqaa2fwwidslq6lv358gkj88a8wwj7w253wc8c")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "k8s.io/klog/v2" #:unpack-path "k8s.io/klog/v2")) -; (propagated-inputs -; `(("go-github-com-go-logr-logr-0.2.0" -; ,go-github-com-go-logr-logr-0.2.0))) -; (home-page "https://k8s.io/klog/v2") -; (synopsis "klog") -; (description -; "Package klog implements logging analogous to the Google-internal C++ INFO/ERROR/V setup. -;It provides functions Info, Warning, Error, Fatal, plus formatting variants such as -;Infof. It also provides V-style logging controlled by the -v and -vmodule=file=2 flags. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-spf13-afero-1.2.2 -; (package -; (name "go-github-com-spf13-afero") -; (version "1.2.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/spf13/afero") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0j9r65qgd58324m85lkl49vk9dgwd62g7dwvkfcm3k6i9dc555a9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/spf13/afero")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0))) -; (home-page "https://github.com/spf13/afero") -; (synopsis "Overview") -; (description -; "This package provides a FileSystem Abstraction System for Go") -; (license license:asl2.0))) -; -;(define-public go-github-com-go-logr-logr-0.1.0 -; (package -; (name "go-github-com-go-logr-logr") -; (version "0.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/go-logr/logr") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0fhijjhxz4n2j5i24ckzv8r9kri3v44jdyklgbqjfq0xm7izqg14")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/go-logr/logr")) -; (home-page "https://github.com/go-logr/logr") -; (synopsis "A minimal logging API for Go") -; (description -; "Package logr defines a general-purpose logging API and abstract interfaces -;to back that API. Packages in the Go ecosystem can depend on this package, -;while callers can implement logging with whatever backend is appropriate. -;") -; (license license:asl2.0))) -; -;(define-public go-k8s-io-klog-v2-2.0.0 -; (package -; (name "go-k8s-io-klog-v2") -; (version "2.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes/klog") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "09vqm0n5l64lzpk3xqm4njbncnphx52qk21gwx8nsgyivlxx1n8g")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "k8s.io/klog/v2" #:unpack-path "k8s.io/klog/v2")) -; (propagated-inputs -; `(("go-github-com-go-logr-logr-0.1.0" -; ,go-github-com-go-logr-logr-0.1.0))) -; (home-page "https://k8s.io/klog/v2") -; (synopsis "klog") -; (description -; "Package klog implements logging analogous to the Google-internal C++ INFO/ERROR/V setup. -;It provides functions Info, Warning, Error, Fatal, plus formatting variants such as -;Infof. It also provides V-style logging controlled by the -v and -vmodule=file=2 flags. -;") -; (license license:asl2.0))) -; -;(define-public go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920 -; (package -; (name "go-k8s-io-utils") -; (version "0.0.0-20201110183641-67b214c5f920") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes/utils") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "19rc9v5xin0a8qbf25my3rd0jd74cin2mk2a38j2dwplqy3s9crl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "k8s.io/utils")) -; (propagated-inputs -; `(("go-k8s-io-klog-v2-2.0.0" ,go-k8s-io-klog-v2-2.0.0) -; ("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0) -; ("go-github-com-spf13-afero-1.2.2" ,go-github-com-spf13-afero-1.2.2) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://k8s.io/utils") -; (synopsis "Utils") -; (description -; "This package provides a set of Go libraries that provide low-level, kubernetes-independent packages -;supplementing the @url{https://golang.org/pkg/#stdlib,Go standard libs}.") -; (license license:asl2.0))) -; -;(define-public go-github-com-gogo-googleapis-1.3.2 -; (package -; (name "go-github-com-gogo-googleapis") -; (version "1.3.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/gogo/googleapis") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "10670qprmk151n6pa1yclr89kgrvmalzvkq221xqbid83iv59s2h")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/gogo/googleapis")) -; (propagated-inputs -; `(("go-github-com-gogo-protobuf-1.3.1" -; ,go-github-com-gogo-protobuf-1.3.1))) -; (home-page "https://github.com/gogo/googleapis") -; (synopsis "Google APIs generated by gogoprotobuf") -; (description -; "The @url{https://github.com/gogo/grpc-example,grpc-example} includes an example usage of this repository.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-containerd-1.5.7 -; (package -; (name "go-github-com-containerd-containerd") -; (version "1.5.7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/containerd") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "14qb7a9ckfvxl30axqsha0qs8lfkpkxnhj61cdqxk2b9mz160a67")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/containerd")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) -; ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) -; ("go-github-com-golang-protobuf-1.3.5" -; ,go-github-com-golang-protobuf-1.3.5) -; ("go-github-com-gogo-googleapis-1.3.2" -; ,go-github-com-gogo-googleapis-1.3.2) -; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" -; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) -; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) -; ("go-k8s-io-cri-api-0.20.6" ,go-k8s-io-cri-api-0.20.6) -; ("go-k8s-io-component-base-0.20.6" ,go-k8s-io-component-base-0.20.6) -; ("go-k8s-io-client-go-0.20.6" ,go-k8s-io-client-go-0.20.6) -; ("go-k8s-io-apiserver-0.20.6" ,go-k8s-io-apiserver-0.20.6) -; ("go-k8s-io-apimachinery-0.20.6" ,go-k8s-io-apimachinery-0.20.6) -; ("go-k8s-io-api-0.20.6" ,go-k8s-io-api-0.20.6) -; ("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) -; ("go-golang-org-x-sys-0.0.0-20210426230700-d19ff857e887" -; ,go-golang-org-x-sys-0.0.0-20210426230700-d19ff857e887) -; ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" -; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) -; ("go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110" -; ,go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110) -; ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) -; ("go-github-com-tchap-go-patricia-2.2.6+incompatible" -; ,go-github-com-tchap-go-patricia-2.2.6+incompatible) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-sirupsen-logrus-1.8.1" -; ,go-github-com-sirupsen-logrus-1.8.1) -; ("go-github-com-satori-go-uuid-1.2.0" -; ,go-github-com-satori-go-uuid-1.2.0) -; ("go-github-com-prometheus-procfs-0.6.0" -; ,go-github-com-prometheus-procfs-0.6.0) -; ("go-github-com-prometheus-client-golang-1.7.1" -; ,go-github-com-prometheus-client-golang-1.7.1) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-pelletier-go-toml-1.8.1" -; ,go-github-com-pelletier-go-toml-1.8.1) -; ("go-github-com-opencontainers-selinux-1.8.2" -; ,go-github-com-opencontainers-selinux-1.8.2) -; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417" -; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417) -; ("go-github-com-opencontainers-runc-1.0.2" -; ,go-github-com-opencontainers-runc-1.0.2) -; ("go-github-com-opencontainers-image-spec-1.0.1" -; ,go-github-com-opencontainers-image-spec-1.0.1) -; ("go-github-com-opencontainers-go-digest-1.0.0" -; ,go-github-com-opencontainers-go-digest-1.0.0) -; ("go-github-com-moby-sys-symlink-0.1.0" -; ,go-github-com-moby-sys-symlink-0.1.0) -; ("go-github-com-moby-sys-mountinfo-0.4.1" -; ,go-github-com-moby-sys-mountinfo-0.4.1) -; ("go-github-com-moby-locker-1.0.1" ,go-github-com-moby-locker-1.0.1) -; ("go-github-com-klauspost-compress-1.11.13" -; ,go-github-com-klauspost-compress-1.11.13) -; ("go-github-com-imdario-mergo-0.3.12" -; ,go-github-com-imdario-mergo-0.3.12) -; ("go-github-com-hashicorp-go-multierror-1.0.0" -; ,go-github-com-hashicorp-go-multierror-1.0.0) -; ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" -; ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) -; ("go-github-com-google-uuid-1.2.0" ,go-github-com-google-uuid-1.2.0) -; ("go-github-com-google-go-cmp-0.5.5" -; ,go-github-com-google-go-cmp-0.5.5) -; ("go-github-com-gogo-protobuf-1.3.2" -; ,go-github-com-gogo-protobuf-1.3.2) -; ("go-github-com-fsnotify-fsnotify-1.4.9" -; ,go-github-com-fsnotify-fsnotify-1.4.9) -; ("go-github-com-emicklei-go-restful-2.9.5+incompatible" -; ,go-github-com-emicklei-go-restful-2.9.5+incompatible) -; ("go-github-com-docker-go-units-0.4.0" -; ,go-github-com-docker-go-units-0.4.0) -; ("go-github-com-docker-go-metrics-0.0.1" -; ,go-github-com-docker-go-metrics-0.0.1) -; ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" -; ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1) -; ("go-github-com-coreos-go-systemd-v22-22.3.2" -; ,go-github-com-coreos-go-systemd-v22-22.3.2) -; ("go-github-com-containernetworking-plugins-0.9.1" -; ,go-github-com-containernetworking-plugins-0.9.1) -; ("go-github-com-containerd-zfs-1.0.0" -; ,go-github-com-containerd-zfs-1.0.0) -; ("go-github-com-containerd-typeurl-1.0.2" -; ,go-github-com-containerd-typeurl-1.0.2) -; ("go-github-com-containerd-ttrpc-1.0.2" -; ,go-github-com-containerd-ttrpc-1.0.2) -; ("go-github-com-containerd-nri-0.1.0" -; ,go-github-com-containerd-nri-0.1.0) -; ("go-github-com-containerd-imgcrypt-1.1.1" -; ,go-github-com-containerd-imgcrypt-1.1.1) -; ("go-github-com-containerd-go-runc-1.0.0" -; ,go-github-com-containerd-go-runc-1.0.0) -; ("go-github-com-containerd-go-cni-1.0.2" -; ,go-github-com-containerd-go-cni-1.0.2) -; ("go-github-com-containerd-fifo-1.0.0" -; ,go-github-com-containerd-fifo-1.0.0) -; ("go-github-com-containerd-continuity-0.1.0" -; ,go-github-com-containerd-continuity-0.1.0) -; ("go-github-com-containerd-console-1.0.2" -; ,go-github-com-containerd-console-1.0.2) -; ("go-github-com-containerd-cgroups-1.0.1" -; ,go-github-com-containerd-cgroups-1.0.1) -; ("go-github-com-containerd-btrfs-1.0.0" -; ,go-github-com-containerd-btrfs-1.0.0) -; ("go-github-com-containerd-aufs-1.0.0" -; ,go-github-com-containerd-aufs-1.0.0) -; ("go-github-com-microsoft-hcsshim-0.8.21" -; ,go-github-com-microsoft-hcsshim-0.8.21) -; ("go-github-com-microsoft-go-winio-0.4.17" -; ,go-github-com-microsoft-go-winio-0.4.17))) -; (home-page "https://github.com/containerd/containerd") -; (synopsis "Now Recruiting") -; (description -; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containers-libtrust-0.0.0-20190913040956-14b96171aa3b -; (package -; (name "go-github-com-containers-libtrust") -; (version "0.0.0-20190913040956-14b96171aa3b") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containers/libtrust") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1s54984nlg8mbl6n678v46zknxsmnbvma5c77zrdk2bj2m287d09")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containers/libtrust")) -; (home-page "https://github.com/containers/libtrust") -; (synopsis "libtrust") -; (description -; "Package libtrust provides an interface for managing authentication and -;authorization using public key cryptography. Authentication is handled -;using the identity attached to the public key and verified through TLS -;x509 certificates, a key challenge, or signature. Authorization and -;access control is managed through a trust graph distributed between -;both remote trust servers and locally cached and managed data. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-google-go-cmp-0.5.2 -; (package -; (name "go-github-com-google-go-cmp") -; (version "0.5.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/go-cmp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0qchy411jm9q2l9mf7x3ry2ycaqp9xdhf2nx14qrpzcxfigv2705")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/go-cmp")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" -; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) -; (home-page "https://github.com/google/go-cmp") -; (synopsis "Package for equality of Go values") -; (description -; "This package is intended to be a more powerful and safer alternative to -;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") -; (license license:bsd-3))) -; -;(define-public go-github-com-miekg-pkcs11-1.0.3 -; (package -; (name "go-github-com-miekg-pkcs11") -; (version "1.0.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/miekg/pkcs11") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0rmmgssb6y28x54si5h63gwbdsjjxf5n9xvm3zqdfsf9l10gx2m6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/miekg/pkcs11")) -; (home-page "https://github.com/miekg/pkcs11") -; (synopsis "PKCS#11") -; (description -; "Package pkcs11 is a wrapper around the PKCS#11 cryptographic library. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-opencontainers-image-spec-1.0.1 -; (package -; (name "go-github-com-opencontainers-image-spec") -; (version "1.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/image-spec") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "03dvbj3dln8c55v9gp79mgmz2yi2ws3r08iyz2fk41y3i22iaw1q")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/image-spec")) -; (home-page "https://github.com/opencontainers/image-spec") -; (synopsis "OCI Image Format Specification") -; (description -; "The OCI Image Format project creates and maintains the software shipping container image format spec (OCI Image Format).") -; (license license:asl2.0))) -; -;(define-public go-github-com-stefanberger-go-pkcs11uri-0.0.0-20201008174630-78d3cae3a980 -; (package -; (name "go-github-com-stefanberger-go-pkcs11uri") -; (version "0.0.0-20201008174630-78d3cae3a980") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stefanberger/go-pkcs11uri") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "09bnd1fn2v5y5ngsxz751a0x9fsqn8idlfrwyymfv9l57wvmrd2l")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stefanberger/go-pkcs11uri")) -; (home-page "https://github.com/stefanberger/go-pkcs11uri") -; (synopsis "go-pkcs11uri") -; (description -; "Welcome to the go-pkcs11uri library. The implementation follows @url{https://tools.ietf.org/html/rfc7512,RFC 7512} and this @url{https://www.rfc-editor.org/errata/rfc7512,errata}.") -; (license license:asl2.0))) -; -;(define-public go-go-mozilla-org-pkcs7-0.0.0-20200128120323-432b2356ecb1 -; (package -; (name "go-go-mozilla-org-pkcs7") -; (version "0.0.0-20200128120323-432b2356ecb1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mozilla-services/pkcs7") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0yncaq6i1x6apykvng92yyqkj5kmzl4c43lmcalr5lq7ks009p40")))) -; (build-system go-build-system) -; (arguments '(#:import-path "go.mozilla.org/pkcs7")) -; (home-page "https://go.mozilla.org/pkcs7") -; (synopsis "pkcs7") -; (description -; "Package pkcs7 implements parsing and generation of some PKCS#7 structures. -;") -; (license license:expat))) -; -;(define-public go-gopkg-in-square-go-jose-v2-2.5.1 -; (package -; (name "go-gopkg-in-square-go-jose-v2") -; (version "2.5.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/square/go-jose.v2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0z0hbmb5yyvnjkyiyn259wkbqbjxs2pzx87jz472shn2bgggxa4n")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path -; "gopkg.in/square/go-jose.v2" -; #:unpack-path -; "gopkg.in/square/go-jose.v2")) -; (home-page "https://gopkg.in/square/go-jose.v2") -; (synopsis "Go JOSE") -; (description -; "Package jose aims to provide an implementation of the Javascript Object Signing -;and Encryption set of standards. It implements encryption and signing based on -;the JSON Web Encryption and JSON Web Signature standards, with optional JSON -;Web Token support available in a sub-package. The library supports both the -;compact and full serialization formats, and has optional support for multiple -;recipients. -;") -; (license license:asl2.0))) -; -;(define-public go-gopkg-in-yaml-v2-2.4.0 -; (package -; (name "go-gopkg-in-yaml-v2") -; (version "2.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/yaml.v2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1pbmrpj7gcws34g8vwna4i2nhm9p6235piww36436xhyaa10cldr")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" -; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) -; (home-page "https://gopkg.in/yaml.v2") -; (synopsis "YAML support for the Go language") -; (description "Package yaml implements YAML support for the Go language. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-containers-ocicrypt-1.1.2 -; (package -; (name "go-github-com-containers-ocicrypt") -; (version "1.1.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containers/ocicrypt") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0cw9f8vmra6vx6k11yhn297brz719ana3h5pznclfdfp54ggz8vv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containers/ocicrypt")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) -; ("go-gopkg-in-square-go-jose-v2-2.5.1" -; ,go-gopkg-in-square-go-jose-v2-2.5.1) -; ("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) -; ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" -; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) -; ("go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2" -; ,go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2) -; ("go-go-mozilla-org-pkcs7-0.0.0-20200128120323-432b2356ecb1" -; ,go-go-mozilla-org-pkcs7-0.0.0-20200128120323-432b2356ecb1) -; ("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0) -; ("go-github-com-stefanberger-go-pkcs11uri-0.0.0-20201008174630-78d3cae3a980" -; ,go-github-com-stefanberger-go-pkcs11uri-0.0.0-20201008174630-78d3cae3a980) -; ("go-github-com-sirupsen-logrus-1.7.0" -; ,go-github-com-sirupsen-logrus-1.7.0) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-image-spec-1.0.1" -; ,go-github-com-opencontainers-image-spec-1.0.1) -; ("go-github-com-opencontainers-go-digest-1.0.0" -; ,go-github-com-opencontainers-go-digest-1.0.0) -; ("go-github-com-miekg-pkcs11-1.0.3" ,go-github-com-miekg-pkcs11-1.0.3) -; ("go-github-com-google-go-cmp-0.5.2" -; ,go-github-com-google-go-cmp-0.5.2) -; ("go-github-com-golang-protobuf-1.4.3" -; ,go-github-com-golang-protobuf-1.4.3))) -; (home-page "https://github.com/containers/ocicrypt") -; (synopsis "OCIcrypt Library") -; (description -; "The @code{ocicrypt} library is the OCI image spec implementation of container image encryption. More details of the spec can be seen in the @url{https://github.com/opencontainers/image-spec/pull/775,OCI repository}. The purpose of this library is to encode spec structures and consts in code, as well as provide a consistent implementation of image encryption across container runtimes and build tools.") -; (license license:asl2.0))) -; -;(define-public go-github-com-burntsushi-toml-0.4.1 -; (package -; (name "go-github-com-burntsushi-toml") -; (version "0.4.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/BurntSushi/toml") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0bz7q3v4m2rq5z47q81bvb4lw6ss2r1x3phgr43a6nls9x5kcpp1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/BurntSushi/toml")) -; (home-page "https://github.com/BurntSushi/toml") -; (synopsis "TOML parser and encoder for Go with reflection") -; (description -; "Package toml implements decoding and encoding of TOML files. -;") -; (license license:expat))) -; -;(define-public go-github-com-microsoft-go-winio-0.5.0 -; (package -; (name "go-github-com-microsoft-go-winio") -; (version "0.5.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/microsoft/go-winio") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "123p5by5craqigydfqj0hchplcv75zz81xzj5s3ixq624qjbg0z5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/Microsoft/go-winio")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" -; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) -; ("go-github-com-sirupsen-logrus-1.7.0" -; ,go-github-com-sirupsen-logrus-1.7.0) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) -; (home-page "https://github.com/Microsoft/go-winio") -; (synopsis "go-winio") -; (description -; "This repository contains utilities for efficiently performing Win32 IO operations in -;Go. Currently, this is focused on accessing named pipes and other file handles, and -;for using named pipes as a net transport.") -; (license license:expat))) -; -;(define-public go-github-com-microsoft-go-winio-0.4.17 -; (package -; (name "go-github-com-microsoft-go-winio") -; (version "0.4.17") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/microsoft/go-winio") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0gmgiak4x4gdyr17zm4b9vvharflk9pz5aj5jayh9hq50133b2f9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/Microsoft/go-winio")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" -; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) -; ("go-github-com-sirupsen-logrus-1.7.0" -; ,go-github-com-sirupsen-logrus-1.7.0) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) -; (home-page "https://github.com/Microsoft/go-winio") -; (synopsis "go-winio") -; (description -; "This repository contains utilities for efficiently performing Win32 IO operations in -;Go. Currently, this is focused on accessing named pipes and other file handles, and -;for using named pipes as a net transport.") -; (license license:expat))) -; -;(define-public go-github-com-cilium-ebpf-0.4.0 -; (package -; (name "go-github-com-cilium-ebpf") -; (version "0.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/cilium/ebpf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1j33vfz8mxnqadkd17l0y3ll71gph3ndm8hwrwbwnf5px7bfv9yl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/cilium/ebpf")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" -; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) -; ("go-github-com-google-go-cmp-0.5.4" -; ,go-github-com-google-go-cmp-0.5.4) -; ("go-github-com-frankban-quicktest-1.11.3" -; ,go-github-com-frankban-quicktest-1.11.3))) -; (home-page "https://github.com/cilium/ebpf") -; (synopsis "eBPF") -; (description "Package ebpf is a toolkit for working with eBPF programs. -;") -; (license license:expat))) -; -;(define-public go-github-com-coreos-go-systemd-v22-22.1.0 -; (package -; (name "go-github-com-coreos-go-systemd-v22") -; (version "22.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/coreos/go-systemd") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "127dj1iwp69yj74nwh9ckgc0mkk1mv4yzbxmbdxix1r7j6q35z3j")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/coreos/go-systemd/v22")) -; (propagated-inputs -; `(("go-github-com-godbus-dbus-v5-5.0.3" -; ,go-github-com-godbus-dbus-v5-5.0.3))) -; (home-page "https://github.com/coreos/go-systemd") -; (synopsis "go-systemd") -; (description "Go bindings to systemd. The project has several packages:") -; (license license:asl2.0))) -; -;(define-public go-github-com-godbus-dbus-v5-5.0.3 -; (package -; (name "go-github-com-godbus-dbus-v5") -; (version "5.0.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/godbus/dbus") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1bkc904073k807yxg6mvqaxrr6ammmhginr9p54jfb55mz3hfw3s")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/godbus/dbus/v5")) -; (home-page "https://github.com/godbus/dbus") -; (synopsis "dbus") -; (description -; "Package dbus implements bindings to the D-Bus message bus system. -;") -; (license license:bsd-2))) -; -;(define-public go-github-com-containerd-cgroups-1.0.1 -; (package -; (name "go-github-com-containerd-cgroups") -; (version "1.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/cgroups") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1p992w942xba9z77nhhbc6nk5q09c3zxxhq9n7fm5alx3a8fwbpl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/cgroups")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" -; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) -; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-sirupsen-logrus-1.7.0" -; ,go-github-com-sirupsen-logrus-1.7.0) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-runtime-spec-1.0.2" -; ,go-github-com-opencontainers-runtime-spec-1.0.2) -; ("go-github-com-gogo-protobuf-1.3.2" -; ,go-github-com-gogo-protobuf-1.3.2) -; ("go-github-com-godbus-dbus-v5-5.0.3" -; ,go-github-com-godbus-dbus-v5-5.0.3) -; ("go-github-com-docker-go-units-0.4.0" -; ,go-github-com-docker-go-units-0.4.0) -; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" -; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) -; ("go-github-com-coreos-go-systemd-v22-22.1.0" -; ,go-github-com-coreos-go-systemd-v22-22.1.0) -; ("go-github-com-cilium-ebpf-0.4.0" ,go-github-com-cilium-ebpf-0.4.0))) -; (home-page "https://github.com/containerd/cgroups") -; (synopsis "cgroups") -; (description -; "Go package for creating, managing, inspecting, and destroying cgroups. -;The resources format for settings on the cgroup uses the OCI runtime-spec found -;@url{https://github.com/opencontainers/runtime-spec,here}.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-containerd-1.4.9 -; (package -; (name "go-github-com-containerd-containerd") -; (version "1.4.9") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/containerd") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ykikks6ihgg899ibk9m9m0hqrbss0cx7l7z4yjb873b10bacj52")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/containerd")) -; (home-page "https://github.com/containerd/containerd") -; (synopsis "Now Recruiting") -; (description -; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") -; (license license:asl2.0))) -; -;(define-public go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898 -; (package -; (name "go-bazil-org-fuse") -; (version "0.0.0-20160811212531-371fbbdaa898") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/bazil/fuse") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1x5p301py7mcxgwklfm6pqqkzssln0nfzllng49pnk60m03ilp4w")))) -; (build-system go-build-system) -; (arguments '(#:import-path "bazil.org/fuse")) -; (home-page "https://bazil.org/fuse") -; (synopsis "bazil.org/fuse -- Filesystems in Go") -; (description -; "Package fuse enables writing FUSE file systems on Linux and FreeBSD. -;") -; (license #f))) -; -;(define-public go-github-com-dustin-go-humanize-1.0.0 -; (package -; (name "go-github-com-dustin-go-humanize") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/dustin/go-humanize") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1kqf1kavdyvjk7f8kx62pnm7fbypn9z1vbf8v2qdh3y7z7a0cbl3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/dustin/go-humanize")) -; (home-page "https://github.com/dustin/go-humanize") -; (synopsis "Humane Units") -; (description -; "Package humanize converts boring ugly numbers to human-friendly strings and back. -;") -; (license license:expat))) -; -;(define-public go-github-com-golang-protobuf-1.3.5 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.3.5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1gkd1942vk9n8kfzdwy1iil6wgvlwjq7a3y5jc49ck4lz9rhmgkq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0 -; (package -; (name "go-github-com-cpuguy83-go-md2man-v2") -; (version "2.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/cpuguy83/go-md2man") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) -; (propagated-inputs -; `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" -; ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) -; ("go-github-com-russross-blackfriday-v2-2.0.1" -; ,go-github-com-russross-blackfriday-v2-2.0.1) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0))) -; (home-page "https://github.com/cpuguy83/go-md2man") -; (synopsis "go-md2man") -; (description "Converts markdown into roff (man pages).") -; (license license:expat))) -; -;(define-public go-github-com-inconshreveable-mousetrap-1.0.0 -; (package -; (name "go-github-com-inconshreveable-mousetrap") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/inconshreveable/mousetrap") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1mn0kg48xkd74brf48qf5hzp0bc6g8cf5a77w895rl3qnlpfw152")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/inconshreveable/mousetrap")) -; (home-page "https://github.com/inconshreveable/mousetrap") -; (synopsis "mousetrap") -; (description "mousetrap is a tiny library that answers a single question.") -; (license license:asl2.0))) -; -;(define-public go-github-com-mitchellh-go-homedir-1.1.0 -; (package -; (name "go-github-com-mitchellh-go-homedir") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mitchellh/go-homedir") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ydzkipf28hwj2bfxqmwlww47khyk6d152xax4bnyh60f4lq3nx1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mitchellh/go-homedir")) -; (home-page "https://github.com/mitchellh/go-homedir") -; (synopsis "go-homedir") -; (description -; "This is a Go library for detecting the user's home directory without -;the use of cgo, so the library can be used in cross-compilation environments.") -; (license license:expat))) -; -;(define-public go-github-com-armon-consul-api-0.0.0-20180202201655-eb2c6b5be1b6 -; (package -; (name "go-github-com-armon-consul-api") -; (version "0.0.0-20180202201655-eb2c6b5be1b6") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/armon/consul-api") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1j6fdr1sg36qy4n4xjl7brq739fpm5npq98cmvklzjc9qrx98nk9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/armon/consul-api")) -; (home-page "https://github.com/armon/consul-api") -; (synopsis "consul-api") -; (description -; " Please use @url{https://github.com/hashicorp/consul/tree/master/api,consul api package} instead. -;Godocs for that package @url{http://godoc.org/github.com/hashicorp/consul/api,are here}.") -; (license license:mpl2.0))) -; -;(define-public go-github-com-coreos-bbolt-1.3.2 -; (package -; (name "go-github-com-coreos-bbolt") -; (version "1.3.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/etcd-io/bbolt") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "13d5l6p6c5wvkr6vn9hkhz9c593qifn7fgx0hg4d6jcvg1y0bnm2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/coreos/bbolt")) -; (home-page "https://github.com/coreos/bbolt") -; (synopsis "bbolt") -; (description -; "package bbolt implements a low-level key/value store in pure Go. It supports -;fully serializable transactions, ACID semantics, and lock-free MVCC with -;multiple readers and a single writer. Bolt can be used for projects that -;want a simple data store without the need to add large dependencies such as -;Postgres or MySQL. -;") -; (license license:expat))) -; -;(define-public go-github-com-coreos-etcd-3.3.10+incompatible -; (package -; (name "go-github-com-coreos-etcd") -; (version "3.3.10+incompatible") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/etcd-io/etcd") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1x2ii1hj8jraba8rbxz6dmc03y3sjxdnzipdvg6fywnlq1f3l3wl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/coreos/etcd")) -; (home-page "https://github.com/coreos/etcd") -; (synopsis "etcd") -; (description -; "Package main is a simple wrapper of the real etcd entrypoint package -;(located at github.com/coreos/etcd/etcdmain) to ensure that etcd is still -;\"go getable\"; e.g. `go get github.com/coreos/etcd` works as expected and -;builds a binary in $GOBIN/etcd -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-coreos-go-semver-0.2.0 -; (package -; (name "go-github-com-coreos-go-semver") -; (version "0.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/coreos/go-semver") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1gghi5bnqj50hfxhqc1cxmynqmh2yk9ii7ab9gsm75y5cp94ymk0")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/coreos/go-semver")) -; (home-page "https://github.com/coreos/go-semver") -; (synopsis "go-semver - Semantic Versioning Library") -; (description -; "go-semver is a @url{http://semver.org/,semantic versioning} library for Go. It lets you parse -;and compare two semantic version strings.") -; (license license:asl2.0))) -; -;(define-public go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e -; (package -; (name "go-github-com-coreos-go-systemd") -; (version "0.0.0-20190321100706-95778dfbb74e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/coreos/go-systemd") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1s3bg9p78wkixn2bqb2p23wbsqfg949ml6crw2b498s71mwh8rcf")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/coreos/go-systemd")) -; (home-page "https://github.com/coreos/go-systemd") -; (synopsis "go-systemd") -; (description "Go bindings to systemd. The project has several packages:") -; (license license:asl2.0))) -; -;(define-public go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f -; (package -; (name "go-github-com-coreos-pkg") -; (version "0.0.0-20180928190104-399ea9e2e55f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/coreos/pkg") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0nxbn0m7lr4dg0yrwnvlkfiyg3ndv8vdpssjx7b714nivpc6ar0y")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/coreos/pkg")) -; (home-page "https://github.com/coreos/pkg") -; (synopsis #f) -; (description "a collection of go utility packages") -; (license license:asl2.0))) -; -;(define-public go-github-com-dgrijalva-jwt-go-3.2.0+incompatible -; (package -; (name "go-github-com-dgrijalva-jwt-go") -; (version "3.2.0+incompatible") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/dgrijalva/jwt-go") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "08m27vlms74pfy5z79w67f9lk9zkx6a9jd68k3c4msxy75ry36mp")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/dgrijalva/jwt-go")) -; (home-page "https://github.com/dgrijalva/jwt-go") -; (synopsis "jwt-go") -; (description -; "Package jwt is a Go implementation of JSON Web Tokens: @url{http://self-issued.info/docs/draft-jones-json-web-token.html,http://self-issued.info/docs/draft-jones-json-web-token.html} -;") -; (license license:expat))) -; -;(define-public go-github-com-fsnotify-fsnotify-1.4.7 -; (package -; (name "go-github-com-fsnotify-fsnotify") -; (version "1.4.7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/fsnotify/fsnotify") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/fsnotify/fsnotify")) -; (home-page "https://github.com/fsnotify/fsnotify") -; (synopsis "File system notifications for Go") -; (description -; "Package fsnotify provides a platform-independent interface for file system notifications. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20180221164845-07fd8470d635 -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20180221164845-07fd8470d635") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "193g0a1zxb9ikph7r2klc6rdqxqzfmmr8d5bcibyhsm2l63s17mx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-github-com-kisielk-errcheck-1.1.0 -; (package -; (name "go-github-com-kisielk-errcheck") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kisielk/errcheck") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "19vd4rxmqbk5lpiav3pf7df3yjlz0l0dwx9mn0gjq5f998iyhy6y")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kisielk/errcheck")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20180221164845-07fd8470d635" -; ,go-golang-org-x-tools-0.0.0-20180221164845-07fd8470d635) -; ("go-github-com-kisielk-gotool-1.0.0" -; ,go-github-com-kisielk-gotool-1.0.0))) -; (home-page "https://github.com/kisielk/errcheck") -; (synopsis "errcheck") -; (description -; "errcheck is a program for checking for unchecked errors in go programs.") -; (license license:expat))) -; -;(define-public go-github-com-gogo-protobuf-1.2.1 -; (package -; (name "go-github-com-gogo-protobuf") -; (version "1.2.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/gogo/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "06yqa6h0kw3gr5pc3qmas7f7435a96zf7iw7p0l00r2hqf6fqq6m")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/gogo/protobuf")) -; (propagated-inputs -; `(("go-github-com-kisielk-errcheck-1.1.0" -; ,go-github-com-kisielk-errcheck-1.1.0))) -; (home-page "https://github.com/gogo/protobuf") -; (synopsis "Protocol Buffers for Go with Gadgets") -; (description -; "gogoprotobuf is a fork of @url{https://github.com/golang/protobuf,golang/protobuf} with extra code generation features.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-groupcache-0.0.0-20190129154638-5b532d6fd5ef -; (package -; (name "go-github-com-golang-groupcache") -; (version "0.0.0-20190129154638-5b532d6fd5ef") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/groupcache") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ls2i4ixyd4r2556j7c5jmlligjb35gfvxknrdn2abjmcahgqd6h")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/groupcache")) -; (home-page "https://github.com/golang/groupcache") -; (synopsis "groupcache") -; (description -; "Package groupcache provides a data loading mechanism with caching -;and de-duplication that works across a set of peer processes. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-google-btree-1.0.0 -; (package -; (name "go-github-com-google-btree") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/btree") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ba430m9fbnagacp57krgidsyrgp3ycw5r7dj71brgp5r52g82p6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/btree")) -; (home-page "https://github.com/google/btree") -; (synopsis "BTree implementation for Go") -; (description -; "Package btree implements in-memory B-Trees of arbitrary degree. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-gorilla-websocket-1.4.0 -; (package -; (name "go-github-com-gorilla-websocket") -; (version "1.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/gorilla/websocket") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "00i4vb31nsfkzzk7swvx3i75r2d960js3dri1875vypk3v2s0pzk")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/gorilla/websocket")) -; (home-page "https://github.com/gorilla/websocket") -; (synopsis "Gorilla WebSocket") -; (description -; "Package websocket implements the WebSocket protocol defined in @url{https://rfc-editor.org/rfc/rfc6455.html,RFC 6455}. -;") -; (license license:bsd-2))) -; -;(define-public go-github-com-grpc-ecosystem-go-grpc-middleware-1.0.0 -; (package -; (name "go-github-com-grpc-ecosystem-go-grpc-middleware") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc-ecosystem/go-grpc-middleware") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0lwgxih021xfhfb1xb9la5f98bpgpaiz63sbllx77qwwl2rmhrsp")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/grpc-ecosystem/go-grpc-middleware")) -; (home-page "https://github.com/grpc-ecosystem/go-grpc-middleware") -; (synopsis "Go gRPC Middleware") -; (description -; "`grpc_middleware` is a collection of gRPC middleware packages: interceptors, helpers and tools. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0 -; (package -; (name "go-github-com-grpc-ecosystem-go-grpc-prometheus") -; (version "1.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc-ecosystem/go-grpc-prometheus") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1lzk54h7np32b3acidg1ggbn8ppbnns0m71gcg9d1qkkdh8zrijl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/grpc-ecosystem/go-grpc-prometheus")) -; (home-page "https://github.com/grpc-ecosystem/go-grpc-prometheus") -; (synopsis "Go gRPC Interceptors for Prometheus monitoring") -; (description -; "@url{https://prometheus.io/,Prometheus} monitoring for your @url{https://github.com/grpc/grpc-go,gRPC Go} servers and clients.") -; (license license:asl2.0))) -; -;(define-public go-github-com-kr-pretty-0.1.0 -; (package -; (name "go-github-com-kr-pretty") -; (version "0.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kr/pretty") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "18m4pwg2abd0j9cn5v3k2ksk9ig4vlwxmlw9rrglanziv9l967qp")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kr/pretty")) -; (propagated-inputs -; `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) -; (home-page "https://github.com/kr/pretty") -; (synopsis #f) -; (description -; "Package pretty provides pretty-printing for Go values. This is -;useful during debugging, to avoid wrapping long output lines in -;the terminal. -;") -; (license license:expat))) -; -;(define-public go-github-com-rogpeppe-fastuuid-0.0.0-20150106093220-6724a57986af -; (package -; (name "go-github-com-rogpeppe-fastuuid") -; (version "0.0.0-20150106093220-6724a57986af") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/rogpeppe/fastuuid") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "12s65phfx6hxj4v0b5kj8akgrbf5mxpa101fyzw03h6hld1f70cz")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/rogpeppe/fastuuid")) -; (home-page "https://github.com/rogpeppe/fastuuid") -; (synopsis "fastuuid") -; (description -; "Package fastuuid provides fast UUID generation of 192 bit -;universally unique identifiers. -;") -; (license license:bsd-3))) -; -;(define-public go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127 -; (package -; (name "go-gopkg-in-check-v1") -; (version "1.0.0-20180628173108-788fd7840127") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/check.v1") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0v3bim0j375z81zrpr5qv42knqs0y2qv2vkjiqi5axvb78slki1a")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) -; (home-page "https://gopkg.in/check.v1") -; (synopsis "Instructions") -; (description -; "Package check is a rich testing extension for Go's testing package. -;") -; (license license:bsd-2))) -; -;(define-public go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20181220203305-927f97764cc3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0np7b766gb92vbm514yhdl7cjmqvn0dxdxskd84aas2ri1fkpgw5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-gopkg-in-resty-v1-1.12.0 -; (package -; (name "go-gopkg-in-resty-v1") -; (version "1.12.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/resty.v1") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "062mn735rqzhha5ag07z4gz08hxzrfm2yx067jfmaaxmb6797lmp")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/resty.v1" #:unpack-path "gopkg.in/resty.v1")) -; (propagated-inputs -; `(("go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3" -; ,go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3))) -; (home-page "https://gopkg.in/resty.v1") -; (synopsis "News") -; (description -; "Package resty provides Simple HTTP and REST client library for Go. -;") -; (license license:expat))) -; -;(define-public go-gopkg-in-yaml-v2-2.0.0-20170812160011-eb3733d160e7 -; (package -; (name "go-gopkg-in-yaml-v2") -; (version "2.0.0-20170812160011-eb3733d160e7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/yaml.v2") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1srhvcaa9db3a6xj29mkjr5kg33y71pclrlx4vcwz5m1lgb5c7q6")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) -; (home-page "https://gopkg.in/yaml.v2") -; (synopsis "YAML support for the Go language") -; (description "Package yaml implements YAML support for the Go language. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-grpc-ecosystem-grpc-gateway-1.9.0 -; (package -; (name "go-github-com-grpc-ecosystem-grpc-gateway") -; (version "1.9.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc-ecosystem/grpc-gateway") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1r4y48c76yxc2hpqszfjirvh7zxjb6z72qmk95li12ar79dhv3dy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/grpc-ecosystem/grpc-gateway")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.0.0-20170812160011-eb3733d160e7" -; ,go-gopkg-in-yaml-v2-2.0.0-20170812160011-eb3733d160e7) -; ("go-gopkg-in-resty-v1-1.12.0" ,go-gopkg-in-resty-v1-1.12.0) -; ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" -; ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) -; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) -; ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" -; ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) -; ("go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8" -; ,go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8) -; ("go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3" -; ,go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3) -; ("go-github-com-rogpeppe-fastuuid-0.0.0-20150106093220-6724a57986af" -; ,go-github-com-rogpeppe-fastuuid-0.0.0-20150106093220-6724a57986af) -; ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-ghodss-yaml-1.0.0" ,go-github-com-ghodss-yaml-1.0.0))) -; (home-page "https://github.com/grpc-ecosystem/grpc-gateway") -; (synopsis "grpc-gateway") -; (description -; "The grpc-gateway is a plugin of the Google protocol buffers compiler -;@url{https://github.com/protocolbuffers/protobuf,protoc}. -;It reads protobuf service definitions and generates a reverse-proxy server which -;translates a RESTful HTTP API into gRPC. This server is generated according to the -;@url{https://github.com/googleapis/googleapis/raw/master/google/api/http.proto#L46,(code google.api.http)} -;annotations in your service definitions.") -; (license license:bsd-3))) -; -;(define-public go-github-com-hashicorp-hcl-1.0.0 -; (package -; (name "go-github-com-hashicorp-hcl") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/hcl") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0q6ml0qqs0yil76mpn4mdx4lp94id8vbv575qm60jzl1ijcl5i66")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hashicorp/hcl")) -; (propagated-inputs -; `(("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://github.com/hashicorp/hcl") -; (synopsis "HCL") -; (description "Package hcl decodes HCL into usable Go structures. -;") -; (license license:mpl2.0))) -; -;(define-public go-github-com-jonboulle-clockwork-0.1.0 -; (package -; (name "go-github-com-jonboulle-clockwork") -; (version "0.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/jonboulle/clockwork") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1pqxhsdavbp1n5grgyx2j6ylvql2fzn2cvpsgkc8li69dil7sibl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/jonboulle/clockwork")) -; (home-page "https://github.com/jonboulle/clockwork") -; (synopsis "clockwork") -; (description -; "Replace uses of the @code{time} package with the @code{clockwork.Clock} interface instead.") -; (license license:asl2.0))) -; -;(define-public go-github-com-magiconair-properties-1.8.0 -; (package -; (name "go-github-com-magiconair-properties") -; (version "1.8.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/magiconair/properties") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1a10362wv8a8qwb818wygn2z48lgzch940hvpv81hv8gc747ajxn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/magiconair/properties")) -; (home-page "https://github.com/magiconair/properties") -; (synopsis "Overview") -; (description -; "Package properties provides functions for reading and writing -;ISO-8859-1 and UTF-8 encoded .properties files and has -;support for recursive property expansion. -;") -; (license license:bsd-2))) -; -;(define-public go-github-com-mitchellh-mapstructure-1.1.2 -; (package -; (name "go-github-com-mitchellh-mapstructure") -; (version "1.1.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mitchellh/mapstructure") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "03bpv28jz9zhn4947saqwi328ydj7f6g6pf1m2d4m5zdh5jlfkrr")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mitchellh/mapstructure")) -; (home-page "https://github.com/mitchellh/mapstructure") -; (synopsis "mapstructure") -; (description -; "Package mapstructure exposes functionality to convert one arbitrary -;Go type into another, typically to convert a map[string]interface{} -;into a native Go structure. -;") -; (license license:expat))) -; -;(define-public go-github-com-pelletier-go-toml-1.2.0 -; (package -; (name "go-github-com-pelletier-go-toml") -; (version "1.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/pelletier/go-toml") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1fjzpcjng60mc3a4b2ql5a00d5gah84wj740dabv9kq67mpg8fxy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/pelletier/go-toml")) -; (home-page "https://github.com/pelletier/go-toml") -; (synopsis "go-toml") -; (description "Package toml is a TOML parser and manipulation library. -;") -; (license #f))) -; -;(define-public go-github-com-beorn7-perks-1.0.0 -; (package -; (name "go-github-com-beorn7-perks") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/beorn7/perks") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1i1nz1f6g55xi2y3aiaz5kqfgvknarbfl4f0sx4nyyb4s7xb1z9x")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/beorn7/perks")) -; (home-page "https://github.com/beorn7/perks") -; (synopsis "Perks for Go (golang.org)") -; (description -; "Perks contains the Go package quantile that computes approximate quantiles over -;an unbounded data stream within low memory and CPU bounds.") -; (license license:expat))) -; -;(define-public go-github-com-go-logfmt-logfmt-0.4.0 -; (package -; (name "go-github-com-go-logfmt-logfmt") -; (version "0.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/go-logfmt/logfmt") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "06smxc112xmixz78nyvk3b2hmc7wasf2sl5vxj1xz62kqcq9lzm9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/go-logfmt/logfmt")) -; (propagated-inputs -; `(("go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515" -; ,go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515))) -; (home-page "https://github.com/go-logfmt/logfmt") -; (synopsis "logfmt") -; (description -; "Package logfmt implements utilities to marshal and unmarshal data in the -;logfmt format. The logfmt format records key/value pairs in a way that -;balances readability for humans and simplicity of computer parsing. It is -;most commonly used as a more human friendly alternative to JSON for -;structured logging. -;") -; (license license:expat))) -; -;(define-public go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90 -; (package -; (name "go-github-com-prometheus-client-model") -; (version "0.0.0-20190129233127-fd36f4220a90") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/client_model") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1bs5d72k361llflgl94c22n0w53j30rsfh84smgk8mbjbcmjsaa5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/client_model")) -; (propagated-inputs -; `(("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" -; ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0))) -; (home-page "https://github.com/prometheus/client_model") -; (synopsis "Deprecation note") -; (description -; "This repository used to contain the code that defined both -;the data model and the exposition format of Prometheus metrics.") -; (license license:asl2.0))) -; -;(define-public go-github-com-julienschmidt-httprouter-1.2.0 -; (package -; (name "go-github-com-julienschmidt-httprouter") -; (version "1.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/julienschmidt/httprouter") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1k8bylc9s4vpvf5xhqh9h246dl1snxrzzz0614zz88cdh8yzs666")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/julienschmidt/httprouter")) -; (home-page "https://github.com/julienschmidt/httprouter") -; (synopsis "HttpRouter") -; (description -; "Package httprouter is a trie based high performance HTTP request router. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223 -; (package -; (name "go-github-com-mwitkow-go-conntrack") -; (version "0.0.0-20161129095857-cc309e4a2223") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mwitkow/go-conntrack") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0nbrnpk7bkmqg9mzwsxlm0y8m7s9qd9phr1q30qlx2qmdmz7c1mf")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mwitkow/go-conntrack")) -; (home-page "https://github.com/mwitkow/go-conntrack") -; (synopsis "Go tracing and monitoring (Prometheus) for") -; (description -; "@url{https://prometheus.io/,Prometheus} monitoring and @url{https://godoc.org/golang.org/x/net/trace#EventLog,(code x/net/trace)} tracing wrappers @code{net.Conn}, both inbound (@code{net.Listener}) and outbound (@code{net.Dialer}).") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20180904163835-0709b304e793 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20180904163835-0709b304e793") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0i05s09y5pavmfh71fgih7syxg58x7a4krgd8am6d3mnahnmab5c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20180905080454-ebe1bf3edb33") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0rkspxyjxdmc9f4n09hgkwj8jjd8z5p8mc9z8vwqwqcwrqv4sg7c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-sirupsen-logrus-1.2.0 -; (package -; (name "go-github-com-sirupsen-logrus") -; (version "1.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/sirupsen/logrus") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0r6334x2bls8ddznvzaldx4g88msjjns4mlks95rqrrg7h0ijigg")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/sirupsen/logrus")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33" -; ,go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33) -; ("go-golang-org-x-crypto-0.0.0-20180904163835-0709b304e793" -; ,go-golang-org-x-crypto-0.0.0-20180904163835-0709b304e793) -; ("go-github-com-stretchr-testify-1.2.2" -; ,go-github-com-stretchr-testify-1.2.2) -; ("go-github-com-stretchr-objx-0.1.1" -; ,go-github-com-stretchr-objx-0.1.1) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.1" -; ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.1) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://github.com/sirupsen/logrus") -; (synopsis "Logrus") -; (description -; "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-net-0.0.0-20181114220301-adae6a3d119a -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20181114220301-adae6a3d119a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1fx860zsgzqk28j7lmp96qsfrgb0kzbfjvr294hywswcbwdwkb01")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20181116152217-5ac8a444bdc5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "00zdrighflwc4iyizsag184nvl1cbkk02v73kpl5miprdrvzqlr4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-gopkg-in-yaml-v2-2.2.1 -; (package -; (name "go-gopkg-in-yaml-v2") -; (version "2.2.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/yaml.v2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0dwjrs2lp2gdlscs7bsrmyc5yf6mm4fvgw71bzr9mv2qrd2q73s1")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" -; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) -; (home-page "https://gopkg.in/yaml.v2") -; (synopsis "YAML support for the Go language") -; (description "Package yaml implements YAML support for the Go language. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-prometheus-common-0.4.0 -; (package -; (name "go-github-com-prometheus-common") -; (version "0.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/common") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "00008pczafy982m59n1j31pnp41f4grbc2c40jccp52xg3m5klmr")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/common")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1) -; ("go-gopkg-in-alecthomas-kingpin-v2-2.2.6" -; ,go-gopkg-in-alecthomas-kingpin-v2-2.2.6) -; ("go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5" -; ,go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5) -; ("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" -; ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) -; ("go-golang-org-x-net-0.0.0-20181114220301-adae6a3d119a" -; ,go-golang-org-x-net-0.0.0-20181114220301-adae6a3d119a) -; ("go-github-com-sirupsen-logrus-1.2.0" -; ,go-github-com-sirupsen-logrus-1.2.0) -; ("go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d" -; ,go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d) -; ("go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910" -; ,go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910) -; ("go-github-com-prometheus-client-golang-0.9.1" -; ,go-github-com-prometheus-client-golang-0.9.1) -; ("go-github-com-pkg-errors-0.8.0" ,go-github-com-pkg-errors-0.8.0) -; ("go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223" -; ,go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223) -; ("go-github-com-matttproud-golang-protobuf-extensions-1.0.1" -; ,go-github-com-matttproud-golang-protobuf-extensions-1.0.1) -; ("go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515" -; ,go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515) -; ("go-github-com-julienschmidt-httprouter-1.2.0" -; ,go-github-com-julienschmidt-httprouter-1.2.0) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0) -; ("go-github-com-gogo-protobuf-1.1.1" -; ,go-github-com-gogo-protobuf-1.1.1) -; ("go-github-com-go-stack-stack-1.8.0" -; ,go-github-com-go-stack-stack-1.8.0) -; ("go-github-com-go-logfmt-logfmt-0.3.0" -; ,go-github-com-go-logfmt-logfmt-0.3.0) -; ("go-github-com-go-kit-kit-0.8.0" ,go-github-com-go-kit-kit-0.8.0) -; ("go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973" -; ,go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973) -; ("go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf" -; ,go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf) -; ("go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc" -; ,go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc))) -; (home-page "https://github.com/prometheus/common") -; (synopsis "Common") -; (description -; "This repository contains Go libraries that are shared across Prometheus -;components and libraries. They are considered internal to Prometheus, without -;any stability guarantees for external usage.") -; (license license:asl2.0))) -; -;(define-public go-github-com-prometheus-procfs-0.0.0-20190507164030-5867b95ac084 -; (package -; (name "go-github-com-prometheus-procfs") -; (version "0.0.0-20190507164030-5867b95ac084") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/procfs") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1rahdk62ajj4zpfb3mgzjqip773la9fb0m87m7s9a0b39l3fmzvr")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/procfs")) -; (propagated-inputs -; `(("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" -; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4))) -; (home-page "https://github.com/prometheus/procfs") -; (synopsis "procfs") -; (description -; "Package procfs provides functions to retrieve system, kernel and process -;metrics from the pseudo-filesystem proc. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc -; (package -; (name "go-github-com-alecthomas-template") -; (version "0.0.0-20160405071501-a0175ee3bccc") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/alecthomas/template") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0qjgvvh26vk1cyfq9fadyhfgdj36f1iapbmr5xp6zqipldz8ffxj")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/alecthomas/template")) -; (home-page "https://github.com/alecthomas/template") -; (synopsis "Go's") -; (description -; "Package template implements data-driven templates for generating textual output. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf -; (package -; (name "go-github-com-alecthomas-units") -; (version "0.0.0-20151022065526-2efee857e7cf") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/alecthomas/units") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1j65b91qb9sbrml9cpabfrcf07wmgzzghrl7809hjjhrmbzri5bl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/alecthomas/units")) -; (home-page "https://github.com/alecthomas/units") -; (synopsis "Units - Helpful unit multipliers and functions for Go") -; (description -; "Package units provides helpful unit multipliers and functions for Go. -;") -; (license license:expat))) -; -;(define-public go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973 -; (package -; (name "go-github-com-beorn7-perks") -; (version "0.0.0-20180321164747-3a771d992973") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/beorn7/perks") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1l2lns4f5jabp61201sh88zf3b0q793w4zdgp9nll7mmfcxxjif3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/beorn7/perks")) -; (home-page "https://github.com/beorn7/perks") -; (synopsis "Perks for Go (golang.org)") -; (description -; "Perks contains the Go package quantile that computes approximate quantiles over -;an unbounded data stream within low memory and CPU bounds.") -; (license license:expat))) -; -;(define-public go-github-com-dgryski-go-sip13-0.0.0-20181026042036-e10d5fee7954 -; (package -; (name "go-github-com-dgryski-go-sip13") -; (version "0.0.0-20181026042036-e10d5fee7954") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/dgryski/go-sip13") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "15fyibfas209ljz3f7g07kdmfbl3hhyd9n5n7aq5n5p9m5mn41d6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/dgryski/go-sip13")) -; (home-page "https://github.com/dgryski/go-sip13") -; (synopsis #f) -; (description #f) -; (license license:expat))) -; -;(define-public go-github-com-go-kit-kit-0.8.0 -; (package -; (name "go-github-com-go-kit-kit") -; (version "0.8.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/go-kit/kit") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1rcywbc2pvab06qyf8pc2rdfjv7r6kxdv2v4wnpqnjhz225wqvc0")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/go-kit/kit")) -; (home-page "https://github.com/go-kit/kit") -; (synopsis "Go kit") -; (description -; "@strong{Go kit} is a @strong{programming toolkit} for building microservices -;(or elegant monoliths) in Go. We solve common problems in distributed -;systems and application architecture so you can focus on delivering -;business value.") -; (license license:expat))) -; -;(define-public go-github-com-go-logfmt-logfmt-0.3.0 -; (package -; (name "go-github-com-go-logfmt-logfmt") -; (version "0.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/go-logfmt/logfmt") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1gkgh3k5w1xwb2qbjq52p6azq3h1c1rr6pfwjlwj1zrijpzn2xb9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/go-logfmt/logfmt")) -; (home-page "https://github.com/go-logfmt/logfmt") -; (synopsis "logfmt") -; (description -; "Package logfmt implements utilities to marshal and unmarshal data in the -;logfmt format. The logfmt format records key/value pairs in a way that -;balances readability for humans and simplicity of computer parsing. It is -;most commonly used as a more human friendly alternative to JSON for -;structured logging. -;") -; (license license:expat))) -; -;(define-public go-github-com-go-stack-stack-1.8.0 -; (package -; (name "go-github-com-go-stack-stack") -; (version "1.8.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/go-stack/stack") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0wk25751ryyvxclyp8jdk5c3ar0cmfr8lrjb66qbg4808x66b96v")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/go-stack/stack")) -; (home-page "https://github.com/go-stack/stack") -; (synopsis "stack") -; (description -; "Package stack implements utilities to capture, manipulate, and format call -;stacks. It provides a simpler API than package runtime. -;") -; (license license:expat))) -; -;(define-public go-github-com-gogo-protobuf-1.1.1 -; (package -; (name "go-github-com-gogo-protobuf") -; (version "1.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/gogo/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1525pq7r6h3s8dncvq8gxi893p2nq8dxpzvq0nfl5b4p6mq0v1c2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/gogo/protobuf")) -; (home-page "https://github.com/gogo/protobuf") -; (synopsis "Protocol Buffers for Go with Gadgets") -; (description -; "gogoprotobuf is a fork of @url{https://github.com/golang/protobuf,golang/protobuf} with extra code generation features.") -; (license license:bsd-3))) -; -;(define-public go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515 -; (package -; (name "go-github-com-kr-logfmt") -; (version "0.0.0-20140226030751-b84e30acd515") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kr/logfmt") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "02ldzxgznrfdzvghfraslhgp19la1fczcbzh7wm2zdc6lmpd1qq9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kr/logfmt")) -; (home-page "https://github.com/kr/logfmt") -; (synopsis #f) -; (description -; "Package implements the decoding of logfmt key-value pairs. -;") -; (license license:expat))) -; -;(define-public go-github-com-matttproud-golang-protobuf-extensions-1.0.1 -; (package -; (name "go-github-com-matttproud-golang-protobuf-extensions") -; (version "1.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/matttproud/golang_protobuf_extensions") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1d0c1isd2lk9pnfq2nk0aih356j30k3h1gi2w0ixsivi5csl7jya")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "github.com/matttproud/golang_protobuf_extensions")) -; (home-page "https://github.com/matttproud/golang_protobuf_extensions") -; (synopsis "Overview") -; (description -; "This repository provides various Protocol Buffer extensions for the Go -;language (golang), namely support for record length-delimited message -;streaming.") -; (license license:asl2.0))) -; -;(define-public go-github-com-oklog-ulid-1.3.1 -; (package -; (name "go-github-com-oklog-ulid") -; (version "1.3.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/oklog/ulid") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0hybwyid820n80axrk863k2py93hbqlq6hxhf84ppmz0qd0ys0gq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/oklog/ulid")) -; (home-page "https://github.com/oklog/ulid") -; (synopsis "Universally Unique Lexicographically Sortable Identifier") -; (description -; "This package provides a Go port of @url{https://github.com/alizain/ulid,alizain/ulid} with binary format implemented.") -; (license license:asl2.0))) -; -;(define-public go-github-com-pkg-errors-0.8.0 -; (package -; (name "go-github-com-pkg-errors") -; (version "0.8.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/pkg/errors") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "001i6n71ghp2l6kdl3qq1v2vmghcz3kicv9a5wgcihrzigm75pp5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/pkg/errors")) -; (home-page "https://github.com/pkg/errors") -; (synopsis "errors") -; (description "Package errors provides simple error handling primitives. -;") -; (license license:bsd-2))) -; -;(define-public go-github-com-prometheus-client-golang-0.9.1 -; (package -; (name "go-github-com-prometheus-client-golang") -; (version "0.9.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/client_golang") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "01gnylazia30pcp069xcng482gwmm3xcx5zgrlwdkhic1lyb6i9l")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/client_golang")) -; (home-page "https://github.com/prometheus/client_golang") -; (synopsis "Prometheus Go client library") -; (description -; "This is the @url{http://golang.org,Go} client library for -;@url{http://prometheus.io,Prometheus}. It has two separate parts, one for -;instrumenting application code, and one for creating clients that talk to the -;Prometheus HTTP API.") -; (license license:asl2.0))) -; -;(define-public go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910 -; (package -; (name "go-github-com-prometheus-client-model") -; (version "0.0.0-20180712105110-5c3871d89910") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/client_model") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "04psf81l9fjcwascsys428v03fx4fi894h7fhrj2vvcz723q57k0")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/client_model")) -; (home-page "https://github.com/prometheus/client_model") -; (synopsis "Deprecation note") -; (description -; "This repository used to contain the code that defined both -;the data model and the exposition format of Prometheus metrics.") -; (license license:asl2.0))) -; -;(define-public go-github-com-prometheus-common-0.0.0-20181113130724-41aa239b4cce -; (package -; (name "go-github-com-prometheus-common") -; (version "0.0.0-20181113130724-41aa239b4cce") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/common") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0spy10lwanqa5ynks9cagphkq74zz4b3jm4w59vvizdcw4fhd7s6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/common")) -; (home-page "https://github.com/prometheus/common") -; (synopsis "Common") -; (description -; "This repository contains Go libraries that are shared across Prometheus -;components and libraries. They are considered internal to Prometheus, without -;any stability guarantees for external usage.") -; (license license:asl2.0))) -; -;(define-public go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d -; (package -; (name "go-github-com-prometheus-procfs") -; (version "0.0.0-20181005140218-185b4288413d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/procfs") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0d85429kdw5dgj5zhyiz1sq3i5691vj2gjnda93nnxxzx9acg8cv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/procfs")) -; (home-page "https://github.com/prometheus/procfs") -; (synopsis "procfs") -; (description -; "Package procfs provides functions to retrieve system, kernel and process -;metrics from the pseudo-filesystem proc. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20181107165924-66b7b1311ac8") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "00ny4r2bbj6rz939iy9g699acqydq7rfi6r6awn25w9i2dld9m13")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-gopkg-in-alecthomas-kingpin-v2-2.2.6 -; (package -; (name "go-gopkg-in-alecthomas-kingpin-v2") -; (version "2.2.6") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/alecthomas/kingpin.v2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0mndnv3hdngr3bxp7yxfd47cas4prv98sqw534mx7vp38gd88n5r")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path -; "gopkg.in/alecthomas/kingpin.v2" -; #:unpack-path -; "gopkg.in/alecthomas/kingpin.v2")) -; (home-page "https://gopkg.in/alecthomas/kingpin.v2") -; (synopsis "Kingpin - A Go (golang) command line and flag parser") -; (description -; "Package kingpin provides command line interfaces like this: -;") -; (license license:expat))) -; -;(define-public go-github-com-prometheus-tsdb-0.7.1 -; (package -; (name "go-github-com-prometheus-tsdb") -; (version "0.7.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus-junkyard/tsdb") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1c1da8i5byvhh4fp3vqjfb65aaksjskn3ggb8wg9hcfzjrhgpz04")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/tsdb")) -; (propagated-inputs -; `(("go-gopkg-in-alecthomas-kingpin-v2-2.2.6" -; ,go-gopkg-in-alecthomas-kingpin-v2-2.2.6) -; ("go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8" -; ,go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8) -; ("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" -; ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) -; ("go-github-com-stretchr-testify-1.2.2" -; ,go-github-com-stretchr-testify-1.2.2) -; ("go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d" -; ,go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d) -; ("go-github-com-prometheus-common-0.0.0-20181113130724-41aa239b4cce" -; ,go-github-com-prometheus-common-0.0.0-20181113130724-41aa239b4cce) -; ("go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910" -; ,go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910) -; ("go-github-com-prometheus-client-golang-0.9.1" -; ,go-github-com-prometheus-client-golang-0.9.1) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-pkg-errors-0.8.0" ,go-github-com-pkg-errors-0.8.0) -; ("go-github-com-oklog-ulid-1.3.1" ,go-github-com-oklog-ulid-1.3.1) -; ("go-github-com-matttproud-golang-protobuf-extensions-1.0.1" -; ,go-github-com-matttproud-golang-protobuf-extensions-1.0.1) -; ("go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515" -; ,go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0) -; ("go-github-com-gogo-protobuf-1.1.1" -; ,go-github-com-gogo-protobuf-1.1.1) -; ("go-github-com-go-stack-stack-1.8.0" -; ,go-github-com-go-stack-stack-1.8.0) -; ("go-github-com-go-logfmt-logfmt-0.3.0" -; ,go-github-com-go-logfmt-logfmt-0.3.0) -; ("go-github-com-go-kit-kit-0.8.0" ,go-github-com-go-kit-kit-0.8.0) -; ("go-github-com-dgryski-go-sip13-0.0.0-20181026042036-e10d5fee7954" -; ,go-github-com-dgryski-go-sip13-0.0.0-20181026042036-e10d5fee7954) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1) -; ("go-github-com-cespare-xxhash-1.1.0" -; ,go-github-com-cespare-xxhash-1.1.0) -; ("go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973" -; ,go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973) -; ("go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf" -; ,go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf) -; ("go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc" -; ,go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc))) -; (home-page "https://github.com/prometheus/tsdb") -; (synopsis "TSDB") -; (description -; "Package tsdb implements a time series storage for float64 sample data. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-prometheus-client-golang-0.9.3 -; (package -; (name "go-github-com-prometheus-client-golang") -; (version "0.9.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/client_golang") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1608rm1y2p3iv8k2x7wyc6hshvpbfkv2k77hy0x870syms1g3g1p")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/client_golang")) -; (propagated-inputs -; `(("go-github-com-prometheus-tsdb-0.7.1" -; ,go-github-com-prometheus-tsdb-0.7.1) -; ("go-github-com-prometheus-procfs-0.0.0-20190507164030-5867b95ac084" -; ,go-github-com-prometheus-procfs-0.0.0-20190507164030-5867b95ac084) -; ("go-github-com-prometheus-common-0.4.0" -; ,go-github-com-prometheus-common-0.4.0) -; ("go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90" -; ,go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90) -; ("go-github-com-golang-protobuf-1.3.1" -; ,go-github-com-golang-protobuf-1.3.1) -; ("go-github-com-go-logfmt-logfmt-0.4.0" -; ,go-github-com-go-logfmt-logfmt-0.4.0) -; ("go-github-com-beorn7-perks-1.0.0" -; ,go-github-com-beorn7-perks-1.0.0))) -; (home-page "https://github.com/prometheus/client_golang") -; (synopsis "Prometheus Go client library") -; (description -; "This is the @url{http://golang.org,Go} client library for -;@url{http://prometheus.io,Prometheus}. It has two separate parts, one for -;instrumenting application code, and one for creating clients that talk to the -;Prometheus HTTP API.") -; (license license:asl2.0))) -; -;(define-public go-github-com-soheilhy-cmux-0.1.4 -; (package -; (name "go-github-com-soheilhy-cmux") -; (version "0.1.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/soheilhy/cmux") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1f736g68d9vwlyfb6g0fxkr0r875369xafk30cz8kaq5niaqwv0h")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/soheilhy/cmux")) -; (home-page "https://github.com/soheilhy/cmux") -; (synopsis "cmux: Connection Mux") -; (description -; "Package cmux is a library to multiplex network connections based on -;their payload. Using cmux, you can serve different protocols from the -;same listener. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-spf13-afero-1.1.2 -; (package -; (name "go-github-com-spf13-afero") -; (version "1.1.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/spf13/afero") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0miv4faf5ihjfifb1zv6aia6f6ik7h1s4954kcb8n6ixzhx9ck6k")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/spf13/afero")) -; (home-page "https://github.com/spf13/afero") -; (synopsis "Overview") -; (description -; "This package provides a FileSystem Abstraction System for Go") -; (license license:asl2.0))) -; -;(define-public go-github-com-spf13-cast-1.3.0 -; (package -; (name "go-github-com-spf13-cast") -; (version "1.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/spf13/cast") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0xq1ffqj8y8h7dcnm0m9lfrh0ga7pssnn2c1dnr09chqbpn4bdc5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/spf13/cast")) -; (propagated-inputs -; `(("go-github-com-stretchr-testify-1.2.2" -; ,go-github-com-stretchr-testify-1.2.2) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://github.com/spf13/cast") -; (synopsis "cast") -; (description "Package cast provides easy and safe casting in Go. -;") -; (license license:expat))) -; -;(define-public go-github-com-spf13-jwalterweatherman-1.0.0 -; (package -; (name "go-github-com-spf13-jwalterweatherman") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/spf13/jwalterweatherman") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "093fmmvavv84pv4q84hav7ph3fmrq87bvspjj899q0qsx37yvdr8")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/spf13/jwalterweatherman")) -; (home-page "https://github.com/spf13/jwalterweatherman") -; (synopsis "jWalterWeatherman") -; (description -; "Seamless printing to the terminal (stdout) and logging to a io.Writer -;(file) thatâ\x80\x99s as easy to use as fmt.Println.") -; (license license:expat))) -; -;(define-public go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5 -; (package -; (name "go-github-com-tmc-grpc-websocket-proxy") -; (version "0.0.0-20190109142713-0ad062ec5ee5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/tmc/grpc-websocket-proxy") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1anw4v9wspnw9xf2z5r9w0sszwjklyanl0l85wgg6nxak9gnrqp4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/tmc/grpc-websocket-proxy")) -; (home-page "https://github.com/tmc/grpc-websocket-proxy") -; (synopsis "grpc-websocket-proxy") -; (description -; "Wrap your grpc-gateway mux with this helper to expose streaming endpoints over websockets.") -; (license license:expat))) -; -;(define-public go-github-com-ugorji-go-1.1.4 -; (package -; (name "go-github-com-ugorji-go") -; (version "1.1.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/ugorji/go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ma2qvn5wqvjidpdz74x832a813qnr1cxbx6n6n125ak9b3wbn5w")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/ugorji/go")) -; (home-page "https://github.com/ugorji/go") -; (synopsis "go-codec") -; (description -; "This repository contains the @code{go-codec} library, the @code{codecgen} tool and -;benchmarks for comparing against other libraries.") -; (license license:expat))) -; -;(define-public go-github-com-xiang90-probing-0.0.0-20190116061207-43a291ad63a2 -; (package -; (name "go-github-com-xiang90-probing") -; (version "0.0.0-20190116061207-43a291ad63a2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/xiang90/probing") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1z22ms16j5j42775mf31isanwx2pwr1d8wqw8006dczjv36qnz5i")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/xiang90/probing")) -; (home-page "https://github.com/xiang90/probing") -; (synopsis "Getting Started") -; (description "We first need to serve the probing HTTP handler.") -; (license license:expat))) -; -;(define-public go-github-com-xordataexchange-crypt-0.0.3-0.20170626215501-b2862e3d0a77 -; (package -; (name "go-github-com-xordataexchange-crypt") -; (version "0.0.3-0.20170626215501-b2862e3d0a77") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/xordataexchange/crypt") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "04q3856anpzl4gdfgmg7pbp9cx231nkz3ymq2xp27rnmmwhfxr8y")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/xordataexchange/crypt")) -; (home-page "https://github.com/xordataexchange/crypt") -; (synopsis "crypt") -; (description -; "You can use crypt as a command line tool or as a configuration library:") -; (license license:expat))) -; -;(define-public go-go-etcd-io-bbolt-1.3.2 -; (package -; (name "go-go-etcd-io-bbolt") -; (version "1.3.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/etcd-io/bbolt") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "13d5l6p6c5wvkr6vn9hkhz9c593qifn7fgx0hg4d6jcvg1y0bnm2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "go.etcd.io/bbolt")) -; (home-page "https://go.etcd.io/bbolt") -; (synopsis "bbolt") -; (description -; "package bbolt implements a low-level key/value store in pure Go. It supports -;fully serializable transactions, ACID semantics, and lock-free MVCC with -;multiple readers and a single writer. Bolt can be used for projects that -;want a simple data store without the need to add large dependencies such as -;Postgres or MySQL. -;") -; (license license:expat))) -; -;(define-public go-go-uber-org-atomic-1.4.0 -; (package -; (name "go-go-uber-org-atomic") -; (version "1.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/uber-go/atomic") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0c6yzx15c20719xii3dm0vyjd8i9jx45m0wh5yp1zf29b0gbljcy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "go.uber.org/atomic")) -; (home-page "https://go.uber.org/atomic") -; (synopsis "atomic") -; (description -; "Package atomic provides simple wrappers around numerics to enforce atomic -;access. -;") -; (license license:expat))) -; -;(define-public go-go-uber-org-multierr-1.1.0 -; (package -; (name "go-go-uber-org-multierr") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/uber-go/multierr") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1slfc6syvw8cvr6rbrjsy6ja5w8gsx0f8aq8qm16rp2x5c2pj07w")))) -; (build-system go-build-system) -; (arguments '(#:import-path "go.uber.org/multierr")) -; (home-page "https://go.uber.org/multierr") -; (synopsis "multierr") -; (description -; "Package multierr allows combining one or more errors together. -;") -; (license license:expat))) -; -;(define-public go-go-uber-org-zap-1.10.0 -; (package -; (name "go-go-uber-org-zap") -; (version "1.10.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/uber-go/zap") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "10hdzr1rghwbsl6bbd30779dx44fh9mg9pq8d2cgqlknqxxpvpvr")))) -; (build-system go-build-system) -; (arguments '(#:import-path "go.uber.org/zap")) -; (home-page "https://go.uber.org/zap") -; (synopsis "â\x9a¡ zap") -; (description "Package zap provides fast, structured, leveled logging. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-net-0.0.0-20190522155817-f3200d17e092 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20190522155817-f3200d17e092") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1mskh7p80dd8j1ffy16917d3cyy7lfh1gb56n4rq9g1bwckz4lwy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-time-0.0.0-20190308202827-9d24e82272b4 -; (package -; (name "go-golang-org-x-time") -; (version "0.0.0-20190308202827-9d24e82272b4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/time") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1f5nkr4vys2vbd8wrwyiq2f5wcaahhpxmia85d1gshcbqjqf8dkb")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/time")) -; (home-page "https://golang.org/x/time") -; (synopsis "Go Time") -; (description "This repository provides supplementary Go time packages.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-grpc-1.21.0 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.21.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0zxjlxnvjqfn6zfx7gbmqhadx0j788vxfn95g1ngbmjkgppzsnfp")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" -; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) -; ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" -; ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) -; ("go-google-golang-org-appengine-1.1.0" -; ,go-google-golang-org-appengine-1.1.0) -; ("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" -; ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" -; ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-github-com-google-go-cmp-0.2.0" -; ,go-github-com-google-go-cmp-0.2.0) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0) -; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-client9-misspell-0.3.4" -; ,go-github-com-client9-misspell-0.3.4) -; ("go-github-com-burntsushi-toml-0.3.1" -; ,go-github-com-burntsushi-toml-0.3.1) -; ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-spf13-viper-1.4.0 -; (package -; (name "go-github-com-spf13-viper") -; (version "1.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/spf13/viper") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1zpzxvn13wpvbblbbn73svaq39zgxfjqhci9d68g3qf309pcfy19")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/spf13/viper")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) -; ("go-google-golang-org-grpc-1.21.0" ,go-google-golang-org-grpc-1.21.0) -; ("go-golang-org-x-time-0.0.0-20190308202827-9d24e82272b4" -; ,go-golang-org-x-time-0.0.0-20190308202827-9d24e82272b4) -; ("go-golang-org-x-net-0.0.0-20190522155817-f3200d17e092" -; ,go-golang-org-x-net-0.0.0-20190522155817-f3200d17e092) -; ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) -; ("go-go-uber-org-multierr-1.1.0" ,go-go-uber-org-multierr-1.1.0) -; ("go-go-uber-org-atomic-1.4.0" ,go-go-uber-org-atomic-1.4.0) -; ("go-go-etcd-io-bbolt-1.3.2" ,go-go-etcd-io-bbolt-1.3.2) -; ("go-github-com-xordataexchange-crypt-0.0.3-0.20170626215501-b2862e3d0a77" -; ,go-github-com-xordataexchange-crypt-0.0.3-0.20170626215501-b2862e3d0a77) -; ("go-github-com-xiang90-probing-0.0.0-20190116061207-43a291ad63a2" -; ,go-github-com-xiang90-probing-0.0.0-20190116061207-43a291ad63a2) -; ("go-github-com-ugorji-go-1.1.4" ,go-github-com-ugorji-go-1.1.4) -; ("go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5" -; ,go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5) -; ("go-github-com-stretchr-testify-1.2.2" -; ,go-github-com-stretchr-testify-1.2.2) -; ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) -; ("go-github-com-spf13-jwalterweatherman-1.0.0" -; ,go-github-com-spf13-jwalterweatherman-1.0.0) -; ("go-github-com-spf13-cast-1.3.0" ,go-github-com-spf13-cast-1.3.0) -; ("go-github-com-spf13-afero-1.1.2" ,go-github-com-spf13-afero-1.1.2) -; ("go-github-com-soheilhy-cmux-0.1.4" -; ,go-github-com-soheilhy-cmux-0.1.4) -; ("go-github-com-prometheus-client-golang-0.9.3" -; ,go-github-com-prometheus-client-golang-0.9.3) -; ("go-github-com-pelletier-go-toml-1.2.0" -; ,go-github-com-pelletier-go-toml-1.2.0) -; ("go-github-com-mitchellh-mapstructure-1.1.2" -; ,go-github-com-mitchellh-mapstructure-1.1.2) -; ("go-github-com-magiconair-properties-1.8.0" -; ,go-github-com-magiconair-properties-1.8.0) -; ("go-github-com-jonboulle-clockwork-0.1.0" -; ,go-github-com-jonboulle-clockwork-0.1.0) -; ("go-github-com-hashicorp-hcl-1.0.0" -; ,go-github-com-hashicorp-hcl-1.0.0) -; ("go-github-com-grpc-ecosystem-grpc-gateway-1.9.0" -; ,go-github-com-grpc-ecosystem-grpc-gateway-1.9.0) -; ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" -; ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) -; ("go-github-com-grpc-ecosystem-go-grpc-middleware-1.0.0" -; ,go-github-com-grpc-ecosystem-go-grpc-middleware-1.0.0) -; ("go-github-com-gorilla-websocket-1.4.0" -; ,go-github-com-gorilla-websocket-1.4.0) -; ("go-github-com-google-btree-1.0.0" ,go-github-com-google-btree-1.0.0) -; ("go-github-com-golang-groupcache-0.0.0-20190129154638-5b532d6fd5ef" -; ,go-github-com-golang-groupcache-0.0.0-20190129154638-5b532d6fd5ef) -; ("go-github-com-gogo-protobuf-1.2.1" -; ,go-github-com-gogo-protobuf-1.2.1) -; ("go-github-com-fsnotify-fsnotify-1.4.7" -; ,go-github-com-fsnotify-fsnotify-1.4.7) -; ("go-github-com-dgrijalva-jwt-go-3.2.0+incompatible" -; ,go-github-com-dgrijalva-jwt-go-3.2.0+incompatible) -; ("go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f" -; ,go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f) -; ("go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e" -; ,go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e) -; ("go-github-com-coreos-go-semver-0.2.0" -; ,go-github-com-coreos-go-semver-0.2.0) -; ("go-github-com-coreos-etcd-3.3.10+incompatible" -; ,go-github-com-coreos-etcd-3.3.10+incompatible) -; ("go-github-com-coreos-bbolt-1.3.2" ,go-github-com-coreos-bbolt-1.3.2) -; ("go-github-com-armon-consul-api-0.0.0-20180202201655-eb2c6b5be1b6" -; ,go-github-com-armon-consul-api-0.0.0-20180202201655-eb2c6b5be1b6))) -; (home-page "https://github.com/spf13/viper") -; (synopsis "Install") -; (description "Many Go projects are built using Viper including:") -; (license license:expat))) -; -;(define-public go-github-com-spf13-cobra-1.0.0 -; (package -; (name "go-github-com-spf13-cobra") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/spf13/cobra") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0vbppqqhby302a5ayn0296jqr71qkcd4c9am7wzsk6z71fwdsa7h")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/spf13/cobra")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) -; ("go-github-com-spf13-viper-1.4.0" ,go-github-com-spf13-viper-1.4.0) -; ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) -; ("go-github-com-mitchellh-go-homedir-1.1.0" -; ,go-github-com-mitchellh-go-homedir-1.1.0) -; ("go-github-com-inconshreveable-mousetrap-1.0.0" -; ,go-github-com-inconshreveable-mousetrap-1.0.0) -; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" -; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0))) -; (home-page "https://github.com/spf13/cobra") -; (synopsis "Table of Contents") -; (description -; "Package cobra is a commander providing a simple interface to create powerful modern CLI interfaces. -;In addition to providing an interface, Cobra simultaneously provides a controller to organize your application code. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-continuity-0.1.0 -; (package -; (name "go-github-com-containerd-continuity") -; (version "0.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/continuity") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1h756l1xc31sc4zc1d3hmh64kl9qm5vpbbw0c93hrasn51ki96yz")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/continuity")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" -; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) -; ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" -; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) -; ("go-github-com-spf13-cobra-1.0.0" ,go-github-com-spf13-cobra-1.0.0) -; ("go-github-com-sirupsen-logrus-1.7.0" -; ,go-github-com-sirupsen-logrus-1.7.0) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-go-digest-1.0.0" -; ,go-github-com-opencontainers-go-digest-1.0.0) -; ("go-github-com-golang-protobuf-1.3.5" -; ,go-github-com-golang-protobuf-1.3.5) -; ("go-github-com-dustin-go-humanize-1.0.0" -; ,go-github-com-dustin-go-humanize-1.0.0) -; ("go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898" -; ,go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898))) -; (home-page "https://github.com/containerd/continuity") -; (synopsis "continuity") -; (description -; "This package provides a transport-agnostic, filesystem metadata manifest system") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-fifo-1.0.0 -; (package -; (name "go-github-com-containerd-fifo") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/fifo") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1l6jy9b4mjcj7pbz1n79zmipni1dz60rf5n66vn5p2ggavbq7h1q")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/fifo")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" -; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) -; (home-page "https://github.com/containerd/fifo") -; (synopsis "fifo") -; (description "Go package for handling fifos in a sane way.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-console-1.0.1 -; (package -; (name "go-github-com-containerd-console") -; (version "1.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/console") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0s837wj6h80fykk2pdmaji75rw9c3863by0gh0cq51hh0lgyjpvg")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/console")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f" -; ,go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) -; (home-page "https://github.com/containerd/console") -; (synopsis "console") -; (description -; "Golang package for dealing with consoles. Light on deps and a simple API.") -; (license license:asl2.0))) -; -;(define-public go-github-com-opencontainers-runtime-spec-1.0.2 -; (package -; (name "go-github-com-opencontainers-runtime-spec") -; (version "1.0.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/runtime-spec") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "19w981vcmd5lp2hy0630x6ayb8zz17n2vxqm2py5mg945xflcizg")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) -; (home-page "https://github.com/opencontainers/runtime-spec") -; (synopsis "Open Container Initiative Runtime Specification") -; (description -; "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20200916030750-2334cc1a136f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1lc7d513gwwpr6r7f55743684n1qsgn9vmg6b79x0hsp1x90z4mr")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-containerd-go-runc-1.0.0 -; (package -; (name "go-github-com-containerd-go-runc") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/go-runc") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0xk30dzzxmd83bnfyilplizlxh1pg1gqz2jrq9wz9rqqkxazc03n")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/go-runc")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f" -; ,go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f) -; ("go-github-com-sirupsen-logrus-1.7.0" -; ,go-github-com-sirupsen-logrus-1.7.0) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-runtime-spec-1.0.2" -; ,go-github-com-opencontainers-runtime-spec-1.0.2) -; ("go-github-com-containerd-console-1.0.1" -; ,go-github-com-containerd-console-1.0.1))) -; (home-page "https://github.com/containerd/go-runc") -; (synopsis "go-runc") -; (description -; "This is a package for consuming the @url{https://github.com/opencontainers/runc,runc} binary in your Go applications. -;It tries to expose all the settings and features of the runc CLI. If there is something missing then add it, its opensource!") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-tools-0.0.0-20181030221726-6c7e314b6563 -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20181030221726-6c7e314b6563") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1m1n6r8v6mrlh0yvlz3qxz4s7jc7nis0zf3dfl1i6hqh5xblkwnw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-github-com-kisielk-errcheck-1.2.0 -; (package -; (name "go-github-com-kisielk-errcheck") -; (version "1.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kisielk/errcheck") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0am6g10ipdxw84byscm7shda654882wjcbinq5c4696m6mhi2qrd")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kisielk/errcheck")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20181030221726-6c7e314b6563" -; ,go-golang-org-x-tools-0.0.0-20181030221726-6c7e314b6563))) -; (home-page "https://github.com/kisielk/errcheck") -; (synopsis "errcheck") -; (description -; "errcheck is a program for checking for unchecked errors in go programs.") -; (license license:expat))) -; -;(define-public go-github-com-gogo-protobuf-1.3.1 -; (package -; (name "go-github-com-gogo-protobuf") -; (version "1.3.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/gogo/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0x77x64sxjgfhmbijqfzmj8h4ar25l2w97h01q3cqs1wk7zfnkhp")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/gogo/protobuf")) -; (propagated-inputs -; `(("go-github-com-kisielk-gotool-1.0.0" -; ,go-github-com-kisielk-gotool-1.0.0) -; ("go-github-com-kisielk-errcheck-1.2.0" -; ,go-github-com-kisielk-errcheck-1.2.0))) -; (home-page "https://github.com/gogo/protobuf") -; (synopsis "Protocol Buffers for Go with Gadgets") -; (description -; "gogoprotobuf is a fork of @url{https://github.com/golang/protobuf,golang/protobuf} with extra code generation features.") -; (license license:bsd-3))) -; -;(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.2 -; (package -; (name "go-github-com-konsorten-go-windows-terminal-sequences") -; (version "1.0.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/konsorten/go-windows-terminal-sequences") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "09mn209ika7ciy87xf2x31dq5fnqw39jidgaljvmqxwk7ff1hnx7")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) -; (home-page "https://github.com/konsorten/go-windows-terminal-sequences") -; (synopsis "Windows Terminal Sequences") -; (description -; "This library allow for enabling Windows terminal color support for Go.") -; (license license:expat))) -; -;(define-public go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1 -; (package -; (name "go-github-com-prometheus-procfs") -; (version "0.0.0-20190522114515-bc1a522cf7b1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/procfs") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "13ws66kd65zbhk31zmax9qgmh22fzjcgs5ihy4fm1d775w6bmdzx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/procfs")) -; (propagated-inputs -; `(("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" -; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4))) -; (home-page "https://github.com/prometheus/procfs") -; (synopsis "procfs") -; (description -; "Package procfs provides functions to retrieve system, kernel and process -;metrics from the pseudo-filesystem proc. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.1 -; (package -; (name "go-github-com-konsorten-go-windows-terminal-sequences") -; (version "1.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/konsorten/go-windows-terminal-sequences") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1lchgf27n276vma6iyxa0v1xds68n2g8lih5lavqnx5x6q5pw2ip")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) -; (home-page "https://github.com/konsorten/go-windows-terminal-sequences") -; (synopsis "Windows Terminal Sequences") -; (description -; "This library allow for enabling Windows terminal color support for Go.") -; (license license:expat))) -; -;(define-public go-github-com-stretchr-objx-0.1.1 -; (package -; (name "go-github-com-stretchr-objx") -; (version "0.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/objx") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0iph0qmpyqg4kwv8jsx6a56a7hhqq8swrazv40ycxk9rzr0s8yls")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/objx")) -; (home-page "https://github.com/stretchr/objx") -; (synopsis "Objx") -; (description -; "Objx - Go package for dealing with maps, slices, JSON and other data. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190422165155-953cdadca894") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0gkha4whk8xkcv3isigbs250akag99isxnd3v9xmy0kl3g88hxy1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-sirupsen-logrus-1.4.2 -; (package -; (name "go-github-com-sirupsen-logrus") -; (version "1.4.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/sirupsen/logrus") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "087k2lxrr9p9dh68yw71d05h5g9p5v26zbwd6j7lghinjfaw334x")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/sirupsen/logrus")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894" -; ,go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894) -; ("go-github-com-stretchr-testify-1.2.2" -; ,go-github-com-stretchr-testify-1.2.2) -; ("go-github-com-stretchr-objx-0.1.1" -; ,go-github-com-stretchr-objx-0.1.1) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.1" -; ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.1) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://github.com/sirupsen/logrus") -; (synopsis "Logrus") -; (description -; "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20200120151820-655fe14d7479") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "133yxmdcny5b0r8775m52sj7zja36riv0x2437k7jccywqi8nx32")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20200117163144-32f20d992d24 -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20200117163144-32f20d992d24") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1kl696jd8fykykjjbngqpgqsngajwbbrvrpl1q0804l6hz8qk858")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" -; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) -; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) -; ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" -; ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) -; ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" -; ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) -; ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" -; ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-grpc-1.26.0 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.26.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1qsb2mcswpp3vd7i9gfvz4a3ypdwk2svhhn09nyywgb1vvw80krv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" -; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-github-com-google-go-cmp-0.2.0" -; ,go-github-com-google-go-cmp-0.2.0) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2) -; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" -; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) -; ("go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473" -; ,go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-ttrpc-1.0.2 -; (package -; (name "go-github-com-containerd-ttrpc") -; (version "1.0.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/ttrpc") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0plkm3yrr20vccfl0x8dxys3iphjwnmi285in0pivff6p9djf3yz")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/ttrpc")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.26.0" ,go-google-golang-org-grpc-1.26.0) -; ("go-google-golang-org-genproto-0.0.0-20200117163144-32f20d992d24" -; ,go-google-golang-org-genproto-0.0.0-20200117163144-32f20d992d24) -; ("go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479" -; ,go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479) -; ("go-github-com-sirupsen-logrus-1.4.2" -; ,go-github-com-sirupsen-logrus-1.4.2) -; ("go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1" -; ,go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.2" -; ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.2) -; ("go-github-com-gogo-protobuf-1.3.1" -; ,go-github-com-gogo-protobuf-1.3.1))) -; (home-page "https://github.com/containerd/ttrpc") -; (synopsis "ttrpc") -; (description "GRPC for low-memory environments.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-typeurl-1.0.2 -; (package -; (name "go-github-com-containerd-typeurl") -; (version "1.0.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/typeurl") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0wvfxlxgkln11d9s6rxay965c715bnpk203klbsq8m8qpjqrz620")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/typeurl")) -; (propagated-inputs -; `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-gogo-protobuf-1.3.2" -; ,go-github-com-gogo-protobuf-1.3.2))) -; (home-page "https://github.com/containerd/typeurl") -; (synopsis "typeurl") -; (description -; "This package provides a Go package for managing the registration, marshaling, and unmarshaling of encoded types.") -; (license license:asl2.0))) -; -;(define-public go-github-com-yuin-goldmark-1.1.27 -; (package -; (name "go-github-com-yuin-goldmark") -; (version "1.1.27") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/yuin/goldmark") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1872cqnii0kwiqcy81yin0idvjy5mdy4zlzz0csb319lcjs3b923")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/yuin/goldmark")) -; (home-page "https://github.com/yuin/goldmark") -; (synopsis "goldmark") -; (description -; "Package goldmark implements functions to convert markdown text to a desired format. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-mod-0.2.0 -; (package -; (name "go-golang-org-x-mod") -; (version "0.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/mod") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1fp6885dclq77mh73v7i54v2b9llpv4di193zc8vmsbbkkc483cl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/mod")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" -; ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) -; ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" -; ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) -; ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" -; ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) -; (home-page "https://golang.org/x/mod") -; (synopsis "mod") -; (description -; "This repository holds packages for writing tools -;that work directly with Go module mechanics. -;That is, it is for direct manipulation of Go modules themselves.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20200226121028-0de0cce0169b") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1db7s5kbzyh2zd5lpv05n7hp8wbwdvgk0wpiwrlnig94mkr0y5aq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e -; (package -; (name "go-golang-org-x-sync") -; (version "0.0.0-20190911185100-cd5d95a43a6e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sync") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1nqkyz2y1qvqcma52ijh02s8aiqmkfb95j08f6zcjhbga3ds6hds")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sync")) -; (home-page "https://golang.org/x/sync") -; (synopsis "Go Sync") -; (description -; "This repository provides Go concurrency primitives in addition to the -;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20200619180055-7c47624df98f -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20200619180055-7c47624df98f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1fhzwd32j7w9g3algq0zj8g7ivx3f0mn9nx9mj046wdscryn49mk")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" -; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) -; ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" -; ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) -; ("go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b" -; ,go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b) -; ("go-golang-org-x-mod-0.2.0" ,go-golang-org-x-mod-0.2.0) -; ("go-github-com-yuin-goldmark-1.1.27" -; ,go-github-com-yuin-goldmark-1.1.27))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-github-com-kisielk-errcheck-1.5.0 -; (package -; (name "go-github-com-kisielk-errcheck") -; (version "1.5.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kisielk/errcheck") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ci3jz2px74pfmr42jv7dpx7fdzx08vai4czp9fkiyb0gcaiqsk6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kisielk/errcheck")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20200619180055-7c47624df98f" -; ,go-golang-org-x-tools-0.0.0-20200619180055-7c47624df98f))) -; (home-page "https://github.com/kisielk/errcheck") -; (synopsis "errcheck") -; (description -; "errcheck is a program for checking for unchecked errors in go programs.") -; (license license:expat))) -; -;(define-public go-github-com-kisielk-gotool-1.0.0 -; (package -; (name "go-github-com-kisielk-gotool") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kisielk/gotool") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "14af2pa0ssyp8bp2mvdw184s5wcysk6akil3wzxmr05wwy951iwn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kisielk/gotool")) -; (home-page "https://github.com/kisielk/gotool") -; (synopsis "gotool") -; (description -; "Package gotool contains utility functions used to implement the standard -;\"cmd/go\" tool, provided as a convenience to developers who want to write -;tools with similar semantics. -;") -; (license license:expat))) -; -;(define-public go-github-com-yuin-goldmark-1.2.1 -; (package -; (name "go-github-com-yuin-goldmark") -; (version "1.2.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/yuin/goldmark") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "12rsnsf65drcp0jfw2jl9w589vsn3pxdk1zh3v9q908iigngrcmy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/yuin/goldmark")) -; (home-page "https://github.com/yuin/goldmark") -; (synopsis "goldmark") -; (description -; "Package goldmark implements functions to convert markdown text to a desired format. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20191011191535-87dc89f01550") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0z4i1m2yn3f31ci7wvcm2rxkx2yiv7a78mfzklncmsz2k97rlh2g")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" -; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) -; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" -; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7 -; (package -; (name "go-golang-org-x-xerrors") -; (version "0.0.0-20190717185122-a985d3407aa7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/xerrors") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "00wzr5w8aadipgc3rkk8f11i41znskfj9ix5nhhaxyg7isrslgcj")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/xerrors")) -; (home-page "https://golang.org/x/xerrors") -; (synopsis #f) -; (description -; "Package xerrors implements functions to manipulate errors. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20191119224855-298f0cb1881e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0l4pqwib2wnfnix6nvxl0yrq87ipi7ff1rz6z5bxfzy9dki1nzmv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7" -; ,go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7) -; ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" -; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) -; ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" -; ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898 -; (package -; (name "go-golang-org-x-xerrors") -; (version "0.0.0-20191011141410-1b5146add898") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/xerrors") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0w2akj91krxjag0xdhsg78470888nicc5ismc2ap9jqpss6v1zih")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/xerrors")) -; (home-page "https://golang.org/x/xerrors") -; (synopsis #f) -; (description -; "Package xerrors implements functions to manipulate errors. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-mod-0.3.0 -; (package -; (name "go-golang-org-x-mod") -; (version "0.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/mod") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ldgbx2zpprbsfn6p8pfgs4nn87gwbfcv2z0fa7n8alwsq2yw78q")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/mod")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" -; ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) -; ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" -; ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) -; ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" -; ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) -; (home-page "https://golang.org/x/mod") -; (synopsis "mod") -; (description -; "This repository holds packages for writing tools -;that work directly with Go module mechanics. -;That is, it is for direct manipulation of Go modules themselves.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20201021035429-f5854403a974 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20201021035429-f5854403a974") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1vw63zpmhi337f3gc432x3wkib4j2ia8dy7if31wxwb9dgqvy222")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) -; ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" -; ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) -; ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" -; ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9 -; (package -; (name "go-golang-org-x-sync") -; (version "0.0.0-20201020160332-67f06af15bc9") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sync") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "093p4panc808ak5bamzz7m9nb0xxib7778jpnr6f0xkz1n4fzyw5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sync")) -; (home-page "https://golang.org/x/sync") -; (synopsis "Go Sync") -; (description -; "This repository provides Go concurrency primitives in addition to the -;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20210106214847-113979e3529a -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20210106214847-113979e3529a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0pq1a7hkamqdwsajyfrb27s56cvxz5838krsgyqz346s2djwdrzl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" -; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) -; ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" -; ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) -; ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" -; ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) -; ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) -; ("go-github-com-yuin-goldmark-1.2.1" -; ,go-github-com-yuin-goldmark-1.2.1))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-github-com-gogo-protobuf-1.3.2 -; (package -; (name "go-github-com-gogo-protobuf") -; (version "1.3.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/gogo/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0dfv1bhx5zhb5bsj5sj757nkacf2swp1ajpcyj9d0b37n602m18a")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/gogo/protobuf")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20210106214847-113979e3529a" -; ,go-golang-org-x-tools-0.0.0-20210106214847-113979e3529a) -; ("go-github-com-kisielk-gotool-1.0.0" -; ,go-github-com-kisielk-gotool-1.0.0) -; ("go-github-com-kisielk-errcheck-1.5.0" -; ,go-github-com-kisielk-errcheck-1.5.0))) -; (home-page "https://github.com/gogo/protobuf") -; (synopsis "Protocol Buffers for Go with Gadgets") -; (description -; "gogoprotobuf is a fork of @url{https://github.com/golang/protobuf,golang/protobuf} with extra code generation features.") -; (license license:bsd-3))) -; -;(define-public go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d -; (package -; (name "go-github-com-opencontainers-runtime-spec") -; (version "1.0.3-0.20200929063507-e6143ca7d51d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/runtime-spec") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "06yk9kjif5mgi46d0hcgqcikdcplf3yflqbj8h6ljxshp6jzc49w")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) -; (home-page "https://github.com/opencontainers/runtime-spec") -; (synopsis "Open Container Initiative Runtime Specification") -; (description -; "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") -; (license license:asl2.0))) -; -;(define-public go-github-com-urfave-cli-1.22.2 -; (package -; (name "go-github-com-urfave-cli") -; (version "1.22.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/urfave/cli") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "10mcnvi5qmn00vpyk6si8gjka7p654wr9hac4zc9w5h3ickhvbdc")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/urfave/cli")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) -; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d" -; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d) -; ("go-github-com-burntsushi-toml-0.3.1" -; ,go-github-com-burntsushi-toml-0.3.1))) -; (home-page "https://github.com/urfave/cli") -; (synopsis "cli") -; (description -; "Package cli provides a minimal framework for creating and organizing command line -;Go applications. cli is designed to be easy to understand and write, the most simple -;cli application can be written as follows: -;") -; (license license:expat))) -; -;(define-public go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6 -; (package -; (name "go-github-com-golang-groupcache") -; (version "0.0.0-20190702054246-869f871628b6") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/groupcache") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0r4nk8129bvx50qb4xzjaay39b2h6k7cbdqqzdlanmc82ygczsbw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/groupcache")) -; (home-page "https://github.com/golang/groupcache") -; (synopsis "groupcache") -; (description -; "Package groupcache provides a data loading mechanism with caching -;and de-duplication that works across a set of peer processes. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-golang-protobuf-1.3.1 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.3.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "15am4s4646qy6iv0g3kkqq52rzykqjhm4bf08dk0fy2r58knpsyl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-github-com-stretchr-testify-1.4.0 -; (package -; (name "go-github-com-stretchr-testify") -; (version "1.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/testify") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "187i5g88sxfy4vxpm7dw1gwv29pa2qaq475lxrdh5livh69wqfjb")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/testify")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) -; ("go-github-com-stretchr-objx-0.1.0" -; ,go-github-com-stretchr-objx-0.1.0) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-davecgh-go-spew-1.1.0" -; ,go-github-com-davecgh-go-spew-1.1.0))) -; (home-page "https://github.com/stretchr/testify") -; (synopsis "Testify - Thou Shalt Write Tests") -; (description -; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20190620200207-3b0461eec859") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0l00c8l0a8xnv6qdpwfzxxsr58jggacgzdrwiprrfx2xqm37b6d5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190502145724-3ef323f4f1fd") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "15iw4gjvrnrx98rlny1qcaprp3577rh2b77byb38dr6m3q42rvc6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-text-0.3.2 -; (package -; (name "go-golang-org-x-text") -; (version "0.3.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/text") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0flv9idw0jm5nm8lx25xqanbkqgfiym6619w575p7nrdh0riqwqh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/text")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" -; ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) -; (home-page "https://golang.org/x/text") -; (synopsis "Go Text") -; (description -; "text is a repository of text-related packages related to internationalization -;(i18n) and localization (l10n), such as character encodings, text -;transformations, and locale-specific text handling. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6 -; (package -; (name "go-golang-org-x-sync") -; (version "0.0.0-20190227155943-e225da77a7e6") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sync") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0bh3583smcfw6jw3w6lp0za93rz7hpxfdz8vhxng75b7a6vdlw4p")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sync")) -; (home-page "https://golang.org/x/sync") -; (synopsis "Go Sync") -; (description -; "This repository provides Go concurrency primitives in addition to the -;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20190425155659-357c62f0e4bb") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1h1a0wys83cc86s4w2hqmz78ixijw8f7qchmiwdv5xjvpg0i27c2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" -; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) -; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) -; ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" -; ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) -; ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" -; ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) -; ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" -; ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd) -; ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" -; ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) -; ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" -; ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-grpc-1.20.1 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.20.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0rj3fs6jillapiwnpkfn3v2jbl7a3zsb0lys4srswl26hjijviqq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" -; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) -; ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" -; ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) -; ("go-google-golang-org-appengine-1.1.0" -; ,go-google-golang-org-appengine-1.1.0) -; ("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" -; ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" -; ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0) -; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-client9-misspell-0.3.4" -; ,go-github-com-client9-misspell-0.3.4) -; ("go-github-com-burntsushi-toml-0.3.1" -; ,go-github-com-burntsushi-toml-0.3.1) -; ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-go-opencensus-io-0.22.3 -; (package -; (name "go-go-opencensus-io") -; (version "0.22.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/census-instrumentation/opencensus-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0xj16iq5jp26hi2py7lsd8cvqh651fgn39y05gzvjdi88d9xd3nw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "go.opencensus.io")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.20.1" ,go-google-golang-org-grpc-1.20.1) -; ("go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb" -; ,go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb) -; ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) -; ("go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd" -; ,go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd) -; ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" -; ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) -; ("go-github-com-stretchr-testify-1.4.0" -; ,go-github-com-stretchr-testify-1.4.0) -; ("go-github-com-google-go-cmp-0.3.0" -; ,go-github-com-google-go-cmp-0.3.0) -; ("go-github-com-golang-protobuf-1.3.1" -; ,go-github-com-golang-protobuf-1.3.1) -; ("go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6" -; ,go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6))) -; (home-page "https://go.opencensus.io") -; (synopsis "OpenCensus Libraries for Go") -; (description "Package opencensus contains Go support for OpenCensus. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-sys-0.0.0-20210324051608-47abb6519492 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20210324051608-47abb6519492") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "19g0pa8lazad5kcq396ggg9x1d6sx39rw9brz3hklx71gg1jd3ja")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-pkg-errors-0.8.1 -; (package -; (name "go-github-com-pkg-errors") -; (version "0.8.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/pkg/errors") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0g5qcb4d4fd96midz0zdk8b9kz8xkzwfa8kr1cliqbg8sxsy5vd1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/pkg/errors")) -; (home-page "https://github.com/pkg/errors") -; (synopsis "errors") -; (description "Package errors provides simple error handling primitives. -;") -; (license license:bsd-2))) -; -;(define-public go-github-com-spf13-pflag-1.0.3 -; (package -; (name "go-github-com-spf13-pflag") -; (version "1.0.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/spf13/pflag") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1cj3cjm7d3zk0mf1xdybh0jywkbbw7a6yr3y22x9sis31scprswd")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/spf13/pflag")) -; (home-page "https://github.com/spf13/pflag") -; (synopsis "Description") -; (description -; "Package pflag is a drop-in replacement for Go's flag package, implementing -;POSIX/GNU-style --flags. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20190624222133-a101b041ded4 -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20190624222133-a101b041ded4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1pm50dybm5wixjjspvfpafjmiy81b1zp08h13gxc5cylrfgncrfl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" -; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-gotest-tools-v3-3.0.3 -; (package -; (name "go-gotest-tools-v3") -; (version "3.0.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/gotestyourself/gotest.tools") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1h316233n33lkfhbak8ljdj5i8df6hcwwm48n200svf22x3d95ww")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gotest.tools/v3" #:unpack-path "gotest.tools/v3")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20190624222133-a101b041ded4" -; ,go-golang-org-x-tools-0.0.0-20190624222133-a101b041ded4) -; ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) -; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0))) -; (home-page "https://gotest.tools/v3") -; (synopsis "gotest.tools") -; (description -; "Package gotesttools is a collection of packages to augment `testing` and -;support common patterns. -;") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-grpc-1.27.1 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.27.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "09phrrsafgq6hnbw8cawvx44bdpk1p584fys17x1bwn0j0451zzs")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" -; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-github-com-google-go-cmp-0.2.0" -; ,go-github-com-google-go-cmp-0.2.0) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2) -; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" -; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) -; ("go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473" -; ,go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-microsoft-hcsshim-0.8.22 -; (package -; (name "go-github-com-microsoft-hcsshim") -; (version "0.8.22") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/microsoft/hcsshim") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ncpq5sqmygck8q09mqqsgmvx5akwn9izf1k4p8bjya46g3kzk6g")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/Microsoft/hcsshim")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) -; ("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) -; ("go-golang-org-x-sys-0.0.0-20210324051608-47abb6519492" -; ,go-golang-org-x-sys-0.0.0-20210324051608-47abb6519492) -; ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" -; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) -; ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) -; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) -; ("go-github-com-sirupsen-logrus-1.7.0" -; ,go-github-com-sirupsen-logrus-1.7.0) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" -; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) -; ("go-github-com-gogo-protobuf-1.3.2" -; ,go-github-com-gogo-protobuf-1.3.2) -; ("go-github-com-containerd-typeurl-1.0.2" -; ,go-github-com-containerd-typeurl-1.0.2) -; ("go-github-com-containerd-ttrpc-1.0.2" -; ,go-github-com-containerd-ttrpc-1.0.2) -; ("go-github-com-containerd-go-runc-1.0.0" -; ,go-github-com-containerd-go-runc-1.0.0) -; ("go-github-com-containerd-fifo-1.0.0" -; ,go-github-com-containerd-fifo-1.0.0) -; ("go-github-com-containerd-continuity-0.1.0" -; ,go-github-com-containerd-continuity-0.1.0) -; ("go-github-com-containerd-containerd-1.4.9" -; ,go-github-com-containerd-containerd-1.4.9) -; ("go-github-com-containerd-console-1.0.2" -; ,go-github-com-containerd-console-1.0.2) -; ("go-github-com-containerd-cgroups-1.0.1" -; ,go-github-com-containerd-cgroups-1.0.1) -; ("go-github-com-microsoft-go-winio-0.4.17" -; ,go-github-com-microsoft-go-winio-0.4.17))) -; (home-page "https://github.com/Microsoft/hcsshim") -; (synopsis "hcsshim") -; (description -; "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") -; (license license:expat))) -; -;(define-public go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a -; (package -; (name "go-golang-org-x-sync") -; (version "0.0.0-20201207232520-09787c993a3a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sync") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1nv4mwi9njkkyc7lwmxrjr8ggfh2cf1c67a9bq85dnss81vpj61y")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sync")) -; (home-page "https://golang.org/x/sync") -; (synopsis "Go Sync") -; (description -; "This repository provides Go concurrency primitives in addition to the -;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") -; (license license:bsd-3))) -; -;(define-public go-github-com-containerd-stargz-snapshotter-estargz-0.9.0 -; (package -; (name "go-github-com-containerd-stargz-snapshotter-estargz") -; (version "0.9.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/stargz-snapshotter") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "01mjy4sks43jznxfsmb0jmb7l6a62pa2jxsyaqchb9pb7v9h43cq")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path -; "github.com/containerd/stargz-snapshotter/estargz" -; #:unpack-path -; "github.com/containerd/stargz-snapshotter")) -; (propagated-inputs -; `(("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" -; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) -; ("go-github-com-vbatts-tar-split-0.11.2" -; ,go-github-com-vbatts-tar-split-0.11.2) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-go-digest-1.0.0" -; ,go-github-com-opencontainers-go-digest-1.0.0) -; ("go-github-com-klauspost-compress-1.13.6" -; ,go-github-com-klauspost-compress-1.13.6))) -; (home-page "https://github.com/containerd/stargz-snapshotter") -; (synopsis #f) -; (description #f) -; (license license:asl2.0))) -; -;(define-public go-github-com-google-go-intervals-0.0.2 -; (package -; (name "go-github-com-google-go-intervals") -; (version "0.0.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/go-intervals") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0v9i46g1vdbyinagj94jvaibw4bpgh2l9f9p5268wg6msf761jm9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/go-intervals")) -; (home-page "https://github.com/google/go-intervals") -; (synopsis "go-intervals") -; (description -; "go-intervals is a library for performing set operations on 1-dimensional -;intervals, such as time ranges.") -; (license license:asl2.0))) -; -;(define-public go-github-com-google-uuid-1.2.0 -; (package -; (name "go-github-com-google-uuid") -; (version "1.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/uuid") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "08wqig98w23cg2ngjijhgm6s0mdayb95awa3cn3bs69lg20gryac")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/uuid")) -; (home-page "https://github.com/google/uuid") -; (synopsis "uuid") -; (description "Package uuid generates and inspects UUIDs. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-google-gofuzz-1.0.0 -; (package -; (name "go-github-com-google-gofuzz") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/gofuzz") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0qz439qvccm91w0mmjz4fqgx48clxdwagkvvx89cr43q1d4iry36")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/gofuzz")) -; (home-page "https://github.com/google/gofuzz") -; (synopsis "gofuzz") -; (description -; "Package fuzz is a library for populating go objects with random values. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-modern-go-concurrent-0.0.0-20180228061459-e0a39a4cb421 -; (package -; (name "go-github-com-modern-go-concurrent") -; (version "0.0.0-20180228061459-e0a39a4cb421") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/modern-go/concurrent") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0hamz1zimsxm9vl0ih19v7sbibglwq2j6473w4j9k7ib80fmxdzr")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/modern-go/concurrent")) -; (home-page "https://github.com/modern-go/concurrent") -; (synopsis "concurrent") -; (description -; "because sync.Map is only available in go 1.9, we can use concurrent.Map to make code portable") -; (license license:asl2.0))) -; -;(define-public go-github-com-modern-go-reflect2-1.0.2 -; (package -; (name "go-github-com-modern-go-reflect2") -; (version "1.0.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/modern-go/reflect2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "05a89f9j4nj8v1bchfkv2sy8piz746ikj831ilbp54g8dqhl8vzr")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/modern-go/reflect2")) -; (home-page "https://github.com/modern-go/reflect2") -; (synopsis "reflect2") -; (description "reflect api that avoids runtime reflect.Value cost") -; (license license:asl2.0))) -; -;(define-public go-github-com-json-iterator-go-1.1.12 -; (package -; (name "go-github-com-json-iterator-go") -; (version "1.1.12") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/json-iterator/go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1c8f0hxm18wivx31bs615x3vxs2j3ba0v6vxchsjhldc8kl311bz")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/json-iterator/go")) -; (propagated-inputs -; `(("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0) -; ("go-github-com-modern-go-reflect2-1.0.2" -; ,go-github-com-modern-go-reflect2-1.0.2) -; ("go-github-com-modern-go-concurrent-0.0.0-20180228061459-e0a39a4cb421" -; ,go-github-com-modern-go-concurrent-0.0.0-20180228061459-e0a39a4cb421) -; ("go-github-com-google-gofuzz-1.0.0" -; ,go-github-com-google-gofuzz-1.0.0) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://github.com/json-iterator/go") -; (synopsis "Benchmark") -; (description -; "Package jsoniter implements encoding and decoding of JSON as defined in -;@url{https://rfc-editor.org/rfc/rfc4627.html,RFC 4627} and provides interfaces with identical syntax of standard lib encoding/json. -;Converting from encoding/json to jsoniter is no more than replacing the package with jsoniter -;and variable type declarations (if any). -;jsoniter interfaces gives 100% compatibility with code using standard lib. -;") -; (license license:expat))) -; -;(define-public go-github-com-mattn-go-shellwords-1.0.12 -; (package -; (name "go-github-com-mattn-go-shellwords") -; (version "1.0.12") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mattn/go-shellwords") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0l0l5s4hlsrm4z6hygig2pp1qirk5ycrzn9z27ay3yvg9k7zafzx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mattn/go-shellwords")) -; (home-page "https://github.com/mattn/go-shellwords") -; (synopsis "go-shellwords") -; (description "Parse line as shell words.") -; (license license:expat))) -; -;(define-public go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible -; (package -; (name "go-github-com-mistifyio-go-zfs") -; (version "2.1.2-0.20190413222219-f784269be439+incompatible") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mistifyio/go-zfs") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0x6ncjaqjm06c615kbwkqbd5wcdg9nmrbl7wm4w185s6kq6l8fpw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mistifyio/go-zfs")) -; (home-page "https://github.com/mistifyio/go-zfs") -; (synopsis "Go Wrapper for ZFS") -; (description -; "Package zfs provides wrappers around the ZFS command line tools. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd -; (package -; (name "go-github-com-modern-go-concurrent") -; (version "0.0.0-20180306012644-bacd9c7ef1dd") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/modern-go/concurrent") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0s0fxccsyb8icjmiym5k7prcqx36hvgdwl588y0491gi18k5i4zs")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/modern-go/concurrent")) -; (home-page "https://github.com/modern-go/concurrent") -; (synopsis "concurrent") -; (description -; "because sync.Map is only available in go 1.9, we can use concurrent.Map to make code portable") -; (license license:asl2.0))) -; -;(define-public go-github-com-checkpoint-restore-go-criu-v5-5.0.0 -; (package -; (name "go-github-com-checkpoint-restore-go-criu-v5") -; (version "5.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/checkpoint-restore/go-criu") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "07dal5a9y43azkkh61jf6s81h7anbl17drkh2mal9mzcsi8wa2z8")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/checkpoint-restore/go-criu/v5")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.23.0" -; ,go-google-golang-org-protobuf-1.23.0) -; ("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" -; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) -; ("go-github-com-golang-protobuf-1.4.3" -; ,go-github-com-golang-protobuf-1.4.3))) -; (home-page "https://github.com/checkpoint-restore/go-criu") -; (synopsis "go-criu -- Go bindings for CRIU") -; (description -; "This repository provides Go bindings for @url{https://criu.org/,CRIU}. The code is based on the Go-based PHaul -;implementation from the CRIU repository. For easier inclusion into other Go projects the -;CRIU Go bindings have been moved to this repository.") -; (license license:asl2.0))) -; -;(define-public go-github-com-kr-pty-1.1.1 -; (package -; (name "go-github-com-kr-pty") -; (version "1.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kr/pty") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0383f0mb9kqjvncqrfpidsf8y6ns5zlrc91c6a74xpyxjwvzl2y6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kr/pty")) -; (home-page "https://github.com/kr/pty") -; (synopsis "pty") -; (description -; "Package pty is a wrapper for github.com/creack/pty, which provides -;functions for working with Unix terminals. -;") -; (license license:expat))) -; -;(define-public go-github-com-kr-text-0.1.0 -; (package -; (name "go-github-com-kr-text") -; (version "0.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kr/text") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1gm5bsl01apvc84bw06hasawyqm4q84vx1pm32wr9jnd7a8vjgj1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kr/text")) -; (propagated-inputs -; `(("go-github-com-kr-pty-1.1.1" ,go-github-com-kr-pty-1.1.1))) -; (home-page "https://github.com/kr/text") -; (synopsis #f) -; (description -; "Package text provides rudimentary functions for manipulating text in -;paragraphs. -;") -; (license license:expat))) -; -;(define-public go-github-com-kr-pretty-0.2.1 -; (package -; (name "go-github-com-kr-pretty") -; (version "0.2.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kr/pretty") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0vzfz06y9q8gs2nxx0kys0591vzp78k0fvpb8digi5n15h3b25hy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kr/pretty")) -; (propagated-inputs -; `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) -; (home-page "https://github.com/kr/pretty") -; (synopsis #f) -; (description -; "Package pretty provides pretty-printing for Go values. This is -;useful during debugging, to avoid wrapping long output lines in -;the terminal. -;") -; (license license:expat))) -; -;(define-public go-github-com-frankban-quicktest-1.11.3 -; (package -; (name "go-github-com-frankban-quicktest") -; (version "1.11.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/frankban/quicktest") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0d5njmwkfq2809vlimnlvy8ir6kln0c4cgdwr680fwsclpbr43qs")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/frankban/quicktest")) -; (propagated-inputs -; `(("go-github-com-kr-pretty-0.2.1" ,go-github-com-kr-pretty-0.2.1) -; ("go-github-com-google-go-cmp-0.5.4" -; ,go-github-com-google-go-cmp-0.5.4))) -; (home-page "https://github.com/frankban/quicktest") -; (synopsis "quicktest") -; (description -; "Package quicktest provides a collection of Go helpers for writing tests. -;") -; (license license:expat))) -; -;(define-public go-github-com-google-go-cmp-0.5.4 -; (package -; (name "go-github-com-google-go-cmp") -; (version "0.5.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/go-cmp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ld9pwb6l22g75g1zpa691l7q9ki7pjgpcqhwgdfr3va1zisr5ci")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/go-cmp")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" -; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) -; (home-page "https://github.com/google/go-cmp") -; (synopsis "Package for equality of Go values") -; (description -; "This package is intended to be a more powerful and safer alternative to -;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") -; (license license:bsd-3))) -; -;(define-public go-github-com-cilium-ebpf-0.6.2 -; (package -; (name "go-github-com-cilium-ebpf") -; (version "0.6.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/cilium/ebpf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0x64sg0kyc8bbsp75dpv8g2jfmpdldsshf9ni49jh6rgsnnqhpf8")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/cilium/ebpf")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" -; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) -; ("go-github-com-google-go-cmp-0.5.4" -; ,go-github-com-google-go-cmp-0.5.4) -; ("go-github-com-frankban-quicktest-1.11.3" -; ,go-github-com-frankban-quicktest-1.11.3))) -; (home-page "https://github.com/cilium/ebpf") -; (synopsis "eBPF") -; (description "Package ebpf is a toolkit for working with eBPF programs. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20210124154548-22da62e12c0c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "17gp3dl75wq3x7j9z1pqgcyvjhvy9jaln1wbscy57al3whdsjp07")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-containerd-console-1.0.2 -; (package -; (name "go-github-com-containerd-console") -; (version "1.0.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/console") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0rxwgq578hphs2ldx1gg6c9fq1qm8rgqfx3vgi2sbrsmxn6m2438")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/console")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" -; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) -; (home-page "https://github.com/containerd/console") -; (synopsis "console") -; (description -; "Golang package for dealing with consoles. Light on deps and a simple API.") -; (license license:asl2.0))) -; -;(define-public go-github-com-coreos-go-systemd-v22-22.3.2 -; (package -; (name "go-github-com-coreos-go-systemd-v22") -; (version "22.3.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/coreos/go-systemd") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ndi86b8va84ha93njqgafypz4di7yxfd5r5kf1r0s3y3ghcjajq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/coreos/go-systemd/v22")) -; (propagated-inputs -; `(("go-github-com-godbus-dbus-v5-5.0.4" -; ,go-github-com-godbus-dbus-v5-5.0.4))) -; (home-page "https://github.com/coreos/go-systemd") -; (synopsis "go-systemd") -; (description "Go bindings to systemd. The project has several packages:") -; (license license:asl2.0))) -; -;(define-public go-github-com-cyphar-filepath-securejoin-0.2.2 -; (package -; (name "go-github-com-cyphar-filepath-securejoin") -; (version "0.2.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/cyphar/filepath-securejoin") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0id32zjb92wm569m29nfrzz5mw9z1glr3klayr6j134pp4h1sgq4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/cyphar/filepath-securejoin")) -; (home-page "https://github.com/cyphar/filepath-securejoin") -; (synopsis #f) -; (description -; "Package securejoin is an implementation of the hopefully-soon-to-be-included -;SecureJoin helper that is meant to be part of the \"path/filepath\" package. -;The purpose of this project is to provide a PoC implementation to make the -;SecureJoin proposal (@url{https://github.com/golang/go/issues/20126,https://github.com/golang/go/issues/20126}) more -;tangible. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-docker-go-units-0.4.0 -; (package -; (name "go-github-com-docker-go-units") -; (version "0.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/docker/go-units") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0k8gja8ql4pqg5rzmqvka42vjfs6rzablak87whcnqba6qxpimvz")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/docker/go-units")) -; (home-page "https://github.com/docker/go-units") -; (synopsis "Introduction") -; (description -; "Package units provides helper function to parse and print size and time units -;in human-readable format. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-godbus-dbus-v5-5.0.4 -; (package -; (name "go-github-com-godbus-dbus-v5") -; (version "5.0.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/godbus/dbus") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0znax8kskb5gmp5fj75w56bc9p7b22wrdswzlh4d04sprlc471yi")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/godbus/dbus/v5")) -; (home-page "https://github.com/godbus/dbus") -; (synopsis "dbus") -; (description -; "Package dbus implements bindings to the D-Bus message bus system. -;") -; (license license:bsd-2))) -; -;(define-public go-github-com-mrunalp-fileutils-0.5.0 -; (package -; (name "go-github-com-mrunalp-fileutils") -; (version "0.5.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mrunalp/fileutils") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1zrs959gf4zgi6ijwkdn4dcqk0svfblpaikkqy63q30rqz4swm0x")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mrunalp/fileutils")) -; (home-page "https://github.com/mrunalp/fileutils") -; (synopsis "fileutils") -; (description "Collection of utilities for file manipulation in golang") -; (license license:asl2.0))) -; -;(define-public go-github-com-opencontainers-selinux-1.8.2 -; (package -; (name "go-github-com-opencontainers-selinux") -; (version "1.8.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/selinux") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1dl1h8nzpyhsfki1dcjphm5h4n52qwilahyl6qlnwgzcc76pwizq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/selinux")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777" -; ,go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-bits-and-blooms-bitset-1.2.0" -; ,go-github-com-bits-and-blooms-bitset-1.2.0))) -; (home-page "https://github.com/opencontainers/selinux") -; (synopsis "selinux") -; (description "Common SELinux package used across the container ecosystem.") -; (license license:asl2.0))) -; -;(define-public go-github-com-seccomp-libseccomp-golang-0.9.1 -; (package -; (name "go-github-com-seccomp-libseccomp-golang") -; (version "0.9.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/seccomp/libseccomp-golang") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "022c8prvxz0shrifams7lq4xidvkcqg9xi87wjjcpmbikqi72cna")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/seccomp/libseccomp-golang")) -; (home-page "https://github.com/seccomp/libseccomp-golang") -; (synopsis #f) -; (description -; "Package seccomp provides bindings for libseccomp, a library wrapping the Linux -;seccomp syscall. Seccomp enables an application to restrict system call use -;for itself and its children. -;") -; (license license:bsd-2))) -; -;(define-public go-github-com-urfave-cli-1.22.1 -; (package -; (name "go-github-com-urfave-cli") -; (version "1.22.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/urfave/cli") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "04ymak18flqlfcn8lycmg8r3931al8dvr8f1cg9n4yjaskmg72v8")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/urfave/cli")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) -; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d" -; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d) -; ("go-github-com-burntsushi-toml-0.3.1" -; ,go-github-com-burntsushi-toml-0.3.1))) -; (home-page "https://github.com/urfave/cli") -; (synopsis "cli") -; (description -; "Package cli provides a minimal framework for creating and organizing command line -;Go applications. cli is designed to be easy to understand and write, the most simple -;cli application can be written as follows: -;") -; (license license:expat))) -; -;(define-public go-github-com-vishvananda-netns-0.0.0-20191106174202-0a2b9b5464df -; (package -; (name "go-github-com-vishvananda-netns") -; (version "0.0.0-20191106174202-0a2b9b5464df") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/vishvananda/netns") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1k1zb7pzc4r4wicq7ncspf6zsvq298lvpsq963ibj813shg657xw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/vishvananda/netns")) -; (home-page "https://github.com/vishvananda/netns") -; (synopsis "netns - network namespaces in go") -; (description -; "Package netns allows ultra-simple network namespace handling. NsHandles -;can be retrieved and set. Note that the current namespace is thread -;local so actions that set and reset namespaces should use LockOSThread -;to make sure the namespace doesn't change due to a goroutine switch. -;It is best to close NsHandles when you are done with them. This can be -;accomplished via a `defer ns.Close()` on the handle. Changing namespaces -;requires elevated privileges, so in most cases this code needs to be run -;as root. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190606203320-7fc4e5ec1444 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190606203320-7fc4e5ec1444") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "18rv3m1kksv3758aqiaac2l6j334g0bapic6ibsj999agcn7y9fg")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-vishvananda-netlink-1.1.0 -; (package -; (name "go-github-com-vishvananda-netlink") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/vishvananda/netlink") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1vhl30p1gx636a088ls4h6a0l8jjyfvz79fr5w0qzdrg4qg9h08h")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/vishvananda/netlink")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190606203320-7fc4e5ec1444" -; ,go-golang-org-x-sys-0.0.0-20190606203320-7fc4e5ec1444) -; ("go-github-com-vishvananda-netns-0.0.0-20191106174202-0a2b9b5464df" -; ,go-github-com-vishvananda-netns-0.0.0-20191106174202-0a2b9b5464df))) -; (home-page "https://github.com/vishvananda/netlink") -; (synopsis "netlink - netlink library for go") -; (description -; "Package netlink provides a simple library for netlink. Netlink is -;the interface a user-space program in linux uses to communicate with -;the kernel. It can be used to add and remove interfaces, set up ip -;addresses and routes, and confiugre ipsec. Netlink communication -;requires elevated privileges, so in most cases this code needs to -;be run as root. The low level primitives for netlink are contained -;in the nl subpackage. This package attempts to provide a high-level -;interface that is loosly modeled on the iproute2 cli. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20201224014010-6772e930b67b") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0zlr39dxbg0fxfdrc20c4x0pw43n9kz749ssml97cdzqy116p5qa")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) -; ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" -; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) -; ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" -; ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20210426230700-d19ff857e887 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20210426230700-d19ff857e887") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "12m35a34dfm99agcv2ln9zvvyczigaxfwqbzqirvwn1lw4784whn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-opencontainers-runc-1.0.2 -; (package -; (name "go-github-com-opencontainers-runc") -; (version "1.0.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/runc") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1bpckghjah0rczciw1a1ab8z718lb2d3k4mjm4zb45lpm3njmrcp")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/runc")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.26.0" -; ,go-google-golang-org-protobuf-1.26.0) -; ("go-golang-org-x-sys-0.0.0-20210426230700-d19ff857e887" -; ,go-golang-org-x-sys-0.0.0-20210426230700-d19ff857e887) -; ("go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b" -; ,go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b) -; ("go-github-com-vishvananda-netlink-1.1.0" -; ,go-github-com-vishvananda-netlink-1.1.0) -; ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) -; ("go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635" -; ,go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635) -; ("go-github-com-sirupsen-logrus-1.8.1" -; ,go-github-com-sirupsen-logrus-1.8.1) -; ("go-github-com-seccomp-libseccomp-golang-0.9.1" -; ,go-github-com-seccomp-libseccomp-golang-0.9.1) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-selinux-1.8.2" -; ,go-github-com-opencontainers-selinux-1.8.2) -; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417" -; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417) -; ("go-github-com-mrunalp-fileutils-0.5.0" -; ,go-github-com-mrunalp-fileutils-0.5.0) -; ("go-github-com-moby-sys-mountinfo-0.4.1" -; ,go-github-com-moby-sys-mountinfo-0.4.1) -; ("go-github-com-godbus-dbus-v5-5.0.4" -; ,go-github-com-godbus-dbus-v5-5.0.4) -; ("go-github-com-docker-go-units-0.4.0" -; ,go-github-com-docker-go-units-0.4.0) -; ("go-github-com-cyphar-filepath-securejoin-0.2.2" -; ,go-github-com-cyphar-filepath-securejoin-0.2.2) -; ("go-github-com-coreos-go-systemd-v22-22.3.2" -; ,go-github-com-coreos-go-systemd-v22-22.3.2) -; ("go-github-com-containerd-console-1.0.2" -; ,go-github-com-containerd-console-1.0.2) -; ("go-github-com-cilium-ebpf-0.6.2" ,go-github-com-cilium-ebpf-0.6.2) -; ("go-github-com-checkpoint-restore-go-criu-v5-5.0.0" -; ,go-github-com-checkpoint-restore-go-criu-v5-5.0.0) -; ("go-github-com-bits-and-blooms-bitset-1.2.0" -; ,go-github-com-bits-and-blooms-bitset-1.2.0))) -; (home-page "https://github.com/opencontainers/runc") -; (synopsis "runc") -; (description -; "@code{runc} is a CLI tool for spawning and running containers according to the OCI specification.") -; (license license:asl2.0))) -; -;(define-public go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417 -; (package -; (name "go-github-com-opencontainers-runtime-spec") -; (version "1.0.3-0.20210326190908-1c3f411f0417") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/runtime-spec") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1azk8z41ga8af35c966f06vrq9y9hwz6mkm59r3py5qaamzim3qq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) -; (home-page "https://github.com/opencontainers/runtime-spec") -; (synopsis "Open Container Initiative Runtime Specification") -; (description -; "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") -; (license license:asl2.0))) -; -;(define-public go-github-com-bits-and-blooms-bitset-1.2.0 -; (package -; (name "go-github-com-bits-and-blooms-bitset") -; (version "1.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/bits-and-blooms/bitset") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0r9f7lvz6znl7yr6njg77m8hj472yhdshf1qaybwyw7j8as6c4r3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/bits-and-blooms/bitset")) -; (home-page "https://github.com/bits-and-blooms/bitset") -; (synopsis "bitset") -; (description -; "Package bitset implements bitsets, a mapping -;between non-negative integers and boolean values. It should be more -;efficient than map[uint] bool. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-opencontainers-selinux-1.8.5 -; (package -; (name "go-github-com-opencontainers-selinux") -; (version "1.8.5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/selinux") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "07p8an2y6ycagjigs7dgf7546p0zfgyl739bbv062jk2r2zwxr03")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/selinux")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777" -; ,go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777) -; ("go-github-com-bits-and-blooms-bitset-1.2.0" -; ,go-github-com-bits-and-blooms-bitset-1.2.0))) -; (home-page "https://github.com/opencontainers/selinux") -; (synopsis "selinux") -; (description "Common SELinux package used across the container ecosystem.") -; (license license:asl2.0))) -; -;(define-public go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635 -; (package -; (name "go-github-com-syndtr-gocapability") -; (version "0.0.0-20200815063812-42c35b437635") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/syndtr/gocapability") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "00zi0k190ydlm9drnafvj9p4cf6axm858wr71pbmq1p3r94iqws4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/syndtr/gocapability")) -; (home-page "https://github.com/syndtr/gocapability") -; (synopsis #f) -; (description #f) -; (license license:bsd-2))) -; -;(define-public go-github-com-tchap-go-patricia-2.3.0+incompatible -; (package -; (name "go-github-com-tchap-go-patricia") -; (version "2.3.0+incompatible") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/tchap/go-patricia") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "12s2q1g98iy96d2cz10ip5jmaf0aqf59sxhm2h1whc7f8h5w0knc")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/tchap/go-patricia")) -; (home-page "https://github.com/tchap/go-patricia") -; (synopsis "go-patricia") -; (description -; "@strong{Documentation}: @url{http://godoc.org/github.com/tchap/go-patricia/patricia,GoDoc} -;@strong{Test Coverage}: @url{https://coveralls.io/r/tchap/go-patricia,(img (@ (src https://coveralls.io/repos/tchap/go-patricia/badge.png) (alt CoverageStatus)))}") -; (license license:expat))) -; -;(define-public go-golang-org-x-sys-0.0.0-20210820121016-41cdb8703e55 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20210820121016-41cdb8703e55") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "01ampyy748h8qkrz1w1xhzwfdj3svzcn38dfla8zczrwqv9wf77a")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15 -; (package -; (name "go-gopkg-in-check-v1") -; (version "1.0.0-20190902080502-41f04d3bba15") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/check.v1") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0vfk9czmlxmp6wndq8k17rhnjxal764mxfhrccza7nwlia760pjy")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) -; (home-page "https://gopkg.in/check.v1") -; (synopsis "Instructions") -; (description -; "Package check is a rich testing extension for Go's testing package. -;") -; (license license:bsd-2))) -; -;(define-public go-gotest-tools-2.2.0+incompatible -; (package -; (name "go-gotest-tools") -; (version "2.2.0+incompatible") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/gotestyourself/gotest.tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0yif3gdyckmf8i54jq0xn00kflla5rhib9sarw66ngnbl7bn9kyl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "gotest.tools")) -; (home-page "https://gotest.tools") -; (synopsis "gotest.tools") -; (description -; "Package gotesttools is a collection of packages to augment `testing` and -;support common patterns. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-containers-storage-1.37.0 -; (package -; (name "go-github-com-containers-storage") -; (version "1.37.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containers/storage") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1m4bxaisaw9fd364b7kr41xv5i2s863f1kz2aa4krzp5q25j118f")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containers/storage")) -; (propagated-inputs -; `(("go-gotest-tools-2.2.0+incompatible" -; ,go-gotest-tools-2.2.0+incompatible) -; ("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" -; ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) -; ("go-golang-org-x-sys-0.0.0-20210820121016-41cdb8703e55" -; ,go-golang-org-x-sys-0.0.0-20210820121016-41cdb8703e55) -; ("go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110" -; ,go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110) -; ("go-github-com-vbatts-tar-split-0.11.2" -; ,go-github-com-vbatts-tar-split-0.11.2) -; ("go-github-com-ulikunitz-xz-0.5.10" -; ,go-github-com-ulikunitz-xz-0.5.10) -; ("go-github-com-tchap-go-patricia-2.3.0+incompatible" -; ,go-github-com-tchap-go-patricia-2.3.0+incompatible) -; ("go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635" -; ,go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635) -; ("go-github-com-stretchr-testify-1.7.0" -; ,go-github-com-stretchr-testify-1.7.0) -; ("go-github-com-sirupsen-logrus-1.8.1" -; ,go-github-com-sirupsen-logrus-1.8.1) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-selinux-1.8.5" -; ,go-github-com-opencontainers-selinux-1.8.5) -; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417" -; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417) -; ("go-github-com-opencontainers-runc-1.0.2" -; ,go-github-com-opencontainers-runc-1.0.2) -; ("go-github-com-opencontainers-go-digest-1.0.0" -; ,go-github-com-opencontainers-go-digest-1.0.0) -; ("go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd" -; ,go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd) -; ("go-github-com-moby-sys-mountinfo-0.4.1" -; ,go-github-com-moby-sys-mountinfo-0.4.1) -; ("go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible" -; ,go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible) -; ("go-github-com-mattn-go-shellwords-1.0.12" -; ,go-github-com-mattn-go-shellwords-1.0.12) -; ("go-github-com-klauspost-pgzip-1.2.5" -; ,go-github-com-klauspost-pgzip-1.2.5) -; ("go-github-com-klauspost-compress-1.13.6" -; ,go-github-com-klauspost-compress-1.13.6) -; ("go-github-com-json-iterator-go-1.1.12" -; ,go-github-com-json-iterator-go-1.1.12) -; ("go-github-com-hashicorp-go-multierror-1.1.1" -; ,go-github-com-hashicorp-go-multierror-1.1.1) -; ("go-github-com-google-uuid-1.2.0" ,go-github-com-google-uuid-1.2.0) -; ("go-github-com-google-go-intervals-0.0.2" -; ,go-github-com-google-go-intervals-0.0.2) -; ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" -; ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) -; ("go-github-com-docker-go-units-0.4.0" -; ,go-github-com-docker-go-units-0.4.0) -; ("go-github-com-containerd-stargz-snapshotter-estargz-0.9.0" -; ,go-github-com-containerd-stargz-snapshotter-estargz-0.9.0) -; ("go-github-com-microsoft-hcsshim-0.8.22" -; ,go-github-com-microsoft-hcsshim-0.8.22) -; ("go-github-com-microsoft-go-winio-0.5.0" -; ,go-github-com-microsoft-go-winio-0.5.0) -; ("go-github-com-burntsushi-toml-0.4.1" -; ,go-github-com-burntsushi-toml-0.4.1))) -; (home-page "https://github.com/containers/storage") -; (synopsis #f) -; (description -; "@code{storage} is a Go library which aims to provide methods for storing filesystem -;layers, container images, and containers. A @code{containers-storage} CLI wrapper -;is also included for manual and scripting use.") -; (license license:asl2.0))) -; -;(define-public go-github-com-docker-distribution-2.7.1+incompatible -; (package -; (name "go-github-com-docker-distribution") -; (version "2.7.1+incompatible") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/distribution/distribution") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1nx8b5a68rn81alp8wkkw6qd5v32mgf0fk23mxm60zdf63qk1nzw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/docker/distribution")) -; (home-page "https://github.com/docker/distribution") -; (synopsis "Distribution") -; (description -; "Package distribution will define the interfaces for the components of -;docker distribution. The goal is to allow users to reliably package, ship -;and store content related to docker images. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-docker-docker-20.10.11+incompatible -; (package -; (name "go-github-com-docker-docker") -; (version "20.10.11+incompatible") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/moby/moby") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1h1r66j57l073iba6hwrhcz779vaym68l1gfycdiw2d2gglfrdgr")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/docker/docker")) -; (home-page "https://github.com/docker/docker") -; (synopsis "The Moby Project") -; (description -; "Moby is an open-source project created by Docker to enable and accelerate software containerization.") -; (license license:asl2.0))) -; -;(define-public go-github-com-danieljoos-wincred-1.1.0 -; (package -; (name "go-github-com-danieljoos-wincred") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/danieljoos/wincred") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0fllr8lwk70qb8gfndkgshfq5c7p8zdpp47bcd3816giv5w78vxi")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/danieljoos/wincred")) -; (propagated-inputs -; `(("go-github-com-stretchr-testify-1.5.1" -; ,go-github-com-stretchr-testify-1.5.1))) -; (home-page "https://github.com/danieljoos/wincred") -; (synopsis "wincred") -; (description -; "Package wincred provides primitives for accessing the Windows Credentials Management API. -;This includes functions for retrieval, listing and storage of credentials as well as Go structures for convenient access to the credential data. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20210119212857-b64e53b001e4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "16in6bazi0frdkzhqxyvmw7qcvzjavq21dnz9bmrqq8d4dpd2j44")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-docker-docker-credential-helpers-0.6.4 -; (package -; (name "go-github-com-docker-docker-credential-helpers") -; (version "0.6.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/docker/docker-credential-helpers") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0xsz8zgil2xrv835p3i6qbk7s81jz62sgasfvmmxi6lrkirahmh6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/docker/docker-credential-helpers")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4" -; ,go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4) -; ("go-github-com-danieljoos-wincred-1.1.0" -; ,go-github-com-danieljoos-wincred-1.1.0))) -; (home-page "https://github.com/docker/docker-credential-helpers") -; (synopsis "Introduction") -; (description -; "docker-credential-helpers is a suite of programs to use native stores to keep Docker credentials safe.") -; (license license:expat))) -; -;(define-public go-github-com-docker-go-connections-0.4.0 -; (package -; (name "go-github-com-docker-go-connections") -; (version "0.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/docker/go-connections") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0mv6f6b5nljc17dmwmc28hc0y11pqglz7x0d2mjrwdmfxf64hwqq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/docker/go-connections")) -; (home-page "https://github.com/docker/go-connections") -; (synopsis "Introduction") -; (description -; "Package connections provides libraries to work with network connections. -;This library is divided in several components for specific usage. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-docker-libtrust-0.0.0-20160708172513-aabc10ec26b7 -; (package -; (name "go-github-com-docker-libtrust") -; (version "0.0.0-20160708172513-aabc10ec26b7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/docker/libtrust") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1lwslbggzc2b0c4wxl5pn6i2nfgz5jz8f7s7vnid9mrlsk59h7s1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/docker/libtrust")) -; (home-page "https://github.com/docker/libtrust") -; (synopsis "libtrust") -; (description -; "Package libtrust provides an interface for managing authentication and -;authorization using public key cryptography. Authentication is handled -;using the identity attached to the public key and verified through TLS -;x509 certificates, a key challenge, or signature. Authorization and -;access control is managed through a trust graph distributed between -;both remote trust servers and locally cached and managed data. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-golang-groupcache-0.0.0-20210331224755-41bb18bfe9da -; (package -; (name "go-github-com-golang-groupcache") -; (version "0.0.0-20210331224755-41bb18bfe9da") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/groupcache") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "07amgr8ji4mnq91qbsw2jlcmw6hqiwdf4kzfdrj8c4b05w4knszc")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/groupcache")) -; (home-page "https://github.com/golang/groupcache") -; (synopsis "groupcache") -; (description -; "Package groupcache provides a data loading mechanism with caching -;and de-duplication that works across a set of peer processes. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-google-uuid-1.3.0 -; (package -; (name "go-github-com-google-uuid") -; (version "1.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/uuid") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0imkw52m7fzrwsdj2rfrk3zbplqfbwncyv6hv89xw0vdw3jpk122")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/uuid")) -; (home-page "https://github.com/google/uuid") -; (synopsis "uuid") -; (description "Package uuid generates and inspects UUIDs. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-gorilla-mux-1.7.4 -; (package -; (name "go-github-com-gorilla-mux") -; (version "1.7.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/gorilla/mux") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1d0sy1paa055ic84sp3766s9pa24q008hf77dc842vrgvn8p3wmh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/gorilla/mux")) -; (home-page "https://github.com/gorilla/mux") -; (synopsis "gorilla/mux") -; (description "Package mux implements a request router and dispatcher. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-hashicorp-errwrap-1.0.0 -; (package -; (name "go-github-com-hashicorp-errwrap") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/errwrap") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0slfb6w3b61xz04r32bi0a1bygc82rjzhqkxj2si2074wynqnr1c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hashicorp/errwrap")) -; (home-page "https://github.com/hashicorp/errwrap") -; (synopsis "errwrap") -; (description -; "Package errwrap implements methods to formalize error wrapping in Go. -;") -; (license license:mpl2.0))) -; -;(define-public go-github-com-hashicorp-go-multierror-1.1.1 -; (package -; (name "go-github-com-hashicorp-go-multierror") -; (version "1.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/go-multierror") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0l4s41skdpifndn9s8y6s9vzgghdzg4z8z0lld9qjr28888wzp00")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hashicorp/go-multierror")) -; (propagated-inputs -; `(("go-github-com-hashicorp-errwrap-1.0.0" -; ,go-github-com-hashicorp-errwrap-1.0.0))) -; (home-page "https://github.com/hashicorp/go-multierror") -; (synopsis "go-multierror") -; (description -; "@code{go-multierror} is a package for Go that provides a mechanism for -;representing a list of @code{error} values as a single @code{error}.") -; (license license:mpl2.0))) -; -;(define-public go-gopkg-in-yaml-v2-2.3.0 -; (package -; (name "go-gopkg-in-yaml-v2") -; (version "2.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/yaml.v2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1md0hlyd9s6myv3663i9l59y74n4xjazifmmyxn43g86fgkc5lzj")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" -; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) -; (home-page "https://gopkg.in/yaml.v2") -; (synopsis "YAML support for the Go language") -; (description "Package yaml implements YAML support for the Go language. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-imdario-mergo-0.3.12 -; (package -; (name "go-github-com-imdario-mergo") -; (version "0.3.12") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/imdario/mergo") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "15s6807vcm7xq4l6my7rnw1i7x57712jvdidjli5bip79jfaxw90")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/imdario/mergo")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.3.0" ,go-gopkg-in-yaml-v2-2.3.0))) -; (home-page "https://github.com/imdario/mergo") -; (synopsis "Mergo") -; (description -; "This package provides a helper to merge structs and maps in Golang. Useful for configuration default values, avoiding messy if-statements. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-klauspost-compress-1.13.6 -; (package -; (name "go-github-com-klauspost-compress") -; (version "1.13.6") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/klauspost/compress") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1bgqhv2pp56b8f5mfzpfjlm4cb262gjbqbp3235blhj9xf2wrynj")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/klauspost/compress")) -; (home-page "https://github.com/klauspost/compress") -; (synopsis "compress") -; (description "This package provides various compression algorithms.") -; (license #f))) -; -;(define-public go-github-com-klauspost-pgzip-1.2.5 -; (package -; (name "go-github-com-klauspost-pgzip") -; (version "1.2.5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/klauspost/pgzip") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0m66jcsz27076qvi5qzagzlbyd1sdzh6kbf1njj0sswx86026rx3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/klauspost/pgzip")) -; (home-page "https://github.com/klauspost/pgzip") -; (synopsis "pgzip") -; (description -; "Package pgzip implements reading and writing of gzip format compressed files, -;as specified in @url{https://rfc-editor.org/rfc/rfc1952.html,RFC 1952}. -;") -; (license license:expat))) -; -;(define-public go-github-com-chzyer-logex-1.1.10 -; (package -; (name "go-github-com-chzyer-logex") -; (version "1.1.10") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/chzyer/logex") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "08pbjj3wx9acavlwyr055isa8a5hnmllgdv5k6ra60l5y1brmlq4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/chzyer/logex")) -; (home-page "https://github.com/chzyer/logex") -; (synopsis #f) -; (description #f) -; (license #f))) -; -;(define-public go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e -; (package -; (name "go-github-com-chzyer-readline") -; (version "0.0.0-20180603132655-2972be24d48e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/chzyer/readline") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "104q8dazj8yf6b089jjr82fy9h1g80zyyzvp3g8b44a7d8ngjj6r")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/chzyer/readline")) -; (home-page "https://github.com/chzyer/readline") -; (synopsis "Guide") -; (description -; "Readline is a pure go implementation for GNU-Readline kind library. -;") -; (license license:expat))) -; -;(define-public go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1 -; (package -; (name "go-github-com-chzyer-test") -; (version "0.0.0-20180213035817-a1ea475d72b1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/chzyer/test") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0rns2aqk22i9xsgyap0pq8wi4cfaxsri4d9q6xxhhyma8jjsnj2k")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/chzyer/test")) -; (home-page "https://github.com/chzyer/test") -; (synopsis "test") -; (description #f) -; (license license:expat))) -; -;(define-public go-golang-org-x-sys-0.0.0-20181122145206-62eef0e2fa9b -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20181122145206-62eef0e2fa9b") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0mslbflrh422mcfg2hs2q1xwm3xwd5prn597w7xqhi3s41mx1vs4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-manifoldco-promptui-0.9.0 -; (package -; (name "go-github-com-manifoldco-promptui") -; (version "0.9.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/manifoldco/promptui") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1nnlj1ahwq4ar5gbvxg8dqjl1wl5r8mhcm0bixg1c4wiihz8xv8m")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/manifoldco/promptui")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20181122145206-62eef0e2fa9b" -; ,go-golang-org-x-sys-0.0.0-20181122145206-62eef0e2fa9b) -; ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" -; ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) -; ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" -; ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) -; ("go-github-com-chzyer-logex-1.1.10" -; ,go-github-com-chzyer-logex-1.1.10))) -; (home-page "https://github.com/manifoldco/promptui") -; (synopsis "promptui") -; (description -; "Package promptui is a library providing a simple interface to create command-line prompts for go. -;It can be easily integrated into spf13/cobra, urfave/cli or any cli go application. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-morikuni-aec-1.0.0 -; (package -; (name "go-github-com-morikuni-aec") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/morikuni/aec") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1qaqh0lk9wrqgff0yrxnbznvmwyhdxy3g9b2hjpazp5bw4nj0dp7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/morikuni/aec")) -; (home-page "https://github.com/morikuni/aec") -; (synopsis "aec") -; (description "Go wrapper for ANSI escape code.") -; (license license:expat))) -; -;(define-public go-github-com-mtrmac-gpgme-0.1.2 -; (package -; (name "go-github-com-mtrmac-gpgme") -; (version "0.1.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mtrmac/gpgme") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "00jgfyg93247bc5n3wk679rgnbbq8kr2qr6ymimwfc0bwi8yqz53")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mtrmac/gpgme")) -; (home-page "https://github.com/mtrmac/gpgme") -; (synopsis "GPGME (golang)") -; (description "Package gpgme provides a Go wrapper for the GPGME library -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-opencontainers-go-digest-1.0.0 -; (package -; (name "go-github-com-opencontainers-go-digest") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/go-digest") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0i5acjajvr6hi9zb7gxwifd8w28y884cv7cx36adj8lngj647xbi")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/go-digest")) -; (home-page "https://github.com/opencontainers/go-digest") -; (synopsis "go-digest") -; (description -; "Package digest provides a generalized type to opaquely represent message -;digests and their operations within the registry. The Digest type is -;designed to serve as a flexible identifier in a content-addressable system. -;More importantly, it provides tools and wrappers to work with -;hash.Hash-based digests with little effort. -;") -; (license (list license:asl2.0 license:cc-by-sa4.0)))) -; -;(define-public go-github-com-opencontainers-image-spec-1.0.2-0.20210819154149-5ad6f50d6283 -; (package -; (name "go-github-com-opencontainers-image-spec") -; (version "1.0.2-0.20210819154149-5ad6f50d6283") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/image-spec") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1p91nlpr9g5hv7b4mxncwa4gmhaxiw31fl6xn2fxd38zw1912hjx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/image-spec")) -; (home-page "https://github.com/opencontainers/image-spec") -; (synopsis "OCI Image Format Specification") -; (description -; "The OCI Image Format project creates and maintains the software shipping container image format spec (OCI Image Format).") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20191115151921-52ab43148777") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1kakxbqrb1w2vwg7r1896z68qcx2lfvimsl8cs2niiipbgpi6imx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-opencontainers-selinux-1.9.1 -; (package -; (name "go-github-com-opencontainers-selinux") -; (version "1.9.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/selinux") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0gfa7rmx3240da3smgyx5p4495zaw9l6cj0q69ly12m0iqb6889s")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/selinux")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777" -; ,go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777))) -; (home-page "https://github.com/opencontainers/selinux") -; (synopsis "selinux") -; (description "Common SELinux package used across the container ecosystem.") -; (license license:asl2.0))) -; -;(define-public go-github-com-ostreedev-ostree-go-0.0.0-20190702140239-759a8c1ac913 -; (package -; (name "go-github-com-ostreedev-ostree-go") -; (version "0.0.0-20190702140239-759a8c1ac913") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/ostreedev/ostree-go") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "025s1621vs0rcvar8i8lfam7556f4562zdg19wp2j7hfx14vc46s")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/ostreedev/ostree-go")) -; (home-page "https://github.com/ostreedev/ostree-go") -; (synopsis "OSTree-Go") -; (description -; "Go bindings for OSTree. Find out more about OSTree @url{https://github.com/ostreedev/ostree,here}") -; (license license:isc))) -; -;(define-public go-github-com-pkg-errors-0.9.1 -; (package -; (name "go-github-com-pkg-errors") -; (version "0.9.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/pkg/errors") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1761pybhc2kqr6v5fm8faj08x9bql8427yqg6vnfv6nhrasx1mwq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/pkg/errors")) -; (home-page "https://github.com/pkg/errors") -; (synopsis "errors") -; (description "Package errors provides simple error handling primitives. -;") -; (license license:bsd-2))) -; -;(define-public go-github-com-sirupsen-logrus-1.8.1 -; (package -; (name "go-github-com-sirupsen-logrus") -; (version "1.8.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/sirupsen/logrus") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0rvqzic2zz7fpxyizmqxwmhv1m52ii9bgxnqa6km8wsa0l08wh42")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/sirupsen/logrus")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037" -; ,go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037) -; ("go-github-com-stretchr-testify-1.2.2" -; ,go-github-com-stretchr-testify-1.2.2) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://github.com/sirupsen/logrus") -; (synopsis "Logrus") -; (description -; "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. -;") -; (license license:expat))) -; -;(define-public go-github-com-ulikunitz-xz-0.5.10 -; (package -; (name "go-github-com-ulikunitz-xz") -; (version "0.5.10") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/ulikunitz/xz") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "07vynk0sh8i8g7x9p9x04dj8wylvxaf8ypbi43yvcv7j6zd63c72")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/ulikunitz/xz")) -; (home-page "https://github.com/ulikunitz/xz") -; (synopsis "Package xz") -; (description -; "Package xz supports the compression and decompression of xz files. It -;supports version 1.0.4 of the specification without the non-LZMA2 -;filters. See @url{http://tukaani.org/xz/xz-file-format-1.0.4.txt,http://tukaani.org/xz/xz-file-format-1.0.4.txt} -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-davecgh-go-spew-1.1.1 -; (package -; (name "go-github-com-davecgh-go-spew") -; (version "1.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/davecgh/go-spew") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/davecgh/go-spew")) -; (home-page "https://github.com/davecgh/go-spew") -; (synopsis "go-spew") -; (description -; "Go-spew implements a deep pretty printer for Go data structures to aid in -;debugging. A comprehensive suite of tests with 100% test coverage is provided -;to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage -;report. Go-spew is licensed under the liberal ISC license, so it may be used in -;open source or commercial projects.") -; (license license:isc))) -; -;(define-public go-github-com-stretchr-testify-1.2.2 -; (package -; (name "go-github-com-stretchr-testify") -; (version "1.2.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/testify") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0dlszlshlxbmmfxj5hlwgv3r22x0y1af45gn1vd198nvvs3pnvfs")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/testify")) -; (home-page "https://github.com/stretchr/testify") -; (synopsis "Testify - Thou Shalt Write Tests") -; (description -; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20191026070338-33540a1f6037") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0fjcv0vzvi6za0b4xmnk3932pr9f9gczzf03y0kgq3ry9rqg169y")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-sirupsen-logrus-1.7.0 -; (package -; (name "go-github-com-sirupsen-logrus") -; (version "1.7.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/sirupsen/logrus") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1a59pw7zimvm8k423iq9l4f4qjj1ia1xc6pkmhwl2mxc46y2n442")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/sirupsen/logrus")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037" -; ,go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037) -; ("go-github-com-stretchr-testify-1.2.2" -; ,go-github-com-stretchr-testify-1.2.2) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://github.com/sirupsen/logrus") -; (synopsis "Logrus") -; (description -; "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. -;") -; (license license:expat))) -; -;(define-public go-github-com-russross-blackfriday-v2-2.0.1 -; (package -; (name "go-github-com-russross-blackfriday-v2") -; (version "2.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/russross/blackfriday") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0nlz7isdd4rgnwzs68499hlwicxz34j2k2a0b8jy0y7ycd2bcr5j")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/russross/blackfriday/v2")) -; (home-page "https://github.com/russross/blackfriday") -; (synopsis "Blackfriday") -; (description "Package blackfriday is a markdown processor. -;") -; (license license:bsd-2))) -; -;(define-public go-github-com-shurcool-sanitized-anchor-name-1.0.0 -; (package -; (name "go-github-com-shurcool-sanitized-anchor-name") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/shurcooL/sanitized_anchor_name") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1gv9p2nr46z80dnfjsklc6zxbgk96349sdsxjz05f3z6wb6m5l8f")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/shurcooL/sanitized_anchor_name")) -; (home-page "https://github.com/shurcooL/sanitized_anchor_name") -; (synopsis "sanitized_anchor_name") -; (description -; "Package sanitized_anchor_name provides a func to create sanitized anchor names. -;") -; (license license:expat))) -; -;(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d -; (package -; (name "go-github-com-cpuguy83-go-md2man-v2") -; (version "2.0.0-20190314233015-f79a8a8ca69d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/cpuguy83/go-md2man") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) -; (propagated-inputs -; `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" -; ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) -; ("go-github-com-russross-blackfriday-v2-2.0.1" -; ,go-github-com-russross-blackfriday-v2-2.0.1) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0))) -; (home-page "https://github.com/cpuguy83/go-md2man") -; (synopsis "go-md2man") -; (description "Converts markdown into roff (man pages).") -; (license license:expat))) -; -;(define-public go-github-com-urfave-cli-1.22.4 -; (package -; (name "go-github-com-urfave-cli") -; (version "1.22.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/urfave/cli") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1s7frsmiih4wh8vpx9z3ck4667c6vpjrmba7b9ymnv1p9khyg8wc")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/urfave/cli")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) -; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d" -; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d) -; ("go-github-com-burntsushi-toml-0.3.1" -; ,go-github-com-burntsushi-toml-0.3.1))) -; (home-page "https://github.com/urfave/cli") -; (synopsis "cli") -; (description -; "Package cli provides a minimal framework for creating and organizing command line -;Go applications. cli is designed to be easy to understand and write, the most simple -;cli application can be written as follows: -;") -; (license license:expat))) -; -;(define-public go-github-com-vbatts-tar-split-0.11.2 -; (package -; (name "go-github-com-vbatts-tar-split") -; (version "0.11.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/vbatts/tar-split") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0zmqnlif7r9n9kffw8k3m820ybvyy4zp7m2xfg8rrb321m869dcd")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/vbatts/tar-split")) -; (propagated-inputs -; `(("go-github-com-urfave-cli-1.22.4" ,go-github-com-urfave-cli-1.22.4) -; ("go-github-com-sirupsen-logrus-1.7.0" -; ,go-github-com-sirupsen-logrus-1.7.0))) -; (home-page "https://github.com/vbatts/tar-split") -; (synopsis "tar-split") -; (description -; "Pristinely disassembling a tar archive, and stashing needed raw bytes and offsets to reassemble a validating original archive.") -; (license license:bsd-3))) -; -;(define-public go-github-com-vividcortex-ewma-1.2.0 -; (package -; (name "go-github-com-vividcortex-ewma") -; (version "1.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/VividCortex/ewma") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0whx516l9nm4n41spagb605ry7kfnz1qha96mcshnfjlahhnnylq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/VividCortex/ewma")) -; (home-page "https://github.com/VividCortex/ewma") -; (synopsis "EWMA") -; (description -; "Package ewma implements exponentially weighted moving averages. -;") -; (license license:expat))) -; -;(define-public go-github-com-acarl005-stripansi-0.0.0-20180116102854-5a71ef0e047d -; (package -; (name "go-github-com-acarl005-stripansi") -; (version "0.0.0-20180116102854-5a71ef0e047d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/acarl005/stripansi") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "02sxiishdixm791jqbkmhdcvc712l0fb8rqmibxzgc61h0qs6rs3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/acarl005/stripansi")) -; (home-page "https://github.com/acarl005/stripansi") -; (synopsis "Strip ANSI") -; (description "This Go package removes ANSI escape codes from strings.") -; (license license:expat))) -; -;(define-public go-github-com-rivo-uniseg-0.2.0 -; (package -; (name "go-github-com-rivo-uniseg") -; (version "0.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/rivo/uniseg") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0j7h22vfmjj562vr8gpsyrkrwp1pq9ayh5fylv24skxb467g9f0q")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/rivo/uniseg")) -; (home-page "https://github.com/rivo/uniseg") -; (synopsis "Unicode Text Segmentation for Go") -; (description -; "Package uniseg implements Unicode Text Segmentation according to Unicode -;Standard Annex #29 (@url{http://unicode.org/reports/tr29/,http://unicode.org/reports/tr29/}). -;") -; (license license:expat))) -; -;(define-public go-github-com-mattn-go-runewidth-0.0.13 -; (package -; (name "go-github-com-mattn-go-runewidth") -; (version "0.0.13") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mattn/go-runewidth") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1yir0f3wc5z5hnkwhvx5qb6nmpfb05zp2gvfjvna63s8kmla1rrn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mattn/go-runewidth")) -; (propagated-inputs -; `(("go-github-com-rivo-uniseg-0.2.0" ,go-github-com-rivo-uniseg-0.2.0))) -; (home-page "https://github.com/mattn/go-runewidth") -; (synopsis "go-runewidth") -; (description -; "This package provides functions to get fixed width of the character or string.") -; (license license:expat))) -; -;(define-public go-golang-org-x-sys-0.0.0-20210910150752-751e447fb3d0 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20210910150752-751e447fb3d0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1sis5gp14r60lyx4hjkylf6rhmlybivcmrlw5qcbjgjwbbkvi0qk")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-vbauerster-mpb-v7-7.1.5 -; (package -; (name "go-github-com-vbauerster-mpb-v7") -; (version "7.1.5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/vbauerster/mpb") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0g2gqy41a15713r90j0j6n9zrs82aczrh33ffmm7jhz6r4nlrq07")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/vbauerster/mpb/v7")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20210910150752-751e447fb3d0" -; ,go-golang-org-x-sys-0.0.0-20210910150752-751e447fb3d0) -; ("go-github-com-mattn-go-runewidth-0.0.13" -; ,go-github-com-mattn-go-runewidth-0.0.13) -; ("go-github-com-acarl005-stripansi-0.0.0-20180116102854-5a71ef0e047d" -; ,go-github-com-acarl005-stripansi-0.0.0-20180116102854-5a71ef0e047d) -; ("go-github-com-vividcortex-ewma-1.2.0" -; ,go-github-com-vividcortex-ewma-1.2.0))) -; (home-page "https://github.com/vbauerster/mpb") -; (synopsis "Multi Progress Bar") -; (description -; "Package mpb is a library for rendering progress bars in terminal applications. -;") -; (license license:unlicense))) -; -;(define-public go-github-com-xeipuuv-gojsonpointer-0.0.0-20190809123943-df4f5c81cb3b -; (package -; (name "go-github-com-xeipuuv-gojsonpointer") -; (version "0.0.0-20190809123943-df4f5c81cb3b") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/xeipuuv/gojsonpointer") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0dfwc66z5gq75m3z7va80c10c22ijiq99bahq86l26ki71g286xn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/xeipuuv/gojsonpointer")) -; (home-page "https://github.com/xeipuuv/gojsonpointer") -; (synopsis "gojsonpointer") -; (description "An implementation of JSON Pointer - Go language") -; (license license:asl2.0))) -; -;(define-public go-github-com-stretchr-testify-1.3.0 -; (package -; (name "go-github-com-stretchr-testify") -; (version "1.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/testify") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0wjchp2c8xbgcbbq32w3kvblk6q6yn533g78nxl6iskq6y95lxsy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/testify")) -; (propagated-inputs -; `(("go-github-com-stretchr-objx-0.1.0" -; ,go-github-com-stretchr-objx-0.1.0) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-davecgh-go-spew-1.1.0" -; ,go-github-com-davecgh-go-spew-1.1.0))) -; (home-page "https://github.com/stretchr/testify") -; (synopsis "Testify - Thou Shalt Write Tests") -; (description -; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -;") -; (license license:expat))) -; -;(define-public go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f -; (package -; (name "go-github-com-xeipuuv-gojsonpointer") -; (version "0.0.0-20180127040702-4e3ac2762d5f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/xeipuuv/gojsonpointer") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "13y6iq2nzf9z4ls66bfgnnamj2m3438absmbpqry64bpwjfbsi9q")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/xeipuuv/gojsonpointer")) -; (home-page "https://github.com/xeipuuv/gojsonpointer") -; (synopsis "gojsonpointer") -; (description "An implementation of JSON Pointer - Go language") -; (license license:asl2.0))) -; -;(define-public go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415 -; (package -; (name "go-github-com-xeipuuv-gojsonreference") -; (version "0.0.0-20180127040603-bd5ef7bd5415") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/xeipuuv/gojsonreference") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1xby79padc7bmyb8rfbad8wfnfdzpnh51b1n8c0kibch0kwc1db5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/xeipuuv/gojsonreference")) -; (home-page "https://github.com/xeipuuv/gojsonreference") -; (synopsis "gojsonreference") -; (description "An implementation of JSON Reference - Go language") -; (license license:asl2.0))) -; -;(define-public go-github-com-xeipuuv-gojsonschema-1.2.0 -; (package -; (name "go-github-com-xeipuuv-gojsonschema") -; (version "1.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/xeipuuv/gojsonschema") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1mqiq0r8qw4qlfp3ls8073r6514rmzwrmdn4j33rppk3zh942i6l")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/xeipuuv/gojsonschema")) -; (propagated-inputs -; `(("go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415" -; ,go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415) -; ("go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f" -; ,go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f) -; ("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0))) -; (home-page "https://github.com/xeipuuv/gojsonschema") -; (synopsis "gojsonschema") -; (description -; "An implementation of JSON Schema for the Go programming language. Supports draft-04, draft-06 and draft-07.") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-sys-0.0.0-20200923182605-d9f96fdee20d -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20200923182605-d9f96fdee20d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1lj8nmnpb7ngbd90il65kyh78i6sc325vhmxr6l61qvbh0qdybyh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-go-etcd-io-bbolt-1.3.6 -; (package -; (name "go-go-etcd-io-bbolt") -; (version "1.3.6") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/etcd-io/bbolt") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0pj5245d417za41j6p09fmkbv05797vykr1bi9a6rnwddh1dbs8d")))) -; (build-system go-build-system) -; (arguments '(#:import-path "go.etcd.io/bbolt")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20200923182605-d9f96fdee20d" -; ,go-golang-org-x-sys-0.0.0-20200923182605-d9f96fdee20d))) -; (home-page "https://go.etcd.io/bbolt") -; (synopsis "bbolt") -; (description -; "package bbolt implements a low-level key/value store in pure Go. It supports -;fully serializable transactions, ACID semantics, and lock-free MVCC with -;multiple readers and a single writer. Bolt can be used for projects that -;want a simple data store without the need to add large dependencies such as -;Postgres or MySQL. -;") -; (license license:expat))) -; -;(define-public go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e -; (package -; (name "go-github-com-golang-groupcache") -; (version "0.0.0-20200121045136-8c9f03a8e57e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/groupcache") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0vjjr79r32icjzlb05wn02k59av7jx0rn1jijml8r4whlg7dnkfh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/groupcache")) -; (home-page "https://github.com/golang/groupcache") -; (synopsis "groupcache") -; (description -; "Package groupcache provides a data loading mechanism with caching -;and de-duplication that works across a set of peer processes. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-google-go-cmp-0.5.3 -; (package -; (name "go-github-com-google-go-cmp") -; (version "0.5.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/go-cmp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "011gdkmyk3w7qkcwljhqak4h5npn4n7fwgx1fwpyx9c7wizvgkm5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/go-cmp")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" -; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) -; (home-page "https://github.com/google/go-cmp") -; (synopsis "Package for equality of Go values") -; (description -; "This package is intended to be a more powerful and safer alternative to -;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") -; (license license:bsd-3))) -; -;(define-public go-github-com-stretchr-testify-1.6.1 -; (package -; (name "go-github-com-stretchr-testify") -; (version "1.6.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/testify") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1yhiqqzjvi63pf01rgzx68gqkkvjx03fvl5wk30br5l6s81s090l")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/testify")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" -; ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) -; ("go-github-com-stretchr-objx-0.1.0" -; ,go-github-com-stretchr-objx-0.1.0) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-davecgh-go-spew-1.1.0" -; ,go-github-com-davecgh-go-spew-1.1.0))) -; (home-page "https://github.com/stretchr/testify") -; (synopsis "Testify - Thou Shalt Write Tests") -; (description -; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20200930185726-fdedc70b468f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1njlfhjbvi4lxvjbq8zswrb0y0q4jd2p6x51h1q6vmyzi9af6869")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20201110031124-69a78807bb2b") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "176z5k6jbhr9vf0am2avl1lyqwym3q0mri98yb8r572z33qmcw1d")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) -; ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" -; ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) -; ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" -; ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-grpc-1.33.2 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.33.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "03yz4nlf4kqbnpw48f0mvcb2f5zzy0vjd5i2iw0hrjspd0238fzk")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.25.0" -; ,go-google-golang-org-protobuf-1.25.0) -; ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" -; ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) -; ("go-github-com-google-go-cmp-0.5.0" -; ,go-github-com-google-go-cmp-0.5.0) -; ("go-github-com-golang-protobuf-1.4.1" -; ,go-github-com-golang-protobuf-1.4.1) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-envoyproxy-go-control-plane-0.9.4" -; ,go-github-com-envoyproxy-go-control-plane-0.9.4) -; ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" -; ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-go-opencensus-io-0.23.0 -; (package -; (name "go-go-opencensus-io") -; (version "0.23.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/census-instrumentation/opencensus-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0gw4f7inf8y2ik00yfb36xganiq9rl4w2d1a41bsjqsh83ajz2km")))) -; (build-system go-build-system) -; (arguments '(#:import-path "go.opencensus.io")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) -; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" -; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-google-go-cmp-0.5.3" -; ,go-github-com-google-go-cmp-0.5.3) -; ("go-github-com-golang-protobuf-1.4.3" -; ,go-github-com-golang-protobuf-1.4.3) -; ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" -; ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e))) -; (home-page "https://go.opencensus.io") -; (synopsis "OpenCensus Libraries for Go") -; (description "Package opencensus contains Go support for OpenCensus. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20210226172049-e18ecbb05110") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1vlq8mdscp7yfaa1lmyv03y5m4c2d67ydg2q1i6smkrxghn3zn3q")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) -; ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" -; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) -; ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" -; ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20210322153248-0c34fe9e7dc2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "021szs1czc0xg4chpays7i05dvkax9s8mns314ab01r887kchqxq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (propagated-inputs -; `(("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" -; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) -; ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" -; ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68) -; ("go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110" -; ,go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110))) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20210423082822-04245dca01da -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20210423082822-04245dca01da") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "11is2c5cpxk0gf2mxza2wpzfcf71fxb9b3in77f6w2q0pr68ykzx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-text-0.3.6 -; (package -; (name "go-golang-org-x-text") -; (version "0.3.6") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/text") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0wzhvdb059vrp2cczqw422ajrb9sbs4l3qd020hlngj33qfhxah0")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/text")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" -; ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) -; (home-page "https://golang.org/x/text") -; (synopsis "Go Text") -; (description -; "text is a repository of text-related packages related to internationalization -;(i18n) and localization (l10n), such as character encodings, text -;transformations, and locale-specific text handling. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20211005001312-d4b1ae081e3b -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20211005001312-d4b1ae081e3b") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0mid37a5nk85xxym49cxw9k5y9w8j8hiafgmn4igaympm8yy5dc9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.6" ,go-golang-org-x-text-0.3.6) -; ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" -; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) -; ("go-golang-org-x-sys-0.0.0-20210423082822-04245dca01da" -; ,go-golang-org-x-sys-0.0.0-20210423082822-04245dca01da))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c -; (package -; (name "go-golang-org-x-sync") -; (version "0.0.0-20210220032951-036812b2e83c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sync") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1gl202py3s4gl6arkaxlf8qa6f0jyyg2f95m6f89qnfmr416h85b")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sync")) -; (home-page "https://golang.org/x/sync") -; (synopsis "Go Sync") -; (description -; "This repository provides Go concurrency primitives in addition to the -;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20211004093028-2c5d950f24ef -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20211004093028-2c5d950f24ef") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "13ac9v54zgxrya9n2dvbmyafhd0rbmnkfb5zrcp96z8vzd9q8zfz")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-text-0.3.7 -; (package -; (name "go-golang-org-x-text") -; (version "0.3.7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/text") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0xkw0qvfjyifdqd25y7nxdqkdh92inymw3q7841nricc9s01p4jy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/text")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" -; ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) -; (home-page "https://golang.org/x/text") -; (synopsis "Go Text") -; (description -; "text is a repository of text-related packages related to internationalization -;(i18n) and localization (l10n), such as character encodings, text -;transformations, and locale-specific text handling. -;") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-1.26.0 -; (package -; (name "go-google-golang-org-protobuf") -; (version "1.26.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0xq6phaps6d0vcv13ga59gzj4306l0ki9kikhmb52h6pq0iwfqlz")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.5.5" -; ,go-github-com-google-go-cmp-0.5.5) -; ("go-github-com-golang-protobuf-1.5.0" -; ,go-github-com-golang-protobuf-1.5.0))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.5.2 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.5.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1mh5fyim42dn821nsd3afnmgscrzzhn3h8rag635d2jnr23r1zhk")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.26.0" -; ,go-google-golang-org-protobuf-1.26.0) -; ("go-github-com-google-go-cmp-0.5.5" -; ,go-github-com-google-go-cmp-0.5.5))) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20210330210617-4fbd30eecc44 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20210330210617-4fbd30eecc44") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "02mmymbm7wb3vdp3z9hm8p0f45708fybyd38qm8qxzwm19zqnp56")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20201119102817-f84b799fce68") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1dvhqian5byzkcg1bnqzygqa6ccc6krc2q7j12pp1vhl3y7znnsg")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1 -; (package -; (name "go-golang-org-x-term") -; (version "0.0.0-20201126162022-7de9c90e9dd1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/term") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ba252xmv6qsvf1w1gcy98mngrj0vd4inbjw0lsklqvva65nljna")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/term")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" -; ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) -; (home-page "https://golang.org/x/term") -; (synopsis "Go terminal/console support") -; (description -; "Package term provides support functions for dealing with terminals, as -;commonly found on UNIX systems. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-text-0.3.3 -; (package -; (name "go-golang-org-x-text") -; (version "0.3.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/text") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "19pihqm3phyndmiw6i42pdv6z1rbvlqlsnhsyqf9gsnn0qnmqqlh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/text")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" -; ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) -; (home-page "https://golang.org/x/text") -; (synopsis "Go Text") -; (description -; "text is a repository of text-related packages related to internationalization -;(i18n) and localization (l10n), such as character encodings, text -;transformations, and locale-specific text handling. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20210405180319-a5a99cb37ef4 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20210405180319-a5a99cb37ef4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0z90hpmxdw9i8vfhd6vf7hd63c86f1128qfb5f3y4kinvlpjy3rl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) -; ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" -; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) -; ("go-golang-org-x-sys-0.0.0-20210330210617-4fbd30eecc44" -; ,go-golang-org-x-sys-0.0.0-20210330210617-4fbd30eecc44))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20210510120138-977fb7262007 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20210510120138-977fb7262007") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0d2vnblgzxgvis2kly99gv10kadyl3v0cpv1lskjqg2v5d11r6hd")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20180917221912-90fa682c2a6e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-text-0.3.5 -; (package -; (name "go-golang-org-x-text") -; (version "0.3.5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/text") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "082s9d7wnh1aa2v08g3h5z4if2f8hl4y01pb788qsvab9329lj0w")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/text")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" -; ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) -; (home-page "https://golang.org/x/text") -; (synopsis "Go Text") -; (description -; "text is a repository of text-related packages related to internationalization -;(i18n) and localization (l10n), such as character encodings, text -;transformations, and locale-specific text handling. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-oneofone-xxhash-1.2.2 -; (package -; (name "go-github-com-oneofone-xxhash") -; (version "1.2.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/OneOfOne/xxhash") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1mjfhrwhvxa48rycjnqpqzm521i38h1hdyz6pdwmhd7xb8j6gwi6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/OneOfOne/xxhash")) -; (home-page "https://github.com/OneOfOne/xxhash") -; (synopsis "xxhash") -; (description -; "This is a native Go implementation of the excellent @url{https://github.com/Cyan4973/xxHash,xxhash}* algorithm, an extremely fast non-cryptographic Hash algorithm, working at speeds close to RAM limits.") -; (license license:asl2.0))) -; -;(define-public go-github-com-spaolacci-murmur3-0.0.0-20180118202830-f09979ecbc72 -; (package -; (name "go-github-com-spaolacci-murmur3") -; (version "0.0.0-20180118202830-f09979ecbc72") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/spaolacci/murmur3") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1lv3zyz3jy2d76bhvvs8svygx66606iygdvwy5cwc0p5z8yghq25")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/spaolacci/murmur3")) -; (home-page "https://github.com/spaolacci/murmur3") -; (synopsis "murmur3") -; (description -; "Package murmur3 implements Austin Appleby's non-cryptographic MurmurHash3. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-cespare-xxhash-1.1.0 -; (package -; (name "go-github-com-cespare-xxhash") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/cespare/xxhash") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1qyzlcdcayavfazvi03izx83fvip8h36kis44zr2sg7xf6sx6l4x")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/cespare/xxhash")) -; (propagated-inputs -; `(("go-github-com-spaolacci-murmur3-0.0.0-20180118202830-f09979ecbc72" -; ,go-github-com-spaolacci-murmur3-0.0.0-20180118202830-f09979ecbc72) -; ("go-github-com-oneofone-xxhash-1.2.2" -; ,go-github-com-oneofone-xxhash-1.2.2))) -; (home-page "https://github.com/cespare/xxhash") -; (synopsis "xxhash") -; (description -; "Package xxhash implements the 64-bit variant of xxHash (XXH64) as described -;at @url{http://cyan4973.github.io/xxHash/,http://cyan4973.github.io/xxHash/}. -;") -; (license license:expat))) -; -;(define-public go-github-com-cncf-xds-go-0.0.0-20210312221358-fbca930ec8ed -; (package -; (name "go-github-com-cncf-xds-go") -; (version "0.0.0-20210312221358-fbca930ec8ed") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/cncf/xds") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "16dlsms2k63570051ch1jb9yphrkqz61wdgs2l6zqaykhg13rjmh")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path -; "github.com/cncf/xds/go" -; #:unpack-path -; "github.com/cncf/xds")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2) -; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" -; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0))) -; (home-page "https://github.com/cncf/xds") -; (synopsis #f) -; (description #f) -; (license license:asl2.0))) -; -;(define-public go-github-com-envoyproxy-go-control-plane-0.9.9-0.20210512163311-63b5d3c536b0 -; (package -; (name "go-github-com-envoyproxy-go-control-plane") -; (version "0.9.9-0.20210512163311-63b5d3c536b0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/envoyproxy/go-control-plane") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1zb462sarpyjd4jxgiv9mqlmzz2rbjfh2r9xb7z4nbdkhpg1wh1j")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.25.0" -; ,go-google-golang-org-protobuf-1.25.0) -; ("go-google-golang-org-grpc-1.36.0" ,go-google-golang-org-grpc-1.36.0) -; ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" -; ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) -; ("go-go-opentelemetry-io-proto-otlp-0.7.0" -; ,go-go-opentelemetry-io-proto-otlp-0.7.0) -; ("go-github-com-stretchr-testify-1.5.1" -; ,go-github-com-stretchr-testify-1.5.1) -; ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" -; ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) -; ("go-github-com-google-go-cmp-0.5.0" -; ,go-github-com-google-go-cmp-0.5.0) -; ("go-github-com-golang-protobuf-1.4.3" -; ,go-github-com-golang-protobuf-1.4.3) -; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" -; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) -; ("go-github-com-cncf-xds-go-0.0.0-20210312221358-fbca930ec8ed" -; ,go-github-com-cncf-xds-go-0.0.0-20210312221358-fbca930ec8ed) -; ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" -; ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) -; (home-page "https://github.com/envoyproxy/go-control-plane") -; (synopsis "control-plane") -; (description -; "This repository contains a Go-based implementation of an API server that -;implements the discovery service APIs defined in -;@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-grpc-1.40.0 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.40.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0n63k9j3grwc8di3k2fkxqbdyzw0pwrcs9vpmwrnga6hdwg9d5hv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.25.0" -; ,go-google-golang-org-protobuf-1.25.0) -; ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" -; ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) -; ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" -; ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) -; ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" -; ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) -; ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" -; ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) -; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) -; ("go-github-com-google-go-cmp-0.5.0" -; ,go-github-com-google-go-cmp-0.5.0) -; ("go-github-com-golang-protobuf-1.4.3" -; ,go-github-com-golang-protobuf-1.4.3) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-envoyproxy-go-control-plane-0.9.9-0.20210512163311-63b5d3c536b0" -; ,go-github-com-envoyproxy-go-control-plane-0.9.9-0.20210512163311-63b5d3c536b0) -; ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" -; ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403) -; ("go-github-com-cespare-xxhash-1.1.0" -; ,go-github-com-cespare-xxhash-1.1.0))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-protobuf-1.26.0-rc.1 -; (package -; (name "go-google-golang-org-protobuf") -; (version "1.26.0-rc.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1m2jp247qcnix42jncn0q7pwrjgbhiqllb1115hfsz40xfnfhp8j")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.5.5" -; ,go-github-com-google-go-cmp-0.5.5))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.5.0 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.5.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1craaxv34g4g8q3yrv6pr28fx9ihnk7hj5gnbmxcrhcp78423lnf")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.26.0-rc.1" -; ,go-google-golang-org-protobuf-1.26.0-rc.1) -; ("go-github-com-google-go-cmp-0.5.5" -; ,go-github-com-google-go-cmp-0.5.5))) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-github-com-google-go-cmp-0.5.5 -; (package -; (name "go-github-com-google-go-cmp") -; (version "0.5.5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/go-cmp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "12fmkdhyv5d4is8s57k78j097zb0phlgnrkqc03agiszxlid69x7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/go-cmp")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" -; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) -; (home-page "https://github.com/google/go-cmp") -; (synopsis "Package for equality of Go values") -; (description -; "This package is intended to be a more powerful and safer alternative to -;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-1.27.1 -; (package -; (name "go-google-golang-org-protobuf") -; (version "1.27.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0aszb7cv8fq1m8akgd4kjyg5q7g5z9fdqnry6057ygq9r8r2yif2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.5.5" -; ,go-github-com-google-go-cmp-0.5.5) -; ("go-github-com-golang-protobuf-1.5.0" -; ,go-github-com-golang-protobuf-1.5.0))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20211005153810-c76a74d43a8e -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20211005153810-c76a74d43a8e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1y0dv6kra59adcvlgygw2rw5f70rr8jq18v2pcr2kjlfjmc48dh1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.27.1" -; ,go-google-golang-org-protobuf-1.27.1) -; ("go-google-golang-org-grpc-1.40.0" ,go-google-golang-org-grpc-1.40.0) -; ("go-golang-org-x-text-0.3.5" ,go-golang-org-x-text-0.3.5) -; ("go-golang-org-x-sys-0.0.0-20210510120138-977fb7262007" -; ,go-golang-org-x-sys-0.0.0-20210510120138-977fb7262007) -; ("go-golang-org-x-net-0.0.0-20210405180319-a5a99cb37ef4" -; ,go-golang-org-x-net-0.0.0-20210405180319-a5a99cb37ef4) -; ("go-github-com-golang-protobuf-1.5.2" -; ,go-github-com-golang-protobuf-1.5.2))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-github-com-cespare-xxhash-v2-2.1.1 -; (package -; (name "go-github-com-cespare-xxhash-v2") -; (version "2.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/cespare/xxhash") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0rl5rs8546zj1vzggv38w93wx0b5dvav7yy5hzxa8kw7iikv1cgr")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/cespare/xxhash/v2")) -; (home-page "https://github.com/cespare/xxhash") -; (synopsis "xxhash") -; (description -; "Package xxhash implements the 64-bit variant of xxHash (XXH64) as described -;at @url{http://cyan4973.github.io/xxHash/,http://cyan4973.github.io/xxHash/}. -;") -; (license license:expat))) -; -;(define-public go-github-com-cncf-xds-go-0.0.0-20210805033703-aa0b78936158 -; (package -; (name "go-github-com-cncf-xds-go") -; (version "0.0.0-20210805033703-aa0b78936158") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/cncf/xds") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1mym5pilywkv77ibw9baipf2ibnl3a06g2wjgjfy4xwwr8sbx6zb")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path -; "github.com/cncf/xds/go" -; #:unpack-path -; "github.com/cncf/xds")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2) -; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" -; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0))) -; (home-page "https://github.com/cncf/xds") -; (synopsis #f) -; (description #f) -; (license license:asl2.0))) -; -;(define-public go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c -; (package -; (name "go-gopkg-in-yaml-v3") -; (version "3.0.0-20200313102051-9f266ea9e77c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/yaml.v3") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1bbai3lzb50m0x2vwsdbagrbhvfylj9k1m32hgbqwldqx4p9ay35")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" -; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) -; (home-page "https://gopkg.in/yaml.v3") -; (synopsis "YAML support for the Go language") -; (description "Package yaml implements YAML support for the Go language. -;") -; (license #f))) -; -;(define-public go-github-com-stretchr-testify-1.7.0 -; (package -; (name "go-github-com-stretchr-testify") -; (version "1.7.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/testify") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ixgjsvafr3513pz3r6pmgk074s2dxkll0dadvl25gkf30rkmh10")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/testify")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" -; ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) -; ("go-github-com-stretchr-objx-0.1.0" -; ,go-github-com-stretchr-objx-0.1.0) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-davecgh-go-spew-1.1.0" -; ,go-github-com-davecgh-go-spew-1.1.0))) -; (home-page "https://github.com/stretchr/testify") -; (synopsis "Testify - Thou Shalt Write Tests") -; (description -; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -;") -; (license license:expat))) -; -;(define-public go-github-com-antihax-optional-1.0.0 -; (package -; (name "go-github-com-antihax-optional") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/antihax/optional") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ix08vl49qxr58rc6201cl97g1yznhhkwvqldslawind99js4rj0")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/antihax/optional")) -; (home-page "https://github.com/antihax/optional") -; (synopsis #f) -; (description #f) -; (license license:expat))) -; -;(define-public go-github-com-ghodss-yaml-1.0.0 -; (package -; (name "go-github-com-ghodss-yaml") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/ghodss/yaml") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0skwmimpy7hlh7pva2slpcplnm912rp3igs98xnqmn859kwa5v8g")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/ghodss/yaml")) -; (home-page "https://github.com/ghodss/yaml") -; (synopsis "YAML marshaling and unmarshaling support for Go") -; (description -; "Copyright 2013 The Go Authors. All rights reserved. -;Use of this source code is governed by a BSD-style -;license that can be found in the LICENSE file. -;") -; (license #f))) -; -;(define-public go-github-com-rogpeppe-fastuuid-1.2.0 -; (package -; (name "go-github-com-rogpeppe-fastuuid") -; (version "1.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/rogpeppe/fastuuid") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "028acdg63zkxpjz3l639nlhki2l0canr2v5jglrmwa1wpjqcfff8")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/rogpeppe/fastuuid")) -; (home-page "https://github.com/rogpeppe/fastuuid") -; (synopsis "fastuuid") -; (description -; "Package fastuuid provides fast UUID generation of 192 bit -;universally unique identifiers. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1 -; (package -; (name "go-golang-org-x-xerrors") -; (version "0.0.0-20200804184101-5ec99f83aff1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/xerrors") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1dbzc3gmf2haazpv7cgmv97rq40g2xzwbglc17vas8dwhgwgwrzb")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/xerrors")) -; (home-page "https://golang.org/x/xerrors") -; (synopsis #f) -; (description -; "Package xerrors implements functions to manipulate errors. -;") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20200513103714-09dca8ec2884 -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20200513103714-09dca8ec2884") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1bfv9n6sxizgxnf82xhwz9x6h7srdizhy5mdy90j0w833dlk6h9h")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" -; ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) -; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) -; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" -; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-github-com-golang-protobuf-1.3.3" -; ,go-github-com-golang-protobuf-1.3.3))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f -; (package -; (name "go-github-com-cncf-udpa-go") -; (version "0.0.0-20191209042840-269d4d468f6f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/cncf/udpa") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0i1jiaw2k3hlwwmg4hap81vb4s1p25xp9kdfww37v0fbgjariccs")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path -; "github.com/cncf/udpa/go" -; #:unpack-path -; "github.com/cncf/udpa")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2) -; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" -; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0))) -; (home-page "https://github.com/cncf/udpa") -; (synopsis "Description") -; (description -; "This library has been deprecated in favor of @code{github.com/cncf/xds/go}. All users are recommended to switch their imports.") -; (license license:asl2.0))) -; -;(define-public go-github-com-envoyproxy-go-control-plane-0.9.4 -; (package -; (name "go-github-com-envoyproxy-go-control-plane") -; (version "0.9.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/envoyproxy/go-control-plane") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0m0crzx70lp7vz13v20wxb1fcfdnzp7h3mkh3bn6a8mbfz6w5asj")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) -; ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" -; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) -; ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" -; ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) -; ("go-github-com-google-go-cmp-0.2.0" -; ,go-github-com-google-go-cmp-0.2.0) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2) -; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" -; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) -; ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" -; ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f) -; ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" -; ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) -; (home-page "https://github.com/envoyproxy/go-control-plane") -; (synopsis "control-plane") -; (description -; "This repository contains a Go-based implementation of an API server that -;implements the discovery service APIs defined in -;@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") -; (license license:asl2.0))) -; -;(define-public go-github-com-golang-protobuf-1.3.3 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.3.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1cyyr52yhj3fzrily3rmsbqyj8va4ld75lmry0857m39rgpv8sy1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-grpc-1.33.1 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.33.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0hv5p4d6m85gbk730l1ki3mdx2v8yr4djg00dwg7a8ga4ixxsxvc")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" -; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.3.3" -; ,go-github-com-golang-protobuf-1.3.3) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-envoyproxy-go-control-plane-0.9.4" -; ,go-github-com-envoyproxy-go-control-plane-0.9.4) -; ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" -; ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-gopkg-in-yaml-v2-2.2.3 -; (package -; (name "go-gopkg-in-yaml-v2") -; (version "2.2.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/yaml.v2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0l2s7y180gkkvrmnw2xyfszz1m4kp92x2hz680c9vyklcbzsxrrx")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" -; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) -; (home-page "https://gopkg.in/yaml.v2") -; (synopsis "YAML support for the Go language") -; (description "Package yaml implements YAML support for the Go language. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-grpc-ecosystem-grpc-gateway-1.16.0 -; (package -; (name "go-github-com-grpc-ecosystem-grpc-gateway") -; (version "1.16.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc-ecosystem/grpc-gateway") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0dzq1qbgzz2c6vnh8anx0j3py34sd72p35x6s2wrl001q68am5cc")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/grpc-ecosystem/grpc-gateway")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.2.3" ,go-gopkg-in-yaml-v2-2.2.3) -; ("go-google-golang-org-grpc-1.33.1" ,go-google-golang-org-grpc-1.33.1) -; ("go-google-golang-org-genproto-0.0.0-20200513103714-09dca8ec2884" -; ,go-google-golang-org-genproto-0.0.0-20200513103714-09dca8ec2884) -; ("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" -; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) -; ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" -; ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) -; ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" -; ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) -; ("go-github-com-rogpeppe-fastuuid-1.2.0" -; ,go-github-com-rogpeppe-fastuuid-1.2.0) -; ("go-github-com-golang-protobuf-1.3.3" -; ,go-github-com-golang-protobuf-1.3.3) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-ghodss-yaml-1.0.0" ,go-github-com-ghodss-yaml-1.0.0) -; ("go-github-com-antihax-optional-1.0.0" -; ,go-github-com-antihax-optional-1.0.0))) -; (home-page "https://github.com/grpc-ecosystem/grpc-gateway") -; (synopsis "grpc-gateway") -; (description -; "The grpc-gateway is a plugin of the Google protocol buffers compiler -;@url{https://github.com/protocolbuffers/protobuf,protoc}. -;It reads protobuf service definitions and generates a reverse-proxy server which -;translates a RESTful HTTP API into gRPC. This server is generated according to the -;@url{https://github.com/googleapis/googleapis/raw/master/google/api/http.proto#L46,(code google.api.http)} -;annotations in your service definitions.") -; (license license:bsd-3))) -; -;(define-public go-go-opentelemetry-io-proto-otlp-0.7.0 -; (package -; (name "go-go-opentelemetry-io-proto-otlp") -; (version "0.7.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/open-telemetry/opentelemetry-proto-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0p2a2i6f9gghvk3h9w08va50dhz7q8i5q6l4jvk6b7nisx6kb1qq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "go.opentelemetry.io/proto/otlp")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.25.0" -; ,go-google-golang-org-protobuf-1.25.0) -; ("go-google-golang-org-grpc-1.36.0" ,go-google-golang-org-grpc-1.36.0) -; ("go-github-com-grpc-ecosystem-grpc-gateway-1.16.0" -; ,go-github-com-grpc-ecosystem-grpc-gateway-1.16.0) -; ("go-github-com-golang-protobuf-1.4.3" -; ,go-github-com-golang-protobuf-1.4.3))) -; (home-page "https://go.opentelemetry.io/proto/otlp") -; (synopsis #f) -; (description #f) -; (license license:asl2.0))) -; -;(define-public go-github-com-envoyproxy-go-control-plane-0.9.0 -; (package -; (name "go-github-com-envoyproxy-go-control-plane") -; (version "0.9.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/envoyproxy/go-control-plane") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1dpvi4wnycyj6hnai78fr8aj58b27b1vcwdp3v0id5v22kvgr3xw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.23.0" ,go-google-golang-org-grpc-1.23.0) -; ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" -; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) -; ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" -; ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2) -; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" -; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) -; ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" -; ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) -; (home-page "https://github.com/envoyproxy/go-control-plane") -; (synopsis "control-plane") -; (description -; "This repository contains a Go-based implementation of an API server that -;implements the discovery service APIs defined in -;@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-grpc-1.25.1 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.25.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0a136ij9p11yj1vx892yqy40jkh7n5nfbpdvhgydcj823mx51c6f")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" -; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-github-com-google-go-cmp-0.2.0" -; ,go-github-com-google-go-cmp-0.2.0) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2) -; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" -; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) -; ("go-github-com-envoyproxy-go-control-plane-0.9.0" -; ,go-github-com-envoyproxy-go-control-plane-0.9.0))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403 -; (package -; (name "go-github-com-cncf-udpa-go") -; (version "0.0.0-20201120205902-5459f2c99403") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/cncf/udpa") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0i3al193dsp91j7iywqrm6fr56y2sz51ci4vf19mb3j4n2x44gsi")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path -; "github.com/cncf/udpa/go" -; #:unpack-path -; "github.com/cncf/udpa")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2) -; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" -; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0))) -; (home-page "https://github.com/cncf/udpa") -; (synopsis "Description") -; (description -; "This library has been deprecated in favor of @code{github.com/cncf/xds/go}. All users are recommended to switch their imports.") -; (license license:asl2.0))) -; -;(define-public go-github-com-davecgh-go-spew-1.1.0 -; (package -; (name "go-github-com-davecgh-go-spew") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/davecgh/go-spew") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/davecgh/go-spew")) -; (home-page "https://github.com/davecgh/go-spew") -; (synopsis "go-spew") -; (description -; "Go-spew implements a deep pretty printer for Go data structures to aid in -;debugging. A comprehensive suite of tests with 100% test coverage is provided -;to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage -;report. Go-spew is licensed under the liberal ISC license, so it may be used in -;open source or commercial projects.") -; (license license:isc))) -; -;(define-public go-github-com-pmezard-go-difflib-1.0.0 -; (package -; (name "go-github-com-pmezard-go-difflib") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/pmezard/go-difflib") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/pmezard/go-difflib")) -; (home-page "https://github.com/pmezard/go-difflib") -; (synopsis "go-difflib") -; (description -; "Go-difflib is a partial port of python 3 difflib package. Its main goal -;was to make unified and context diff available in pure Go, mostly for -;testing purposes.") -; (license license:bsd-3))) -; -;(define-public go-github-com-stretchr-objx-0.1.0 -; (package -; (name "go-github-com-stretchr-objx") -; (version "0.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/objx") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/objx")) -; (home-page "https://github.com/stretchr/objx") -; (synopsis "Objx") -; (description -; "Objx - Go package for dealing with maps, slices, JSON and other data. -;") -; (license license:expat))) -; -;(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 -; (package -; (name "go-gopkg-in-check-v1") -; (version "0.0.0-20161208181325-20d25e280405") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/check.v1") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) -; (home-page "https://gopkg.in/check.v1") -; (synopsis "Instructions") -; (description -; "Package check is a rich testing extension for Go's testing package. -;") -; (license license:bsd-2))) -; -;(define-public go-gopkg-in-yaml-v2-2.2.2 -; (package -; (name "go-gopkg-in-yaml-v2") -; (version "2.2.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/yaml.v2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "01wj12jzsdqlnidpyjssmj0r4yavlqy7dwrg7adqd8dicjc4ncsa")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" -; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) -; (home-page "https://gopkg.in/yaml.v2") -; (synopsis "YAML support for the Go language") -; (description "Package yaml implements YAML support for the Go language. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-stretchr-testify-1.5.1 -; (package -; (name "go-github-com-stretchr-testify") -; (version "1.5.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/testify") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "09r89m1wy4cjv2nps1ykp00qjpi0531r07q3s34hr7m6njk4srkl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/testify")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) -; ("go-github-com-stretchr-objx-0.1.0" -; ,go-github-com-stretchr-objx-0.1.0) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-davecgh-go-spew-1.1.0" -; ,go-github-com-davecgh-go-spew-1.1.0))) -; (home-page "https://github.com/stretchr/testify") -; (synopsis "Testify - Thou Shalt Write Tests") -; (description -; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -;") -; (license license:expat))) -; -;(define-public go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad -; (package -; (name "go-github-com-envoyproxy-go-control-plane") -; (version "0.9.9-0.20201210154907-fd9021fe5dad") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/envoyproxy/go-control-plane") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0piyk6pk36x2qr3bhys2k240pfwz3bv64fhi2l0vx1mzwiddapbm")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.23.0" -; ,go-google-golang-org-protobuf-1.23.0) -; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) -; ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" -; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) -; ("go-github-com-stretchr-testify-1.5.1" -; ,go-github-com-stretchr-testify-1.5.1) -; ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" -; ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.4.2" -; ,go-github-com-golang-protobuf-1.4.2) -; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" -; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) -; ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" -; ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403) -; ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" -; ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) -; (home-page "https://github.com/envoyproxy/go-control-plane") -; (synopsis "control-plane") -; (description -; "This repository contains a Go-based implementation of an API server that -;implements the discovery service APIs defined in -;@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") -; (license license:asl2.0))) -; -;(define-public go-github-com-golang-protobuf-1.4.2 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.4.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0m5z81im4nsyfgarjhppayk4hqnrwswr3nix9mj8pff8x9jvcjqw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.23.0" -; ,go-google-golang-org-protobuf-1.23.0) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0))) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-grpc-1.36.0 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.36.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1m4xsfv3ysc84cwqxqqr61fs3d2w04f0q5xbdjijhczjixcxwh5i")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.25.0" -; ,go-google-golang-org-protobuf-1.25.0) -; ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" -; ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) -; ("go-github-com-google-go-cmp-0.5.0" -; ,go-github-com-google-go-cmp-0.5.0) -; ("go-github-com-golang-protobuf-1.4.2" -; ,go-github-com-golang-protobuf-1.4.2) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad" -; ,go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad) -; ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" -; ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-envoyproxy-go-control-plane-0.9.10-0.20210907150352-cf90f659a021 -; (package -; (name "go-github-com-envoyproxy-go-control-plane") -; (version "0.9.10-0.20210907150352-cf90f659a021") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/envoyproxy/go-control-plane") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0qwhcz5a4c9b27xcxdzr3lq76xyxbgjb2l033b0k0hb5lqi1gdnv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.25.0" -; ,go-google-golang-org-protobuf-1.25.0) -; ("go-google-golang-org-grpc-1.36.0" ,go-google-golang-org-grpc-1.36.0) -; ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" -; ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) -; ("go-go-opentelemetry-io-proto-otlp-0.7.0" -; ,go-go-opentelemetry-io-proto-otlp-0.7.0) -; ("go-github-com-stretchr-testify-1.7.0" -; ,go-github-com-stretchr-testify-1.7.0) -; ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" -; ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) -; ("go-github-com-google-go-cmp-0.5.0" -; ,go-github-com-google-go-cmp-0.5.0) -; ("go-github-com-golang-protobuf-1.4.3" -; ,go-github-com-golang-protobuf-1.4.3) -; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" -; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) -; ("go-github-com-cncf-xds-go-0.0.0-20210805033703-aa0b78936158" -; ,go-github-com-cncf-xds-go-0.0.0-20210805033703-aa0b78936158) -; ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" -; ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) -; (home-page "https://github.com/envoyproxy/go-control-plane") -; (synopsis "control-plane") -; (description -; "This repository contains a Go-based implementation of an API server that -;implements the discovery service APIs defined in -;@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-protobuf-1.23.0 -; (package -; (name "go-google-golang-org-protobuf") -; (version "1.23.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "03yan0m1v0zmlr935p4n24fd376mznsg85zy8sywbgisls4s1bzy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.4.0" -; ,go-github-com-golang-protobuf-1.4.0))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.4.3 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.4.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1kf1d7xmyjvy0z6j5czp6nqyvj9zrk6liv6znif08927xqfrzyln")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.23.0" -; ,go-google-golang-org-protobuf-1.23.0) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0))) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-github-com-google-uuid-1.1.2 -; (package -; (name "go-github-com-google-uuid") -; (version "1.1.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/uuid") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1rbpfa0v0ly9sdnixcxhf79swki54ikgm1zkwwkj64p1ws66syqd")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/uuid")) -; (home-page "https://github.com/google/uuid") -; (synopsis "uuid") -; (description "Package uuid generates and inspects UUIDs. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20190404232315-eb5bcb51f2a3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "17k4g8krxbl84gzcs275b7gsh66dzm15fdxivjnx9xz8q84l4kby")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190412213103-97732733099d -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190412213103-97732733099d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "118hkp01i4z1f5h6hcjm0ff2ngqhrzj1f7731n0kw8dr6hvbx0sw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20200622213623-75b288015ac9") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "18vlncvvs11ds3zaaziqjlg5s2vcwi3496nn6qv7p0dp94j5pwa2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" -; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) -; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" -; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20200822124328-c89045814202 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20200822124328-c89045814202") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1g3wxilwbcbf2xj20y3mpxh38jka4fyhl48akfqf00vr48zmx96x")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" -; ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) -; ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" -; ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-cloud-google-com-go-0.34.0 -; (package -; (name "go-cloud-google-com-go") -; (version "0.34.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-cloud-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1kclgclwar3r37zbvb9gg3qxbgzkb50zk3s9778zlh2773qikmai")))) -; (build-system go-build-system) -; (arguments '(#:import-path "cloud.google.com/go")) -; (home-page "https://cloud.google.com/go") -; (synopsis "Google Cloud Client Libraries for Go") -; (description -; "Package cloud is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -;of sub-packages. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20190108225652-1e06a53dbb7e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0lpqqvdccby48nixihvmn8ig1z48b950m1bxfqxn78air308qc3j")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4 -; (package -; (name "go-golang-org-x-sync") -; (version "0.0.0-20181221193216-37e7f081c4d4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sync") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1bb0mw6ckb1k7z8v3iil2qlqwfj408fvvp8m1cik2b46p7snyjhm")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sync")) -; (home-page "https://golang.org/x/sync") -; (synopsis "Go Sync") -; (description -; "This repository provides Go concurrency primitives in addition to the -;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d -; (package -; (name "go-golang-org-x-oauth2") -; (version "0.0.0-20200107190931-bf48bf16ab8d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/oauth2") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1sirdib60zwmh93kf9qrx51r8544k1p9rs5mk0797wibz3m4mrdg")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/oauth2")) -; (propagated-inputs -; `(("go-google-golang-org-appengine-1.4.0" -; ,go-google-golang-org-appengine-1.4.0) -; ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" -; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) -; ("go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e" -; ,go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e) -; ("go-cloud-google-com-go-0.34.0" ,go-cloud-google-com-go-0.34.0))) -; (home-page "https://golang.org/x/oauth2") -; (synopsis "OAuth2 for Go") -; (description -; "Package oauth2 provides support for making -;OAuth2 authorized and authenticated HTTP requests, -;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -;It can additionally grant authorization with Bearer JWT. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20200323222414-85ca7c5b95cd") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1504qkgbhhm4f0bhk77v2r1lj6x171ay5m79alkg78wjb5cign5l")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-google-go-cmp-0.5.0 -; (package -; (name "go-github-com-google-go-cmp") -; (version "0.5.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/go-cmp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "04pzp583p6b32y34c6jygfxarff9qjs39rarvfh6467z24sdd9k4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/go-cmp")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" -; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) -; (home-page "https://github.com/google/go-cmp") -; (synopsis "Package for equality of Go values") -; (description -; "This package is intended to be a more powerful and safer alternative to -;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-1.22.0 -; (package -; (name "go-google-golang-org-protobuf") -; (version "1.22.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0n7lc4m7kfvj01glc0gnjy0zsnsic7cxnbvlajy0h14cxbab87pj")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.4.0" -; ,go-github-com-golang-protobuf-1.4.0))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.4.1 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.4.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0w7ks4vffnnkp0miwgc3chrsnmya45lzvpahb2wmw0jwhdp5kdx7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.22.0" -; ,go-google-golang-org-protobuf-1.22.0) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0))) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-github-com-census-instrumentation-opencensus-proto-0.2.1 -; (package -; (name "go-github-com-census-instrumentation-opencensus-proto") -; (version "0.2.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/census-instrumentation/opencensus-proto") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "19fcx3sc99i5dsklny6r073z5j20vlwn2xqm6di1q3b1xwchzqfj")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "github.com/census-instrumentation/opencensus-proto")) -; (home-page "https://github.com/census-instrumentation/opencensus-proto") -; (synopsis -; "OpenCensus Proto - Language Independent Interface Types For OpenCensus") -; (description -; "Census provides a framework to define and collect stats against metrics and to -;break those stats down across user-defined dimensions.") -; (license license:asl2.0))) -; -;(define-public go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4 -; (package -; (name "go-github-com-prometheus-client-model") -; (version "0.0.0-20190812154241-14fe0d1b01d4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/client_model") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0zdmk6rbbx39cvfz0r59v2jg5sg9yd02b4pds5n5llgvivi99550")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/client_model")) -; (propagated-inputs -; `(("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" -; ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0))) -; (home-page "https://github.com/prometheus/client_model") -; (synopsis "Deprecation note") -; (description -; "This repository used to contain the code that defined both -;the data model and the exposition format of Prometheus metrics.") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20190311212946-11955173bddd") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0hlkai67w167wiyivkzd1fgqrnyxkb94l2c6kr51jwcscizfyfn3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3 -; (package -; (name "go-golang-org-x-lint") -; (version "0.0.0-20190313153728-d0100b6bd8b3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/lint") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0b0amr9x4ji66iv9ayfx7zrfx52k1m5g66qfcxkgj80qrb1y2yn7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/lint")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" -; ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd))) -; (home-page "https://golang.org/x/lint") -; (synopsis "Installation") -; (description "Package lint contains a linter for Go source code. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sync-0.0.0-20190423024810-112230192c58 -; (package -; (name "go-golang-org-x-sync") -; (version "0.0.0-20190423024810-112230192c58") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sync") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "05i2k43j2d0llq768hg5pf3hb2yhfzp9la1w5wp0rsnnzblr0lfn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sync")) -; (home-page "https://golang.org/x/sync") -; (synopsis "Go Sync") -; (description -; "This repository provides Go concurrency primitives in addition to the -;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135 -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20190524140312-2c0ae7006135") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1lsi2ssxajclj3bciz2a41v1vjv768ja3v6wnbyhxy8xphwkp4fk")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" -; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-grpc-1.23.0 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.23.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1cn33r2gclmq2v1ndpf1n5bmhf2qs8mms7ii5cnl6f9ch4r2c4k3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" -; ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) -; ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" -; ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) -; ("go-google-golang-org-appengine-1.1.0" -; ,go-google-golang-org-appengine-1.1.0) -; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" -; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-github-com-google-go-cmp-0.2.0" -; ,go-github-com-google-go-cmp-0.2.0) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0) -; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-client9-misspell-0.3.4" -; ,go-github-com-client9-misspell-0.3.4) -; ("go-github-com-burntsushi-toml-0.3.1" -; ,go-github-com-burntsushi-toml-0.3.1) -; ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473 -; (package -; (name "go-github-com-envoyproxy-go-control-plane") -; (version "0.9.1-0.20191026205805-5f8ba28d4473") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/envoyproxy/go-control-plane") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1f1s764rd41vd9vgk3r14h1m6fz6pdvxj6fd83q58gxifbc4q5w4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.23.0" ,go-google-golang-org-grpc-1.23.0) -; ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" -; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) -; ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" -; ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2) -; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" -; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) -; ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" -; ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) -; (home-page "https://github.com/envoyproxy/go-control-plane") -; (synopsis "control-plane") -; (description -; "This repository contains a Go-based implementation of an API server that -;implements the discovery service APIs defined in -;@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") -; (license license:asl2.0))) -; -;(define-public go-github-com-envoyproxy-protoc-gen-validate-0.1.0 -; (package -; (name "go-github-com-envoyproxy-protoc-gen-validate") -; (version "0.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/envoyproxy/protoc-gen-validate") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0kxd3wwh3xwqk0r684hsy281xq4y71cd11d4q2hspcjbnlbwh7cy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/envoyproxy/protoc-gen-validate")) -; (home-page "https://github.com/envoyproxy/protoc-gen-validate") -; (synopsis "protoc-gen-validate (PGV)") -; (description -; "PGV is a protoc plugin to generate polyglot message validators. While protocol buffers effectively guarantee the types of structured data, they cannot enforce semantic rules for values. This plugin adds support to protoc-generated code to validate such constraints.") -; (license license:asl2.0))) -; -;(define-public go-github-com-google-go-cmp-0.2.0 -; (package -; (name "go-github-com-google-go-cmp") -; (version "0.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/go-cmp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1fbv0x27k9sn8svafc0hjwsnckk864lv4yi7bvzrxvmd3d5hskds")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/go-cmp")) -; (home-page "https://github.com/google/go-cmp") -; (synopsis "Package for equality of Go values") -; (description -; "This package is intended to be a more powerful and safer alternative to -;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20190308221718-c2843e01d9a2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20190311183353-d8887717615a -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20190311183353-d8887717615a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1wfm6ngxjyj7v5a2dqib6lw8bb2rdnf1kl48diykxjrsddn0s163")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190215142949-d0b11bdaac8a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.3.2 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.3.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1k1wb4zr0qbwgpvz9q5ws9zhlal8hq7dmq62pwxxriksayl6hzym")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4 -; (package -; (name "go-golang-org-x-exp") -; (version "0.0.0-20190121172915-509febef88a4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/exp") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "02isrh39z8znrp5znplzy0dip2gnrl3jm1355raliyvhnhg04j6q")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/exp")) -; (home-page "https://golang.org/x/exp") -; (synopsis "exp") -; (description -; "This subrepository holds experimental and deprecated (in the @code{old} -;directory) packages.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961 -; (package -; (name "go-golang-org-x-lint") -; (version "0.0.0-20190227174305-5b3e6a55c961") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/lint") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "04zp5vbds9nffmjg36wjpi5vg9zmf890yf78xxasai3ni637ivfw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/lint")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" -; ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c))) -; (home-page "https://golang.org/x/lint") -; (synopsis "Installation") -; (description "Package lint contains a linter for Go source code. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20190213061140-3a22650c66bd") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "12q6fgdkc0742vcms67nzadgdwvi3rnb1gx3vwkljhrvlnwvz7wc")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f -; (package -; (name "go-golang-org-x-sync") -; (version "0.0.0-20181108010431-42b317875d0f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sync") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0mrjhk7al7yyh76x9flvxy4jm5jyqh2fxbxagpaazxn1xdgkaif3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sync")) -; (home-page "https://golang.org/x/sync") -; (synopsis "Go Sync") -; (description -; "This repository provides Go concurrency primitives in addition to the -;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20180724234803-3673e40ba225") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0vx7mz18p480p7fh0w5jv6mfdbsswrlac1sz4i705q7q7ygz59lm")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-appengine-1.4.0 -; (package -; (name "go-google-golang-org-appengine") -; (version "1.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/appengine") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "06zl7w4sxgdq2pl94wy9ncii6h0z3szl4xpqds0sv3b3wbdlhbnn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/appengine")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225" -; ,go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0))) -; (home-page "https://google.golang.org/appengine") -; (synopsis "Go App Engine packages") -; (description -; "Package appengine provides basic functionality for Google App Engine. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20190226205152-f727befe758c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0rpcqw6z13qd33rbasg32zb0gdhgh5lzjla63r6g651zf6hpsak0")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-google-golang-org-appengine-1.4.0" -; ,go-google-golang-org-appengine-1.4.0) -; ("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" -; ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) -; ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" -; ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-cloud-google-com-go-0.26.0 -; (package -; (name "go-cloud-google-com-go") -; (version "0.26.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-cloud-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "149v3ci17g6wd2pm18mzcncq5qpl9hwdjnz3rlbn5rfidyn46la1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "cloud.google.com/go")) -; (home-page "https://cloud.google.com/go") -; (synopsis "Google Cloud Client Libraries for Go") -; (description -; "Package cloud is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -;of sub-packages. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-burntsushi-toml-0.3.1 -; (package -; (name "go-github-com-burntsushi-toml") -; (version "0.3.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/BurntSushi/toml") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1fjdwwfzyzllgiwydknf1pwjvy49qxfsczqx5gz3y0izs7as99j6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/BurntSushi/toml")) -; (home-page "https://github.com/BurntSushi/toml") -; (synopsis "TOML parser and encoder for Go with reflection") -; (description -; "Package toml implements decoding and encoding of TOML files. -;") -; (license license:expat))) -; -;(define-public go-github-com-client9-misspell-0.3.4 -; (package -; (name "go-github-com-client9-misspell") -; (version "0.3.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/client9/misspell") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1vwf33wsc4la25zk9nylpbp9px3svlmldkm0bha4hp56jws4q9cs")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/client9/misspell")) -; (home-page "https://github.com/client9/misspell") -; (synopsis "Install") -; (description -; "Package misspell corrects commonly misspelled English words in source files. -;") -; (license license:expat))) -; -;(define-public go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b -; (package -; (name "go-github-com-golang-glog") -; (version "0.0.0-20160126235308-23def4e6c14b") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/glog") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0jb2834rw5sykfr937fxi8hxi2zy80sj2bdn9b3jb4b26ksqng30")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/glog")) -; (home-page "https://github.com/golang/glog") -; (synopsis "glog") -; (description -; "Package glog implements logging analogous to the Google-internal C++ INFO/ERROR/V setup. -;It provides functions Info, Warning, Error, Fatal, plus formatting variants such as -;Infof. It also provides V-style logging controlled by the -v and -vmodule=file=2 flags. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-golang-mock-1.1.1 -; (package -; (name "go-github-com-golang-mock") -; (version "1.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/mock") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ap8wb6pdl6ccmdb43advjll2ly4sz26wsc3axw0hbrjrybybzgy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/mock")) -; (home-page "https://github.com/golang/mock") -; (synopsis "gomock") -; (description -; "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It -;integrates well with Go's built-in @code{testing} package, but can be used in other -;contexts too.") -; (license license:asl2.0))) -; -;(define-public go-github-com-golang-protobuf-1.2.0 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0kf4b59rcbb1cchfny2dm9jyznp8ri2hsb14n8iak1q8986xa0ab")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3 -; (package -; (name "go-golang-org-x-lint") -; (version "0.0.0-20181026193005-c67002cb31c3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/lint") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0gymbggskjmphqxqcx4s0vnlcz7mygbix0vhwcwv5r67c0bf6765")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/lint")) -; (home-page "https://golang.org/x/lint") -; (synopsis "Installation") -; (description "Package lint contains a linter for Go source code. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20180826012351-8a410e7b638d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0hp0l8f6fir5gmgrjq0mhh5ikc0rlrm72774228800kfwqjrxxny")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be -; (package -; (name "go-golang-org-x-oauth2") -; (version "0.0.0-20180821212333-d2e6202438be") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/oauth2") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0wbn75fd10485nb93bm4kqldqifdim5xqy4v7r5sdvimvf3fyhn7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/oauth2")) -; (home-page "https://golang.org/x/oauth2") -; (synopsis "OAuth2 for Go") -; (description -; "Package oauth2 provides support for making -;OAuth2 authorized and authenticated HTTP requests, -;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -;It can additionally grant authorization with Bearer JWT. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f -; (package -; (name "go-golang-org-x-sync") -; (version "0.0.0-20180314180146-1d60e4601c6f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sync") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "046jlanz2lkxq1r57x9bl6s4cvfqaic6p2xybsj8mq1120jv4rs6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sync")) -; (home-page "https://golang.org/x/sync") -; (synopsis "Go Sync") -; (description -; "This repository provides Go concurrency primitives in addition to the -;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20180830151530-49385e6e1522") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0spbldahns09fdxkxflb1x24f8k2awdlnr6k5i7ci4fqd19r1dv4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-text-0.3.0 -; (package -; (name "go-golang-org-x-text") -; (version "0.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/text") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/text")) -; (home-page "https://golang.org/x/text") -; (synopsis "Go Text") -; (description -; "text is a repository of text-related packages related to internationalization -;(i18n) and localization (l10n), such as character encodings, text -;transformations, and locale-specific text handling. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20190114222345-bf090417da8b") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1n3xp56k4k3lj06rx7587wr5gnwg0148nvwx6ch0g7ar02hh94hw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-appengine-1.1.0 -; (package -; (name "go-google-golang-org-appengine") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/appengine") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1pz202zszg8f35dk5pfhwgcdi3r6dx1l4yk6x6ly7nb4j45zi96x")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/appengine")) -; (home-page "https://google.golang.org/appengine") -; (synopsis "Go App Engine packages") -; (description -; "Package appengine provides basic functionality for Google App Engine. -;") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8 -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20180817151627-c66870c02cf8") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0siq7sv68556ygqi2d2zmvx8l1xjqdc0fylqzci5h1mq2i14bayn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-grpc-1.19.0 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.19.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1znqwpj7ix3dpzx4zch0q70sdl3z5lvbb7v3q4i8sf8kas3yv71v")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" -; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) -; ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" -; ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) -; ("go-google-golang-org-appengine-1.1.0" -; ,go-google-golang-org-appengine-1.1.0) -; ("go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b" -; ,go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b) -; ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522" -; ,go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522) -; ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" -; ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d" -; ,go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d) -; ("go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3" -; ,go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0) -; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-client9-misspell-0.3.4" -; ,go-github-com-client9-misspell-0.3.4) -; ("go-github-com-burntsushi-toml-0.3.1" -; ,go-github-com-burntsushi-toml-0.3.1) -; ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099 -; (package -; (name "go-honnef-co-go-tools") -; (version "0.0.0-20190102054323-c2f93a96b099") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/dominikh/go-tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "07lg29aiap80ca9f201jzng9vjr168cv3qmvjmbd7v5pmww9kmr8")))) -; (build-system go-build-system) -; (arguments '(#:import-path "honnef.co/go/tools")) -; (home-page "https://honnef.co/go/tools") -; (synopsis "Documentation") -; (description -; "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, -;offers simplifications, and enforces style rules.") -; (license license:expat))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55 -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20190819201941-24fa4b261c55") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "109zhaqlfd8zkbr1hk6zqbs6vcxfrk64scjwh2nswph05gr0m84d")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" -; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) -; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) -; ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" -; ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) -; ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" -; ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) -; ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" -; ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-grpc-1.27.0 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.27.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ijrmgrxyabfn51nm3p9l81iaasq5fg237wnr6mdc4dzsfcg8kd7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" -; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-github-com-google-go-cmp-0.2.0" -; ,go-github-com-google-go-cmp-0.2.0) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2) -; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" -; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) -; ("go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473" -; ,go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-google-go-cmp-0.3.0 -; (package -; (name "go-github-com-google-go-cmp") -; (version "0.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/go-cmp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1hyxx3434zshl2m9ja78gwlkg1rx9yl6diqa7dnjb31xz5x4gbjj")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/go-cmp")) -; (home-page "https://github.com/google/go-cmp") -; (synopsis "Package for equality of Go values") -; (description -; "This package is intended to be a more powerful and safer alternative to -;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd -; (package -; (name "go-google-golang-org-protobuf") -; (version "0.0.0-20200109180630-ec00e32a8dfd") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0w6lp9w2avxcpxwzzhspr209ifhyjagvs23k0vykfdqahl1aplrh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.3.0" -; ,go-github-com-google-go-cmp-0.3.0))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.4.0-rc.1 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.4.0-rc.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "186rirvbfgv6hrxp27ipx2cdpv19qifdd20biqfdm01wiyclqimn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd" -; ,go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd) -; ("go-github-com-google-go-cmp-0.3.1" -; ,go-github-com-google-go-cmp-0.3.1))) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-github-com-google-go-cmp-0.3.1 -; (package -; (name "go-github-com-google-go-cmp") -; (version "0.3.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/go-cmp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1caw49i0plkjxir7kdf5qhwls3krqwfmi7g4h392rdfwi3kfahx1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/go-cmp")) -; (home-page "https://github.com/google/go-cmp") -; (synopsis "Package for equality of Go values") -; (description -; "This package is intended to be a more powerful and safer alternative to -;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64 -; (package -; (name "go-google-golang-org-protobuf") -; (version "0.0.0-20200221191635-4d8936d0db64") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0563bsvdjj6k0sgwqd5yzrgfiax7sp3lcwh608gync5sv9fx39cy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.3.1" -; ,go-github-com-google-go-cmp-0.3.1) -; ("go-github-com-golang-protobuf-1.4.0-rc.1" -; ,go-github-com-golang-protobuf-1.4.0-rc.1))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.4.0-rc.1.0.20200221234624-67d41d38c208") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ykxhg3zixmw25pd435f8h16wnz1g00jpcmmg3xl030kksgqgpp6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64" -; ,go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0))) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60 -; (package -; (name "go-google-golang-org-protobuf") -; (version "0.0.0-20200228230310-ab0ca4ff8a60") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1rinspcznfp85yz4vrlf4h38hr576virgv8lcs22bsylqga808sd")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208" -; ,go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.4.0-rc.2 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.4.0-rc.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1hd43hjv5zl6bjbmhm5phx74bw4xajsi73m5zky2k56za4mpgzzc")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60" -; ,go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0))) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967 -; (package -; (name "go-google-golang-org-protobuf") -; (version "1.20.1-0.20200309200217-e05f789c0967") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "17wmy89hnmpkwc63rfcjp50q15s9f1rhmczg06c3z9yy41zk82w9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.4.0-rc.2" -; ,go-github-com-golang-protobuf-1.4.0-rc.2))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.4.0-rc.4.0.20200313231945-b860323f09d0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1zj6cwshx0l5n9cn2cpbikzzb79px5dmkpc4p19zy1iif5r5p0z0")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967" -; ,go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0))) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-1.21.0 -; (package -; (name "go-google-golang-org-protobuf") -; (version "1.21.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "12bwln8z1lf9105gdp6ip0rx741i4yfz1520gxnp8861lh9wcl63")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0" -; ,go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.4.0 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1fjvl5n77abxz5qsd4mgyvjq19x43c5bfvmq62mq3m5plx6zksc8")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.21.0" -; ,go-google-golang-org-protobuf-1.21.0) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0))) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543 -; (package -; (name "go-golang-org-x-xerrors") -; (version "0.0.0-20191204190536-9bdfabe68543") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/xerrors") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1yjfi1bk9xb81lqn85nnm13zz725wazvrx3b50hx19qmwg7a4b0c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/xerrors")) -; (home-page "https://golang.org/x/xerrors") -; (synopsis #f) -; (description -; "Package xerrors implements functions to manipulate errors. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-google-go-cmp-0.4.0 -; (package -; (name "go-github-com-google-go-cmp") -; (version "0.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/go-cmp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1x5pvl3fb5sbyng7i34431xycnhmx8xx94gq2n19g6p0vz68z2v2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/go-cmp")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" -; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) -; (home-page "https://github.com/google/go-cmp") -; (synopsis "Package for equality of Go values") -; (description -; "This package is intended to be a more powerful and safer alternative to -;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc -; (package -; (name "go-google-golang-org-protobuf") -; (version "1.23.1-0.20200526195155-81db48ad09cc") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "02cpr8rqr5wmpj2fqb32mzilsdnxkh52g1jz95a3ck3gzffc7hh1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.4.0" -; ,go-github-com-golang-protobuf-1.4.0))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc -; (package -; (name "go-honnef-co-go-tools") -; (version "0.0.0-20190523083050-ea95bdfd59fc") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/dominikh/go-tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1763nw7pwpzkvzfnm63dgzcgbq9hwmq5l1nffchnhh77vgkaq4ic")))) -; (build-system go-build-system) -; (arguments '(#:import-path "honnef.co/go/tools")) -; (home-page "https://honnef.co/go/tools") -; (synopsis "Documentation") -; (description -; "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, -;offers simplifications, and enforces style rules.") -; (license license:expat))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013 -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20200526211855-cb27e3aa2013") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ml73ghqcwbz7ipfk8fnxb5indcml49b5p7vp1fsyny0abyyrmxf")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" -; ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) -; ("go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc" -; ,go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc) -; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) -; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" -; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-github-com-golang-protobuf-1.4.1" -; ,go-github-com-golang-protobuf-1.4.1))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-protobuf-1.25.0 -; (package -; (name "go-google-golang-org-protobuf") -; (version "1.25.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0apfl42x166dh96zfq5kvv4b4ax9xljik6bq1mnvn2240ir3mc23")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" -; ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) -; ("go-github-com-google-go-cmp-0.5.0" -; ,go-github-com-google-go-cmp-0.5.0) -; ("go-github-com-golang-protobuf-1.4.1" -; ,go-github-com-golang-protobuf-1.4.1))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-grpc-1.41.0 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.41.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "10a0n2lmvl8zqhcswz3sjyqil0sk0mvp892d04lfnq61wq1ssgsn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.25.0" -; ,go-google-golang-org-protobuf-1.25.0) -; ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" -; ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) -; ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" -; ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) -; ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" -; ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) -; ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" -; ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) -; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) -; ("go-github-com-google-go-cmp-0.5.0" -; ,go-github-com-google-go-cmp-0.5.0) -; ("go-github-com-golang-protobuf-1.4.3" -; ,go-github-com-golang-protobuf-1.4.3) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-envoyproxy-go-control-plane-0.9.10-0.20210907150352-cf90f659a021" -; ,go-github-com-envoyproxy-go-control-plane-0.9.10-0.20210907150352-cf90f659a021) -; ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" -; ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403) -; ("go-github-com-cespare-xxhash-v2-2.1.1" -; ,go-github-com-cespare-xxhash-v2-2.1.1))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-containers-image-v5-5.17.0 -; (package -; (name "go-github-com-containers-image-v5") -; (version "5.17.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containers/image") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0nr5myldx1jhw7qjjilh7xwvn8g8lx85d9llny5iyagqn75q45b1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containers/image/v5")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.41.0" ,go-google-golang-org-grpc-1.41.0) -; ("go-google-golang-org-genproto-0.0.0-20211005153810-c76a74d43a8e" -; ,go-google-golang-org-genproto-0.0.0-20211005153810-c76a74d43a8e) -; ("go-golang-org-x-text-0.3.7" ,go-golang-org-x-text-0.3.7) -; ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" -; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) -; ("go-golang-org-x-sys-0.0.0-20211004093028-2c5d950f24ef" -; ,go-golang-org-x-sys-0.0.0-20211004093028-2c5d950f24ef) -; ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" -; ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) -; ("go-golang-org-x-net-0.0.0-20211005001312-d4b1ae081e3b" -; ,go-golang-org-x-net-0.0.0-20211005001312-d4b1ae081e3b) -; ("go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2" -; ,go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2) -; ("go-go-opencensus-io-0.23.0" ,go-go-opencensus-io-0.23.0) -; ("go-go-etcd-io-bbolt-1.3.6" ,go-go-etcd-io-bbolt-1.3.6) -; ("go-github-com-xeipuuv-gojsonschema-1.2.0" -; ,go-github-com-xeipuuv-gojsonschema-1.2.0) -; ("go-github-com-xeipuuv-gojsonpointer-0.0.0-20190809123943-df4f5c81cb3b" -; ,go-github-com-xeipuuv-gojsonpointer-0.0.0-20190809123943-df4f5c81cb3b) -; ("go-github-com-vbauerster-mpb-v7-7.1.5" -; ,go-github-com-vbauerster-mpb-v7-7.1.5) -; ("go-github-com-vbatts-tar-split-0.11.2" -; ,go-github-com-vbatts-tar-split-0.11.2) -; ("go-github-com-ulikunitz-xz-0.5.10" -; ,go-github-com-ulikunitz-xz-0.5.10) -; ("go-github-com-stretchr-testify-1.7.0" -; ,go-github-com-stretchr-testify-1.7.0) -; ("go-github-com-sirupsen-logrus-1.8.1" -; ,go-github-com-sirupsen-logrus-1.8.1) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-ostreedev-ostree-go-0.0.0-20190702140239-759a8c1ac913" -; ,go-github-com-ostreedev-ostree-go-0.0.0-20190702140239-759a8c1ac913) -; ("go-github-com-opencontainers-selinux-1.9.1" -; ,go-github-com-opencontainers-selinux-1.9.1) -; ("go-github-com-opencontainers-image-spec-1.0.2-0.20210819154149-5ad6f50d6283" -; ,go-github-com-opencontainers-image-spec-1.0.2-0.20210819154149-5ad6f50d6283) -; ("go-github-com-opencontainers-go-digest-1.0.0" -; ,go-github-com-opencontainers-go-digest-1.0.0) -; ("go-github-com-mtrmac-gpgme-0.1.2" ,go-github-com-mtrmac-gpgme-0.1.2) -; ("go-github-com-morikuni-aec-1.0.0" ,go-github-com-morikuni-aec-1.0.0) -; ("go-github-com-manifoldco-promptui-0.9.0" -; ,go-github-com-manifoldco-promptui-0.9.0) -; ("go-github-com-klauspost-pgzip-1.2.5" -; ,go-github-com-klauspost-pgzip-1.2.5) -; ("go-github-com-klauspost-compress-1.13.6" -; ,go-github-com-klauspost-compress-1.13.6) -; ("go-github-com-imdario-mergo-0.3.12" -; ,go-github-com-imdario-mergo-0.3.12) -; ("go-github-com-hashicorp-go-multierror-1.1.1" -; ,go-github-com-hashicorp-go-multierror-1.1.1) -; ("go-github-com-gorilla-mux-1.7.4" ,go-github-com-gorilla-mux-1.7.4) -; ("go-github-com-google-uuid-1.3.0" ,go-github-com-google-uuid-1.3.0) -; ("go-github-com-golang-groupcache-0.0.0-20210331224755-41bb18bfe9da" -; ,go-github-com-golang-groupcache-0.0.0-20210331224755-41bb18bfe9da) -; ("go-github-com-ghodss-yaml-1.0.0" ,go-github-com-ghodss-yaml-1.0.0) -; ("go-github-com-docker-libtrust-0.0.0-20160708172513-aabc10ec26b7" -; ,go-github-com-docker-libtrust-0.0.0-20160708172513-aabc10ec26b7) -; ("go-github-com-docker-go-connections-0.4.0" -; ,go-github-com-docker-go-connections-0.4.0) -; ("go-github-com-docker-docker-credential-helpers-0.6.4" -; ,go-github-com-docker-docker-credential-helpers-0.6.4) -; ("go-github-com-docker-docker-20.10.11+incompatible" -; ,go-github-com-docker-docker-20.10.11+incompatible) -; ("go-github-com-docker-distribution-2.7.1+incompatible" -; ,go-github-com-docker-distribution-2.7.1+incompatible) -; ("go-github-com-containers-storage-1.37.0" -; ,go-github-com-containers-storage-1.37.0) -; ("go-github-com-containers-ocicrypt-1.1.2" -; ,go-github-com-containers-ocicrypt-1.1.2) -; ("go-github-com-containers-libtrust-0.0.0-20190913040956-14b96171aa3b" -; ,go-github-com-containers-libtrust-0.0.0-20190913040956-14b96171aa3b) -; ("go-github-com-containerd-containerd-1.5.7" -; ,go-github-com-containerd-containerd-1.5.7) -; ("go-github-com-burntsushi-toml-0.4.1" -; ,go-github-com-burntsushi-toml-0.4.1) -; ("go-github-com-14rcole-gopopulate-0.0.0-20180821133914-b175b219e774" -; ,go-github-com-14rcole-gopopulate-0.0.0-20180821133914-b175b219e774))) -; (home-page "https://github.com/containers/image") -; (synopsis "") -; (description -; "The package image provides libraries and commands to interact with container images. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-cyphar-filepath-securejoin-0.2.3 -; (package -; (name "go-github-com-cyphar-filepath-securejoin") -; (version "0.2.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/cyphar/filepath-securejoin") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0w03d8hslwfhcnfqck21agzs7y0sc6gpwfz53md8fv26ishwxppy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/cyphar/filepath-securejoin")) -; (home-page "https://github.com/cyphar/filepath-securejoin") -; (synopsis #f) -; (description -; "Package securejoin is an implementation of the hopefully-soon-to-be-included -;SecureJoin helper that is meant to be part of the \"path/filepath\" package. -;The purpose of this project is to provide a PoC implementation to make the -;SecureJoin proposal (@url{https://github.com/golang/go/issues/20126,https://github.com/golang/go/issues/20126}) more -;tangible. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20200223170610-d5e6a3e2c0ae -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20200223170610-d5e6a3e2c0ae") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0lz7vm5dz2p14fzq2j4m1l9p392cl0fa73aaf45gln07ylfajk4n")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-mattn-go-colorable-0.1.8 -; (package -; (name "go-github-com-mattn-go-colorable") -; (version "0.1.8") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mattn/go-colorable") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0q34zqwbnls72md8q8mhj368s7p3i4xspvs3rk8fs76s0pn7dr2l")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mattn/go-colorable")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20200223170610-d5e6a3e2c0ae" -; ,go-golang-org-x-sys-0.0.0-20200223170610-d5e6a3e2c0ae) -; ("go-github-com-mattn-go-isatty-0.0.12" -; ,go-github-com-mattn-go-isatty-0.0.12))) -; (home-page "https://github.com/mattn/go-colorable") -; (synopsis "go-colorable") -; (description "Colorable writer for windows.") -; (license license:expat))) -; -;(define-public go-golang-org-x-sys-0.0.0-20200116001909-b77594299b42 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20200116001909-b77594299b42") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0isfm6kmh4fjhh6m7mrb3zvdjka2y31c5habr5kydl7rg0lwkabv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-mattn-go-isatty-0.0.12 -; (package -; (name "go-github-com-mattn-go-isatty") -; (version "0.0.12") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mattn/go-isatty") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1dfsh27d52wmz0nmmzm2382pfrs2fcijvh6cgir7jbb4pnigr5w4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mattn/go-isatty")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20200116001909-b77594299b42" -; ,go-golang-org-x-sys-0.0.0-20200116001909-b77594299b42))) -; (home-page "https://github.com/mattn/go-isatty") -; (synopsis "go-isatty") -; (description "Package isatty implements interface to isatty -;") -; (license license:expat))) -; -;(define-public go-github-com-fatih-color-1.12.0 -; (package -; (name "go-github-com-fatih-color") -; (version "1.12.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/fatih/color") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0r6r4vh9aiz8ny2whvpq288x8shkyvpj38g5pqw5840ryq38chig")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/fatih/color")) -; (propagated-inputs -; `(("go-github-com-mattn-go-isatty-0.0.12" -; ,go-github-com-mattn-go-isatty-0.0.12) -; ("go-github-com-mattn-go-colorable-0.1.8" -; ,go-github-com-mattn-go-colorable-0.1.8))) -; (home-page "https://github.com/fatih/color") -; (synopsis "color") -; (description -; "Package color is an ANSI color package to output colorized or SGR defined -;output to the standard output. The API can be used in several way, pick one -;that suits you. -;") -; (license license:expat))) -; -;(define-public go-github-com-go-log-log-0.2.0 -; (package -; (name "go-github-com-go-log-log") -; (version "0.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/go-log/log") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1idnqv4yvkmdh3wcsgvhcpak9z6ix8dsifdjq5kfbbnskdq5rmvg")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/go-log/log")) -; (home-page "https://github.com/go-log/log") -; (synopsis "Log") -; (description "Package log provides a log interface -;") -; (license license:expat))) -; -;(define-public go-github-com-godbus-dbus-4.1.0+incompatible -; (package -; (name "go-github-com-godbus-dbus") -; (version "4.1.0+incompatible") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/godbus/dbus") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ckvg15zdsgmbn4mi36cazkb407ixc9mmyf7vwj8b8wi3d00rgn9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/godbus/dbus")) -; (home-page "https://github.com/godbus/dbus") -; (synopsis "dbus") -; (description -; "Package dbus implements bindings to the D-Bus message bus system. -;") -; (license license:bsd-2))) -; -;(define-public go-github-com-google-uuid-1.3.0 -; (package -; (name "go-github-com-google-uuid") -; (version "1.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/uuid") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0imkw52m7fzrwsdj2rfrk3zbplqfbwncyv6hv89xw0vdw3jpk122")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/uuid")) -; (home-page "https://github.com/google/uuid") -; (synopsis "uuid") -; (description "Package uuid generates and inspects UUIDs. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-gorilla-websocket-1.4.2 -; (package -; (name "go-github-com-gorilla-websocket") -; (version "1.4.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/gorilla/websocket") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0mkm9w6kjkrlzab5wh8p4qxkc0icqawjbvr01d2nk6ykylrln40s")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/gorilla/websocket")) -; (home-page "https://github.com/gorilla/websocket") -; (synopsis "Gorilla WebSocket") -; (description -; "Package websocket implements the WebSocket protocol defined in @url{https://rfc-editor.org/rfc/rfc6455.html,RFC 6455}. -;") -; (license license:bsd-2))) -; -;(define-public go-github-com-satori-go-uuid-1.2.1-0.20180404165556-75cca531ea76 -; (package -; (name "go-github-com-satori-go-uuid") -; (version "1.2.1-0.20180404165556-75cca531ea76") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/satori/go.uuid") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0fi1rc2zl0vyyah6iy8cvsjyxipp6pnzb19x40qkq3j1qlra20qy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/satori/go.uuid")) -; (home-page "https://github.com/satori/go.uuid") -; (synopsis "UUID package for Go language") -; (description -; "Package uuid provides implementation of Universally Unique Identifier (UUID). -;Supported versions are 1, 3, 4 and 5 (as specified in @url{https://rfc-editor.org/rfc/rfc4122.html,RFC 4122}) and -;version 2 (as specified in DCE 1.1). -;") -; (license license:expat))) -; -;(define-public go-github-com-sebdah-goldie-v2-2.5.3 -; (package -; (name "go-github-com-sebdah-goldie-v2") -; (version "2.5.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/sebdah/goldie") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "12gji9p6b6zlkisbd3ww103zwd5chlwkb6h5dppfrmgxim84n5n0")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/sebdah/goldie/v2")) -; (propagated-inputs -; `(("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0) -; ("go-github-com-sergi-go-diff-1.0.0" -; ,go-github-com-sergi-go-diff-1.0.0) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) -; (home-page "https://github.com/sebdah/goldie") -; (synopsis "goldie - Golden test utility for Go") -; (description -; "Package goldie provides test assertions based on golden files. It's -;typically used for testing responses with larger data bodies. -;") -; (license license:expat))) -; -;(define-public go-github-com-russross-blackfriday-v2-2.0.1 -; (package -; (name "go-github-com-russross-blackfriday-v2") -; (version "2.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/russross/blackfriday") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0nlz7isdd4rgnwzs68499hlwicxz34j2k2a0b8jy0y7ycd2bcr5j")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/russross/blackfriday/v2")) -; (home-page "https://github.com/russross/blackfriday") -; (synopsis "Blackfriday") -; (description "Package blackfriday is a markdown processor. -;") -; (license license:bsd-2))) -; -;(define-public go-github-com-shurcool-sanitized-anchor-name-1.0.0 -; (package -; (name "go-github-com-shurcool-sanitized-anchor-name") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/shurcooL/sanitized_anchor_name") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1gv9p2nr46z80dnfjsklc6zxbgk96349sdsxjz05f3z6wb6m5l8f")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/shurcooL/sanitized_anchor_name")) -; (home-page "https://github.com/shurcooL/sanitized_anchor_name") -; (synopsis "sanitized_anchor_name") -; (description -; "Package sanitized_anchor_name provides a func to create sanitized anchor names. -;") -; (license license:expat))) -; -;(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0 -; (package -; (name "go-github-com-cpuguy83-go-md2man-v2") -; (version "2.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/cpuguy83/go-md2man") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) -; (propagated-inputs -; `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" -; ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) -; ("go-github-com-russross-blackfriday-v2-2.0.1" -; ,go-github-com-russross-blackfriday-v2-2.0.1) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0))) -; (home-page "https://github.com/cpuguy83/go-md2man") -; (synopsis "go-md2man") -; (description "Converts markdown into roff (man pages).") -; (license license:expat))) -; -;(define-public go-github-com-hashicorp-go-cleanhttp-0.5.1 -; (package -; (name "go-github-com-hashicorp-go-cleanhttp") -; (version "0.5.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/go-cleanhttp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "07kx3fhryqmaw3czacmm11qwx63js2q8cfq967vphk7xg9q377kk")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hashicorp/go-cleanhttp")) -; (home-page "https://github.com/hashicorp/go-cleanhttp") -; (synopsis "cleanhttp") -; (description -; "Package cleanhttp offers convenience utilities for acquiring \"clean\" -;http.Transport and http.Client structs. -;") -; (license license:mpl2.0))) -; -;(define-public go-github-com-mitchellh-go-homedir-1.0.0 -; (package -; (name "go-github-com-mitchellh-go-homedir") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mitchellh/go-homedir") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0f0z0aa4wivk4z1y503dmnw0k0g0g403dly8i4q263gfshs82sbq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mitchellh/go-homedir")) -; (home-page "https://github.com/mitchellh/go-homedir") -; (synopsis "go-homedir") -; (description -; "This is a Go library for detecting the user's home directory without -;the use of cgo, so the library can be used in cross-compilation environments.") -; (license license:expat))) -; -;(define-public go-github-com-hashicorp-go-rootcerts-1.0.0 -; (package -; (name "go-github-com-hashicorp-go-rootcerts") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/go-rootcerts") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0wply5zhj1rcybr932zbwm1i18q5wr7kgkhnz6bw6mk1n9yr8lfj")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hashicorp/go-rootcerts")) -; (propagated-inputs -; `(("go-github-com-mitchellh-go-homedir-1.0.0" -; ,go-github-com-mitchellh-go-homedir-1.0.0))) -; (home-page "https://github.com/hashicorp/go-rootcerts") -; (synopsis "rootcerts") -; (description -; "Package rootcerts contains functions to aid in loading CA certificates for -;TLS connections. -;") -; (license license:mpl2.0))) -; -;(define-public go-github-com-armon-circbuf-0.0.0-20150827004946-bbbad097214e -; (package -; (name "go-github-com-armon-circbuf") -; (version "0.0.0-20150827004946-bbbad097214e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/armon/circbuf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1idpr0lzb2px2p3wgfq2276yl7jpaz43df6n91kf790404s4zmk3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/armon/circbuf")) -; (home-page "https://github.com/armon/circbuf") -; (synopsis "circbuf") -; (description -; "This repository provides the @code{circbuf} package. This provides a @code{Buffer} object -;which is a circular (or ring) buffer. It has a fixed size, but can be written -;to infinitely. Only the last @code{size} bytes are ever retained. The buffer implements -;the @code{io.Writer} interface.") -; (license license:expat))) -; -;(define-public go-github-com-hashicorp-go-syslog-1.0.0 -; (package -; (name "go-github-com-hashicorp-go-syslog") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/go-syslog") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "09vccqggz212cg0jir6vv708d6mx0f9w5bxrcdah3h6chgmal6v1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hashicorp/go-syslog")) -; (home-page "https://github.com/hashicorp/go-syslog") -; (synopsis "go-syslog") -; (description -; "This repository provides a very simple @code{gsyslog} package. The point of this -;package is to allow safe importing of syslog without introducing cross-compilation -;issues. The stdlib @code{log/syslog} cannot be imported on Windows systems, and without -;conditional compilation this adds complications.") -; (license license:expat))) -; -;(define-public go-github-com-hashicorp-go-uuid-1.0.1 -; (package -; (name "go-github-com-hashicorp-go-uuid") -; (version "1.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/go-uuid") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0jvb88m0rq41bwgirsadgw7mnayl27av3gd2vqa3xvxp3fy0hp5k")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hashicorp/go-uuid")) -; (home-page "https://github.com/hashicorp/go-uuid") -; (synopsis "uuid") -; (description -; "Generates UUID-format strings using high quality, bytes. It is @strong{not} intended to be RFC compliant, merely to use a well-understood string representation of a 128-bit value. It can also parse UUID-format strings into their component bytes.") -; (license license:mpl2.0))) -; -;(define-public go-github-com-hashicorp-logutils-1.0.0 -; (package -; (name "go-github-com-hashicorp-logutils") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/logutils") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "076wf4sh5p3f953ndqk1cc0x7jhmlqrxak9953rz79rcdw77rjvv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hashicorp/logutils")) -; (home-page "https://github.com/hashicorp/logutils") -; (synopsis "logutils") -; (description -; "Package logutils augments the standard log package with levels. -;") -; (license license:mpl2.0))) -; -;(define-public go-github-com-hashicorp-go-net-0.0.1 -; (package -; (name "go-github-com-hashicorp-go-net") -; (version "0.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/go.net") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "06arwi95xp5rxyz7rndvhc3wlwg0jn9a5z6djf3yyg5h9zfab9i4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hashicorp/go.net")) -; (home-page "https://github.com/hashicorp/go.net") -; (synopsis #f) -; (description #f) -; (license license:bsd-3))) -; -;(define-public go-github-com-hashicorp-mdns-1.0.0 -; (package -; (name "go-github-com-hashicorp-mdns") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/mdns") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0qr4l91hhi97s8a1isnrw3s4q8pjzacqiks870vnwh15v7ig3axd")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hashicorp/mdns")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20181026203630-95b1ffbd15a5" -; ,go-golang-org-x-sys-0.0.0-20181026203630-95b1ffbd15a5) -; ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" -; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) -; ("go-golang-org-x-net-0.0.0-20181023162649-9b4f9f5ad519" -; ,go-golang-org-x-net-0.0.0-20181023162649-9b4f9f5ad519) -; ("go-golang-org-x-crypto-0.0.0-20181029021203-45a5f77698d3" -; ,go-golang-org-x-crypto-0.0.0-20181029021203-45a5f77698d3) -; ("go-github-com-miekg-dns-1.0.14" ,go-github-com-miekg-dns-1.0.14) -; ("go-github-com-hashicorp-go-net-0.0.1" -; ,go-github-com-hashicorp-go-net-0.0.1))) -; (home-page "https://github.com/hashicorp/mdns") -; (synopsis "mdns") -; (description -; "Simple mDNS client/server library in Golang. mDNS or Multicast DNS can be -;used to discover services on the local network without the use of an authoritative -;DNS server. This enables peer-to-peer discovery. It is important to note that many -;networks restrict the use of multicasting, which prevents mDNS from functioning. -;Notably, multicast cannot be used in any sort of cloud, or shared infrastructure -;environment. However it works well in most office, home, or private infrastructure -;environments.") -; (license license:expat))) -; -;(define-public go-github-com-armon-go-metrics-0.0.0-20180917152333-f0300d1749da -; (package -; (name "go-github-com-armon-go-metrics") -; (version "0.0.0-20180917152333-f0300d1749da") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/armon/go-metrics") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "13l7c35ps0r27vxfil2w0xhhc7w5rh00awvlmn4cz0a937b9ffpv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/armon/go-metrics")) -; (home-page "https://github.com/armon/go-metrics") -; (synopsis "go-metrics") -; (description -; "This library provides a @code{metrics} package which can be used to instrument code, -;expose application metrics, and profile runtime performance in a flexible manner.") -; (license license:expat))) -; -;(define-public go-github-com-hashicorp-go-uuid-1.0.0 -; (package -; (name "go-github-com-hashicorp-go-uuid") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/go-uuid") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1jflywlani7583qm4ysph40hsgx3n66n5zr2k84i057fmwa1ypfy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hashicorp/go-uuid")) -; (home-page "https://github.com/hashicorp/go-uuid") -; (synopsis "uuid") -; (description -; "Generates UUID-format strings using high quality, bytes. It is @strong{not} intended to be RFC compliant, merely to use a well-understood string representation of a 128-bit value. It can also parse UUID-format strings into their component bytes.") -; (license license:mpl2.0))) -; -;(define-public go-github-com-hashicorp-go-immutable-radix-1.0.0 -; (package -; (name "go-github-com-hashicorp-go-immutable-radix") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/go-immutable-radix") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1v3nmsnk1s8bzpclrhirz7iq0g5xxbw9q5gvrg9ss6w9crs72qr6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hashicorp/go-immutable-radix")) -; (propagated-inputs -; `(("go-github-com-hashicorp-golang-lru-0.5.0" -; ,go-github-com-hashicorp-golang-lru-0.5.0) -; ("go-github-com-hashicorp-go-uuid-1.0.0" -; ,go-github-com-hashicorp-go-uuid-1.0.0))) -; (home-page "https://github.com/hashicorp/go-immutable-radix") -; (synopsis "go-immutable-radix") -; (description -; "This package provides the @code{iradix} package that implements an immutable @url{http://en.wikipedia.org/wiki/Radix_tree,radix tree}. -;The package only provides a single @code{Tree} implementation, optimized for sparse nodes.") -; (license license:mpl2.0))) -; -;(define-public go-github-com-hashicorp-go-msgpack-0.5.3 -; (package -; (name "go-github-com-hashicorp-go-msgpack") -; (version "0.5.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/go-msgpack") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "00jv0ajqd58pkb2yyhlrjp0rv1mvb1ijx3yqjyikcmzvk9jb4h5m")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hashicorp/go-msgpack")) -; (home-page "https://github.com/hashicorp/go-msgpack") -; (synopsis "go-codec") -; (description "This repository contains the @code{go-codec} library.") -; (license license:expat))) -; -;(define-public go-github-com-hashicorp-go-sockaddr-1.0.0 -; (package -; (name "go-github-com-hashicorp-go-sockaddr") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/go-sockaddr") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1yn1xq8ysn0lszmkygz3a9lgpswbz1p91jv7q8l20s4749a22xgi")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hashicorp/go-sockaddr")) -; (home-page "https://github.com/hashicorp/go-sockaddr") -; (synopsis "go-sockaddr") -; (description -; "Package sockaddr is a Go implementation of the UNIX socket family data types and -;related helper functions. -;") -; (license license:mpl2.0))) -; -;(define-public go-github-com-miekg-dns-1.0.14 -; (package -; (name "go-github-com-miekg-dns") -; (version "1.0.14") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/miekg/dns") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1qgli6yp59bv6vc6zag84cwxmcxgnyxm1q2f301yyijk3wy5b2ak")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/miekg/dns")) -; (home-page "https://github.com/miekg/dns") -; (synopsis "Alternative (more granular) approach to a DNS library") -; (description -; "Package dns implements a full featured interface to the Domain Name System. -;Both server- and client-side programming is supported. The package allows -;complete control over what is sent out to the DNS. The API follows the -;less-is-more principle, by presenting a small, clean interface. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-sean--seed-0.0.0-20170313163322-e2103e2c3529 -; (package -; (name "go-github-com-sean--seed") -; (version "0.0.0-20170313163322-e2103e2c3529") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/sean-/seed") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0glir8jxi1w7aga2jwdb63pp1h8q4whknili7xixsqzwyy716125")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/sean-/seed")) -; (home-page "https://github.com/sean-/seed") -; (synopsis "- Quickly Seed Go's Random Number Generator") -; (description -; "Boiler-plate to securely @url{https://en.wikipedia.org/wiki/Random_seed,seed} Go's -;random number generator (if possible). This library isn't anything fancy, it's -;just a canonical way of seeding Go's random number generator. Cribbed from -;@url{https://github.com/hashicorp/nomad/commit/f89a993ec6b91636a3384dd568898245fbc273a1,(code Nomad)} -;before it was moved into -;@url{https://github.com/hashicorp/consul/commit/d695bcaae6e31ee307c11fdf55bb0bf46ea9fcf4,(code Consul)} -;and made into a helper function, and now further modularized to be a super -;lightweight and reusable library.") -; (license #f))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20181029021203-45a5f77698d3 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20181029021203-45a5f77698d3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0636jjj89wkzqchajwwzgcn4aafc334p70nawh9jzavg2mkx0ch4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20181023162649-9b4f9f5ad519 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20181023162649-9b4f9f5ad519") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "06hvxy113h76f31gv1mq6vdr6xja1zv0fdig686l2b4y2b6swych")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20181026203630-95b1ffbd15a5 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20181026203630-95b1ffbd15a5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "06c3lf93wzf5kkfmzmgn75x4c0a7159vrwjrqh6zh9zxzqq5whpq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-hashicorp-memberlist-0.1.3 -; (package -; (name "go-github-com-hashicorp-memberlist") -; (version "0.1.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/memberlist") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0k1spq7dagvqj3baqw2dhxx1zxrb02y6m3apzr3a7gyirii890g3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hashicorp/memberlist")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20181026203630-95b1ffbd15a5" -; ,go-golang-org-x-sys-0.0.0-20181026203630-95b1ffbd15a5) -; ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" -; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) -; ("go-golang-org-x-net-0.0.0-20181023162649-9b4f9f5ad519" -; ,go-golang-org-x-net-0.0.0-20181023162649-9b4f9f5ad519) -; ("go-golang-org-x-crypto-0.0.0-20181029021203-45a5f77698d3" -; ,go-golang-org-x-crypto-0.0.0-20181029021203-45a5f77698d3) -; ("go-github-com-stretchr-testify-1.2.2" -; ,go-github-com-stretchr-testify-1.2.2) -; ("go-github-com-sean--seed-0.0.0-20170313163322-e2103e2c3529" -; ,go-github-com-sean--seed-0.0.0-20170313163322-e2103e2c3529) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-pascaldekloe-goe-0.0.0-20180627143212-57f6aae5913c" -; ,go-github-com-pascaldekloe-goe-0.0.0-20180627143212-57f6aae5913c) -; ("go-github-com-miekg-dns-1.0.14" ,go-github-com-miekg-dns-1.0.14) -; ("go-github-com-hashicorp-go-sockaddr-1.0.0" -; ,go-github-com-hashicorp-go-sockaddr-1.0.0) -; ("go-github-com-hashicorp-go-multierror-1.0.0" -; ,go-github-com-hashicorp-go-multierror-1.0.0) -; ("go-github-com-hashicorp-go-msgpack-0.5.3" -; ,go-github-com-hashicorp-go-msgpack-0.5.3) -; ("go-github-com-hashicorp-go-immutable-radix-1.0.0" -; ,go-github-com-hashicorp-go-immutable-radix-1.0.0) -; ("go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c" -; ,go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1) -; ("go-github-com-armon-go-metrics-0.0.0-20180917152333-f0300d1749da" -; ,go-github-com-armon-go-metrics-0.0.0-20180917152333-f0300d1749da))) -; (home-page "https://github.com/hashicorp/memberlist") -; (synopsis "memberlist") -; (description -; "memberlist is a library that manages cluster -;membership and member failure detection using a gossip based protocol. -;") -; (license license:mpl2.0))) -; -;(define-public go-github-com-armon-go-radix-0.0.0-20180808171621-7fddfc383310 -; (package -; (name "go-github-com-armon-go-radix") -; (version "0.0.0-20180808171621-7fddfc383310") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/armon/go-radix") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0y8chspn14n9xpsfb9gxnnf819rfpriaz64v81p7873a42kkhxb4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/armon/go-radix")) -; (home-page "https://github.com/armon/go-radix") -; (synopsis "go-radix") -; (description -; "This package provides the @code{radix} package that implements a @url{http://en.wikipedia.org/wiki/Radix_tree,radix tree}. -;The package only provides a single @code{Tree} implementation, optimized for sparse nodes.") -; (license license:expat))) -; -;(define-public go-github-com-bgentry-speakeasy-0.1.0 -; (package -; (name "go-github-com-bgentry-speakeasy") -; (version "0.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/bgentry/speakeasy") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "02dfrj0wyphd3db9zn2mixqxwiz1ivnyc5xc7gkz58l5l27nzp8s")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/bgentry/speakeasy")) -; (home-page "https://github.com/bgentry/speakeasy") -; (synopsis "Speakeasy") -; (description -; "This package provides cross-platform Go (#golang) helpers for taking user input -;from the terminal while not echoing the input back (similar to @code{getpasswd}). The -;package uses syscalls to avoid any dependence on cgo, and is therefore -;compatible with cross-compiling.") -; (license license:expat))) -; -;(define-public go-github-com-fatih-color-1.7.0 -; (package -; (name "go-github-com-fatih-color") -; (version "1.7.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/fatih/color") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0v8msvg38r8d1iiq2i5r4xyfx0invhc941kjrsg5gzwvagv55inv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/fatih/color")) -; (home-page "https://github.com/fatih/color") -; (synopsis "color") -; (description -; "Package color is an ANSI color package to output colorized or SGR defined -;output to the standard output. The API can be used in several way, pick one -;that suits you. -;") -; (license license:expat))) -; -;(define-public go-github-com-hashicorp-errwrap-1.0.0 -; (package -; (name "go-github-com-hashicorp-errwrap") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/errwrap") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0slfb6w3b61xz04r32bi0a1bygc82rjzhqkxj2si2074wynqnr1c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hashicorp/errwrap")) -; (home-page "https://github.com/hashicorp/errwrap") -; (synopsis "errwrap") -; (description -; "Package errwrap implements methods to formalize error wrapping in Go. -;") -; (license license:mpl2.0))) -; -;(define-public go-github-com-hashicorp-go-multierror-1.0.0 -; (package -; (name "go-github-com-hashicorp-go-multierror") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/go-multierror") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "00nyn8llqzbfm8aflr9kwsvpzi4kv8v45c141v88xskxp5xf6z49")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hashicorp/go-multierror")) -; (propagated-inputs -; `(("go-github-com-hashicorp-errwrap-1.0.0" -; ,go-github-com-hashicorp-errwrap-1.0.0))) -; (home-page "https://github.com/hashicorp/go-multierror") -; (synopsis "go-multierror") -; (description -; "@code{go-multierror} is a package for Go that provides a mechanism for -;representing a list of @code{error} values as a single @code{error}.") -; (license license:mpl2.0))) -; -;(define-public go-github-com-mattn-go-colorable-0.0.9 -; (package -; (name "go-github-com-mattn-go-colorable") -; (version "0.0.9") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mattn/go-colorable") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1nwjmsppsjicr7anq8na6md7b1z84l9ppnlr045hhxjvbkqwalvx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mattn/go-colorable")) -; (home-page "https://github.com/mattn/go-colorable") -; (synopsis "go-colorable") -; (description "Colorable writer for windows.") -; (license license:expat))) -; -;(define-public go-github-com-mattn-go-isatty-0.0.3 -; (package -; (name "go-github-com-mattn-go-isatty") -; (version "0.0.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mattn/go-isatty") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "06w45aqz2a6yrk25axbly2k5wmsccv8cspb94bfmz4izvw8h927n")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mattn/go-isatty")) -; (home-page "https://github.com/mattn/go-isatty") -; (synopsis "go-isatty") -; (description "Package isatty implements interface to isatty -;") -; (license license:expat))) -; -;(define-public go-github-com-posener-complete-1.1.1 -; (package -; (name "go-github-com-posener-complete") -; (version "1.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/posener/complete") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1nbdiybjizbaxbf5q0xwbq0cjqw4bl6jggvsjzrpif0w86fcjda2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/posener/complete")) -; (home-page "https://github.com/posener/complete") -; (synopsis "complete") -; (description -; "Package complete provides a tool for bash writing bash completion in go, and bash completion for the go command line. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-sys-0.0.0-20180823144017-11551d06cbcc -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20180823144017-11551d06cbcc") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0j34525b9smcyjqmxvvqgcfn87kkx3b2izidmjp2cmhjxzjrgpwm")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-mitchellh-cli-1.0.0 -; (package -; (name "go-github-com-mitchellh-cli") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mitchellh/cli") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1i9kmr7rcf10d2hji8h4247hmc0nbairv7a0q51393aw2h1bnwg2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mitchellh/cli")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20180823144017-11551d06cbcc" -; ,go-golang-org-x-sys-0.0.0-20180823144017-11551d06cbcc) -; ("go-github-com-posener-complete-1.1.1" -; ,go-github-com-posener-complete-1.1.1) -; ("go-github-com-mattn-go-isatty-0.0.3" -; ,go-github-com-mattn-go-isatty-0.0.3) -; ("go-github-com-mattn-go-colorable-0.0.9" -; ,go-github-com-mattn-go-colorable-0.0.9) -; ("go-github-com-hashicorp-go-multierror-1.0.0" -; ,go-github-com-hashicorp-go-multierror-1.0.0) -; ("go-github-com-fatih-color-1.7.0" ,go-github-com-fatih-color-1.7.0) -; ("go-github-com-bgentry-speakeasy-0.1.0" -; ,go-github-com-bgentry-speakeasy-0.1.0) -; ("go-github-com-armon-go-radix-0.0.0-20180808171621-7fddfc383310" -; ,go-github-com-armon-go-radix-0.0.0-20180808171621-7fddfc383310))) -; (home-page "https://github.com/mitchellh/cli") -; (synopsis "Go CLI Library") -; (description -; "cli is a library for implementing powerful command-line interfaces in Go. -;cli is the library that powers the CLI for -;@url{https://github.com/mitchellh/packer,Packer}, -;@url{https://github.com/hashicorp/serf,Serf}, -;@url{https://github.com/hashicorp/consul,Consul}, -;@url{https://github.com/hashicorp/vault,Vault}, -;@url{https://github.com/hashicorp/terraform,Terraform}, and -;@url{https://github.com/hashicorp/nomad,Nomad}.") -; (license license:mpl2.0))) -; -;(define-public go-github-com-mitchellh-gox-0.4.0 -; (package -; (name "go-github-com-mitchellh-gox") -; (version "0.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mitchellh/gox") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1q4fdkw904mrmh1q5z8pfd3r0gcn5dm776kldqawddy93iiwnp8r")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mitchellh/gox")) -; (home-page "https://github.com/mitchellh/gox") -; (synopsis "Gox - Simple Go Cross Compilation") -; (description -; "Gox is a simple, no-frills tool for Go cross compilation that behaves a -;lot like standard @code{go build}. Gox will parallelize builds for multiple -;platforms. Gox will also build the cross-compilation toolchain for you.") -; (license license:mpl2.0))) -; -;(define-public go-github-com-mitchellh-iochan-1.0.0 -; (package -; (name "go-github-com-mitchellh-iochan") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mitchellh/iochan") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "058n9bbf536f2nw3pbs7pysrg9cqvgkb28z2zf5wjyrzrknyk53g")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mitchellh/iochan")) -; (home-page "https://github.com/mitchellh/iochan") -; (synopsis "iochan") -; (description -; "iochan is a Go library for treating @code{io} readers and writers like channels. -;This is useful when sometimes you wish to use @code{io.Reader} and such in @code{select} -;statements.") -; (license license:expat))) -; -;(define-public go-github-com-mitchellh-mapstructure-0.0.0-20160808181253-ca63d7c062ee -; (package -; (name "go-github-com-mitchellh-mapstructure") -; (version "0.0.0-20160808181253-ca63d7c062ee") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mitchellh/mapstructure") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1yjwhgi57l5fxlmpdchipdd4jasdn1sa8ccl2f2486v06rv6z7gr")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mitchellh/mapstructure")) -; (home-page "https://github.com/mitchellh/mapstructure") -; (synopsis "mapstructure") -; (description -; "Package mapstructure exposes functionality to convert one arbitrary -;Go type into another, typically to convert a map[string]interface{} -;into a native Go structure. -;") -; (license license:expat))) -; -;(define-public go-github-com-ryanuber-columnize-0.0.0-20160712163229-9b3edd62028f -; (package -; (name "go-github-com-ryanuber-columnize") -; (version "0.0.0-20160712163229-9b3edd62028f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/ryanuber/columnize") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ya1idkbb0a9fjlhkcnh5a9yvpwzwfmbyg7d56lpplwr9rqi1da4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/ryanuber/columnize")) -; (home-page "https://github.com/ryanuber/columnize") -; (synopsis "Columnize") -; (description "Easy column-formatted output for golang") -; (license license:expat))) -; -;(define-public go-golang-org-x-net-0.0.0-20181201002055-351d144fa1fc -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20181201002055-351d144fa1fc") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1c5x25qjyz83y92bq0lll5kmznyi3m02wd4c54scgf0866gy938k")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-github-com-hashicorp-serf-0.8.2 -; (package -; (name "go-github-com-hashicorp-serf") -; (version "0.8.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/serf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0nrslghvdjhaczr2xp9mn8xgcx1dxl4jgpbk0l61ssmxahpx4iyc")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hashicorp/serf")) -; (propagated-inputs -; `(("go-golang-org-x-net-0.0.0-20181201002055-351d144fa1fc" -; ,go-golang-org-x-net-0.0.0-20181201002055-351d144fa1fc) -; ("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0) -; ("go-github-com-ryanuber-columnize-0.0.0-20160712163229-9b3edd62028f" -; ,go-github-com-ryanuber-columnize-0.0.0-20160712163229-9b3edd62028f) -; ("go-github-com-mitchellh-mapstructure-0.0.0-20160808181253-ca63d7c062ee" -; ,go-github-com-mitchellh-mapstructure-0.0.0-20160808181253-ca63d7c062ee) -; ("go-github-com-mitchellh-iochan-1.0.0" -; ,go-github-com-mitchellh-iochan-1.0.0) -; ("go-github-com-mitchellh-gox-0.4.0" -; ,go-github-com-mitchellh-gox-0.4.0) -; ("go-github-com-mitchellh-cli-1.0.0" -; ,go-github-com-mitchellh-cli-1.0.0) -; ("go-github-com-hashicorp-memberlist-0.1.3" -; ,go-github-com-hashicorp-memberlist-0.1.3) -; ("go-github-com-hashicorp-mdns-1.0.0" -; ,go-github-com-hashicorp-mdns-1.0.0) -; ("go-github-com-hashicorp-logutils-1.0.0" -; ,go-github-com-hashicorp-logutils-1.0.0) -; ("go-github-com-hashicorp-go-uuid-1.0.1" -; ,go-github-com-hashicorp-go-uuid-1.0.1) -; ("go-github-com-hashicorp-go-syslog-1.0.0" -; ,go-github-com-hashicorp-go-syslog-1.0.0) -; ("go-github-com-hashicorp-go-msgpack-0.5.3" -; ,go-github-com-hashicorp-go-msgpack-0.5.3) -; ("go-github-com-armon-go-metrics-0.0.0-20180917152333-f0300d1749da" -; ,go-github-com-armon-go-metrics-0.0.0-20180917152333-f0300d1749da) -; ("go-github-com-armon-circbuf-0.0.0-20150827004946-bbbad097214e" -; ,go-github-com-armon-circbuf-0.0.0-20150827004946-bbbad097214e))) -; (home-page "https://github.com/hashicorp/serf") -; (synopsis "Serf") -; (description -; "Serf is a decentralized solution for service discovery and orchestration -;that is lightweight, highly available, and fault tolerant.") -; (license license:mpl2.0))) -; -;(define-public go-github-com-mitchellh-mapstructure-1.1.2 -; (package -; (name "go-github-com-mitchellh-mapstructure") -; (version "1.1.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mitchellh/mapstructure") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "03bpv28jz9zhn4947saqwi328ydj7f6g6pf1m2d4m5zdh5jlfkrr")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mitchellh/mapstructure")) -; (home-page "https://github.com/mitchellh/mapstructure") -; (synopsis "mapstructure") -; (description -; "Package mapstructure exposes functionality to convert one arbitrary -;Go type into another, typically to convert a map[string]interface{} -;into a native Go structure. -;") -; (license license:expat))) -; -;(define-public go-github-com-pascaldekloe-goe-0.0.0-20180627143212-57f6aae5913c -; (package -; (name "go-github-com-pascaldekloe-goe") -; (version "0.0.0-20180627143212-57f6aae5913c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/pascaldekloe/goe") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1dqd3mfb4z2vmv6pg6fhgvfc53vhndk24wcl9lj1rz02n6m279fq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/pascaldekloe/goe")) -; (home-page "https://github.com/pascaldekloe/goe") -; (synopsis "Go Enterprise") -; (description -; "Common enterprise features for the Go programming language (golang).") -; (license license:cc0))) -; -;(define-public go-github-com-stretchr-testify-1.3.0 -; (package -; (name "go-github-com-stretchr-testify") -; (version "1.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/testify") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0wjchp2c8xbgcbbq32w3kvblk6q6yn533g78nxl6iskq6y95lxsy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/testify")) -; (propagated-inputs -; `(("go-github-com-stretchr-objx-0.1.0" -; ,go-github-com-stretchr-objx-0.1.0) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-davecgh-go-spew-1.1.0" -; ,go-github-com-davecgh-go-spew-1.1.0))) -; (home-page "https://github.com/stretchr/testify") -; (synopsis "Testify - Thou Shalt Write Tests") -; (description -; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -;") -; (license license:expat))) -; -;(define-public go-github-com-hashicorp-consul-api-1.1.0 -; (package -; (name "go-github-com-hashicorp-consul-api") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/consul") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0xm3gl8i7pgsbsc2397bwh9hp2dwnk4cmw5y05acqn3zpyp84sbv")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path -; "github.com/hashicorp/consul/api" -; #:unpack-path -; "github.com/hashicorp/consul")) -; (propagated-inputs -; `(("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0) -; ("go-github-com-pascaldekloe-goe-0.0.0-20180627143212-57f6aae5913c" -; ,go-github-com-pascaldekloe-goe-0.0.0-20180627143212-57f6aae5913c) -; ("go-github-com-mitchellh-mapstructure-1.1.2" -; ,go-github-com-mitchellh-mapstructure-1.1.2) -; ("go-github-com-hashicorp-serf-0.8.2" -; ,go-github-com-hashicorp-serf-0.8.2) -; ("go-github-com-hashicorp-go-uuid-1.0.1" -; ,go-github-com-hashicorp-go-uuid-1.0.1) -; ("go-github-com-hashicorp-go-rootcerts-1.0.0" -; ,go-github-com-hashicorp-go-rootcerts-1.0.0) -; ("go-github-com-hashicorp-go-cleanhttp-0.5.1" -; ,go-github-com-hashicorp-go-cleanhttp-0.5.1))) -; (home-page "https://github.com/hashicorp/consul") -; (synopsis "Consul API client") -; (description -; "This package provides the @code{api} package which attempts to -;provide programmatic access to the full Consul API.") -; (license license:mpl2.0))) -; -;(define-public go-github-com-golang-mock-1.5.0 -; (package -; (name "go-github-com-golang-mock") -; (version "1.5.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/mock") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "12l7p08pwwk3xn70w7rlm28nz6jf4szlzgjxjfmbssyirxxxy8v1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/mock")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" -; ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) -; ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0))) -; (home-page "https://github.com/golang/mock") -; (synopsis "gomock") -; (description -; "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It -;integrates well with Go's built-in @code{testing} package, but can be used in other -;contexts too.") -; (license license:asl2.0))) -; -;(define-public go-github-com-google-pprof-0.0.0-20210226084205-cbba55b83ad5 -; (package -; (name "go-github-com-google-pprof") -; (version "0.0.0-20210226084205-cbba55b83ad5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/pprof") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0drr44nqq0s3jillcrl8qa7sklxybs083lvashdh2ad62hrs31l7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/pprof")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" -; ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) -; ("go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639" -; ,go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639) -; ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" -; ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) -; ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" -; ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) -; ("go-github-com-chzyer-logex-1.1.10" -; ,go-github-com-chzyer-logex-1.1.10))) -; (home-page "https://github.com/google/pprof") -; (synopsis "Introduction") -; (description -; "pprof is a tool for collection, manipulation and visualization -;of performance profiles. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-google-pprof-0.0.0-20210122040257-d980be63207e -; (package -; (name "go-github-com-google-pprof") -; (version "0.0.0-20210122040257-d980be63207e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/pprof") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0vg5z6rp5kfd324w8j12hlx9zv049vxljpc6dyqkj2k9vzzzqkw8")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/pprof")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" -; ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) -; ("go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639" -; ,go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639) -; ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" -; ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) -; ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" -; ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) -; ("go-github-com-chzyer-logex-1.1.10" -; ,go-github-com-chzyer-logex-1.1.10))) -; (home-page "https://github.com/google/pprof") -; (synopsis "Introduction") -; (description -; "pprof is a tool for collection, manipulation and visualization -;of performance profiles. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-mod-0.4.1 -; (package -; (name "go-golang-org-x-mod") -; (version "0.4.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/mod") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0q4p41223d1xh4jmw9vmywjfi0jzn56gbidrwv5x1bzmx2qmj01n")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/mod")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" -; ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) -; ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" -; ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) -; ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" -; ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) -; (home-page "https://golang.org/x/mod") -; (synopsis "mod") -; (description -; "This repository holds packages for writing tools -;that work directly with Go module mechanics. -;That is, it is for direct manipulation of Go modules themselves.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20210119194325-5f4716e94777 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20210119194325-5f4716e94777") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1xh4hk0fhkzq096z9qbzqfswmmgg4kvb44qvazpandvlpwm4jds2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) -; ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" -; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) -; ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" -; ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-oauth2-0.0.0-20210218202405-ba52d332ba99 -; (package -; (name "go-golang-org-x-oauth2") -; (version "0.0.0-20210218202405-ba52d332ba99") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/oauth2") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0fdm3fljk3k4xbpzaywccayrhgqdfl79vl18k4z1zw2pl654bqbg")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/oauth2")) -; (propagated-inputs -; `(("go-google-golang-org-appengine-1.6.6" -; ,go-google-golang-org-appengine-1.6.6) -; ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" -; ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) -; ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) -; (home-page "https://golang.org/x/oauth2") -; (synopsis "OAuth2 for Go") -; (description -; "Package oauth2 provides support for making -;OAuth2 authorized and authenticated HTTP requests, -;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -;It can additionally grant authorization with Bearer JWT. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20210220050731-9a76102bfb43 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20210220050731-9a76102bfb43") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "07qn19yla2w604p3dc8h1c75xj2pxc4fajvg0mf0d4c72d5qiss4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-google-pprof-0.0.0-20201203190320-1bf35d6f28c2 -; (package -; (name "go-github-com-google-pprof") -; (version "0.0.0-20201203190320-1bf35d6f28c2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/pprof") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "140n5hjk2faanrf6v5h1559g755rgavynz1r99s1n15bmgibysvp")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/pprof")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" -; ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) -; ("go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639" -; ,go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639) -; ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" -; ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) -; ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" -; ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) -; ("go-github-com-chzyer-logex-1.1.10" -; ,go-github-com-chzyer-logex-1.1.10))) -; (home-page "https://github.com/google/pprof") -; (synopsis "Introduction") -; (description -; "pprof is a tool for collection, manipulation and visualization -;of performance profiles. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-mod-0.4.0 -; (package -; (name "go-golang-org-x-mod") -; (version "0.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/mod") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ri003765yxawq6s8jbkbiaijihwrg980c4qwqsaa5x0sq2psrg1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/mod")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" -; ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) -; ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" -; ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) -; ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" -; ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) -; (home-page "https://golang.org/x/mod") -; (synopsis "mod") -; (description -; "This repository holds packages for writing tools -;that work directly with Go module mechanics. -;That is, it is for direct manipulation of Go modules themselves.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20201209123823-ac852fbbde11 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20201209123823-ac852fbbde11") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1zmp2fxgf7792xx15qhzcsfs8k0qv7q3m6jlcj6qvdngfzyvna64")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) -; ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" -; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) -; ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" -; ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20201208233053-a543418bbed2 -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20201208233053-a543418bbed2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0r87p89pm2h75yajsz0g2vvy2q3z9gknc0fmsdm5rh427f1qazfr")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" -; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) -; ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" -; ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) -; ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" -; ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) -; ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) -; ("go-github-com-yuin-goldmark-1.2.1" -; ,go-github-com-yuin-goldmark-1.2.1))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-github-com-google-martian-v3-3.1.0 -; (package -; (name "go-github-com-google-martian-v3") -; (version "3.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/martian") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1pr9akggfzj2vw11l7ry4sij0hqslpc3gwx4ynbzyvbjhvh64sbc")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/martian/v3")) -; (propagated-inputs -; `(("go-golang-org-x-net-0.0.0-20190628185345-da137c7871d7" -; ,go-golang-org-x-net-0.0.0-20190628185345-da137c7871d7))) -; (home-page "https://github.com/google/martian") -; (synopsis "Martian Proxy") -; (description -; "Package martian provides an HTTP/1.1 proxy with an API for configurable -;request and response modifiers. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639 -; (package -; (name "go-github-com-ianlancetaylor-demangle") -; (version "0.0.0-20200824232613-28f6c0f3b639") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/ianlancetaylor/demangle") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0rsq3622gd40f1x1l7caidsxrmzg1993ich2higwd94fqbxs1r83")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/ianlancetaylor/demangle")) -; (home-page "https://github.com/ianlancetaylor/demangle") -; (synopsis "github.com/ianlancetaylor/demangle") -; (description -; "Package demangle defines functions that demangle GCC/LLVM -;C++ and Rust symbol names. -;This package recognizes names that were mangled according to the C++ ABI -;defined at @url{http://codesourcery.com/cxx-abi/,http://codesourcery.com/cxx-abi/} and the Rust ABI -;defined at -;@url{https://rust-lang.github.io/rfcs/2603-rust-symbol-name-mangling-v0.html,https://rust-lang.github.io/rfcs/2603-rust-symbol-name-mangling-v0.html} -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-google-pprof-0.0.0-20201023163331-3e6fc7fc9c4c -; (package -; (name "go-github-com-google-pprof") -; (version "0.0.0-20201023163331-3e6fc7fc9c4c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/pprof") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1xmy4579gx45lqsy1cgddnc7nmaqfpiwd2kc5dhf8i0wjjvf18hq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/pprof")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" -; ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) -; ("go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639" -; ,go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639) -; ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" -; ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) -; ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" -; ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) -; ("go-github-com-chzyer-logex-1.1.10" -; ,go-github-com-chzyer-logex-1.1.10))) -; (home-page "https://github.com/google/pprof") -; (synopsis "Introduction") -; (description -; "pprof is a tool for collection, manipulation and visualization -;of performance profiles. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-net-0.0.0-20201031054903-ff519b6c9102 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20201031054903-ff519b6c9102") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "162ssgcc0kgj42ajaki0q3j5lwmixqqwkdqcmz41xg1k8wjm7riw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) -; ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" -; ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) -; ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" -; ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-text-0.3.4 -; (package -; (name "go-golang-org-x-text") -; (version "0.3.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/text") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "11jdvix83xcl5xnb039y4zrz4x5skzsps0w1jryp6wrar53cydvz")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/text")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" -; ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) -; (home-page "https://golang.org/x/text") -; (synopsis "Go Text") -; (description -; "text is a repository of text-related packages related to internationalization -;(i18n) and localization (l10n), such as character encodings, text -;transformations, and locale-specific text handling. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20201110124207-079ba7bd75cd -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20201110124207-079ba7bd75cd") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0g4d7cx480rbnpg16qqc4yycd50lpp2mi2qzvzr6hdny91v7sa05")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" -; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) -; ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" -; ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) -; ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" -; ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) -; ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) -; ("go-github-com-yuin-goldmark-1.2.1" -; ,go-github-com-yuin-goldmark-1.2.1))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-github-com-google-go-cmp-0.5.2 -; (package -; (name "go-github-com-google-go-cmp") -; (version "0.5.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/go-cmp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0qchy411jm9q2l9mf7x3ry2ycaqp9xdhf2nx14qrpzcxfigv2705")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/go-cmp")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" -; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) -; (home-page "https://github.com/google/go-cmp") -; (synopsis "Package for equality of Go values") -; (description -; "This package is intended to be a more powerful and safer alternative to -;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-oauth2-0.0.0-20200902213428-5d25da1a8d43 -; (package -; (name "go-golang-org-x-oauth2") -; (version "0.0.0-20200902213428-5d25da1a8d43") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/oauth2") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "14jx8sxshbvnx4fggn12mlmz000zcrd1a73n1455b1wgg1xfzq3n")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/oauth2")) -; (propagated-inputs -; `(("go-google-golang-org-appengine-1.6.6" -; ,go-google-golang-org-appengine-1.6.6) -; ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" -; ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) -; ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) -; (home-page "https://golang.org/x/oauth2") -; (synopsis "OAuth2 for Go") -; (description -; "Package oauth2 provides support for making -;OAuth2 authorized and authenticated HTTP requests, -;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -;It can additionally grant authorization with Bearer JWT. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20200905004654-be1d3432aa8f -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20200905004654-be1d3432aa8f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1kd3szjsazhpgidv5xjv0s26fm4wvv2cr7j4zk8nblnqkic58as2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20200904185747-39188db58858 -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20200904185747-39188db58858") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ydyylwqzjwijy4rdp2fmvnfh3s27896dx6g74r2wa6vbhisszvk")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" -; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) -; ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" -; ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) -; ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" -; ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) -; ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) -; ("go-github-com-yuin-goldmark-1.2.1" -; ,go-github-com-yuin-goldmark-1.2.1))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20200904004341-0bd0a958aa1d -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20200904004341-0bd0a958aa1d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "01xp4ic4jvdv7n984cjgrgqbpbi9m4bj2xnfrs1s1zn1adx0jivs")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.24.0" -; ,go-google-golang-org-protobuf-1.24.0) -; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) -; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" -; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-github-com-golang-protobuf-1.4.1" -; ,go-github-com-golang-protobuf-1.4.1))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-grpc-1.31.1 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.31.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "18565vf9i2zc69znd9b8a2iz0kgv5cms0g0ppj93hnhri8rjqagk")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" -; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.3.3" -; ,go-github-com-golang-protobuf-1.3.3) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-envoyproxy-go-control-plane-0.9.4" -; ,go-github-com-envoyproxy-go-control-plane-0.9.4) -; ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" -; ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-api-0.35.0 -; (package -; (name "go-google-golang-org-api") -; (version "0.35.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-api-go-client") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0fgn21lmrlkw44sl0ivjicygwksibb1pclzp3zyh3ivn7ylvk2jd")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/api")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.31.1" ,go-google-golang-org-grpc-1.31.1) -; ("go-google-golang-org-genproto-0.0.0-20200904004341-0bd0a958aa1d" -; ,go-google-golang-org-genproto-0.0.0-20200904004341-0bd0a958aa1d) -; ("go-google-golang-org-appengine-1.6.6" -; ,go-google-golang-org-appengine-1.6.6) -; ("go-golang-org-x-tools-0.0.0-20200904185747-39188db58858" -; ,go-golang-org-x-tools-0.0.0-20200904185747-39188db58858) -; ("go-golang-org-x-sys-0.0.0-20200905004654-be1d3432aa8f" -; ,go-golang-org-x-sys-0.0.0-20200905004654-be1d3432aa8f) -; ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" -; ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) -; ("go-golang-org-x-oauth2-0.0.0-20200902213428-5d25da1a8d43" -; ,go-golang-org-x-oauth2-0.0.0-20200902213428-5d25da1a8d43) -; ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" -; ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) -; ("go-go-opencensus-io-0.22.4" ,go-go-opencensus-io-0.22.4) -; ("go-github-com-googleapis-gax-go-v2-2.0.5" -; ,go-github-com-googleapis-gax-go-v2-2.0.5) -; ("go-github-com-google-go-cmp-0.5.2" -; ,go-github-com-google-go-cmp-0.5.2) -; ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) -; (home-page "https://google.golang.org/api") -; (synopsis "Google APIs Client Library for Go") -; (description -; "Package api is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of -;sub-packages. -;") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20201109203340-2640f1f9cdfb -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20201109203340-2640f1f9cdfb") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "00mwybjbdpvmlkvmwsjvdb2z8lzzx2a340y4pf3bxqamalhdka0w")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.24.0" -; ,go-google-golang-org-protobuf-1.24.0) -; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) -; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" -; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-github-com-golang-protobuf-1.4.1" -; ,go-github-com-golang-protobuf-1.4.1))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-cloud-google-com-go-0.72.0 -; (package -; (name "go-cloud-google-com-go") -; (version "0.72.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-cloud-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1x4gy466jrzab9l02dwd3lvy2dwy84j34zpjkm5xnxh45za6hpxn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "cloud.google.com/go")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) -; ("go-google-golang-org-genproto-0.0.0-20201109203340-2640f1f9cdfb" -; ,go-google-golang-org-genproto-0.0.0-20201109203340-2640f1f9cdfb) -; ("go-google-golang-org-api-0.35.0" ,go-google-golang-org-api-0.35.0) -; ("go-golang-org-x-tools-0.0.0-20201110124207-079ba7bd75cd" -; ,go-golang-org-x-tools-0.0.0-20201110124207-079ba7bd75cd) -; ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) -; ("go-golang-org-x-oauth2-0.0.0-20200902213428-5d25da1a8d43" -; ,go-golang-org-x-oauth2-0.0.0-20200902213428-5d25da1a8d43) -; ("go-golang-org-x-net-0.0.0-20201031054903-ff519b6c9102" -; ,go-golang-org-x-net-0.0.0-20201031054903-ff519b6c9102) -; ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" -; ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) -; ("go-go-opencensus-io-0.22.5" ,go-go-opencensus-io-0.22.5) -; ("go-github-com-jstemmer-go-junit-report-0.9.1" -; ,go-github-com-jstemmer-go-junit-report-0.9.1) -; ("go-github-com-googleapis-gax-go-v2-2.0.5" -; ,go-github-com-googleapis-gax-go-v2-2.0.5) -; ("go-github-com-google-pprof-0.0.0-20201023163331-3e6fc7fc9c4c" -; ,go-github-com-google-pprof-0.0.0-20201023163331-3e6fc7fc9c4c) -; ("go-github-com-google-martian-v3-3.1.0" -; ,go-github-com-google-martian-v3-3.1.0) -; ("go-github-com-google-go-cmp-0.5.2" -; ,go-github-com-google-go-cmp-0.5.2) -; ("go-github-com-golang-protobuf-1.4.3" -; ,go-github-com-golang-protobuf-1.4.3) -; ("go-github-com-golang-mock-1.4.4" ,go-github-com-golang-mock-1.4.4) -; ("go-cloud-google-com-go-storage-1.10.0" -; ,go-cloud-google-com-go-storage-1.10.0))) -; (home-page "https://cloud.google.com/go") -; (synopsis "Google Cloud Client Libraries for Go") -; (description -; "Package cloud is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -;of sub-packages. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-oauth2-0.0.0-20201109201403-9fd604954f58 -; (package -; (name "go-golang-org-x-oauth2") -; (version "0.0.0-20201109201403-9fd604954f58") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/oauth2") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "06dj14f6jrgpqmf3v3z74zhcin3yj7yp8mzxljm3a3ihq984kz8v")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/oauth2")) -; (propagated-inputs -; `(("go-google-golang-org-appengine-1.6.6" -; ,go-google-golang-org-appengine-1.6.6) -; ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" -; ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) -; ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) -; (home-page "https://golang.org/x/oauth2") -; (synopsis "OAuth2 for Go") -; (description -; "Package oauth2 provides support for making -;OAuth2 authorized and authenticated HTTP requests, -;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -;It can additionally grant authorization with Bearer JWT. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20201201145000-ef89a241ccb3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0a8myxx2mvdr77a003gpy5jmdzbxbnrf5zppmpl4za4sspxlmwif")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20201201161351-ac6f37ff4c2a -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20201201161351-ac6f37ff4c2a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0akq0z86x51rh556fs7icjmmmgdyaa7rq7cmqlngrmvjb79wnwpl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" -; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) -; ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" -; ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) -; ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" -; ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) -; ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) -; ("go-github-com-yuin-goldmark-1.2.1" -; ,go-github-com-yuin-goldmark-1.2.1))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20201201144952-b05cb90ed32e -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20201201144952-b05cb90ed32e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1n9jlhnn5fg7a41ahdril7wgfli43kxplnpxbdbhrkknjra7xdjd")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.24.0" -; ,go-google-golang-org-protobuf-1.24.0) -; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) -; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" -; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-github-com-golang-protobuf-1.4.1" -; ,go-github-com-golang-protobuf-1.4.1))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-api-0.36.0 -; (package -; (name "go-google-golang-org-api") -; (version "0.36.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-api-go-client") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1x6wlavrqi2r6ss3h2kg94p2lfj0z019kc85zm1pajpf0k23fxp7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/api")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) -; ("go-google-golang-org-genproto-0.0.0-20201201144952-b05cb90ed32e" -; ,go-google-golang-org-genproto-0.0.0-20201201144952-b05cb90ed32e) -; ("go-google-golang-org-appengine-1.6.7" -; ,go-google-golang-org-appengine-1.6.7) -; ("go-golang-org-x-tools-0.0.0-20201201161351-ac6f37ff4c2a" -; ,go-golang-org-x-tools-0.0.0-20201201161351-ac6f37ff4c2a) -; ("go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3" -; ,go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3) -; ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" -; ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) -; ("go-golang-org-x-oauth2-0.0.0-20201109201403-9fd604954f58" -; ,go-golang-org-x-oauth2-0.0.0-20201109201403-9fd604954f58) -; ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" -; ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) -; ("go-go-opencensus-io-0.22.5" ,go-go-opencensus-io-0.22.5) -; ("go-github-com-googleapis-gax-go-v2-2.0.5" -; ,go-github-com-googleapis-gax-go-v2-2.0.5) -; ("go-github-com-google-go-cmp-0.5.4" -; ,go-github-com-google-go-cmp-0.5.4) -; ("go-cloud-google-com-go-0.72.0" ,go-cloud-google-com-go-0.72.0))) -; (home-page "https://google.golang.org/api") -; (synopsis "Google APIs Client Library for Go") -; (description -; "Package api is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of -;sub-packages. -;") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20201210142538-e3217bee35cc -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20201210142538-e3217bee35cc") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1bzfa58dw7jmkrp46hikbsq1yyk2r29a1gn51sqlilbvf7lq96p9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.24.0" -; ,go-google-golang-org-protobuf-1.24.0) -; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) -; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" -; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-github-com-golang-protobuf-1.4.1" -; ,go-github-com-golang-protobuf-1.4.1))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-cloud-google-com-go-0.74.0 -; (package -; (name "go-cloud-google-com-go") -; (version "0.74.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-cloud-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "09j1qppf2gf14bn06hsyrj9jaxz9vlbs9d7yrxrdvh2234qsbggy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "cloud.google.com/go")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.34.0" ,go-google-golang-org-grpc-1.34.0) -; ("go-google-golang-org-genproto-0.0.0-20201210142538-e3217bee35cc" -; ,go-google-golang-org-genproto-0.0.0-20201210142538-e3217bee35cc) -; ("go-google-golang-org-api-0.36.0" ,go-google-golang-org-api-0.36.0) -; ("go-golang-org-x-tools-0.0.0-20201208233053-a543418bbed2" -; ,go-golang-org-x-tools-0.0.0-20201208233053-a543418bbed2) -; ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) -; ("go-golang-org-x-oauth2-0.0.0-20201208152858-08078c50e5b5" -; ,go-golang-org-x-oauth2-0.0.0-20201208152858-08078c50e5b5) -; ("go-golang-org-x-net-0.0.0-20201209123823-ac852fbbde11" -; ,go-golang-org-x-net-0.0.0-20201209123823-ac852fbbde11) -; ("go-golang-org-x-mod-0.4.0" ,go-golang-org-x-mod-0.4.0) -; ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" -; ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) -; ("go-go-opencensus-io-0.22.5" ,go-go-opencensus-io-0.22.5) -; ("go-github-com-jstemmer-go-junit-report-0.9.1" -; ,go-github-com-jstemmer-go-junit-report-0.9.1) -; ("go-github-com-googleapis-gax-go-v2-2.0.5" -; ,go-github-com-googleapis-gax-go-v2-2.0.5) -; ("go-github-com-google-pprof-0.0.0-20201203190320-1bf35d6f28c2" -; ,go-github-com-google-pprof-0.0.0-20201203190320-1bf35d6f28c2) -; ("go-github-com-google-martian-v3-3.1.0" -; ,go-github-com-google-martian-v3-3.1.0) -; ("go-github-com-google-go-cmp-0.5.4" -; ,go-github-com-google-go-cmp-0.5.4) -; ("go-github-com-golang-protobuf-1.4.3" -; ,go-github-com-golang-protobuf-1.4.3) -; ("go-github-com-golang-mock-1.4.4" ,go-github-com-golang-mock-1.4.4) -; ("go-cloud-google-com-go-storage-1.10.0" -; ,go-cloud-google-com-go-storage-1.10.0))) -; (home-page "https://cloud.google.com/go") -; (synopsis "Google Cloud Client Libraries for Go") -; (description -; "Package cloud is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -;of sub-packages. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-google-go-cmp-0.5.4 -; (package -; (name "go-github-com-google-go-cmp") -; (version "0.5.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/go-cmp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ld9pwb6l22g75g1zpa691l7q9ki7pjgpcqhwgdfr3va1zisr5ci")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/go-cmp")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" -; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) -; (home-page "https://github.com/google/go-cmp") -; (synopsis "Package for equality of Go values") -; (description -; "This package is intended to be a more powerful and safer alternative to -;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") -; (license license:bsd-3))) -; -;(define-public go-go-opencensus-io-0.22.5 -; (package -; (name "go-go-opencensus-io") -; (version "0.22.5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/census-instrumentation/opencensus-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "18s1d7bk28i8gbs6i587ccd31qp3f8gibgd14dpkzs05gyvlccy6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "go.opencensus.io")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.20.1" ,go-google-golang-org-grpc-1.20.1) -; ("go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb" -; ,go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb) -; ("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) -; ("go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd" -; ,go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd) -; ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" -; ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) -; ("go-github-com-stretchr-testify-1.4.0" -; ,go-github-com-stretchr-testify-1.4.0) -; ("go-github-com-google-go-cmp-0.3.0" -; ,go-github-com-google-go-cmp-0.3.0) -; ("go-github-com-golang-protobuf-1.3.1" -; ,go-github-com-golang-protobuf-1.3.1) -; ("go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6" -; ,go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6))) -; (home-page "https://go.opencensus.io") -; (synopsis "OpenCensus Libraries for Go") -; (description "Package opencensus contains Go support for OpenCensus. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-oauth2-0.0.0-20201208152858-08078c50e5b5 -; (package -; (name "go-golang-org-x-oauth2") -; (version "0.0.0-20201208152858-08078c50e5b5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/oauth2") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0zynwxw47nhwhs6n1c87c9np43lwl9m9z2w2cmdvjwhsisa93b75")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/oauth2")) -; (propagated-inputs -; `(("go-google-golang-org-appengine-1.6.6" -; ,go-google-golang-org-appengine-1.6.6) -; ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" -; ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) -; ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) -; (home-page "https://golang.org/x/oauth2") -; (synopsis "OAuth2 for Go") -; (description -; "Package oauth2 provides support for making -;OAuth2 authorized and authenticated HTTP requests, -;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -;It can additionally grant authorization with Bearer JWT. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a -; (package -; (name "go-golang-org-x-sync") -; (version "0.0.0-20201207232520-09787c993a3a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sync") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1nv4mwi9njkkyc7lwmxrjr8ggfh2cf1c67a9bq85dnss81vpj61y")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sync")) -; (home-page "https://golang.org/x/sync") -; (synopsis "Go Sync") -; (description -; "This repository provides Go concurrency primitives in addition to the -;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20210104204734-6f8348627aad -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20210104204734-6f8348627aad") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0pmz8dwjf4gxr1gwnp4iahh3yh09apcf40kvvybycsx4rfjc2gbl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20210105154028-b0ab187a4818 -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20210105154028-b0ab187a4818") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "157w706lz7j4s7cwgh7j7mf8v1sah5hm4dlmp8isf6vhnqpixdp7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" -; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) -; ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" -; ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) -; ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" -; ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) -; ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) -; ("go-github-com-yuin-goldmark-1.2.1" -; ,go-github-com-yuin-goldmark-1.2.1))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20201214200347-8c77b98c765d -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20201214200347-8c77b98c765d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1bdpss5xmla0gjz66mdk8bqpsdb5i1xz65g30k9cs2h7vrqlwzn4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.24.0" -; ,go-google-golang-org-protobuf-1.24.0) -; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) -; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" -; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-github-com-golang-protobuf-1.4.1" -; ,go-github-com-golang-protobuf-1.4.1))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-github-com-cncf-udpa-go-0.0.0-20200629203442-efcf912fb354 -; (package -; (name "go-github-com-cncf-udpa-go") -; (version "0.0.0-20200629203442-efcf912fb354") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/cncf/udpa") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "18b1v01h3id5d7v5gqabc4qsaja17r45rn3fvv38nrfx9l4smv0x")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path -; "github.com/cncf/udpa/go" -; #:unpack-path -; "github.com/cncf/udpa")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2) -; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" -; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0))) -; (home-page "https://github.com/cncf/udpa") -; (synopsis "Description") -; (description -; "This library has been deprecated in favor of @code{github.com/cncf/xds/go}. All users are recommended to switch their imports.") -; (license license:asl2.0))) -; -;(define-public go-github-com-envoyproxy-go-control-plane-0.9.7 -; (package -; (name "go-github-com-envoyproxy-go-control-plane") -; (version "0.9.7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/envoyproxy/go-control-plane") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0nx5ybyadkjqr29hndn6amhbcqpi1rkfv12bxp0rk3ay045zxsh8")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.23.0" -; ,go-google-golang-org-protobuf-1.23.0) -; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) -; ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" -; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) -; ("go-github-com-stretchr-testify-1.5.1" -; ,go-github-com-stretchr-testify-1.5.1) -; ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" -; ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.4.2" -; ,go-github-com-golang-protobuf-1.4.2) -; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" -; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) -; ("go-github-com-cncf-udpa-go-0.0.0-20200629203442-efcf912fb354" -; ,go-github-com-cncf-udpa-go-0.0.0-20200629203442-efcf912fb354) -; ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" -; ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) -; (home-page "https://github.com/envoyproxy/go-control-plane") -; (synopsis "control-plane") -; (description -; "This repository contains a Go-based implementation of an API server that -;implements the discovery service APIs defined in -;@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-grpc-1.34.0 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.34.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0s8y19qvv0zfy2irq8vv12h65v7pw18k6yqfix1j2370yxmsajgm")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.25.0" -; ,go-google-golang-org-protobuf-1.25.0) -; ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" -; ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) -; ("go-github-com-google-go-cmp-0.5.0" -; ,go-github-com-google-go-cmp-0.5.0) -; ("go-github-com-golang-protobuf-1.4.2" -; ,go-github-com-golang-protobuf-1.4.2) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-envoyproxy-go-control-plane-0.9.7" -; ,go-github-com-envoyproxy-go-control-plane-0.9.7) -; ("go-github-com-cncf-udpa-go-0.0.0-20200629203442-efcf912fb354" -; ,go-github-com-cncf-udpa-go-0.0.0-20200629203442-efcf912fb354))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-api-0.40.0 -; (package -; (name "go-google-golang-org-api") -; (version "0.40.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-api-go-client") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0vs0bnzljg5iib8x01sy49ndgsz3cl1sq53pvy3h6kzp7may0bpc")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/api")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.34.0" ,go-google-golang-org-grpc-1.34.0) -; ("go-google-golang-org-genproto-0.0.0-20201214200347-8c77b98c765d" -; ,go-google-golang-org-genproto-0.0.0-20201214200347-8c77b98c765d) -; ("go-google-golang-org-appengine-1.6.7" -; ,go-google-golang-org-appengine-1.6.7) -; ("go-golang-org-x-tools-0.0.0-20210105154028-b0ab187a4818" -; ,go-golang-org-x-tools-0.0.0-20210105154028-b0ab187a4818) -; ("go-golang-org-x-sys-0.0.0-20210104204734-6f8348627aad" -; ,go-golang-org-x-sys-0.0.0-20210104204734-6f8348627aad) -; ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" -; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) -; ("go-golang-org-x-oauth2-0.0.0-20201208152858-08078c50e5b5" -; ,go-golang-org-x-oauth2-0.0.0-20201208152858-08078c50e5b5) -; ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" -; ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) -; ("go-go-opencensus-io-0.22.5" ,go-go-opencensus-io-0.22.5) -; ("go-github-com-googleapis-gax-go-v2-2.0.5" -; ,go-github-com-googleapis-gax-go-v2-2.0.5) -; ("go-github-com-google-go-cmp-0.5.4" -; ,go-github-com-google-go-cmp-0.5.4) -; ("go-cloud-google-com-go-0.74.0" ,go-cloud-google-com-go-0.74.0))) -; (home-page "https://google.golang.org/api") -; (synopsis "Google APIs Client Library for Go") -; (description -; "Package api is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of -;sub-packages. -;") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20210222152913-aa3ee6e6a81c -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20210222152913-aa3ee6e6a81c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "06wa7v3s558rwxsqd1kqz5xy10kigzx50ciqh3zdxsbvxqvjwxrx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.24.0" -; ,go-google-golang-org-protobuf-1.24.0) -; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) -; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" -; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-github-com-golang-protobuf-1.4.1" -; ,go-github-com-golang-protobuf-1.4.1))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-grpc-1.35.0 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.35.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "15ij5acp9h8dxq0brc0jljj98badri23zpm4yvmsn6gnnxaykl72")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.25.0" -; ,go-google-golang-org-protobuf-1.25.0) -; ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" -; ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) -; ("go-github-com-google-go-cmp-0.5.0" -; ,go-github-com-google-go-cmp-0.5.0) -; ("go-github-com-golang-protobuf-1.4.2" -; ,go-github-com-golang-protobuf-1.4.2) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad" -; ,go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad) -; ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" -; ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-cloud-google-com-go-0.78.0 -; (package -; (name "go-cloud-google-com-go") -; (version "0.78.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-cloud-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "11wldladkcz41ivsfnbrqy2hg5wp55d72hnr2wki0zvnhbzsj376")))) -; (build-system go-build-system) -; (arguments '(#:import-path "cloud.google.com/go")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.35.0" ,go-google-golang-org-grpc-1.35.0) -; ("go-google-golang-org-genproto-0.0.0-20210222152913-aa3ee6e6a81c" -; ,go-google-golang-org-genproto-0.0.0-20210222152913-aa3ee6e6a81c) -; ("go-google-golang-org-api-0.40.0" ,go-google-golang-org-api-0.40.0) -; ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) -; ("go-golang-org-x-text-0.3.5" ,go-golang-org-x-text-0.3.5) -; ("go-golang-org-x-sys-0.0.0-20210220050731-9a76102bfb43" -; ,go-golang-org-x-sys-0.0.0-20210220050731-9a76102bfb43) -; ("go-golang-org-x-oauth2-0.0.0-20210218202405-ba52d332ba99" -; ,go-golang-org-x-oauth2-0.0.0-20210218202405-ba52d332ba99) -; ("go-golang-org-x-net-0.0.0-20210119194325-5f4716e94777" -; ,go-golang-org-x-net-0.0.0-20210119194325-5f4716e94777) -; ("go-golang-org-x-mod-0.4.1" ,go-golang-org-x-mod-0.4.1) -; ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" -; ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) -; ("go-go-opencensus-io-0.22.5" ,go-go-opencensus-io-0.22.5) -; ("go-github-com-jstemmer-go-junit-report-0.9.1" -; ,go-github-com-jstemmer-go-junit-report-0.9.1) -; ("go-github-com-googleapis-gax-go-v2-2.0.5" -; ,go-github-com-googleapis-gax-go-v2-2.0.5) -; ("go-github-com-google-pprof-0.0.0-20210122040257-d980be63207e" -; ,go-github-com-google-pprof-0.0.0-20210122040257-d980be63207e) -; ("go-github-com-google-martian-v3-3.1.0" -; ,go-github-com-google-martian-v3-3.1.0) -; ("go-github-com-google-go-cmp-0.5.4" -; ,go-github-com-google-go-cmp-0.5.4) -; ("go-github-com-golang-protobuf-1.4.3" -; ,go-github-com-golang-protobuf-1.4.3) -; ("go-github-com-golang-mock-1.4.4" ,go-github-com-golang-mock-1.4.4) -; ("go-cloud-google-com-go-storage-1.10.0" -; ,go-cloud-google-com-go-storage-1.10.0))) -; (home-page "https://cloud.google.com/go") -; (synopsis "Google Cloud Client Libraries for Go") -; (description -; "Package cloud is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -;of sub-packages. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-oauth2-0.0.0-20210220000619-9bb904979d93 -; (package -; (name "go-golang-org-x-oauth2") -; (version "0.0.0-20210220000619-9bb904979d93") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/oauth2") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1rhndpvpvfy5bsaxi974cznlq4hbamhmy6l06ppp9phh12pvn11p")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/oauth2")) -; (propagated-inputs -; `(("go-google-golang-org-appengine-1.6.6" -; ,go-google-golang-org-appengine-1.6.6) -; ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" -; ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) -; ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) -; (home-page "https://golang.org/x/oauth2") -; (synopsis "OAuth2 for Go") -; (description -; "Package oauth2 provides support for making -;OAuth2 authorized and authenticated HTTP requests, -;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -;It can additionally grant authorization with Bearer JWT. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20210305230114-8fe3ee5dd75b -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20210305230114-8fe3ee5dd75b") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1x7fn66vplxkac6lbwqv649wwnx7kz0bqdzgr98z7yx7cfdxd7rj")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20210303154014-9728d6b83eeb -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20210303154014-9728d6b83eeb") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1abic7gjp07d1s6imjfn00s316xdirss3zvcric74gr9varr02xn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.24.0" -; ,go-google-golang-org-protobuf-1.24.0) -; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) -; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" -; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-github-com-golang-protobuf-1.4.1" -; ,go-github-com-golang-protobuf-1.4.1))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-api-0.41.0 -; (package -; (name "go-google-golang-org-api") -; (version "0.41.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-api-go-client") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0yzz534xzl2km3vxr18h204yvnrzqlss02fagg2ign0sy3qnlkhx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/api")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.36.0" ,go-google-golang-org-grpc-1.36.0) -; ("go-google-golang-org-genproto-0.0.0-20210303154014-9728d6b83eeb" -; ,go-google-golang-org-genproto-0.0.0-20210303154014-9728d6b83eeb) -; ("go-google-golang-org-appengine-1.6.7" -; ,go-google-golang-org-appengine-1.6.7) -; ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) -; ("go-golang-org-x-sys-0.0.0-20210305230114-8fe3ee5dd75b" -; ,go-golang-org-x-sys-0.0.0-20210305230114-8fe3ee5dd75b) -; ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" -; ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) -; ("go-golang-org-x-oauth2-0.0.0-20210220000619-9bb904979d93" -; ,go-golang-org-x-oauth2-0.0.0-20210220000619-9bb904979d93) -; ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" -; ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) -; ("go-go-opencensus-io-0.23.0" ,go-go-opencensus-io-0.23.0) -; ("go-github-com-googleapis-gax-go-v2-2.0.5" -; ,go-github-com-googleapis-gax-go-v2-2.0.5) -; ("go-github-com-google-go-cmp-0.5.5" -; ,go-github-com-google-go-cmp-0.5.5) -; ("go-cloud-google-com-go-0.78.0" ,go-cloud-google-com-go-0.78.0))) -; (home-page "https://google.golang.org/api") -; (synopsis "Google APIs Client Library for Go") -; (description -; "Package api is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of -;sub-packages. -;") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20210310155132-4ce2db91004e -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20210310155132-4ce2db91004e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0r5f024c4piqna27pvc28m0h44ms9rhcbihf1zn5l8prf4vvrdw9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.24.0" -; ,go-google-golang-org-protobuf-1.24.0) -; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) -; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" -; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-github-com-golang-protobuf-1.4.1" -; ,go-github-com-golang-protobuf-1.4.1))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-cloud-google-com-go-0.79.0 -; (package -; (name "go-cloud-google-com-go") -; (version "0.79.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-cloud-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "031jrfgyys0slh154593d4swj6iqrjvs9dxwmab99dl6zfws77jv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "cloud.google.com/go")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.36.0" ,go-google-golang-org-grpc-1.36.0) -; ("go-google-golang-org-genproto-0.0.0-20210310155132-4ce2db91004e" -; ,go-google-golang-org-genproto-0.0.0-20210310155132-4ce2db91004e) -; ("go-google-golang-org-api-0.41.0" ,go-google-golang-org-api-0.41.0) -; ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) -; ("go-golang-org-x-text-0.3.5" ,go-golang-org-x-text-0.3.5) -; ("go-golang-org-x-oauth2-0.0.0-20210220000619-9bb904979d93" -; ,go-golang-org-x-oauth2-0.0.0-20210220000619-9bb904979d93) -; ("go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110" -; ,go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110) -; ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" -; ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) -; ("go-go-opencensus-io-0.23.0" ,go-go-opencensus-io-0.23.0) -; ("go-github-com-jstemmer-go-junit-report-0.9.1" -; ,go-github-com-jstemmer-go-junit-report-0.9.1) -; ("go-github-com-googleapis-gax-go-v2-2.0.5" -; ,go-github-com-googleapis-gax-go-v2-2.0.5) -; ("go-github-com-google-pprof-0.0.0-20210226084205-cbba55b83ad5" -; ,go-github-com-google-pprof-0.0.0-20210226084205-cbba55b83ad5) -; ("go-github-com-google-martian-v3-3.1.0" -; ,go-github-com-google-martian-v3-3.1.0) -; ("go-github-com-google-go-cmp-0.5.5" -; ,go-github-com-google-go-cmp-0.5.5) -; ("go-github-com-golang-protobuf-1.4.3" -; ,go-github-com-golang-protobuf-1.4.3) -; ("go-github-com-golang-mock-1.5.0" ,go-github-com-golang-mock-1.5.0) -; ("go-cloud-google-com-go-storage-1.10.0" -; ,go-cloud-google-com-go-storage-1.10.0))) -; (home-page "https://cloud.google.com/go") -; (synopsis "Google Cloud Client Libraries for Go") -; (description -; "Package cloud is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -;of sub-packages. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-oauth2-0.0.0-20210313182246-cd4f82c27b84 -; (package -; (name "go-golang-org-x-oauth2") -; (version "0.0.0-20210313182246-cd4f82c27b84") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/oauth2") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1jf68sh1957ji1lv1zrrhsbm6jr3508pw159pfzgyw6hbzsg5amv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/oauth2")) -; (propagated-inputs -; `(("go-google-golang-org-appengine-1.6.6" -; ,go-google-golang-org-appengine-1.6.6) -; ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" -; ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) -; ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) -; (home-page "https://golang.org/x/oauth2") -; (synopsis "OAuth2 for Go") -; (description -; "Package oauth2 provides support for making -;OAuth2 authorized and authenticated HTTP requests, -;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -;It can additionally grant authorization with Bearer JWT. -;") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20210319143718-93e7006c17a6 -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20210319143718-93e7006c17a6") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0l143m8rn7zmbfb2rpdawhxs8qjbdpn61hqynf47j5hwsbjci2xs")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.24.0" -; ,go-google-golang-org-protobuf-1.24.0) -; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) -; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" -; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-github-com-golang-protobuf-1.4.1" -; ,go-github-com-golang-protobuf-1.4.1))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-grpc-1.36.0 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.36.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1m4xsfv3ysc84cwqxqqr61fs3d2w04f0q5xbdjijhczjixcxwh5i")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.25.0" -; ,go-google-golang-org-protobuf-1.25.0) -; ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" -; ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) -; ("go-github-com-google-go-cmp-0.5.0" -; ,go-github-com-google-go-cmp-0.5.0) -; ("go-github-com-golang-protobuf-1.4.2" -; ,go-github-com-golang-protobuf-1.4.2) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad" -; ,go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad) -; ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" -; ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-api-0.43.0 -; (package -; (name "go-google-golang-org-api") -; (version "0.43.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-api-go-client") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0wxxbihigjn49warampi7gqfslbnp9nrj5zmk8p3ssq429jpvsib")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/api")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.36.0" ,go-google-golang-org-grpc-1.36.0) -; ("go-google-golang-org-genproto-0.0.0-20210319143718-93e7006c17a6" -; ,go-google-golang-org-genproto-0.0.0-20210319143718-93e7006c17a6) -; ("go-google-golang-org-appengine-1.6.7" -; ,go-google-golang-org-appengine-1.6.7) -; ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) -; ("go-golang-org-x-sys-0.0.0-20210320140829-1e4c9ba3b0c4" -; ,go-golang-org-x-sys-0.0.0-20210320140829-1e4c9ba3b0c4) -; ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" -; ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) -; ("go-golang-org-x-oauth2-0.0.0-20210313182246-cd4f82c27b84" -; ,go-golang-org-x-oauth2-0.0.0-20210313182246-cd4f82c27b84) -; ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" -; ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) -; ("go-go-opencensus-io-0.23.0" ,go-go-opencensus-io-0.23.0) -; ("go-github-com-googleapis-gax-go-v2-2.0.5" -; ,go-github-com-googleapis-gax-go-v2-2.0.5) -; ("go-github-com-google-go-cmp-0.5.5" -; ,go-github-com-google-go-cmp-0.5.5) -; ("go-cloud-google-com-go-0.79.0" ,go-cloud-google-com-go-0.79.0))) -; (home-page "https://google.golang.org/api") -; (synopsis "Google APIs Client Library for Go") -; (description -; "Package api is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of -;sub-packages. -;") -; (license license:bsd-3))) -; -;(define-public go-cloud-google-com-go-0.81.0 -; (package -; (name "go-cloud-google-com-go") -; (version "0.81.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-cloud-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "15jgynqb5pbxqbj3a7ii970yn4srsw1dbxzxnhpkfkmplalpgyh3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "cloud.google.com/go")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.36.1" ,go-google-golang-org-grpc-1.36.1) -; ("go-google-golang-org-genproto-0.0.0-20210402141018-6c239bbf2bb1" -; ,go-google-golang-org-genproto-0.0.0-20210402141018-6c239bbf2bb1) -; ("go-google-golang-org-api-0.43.0" ,go-google-golang-org-api-0.43.0) -; ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) -; ("go-golang-org-x-text-0.3.5" ,go-golang-org-x-text-0.3.5) -; ("go-golang-org-x-oauth2-0.0.0-20210313182246-cd4f82c27b84" -; ,go-golang-org-x-oauth2-0.0.0-20210313182246-cd4f82c27b84) -; ("go-golang-org-x-net-0.0.0-20210316092652-d523dce5a7f4" -; ,go-golang-org-x-net-0.0.0-20210316092652-d523dce5a7f4) -; ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" -; ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) -; ("go-go-opencensus-io-0.23.0" ,go-go-opencensus-io-0.23.0) -; ("go-github-com-jstemmer-go-junit-report-0.9.1" -; ,go-github-com-jstemmer-go-junit-report-0.9.1) -; ("go-github-com-googleapis-gax-go-v2-2.0.5" -; ,go-github-com-googleapis-gax-go-v2-2.0.5) -; ("go-github-com-google-pprof-0.0.0-20210226084205-cbba55b83ad5" -; ,go-github-com-google-pprof-0.0.0-20210226084205-cbba55b83ad5) -; ("go-github-com-google-martian-v3-3.1.0" -; ,go-github-com-google-martian-v3-3.1.0) -; ("go-github-com-google-go-cmp-0.5.5" -; ,go-github-com-google-go-cmp-0.5.5) -; ("go-github-com-golang-protobuf-1.5.1" -; ,go-github-com-golang-protobuf-1.5.1) -; ("go-github-com-golang-mock-1.5.0" ,go-github-com-golang-mock-1.5.0) -; ("go-cloud-google-com-go-storage-1.10.0" -; ,go-cloud-google-com-go-storage-1.10.0))) -; (home-page "https://cloud.google.com/go") -; (synopsis "Google Cloud Client Libraries for Go") -; (description -; "Package cloud is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -;of sub-packages. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e -; (package -; (name "go-github-com-golang-groupcache") -; (version "0.0.0-20200121045136-8c9f03a8e57e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/groupcache") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0vjjr79r32icjzlb05wn02k59av7jx0rn1jijml8r4whlg7dnkfh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/groupcache")) -; (home-page "https://github.com/golang/groupcache") -; (synopsis "groupcache") -; (description -; "Package groupcache provides a data loading mechanism with caching -;and de-duplication that works across a set of peer processes. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-golang-protobuf-1.4.3 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.4.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1kf1d7xmyjvy0z6j5czp6nqyvj9zrk6liv6znif08927xqfrzyln")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.23.0" -; ,go-google-golang-org-protobuf-1.23.0) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0))) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-github-com-google-go-cmp-0.5.3 -; (package -; (name "go-github-com-google-go-cmp") -; (version "0.5.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/go-cmp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "011gdkmyk3w7qkcwljhqak4h5npn4n7fwgx1fwpyx9c7wizvgkm5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/go-cmp")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" -; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) -; (home-page "https://github.com/google/go-cmp") -; (synopsis "Package for equality of Go values") -; (description -; "This package is intended to be a more powerful and safer alternative to -;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") -; (license license:bsd-3))) -; -;(define-public go-github-com-stretchr-testify-1.6.1 -; (package -; (name "go-github-com-stretchr-testify") -; (version "1.6.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/testify") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1yhiqqzjvi63pf01rgzx68gqkkvjx03fvl5wk30br5l6s81s090l")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/testify")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" -; ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) -; ("go-github-com-stretchr-objx-0.1.0" -; ,go-github-com-stretchr-objx-0.1.0) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-davecgh-go-spew-1.1.0" -; ,go-github-com-davecgh-go-spew-1.1.0))) -; (home-page "https://github.com/stretchr/testify") -; (synopsis "Testify - Thou Shalt Write Tests") -; (description -; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20201110031124-69a78807bb2b") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "176z5k6jbhr9vf0am2avl1lyqwym3q0mri98yb8r572z33qmcw1d")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) -; ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" -; ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) -; ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" -; ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-grpc-1.33.2 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.33.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "03yz4nlf4kqbnpw48f0mvcb2f5zzy0vjd5i2iw0hrjspd0238fzk")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.25.0" -; ,go-google-golang-org-protobuf-1.25.0) -; ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" -; ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) -; ("go-github-com-google-go-cmp-0.5.0" -; ,go-github-com-google-go-cmp-0.5.0) -; ("go-github-com-golang-protobuf-1.4.1" -; ,go-github-com-golang-protobuf-1.4.1) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-envoyproxy-go-control-plane-0.9.4" -; ,go-github-com-envoyproxy-go-control-plane-0.9.4) -; ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" -; ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-go-opencensus-io-0.23.0 -; (package -; (name "go-go-opencensus-io") -; (version "0.23.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/census-instrumentation/opencensus-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0gw4f7inf8y2ik00yfb36xganiq9rl4w2d1a41bsjqsh83ajz2km")))) -; (build-system go-build-system) -; (arguments '(#:import-path "go.opencensus.io")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) -; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" -; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-google-go-cmp-0.5.3" -; ,go-github-com-google-go-cmp-0.5.3) -; ("go-github-com-golang-protobuf-1.4.3" -; ,go-github-com-golang-protobuf-1.4.3) -; ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" -; ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e))) -; (home-page "https://go.opencensus.io") -; (synopsis "OpenCensus Libraries for Go") -; (description "Package opencensus contains Go support for OpenCensus. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-golang-mock-1.4.4 -; (package -; (name "go-github-com-golang-mock") -; (version "1.4.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/mock") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1lj0dvd6div4jaq1s0afpwqaq9ah8cxhkq93wii2ably1xmp2l0a")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/mock")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262" -; ,go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262))) -; (home-page "https://github.com/golang/mock") -; (synopsis "gomock") -; (description -; "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It -;integrates well with Go's built-in @code{testing} package, but can be used in other -;contexts too.") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-tools-0.0.0-20200825202427-b303f430e36d -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20200825202427-b303f430e36d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0zzf6ifzjvkwin6m97jp2dndbfac0sbdr84ki79j9srhpqdigl75")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" -; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) -; ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" -; ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) -; ("go-golang-org-x-net-0.0.0-20200625001655-4c5254603344" -; ,go-golang-org-x-net-0.0.0-20200625001655-4c5254603344) -; ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) -; ("go-github-com-yuin-goldmark-1.1.32" -; ,go-github-com-yuin-goldmark-1.1.32))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20190628185345-da137c7871d7 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20190628185345-da137c7871d7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1qsiyr3irmb6ii06hivm9p2c7wqyxczms1a9v1ss5698yjr3fg47")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-github-com-google-martian-v3-3.0.0 -; (package -; (name "go-github-com-google-martian-v3") -; (version "3.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/martian") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ngvs4l6a06s8scnliq9i5pwvwpzfpa5wf9skg0gcvysli1rm3fm")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/martian/v3")) -; (propagated-inputs -; `(("go-golang-org-x-net-0.0.0-20190628185345-da137c7871d7" -; ,go-golang-org-x-net-0.0.0-20190628185345-da137c7871d7))) -; (home-page "https://github.com/google/martian") -; (synopsis "Martian Proxy") -; (description -; "Package martian provides an HTTP/1.1 proxy with an API for configurable -;request and response modifiers. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-google-pprof-0.0.0-20200708004538-1a94d8640e99 -; (package -; (name "go-github-com-google-pprof") -; (version "0.0.0-20200708004538-1a94d8640e99") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/pprof") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0isfwwan9vimwsfjml0phwrqv6kb83mkmk063dcb81k09gzzs3wy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/pprof")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" -; ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) -; ("go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6" -; ,go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6) -; ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" -; ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) -; ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" -; ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) -; ("go-github-com-chzyer-logex-1.1.10" -; ,go-github-com-chzyer-logex-1.1.10))) -; (home-page "https://github.com/google/pprof") -; (synopsis "Introduction") -; (description -; "pprof is a tool for collection, manipulation and visualization -;of performance profiles. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-net-0.0.0-20200707034311-ab3426394381 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20200707034311-ab3426394381") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1wr7rnnqp210yykkypinb8ciszx28aq5a3l3dvsv6swzxxngs8zn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" -; ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) -; ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" -; ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20200729194436-6467de6f59a7 -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20200729194436-6467de6f59a7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "14zpkr5idlx2zbm5dp7gk4afppy7k3j4y68s1qvpgi70yazaxzkd")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" -; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) -; ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" -; ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) -; ("go-golang-org-x-net-0.0.0-20200625001655-4c5254603344" -; ,go-golang-org-x-net-0.0.0-20200625001655-4c5254603344) -; ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) -; ("go-github-com-yuin-goldmark-1.1.32" -; ,go-github-com-yuin-goldmark-1.1.32))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262 -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20190425150028-36563e24a262") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0lasi96f6a1h11gkm8kl33x03pmxp369wrqq2dg7x7xv9nq76d6g")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" -; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-text-0.0.0-20170915032832-14c0d48ead0c -; (package -; (name "go-golang-org-x-text") -; (version "0.0.0-20170915032832-14c0d48ead0c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/text") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0y0nrj4hw7vby6m3iqklbf4v7njqlsx7s4pwfkwmvh1ryn1kb7d6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/text")) -; (home-page "https://golang.org/x/text") -; (synopsis "Go Text") -; (description -; "text is a repository of text-related packages related to internationalization -;(i18n) and localization (l10n), such as character encodings, text -;transformations, and locale-specific text handling. -;") -; (license license:bsd-3))) -; -;(define-public go-rsc-io-sampler-1.3.0 -; (package -; (name "go-rsc-io-sampler") -; (version "1.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/rsc/sampler") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0byxk2ynba50py805kcvbvjzh59l1r308i1xgyzpw6lff4xx9xjh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "rsc.io/sampler")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.0.0-20170915032832-14c0d48ead0c" -; ,go-golang-org-x-text-0.0.0-20170915032832-14c0d48ead0c))) -; (home-page "https://rsc.io/sampler") -; (synopsis #f) -; (description "Package sampler shows simple texts. -;") -; (license license:bsd-3))) -; -;(define-public go-rsc-io-quote-v3-3.1.0 -; (package -; (name "go-rsc-io-quote-v3") -; (version "3.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/rsc/quote") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0nvv97hwwrl1mx5gzsbdm1ndnwpg3m7i2jb10ig9wily7zmvki0i")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "rsc.io/quote/v3" #:unpack-path "rsc.io/quote/v3")) -; (propagated-inputs `(("go-rsc-io-sampler-1.3.0" ,go-rsc-io-sampler-1.3.0))) -; (home-page "https://rsc.io/quote/v3") -; (synopsis #f) -; (description "Package quote collects pithy sayings. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-mock-1.4.3 -; (package -; (name "go-github-com-golang-mock") -; (version "1.4.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/mock") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1p37xnja1dgq5ykx24n7wincwz2gahjh71b95p8vpw7ss2g8j8wx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/mock")) -; (propagated-inputs -; `(("go-rsc-io-quote-v3-3.1.0" ,go-rsc-io-quote-v3-3.1.0) -; ("go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262" -; ,go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262))) -; (home-page "https://github.com/golang/mock") -; (synopsis "gomock") -; (description -; "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It -;integrates well with Go's built-in @code{testing} package, but can be used in other -;contexts too.") -; (license license:asl2.0))) -; -;(define-public go-github-com-golang-protobuf-1.3.5 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.3.5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1gkd1942vk9n8kfzdwy1iil6wgvlwjq7a3y5jc49ck4lz9rhmgkq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-github-com-chzyer-logex-1.1.10 -; (package -; (name "go-github-com-chzyer-logex") -; (version "1.1.10") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/chzyer/logex") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "08pbjj3wx9acavlwyr055isa8a5hnmllgdv5k6ra60l5y1brmlq4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/chzyer/logex")) -; (home-page "https://github.com/chzyer/logex") -; (synopsis #f) -; (description #f) -; (license #f))) -; -;(define-public go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e -; (package -; (name "go-github-com-chzyer-readline") -; (version "0.0.0-20180603132655-2972be24d48e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/chzyer/readline") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "104q8dazj8yf6b089jjr82fy9h1g80zyyzvp3g8b44a7d8ngjj6r")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/chzyer/readline")) -; (home-page "https://github.com/chzyer/readline") -; (synopsis "Guide") -; (description -; "Readline is a pure go implementation for GNU-Readline kind library. -;") -; (license license:expat))) -; -;(define-public go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1 -; (package -; (name "go-github-com-chzyer-test") -; (version "0.0.0-20180213035817-a1ea475d72b1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/chzyer/test") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0rns2aqk22i9xsgyap0pq8wi4cfaxsri4d9q6xxhhyma8jjsnj2k")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/chzyer/test")) -; (home-page "https://github.com/chzyer/test") -; (synopsis "test") -; (description #f) -; (license license:expat))) -; -;(define-public go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6 -; (package -; (name "go-github-com-ianlancetaylor-demangle") -; (version "0.0.0-20181102032728-5e5cf60278f6") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/ianlancetaylor/demangle") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1fhjk11cip9c3jyj1byz9z77n6n2rlxmyz0xjx1zpn1da3cvri75")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/ianlancetaylor/demangle")) -; (home-page "https://github.com/ianlancetaylor/demangle") -; (synopsis "github.com/ianlancetaylor/demangle") -; (description -; "Package demangle defines functions that demangle GCC/LLVM -;C++ and Rust symbol names. -;This package recognizes names that were mangled according to the C++ ABI -;defined at @url{http://codesourcery.com/cxx-abi/,http://codesourcery.com/cxx-abi/} and the Rust ABI -;defined at -;@url{https://rust-lang.github.io/rfcs/2603-rust-symbol-name-mangling-v0.html,https://rust-lang.github.io/rfcs/2603-rust-symbol-name-mangling-v0.html} -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20191204072324-ce4227a45e2e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1s43wvqfml6ml5ks7iv2bis9d664g77mq86v7mfmjhn56x856g35")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-google-pprof-0.0.0-20200229191704-1ebb73c60ed3 -; (package -; (name "go-github-com-google-pprof") -; (version "0.0.0-20200229191704-1ebb73c60ed3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/pprof") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1gdi9p4j1zfm5xlm488i5l0q3kk4q6hsmbmlk6p729i0di2n3ifa")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/pprof")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" -; ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) -; ("go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6" -; ,go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6) -; ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" -; ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) -; ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" -; ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) -; ("go-github-com-chzyer-logex-1.1.10" -; ,go-github-com-chzyer-logex-1.1.10))) -; (home-page "https://github.com/google/pprof") -; (synopsis "Introduction") -; (description -; "pprof is a tool for collection, manipulation and visualization -;of performance profiles. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-jstemmer-go-junit-report-0.9.1 -; (package -; (name "go-github-com-jstemmer-go-junit-report") -; (version "0.9.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/jstemmer/go-junit-report") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1knip80yir1cdsjlb3rzy0a4w3kl4ljpiciaz6hjzwqlfhnv7bkw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/jstemmer/go-junit-report")) -; (home-page "https://github.com/jstemmer/go-junit-report") -; (synopsis "go-junit-report") -; (description -; "Converts @code{go test} output to an xml report, suitable for applications that -;expect junit xml reports (e.g. @url{http://jenkins-ci.org,Jenkins}).") -; (license license:expat))) -; -;(define-public go-golang-org-x-net-0.0.0-20200324143707-d3edc9973b7e -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20200324143707-d3edc9973b7e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "12zbjwcsh9b0lwycqlkrnbyg5a6a9dzgj8hhgq399bdda5bd97y7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" -; ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-mock-1.2.0 -; (package -; (name "go-github-com-golang-mock") -; (version "1.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/mock") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "12ddj2g8ab87id6n2n67vnbhq6p8dvgsq1pzpqfriym4dk8w54fg")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/mock")) -; (home-page "https://github.com/golang/mock") -; (synopsis "gomock") -; (description -; "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It -;integrates well with Go's built-in @code{testing} package, but can be used in other -;contexts too.") -; (license license:asl2.0))) -; -;(define-public go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c -; (package -; (name "go-github-com-google-btree") -; (version "0.0.0-20180813153112-4030bb1f1f0c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/btree") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ba430m9fbnagacp57krgidsyrgp3ycw5r7dj71brgp5r52g82p6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/btree")) -; (home-page "https://github.com/google/btree") -; (synopsis "BTree implementation for Go") -; (description -; "Package btree implements in-memory B-Trees of arbitrary degree. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-google-martian-2.1.0+incompatible -; (package -; (name "go-github-com-google-martian") -; (version "2.1.0+incompatible") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/martian") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "197hil6vrjk50b9wvwyzf61csid83whsjj6ik8mc9r2lryxlyyrp")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/martian")) -; (home-page "https://github.com/google/martian") -; (synopsis "Martian Proxy") -; (description -; "Package martian provides an HTTP/1.1 proxy with an API for configurable -;request and response modifiers. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-google-pprof-0.0.0-20181206194817-3ea8567a2e57 -; (package -; (name "go-github-com-google-pprof") -; (version "0.0.0-20181206194817-3ea8567a2e57") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/pprof") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "09rhjn3ms0a72dw0yzbp237p7yhqma772zspddn6mgkh3gi3kn4c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/pprof")) -; (home-page "https://github.com/google/pprof") -; (synopsis "Introduction") -; (description -; "pprof is a tool for collection, manipulation and visualization -;of performance profiles. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-googleapis-gax-go-v2-2.0.4 -; (package -; (name "go-github-com-googleapis-gax-go-v2") -; (version "2.0.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/gax-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1iwnm6ky1x53lgs44mw3hpdkjzrm5qd0kfs50m0qcq2ml5m1cwdm")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/googleapis/gax-go/v2")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.19.0" -; ,go-google-golang-org-grpc-1.19.0))) -; (home-page "https://github.com/googleapis/gax-go") -; (synopsis #f) -; (description -; "Package gax contains a set of modules which aid the development of APIs -;for clients and servers based on gRPC and Google API conventions. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-jstemmer-go-junit-report-0.0.0-20190106144839-af01ea7f8024 -; (package -; (name "go-github-com-jstemmer-go-junit-report") -; (version "0.0.0-20190106144839-af01ea7f8024") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/jstemmer/go-junit-report") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1lp3n94ris12hac02wi31f3whs88lcrzwgdg43a5j6cafg9p1d0s")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/jstemmer/go-junit-report")) -; (home-page "https://github.com/jstemmer/go-junit-report") -; (synopsis "go-junit-report") -; (description -; "Converts @code{go test} output to an xml report, suitable for applications that -;expect junit xml reports (e.g. @url{http://jenkins-ci.org,Jenkins}).") -; (license license:expat))) -; -;(define-public go-golang-org-x-text-0.3.1-0.20180807135948-17ff2d5776d2 -; (package -; (name "go-golang-org-x-text") -; (version "0.3.1-0.20180807135948-17ff2d5776d2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/text") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1rrh2mnmyxr45nsvy42zq3w3ly6gw6rl993knwvf1w71kyv0jjnj")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/text")) -; (home-page "https://golang.org/x/text") -; (synopsis "Go Text") -; (description -; "text is a repository of text-related packages related to internationalization -;(i18n) and localization (l10n), such as character encodings, text -;transformations, and locale-specific text handling. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-time-0.0.0-20181108054448-85acf8d2951c -; (package -; (name "go-golang-org-x-time") -; (version "0.0.0-20181108054448-85acf8d2951c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/time") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0yqnxsrarjk4qkda8kcxzmk7y90kkkxzx9iwryzrk7bzs87ky3xc")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/time")) -; (home-page "https://golang.org/x/time") -; (synopsis "Go Time") -; (description "This repository provides supplementary Go time packages.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f -; (package -; (name "go-golang-org-x-lint") -; (version "0.0.0-20190301231843-5614ed5bae6f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/lint") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0fzn0zjv0x92xvfdq3a0v9w5sgkhr7hxkfy9zaqi8i57807z8bnx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/lint")) -; (home-page "https://golang.org/x/lint") -; (synopsis "Installation") -; (description "Package lint contains a linter for Go source code. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421 -; (package -; (name "go-golang-org-x-oauth2") -; (version "0.0.0-20190226205417-e64efc72b421") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/oauth2") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0djvwz2avx7knsjbl434vw1wqbrg53xp1kh599gfixn5icrggz4m")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/oauth2")) -; (propagated-inputs -; `(("go-google-golang-org-appengine-1.4.0" -; ,go-google-golang-org-appengine-1.4.0) -; ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" -; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) -; ("go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e" -; ,go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e) -; ("go-cloud-google-com-go-0.34.0" ,go-cloud-google-com-go-0.34.0))) -; (home-page "https://golang.org/x/oauth2") -; (synopsis "OAuth2 for Go") -; (description -; "Package oauth2 provides support for making -;OAuth2 authorized and authenticated HTTP requests, -;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -;It can additionally grant authorization with Bearer JWT. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138 -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20190312170243-e65039ee4138") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0c094599cf70wdrms49a3879qkq122pqlp2av444gs2pvc8apdcx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-api-0.4.0 -; (package -; (name "go-google-golang-org-api") -; (version "0.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-api-go-client") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1hzgrw5wasmcjlqpxsmryddzzw4cwyzf2vx14i9z51v1plwssijm")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/api")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" -; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) -; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) -; ("go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19" -; ,go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19) -; ("go-google-golang-org-appengine-1.4.0" -; ,go-google-golang-org-appengine-1.4.0) -; ("go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138" -; ,go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138) -; ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" -; ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) -; ("go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421" -; ,go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421) -; ("go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f" -; ,go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f) -; ("go-go-opencensus-io-0.21.0" ,go-go-opencensus-io-0.21.0) -; ("go-github-com-google-go-cmp-0.2.0" -; ,go-github-com-google-go-cmp-0.2.0))) -; (home-page "https://google.golang.org/api") -; (synopsis "Google APIs Client Library for Go") -; (description -; "Package api is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of -;sub-packages. -;") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20190418145605-e7d98fc518a7 -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20190418145605-e7d98fc518a7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1cnavkyawwvfc5yl097ygnfy1ac69v4zc02gdfnq1bvgcvgmvnbi")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" -; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) -; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) -; ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" -; ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) -; ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" -; ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) -; ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" -; ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd) -; ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" -; ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) -; ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" -; ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-honnef-co-go-tools-0.0.0-20190106161140-3f1c8253044a -; (package -; (name "go-honnef-co-go-tools") -; (version "0.0.0-20190106161140-3f1c8253044a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/dominikh/go-tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0d3vgh0fgfj1z7i648g1s6x2pwxd07sxfjwg1xn3yagr9h06jh3h")))) -; (build-system go-build-system) -; (arguments '(#:import-path "honnef.co/go/tools")) -; (home-page "https://honnef.co/go/tools") -; (synopsis "Documentation") -; (description -; "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, -;offers simplifications, and enforces style rules.") -; (license license:expat))) -; -;(define-public go-cloud-google-com-go-0.38.0 -; (package -; (name "go-cloud-google-com-go") -; (version "0.38.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-cloud-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0n6n13b7lri2fmc4bn4ifszyawj31dpbzvyv0xafsf81440z8cyh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "cloud.google.com/go")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190106161140-3f1c8253044a" -; ,go-honnef-co-go-tools-0.0.0-20190106161140-3f1c8253044a) -; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) -; ("go-google-golang-org-genproto-0.0.0-20190418145605-e7d98fc518a7" -; ,go-google-golang-org-genproto-0.0.0-20190418145605-e7d98fc518a7) -; ("go-google-golang-org-api-0.4.0" ,go-google-golang-org-api-0.4.0) -; ("go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138" -; ,go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138) -; ("go-golang-org-x-time-0.0.0-20181108054448-85acf8d2951c" -; ,go-golang-org-x-time-0.0.0-20181108054448-85acf8d2951c) -; ("go-golang-org-x-text-0.3.1-0.20180807135948-17ff2d5776d2" -; ,go-golang-org-x-text-0.3.1-0.20180807135948-17ff2d5776d2) -; ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" -; ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) -; ("go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421" -; ,go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421) -; ("go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f" -; ,go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f) -; ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" -; ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) -; ("go-go-opencensus-io-0.21.0" ,go-go-opencensus-io-0.21.0) -; ("go-github-com-jstemmer-go-junit-report-0.0.0-20190106144839-af01ea7f8024" -; ,go-github-com-jstemmer-go-junit-report-0.0.0-20190106144839-af01ea7f8024) -; ("go-github-com-googleapis-gax-go-v2-2.0.4" -; ,go-github-com-googleapis-gax-go-v2-2.0.4) -; ("go-github-com-google-pprof-0.0.0-20181206194817-3ea8567a2e57" -; ,go-github-com-google-pprof-0.0.0-20181206194817-3ea8567a2e57) -; ("go-github-com-google-martian-2.1.0+incompatible" -; ,go-github-com-google-martian-2.1.0+incompatible) -; ("go-github-com-google-go-cmp-0.2.0" -; ,go-github-com-google-go-cmp-0.2.0) -; ("go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c" -; ,go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0) -; ("go-github-com-golang-mock-1.2.0" ,go-github-com-golang-mock-1.2.0))) -; (home-page "https://cloud.google.com/go") -; (synopsis "Google Cloud Client Libraries for Go") -; (description -; "Package cloud is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -;of sub-packages. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-hashicorp-golang-lru-0.5.1 -; (package -; (name "go-github-com-hashicorp-golang-lru") -; (version "0.5.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/golang-lru") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "13f870cvk161bzjj6x41l45r5x9i1z9r2ymwmvm7768kg08zznpy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hashicorp/golang-lru")) -; (home-page "https://github.com/hashicorp/golang-lru") -; (synopsis "golang-lru") -; (description -; "Package lru provides three different LRU caches of varying sophistication. -;") -; (license license:mpl2.0))) -; -;(define-public go-github-com-hashicorp-golang-lru-0.5.0 -; (package -; (name "go-github-com-hashicorp-golang-lru") -; (version "0.5.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/golang-lru") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "12k2cp2k615fjvfa5hyb9k2alian77wivds8s65diwshwv41939f")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hashicorp/golang-lru")) -; (home-page "https://github.com/hashicorp/golang-lru") -; (synopsis "golang-lru") -; (description -; "Package lru provides three different LRU caches of varying sophistication. -;") -; (license license:mpl2.0))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19 -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20190307195333-5fe7a883aa19") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0qjkwig0r42q0j2qv57s4ahsgmmp41dz3ih3rnaqg0619n5w7lbs")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" -; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) -; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) -; ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" -; ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) -; ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" -; ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) -; ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" -; ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd) -; ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" -; ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) -; ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" -; ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-go-opencensus-io-0.21.0 -; (package -; (name "go-go-opencensus-io") -; (version "0.21.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/census-instrumentation/opencensus-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "14s0a12xdzjvad0dgksgv8m3hh7nc585abvjkvyk6r67a29lxj6x")))) -; (build-system go-build-system) -; (arguments '(#:import-path "go.opencensus.io")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) -; ("go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19" -; ,go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-github-com-hashicorp-golang-lru-0.5.0" -; ,go-github-com-hashicorp-golang-lru-0.5.0) -; ("go-github-com-google-go-cmp-0.2.0" -; ,go-github-com-google-go-cmp-0.2.0) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0))) -; (home-page "https://go.opencensus.io") -; (synopsis "OpenCensus Libraries for Go") -; (description "Package opencensus contains Go support for OpenCensus. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422 -; (package -; (name "go-golang-org-x-lint") -; (version "0.0.0-20190409202823-959b441ac422") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/lint") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1mgcv5f00pkzsbwnq2y7vqvd1b4lr5a3s47cphh2qv4indfk7pck")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/lint")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" -; ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd))) -; (home-page "https://golang.org/x/lint") -; (synopsis "Installation") -; (description "Package lint contains a linter for Go source code. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20190503192946-f4e77d36d62c -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20190503192946-f4e77d36d62c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0avjnglqqg9ya0cbhp23m4namykii219kxjywxn4cd7pfcc5arha")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45 -; (package -; (name "go-golang-org-x-oauth2") -; (version "0.0.0-20190604053449-0f29369cfe45") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/oauth2") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "06jwpvx0x2gjn2y959drbcir5kd7vg87k0r1216abk6rrdzzrzi2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/oauth2")) -; (propagated-inputs -; `(("go-google-golang-org-appengine-1.4.0" -; ,go-google-golang-org-appengine-1.4.0) -; ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" -; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) -; ("go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e" -; ,go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e) -; ("go-cloud-google-com-go-0.34.0" ,go-cloud-google-com-go-0.34.0))) -; (home-page "https://golang.org/x/oauth2") -; (synopsis "OAuth2 for Go") -; (description -; "Package oauth2 provides support for making -;OAuth2 authorized and authenticated HTTP requests, -;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -;It can additionally grant authorization with Bearer JWT. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190507160741-ecd444e8653b") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1vhld4948mzfnlgf20id29mv1bwpk9a3xlbw1mbjzxzxxdv1jds2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-appengine-1.5.0 -; (package -; (name "go-google-golang-org-appengine") -; (version "1.5.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/appengine") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0l7mkdnwhidv8m686x432vmx8z5nqcrr9f46ddgvrxbh4wvyfcll")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/appengine")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225" -; ,go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0))) -; (home-page "https://google.golang.org/appengine") -; (synopsis "Go App Engine packages") -; (description -; "Package appengine provides basic functionality for Google App Engine. -;") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-api-0.20.0 -; (package -; (name "go-google-golang-org-api") -; (version "0.20.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-api-go-client") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "13syr1x33k6mrn5w6l4sgdbzn368w3m60vf6kk2j10fwa45125rg")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/api")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" -; ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) -; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) -; ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" -; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) -; ("go-google-golang-org-appengine-1.5.0" -; ,go-google-golang-org-appengine-1.5.0) -; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" -; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) -; ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) -; ("go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b" -; ,go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b) -; ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" -; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) -; ("go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45" -; ,go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45) -; ("go-golang-org-x-net-0.0.0-20190503192946-f4e77d36d62c" -; ,go-golang-org-x-net-0.0.0-20190503192946-f4e77d36d62c) -; ("go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422" -; ,go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422) -; ("go-go-opencensus-io-0.21.0" ,go-go-opencensus-io-0.21.0) -; ("go-github-com-hashicorp-golang-lru-0.5.1" -; ,go-github-com-hashicorp-golang-lru-0.5.1) -; ("go-github-com-googleapis-gax-go-v2-2.0.5" -; ,go-github-com-googleapis-gax-go-v2-2.0.5) -; ("go-github-com-google-go-cmp-0.3.0" -; ,go-github-com-google-go-cmp-0.3.0) -; ("go-cloud-google-com-go-0.38.0" ,go-cloud-google-com-go-0.38.0))) -; (home-page "https://google.golang.org/api") -; (synopsis "Google APIs Client Library for Go") -; (description -; "Package api is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of -;sub-packages. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-google-renameio-0.1.0 -; (package -; (name "go-github-com-google-renameio") -; (version "0.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/renameio") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ki2x5a9nrj17sn092d6n4zr29lfg5ydv4xz5cp58z6cw8ip43jx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/renameio")) -; (home-page "https://github.com/google/renameio") -; (synopsis "Atomicity vs durability") -; (description -; "Package renameio provides a way to atomically create or replace a file or -;symbolic link. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-kisielk-gotool-1.0.0 -; (package -; (name "go-github-com-kisielk-gotool") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kisielk/gotool") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "14af2pa0ssyp8bp2mvdw184s5wcysk6akil3wzxmr05wwy951iwn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kisielk/gotool")) -; (home-page "https://github.com/kisielk/gotool") -; (synopsis "gotool") -; (description -; "Package gotool contains utility functions used to implement the standard -;\"cmd/go\" tool, provided as a convenience to developers who want to write -;tools with similar semantics. -;") -; (license license:expat))) -; -;(define-public go-github-com-kr-pty-1.1.1 -; (package -; (name "go-github-com-kr-pty") -; (version "1.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kr/pty") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0383f0mb9kqjvncqrfpidsf8y6ns5zlrc91c6a74xpyxjwvzl2y6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kr/pty")) -; (home-page "https://github.com/kr/pty") -; (synopsis "pty") -; (description -; "Package pty is a wrapper for github.com/creack/pty, which provides -;functions for working with Unix terminals. -;") -; (license license:expat))) -; -;(define-public go-github-com-kr-text-0.1.0 -; (package -; (name "go-github-com-kr-text") -; (version "0.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kr/text") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1gm5bsl01apvc84bw06hasawyqm4q84vx1pm32wr9jnd7a8vjgj1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kr/text")) -; (propagated-inputs -; `(("go-github-com-kr-pty-1.1.1" ,go-github-com-kr-pty-1.1.1))) -; (home-page "https://github.com/kr/text") -; (synopsis #f) -; (description -; "Package text provides rudimentary functions for manipulating text in -;paragraphs. -;") -; (license license:expat))) -; -;(define-public go-github-com-kr-pretty-0.1.0 -; (package -; (name "go-github-com-kr-pretty") -; (version "0.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kr/pretty") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "18m4pwg2abd0j9cn5v3k2ksk9ig4vlwxmlw9rrglanziv9l967qp")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kr/pretty")) -; (propagated-inputs -; `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) -; (home-page "https://github.com/kr/pretty") -; (synopsis #f) -; (description -; "Package pretty provides pretty-printing for Go values. This is -;useful during debugging, to avoid wrapping long output lines in -;the terminal. -;") -; (license license:expat))) -; -;(define-public go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127 -; (package -; (name "go-gopkg-in-check-v1") -; (version "1.0.0-20180628173108-788fd7840127") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/check.v1") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0v3bim0j375z81zrpr5qv42knqs0y2qv2vkjiqi5axvb78slki1a")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) -; (home-page "https://gopkg.in/check.v1") -; (synopsis "Instructions") -; (description -; "Package check is a rich testing extension for Go's testing package. -;") -; (license license:bsd-2))) -; -;(define-public go-gopkg-in-errgo-v2-2.1.0 -; (package -; (name "go-gopkg-in-errgo-v2") -; (version "2.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/errgo.v2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "065mbihiy7q67wnql0bzl9y1kkvck5ivra68254zbih52jxwrgr2")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/errgo.v2" #:unpack-path "gopkg.in/errgo.v2")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" -; ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) -; ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0))) -; (home-page "https://gopkg.in/errgo.v2") -; (synopsis #f) -; (description -; "Package errgo provides some primitives for error creation and handling.") -; (license license:bsd-3))) -; -;(define-public go-github-com-rogpeppe-go-internal-1.3.0 -; (package -; (name "go-github-com-rogpeppe-go-internal") -; (version "1.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/rogpeppe/go-internal") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0mcdh1licgnnahwml9y2iq6xy5x9xmjw5frcnds2s3wpjyqrl216")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/rogpeppe/go-internal")) -; (propagated-inputs -; `(("go-gopkg-in-errgo-v2-2.1.0" ,go-gopkg-in-errgo-v2-2.1.0))) -; (home-page "https://github.com/rogpeppe/go-internal") -; (synopsis #f) -; (description -; "This repository factors out an opinionated selection of internal packages and functionality from the Go standard -;library. Currently this consists mostly of packages and testing code from within the Go tool implementation.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20190510104115-cbcb75029529 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20190510104115-cbcb75029529") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "12831ga1gq04a3jbbcmww7kaqfdfgp7cdv2fj9aqidz8h52ajdmh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" -; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) -; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" -; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-mod-0.0.0-20190513183733-4bf6d317e70e -; (package -; (name "go-golang-org-x-mod") -; (version "0.0.0-20190513183733-4bf6d317e70e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/mod") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "19lg1ly3j31anx92p0hynic1gjk417wwxphfdrb2cq1c19kj3r17")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/mod")) -; (propagated-inputs -; `(("go-golang-org-x-crypto-0.0.0-20190510104115-cbcb75029529" -; ,go-golang-org-x-crypto-0.0.0-20190510104115-cbcb75029529))) -; (home-page "https://golang.org/x/mod") -; (synopsis "mod") -; (description -; "This repository holds packages for writing tools -;that work directly with Go module mechanics. -;That is, it is for direct manipulation of Go modules themselves.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20191130070609-6e064ea0cf2d -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20191130070609-6e064ea0cf2d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1nbki367xspsa37j6276f5q2gv31vfjpb52axn3p3ymz548my75d")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7" -; ,go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7) -; ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" -; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) -; ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" -; ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-honnef-co-go-tools-0.0.1-2020.1.3 -; (package -; (name "go-honnef-co-go-tools") -; (version "0.0.1-2020.1.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/dominikh/go-tools") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0pvi1mzhy6zgx4zfgdypbl4zhvgg11hl5qv7blf2qs0a96j2djhf")))) -; (build-system go-build-system) -; (arguments '(#:import-path "honnef.co/go/tools")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20191130070609-6e064ea0cf2d" -; ,go-golang-org-x-tools-0.0.0-20191130070609-6e064ea0cf2d) -; ("go-golang-org-x-mod-0.0.0-20190513183733-4bf6d317e70e" -; ,go-golang-org-x-mod-0.0.0-20190513183733-4bf6d317e70e) -; ("go-github-com-rogpeppe-go-internal-1.3.0" -; ,go-github-com-rogpeppe-go-internal-1.3.0) -; ("go-github-com-kisielk-gotool-1.0.0" -; ,go-github-com-kisielk-gotool-1.0.0) -; ("go-github-com-google-renameio-0.1.0" -; ,go-github-com-google-renameio-0.1.0) -; ("go-github-com-burntsushi-toml-0.3.1" -; ,go-github-com-burntsushi-toml-0.3.1))) -; (home-page "https://honnef.co/go/tools") -; (synopsis "Documentation") -; (description -; "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, -;offers simplifications, and enforces style rules.") -; (license license:expat))) -; -;(define-public go-cloud-google-com-go-0.56.0 -; (package -; (name "go-cloud-google-com-go") -; (version "0.56.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-cloud-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1bpx84q7byxr5rp197qcg3pl56acs8v1q555frxgcqygxwjacszf")))) -; (build-system go-build-system) -; (arguments '(#:import-path "cloud.google.com/go")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.1-2020.1.3" -; ,go-honnef-co-go-tools-0.0.1-2020.1.3) -; ("go-google-golang-org-grpc-1.28.0" ,go-google-golang-org-grpc-1.28.0) -; ("go-google-golang-org-genproto-0.0.0-20200331122359-1ee6d9798940" -; ,go-google-golang-org-genproto-0.0.0-20200331122359-1ee6d9798940) -; ("go-google-golang-org-api-0.20.0" ,go-google-golang-org-api-0.20.0) -; ("go-golang-org-x-tools-0.0.0-20200331025713-a30bf2db82d4" -; ,go-golang-org-x-tools-0.0.0-20200331025713-a30bf2db82d4) -; ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) -; ("go-golang-org-x-sys-0.0.0-20200331124033-c3d80250170d" -; ,go-golang-org-x-sys-0.0.0-20200331124033-c3d80250170d) -; ("go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a" -; ,go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a) -; ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" -; ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) -; ("go-golang-org-x-net-0.0.0-20200324143707-d3edc9973b7e" -; ,go-golang-org-x-net-0.0.0-20200324143707-d3edc9973b7e) -; ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" -; ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) -; ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) -; ("go-github-com-jstemmer-go-junit-report-0.9.1" -; ,go-github-com-jstemmer-go-junit-report-0.9.1) -; ("go-github-com-googleapis-gax-go-v2-2.0.5" -; ,go-github-com-googleapis-gax-go-v2-2.0.5) -; ("go-github-com-google-pprof-0.0.0-20200229191704-1ebb73c60ed3" -; ,go-github-com-google-pprof-0.0.0-20200229191704-1ebb73c60ed3) -; ("go-github-com-google-martian-2.1.0+incompatible" -; ,go-github-com-google-martian-2.1.0+incompatible) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.3.5" -; ,go-github-com-golang-protobuf-1.3.5) -; ("go-github-com-golang-mock-1.4.3" ,go-github-com-golang-mock-1.4.3) -; ("go-cloud-google-com-go-storage-1.6.0" -; ,go-cloud-google-com-go-storage-1.6.0) -; ("go-cloud-google-com-go-pubsub-1.2.0" -; ,go-cloud-google-com-go-pubsub-1.2.0) -; ("go-cloud-google-com-go-datastore-1.1.0" -; ,go-cloud-google-com-go-datastore-1.1.0) -; ("go-cloud-google-com-go-bigquery-1.4.0" -; ,go-cloud-google-com-go-bigquery-1.4.0))) -; (home-page "https://cloud.google.com/go") -; (synopsis "Google Cloud Client Libraries for Go") -; (description -; "Package cloud is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -;of sub-packages. -;") -; (license license:asl2.0))) -; -;(define-public go-go-opencensus-io-0.22.3 -; (package -; (name "go-go-opencensus-io") -; (version "0.22.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/census-instrumentation/opencensus-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0xj16iq5jp26hi2py7lsd8cvqh651fgn39y05gzvjdi88d9xd3nw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "go.opencensus.io")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.20.1" ,go-google-golang-org-grpc-1.20.1) -; ("go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb" -; ,go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb) -; ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) -; ("go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd" -; ,go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd) -; ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" -; ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) -; ("go-github-com-stretchr-testify-1.4.0" -; ,go-github-com-stretchr-testify-1.4.0) -; ("go-github-com-google-go-cmp-0.3.0" -; ,go-github-com-google-go-cmp-0.3.0) -; ("go-github-com-golang-protobuf-1.3.1" -; ,go-github-com-golang-protobuf-1.3.1) -; ("go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6" -; ,go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6))) -; (home-page "https://go.opencensus.io") -; (synopsis "OpenCensus Libraries for Go") -; (description "Package opencensus contains Go support for OpenCensus. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a -; (package -; (name "go-golang-org-x-sync") -; (version "0.0.0-20200317015054-43a5402ce75a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sync") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0j6zrrb81qjr1926kkwmn0di9a0jn8qyjd9dw614rfkihxgq1vsm")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sync")) -; (home-page "https://golang.org/x/sync") -; (synopsis "Go Sync") -; (description -; "This repository provides Go concurrency primitives in addition to the -;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20200331124033-c3d80250170d -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20200331124033-c3d80250170d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1nswjhkg7yixla0b3d8xwzf94rawwyjrxipay3ffdvm426n0ld42")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-yuin-goldmark-1.1.25 -; (package -; (name "go-github-com-yuin-goldmark") -; (version "1.1.25") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/yuin/goldmark") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0cr3mk8pr7vsyisgrvln5ailnnn9xhardcy8mkshybk5c3n1kw5k")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/yuin/goldmark")) -; (home-page "https://github.com/yuin/goldmark") -; (synopsis "goldmark") -; (description -; "Package goldmark implements functions to convert markdown text to a desired format. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-mod-0.2.0 -; (package -; (name "go-golang-org-x-mod") -; (version "0.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/mod") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1fp6885dclq77mh73v7i54v2b9llpv4di193zc8vmsbbkkc483cl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/mod")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" -; ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) -; ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" -; ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) -; ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" -; ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) -; (home-page "https://golang.org/x/mod") -; (synopsis "mod") -; (description -; "This repository holds packages for writing tools -;that work directly with Go module mechanics. -;That is, it is for direct manipulation of Go modules themselves.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20200226121028-0de0cce0169b") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1db7s5kbzyh2zd5lpv05n7hp8wbwdvgk0wpiwrlnig94mkr0y5aq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e -; (package -; (name "go-golang-org-x-sync") -; (version "0.0.0-20190911185100-cd5d95a43a6e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sync") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1nqkyz2y1qvqcma52ijh02s8aiqmkfb95j08f6zcjhbga3ds6hds")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sync")) -; (home-page "https://golang.org/x/sync") -; (synopsis "Go Sync") -; (description -; "This repository provides Go concurrency primitives in addition to the -;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20200331025713-a30bf2db82d4 -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20200331025713-a30bf2db82d4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1rb488ydwi24zmd1zvsv8k8srs3q6xnqqfdar538hssqgljyvp7l")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" -; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) -; ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" -; ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) -; ("go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b" -; ,go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b) -; ("go-golang-org-x-mod-0.2.0" ,go-golang-org-x-mod-0.2.0) -; ("go-github-com-yuin-goldmark-1.1.25" -; ,go-github-com-yuin-goldmark-1.1.25))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-appengine-1.6.5 -; (package -; (name "go-google-golang-org-appengine") -; (version "1.6.5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/appengine") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "05hbq4cs7bqw0zl17bx8rzdkszid3nyl92100scg3jjrg70dhm7w")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/appengine")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) -; ("go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65" -; ,go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65) -; ("go-github-com-golang-protobuf-1.3.1" -; ,go-github-com-golang-protobuf-1.3.1))) -; (home-page "https://google.golang.org/appengine") -; (synopsis "Go App Engine packages") -; (description -; "Package appengine provides basic functionality for Google App Engine. -;") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20200331122359-1ee6d9798940 -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20200331122359-1ee6d9798940") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1zsp55d7xjc0b3yw5jjpvbsc0gkji1c1j2vxmcwm89dh26rz4jwd")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" -; ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) -; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) -; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" -; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-github-com-golang-protobuf-1.3.3" -; ,go-github-com-golang-protobuf-1.3.3))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-grpc-1.28.0 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.28.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1m36rg3w2mf4r3383yf0r1pjrz890mdw506h1lpm6bkc8w3kyqz3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" -; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-github-com-google-go-cmp-0.2.0" -; ,go-github-com-google-go-cmp-0.2.0) -; ("go-github-com-golang-protobuf-1.3.3" -; ,go-github-com-golang-protobuf-1.3.3) -; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" -; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) -; ("go-github-com-envoyproxy-go-control-plane-0.9.4" -; ,go-github-com-envoyproxy-go-control-plane-0.9.4))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-api-0.29.0 -; (package -; (name "go-google-golang-org-api") -; (version "0.29.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-api-go-client") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1y6izqcc6krill33pb57fbgbs7ni3jxyf3knm5jkl4qydsj9303h")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/api")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.28.0" ,go-google-golang-org-grpc-1.28.0) -; ("go-google-golang-org-genproto-0.0.0-20200331122359-1ee6d9798940" -; ,go-google-golang-org-genproto-0.0.0-20200331122359-1ee6d9798940) -; ("go-google-golang-org-appengine-1.6.5" -; ,go-google-golang-org-appengine-1.6.5) -; ("go-golang-org-x-tools-0.0.0-20200331025713-a30bf2db82d4" -; ,go-golang-org-x-tools-0.0.0-20200331025713-a30bf2db82d4) -; ("go-golang-org-x-sys-0.0.0-20200331124033-c3d80250170d" -; ,go-golang-org-x-sys-0.0.0-20200331124033-c3d80250170d) -; ("go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a" -; ,go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a) -; ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" -; ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) -; ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" -; ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) -; ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) -; ("go-github-com-googleapis-gax-go-v2-2.0.5" -; ,go-github-com-googleapis-gax-go-v2-2.0.5) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-cloud-google-com-go-0.56.0" ,go-cloud-google-com-go-0.56.0))) -; (home-page "https://google.golang.org/api") -; (synopsis "Google APIs Client Library for Go") -; (description -; "Package api is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of -;sub-packages. -;") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20200729003335-053ba62fc06f -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20200729003335-053ba62fc06f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1h34qgr4lqy1l0niay3gzqh6pc63y2xh1mmp8757y8jsrdz1s5fv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.24.0" -; ,go-google-golang-org-protobuf-1.24.0) -; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) -; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" -; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-github-com-golang-protobuf-1.4.1" -; ,go-github-com-golang-protobuf-1.4.1))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-grpc-1.30.0 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.30.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "05pb9xrxd7kpbi8zzby90f87b6sxq65nmpgqx5h3255whmmpzbi9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" -; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.3.3" -; ,go-github-com-golang-protobuf-1.3.3) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-envoyproxy-go-control-plane-0.9.4" -; ,go-github-com-envoyproxy-go-control-plane-0.9.4) -; ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" -; ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-cloud-google-com-go-0.62.0 -; (package -; (name "go-cloud-google-com-go") -; (version "0.62.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-cloud-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "00x1nlq4fvvxrwx24firscav511qwck3zl6ghs9p6zzzixla8r5h")))) -; (build-system go-build-system) -; (arguments '(#:import-path "cloud.google.com/go")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.25.0" -; ,go-google-golang-org-protobuf-1.25.0) -; ("go-google-golang-org-grpc-1.30.0" ,go-google-golang-org-grpc-1.30.0) -; ("go-google-golang-org-genproto-0.0.0-20200729003335-053ba62fc06f" -; ,go-google-golang-org-genproto-0.0.0-20200729003335-053ba62fc06f) -; ("go-google-golang-org-api-0.29.0" ,go-google-golang-org-api-0.29.0) -; ("go-golang-org-x-tools-0.0.0-20200729194436-6467de6f59a7" -; ,go-golang-org-x-tools-0.0.0-20200729194436-6467de6f59a7) -; ("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) -; ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" -; ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) -; ("go-golang-org-x-net-0.0.0-20200707034311-ab3426394381" -; ,go-golang-org-x-net-0.0.0-20200707034311-ab3426394381) -; ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" -; ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) -; ("go-go-opencensus-io-0.22.4" ,go-go-opencensus-io-0.22.4) -; ("go-github-com-jstemmer-go-junit-report-0.9.1" -; ,go-github-com-jstemmer-go-junit-report-0.9.1) -; ("go-github-com-googleapis-gax-go-v2-2.0.5" -; ,go-github-com-googleapis-gax-go-v2-2.0.5) -; ("go-github-com-google-pprof-0.0.0-20200708004538-1a94d8640e99" -; ,go-github-com-google-pprof-0.0.0-20200708004538-1a94d8640e99) -; ("go-github-com-google-martian-v3-3.0.0" -; ,go-github-com-google-martian-v3-3.0.0) -; ("go-github-com-google-go-cmp-0.5.1" -; ,go-github-com-google-go-cmp-0.5.1) -; ("go-github-com-golang-protobuf-1.4.2" -; ,go-github-com-golang-protobuf-1.4.2) -; ("go-github-com-golang-mock-1.4.3" ,go-github-com-golang-mock-1.4.3) -; ("go-cloud-google-com-go-storage-1.10.0" -; ,go-cloud-google-com-go-storage-1.10.0))) -; (home-page "https://cloud.google.com/go") -; (synopsis "Google Cloud Client Libraries for Go") -; (description -; "Package cloud is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -;of sub-packages. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-google-go-cmp-0.5.1 -; (package -; (name "go-github-com-google-go-cmp") -; (version "0.5.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/go-cmp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1wjdid59brciv09agxgmqac5k9ywg63nhzb0yi9anmqpl38gps0p")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/go-cmp")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" -; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) -; (home-page "https://github.com/google/go-cmp") -; (synopsis "Package for equality of Go values") -; (description -; "This package is intended to be a more powerful and safer alternative to -;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") -; (license license:bsd-3))) -; -;(define-public go-github-com-googleapis-gax-go-v2-2.0.5 -; (package -; (name "go-github-com-googleapis-gax-go-v2") -; (version "2.0.5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/gax-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1lxawwngv6miaqd25s3ba0didfzylbwisd2nz7r4gmbmin6jsjrx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/googleapis/gax-go/v2")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.19.0" -; ,go-google-golang-org-grpc-1.19.0))) -; (home-page "https://github.com/googleapis/gax-go") -; (synopsis #f) -; (description -; "Package gax contains a set of modules which aid the development of APIs -;for clients and servers based on gRPC and Google API conventions. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6 -; (package -; (name "go-github-com-golang-groupcache") -; (version "0.0.0-20190702054246-869f871628b6") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/groupcache") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0r4nk8129bvx50qb4xzjaay39b2h6k7cbdqqzdlanmc82ygczsbw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/groupcache")) -; (home-page "https://github.com/golang/groupcache") -; (synopsis "groupcache") -; (description -; "Package groupcache provides a data loading mechanism with caching -;and de-duplication that works across a set of peer processes. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190502145724-3ef323f4f1fd") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "15iw4gjvrnrx98rlny1qcaprp3577rh2b77byb38dr6m3q42rvc6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6 -; (package -; (name "go-golang-org-x-sync") -; (version "0.0.0-20190227155943-e225da77a7e6") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sync") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0bh3583smcfw6jw3w6lp0za93rz7hpxfdz8vhxng75b7a6vdlw4p")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sync")) -; (home-page "https://golang.org/x/sync") -; (synopsis "Go Sync") -; (description -; "This repository provides Go concurrency primitives in addition to the -;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20190425155659-357c62f0e4bb") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1h1a0wys83cc86s4w2hqmz78ixijw8f7qchmiwdv5xjvpg0i27c2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" -; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) -; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) -; ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" -; ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) -; ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" -; ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) -; ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" -; ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd) -; ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" -; ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) -; ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" -; ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-grpc-1.20.1 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.20.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0rj3fs6jillapiwnpkfn3v2jbl7a3zsb0lys4srswl26hjijviqq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" -; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) -; ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" -; ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) -; ("go-google-golang-org-appengine-1.1.0" -; ,go-google-golang-org-appengine-1.1.0) -; ("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" -; ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" -; ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0) -; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-client9-misspell-0.3.4" -; ,go-github-com-client9-misspell-0.3.4) -; ("go-github-com-burntsushi-toml-0.3.1" -; ,go-github-com-burntsushi-toml-0.3.1) -; ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-go-opencensus-io-0.22.4 -; (package -; (name "go-go-opencensus-io") -; (version "0.22.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/census-instrumentation/opencensus-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "10skbvs4yxjm3z10yfg5cj2mdzjsna87qk1icp9xv0iwp8wzq6h0")))) -; (build-system go-build-system) -; (arguments '(#:import-path "go.opencensus.io")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.20.1" ,go-google-golang-org-grpc-1.20.1) -; ("go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb" -; ,go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb) -; ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) -; ("go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd" -; ,go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd) -; ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" -; ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) -; ("go-github-com-stretchr-testify-1.4.0" -; ,go-github-com-stretchr-testify-1.4.0) -; ("go-github-com-google-go-cmp-0.3.0" -; ,go-github-com-google-go-cmp-0.3.0) -; ("go-github-com-golang-protobuf-1.3.1" -; ,go-github-com-golang-protobuf-1.3.1) -; ("go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6" -; ,go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6))) -; (home-page "https://go.opencensus.io") -; (synopsis "OpenCensus Libraries for Go") -; (description "Package opencensus contains Go support for OpenCensus. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b -; (package -; (name "go-golang-org-x-lint") -; (version "0.0.0-20200302205851-738671d3881b") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/lint") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0jkiz4py59jjnkyxbxifpf7bsar11lbgmj5jiq2kic5k03shkn9c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/lint")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7" -; ,go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7))) -; (home-page "https://golang.org/x/lint") -; (synopsis "Installation") -; (description "Package lint contains a linter for Go source code. -;") -; (license license:bsd-3))) -; -;(define-public go-cloud-google-com-go-0.34.0 -; (package -; (name "go-cloud-google-com-go") -; (version "0.34.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-cloud-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1kclgclwar3r37zbvb9gg3qxbgzkb50zk3s9778zlh2773qikmai")))) -; (build-system go-build-system) -; (arguments '(#:import-path "cloud.google.com/go")) -; (home-page "https://cloud.google.com/go") -; (synopsis "Google Cloud Client Libraries for Go") -; (description -; "Package cloud is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -;of sub-packages. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20190108225652-1e06a53dbb7e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0lpqqvdccby48nixihvmn8ig1z48b950m1bxfqxn78air308qc3j")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4 -; (package -; (name "go-golang-org-x-sync") -; (version "0.0.0-20181221193216-37e7f081c4d4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sync") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1bb0mw6ckb1k7z8v3iil2qlqwfj408fvvp8m1cik2b46p7snyjhm")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sync")) -; (home-page "https://golang.org/x/sync") -; (synopsis "Go Sync") -; (description -; "This repository provides Go concurrency primitives in addition to the -;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d -; (package -; (name "go-golang-org-x-oauth2") -; (version "0.0.0-20200107190931-bf48bf16ab8d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/oauth2") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1sirdib60zwmh93kf9qrx51r8544k1p9rs5mk0797wibz3m4mrdg")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/oauth2")) -; (propagated-inputs -; `(("go-google-golang-org-appengine-1.4.0" -; ,go-google-golang-org-appengine-1.4.0) -; ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" -; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) -; ("go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e" -; ,go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e) -; ("go-cloud-google-com-go-0.34.0" ,go-cloud-google-com-go-0.34.0))) -; (home-page "https://golang.org/x/oauth2") -; (synopsis "OAuth2 for Go") -; (description -; "Package oauth2 provides support for making -;OAuth2 authorized and authenticated HTTP requests, -;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -;It can additionally grant authorization with Bearer JWT. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20200803210538-64077c9b5642 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20200803210538-64077c9b5642") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1pdrkim9v0wbxipl586d29vz4ci9xib0f02g6yv7c0nang627pag")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-yuin-goldmark-1.1.32 -; (package -; (name "go-github-com-yuin-goldmark") -; (version "1.1.32") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/yuin/goldmark") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "03i9yq6n3yvn5v70xi6x3pn49ndy8zm4217ihwwhlw2nkwhny7a5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/yuin/goldmark")) -; (home-page "https://github.com/yuin/goldmark") -; (synopsis "goldmark") -; (description -; "Package goldmark implements functions to convert markdown text to a desired format. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-net-0.0.0-20200625001655-4c5254603344 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20200625001655-4c5254603344") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1da0a1m488d95vggpi52dkag98n5671ml6sn80nwv6lgbmdx8qbq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" -; ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) -; ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" -; ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208 -; (package -; (name "go-golang-org-x-sync") -; (version "0.0.0-20200625203802-6e8e738ad208") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sync") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1avk27pszd5l5df6ff7j78wgla46ir1hhy2jwfl9a3c0ys602yx9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sync")) -; (home-page "https://golang.org/x/sync") -; (synopsis "Go Sync") -; (description -; "This repository provides Go concurrency primitives in addition to the -;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20200804011535-6c149bb5ef0d -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20200804011535-6c149bb5ef0d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1l244hp5n0qff7nmvcffggjv7jm4061g63g76z967zvdqcxh23i2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" -; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) -; ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" -; ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) -; ("go-golang-org-x-net-0.0.0-20200625001655-4c5254603344" -; ,go-golang-org-x-net-0.0.0-20200625001655-4c5254603344) -; ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) -; ("go-github-com-yuin-goldmark-1.1.32" -; ,go-github-com-yuin-goldmark-1.1.32))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20200804131852-c06518451d9c -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20200804131852-c06518451d9c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0wl9bhr94yf0b8lc947zr0iwm3l20irzy869xczfd6z0a1g54gsa")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.24.0" -; ,go-google-golang-org-protobuf-1.24.0) -; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) -; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" -; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-github-com-golang-protobuf-1.4.1" -; ,go-github-com-golang-protobuf-1.4.1))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-api-0.30.0 -; (package -; (name "go-google-golang-org-api") -; (version "0.30.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-api-go-client") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1vh5rrc6hvzh1rqawrwr4nyilnr3dgqx1pr2njjzdg0prfmflm5p")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/api")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.31.0" ,go-google-golang-org-grpc-1.31.0) -; ("go-google-golang-org-genproto-0.0.0-20200804131852-c06518451d9c" -; ,go-google-golang-org-genproto-0.0.0-20200804131852-c06518451d9c) -; ("go-google-golang-org-appengine-1.6.6" -; ,go-google-golang-org-appengine-1.6.6) -; ("go-golang-org-x-tools-0.0.0-20200804011535-6c149bb5ef0d" -; ,go-golang-org-x-tools-0.0.0-20200804011535-6c149bb5ef0d) -; ("go-golang-org-x-sys-0.0.0-20200803210538-64077c9b5642" -; ,go-golang-org-x-sys-0.0.0-20200803210538-64077c9b5642) -; ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" -; ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) -; ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" -; ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) -; ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" -; ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) -; ("go-go-opencensus-io-0.22.4" ,go-go-opencensus-io-0.22.4) -; ("go-github-com-googleapis-gax-go-v2-2.0.5" -; ,go-github-com-googleapis-gax-go-v2-2.0.5) -; ("go-github-com-google-go-cmp-0.5.1" -; ,go-github-com-google-go-cmp-0.5.1) -; ("go-cloud-google-com-go-0.62.0" ,go-cloud-google-com-go-0.62.0))) -; (home-page "https://google.golang.org/api") -; (synopsis "Google APIs Client Library for Go") -; (description -; "Package api is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of -;sub-packages. -;") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-1.24.0 -; (package -; (name "go-google-golang-org-protobuf") -; (version "1.24.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0x3qyn3rizbs671gs7f8v50rmiwf9h7kbaradpivw9718mhbg1gn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" -; ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.4.1" -; ,go-github-com-golang-protobuf-1.4.1))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20200825200019-8632dd797987 -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20200825200019-8632dd797987") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0h8s1mz8pbdiwmv2g61afa7f05zin3m6mdy2fmny6wcidz4w2i3k")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.24.0" -; ,go-google-golang-org-protobuf-1.24.0) -; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) -; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" -; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-github-com-golang-protobuf-1.4.1" -; ,go-github-com-golang-protobuf-1.4.1))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f -; (package -; (name "go-github-com-cncf-udpa-go") -; (version "0.0.0-20191209042840-269d4d468f6f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/cncf/udpa") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0i1jiaw2k3hlwwmg4hap81vb4s1p25xp9kdfww37v0fbgjariccs")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path -; "github.com/cncf/udpa/go" -; #:unpack-path -; "github.com/cncf/udpa")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2) -; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" -; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0))) -; (home-page "https://github.com/cncf/udpa") -; (synopsis "Description") -; (description -; "This library has been deprecated in favor of @code{github.com/cncf/xds/go}. All users are recommended to switch their imports.") -; (license license:asl2.0))) -; -;(define-public go-github-com-envoyproxy-go-control-plane-0.9.4 -; (package -; (name "go-github-com-envoyproxy-go-control-plane") -; (version "0.9.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/envoyproxy/go-control-plane") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0m0crzx70lp7vz13v20wxb1fcfdnzp7h3mkh3bn6a8mbfz6w5asj")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) -; ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" -; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) -; ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" -; ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) -; ("go-github-com-google-go-cmp-0.2.0" -; ,go-github-com-google-go-cmp-0.2.0) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2) -; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" -; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) -; ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" -; ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f) -; ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" -; ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) -; (home-page "https://github.com/envoyproxy/go-control-plane") -; (synopsis "control-plane") -; (description -; "This repository contains a Go-based implementation of an API server that -;implements the discovery service APIs defined in -;@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") -; (license license:asl2.0))) -; -;(define-public go-github-com-golang-protobuf-1.3.3 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.3.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1cyyr52yhj3fzrily3rmsbqyj8va4ld75lmry0857m39rgpv8sy1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-grpc-1.31.0 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.31.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1y3lilpipmaysjk4skbzw1qa6lv05vzixzw9lg9x73xfb01q4nyz")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" -; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.3.3" -; ,go-github-com-golang-protobuf-1.3.3) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-envoyproxy-go-control-plane-0.9.4" -; ,go-github-com-envoyproxy-go-control-plane-0.9.4) -; ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" -; ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-cloud-google-com-go-0.65.0 -; (package -; (name "go-cloud-google-com-go") -; (version "0.65.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-cloud-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0xrcg39jrw90gq8vl8pfq63sp3bkak04wh392yj5rh4lc1a4lxjq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "cloud.google.com/go")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.31.0" ,go-google-golang-org-grpc-1.31.0) -; ("go-google-golang-org-genproto-0.0.0-20200825200019-8632dd797987" -; ,go-google-golang-org-genproto-0.0.0-20200825200019-8632dd797987) -; ("go-google-golang-org-api-0.30.0" ,go-google-golang-org-api-0.30.0) -; ("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" -; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) -; ("go-golang-org-x-tools-0.0.0-20200825202427-b303f430e36d" -; ,go-golang-org-x-tools-0.0.0-20200825202427-b303f430e36d) -; ("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) -; ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" -; ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) -; ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" -; ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) -; ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" -; ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) -; ("go-go-opencensus-io-0.22.4" ,go-go-opencensus-io-0.22.4) -; ("go-github-com-jstemmer-go-junit-report-0.9.1" -; ,go-github-com-jstemmer-go-junit-report-0.9.1) -; ("go-github-com-googleapis-gax-go-v2-2.0.5" -; ,go-github-com-googleapis-gax-go-v2-2.0.5) -; ("go-github-com-google-pprof-0.0.0-20200708004538-1a94d8640e99" -; ,go-github-com-google-pprof-0.0.0-20200708004538-1a94d8640e99) -; ("go-github-com-google-martian-v3-3.0.0" -; ,go-github-com-google-martian-v3-3.0.0) -; ("go-github-com-google-go-cmp-0.5.1" -; ,go-github-com-google-go-cmp-0.5.1) -; ("go-github-com-golang-protobuf-1.4.2" -; ,go-github-com-golang-protobuf-1.4.2) -; ("go-github-com-golang-mock-1.4.4" ,go-github-com-golang-mock-1.4.4) -; ("go-cloud-google-com-go-storage-1.10.0" -; ,go-cloud-google-com-go-storage-1.10.0))) -; (home-page "https://cloud.google.com/go") -; (synopsis "Google Cloud Client Libraries for Go") -; (description -; "Package cloud is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -;of sub-packages. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20200323222414-85ca7c5b95cd") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1504qkgbhhm4f0bhk77v2r1lj6x171ay5m79alkg78wjb5cign5l")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20200822124328-c89045814202 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20200822124328-c89045814202") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1g3wxilwbcbf2xj20y3mpxh38jka4fyhl48akfqf00vr48zmx96x")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" -; ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) -; ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" -; ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-appengine-1.6.6 -; (package -; (name "go-google-golang-org-appengine") -; (version "1.6.6") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/appengine") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "15c38h6fbv06cnkr6yknygfrpibyms2mya4w0l29kaxf42jn1qi5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/appengine")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) -; ("go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65" -; ,go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65) -; ("go-github-com-golang-protobuf-1.3.1" -; ,go-github-com-golang-protobuf-1.3.1))) -; (home-page "https://google.golang.org/appengine") -; (synopsis "Go App Engine packages") -; (description -; "Package appengine provides basic functionality for Google App Engine. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-oauth2-0.0.0-20210402161424-2e8d93401602 -; (package -; (name "go-golang-org-x-oauth2") -; (version "0.0.0-20210402161424-2e8d93401602") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/oauth2") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0j1crxa78gip3hxrds5jngi034j4zm4q3z7r8bqs3rjxnwcki9ig")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/oauth2")) -; (propagated-inputs -; `(("go-google-golang-org-appengine-1.6.6" -; ,go-google-golang-org-appengine-1.6.6) -; ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" -; ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) -; ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) -; (home-page "https://golang.org/x/oauth2") -; (synopsis "OAuth2 for Go") -; (description -; "Package oauth2 provides support for making -;OAuth2 authorized and authenticated HTTP requests, -;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -;It can additionally grant authorization with Bearer JWT. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c -; (package -; (name "go-golang-org-x-sync") -; (version "0.0.0-20210220032951-036812b2e83c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sync") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1gl202py3s4gl6arkaxlf8qa6f0jyyg2f95m6f89qnfmr416h85b")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sync")) -; (home-page "https://golang.org/x/sync") -; (synopsis "Go Sync") -; (description -; "This repository provides Go concurrency primitives in addition to the -;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20210403161142-5e06dd20ab57 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20210403161142-5e06dd20ab57") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1acdn06771rxjg38ql9wl8dr1vf23nazjnvk6105z3hddnh14fgb")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.3.1 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.3.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "15am4s4646qy6iv0g3kkqq52rzykqjhm4bf08dk0fy2r58knpsyl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20190603091049-60506f45cf65") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0827yz7irmnzcdhw8vg74819jaw5ahs4w4v5fvzgfvnxyb9f6zcc")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-text-0.3.2 -; (package -; (name "go-golang-org-x-text") -; (version "0.3.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/text") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0flv9idw0jm5nm8lx25xqanbkqgfiym6619w575p7nrdh0riqwqh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/text")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" -; ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) -; (home-page "https://golang.org/x/text") -; (synopsis "Go Text") -; (description -; "text is a repository of text-related packages related to internationalization -;(i18n) and localization (l10n), such as character encodings, text -;transformations, and locale-specific text handling. -;") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-appengine-1.6.7 -; (package -; (name "go-google-golang-org-appengine") -; (version "1.6.7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/appengine") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1wkipg7xxc0ha5p6c3bj0vpgq38l18441n5l6zxdhx0gzvz5z1hs")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/appengine")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) -; ("go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65" -; ,go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65) -; ("go-github-com-golang-protobuf-1.3.1" -; ,go-github-com-golang-protobuf-1.3.1))) -; (home-page "https://google.golang.org/appengine") -; (synopsis "Go App Engine packages") -; (description -; "Package appengine provides basic functionality for Google App Engine. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-golang-protobuf-1.5.1 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.5.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1qx8gvsdx1w27vamw6wn1jns2d8pz0g9sji3l0hvs4wl1jf7p32d")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.26.0" -; ,go-google-golang-org-protobuf-1.26.0) -; ("go-github-com-google-go-cmp-0.5.5" -; ,go-github-com-google-go-cmp-0.5.5))) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-mod-0.1.1-0.20191105210325-c90efee705ee -; (package -; (name "go-golang-org-x-mod") -; (version "0.1.1-0.20191105210325-c90efee705ee") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/mod") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0i5md645rmcy5z5ij9ng428k9rz4g3k1kjy3blsq1264rn426gdf")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/mod")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" -; ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) -; ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" -; ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) -; (home-page "https://golang.org/x/mod") -; (synopsis "mod") -; (description -; "This repository holds packages for writing tools -;that work directly with Go module mechanics. -;That is, it is for direct manipulation of Go modules themselves.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7 -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20200130002326-2f3ba24bd6e7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0j3nnmlwnbivf0h9x89vlp8ji3ha41v96bj33cxwmrrjnxq543ww")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" -; ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) -; ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" -; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) -; ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" -; ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) -; ("go-golang-org-x-mod-0.1.1-0.20191105210325-c90efee705ee" -; ,go-golang-org-x-mod-0.1.1-0.20191105210325-c90efee705ee))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5 -; (package -; (name "go-golang-org-x-lint") -; (version "0.0.0-20201208152925-83fdc39ff7b5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/lint") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ms3rs5hvpnm9bxbr5f9743i7hn2bbmqdmvzxq6nmi0f24ypv1l3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/lint")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7" -; ,go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7))) -; (home-page "https://golang.org/x/lint") -; (synopsis "Installation") -; (description "Package lint contains a linter for Go source code. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20210315160823-c6e025ad8005 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20210315160823-c6e025ad8005") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1dy8j3gvbkng0vy2wgdiy48871j4vchgsks2ggfxcx4jg32d2qsr")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20210316092652-d523dce5a7f4 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20210316092652-d523dce5a7f4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "01hhvh6msyg11adxhgjwzbv4jprq5ajzkxxb16ln3dqv4na9b2k1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) -; ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" -; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) -; ("go-golang-org-x-sys-0.0.0-20210315160823-c6e025ad8005" -; ,go-golang-org-x-sys-0.0.0-20210315160823-c6e025ad8005))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20210320140829-1e4c9ba3b0c4 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20210320140829-1e4c9ba3b0c4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0nrxjq5j058sba9s5g65l5rdw6b4f335lxa7hhcf57paklym1qgr")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-text-0.3.5 -; (package -; (name "go-golang-org-x-text") -; (version "0.3.5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/text") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "082s9d7wnh1aa2v08g3h5z4if2f8hl4y01pb788qsvab9329lj0w")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/text")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" -; ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) -; (home-page "https://golang.org/x/text") -; (synopsis "Go Text") -; (description -; "text is a repository of text-related packages related to internationalization -;(i18n) and localization (l10n), such as character encodings, text -;transformations, and locale-specific text handling. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-yuin-goldmark-1.2.1 -; (package -; (name "go-github-com-yuin-goldmark") -; (version "1.2.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/yuin/goldmark") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "12rsnsf65drcp0jfw2jl9w589vsn3pxdk1zh3v9q908iigngrcmy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/yuin/goldmark")) -; (home-page "https://github.com/yuin/goldmark") -; (synopsis "goldmark") -; (description -; "Package goldmark implements functions to convert markdown text to a desired format. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20191011191535-87dc89f01550") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0z4i1m2yn3f31ci7wvcm2rxkx2yiv7a78mfzklncmsz2k97rlh2g")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" -; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) -; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" -; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20190620200207-3b0461eec859") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0l00c8l0a8xnv6qdpwfzxxsr58jggacgzdrwiprrfx2xqm37b6d5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7 -; (package -; (name "go-golang-org-x-xerrors") -; (version "0.0.0-20190717185122-a985d3407aa7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/xerrors") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "00wzr5w8aadipgc3rkk8f11i41znskfj9ix5nhhaxyg7isrslgcj")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/xerrors")) -; (home-page "https://golang.org/x/xerrors") -; (synopsis #f) -; (description -; "Package xerrors implements functions to manipulate errors. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20191119224855-298f0cb1881e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0l4pqwib2wnfnix6nvxl0yrq87ipi7ff1rz6z5bxfzy9dki1nzmv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7" -; ,go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7) -; ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" -; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) -; ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" -; ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898 -; (package -; (name "go-golang-org-x-xerrors") -; (version "0.0.0-20191011141410-1b5146add898") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/xerrors") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0w2akj91krxjag0xdhsg78470888nicc5ismc2ap9jqpss6v1zih")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/xerrors")) -; (home-page "https://golang.org/x/xerrors") -; (synopsis #f) -; (description -; "Package xerrors implements functions to manipulate errors. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-mod-0.3.0 -; (package -; (name "go-golang-org-x-mod") -; (version "0.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/mod") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ldgbx2zpprbsfn6p8pfgs4nn87gwbfcv2z0fa7n8alwsq2yw78q")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/mod")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" -; ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) -; ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" -; ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) -; ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" -; ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) -; (home-page "https://golang.org/x/mod") -; (synopsis "mod") -; (description -; "This repository holds packages for writing tools -;that work directly with Go module mechanics. -;That is, it is for direct manipulation of Go modules themselves.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20200622213623-75b288015ac9") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "18vlncvvs11ds3zaaziqjlg5s2vcwi3496nn6qv7p0dp94j5pwa2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" -; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) -; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" -; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20200930185726-fdedc70b468f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1njlfhjbvi4lxvjbq8zswrb0y0q4jd2p6x51h1q6vmyzi9af6869")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20201021035429-f5854403a974 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20201021035429-f5854403a974") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1vw63zpmhi337f3gc432x3wkib4j2ia8dy7if31wxwb9dgqvy222")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) -; ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" -; ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) -; ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" -; ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9 -; (package -; (name "go-golang-org-x-sync") -; (version "0.0.0-20201020160332-67f06af15bc9") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sync") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "093p4panc808ak5bamzz7m9nb0xxib7778jpnr6f0xkz1n4fzyw5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sync")) -; (home-page "https://golang.org/x/sync") -; (synopsis "Go Sync") -; (description -; "This repository provides Go concurrency primitives in addition to the -;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20210119212857-b64e53b001e4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "16in6bazi0frdkzhqxyvmw7qcvzjavq21dnz9bmrqq8d4dpd2j44")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1 -; (package -; (name "go-golang-org-x-xerrors") -; (version "0.0.0-20200804184101-5ec99f83aff1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/xerrors") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1dbzc3gmf2haazpv7cgmv97rq40g2xzwbglc17vas8dwhgwgwrzb")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/xerrors")) -; (home-page "https://golang.org/x/xerrors") -; (synopsis #f) -; (description -; "Package xerrors implements functions to manipulate errors. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.1.0 -; (package -; (name "go-golang-org-x-tools") -; (version "0.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1asrm22kv5x891qkbpap8alg612k321jbs1akc0vwsan251gm507")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" -; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) -; ("go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4" -; ,go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4) -; ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" -; ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) -; ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" -; ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) -; ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) -; ("go-github-com-yuin-goldmark-1.2.1" -; ,go-github-com-yuin-goldmark-1.2.1))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-1.26.0-rc.1 -; (package -; (name "go-google-golang-org-protobuf") -; (version "1.26.0-rc.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1m2jp247qcnix42jncn0q7pwrjgbhiqllb1115hfsz40xfnfhp8j")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.5.5" -; ,go-github-com-google-go-cmp-0.5.5))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.5.0 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.5.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1craaxv34g4g8q3yrv6pr28fx9ihnk7hj5gnbmxcrhcp78423lnf")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.26.0-rc.1" -; ,go-google-golang-org-protobuf-1.26.0-rc.1) -; ("go-github-com-google-go-cmp-0.5.5" -; ,go-github-com-google-go-cmp-0.5.5))) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-github-com-google-go-cmp-0.5.5 -; (package -; (name "go-github-com-google-go-cmp") -; (version "0.5.5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/go-cmp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "12fmkdhyv5d4is8s57k78j097zb0phlgnrkqc03agiszxlid69x7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/go-cmp")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" -; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) -; (home-page "https://github.com/google/go-cmp") -; (synopsis "Package for equality of Go values") -; (description -; "This package is intended to be a more powerful and safer alternative to -;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-1.26.0 -; (package -; (name "go-google-golang-org-protobuf") -; (version "1.26.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0xq6phaps6d0vcv13ga59gzj4306l0ki9kikhmb52h6pq0iwfqlz")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.5.5" -; ,go-github-com-google-go-cmp-0.5.5) -; ("go-github-com-golang-protobuf-1.5.0" -; ,go-github-com-golang-protobuf-1.5.0))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20210402141018-6c239bbf2bb1 -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20210402141018-6c239bbf2bb1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1xih6y4dwjj939ilwc5s6w419kjnkn1hw33jsgml0nkjcnac74wc")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.26.0" -; ,go-google-golang-org-protobuf-1.26.0) -; ("go-google-golang-org-grpc-1.36.1" ,go-google-golang-org-grpc-1.36.1) -; ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) -; ("go-golang-org-x-text-0.3.5" ,go-golang-org-x-text-0.3.5) -; ("go-golang-org-x-sys-0.0.0-20210320140829-1e4c9ba3b0c4" -; ,go-golang-org-x-sys-0.0.0-20210320140829-1e4c9ba3b0c4) -; ("go-golang-org-x-net-0.0.0-20210316092652-d523dce5a7f4" -; ,go-golang-org-x-net-0.0.0-20210316092652-d523dce5a7f4) -; ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" -; ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) -; ("go-github-com-golang-protobuf-1.5.1" -; ,go-github-com-golang-protobuf-1.5.1))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad -; (package -; (name "go-github-com-envoyproxy-go-control-plane") -; (version "0.9.9-0.20201210154907-fd9021fe5dad") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/envoyproxy/go-control-plane") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0piyk6pk36x2qr3bhys2k240pfwz3bv64fhi2l0vx1mzwiddapbm")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.23.0" -; ,go-google-golang-org-protobuf-1.23.0) -; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) -; ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" -; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) -; ("go-github-com-stretchr-testify-1.5.1" -; ,go-github-com-stretchr-testify-1.5.1) -; ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" -; ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.4.2" -; ,go-github-com-golang-protobuf-1.4.2) -; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" -; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) -; ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" -; ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403) -; ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" -; ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) -; (home-page "https://github.com/envoyproxy/go-control-plane") -; (synopsis "control-plane") -; (description -; "This repository contains a Go-based implementation of an API server that -;implements the discovery service APIs defined in -;@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-grpc-1.36.1 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.36.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0l3prxp18lb0pagqg4l6c9i0l6gakfxgf6vxcsv589i0xsxw8ivm")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.25.0" -; ,go-google-golang-org-protobuf-1.25.0) -; ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" -; ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) -; ("go-github-com-google-go-cmp-0.5.0" -; ,go-github-com-google-go-cmp-0.5.0) -; ("go-github-com-golang-protobuf-1.4.2" -; ,go-github-com-golang-protobuf-1.4.2) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad" -; ,go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad) -; ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" -; ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-api-0.44.0 -; (package -; (name "go-google-golang-org-api") -; (version "0.44.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-api-go-client") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0sh6qzc3pnyliy10afrmzpfbbbm2mwcyc6mp5422xhgp3p2x370x")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/api")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.36.1" ,go-google-golang-org-grpc-1.36.1) -; ("go-google-golang-org-genproto-0.0.0-20210402141018-6c239bbf2bb1" -; ,go-google-golang-org-genproto-0.0.0-20210402141018-6c239bbf2bb1) -; ("go-google-golang-org-appengine-1.6.7" -; ,go-google-golang-org-appengine-1.6.7) -; ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) -; ("go-golang-org-x-sys-0.0.0-20210403161142-5e06dd20ab57" -; ,go-golang-org-x-sys-0.0.0-20210403161142-5e06dd20ab57) -; ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" -; ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) -; ("go-golang-org-x-oauth2-0.0.0-20210402161424-2e8d93401602" -; ,go-golang-org-x-oauth2-0.0.0-20210402161424-2e8d93401602) -; ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" -; ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) -; ("go-go-opencensus-io-0.23.0" ,go-go-opencensus-io-0.23.0) -; ("go-github-com-googleapis-gax-go-v2-2.0.5" -; ,go-github-com-googleapis-gax-go-v2-2.0.5) -; ("go-github-com-google-go-cmp-0.5.5" -; ,go-github-com-google-go-cmp-0.5.5) -; ("go-cloud-google-com-go-0.81.0" ,go-cloud-google-com-go-0.81.0))) -; (home-page "https://google.golang.org/api") -; (synopsis "Google APIs Client Library for Go") -; (description -; "Package api is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of -;sub-packages. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-envoyproxy-go-control-plane-0.9.0 -; (package -; (name "go-github-com-envoyproxy-go-control-plane") -; (version "0.9.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/envoyproxy/go-control-plane") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1dpvi4wnycyj6hnai78fr8aj58b27b1vcwdp3v0id5v22kvgr3xw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.23.0" ,go-google-golang-org-grpc-1.23.0) -; ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" -; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) -; ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" -; ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2) -; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" -; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) -; ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" -; ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) -; (home-page "https://github.com/envoyproxy/go-control-plane") -; (synopsis "control-plane") -; (description -; "This repository contains a Go-based implementation of an API server that -;implements the discovery service APIs defined in -;@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-grpc-1.25.1 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.25.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0a136ij9p11yj1vx892yqy40jkh7n5nfbpdvhgydcj823mx51c6f")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" -; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-github-com-google-go-cmp-0.2.0" -; ,go-github-com-google-go-cmp-0.2.0) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2) -; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" -; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) -; ("go-github-com-envoyproxy-go-control-plane-0.9.0" -; ,go-github-com-envoyproxy-go-control-plane-0.9.0))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403 -; (package -; (name "go-github-com-cncf-udpa-go") -; (version "0.0.0-20201120205902-5459f2c99403") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/cncf/udpa") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0i3al193dsp91j7iywqrm6fr56y2sz51ci4vf19mb3j4n2x44gsi")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path -; "github.com/cncf/udpa/go" -; #:unpack-path -; "github.com/cncf/udpa")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2) -; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" -; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0))) -; (home-page "https://github.com/cncf/udpa") -; (synopsis "Description") -; (description -; "This library has been deprecated in favor of @code{github.com/cncf/xds/go}. All users are recommended to switch their imports.") -; (license license:asl2.0))) -; -;(define-public go-github-com-stretchr-testify-1.5.1 -; (package -; (name "go-github-com-stretchr-testify") -; (version "1.5.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/testify") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "09r89m1wy4cjv2nps1ykp00qjpi0531r07q3s34hr7m6njk4srkl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/testify")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) -; ("go-github-com-stretchr-objx-0.1.0" -; ,go-github-com-stretchr-objx-0.1.0) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-davecgh-go-spew-1.1.0" -; ,go-github-com-davecgh-go-spew-1.1.0))) -; (home-page "https://github.com/stretchr/testify") -; (synopsis "Testify - Thou Shalt Write Tests") -; (description -; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -;") -; (license license:expat))) -; -;(define-public go-github-com-envoyproxy-go-control-plane-0.9.9-0.20210217033140-668b12f5399d -; (package -; (name "go-github-com-envoyproxy-go-control-plane") -; (version "0.9.9-0.20210217033140-668b12f5399d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/envoyproxy/go-control-plane") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0vmhc8ii081x1k2qw4kji7wjyg6l25zp1y6qxi27wq8m341i4rzb")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.23.0" -; ,go-google-golang-org-protobuf-1.23.0) -; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) -; ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" -; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) -; ("go-github-com-stretchr-testify-1.5.1" -; ,go-github-com-stretchr-testify-1.5.1) -; ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" -; ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.4.2" -; ,go-github-com-golang-protobuf-1.4.2) -; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" -; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) -; ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" -; ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403) -; ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" -; ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) -; (home-page "https://github.com/envoyproxy/go-control-plane") -; (synopsis "control-plane") -; (description -; "This repository contains a Go-based implementation of an API server that -;implements the discovery service APIs defined in -;@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-protobuf-1.23.0 -; (package -; (name "go-google-golang-org-protobuf") -; (version "1.23.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "03yan0m1v0zmlr935p4n24fd376mznsg85zy8sywbgisls4s1bzy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.4.0" -; ,go-github-com-golang-protobuf-1.4.0))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.4.2 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.4.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0m5z81im4nsyfgarjhppayk4hqnrwswr3nix9mj8pff8x9jvcjqw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.23.0" -; ,go-google-golang-org-protobuf-1.23.0) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0))) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-github-com-google-uuid-1.1.2 -; (package -; (name "go-github-com-google-uuid") -; (version "1.1.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/uuid") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1rbpfa0v0ly9sdnixcxhf79swki54ikgm1zkwwkj64p1ws66syqd")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/uuid")) -; (home-page "https://github.com/google/uuid") -; (synopsis "uuid") -; (description "Package uuid generates and inspects UUIDs. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-google-go-cmp-0.5.0 -; (package -; (name "go-github-com-google-go-cmp") -; (version "0.5.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/go-cmp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "04pzp583p6b32y34c6jygfxarff9qjs39rarvfh6467z24sdd9k4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/go-cmp")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" -; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) -; (home-page "https://github.com/google/go-cmp") -; (synopsis "Package for equality of Go values") -; (description -; "This package is intended to be a more powerful and safer alternative to -;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-1.22.0 -; (package -; (name "go-google-golang-org-protobuf") -; (version "1.22.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0n7lc4m7kfvj01glc0gnjy0zsnsic7cxnbvlajy0h14cxbab87pj")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.4.0" -; ,go-github-com-golang-protobuf-1.4.0))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.4.1 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.4.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0w7ks4vffnnkp0miwgc3chrsnmya45lzvpahb2wmw0jwhdp5kdx7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.22.0" -; ,go-google-golang-org-protobuf-1.22.0) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0))) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-github-com-census-instrumentation-opencensus-proto-0.2.1 -; (package -; (name "go-github-com-census-instrumentation-opencensus-proto") -; (version "0.2.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/census-instrumentation/opencensus-proto") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "19fcx3sc99i5dsklny6r073z5j20vlwn2xqm6di1q3b1xwchzqfj")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "github.com/census-instrumentation/opencensus-proto")) -; (home-page "https://github.com/census-instrumentation/opencensus-proto") -; (synopsis -; "OpenCensus Proto - Language Independent Interface Types For OpenCensus") -; (description -; "Census provides a framework to define and collect stats against metrics and to -;break those stats down across user-defined dimensions.") -; (license license:asl2.0))) -; -;(define-public go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4 -; (package -; (name "go-github-com-prometheus-client-model") -; (version "0.0.0-20190812154241-14fe0d1b01d4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/client_model") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0zdmk6rbbx39cvfz0r59v2jg5sg9yd02b4pds5n5llgvivi99550")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/client_model")) -; (propagated-inputs -; `(("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" -; ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0))) -; (home-page "https://github.com/prometheus/client_model") -; (synopsis "Deprecation note") -; (description -; "This repository used to contain the code that defined both -;the data model and the exposition format of Prometheus metrics.") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20190311212946-11955173bddd") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0hlkai67w167wiyivkzd1fgqrnyxkb94l2c6kr51jwcscizfyfn3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3 -; (package -; (name "go-golang-org-x-lint") -; (version "0.0.0-20190313153728-d0100b6bd8b3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/lint") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0b0amr9x4ji66iv9ayfx7zrfx52k1m5g66qfcxkgj80qrb1y2yn7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/lint")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" -; ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd))) -; (home-page "https://golang.org/x/lint") -; (synopsis "Installation") -; (description "Package lint contains a linter for Go source code. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sync-0.0.0-20190423024810-112230192c58 -; (package -; (name "go-golang-org-x-sync") -; (version "0.0.0-20190423024810-112230192c58") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sync") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "05i2k43j2d0llq768hg5pf3hb2yhfzp9la1w5wp0rsnnzblr0lfn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sync")) -; (home-page "https://golang.org/x/sync") -; (synopsis "Go Sync") -; (description -; "This repository provides Go concurrency primitives in addition to the -;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135 -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20190524140312-2c0ae7006135") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1lsi2ssxajclj3bciz2a41v1vjv768ja3v6wnbyhxy8xphwkp4fk")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" -; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-grpc-1.23.0 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.23.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1cn33r2gclmq2v1ndpf1n5bmhf2qs8mms7ii5cnl6f9ch4r2c4k3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" -; ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) -; ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" -; ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) -; ("go-google-golang-org-appengine-1.1.0" -; ,go-google-golang-org-appengine-1.1.0) -; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" -; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-github-com-google-go-cmp-0.2.0" -; ,go-github-com-google-go-cmp-0.2.0) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0) -; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-client9-misspell-0.3.4" -; ,go-github-com-client9-misspell-0.3.4) -; ("go-github-com-burntsushi-toml-0.3.1" -; ,go-github-com-burntsushi-toml-0.3.1) -; ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473 -; (package -; (name "go-github-com-envoyproxy-go-control-plane") -; (version "0.9.1-0.20191026205805-5f8ba28d4473") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/envoyproxy/go-control-plane") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1f1s764rd41vd9vgk3r14h1m6fz6pdvxj6fd83q58gxifbc4q5w4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.23.0" ,go-google-golang-org-grpc-1.23.0) -; ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" -; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) -; ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" -; ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2) -; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" -; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) -; ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" -; ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) -; (home-page "https://github.com/envoyproxy/go-control-plane") -; (synopsis "control-plane") -; (description -; "This repository contains a Go-based implementation of an API server that -;implements the discovery service APIs defined in -;@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") -; (license license:asl2.0))) -; -;(define-public go-github-com-envoyproxy-protoc-gen-validate-0.1.0 -; (package -; (name "go-github-com-envoyproxy-protoc-gen-validate") -; (version "0.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/envoyproxy/protoc-gen-validate") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0kxd3wwh3xwqk0r684hsy281xq4y71cd11d4q2hspcjbnlbwh7cy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/envoyproxy/protoc-gen-validate")) -; (home-page "https://github.com/envoyproxy/protoc-gen-validate") -; (synopsis "protoc-gen-validate (PGV)") -; (description -; "PGV is a protoc plugin to generate polyglot message validators. While protocol buffers effectively guarantee the types of structured data, they cannot enforce semantic rules for values. This plugin adds support to protoc-generated code to validate such constraints.") -; (license license:asl2.0))) -; -;(define-public go-github-com-google-go-cmp-0.2.0 -; (package -; (name "go-github-com-google-go-cmp") -; (version "0.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/go-cmp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1fbv0x27k9sn8svafc0hjwsnckk864lv4yi7bvzrxvmd3d5hskds")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/go-cmp")) -; (home-page "https://github.com/google/go-cmp") -; (synopsis "Package for equality of Go values") -; (description -; "This package is intended to be a more powerful and safer alternative to -;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.3.2 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.3.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1k1wb4zr0qbwgpvz9q5ws9zhlal8hq7dmq62pwxxriksayl6hzym")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4 -; (package -; (name "go-golang-org-x-exp") -; (version "0.0.0-20190121172915-509febef88a4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/exp") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "02isrh39z8znrp5znplzy0dip2gnrl3jm1355raliyvhnhg04j6q")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/exp")) -; (home-page "https://golang.org/x/exp") -; (synopsis "exp") -; (description -; "This subrepository holds experimental and deprecated (in the @code{old} -;directory) packages.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961 -; (package -; (name "go-golang-org-x-lint") -; (version "0.0.0-20190227174305-5b3e6a55c961") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/lint") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "04zp5vbds9nffmjg36wjpi5vg9zmf890yf78xxasai3ni637ivfw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/lint")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" -; ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c))) -; (home-page "https://golang.org/x/lint") -; (synopsis "Installation") -; (description "Package lint contains a linter for Go source code. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20190213061140-3a22650c66bd") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "12q6fgdkc0742vcms67nzadgdwvi3rnb1gx3vwkljhrvlnwvz7wc")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f -; (package -; (name "go-golang-org-x-sync") -; (version "0.0.0-20181108010431-42b317875d0f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sync") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0mrjhk7al7yyh76x9flvxy4jm5jyqh2fxbxagpaazxn1xdgkaif3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sync")) -; (home-page "https://golang.org/x/sync") -; (synopsis "Go Sync") -; (description -; "This repository provides Go concurrency primitives in addition to the -;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20180724234803-3673e40ba225") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0vx7mz18p480p7fh0w5jv6mfdbsswrlac1sz4i705q7q7ygz59lm")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-appengine-1.4.0 -; (package -; (name "go-google-golang-org-appengine") -; (version "1.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/appengine") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "06zl7w4sxgdq2pl94wy9ncii6h0z3szl4xpqds0sv3b3wbdlhbnn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/appengine")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225" -; ,go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0))) -; (home-page "https://google.golang.org/appengine") -; (synopsis "Go App Engine packages") -; (description -; "Package appengine provides basic functionality for Google App Engine. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20190226205152-f727befe758c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0rpcqw6z13qd33rbasg32zb0gdhgh5lzjla63r6g651zf6hpsak0")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-google-golang-org-appengine-1.4.0" -; ,go-google-golang-org-appengine-1.4.0) -; ("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" -; ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) -; ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" -; ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-cloud-google-com-go-0.26.0 -; (package -; (name "go-cloud-google-com-go") -; (version "0.26.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-cloud-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "149v3ci17g6wd2pm18mzcncq5qpl9hwdjnz3rlbn5rfidyn46la1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "cloud.google.com/go")) -; (home-page "https://cloud.google.com/go") -; (synopsis "Google Cloud Client Libraries for Go") -; (description -; "Package cloud is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -;of sub-packages. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-burntsushi-toml-0.3.1 -; (package -; (name "go-github-com-burntsushi-toml") -; (version "0.3.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/BurntSushi/toml") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1fjdwwfzyzllgiwydknf1pwjvy49qxfsczqx5gz3y0izs7as99j6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/BurntSushi/toml")) -; (home-page "https://github.com/BurntSushi/toml") -; (synopsis "TOML parser and encoder for Go with reflection") -; (description -; "Package toml implements decoding and encoding of TOML files. -;") -; (license license:expat))) -; -;(define-public go-github-com-client9-misspell-0.3.4 -; (package -; (name "go-github-com-client9-misspell") -; (version "0.3.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/client9/misspell") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1vwf33wsc4la25zk9nylpbp9px3svlmldkm0bha4hp56jws4q9cs")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/client9/misspell")) -; (home-page "https://github.com/client9/misspell") -; (synopsis "Install") -; (description -; "Package misspell corrects commonly misspelled English words in source files. -;") -; (license license:expat))) -; -;(define-public go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b -; (package -; (name "go-github-com-golang-glog") -; (version "0.0.0-20160126235308-23def4e6c14b") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/glog") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0jb2834rw5sykfr937fxi8hxi2zy80sj2bdn9b3jb4b26ksqng30")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/glog")) -; (home-page "https://github.com/golang/glog") -; (synopsis "glog") -; (description -; "Package glog implements logging analogous to the Google-internal C++ INFO/ERROR/V setup. -;It provides functions Info, Warning, Error, Fatal, plus formatting variants such as -;Infof. It also provides V-style logging controlled by the -v and -vmodule=file=2 flags. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-golang-mock-1.1.1 -; (package -; (name "go-github-com-golang-mock") -; (version "1.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/mock") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ap8wb6pdl6ccmdb43advjll2ly4sz26wsc3axw0hbrjrybybzgy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/mock")) -; (home-page "https://github.com/golang/mock") -; (synopsis "gomock") -; (description -; "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It -;integrates well with Go's built-in @code{testing} package, but can be used in other -;contexts too.") -; (license license:asl2.0))) -; -;(define-public go-github-com-golang-protobuf-1.2.0 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0kf4b59rcbb1cchfny2dm9jyznp8ri2hsb14n8iak1q8986xa0ab")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3 -; (package -; (name "go-golang-org-x-lint") -; (version "0.0.0-20181026193005-c67002cb31c3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/lint") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0gymbggskjmphqxqcx4s0vnlcz7mygbix0vhwcwv5r67c0bf6765")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/lint")) -; (home-page "https://golang.org/x/lint") -; (synopsis "Installation") -; (description "Package lint contains a linter for Go source code. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20180826012351-8a410e7b638d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0hp0l8f6fir5gmgrjq0mhh5ikc0rlrm72774228800kfwqjrxxny")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be -; (package -; (name "go-golang-org-x-oauth2") -; (version "0.0.0-20180821212333-d2e6202438be") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/oauth2") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0wbn75fd10485nb93bm4kqldqifdim5xqy4v7r5sdvimvf3fyhn7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/oauth2")) -; (home-page "https://golang.org/x/oauth2") -; (synopsis "OAuth2 for Go") -; (description -; "Package oauth2 provides support for making -;OAuth2 authorized and authenticated HTTP requests, -;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -;It can additionally grant authorization with Bearer JWT. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f -; (package -; (name "go-golang-org-x-sync") -; (version "0.0.0-20180314180146-1d60e4601c6f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sync") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "046jlanz2lkxq1r57x9bl6s4cvfqaic6p2xybsj8mq1120jv4rs6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sync")) -; (home-page "https://golang.org/x/sync") -; (synopsis "Go Sync") -; (description -; "This repository provides Go concurrency primitives in addition to the -;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20180830151530-49385e6e1522") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0spbldahns09fdxkxflb1x24f8k2awdlnr6k5i7ci4fqd19r1dv4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20190114222345-bf090417da8b") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1n3xp56k4k3lj06rx7587wr5gnwg0148nvwx6ch0g7ar02hh94hw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-appengine-1.1.0 -; (package -; (name "go-google-golang-org-appengine") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/appengine") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1pz202zszg8f35dk5pfhwgcdi3r6dx1l4yk6x6ly7nb4j45zi96x")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/appengine")) -; (home-page "https://google.golang.org/appengine") -; (synopsis "Go App Engine packages") -; (description -; "Package appengine provides basic functionality for Google App Engine. -;") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8 -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20180817151627-c66870c02cf8") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0siq7sv68556ygqi2d2zmvx8l1xjqdc0fylqzci5h1mq2i14bayn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-grpc-1.19.0 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.19.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1znqwpj7ix3dpzx4zch0q70sdl3z5lvbb7v3q4i8sf8kas3yv71v")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" -; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) -; ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" -; ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) -; ("go-google-golang-org-appengine-1.1.0" -; ,go-google-golang-org-appengine-1.1.0) -; ("go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b" -; ,go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b) -; ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522" -; ,go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522) -; ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" -; ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d" -; ,go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d) -; ("go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3" -; ,go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0) -; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-client9-misspell-0.3.4" -; ,go-github-com-client9-misspell-0.3.4) -; ("go-github-com-burntsushi-toml-0.3.1" -; ,go-github-com-burntsushi-toml-0.3.1) -; ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099 -; (package -; (name "go-honnef-co-go-tools") -; (version "0.0.0-20190102054323-c2f93a96b099") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/dominikh/go-tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "07lg29aiap80ca9f201jzng9vjr168cv3qmvjmbd7v5pmww9kmr8")))) -; (build-system go-build-system) -; (arguments '(#:import-path "honnef.co/go/tools")) -; (home-page "https://honnef.co/go/tools") -; (synopsis "Documentation") -; (description -; "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, -;offers simplifications, and enforces style rules.") -; (license license:expat))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55 -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20190819201941-24fa4b261c55") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "109zhaqlfd8zkbr1hk6zqbs6vcxfrk64scjwh2nswph05gr0m84d")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" -; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) -; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) -; ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" -; ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) -; ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" -; ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) -; ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" -; ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-grpc-1.27.0 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.27.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ijrmgrxyabfn51nm3p9l81iaasq5fg237wnr6mdc4dzsfcg8kd7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" -; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-github-com-google-go-cmp-0.2.0" -; ,go-github-com-google-go-cmp-0.2.0) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2) -; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" -; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) -; ("go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473" -; ,go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-google-go-cmp-0.3.0 -; (package -; (name "go-github-com-google-go-cmp") -; (version "0.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/go-cmp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1hyxx3434zshl2m9ja78gwlkg1rx9yl6diqa7dnjb31xz5x4gbjj")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/go-cmp")) -; (home-page "https://github.com/google/go-cmp") -; (synopsis "Package for equality of Go values") -; (description -; "This package is intended to be a more powerful and safer alternative to -;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd -; (package -; (name "go-google-golang-org-protobuf") -; (version "0.0.0-20200109180630-ec00e32a8dfd") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0w6lp9w2avxcpxwzzhspr209ifhyjagvs23k0vykfdqahl1aplrh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.3.0" -; ,go-github-com-google-go-cmp-0.3.0))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.4.0-rc.1 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.4.0-rc.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "186rirvbfgv6hrxp27ipx2cdpv19qifdd20biqfdm01wiyclqimn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd" -; ,go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd) -; ("go-github-com-google-go-cmp-0.3.1" -; ,go-github-com-google-go-cmp-0.3.1))) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-github-com-google-go-cmp-0.3.1 -; (package -; (name "go-github-com-google-go-cmp") -; (version "0.3.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/go-cmp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1caw49i0plkjxir7kdf5qhwls3krqwfmi7g4h392rdfwi3kfahx1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/go-cmp")) -; (home-page "https://github.com/google/go-cmp") -; (synopsis "Package for equality of Go values") -; (description -; "This package is intended to be a more powerful and safer alternative to -;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64 -; (package -; (name "go-google-golang-org-protobuf") -; (version "0.0.0-20200221191635-4d8936d0db64") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0563bsvdjj6k0sgwqd5yzrgfiax7sp3lcwh608gync5sv9fx39cy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.3.1" -; ,go-github-com-google-go-cmp-0.3.1) -; ("go-github-com-golang-protobuf-1.4.0-rc.1" -; ,go-github-com-golang-protobuf-1.4.0-rc.1))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.4.0-rc.1.0.20200221234624-67d41d38c208") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ykxhg3zixmw25pd435f8h16wnz1g00jpcmmg3xl030kksgqgpp6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64" -; ,go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0))) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60 -; (package -; (name "go-google-golang-org-protobuf") -; (version "0.0.0-20200228230310-ab0ca4ff8a60") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1rinspcznfp85yz4vrlf4h38hr576virgv8lcs22bsylqga808sd")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208" -; ,go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.4.0-rc.2 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.4.0-rc.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1hd43hjv5zl6bjbmhm5phx74bw4xajsi73m5zky2k56za4mpgzzc")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60" -; ,go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0))) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967 -; (package -; (name "go-google-golang-org-protobuf") -; (version "1.20.1-0.20200309200217-e05f789c0967") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "17wmy89hnmpkwc63rfcjp50q15s9f1rhmczg06c3z9yy41zk82w9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.4.0-rc.2" -; ,go-github-com-golang-protobuf-1.4.0-rc.2))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.4.0-rc.4.0.20200313231945-b860323f09d0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1zj6cwshx0l5n9cn2cpbikzzb79px5dmkpc4p19zy1iif5r5p0z0")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967" -; ,go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0))) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-1.21.0 -; (package -; (name "go-google-golang-org-protobuf") -; (version "1.21.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "12bwln8z1lf9105gdp6ip0rx741i4yfz1520gxnp8861lh9wcl63")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0" -; ,go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.4.0 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1fjvl5n77abxz5qsd4mgyvjq19x43c5bfvmq62mq3m5plx6zksc8")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.21.0" -; ,go-google-golang-org-protobuf-1.21.0) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0))) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543 -; (package -; (name "go-golang-org-x-xerrors") -; (version "0.0.0-20191204190536-9bdfabe68543") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/xerrors") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1yjfi1bk9xb81lqn85nnm13zz725wazvrx3b50hx19qmwg7a4b0c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/xerrors")) -; (home-page "https://golang.org/x/xerrors") -; (synopsis #f) -; (description -; "Package xerrors implements functions to manipulate errors. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-google-go-cmp-0.4.0 -; (package -; (name "go-github-com-google-go-cmp") -; (version "0.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/go-cmp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1x5pvl3fb5sbyng7i34431xycnhmx8xx94gq2n19g6p0vz68z2v2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/go-cmp")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" -; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) -; (home-page "https://github.com/google/go-cmp") -; (synopsis "Package for equality of Go values") -; (description -; "This package is intended to be a more powerful and safer alternative to -;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc -; (package -; (name "go-google-golang-org-protobuf") -; (version "1.23.1-0.20200526195155-81db48ad09cc") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "02cpr8rqr5wmpj2fqb32mzilsdnxkh52g1jz95a3ck3gzffc7hh1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.4.0" -; ,go-github-com-golang-protobuf-1.4.0))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc -; (package -; (name "go-honnef-co-go-tools") -; (version "0.0.0-20190523083050-ea95bdfd59fc") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/dominikh/go-tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1763nw7pwpzkvzfnm63dgzcgbq9hwmq5l1nffchnhh77vgkaq4ic")))) -; (build-system go-build-system) -; (arguments '(#:import-path "honnef.co/go/tools")) -; (home-page "https://honnef.co/go/tools") -; (synopsis "Documentation") -; (description -; "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, -;offers simplifications, and enforces style rules.") -; (license license:expat))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013 -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20200526211855-cb27e3aa2013") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ml73ghqcwbz7ipfk8fnxb5indcml49b5p7vp1fsyny0abyyrmxf")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" -; ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) -; ("go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc" -; ,go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc) -; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) -; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" -; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-github-com-golang-protobuf-1.4.1" -; ,go-github-com-golang-protobuf-1.4.1))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-protobuf-1.25.0 -; (package -; (name "go-google-golang-org-protobuf") -; (version "1.25.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0apfl42x166dh96zfq5kvv4b4ax9xljik6bq1mnvn2240ir3mc23")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" -; ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) -; ("go-github-com-google-go-cmp-0.5.0" -; ,go-github-com-google-go-cmp-0.5.0) -; ("go-github-com-golang-protobuf-1.4.1" -; ,go-github-com-golang-protobuf-1.4.1))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-grpc-1.38.0 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.38.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "08lgqdvbd0i4qwsv1y37qmf8mhsy9ywzx73ixiwih7xhnalrf7xl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.25.0" -; ,go-google-golang-org-protobuf-1.25.0) -; ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" -; ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) -; ("go-github-com-google-go-cmp-0.5.0" -; ,go-github-com-google-go-cmp-0.5.0) -; ("go-github-com-golang-protobuf-1.4.2" -; ,go-github-com-golang-protobuf-1.4.2) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-envoyproxy-go-control-plane-0.9.9-0.20210217033140-668b12f5399d" -; ,go-github-com-envoyproxy-go-control-plane-0.9.9-0.20210217033140-668b12f5399d) -; ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" -; ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-bketelsen-crypt-0.0.4 -; (package -; (name "go-github-com-bketelsen-crypt") -; (version "0.0.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/bketelsen/crypt") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0fyfcvy73zskd1p1mv0cn03anxkkr5gvlawsc87znqk60hdypq3v")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/bketelsen/crypt")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.38.0" ,go-google-golang-org-grpc-1.38.0) -; ("go-google-golang-org-api-0.44.0" ,go-google-golang-org-api-0.44.0) -; ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" -; ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9) -; ("go-go-etcd-io-etcd-client-v2-2.305.0" -; ,go-go-etcd-io-etcd-client-v2-2.305.0) -; ("go-github-com-hashicorp-consul-api-1.1.0" -; ,go-github-com-hashicorp-consul-api-1.1.0) -; ("go-cloud-google-com-go-firestore-1.1.0" -; ,go-cloud-google-com-go-firestore-1.1.0))) -; (home-page "https://github.com/bketelsen/crypt") -; (synopsis "crypt") -; (description -; "You can use crypt as a command line tool or as a configuration library:") -; (license license:expat))) -; -;(define-public go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20191005200804-aed5e4c7ecf9") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0wsdsbl9n61l99z0cvib2xzg56fsfgky4yc5xapdw9ywx9h0zm3a")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-fsnotify-fsnotify-1.4.9 -; (package -; (name "go-github-com-fsnotify-fsnotify") -; (version "1.4.9") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/fsnotify/fsnotify") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1i1r72knpbfwwql9frn9bqc3nhfc2ai5m6qllcyr6wban62lr40x")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/fsnotify/fsnotify")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9" -; ,go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9))) -; (home-page "https://github.com/fsnotify/fsnotify") -; (synopsis "File system notifications for Go") -; (description -; "Package fsnotify provides a platform-independent interface for file system notifications. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-hashicorp-hcl-1.0.0 -; (package -; (name "go-github-com-hashicorp-hcl") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/hcl") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0q6ml0qqs0yil76mpn4mdx4lp94id8vbv575qm60jzl1ijcl5i66")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hashicorp/hcl")) -; (propagated-inputs -; `(("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://github.com/hashicorp/hcl") -; (synopsis "HCL") -; (description "Package hcl decodes HCL into usable Go structures. -;") -; (license license:mpl2.0))) -; -;(define-public go-github-com-magiconair-properties-1.8.5 -; (package -; (name "go-github-com-magiconair-properties") -; (version "1.8.5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/magiconair/properties") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0v4agnkhc30fblbmhs0gq2bikhdnnmqmpp4phrnza68m04j5hxbn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/magiconair/properties")) -; (home-page "https://github.com/magiconair/properties") -; (synopsis "Overview") -; (description -; "Package properties provides functions for reading and writing -;ISO-8859-1 and UTF-8 encoded .properties files and has -;support for recursive property expansion. -;") -; (license license:bsd-2))) -; -;(define-public go-github-com-mitchellh-mapstructure-1.4.1 -; (package -; (name "go-github-com-mitchellh-mapstructure") -; (version "1.4.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mitchellh/mapstructure") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1m98wiadb6kdnzv21m8p7nk1jb30zpjh47fkb1dg251r3m7bj47v")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mitchellh/mapstructure")) -; (home-page "https://github.com/mitchellh/mapstructure") -; (synopsis "mapstructure") -; (description -; "Package mapstructure exposes functionality to convert one arbitrary -;Go type into another, typically to convert a map[string]interface{} -;into a native Go structure. -;") -; (license license:expat))) -; -;(define-public go-github-com-pelletier-go-toml-1.9.3 -; (package -; (name "go-github-com-pelletier-go-toml") -; (version "1.9.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/pelletier/go-toml") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0cqwnvlgs1wgdgjxlwv8j52f7d6syniadr51sjh2fya99m5wzvsn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/pelletier/go-toml")) -; (home-page "https://github.com/pelletier/go-toml") -; (synopsis "go-toml") -; (description "Package toml is a TOML parser and manipulation library. -;") -; (license #f))) -; -;(define-public go-github-com-gopherjs-gopherjs-0.0.0-20181017120253-0766667cb4d1 -; (package -; (name "go-github-com-gopherjs-gopherjs") -; (version "0.0.0-20181017120253-0766667cb4d1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/gopherjs/gopherjs") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "13pfc9sxiwjky2lm1xb3i3lcisn8p6mgjk2d927l7r92ysph8dmw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/gopherjs/gopherjs")) -; (home-page "https://github.com/gopherjs/gopherjs") -; (synopsis "GopherJS - A compiler from Go to JavaScript") -; (description -; "GopherJS compiles Go code (@url{https://golang.org/,golang.org}) to pure JavaScript code. Its main purpose is to give you the opportunity to write front-end code in Go which will still run in all browsers.") -; (license license:bsd-2))) -; -;(define-public go-github-com-jtolds-gls-4.20.0+incompatible -; (package -; (name "go-github-com-jtolds-gls") -; (version "4.20.0+incompatible") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/jtolio/gls") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1k7xd2q2ysv2xsh373qs801v6f359240kx0vrl0ydh7731lngvk6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/jtolds/gls")) -; (home-page "https://github.com/jtolds/gls") -; (synopsis "gls") -; (description "Package gls implements goroutine-local storage. -;") -; (license license:expat))) -; -;(define-public go-github-com-smartystreets-assertions-0.0.0-20180927180507-b2de0cb4f26d -; (package -; (name "go-github-com-smartystreets-assertions") -; (version "0.0.0-20180927180507-b2de0cb4f26d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/smartystreets/assertions") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1i7ldgavgl35c7gk25p7bvdr282ckng090zr4ch9mk1705akx09y")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/smartystreets/assertions")) -; (home-page "https://github.com/smartystreets/assertions") -; (synopsis #f) -; (description -; "Package assertions contains the implementations for all assertions which -;are referenced in goconvey's `convey` package -;(github.com/smartystreets/goconvey/convey) and gunit (github.com/smartystreets/gunit) -;for use with the So(...) method. -;They can also be used in traditional Go test functions and even in -;applications. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-net-0.0.0-20190311183353-d8887717615a -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20190311183353-d8887717615a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1wfm6ngxjyj7v5a2dqib6lw8bb2rdnf1kl48diykxjrsddn0s163")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20190328211700-ab21143f2384 -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20190328211700-ab21143f2384") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "15fk0psk53pplpyghz55bhay0kvsv5rikmn5hwgjnnyxq9vfy178")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-github-com-smartystreets-goconvey-1.6.4 -; (package -; (name "go-github-com-smartystreets-goconvey") -; (version "1.6.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/smartystreets/goconvey") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "07zjxwszayal88z1j2bwnqrsa32vg8l4nivks5yfr9j8xfsw7n6m")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/smartystreets/goconvey")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20190328211700-ab21143f2384" -; ,go-golang-org-x-tools-0.0.0-20190328211700-ab21143f2384) -; ("go-github-com-smartystreets-assertions-0.0.0-20180927180507-b2de0cb4f26d" -; ,go-github-com-smartystreets-assertions-0.0.0-20180927180507-b2de0cb4f26d) -; ("go-github-com-jtolds-gls-4.20.0+incompatible" -; ,go-github-com-jtolds-gls-4.20.0+incompatible) -; ("go-github-com-gopherjs-gopherjs-0.0.0-20181017120253-0766667cb4d1" -; ,go-github-com-gopherjs-gopherjs-0.0.0-20181017120253-0766667cb4d1))) -; (home-page "https://github.com/smartystreets/goconvey") -; (synopsis "GoConvey is awesome Go testing") -; (description -; "This executable provides an HTTP server that watches for file system changes -;to .go files within the working directory (and all nested go packages). -;Navigating to the configured host and port in a web browser will display the -;latest results of running `go test` in each go package. -;") -; (license license:expat))) -; -;(define-public go-github-com-kr-fs-0.1.0 -; (package -; (name "go-github-com-kr-fs") -; (version "0.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kr/fs") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "11zg176x9hr9q7fsk95r6q0wf214gg4czy02slax4x56n79g6a7q")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kr/fs")) -; (home-page "https://github.com/kr/fs") -; (synopsis #f) -; (description "Package fs provides filesystem-related functions. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-pkg-errors-0.8.1 -; (package -; (name "go-github-com-pkg-errors") -; (version "0.8.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/pkg/errors") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0g5qcb4d4fd96midz0zdk8b9kz8xkzwfa8kr1cliqbg8sxsy5vd1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/pkg/errors")) -; (home-page "https://github.com/pkg/errors") -; (synopsis "errors") -; (description "Package errors provides simple error handling primitives. -;") -; (license license:bsd-2))) -; -;(define-public go-gopkg-in-yaml-v2-2.2.2 -; (package -; (name "go-gopkg-in-yaml-v2") -; (version "2.2.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/yaml.v2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "01wj12jzsdqlnidpyjssmj0r4yavlqy7dwrg7adqd8dicjc4ncsa")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" -; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) -; (home-page "https://gopkg.in/yaml.v2") -; (synopsis "YAML support for the Go language") -; (description "Package yaml implements YAML support for the Go language. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-stretchr-testify-1.4.0 -; (package -; (name "go-github-com-stretchr-testify") -; (version "1.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/testify") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "187i5g88sxfy4vxpm7dw1gwv29pa2qaq475lxrdh5livh69wqfjb")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/testify")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) -; ("go-github-com-stretchr-objx-0.1.0" -; ,go-github-com-stretchr-objx-0.1.0) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-davecgh-go-spew-1.1.0" -; ,go-github-com-davecgh-go-spew-1.1.0))) -; (home-page "https://github.com/stretchr/testify") -; (synopsis "Testify - Thou Shalt Write Tests") -; (description -; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -;") -; (license license:expat))) -; -;(define-public go-github-com-pkg-sftp-1.10.1 -; (package -; (name "go-github-com-pkg-sftp") -; (version "1.10.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/pkg/sftp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0iw6lijdljwh5xw5hsy0b578cr52h6vvm7hbnzlrvciwhh4sfhhp")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/pkg/sftp")) -; (propagated-inputs -; `(("go-golang-org-x-crypto-0.0.0-20190820162420-60c769a6c586" -; ,go-golang-org-x-crypto-0.0.0-20190820162420-60c769a6c586) -; ("go-github-com-stretchr-testify-1.4.0" -; ,go-github-com-stretchr-testify-1.4.0) -; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) -; ("go-github-com-kr-fs-0.1.0" ,go-github-com-kr-fs-0.1.0))) -; (home-page "https://github.com/pkg/sftp") -; (synopsis "sftp") -; (description -; "Package sftp implements the SSH File Transfer Protocol as described in -;@url{https://tools.ietf.org/html/draft-ietf-secsh-filexfer-02,https://tools.ietf.org/html/draft-ietf-secsh-filexfer-02} -;") -; (license license:bsd-2))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190215142949-d0b11bdaac8a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20190308221718-c2843e01d9a2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-text-0.3.0 -; (package -; (name "go-golang-org-x-text") -; (version "0.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/text") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/text")) -; (home-page "https://golang.org/x/text") -; (synopsis "Go Text") -; (description -; "text is a repository of text-related packages related to internationalization -;(i18n) and localization (l10n), such as character encodings, text -;transformations, and locale-specific text handling. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20190404232315-eb5bcb51f2a3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "17k4g8krxbl84gzcs275b7gsh66dzm15fdxivjnx9xz8q84l4kby")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190412213103-97732733099d -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190412213103-97732733099d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "118hkp01i4z1f5h6hcjm0ff2ngqhrzj1f7731n0kw8dr6hvbx0sw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20190820162420-60c769a6c586 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20190820162420-60c769a6c586") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1wy2pg38dz29vf1h48yfqf8m3jqvwnbdw8vkk3ldlj5d8fbbbmv8")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" -; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) -; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" -; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-github-com-spf13-afero-1.6.0 -; (package -; (name "go-github-com-spf13-afero") -; (version "1.6.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/spf13/afero") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0yi8p0yxiidpcg4cagxg2iyqcaapsng89rak4qyxmgails2fqg37")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/spf13/afero")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) -; ("go-golang-org-x-crypto-0.0.0-20190820162420-60c769a6c586" -; ,go-golang-org-x-crypto-0.0.0-20190820162420-60c769a6c586) -; ("go-github-com-pkg-sftp-1.10.1" ,go-github-com-pkg-sftp-1.10.1))) -; (home-page "https://github.com/spf13/afero") -; (synopsis "Overview") -; (description -; "This package provides a FileSystem Abstraction System for Go") -; (license license:asl2.0))) -; -;(define-public go-github-com-spf13-cast-1.3.1 -; (package -; (name "go-github-com-spf13-cast") -; (version "1.3.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/spf13/cast") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0lb84788glr0qzrq2ifi36rgvp96qrgywvxrr3ggq5hrbr38hgn1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/spf13/cast")) -; (propagated-inputs -; `(("go-github-com-stretchr-testify-1.2.2" -; ,go-github-com-stretchr-testify-1.2.2) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://github.com/spf13/cast") -; (synopsis "cast") -; (description "Package cast provides easy and safe casting in Go. -;") -; (license license:expat))) -; -;(define-public go-github-com-davecgh-go-spew-1.1.1 -; (package -; (name "go-github-com-davecgh-go-spew") -; (version "1.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/davecgh/go-spew") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/davecgh/go-spew")) -; (home-page "https://github.com/davecgh/go-spew") -; (synopsis "go-spew") -; (description -; "Go-spew implements a deep pretty printer for Go data structures to aid in -;debugging. A comprehensive suite of tests with 100% test coverage is provided -;to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage -;report. Go-spew is licensed under the liberal ISC license, so it may be used in -;open source or commercial projects.") -; (license license:isc))) -; -;(define-public go-github-com-stretchr-testify-1.2.2 -; (package -; (name "go-github-com-stretchr-testify") -; (version "1.2.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/testify") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0dlszlshlxbmmfxj5hlwgv3r22x0y1af45gn1vd198nvvs3pnvfs")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/testify")) -; (home-page "https://github.com/stretchr/testify") -; (synopsis "Testify - Thou Shalt Write Tests") -; (description -; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -;") -; (license license:expat))) -; -;(define-public go-github-com-spf13-jwalterweatherman-1.1.0 -; (package -; (name "go-github-com-spf13-jwalterweatherman") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/spf13/jwalterweatherman") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ywmkwci5zyd88ijym6f30fj5c0k2yayxarkmnazf5ybljv50q7b")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/spf13/jwalterweatherman")) -; (propagated-inputs -; `(("go-github-com-stretchr-testify-1.2.2" -; ,go-github-com-stretchr-testify-1.2.2) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://github.com/spf13/jwalterweatherman") -; (synopsis "jWalterWeatherman") -; (description -; "Seamless printing to the terminal (stdout) and logging to a io.Writer -;(file) thatâ\x80\x99s as easy to use as fmt.Println.") -; (license license:expat))) -; -;(define-public go-github-com-davecgh-go-spew-1.1.0 -; (package -; (name "go-github-com-davecgh-go-spew") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/davecgh/go-spew") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/davecgh/go-spew")) -; (home-page "https://github.com/davecgh/go-spew") -; (synopsis "go-spew") -; (description -; "Go-spew implements a deep pretty printer for Go data structures to aid in -;debugging. A comprehensive suite of tests with 100% test coverage is provided -;to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage -;report. Go-spew is licensed under the liberal ISC license, so it may be used in -;open source or commercial projects.") -; (license license:isc))) -; -;(define-public go-github-com-stretchr-objx-0.1.0 -; (package -; (name "go-github-com-stretchr-objx") -; (version "0.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/objx") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/objx")) -; (home-page "https://github.com/stretchr/objx") -; (synopsis "Objx") -; (description -; "Objx - Go package for dealing with maps, slices, JSON and other data. -;") -; (license license:expat))) -; -;(define-public go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c -; (package -; (name "go-gopkg-in-yaml-v3") -; (version "3.0.0-20200313102051-9f266ea9e77c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/yaml.v3") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1bbai3lzb50m0x2vwsdbagrbhvfylj9k1m32hgbqwldqx4p9ay35")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" -; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) -; (home-page "https://gopkg.in/yaml.v3") -; (synopsis "YAML support for the Go language") -; (description "Package yaml implements YAML support for the Go language. -;") -; (license #f))) -; -;(define-public go-github-com-stretchr-testify-1.7.0 -; (package -; (name "go-github-com-stretchr-testify") -; (version "1.7.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/testify") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ixgjsvafr3513pz3r6pmgk074s2dxkll0dadvl25gkf30rkmh10")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/testify")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" -; ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) -; ("go-github-com-stretchr-objx-0.1.0" -; ,go-github-com-stretchr-objx-0.1.0) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-davecgh-go-spew-1.1.0" -; ,go-github-com-davecgh-go-spew-1.1.0))) -; (home-page "https://github.com/stretchr/testify") -; (synopsis "Testify - Thou Shalt Write Tests") -; (description -; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -;") -; (license license:expat))) -; -;(define-public go-github-com-subosito-gotenv-1.2.0 -; (package -; (name "go-github-com-subosito-gotenv") -; (version "1.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/subosito/gotenv") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0mav91j7r4arjkpq5zcf9j74f6pww8ic53x43wy7kg3ibw31yjs5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/subosito/gotenv")) -; (home-page "https://github.com/subosito/gotenv") -; (synopsis "gotenv") -; (description -; "Package gotenv provides functionality to dynamically load the environment variables -;") -; (license license:expat))) -; -;(define-public go-gopkg-in-ini-v1-1.62.0 -; (package -; (name "go-gopkg-in-ini-v1") -; (version "1.62.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/ini.v1") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1dm9ydqyflasp5li22kb0w73s6kp2swii8naqfhnz64v171gmm5v")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/ini.v1" #:unpack-path "gopkg.in/ini.v1")) -; (home-page "https://gopkg.in/ini.v1") -; (synopsis "INI") -; (description -; "Package ini provides INI file read and write functionality in Go. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-spf13-viper-1.8.1 -; (package -; (name "go-github-com-spf13-viper") -; (version "1.8.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/spf13/viper") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0jcsvd9l05pv10rma6zicp44q2mlvxj0qlhnf4zcg2pymb5i0hq6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/spf13/viper")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) -; ("go-gopkg-in-ini-v1-1.62.0" ,go-gopkg-in-ini-v1-1.62.0) -; ("go-github-com-subosito-gotenv-1.2.0" -; ,go-github-com-subosito-gotenv-1.2.0) -; ("go-github-com-stretchr-testify-1.7.0" -; ,go-github-com-stretchr-testify-1.7.0) -; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) -; ("go-github-com-spf13-jwalterweatherman-1.1.0" -; ,go-github-com-spf13-jwalterweatherman-1.1.0) -; ("go-github-com-spf13-cast-1.3.1" ,go-github-com-spf13-cast-1.3.1) -; ("go-github-com-spf13-afero-1.6.0" ,go-github-com-spf13-afero-1.6.0) -; ("go-github-com-smartystreets-goconvey-1.6.4" -; ,go-github-com-smartystreets-goconvey-1.6.4) -; ("go-github-com-pelletier-go-toml-1.9.3" -; ,go-github-com-pelletier-go-toml-1.9.3) -; ("go-github-com-mitchellh-mapstructure-1.4.1" -; ,go-github-com-mitchellh-mapstructure-1.4.1) -; ("go-github-com-magiconair-properties-1.8.5" -; ,go-github-com-magiconair-properties-1.8.5) -; ("go-github-com-hashicorp-hcl-1.0.0" -; ,go-github-com-hashicorp-hcl-1.0.0) -; ("go-github-com-fsnotify-fsnotify-1.4.9" -; ,go-github-com-fsnotify-fsnotify-1.4.9) -; ("go-github-com-bketelsen-crypt-0.0.4" -; ,go-github-com-bketelsen-crypt-0.0.4))) -; (home-page "https://github.com/spf13/viper") -; (synopsis "Install") -; (description "Many Go projects are built using Viper including:") -; (license license:expat))) -; -;(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 -; (package -; (name "go-gopkg-in-check-v1") -; (version "0.0.0-20161208181325-20d25e280405") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/check.v1") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) -; (home-page "https://gopkg.in/check.v1") -; (synopsis "Instructions") -; (description -; "Package check is a rich testing extension for Go's testing package. -;") -; (license license:bsd-2))) -; -;(define-public go-gopkg-in-yaml-v2-2.4.0 -; (package -; (name "go-gopkg-in-yaml-v2") -; (version "2.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/yaml.v2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1pbmrpj7gcws34g8vwna4i2nhm9p6235piww36436xhyaa10cldr")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" -; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) -; (home-page "https://gopkg.in/yaml.v2") -; (synopsis "YAML support for the Go language") -; (description "Package yaml implements YAML support for the Go language. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-spf13-cobra-1.2.1 -; (package -; (name "go-github-com-spf13-cobra") -; (version "1.2.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/spf13/cobra") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "091kz3xnlsgpqb90fc5nhjr4yfr8b8sjnyl0zd4wm1fgzkpw09jh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/spf13/cobra")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) -; ("go-github-com-spf13-viper-1.8.1" ,go-github-com-spf13-viper-1.8.1) -; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) -; ("go-github-com-inconshreveable-mousetrap-1.0.0" -; ,go-github-com-inconshreveable-mousetrap-1.0.0) -; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" -; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0))) -; (home-page "https://github.com/spf13/cobra") -; (synopsis "Table of Contents") -; (description -; "Package cobra is a commander providing a simple interface to create powerful modern CLI interfaces. -;In addition to providing an interface, Cobra simultaneously provides a controller to organize your application code. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20210226172049-e18ecbb05110") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1vlq8mdscp7yfaa1lmyv03y5m4c2d67ydg2q1i6smkrxghn3zn3q")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) -; ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" -; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) -; ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" -; ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20210615035016-665e8c7367d1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "11n848csibdbv7b46zjyf4l7sphg37n9sjzqfy1ds7p1jyakwmnv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20201119102817-f84b799fce68") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1dvhqian5byzkcg1bnqzygqa6ccc6krc2q7j12pp1vhl3y7znnsg")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1 -; (package -; (name "go-golang-org-x-term") -; (version "0.0.0-20201126162022-7de9c90e9dd1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/term") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ba252xmv6qsvf1w1gcy98mngrj0vd4inbjw0lsklqvva65nljna")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/term")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" -; ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) -; (home-page "https://golang.org/x/term") -; (synopsis "Go terminal/console support") -; (description -; "Package term provides support functions for dealing with terminals, as -;commonly found on UNIX systems. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20180917221912-90fa682c2a6e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-text-0.3.3 -; (package -; (name "go-golang-org-x-text") -; (version "0.3.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/text") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "19pihqm3phyndmiw6i42pdv6z1rbvlqlsnhsyqf9gsnn0qnmqqlh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/text")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" -; ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) -; (home-page "https://golang.org/x/text") -; (synopsis "Go Text") -; (description -; "text is a repository of text-related packages related to internationalization -;(i18n) and localization (l10n), such as character encodings, text -;transformations, and locale-specific text handling. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20210711020723-a769d52b0f97 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20210711020723-a769d52b0f97") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1qdv4yfdl5fbsdgvxkki1yjwwn3whns381c0za74syxdvzhhgiaf")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) -; ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" -; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) -; ("go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1" -; ,go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1) -; ("go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110" -; ,go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110))) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-github-com-inconshreveable-mousetrap-1.0.0 -; (package -; (name "go-github-com-inconshreveable-mousetrap") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/inconshreveable/mousetrap") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1mn0kg48xkd74brf48qf5hzp0bc6g8cf5a77w895rl3qnlpfw152")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/inconshreveable/mousetrap")) -; (home-page "https://github.com/inconshreveable/mousetrap") -; (synopsis "mousetrap") -; (description "mousetrap is a tiny library that answers a single question.") -; (license license:asl2.0))) -; -;(define-public go-github-com-pmezard-go-difflib-1.0.0 -; (package -; (name "go-github-com-pmezard-go-difflib") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/pmezard/go-difflib") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/pmezard/go-difflib")) -; (home-page "https://github.com/pmezard/go-difflib") -; (synopsis "go-difflib") -; (description -; "Go-difflib is a partial port of python 3 difflib package. Its main goal -;was to make unified and context diff available in pure Go, mostly for -;testing purposes.") -; (license license:bsd-3))) -; -;(define-public go-github-com-sergi-go-diff-1.0.0 -; (package -; (name "go-github-com-sergi-go-diff") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/sergi/go-diff") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0swiazj8wphs2zmk1qgq75xza6m19snif94h2m6fi8dqkwqdl7c7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/sergi/go-diff")) -; (home-page "https://github.com/sergi/go-diff") -; (synopsis "go-diff") -; (description -; "go-diff offers algorithms to perform operations required for synchronizing plain text:") -; (license license:expat))) -; -;(define-public go-github-com-spf13-pflag-1.0.5 -; (package -; (name "go-github-com-spf13-pflag") -; (version "1.0.5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/spf13/pflag") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0gpmacngd0gpslnbkzi263f5ishigzgh6pbdv9hp092rnjl4nd31")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/spf13/pflag")) -; (home-page "https://github.com/spf13/pflag") -; (synopsis "Description") -; (description -; "Package pflag is a drop-in replacement for Go's flag package, implementing -;POSIX/GNU-style --flags. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-hpcng-sif-1.6.0 -; (package -; (name "go-github-com-hpcng-sif") -; (version "1.6.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/apptainer/sif") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0fz6h5zcaxk6v8vfx9lxny2bmwnmflvvx9jkyxydz6zlgrbn2qbb")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hpcng/sif")) -; (propagated-inputs -; `(("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) -; ("go-github-com-sergi-go-diff-1.0.0" -; ,go-github-com-sergi-go-diff-1.0.0) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-inconshreveable-mousetrap-1.0.0" -; ,go-github-com-inconshreveable-mousetrap-1.0.0) -; ("go-golang-org-x-crypto-0.0.0-20210711020723-a769d52b0f97" -; ,go-golang-org-x-crypto-0.0.0-20210711020723-a769d52b0f97) -; ("go-github-com-spf13-cobra-1.2.1" ,go-github-com-spf13-cobra-1.2.1) -; ("go-github-com-sebdah-goldie-v2-2.5.3" -; ,go-github-com-sebdah-goldie-v2-2.5.3) -; ("go-github-com-satori-go-uuid-1.2.1-0.20180404165556-75cca531ea76" -; ,go-github-com-satori-go-uuid-1.2.1-0.20180404165556-75cca531ea76))) -; (home-page "https://github.com/hpcng/sif") -; (synopsis "The Singularity Image Format (SIF)") -; (description -; "This module contains an open source implementation of the Singularity Image Format (SIF) that makes it easy to create complete and encapsulated container environments stored in a single file.") -; (license license:bsd-3))) -; -;(define-public go-github-com-kardianos-osext-0.0.0-20190222173326-2bc1f35cddc0 -; (package -; (name "go-github-com-kardianos-osext") -; (version "0.0.0-20190222173326-2bc1f35cddc0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kardianos/osext") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1pvrbrvmrf4mx0fxbfaphbzgqgwn8v6lkfk2vyrs0znxrs1xyc5r")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kardianos/osext")) -; (home-page "https://github.com/kardianos/osext") -; (synopsis "Extensions to the \"os\" package.") -; (description "Extensions to the standard \"os\" package. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-creack-pty-1.1.7 -; (package -; (name "go-github-com-creack-pty") -; (version "1.1.7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/creack/pty") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1plwwlk1i9b80zv8zdplvv81shfyc9gf0flydnydsh5sr3ib5vrc")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/creack/pty")) -; (home-page "https://github.com/creack/pty") -; (synopsis "pty") -; (description -; "Package pty provides functions for working with Unix terminals. -;") -; (license license:expat))) -; -;(define-public go-github-com-kr-pty-1.1.8 -; (package -; (name "go-github-com-kr-pty") -; (version "1.1.8") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kr/pty") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1vcl6f90n0f8s8b4fyh0832ilybjqcypqyj233lqj1hx62fvgdbk")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kr/pty")) -; (propagated-inputs -; `(("go-github-com-creack-pty-1.1.7" ,go-github-com-creack-pty-1.1.7))) -; (home-page "https://github.com/kr/pty") -; (synopsis "pty") -; (description -; "Package pty is a wrapper for github.com/creack/pty, which provides -;functions for working with Unix terminals. -;") -; (license license:expat))) -; -;(define-public go-github-com-opencontainers-go-digest-1.0.0 -; (package -; (name "go-github-com-opencontainers-go-digest") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/go-digest") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0i5acjajvr6hi9zb7gxwifd8w28y884cv7cx36adj8lngj647xbi")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/go-digest")) -; (home-page "https://github.com/opencontainers/go-digest") -; (synopsis "go-digest") -; (description -; "Package digest provides a generalized type to opaquely represent message -;digests and their operations within the registry. The Digest type is -;designed to serve as a flexible identifier in a content-addressable system. -;More importantly, it provides tools and wrappers to work with -;hash.Hash-based digests with little effort. -;") -; (license (list license:asl2.0 license:cc-by-sa4.0)))) -; -;(define-public go-github-com-opencontainers-image-spec-1.0.2 -; (package -; (name "go-github-com-opencontainers-image-spec") -; (version "1.0.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/image-spec") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1wcw1z39wjx338406ga86a41f5ird0yc4ab3c70nfhkpkvjjzhkm")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/image-spec")) -; (home-page "https://github.com/opencontainers/image-spec") -; (synopsis "OCI Image Format Specification") -; (description -; "The OCI Image Format project creates and maintains the software shipping container image format spec (OCI Image Format).") -; (license license:asl2.0))) -; -;(define-public go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417 -; (package -; (name "go-github-com-opencontainers-runtime-spec") -; (version "1.0.3-0.20210326190908-1c3f411f0417") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/runtime-spec") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1azk8z41ga8af35c966f06vrq9y9hwz6mkm59r3py5qaamzim3qq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) -; (home-page "https://github.com/opencontainers/runtime-spec") -; (synopsis "Open Container Initiative Runtime Specification") -; (description -; "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") -; (license license:asl2.0))) -; -;(define-public go-github-com-opencontainers-runtime-tools-0.9.1-0.20210326182921-59cdde06764b -; (package -; (name "go-github-com-opencontainers-runtime-tools") -; (version "0.9.1-0.20210326182921-59cdde06764b") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/runtime-tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0f4zy6x1rrrg10bphwijic30m3r4mq934zbavnci6jyi41l1w2r0")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/runtime-tools")) -; (home-page "https://github.com/opencontainers/runtime-tools") -; (synopsis "oci-runtime-tool") -; (description -; "oci-runtime-tool is a collection of tools for working with the @url{https://github.com/opencontainers/runtime-spec,OCI runtime specification}. -;To build from source code, runtime-tools requires Go 1.10.x or above.") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20191115151921-52ab43148777") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1kakxbqrb1w2vwg7r1896z68qcx2lfvimsl8cs2niiipbgpi6imx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-opencontainers-selinux-1.10.0 -; (package -; (name "go-github-com-opencontainers-selinux") -; (version "1.10.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/selinux") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "118q1d9py9zhym4jmyiivasmllkdnkp1zyx4brc6n2cfmxfph6gc")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/selinux")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777" -; ,go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777))) -; (home-page "https://github.com/opencontainers/selinux") -; (synopsis "selinux") -; (description "Common SELinux package used across the container ecosystem.") -; (license license:asl2.0))) -; -;(define-public go-github-com-adamkorcz-go-fuzz-headers-0.0.0-20210312213058-32f4d319f0d2 -; (package -; (name "go-github-com-adamkorcz-go-fuzz-headers") -; (version "0.0.0-20210312213058-32f4d319f0d2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/AdamKorcz/go-fuzz-headers") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0r14xxw8c7pkmln0n5vlrahf1785mr7mlyklmfpa11p9kk9pmq5j")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/AdamKorcz/go-fuzz-headers")) -; (home-page "https://github.com/AdamKorcz/go-fuzz-headers") -; (synopsis #f) -; (description #f) -; (license #f))) -; -;(define-public go-github-com-stretchr-testify-1.3.0 -; (package -; (name "go-github-com-stretchr-testify") -; (version "1.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/testify") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0wjchp2c8xbgcbbq32w3kvblk6q6yn533g78nxl6iskq6y95lxsy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/testify")) -; (propagated-inputs -; `(("go-github-com-stretchr-objx-0.1.0" -; ,go-github-com-stretchr-objx-0.1.0) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-davecgh-go-spew-1.1.0" -; ,go-github-com-davecgh-go-spew-1.1.0))) -; (home-page "https://github.com/stretchr/testify") -; (synopsis "Testify - Thou Shalt Write Tests") -; (description -; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -;") -; (license license:expat))) -; -;(define-public go-github-com-apex-logs-0.0.7 -; (package -; (name "go-github-com-apex-logs") -; (version "0.0.7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/apex/logs") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1h12q9sb7f4yjizajfxvjllzqab1s8scgqj22prwyfbbqg1ilchv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/apex/logs")) -; (propagated-inputs -; `(("go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0" -; ,go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0) -; ("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0))) -; (home-page "https://github.com/apex/logs") -; (synopsis "Example") -; (description "Go client for @url{https://apex.sh/logs/,Apex Logs}.") -; (license license:expat))) -; -;(define-public go-github-com-aphistic-golf-0.0.0-20180712155816-02c07f170c5a -; (package -; (name "go-github-com-aphistic-golf") -; (version "0.0.0-20180712155816-02c07f170c5a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/aphistic/golf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1qixab9bb29wqbr4nc5j3g25hq1j7am93f181rkj7a4qacncx763")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/aphistic/golf")) -; (home-page "https://github.com/aphistic/golf") -; (synopsis "golf") -; (description -; "This package provides logging capabilities using the GELF (@url{https://www.graylog.org/resources/gelf-2/,https://www.graylog.org/resources/gelf-2/}) log format -;") -; (license license:expat))) -; -;(define-public go-github-com-mattn-go-isatty-0.0.5 -; (package -; (name "go-github-com-mattn-go-isatty") -; (version "0.0.5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mattn/go-isatty") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "114d5xm8rfxplzd7nxz97gfngb4bhqy102szl084d1afcxsvm4aa")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mattn/go-isatty")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223" -; ,go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223))) -; (home-page "https://github.com/mattn/go-isatty") -; (synopsis "go-isatty") -; (description "Package isatty implements interface to isatty -;") -; (license license:expat))) -; -;(define-public go-github-com-mattn-go-colorable-0.1.1 -; (package -; (name "go-github-com-mattn-go-colorable") -; (version "0.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mattn/go-colorable") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0l640974j804c1yyjfgyxqlsivz0yrzmbql4mhcw2azryigkp08p")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mattn/go-colorable")) -; (propagated-inputs -; `(("go-github-com-mattn-go-isatty-0.0.5" -; ,go-github-com-mattn-go-isatty-0.0.5))) -; (home-page "https://github.com/mattn/go-colorable") -; (synopsis "go-colorable") -; (description "Colorable writer for windows.") -; (license license:expat))) -; -;(define-public go-github-com-mgutz-ansi-0.0.0-20170206155736-9520e82c474b -; (package -; (name "go-github-com-mgutz-ansi") -; (version "0.0.0-20170206155736-9520e82c474b") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mgutz/ansi") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "00bz22314j26736w1f0q4jy9d9dfaml17vn890n5zqy3cmvmww1j")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mgutz/ansi")) -; (home-page "https://github.com/mgutz/ansi") -; (synopsis "ansi") -; (description -; "Package ansi is a small, fast library to create ANSI colored strings and codes. -;") -; (license license:expat))) -; -;(define-public go-github-com-fsnotify-fsnotify-1.4.7 -; (package -; (name "go-github-com-fsnotify-fsnotify") -; (version "1.4.7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/fsnotify/fsnotify") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/fsnotify/fsnotify")) -; (home-page "https://github.com/fsnotify/fsnotify") -; (synopsis "File system notifications for Go") -; (description -; "Package fsnotify provides a platform-independent interface for file system notifications. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-hpcloud-tail-1.0.0 -; (package -; (name "go-github-com-hpcloud-tail") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hpcloud/tail") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1njpzc0pi1acg5zx9y6vj9xi6ksbsc5d387rd6904hy6rh2m6kn0")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hpcloud/tail")) -; (home-page "https://github.com/hpcloud/tail") -; (synopsis "Go package for tail-ing files") -; (description -; "This package provides a Go package striving to emulate the features of the BSD @code{tail} program.") -; (license license:expat))) -; -;(define-public go-github-com-onsi-ginkgo-1.6.0 -; (package -; (name "go-github-com-onsi-ginkgo") -; (version "1.6.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/onsi/ginkgo") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0x0gc89vgq38xhgmi2h22bhr73cf2gmk42g89nz89k8dgg9hhr25")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/onsi/ginkgo")) -; (home-page "https://github.com/onsi/ginkgo") -; (synopsis "Ginkgo 2.0 Release Candidate is available!") -; (description "Ginkgo is a BDD-style testing framework for Golang -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20180906233101-161cd47e91fd") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0254ld010iijygbzykib2vags1dc0wlmcmhgh4jl8iny159lhbcv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20180909124046-d0be0721c37e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "081wyvfnlf842dqg03raxfz6lldlxpmyh1prix9lmrrm65arxb12")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-gopkg-in-fsnotify-v1-1.4.7 -; (package -; (name "go-gopkg-in-fsnotify-v1") -; (version "1.4.7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/fsnotify.v1") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path -; "gopkg.in/fsnotify.v1" -; #:unpack-path -; "gopkg.in/fsnotify.v1")) -; (home-page "https://gopkg.in/fsnotify.v1") -; (synopsis "File system notifications for Go") -; (description -; "Package fsnotify provides a platform-independent interface for file system notifications. -;") -; (license license:bsd-3))) -; -;(define-public go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7 -; (package -; (name "go-gopkg-in-tomb-v1") -; (version "1.0.0-20141024135613-dd632973f1e7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/tomb.v1") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1lqmq1ag7s4b3gc3ddvr792c5xb5k6sfn0cchr3i2s7f1c231zjv")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/tomb.v1" #:unpack-path "gopkg.in/tomb.v1")) -; (home-page "https://gopkg.in/tomb.v1") -; (synopsis "Installation and usage") -; (description -; "The tomb package offers a conventional API for clean goroutine termination. -;") -; (license license:bsd-3))) -; -;(define-public go-gopkg-in-yaml-v2-2.2.1 -; (package -; (name "go-gopkg-in-yaml-v2") -; (version "2.2.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/yaml.v2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0dwjrs2lp2gdlscs7bsrmyc5yf6mm4fvgw71bzr9mv2qrd2q73s1")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" -; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) -; (home-page "https://gopkg.in/yaml.v2") -; (synopsis "YAML support for the Go language") -; (description "Package yaml implements YAML support for the Go language. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-onsi-gomega-1.5.0 -; (package -; (name "go-github-com-onsi-gomega") -; (version "1.5.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/onsi/gomega") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1n7i4hksdgv410m43v2sw14bl5vy59dkp6nlw5l76nibbh37syr9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/onsi/gomega")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1) -; ("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" -; ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) -; ("go-gopkg-in-fsnotify-v1-1.4.7" ,go-gopkg-in-fsnotify-v1-1.4.7) -; ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e" -; ,go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e) -; ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" -; ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) -; ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" -; ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) -; ("go-github-com-onsi-ginkgo-1.6.0" ,go-github-com-onsi-ginkgo-1.6.0) -; ("go-github-com-hpcloud-tail-1.0.0" ,go-github-com-hpcloud-tail-1.0.0) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0) -; ("go-github-com-fsnotify-fsnotify-1.4.7" -; ,go-github-com-fsnotify-fsnotify-1.4.7))) -; (home-page "https://github.com/onsi/gomega") -; (synopsis ": a BDD Testing Framework for Golang") -; (description -; "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library. -;") -; (license license:expat))) -; -;(define-public go-github-com-sergi-go-diff-1.0.0 -; (package -; (name "go-github-com-sergi-go-diff") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/sergi/go-diff") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0swiazj8wphs2zmk1qgq75xza6m19snif94h2m6fi8dqkwqdl7c7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/sergi/go-diff")) -; (home-page "https://github.com/sergi/go-diff") -; (synopsis "go-diff") -; (description -; "go-diff offers algorithms to perform operations required for synchronizing plain text:") -; (license license:expat))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20190426145343-a29dc8fdc734 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20190426145343-a29dc8fdc734") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "07f0jj4haqs0ywc1akk1qjwn5msl2j0pry1rxjkkbfcq4r6ihc1p")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" -; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) -; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" -; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-github-com-aphistic-sweet-0.2.0 -; (package -; (name "go-github-com-aphistic-sweet") -; (version "0.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/aphistic/sweet") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1bb4qagfxf6byqn2yx0vq24xfvisz3ah4w6bvqclc8cklvfngw43")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/aphistic/sweet")) -; (propagated-inputs -; `(("go-golang-org-x-crypto-0.0.0-20190426145343-a29dc8fdc734" -; ,go-golang-org-x-crypto-0.0.0-20190426145343-a29dc8fdc734) -; ("go-github-com-sergi-go-diff-1.0.0" -; ,go-github-com-sergi-go-diff-1.0.0) -; ("go-github-com-onsi-gomega-1.5.0" ,go-github-com-onsi-gomega-1.5.0) -; ("go-github-com-mgutz-ansi-0.0.0-20170206155736-9520e82c474b" -; ,go-github-com-mgutz-ansi-0.0.0-20170206155736-9520e82c474b) -; ("go-github-com-mattn-go-colorable-0.1.1" -; ,go-github-com-mattn-go-colorable-0.1.1))) -; (home-page "https://github.com/aphistic/sweet") -; (synopsis "sweet") -; (description -; "Sweet is a pluggable test runner capable of hooking into standard Go tests. It attempts to provide access to the standard Go test tool as close as possible while adding support for test suites and plugins that can hook into test results to add additional functionality.") -; (license license:expat))) -; -;(define-public go-github-com-jmespath-go-jmespath-0.0.0-20180206201540-c2b33e8439af -; (package -; (name "go-github-com-jmespath-go-jmespath") -; (version "0.0.0-20180206201540-c2b33e8439af") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/jmespath/go-jmespath") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1r6w7ydx8ydryxk3sfhzsk8m6f1nsik9jg3i1zhi69v4kfl4d5cz")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/jmespath/go-jmespath")) -; (home-page "https://github.com/jmespath/go-jmespath") -; (synopsis "go-jmespath - A JMESPath implementation in Go") -; (description -; "go-jmespath is a GO implementation of JMESPath, -;which is a query language for JSON. It will take a JSON -;document and transform it into another JSON document -;through a JMESPath expression.") -; (license license:asl2.0))) -; -;(define-public go-github-com-aws-aws-sdk-go-1.20.6 -; (package -; (name "go-github-com-aws-aws-sdk-go") -; (version "1.20.6") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/aws/aws-sdk-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "016vy5s9finyfgh08j7rvn2pnwymdgj2ydr59w57pysnri87mdwx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/aws/aws-sdk-go")) -; (propagated-inputs -; `(("go-github-com-jmespath-go-jmespath-0.0.0-20180206201540-c2b33e8439af" -; ,go-github-com-jmespath-go-jmespath-0.0.0-20180206201540-c2b33e8439af))) -; (home-page "https://github.com/aws/aws-sdk-go") -; (synopsis "AWS SDK for Go") -; (description -; "Package sdk is the official AWS SDK for the Go programming language. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-aybabtme-rgbterm-0.0.0-20170906152045-cc83f3b3ce59 -; (package -; (name "go-github-com-aybabtme-rgbterm") -; (version "0.0.0-20170906152045-cc83f3b3ce59") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/aybabtme/rgbterm") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0wvmxvjn64968ikvnxrflb1x8rlcwzpfl53fzbxff2axbx9lq50q")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/aybabtme/rgbterm")) -; (home-page "https://github.com/aybabtme/rgbterm") -; (synopsis "RGB terminal") -; (description -; "Package rgbterm colorizes bytes and strings using RGB colors, for a -;full range of pretty terminal strings. -;") -; (license #f))) -; -;(define-public go-github-com-fatih-color-1.7.0 -; (package -; (name "go-github-com-fatih-color") -; (version "1.7.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/fatih/color") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0v8msvg38r8d1iiq2i5r4xyfx0invhc941kjrsg5gzwvagv55inv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/fatih/color")) -; (home-page "https://github.com/fatih/color") -; (synopsis "color") -; (description -; "Package color is an ANSI color package to output colorized or SGR defined -;output to the standard output. The API can be used in several way, pick one -;that suits you. -;") -; (license license:expat))) -; -;(define-public go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515 -; (package -; (name "go-github-com-kr-logfmt") -; (version "0.0.0-20140226030751-b84e30acd515") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kr/logfmt") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "02ldzxgznrfdzvghfraslhgp19la1fczcbzh7wm2zdc6lmpd1qq9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kr/logfmt")) -; (home-page "https://github.com/kr/logfmt") -; (synopsis #f) -; (description -; "Package implements the decoding of logfmt key-value pairs. -;") -; (license license:expat))) -; -;(define-public go-github-com-go-logfmt-logfmt-0.4.0 -; (package -; (name "go-github-com-go-logfmt-logfmt") -; (version "0.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/go-logfmt/logfmt") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "06smxc112xmixz78nyvk3b2hmc7wasf2sl5vxj1xz62kqcq9lzm9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/go-logfmt/logfmt")) -; (propagated-inputs -; `(("go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515" -; ,go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515))) -; (home-page "https://github.com/go-logfmt/logfmt") -; (synopsis "logfmt") -; (description -; "Package logfmt implements utilities to marshal and unmarshal data in the -;logfmt format. The logfmt format records key/value pairs in a way that -;balances readability for humans and simplicity of computer parsing. It is -;most commonly used as a more human friendly alternative to JSON for -;structured logging. -;") -; (license license:expat))) -; -;(define-public go-github-com-golang-protobuf-1.3.1 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.3.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "15am4s4646qy6iv0g3kkqq52rzykqjhm4bf08dk0fy2r58knpsyl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-github-com-google-uuid-1.1.1 -; (package -; (name "go-github-com-google-uuid") -; (version "1.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/uuid") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0hfxcf9frkb57k6q0rdkrmnfs78ms21r1qfk9fhlqga2yh5xg8zb")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/uuid")) -; (home-page "https://github.com/google/uuid") -; (synopsis "uuid") -; (description "Package uuid generates and inspects UUIDs. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-jpillora-backoff-0.0.0-20180909062703-3050d21c67d7 -; (package -; (name "go-github-com-jpillora-backoff") -; (version "0.0.0-20180909062703-3050d21c67d7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/jpillora/backoff") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1nxapdx9xg5gwiscfhq7m0w14hj4gaxb4avmgf1mx9zd3jnw9jxv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/jpillora/backoff")) -; (home-page "https://github.com/jpillora/backoff") -; (synopsis "Backoff") -; (description -; "Package backoff provides an exponential-backoff implementation. -;") -; (license license:expat))) -; -;(define-public go-github-com-kr-pretty-0.2.0 -; (package -; (name "go-github-com-kr-pretty") -; (version "0.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kr/pretty") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ywbfzz1h3a3qd8rpkiqwi1dm4w8ls9ijb4x1b7567grns9f0vnp")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kr/pretty")) -; (propagated-inputs -; `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) -; (home-page "https://github.com/kr/pretty") -; (synopsis #f) -; (description -; "Package pretty provides pretty-printing for Go values. This is -;useful during debugging, to avoid wrapping long output lines in -;the terminal. -;") -; (license license:expat))) -; -;(define-public go-github-com-mattn-go-colorable-0.1.2 -; (package -; (name "go-github-com-mattn-go-colorable") -; (version "0.1.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mattn/go-colorable") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0512jm3wmzkkn7d99x9wflyqf48n5ri3npy1fqkq6l6adc5mni3n")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mattn/go-colorable")) -; (propagated-inputs -; `(("go-github-com-mattn-go-isatty-0.0.8" -; ,go-github-com-mattn-go-isatty-0.0.8))) -; (home-page "https://github.com/mattn/go-colorable") -; (synopsis "go-colorable") -; (description "Colorable writer for windows.") -; (license license:expat))) -; -;(define-public go-github-com-pkg-errors-0.8.1 -; (package -; (name "go-github-com-pkg-errors") -; (version "0.8.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/pkg/errors") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0g5qcb4d4fd96midz0zdk8b9kz8xkzwfa8kr1cliqbg8sxsy5vd1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/pkg/errors")) -; (home-page "https://github.com/pkg/errors") -; (synopsis "errors") -; (description "Package errors provides simple error handling primitives. -;") -; (license license:bsd-2))) -; -;(define-public go-github-com-rogpeppe-fastuuid-1.1.0 -; (package -; (name "go-github-com-rogpeppe-fastuuid") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/rogpeppe/fastuuid") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1jlif5pxyz3md02ij93kd2y2j1zz0ajc9k8azvn83vv6l3r5c1zg")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/rogpeppe/fastuuid")) -; (home-page "https://github.com/rogpeppe/fastuuid") -; (synopsis "fastuuid") -; (description -; "Package fastuuid provides fast UUID generation of 192 bit -;universally unique identifiers. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-smartystreets-go-aws-auth-0.0.0-20180515143844-0c1422d1fdb9 -; (package -; (name "go-github-com-smartystreets-go-aws-auth") -; (version "0.0.0-20180515143844-0c1422d1fdb9") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/smartystreets-archives/go-aws-auth") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0krfdpgn3gfii1z9fi8ydfw0wwfqyvp6w3rji7w92m528zkjl93d")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/smartystreets/go-aws-auth")) -; (home-page "https://github.com/smartystreets/go-aws-auth") -; (synopsis "go-aws-auth") -; (description -; "Package awsauth implements AWS request signing using Signed Signature Version 2, -;Signed Signature Version 3, and Signed Signature Version 4. Supports S3 and STS. -;") -; (license license:expat))) -; -;(define-public go-github-com-smartystreets-assertions-1.0.0 -; (package -; (name "go-github-com-smartystreets-assertions") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/smartystreets/assertions") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1188hs39zvil41sdnxs83h1hp319lfyc5n2rvd1xnhz1dh5qjjh4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/smartystreets/assertions")) -; (home-page "https://github.com/smartystreets/assertions") -; (synopsis #f) -; (description -; "Package assertions contains the implementations for all assertions which -;are referenced in goconvey's `convey` package -;(github.com/smartystreets/goconvey/convey) and gunit (github.com/smartystreets/gunit) -;for use with the So(...) method. -;They can also be used in traditional Go test functions and even in -;applications. -;") -; (license license:expat))) -; -;(define-public go-github-com-smartystreets-gunit-1.0.0 -; (package -; (name "go-github-com-smartystreets-gunit") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/smartystreets/gunit") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "11d09rl5qqpj36a311pjj8w5jkj83d5b8gdcsx8f1zn4j924sm5d")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/smartystreets/gunit")) -; (propagated-inputs -; `(("go-github-com-smartystreets-assertions-1.0.0" -; ,go-github-com-smartystreets-assertions-1.0.0))) -; (home-page "https://github.com/smartystreets/gunit") -; (synopsis "gunit") -; (description -; "Package gunit provides \"testing\" package hooks and convenience -;functions for writing tests in an xUnit style. -;See the README file and the examples folder for examples. -;") -; (license license:expat))) -; -;(define-public go-github-com-stretchr-testify-1.4.0 -; (package -; (name "go-github-com-stretchr-testify") -; (version "1.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/testify") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "187i5g88sxfy4vxpm7dw1gwv29pa2qaq475lxrdh5livh69wqfjb")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/testify")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) -; ("go-github-com-stretchr-objx-0.1.0" -; ,go-github-com-stretchr-objx-0.1.0) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-davecgh-go-spew-1.1.0" -; ,go-github-com-davecgh-go-spew-1.1.0))) -; (home-page "https://github.com/stretchr/testify") -; (synopsis "Testify - Thou Shalt Write Tests") -; (description -; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -;") -; (license license:expat))) -; -;(define-public go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0 -; (package -; (name "go-github-com-tj-assert") -; (version "0.0.0-20171129193455-018094318fb0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/tj/assert") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "15ika7izp5hkd10dm30apwfvpm0d1yl2rnxs6896q0svz9zvi2z3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/tj/assert")) -; (home-page "https://github.com/tj/assert") -; (synopsis "assert") -; (description -; "Package assert implements the same assertions as the `assert` package but -;stops test execution when a test fails. -;") -; (license license:expat))) -; -;(define-public go-github-com-tj-go-elastic-0.0.0-20171221160941-36157cbbebc2 -; (package -; (name "go-github-com-tj-go-elastic") -; (version "0.0.0-20171221160941-36157cbbebc2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/tj/go-elastic") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1r94vc4hbfvqvjz74n4mvsw4dy3vbyzlivb90kyn8vn76a4wqk69")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/tj/go-elastic")) -; (home-page "https://github.com/tj/go-elastic") -; (synopsis "go-elastic") -; (description -; "Package elastic provides an Elasticsearch client with AWS sigv4 support. -;") -; (license license:expat))) -; -;(define-public go-github-com-tj-go-kinesis-0.0.0-20171128231115-08b17f58cb1b -; (package -; (name "go-github-com-tj-go-kinesis") -; (version "0.0.0-20171128231115-08b17f58cb1b") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/tj/go-kinesis") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "108c6p5j6rhhc2cnc2v5368yfsw73y6lzlvz02vpvvjph8rhmld4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/tj/go-kinesis")) -; (home-page "https://github.com/tj/go-kinesis") -; (synopsis "go-kinesis") -; (description -; "Package kinesis implements a batch producer built on top of the official AWS SDK. -;") -; (license license:expat))) -; -;(define-public go-github-com-tj-go-spin-1.1.0 -; (package -; (name "go-github-com-tj-go-spin") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/tj/go-spin") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "11xr67991m5pwsy1dira3iwd0sr55vmn1cyjwmlqziw4bwpym64s")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/tj/go-spin")) -; (home-page "https://github.com/tj/go-spin") -; (synopsis #f) -; (description #f) -; (license #f))) -; -;(define-public go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20190620200207-3b0461eec859") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0l00c8l0a8xnv6qdpwfzxxsr58jggacgzdrwiprrfx2xqm37b6d5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20180917221912-90fa682c2a6e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-text-0.3.2 -; (package -; (name "go-golang-org-x-text") -; (version "0.3.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/text") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0flv9idw0jm5nm8lx25xqanbkqgfiym6619w575p7nrdh0riqwqh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/text")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" -; ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) -; (home-page "https://golang.org/x/text") -; (synopsis "Go Text") -; (description -; "text is a repository of text-related packages related to internationalization -;(i18n) and localization (l10n), such as character encodings, text -;transformations, and locale-specific text handling. -;") -; (license license:bsd-3))) -; -;(define-public go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15 -; (package -; (name "go-gopkg-in-check-v1") -; (version "1.0.0-20190902080502-41f04d3bba15") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/check.v1") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0vfk9czmlxmp6wndq8k17rhnjxal764mxfhrccza7nwlia760pjy")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) -; (home-page "https://gopkg.in/check.v1") -; (synopsis "Instructions") -; (description -; "Package check is a rich testing extension for Go's testing package. -;") -; (license license:bsd-2))) -; -;(define-public go-github-com-apex-log-1.4.0 -; (package -; (name "go-github-com-apex-log") -; (version "1.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/apex/log") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0711096f04dyjk2vgj5b50491fl36wciwbq80xwvns5wwkqdg2z5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/apex/log")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" -; ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) -; ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) -; ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" -; ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) -; ("go-github-com-tj-go-spin-1.1.0" ,go-github-com-tj-go-spin-1.1.0) -; ("go-github-com-tj-go-kinesis-0.0.0-20171128231115-08b17f58cb1b" -; ,go-github-com-tj-go-kinesis-0.0.0-20171128231115-08b17f58cb1b) -; ("go-github-com-tj-go-elastic-0.0.0-20171221160941-36157cbbebc2" -; ,go-github-com-tj-go-elastic-0.0.0-20171221160941-36157cbbebc2) -; ("go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0" -; ,go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0) -; ("go-github-com-stretchr-testify-1.4.0" -; ,go-github-com-stretchr-testify-1.4.0) -; ("go-github-com-smartystreets-gunit-1.0.0" -; ,go-github-com-smartystreets-gunit-1.0.0) -; ("go-github-com-smartystreets-go-aws-auth-0.0.0-20180515143844-0c1422d1fdb9" -; ,go-github-com-smartystreets-go-aws-auth-0.0.0-20180515143844-0c1422d1fdb9) -; ("go-github-com-rogpeppe-fastuuid-1.1.0" -; ,go-github-com-rogpeppe-fastuuid-1.1.0) -; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) -; ("go-github-com-mattn-go-colorable-0.1.2" -; ,go-github-com-mattn-go-colorable-0.1.2) -; ("go-github-com-kr-pretty-0.2.0" ,go-github-com-kr-pretty-0.2.0) -; ("go-github-com-jpillora-backoff-0.0.0-20180909062703-3050d21c67d7" -; ,go-github-com-jpillora-backoff-0.0.0-20180909062703-3050d21c67d7) -; ("go-github-com-google-uuid-1.1.1" ,go-github-com-google-uuid-1.1.1) -; ("go-github-com-golang-protobuf-1.3.1" -; ,go-github-com-golang-protobuf-1.3.1) -; ("go-github-com-go-logfmt-logfmt-0.4.0" -; ,go-github-com-go-logfmt-logfmt-0.4.0) -; ("go-github-com-fatih-color-1.7.0" ,go-github-com-fatih-color-1.7.0) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1) -; ("go-github-com-aybabtme-rgbterm-0.0.0-20170906152045-cc83f3b3ce59" -; ,go-github-com-aybabtme-rgbterm-0.0.0-20170906152045-cc83f3b3ce59) -; ("go-github-com-aws-aws-sdk-go-1.20.6" -; ,go-github-com-aws-aws-sdk-go-1.20.6) -; ("go-github-com-aphistic-sweet-0.2.0" -; ,go-github-com-aphistic-sweet-0.2.0) -; ("go-github-com-aphistic-golf-0.0.0-20180712155816-02c07f170c5a" -; ,go-github-com-aphistic-golf-0.0.0-20180712155816-02c07f170c5a) -; ("go-github-com-apex-logs-0.0.7" ,go-github-com-apex-logs-0.0.7))) -; (home-page "https://github.com/apex/log") -; (synopsis "Handlers") -; (description -; "Package log implements a simple structured logging API designed with few assumptions. Designed for -;centralized logging solutions such as Kinesis which require encoding and decoding before fanning-out -;to handlers. -;") -; (license license:expat))) -; -;(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0 -; (package -; (name "go-github-com-cpuguy83-go-md2man-v2") -; (version "2.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/cpuguy83/go-md2man") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) -; (propagated-inputs -; `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" -; ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) -; ("go-github-com-russross-blackfriday-v2-2.0.1" -; ,go-github-com-russross-blackfriday-v2-2.0.1) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0))) -; (home-page "https://github.com/cpuguy83/go-md2man") -; (synopsis "go-md2man") -; (description "Converts markdown into roff (man pages).") -; (license license:expat))) -; -;(define-public go-github-com-cyphar-filepath-securejoin-0.2.2 -; (package -; (name "go-github-com-cyphar-filepath-securejoin") -; (version "0.2.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/cyphar/filepath-securejoin") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0id32zjb92wm569m29nfrzz5mw9z1glr3klayr6j134pp4h1sgq4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/cyphar/filepath-securejoin")) -; (home-page "https://github.com/cyphar/filepath-securejoin") -; (synopsis #f) -; (description -; "Package securejoin is an implementation of the hopefully-soon-to-be-included -;SecureJoin helper that is meant to be part of the \"path/filepath\" package. -;The purpose of this project is to provide a PoC implementation to make the -;SecureJoin proposal (@url{https://github.com/golang/go/issues/20126,https://github.com/golang/go/issues/20126}) more -;tangible. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-docker-go-units-0.4.0 -; (package -; (name "go-github-com-docker-go-units") -; (version "0.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/docker/go-units") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0k8gja8ql4pqg5rzmqvka42vjfs6rzablak87whcnqba6qxpimvz")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/docker/go-units")) -; (home-page "https://github.com/docker/go-units") -; (synopsis "Introduction") -; (description -; "Package units provides helper function to parse and print size and time units -;in human-readable format. -;") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-protobuf-1.23.0 -; (package -; (name "go-google-golang-org-protobuf") -; (version "1.23.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "03yan0m1v0zmlr935p4n24fd376mznsg85zy8sywbgisls4s1bzy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.4.0" -; ,go-github-com-golang-protobuf-1.4.0))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.4.2 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.4.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0m5z81im4nsyfgarjhppayk4hqnrwswr3nix9mj8pff8x9jvcjqw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.23.0" -; ,go-google-golang-org-protobuf-1.23.0) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0))) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-github-com-google-go-cmp-0.5.0 -; (package -; (name "go-github-com-google-go-cmp") -; (version "0.5.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/go-cmp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "04pzp583p6b32y34c6jygfxarff9qjs39rarvfh6467z24sdd9k4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/go-cmp")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" -; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) -; (home-page "https://github.com/google/go-cmp") -; (synopsis "Package for equality of Go values") -; (description -; "This package is intended to be a more powerful and safer alternative to -;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") -; (license license:bsd-3))) -; -;(define-public go-github-com-klauspost-compress-1.11.3 -; (package -; (name "go-github-com-klauspost-compress") -; (version "1.11.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/klauspost/compress") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "04wpilw6072fh2wd492ma1nw4br7bvz466mj0vi2m1g4w6d0z88z")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/klauspost/compress")) -; (home-page "https://github.com/klauspost/compress") -; (synopsis "compress") -; (description "This package provides various compression algorithms.") -; (license #f))) -; -;(define-public go-github-com-klauspost-pgzip-1.2.4 -; (package -; (name "go-github-com-klauspost-pgzip") -; (version "1.2.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/klauspost/pgzip") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0mnhfdn0isbkra455jynqjbmrwymx09shlbzbyvgfycih3nbrif0")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/klauspost/pgzip")) -; (home-page "https://github.com/klauspost/pgzip") -; (synopsis "pgzip") -; (description -; "Package pgzip implements reading and writing of gzip format compressed files, -;as specified in @url{https://rfc-editor.org/rfc/rfc1952.html,RFC 1952}. -;") -; (license license:expat))) -; -;(define-public go-github-com-creack-pty-1.1.9 -; (package -; (name "go-github-com-creack-pty") -; (version "1.1.9") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/creack/pty") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1v52599qq76dwq742mffakzj6mxqqccv2szn3hjicjld56nmd2d3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/creack/pty")) -; (home-page "https://github.com/creack/pty") -; (synopsis "pty") -; (description -; "Package pty provides functions for working with Unix terminals. -;") -; (license license:expat))) -; -;(define-public go-github-com-kr-text-0.2.0 -; (package -; (name "go-github-com-kr-text") -; (version "0.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kr/text") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0hf58ypz6rxsw6nx3i856whir9lvy4sdx946wbw1nfaf2rdmr9vx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kr/text")) -; (propagated-inputs -; `(("go-github-com-creack-pty-1.1.9" ,go-github-com-creack-pty-1.1.9))) -; (home-page "https://github.com/kr/text") -; (synopsis #f) -; (description -; "Package text provides rudimentary functions for manipulating text in -;paragraphs. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-sys-0.0.0-20200116001909-b77594299b42 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20200116001909-b77594299b42") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0isfm6kmh4fjhh6m7mrb3zvdjka2y31c5habr5kydl7rg0lwkabv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-mattn-go-isatty-0.0.12 -; (package -; (name "go-github-com-mattn-go-isatty") -; (version "0.0.12") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mattn/go-isatty") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1dfsh27d52wmz0nmmzm2382pfrs2fcijvh6cgir7jbb4pnigr5w4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mattn/go-isatty")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20200116001909-b77594299b42" -; ,go-golang-org-x-sys-0.0.0-20200116001909-b77594299b42))) -; (home-page "https://github.com/mattn/go-isatty") -; (synopsis "go-isatty") -; (description "Package isatty implements interface to isatty -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-sys-0.0.0-20200223170610-d5e6a3e2c0ae -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20200223170610-d5e6a3e2c0ae") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0lz7vm5dz2p14fzq2j4m1l9p392cl0fa73aaf45gln07ylfajk4n")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-mattn-go-colorable-0.1.6 -; (package -; (name "go-github-com-mattn-go-colorable") -; (version "0.1.6") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mattn/go-colorable") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0zv9ix7g0qf71jdhv7gbab9hjfkgbxl22kwhpz9ck1y6m4g1zxaw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mattn/go-colorable")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20200223170610-d5e6a3e2c0ae" -; ,go-golang-org-x-sys-0.0.0-20200223170610-d5e6a3e2c0ae) -; ("go-github-com-mattn-go-isatty-0.0.12" -; ,go-github-com-mattn-go-isatty-0.0.12))) -; (home-page "https://github.com/mattn/go-colorable") -; (synopsis "go-colorable") -; (description "Colorable writer for windows.") -; (license license:expat))) -; -;(define-public go-github-com-mohae-deepcopy-0.0.0-20170929034955-c48cc78d4826 -; (package -; (name "go-github-com-mohae-deepcopy") -; (version "0.0.0-20170929034955-c48cc78d4826") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mohae/deepcopy") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0jdhsz0hsbn0k45rmvm39knbvs024j24ay2q65k5ih8ql8m2c0sd")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mohae/deepcopy")) -; (home-page "https://github.com/mohae/deepcopy") -; (synopsis "deepCopy") -; (description -; "deepcopy makes deep copies of things. A standard copy will copy the -;pointers: deep copy copies the values pointed to. Unexported field -;values are not copied. -;") -; (license license:expat))) -; -;(define-public go-github-com-kr-pty-1.1.1 -; (package -; (name "go-github-com-kr-pty") -; (version "1.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kr/pty") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0383f0mb9kqjvncqrfpidsf8y6ns5zlrc91c6a74xpyxjwvzl2y6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kr/pty")) -; (home-page "https://github.com/kr/pty") -; (synopsis "pty") -; (description -; "Package pty is a wrapper for github.com/creack/pty, which provides -;functions for working with Unix terminals. -;") -; (license license:expat))) -; -;(define-public go-github-com-kr-text-0.1.0 -; (package -; (name "go-github-com-kr-text") -; (version "0.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kr/text") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1gm5bsl01apvc84bw06hasawyqm4q84vx1pm32wr9jnd7a8vjgj1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kr/text")) -; (propagated-inputs -; `(("go-github-com-kr-pty-1.1.1" ,go-github-com-kr-pty-1.1.1))) -; (home-page "https://github.com/kr/text") -; (synopsis #f) -; (description -; "Package text provides rudimentary functions for manipulating text in -;paragraphs. -;") -; (license license:expat))) -; -;(define-public go-github-com-niemeyer-pretty-0.0.0-20200227124842-a10e7caefd8e -; (package -; (name "go-github-com-niemeyer-pretty") -; (version "0.0.0-20200227124842-a10e7caefd8e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/niemeyer/pretty") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1jmazh4xzaa3v6g46hz60q2z7nmqs9l9cxdzmmscn3kbcs2znq4v")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/niemeyer/pretty")) -; (propagated-inputs -; `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) -; (home-page "https://github.com/niemeyer/pretty") -; (synopsis #f) -; (description -; "Package pretty provides pretty-printing for Go values. This is -;useful during debugging, to avoid wrapping long output lines in -;the terminal. -;") -; (license license:expat))) -; -;(define-public go-github-com-opencontainers-go-digest-1.0.0 -; (package -; (name "go-github-com-opencontainers-go-digest") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/go-digest") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0i5acjajvr6hi9zb7gxwifd8w28y884cv7cx36adj8lngj647xbi")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/go-digest")) -; (home-page "https://github.com/opencontainers/go-digest") -; (synopsis "go-digest") -; (description -; "Package digest provides a generalized type to opaquely represent message -;digests and their operations within the registry. The Digest type is -;designed to serve as a flexible identifier in a content-addressable system. -;More importantly, it provides tools and wrappers to work with -;hash.Hash-based digests with little effort. -;") -; (license (list license:asl2.0 license:cc-by-sa4.0)))) -; -;(define-public go-github-com-opencontainers-image-spec-1.0.1 -; (package -; (name "go-github-com-opencontainers-image-spec") -; (version "1.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/image-spec") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "03dvbj3dln8c55v9gp79mgmz2yi2ws3r08iyz2fk41y3i22iaw1q")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/image-spec")) -; (home-page "https://github.com/opencontainers/image-spec") -; (synopsis "OCI Image Format Specification") -; (description -; "The OCI Image Format project creates and maintains the software shipping container image format spec (OCI Image Format).") -; (license license:asl2.0))) -; -;(define-public go-github-com-opencontainers-runc-1.0.0-rc90 -; (package -; (name "go-github-com-opencontainers-runc") -; (version "1.0.0-rc90") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/runc") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0pi3rvj585997m4z9ljkxz2z9yxf9p2jr0pmqbqrc7bc95f5hagk")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/runc")) -; (home-page "https://github.com/opencontainers/runc") -; (synopsis "runc") -; (description -; "@code{runc} is a CLI tool for spawning and running containers according to the OCI specification.") -; (license license:asl2.0))) -; -;(define-public go-github-com-opencontainers-runtime-spec-1.0.2 -; (package -; (name "go-github-com-opencontainers-runtime-spec") -; (version "1.0.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/runtime-spec") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "19w981vcmd5lp2hy0630x6ayb8zz17n2vxqm2py5mg945xflcizg")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) -; (home-page "https://github.com/opencontainers/runtime-spec") -; (synopsis "Open Container Initiative Runtime Specification") -; (description -; "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") -; (license license:asl2.0))) -; -;(define-public go-github-com-pkg-errors-0.9.1 -; (package -; (name "go-github-com-pkg-errors") -; (version "0.9.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/pkg/errors") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1761pybhc2kqr6v5fm8faj08x9bql8427yqg6vnfv6nhrasx1mwq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/pkg/errors")) -; (home-page "https://github.com/pkg/errors") -; (synopsis "errors") -; (description "Package errors provides simple error handling primitives. -;") -; (license license:bsd-2))) -; -;(define-public go-github-com-rootless-containers-proto-0.1.0 -; (package -; (name "go-github-com-rootless-containers-proto") -; (version "0.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/rootless-containers/proto") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1yik3b2fxpdkhplni8saabpvf43wnnz4wh6fapak29mkj3lx3mfh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/rootless-containers/proto")) -; (home-page "https://github.com/rootless-containers/proto") -; (synopsis #f) -; (description -; "This project contains the @url{https://developers.google.com/protocol-buffers/,protobuf} definition of the -;@code{user.rootlesscontainers} extended attribute. The main purpose of this -;attribute is to allow for a interoperable and standardised way of emulating -;persistent syscalls in a @url{https://rootlesscontaine.rs/,rootless container} (syscalls -;such as @code{chown(2)} which would ordinarily fail).") -; (license license:asl2.0))) -; -;(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.3 -; (package -; (name "go-github-com-konsorten-go-windows-terminal-sequences") -; (version "1.0.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/konsorten/go-windows-terminal-sequences") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1yrsd4s8vhjnxhwbigirymz89dn6qfjnhn28i33vvvdgf96j6ypl")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) -; (home-page "https://github.com/konsorten/go-windows-terminal-sequences") -; (synopsis "Windows Terminal Sequences") -; (description -; "This library allow for enabling Windows terminal color support for Go.") -; (license license:expat))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190422165155-953cdadca894") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0gkha4whk8xkcv3isigbs250akag99isxnd3v9xmy0kl3g88hxy1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-sirupsen-logrus-1.6.0 -; (package -; (name "go-github-com-sirupsen-logrus") -; (version "1.6.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/sirupsen/logrus") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1zf9is1yxxnna0d1pyag2m9ziy3l27zb2j92p9msm1gx5jjrvzzj")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/sirupsen/logrus")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894" -; ,go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894) -; ("go-github-com-stretchr-testify-1.2.2" -; ,go-github-com-stretchr-testify-1.2.2) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.3" -; ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.3) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://github.com/sirupsen/logrus") -; (synopsis "Logrus") -; (description -; "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. -;") -; (license license:expat))) -; -;(define-public go-github-com-davecgh-go-spew-1.1.0 -; (package -; (name "go-github-com-davecgh-go-spew") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/davecgh/go-spew") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/davecgh/go-spew")) -; (home-page "https://github.com/davecgh/go-spew") -; (synopsis "go-spew") -; (description -; "Go-spew implements a deep pretty printer for Go data structures to aid in -;debugging. A comprehensive suite of tests with 100% test coverage is provided -;to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage -;report. Go-spew is licensed under the liberal ISC license, so it may be used in -;open source or commercial projects.") -; (license license:isc))) -; -;(define-public go-github-com-stretchr-objx-0.1.0 -; (package -; (name "go-github-com-stretchr-objx") -; (version "0.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/objx") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/objx")) -; (home-page "https://github.com/stretchr/objx") -; (synopsis "Objx") -; (description -; "Objx - Go package for dealing with maps, slices, JSON and other data. -;") -; (license license:expat))) -; -;(define-public go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c -; (package -; (name "go-gopkg-in-yaml-v3") -; (version "3.0.0-20200313102051-9f266ea9e77c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/yaml.v3") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1bbai3lzb50m0x2vwsdbagrbhvfylj9k1m32hgbqwldqx4p9ay35")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" -; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) -; (home-page "https://gopkg.in/yaml.v3") -; (synopsis "YAML support for the Go language") -; (description "Package yaml implements YAML support for the Go language. -;") -; (license #f))) -; -;(define-public go-github-com-stretchr-testify-1.6.1 -; (package -; (name "go-github-com-stretchr-testify") -; (version "1.6.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/testify") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1yhiqqzjvi63pf01rgzx68gqkkvjx03fvl5wk30br5l6s81s090l")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/testify")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" -; ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) -; ("go-github-com-stretchr-objx-0.1.0" -; ,go-github-com-stretchr-objx-0.1.0) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-davecgh-go-spew-1.1.0" -; ,go-github-com-davecgh-go-spew-1.1.0))) -; (home-page "https://github.com/stretchr/testify") -; (synopsis "Testify - Thou Shalt Write Tests") -; (description -; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -;") -; (license license:expat))) -; -;(define-public go-gopkg-in-yaml-v3-3.0.0-20200605160147-a5ece683394c -; (package -; (name "go-gopkg-in-yaml-v3") -; (version "3.0.0-20200605160147-a5ece683394c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/yaml.v3") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "03cm7c3p5fh0aa8vnxv5010dgqqr268ivb480ix1salxx3396w68")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" -; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) -; (home-page "https://gopkg.in/yaml.v3") -; (synopsis "YAML support for the Go language") -; (description "Package yaml implements YAML support for the Go language. -;") -; (license #f))) -; -;(define-public go-github-com-tj-assert-0.0.3 -; (package -; (name "go-github-com-tj-assert") -; (version "0.0.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/tj/assert") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1j5swk3fjq1h5fpqkipddz2ccnbidr7qrpm5dpdaflg9q5jnc673")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/tj/assert")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v3-3.0.0-20200605160147-a5ece683394c" -; ,go-gopkg-in-yaml-v3-3.0.0-20200605160147-a5ece683394c) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://github.com/tj/assert") -; (synopsis "assert") -; (description -; "Package assert implements the same assertions as the `assert` package but -;stops test execution when a test fails. -;") -; (license license:expat))) -; -;(define-public go-github-com-russross-blackfriday-v2-2.0.1 -; (package -; (name "go-github-com-russross-blackfriday-v2") -; (version "2.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/russross/blackfriday") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0nlz7isdd4rgnwzs68499hlwicxz34j2k2a0b8jy0y7ycd2bcr5j")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/russross/blackfriday/v2")) -; (home-page "https://github.com/russross/blackfriday") -; (synopsis "Blackfriday") -; (description "Package blackfriday is a markdown processor. -;") -; (license license:bsd-2))) -; -;(define-public go-github-com-shurcool-sanitized-anchor-name-1.0.0 -; (package -; (name "go-github-com-shurcool-sanitized-anchor-name") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/shurcooL/sanitized_anchor_name") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1gv9p2nr46z80dnfjsklc6zxbgk96349sdsxjz05f3z6wb6m5l8f")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/shurcooL/sanitized_anchor_name")) -; (home-page "https://github.com/shurcooL/sanitized_anchor_name") -; (synopsis "sanitized_anchor_name") -; (description -; "Package sanitized_anchor_name provides a func to create sanitized anchor names. -;") -; (license license:expat))) -; -;(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d -; (package -; (name "go-github-com-cpuguy83-go-md2man-v2") -; (version "2.0.0-20190314233015-f79a8a8ca69d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/cpuguy83/go-md2man") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) -; (propagated-inputs -; `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" -; ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) -; ("go-github-com-russross-blackfriday-v2-2.0.1" -; ,go-github-com-russross-blackfriday-v2-2.0.1) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0))) -; (home-page "https://github.com/cpuguy83/go-md2man") -; (synopsis "go-md2man") -; (description "Converts markdown into roff (man pages).") -; (license license:expat))) -; -;(define-public go-gopkg-in-yaml-v2-2.2.2 -; (package -; (name "go-gopkg-in-yaml-v2") -; (version "2.2.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/yaml.v2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "01wj12jzsdqlnidpyjssmj0r4yavlqy7dwrg7adqd8dicjc4ncsa")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" -; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) -; (home-page "https://gopkg.in/yaml.v2") -; (synopsis "YAML support for the Go language") -; (description "Package yaml implements YAML support for the Go language. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-urfave-cli-1.22.4 -; (package -; (name "go-github-com-urfave-cli") -; (version "1.22.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/urfave/cli") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1s7frsmiih4wh8vpx9z3ck4667c6vpjrmba7b9ymnv1p9khyg8wc")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/urfave/cli")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) -; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d" -; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d) -; ("go-github-com-burntsushi-toml-0.3.1" -; ,go-github-com-burntsushi-toml-0.3.1))) -; (home-page "https://github.com/urfave/cli") -; (synopsis "cli") -; (description -; "Package cli provides a minimal framework for creating and organizing command line -;Go applications. cli is designed to be easy to understand and write, the most simple -;cli application can be written as follows: -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190222072716-a9d3bda3a223") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1w45zc13xrjzl19s1sx74r5mg3lf2z2nm13wygcdq5r5pyjlhdz9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-mattn-go-isatty-0.0.8 -; (package -; (name "go-github-com-mattn-go-isatty") -; (version "0.0.8") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mattn/go-isatty") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0rqfh1rj6f5wm8p2ky7inm8g10152p7w6n2cli17kf9gad797i8h")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mattn/go-isatty")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223" -; ,go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223))) -; (home-page "https://github.com/mattn/go-isatty") -; (synopsis "go-isatty") -; (description "Package isatty implements interface to isatty -;") -; (license license:expat))) -; -;(define-public go-github-com-mattn-go-colorable-0.1.4 -; (package -; (name "go-github-com-mattn-go-colorable") -; (version "0.1.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mattn/go-colorable") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1yxcz08kminqr1221zxpibnbzfcgs3fafin0z9zqb3gqvf74jywz")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mattn/go-colorable")) -; (propagated-inputs -; `(("go-github-com-mattn-go-isatty-0.0.8" -; ,go-github-com-mattn-go-isatty-0.0.8))) -; (home-page "https://github.com/mattn/go-colorable") -; (synopsis "go-colorable") -; (description "Colorable writer for windows.") -; (license license:expat))) -; -;(define-public go-github-com-mattn-go-isatty-0.0.11 -; (package -; (name "go-github-com-mattn-go-isatty") -; (version "0.0.11") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mattn/go-isatty") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0h671sv7hfprja495kavazkalkx7xzaqksjh13brcnwq67ijrali")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mattn/go-isatty")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037" -; ,go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037))) -; (home-page "https://github.com/mattn/go-isatty") -; (synopsis "go-isatty") -; (description "Package isatty implements interface to isatty -;") -; (license license:expat))) -; -;(define-public go-github-com-fatih-color-1.9.0 -; (package -; (name "go-github-com-fatih-color") -; (version "1.9.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/fatih/color") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "086z8ssmr1fn9ba4mqnw7pnccfpys6l5yfhvycv1gdrsk7n27mvs")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/fatih/color")) -; (propagated-inputs -; `(("go-github-com-mattn-go-isatty-0.0.11" -; ,go-github-com-mattn-go-isatty-0.0.11) -; ("go-github-com-mattn-go-colorable-0.1.4" -; ,go-github-com-mattn-go-colorable-0.1.4))) -; (home-page "https://github.com/fatih/color") -; (synopsis "color") -; (description -; "Package color is an ANSI color package to output colorized or SGR defined -;output to the standard output. The API can be used in several way, pick one -;that suits you. -;") -; (license license:expat))) -; -;(define-public go-github-com-davecgh-go-spew-1.1.1 -; (package -; (name "go-github-com-davecgh-go-spew") -; (version "1.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/davecgh/go-spew") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/davecgh/go-spew")) -; (home-page "https://github.com/davecgh/go-spew") -; (synopsis "go-spew") -; (description -; "Go-spew implements a deep pretty printer for Go data structures to aid in -;debugging. A comprehensive suite of tests with 100% test coverage is provided -;to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage -;report. Go-spew is licensed under the liberal ISC license, so it may be used in -;open source or commercial projects.") -; (license license:isc))) -; -;(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.1 -; (package -; (name "go-github-com-konsorten-go-windows-terminal-sequences") -; (version "1.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/konsorten/go-windows-terminal-sequences") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1lchgf27n276vma6iyxa0v1xds68n2g8lih5lavqnx5x6q5pw2ip")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) -; (home-page "https://github.com/konsorten/go-windows-terminal-sequences") -; (synopsis "Windows Terminal Sequences") -; (description -; "This library allow for enabling Windows terminal color support for Go.") -; (license license:expat))) -; -;(define-public go-github-com-pmezard-go-difflib-1.0.0 -; (package -; (name "go-github-com-pmezard-go-difflib") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/pmezard/go-difflib") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/pmezard/go-difflib")) -; (home-page "https://github.com/pmezard/go-difflib") -; (synopsis "go-difflib") -; (description -; "Go-difflib is a partial port of python 3 difflib package. Its main goal -;was to make unified and context diff available in pure Go, mostly for -;testing purposes.") -; (license license:bsd-3))) -; -;(define-public go-github-com-stretchr-objx-0.1.1 -; (package -; (name "go-github-com-stretchr-objx") -; (version "0.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/objx") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0iph0qmpyqg4kwv8jsx6a56a7hhqq8swrazv40ycxk9rzr0s8yls")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/objx")) -; (home-page "https://github.com/stretchr/objx") -; (synopsis "Objx") -; (description -; "Objx - Go package for dealing with maps, slices, JSON and other data. -;") -; (license license:expat))) -; -;(define-public go-github-com-stretchr-testify-1.2.2 -; (package -; (name "go-github-com-stretchr-testify") -; (version "1.2.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/testify") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0dlszlshlxbmmfxj5hlwgv3r22x0y1af45gn1vd198nvvs3pnvfs")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/testify")) -; (home-page "https://github.com/stretchr/testify") -; (synopsis "Testify - Thou Shalt Write Tests") -; (description -; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20180904163835-0709b304e793 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20180904163835-0709b304e793") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0i05s09y5pavmfh71fgih7syxg58x7a4krgd8am6d3mnahnmab5c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20180905080454-ebe1bf3edb33") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0rkspxyjxdmc9f4n09hgkwj8jjd8z5p8mc9z8vwqwqcwrqv4sg7c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-sirupsen-logrus-1.3.0 -; (package -; (name "go-github-com-sirupsen-logrus") -; (version "1.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/sirupsen/logrus") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ib7k8cwxn53dyxd3af1g81z018n77n6q64pm4miznirf7c2c9gk")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/sirupsen/logrus")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33" -; ,go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33) -; ("go-golang-org-x-crypto-0.0.0-20180904163835-0709b304e793" -; ,go-golang-org-x-crypto-0.0.0-20180904163835-0709b304e793) -; ("go-github-com-stretchr-testify-1.2.2" -; ,go-github-com-stretchr-testify-1.2.2) -; ("go-github-com-stretchr-objx-0.1.1" -; ,go-github-com-stretchr-objx-0.1.1) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.1" -; ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.1) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://github.com/sirupsen/logrus") -; (synopsis "Logrus") -; (description -; "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20191011191535-87dc89f01550") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0z4i1m2yn3f31ci7wvcm2rxkx2yiv7a78mfzklncmsz2k97rlh2g")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" -; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) -; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" -; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20191026070338-33540a1f6037") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0fjcv0vzvi6za0b4xmnk3932pr9f9gczzf03y0kgq3ry9rqg169y")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-vbatts-go-mtree-0.5.0 -; (package -; (name "go-github-com-vbatts-go-mtree") -; (version "0.5.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/vbatts/go-mtree") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0p42aliw6ngp7zgg5y9mi18z1ka9n0vblbrp5flp93i7qfmc5y0k")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/vbatts/go-mtree")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037" -; ,go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037) -; ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" -; ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550) -; ("go-github-com-sirupsen-logrus-1.3.0" -; ,go-github-com-sirupsen-logrus-1.3.0) -; ("go-github-com-fatih-color-1.9.0" ,go-github-com-fatih-color-1.9.0) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://github.com/vbatts/go-mtree") -; (synopsis "go-mtree") -; (description -; "@code{mtree} is a filesystem hierarchy validation tooling and format. -;This is a library and simple cli tool for @url{https://www.freebsd.org/cgi/man.cgi?mtree%288%29=,mtree(8)} support.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20190404232315-eb5bcb51f2a3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "17k4g8krxbl84gzcs275b7gsh66dzm15fdxivjnx9xz8q84l4kby")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190412213103-97732733099d -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190412213103-97732733099d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "118hkp01i4z1f5h6hcjm0ff2ngqhrzj1f7731n0kw8dr6hvbx0sw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20200604202706-70a84ac30bf9 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20200604202706-70a84ac30bf9") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0zr8np92g3qx7cdgaz4b2z5wnlym9lqyhrvs3xvv1fbsapd2z6i3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" -; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) -; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" -; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20200622214017-ed371f2e16b4 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20200622214017-ed371f2e16b4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "107wfy2fj6z5zps1v72j8drfrfvss1158drb0yqhz5awlbvgrpj7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-1.22.0 -; (package -; (name "go-google-golang-org-protobuf") -; (version "1.22.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0n7lc4m7kfvj01glc0gnjy0zsnsic7cxnbvlajy0h14cxbab87pj")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.4.0" -; ,go-github-com-golang-protobuf-1.4.0))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.4.1 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.4.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0w7ks4vffnnkp0miwgc3chrsnmya45lzvpahb2wmw0jwhdp5kdx7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.22.0" -; ,go-google-golang-org-protobuf-1.22.0) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0))) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-github-com-census-instrumentation-opencensus-proto-0.2.1 -; (package -; (name "go-github-com-census-instrumentation-opencensus-proto") -; (version "0.2.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/census-instrumentation/opencensus-proto") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "19fcx3sc99i5dsklny6r073z5j20vlwn2xqm6di1q3b1xwchzqfj")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "github.com/census-instrumentation/opencensus-proto")) -; (home-page "https://github.com/census-instrumentation/opencensus-proto") -; (synopsis -; "OpenCensus Proto - Language Independent Interface Types For OpenCensus") -; (description -; "Census provides a framework to define and collect stats against metrics and to -;break those stats down across user-defined dimensions.") -; (license license:asl2.0))) -; -;(define-public go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4 -; (package -; (name "go-github-com-prometheus-client-model") -; (version "0.0.0-20190812154241-14fe0d1b01d4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/client_model") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0zdmk6rbbx39cvfz0r59v2jg5sg9yd02b4pds5n5llgvivi99550")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/client_model")) -; (propagated-inputs -; `(("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" -; ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0))) -; (home-page "https://github.com/prometheus/client_model") -; (synopsis "Deprecation note") -; (description -; "This repository used to contain the code that defined both -;the data model and the exposition format of Prometheus metrics.") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20190311212946-11955173bddd") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0hlkai67w167wiyivkzd1fgqrnyxkb94l2c6kr51jwcscizfyfn3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3 -; (package -; (name "go-golang-org-x-lint") -; (version "0.0.0-20190313153728-d0100b6bd8b3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/lint") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0b0amr9x4ji66iv9ayfx7zrfx52k1m5g66qfcxkgj80qrb1y2yn7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/lint")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" -; ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd))) -; (home-page "https://golang.org/x/lint") -; (synopsis "Installation") -; (description "Package lint contains a linter for Go source code. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sync-0.0.0-20190423024810-112230192c58 -; (package -; (name "go-golang-org-x-sync") -; (version "0.0.0-20190423024810-112230192c58") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sync") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "05i2k43j2d0llq768hg5pf3hb2yhfzp9la1w5wp0rsnnzblr0lfn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sync")) -; (home-page "https://golang.org/x/sync") -; (synopsis "Go Sync") -; (description -; "This repository provides Go concurrency primitives in addition to the -;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135 -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20190524140312-2c0ae7006135") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1lsi2ssxajclj3bciz2a41v1vjv768ja3v6wnbyhxy8xphwkp4fk")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" -; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-grpc-1.23.0 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.23.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1cn33r2gclmq2v1ndpf1n5bmhf2qs8mms7ii5cnl6f9ch4r2c4k3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" -; ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) -; ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" -; ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) -; ("go-google-golang-org-appengine-1.1.0" -; ,go-google-golang-org-appengine-1.1.0) -; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" -; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-github-com-google-go-cmp-0.2.0" -; ,go-github-com-google-go-cmp-0.2.0) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0) -; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-client9-misspell-0.3.4" -; ,go-github-com-client9-misspell-0.3.4) -; ("go-github-com-burntsushi-toml-0.3.1" -; ,go-github-com-burntsushi-toml-0.3.1) -; ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473 -; (package -; (name "go-github-com-envoyproxy-go-control-plane") -; (version "0.9.1-0.20191026205805-5f8ba28d4473") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/envoyproxy/go-control-plane") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1f1s764rd41vd9vgk3r14h1m6fz6pdvxj6fd83q58gxifbc4q5w4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.23.0" ,go-google-golang-org-grpc-1.23.0) -; ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" -; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) -; ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" -; ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2) -; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" -; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) -; ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" -; ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) -; (home-page "https://github.com/envoyproxy/go-control-plane") -; (synopsis "control-plane") -; (description -; "This repository contains a Go-based implementation of an API server that -;implements the discovery service APIs defined in -;@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") -; (license license:asl2.0))) -; -;(define-public go-github-com-envoyproxy-protoc-gen-validate-0.1.0 -; (package -; (name "go-github-com-envoyproxy-protoc-gen-validate") -; (version "0.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/envoyproxy/protoc-gen-validate") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0kxd3wwh3xwqk0r684hsy281xq4y71cd11d4q2hspcjbnlbwh7cy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/envoyproxy/protoc-gen-validate")) -; (home-page "https://github.com/envoyproxy/protoc-gen-validate") -; (synopsis "protoc-gen-validate (PGV)") -; (description -; "PGV is a protoc plugin to generate polyglot message validators. While protocol buffers effectively guarantee the types of structured data, they cannot enforce semantic rules for values. This plugin adds support to protoc-generated code to validate such constraints.") -; (license license:asl2.0))) -; -;(define-public go-github-com-google-go-cmp-0.2.0 -; (package -; (name "go-github-com-google-go-cmp") -; (version "0.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/go-cmp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1fbv0x27k9sn8svafc0hjwsnckk864lv4yi7bvzrxvmd3d5hskds")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/go-cmp")) -; (home-page "https://github.com/google/go-cmp") -; (synopsis "Package for equality of Go values") -; (description -; "This package is intended to be a more powerful and safer alternative to -;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20190308221718-c2843e01d9a2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20190311183353-d8887717615a -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20190311183353-d8887717615a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1wfm6ngxjyj7v5a2dqib6lw8bb2rdnf1kl48diykxjrsddn0s163")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190215142949-d0b11bdaac8a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.3.2 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.3.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1k1wb4zr0qbwgpvz9q5ws9zhlal8hq7dmq62pwxxriksayl6hzym")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4 -; (package -; (name "go-golang-org-x-exp") -; (version "0.0.0-20190121172915-509febef88a4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/exp") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "02isrh39z8znrp5znplzy0dip2gnrl3jm1355raliyvhnhg04j6q")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/exp")) -; (home-page "https://golang.org/x/exp") -; (synopsis "exp") -; (description -; "This subrepository holds experimental and deprecated (in the @code{old} -;directory) packages.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961 -; (package -; (name "go-golang-org-x-lint") -; (version "0.0.0-20190227174305-5b3e6a55c961") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/lint") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "04zp5vbds9nffmjg36wjpi5vg9zmf890yf78xxasai3ni637ivfw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/lint")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" -; ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c))) -; (home-page "https://golang.org/x/lint") -; (synopsis "Installation") -; (description "Package lint contains a linter for Go source code. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20190213061140-3a22650c66bd") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "12q6fgdkc0742vcms67nzadgdwvi3rnb1gx3vwkljhrvlnwvz7wc")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f -; (package -; (name "go-golang-org-x-sync") -; (version "0.0.0-20181108010431-42b317875d0f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sync") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0mrjhk7al7yyh76x9flvxy4jm5jyqh2fxbxagpaazxn1xdgkaif3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sync")) -; (home-page "https://golang.org/x/sync") -; (synopsis "Go Sync") -; (description -; "This repository provides Go concurrency primitives in addition to the -;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20180724234803-3673e40ba225") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0vx7mz18p480p7fh0w5jv6mfdbsswrlac1sz4i705q7q7ygz59lm")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-appengine-1.4.0 -; (package -; (name "go-google-golang-org-appengine") -; (version "1.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/appengine") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "06zl7w4sxgdq2pl94wy9ncii6h0z3szl4xpqds0sv3b3wbdlhbnn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/appengine")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225" -; ,go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0))) -; (home-page "https://google.golang.org/appengine") -; (synopsis "Go App Engine packages") -; (description -; "Package appengine provides basic functionality for Google App Engine. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20190226205152-f727befe758c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0rpcqw6z13qd33rbasg32zb0gdhgh5lzjla63r6g651zf6hpsak0")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-google-golang-org-appengine-1.4.0" -; ,go-google-golang-org-appengine-1.4.0) -; ("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" -; ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) -; ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" -; ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-cloud-google-com-go-0.26.0 -; (package -; (name "go-cloud-google-com-go") -; (version "0.26.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-cloud-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "149v3ci17g6wd2pm18mzcncq5qpl9hwdjnz3rlbn5rfidyn46la1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "cloud.google.com/go")) -; (home-page "https://cloud.google.com/go") -; (synopsis "Google Cloud Client Libraries for Go") -; (description -; "Package cloud is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -;of sub-packages. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-burntsushi-toml-0.3.1 -; (package -; (name "go-github-com-burntsushi-toml") -; (version "0.3.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/BurntSushi/toml") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1fjdwwfzyzllgiwydknf1pwjvy49qxfsczqx5gz3y0izs7as99j6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/BurntSushi/toml")) -; (home-page "https://github.com/BurntSushi/toml") -; (synopsis "TOML parser and encoder for Go with reflection") -; (description -; "Package toml implements decoding and encoding of TOML files. -;") -; (license license:expat))) -; -;(define-public go-github-com-client9-misspell-0.3.4 -; (package -; (name "go-github-com-client9-misspell") -; (version "0.3.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/client9/misspell") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1vwf33wsc4la25zk9nylpbp9px3svlmldkm0bha4hp56jws4q9cs")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/client9/misspell")) -; (home-page "https://github.com/client9/misspell") -; (synopsis "Install") -; (description -; "Package misspell corrects commonly misspelled English words in source files. -;") -; (license license:expat))) -; -;(define-public go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b -; (package -; (name "go-github-com-golang-glog") -; (version "0.0.0-20160126235308-23def4e6c14b") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/glog") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0jb2834rw5sykfr937fxi8hxi2zy80sj2bdn9b3jb4b26ksqng30")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/glog")) -; (home-page "https://github.com/golang/glog") -; (synopsis "glog") -; (description -; "Package glog implements logging analogous to the Google-internal C++ INFO/ERROR/V setup. -;It provides functions Info, Warning, Error, Fatal, plus formatting variants such as -;Infof. It also provides V-style logging controlled by the -v and -vmodule=file=2 flags. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-golang-mock-1.1.1 -; (package -; (name "go-github-com-golang-mock") -; (version "1.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/mock") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ap8wb6pdl6ccmdb43advjll2ly4sz26wsc3axw0hbrjrybybzgy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/mock")) -; (home-page "https://github.com/golang/mock") -; (synopsis "gomock") -; (description -; "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It -;integrates well with Go's built-in @code{testing} package, but can be used in other -;contexts too.") -; (license license:asl2.0))) -; -;(define-public go-github-com-golang-protobuf-1.2.0 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0kf4b59rcbb1cchfny2dm9jyznp8ri2hsb14n8iak1q8986xa0ab")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3 -; (package -; (name "go-golang-org-x-lint") -; (version "0.0.0-20181026193005-c67002cb31c3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/lint") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0gymbggskjmphqxqcx4s0vnlcz7mygbix0vhwcwv5r67c0bf6765")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/lint")) -; (home-page "https://golang.org/x/lint") -; (synopsis "Installation") -; (description "Package lint contains a linter for Go source code. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20180826012351-8a410e7b638d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0hp0l8f6fir5gmgrjq0mhh5ikc0rlrm72774228800kfwqjrxxny")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be -; (package -; (name "go-golang-org-x-oauth2") -; (version "0.0.0-20180821212333-d2e6202438be") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/oauth2") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0wbn75fd10485nb93bm4kqldqifdim5xqy4v7r5sdvimvf3fyhn7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/oauth2")) -; (home-page "https://golang.org/x/oauth2") -; (synopsis "OAuth2 for Go") -; (description -; "Package oauth2 provides support for making -;OAuth2 authorized and authenticated HTTP requests, -;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -;It can additionally grant authorization with Bearer JWT. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f -; (package -; (name "go-golang-org-x-sync") -; (version "0.0.0-20180314180146-1d60e4601c6f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sync") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "046jlanz2lkxq1r57x9bl6s4cvfqaic6p2xybsj8mq1120jv4rs6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sync")) -; (home-page "https://golang.org/x/sync") -; (synopsis "Go Sync") -; (description -; "This repository provides Go concurrency primitives in addition to the -;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20180830151530-49385e6e1522") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0spbldahns09fdxkxflb1x24f8k2awdlnr6k5i7ci4fqd19r1dv4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-text-0.3.0 -; (package -; (name "go-golang-org-x-text") -; (version "0.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/text") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/text")) -; (home-page "https://golang.org/x/text") -; (synopsis "Go Text") -; (description -; "text is a repository of text-related packages related to internationalization -;(i18n) and localization (l10n), such as character encodings, text -;transformations, and locale-specific text handling. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20190114222345-bf090417da8b") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1n3xp56k4k3lj06rx7587wr5gnwg0148nvwx6ch0g7ar02hh94hw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-appengine-1.1.0 -; (package -; (name "go-google-golang-org-appengine") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/appengine") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1pz202zszg8f35dk5pfhwgcdi3r6dx1l4yk6x6ly7nb4j45zi96x")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/appengine")) -; (home-page "https://google.golang.org/appengine") -; (synopsis "Go App Engine packages") -; (description -; "Package appengine provides basic functionality for Google App Engine. -;") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8 -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20180817151627-c66870c02cf8") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0siq7sv68556ygqi2d2zmvx8l1xjqdc0fylqzci5h1mq2i14bayn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-grpc-1.19.0 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.19.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1znqwpj7ix3dpzx4zch0q70sdl3z5lvbb7v3q4i8sf8kas3yv71v")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" -; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) -; ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" -; ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) -; ("go-google-golang-org-appengine-1.1.0" -; ,go-google-golang-org-appengine-1.1.0) -; ("go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b" -; ,go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b) -; ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522" -; ,go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522) -; ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" -; ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d" -; ,go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d) -; ("go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3" -; ,go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0) -; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-client9-misspell-0.3.4" -; ,go-github-com-client9-misspell-0.3.4) -; ("go-github-com-burntsushi-toml-0.3.1" -; ,go-github-com-burntsushi-toml-0.3.1) -; ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099 -; (package -; (name "go-honnef-co-go-tools") -; (version "0.0.0-20190102054323-c2f93a96b099") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/dominikh/go-tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "07lg29aiap80ca9f201jzng9vjr168cv3qmvjmbd7v5pmww9kmr8")))) -; (build-system go-build-system) -; (arguments '(#:import-path "honnef.co/go/tools")) -; (home-page "https://honnef.co/go/tools") -; (synopsis "Documentation") -; (description -; "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, -;offers simplifications, and enforces style rules.") -; (license license:expat))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55 -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20190819201941-24fa4b261c55") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "109zhaqlfd8zkbr1hk6zqbs6vcxfrk64scjwh2nswph05gr0m84d")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" -; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) -; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) -; ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" -; ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) -; ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" -; ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) -; ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" -; ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-grpc-1.27.0 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.27.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ijrmgrxyabfn51nm3p9l81iaasq5fg237wnr6mdc4dzsfcg8kd7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" -; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-github-com-google-go-cmp-0.2.0" -; ,go-github-com-google-go-cmp-0.2.0) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2) -; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" -; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) -; ("go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473" -; ,go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-google-go-cmp-0.3.0 -; (package -; (name "go-github-com-google-go-cmp") -; (version "0.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/go-cmp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1hyxx3434zshl2m9ja78gwlkg1rx9yl6diqa7dnjb31xz5x4gbjj")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/go-cmp")) -; (home-page "https://github.com/google/go-cmp") -; (synopsis "Package for equality of Go values") -; (description -; "This package is intended to be a more powerful and safer alternative to -;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd -; (package -; (name "go-google-golang-org-protobuf") -; (version "0.0.0-20200109180630-ec00e32a8dfd") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0w6lp9w2avxcpxwzzhspr209ifhyjagvs23k0vykfdqahl1aplrh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.3.0" -; ,go-github-com-google-go-cmp-0.3.0))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.4.0-rc.1 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.4.0-rc.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "186rirvbfgv6hrxp27ipx2cdpv19qifdd20biqfdm01wiyclqimn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd" -; ,go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd) -; ("go-github-com-google-go-cmp-0.3.1" -; ,go-github-com-google-go-cmp-0.3.1))) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-github-com-google-go-cmp-0.3.1 -; (package -; (name "go-github-com-google-go-cmp") -; (version "0.3.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/go-cmp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1caw49i0plkjxir7kdf5qhwls3krqwfmi7g4h392rdfwi3kfahx1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/go-cmp")) -; (home-page "https://github.com/google/go-cmp") -; (synopsis "Package for equality of Go values") -; (description -; "This package is intended to be a more powerful and safer alternative to -;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64 -; (package -; (name "go-google-golang-org-protobuf") -; (version "0.0.0-20200221191635-4d8936d0db64") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0563bsvdjj6k0sgwqd5yzrgfiax7sp3lcwh608gync5sv9fx39cy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.3.1" -; ,go-github-com-google-go-cmp-0.3.1) -; ("go-github-com-golang-protobuf-1.4.0-rc.1" -; ,go-github-com-golang-protobuf-1.4.0-rc.1))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.4.0-rc.1.0.20200221234624-67d41d38c208") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ykxhg3zixmw25pd435f8h16wnz1g00jpcmmg3xl030kksgqgpp6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64" -; ,go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0))) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60 -; (package -; (name "go-google-golang-org-protobuf") -; (version "0.0.0-20200228230310-ab0ca4ff8a60") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1rinspcznfp85yz4vrlf4h38hr576virgv8lcs22bsylqga808sd")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208" -; ,go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.4.0-rc.2 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.4.0-rc.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1hd43hjv5zl6bjbmhm5phx74bw4xajsi73m5zky2k56za4mpgzzc")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60" -; ,go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0))) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967 -; (package -; (name "go-google-golang-org-protobuf") -; (version "1.20.1-0.20200309200217-e05f789c0967") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "17wmy89hnmpkwc63rfcjp50q15s9f1rhmczg06c3z9yy41zk82w9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.4.0-rc.2" -; ,go-github-com-golang-protobuf-1.4.0-rc.2))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.4.0-rc.4.0.20200313231945-b860323f09d0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1zj6cwshx0l5n9cn2cpbikzzb79px5dmkpc4p19zy1iif5r5p0z0")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967" -; ,go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0))) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-1.21.0 -; (package -; (name "go-google-golang-org-protobuf") -; (version "1.21.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "12bwln8z1lf9105gdp6ip0rx741i4yfz1520gxnp8861lh9wcl63")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0" -; ,go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.4.0 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1fjvl5n77abxz5qsd4mgyvjq19x43c5bfvmq62mq3m5plx6zksc8")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.21.0" -; ,go-google-golang-org-protobuf-1.21.0) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0))) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543 -; (package -; (name "go-golang-org-x-xerrors") -; (version "0.0.0-20191204190536-9bdfabe68543") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/xerrors") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1yjfi1bk9xb81lqn85nnm13zz725wazvrx3b50hx19qmwg7a4b0c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/xerrors")) -; (home-page "https://golang.org/x/xerrors") -; (synopsis #f) -; (description -; "Package xerrors implements functions to manipulate errors. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-google-go-cmp-0.4.0 -; (package -; (name "go-github-com-google-go-cmp") -; (version "0.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/go-cmp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1x5pvl3fb5sbyng7i34431xycnhmx8xx94gq2n19g6p0vz68z2v2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/go-cmp")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" -; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) -; (home-page "https://github.com/google/go-cmp") -; (synopsis "Package for equality of Go values") -; (description -; "This package is intended to be a more powerful and safer alternative to -;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc -; (package -; (name "go-google-golang-org-protobuf") -; (version "1.23.1-0.20200526195155-81db48ad09cc") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "02cpr8rqr5wmpj2fqb32mzilsdnxkh52g1jz95a3ck3gzffc7hh1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.4.0" -; ,go-github-com-golang-protobuf-1.4.0))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc -; (package -; (name "go-honnef-co-go-tools") -; (version "0.0.0-20190523083050-ea95bdfd59fc") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/dominikh/go-tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1763nw7pwpzkvzfnm63dgzcgbq9hwmq5l1nffchnhh77vgkaq4ic")))) -; (build-system go-build-system) -; (arguments '(#:import-path "honnef.co/go/tools")) -; (home-page "https://honnef.co/go/tools") -; (synopsis "Documentation") -; (description -; "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, -;offers simplifications, and enforces style rules.") -; (license license:expat))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013 -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20200526211855-cb27e3aa2013") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ml73ghqcwbz7ipfk8fnxb5indcml49b5p7vp1fsyny0abyyrmxf")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" -; ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) -; ("go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc" -; ,go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc) -; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) -; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" -; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-github-com-golang-protobuf-1.4.1" -; ,go-github-com-golang-protobuf-1.4.1))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-protobuf-1.24.0 -; (package -; (name "go-google-golang-org-protobuf") -; (version "1.24.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0x3qyn3rizbs671gs7f8v50rmiwf9h7kbaradpivw9718mhbg1gn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" -; ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.4.1" -; ,go-github-com-golang-protobuf-1.4.1))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-gopkg-in-check-v1-1.0.0-20200227125254-8fa46927fb4f -; (package -; (name "go-gopkg-in-check-v1") -; (version "1.0.0-20200227125254-8fa46927fb4f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/check.v1") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0fx03x0nx9mjwnqphnx852q9p76qg7cazrachvgr1bj357lplrcw")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) -; (home-page "https://gopkg.in/check.v1") -; (synopsis "Instructions") -; (description -; "Package check is a rich testing extension for Go's testing package. -;") -; (license license:bsd-2))) -; -;(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 -; (package -; (name "go-gopkg-in-check-v1") -; (version "0.0.0-20161208181325-20d25e280405") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/check.v1") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) -; (home-page "https://gopkg.in/check.v1") -; (synopsis "Instructions") -; (description -; "Package check is a rich testing extension for Go's testing package. -;") -; (license license:bsd-2))) -; -;(define-public go-gopkg-in-yaml-v3-3.0.0-20200615113413-eeeca48fe776 -; (package -; (name "go-gopkg-in-yaml-v3") -; (version "3.0.0-20200615113413-eeeca48fe776") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/yaml.v3") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "06m3kx5mp6vwfcpjl04c39r1dpbakg2la9ql1jw3zvpi6jk7iwbk")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" -; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) -; (home-page "https://gopkg.in/yaml.v3") -; (synopsis "YAML support for the Go language") -; (description "Package yaml implements YAML support for the Go language. -;") -; (license #f))) -; -;(define-public go-github-com-opencontainers-umoci-0.4.7 -; (package -; (name "go-github-com-opencontainers-umoci") -; (version "0.4.7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/umoci") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0in8kyi4jprvbm3zsl3risbjj8b0ma62yl3rq8rcvcgypx0mn7d4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/umoci")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v3-3.0.0-20200615113413-eeeca48fe776" -; ,go-gopkg-in-yaml-v3-3.0.0-20200615113413-eeeca48fe776) -; ("go-gopkg-in-check-v1-1.0.0-20200227125254-8fa46927fb4f" -; ,go-gopkg-in-check-v1-1.0.0-20200227125254-8fa46927fb4f) -; ("go-google-golang-org-protobuf-1.24.0" -; ,go-google-golang-org-protobuf-1.24.0) -; ("go-golang-org-x-sys-0.0.0-20200622214017-ed371f2e16b4" -; ,go-golang-org-x-sys-0.0.0-20200622214017-ed371f2e16b4) -; ("go-golang-org-x-crypto-0.0.0-20200604202706-70a84ac30bf9" -; ,go-golang-org-x-crypto-0.0.0-20200604202706-70a84ac30bf9) -; ("go-github-com-vbatts-go-mtree-0.5.0" -; ,go-github-com-vbatts-go-mtree-0.5.0) -; ("go-github-com-urfave-cli-1.22.4" ,go-github-com-urfave-cli-1.22.4) -; ("go-github-com-tj-assert-0.0.3" ,go-github-com-tj-assert-0.0.3) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-sirupsen-logrus-1.6.0" -; ,go-github-com-sirupsen-logrus-1.6.0) -; ("go-github-com-rootless-containers-proto-0.1.0" -; ,go-github-com-rootless-containers-proto-0.1.0) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-runtime-spec-1.0.2" -; ,go-github-com-opencontainers-runtime-spec-1.0.2) -; ("go-github-com-opencontainers-runc-1.0.0-rc90" -; ,go-github-com-opencontainers-runc-1.0.0-rc90) -; ("go-github-com-opencontainers-image-spec-1.0.1" -; ,go-github-com-opencontainers-image-spec-1.0.1) -; ("go-github-com-opencontainers-go-digest-1.0.0" -; ,go-github-com-opencontainers-go-digest-1.0.0) -; ("go-github-com-niemeyer-pretty-0.0.0-20200227124842-a10e7caefd8e" -; ,go-github-com-niemeyer-pretty-0.0.0-20200227124842-a10e7caefd8e) -; ("go-github-com-mohae-deepcopy-0.0.0-20170929034955-c48cc78d4826" -; ,go-github-com-mohae-deepcopy-0.0.0-20170929034955-c48cc78d4826) -; ("go-github-com-mattn-go-colorable-0.1.6" -; ,go-github-com-mattn-go-colorable-0.1.6) -; ("go-github-com-kr-text-0.2.0" ,go-github-com-kr-text-0.2.0) -; ("go-github-com-klauspost-pgzip-1.2.4" -; ,go-github-com-klauspost-pgzip-1.2.4) -; ("go-github-com-klauspost-compress-1.11.3" -; ,go-github-com-klauspost-compress-1.11.3) -; ("go-github-com-google-go-cmp-0.5.0" -; ,go-github-com-google-go-cmp-0.5.0) -; ("go-github-com-golang-protobuf-1.4.2" -; ,go-github-com-golang-protobuf-1.4.2) -; ("go-github-com-docker-go-units-0.4.0" -; ,go-github-com-docker-go-units-0.4.0) -; ("go-github-com-cyphar-filepath-securejoin-0.2.2" -; ,go-github-com-cyphar-filepath-securejoin-0.2.2) -; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" -; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) -; ("go-github-com-apex-log-1.4.0" ,go-github-com-apex-log-1.4.0) -; ("go-github-com-adamkorcz-go-fuzz-headers-0.0.0-20210312213058-32f4d319f0d2" -; ,go-github-com-adamkorcz-go-fuzz-headers-0.0.0-20210312213058-32f4d319f0d2))) -; (home-page "https://github.com/opencontainers/umoci") -; (synopsis "Install") -; (description -; "@strong{u}moci @strong{m}odifies @strong{O}pen @strong{C}ontainer @strong{i}mages.") -; (license license:asl2.0))) -; -;(define-public go-github-com-pelletier-go-toml-1.9.3 -; (package -; (name "go-github-com-pelletier-go-toml") -; (version "1.9.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/pelletier/go-toml") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0cqwnvlgs1wgdgjxlwv8j52f7d6syniadr51sjh2fya99m5wzvsn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/pelletier/go-toml")) -; (home-page "https://github.com/pelletier/go-toml") -; (synopsis "go-toml") -; (description "Package toml is a TOML parser and manipulation library. -;") -; (license #f))) -; -;(define-public go-github-com-pkg-errors-0.9.1 -; (package -; (name "go-github-com-pkg-errors") -; (version "0.9.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/pkg/errors") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1761pybhc2kqr6v5fm8faj08x9bql8427yqg6vnfv6nhrasx1mwq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/pkg/errors")) -; (home-page "https://github.com/pkg/errors") -; (synopsis "errors") -; (description "Package errors provides simple error handling primitives. -;") -; (license license:bsd-2))) -; -;(define-public go-github-com-russross-blackfriday-v2-2.1.0 -; (package -; (name "go-github-com-russross-blackfriday-v2") -; (version "2.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/russross/blackfriday") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0d1rg1drrfmabilqjjayklsz5d0n3hkf979sr3wsrw92bfbkivs7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/russross/blackfriday/v2")) -; (home-page "https://github.com/russross/blackfriday") -; (synopsis "Blackfriday") -; (description "Package blackfriday is a markdown processor. -;") -; (license license:bsd-2))) -; -;(define-public go-github-com-satori-go-uuid-1.2.1-0.20180404165556-75cca531ea76 -; (package -; (name "go-github-com-satori-go-uuid") -; (version "1.2.1-0.20180404165556-75cca531ea76") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/satori/go.uuid") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0fi1rc2zl0vyyah6iy8cvsjyxipp6pnzb19x40qkq3j1qlra20qy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/satori/go.uuid")) -; (home-page "https://github.com/satori/go.uuid") -; (synopsis "UUID package for Go language") -; (description -; "Package uuid provides implementation of Universally Unique Identifier (UUID). -;Supported versions are 1, 3, 4 and 5 (as specified in @url{https://rfc-editor.org/rfc/rfc4122.html,RFC 4122}) and -;version 2 (as specified in DCE 1.1). -;") -; (license license:expat))) -; -;(define-public go-github-com-blang-semver-3.5.1+incompatible -; (package -; (name "go-github-com-blang-semver") -; (version "3.5.1+incompatible") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/blang/semver") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "13ws259bwcibkclbr82ilhk6zadm63kxklxhk12wayklj8ghhsmy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/blang/semver")) -; (home-page "https://github.com/blang/semver") -; (synopsis "semver for golang") -; (description -; "semver is a @url{http://semver.org/,Semantic Versioning} library written in golang. It fully covers spec version @code{2.0.0}.") -; (license license:expat))) -; -;(define-public go-github-com-hashicorp-errwrap-1.0.0 -; (package -; (name "go-github-com-hashicorp-errwrap") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/errwrap") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0slfb6w3b61xz04r32bi0a1bygc82rjzhqkxj2si2074wynqnr1c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hashicorp/errwrap")) -; (home-page "https://github.com/hashicorp/errwrap") -; (synopsis "errwrap") -; (description -; "Package errwrap implements methods to formalize error wrapping in Go. -;") -; (license license:mpl2.0))) -; -;(define-public go-github-com-hashicorp-go-multierror-1.1.0 -; (package -; (name "go-github-com-hashicorp-go-multierror") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/go-multierror") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0pmjpzpra7lqgikxzwlcp5mh01b46j2vhyxkixz0v86fr9kf0k3k")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hashicorp/go-multierror")) -; (propagated-inputs -; `(("go-github-com-hashicorp-errwrap-1.0.0" -; ,go-github-com-hashicorp-errwrap-1.0.0))) -; (home-page "https://github.com/hashicorp/go-multierror") -; (synopsis "go-multierror") -; (description -; "@code{go-multierror} is a package for Go that provides a mechanism for -;representing a list of @code{error} values as a single @code{error}.") -; (license license:mpl2.0))) -; -;(define-public go-github-com-opencontainers-runtime-spec-1.0.3-0.20200710190001-3e4195d92445 -; (package -; (name "go-github-com-opencontainers-runtime-spec") -; (version "1.0.3-0.20200710190001-3e4195d92445") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/runtime-spec") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "04kfdbap80r89rn7f7xcmkyy0qbpd18dgk65bzapy0x0calpgrlk")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) -; (home-page "https://github.com/opencontainers/runtime-spec") -; (synopsis "Open Container Initiative Runtime Specification") -; (description -; "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") -; (license license:asl2.0))) -; -;(define-public go-github-com-opencontainers-runtime-tools-0.9.0 -; (package -; (name "go-github-com-opencontainers-runtime-tools") -; (version "0.9.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/runtime-tools") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1pli3jb1rq9lkzzz83f7jw788vijg7x6ly3vgasdlwri7kiph1sa")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/runtime-tools")) -; (home-page "https://github.com/opencontainers/runtime-tools") -; (synopsis "oci-runtime-tool") -; (description -; "oci-runtime-tool is a collection of tools for working with the @url{https://github.com/opencontainers/runtime-spec,OCI runtime specification}. -;To build from source code, runtime-tools requires Go 1.10.x or above.") -; (license license:asl2.0))) -; -;(define-public go-github-com-pkg-errors-0.9.1 -; (package -; (name "go-github-com-pkg-errors") -; (version "0.9.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/pkg/errors") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1761pybhc2kqr6v5fm8faj08x9bql8427yqg6vnfv6nhrasx1mwq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/pkg/errors")) -; (home-page "https://github.com/pkg/errors") -; (synopsis "errors") -; (description "Package errors provides simple error handling primitives. -;") -; (license license:bsd-2))) -; -;(define-public go-github-com-willf-bitset-1.1.11-0.20200630133818-d5bec3311243 -; (package -; (name "go-github-com-willf-bitset") -; (version "1.1.11-0.20200630133818-d5bec3311243") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/bits-and-blooms/bitset") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "05nyd0vhp2h9hbqlv2s9l2py6mr8hpz2zyfj09an1q7wd8vph4ja")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/willf/bitset")) -; (home-page "https://github.com/willf/bitset") -; (synopsis "bitset") -; (description -; "Package bitset implements bitsets, a mapping -;between non-negative integers and boolean values. It should be more -;efficient than map[uint] bool. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20191115151921-52ab43148777") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1kakxbqrb1w2vwg7r1896z68qcx2lfvimsl8cs2niiipbgpi6imx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-opencontainers-selinux-1.6.0 -; (package -; (name "go-github-com-opencontainers-selinux") -; (version "1.6.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/selinux") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ja41zfgrkhk5khixjnxpi1b85xfcxlkhq2q9b7ma6xjfdhg8bq2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/selinux")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777" -; ,go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777) -; ("go-github-com-willf-bitset-1.1.11-0.20200630133818-d5bec3311243" -; ,go-github-com-willf-bitset-1.1.11-0.20200630133818-d5bec3311243) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) -; (home-page "https://github.com/opencontainers/selinux") -; (synopsis "selinux") -; (description "Common SELinux package used across the container ecosystem.") -; (license license:asl2.0))) -; -;(define-public go-github-com-seccomp-libseccomp-golang-0.9.1 -; (package -; (name "go-github-com-seccomp-libseccomp-golang") -; (version "0.9.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/seccomp/libseccomp-golang") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "022c8prvxz0shrifams7lq4xidvkcqg9xi87wjjcpmbikqi72cna")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/seccomp/libseccomp-golang")) -; (home-page "https://github.com/seccomp/libseccomp-golang") -; (synopsis #f) -; (description -; "Package seccomp provides bindings for libseccomp, a library wrapping the Linux -;seccomp syscall. Seccomp enables an application to restrict system call use -;for itself and its children. -;") -; (license license:bsd-2))) -; -;(define-public go-github-com-davecgh-go-spew-1.1.1 -; (package -; (name "go-github-com-davecgh-go-spew") -; (version "1.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/davecgh/go-spew") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/davecgh/go-spew")) -; (home-page "https://github.com/davecgh/go-spew") -; (synopsis "go-spew") -; (description -; "Go-spew implements a deep pretty printer for Go data structures to aid in -;debugging. A comprehensive suite of tests with 100% test coverage is provided -;to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage -;report. Go-spew is licensed under the liberal ISC license, so it may be used in -;open source or commercial projects.") -; (license license:isc))) -; -;(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.3 -; (package -; (name "go-github-com-konsorten-go-windows-terminal-sequences") -; (version "1.0.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/konsorten/go-windows-terminal-sequences") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1yrsd4s8vhjnxhwbigirymz89dn6qfjnhn28i33vvvdgf96j6ypl")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) -; (home-page "https://github.com/konsorten/go-windows-terminal-sequences") -; (synopsis "Windows Terminal Sequences") -; (description -; "This library allow for enabling Windows terminal color support for Go.") -; (license license:expat))) -; -;(define-public go-github-com-stretchr-testify-1.2.2 -; (package -; (name "go-github-com-stretchr-testify") -; (version "1.2.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/testify") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0dlszlshlxbmmfxj5hlwgv3r22x0y1af45gn1vd198nvvs3pnvfs")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/testify")) -; (home-page "https://github.com/stretchr/testify") -; (synopsis "Testify - Thou Shalt Write Tests") -; (description -; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190422165155-953cdadca894") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0gkha4whk8xkcv3isigbs250akag99isxnd3v9xmy0kl3g88hxy1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-sirupsen-logrus-1.6.0 -; (package -; (name "go-github-com-sirupsen-logrus") -; (version "1.6.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/sirupsen/logrus") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1zf9is1yxxnna0d1pyag2m9ziy3l27zb2j92p9msm1gx5jjrvzzj")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/sirupsen/logrus")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894" -; ,go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894) -; ("go-github-com-stretchr-testify-1.2.2" -; ,go-github-com-stretchr-testify-1.2.2) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.3" -; ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.3) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://github.com/sirupsen/logrus") -; (synopsis "Logrus") -; (description -; "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. -;") -; (license license:expat))) -; -;(define-public go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2 -; (package -; (name "go-github-com-syndtr-gocapability") -; (version "0.0.0-20180916011248-d98352740cb2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/syndtr/gocapability") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "065y16562ynixxzj7iys4f4spb7knilbj3h833qlhds381j8hn93")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/syndtr/gocapability")) -; (home-page "https://github.com/syndtr/gocapability") -; (synopsis #f) -; (description #f) -; (license license:bsd-2))) -; -;(define-public go-github-com-davecgh-go-spew-1.1.0 -; (package -; (name "go-github-com-davecgh-go-spew") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/davecgh/go-spew") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/davecgh/go-spew")) -; (home-page "https://github.com/davecgh/go-spew") -; (synopsis "go-spew") -; (description -; "Go-spew implements a deep pretty printer for Go data structures to aid in -;debugging. A comprehensive suite of tests with 100% test coverage is provided -;to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage -;report. Go-spew is licensed under the liberal ISC license, so it may be used in -;open source or commercial projects.") -; (license license:isc))) -; -;(define-public go-github-com-pmezard-go-difflib-1.0.0 -; (package -; (name "go-github-com-pmezard-go-difflib") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/pmezard/go-difflib") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/pmezard/go-difflib")) -; (home-page "https://github.com/pmezard/go-difflib") -; (synopsis "go-difflib") -; (description -; "Go-difflib is a partial port of python 3 difflib package. Its main goal -;was to make unified and context diff available in pure Go, mostly for -;testing purposes.") -; (license license:bsd-3))) -; -;(define-public go-github-com-stretchr-objx-0.1.0 -; (package -; (name "go-github-com-stretchr-objx") -; (version "0.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/objx") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/objx")) -; (home-page "https://github.com/stretchr/objx") -; (synopsis "Objx") -; (description -; "Objx - Go package for dealing with maps, slices, JSON and other data. -;") -; (license license:expat))) -; -;(define-public go-github-com-stretchr-testify-1.3.0 -; (package -; (name "go-github-com-stretchr-testify") -; (version "1.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/testify") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0wjchp2c8xbgcbbq32w3kvblk6q6yn533g78nxl6iskq6y95lxsy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/testify")) -; (propagated-inputs -; `(("go-github-com-stretchr-objx-0.1.0" -; ,go-github-com-stretchr-objx-0.1.0) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-davecgh-go-spew-1.1.0" -; ,go-github-com-davecgh-go-spew-1.1.0))) -; (home-page "https://github.com/stretchr/testify") -; (synopsis "Testify - Thou Shalt Write Tests") -; (description -; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -;") -; (license license:expat))) -; -;(define-public go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f -; (package -; (name "go-github-com-xeipuuv-gojsonpointer") -; (version "0.0.0-20180127040702-4e3ac2762d5f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/xeipuuv/gojsonpointer") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "13y6iq2nzf9z4ls66bfgnnamj2m3438absmbpqry64bpwjfbsi9q")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/xeipuuv/gojsonpointer")) -; (home-page "https://github.com/xeipuuv/gojsonpointer") -; (synopsis "gojsonpointer") -; (description "An implementation of JSON Pointer - Go language") -; (license license:asl2.0))) -; -;(define-public go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415 -; (package -; (name "go-github-com-xeipuuv-gojsonreference") -; (version "0.0.0-20180127040603-bd5ef7bd5415") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/xeipuuv/gojsonreference") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1xby79padc7bmyb8rfbad8wfnfdzpnh51b1n8c0kibch0kwc1db5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/xeipuuv/gojsonreference")) -; (home-page "https://github.com/xeipuuv/gojsonreference") -; (synopsis "gojsonreference") -; (description "An implementation of JSON Reference - Go language") -; (license license:asl2.0))) -; -;(define-public go-github-com-xeipuuv-gojsonschema-1.2.0 -; (package -; (name "go-github-com-xeipuuv-gojsonschema") -; (version "1.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/xeipuuv/gojsonschema") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1mqiq0r8qw4qlfp3ls8073r6514rmzwrmdn4j33rppk3zh942i6l")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/xeipuuv/gojsonschema")) -; (propagated-inputs -; `(("go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415" -; ,go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415) -; ("go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f" -; ,go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f) -; ("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0))) -; (home-page "https://github.com/xeipuuv/gojsonschema") -; (synopsis "gojsonschema") -; (description -; "An implementation of JSON Schema for the Go programming language. Supports draft-04, draft-06 and draft-07.") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-sys-0.0.0-20200720211630-cb9d2d5c5666 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20200720211630-cb9d2d5c5666") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "18b1179cvv3rfn3hhysiqwcn2c15a1kzff74q4494rz69k0j7w4q")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-seccomp-containers-golang-0.6.0 -; (package -; (name "go-github-com-seccomp-containers-golang") -; (version "0.6.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/seccomp/containers-golang") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0clrwdnmr131a65h66br57bsnr17i1s3kq9cc7ljrdaym57y6cfz")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/seccomp/containers-golang")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20200720211630-cb9d2d5c5666" -; ,go-golang-org-x-sys-0.0.0-20200720211630-cb9d2d5c5666) -; ("go-github-com-xeipuuv-gojsonschema-1.2.0" -; ,go-github-com-xeipuuv-gojsonschema-1.2.0) -; ("go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2" -; ,go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2) -; ("go-github-com-sirupsen-logrus-1.6.0" -; ,go-github-com-sirupsen-logrus-1.6.0) -; ("go-github-com-seccomp-libseccomp-golang-0.9.1" -; ,go-github-com-seccomp-libseccomp-golang-0.9.1) -; ("go-github-com-opencontainers-selinux-1.6.0" -; ,go-github-com-opencontainers-selinux-1.6.0) -; ("go-github-com-opencontainers-runtime-tools-0.9.0" -; ,go-github-com-opencontainers-runtime-tools-0.9.0) -; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200710190001-3e4195d92445" -; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200710190001-3e4195d92445) -; ("go-github-com-hashicorp-go-multierror-1.1.0" -; ,go-github-com-hashicorp-go-multierror-1.1.0) -; ("go-github-com-blang-semver-3.5.1+incompatible" -; ,go-github-com-blang-semver-3.5.1+incompatible))) -; (home-page "https://github.com/seccomp/containers-golang") -; (synopsis "containers-golang") -; (description -; "@code{containers-golang} is a set of Go libraries used by container runtimes to generate and load seccomp mappings into the kernel.") -; (license license:asl2.0))) -; -;(define-public go-github-com-seccomp-libseccomp-golang-0.9.1 -; (package -; (name "go-github-com-seccomp-libseccomp-golang") -; (version "0.9.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/seccomp/libseccomp-golang") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "022c8prvxz0shrifams7lq4xidvkcqg9xi87wjjcpmbikqi72cna")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/seccomp/libseccomp-golang")) -; (home-page "https://github.com/seccomp/libseccomp-golang") -; (synopsis #f) -; (description -; "Package seccomp provides bindings for libseccomp, a library wrapping the Linux -;seccomp syscall. Seccomp enables an application to restrict system call use -;for itself and its children. -;") -; (license license:bsd-2))) -; -;(define-public go-github-com-russross-blackfriday-v2-2.0.1 -; (package -; (name "go-github-com-russross-blackfriday-v2") -; (version "2.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/russross/blackfriday") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0nlz7isdd4rgnwzs68499hlwicxz34j2k2a0b8jy0y7ycd2bcr5j")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/russross/blackfriday/v2")) -; (home-page "https://github.com/russross/blackfriday") -; (synopsis "Blackfriday") -; (description "Package blackfriday is a markdown processor. -;") -; (license license:bsd-2))) -; -;(define-public go-github-com-shurcool-sanitized-anchor-name-1.0.0 -; (package -; (name "go-github-com-shurcool-sanitized-anchor-name") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/shurcooL/sanitized_anchor_name") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1gv9p2nr46z80dnfjsklc6zxbgk96349sdsxjz05f3z6wb6m5l8f")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/shurcooL/sanitized_anchor_name")) -; (home-page "https://github.com/shurcooL/sanitized_anchor_name") -; (synopsis "sanitized_anchor_name") -; (description -; "Package sanitized_anchor_name provides a func to create sanitized anchor names. -;") -; (license license:expat))) -; -;(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0 -; (package -; (name "go-github-com-cpuguy83-go-md2man-v2") -; (version "2.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/cpuguy83/go-md2man") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) -; (propagated-inputs -; `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" -; ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) -; ("go-github-com-russross-blackfriday-v2-2.0.1" -; ,go-github-com-russross-blackfriday-v2-2.0.1) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0))) -; (home-page "https://github.com/cpuguy83/go-md2man") -; (synopsis "go-md2man") -; (description "Converts markdown into roff (man pages).") -; (license license:expat))) -; -;(define-public go-github-com-inconshreveable-mousetrap-1.0.0 -; (package -; (name "go-github-com-inconshreveable-mousetrap") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/inconshreveable/mousetrap") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1mn0kg48xkd74brf48qf5hzp0bc6g8cf5a77w895rl3qnlpfw152")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/inconshreveable/mousetrap")) -; (home-page "https://github.com/inconshreveable/mousetrap") -; (synopsis "mousetrap") -; (description "mousetrap is a tiny library that answers a single question.") -; (license license:asl2.0))) -; -;(define-public go-github-com-hashicorp-go-cleanhttp-0.5.1 -; (package -; (name "go-github-com-hashicorp-go-cleanhttp") -; (version "0.5.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/go-cleanhttp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "07kx3fhryqmaw3czacmm11qwx63js2q8cfq967vphk7xg9q377kk")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hashicorp/go-cleanhttp")) -; (home-page "https://github.com/hashicorp/go-cleanhttp") -; (synopsis "cleanhttp") -; (description -; "Package cleanhttp offers convenience utilities for acquiring \"clean\" -;http.Transport and http.Client structs. -;") -; (license license:mpl2.0))) -; -;(define-public go-github-com-mitchellh-go-homedir-1.0.0 -; (package -; (name "go-github-com-mitchellh-go-homedir") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mitchellh/go-homedir") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0f0z0aa4wivk4z1y503dmnw0k0g0g403dly8i4q263gfshs82sbq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mitchellh/go-homedir")) -; (home-page "https://github.com/mitchellh/go-homedir") -; (synopsis "go-homedir") -; (description -; "This is a Go library for detecting the user's home directory without -;the use of cgo, so the library can be used in cross-compilation environments.") -; (license license:expat))) -; -;(define-public go-github-com-hashicorp-go-rootcerts-1.0.0 -; (package -; (name "go-github-com-hashicorp-go-rootcerts") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/go-rootcerts") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0wply5zhj1rcybr932zbwm1i18q5wr7kgkhnz6bw6mk1n9yr8lfj")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hashicorp/go-rootcerts")) -; (propagated-inputs -; `(("go-github-com-mitchellh-go-homedir-1.0.0" -; ,go-github-com-mitchellh-go-homedir-1.0.0))) -; (home-page "https://github.com/hashicorp/go-rootcerts") -; (synopsis "rootcerts") -; (description -; "Package rootcerts contains functions to aid in loading CA certificates for -;TLS connections. -;") -; (license license:mpl2.0))) -; -;(define-public go-github-com-armon-circbuf-0.0.0-20150827004946-bbbad097214e -; (package -; (name "go-github-com-armon-circbuf") -; (version "0.0.0-20150827004946-bbbad097214e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/armon/circbuf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1idpr0lzb2px2p3wgfq2276yl7jpaz43df6n91kf790404s4zmk3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/armon/circbuf")) -; (home-page "https://github.com/armon/circbuf") -; (synopsis "circbuf") -; (description -; "This repository provides the @code{circbuf} package. This provides a @code{Buffer} object -;which is a circular (or ring) buffer. It has a fixed size, but can be written -;to infinitely. Only the last @code{size} bytes are ever retained. The buffer implements -;the @code{io.Writer} interface.") -; (license license:expat))) -; -;(define-public go-github-com-hashicorp-go-syslog-1.0.0 -; (package -; (name "go-github-com-hashicorp-go-syslog") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/go-syslog") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "09vccqggz212cg0jir6vv708d6mx0f9w5bxrcdah3h6chgmal6v1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hashicorp/go-syslog")) -; (home-page "https://github.com/hashicorp/go-syslog") -; (synopsis "go-syslog") -; (description -; "This repository provides a very simple @code{gsyslog} package. The point of this -;package is to allow safe importing of syslog without introducing cross-compilation -;issues. The stdlib @code{log/syslog} cannot be imported on Windows systems, and without -;conditional compilation this adds complications.") -; (license license:expat))) -; -;(define-public go-github-com-hashicorp-go-uuid-1.0.1 -; (package -; (name "go-github-com-hashicorp-go-uuid") -; (version "1.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/go-uuid") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0jvb88m0rq41bwgirsadgw7mnayl27av3gd2vqa3xvxp3fy0hp5k")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hashicorp/go-uuid")) -; (home-page "https://github.com/hashicorp/go-uuid") -; (synopsis "uuid") -; (description -; "Generates UUID-format strings using high quality, bytes. It is @strong{not} intended to be RFC compliant, merely to use a well-understood string representation of a 128-bit value. It can also parse UUID-format strings into their component bytes.") -; (license license:mpl2.0))) -; -;(define-public go-github-com-hashicorp-logutils-1.0.0 -; (package -; (name "go-github-com-hashicorp-logutils") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/logutils") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "076wf4sh5p3f953ndqk1cc0x7jhmlqrxak9953rz79rcdw77rjvv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hashicorp/logutils")) -; (home-page "https://github.com/hashicorp/logutils") -; (synopsis "logutils") -; (description -; "Package logutils augments the standard log package with levels. -;") -; (license license:mpl2.0))) -; -;(define-public go-github-com-hashicorp-go-net-0.0.1 -; (package -; (name "go-github-com-hashicorp-go-net") -; (version "0.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/go.net") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "06arwi95xp5rxyz7rndvhc3wlwg0jn9a5z6djf3yyg5h9zfab9i4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hashicorp/go.net")) -; (home-page "https://github.com/hashicorp/go.net") -; (synopsis #f) -; (description #f) -; (license license:bsd-3))) -; -;(define-public go-github-com-hashicorp-mdns-1.0.0 -; (package -; (name "go-github-com-hashicorp-mdns") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/mdns") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0qr4l91hhi97s8a1isnrw3s4q8pjzacqiks870vnwh15v7ig3axd")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hashicorp/mdns")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20181026203630-95b1ffbd15a5" -; ,go-golang-org-x-sys-0.0.0-20181026203630-95b1ffbd15a5) -; ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" -; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) -; ("go-golang-org-x-net-0.0.0-20181023162649-9b4f9f5ad519" -; ,go-golang-org-x-net-0.0.0-20181023162649-9b4f9f5ad519) -; ("go-golang-org-x-crypto-0.0.0-20181029021203-45a5f77698d3" -; ,go-golang-org-x-crypto-0.0.0-20181029021203-45a5f77698d3) -; ("go-github-com-miekg-dns-1.0.14" ,go-github-com-miekg-dns-1.0.14) -; ("go-github-com-hashicorp-go-net-0.0.1" -; ,go-github-com-hashicorp-go-net-0.0.1))) -; (home-page "https://github.com/hashicorp/mdns") -; (synopsis "mdns") -; (description -; "Simple mDNS client/server library in Golang. mDNS or Multicast DNS can be -;used to discover services on the local network without the use of an authoritative -;DNS server. This enables peer-to-peer discovery. It is important to note that many -;networks restrict the use of multicasting, which prevents mDNS from functioning. -;Notably, multicast cannot be used in any sort of cloud, or shared infrastructure -;environment. However it works well in most office, home, or private infrastructure -;environments.") -; (license license:expat))) -; -;(define-public go-github-com-armon-go-metrics-0.0.0-20180917152333-f0300d1749da -; (package -; (name "go-github-com-armon-go-metrics") -; (version "0.0.0-20180917152333-f0300d1749da") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/armon/go-metrics") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "13l7c35ps0r27vxfil2w0xhhc7w5rh00awvlmn4cz0a937b9ffpv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/armon/go-metrics")) -; (home-page "https://github.com/armon/go-metrics") -; (synopsis "go-metrics") -; (description -; "This library provides a @code{metrics} package which can be used to instrument code, -;expose application metrics, and profile runtime performance in a flexible manner.") -; (license license:expat))) -; -;(define-public go-github-com-hashicorp-go-uuid-1.0.0 -; (package -; (name "go-github-com-hashicorp-go-uuid") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/go-uuid") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1jflywlani7583qm4ysph40hsgx3n66n5zr2k84i057fmwa1ypfy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hashicorp/go-uuid")) -; (home-page "https://github.com/hashicorp/go-uuid") -; (synopsis "uuid") -; (description -; "Generates UUID-format strings using high quality, bytes. It is @strong{not} intended to be RFC compliant, merely to use a well-understood string representation of a 128-bit value. It can also parse UUID-format strings into their component bytes.") -; (license license:mpl2.0))) -; -;(define-public go-github-com-hashicorp-go-immutable-radix-1.0.0 -; (package -; (name "go-github-com-hashicorp-go-immutable-radix") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/go-immutable-radix") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1v3nmsnk1s8bzpclrhirz7iq0g5xxbw9q5gvrg9ss6w9crs72qr6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hashicorp/go-immutable-radix")) -; (propagated-inputs -; `(("go-github-com-hashicorp-golang-lru-0.5.0" -; ,go-github-com-hashicorp-golang-lru-0.5.0) -; ("go-github-com-hashicorp-go-uuid-1.0.0" -; ,go-github-com-hashicorp-go-uuid-1.0.0))) -; (home-page "https://github.com/hashicorp/go-immutable-radix") -; (synopsis "go-immutable-radix") -; (description -; "This package provides the @code{iradix} package that implements an immutable @url{http://en.wikipedia.org/wiki/Radix_tree,radix tree}. -;The package only provides a single @code{Tree} implementation, optimized for sparse nodes.") -; (license license:mpl2.0))) -; -;(define-public go-github-com-hashicorp-go-msgpack-0.5.3 -; (package -; (name "go-github-com-hashicorp-go-msgpack") -; (version "0.5.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/go-msgpack") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "00jv0ajqd58pkb2yyhlrjp0rv1mvb1ijx3yqjyikcmzvk9jb4h5m")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hashicorp/go-msgpack")) -; (home-page "https://github.com/hashicorp/go-msgpack") -; (synopsis "go-codec") -; (description "This repository contains the @code{go-codec} library.") -; (license license:expat))) -; -;(define-public go-github-com-hashicorp-go-sockaddr-1.0.0 -; (package -; (name "go-github-com-hashicorp-go-sockaddr") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/go-sockaddr") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1yn1xq8ysn0lszmkygz3a9lgpswbz1p91jv7q8l20s4749a22xgi")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hashicorp/go-sockaddr")) -; (home-page "https://github.com/hashicorp/go-sockaddr") -; (synopsis "go-sockaddr") -; (description -; "Package sockaddr is a Go implementation of the UNIX socket family data types and -;related helper functions. -;") -; (license license:mpl2.0))) -; -;(define-public go-github-com-miekg-dns-1.0.14 -; (package -; (name "go-github-com-miekg-dns") -; (version "1.0.14") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/miekg/dns") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1qgli6yp59bv6vc6zag84cwxmcxgnyxm1q2f301yyijk3wy5b2ak")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/miekg/dns")) -; (home-page "https://github.com/miekg/dns") -; (synopsis "Alternative (more granular) approach to a DNS library") -; (description -; "Package dns implements a full featured interface to the Domain Name System. -;Both server- and client-side programming is supported. The package allows -;complete control over what is sent out to the DNS. The API follows the -;less-is-more principle, by presenting a small, clean interface. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-sean--seed-0.0.0-20170313163322-e2103e2c3529 -; (package -; (name "go-github-com-sean--seed") -; (version "0.0.0-20170313163322-e2103e2c3529") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/sean-/seed") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0glir8jxi1w7aga2jwdb63pp1h8q4whknili7xixsqzwyy716125")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/sean-/seed")) -; (home-page "https://github.com/sean-/seed") -; (synopsis "- Quickly Seed Go's Random Number Generator") -; (description -; "Boiler-plate to securely @url{https://en.wikipedia.org/wiki/Random_seed,seed} Go's -;random number generator (if possible). This library isn't anything fancy, it's -;just a canonical way of seeding Go's random number generator. Cribbed from -;@url{https://github.com/hashicorp/nomad/commit/f89a993ec6b91636a3384dd568898245fbc273a1,(code Nomad)} -;before it was moved into -;@url{https://github.com/hashicorp/consul/commit/d695bcaae6e31ee307c11fdf55bb0bf46ea9fcf4,(code Consul)} -;and made into a helper function, and now further modularized to be a super -;lightweight and reusable library.") -; (license #f))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20181029021203-45a5f77698d3 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20181029021203-45a5f77698d3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0636jjj89wkzqchajwwzgcn4aafc334p70nawh9jzavg2mkx0ch4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20181023162649-9b4f9f5ad519 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20181023162649-9b4f9f5ad519") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "06hvxy113h76f31gv1mq6vdr6xja1zv0fdig686l2b4y2b6swych")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20181026203630-95b1ffbd15a5 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20181026203630-95b1ffbd15a5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "06c3lf93wzf5kkfmzmgn75x4c0a7159vrwjrqh6zh9zxzqq5whpq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-hashicorp-memberlist-0.1.3 -; (package -; (name "go-github-com-hashicorp-memberlist") -; (version "0.1.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/memberlist") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0k1spq7dagvqj3baqw2dhxx1zxrb02y6m3apzr3a7gyirii890g3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hashicorp/memberlist")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20181026203630-95b1ffbd15a5" -; ,go-golang-org-x-sys-0.0.0-20181026203630-95b1ffbd15a5) -; ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" -; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) -; ("go-golang-org-x-net-0.0.0-20181023162649-9b4f9f5ad519" -; ,go-golang-org-x-net-0.0.0-20181023162649-9b4f9f5ad519) -; ("go-golang-org-x-crypto-0.0.0-20181029021203-45a5f77698d3" -; ,go-golang-org-x-crypto-0.0.0-20181029021203-45a5f77698d3) -; ("go-github-com-stretchr-testify-1.2.2" -; ,go-github-com-stretchr-testify-1.2.2) -; ("go-github-com-sean--seed-0.0.0-20170313163322-e2103e2c3529" -; ,go-github-com-sean--seed-0.0.0-20170313163322-e2103e2c3529) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-pascaldekloe-goe-0.0.0-20180627143212-57f6aae5913c" -; ,go-github-com-pascaldekloe-goe-0.0.0-20180627143212-57f6aae5913c) -; ("go-github-com-miekg-dns-1.0.14" ,go-github-com-miekg-dns-1.0.14) -; ("go-github-com-hashicorp-go-sockaddr-1.0.0" -; ,go-github-com-hashicorp-go-sockaddr-1.0.0) -; ("go-github-com-hashicorp-go-multierror-1.0.0" -; ,go-github-com-hashicorp-go-multierror-1.0.0) -; ("go-github-com-hashicorp-go-msgpack-0.5.3" -; ,go-github-com-hashicorp-go-msgpack-0.5.3) -; ("go-github-com-hashicorp-go-immutable-radix-1.0.0" -; ,go-github-com-hashicorp-go-immutable-radix-1.0.0) -; ("go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c" -; ,go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1) -; ("go-github-com-armon-go-metrics-0.0.0-20180917152333-f0300d1749da" -; ,go-github-com-armon-go-metrics-0.0.0-20180917152333-f0300d1749da))) -; (home-page "https://github.com/hashicorp/memberlist") -; (synopsis "memberlist") -; (description -; "memberlist is a library that manages cluster -;membership and member failure detection using a gossip based protocol. -;") -; (license license:mpl2.0))) -; -;(define-public go-github-com-armon-go-radix-0.0.0-20180808171621-7fddfc383310 -; (package -; (name "go-github-com-armon-go-radix") -; (version "0.0.0-20180808171621-7fddfc383310") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/armon/go-radix") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0y8chspn14n9xpsfb9gxnnf819rfpriaz64v81p7873a42kkhxb4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/armon/go-radix")) -; (home-page "https://github.com/armon/go-radix") -; (synopsis "go-radix") -; (description -; "This package provides the @code{radix} package that implements a @url{http://en.wikipedia.org/wiki/Radix_tree,radix tree}. -;The package only provides a single @code{Tree} implementation, optimized for sparse nodes.") -; (license license:expat))) -; -;(define-public go-github-com-bgentry-speakeasy-0.1.0 -; (package -; (name "go-github-com-bgentry-speakeasy") -; (version "0.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/bgentry/speakeasy") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "02dfrj0wyphd3db9zn2mixqxwiz1ivnyc5xc7gkz58l5l27nzp8s")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/bgentry/speakeasy")) -; (home-page "https://github.com/bgentry/speakeasy") -; (synopsis "Speakeasy") -; (description -; "This package provides cross-platform Go (#golang) helpers for taking user input -;from the terminal while not echoing the input back (similar to @code{getpasswd}). The -;package uses syscalls to avoid any dependence on cgo, and is therefore -;compatible with cross-compiling.") -; (license license:expat))) -; -;(define-public go-github-com-fatih-color-1.7.0 -; (package -; (name "go-github-com-fatih-color") -; (version "1.7.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/fatih/color") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0v8msvg38r8d1iiq2i5r4xyfx0invhc941kjrsg5gzwvagv55inv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/fatih/color")) -; (home-page "https://github.com/fatih/color") -; (synopsis "color") -; (description -; "Package color is an ANSI color package to output colorized or SGR defined -;output to the standard output. The API can be used in several way, pick one -;that suits you. -;") -; (license license:expat))) -; -;(define-public go-github-com-hashicorp-errwrap-1.0.0 -; (package -; (name "go-github-com-hashicorp-errwrap") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/errwrap") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0slfb6w3b61xz04r32bi0a1bygc82rjzhqkxj2si2074wynqnr1c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hashicorp/errwrap")) -; (home-page "https://github.com/hashicorp/errwrap") -; (synopsis "errwrap") -; (description -; "Package errwrap implements methods to formalize error wrapping in Go. -;") -; (license license:mpl2.0))) -; -;(define-public go-github-com-hashicorp-go-multierror-1.0.0 -; (package -; (name "go-github-com-hashicorp-go-multierror") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/go-multierror") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "00nyn8llqzbfm8aflr9kwsvpzi4kv8v45c141v88xskxp5xf6z49")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hashicorp/go-multierror")) -; (propagated-inputs -; `(("go-github-com-hashicorp-errwrap-1.0.0" -; ,go-github-com-hashicorp-errwrap-1.0.0))) -; (home-page "https://github.com/hashicorp/go-multierror") -; (synopsis "go-multierror") -; (description -; "@code{go-multierror} is a package for Go that provides a mechanism for -;representing a list of @code{error} values as a single @code{error}.") -; (license license:mpl2.0))) -; -;(define-public go-github-com-mattn-go-colorable-0.0.9 -; (package -; (name "go-github-com-mattn-go-colorable") -; (version "0.0.9") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mattn/go-colorable") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1nwjmsppsjicr7anq8na6md7b1z84l9ppnlr045hhxjvbkqwalvx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mattn/go-colorable")) -; (home-page "https://github.com/mattn/go-colorable") -; (synopsis "go-colorable") -; (description "Colorable writer for windows.") -; (license license:expat))) -; -;(define-public go-github-com-mattn-go-isatty-0.0.3 -; (package -; (name "go-github-com-mattn-go-isatty") -; (version "0.0.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mattn/go-isatty") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "06w45aqz2a6yrk25axbly2k5wmsccv8cspb94bfmz4izvw8h927n")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mattn/go-isatty")) -; (home-page "https://github.com/mattn/go-isatty") -; (synopsis "go-isatty") -; (description "Package isatty implements interface to isatty -;") -; (license license:expat))) -; -;(define-public go-github-com-posener-complete-1.1.1 -; (package -; (name "go-github-com-posener-complete") -; (version "1.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/posener/complete") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1nbdiybjizbaxbf5q0xwbq0cjqw4bl6jggvsjzrpif0w86fcjda2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/posener/complete")) -; (home-page "https://github.com/posener/complete") -; (synopsis "complete") -; (description -; "Package complete provides a tool for bash writing bash completion in go, and bash completion for the go command line. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-sys-0.0.0-20180823144017-11551d06cbcc -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20180823144017-11551d06cbcc") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0j34525b9smcyjqmxvvqgcfn87kkx3b2izidmjp2cmhjxzjrgpwm")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-mitchellh-cli-1.0.0 -; (package -; (name "go-github-com-mitchellh-cli") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mitchellh/cli") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1i9kmr7rcf10d2hji8h4247hmc0nbairv7a0q51393aw2h1bnwg2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mitchellh/cli")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20180823144017-11551d06cbcc" -; ,go-golang-org-x-sys-0.0.0-20180823144017-11551d06cbcc) -; ("go-github-com-posener-complete-1.1.1" -; ,go-github-com-posener-complete-1.1.1) -; ("go-github-com-mattn-go-isatty-0.0.3" -; ,go-github-com-mattn-go-isatty-0.0.3) -; ("go-github-com-mattn-go-colorable-0.0.9" -; ,go-github-com-mattn-go-colorable-0.0.9) -; ("go-github-com-hashicorp-go-multierror-1.0.0" -; ,go-github-com-hashicorp-go-multierror-1.0.0) -; ("go-github-com-fatih-color-1.7.0" ,go-github-com-fatih-color-1.7.0) -; ("go-github-com-bgentry-speakeasy-0.1.0" -; ,go-github-com-bgentry-speakeasy-0.1.0) -; ("go-github-com-armon-go-radix-0.0.0-20180808171621-7fddfc383310" -; ,go-github-com-armon-go-radix-0.0.0-20180808171621-7fddfc383310))) -; (home-page "https://github.com/mitchellh/cli") -; (synopsis "Go CLI Library") -; (description -; "cli is a library for implementing powerful command-line interfaces in Go. -;cli is the library that powers the CLI for -;@url{https://github.com/mitchellh/packer,Packer}, -;@url{https://github.com/hashicorp/serf,Serf}, -;@url{https://github.com/hashicorp/consul,Consul}, -;@url{https://github.com/hashicorp/vault,Vault}, -;@url{https://github.com/hashicorp/terraform,Terraform}, and -;@url{https://github.com/hashicorp/nomad,Nomad}.") -; (license license:mpl2.0))) -; -;(define-public go-github-com-mitchellh-gox-0.4.0 -; (package -; (name "go-github-com-mitchellh-gox") -; (version "0.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mitchellh/gox") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1q4fdkw904mrmh1q5z8pfd3r0gcn5dm776kldqawddy93iiwnp8r")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mitchellh/gox")) -; (home-page "https://github.com/mitchellh/gox") -; (synopsis "Gox - Simple Go Cross Compilation") -; (description -; "Gox is a simple, no-frills tool for Go cross compilation that behaves a -;lot like standard @code{go build}. Gox will parallelize builds for multiple -;platforms. Gox will also build the cross-compilation toolchain for you.") -; (license license:mpl2.0))) -; -;(define-public go-github-com-mitchellh-iochan-1.0.0 -; (package -; (name "go-github-com-mitchellh-iochan") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mitchellh/iochan") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "058n9bbf536f2nw3pbs7pysrg9cqvgkb28z2zf5wjyrzrknyk53g")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mitchellh/iochan")) -; (home-page "https://github.com/mitchellh/iochan") -; (synopsis "iochan") -; (description -; "iochan is a Go library for treating @code{io} readers and writers like channels. -;This is useful when sometimes you wish to use @code{io.Reader} and such in @code{select} -;statements.") -; (license license:expat))) -; -;(define-public go-github-com-mitchellh-mapstructure-0.0.0-20160808181253-ca63d7c062ee -; (package -; (name "go-github-com-mitchellh-mapstructure") -; (version "0.0.0-20160808181253-ca63d7c062ee") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mitchellh/mapstructure") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1yjwhgi57l5fxlmpdchipdd4jasdn1sa8ccl2f2486v06rv6z7gr")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mitchellh/mapstructure")) -; (home-page "https://github.com/mitchellh/mapstructure") -; (synopsis "mapstructure") -; (description -; "Package mapstructure exposes functionality to convert one arbitrary -;Go type into another, typically to convert a map[string]interface{} -;into a native Go structure. -;") -; (license license:expat))) -; -;(define-public go-github-com-ryanuber-columnize-0.0.0-20160712163229-9b3edd62028f -; (package -; (name "go-github-com-ryanuber-columnize") -; (version "0.0.0-20160712163229-9b3edd62028f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/ryanuber/columnize") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ya1idkbb0a9fjlhkcnh5a9yvpwzwfmbyg7d56lpplwr9rqi1da4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/ryanuber/columnize")) -; (home-page "https://github.com/ryanuber/columnize") -; (synopsis "Columnize") -; (description "Easy column-formatted output for golang") -; (license license:expat))) -; -;(define-public go-golang-org-x-net-0.0.0-20181201002055-351d144fa1fc -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20181201002055-351d144fa1fc") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1c5x25qjyz83y92bq0lll5kmznyi3m02wd4c54scgf0866gy938k")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-github-com-hashicorp-serf-0.8.2 -; (package -; (name "go-github-com-hashicorp-serf") -; (version "0.8.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/serf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0nrslghvdjhaczr2xp9mn8xgcx1dxl4jgpbk0l61ssmxahpx4iyc")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hashicorp/serf")) -; (propagated-inputs -; `(("go-golang-org-x-net-0.0.0-20181201002055-351d144fa1fc" -; ,go-golang-org-x-net-0.0.0-20181201002055-351d144fa1fc) -; ("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0) -; ("go-github-com-ryanuber-columnize-0.0.0-20160712163229-9b3edd62028f" -; ,go-github-com-ryanuber-columnize-0.0.0-20160712163229-9b3edd62028f) -; ("go-github-com-mitchellh-mapstructure-0.0.0-20160808181253-ca63d7c062ee" -; ,go-github-com-mitchellh-mapstructure-0.0.0-20160808181253-ca63d7c062ee) -; ("go-github-com-mitchellh-iochan-1.0.0" -; ,go-github-com-mitchellh-iochan-1.0.0) -; ("go-github-com-mitchellh-gox-0.4.0" -; ,go-github-com-mitchellh-gox-0.4.0) -; ("go-github-com-mitchellh-cli-1.0.0" -; ,go-github-com-mitchellh-cli-1.0.0) -; ("go-github-com-hashicorp-memberlist-0.1.3" -; ,go-github-com-hashicorp-memberlist-0.1.3) -; ("go-github-com-hashicorp-mdns-1.0.0" -; ,go-github-com-hashicorp-mdns-1.0.0) -; ("go-github-com-hashicorp-logutils-1.0.0" -; ,go-github-com-hashicorp-logutils-1.0.0) -; ("go-github-com-hashicorp-go-uuid-1.0.1" -; ,go-github-com-hashicorp-go-uuid-1.0.1) -; ("go-github-com-hashicorp-go-syslog-1.0.0" -; ,go-github-com-hashicorp-go-syslog-1.0.0) -; ("go-github-com-hashicorp-go-msgpack-0.5.3" -; ,go-github-com-hashicorp-go-msgpack-0.5.3) -; ("go-github-com-armon-go-metrics-0.0.0-20180917152333-f0300d1749da" -; ,go-github-com-armon-go-metrics-0.0.0-20180917152333-f0300d1749da) -; ("go-github-com-armon-circbuf-0.0.0-20150827004946-bbbad097214e" -; ,go-github-com-armon-circbuf-0.0.0-20150827004946-bbbad097214e))) -; (home-page "https://github.com/hashicorp/serf") -; (synopsis "Serf") -; (description -; "Serf is a decentralized solution for service discovery and orchestration -;that is lightweight, highly available, and fault tolerant.") -; (license license:mpl2.0))) -; -;(define-public go-github-com-mitchellh-mapstructure-1.1.2 -; (package -; (name "go-github-com-mitchellh-mapstructure") -; (version "1.1.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mitchellh/mapstructure") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "03bpv28jz9zhn4947saqwi328ydj7f6g6pf1m2d4m5zdh5jlfkrr")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mitchellh/mapstructure")) -; (home-page "https://github.com/mitchellh/mapstructure") -; (synopsis "mapstructure") -; (description -; "Package mapstructure exposes functionality to convert one arbitrary -;Go type into another, typically to convert a map[string]interface{} -;into a native Go structure. -;") -; (license license:expat))) -; -;(define-public go-github-com-pascaldekloe-goe-0.0.0-20180627143212-57f6aae5913c -; (package -; (name "go-github-com-pascaldekloe-goe") -; (version "0.0.0-20180627143212-57f6aae5913c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/pascaldekloe/goe") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1dqd3mfb4z2vmv6pg6fhgvfc53vhndk24wcl9lj1rz02n6m279fq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/pascaldekloe/goe")) -; (home-page "https://github.com/pascaldekloe/goe") -; (synopsis "Go Enterprise") -; (description -; "Common enterprise features for the Go programming language (golang).") -; (license license:cc0))) -; -;(define-public go-github-com-stretchr-testify-1.3.0 -; (package -; (name "go-github-com-stretchr-testify") -; (version "1.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/testify") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0wjchp2c8xbgcbbq32w3kvblk6q6yn533g78nxl6iskq6y95lxsy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/testify")) -; (propagated-inputs -; `(("go-github-com-stretchr-objx-0.1.0" -; ,go-github-com-stretchr-objx-0.1.0) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-davecgh-go-spew-1.1.0" -; ,go-github-com-davecgh-go-spew-1.1.0))) -; (home-page "https://github.com/stretchr/testify") -; (synopsis "Testify - Thou Shalt Write Tests") -; (description -; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -;") -; (license license:expat))) -; -;(define-public go-github-com-hashicorp-consul-api-1.1.0 -; (package -; (name "go-github-com-hashicorp-consul-api") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/consul") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0xm3gl8i7pgsbsc2397bwh9hp2dwnk4cmw5y05acqn3zpyp84sbv")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path -; "github.com/hashicorp/consul/api" -; #:unpack-path -; "github.com/hashicorp/consul")) -; (propagated-inputs -; `(("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0) -; ("go-github-com-pascaldekloe-goe-0.0.0-20180627143212-57f6aae5913c" -; ,go-github-com-pascaldekloe-goe-0.0.0-20180627143212-57f6aae5913c) -; ("go-github-com-mitchellh-mapstructure-1.1.2" -; ,go-github-com-mitchellh-mapstructure-1.1.2) -; ("go-github-com-hashicorp-serf-0.8.2" -; ,go-github-com-hashicorp-serf-0.8.2) -; ("go-github-com-hashicorp-go-uuid-1.0.1" -; ,go-github-com-hashicorp-go-uuid-1.0.1) -; ("go-github-com-hashicorp-go-rootcerts-1.0.0" -; ,go-github-com-hashicorp-go-rootcerts-1.0.0) -; ("go-github-com-hashicorp-go-cleanhttp-0.5.1" -; ,go-github-com-hashicorp-go-cleanhttp-0.5.1))) -; (home-page "https://github.com/hashicorp/consul") -; (synopsis "Consul API client") -; (description -; "This package provides the @code{api} package which attempts to -;provide programmatic access to the full Consul API.") -; (license license:mpl2.0))) -; -;(define-public go-github-com-golang-mock-1.5.0 -; (package -; (name "go-github-com-golang-mock") -; (version "1.5.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/mock") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "12l7p08pwwk3xn70w7rlm28nz6jf4szlzgjxjfmbssyirxxxy8v1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/mock")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" -; ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) -; ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0))) -; (home-page "https://github.com/golang/mock") -; (synopsis "gomock") -; (description -; "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It -;integrates well with Go's built-in @code{testing} package, but can be used in other -;contexts too.") -; (license license:asl2.0))) -; -;(define-public go-github-com-google-pprof-0.0.0-20210226084205-cbba55b83ad5 -; (package -; (name "go-github-com-google-pprof") -; (version "0.0.0-20210226084205-cbba55b83ad5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/pprof") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0drr44nqq0s3jillcrl8qa7sklxybs083lvashdh2ad62hrs31l7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/pprof")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" -; ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) -; ("go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639" -; ,go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639) -; ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" -; ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) -; ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" -; ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) -; ("go-github-com-chzyer-logex-1.1.10" -; ,go-github-com-chzyer-logex-1.1.10))) -; (home-page "https://github.com/google/pprof") -; (synopsis "Introduction") -; (description -; "pprof is a tool for collection, manipulation and visualization -;of performance profiles. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20210226172049-e18ecbb05110") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1vlq8mdscp7yfaa1lmyv03y5m4c2d67ydg2q1i6smkrxghn3zn3q")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) -; ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" -; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) -; ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" -; ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-github-com-google-pprof-0.0.0-20210122040257-d980be63207e -; (package -; (name "go-github-com-google-pprof") -; (version "0.0.0-20210122040257-d980be63207e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/pprof") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0vg5z6rp5kfd324w8j12hlx9zv049vxljpc6dyqkj2k9vzzzqkw8")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/pprof")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" -; ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) -; ("go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639" -; ,go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639) -; ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" -; ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) -; ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" -; ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) -; ("go-github-com-chzyer-logex-1.1.10" -; ,go-github-com-chzyer-logex-1.1.10))) -; (home-page "https://github.com/google/pprof") -; (synopsis "Introduction") -; (description -; "pprof is a tool for collection, manipulation and visualization -;of performance profiles. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-mod-0.4.1 -; (package -; (name "go-golang-org-x-mod") -; (version "0.4.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/mod") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0q4p41223d1xh4jmw9vmywjfi0jzn56gbidrwv5x1bzmx2qmj01n")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/mod")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" -; ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) -; ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" -; ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) -; ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" -; ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) -; (home-page "https://golang.org/x/mod") -; (synopsis "mod") -; (description -; "This repository holds packages for writing tools -;that work directly with Go module mechanics. -;That is, it is for direct manipulation of Go modules themselves.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20210119194325-5f4716e94777 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20210119194325-5f4716e94777") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1xh4hk0fhkzq096z9qbzqfswmmgg4kvb44qvazpandvlpwm4jds2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) -; ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" -; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) -; ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" -; ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-oauth2-0.0.0-20210218202405-ba52d332ba99 -; (package -; (name "go-golang-org-x-oauth2") -; (version "0.0.0-20210218202405-ba52d332ba99") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/oauth2") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0fdm3fljk3k4xbpzaywccayrhgqdfl79vl18k4z1zw2pl654bqbg")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/oauth2")) -; (propagated-inputs -; `(("go-google-golang-org-appengine-1.6.6" -; ,go-google-golang-org-appengine-1.6.6) -; ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" -; ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) -; ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) -; (home-page "https://golang.org/x/oauth2") -; (synopsis "OAuth2 for Go") -; (description -; "Package oauth2 provides support for making -;OAuth2 authorized and authenticated HTTP requests, -;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -;It can additionally grant authorization with Bearer JWT. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20210220050731-9a76102bfb43 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20210220050731-9a76102bfb43") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "07qn19yla2w604p3dc8h1c75xj2pxc4fajvg0mf0d4c72d5qiss4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-google-pprof-0.0.0-20201203190320-1bf35d6f28c2 -; (package -; (name "go-github-com-google-pprof") -; (version "0.0.0-20201203190320-1bf35d6f28c2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/pprof") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "140n5hjk2faanrf6v5h1559g755rgavynz1r99s1n15bmgibysvp")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/pprof")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" -; ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) -; ("go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639" -; ,go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639) -; ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" -; ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) -; ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" -; ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) -; ("go-github-com-chzyer-logex-1.1.10" -; ,go-github-com-chzyer-logex-1.1.10))) -; (home-page "https://github.com/google/pprof") -; (synopsis "Introduction") -; (description -; "pprof is a tool for collection, manipulation and visualization -;of performance profiles. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-mod-0.4.0 -; (package -; (name "go-golang-org-x-mod") -; (version "0.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/mod") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ri003765yxawq6s8jbkbiaijihwrg980c4qwqsaa5x0sq2psrg1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/mod")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" -; ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) -; ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" -; ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) -; ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" -; ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) -; (home-page "https://golang.org/x/mod") -; (synopsis "mod") -; (description -; "This repository holds packages for writing tools -;that work directly with Go module mechanics. -;That is, it is for direct manipulation of Go modules themselves.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20201209123823-ac852fbbde11 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20201209123823-ac852fbbde11") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1zmp2fxgf7792xx15qhzcsfs8k0qv7q3m6jlcj6qvdngfzyvna64")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) -; ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" -; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) -; ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" -; ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20201208233053-a543418bbed2 -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20201208233053-a543418bbed2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0r87p89pm2h75yajsz0g2vvy2q3z9gknc0fmsdm5rh427f1qazfr")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" -; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) -; ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" -; ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) -; ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" -; ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) -; ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) -; ("go-github-com-yuin-goldmark-1.2.1" -; ,go-github-com-yuin-goldmark-1.2.1))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-github-com-google-martian-v3-3.1.0 -; (package -; (name "go-github-com-google-martian-v3") -; (version "3.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/martian") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1pr9akggfzj2vw11l7ry4sij0hqslpc3gwx4ynbzyvbjhvh64sbc")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/martian/v3")) -; (propagated-inputs -; `(("go-golang-org-x-net-0.0.0-20190628185345-da137c7871d7" -; ,go-golang-org-x-net-0.0.0-20190628185345-da137c7871d7))) -; (home-page "https://github.com/google/martian") -; (synopsis "Martian Proxy") -; (description -; "Package martian provides an HTTP/1.1 proxy with an API for configurable -;request and response modifiers. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639 -; (package -; (name "go-github-com-ianlancetaylor-demangle") -; (version "0.0.0-20200824232613-28f6c0f3b639") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/ianlancetaylor/demangle") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0rsq3622gd40f1x1l7caidsxrmzg1993ich2higwd94fqbxs1r83")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/ianlancetaylor/demangle")) -; (home-page "https://github.com/ianlancetaylor/demangle") -; (synopsis "github.com/ianlancetaylor/demangle") -; (description -; "Package demangle defines functions that demangle GCC/LLVM -;C++ and Rust symbol names. -;This package recognizes names that were mangled according to the C++ ABI -;defined at @url{http://codesourcery.com/cxx-abi/,http://codesourcery.com/cxx-abi/} and the Rust ABI -;defined at -;@url{https://rust-lang.github.io/rfcs/2603-rust-symbol-name-mangling-v0.html,https://rust-lang.github.io/rfcs/2603-rust-symbol-name-mangling-v0.html} -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-google-pprof-0.0.0-20201023163331-3e6fc7fc9c4c -; (package -; (name "go-github-com-google-pprof") -; (version "0.0.0-20201023163331-3e6fc7fc9c4c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/pprof") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1xmy4579gx45lqsy1cgddnc7nmaqfpiwd2kc5dhf8i0wjjvf18hq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/pprof")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" -; ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) -; ("go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639" -; ,go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639) -; ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" -; ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) -; ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" -; ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) -; ("go-github-com-chzyer-logex-1.1.10" -; ,go-github-com-chzyer-logex-1.1.10))) -; (home-page "https://github.com/google/pprof") -; (synopsis "Introduction") -; (description -; "pprof is a tool for collection, manipulation and visualization -;of performance profiles. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-net-0.0.0-20201031054903-ff519b6c9102 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20201031054903-ff519b6c9102") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "162ssgcc0kgj42ajaki0q3j5lwmixqqwkdqcmz41xg1k8wjm7riw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) -; ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" -; ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) -; ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" -; ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-text-0.3.4 -; (package -; (name "go-golang-org-x-text") -; (version "0.3.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/text") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "11jdvix83xcl5xnb039y4zrz4x5skzsps0w1jryp6wrar53cydvz")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/text")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" -; ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) -; (home-page "https://golang.org/x/text") -; (synopsis "Go Text") -; (description -; "text is a repository of text-related packages related to internationalization -;(i18n) and localization (l10n), such as character encodings, text -;transformations, and locale-specific text handling. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20201110124207-079ba7bd75cd -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20201110124207-079ba7bd75cd") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0g4d7cx480rbnpg16qqc4yycd50lpp2mi2qzvzr6hdny91v7sa05")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" -; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) -; ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" -; ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) -; ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" -; ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) -; ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) -; ("go-github-com-yuin-goldmark-1.2.1" -; ,go-github-com-yuin-goldmark-1.2.1))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-github-com-google-go-cmp-0.5.2 -; (package -; (name "go-github-com-google-go-cmp") -; (version "0.5.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/go-cmp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0qchy411jm9q2l9mf7x3ry2ycaqp9xdhf2nx14qrpzcxfigv2705")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/go-cmp")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" -; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) -; (home-page "https://github.com/google/go-cmp") -; (synopsis "Package for equality of Go values") -; (description -; "This package is intended to be a more powerful and safer alternative to -;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-oauth2-0.0.0-20200902213428-5d25da1a8d43 -; (package -; (name "go-golang-org-x-oauth2") -; (version "0.0.0-20200902213428-5d25da1a8d43") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/oauth2") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "14jx8sxshbvnx4fggn12mlmz000zcrd1a73n1455b1wgg1xfzq3n")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/oauth2")) -; (propagated-inputs -; `(("go-google-golang-org-appengine-1.6.6" -; ,go-google-golang-org-appengine-1.6.6) -; ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" -; ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) -; ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) -; (home-page "https://golang.org/x/oauth2") -; (synopsis "OAuth2 for Go") -; (description -; "Package oauth2 provides support for making -;OAuth2 authorized and authenticated HTTP requests, -;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -;It can additionally grant authorization with Bearer JWT. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20200905004654-be1d3432aa8f -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20200905004654-be1d3432aa8f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1kd3szjsazhpgidv5xjv0s26fm4wvv2cr7j4zk8nblnqkic58as2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20200904185747-39188db58858 -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20200904185747-39188db58858") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ydyylwqzjwijy4rdp2fmvnfh3s27896dx6g74r2wa6vbhisszvk")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" -; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) -; ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" -; ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) -; ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" -; ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) -; ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) -; ("go-github-com-yuin-goldmark-1.2.1" -; ,go-github-com-yuin-goldmark-1.2.1))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20200904004341-0bd0a958aa1d -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20200904004341-0bd0a958aa1d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "01xp4ic4jvdv7n984cjgrgqbpbi9m4bj2xnfrs1s1zn1adx0jivs")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.24.0" -; ,go-google-golang-org-protobuf-1.24.0) -; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) -; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" -; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-github-com-golang-protobuf-1.4.1" -; ,go-github-com-golang-protobuf-1.4.1))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-grpc-1.31.1 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.31.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "18565vf9i2zc69znd9b8a2iz0kgv5cms0g0ppj93hnhri8rjqagk")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" -; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.3.3" -; ,go-github-com-golang-protobuf-1.3.3) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-envoyproxy-go-control-plane-0.9.4" -; ,go-github-com-envoyproxy-go-control-plane-0.9.4) -; ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" -; ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-api-0.35.0 -; (package -; (name "go-google-golang-org-api") -; (version "0.35.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-api-go-client") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0fgn21lmrlkw44sl0ivjicygwksibb1pclzp3zyh3ivn7ylvk2jd")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/api")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.31.1" ,go-google-golang-org-grpc-1.31.1) -; ("go-google-golang-org-genproto-0.0.0-20200904004341-0bd0a958aa1d" -; ,go-google-golang-org-genproto-0.0.0-20200904004341-0bd0a958aa1d) -; ("go-google-golang-org-appengine-1.6.6" -; ,go-google-golang-org-appengine-1.6.6) -; ("go-golang-org-x-tools-0.0.0-20200904185747-39188db58858" -; ,go-golang-org-x-tools-0.0.0-20200904185747-39188db58858) -; ("go-golang-org-x-sys-0.0.0-20200905004654-be1d3432aa8f" -; ,go-golang-org-x-sys-0.0.0-20200905004654-be1d3432aa8f) -; ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" -; ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) -; ("go-golang-org-x-oauth2-0.0.0-20200902213428-5d25da1a8d43" -; ,go-golang-org-x-oauth2-0.0.0-20200902213428-5d25da1a8d43) -; ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" -; ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) -; ("go-go-opencensus-io-0.22.4" ,go-go-opencensus-io-0.22.4) -; ("go-github-com-googleapis-gax-go-v2-2.0.5" -; ,go-github-com-googleapis-gax-go-v2-2.0.5) -; ("go-github-com-google-go-cmp-0.5.2" -; ,go-github-com-google-go-cmp-0.5.2) -; ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) -; (home-page "https://google.golang.org/api") -; (synopsis "Google APIs Client Library for Go") -; (description -; "Package api is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of -;sub-packages. -;") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20201109203340-2640f1f9cdfb -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20201109203340-2640f1f9cdfb") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "00mwybjbdpvmlkvmwsjvdb2z8lzzx2a340y4pf3bxqamalhdka0w")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.24.0" -; ,go-google-golang-org-protobuf-1.24.0) -; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) -; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" -; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-github-com-golang-protobuf-1.4.1" -; ,go-github-com-golang-protobuf-1.4.1))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-cloud-google-com-go-0.72.0 -; (package -; (name "go-cloud-google-com-go") -; (version "0.72.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-cloud-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1x4gy466jrzab9l02dwd3lvy2dwy84j34zpjkm5xnxh45za6hpxn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "cloud.google.com/go")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) -; ("go-google-golang-org-genproto-0.0.0-20201109203340-2640f1f9cdfb" -; ,go-google-golang-org-genproto-0.0.0-20201109203340-2640f1f9cdfb) -; ("go-google-golang-org-api-0.35.0" ,go-google-golang-org-api-0.35.0) -; ("go-golang-org-x-tools-0.0.0-20201110124207-079ba7bd75cd" -; ,go-golang-org-x-tools-0.0.0-20201110124207-079ba7bd75cd) -; ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) -; ("go-golang-org-x-oauth2-0.0.0-20200902213428-5d25da1a8d43" -; ,go-golang-org-x-oauth2-0.0.0-20200902213428-5d25da1a8d43) -; ("go-golang-org-x-net-0.0.0-20201031054903-ff519b6c9102" -; ,go-golang-org-x-net-0.0.0-20201031054903-ff519b6c9102) -; ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" -; ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) -; ("go-go-opencensus-io-0.22.5" ,go-go-opencensus-io-0.22.5) -; ("go-github-com-jstemmer-go-junit-report-0.9.1" -; ,go-github-com-jstemmer-go-junit-report-0.9.1) -; ("go-github-com-googleapis-gax-go-v2-2.0.5" -; ,go-github-com-googleapis-gax-go-v2-2.0.5) -; ("go-github-com-google-pprof-0.0.0-20201023163331-3e6fc7fc9c4c" -; ,go-github-com-google-pprof-0.0.0-20201023163331-3e6fc7fc9c4c) -; ("go-github-com-google-martian-v3-3.1.0" -; ,go-github-com-google-martian-v3-3.1.0) -; ("go-github-com-google-go-cmp-0.5.2" -; ,go-github-com-google-go-cmp-0.5.2) -; ("go-github-com-golang-protobuf-1.4.3" -; ,go-github-com-golang-protobuf-1.4.3) -; ("go-github-com-golang-mock-1.4.4" ,go-github-com-golang-mock-1.4.4) -; ("go-cloud-google-com-go-storage-1.10.0" -; ,go-cloud-google-com-go-storage-1.10.0))) -; (home-page "https://cloud.google.com/go") -; (synopsis "Google Cloud Client Libraries for Go") -; (description -; "Package cloud is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -;of sub-packages. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-oauth2-0.0.0-20201109201403-9fd604954f58 -; (package -; (name "go-golang-org-x-oauth2") -; (version "0.0.0-20201109201403-9fd604954f58") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/oauth2") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "06dj14f6jrgpqmf3v3z74zhcin3yj7yp8mzxljm3a3ihq984kz8v")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/oauth2")) -; (propagated-inputs -; `(("go-google-golang-org-appengine-1.6.6" -; ,go-google-golang-org-appengine-1.6.6) -; ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" -; ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) -; ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) -; (home-page "https://golang.org/x/oauth2") -; (synopsis "OAuth2 for Go") -; (description -; "Package oauth2 provides support for making -;OAuth2 authorized and authenticated HTTP requests, -;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -;It can additionally grant authorization with Bearer JWT. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20201201145000-ef89a241ccb3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0a8myxx2mvdr77a003gpy5jmdzbxbnrf5zppmpl4za4sspxlmwif")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20201201161351-ac6f37ff4c2a -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20201201161351-ac6f37ff4c2a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0akq0z86x51rh556fs7icjmmmgdyaa7rq7cmqlngrmvjb79wnwpl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" -; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) -; ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" -; ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) -; ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" -; ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) -; ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) -; ("go-github-com-yuin-goldmark-1.2.1" -; ,go-github-com-yuin-goldmark-1.2.1))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20201201144952-b05cb90ed32e -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20201201144952-b05cb90ed32e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1n9jlhnn5fg7a41ahdril7wgfli43kxplnpxbdbhrkknjra7xdjd")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.24.0" -; ,go-google-golang-org-protobuf-1.24.0) -; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) -; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" -; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-github-com-golang-protobuf-1.4.1" -; ,go-github-com-golang-protobuf-1.4.1))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-api-0.36.0 -; (package -; (name "go-google-golang-org-api") -; (version "0.36.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-api-go-client") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1x6wlavrqi2r6ss3h2kg94p2lfj0z019kc85zm1pajpf0k23fxp7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/api")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) -; ("go-google-golang-org-genproto-0.0.0-20201201144952-b05cb90ed32e" -; ,go-google-golang-org-genproto-0.0.0-20201201144952-b05cb90ed32e) -; ("go-google-golang-org-appengine-1.6.7" -; ,go-google-golang-org-appengine-1.6.7) -; ("go-golang-org-x-tools-0.0.0-20201201161351-ac6f37ff4c2a" -; ,go-golang-org-x-tools-0.0.0-20201201161351-ac6f37ff4c2a) -; ("go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3" -; ,go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3) -; ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" -; ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) -; ("go-golang-org-x-oauth2-0.0.0-20201109201403-9fd604954f58" -; ,go-golang-org-x-oauth2-0.0.0-20201109201403-9fd604954f58) -; ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" -; ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) -; ("go-go-opencensus-io-0.22.5" ,go-go-opencensus-io-0.22.5) -; ("go-github-com-googleapis-gax-go-v2-2.0.5" -; ,go-github-com-googleapis-gax-go-v2-2.0.5) -; ("go-github-com-google-go-cmp-0.5.4" -; ,go-github-com-google-go-cmp-0.5.4) -; ("go-cloud-google-com-go-0.72.0" ,go-cloud-google-com-go-0.72.0))) -; (home-page "https://google.golang.org/api") -; (synopsis "Google APIs Client Library for Go") -; (description -; "Package api is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of -;sub-packages. -;") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20201210142538-e3217bee35cc -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20201210142538-e3217bee35cc") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1bzfa58dw7jmkrp46hikbsq1yyk2r29a1gn51sqlilbvf7lq96p9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.24.0" -; ,go-google-golang-org-protobuf-1.24.0) -; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) -; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" -; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-github-com-golang-protobuf-1.4.1" -; ,go-github-com-golang-protobuf-1.4.1))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-cloud-google-com-go-0.74.0 -; (package -; (name "go-cloud-google-com-go") -; (version "0.74.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-cloud-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "09j1qppf2gf14bn06hsyrj9jaxz9vlbs9d7yrxrdvh2234qsbggy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "cloud.google.com/go")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.34.0" ,go-google-golang-org-grpc-1.34.0) -; ("go-google-golang-org-genproto-0.0.0-20201210142538-e3217bee35cc" -; ,go-google-golang-org-genproto-0.0.0-20201210142538-e3217bee35cc) -; ("go-google-golang-org-api-0.36.0" ,go-google-golang-org-api-0.36.0) -; ("go-golang-org-x-tools-0.0.0-20201208233053-a543418bbed2" -; ,go-golang-org-x-tools-0.0.0-20201208233053-a543418bbed2) -; ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) -; ("go-golang-org-x-oauth2-0.0.0-20201208152858-08078c50e5b5" -; ,go-golang-org-x-oauth2-0.0.0-20201208152858-08078c50e5b5) -; ("go-golang-org-x-net-0.0.0-20201209123823-ac852fbbde11" -; ,go-golang-org-x-net-0.0.0-20201209123823-ac852fbbde11) -; ("go-golang-org-x-mod-0.4.0" ,go-golang-org-x-mod-0.4.0) -; ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" -; ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) -; ("go-go-opencensus-io-0.22.5" ,go-go-opencensus-io-0.22.5) -; ("go-github-com-jstemmer-go-junit-report-0.9.1" -; ,go-github-com-jstemmer-go-junit-report-0.9.1) -; ("go-github-com-googleapis-gax-go-v2-2.0.5" -; ,go-github-com-googleapis-gax-go-v2-2.0.5) -; ("go-github-com-google-pprof-0.0.0-20201203190320-1bf35d6f28c2" -; ,go-github-com-google-pprof-0.0.0-20201203190320-1bf35d6f28c2) -; ("go-github-com-google-martian-v3-3.1.0" -; ,go-github-com-google-martian-v3-3.1.0) -; ("go-github-com-google-go-cmp-0.5.4" -; ,go-github-com-google-go-cmp-0.5.4) -; ("go-github-com-golang-protobuf-1.4.3" -; ,go-github-com-golang-protobuf-1.4.3) -; ("go-github-com-golang-mock-1.4.4" ,go-github-com-golang-mock-1.4.4) -; ("go-cloud-google-com-go-storage-1.10.0" -; ,go-cloud-google-com-go-storage-1.10.0))) -; (home-page "https://cloud.google.com/go") -; (synopsis "Google Cloud Client Libraries for Go") -; (description -; "Package cloud is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -;of sub-packages. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-google-go-cmp-0.5.4 -; (package -; (name "go-github-com-google-go-cmp") -; (version "0.5.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/go-cmp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ld9pwb6l22g75g1zpa691l7q9ki7pjgpcqhwgdfr3va1zisr5ci")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/go-cmp")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" -; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) -; (home-page "https://github.com/google/go-cmp") -; (synopsis "Package for equality of Go values") -; (description -; "This package is intended to be a more powerful and safer alternative to -;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") -; (license license:bsd-3))) -; -;(define-public go-go-opencensus-io-0.22.5 -; (package -; (name "go-go-opencensus-io") -; (version "0.22.5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/census-instrumentation/opencensus-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "18s1d7bk28i8gbs6i587ccd31qp3f8gibgd14dpkzs05gyvlccy6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "go.opencensus.io")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.20.1" ,go-google-golang-org-grpc-1.20.1) -; ("go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb" -; ,go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb) -; ("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) -; ("go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd" -; ,go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd) -; ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" -; ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) -; ("go-github-com-stretchr-testify-1.4.0" -; ,go-github-com-stretchr-testify-1.4.0) -; ("go-github-com-google-go-cmp-0.3.0" -; ,go-github-com-google-go-cmp-0.3.0) -; ("go-github-com-golang-protobuf-1.3.1" -; ,go-github-com-golang-protobuf-1.3.1) -; ("go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6" -; ,go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6))) -; (home-page "https://go.opencensus.io") -; (synopsis "OpenCensus Libraries for Go") -; (description "Package opencensus contains Go support for OpenCensus. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-oauth2-0.0.0-20201208152858-08078c50e5b5 -; (package -; (name "go-golang-org-x-oauth2") -; (version "0.0.0-20201208152858-08078c50e5b5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/oauth2") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0zynwxw47nhwhs6n1c87c9np43lwl9m9z2w2cmdvjwhsisa93b75")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/oauth2")) -; (propagated-inputs -; `(("go-google-golang-org-appengine-1.6.6" -; ,go-google-golang-org-appengine-1.6.6) -; ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" -; ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) -; ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) -; (home-page "https://golang.org/x/oauth2") -; (synopsis "OAuth2 for Go") -; (description -; "Package oauth2 provides support for making -;OAuth2 authorized and authenticated HTTP requests, -;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -;It can additionally grant authorization with Bearer JWT. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a -; (package -; (name "go-golang-org-x-sync") -; (version "0.0.0-20201207232520-09787c993a3a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sync") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1nv4mwi9njkkyc7lwmxrjr8ggfh2cf1c67a9bq85dnss81vpj61y")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sync")) -; (home-page "https://golang.org/x/sync") -; (synopsis "Go Sync") -; (description -; "This repository provides Go concurrency primitives in addition to the -;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20210104204734-6f8348627aad -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20210104204734-6f8348627aad") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0pmz8dwjf4gxr1gwnp4iahh3yh09apcf40kvvybycsx4rfjc2gbl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20210105154028-b0ab187a4818 -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20210105154028-b0ab187a4818") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "157w706lz7j4s7cwgh7j7mf8v1sah5hm4dlmp8isf6vhnqpixdp7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" -; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) -; ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" -; ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) -; ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" -; ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) -; ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) -; ("go-github-com-yuin-goldmark-1.2.1" -; ,go-github-com-yuin-goldmark-1.2.1))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20201214200347-8c77b98c765d -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20201214200347-8c77b98c765d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1bdpss5xmla0gjz66mdk8bqpsdb5i1xz65g30k9cs2h7vrqlwzn4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.24.0" -; ,go-google-golang-org-protobuf-1.24.0) -; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) -; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" -; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-github-com-golang-protobuf-1.4.1" -; ,go-github-com-golang-protobuf-1.4.1))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-github-com-cncf-udpa-go-0.0.0-20200629203442-efcf912fb354 -; (package -; (name "go-github-com-cncf-udpa-go") -; (version "0.0.0-20200629203442-efcf912fb354") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/cncf/udpa") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "18b1v01h3id5d7v5gqabc4qsaja17r45rn3fvv38nrfx9l4smv0x")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path -; "github.com/cncf/udpa/go" -; #:unpack-path -; "github.com/cncf/udpa")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2) -; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" -; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0))) -; (home-page "https://github.com/cncf/udpa") -; (synopsis "Description") -; (description -; "This library has been deprecated in favor of @code{github.com/cncf/xds/go}. All users are recommended to switch their imports.") -; (license license:asl2.0))) -; -;(define-public go-github-com-envoyproxy-go-control-plane-0.9.7 -; (package -; (name "go-github-com-envoyproxy-go-control-plane") -; (version "0.9.7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/envoyproxy/go-control-plane") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0nx5ybyadkjqr29hndn6amhbcqpi1rkfv12bxp0rk3ay045zxsh8")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.23.0" -; ,go-google-golang-org-protobuf-1.23.0) -; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) -; ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" -; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) -; ("go-github-com-stretchr-testify-1.5.1" -; ,go-github-com-stretchr-testify-1.5.1) -; ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" -; ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.4.2" -; ,go-github-com-golang-protobuf-1.4.2) -; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" -; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) -; ("go-github-com-cncf-udpa-go-0.0.0-20200629203442-efcf912fb354" -; ,go-github-com-cncf-udpa-go-0.0.0-20200629203442-efcf912fb354) -; ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" -; ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) -; (home-page "https://github.com/envoyproxy/go-control-plane") -; (synopsis "control-plane") -; (description -; "This repository contains a Go-based implementation of an API server that -;implements the discovery service APIs defined in -;@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-grpc-1.34.0 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.34.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0s8y19qvv0zfy2irq8vv12h65v7pw18k6yqfix1j2370yxmsajgm")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.25.0" -; ,go-google-golang-org-protobuf-1.25.0) -; ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" -; ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) -; ("go-github-com-google-go-cmp-0.5.0" -; ,go-github-com-google-go-cmp-0.5.0) -; ("go-github-com-golang-protobuf-1.4.2" -; ,go-github-com-golang-protobuf-1.4.2) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-envoyproxy-go-control-plane-0.9.7" -; ,go-github-com-envoyproxy-go-control-plane-0.9.7) -; ("go-github-com-cncf-udpa-go-0.0.0-20200629203442-efcf912fb354" -; ,go-github-com-cncf-udpa-go-0.0.0-20200629203442-efcf912fb354))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-api-0.40.0 -; (package -; (name "go-google-golang-org-api") -; (version "0.40.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-api-go-client") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0vs0bnzljg5iib8x01sy49ndgsz3cl1sq53pvy3h6kzp7may0bpc")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/api")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.34.0" ,go-google-golang-org-grpc-1.34.0) -; ("go-google-golang-org-genproto-0.0.0-20201214200347-8c77b98c765d" -; ,go-google-golang-org-genproto-0.0.0-20201214200347-8c77b98c765d) -; ("go-google-golang-org-appengine-1.6.7" -; ,go-google-golang-org-appengine-1.6.7) -; ("go-golang-org-x-tools-0.0.0-20210105154028-b0ab187a4818" -; ,go-golang-org-x-tools-0.0.0-20210105154028-b0ab187a4818) -; ("go-golang-org-x-sys-0.0.0-20210104204734-6f8348627aad" -; ,go-golang-org-x-sys-0.0.0-20210104204734-6f8348627aad) -; ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" -; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) -; ("go-golang-org-x-oauth2-0.0.0-20201208152858-08078c50e5b5" -; ,go-golang-org-x-oauth2-0.0.0-20201208152858-08078c50e5b5) -; ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" -; ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) -; ("go-go-opencensus-io-0.22.5" ,go-go-opencensus-io-0.22.5) -; ("go-github-com-googleapis-gax-go-v2-2.0.5" -; ,go-github-com-googleapis-gax-go-v2-2.0.5) -; ("go-github-com-google-go-cmp-0.5.4" -; ,go-github-com-google-go-cmp-0.5.4) -; ("go-cloud-google-com-go-0.74.0" ,go-cloud-google-com-go-0.74.0))) -; (home-page "https://google.golang.org/api") -; (synopsis "Google APIs Client Library for Go") -; (description -; "Package api is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of -;sub-packages. -;") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20210222152913-aa3ee6e6a81c -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20210222152913-aa3ee6e6a81c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "06wa7v3s558rwxsqd1kqz5xy10kigzx50ciqh3zdxsbvxqvjwxrx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.24.0" -; ,go-google-golang-org-protobuf-1.24.0) -; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) -; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" -; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-github-com-golang-protobuf-1.4.1" -; ,go-github-com-golang-protobuf-1.4.1))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-grpc-1.35.0 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.35.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "15ij5acp9h8dxq0brc0jljj98badri23zpm4yvmsn6gnnxaykl72")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.25.0" -; ,go-google-golang-org-protobuf-1.25.0) -; ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" -; ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) -; ("go-github-com-google-go-cmp-0.5.0" -; ,go-github-com-google-go-cmp-0.5.0) -; ("go-github-com-golang-protobuf-1.4.2" -; ,go-github-com-golang-protobuf-1.4.2) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad" -; ,go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad) -; ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" -; ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-cloud-google-com-go-0.78.0 -; (package -; (name "go-cloud-google-com-go") -; (version "0.78.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-cloud-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "11wldladkcz41ivsfnbrqy2hg5wp55d72hnr2wki0zvnhbzsj376")))) -; (build-system go-build-system) -; (arguments '(#:import-path "cloud.google.com/go")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.35.0" ,go-google-golang-org-grpc-1.35.0) -; ("go-google-golang-org-genproto-0.0.0-20210222152913-aa3ee6e6a81c" -; ,go-google-golang-org-genproto-0.0.0-20210222152913-aa3ee6e6a81c) -; ("go-google-golang-org-api-0.40.0" ,go-google-golang-org-api-0.40.0) -; ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) -; ("go-golang-org-x-text-0.3.5" ,go-golang-org-x-text-0.3.5) -; ("go-golang-org-x-sys-0.0.0-20210220050731-9a76102bfb43" -; ,go-golang-org-x-sys-0.0.0-20210220050731-9a76102bfb43) -; ("go-golang-org-x-oauth2-0.0.0-20210218202405-ba52d332ba99" -; ,go-golang-org-x-oauth2-0.0.0-20210218202405-ba52d332ba99) -; ("go-golang-org-x-net-0.0.0-20210119194325-5f4716e94777" -; ,go-golang-org-x-net-0.0.0-20210119194325-5f4716e94777) -; ("go-golang-org-x-mod-0.4.1" ,go-golang-org-x-mod-0.4.1) -; ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" -; ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) -; ("go-go-opencensus-io-0.22.5" ,go-go-opencensus-io-0.22.5) -; ("go-github-com-jstemmer-go-junit-report-0.9.1" -; ,go-github-com-jstemmer-go-junit-report-0.9.1) -; ("go-github-com-googleapis-gax-go-v2-2.0.5" -; ,go-github-com-googleapis-gax-go-v2-2.0.5) -; ("go-github-com-google-pprof-0.0.0-20210122040257-d980be63207e" -; ,go-github-com-google-pprof-0.0.0-20210122040257-d980be63207e) -; ("go-github-com-google-martian-v3-3.1.0" -; ,go-github-com-google-martian-v3-3.1.0) -; ("go-github-com-google-go-cmp-0.5.4" -; ,go-github-com-google-go-cmp-0.5.4) -; ("go-github-com-golang-protobuf-1.4.3" -; ,go-github-com-golang-protobuf-1.4.3) -; ("go-github-com-golang-mock-1.4.4" ,go-github-com-golang-mock-1.4.4) -; ("go-cloud-google-com-go-storage-1.10.0" -; ,go-cloud-google-com-go-storage-1.10.0))) -; (home-page "https://cloud.google.com/go") -; (synopsis "Google Cloud Client Libraries for Go") -; (description -; "Package cloud is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -;of sub-packages. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-oauth2-0.0.0-20210220000619-9bb904979d93 -; (package -; (name "go-golang-org-x-oauth2") -; (version "0.0.0-20210220000619-9bb904979d93") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/oauth2") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1rhndpvpvfy5bsaxi974cznlq4hbamhmy6l06ppp9phh12pvn11p")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/oauth2")) -; (propagated-inputs -; `(("go-google-golang-org-appengine-1.6.6" -; ,go-google-golang-org-appengine-1.6.6) -; ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" -; ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) -; ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) -; (home-page "https://golang.org/x/oauth2") -; (synopsis "OAuth2 for Go") -; (description -; "Package oauth2 provides support for making -;OAuth2 authorized and authenticated HTTP requests, -;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -;It can additionally grant authorization with Bearer JWT. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20210305230114-8fe3ee5dd75b -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20210305230114-8fe3ee5dd75b") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1x7fn66vplxkac6lbwqv649wwnx7kz0bqdzgr98z7yx7cfdxd7rj")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20210303154014-9728d6b83eeb -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20210303154014-9728d6b83eeb") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1abic7gjp07d1s6imjfn00s316xdirss3zvcric74gr9varr02xn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.24.0" -; ,go-google-golang-org-protobuf-1.24.0) -; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) -; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" -; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-github-com-golang-protobuf-1.4.1" -; ,go-github-com-golang-protobuf-1.4.1))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-api-0.41.0 -; (package -; (name "go-google-golang-org-api") -; (version "0.41.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-api-go-client") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0yzz534xzl2km3vxr18h204yvnrzqlss02fagg2ign0sy3qnlkhx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/api")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.36.0" ,go-google-golang-org-grpc-1.36.0) -; ("go-google-golang-org-genproto-0.0.0-20210303154014-9728d6b83eeb" -; ,go-google-golang-org-genproto-0.0.0-20210303154014-9728d6b83eeb) -; ("go-google-golang-org-appengine-1.6.7" -; ,go-google-golang-org-appengine-1.6.7) -; ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) -; ("go-golang-org-x-sys-0.0.0-20210305230114-8fe3ee5dd75b" -; ,go-golang-org-x-sys-0.0.0-20210305230114-8fe3ee5dd75b) -; ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" -; ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) -; ("go-golang-org-x-oauth2-0.0.0-20210220000619-9bb904979d93" -; ,go-golang-org-x-oauth2-0.0.0-20210220000619-9bb904979d93) -; ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" -; ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) -; ("go-go-opencensus-io-0.23.0" ,go-go-opencensus-io-0.23.0) -; ("go-github-com-googleapis-gax-go-v2-2.0.5" -; ,go-github-com-googleapis-gax-go-v2-2.0.5) -; ("go-github-com-google-go-cmp-0.5.5" -; ,go-github-com-google-go-cmp-0.5.5) -; ("go-cloud-google-com-go-0.78.0" ,go-cloud-google-com-go-0.78.0))) -; (home-page "https://google.golang.org/api") -; (synopsis "Google APIs Client Library for Go") -; (description -; "Package api is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of -;sub-packages. -;") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20210310155132-4ce2db91004e -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20210310155132-4ce2db91004e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0r5f024c4piqna27pvc28m0h44ms9rhcbihf1zn5l8prf4vvrdw9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.24.0" -; ,go-google-golang-org-protobuf-1.24.0) -; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) -; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" -; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-github-com-golang-protobuf-1.4.1" -; ,go-github-com-golang-protobuf-1.4.1))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-cloud-google-com-go-0.79.0 -; (package -; (name "go-cloud-google-com-go") -; (version "0.79.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-cloud-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "031jrfgyys0slh154593d4swj6iqrjvs9dxwmab99dl6zfws77jv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "cloud.google.com/go")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.36.0" ,go-google-golang-org-grpc-1.36.0) -; ("go-google-golang-org-genproto-0.0.0-20210310155132-4ce2db91004e" -; ,go-google-golang-org-genproto-0.0.0-20210310155132-4ce2db91004e) -; ("go-google-golang-org-api-0.41.0" ,go-google-golang-org-api-0.41.0) -; ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) -; ("go-golang-org-x-text-0.3.5" ,go-golang-org-x-text-0.3.5) -; ("go-golang-org-x-oauth2-0.0.0-20210220000619-9bb904979d93" -; ,go-golang-org-x-oauth2-0.0.0-20210220000619-9bb904979d93) -; ("go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110" -; ,go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110) -; ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" -; ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) -; ("go-go-opencensus-io-0.23.0" ,go-go-opencensus-io-0.23.0) -; ("go-github-com-jstemmer-go-junit-report-0.9.1" -; ,go-github-com-jstemmer-go-junit-report-0.9.1) -; ("go-github-com-googleapis-gax-go-v2-2.0.5" -; ,go-github-com-googleapis-gax-go-v2-2.0.5) -; ("go-github-com-google-pprof-0.0.0-20210226084205-cbba55b83ad5" -; ,go-github-com-google-pprof-0.0.0-20210226084205-cbba55b83ad5) -; ("go-github-com-google-martian-v3-3.1.0" -; ,go-github-com-google-martian-v3-3.1.0) -; ("go-github-com-google-go-cmp-0.5.5" -; ,go-github-com-google-go-cmp-0.5.5) -; ("go-github-com-golang-protobuf-1.4.3" -; ,go-github-com-golang-protobuf-1.4.3) -; ("go-github-com-golang-mock-1.5.0" ,go-github-com-golang-mock-1.5.0) -; ("go-cloud-google-com-go-storage-1.10.0" -; ,go-cloud-google-com-go-storage-1.10.0))) -; (home-page "https://cloud.google.com/go") -; (synopsis "Google Cloud Client Libraries for Go") -; (description -; "Package cloud is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -;of sub-packages. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-oauth2-0.0.0-20210313182246-cd4f82c27b84 -; (package -; (name "go-golang-org-x-oauth2") -; (version "0.0.0-20210313182246-cd4f82c27b84") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/oauth2") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1jf68sh1957ji1lv1zrrhsbm6jr3508pw159pfzgyw6hbzsg5amv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/oauth2")) -; (propagated-inputs -; `(("go-google-golang-org-appengine-1.6.6" -; ,go-google-golang-org-appengine-1.6.6) -; ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" -; ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) -; ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) -; (home-page "https://golang.org/x/oauth2") -; (synopsis "OAuth2 for Go") -; (description -; "Package oauth2 provides support for making -;OAuth2 authorized and authenticated HTTP requests, -;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -;It can additionally grant authorization with Bearer JWT. -;") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20210319143718-93e7006c17a6 -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20210319143718-93e7006c17a6") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0l143m8rn7zmbfb2rpdawhxs8qjbdpn61hqynf47j5hwsbjci2xs")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.24.0" -; ,go-google-golang-org-protobuf-1.24.0) -; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) -; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" -; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-github-com-golang-protobuf-1.4.1" -; ,go-github-com-golang-protobuf-1.4.1))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-grpc-1.36.0 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.36.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1m4xsfv3ysc84cwqxqqr61fs3d2w04f0q5xbdjijhczjixcxwh5i")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.25.0" -; ,go-google-golang-org-protobuf-1.25.0) -; ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" -; ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) -; ("go-github-com-google-go-cmp-0.5.0" -; ,go-github-com-google-go-cmp-0.5.0) -; ("go-github-com-golang-protobuf-1.4.2" -; ,go-github-com-golang-protobuf-1.4.2) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad" -; ,go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad) -; ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" -; ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-api-0.43.0 -; (package -; (name "go-google-golang-org-api") -; (version "0.43.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-api-go-client") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0wxxbihigjn49warampi7gqfslbnp9nrj5zmk8p3ssq429jpvsib")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/api")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.36.0" ,go-google-golang-org-grpc-1.36.0) -; ("go-google-golang-org-genproto-0.0.0-20210319143718-93e7006c17a6" -; ,go-google-golang-org-genproto-0.0.0-20210319143718-93e7006c17a6) -; ("go-google-golang-org-appengine-1.6.7" -; ,go-google-golang-org-appengine-1.6.7) -; ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) -; ("go-golang-org-x-sys-0.0.0-20210320140829-1e4c9ba3b0c4" -; ,go-golang-org-x-sys-0.0.0-20210320140829-1e4c9ba3b0c4) -; ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" -; ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) -; ("go-golang-org-x-oauth2-0.0.0-20210313182246-cd4f82c27b84" -; ,go-golang-org-x-oauth2-0.0.0-20210313182246-cd4f82c27b84) -; ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" -; ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) -; ("go-go-opencensus-io-0.23.0" ,go-go-opencensus-io-0.23.0) -; ("go-github-com-googleapis-gax-go-v2-2.0.5" -; ,go-github-com-googleapis-gax-go-v2-2.0.5) -; ("go-github-com-google-go-cmp-0.5.5" -; ,go-github-com-google-go-cmp-0.5.5) -; ("go-cloud-google-com-go-0.79.0" ,go-cloud-google-com-go-0.79.0))) -; (home-page "https://google.golang.org/api") -; (synopsis "Google APIs Client Library for Go") -; (description -; "Package api is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of -;sub-packages. -;") -; (license license:bsd-3))) -; -;(define-public go-cloud-google-com-go-0.81.0 -; (package -; (name "go-cloud-google-com-go") -; (version "0.81.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-cloud-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "15jgynqb5pbxqbj3a7ii970yn4srsw1dbxzxnhpkfkmplalpgyh3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "cloud.google.com/go")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.36.1" ,go-google-golang-org-grpc-1.36.1) -; ("go-google-golang-org-genproto-0.0.0-20210402141018-6c239bbf2bb1" -; ,go-google-golang-org-genproto-0.0.0-20210402141018-6c239bbf2bb1) -; ("go-google-golang-org-api-0.43.0" ,go-google-golang-org-api-0.43.0) -; ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) -; ("go-golang-org-x-text-0.3.5" ,go-golang-org-x-text-0.3.5) -; ("go-golang-org-x-oauth2-0.0.0-20210313182246-cd4f82c27b84" -; ,go-golang-org-x-oauth2-0.0.0-20210313182246-cd4f82c27b84) -; ("go-golang-org-x-net-0.0.0-20210316092652-d523dce5a7f4" -; ,go-golang-org-x-net-0.0.0-20210316092652-d523dce5a7f4) -; ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" -; ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) -; ("go-go-opencensus-io-0.23.0" ,go-go-opencensus-io-0.23.0) -; ("go-github-com-jstemmer-go-junit-report-0.9.1" -; ,go-github-com-jstemmer-go-junit-report-0.9.1) -; ("go-github-com-googleapis-gax-go-v2-2.0.5" -; ,go-github-com-googleapis-gax-go-v2-2.0.5) -; ("go-github-com-google-pprof-0.0.0-20210226084205-cbba55b83ad5" -; ,go-github-com-google-pprof-0.0.0-20210226084205-cbba55b83ad5) -; ("go-github-com-google-martian-v3-3.1.0" -; ,go-github-com-google-martian-v3-3.1.0) -; ("go-github-com-google-go-cmp-0.5.5" -; ,go-github-com-google-go-cmp-0.5.5) -; ("go-github-com-golang-protobuf-1.5.1" -; ,go-github-com-golang-protobuf-1.5.1) -; ("go-github-com-golang-mock-1.5.0" ,go-github-com-golang-mock-1.5.0) -; ("go-cloud-google-com-go-storage-1.10.0" -; ,go-cloud-google-com-go-storage-1.10.0))) -; (home-page "https://cloud.google.com/go") -; (synopsis "Google Cloud Client Libraries for Go") -; (description -; "Package cloud is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -;of sub-packages. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e -; (package -; (name "go-github-com-golang-groupcache") -; (version "0.0.0-20200121045136-8c9f03a8e57e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/groupcache") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0vjjr79r32icjzlb05wn02k59av7jx0rn1jijml8r4whlg7dnkfh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/groupcache")) -; (home-page "https://github.com/golang/groupcache") -; (synopsis "groupcache") -; (description -; "Package groupcache provides a data loading mechanism with caching -;and de-duplication that works across a set of peer processes. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-golang-protobuf-1.4.3 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.4.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1kf1d7xmyjvy0z6j5czp6nqyvj9zrk6liv6znif08927xqfrzyln")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.23.0" -; ,go-google-golang-org-protobuf-1.23.0) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0))) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-github-com-google-go-cmp-0.5.3 -; (package -; (name "go-github-com-google-go-cmp") -; (version "0.5.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/go-cmp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "011gdkmyk3w7qkcwljhqak4h5npn4n7fwgx1fwpyx9c7wizvgkm5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/go-cmp")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" -; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) -; (home-page "https://github.com/google/go-cmp") -; (synopsis "Package for equality of Go values") -; (description -; "This package is intended to be a more powerful and safer alternative to -;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") -; (license license:bsd-3))) -; -;(define-public go-github-com-stretchr-testify-1.6.1 -; (package -; (name "go-github-com-stretchr-testify") -; (version "1.6.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/testify") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1yhiqqzjvi63pf01rgzx68gqkkvjx03fvl5wk30br5l6s81s090l")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/testify")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" -; ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) -; ("go-github-com-stretchr-objx-0.1.0" -; ,go-github-com-stretchr-objx-0.1.0) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-davecgh-go-spew-1.1.0" -; ,go-github-com-davecgh-go-spew-1.1.0))) -; (home-page "https://github.com/stretchr/testify") -; (synopsis "Testify - Thou Shalt Write Tests") -; (description -; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20201110031124-69a78807bb2b") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "176z5k6jbhr9vf0am2avl1lyqwym3q0mri98yb8r572z33qmcw1d")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) -; ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" -; ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) -; ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" -; ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-grpc-1.33.2 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.33.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "03yz4nlf4kqbnpw48f0mvcb2f5zzy0vjd5i2iw0hrjspd0238fzk")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.25.0" -; ,go-google-golang-org-protobuf-1.25.0) -; ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" -; ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) -; ("go-github-com-google-go-cmp-0.5.0" -; ,go-github-com-google-go-cmp-0.5.0) -; ("go-github-com-golang-protobuf-1.4.1" -; ,go-github-com-golang-protobuf-1.4.1) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-envoyproxy-go-control-plane-0.9.4" -; ,go-github-com-envoyproxy-go-control-plane-0.9.4) -; ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" -; ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-go-opencensus-io-0.23.0 -; (package -; (name "go-go-opencensus-io") -; (version "0.23.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/census-instrumentation/opencensus-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0gw4f7inf8y2ik00yfb36xganiq9rl4w2d1a41bsjqsh83ajz2km")))) -; (build-system go-build-system) -; (arguments '(#:import-path "go.opencensus.io")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) -; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" -; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-google-go-cmp-0.5.3" -; ,go-github-com-google-go-cmp-0.5.3) -; ("go-github-com-golang-protobuf-1.4.3" -; ,go-github-com-golang-protobuf-1.4.3) -; ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" -; ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e))) -; (home-page "https://go.opencensus.io") -; (synopsis "OpenCensus Libraries for Go") -; (description "Package opencensus contains Go support for OpenCensus. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-golang-mock-1.4.4 -; (package -; (name "go-github-com-golang-mock") -; (version "1.4.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/mock") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1lj0dvd6div4jaq1s0afpwqaq9ah8cxhkq93wii2ably1xmp2l0a")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/mock")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262" -; ,go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262))) -; (home-page "https://github.com/golang/mock") -; (synopsis "gomock") -; (description -; "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It -;integrates well with Go's built-in @code{testing} package, but can be used in other -;contexts too.") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-tools-0.0.0-20200825202427-b303f430e36d -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20200825202427-b303f430e36d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0zzf6ifzjvkwin6m97jp2dndbfac0sbdr84ki79j9srhpqdigl75")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" -; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) -; ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" -; ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) -; ("go-golang-org-x-net-0.0.0-20200625001655-4c5254603344" -; ,go-golang-org-x-net-0.0.0-20200625001655-4c5254603344) -; ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) -; ("go-github-com-yuin-goldmark-1.1.32" -; ,go-github-com-yuin-goldmark-1.1.32))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20190628185345-da137c7871d7 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20190628185345-da137c7871d7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1qsiyr3irmb6ii06hivm9p2c7wqyxczms1a9v1ss5698yjr3fg47")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-github-com-google-martian-v3-3.0.0 -; (package -; (name "go-github-com-google-martian-v3") -; (version "3.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/martian") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ngvs4l6a06s8scnliq9i5pwvwpzfpa5wf9skg0gcvysli1rm3fm")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/martian/v3")) -; (propagated-inputs -; `(("go-golang-org-x-net-0.0.0-20190628185345-da137c7871d7" -; ,go-golang-org-x-net-0.0.0-20190628185345-da137c7871d7))) -; (home-page "https://github.com/google/martian") -; (synopsis "Martian Proxy") -; (description -; "Package martian provides an HTTP/1.1 proxy with an API for configurable -;request and response modifiers. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-google-pprof-0.0.0-20200708004538-1a94d8640e99 -; (package -; (name "go-github-com-google-pprof") -; (version "0.0.0-20200708004538-1a94d8640e99") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/pprof") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0isfwwan9vimwsfjml0phwrqv6kb83mkmk063dcb81k09gzzs3wy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/pprof")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" -; ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) -; ("go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6" -; ,go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6) -; ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" -; ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) -; ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" -; ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) -; ("go-github-com-chzyer-logex-1.1.10" -; ,go-github-com-chzyer-logex-1.1.10))) -; (home-page "https://github.com/google/pprof") -; (synopsis "Introduction") -; (description -; "pprof is a tool for collection, manipulation and visualization -;of performance profiles. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-net-0.0.0-20200707034311-ab3426394381 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20200707034311-ab3426394381") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1wr7rnnqp210yykkypinb8ciszx28aq5a3l3dvsv6swzxxngs8zn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" -; ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) -; ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" -; ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20200729194436-6467de6f59a7 -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20200729194436-6467de6f59a7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "14zpkr5idlx2zbm5dp7gk4afppy7k3j4y68s1qvpgi70yazaxzkd")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" -; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) -; ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" -; ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) -; ("go-golang-org-x-net-0.0.0-20200625001655-4c5254603344" -; ,go-golang-org-x-net-0.0.0-20200625001655-4c5254603344) -; ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) -; ("go-github-com-yuin-goldmark-1.1.32" -; ,go-github-com-yuin-goldmark-1.1.32))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262 -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20190425150028-36563e24a262") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0lasi96f6a1h11gkm8kl33x03pmxp369wrqq2dg7x7xv9nq76d6g")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" -; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-text-0.0.0-20170915032832-14c0d48ead0c -; (package -; (name "go-golang-org-x-text") -; (version "0.0.0-20170915032832-14c0d48ead0c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/text") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0y0nrj4hw7vby6m3iqklbf4v7njqlsx7s4pwfkwmvh1ryn1kb7d6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/text")) -; (home-page "https://golang.org/x/text") -; (synopsis "Go Text") -; (description -; "text is a repository of text-related packages related to internationalization -;(i18n) and localization (l10n), such as character encodings, text -;transformations, and locale-specific text handling. -;") -; (license license:bsd-3))) -; -;(define-public go-rsc-io-sampler-1.3.0 -; (package -; (name "go-rsc-io-sampler") -; (version "1.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/rsc/sampler") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0byxk2ynba50py805kcvbvjzh59l1r308i1xgyzpw6lff4xx9xjh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "rsc.io/sampler")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.0.0-20170915032832-14c0d48ead0c" -; ,go-golang-org-x-text-0.0.0-20170915032832-14c0d48ead0c))) -; (home-page "https://rsc.io/sampler") -; (synopsis #f) -; (description "Package sampler shows simple texts. -;") -; (license license:bsd-3))) -; -;(define-public go-rsc-io-quote-v3-3.1.0 -; (package -; (name "go-rsc-io-quote-v3") -; (version "3.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/rsc/quote") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0nvv97hwwrl1mx5gzsbdm1ndnwpg3m7i2jb10ig9wily7zmvki0i")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "rsc.io/quote/v3" #:unpack-path "rsc.io/quote/v3")) -; (propagated-inputs `(("go-rsc-io-sampler-1.3.0" ,go-rsc-io-sampler-1.3.0))) -; (home-page "https://rsc.io/quote/v3") -; (synopsis #f) -; (description "Package quote collects pithy sayings. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-mock-1.4.3 -; (package -; (name "go-github-com-golang-mock") -; (version "1.4.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/mock") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1p37xnja1dgq5ykx24n7wincwz2gahjh71b95p8vpw7ss2g8j8wx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/mock")) -; (propagated-inputs -; `(("go-rsc-io-quote-v3-3.1.0" ,go-rsc-io-quote-v3-3.1.0) -; ("go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262" -; ,go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262))) -; (home-page "https://github.com/golang/mock") -; (synopsis "gomock") -; (description -; "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It -;integrates well with Go's built-in @code{testing} package, but can be used in other -;contexts too.") -; (license license:asl2.0))) -; -;(define-public go-github-com-golang-protobuf-1.3.5 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.3.5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1gkd1942vk9n8kfzdwy1iil6wgvlwjq7a3y5jc49ck4lz9rhmgkq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-github-com-chzyer-logex-1.1.10 -; (package -; (name "go-github-com-chzyer-logex") -; (version "1.1.10") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/chzyer/logex") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "08pbjj3wx9acavlwyr055isa8a5hnmllgdv5k6ra60l5y1brmlq4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/chzyer/logex")) -; (home-page "https://github.com/chzyer/logex") -; (synopsis #f) -; (description #f) -; (license #f))) -; -;(define-public go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e -; (package -; (name "go-github-com-chzyer-readline") -; (version "0.0.0-20180603132655-2972be24d48e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/chzyer/readline") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "104q8dazj8yf6b089jjr82fy9h1g80zyyzvp3g8b44a7d8ngjj6r")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/chzyer/readline")) -; (home-page "https://github.com/chzyer/readline") -; (synopsis "Guide") -; (description -; "Readline is a pure go implementation for GNU-Readline kind library. -;") -; (license license:expat))) -; -;(define-public go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1 -; (package -; (name "go-github-com-chzyer-test") -; (version "0.0.0-20180213035817-a1ea475d72b1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/chzyer/test") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0rns2aqk22i9xsgyap0pq8wi4cfaxsri4d9q6xxhhyma8jjsnj2k")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/chzyer/test")) -; (home-page "https://github.com/chzyer/test") -; (synopsis "test") -; (description #f) -; (license license:expat))) -; -;(define-public go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6 -; (package -; (name "go-github-com-ianlancetaylor-demangle") -; (version "0.0.0-20181102032728-5e5cf60278f6") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/ianlancetaylor/demangle") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1fhjk11cip9c3jyj1byz9z77n6n2rlxmyz0xjx1zpn1da3cvri75")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/ianlancetaylor/demangle")) -; (home-page "https://github.com/ianlancetaylor/demangle") -; (synopsis "github.com/ianlancetaylor/demangle") -; (description -; "Package demangle defines functions that demangle GCC/LLVM -;C++ and Rust symbol names. -;This package recognizes names that were mangled according to the C++ ABI -;defined at @url{http://codesourcery.com/cxx-abi/,http://codesourcery.com/cxx-abi/} and the Rust ABI -;defined at -;@url{https://rust-lang.github.io/rfcs/2603-rust-symbol-name-mangling-v0.html,https://rust-lang.github.io/rfcs/2603-rust-symbol-name-mangling-v0.html} -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20191204072324-ce4227a45e2e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1s43wvqfml6ml5ks7iv2bis9d664g77mq86v7mfmjhn56x856g35")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-google-pprof-0.0.0-20200229191704-1ebb73c60ed3 -; (package -; (name "go-github-com-google-pprof") -; (version "0.0.0-20200229191704-1ebb73c60ed3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/pprof") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1gdi9p4j1zfm5xlm488i5l0q3kk4q6hsmbmlk6p729i0di2n3ifa")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/pprof")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" -; ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) -; ("go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6" -; ,go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6) -; ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" -; ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) -; ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" -; ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) -; ("go-github-com-chzyer-logex-1.1.10" -; ,go-github-com-chzyer-logex-1.1.10))) -; (home-page "https://github.com/google/pprof") -; (synopsis "Introduction") -; (description -; "pprof is a tool for collection, manipulation and visualization -;of performance profiles. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-jstemmer-go-junit-report-0.9.1 -; (package -; (name "go-github-com-jstemmer-go-junit-report") -; (version "0.9.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/jstemmer/go-junit-report") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1knip80yir1cdsjlb3rzy0a4w3kl4ljpiciaz6hjzwqlfhnv7bkw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/jstemmer/go-junit-report")) -; (home-page "https://github.com/jstemmer/go-junit-report") -; (synopsis "go-junit-report") -; (description -; "Converts @code{go test} output to an xml report, suitable for applications that -;expect junit xml reports (e.g. @url{http://jenkins-ci.org,Jenkins}).") -; (license license:expat))) -; -;(define-public go-golang-org-x-net-0.0.0-20200324143707-d3edc9973b7e -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20200324143707-d3edc9973b7e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "12zbjwcsh9b0lwycqlkrnbyg5a6a9dzgj8hhgq399bdda5bd97y7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" -; ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-mock-1.2.0 -; (package -; (name "go-github-com-golang-mock") -; (version "1.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/mock") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "12ddj2g8ab87id6n2n67vnbhq6p8dvgsq1pzpqfriym4dk8w54fg")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/mock")) -; (home-page "https://github.com/golang/mock") -; (synopsis "gomock") -; (description -; "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It -;integrates well with Go's built-in @code{testing} package, but can be used in other -;contexts too.") -; (license license:asl2.0))) -; -;(define-public go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c -; (package -; (name "go-github-com-google-btree") -; (version "0.0.0-20180813153112-4030bb1f1f0c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/btree") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ba430m9fbnagacp57krgidsyrgp3ycw5r7dj71brgp5r52g82p6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/btree")) -; (home-page "https://github.com/google/btree") -; (synopsis "BTree implementation for Go") -; (description -; "Package btree implements in-memory B-Trees of arbitrary degree. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-google-martian-2.1.0+incompatible -; (package -; (name "go-github-com-google-martian") -; (version "2.1.0+incompatible") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/martian") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "197hil6vrjk50b9wvwyzf61csid83whsjj6ik8mc9r2lryxlyyrp")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/martian")) -; (home-page "https://github.com/google/martian") -; (synopsis "Martian Proxy") -; (description -; "Package martian provides an HTTP/1.1 proxy with an API for configurable -;request and response modifiers. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-google-pprof-0.0.0-20181206194817-3ea8567a2e57 -; (package -; (name "go-github-com-google-pprof") -; (version "0.0.0-20181206194817-3ea8567a2e57") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/pprof") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "09rhjn3ms0a72dw0yzbp237p7yhqma772zspddn6mgkh3gi3kn4c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/pprof")) -; (home-page "https://github.com/google/pprof") -; (synopsis "Introduction") -; (description -; "pprof is a tool for collection, manipulation and visualization -;of performance profiles. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-googleapis-gax-go-v2-2.0.4 -; (package -; (name "go-github-com-googleapis-gax-go-v2") -; (version "2.0.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/gax-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1iwnm6ky1x53lgs44mw3hpdkjzrm5qd0kfs50m0qcq2ml5m1cwdm")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/googleapis/gax-go/v2")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.19.0" -; ,go-google-golang-org-grpc-1.19.0))) -; (home-page "https://github.com/googleapis/gax-go") -; (synopsis #f) -; (description -; "Package gax contains a set of modules which aid the development of APIs -;for clients and servers based on gRPC and Google API conventions. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-jstemmer-go-junit-report-0.0.0-20190106144839-af01ea7f8024 -; (package -; (name "go-github-com-jstemmer-go-junit-report") -; (version "0.0.0-20190106144839-af01ea7f8024") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/jstemmer/go-junit-report") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1lp3n94ris12hac02wi31f3whs88lcrzwgdg43a5j6cafg9p1d0s")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/jstemmer/go-junit-report")) -; (home-page "https://github.com/jstemmer/go-junit-report") -; (synopsis "go-junit-report") -; (description -; "Converts @code{go test} output to an xml report, suitable for applications that -;expect junit xml reports (e.g. @url{http://jenkins-ci.org,Jenkins}).") -; (license license:expat))) -; -;(define-public go-golang-org-x-text-0.3.1-0.20180807135948-17ff2d5776d2 -; (package -; (name "go-golang-org-x-text") -; (version "0.3.1-0.20180807135948-17ff2d5776d2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/text") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1rrh2mnmyxr45nsvy42zq3w3ly6gw6rl993knwvf1w71kyv0jjnj")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/text")) -; (home-page "https://golang.org/x/text") -; (synopsis "Go Text") -; (description -; "text is a repository of text-related packages related to internationalization -;(i18n) and localization (l10n), such as character encodings, text -;transformations, and locale-specific text handling. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-time-0.0.0-20181108054448-85acf8d2951c -; (package -; (name "go-golang-org-x-time") -; (version "0.0.0-20181108054448-85acf8d2951c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/time") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0yqnxsrarjk4qkda8kcxzmk7y90kkkxzx9iwryzrk7bzs87ky3xc")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/time")) -; (home-page "https://golang.org/x/time") -; (synopsis "Go Time") -; (description "This repository provides supplementary Go time packages.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f -; (package -; (name "go-golang-org-x-lint") -; (version "0.0.0-20190301231843-5614ed5bae6f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/lint") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0fzn0zjv0x92xvfdq3a0v9w5sgkhr7hxkfy9zaqi8i57807z8bnx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/lint")) -; (home-page "https://golang.org/x/lint") -; (synopsis "Installation") -; (description "Package lint contains a linter for Go source code. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421 -; (package -; (name "go-golang-org-x-oauth2") -; (version "0.0.0-20190226205417-e64efc72b421") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/oauth2") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0djvwz2avx7knsjbl434vw1wqbrg53xp1kh599gfixn5icrggz4m")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/oauth2")) -; (propagated-inputs -; `(("go-google-golang-org-appengine-1.4.0" -; ,go-google-golang-org-appengine-1.4.0) -; ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" -; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) -; ("go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e" -; ,go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e) -; ("go-cloud-google-com-go-0.34.0" ,go-cloud-google-com-go-0.34.0))) -; (home-page "https://golang.org/x/oauth2") -; (synopsis "OAuth2 for Go") -; (description -; "Package oauth2 provides support for making -;OAuth2 authorized and authenticated HTTP requests, -;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -;It can additionally grant authorization with Bearer JWT. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138 -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20190312170243-e65039ee4138") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0c094599cf70wdrms49a3879qkq122pqlp2av444gs2pvc8apdcx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-api-0.4.0 -; (package -; (name "go-google-golang-org-api") -; (version "0.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-api-go-client") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1hzgrw5wasmcjlqpxsmryddzzw4cwyzf2vx14i9z51v1plwssijm")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/api")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" -; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) -; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) -; ("go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19" -; ,go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19) -; ("go-google-golang-org-appengine-1.4.0" -; ,go-google-golang-org-appengine-1.4.0) -; ("go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138" -; ,go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138) -; ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" -; ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) -; ("go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421" -; ,go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421) -; ("go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f" -; ,go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f) -; ("go-go-opencensus-io-0.21.0" ,go-go-opencensus-io-0.21.0) -; ("go-github-com-google-go-cmp-0.2.0" -; ,go-github-com-google-go-cmp-0.2.0))) -; (home-page "https://google.golang.org/api") -; (synopsis "Google APIs Client Library for Go") -; (description -; "Package api is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of -;sub-packages. -;") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20190418145605-e7d98fc518a7 -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20190418145605-e7d98fc518a7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1cnavkyawwvfc5yl097ygnfy1ac69v4zc02gdfnq1bvgcvgmvnbi")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" -; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) -; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) -; ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" -; ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) -; ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" -; ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) -; ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" -; ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd) -; ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" -; ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) -; ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" -; ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-honnef-co-go-tools-0.0.0-20190106161140-3f1c8253044a -; (package -; (name "go-honnef-co-go-tools") -; (version "0.0.0-20190106161140-3f1c8253044a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/dominikh/go-tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0d3vgh0fgfj1z7i648g1s6x2pwxd07sxfjwg1xn3yagr9h06jh3h")))) -; (build-system go-build-system) -; (arguments '(#:import-path "honnef.co/go/tools")) -; (home-page "https://honnef.co/go/tools") -; (synopsis "Documentation") -; (description -; "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, -;offers simplifications, and enforces style rules.") -; (license license:expat))) -; -;(define-public go-cloud-google-com-go-0.38.0 -; (package -; (name "go-cloud-google-com-go") -; (version "0.38.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-cloud-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0n6n13b7lri2fmc4bn4ifszyawj31dpbzvyv0xafsf81440z8cyh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "cloud.google.com/go")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190106161140-3f1c8253044a" -; ,go-honnef-co-go-tools-0.0.0-20190106161140-3f1c8253044a) -; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) -; ("go-google-golang-org-genproto-0.0.0-20190418145605-e7d98fc518a7" -; ,go-google-golang-org-genproto-0.0.0-20190418145605-e7d98fc518a7) -; ("go-google-golang-org-api-0.4.0" ,go-google-golang-org-api-0.4.0) -; ("go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138" -; ,go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138) -; ("go-golang-org-x-time-0.0.0-20181108054448-85acf8d2951c" -; ,go-golang-org-x-time-0.0.0-20181108054448-85acf8d2951c) -; ("go-golang-org-x-text-0.3.1-0.20180807135948-17ff2d5776d2" -; ,go-golang-org-x-text-0.3.1-0.20180807135948-17ff2d5776d2) -; ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" -; ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) -; ("go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421" -; ,go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421) -; ("go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f" -; ,go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f) -; ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" -; ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) -; ("go-go-opencensus-io-0.21.0" ,go-go-opencensus-io-0.21.0) -; ("go-github-com-jstemmer-go-junit-report-0.0.0-20190106144839-af01ea7f8024" -; ,go-github-com-jstemmer-go-junit-report-0.0.0-20190106144839-af01ea7f8024) -; ("go-github-com-googleapis-gax-go-v2-2.0.4" -; ,go-github-com-googleapis-gax-go-v2-2.0.4) -; ("go-github-com-google-pprof-0.0.0-20181206194817-3ea8567a2e57" -; ,go-github-com-google-pprof-0.0.0-20181206194817-3ea8567a2e57) -; ("go-github-com-google-martian-2.1.0+incompatible" -; ,go-github-com-google-martian-2.1.0+incompatible) -; ("go-github-com-google-go-cmp-0.2.0" -; ,go-github-com-google-go-cmp-0.2.0) -; ("go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c" -; ,go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0) -; ("go-github-com-golang-mock-1.2.0" ,go-github-com-golang-mock-1.2.0))) -; (home-page "https://cloud.google.com/go") -; (synopsis "Google Cloud Client Libraries for Go") -; (description -; "Package cloud is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -;of sub-packages. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-hashicorp-golang-lru-0.5.1 -; (package -; (name "go-github-com-hashicorp-golang-lru") -; (version "0.5.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/golang-lru") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "13f870cvk161bzjj6x41l45r5x9i1z9r2ymwmvm7768kg08zznpy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hashicorp/golang-lru")) -; (home-page "https://github.com/hashicorp/golang-lru") -; (synopsis "golang-lru") -; (description -; "Package lru provides three different LRU caches of varying sophistication. -;") -; (license license:mpl2.0))) -; -;(define-public go-github-com-hashicorp-golang-lru-0.5.0 -; (package -; (name "go-github-com-hashicorp-golang-lru") -; (version "0.5.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/golang-lru") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "12k2cp2k615fjvfa5hyb9k2alian77wivds8s65diwshwv41939f")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hashicorp/golang-lru")) -; (home-page "https://github.com/hashicorp/golang-lru") -; (synopsis "golang-lru") -; (description -; "Package lru provides three different LRU caches of varying sophistication. -;") -; (license license:mpl2.0))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19 -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20190307195333-5fe7a883aa19") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0qjkwig0r42q0j2qv57s4ahsgmmp41dz3ih3rnaqg0619n5w7lbs")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" -; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) -; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) -; ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" -; ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) -; ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" -; ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) -; ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" -; ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd) -; ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" -; ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) -; ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" -; ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-go-opencensus-io-0.21.0 -; (package -; (name "go-go-opencensus-io") -; (version "0.21.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/census-instrumentation/opencensus-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "14s0a12xdzjvad0dgksgv8m3hh7nc585abvjkvyk6r67a29lxj6x")))) -; (build-system go-build-system) -; (arguments '(#:import-path "go.opencensus.io")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) -; ("go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19" -; ,go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-github-com-hashicorp-golang-lru-0.5.0" -; ,go-github-com-hashicorp-golang-lru-0.5.0) -; ("go-github-com-google-go-cmp-0.2.0" -; ,go-github-com-google-go-cmp-0.2.0) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0))) -; (home-page "https://go.opencensus.io") -; (synopsis "OpenCensus Libraries for Go") -; (description "Package opencensus contains Go support for OpenCensus. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422 -; (package -; (name "go-golang-org-x-lint") -; (version "0.0.0-20190409202823-959b441ac422") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/lint") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1mgcv5f00pkzsbwnq2y7vqvd1b4lr5a3s47cphh2qv4indfk7pck")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/lint")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" -; ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd))) -; (home-page "https://golang.org/x/lint") -; (synopsis "Installation") -; (description "Package lint contains a linter for Go source code. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20190503192946-f4e77d36d62c -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20190503192946-f4e77d36d62c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0avjnglqqg9ya0cbhp23m4namykii219kxjywxn4cd7pfcc5arha")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45 -; (package -; (name "go-golang-org-x-oauth2") -; (version "0.0.0-20190604053449-0f29369cfe45") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/oauth2") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "06jwpvx0x2gjn2y959drbcir5kd7vg87k0r1216abk6rrdzzrzi2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/oauth2")) -; (propagated-inputs -; `(("go-google-golang-org-appengine-1.4.0" -; ,go-google-golang-org-appengine-1.4.0) -; ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" -; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) -; ("go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e" -; ,go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e) -; ("go-cloud-google-com-go-0.34.0" ,go-cloud-google-com-go-0.34.0))) -; (home-page "https://golang.org/x/oauth2") -; (synopsis "OAuth2 for Go") -; (description -; "Package oauth2 provides support for making -;OAuth2 authorized and authenticated HTTP requests, -;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -;It can additionally grant authorization with Bearer JWT. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190507160741-ecd444e8653b") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1vhld4948mzfnlgf20id29mv1bwpk9a3xlbw1mbjzxzxxdv1jds2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-appengine-1.5.0 -; (package -; (name "go-google-golang-org-appengine") -; (version "1.5.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/appengine") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0l7mkdnwhidv8m686x432vmx8z5nqcrr9f46ddgvrxbh4wvyfcll")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/appengine")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225" -; ,go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0))) -; (home-page "https://google.golang.org/appengine") -; (synopsis "Go App Engine packages") -; (description -; "Package appengine provides basic functionality for Google App Engine. -;") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-api-0.20.0 -; (package -; (name "go-google-golang-org-api") -; (version "0.20.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-api-go-client") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "13syr1x33k6mrn5w6l4sgdbzn368w3m60vf6kk2j10fwa45125rg")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/api")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" -; ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) -; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) -; ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" -; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) -; ("go-google-golang-org-appengine-1.5.0" -; ,go-google-golang-org-appengine-1.5.0) -; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" -; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) -; ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) -; ("go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b" -; ,go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b) -; ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" -; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) -; ("go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45" -; ,go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45) -; ("go-golang-org-x-net-0.0.0-20190503192946-f4e77d36d62c" -; ,go-golang-org-x-net-0.0.0-20190503192946-f4e77d36d62c) -; ("go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422" -; ,go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422) -; ("go-go-opencensus-io-0.21.0" ,go-go-opencensus-io-0.21.0) -; ("go-github-com-hashicorp-golang-lru-0.5.1" -; ,go-github-com-hashicorp-golang-lru-0.5.1) -; ("go-github-com-googleapis-gax-go-v2-2.0.5" -; ,go-github-com-googleapis-gax-go-v2-2.0.5) -; ("go-github-com-google-go-cmp-0.3.0" -; ,go-github-com-google-go-cmp-0.3.0) -; ("go-cloud-google-com-go-0.38.0" ,go-cloud-google-com-go-0.38.0))) -; (home-page "https://google.golang.org/api") -; (synopsis "Google APIs Client Library for Go") -; (description -; "Package api is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of -;sub-packages. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-google-renameio-0.1.0 -; (package -; (name "go-github-com-google-renameio") -; (version "0.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/renameio") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ki2x5a9nrj17sn092d6n4zr29lfg5ydv4xz5cp58z6cw8ip43jx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/renameio")) -; (home-page "https://github.com/google/renameio") -; (synopsis "Atomicity vs durability") -; (description -; "Package renameio provides a way to atomically create or replace a file or -;symbolic link. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-kisielk-gotool-1.0.0 -; (package -; (name "go-github-com-kisielk-gotool") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kisielk/gotool") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "14af2pa0ssyp8bp2mvdw184s5wcysk6akil3wzxmr05wwy951iwn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kisielk/gotool")) -; (home-page "https://github.com/kisielk/gotool") -; (synopsis "gotool") -; (description -; "Package gotool contains utility functions used to implement the standard -;\"cmd/go\" tool, provided as a convenience to developers who want to write -;tools with similar semantics. -;") -; (license license:expat))) -; -;(define-public go-github-com-kr-pty-1.1.1 -; (package -; (name "go-github-com-kr-pty") -; (version "1.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kr/pty") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0383f0mb9kqjvncqrfpidsf8y6ns5zlrc91c6a74xpyxjwvzl2y6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kr/pty")) -; (home-page "https://github.com/kr/pty") -; (synopsis "pty") -; (description -; "Package pty is a wrapper for github.com/creack/pty, which provides -;functions for working with Unix terminals. -;") -; (license license:expat))) -; -;(define-public go-github-com-kr-text-0.1.0 -; (package -; (name "go-github-com-kr-text") -; (version "0.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kr/text") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1gm5bsl01apvc84bw06hasawyqm4q84vx1pm32wr9jnd7a8vjgj1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kr/text")) -; (propagated-inputs -; `(("go-github-com-kr-pty-1.1.1" ,go-github-com-kr-pty-1.1.1))) -; (home-page "https://github.com/kr/text") -; (synopsis #f) -; (description -; "Package text provides rudimentary functions for manipulating text in -;paragraphs. -;") -; (license license:expat))) -; -;(define-public go-github-com-kr-pretty-0.1.0 -; (package -; (name "go-github-com-kr-pretty") -; (version "0.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kr/pretty") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "18m4pwg2abd0j9cn5v3k2ksk9ig4vlwxmlw9rrglanziv9l967qp")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kr/pretty")) -; (propagated-inputs -; `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) -; (home-page "https://github.com/kr/pretty") -; (synopsis #f) -; (description -; "Package pretty provides pretty-printing for Go values. This is -;useful during debugging, to avoid wrapping long output lines in -;the terminal. -;") -; (license license:expat))) -; -;(define-public go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127 -; (package -; (name "go-gopkg-in-check-v1") -; (version "1.0.0-20180628173108-788fd7840127") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/check.v1") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0v3bim0j375z81zrpr5qv42knqs0y2qv2vkjiqi5axvb78slki1a")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) -; (home-page "https://gopkg.in/check.v1") -; (synopsis "Instructions") -; (description -; "Package check is a rich testing extension for Go's testing package. -;") -; (license license:bsd-2))) -; -;(define-public go-gopkg-in-errgo-v2-2.1.0 -; (package -; (name "go-gopkg-in-errgo-v2") -; (version "2.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/errgo.v2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "065mbihiy7q67wnql0bzl9y1kkvck5ivra68254zbih52jxwrgr2")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/errgo.v2" #:unpack-path "gopkg.in/errgo.v2")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" -; ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) -; ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0))) -; (home-page "https://gopkg.in/errgo.v2") -; (synopsis #f) -; (description -; "Package errgo provides some primitives for error creation and handling.") -; (license license:bsd-3))) -; -;(define-public go-github-com-rogpeppe-go-internal-1.3.0 -; (package -; (name "go-github-com-rogpeppe-go-internal") -; (version "1.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/rogpeppe/go-internal") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0mcdh1licgnnahwml9y2iq6xy5x9xmjw5frcnds2s3wpjyqrl216")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/rogpeppe/go-internal")) -; (propagated-inputs -; `(("go-gopkg-in-errgo-v2-2.1.0" ,go-gopkg-in-errgo-v2-2.1.0))) -; (home-page "https://github.com/rogpeppe/go-internal") -; (synopsis #f) -; (description -; "This repository factors out an opinionated selection of internal packages and functionality from the Go standard -;library. Currently this consists mostly of packages and testing code from within the Go tool implementation.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20190510104115-cbcb75029529 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20190510104115-cbcb75029529") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "12831ga1gq04a3jbbcmww7kaqfdfgp7cdv2fj9aqidz8h52ajdmh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" -; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) -; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" -; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-mod-0.0.0-20190513183733-4bf6d317e70e -; (package -; (name "go-golang-org-x-mod") -; (version "0.0.0-20190513183733-4bf6d317e70e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/mod") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "19lg1ly3j31anx92p0hynic1gjk417wwxphfdrb2cq1c19kj3r17")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/mod")) -; (propagated-inputs -; `(("go-golang-org-x-crypto-0.0.0-20190510104115-cbcb75029529" -; ,go-golang-org-x-crypto-0.0.0-20190510104115-cbcb75029529))) -; (home-page "https://golang.org/x/mod") -; (synopsis "mod") -; (description -; "This repository holds packages for writing tools -;that work directly with Go module mechanics. -;That is, it is for direct manipulation of Go modules themselves.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20191130070609-6e064ea0cf2d -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20191130070609-6e064ea0cf2d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1nbki367xspsa37j6276f5q2gv31vfjpb52axn3p3ymz548my75d")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7" -; ,go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7) -; ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" -; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) -; ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" -; ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-honnef-co-go-tools-0.0.1-2020.1.3 -; (package -; (name "go-honnef-co-go-tools") -; (version "0.0.1-2020.1.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/dominikh/go-tools") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0pvi1mzhy6zgx4zfgdypbl4zhvgg11hl5qv7blf2qs0a96j2djhf")))) -; (build-system go-build-system) -; (arguments '(#:import-path "honnef.co/go/tools")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20191130070609-6e064ea0cf2d" -; ,go-golang-org-x-tools-0.0.0-20191130070609-6e064ea0cf2d) -; ("go-golang-org-x-mod-0.0.0-20190513183733-4bf6d317e70e" -; ,go-golang-org-x-mod-0.0.0-20190513183733-4bf6d317e70e) -; ("go-github-com-rogpeppe-go-internal-1.3.0" -; ,go-github-com-rogpeppe-go-internal-1.3.0) -; ("go-github-com-kisielk-gotool-1.0.0" -; ,go-github-com-kisielk-gotool-1.0.0) -; ("go-github-com-google-renameio-0.1.0" -; ,go-github-com-google-renameio-0.1.0) -; ("go-github-com-burntsushi-toml-0.3.1" -; ,go-github-com-burntsushi-toml-0.3.1))) -; (home-page "https://honnef.co/go/tools") -; (synopsis "Documentation") -; (description -; "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, -;offers simplifications, and enforces style rules.") -; (license license:expat))) -; -;(define-public go-cloud-google-com-go-0.56.0 -; (package -; (name "go-cloud-google-com-go") -; (version "0.56.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-cloud-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1bpx84q7byxr5rp197qcg3pl56acs8v1q555frxgcqygxwjacszf")))) -; (build-system go-build-system) -; (arguments '(#:import-path "cloud.google.com/go")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.1-2020.1.3" -; ,go-honnef-co-go-tools-0.0.1-2020.1.3) -; ("go-google-golang-org-grpc-1.28.0" ,go-google-golang-org-grpc-1.28.0) -; ("go-google-golang-org-genproto-0.0.0-20200331122359-1ee6d9798940" -; ,go-google-golang-org-genproto-0.0.0-20200331122359-1ee6d9798940) -; ("go-google-golang-org-api-0.20.0" ,go-google-golang-org-api-0.20.0) -; ("go-golang-org-x-tools-0.0.0-20200331025713-a30bf2db82d4" -; ,go-golang-org-x-tools-0.0.0-20200331025713-a30bf2db82d4) -; ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) -; ("go-golang-org-x-sys-0.0.0-20200331124033-c3d80250170d" -; ,go-golang-org-x-sys-0.0.0-20200331124033-c3d80250170d) -; ("go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a" -; ,go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a) -; ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" -; ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) -; ("go-golang-org-x-net-0.0.0-20200324143707-d3edc9973b7e" -; ,go-golang-org-x-net-0.0.0-20200324143707-d3edc9973b7e) -; ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" -; ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) -; ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) -; ("go-github-com-jstemmer-go-junit-report-0.9.1" -; ,go-github-com-jstemmer-go-junit-report-0.9.1) -; ("go-github-com-googleapis-gax-go-v2-2.0.5" -; ,go-github-com-googleapis-gax-go-v2-2.0.5) -; ("go-github-com-google-pprof-0.0.0-20200229191704-1ebb73c60ed3" -; ,go-github-com-google-pprof-0.0.0-20200229191704-1ebb73c60ed3) -; ("go-github-com-google-martian-2.1.0+incompatible" -; ,go-github-com-google-martian-2.1.0+incompatible) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.3.5" -; ,go-github-com-golang-protobuf-1.3.5) -; ("go-github-com-golang-mock-1.4.3" ,go-github-com-golang-mock-1.4.3) -; ("go-cloud-google-com-go-storage-1.6.0" -; ,go-cloud-google-com-go-storage-1.6.0) -; ("go-cloud-google-com-go-pubsub-1.2.0" -; ,go-cloud-google-com-go-pubsub-1.2.0) -; ("go-cloud-google-com-go-datastore-1.1.0" -; ,go-cloud-google-com-go-datastore-1.1.0) -; ("go-cloud-google-com-go-bigquery-1.4.0" -; ,go-cloud-google-com-go-bigquery-1.4.0))) -; (home-page "https://cloud.google.com/go") -; (synopsis "Google Cloud Client Libraries for Go") -; (description -; "Package cloud is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -;of sub-packages. -;") -; (license license:asl2.0))) -; -;(define-public go-go-opencensus-io-0.22.3 -; (package -; (name "go-go-opencensus-io") -; (version "0.22.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/census-instrumentation/opencensus-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0xj16iq5jp26hi2py7lsd8cvqh651fgn39y05gzvjdi88d9xd3nw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "go.opencensus.io")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.20.1" ,go-google-golang-org-grpc-1.20.1) -; ("go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb" -; ,go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb) -; ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) -; ("go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd" -; ,go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd) -; ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" -; ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) -; ("go-github-com-stretchr-testify-1.4.0" -; ,go-github-com-stretchr-testify-1.4.0) -; ("go-github-com-google-go-cmp-0.3.0" -; ,go-github-com-google-go-cmp-0.3.0) -; ("go-github-com-golang-protobuf-1.3.1" -; ,go-github-com-golang-protobuf-1.3.1) -; ("go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6" -; ,go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6))) -; (home-page "https://go.opencensus.io") -; (synopsis "OpenCensus Libraries for Go") -; (description "Package opencensus contains Go support for OpenCensus. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a -; (package -; (name "go-golang-org-x-sync") -; (version "0.0.0-20200317015054-43a5402ce75a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sync") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0j6zrrb81qjr1926kkwmn0di9a0jn8qyjd9dw614rfkihxgq1vsm")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sync")) -; (home-page "https://golang.org/x/sync") -; (synopsis "Go Sync") -; (description -; "This repository provides Go concurrency primitives in addition to the -;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20200331124033-c3d80250170d -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20200331124033-c3d80250170d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1nswjhkg7yixla0b3d8xwzf94rawwyjrxipay3ffdvm426n0ld42")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-yuin-goldmark-1.1.25 -; (package -; (name "go-github-com-yuin-goldmark") -; (version "1.1.25") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/yuin/goldmark") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0cr3mk8pr7vsyisgrvln5ailnnn9xhardcy8mkshybk5c3n1kw5k")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/yuin/goldmark")) -; (home-page "https://github.com/yuin/goldmark") -; (synopsis "goldmark") -; (description -; "Package goldmark implements functions to convert markdown text to a desired format. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-mod-0.2.0 -; (package -; (name "go-golang-org-x-mod") -; (version "0.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/mod") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1fp6885dclq77mh73v7i54v2b9llpv4di193zc8vmsbbkkc483cl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/mod")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" -; ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) -; ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" -; ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) -; ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" -; ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) -; (home-page "https://golang.org/x/mod") -; (synopsis "mod") -; (description -; "This repository holds packages for writing tools -;that work directly with Go module mechanics. -;That is, it is for direct manipulation of Go modules themselves.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20200226121028-0de0cce0169b") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1db7s5kbzyh2zd5lpv05n7hp8wbwdvgk0wpiwrlnig94mkr0y5aq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e -; (package -; (name "go-golang-org-x-sync") -; (version "0.0.0-20190911185100-cd5d95a43a6e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sync") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1nqkyz2y1qvqcma52ijh02s8aiqmkfb95j08f6zcjhbga3ds6hds")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sync")) -; (home-page "https://golang.org/x/sync") -; (synopsis "Go Sync") -; (description -; "This repository provides Go concurrency primitives in addition to the -;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20200331025713-a30bf2db82d4 -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20200331025713-a30bf2db82d4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1rb488ydwi24zmd1zvsv8k8srs3q6xnqqfdar538hssqgljyvp7l")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" -; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) -; ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" -; ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) -; ("go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b" -; ,go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b) -; ("go-golang-org-x-mod-0.2.0" ,go-golang-org-x-mod-0.2.0) -; ("go-github-com-yuin-goldmark-1.1.25" -; ,go-github-com-yuin-goldmark-1.1.25))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-appengine-1.6.5 -; (package -; (name "go-google-golang-org-appengine") -; (version "1.6.5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/appengine") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "05hbq4cs7bqw0zl17bx8rzdkszid3nyl92100scg3jjrg70dhm7w")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/appengine")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) -; ("go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65" -; ,go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65) -; ("go-github-com-golang-protobuf-1.3.1" -; ,go-github-com-golang-protobuf-1.3.1))) -; (home-page "https://google.golang.org/appengine") -; (synopsis "Go App Engine packages") -; (description -; "Package appengine provides basic functionality for Google App Engine. -;") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20200331122359-1ee6d9798940 -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20200331122359-1ee6d9798940") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1zsp55d7xjc0b3yw5jjpvbsc0gkji1c1j2vxmcwm89dh26rz4jwd")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" -; ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) -; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) -; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" -; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-github-com-golang-protobuf-1.3.3" -; ,go-github-com-golang-protobuf-1.3.3))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-grpc-1.28.0 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.28.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1m36rg3w2mf4r3383yf0r1pjrz890mdw506h1lpm6bkc8w3kyqz3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" -; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-github-com-google-go-cmp-0.2.0" -; ,go-github-com-google-go-cmp-0.2.0) -; ("go-github-com-golang-protobuf-1.3.3" -; ,go-github-com-golang-protobuf-1.3.3) -; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" -; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) -; ("go-github-com-envoyproxy-go-control-plane-0.9.4" -; ,go-github-com-envoyproxy-go-control-plane-0.9.4))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-api-0.29.0 -; (package -; (name "go-google-golang-org-api") -; (version "0.29.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-api-go-client") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1y6izqcc6krill33pb57fbgbs7ni3jxyf3knm5jkl4qydsj9303h")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/api")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.28.0" ,go-google-golang-org-grpc-1.28.0) -; ("go-google-golang-org-genproto-0.0.0-20200331122359-1ee6d9798940" -; ,go-google-golang-org-genproto-0.0.0-20200331122359-1ee6d9798940) -; ("go-google-golang-org-appengine-1.6.5" -; ,go-google-golang-org-appengine-1.6.5) -; ("go-golang-org-x-tools-0.0.0-20200331025713-a30bf2db82d4" -; ,go-golang-org-x-tools-0.0.0-20200331025713-a30bf2db82d4) -; ("go-golang-org-x-sys-0.0.0-20200331124033-c3d80250170d" -; ,go-golang-org-x-sys-0.0.0-20200331124033-c3d80250170d) -; ("go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a" -; ,go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a) -; ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" -; ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) -; ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" -; ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) -; ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) -; ("go-github-com-googleapis-gax-go-v2-2.0.5" -; ,go-github-com-googleapis-gax-go-v2-2.0.5) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-cloud-google-com-go-0.56.0" ,go-cloud-google-com-go-0.56.0))) -; (home-page "https://google.golang.org/api") -; (synopsis "Google APIs Client Library for Go") -; (description -; "Package api is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of -;sub-packages. -;") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20200729003335-053ba62fc06f -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20200729003335-053ba62fc06f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1h34qgr4lqy1l0niay3gzqh6pc63y2xh1mmp8757y8jsrdz1s5fv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.24.0" -; ,go-google-golang-org-protobuf-1.24.0) -; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) -; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" -; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-github-com-golang-protobuf-1.4.1" -; ,go-github-com-golang-protobuf-1.4.1))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-grpc-1.30.0 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.30.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "05pb9xrxd7kpbi8zzby90f87b6sxq65nmpgqx5h3255whmmpzbi9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" -; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.3.3" -; ,go-github-com-golang-protobuf-1.3.3) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-envoyproxy-go-control-plane-0.9.4" -; ,go-github-com-envoyproxy-go-control-plane-0.9.4) -; ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" -; ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-cloud-google-com-go-0.62.0 -; (package -; (name "go-cloud-google-com-go") -; (version "0.62.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-cloud-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "00x1nlq4fvvxrwx24firscav511qwck3zl6ghs9p6zzzixla8r5h")))) -; (build-system go-build-system) -; (arguments '(#:import-path "cloud.google.com/go")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.25.0" -; ,go-google-golang-org-protobuf-1.25.0) -; ("go-google-golang-org-grpc-1.30.0" ,go-google-golang-org-grpc-1.30.0) -; ("go-google-golang-org-genproto-0.0.0-20200729003335-053ba62fc06f" -; ,go-google-golang-org-genproto-0.0.0-20200729003335-053ba62fc06f) -; ("go-google-golang-org-api-0.29.0" ,go-google-golang-org-api-0.29.0) -; ("go-golang-org-x-tools-0.0.0-20200729194436-6467de6f59a7" -; ,go-golang-org-x-tools-0.0.0-20200729194436-6467de6f59a7) -; ("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) -; ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" -; ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) -; ("go-golang-org-x-net-0.0.0-20200707034311-ab3426394381" -; ,go-golang-org-x-net-0.0.0-20200707034311-ab3426394381) -; ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" -; ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) -; ("go-go-opencensus-io-0.22.4" ,go-go-opencensus-io-0.22.4) -; ("go-github-com-jstemmer-go-junit-report-0.9.1" -; ,go-github-com-jstemmer-go-junit-report-0.9.1) -; ("go-github-com-googleapis-gax-go-v2-2.0.5" -; ,go-github-com-googleapis-gax-go-v2-2.0.5) -; ("go-github-com-google-pprof-0.0.0-20200708004538-1a94d8640e99" -; ,go-github-com-google-pprof-0.0.0-20200708004538-1a94d8640e99) -; ("go-github-com-google-martian-v3-3.0.0" -; ,go-github-com-google-martian-v3-3.0.0) -; ("go-github-com-google-go-cmp-0.5.1" -; ,go-github-com-google-go-cmp-0.5.1) -; ("go-github-com-golang-protobuf-1.4.2" -; ,go-github-com-golang-protobuf-1.4.2) -; ("go-github-com-golang-mock-1.4.3" ,go-github-com-golang-mock-1.4.3) -; ("go-cloud-google-com-go-storage-1.10.0" -; ,go-cloud-google-com-go-storage-1.10.0))) -; (home-page "https://cloud.google.com/go") -; (synopsis "Google Cloud Client Libraries for Go") -; (description -; "Package cloud is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -;of sub-packages. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-google-go-cmp-0.5.1 -; (package -; (name "go-github-com-google-go-cmp") -; (version "0.5.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/go-cmp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1wjdid59brciv09agxgmqac5k9ywg63nhzb0yi9anmqpl38gps0p")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/go-cmp")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" -; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) -; (home-page "https://github.com/google/go-cmp") -; (synopsis "Package for equality of Go values") -; (description -; "This package is intended to be a more powerful and safer alternative to -;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") -; (license license:bsd-3))) -; -;(define-public go-github-com-googleapis-gax-go-v2-2.0.5 -; (package -; (name "go-github-com-googleapis-gax-go-v2") -; (version "2.0.5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/gax-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1lxawwngv6miaqd25s3ba0didfzylbwisd2nz7r4gmbmin6jsjrx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/googleapis/gax-go/v2")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.19.0" -; ,go-google-golang-org-grpc-1.19.0))) -; (home-page "https://github.com/googleapis/gax-go") -; (synopsis #f) -; (description -; "Package gax contains a set of modules which aid the development of APIs -;for clients and servers based on gRPC and Google API conventions. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6 -; (package -; (name "go-github-com-golang-groupcache") -; (version "0.0.0-20190702054246-869f871628b6") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/groupcache") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0r4nk8129bvx50qb4xzjaay39b2h6k7cbdqqzdlanmc82ygczsbw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/groupcache")) -; (home-page "https://github.com/golang/groupcache") -; (synopsis "groupcache") -; (description -; "Package groupcache provides a data loading mechanism with caching -;and de-duplication that works across a set of peer processes. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190502145724-3ef323f4f1fd") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "15iw4gjvrnrx98rlny1qcaprp3577rh2b77byb38dr6m3q42rvc6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6 -; (package -; (name "go-golang-org-x-sync") -; (version "0.0.0-20190227155943-e225da77a7e6") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sync") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0bh3583smcfw6jw3w6lp0za93rz7hpxfdz8vhxng75b7a6vdlw4p")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sync")) -; (home-page "https://golang.org/x/sync") -; (synopsis "Go Sync") -; (description -; "This repository provides Go concurrency primitives in addition to the -;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20190425155659-357c62f0e4bb") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1h1a0wys83cc86s4w2hqmz78ixijw8f7qchmiwdv5xjvpg0i27c2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" -; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) -; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) -; ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" -; ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) -; ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" -; ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) -; ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" -; ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd) -; ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" -; ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) -; ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" -; ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-grpc-1.20.1 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.20.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0rj3fs6jillapiwnpkfn3v2jbl7a3zsb0lys4srswl26hjijviqq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" -; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) -; ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" -; ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) -; ("go-google-golang-org-appengine-1.1.0" -; ,go-google-golang-org-appengine-1.1.0) -; ("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" -; ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" -; ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0) -; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-client9-misspell-0.3.4" -; ,go-github-com-client9-misspell-0.3.4) -; ("go-github-com-burntsushi-toml-0.3.1" -; ,go-github-com-burntsushi-toml-0.3.1) -; ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-go-opencensus-io-0.22.4 -; (package -; (name "go-go-opencensus-io") -; (version "0.22.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/census-instrumentation/opencensus-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "10skbvs4yxjm3z10yfg5cj2mdzjsna87qk1icp9xv0iwp8wzq6h0")))) -; (build-system go-build-system) -; (arguments '(#:import-path "go.opencensus.io")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.20.1" ,go-google-golang-org-grpc-1.20.1) -; ("go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb" -; ,go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb) -; ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) -; ("go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd" -; ,go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd) -; ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" -; ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) -; ("go-github-com-stretchr-testify-1.4.0" -; ,go-github-com-stretchr-testify-1.4.0) -; ("go-github-com-google-go-cmp-0.3.0" -; ,go-github-com-google-go-cmp-0.3.0) -; ("go-github-com-golang-protobuf-1.3.1" -; ,go-github-com-golang-protobuf-1.3.1) -; ("go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6" -; ,go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6))) -; (home-page "https://go.opencensus.io") -; (synopsis "OpenCensus Libraries for Go") -; (description "Package opencensus contains Go support for OpenCensus. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b -; (package -; (name "go-golang-org-x-lint") -; (version "0.0.0-20200302205851-738671d3881b") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/lint") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0jkiz4py59jjnkyxbxifpf7bsar11lbgmj5jiq2kic5k03shkn9c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/lint")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7" -; ,go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7))) -; (home-page "https://golang.org/x/lint") -; (synopsis "Installation") -; (description "Package lint contains a linter for Go source code. -;") -; (license license:bsd-3))) -; -;(define-public go-cloud-google-com-go-0.34.0 -; (package -; (name "go-cloud-google-com-go") -; (version "0.34.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-cloud-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1kclgclwar3r37zbvb9gg3qxbgzkb50zk3s9778zlh2773qikmai")))) -; (build-system go-build-system) -; (arguments '(#:import-path "cloud.google.com/go")) -; (home-page "https://cloud.google.com/go") -; (synopsis "Google Cloud Client Libraries for Go") -; (description -; "Package cloud is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -;of sub-packages. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20190108225652-1e06a53dbb7e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0lpqqvdccby48nixihvmn8ig1z48b950m1bxfqxn78air308qc3j")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4 -; (package -; (name "go-golang-org-x-sync") -; (version "0.0.0-20181221193216-37e7f081c4d4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sync") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1bb0mw6ckb1k7z8v3iil2qlqwfj408fvvp8m1cik2b46p7snyjhm")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sync")) -; (home-page "https://golang.org/x/sync") -; (synopsis "Go Sync") -; (description -; "This repository provides Go concurrency primitives in addition to the -;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d -; (package -; (name "go-golang-org-x-oauth2") -; (version "0.0.0-20200107190931-bf48bf16ab8d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/oauth2") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1sirdib60zwmh93kf9qrx51r8544k1p9rs5mk0797wibz3m4mrdg")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/oauth2")) -; (propagated-inputs -; `(("go-google-golang-org-appengine-1.4.0" -; ,go-google-golang-org-appengine-1.4.0) -; ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" -; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) -; ("go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e" -; ,go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e) -; ("go-cloud-google-com-go-0.34.0" ,go-cloud-google-com-go-0.34.0))) -; (home-page "https://golang.org/x/oauth2") -; (synopsis "OAuth2 for Go") -; (description -; "Package oauth2 provides support for making -;OAuth2 authorized and authenticated HTTP requests, -;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -;It can additionally grant authorization with Bearer JWT. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20200803210538-64077c9b5642 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20200803210538-64077c9b5642") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1pdrkim9v0wbxipl586d29vz4ci9xib0f02g6yv7c0nang627pag")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-yuin-goldmark-1.1.32 -; (package -; (name "go-github-com-yuin-goldmark") -; (version "1.1.32") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/yuin/goldmark") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "03i9yq6n3yvn5v70xi6x3pn49ndy8zm4217ihwwhlw2nkwhny7a5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/yuin/goldmark")) -; (home-page "https://github.com/yuin/goldmark") -; (synopsis "goldmark") -; (description -; "Package goldmark implements functions to convert markdown text to a desired format. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-net-0.0.0-20200625001655-4c5254603344 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20200625001655-4c5254603344") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1da0a1m488d95vggpi52dkag98n5671ml6sn80nwv6lgbmdx8qbq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" -; ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) -; ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" -; ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208 -; (package -; (name "go-golang-org-x-sync") -; (version "0.0.0-20200625203802-6e8e738ad208") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sync") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1avk27pszd5l5df6ff7j78wgla46ir1hhy2jwfl9a3c0ys602yx9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sync")) -; (home-page "https://golang.org/x/sync") -; (synopsis "Go Sync") -; (description -; "This repository provides Go concurrency primitives in addition to the -;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20200804011535-6c149bb5ef0d -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20200804011535-6c149bb5ef0d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1l244hp5n0qff7nmvcffggjv7jm4061g63g76z967zvdqcxh23i2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" -; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) -; ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" -; ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) -; ("go-golang-org-x-net-0.0.0-20200625001655-4c5254603344" -; ,go-golang-org-x-net-0.0.0-20200625001655-4c5254603344) -; ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) -; ("go-github-com-yuin-goldmark-1.1.32" -; ,go-github-com-yuin-goldmark-1.1.32))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20200804131852-c06518451d9c -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20200804131852-c06518451d9c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0wl9bhr94yf0b8lc947zr0iwm3l20irzy869xczfd6z0a1g54gsa")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.24.0" -; ,go-google-golang-org-protobuf-1.24.0) -; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) -; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" -; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-github-com-golang-protobuf-1.4.1" -; ,go-github-com-golang-protobuf-1.4.1))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-api-0.30.0 -; (package -; (name "go-google-golang-org-api") -; (version "0.30.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-api-go-client") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1vh5rrc6hvzh1rqawrwr4nyilnr3dgqx1pr2njjzdg0prfmflm5p")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/api")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.31.0" ,go-google-golang-org-grpc-1.31.0) -; ("go-google-golang-org-genproto-0.0.0-20200804131852-c06518451d9c" -; ,go-google-golang-org-genproto-0.0.0-20200804131852-c06518451d9c) -; ("go-google-golang-org-appengine-1.6.6" -; ,go-google-golang-org-appengine-1.6.6) -; ("go-golang-org-x-tools-0.0.0-20200804011535-6c149bb5ef0d" -; ,go-golang-org-x-tools-0.0.0-20200804011535-6c149bb5ef0d) -; ("go-golang-org-x-sys-0.0.0-20200803210538-64077c9b5642" -; ,go-golang-org-x-sys-0.0.0-20200803210538-64077c9b5642) -; ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" -; ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) -; ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" -; ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) -; ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" -; ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) -; ("go-go-opencensus-io-0.22.4" ,go-go-opencensus-io-0.22.4) -; ("go-github-com-googleapis-gax-go-v2-2.0.5" -; ,go-github-com-googleapis-gax-go-v2-2.0.5) -; ("go-github-com-google-go-cmp-0.5.1" -; ,go-github-com-google-go-cmp-0.5.1) -; ("go-cloud-google-com-go-0.62.0" ,go-cloud-google-com-go-0.62.0))) -; (home-page "https://google.golang.org/api") -; (synopsis "Google APIs Client Library for Go") -; (description -; "Package api is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of -;sub-packages. -;") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-1.24.0 -; (package -; (name "go-google-golang-org-protobuf") -; (version "1.24.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0x3qyn3rizbs671gs7f8v50rmiwf9h7kbaradpivw9718mhbg1gn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" -; ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.4.1" -; ,go-github-com-golang-protobuf-1.4.1))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20200825200019-8632dd797987 -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20200825200019-8632dd797987") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0h8s1mz8pbdiwmv2g61afa7f05zin3m6mdy2fmny6wcidz4w2i3k")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.24.0" -; ,go-google-golang-org-protobuf-1.24.0) -; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) -; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" -; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-github-com-golang-protobuf-1.4.1" -; ,go-github-com-golang-protobuf-1.4.1))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f -; (package -; (name "go-github-com-cncf-udpa-go") -; (version "0.0.0-20191209042840-269d4d468f6f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/cncf/udpa") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0i1jiaw2k3hlwwmg4hap81vb4s1p25xp9kdfww37v0fbgjariccs")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path -; "github.com/cncf/udpa/go" -; #:unpack-path -; "github.com/cncf/udpa")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2) -; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" -; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0))) -; (home-page "https://github.com/cncf/udpa") -; (synopsis "Description") -; (description -; "This library has been deprecated in favor of @code{github.com/cncf/xds/go}. All users are recommended to switch their imports.") -; (license license:asl2.0))) -; -;(define-public go-github-com-envoyproxy-go-control-plane-0.9.4 -; (package -; (name "go-github-com-envoyproxy-go-control-plane") -; (version "0.9.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/envoyproxy/go-control-plane") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0m0crzx70lp7vz13v20wxb1fcfdnzp7h3mkh3bn6a8mbfz6w5asj")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) -; ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" -; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) -; ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" -; ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) -; ("go-github-com-google-go-cmp-0.2.0" -; ,go-github-com-google-go-cmp-0.2.0) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2) -; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" -; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) -; ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" -; ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f) -; ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" -; ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) -; (home-page "https://github.com/envoyproxy/go-control-plane") -; (synopsis "control-plane") -; (description -; "This repository contains a Go-based implementation of an API server that -;implements the discovery service APIs defined in -;@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") -; (license license:asl2.0))) -; -;(define-public go-github-com-golang-protobuf-1.3.3 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.3.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1cyyr52yhj3fzrily3rmsbqyj8va4ld75lmry0857m39rgpv8sy1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-grpc-1.31.0 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.31.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1y3lilpipmaysjk4skbzw1qa6lv05vzixzw9lg9x73xfb01q4nyz")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" -; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.3.3" -; ,go-github-com-golang-protobuf-1.3.3) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-envoyproxy-go-control-plane-0.9.4" -; ,go-github-com-envoyproxy-go-control-plane-0.9.4) -; ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" -; ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-cloud-google-com-go-0.65.0 -; (package -; (name "go-cloud-google-com-go") -; (version "0.65.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-cloud-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0xrcg39jrw90gq8vl8pfq63sp3bkak04wh392yj5rh4lc1a4lxjq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "cloud.google.com/go")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.31.0" ,go-google-golang-org-grpc-1.31.0) -; ("go-google-golang-org-genproto-0.0.0-20200825200019-8632dd797987" -; ,go-google-golang-org-genproto-0.0.0-20200825200019-8632dd797987) -; ("go-google-golang-org-api-0.30.0" ,go-google-golang-org-api-0.30.0) -; ("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" -; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) -; ("go-golang-org-x-tools-0.0.0-20200825202427-b303f430e36d" -; ,go-golang-org-x-tools-0.0.0-20200825202427-b303f430e36d) -; ("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) -; ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" -; ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) -; ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" -; ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) -; ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" -; ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) -; ("go-go-opencensus-io-0.22.4" ,go-go-opencensus-io-0.22.4) -; ("go-github-com-jstemmer-go-junit-report-0.9.1" -; ,go-github-com-jstemmer-go-junit-report-0.9.1) -; ("go-github-com-googleapis-gax-go-v2-2.0.5" -; ,go-github-com-googleapis-gax-go-v2-2.0.5) -; ("go-github-com-google-pprof-0.0.0-20200708004538-1a94d8640e99" -; ,go-github-com-google-pprof-0.0.0-20200708004538-1a94d8640e99) -; ("go-github-com-google-martian-v3-3.0.0" -; ,go-github-com-google-martian-v3-3.0.0) -; ("go-github-com-google-go-cmp-0.5.1" -; ,go-github-com-google-go-cmp-0.5.1) -; ("go-github-com-golang-protobuf-1.4.2" -; ,go-github-com-golang-protobuf-1.4.2) -; ("go-github-com-golang-mock-1.4.4" ,go-github-com-golang-mock-1.4.4) -; ("go-cloud-google-com-go-storage-1.10.0" -; ,go-cloud-google-com-go-storage-1.10.0))) -; (home-page "https://cloud.google.com/go") -; (synopsis "Google Cloud Client Libraries for Go") -; (description -; "Package cloud is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -;of sub-packages. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20200323222414-85ca7c5b95cd") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1504qkgbhhm4f0bhk77v2r1lj6x171ay5m79alkg78wjb5cign5l")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20200822124328-c89045814202 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20200822124328-c89045814202") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1g3wxilwbcbf2xj20y3mpxh38jka4fyhl48akfqf00vr48zmx96x")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" -; ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) -; ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" -; ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-appengine-1.6.6 -; (package -; (name "go-google-golang-org-appengine") -; (version "1.6.6") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/appengine") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "15c38h6fbv06cnkr6yknygfrpibyms2mya4w0l29kaxf42jn1qi5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/appengine")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) -; ("go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65" -; ,go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65) -; ("go-github-com-golang-protobuf-1.3.1" -; ,go-github-com-golang-protobuf-1.3.1))) -; (home-page "https://google.golang.org/appengine") -; (synopsis "Go App Engine packages") -; (description -; "Package appengine provides basic functionality for Google App Engine. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-oauth2-0.0.0-20210402161424-2e8d93401602 -; (package -; (name "go-golang-org-x-oauth2") -; (version "0.0.0-20210402161424-2e8d93401602") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/oauth2") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0j1crxa78gip3hxrds5jngi034j4zm4q3z7r8bqs3rjxnwcki9ig")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/oauth2")) -; (propagated-inputs -; `(("go-google-golang-org-appengine-1.6.6" -; ,go-google-golang-org-appengine-1.6.6) -; ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" -; ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) -; ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) -; (home-page "https://golang.org/x/oauth2") -; (synopsis "OAuth2 for Go") -; (description -; "Package oauth2 provides support for making -;OAuth2 authorized and authenticated HTTP requests, -;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -;It can additionally grant authorization with Bearer JWT. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c -; (package -; (name "go-golang-org-x-sync") -; (version "0.0.0-20210220032951-036812b2e83c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sync") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1gl202py3s4gl6arkaxlf8qa6f0jyyg2f95m6f89qnfmr416h85b")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sync")) -; (home-page "https://golang.org/x/sync") -; (synopsis "Go Sync") -; (description -; "This repository provides Go concurrency primitives in addition to the -;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20210403161142-5e06dd20ab57 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20210403161142-5e06dd20ab57") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1acdn06771rxjg38ql9wl8dr1vf23nazjnvk6105z3hddnh14fgb")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.3.1 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.3.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "15am4s4646qy6iv0g3kkqq52rzykqjhm4bf08dk0fy2r58knpsyl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20190603091049-60506f45cf65") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0827yz7irmnzcdhw8vg74819jaw5ahs4w4v5fvzgfvnxyb9f6zcc")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-text-0.3.2 -; (package -; (name "go-golang-org-x-text") -; (version "0.3.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/text") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0flv9idw0jm5nm8lx25xqanbkqgfiym6619w575p7nrdh0riqwqh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/text")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" -; ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) -; (home-page "https://golang.org/x/text") -; (synopsis "Go Text") -; (description -; "text is a repository of text-related packages related to internationalization -;(i18n) and localization (l10n), such as character encodings, text -;transformations, and locale-specific text handling. -;") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-appengine-1.6.7 -; (package -; (name "go-google-golang-org-appengine") -; (version "1.6.7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/appengine") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1wkipg7xxc0ha5p6c3bj0vpgq38l18441n5l6zxdhx0gzvz5z1hs")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/appengine")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) -; ("go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65" -; ,go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65) -; ("go-github-com-golang-protobuf-1.3.1" -; ,go-github-com-golang-protobuf-1.3.1))) -; (home-page "https://google.golang.org/appengine") -; (synopsis "Go App Engine packages") -; (description -; "Package appengine provides basic functionality for Google App Engine. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-golang-protobuf-1.5.1 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.5.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1qx8gvsdx1w27vamw6wn1jns2d8pz0g9sji3l0hvs4wl1jf7p32d")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.26.0" -; ,go-google-golang-org-protobuf-1.26.0) -; ("go-github-com-google-go-cmp-0.5.5" -; ,go-github-com-google-go-cmp-0.5.5))) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-mod-0.1.1-0.20191105210325-c90efee705ee -; (package -; (name "go-golang-org-x-mod") -; (version "0.1.1-0.20191105210325-c90efee705ee") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/mod") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0i5md645rmcy5z5ij9ng428k9rz4g3k1kjy3blsq1264rn426gdf")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/mod")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" -; ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) -; ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" -; ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) -; (home-page "https://golang.org/x/mod") -; (synopsis "mod") -; (description -; "This repository holds packages for writing tools -;that work directly with Go module mechanics. -;That is, it is for direct manipulation of Go modules themselves.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7 -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20200130002326-2f3ba24bd6e7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0j3nnmlwnbivf0h9x89vlp8ji3ha41v96bj33cxwmrrjnxq543ww")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" -; ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) -; ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" -; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) -; ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" -; ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) -; ("go-golang-org-x-mod-0.1.1-0.20191105210325-c90efee705ee" -; ,go-golang-org-x-mod-0.1.1-0.20191105210325-c90efee705ee))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5 -; (package -; (name "go-golang-org-x-lint") -; (version "0.0.0-20201208152925-83fdc39ff7b5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/lint") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ms3rs5hvpnm9bxbr5f9743i7hn2bbmqdmvzxq6nmi0f24ypv1l3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/lint")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7" -; ,go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7))) -; (home-page "https://golang.org/x/lint") -; (synopsis "Installation") -; (description "Package lint contains a linter for Go source code. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20210315160823-c6e025ad8005 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20210315160823-c6e025ad8005") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1dy8j3gvbkng0vy2wgdiy48871j4vchgsks2ggfxcx4jg32d2qsr")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20201119102817-f84b799fce68") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1dvhqian5byzkcg1bnqzygqa6ccc6krc2q7j12pp1vhl3y7znnsg")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1 -; (package -; (name "go-golang-org-x-term") -; (version "0.0.0-20201126162022-7de9c90e9dd1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/term") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ba252xmv6qsvf1w1gcy98mngrj0vd4inbjw0lsklqvva65nljna")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/term")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" -; ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) -; (home-page "https://golang.org/x/term") -; (synopsis "Go terminal/console support") -; (description -; "Package term provides support functions for dealing with terminals, as -;commonly found on UNIX systems. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20210316092652-d523dce5a7f4 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20210316092652-d523dce5a7f4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "01hhvh6msyg11adxhgjwzbv4jprq5ajzkxxb16ln3dqv4na9b2k1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) -; ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" -; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) -; ("go-golang-org-x-sys-0.0.0-20210315160823-c6e025ad8005" -; ,go-golang-org-x-sys-0.0.0-20210315160823-c6e025ad8005))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20210320140829-1e4c9ba3b0c4 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20210320140829-1e4c9ba3b0c4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0nrxjq5j058sba9s5g65l5rdw6b4f335lxa7hhcf57paklym1qgr")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-text-0.3.5 -; (package -; (name "go-golang-org-x-text") -; (version "0.3.5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/text") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "082s9d7wnh1aa2v08g3h5z4if2f8hl4y01pb788qsvab9329lj0w")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/text")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" -; ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) -; (home-page "https://golang.org/x/text") -; (synopsis "Go Text") -; (description -; "text is a repository of text-related packages related to internationalization -;(i18n) and localization (l10n), such as character encodings, text -;transformations, and locale-specific text handling. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-yuin-goldmark-1.2.1 -; (package -; (name "go-github-com-yuin-goldmark") -; (version "1.2.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/yuin/goldmark") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "12rsnsf65drcp0jfw2jl9w589vsn3pxdk1zh3v9q908iigngrcmy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/yuin/goldmark")) -; (home-page "https://github.com/yuin/goldmark") -; (synopsis "goldmark") -; (description -; "Package goldmark implements functions to convert markdown text to a desired format. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20191011191535-87dc89f01550") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0z4i1m2yn3f31ci7wvcm2rxkx2yiv7a78mfzklncmsz2k97rlh2g")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" -; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) -; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" -; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20190620200207-3b0461eec859") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0l00c8l0a8xnv6qdpwfzxxsr58jggacgzdrwiprrfx2xqm37b6d5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7 -; (package -; (name "go-golang-org-x-xerrors") -; (version "0.0.0-20190717185122-a985d3407aa7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/xerrors") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "00wzr5w8aadipgc3rkk8f11i41znskfj9ix5nhhaxyg7isrslgcj")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/xerrors")) -; (home-page "https://golang.org/x/xerrors") -; (synopsis #f) -; (description -; "Package xerrors implements functions to manipulate errors. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20191119224855-298f0cb1881e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0l4pqwib2wnfnix6nvxl0yrq87ipi7ff1rz6z5bxfzy9dki1nzmv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7" -; ,go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7) -; ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" -; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) -; ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" -; ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898 -; (package -; (name "go-golang-org-x-xerrors") -; (version "0.0.0-20191011141410-1b5146add898") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/xerrors") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0w2akj91krxjag0xdhsg78470888nicc5ismc2ap9jqpss6v1zih")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/xerrors")) -; (home-page "https://golang.org/x/xerrors") -; (synopsis #f) -; (description -; "Package xerrors implements functions to manipulate errors. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-mod-0.3.0 -; (package -; (name "go-golang-org-x-mod") -; (version "0.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/mod") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ldgbx2zpprbsfn6p8pfgs4nn87gwbfcv2z0fa7n8alwsq2yw78q")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/mod")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" -; ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) -; ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" -; ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) -; ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" -; ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) -; (home-page "https://golang.org/x/mod") -; (synopsis "mod") -; (description -; "This repository holds packages for writing tools -;that work directly with Go module mechanics. -;That is, it is for direct manipulation of Go modules themselves.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20200622213623-75b288015ac9") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "18vlncvvs11ds3zaaziqjlg5s2vcwi3496nn6qv7p0dp94j5pwa2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" -; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) -; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" -; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20200930185726-fdedc70b468f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1njlfhjbvi4lxvjbq8zswrb0y0q4jd2p6x51h1q6vmyzi9af6869")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20201021035429-f5854403a974 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20201021035429-f5854403a974") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1vw63zpmhi337f3gc432x3wkib4j2ia8dy7if31wxwb9dgqvy222")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) -; ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" -; ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) -; ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" -; ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9 -; (package -; (name "go-golang-org-x-sync") -; (version "0.0.0-20201020160332-67f06af15bc9") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sync") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "093p4panc808ak5bamzz7m9nb0xxib7778jpnr6f0xkz1n4fzyw5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sync")) -; (home-page "https://golang.org/x/sync") -; (synopsis "Go Sync") -; (description -; "This repository provides Go concurrency primitives in addition to the -;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20210119212857-b64e53b001e4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "16in6bazi0frdkzhqxyvmw7qcvzjavq21dnz9bmrqq8d4dpd2j44")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1 -; (package -; (name "go-golang-org-x-xerrors") -; (version "0.0.0-20200804184101-5ec99f83aff1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/xerrors") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1dbzc3gmf2haazpv7cgmv97rq40g2xzwbglc17vas8dwhgwgwrzb")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/xerrors")) -; (home-page "https://golang.org/x/xerrors") -; (synopsis #f) -; (description -; "Package xerrors implements functions to manipulate errors. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.1.0 -; (package -; (name "go-golang-org-x-tools") -; (version "0.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1asrm22kv5x891qkbpap8alg612k321jbs1akc0vwsan251gm507")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" -; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) -; ("go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4" -; ,go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4) -; ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" -; ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) -; ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" -; ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) -; ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) -; ("go-github-com-yuin-goldmark-1.2.1" -; ,go-github-com-yuin-goldmark-1.2.1))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-1.26.0-rc.1 -; (package -; (name "go-google-golang-org-protobuf") -; (version "1.26.0-rc.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1m2jp247qcnix42jncn0q7pwrjgbhiqllb1115hfsz40xfnfhp8j")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.5.5" -; ,go-github-com-google-go-cmp-0.5.5))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.5.0 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.5.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1craaxv34g4g8q3yrv6pr28fx9ihnk7hj5gnbmxcrhcp78423lnf")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.26.0-rc.1" -; ,go-google-golang-org-protobuf-1.26.0-rc.1) -; ("go-github-com-google-go-cmp-0.5.5" -; ,go-github-com-google-go-cmp-0.5.5))) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-github-com-google-go-cmp-0.5.5 -; (package -; (name "go-github-com-google-go-cmp") -; (version "0.5.5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/go-cmp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "12fmkdhyv5d4is8s57k78j097zb0phlgnrkqc03agiszxlid69x7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/go-cmp")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" -; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) -; (home-page "https://github.com/google/go-cmp") -; (synopsis "Package for equality of Go values") -; (description -; "This package is intended to be a more powerful and safer alternative to -;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-1.26.0 -; (package -; (name "go-google-golang-org-protobuf") -; (version "1.26.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0xq6phaps6d0vcv13ga59gzj4306l0ki9kikhmb52h6pq0iwfqlz")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.5.5" -; ,go-github-com-google-go-cmp-0.5.5) -; ("go-github-com-golang-protobuf-1.5.0" -; ,go-github-com-golang-protobuf-1.5.0))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20210402141018-6c239bbf2bb1 -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20210402141018-6c239bbf2bb1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1xih6y4dwjj939ilwc5s6w419kjnkn1hw33jsgml0nkjcnac74wc")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.26.0" -; ,go-google-golang-org-protobuf-1.26.0) -; ("go-google-golang-org-grpc-1.36.1" ,go-google-golang-org-grpc-1.36.1) -; ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) -; ("go-golang-org-x-text-0.3.5" ,go-golang-org-x-text-0.3.5) -; ("go-golang-org-x-sys-0.0.0-20210320140829-1e4c9ba3b0c4" -; ,go-golang-org-x-sys-0.0.0-20210320140829-1e4c9ba3b0c4) -; ("go-golang-org-x-net-0.0.0-20210316092652-d523dce5a7f4" -; ,go-golang-org-x-net-0.0.0-20210316092652-d523dce5a7f4) -; ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" -; ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) -; ("go-github-com-golang-protobuf-1.5.1" -; ,go-github-com-golang-protobuf-1.5.1))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad -; (package -; (name "go-github-com-envoyproxy-go-control-plane") -; (version "0.9.9-0.20201210154907-fd9021fe5dad") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/envoyproxy/go-control-plane") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0piyk6pk36x2qr3bhys2k240pfwz3bv64fhi2l0vx1mzwiddapbm")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.23.0" -; ,go-google-golang-org-protobuf-1.23.0) -; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) -; ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" -; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) -; ("go-github-com-stretchr-testify-1.5.1" -; ,go-github-com-stretchr-testify-1.5.1) -; ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" -; ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.4.2" -; ,go-github-com-golang-protobuf-1.4.2) -; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" -; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) -; ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" -; ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403) -; ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" -; ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) -; (home-page "https://github.com/envoyproxy/go-control-plane") -; (synopsis "control-plane") -; (description -; "This repository contains a Go-based implementation of an API server that -;implements the discovery service APIs defined in -;@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-grpc-1.36.1 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.36.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0l3prxp18lb0pagqg4l6c9i0l6gakfxgf6vxcsv589i0xsxw8ivm")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.25.0" -; ,go-google-golang-org-protobuf-1.25.0) -; ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" -; ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) -; ("go-github-com-google-go-cmp-0.5.0" -; ,go-github-com-google-go-cmp-0.5.0) -; ("go-github-com-golang-protobuf-1.4.2" -; ,go-github-com-golang-protobuf-1.4.2) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad" -; ,go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad) -; ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" -; ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-api-0.44.0 -; (package -; (name "go-google-golang-org-api") -; (version "0.44.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-api-go-client") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0sh6qzc3pnyliy10afrmzpfbbbm2mwcyc6mp5422xhgp3p2x370x")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/api")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.36.1" ,go-google-golang-org-grpc-1.36.1) -; ("go-google-golang-org-genproto-0.0.0-20210402141018-6c239bbf2bb1" -; ,go-google-golang-org-genproto-0.0.0-20210402141018-6c239bbf2bb1) -; ("go-google-golang-org-appengine-1.6.7" -; ,go-google-golang-org-appengine-1.6.7) -; ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) -; ("go-golang-org-x-sys-0.0.0-20210403161142-5e06dd20ab57" -; ,go-golang-org-x-sys-0.0.0-20210403161142-5e06dd20ab57) -; ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" -; ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) -; ("go-golang-org-x-oauth2-0.0.0-20210402161424-2e8d93401602" -; ,go-golang-org-x-oauth2-0.0.0-20210402161424-2e8d93401602) -; ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" -; ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) -; ("go-go-opencensus-io-0.23.0" ,go-go-opencensus-io-0.23.0) -; ("go-github-com-googleapis-gax-go-v2-2.0.5" -; ,go-github-com-googleapis-gax-go-v2-2.0.5) -; ("go-github-com-google-go-cmp-0.5.5" -; ,go-github-com-google-go-cmp-0.5.5) -; ("go-cloud-google-com-go-0.81.0" ,go-cloud-google-com-go-0.81.0))) -; (home-page "https://google.golang.org/api") -; (synopsis "Google APIs Client Library for Go") -; (description -; "Package api is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of -;sub-packages. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-envoyproxy-go-control-plane-0.9.0 -; (package -; (name "go-github-com-envoyproxy-go-control-plane") -; (version "0.9.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/envoyproxy/go-control-plane") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1dpvi4wnycyj6hnai78fr8aj58b27b1vcwdp3v0id5v22kvgr3xw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.23.0" ,go-google-golang-org-grpc-1.23.0) -; ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" -; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) -; ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" -; ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2) -; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" -; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) -; ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" -; ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) -; (home-page "https://github.com/envoyproxy/go-control-plane") -; (synopsis "control-plane") -; (description -; "This repository contains a Go-based implementation of an API server that -;implements the discovery service APIs defined in -;@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-grpc-1.25.1 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.25.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0a136ij9p11yj1vx892yqy40jkh7n5nfbpdvhgydcj823mx51c6f")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" -; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-github-com-google-go-cmp-0.2.0" -; ,go-github-com-google-go-cmp-0.2.0) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2) -; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" -; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) -; ("go-github-com-envoyproxy-go-control-plane-0.9.0" -; ,go-github-com-envoyproxy-go-control-plane-0.9.0))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403 -; (package -; (name "go-github-com-cncf-udpa-go") -; (version "0.0.0-20201120205902-5459f2c99403") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/cncf/udpa") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0i3al193dsp91j7iywqrm6fr56y2sz51ci4vf19mb3j4n2x44gsi")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path -; "github.com/cncf/udpa/go" -; #:unpack-path -; "github.com/cncf/udpa")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2) -; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" -; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0))) -; (home-page "https://github.com/cncf/udpa") -; (synopsis "Description") -; (description -; "This library has been deprecated in favor of @code{github.com/cncf/xds/go}. All users are recommended to switch their imports.") -; (license license:asl2.0))) -; -;(define-public go-github-com-stretchr-testify-1.5.1 -; (package -; (name "go-github-com-stretchr-testify") -; (version "1.5.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/testify") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "09r89m1wy4cjv2nps1ykp00qjpi0531r07q3s34hr7m6njk4srkl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/testify")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) -; ("go-github-com-stretchr-objx-0.1.0" -; ,go-github-com-stretchr-objx-0.1.0) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-davecgh-go-spew-1.1.0" -; ,go-github-com-davecgh-go-spew-1.1.0))) -; (home-page "https://github.com/stretchr/testify") -; (synopsis "Testify - Thou Shalt Write Tests") -; (description -; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -;") -; (license license:expat))) -; -;(define-public go-github-com-envoyproxy-go-control-plane-0.9.9-0.20210217033140-668b12f5399d -; (package -; (name "go-github-com-envoyproxy-go-control-plane") -; (version "0.9.9-0.20210217033140-668b12f5399d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/envoyproxy/go-control-plane") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0vmhc8ii081x1k2qw4kji7wjyg6l25zp1y6qxi27wq8m341i4rzb")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.23.0" -; ,go-google-golang-org-protobuf-1.23.0) -; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) -; ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" -; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) -; ("go-github-com-stretchr-testify-1.5.1" -; ,go-github-com-stretchr-testify-1.5.1) -; ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" -; ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.4.2" -; ,go-github-com-golang-protobuf-1.4.2) -; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" -; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) -; ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" -; ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403) -; ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" -; ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) -; (home-page "https://github.com/envoyproxy/go-control-plane") -; (synopsis "control-plane") -; (description -; "This repository contains a Go-based implementation of an API server that -;implements the discovery service APIs defined in -;@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-protobuf-1.23.0 -; (package -; (name "go-google-golang-org-protobuf") -; (version "1.23.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "03yan0m1v0zmlr935p4n24fd376mznsg85zy8sywbgisls4s1bzy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.4.0" -; ,go-github-com-golang-protobuf-1.4.0))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.4.2 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.4.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0m5z81im4nsyfgarjhppayk4hqnrwswr3nix9mj8pff8x9jvcjqw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.23.0" -; ,go-google-golang-org-protobuf-1.23.0) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0))) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-github-com-google-uuid-1.1.2 -; (package -; (name "go-github-com-google-uuid") -; (version "1.1.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/uuid") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1rbpfa0v0ly9sdnixcxhf79swki54ikgm1zkwwkj64p1ws66syqd")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/uuid")) -; (home-page "https://github.com/google/uuid") -; (synopsis "uuid") -; (description "Package uuid generates and inspects UUIDs. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-google-go-cmp-0.5.0 -; (package -; (name "go-github-com-google-go-cmp") -; (version "0.5.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/go-cmp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "04pzp583p6b32y34c6jygfxarff9qjs39rarvfh6467z24sdd9k4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/go-cmp")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" -; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) -; (home-page "https://github.com/google/go-cmp") -; (synopsis "Package for equality of Go values") -; (description -; "This package is intended to be a more powerful and safer alternative to -;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-1.22.0 -; (package -; (name "go-google-golang-org-protobuf") -; (version "1.22.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0n7lc4m7kfvj01glc0gnjy0zsnsic7cxnbvlajy0h14cxbab87pj")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.4.0" -; ,go-github-com-golang-protobuf-1.4.0))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.4.1 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.4.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0w7ks4vffnnkp0miwgc3chrsnmya45lzvpahb2wmw0jwhdp5kdx7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.22.0" -; ,go-google-golang-org-protobuf-1.22.0) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0))) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-github-com-census-instrumentation-opencensus-proto-0.2.1 -; (package -; (name "go-github-com-census-instrumentation-opencensus-proto") -; (version "0.2.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/census-instrumentation/opencensus-proto") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "19fcx3sc99i5dsklny6r073z5j20vlwn2xqm6di1q3b1xwchzqfj")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "github.com/census-instrumentation/opencensus-proto")) -; (home-page "https://github.com/census-instrumentation/opencensus-proto") -; (synopsis -; "OpenCensus Proto - Language Independent Interface Types For OpenCensus") -; (description -; "Census provides a framework to define and collect stats against metrics and to -;break those stats down across user-defined dimensions.") -; (license license:asl2.0))) -; -;(define-public go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4 -; (package -; (name "go-github-com-prometheus-client-model") -; (version "0.0.0-20190812154241-14fe0d1b01d4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/client_model") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0zdmk6rbbx39cvfz0r59v2jg5sg9yd02b4pds5n5llgvivi99550")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/client_model")) -; (propagated-inputs -; `(("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" -; ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0))) -; (home-page "https://github.com/prometheus/client_model") -; (synopsis "Deprecation note") -; (description -; "This repository used to contain the code that defined both -;the data model and the exposition format of Prometheus metrics.") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20190311212946-11955173bddd") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0hlkai67w167wiyivkzd1fgqrnyxkb94l2c6kr51jwcscizfyfn3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3 -; (package -; (name "go-golang-org-x-lint") -; (version "0.0.0-20190313153728-d0100b6bd8b3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/lint") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0b0amr9x4ji66iv9ayfx7zrfx52k1m5g66qfcxkgj80qrb1y2yn7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/lint")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" -; ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd))) -; (home-page "https://golang.org/x/lint") -; (synopsis "Installation") -; (description "Package lint contains a linter for Go source code. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sync-0.0.0-20190423024810-112230192c58 -; (package -; (name "go-golang-org-x-sync") -; (version "0.0.0-20190423024810-112230192c58") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sync") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "05i2k43j2d0llq768hg5pf3hb2yhfzp9la1w5wp0rsnnzblr0lfn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sync")) -; (home-page "https://golang.org/x/sync") -; (synopsis "Go Sync") -; (description -; "This repository provides Go concurrency primitives in addition to the -;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135 -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20190524140312-2c0ae7006135") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1lsi2ssxajclj3bciz2a41v1vjv768ja3v6wnbyhxy8xphwkp4fk")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" -; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-grpc-1.23.0 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.23.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1cn33r2gclmq2v1ndpf1n5bmhf2qs8mms7ii5cnl6f9ch4r2c4k3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" -; ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) -; ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" -; ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) -; ("go-google-golang-org-appengine-1.1.0" -; ,go-google-golang-org-appengine-1.1.0) -; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" -; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-github-com-google-go-cmp-0.2.0" -; ,go-github-com-google-go-cmp-0.2.0) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0) -; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-client9-misspell-0.3.4" -; ,go-github-com-client9-misspell-0.3.4) -; ("go-github-com-burntsushi-toml-0.3.1" -; ,go-github-com-burntsushi-toml-0.3.1) -; ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473 -; (package -; (name "go-github-com-envoyproxy-go-control-plane") -; (version "0.9.1-0.20191026205805-5f8ba28d4473") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/envoyproxy/go-control-plane") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1f1s764rd41vd9vgk3r14h1m6fz6pdvxj6fd83q58gxifbc4q5w4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.23.0" ,go-google-golang-org-grpc-1.23.0) -; ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" -; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) -; ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" -; ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2) -; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" -; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) -; ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" -; ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) -; (home-page "https://github.com/envoyproxy/go-control-plane") -; (synopsis "control-plane") -; (description -; "This repository contains a Go-based implementation of an API server that -;implements the discovery service APIs defined in -;@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") -; (license license:asl2.0))) -; -;(define-public go-github-com-envoyproxy-protoc-gen-validate-0.1.0 -; (package -; (name "go-github-com-envoyproxy-protoc-gen-validate") -; (version "0.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/envoyproxy/protoc-gen-validate") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0kxd3wwh3xwqk0r684hsy281xq4y71cd11d4q2hspcjbnlbwh7cy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/envoyproxy/protoc-gen-validate")) -; (home-page "https://github.com/envoyproxy/protoc-gen-validate") -; (synopsis "protoc-gen-validate (PGV)") -; (description -; "PGV is a protoc plugin to generate polyglot message validators. While protocol buffers effectively guarantee the types of structured data, they cannot enforce semantic rules for values. This plugin adds support to protoc-generated code to validate such constraints.") -; (license license:asl2.0))) -; -;(define-public go-github-com-google-go-cmp-0.2.0 -; (package -; (name "go-github-com-google-go-cmp") -; (version "0.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/go-cmp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1fbv0x27k9sn8svafc0hjwsnckk864lv4yi7bvzrxvmd3d5hskds")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/go-cmp")) -; (home-page "https://github.com/google/go-cmp") -; (synopsis "Package for equality of Go values") -; (description -; "This package is intended to be a more powerful and safer alternative to -;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.3.2 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.3.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1k1wb4zr0qbwgpvz9q5ws9zhlal8hq7dmq62pwxxriksayl6hzym")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4 -; (package -; (name "go-golang-org-x-exp") -; (version "0.0.0-20190121172915-509febef88a4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/exp") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "02isrh39z8znrp5znplzy0dip2gnrl3jm1355raliyvhnhg04j6q")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/exp")) -; (home-page "https://golang.org/x/exp") -; (synopsis "exp") -; (description -; "This subrepository holds experimental and deprecated (in the @code{old} -;directory) packages.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961 -; (package -; (name "go-golang-org-x-lint") -; (version "0.0.0-20190227174305-5b3e6a55c961") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/lint") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "04zp5vbds9nffmjg36wjpi5vg9zmf890yf78xxasai3ni637ivfw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/lint")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" -; ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c))) -; (home-page "https://golang.org/x/lint") -; (synopsis "Installation") -; (description "Package lint contains a linter for Go source code. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20190213061140-3a22650c66bd") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "12q6fgdkc0742vcms67nzadgdwvi3rnb1gx3vwkljhrvlnwvz7wc")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f -; (package -; (name "go-golang-org-x-sync") -; (version "0.0.0-20181108010431-42b317875d0f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sync") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0mrjhk7al7yyh76x9flvxy4jm5jyqh2fxbxagpaazxn1xdgkaif3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sync")) -; (home-page "https://golang.org/x/sync") -; (synopsis "Go Sync") -; (description -; "This repository provides Go concurrency primitives in addition to the -;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20180724234803-3673e40ba225") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0vx7mz18p480p7fh0w5jv6mfdbsswrlac1sz4i705q7q7ygz59lm")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-appengine-1.4.0 -; (package -; (name "go-google-golang-org-appengine") -; (version "1.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/appengine") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "06zl7w4sxgdq2pl94wy9ncii6h0z3szl4xpqds0sv3b3wbdlhbnn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/appengine")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225" -; ,go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0))) -; (home-page "https://google.golang.org/appengine") -; (synopsis "Go App Engine packages") -; (description -; "Package appengine provides basic functionality for Google App Engine. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20190226205152-f727befe758c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0rpcqw6z13qd33rbasg32zb0gdhgh5lzjla63r6g651zf6hpsak0")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-google-golang-org-appengine-1.4.0" -; ,go-google-golang-org-appengine-1.4.0) -; ("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" -; ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) -; ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" -; ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-cloud-google-com-go-0.26.0 -; (package -; (name "go-cloud-google-com-go") -; (version "0.26.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-cloud-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "149v3ci17g6wd2pm18mzcncq5qpl9hwdjnz3rlbn5rfidyn46la1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "cloud.google.com/go")) -; (home-page "https://cloud.google.com/go") -; (synopsis "Google Cloud Client Libraries for Go") -; (description -; "Package cloud is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -;of sub-packages. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-burntsushi-toml-0.3.1 -; (package -; (name "go-github-com-burntsushi-toml") -; (version "0.3.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/BurntSushi/toml") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1fjdwwfzyzllgiwydknf1pwjvy49qxfsczqx5gz3y0izs7as99j6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/BurntSushi/toml")) -; (home-page "https://github.com/BurntSushi/toml") -; (synopsis "TOML parser and encoder for Go with reflection") -; (description -; "Package toml implements decoding and encoding of TOML files. -;") -; (license license:expat))) -; -;(define-public go-github-com-client9-misspell-0.3.4 -; (package -; (name "go-github-com-client9-misspell") -; (version "0.3.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/client9/misspell") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1vwf33wsc4la25zk9nylpbp9px3svlmldkm0bha4hp56jws4q9cs")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/client9/misspell")) -; (home-page "https://github.com/client9/misspell") -; (synopsis "Install") -; (description -; "Package misspell corrects commonly misspelled English words in source files. -;") -; (license license:expat))) -; -;(define-public go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b -; (package -; (name "go-github-com-golang-glog") -; (version "0.0.0-20160126235308-23def4e6c14b") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/glog") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0jb2834rw5sykfr937fxi8hxi2zy80sj2bdn9b3jb4b26ksqng30")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/glog")) -; (home-page "https://github.com/golang/glog") -; (synopsis "glog") -; (description -; "Package glog implements logging analogous to the Google-internal C++ INFO/ERROR/V setup. -;It provides functions Info, Warning, Error, Fatal, plus formatting variants such as -;Infof. It also provides V-style logging controlled by the -v and -vmodule=file=2 flags. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-golang-mock-1.1.1 -; (package -; (name "go-github-com-golang-mock") -; (version "1.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/mock") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ap8wb6pdl6ccmdb43advjll2ly4sz26wsc3axw0hbrjrybybzgy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/mock")) -; (home-page "https://github.com/golang/mock") -; (synopsis "gomock") -; (description -; "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It -;integrates well with Go's built-in @code{testing} package, but can be used in other -;contexts too.") -; (license license:asl2.0))) -; -;(define-public go-github-com-golang-protobuf-1.2.0 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0kf4b59rcbb1cchfny2dm9jyznp8ri2hsb14n8iak1q8986xa0ab")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3 -; (package -; (name "go-golang-org-x-lint") -; (version "0.0.0-20181026193005-c67002cb31c3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/lint") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0gymbggskjmphqxqcx4s0vnlcz7mygbix0vhwcwv5r67c0bf6765")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/lint")) -; (home-page "https://golang.org/x/lint") -; (synopsis "Installation") -; (description "Package lint contains a linter for Go source code. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20180826012351-8a410e7b638d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0hp0l8f6fir5gmgrjq0mhh5ikc0rlrm72774228800kfwqjrxxny")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be -; (package -; (name "go-golang-org-x-oauth2") -; (version "0.0.0-20180821212333-d2e6202438be") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/oauth2") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0wbn75fd10485nb93bm4kqldqifdim5xqy4v7r5sdvimvf3fyhn7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/oauth2")) -; (home-page "https://golang.org/x/oauth2") -; (synopsis "OAuth2 for Go") -; (description -; "Package oauth2 provides support for making -;OAuth2 authorized and authenticated HTTP requests, -;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -;It can additionally grant authorization with Bearer JWT. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f -; (package -; (name "go-golang-org-x-sync") -; (version "0.0.0-20180314180146-1d60e4601c6f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sync") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "046jlanz2lkxq1r57x9bl6s4cvfqaic6p2xybsj8mq1120jv4rs6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sync")) -; (home-page "https://golang.org/x/sync") -; (synopsis "Go Sync") -; (description -; "This repository provides Go concurrency primitives in addition to the -;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20180830151530-49385e6e1522") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0spbldahns09fdxkxflb1x24f8k2awdlnr6k5i7ci4fqd19r1dv4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20190114222345-bf090417da8b") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1n3xp56k4k3lj06rx7587wr5gnwg0148nvwx6ch0g7ar02hh94hw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-appengine-1.1.0 -; (package -; (name "go-google-golang-org-appengine") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/appengine") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1pz202zszg8f35dk5pfhwgcdi3r6dx1l4yk6x6ly7nb4j45zi96x")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/appengine")) -; (home-page "https://google.golang.org/appengine") -; (synopsis "Go App Engine packages") -; (description -; "Package appengine provides basic functionality for Google App Engine. -;") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8 -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20180817151627-c66870c02cf8") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0siq7sv68556ygqi2d2zmvx8l1xjqdc0fylqzci5h1mq2i14bayn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-grpc-1.19.0 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.19.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1znqwpj7ix3dpzx4zch0q70sdl3z5lvbb7v3q4i8sf8kas3yv71v")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" -; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) -; ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" -; ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) -; ("go-google-golang-org-appengine-1.1.0" -; ,go-google-golang-org-appengine-1.1.0) -; ("go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b" -; ,go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b) -; ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522" -; ,go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522) -; ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" -; ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d" -; ,go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d) -; ("go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3" -; ,go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0) -; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-client9-misspell-0.3.4" -; ,go-github-com-client9-misspell-0.3.4) -; ("go-github-com-burntsushi-toml-0.3.1" -; ,go-github-com-burntsushi-toml-0.3.1) -; ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099 -; (package -; (name "go-honnef-co-go-tools") -; (version "0.0.0-20190102054323-c2f93a96b099") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/dominikh/go-tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "07lg29aiap80ca9f201jzng9vjr168cv3qmvjmbd7v5pmww9kmr8")))) -; (build-system go-build-system) -; (arguments '(#:import-path "honnef.co/go/tools")) -; (home-page "https://honnef.co/go/tools") -; (synopsis "Documentation") -; (description -; "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, -;offers simplifications, and enforces style rules.") -; (license license:expat))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55 -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20190819201941-24fa4b261c55") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "109zhaqlfd8zkbr1hk6zqbs6vcxfrk64scjwh2nswph05gr0m84d")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" -; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) -; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) -; ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" -; ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) -; ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" -; ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) -; ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" -; ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-grpc-1.27.0 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.27.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ijrmgrxyabfn51nm3p9l81iaasq5fg237wnr6mdc4dzsfcg8kd7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" -; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-github-com-google-go-cmp-0.2.0" -; ,go-github-com-google-go-cmp-0.2.0) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2) -; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" -; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) -; ("go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473" -; ,go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-google-go-cmp-0.3.0 -; (package -; (name "go-github-com-google-go-cmp") -; (version "0.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/go-cmp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1hyxx3434zshl2m9ja78gwlkg1rx9yl6diqa7dnjb31xz5x4gbjj")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/go-cmp")) -; (home-page "https://github.com/google/go-cmp") -; (synopsis "Package for equality of Go values") -; (description -; "This package is intended to be a more powerful and safer alternative to -;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd -; (package -; (name "go-google-golang-org-protobuf") -; (version "0.0.0-20200109180630-ec00e32a8dfd") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0w6lp9w2avxcpxwzzhspr209ifhyjagvs23k0vykfdqahl1aplrh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.3.0" -; ,go-github-com-google-go-cmp-0.3.0))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.4.0-rc.1 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.4.0-rc.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "186rirvbfgv6hrxp27ipx2cdpv19qifdd20biqfdm01wiyclqimn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd" -; ,go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd) -; ("go-github-com-google-go-cmp-0.3.1" -; ,go-github-com-google-go-cmp-0.3.1))) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-github-com-google-go-cmp-0.3.1 -; (package -; (name "go-github-com-google-go-cmp") -; (version "0.3.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/go-cmp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1caw49i0plkjxir7kdf5qhwls3krqwfmi7g4h392rdfwi3kfahx1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/go-cmp")) -; (home-page "https://github.com/google/go-cmp") -; (synopsis "Package for equality of Go values") -; (description -; "This package is intended to be a more powerful and safer alternative to -;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64 -; (package -; (name "go-google-golang-org-protobuf") -; (version "0.0.0-20200221191635-4d8936d0db64") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0563bsvdjj6k0sgwqd5yzrgfiax7sp3lcwh608gync5sv9fx39cy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.3.1" -; ,go-github-com-google-go-cmp-0.3.1) -; ("go-github-com-golang-protobuf-1.4.0-rc.1" -; ,go-github-com-golang-protobuf-1.4.0-rc.1))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.4.0-rc.1.0.20200221234624-67d41d38c208") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ykxhg3zixmw25pd435f8h16wnz1g00jpcmmg3xl030kksgqgpp6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64" -; ,go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0))) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60 -; (package -; (name "go-google-golang-org-protobuf") -; (version "0.0.0-20200228230310-ab0ca4ff8a60") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1rinspcznfp85yz4vrlf4h38hr576virgv8lcs22bsylqga808sd")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208" -; ,go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.4.0-rc.2 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.4.0-rc.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1hd43hjv5zl6bjbmhm5phx74bw4xajsi73m5zky2k56za4mpgzzc")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60" -; ,go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0))) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967 -; (package -; (name "go-google-golang-org-protobuf") -; (version "1.20.1-0.20200309200217-e05f789c0967") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "17wmy89hnmpkwc63rfcjp50q15s9f1rhmczg06c3z9yy41zk82w9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.4.0-rc.2" -; ,go-github-com-golang-protobuf-1.4.0-rc.2))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.4.0-rc.4.0.20200313231945-b860323f09d0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1zj6cwshx0l5n9cn2cpbikzzb79px5dmkpc4p19zy1iif5r5p0z0")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967" -; ,go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0))) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-1.21.0 -; (package -; (name "go-google-golang-org-protobuf") -; (version "1.21.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "12bwln8z1lf9105gdp6ip0rx741i4yfz1520gxnp8861lh9wcl63")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0" -; ,go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.4.0 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1fjvl5n77abxz5qsd4mgyvjq19x43c5bfvmq62mq3m5plx6zksc8")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.21.0" -; ,go-google-golang-org-protobuf-1.21.0) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0))) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543 -; (package -; (name "go-golang-org-x-xerrors") -; (version "0.0.0-20191204190536-9bdfabe68543") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/xerrors") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1yjfi1bk9xb81lqn85nnm13zz725wazvrx3b50hx19qmwg7a4b0c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/xerrors")) -; (home-page "https://golang.org/x/xerrors") -; (synopsis #f) -; (description -; "Package xerrors implements functions to manipulate errors. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-google-go-cmp-0.4.0 -; (package -; (name "go-github-com-google-go-cmp") -; (version "0.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/go-cmp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1x5pvl3fb5sbyng7i34431xycnhmx8xx94gq2n19g6p0vz68z2v2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/go-cmp")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" -; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) -; (home-page "https://github.com/google/go-cmp") -; (synopsis "Package for equality of Go values") -; (description -; "This package is intended to be a more powerful and safer alternative to -;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc -; (package -; (name "go-google-golang-org-protobuf") -; (version "1.23.1-0.20200526195155-81db48ad09cc") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "02cpr8rqr5wmpj2fqb32mzilsdnxkh52g1jz95a3ck3gzffc7hh1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.4.0" -; ,go-github-com-golang-protobuf-1.4.0))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc -; (package -; (name "go-honnef-co-go-tools") -; (version "0.0.0-20190523083050-ea95bdfd59fc") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/dominikh/go-tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1763nw7pwpzkvzfnm63dgzcgbq9hwmq5l1nffchnhh77vgkaq4ic")))) -; (build-system go-build-system) -; (arguments '(#:import-path "honnef.co/go/tools")) -; (home-page "https://honnef.co/go/tools") -; (synopsis "Documentation") -; (description -; "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, -;offers simplifications, and enforces style rules.") -; (license license:expat))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013 -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20200526211855-cb27e3aa2013") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ml73ghqcwbz7ipfk8fnxb5indcml49b5p7vp1fsyny0abyyrmxf")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" -; ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) -; ("go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc" -; ,go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc) -; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) -; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" -; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-github-com-golang-protobuf-1.4.1" -; ,go-github-com-golang-protobuf-1.4.1))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-protobuf-1.25.0 -; (package -; (name "go-google-golang-org-protobuf") -; (version "1.25.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0apfl42x166dh96zfq5kvv4b4ax9xljik6bq1mnvn2240ir3mc23")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" -; ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) -; ("go-github-com-google-go-cmp-0.5.0" -; ,go-github-com-google-go-cmp-0.5.0) -; ("go-github-com-golang-protobuf-1.4.1" -; ,go-github-com-golang-protobuf-1.4.1))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-grpc-1.38.0 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.38.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "08lgqdvbd0i4qwsv1y37qmf8mhsy9ywzx73ixiwih7xhnalrf7xl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.25.0" -; ,go-google-golang-org-protobuf-1.25.0) -; ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" -; ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) -; ("go-github-com-google-go-cmp-0.5.0" -; ,go-github-com-google-go-cmp-0.5.0) -; ("go-github-com-golang-protobuf-1.4.2" -; ,go-github-com-golang-protobuf-1.4.2) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-envoyproxy-go-control-plane-0.9.9-0.20210217033140-668b12f5399d" -; ,go-github-com-envoyproxy-go-control-plane-0.9.9-0.20210217033140-668b12f5399d) -; ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" -; ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-bketelsen-crypt-0.0.4 -; (package -; (name "go-github-com-bketelsen-crypt") -; (version "0.0.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/bketelsen/crypt") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0fyfcvy73zskd1p1mv0cn03anxkkr5gvlawsc87znqk60hdypq3v")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/bketelsen/crypt")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.38.0" ,go-google-golang-org-grpc-1.38.0) -; ("go-google-golang-org-api-0.44.0" ,go-google-golang-org-api-0.44.0) -; ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" -; ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9) -; ("go-go-etcd-io-etcd-client-v2-2.305.0" -; ,go-go-etcd-io-etcd-client-v2-2.305.0) -; ("go-github-com-hashicorp-consul-api-1.1.0" -; ,go-github-com-hashicorp-consul-api-1.1.0) -; ("go-cloud-google-com-go-firestore-1.1.0" -; ,go-cloud-google-com-go-firestore-1.1.0))) -; (home-page "https://github.com/bketelsen/crypt") -; (synopsis "crypt") -; (description -; "You can use crypt as a command line tool or as a configuration library:") -; (license license:expat))) -; -;(define-public go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20191005200804-aed5e4c7ecf9") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0wsdsbl9n61l99z0cvib2xzg56fsfgky4yc5xapdw9ywx9h0zm3a")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-fsnotify-fsnotify-1.4.9 -; (package -; (name "go-github-com-fsnotify-fsnotify") -; (version "1.4.9") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/fsnotify/fsnotify") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1i1r72knpbfwwql9frn9bqc3nhfc2ai5m6qllcyr6wban62lr40x")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/fsnotify/fsnotify")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9" -; ,go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9))) -; (home-page "https://github.com/fsnotify/fsnotify") -; (synopsis "File system notifications for Go") -; (description -; "Package fsnotify provides a platform-independent interface for file system notifications. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-hashicorp-hcl-1.0.0 -; (package -; (name "go-github-com-hashicorp-hcl") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/hcl") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0q6ml0qqs0yil76mpn4mdx4lp94id8vbv575qm60jzl1ijcl5i66")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hashicorp/hcl")) -; (propagated-inputs -; `(("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://github.com/hashicorp/hcl") -; (synopsis "HCL") -; (description "Package hcl decodes HCL into usable Go structures. -;") -; (license license:mpl2.0))) -; -;(define-public go-github-com-magiconair-properties-1.8.5 -; (package -; (name "go-github-com-magiconair-properties") -; (version "1.8.5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/magiconair/properties") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0v4agnkhc30fblbmhs0gq2bikhdnnmqmpp4phrnza68m04j5hxbn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/magiconair/properties")) -; (home-page "https://github.com/magiconair/properties") -; (synopsis "Overview") -; (description -; "Package properties provides functions for reading and writing -;ISO-8859-1 and UTF-8 encoded .properties files and has -;support for recursive property expansion. -;") -; (license license:bsd-2))) -; -;(define-public go-github-com-mitchellh-mapstructure-1.4.1 -; (package -; (name "go-github-com-mitchellh-mapstructure") -; (version "1.4.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mitchellh/mapstructure") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1m98wiadb6kdnzv21m8p7nk1jb30zpjh47fkb1dg251r3m7bj47v")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mitchellh/mapstructure")) -; (home-page "https://github.com/mitchellh/mapstructure") -; (synopsis "mapstructure") -; (description -; "Package mapstructure exposes functionality to convert one arbitrary -;Go type into another, typically to convert a map[string]interface{} -;into a native Go structure. -;") -; (license license:expat))) -; -;(define-public go-github-com-pelletier-go-toml-1.9.3 -; (package -; (name "go-github-com-pelletier-go-toml") -; (version "1.9.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/pelletier/go-toml") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0cqwnvlgs1wgdgjxlwv8j52f7d6syniadr51sjh2fya99m5wzvsn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/pelletier/go-toml")) -; (home-page "https://github.com/pelletier/go-toml") -; (synopsis "go-toml") -; (description "Package toml is a TOML parser and manipulation library. -;") -; (license #f))) -; -;(define-public go-github-com-gopherjs-gopherjs-0.0.0-20181017120253-0766667cb4d1 -; (package -; (name "go-github-com-gopherjs-gopherjs") -; (version "0.0.0-20181017120253-0766667cb4d1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/gopherjs/gopherjs") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "13pfc9sxiwjky2lm1xb3i3lcisn8p6mgjk2d927l7r92ysph8dmw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/gopherjs/gopherjs")) -; (home-page "https://github.com/gopherjs/gopherjs") -; (synopsis "GopherJS - A compiler from Go to JavaScript") -; (description -; "GopherJS compiles Go code (@url{https://golang.org/,golang.org}) to pure JavaScript code. Its main purpose is to give you the opportunity to write front-end code in Go which will still run in all browsers.") -; (license license:bsd-2))) -; -;(define-public go-github-com-jtolds-gls-4.20.0+incompatible -; (package -; (name "go-github-com-jtolds-gls") -; (version "4.20.0+incompatible") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/jtolio/gls") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1k7xd2q2ysv2xsh373qs801v6f359240kx0vrl0ydh7731lngvk6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/jtolds/gls")) -; (home-page "https://github.com/jtolds/gls") -; (synopsis "gls") -; (description "Package gls implements goroutine-local storage. -;") -; (license license:expat))) -; -;(define-public go-github-com-smartystreets-assertions-0.0.0-20180927180507-b2de0cb4f26d -; (package -; (name "go-github-com-smartystreets-assertions") -; (version "0.0.0-20180927180507-b2de0cb4f26d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/smartystreets/assertions") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1i7ldgavgl35c7gk25p7bvdr282ckng090zr4ch9mk1705akx09y")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/smartystreets/assertions")) -; (home-page "https://github.com/smartystreets/assertions") -; (synopsis #f) -; (description -; "Package assertions contains the implementations for all assertions which -;are referenced in goconvey's `convey` package -;(github.com/smartystreets/goconvey/convey) and gunit (github.com/smartystreets/gunit) -;for use with the So(...) method. -;They can also be used in traditional Go test functions and even in -;applications. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-net-0.0.0-20190311183353-d8887717615a -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20190311183353-d8887717615a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1wfm6ngxjyj7v5a2dqib6lw8bb2rdnf1kl48diykxjrsddn0s163")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20190328211700-ab21143f2384 -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20190328211700-ab21143f2384") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "15fk0psk53pplpyghz55bhay0kvsv5rikmn5hwgjnnyxq9vfy178")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-github-com-smartystreets-goconvey-1.6.4 -; (package -; (name "go-github-com-smartystreets-goconvey") -; (version "1.6.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/smartystreets/goconvey") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "07zjxwszayal88z1j2bwnqrsa32vg8l4nivks5yfr9j8xfsw7n6m")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/smartystreets/goconvey")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20190328211700-ab21143f2384" -; ,go-golang-org-x-tools-0.0.0-20190328211700-ab21143f2384) -; ("go-github-com-smartystreets-assertions-0.0.0-20180927180507-b2de0cb4f26d" -; ,go-github-com-smartystreets-assertions-0.0.0-20180927180507-b2de0cb4f26d) -; ("go-github-com-jtolds-gls-4.20.0+incompatible" -; ,go-github-com-jtolds-gls-4.20.0+incompatible) -; ("go-github-com-gopherjs-gopherjs-0.0.0-20181017120253-0766667cb4d1" -; ,go-github-com-gopherjs-gopherjs-0.0.0-20181017120253-0766667cb4d1))) -; (home-page "https://github.com/smartystreets/goconvey") -; (synopsis "GoConvey is awesome Go testing") -; (description -; "This executable provides an HTTP server that watches for file system changes -;to .go files within the working directory (and all nested go packages). -;Navigating to the configured host and port in a web browser will display the -;latest results of running `go test` in each go package. -;") -; (license license:expat))) -; -;(define-public go-github-com-kr-fs-0.1.0 -; (package -; (name "go-github-com-kr-fs") -; (version "0.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kr/fs") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "11zg176x9hr9q7fsk95r6q0wf214gg4czy02slax4x56n79g6a7q")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kr/fs")) -; (home-page "https://github.com/kr/fs") -; (synopsis #f) -; (description "Package fs provides filesystem-related functions. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-pkg-errors-0.8.1 -; (package -; (name "go-github-com-pkg-errors") -; (version "0.8.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/pkg/errors") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0g5qcb4d4fd96midz0zdk8b9kz8xkzwfa8kr1cliqbg8sxsy5vd1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/pkg/errors")) -; (home-page "https://github.com/pkg/errors") -; (synopsis "errors") -; (description "Package errors provides simple error handling primitives. -;") -; (license license:bsd-2))) -; -;(define-public go-gopkg-in-yaml-v2-2.2.2 -; (package -; (name "go-gopkg-in-yaml-v2") -; (version "2.2.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/yaml.v2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "01wj12jzsdqlnidpyjssmj0r4yavlqy7dwrg7adqd8dicjc4ncsa")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" -; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) -; (home-page "https://gopkg.in/yaml.v2") -; (synopsis "YAML support for the Go language") -; (description "Package yaml implements YAML support for the Go language. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-stretchr-testify-1.4.0 -; (package -; (name "go-github-com-stretchr-testify") -; (version "1.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/testify") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "187i5g88sxfy4vxpm7dw1gwv29pa2qaq475lxrdh5livh69wqfjb")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/testify")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) -; ("go-github-com-stretchr-objx-0.1.0" -; ,go-github-com-stretchr-objx-0.1.0) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-davecgh-go-spew-1.1.0" -; ,go-github-com-davecgh-go-spew-1.1.0))) -; (home-page "https://github.com/stretchr/testify") -; (synopsis "Testify - Thou Shalt Write Tests") -; (description -; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -;") -; (license license:expat))) -; -;(define-public go-github-com-pkg-sftp-1.10.1 -; (package -; (name "go-github-com-pkg-sftp") -; (version "1.10.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/pkg/sftp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0iw6lijdljwh5xw5hsy0b578cr52h6vvm7hbnzlrvciwhh4sfhhp")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/pkg/sftp")) -; (propagated-inputs -; `(("go-golang-org-x-crypto-0.0.0-20190820162420-60c769a6c586" -; ,go-golang-org-x-crypto-0.0.0-20190820162420-60c769a6c586) -; ("go-github-com-stretchr-testify-1.4.0" -; ,go-github-com-stretchr-testify-1.4.0) -; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) -; ("go-github-com-kr-fs-0.1.0" ,go-github-com-kr-fs-0.1.0))) -; (home-page "https://github.com/pkg/sftp") -; (synopsis "sftp") -; (description -; "Package sftp implements the SSH File Transfer Protocol as described in -;@url{https://tools.ietf.org/html/draft-ietf-secsh-filexfer-02,https://tools.ietf.org/html/draft-ietf-secsh-filexfer-02} -;") -; (license license:bsd-2))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190215142949-d0b11bdaac8a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20190308221718-c2843e01d9a2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-text-0.3.0 -; (package -; (name "go-golang-org-x-text") -; (version "0.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/text") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/text")) -; (home-page "https://golang.org/x/text") -; (synopsis "Go Text") -; (description -; "text is a repository of text-related packages related to internationalization -;(i18n) and localization (l10n), such as character encodings, text -;transformations, and locale-specific text handling. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20190404232315-eb5bcb51f2a3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "17k4g8krxbl84gzcs275b7gsh66dzm15fdxivjnx9xz8q84l4kby")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190412213103-97732733099d -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190412213103-97732733099d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "118hkp01i4z1f5h6hcjm0ff2ngqhrzj1f7731n0kw8dr6hvbx0sw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20190820162420-60c769a6c586 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20190820162420-60c769a6c586") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1wy2pg38dz29vf1h48yfqf8m3jqvwnbdw8vkk3ldlj5d8fbbbmv8")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" -; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) -; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" -; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20180917221912-90fa682c2a6e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-text-0.3.3 -; (package -; (name "go-golang-org-x-text") -; (version "0.3.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/text") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "19pihqm3phyndmiw6i42pdv6z1rbvlqlsnhsyqf9gsnn0qnmqqlh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/text")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" -; ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) -; (home-page "https://golang.org/x/text") -; (synopsis "Go Text") -; (description -; "text is a repository of text-related packages related to internationalization -;(i18n) and localization (l10n), such as character encodings, text -;transformations, and locale-specific text handling. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-spf13-afero-1.6.0 -; (package -; (name "go-github-com-spf13-afero") -; (version "1.6.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/spf13/afero") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0yi8p0yxiidpcg4cagxg2iyqcaapsng89rak4qyxmgails2fqg37")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/spf13/afero")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) -; ("go-golang-org-x-crypto-0.0.0-20190820162420-60c769a6c586" -; ,go-golang-org-x-crypto-0.0.0-20190820162420-60c769a6c586) -; ("go-github-com-pkg-sftp-1.10.1" ,go-github-com-pkg-sftp-1.10.1))) -; (home-page "https://github.com/spf13/afero") -; (synopsis "Overview") -; (description -; "This package provides a FileSystem Abstraction System for Go") -; (license license:asl2.0))) -; -;(define-public go-github-com-spf13-cast-1.3.1 -; (package -; (name "go-github-com-spf13-cast") -; (version "1.3.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/spf13/cast") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0lb84788glr0qzrq2ifi36rgvp96qrgywvxrr3ggq5hrbr38hgn1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/spf13/cast")) -; (propagated-inputs -; `(("go-github-com-stretchr-testify-1.2.2" -; ,go-github-com-stretchr-testify-1.2.2) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://github.com/spf13/cast") -; (synopsis "cast") -; (description "Package cast provides easy and safe casting in Go. -;") -; (license license:expat))) -; -;(define-public go-github-com-davecgh-go-spew-1.1.1 -; (package -; (name "go-github-com-davecgh-go-spew") -; (version "1.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/davecgh/go-spew") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/davecgh/go-spew")) -; (home-page "https://github.com/davecgh/go-spew") -; (synopsis "go-spew") -; (description -; "Go-spew implements a deep pretty printer for Go data structures to aid in -;debugging. A comprehensive suite of tests with 100% test coverage is provided -;to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage -;report. Go-spew is licensed under the liberal ISC license, so it may be used in -;open source or commercial projects.") -; (license license:isc))) -; -;(define-public go-github-com-stretchr-testify-1.2.2 -; (package -; (name "go-github-com-stretchr-testify") -; (version "1.2.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/testify") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0dlszlshlxbmmfxj5hlwgv3r22x0y1af45gn1vd198nvvs3pnvfs")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/testify")) -; (home-page "https://github.com/stretchr/testify") -; (synopsis "Testify - Thou Shalt Write Tests") -; (description -; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -;") -; (license license:expat))) -; -;(define-public go-github-com-spf13-jwalterweatherman-1.1.0 -; (package -; (name "go-github-com-spf13-jwalterweatherman") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/spf13/jwalterweatherman") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ywmkwci5zyd88ijym6f30fj5c0k2yayxarkmnazf5ybljv50q7b")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/spf13/jwalterweatherman")) -; (propagated-inputs -; `(("go-github-com-stretchr-testify-1.2.2" -; ,go-github-com-stretchr-testify-1.2.2) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://github.com/spf13/jwalterweatherman") -; (synopsis "jWalterWeatherman") -; (description -; "Seamless printing to the terminal (stdout) and logging to a io.Writer -;(file) thatâ\x80\x99s as easy to use as fmt.Println.") -; (license license:expat))) -; -;(define-public go-github-com-spf13-pflag-1.0.5 -; (package -; (name "go-github-com-spf13-pflag") -; (version "1.0.5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/spf13/pflag") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0gpmacngd0gpslnbkzi263f5ishigzgh6pbdv9hp092rnjl4nd31")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/spf13/pflag")) -; (home-page "https://github.com/spf13/pflag") -; (synopsis "Description") -; (description -; "Package pflag is a drop-in replacement for Go's flag package, implementing -;POSIX/GNU-style --flags. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-davecgh-go-spew-1.1.0 -; (package -; (name "go-github-com-davecgh-go-spew") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/davecgh/go-spew") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/davecgh/go-spew")) -; (home-page "https://github.com/davecgh/go-spew") -; (synopsis "go-spew") -; (description -; "Go-spew implements a deep pretty printer for Go data structures to aid in -;debugging. A comprehensive suite of tests with 100% test coverage is provided -;to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage -;report. Go-spew is licensed under the liberal ISC license, so it may be used in -;open source or commercial projects.") -; (license license:isc))) -; -;(define-public go-github-com-pmezard-go-difflib-1.0.0 -; (package -; (name "go-github-com-pmezard-go-difflib") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/pmezard/go-difflib") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/pmezard/go-difflib")) -; (home-page "https://github.com/pmezard/go-difflib") -; (synopsis "go-difflib") -; (description -; "Go-difflib is a partial port of python 3 difflib package. Its main goal -;was to make unified and context diff available in pure Go, mostly for -;testing purposes.") -; (license license:bsd-3))) -; -;(define-public go-github-com-stretchr-objx-0.1.0 -; (package -; (name "go-github-com-stretchr-objx") -; (version "0.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/objx") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/objx")) -; (home-page "https://github.com/stretchr/objx") -; (synopsis "Objx") -; (description -; "Objx - Go package for dealing with maps, slices, JSON and other data. -;") -; (license license:expat))) -; -;(define-public go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c -; (package -; (name "go-gopkg-in-yaml-v3") -; (version "3.0.0-20200313102051-9f266ea9e77c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/yaml.v3") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1bbai3lzb50m0x2vwsdbagrbhvfylj9k1m32hgbqwldqx4p9ay35")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" -; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) -; (home-page "https://gopkg.in/yaml.v3") -; (synopsis "YAML support for the Go language") -; (description "Package yaml implements YAML support for the Go language. -;") -; (license #f))) -; -;(define-public go-github-com-stretchr-testify-1.7.0 -; (package -; (name "go-github-com-stretchr-testify") -; (version "1.7.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/testify") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ixgjsvafr3513pz3r6pmgk074s2dxkll0dadvl25gkf30rkmh10")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/testify")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" -; ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) -; ("go-github-com-stretchr-objx-0.1.0" -; ,go-github-com-stretchr-objx-0.1.0) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-davecgh-go-spew-1.1.0" -; ,go-github-com-davecgh-go-spew-1.1.0))) -; (home-page "https://github.com/stretchr/testify") -; (synopsis "Testify - Thou Shalt Write Tests") -; (description -; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -;") -; (license license:expat))) -; -;(define-public go-github-com-subosito-gotenv-1.2.0 -; (package -; (name "go-github-com-subosito-gotenv") -; (version "1.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/subosito/gotenv") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0mav91j7r4arjkpq5zcf9j74f6pww8ic53x43wy7kg3ibw31yjs5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/subosito/gotenv")) -; (home-page "https://github.com/subosito/gotenv") -; (synopsis "gotenv") -; (description -; "Package gotenv provides functionality to dynamically load the environment variables -;") -; (license license:expat))) -; -;(define-public go-gopkg-in-ini-v1-1.62.0 -; (package -; (name "go-gopkg-in-ini-v1") -; (version "1.62.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/ini.v1") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1dm9ydqyflasp5li22kb0w73s6kp2swii8naqfhnz64v171gmm5v")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/ini.v1" #:unpack-path "gopkg.in/ini.v1")) -; (home-page "https://gopkg.in/ini.v1") -; (synopsis "INI") -; (description -; "Package ini provides INI file read and write functionality in Go. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-spf13-viper-1.8.1 -; (package -; (name "go-github-com-spf13-viper") -; (version "1.8.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/spf13/viper") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0jcsvd9l05pv10rma6zicp44q2mlvxj0qlhnf4zcg2pymb5i0hq6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/spf13/viper")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) -; ("go-gopkg-in-ini-v1-1.62.0" ,go-gopkg-in-ini-v1-1.62.0) -; ("go-github-com-subosito-gotenv-1.2.0" -; ,go-github-com-subosito-gotenv-1.2.0) -; ("go-github-com-stretchr-testify-1.7.0" -; ,go-github-com-stretchr-testify-1.7.0) -; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) -; ("go-github-com-spf13-jwalterweatherman-1.1.0" -; ,go-github-com-spf13-jwalterweatherman-1.1.0) -; ("go-github-com-spf13-cast-1.3.1" ,go-github-com-spf13-cast-1.3.1) -; ("go-github-com-spf13-afero-1.6.0" ,go-github-com-spf13-afero-1.6.0) -; ("go-github-com-smartystreets-goconvey-1.6.4" -; ,go-github-com-smartystreets-goconvey-1.6.4) -; ("go-github-com-pelletier-go-toml-1.9.3" -; ,go-github-com-pelletier-go-toml-1.9.3) -; ("go-github-com-mitchellh-mapstructure-1.4.1" -; ,go-github-com-mitchellh-mapstructure-1.4.1) -; ("go-github-com-magiconair-properties-1.8.5" -; ,go-github-com-magiconair-properties-1.8.5) -; ("go-github-com-hashicorp-hcl-1.0.0" -; ,go-github-com-hashicorp-hcl-1.0.0) -; ("go-github-com-fsnotify-fsnotify-1.4.9" -; ,go-github-com-fsnotify-fsnotify-1.4.9) -; ("go-github-com-bketelsen-crypt-0.0.4" -; ,go-github-com-bketelsen-crypt-0.0.4))) -; (home-page "https://github.com/spf13/viper") -; (synopsis "Install") -; (description "Many Go projects are built using Viper including:") -; (license license:expat))) -; -;(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 -; (package -; (name "go-gopkg-in-check-v1") -; (version "0.0.0-20161208181325-20d25e280405") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/check.v1") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) -; (home-page "https://gopkg.in/check.v1") -; (synopsis "Instructions") -; (description -; "Package check is a rich testing extension for Go's testing package. -;") -; (license license:bsd-2))) -; -;(define-public go-gopkg-in-yaml-v2-2.4.0 -; (package -; (name "go-gopkg-in-yaml-v2") -; (version "2.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/yaml.v2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1pbmrpj7gcws34g8vwna4i2nhm9p6235piww36436xhyaa10cldr")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" -; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) -; (home-page "https://gopkg.in/yaml.v2") -; (synopsis "YAML support for the Go language") -; (description "Package yaml implements YAML support for the Go language. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-spf13-cobra-1.2.1 -; (package -; (name "go-github-com-spf13-cobra") -; (version "1.2.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/spf13/cobra") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "091kz3xnlsgpqb90fc5nhjr4yfr8b8sjnyl0zd4wm1fgzkpw09jh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/spf13/cobra")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) -; ("go-github-com-spf13-viper-1.8.1" ,go-github-com-spf13-viper-1.8.1) -; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) -; ("go-github-com-inconshreveable-mousetrap-1.0.0" -; ,go-github-com-inconshreveable-mousetrap-1.0.0) -; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" -; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0))) -; (home-page "https://github.com/spf13/cobra") -; (synopsis "Table of Contents") -; (description -; "Package cobra is a commander providing a simple interface to create powerful modern CLI interfaces. -;In addition to providing an interface, Cobra simultaneously provides a controller to organize your application code. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-spf13-pflag-1.0.5 -; (package -; (name "go-github-com-spf13-pflag") -; (version "1.0.5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/spf13/pflag") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0gpmacngd0gpslnbkzi263f5ishigzgh6pbdv9hp092rnjl4nd31")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/spf13/pflag")) -; (home-page "https://github.com/spf13/pflag") -; (synopsis "Description") -; (description -; "Package pflag is a drop-in replacement for Go's flag package, implementing -;POSIX/GNU-style --flags. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-sylabs-json-resp-0.8.0 -; (package -; (name "go-github-com-sylabs-json-resp") -; (version "0.8.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/sylabs/json-resp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ygr4mavaj1pp78hkkphhn3ydd923n3klwnx8x7v4ajqzx4cx4id")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/sylabs/json-resp")) -; (home-page "https://github.com/sylabs/json-resp") -; (synopsis "JSON Response") -; (description -; "The @code{json-resp} package contains a small set of functions that are used to marshall and unmarshall response data and errors in JSON format.") -; (license license:bsd-3))) -; -;(define-public go-github-com-go-log-log-0.2.0 -; (package -; (name "go-github-com-go-log-log") -; (version "0.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/go-log/log") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1idnqv4yvkmdh3wcsgvhcpak9z6ix8dsifdjq5kfbbnskdq5rmvg")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/go-log/log")) -; (home-page "https://github.com/go-log/log") -; (synopsis "Log") -; (description "Package log provides a log interface -;") -; (license license:expat))) -; -;(define-public go-github-com-gorilla-websocket-1.4.2 -; (package -; (name "go-github-com-gorilla-websocket") -; (version "1.4.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/gorilla/websocket") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0mkm9w6kjkrlzab5wh8p4qxkc0icqawjbvr01d2nk6ykylrln40s")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/gorilla/websocket")) -; (home-page "https://github.com/gorilla/websocket") -; (synopsis "Gorilla WebSocket") -; (description -; "Package websocket implements the WebSocket protocol defined in @url{https://rfc-editor.org/rfc/rfc6455.html,RFC 6455}. -;") -; (license license:bsd-2))) -; -;(define-public go-github-com-sylabs-json-resp-0.8.0 -; (package -; (name "go-github-com-sylabs-json-resp") -; (version "0.8.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/sylabs/json-resp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ygr4mavaj1pp78hkkphhn3ydd923n3klwnx8x7v4ajqzx4cx4id")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/sylabs/json-resp")) -; (home-page "https://github.com/sylabs/json-resp") -; (synopsis "JSON Response") -; (description -; "The @code{json-resp} package contains a small set of functions that are used to marshall and unmarshall response data and errors in JSON format.") -; (license license:bsd-3))) -; -;(define-public go-github-com-sylabs-scs-build-client-0.2.1 -; (package -; (name "go-github-com-sylabs-scs-build-client") -; (version "0.2.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/sylabs/scs-build-client") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1brn8w73978hvgrzqm0lsxflb5vp7g5b32bmgfb1diymd2ajlqhv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/sylabs/scs-build-client")) -; (propagated-inputs -; `(("go-github-com-sylabs-json-resp-0.8.0" -; ,go-github-com-sylabs-json-resp-0.8.0) -; ("go-github-com-gorilla-websocket-1.4.2" -; ,go-github-com-gorilla-websocket-1.4.2) -; ("go-github-com-go-log-log-0.2.0" ,go-github-com-go-log-log-0.2.0))) -; (home-page "https://github.com/sylabs/scs-build-client") -; (synopsis "SCS Build Client") -; (description -; "This project provides a Go client for the Singularity Container Services (SCS) Build Service.") -; (license license:bsd-3))) -; -;(define-public go-github-com-sylabs-json-resp-0.7.1 -; (package -; (name "go-github-com-sylabs-json-resp") -; (version "0.7.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/sylabs/json-resp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1fj07wgc9s8xmy04hdgmb87r4fl968y6kxgxyh0lx3b1mf9xa2dw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/sylabs/json-resp")) -; (home-page "https://github.com/sylabs/json-resp") -; (synopsis "JSON Response") -; (description -; "The @code{json-resp} package contains a small set of functions that are used to marshall and unmarshall response data and errors in JSON format.") -; (license license:bsd-3))) -; -;(define-public go-github-com-sylabs-scs-key-client-0.6.2 -; (package -; (name "go-github-com-sylabs-scs-key-client") -; (version "0.6.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/sylabs/scs-key-client") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "18giffs0ybfr5zw64xlqf9isr3apgh2r3s2fwf0n8d7n21yjg151")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/sylabs/scs-key-client")) -; (propagated-inputs -; `(("go-github-com-sylabs-json-resp-0.7.1" -; ,go-github-com-sylabs-json-resp-0.7.1))) -; (home-page "https://github.com/sylabs/scs-key-client") -; (synopsis "SCS Key Client") -; (description -; "This project provides a Go client for the Singularity Container Services (SCS) Key Service.") -; (license license:bsd-3))) -; -;(define-public go-github-com-blang-semver-v4-4.0.0 -; (package -; (name "go-github-com-blang-semver-v4") -; (version "4.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/blang/semver") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "14h9ys4n4kx9cbj42lkdf4i5k3nkll6sd62jcvl7cs565v6fiknz")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/blang/semver/v4")) -; (home-page "https://github.com/blang/semver") -; (synopsis #f) -; (description #f) -; (license license:expat))) -; -;(define-public go-github-com-go-log-log-0.2.0 -; (package -; (name "go-github-com-go-log-log") -; (version "0.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/go-log/log") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1idnqv4yvkmdh3wcsgvhcpak9z6ix8dsifdjq5kfbbnskdq5rmvg")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/go-log/log")) -; (home-page "https://github.com/go-log/log") -; (synopsis "Log") -; (description "Package log provides a log interface -;") -; (license license:expat))) -; -;(define-public go-github-com-davecgh-go-spew-1.1.0 -; (package -; (name "go-github-com-davecgh-go-spew") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/davecgh/go-spew") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/davecgh/go-spew")) -; (home-page "https://github.com/davecgh/go-spew") -; (synopsis "go-spew") -; (description -; "Go-spew implements a deep pretty printer for Go data structures to aid in -;debugging. A comprehensive suite of tests with 100% test coverage is provided -;to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage -;report. Go-spew is licensed under the liberal ISC license, so it may be used in -;open source or commercial projects.") -; (license license:isc))) -; -;(define-public go-github-com-pmezard-go-difflib-1.0.0 -; (package -; (name "go-github-com-pmezard-go-difflib") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/pmezard/go-difflib") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/pmezard/go-difflib")) -; (home-page "https://github.com/pmezard/go-difflib") -; (synopsis "go-difflib") -; (description -; "Go-difflib is a partial port of python 3 difflib package. Its main goal -;was to make unified and context diff available in pure Go, mostly for -;testing purposes.") -; (license license:bsd-3))) -; -;(define-public go-github-com-stretchr-objx-0.1.0 -; (package -; (name "go-github-com-stretchr-objx") -; (version "0.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/objx") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/objx")) -; (home-page "https://github.com/stretchr/objx") -; (synopsis "Objx") -; (description -; "Objx - Go package for dealing with maps, slices, JSON and other data. -;") -; (license license:expat))) -; -;(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 -; (package -; (name "go-gopkg-in-check-v1") -; (version "0.0.0-20161208181325-20d25e280405") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/check.v1") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) -; (home-page "https://gopkg.in/check.v1") -; (synopsis "Instructions") -; (description -; "Package check is a rich testing extension for Go's testing package. -;") -; (license license:bsd-2))) -; -;(define-public go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c -; (package -; (name "go-gopkg-in-yaml-v3") -; (version "3.0.0-20200313102051-9f266ea9e77c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/yaml.v3") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1bbai3lzb50m0x2vwsdbagrbhvfylj9k1m32hgbqwldqx4p9ay35")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" -; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) -; (home-page "https://gopkg.in/yaml.v3") -; (synopsis "YAML support for the Go language") -; (description "Package yaml implements YAML support for the Go language. -;") -; (license #f))) -; -;(define-public go-github-com-stretchr-testify-1.7.0 -; (package -; (name "go-github-com-stretchr-testify") -; (version "1.7.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/testify") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ixgjsvafr3513pz3r6pmgk074s2dxkll0dadvl25gkf30rkmh10")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/testify")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" -; ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) -; ("go-github-com-stretchr-objx-0.1.0" -; ,go-github-com-stretchr-objx-0.1.0) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-davecgh-go-spew-1.1.0" -; ,go-github-com-davecgh-go-spew-1.1.0))) -; (home-page "https://github.com/stretchr/testify") -; (synopsis "Testify - Thou Shalt Write Tests") -; (description -; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -;") -; (license license:expat))) -; -;(define-public go-github-com-sylabs-json-resp-0.7.1 -; (package -; (name "go-github-com-sylabs-json-resp") -; (version "0.7.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/sylabs/json-resp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1fj07wgc9s8xmy04hdgmb87r4fl968y6kxgxyh0lx3b1mf9xa2dw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/sylabs/json-resp")) -; (home-page "https://github.com/sylabs/json-resp") -; (synopsis "JSON Response") -; (description -; "The @code{json-resp} package contains a small set of functions that are used to marshall and unmarshall response data and errors in JSON format.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a -; (package -; (name "go-golang-org-x-sync") -; (version "0.0.0-20200317015054-43a5402ce75a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sync") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0j6zrrb81qjr1926kkwmn0di9a0jn8qyjd9dw614rfkihxgq1vsm")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sync")) -; (home-page "https://golang.org/x/sync") -; (synopsis "Go Sync") -; (description -; "This repository provides Go concurrency primitives in addition to the -;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") -; (license license:bsd-3))) -; -;(define-public go-github-com-sylabs-scs-library-client-1.0.5 -; (package -; (name "go-github-com-sylabs-scs-library-client") -; (version "1.0.5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/sylabs/scs-library-client") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1dr8x33gaqm7a6q2hha2v2dyqlnhjig9kmmgarrr0a16z2rpdv0l")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/sylabs/scs-library-client")) -; (propagated-inputs -; `(("go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a" -; ,go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a) -; ("go-github-com-sylabs-json-resp-0.7.1" -; ,go-github-com-sylabs-json-resp-0.7.1) -; ("go-github-com-stretchr-testify-1.7.0" -; ,go-github-com-stretchr-testify-1.7.0) -; ("go-github-com-go-log-log-0.2.0" ,go-github-com-go-log-log-0.2.0) -; ("go-github-com-blang-semver-v4-4.0.0" -; ,go-github-com-blang-semver-v4-4.0.0))) -; (home-page "https://github.com/sylabs/scs-library-client") -; (synopsis "SCS Library Client") -; (description -; "This project provides a Go client for the Singularity Container Services (SCS) Library Service.") -; (license license:bsd-3))) -; -;(define-public go-github-com-burntsushi-toml-0.3.1 -; (package -; (name "go-github-com-burntsushi-toml") -; (version "0.3.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/BurntSushi/toml") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1fjdwwfzyzllgiwydknf1pwjvy49qxfsczqx5gz3y0izs7as99j6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/BurntSushi/toml")) -; (home-page "https://github.com/BurntSushi/toml") -; (synopsis "TOML parser and encoder for Go with reflection") -; (description -; "Package toml implements decoding and encoding of TOML files. -;") -; (license license:expat))) -; -;(define-public go-github-com-pmezard-go-difflib-1.0.0 -; (package -; (name "go-github-com-pmezard-go-difflib") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/pmezard/go-difflib") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/pmezard/go-difflib")) -; (home-page "https://github.com/pmezard/go-difflib") -; (synopsis "go-difflib") -; (description -; "Go-difflib is a partial port of python 3 difflib package. Its main goal -;was to make unified and context diff available in pure Go, mostly for -;testing purposes.") -; (license license:bsd-3))) -; -;(define-public go-github-com-russross-blackfriday-v2-2.0.1 -; (package -; (name "go-github-com-russross-blackfriday-v2") -; (version "2.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/russross/blackfriday") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0nlz7isdd4rgnwzs68499hlwicxz34j2k2a0b8jy0y7ycd2bcr5j")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/russross/blackfriday/v2")) -; (home-page "https://github.com/russross/blackfriday") -; (synopsis "Blackfriday") -; (description "Package blackfriday is a markdown processor. -;") -; (license license:bsd-2))) -; -;(define-public go-github-com-shurcool-sanitized-anchor-name-1.0.0 -; (package -; (name "go-github-com-shurcool-sanitized-anchor-name") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/shurcooL/sanitized_anchor_name") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1gv9p2nr46z80dnfjsklc6zxbgk96349sdsxjz05f3z6wb6m5l8f")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/shurcooL/sanitized_anchor_name")) -; (home-page "https://github.com/shurcooL/sanitized_anchor_name") -; (synopsis "sanitized_anchor_name") -; (description -; "Package sanitized_anchor_name provides a func to create sanitized anchor names. -;") -; (license license:expat))) -; -;(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d -; (package -; (name "go-github-com-cpuguy83-go-md2man-v2") -; (version "2.0.0-20190314233015-f79a8a8ca69d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/cpuguy83/go-md2man") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) -; (propagated-inputs -; `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" -; ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) -; ("go-github-com-russross-blackfriday-v2-2.0.1" -; ,go-github-com-russross-blackfriday-v2-2.0.1) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0))) -; (home-page "https://github.com/cpuguy83/go-md2man") -; (synopsis "go-md2man") -; (description "Converts markdown into roff (man pages).") -; (license license:expat))) -; -;(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 -; (package -; (name "go-gopkg-in-check-v1") -; (version "0.0.0-20161208181325-20d25e280405") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/check.v1") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) -; (home-page "https://gopkg.in/check.v1") -; (synopsis "Instructions") -; (description -; "Package check is a rich testing extension for Go's testing package. -;") -; (license license:bsd-2))) -; -;(define-public go-gopkg-in-yaml-v2-2.2.2 -; (package -; (name "go-gopkg-in-yaml-v2") -; (version "2.2.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/yaml.v2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "01wj12jzsdqlnidpyjssmj0r4yavlqy7dwrg7adqd8dicjc4ncsa")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" -; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) -; (home-page "https://gopkg.in/yaml.v2") -; (synopsis "YAML support for the Go language") -; (description "Package yaml implements YAML support for the Go language. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-urfave-cli-1.22.5 -; (package -; (name "go-github-com-urfave-cli") -; (version "1.22.5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/urfave/cli") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1n8lk58j7bdsp47yh5bcpsw38lhkbyzcy3203ffkawc2rvkf1pp7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/urfave/cli")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) -; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d" -; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d) -; ("go-github-com-burntsushi-toml-0.3.1" -; ,go-github-com-burntsushi-toml-0.3.1))) -; (home-page "https://github.com/urfave/cli") -; (synopsis "cli") -; (description -; "Package cli provides a minimal framework for creating and organizing command line -;Go applications. cli is designed to be easy to understand and write, the most simple -;cli application can be written as follows: -;") -; (license license:expat))) -; -;(define-public go-github-com-vividcortex-ewma-1.1.1 -; (package -; (name "go-github-com-vividcortex-ewma") -; (version "1.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/VividCortex/ewma") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "14v2dy5gqchjn7k0sd6cx59ms42v681r6xz7cb1kspp4b28a74rw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/VividCortex/ewma")) -; (home-page "https://github.com/VividCortex/ewma") -; (synopsis "EWMA") -; (description -; "Package ewma implements exponentially weighted moving averages. -;") -; (license license:expat))) -; -;(define-public go-github-com-acarl005-stripansi-0.0.0-20180116102854-5a71ef0e047d -; (package -; (name "go-github-com-acarl005-stripansi") -; (version "0.0.0-20180116102854-5a71ef0e047d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/acarl005/stripansi") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "02sxiishdixm791jqbkmhdcvc712l0fb8rqmibxzgc61h0qs6rs3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/acarl005/stripansi")) -; (home-page "https://github.com/acarl005/stripansi") -; (synopsis "Strip ANSI") -; (description "This Go package removes ANSI escape codes from strings.") -; (license license:expat))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190215142949-d0b11bdaac8a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20190308221718-c2843e01d9a2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-text-0.3.0 -; (package -; (name "go-golang-org-x-text") -; (version "0.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/text") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/text")) -; (home-page "https://golang.org/x/text") -; (synopsis "Go Text") -; (description -; "text is a repository of text-related packages related to internationalization -;(i18n) and localization (l10n), such as character encodings, text -;transformations, and locale-specific text handling. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20190404232315-eb5bcb51f2a3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "17k4g8krxbl84gzcs275b7gsh66dzm15fdxivjnx9xz8q84l4kby")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190412213103-97732733099d -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190412213103-97732733099d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "118hkp01i4z1f5h6hcjm0ff2ngqhrzj1f7731n0kw8dr6hvbx0sw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20200214034016-1d94cc7ab1c6 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20200214034016-1d94cc7ab1c6") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1mkd0gc2p16nddr5b8a5rqkalnhik3cymnqy4wy53zvd7isg6r3x")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" -; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) -; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" -; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20200217220822-9197077df867 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20200217220822-9197077df867") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1270yyiqzlgrsygp2j0qavh4agm4xjv3ljfpk4wgqgmg4ph1lmx1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-vbauerster-mpb-v4-4.12.2 -; (package -; (name "go-github-com-vbauerster-mpb-v4") -; (version "4.12.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/vbauerster/mpb") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "13zq6zs5pv1gay3zzkwzc310rvsy1rf43lgq2l23nsyfkw1fx8fp")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/vbauerster/mpb/v4")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20200217220822-9197077df867" -; ,go-golang-org-x-sys-0.0.0-20200217220822-9197077df867) -; ("go-golang-org-x-crypto-0.0.0-20200214034016-1d94cc7ab1c6" -; ,go-golang-org-x-crypto-0.0.0-20200214034016-1d94cc7ab1c6) -; ("go-github-com-acarl005-stripansi-0.0.0-20180116102854-5a71ef0e047d" -; ,go-github-com-acarl005-stripansi-0.0.0-20180116102854-5a71ef0e047d) -; ("go-github-com-vividcortex-ewma-1.1.1" -; ,go-github-com-vividcortex-ewma-1.1.1))) -; (home-page "https://github.com/vbauerster/mpb") -; (synopsis "Multi Progress Bar") -; (description -; "Package mpb is a library for rendering progress bars in terminal applications. -;") -; (license license:unlicense))) -; -;(define-public go-github-com-vividcortex-ewma-1.2.0 -; (package -; (name "go-github-com-vividcortex-ewma") -; (version "1.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/VividCortex/ewma") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0whx516l9nm4n41spagb605ry7kfnz1qha96mcshnfjlahhnnylq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/VividCortex/ewma")) -; (home-page "https://github.com/VividCortex/ewma") -; (synopsis "EWMA") -; (description -; "Package ewma implements exponentially weighted moving averages. -;") -; (license license:expat))) -; -;(define-public go-github-com-acarl005-stripansi-0.0.0-20180116102854-5a71ef0e047d -; (package -; (name "go-github-com-acarl005-stripansi") -; (version "0.0.0-20180116102854-5a71ef0e047d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/acarl005/stripansi") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "02sxiishdixm791jqbkmhdcvc712l0fb8rqmibxzgc61h0qs6rs3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/acarl005/stripansi")) -; (home-page "https://github.com/acarl005/stripansi") -; (synopsis "Strip ANSI") -; (description "This Go package removes ANSI escape codes from strings.") -; (license license:expat))) -; -;(define-public go-github-com-rivo-uniseg-0.1.0 -; (package -; (name "go-github-com-rivo-uniseg") -; (version "0.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/rivo/uniseg") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0flpc1px1l6b1lxzhdxi0mvpkkjchppvgxshxxnlmm40s76i9ww5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/rivo/uniseg")) -; (home-page "https://github.com/rivo/uniseg") -; (synopsis "Unicode Text Segmentation for Go") -; (description -; "Package uniseg implements Unicode Text Segmentation according to Unicode -;Standard Annex #29 (@url{http://unicode.org/reports/tr29/,http://unicode.org/reports/tr29/}). -;") -; (license license:expat))) -; -;(define-public go-github-com-mattn-go-runewidth-0.0.12 -; (package -; (name "go-github-com-mattn-go-runewidth") -; (version "0.0.12") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mattn/go-runewidth") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "10m8k25anr79mirr9azap3c3a7wxn67qk774xd8hhqa1ffbicxib")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mattn/go-runewidth")) -; (propagated-inputs -; `(("go-github-com-rivo-uniseg-0.1.0" ,go-github-com-rivo-uniseg-0.1.0))) -; (home-page "https://github.com/mattn/go-runewidth") -; (synopsis "go-runewidth") -; (description -; "This package provides functions to get fixed width of the character or string.") -; (license license:expat))) -; -;(define-public go-github-com-rivo-uniseg-0.2.0 -; (package -; (name "go-github-com-rivo-uniseg") -; (version "0.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/rivo/uniseg") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0j7h22vfmjj562vr8gpsyrkrwp1pq9ayh5fylv24skxb467g9f0q")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/rivo/uniseg")) -; (home-page "https://github.com/rivo/uniseg") -; (synopsis "Unicode Text Segmentation for Go") -; (description -; "Package uniseg implements Unicode Text Segmentation according to Unicode -;Standard Annex #29 (@url{http://unicode.org/reports/tr29/,http://unicode.org/reports/tr29/}). -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-sys-0.0.0-20210514084401-e8d321eab015 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20210514084401-e8d321eab015") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0r4kz2mdfrr0853qmbaiqpj5mqscfjy6za6kqmrw7lv9h7xwqbc4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-vbauerster-mpb-v6-6.0.4 -; (package -; (name "go-github-com-vbauerster-mpb-v6") -; (version "6.0.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/vbauerster/mpb") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0b3p380pbhlp9qiv794ppwjwsl2k37hzp6k5ic4jx4wmdqlxzbyp")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/vbauerster/mpb/v6")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20210514084401-e8d321eab015" -; ,go-golang-org-x-sys-0.0.0-20210514084401-e8d321eab015) -; ("go-github-com-rivo-uniseg-0.2.0" ,go-github-com-rivo-uniseg-0.2.0) -; ("go-github-com-mattn-go-runewidth-0.0.12" -; ,go-github-com-mattn-go-runewidth-0.0.12) -; ("go-github-com-acarl005-stripansi-0.0.0-20180116102854-5a71ef0e047d" -; ,go-github-com-acarl005-stripansi-0.0.0-20180116102854-5a71ef0e047d) -; ("go-github-com-vividcortex-ewma-1.2.0" -; ,go-github-com-vividcortex-ewma-1.2.0))) -; (home-page "https://github.com/vbauerster/mpb") -; (synopsis "Multi Progress Bar") -; (description -; "Package mpb is a library for rendering progress bars in terminal applications. -;") -; (license license:unlicense))) -; -;(define-public go-github-com-xeipuuv-gojsonpointer-0.0.0-20190905194746-02993c407bfb -; (package -; (name "go-github-com-xeipuuv-gojsonpointer") -; (version "0.0.0-20190905194746-02993c407bfb") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/xeipuuv/gojsonpointer") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0y7gmpgsm8c12ax4a0ij9srmd9d424iq224n172ckwfqf37amvzy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/xeipuuv/gojsonpointer")) -; (home-page "https://github.com/xeipuuv/gojsonpointer") -; (synopsis "gojsonpointer") -; (description "An implementation of JSON Pointer - Go language") -; (license license:asl2.0))) -; -;(define-public go-github-com-yvasiyarov-go-metrics-0.0.0-20150112132944-c25f46c4b940 -; (package -; (name "go-github-com-yvasiyarov-go-metrics") -; (version "0.0.0-20150112132944-c25f46c4b940") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/yvasiyarov/go-metrics") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0p1hx4ml4gzgyj8n0fg5lv8bq092zwg00n59lq8v8sphjc1h8i8d")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/yvasiyarov/go-metrics")) -; (home-page "https://github.com/yvasiyarov/go-metrics") -; (synopsis "go-metrics") -; (description "Go port of Coda Hale's Metrics library -;") -; (license #f))) -; -;(define-public go-github-com-yvasiyarov-gorelic-0.0.6 -; (package -; (name "go-github-com-yvasiyarov-gorelic") -; (version "0.0.6") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/yvasiyarov/gorelic") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0210d8z7l945611b5ynzjhnypqfdyr490ndrap13s4k5z1jgqjnb")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/yvasiyarov/gorelic")) -; (home-page "https://github.com/yvasiyarov/gorelic") -; (synopsis "GoRelic is deprecated in favour of") -; (description -; "Package gorelic is an New Relic agent implementation for Go runtime. It collect a lot of metrics about Go scheduler, garbage collector and memory allocator and send them to NewRelic. -;") -; (license license:bsd-2))) -; -;(define-public go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20160601141957-9c099fbc30e9 -; (package -; (name "go-github-com-yvasiyarov-newrelic-platform-go") -; (version "0.0.0-20160601141957-9c099fbc30e9") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/yvasiyarov/newrelic_platform_go") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0n6jap27qc7b7c37ck1gv9biq5nfl7y06jk0cqgc517yfnb4f07x")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/yvasiyarov/newrelic_platform_go")) -; (home-page "https://github.com/yvasiyarov/newrelic_platform_go") -; (synopsis "New Relic Platform Agent SDK for Go(golang)") -; (description -; "Package newrelic_platform_go is New Relic Platform Agent SDK for Go language. -;") -; (license license:bsd-2))) -; -;(define-public go-golang-org-x-sys-0.0.0-20210423082822-04245dca01da -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20210423082822-04245dca01da") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "11is2c5cpxk0gf2mxza2wpzfcf71fxb9b3in77f6w2q0pr68ykzx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20211112202133-69e39bad7dc2 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20211112202133-69e39bad7dc2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0yvg72fb037yh4xvjyfgrr8nsbz7nfiiksvq0a5922z255anamy6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.6" ,go-golang-org-x-text-0.3.6) -; ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" -; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) -; ("go-golang-org-x-sys-0.0.0-20210423082822-04245dca01da" -; ,go-golang-org-x-sys-0.0.0-20210423082822-04245dca01da))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20210615035016-665e8c7367d1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "11n848csibdbv7b46zjyf4l7sphg37n9sjzqfy1ds7p1jyakwmnv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20201119102817-f84b799fce68") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1dvhqian5byzkcg1bnqzygqa6ccc6krc2q7j12pp1vhl3y7znnsg")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1 -; (package -; (name "go-golang-org-x-term") -; (version "0.0.0-20201126162022-7de9c90e9dd1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/term") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ba252xmv6qsvf1w1gcy98mngrj0vd4inbjw0lsklqvva65nljna")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/term")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" -; ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) -; (home-page "https://golang.org/x/term") -; (synopsis "Go terminal/console support") -; (description -; "Package term provides support functions for dealing with terminals, as -;commonly found on UNIX systems. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20180917221912-90fa682c2a6e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-text-0.3.6 -; (package -; (name "go-golang-org-x-text") -; (version "0.3.6") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/text") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0wzhvdb059vrp2cczqw422ajrb9sbs4l3qd020hlngj33qfhxah0")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/text")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" -; ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) -; (home-page "https://golang.org/x/text") -; (synopsis "Go Text") -; (description -; "text is a repository of text-related packages related to internationalization -;(i18n) and localization (l10n), such as character encodings, text -;transformations, and locale-specific text handling. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20211117183948-ae814b36b871 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20211117183948-ae814b36b871") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "01d5llpsijgbgm8px6mhaknqwh8g707zc5i5744gcndr8w0649sk")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.6" ,go-golang-org-x-text-0.3.6) -; ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" -; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) -; ("go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1" -; ,go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1) -; ("go-golang-org-x-net-0.0.0-20211112202133-69e39bad7dc2" -; ,go-golang-org-x-net-0.0.0-20211112202133-69e39bad7dc2))) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20211004093028-2c5d950f24ef -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20211004093028-2c5d950f24ef") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "13ac9v54zgxrya9n2dvbmyafhd0rbmnkfb5zrcp96z8vzd9q8zfz")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 -; (package -; (name "go-gopkg-in-check-v1") -; (version "0.0.0-20161208181325-20d25e280405") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/check.v1") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) -; (home-page "https://gopkg.in/check.v1") -; (synopsis "Instructions") -; (description -; "Package check is a rich testing extension for Go's testing package. -;") -; (license license:bsd-2))) -; -;(define-public go-gopkg-in-yaml-v2-2.4.0 -; (package -; (name "go-gopkg-in-yaml-v2") -; (version "2.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/yaml.v2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1pbmrpj7gcws34g8vwna4i2nhm9p6235piww36436xhyaa10cldr")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" -; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) -; (home-page "https://gopkg.in/yaml.v2") -; (synopsis "YAML support for the Go language") -; (description "Package yaml implements YAML support for the Go language. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543 -; (package -; (name "go-golang-org-x-xerrors") -; (version "0.0.0-20191204190536-9bdfabe68543") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/xerrors") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1yjfi1bk9xb81lqn85nnm13zz725wazvrx3b50hx19qmwg7a4b0c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/xerrors")) -; (home-page "https://golang.org/x/xerrors") -; (synopsis #f) -; (description -; "Package xerrors implements functions to manipulate errors. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-google-go-cmp-0.4.0 -; (package -; (name "go-github-com-google-go-cmp") -; (version "0.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/go-cmp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1x5pvl3fb5sbyng7i34431xycnhmx8xx94gq2n19g6p0vz68z2v2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/go-cmp")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" -; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) -; (home-page "https://github.com/google/go-cmp") -; (synopsis "Package for equality of Go values") -; (description -; "This package is intended to be a more powerful and safer alternative to -;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") -; (license license:bsd-3))) -; -;(define-public go-github-com-pkg-errors-0.8.1 -; (package -; (name "go-github-com-pkg-errors") -; (version "0.8.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/pkg/errors") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0g5qcb4d4fd96midz0zdk8b9kz8xkzwfa8kr1cliqbg8sxsy5vd1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/pkg/errors")) -; (home-page "https://github.com/pkg/errors") -; (synopsis "errors") -; (description "Package errors provides simple error handling primitives. -;") -; (license license:bsd-2))) -; -;(define-public go-github-com-spf13-pflag-1.0.3 -; (package -; (name "go-github-com-spf13-pflag") -; (version "1.0.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/spf13/pflag") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1cj3cjm7d3zk0mf1xdybh0jywkbbw7a6yr3y22x9sis31scprswd")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/spf13/pflag")) -; (home-page "https://github.com/spf13/pflag") -; (synopsis "Description") -; (description -; "Package pflag is a drop-in replacement for Go's flag package, implementing -;POSIX/GNU-style --flags. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190215142949-d0b11bdaac8a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20190308221718-c2843e01d9a2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-text-0.3.0 -; (package -; (name "go-golang-org-x-text") -; (version "0.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/text") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/text")) -; (home-page "https://golang.org/x/text") -; (synopsis "Go Text") -; (description -; "text is a repository of text-related packages related to internationalization -;(i18n) and localization (l10n), such as character encodings, text -;transformations, and locale-specific text handling. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20190311183353-d8887717615a -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20190311183353-d8887717615a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1wfm6ngxjyj7v5a2dqib6lw8bb2rdnf1kl48diykxjrsddn0s163")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sync-0.0.0-20190423024810-112230192c58 -; (package -; (name "go-golang-org-x-sync") -; (version "0.0.0-20190423024810-112230192c58") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sync") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "05i2k43j2d0llq768hg5pf3hb2yhfzp9la1w5wp0rsnnzblr0lfn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sync")) -; (home-page "https://golang.org/x/sync") -; (synopsis "Go Sync") -; (description -; "This repository provides Go concurrency primitives in addition to the -;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20190624222133-a101b041ded4 -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20190624222133-a101b041ded4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1pm50dybm5wixjjspvfpafjmiy81b1zp08h13gxc5cylrfgncrfl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" -; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-gotest-tools-v3-3.0.3 -; (package -; (name "go-gotest-tools-v3") -; (version "3.0.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/gotestyourself/gotest.tools") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1h316233n33lkfhbak8ljdj5i8df6hcwwm48n200svf22x3d95ww")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gotest.tools/v3" #:unpack-path "gotest.tools/v3")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20190624222133-a101b041ded4" -; ,go-golang-org-x-tools-0.0.0-20190624222133-a101b041ded4) -; ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) -; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0))) -; (home-page "https://gotest.tools/v3") -; (synopsis "gotest.tools") -; (description -; "Package gotesttools is a collection of packages to augment `testing` and -;support common patterns. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-microsoft-go-winio-0.4.17 -; (package -; (name "go-github-com-microsoft-go-winio") -; (version "0.4.17") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/microsoft/go-winio") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0gmgiak4x4gdyr17zm4b9vvharflk9pz5aj5jayh9hq50133b2f9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/Microsoft/go-winio")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" -; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) -; ("go-github-com-sirupsen-logrus-1.7.0" -; ,go-github-com-sirupsen-logrus-1.7.0) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) -; (home-page "https://github.com/Microsoft/go-winio") -; (synopsis "go-winio") -; (description -; "This repository contains utilities for efficiently performing Win32 IO operations in -;Go. Currently, this is focused on accessing named pipes and other file handles, and -;for using named pipes as a net transport.") -; (license license:expat))) -; -;(define-public go-github-com-cenkalti-backoff-v4-4.1.1 -; (package -; (name "go-github-com-cenkalti-backoff-v4") -; (version "4.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/cenkalti/backoff") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "08c28226q612i1pv83161y57qh16631vpc51ai9f76qfrzsy946z")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/cenkalti/backoff/v4")) -; (home-page "https://github.com/cenkalti/backoff") -; (synopsis "Exponential Backoff") -; (description -; "Package backoff implements backoff algorithms for retrying operations. -;") -; (license license:expat))) -; -;(define-public go-github-com-containerd-containerd-1.4.9 -; (package -; (name "go-github-com-containerd-containerd") -; (version "1.4.9") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/containerd") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ykikks6ihgg899ibk9m9m0hqrbss0cx7l7z4yjb873b10bacj52")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/containerd")) -; (home-page "https://github.com/containerd/containerd") -; (synopsis "Now Recruiting") -; (description -; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") -; (license license:asl2.0))) -; -;(define-public go-github-com-microsoft-hcsshim-0.8.23 -; (package -; (name "go-github-com-microsoft-hcsshim") -; (version "0.8.23") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/microsoft/hcsshim") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "19gmwvq72vrlw6wvnmz4rjmg6r34c1nbqk71mj4bqq08rpi3i89r")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/Microsoft/hcsshim")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) -; ("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) -; ("go-golang-org-x-sys-0.0.0-20210324051608-47abb6519492" -; ,go-golang-org-x-sys-0.0.0-20210324051608-47abb6519492) -; ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" -; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) -; ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) -; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) -; ("go-github-com-sirupsen-logrus-1.8.1" -; ,go-github-com-sirupsen-logrus-1.8.1) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" -; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) -; ("go-github-com-gogo-protobuf-1.3.2" -; ,go-github-com-gogo-protobuf-1.3.2) -; ("go-github-com-containerd-typeurl-1.0.2" -; ,go-github-com-containerd-typeurl-1.0.2) -; ("go-github-com-containerd-ttrpc-1.1.0" -; ,go-github-com-containerd-ttrpc-1.1.0) -; ("go-github-com-containerd-go-runc-1.0.0" -; ,go-github-com-containerd-go-runc-1.0.0) -; ("go-github-com-containerd-fifo-1.0.0" -; ,go-github-com-containerd-fifo-1.0.0) -; ("go-github-com-containerd-continuity-0.1.0" -; ,go-github-com-containerd-continuity-0.1.0) -; ("go-github-com-containerd-containerd-1.4.9" -; ,go-github-com-containerd-containerd-1.4.9) -; ("go-github-com-containerd-console-1.0.2" -; ,go-github-com-containerd-console-1.0.2) -; ("go-github-com-containerd-cgroups-1.0.1" -; ,go-github-com-containerd-cgroups-1.0.1) -; ("go-github-com-cenkalti-backoff-v4-4.1.1" -; ,go-github-com-cenkalti-backoff-v4-4.1.1) -; ("go-github-com-microsoft-go-winio-0.4.17" -; ,go-github-com-microsoft-go-winio-0.4.17))) -; (home-page "https://github.com/Microsoft/hcsshim") -; (synopsis "hcsshim") -; (description -; "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") -; (license license:expat))) -; -;(define-public go-github-com-containerd-aufs-1.0.0 -; (package -; (name "go-github-com-containerd-aufs") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/aufs") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0jyyyf6sr910m602axmp4h4j1l2n680cpp60z09pvprz55zi4ba0")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/aufs")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" -; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" -; ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) -; ("go-github-com-containerd-containerd-1.5.0-beta.3" -; ,go-github-com-containerd-containerd-1.5.0-beta.3))) -; (home-page "https://github.com/containerd/aufs") -; (synopsis "aufs snapshotter") -; (description -; "AUFS implementation of the snapshot interface for containerd.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-btrfs-1.0.0 -; (package -; (name "go-github-com-containerd-btrfs") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/btrfs") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1yf38gg41y1v12m0cl81r9q7d13170a4npzqxhbz7qn32zr23kzn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/btrfs")) -; (propagated-inputs -; `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) -; (home-page "https://github.com/containerd/btrfs") -; (synopsis "go-btrfs") -; (description -; "Package btrfs provides bindings for working with btrfs partitions from Go. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-cilium-ebpf-0.4.0 -; (package -; (name "go-github-com-cilium-ebpf") -; (version "0.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/cilium/ebpf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1j33vfz8mxnqadkd17l0y3ll71gph3ndm8hwrwbwnf5px7bfv9yl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/cilium/ebpf")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" -; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) -; ("go-github-com-google-go-cmp-0.5.4" -; ,go-github-com-google-go-cmp-0.5.4) -; ("go-github-com-frankban-quicktest-1.11.3" -; ,go-github-com-frankban-quicktest-1.11.3))) -; (home-page "https://github.com/cilium/ebpf") -; (synopsis "eBPF") -; (description "Package ebpf is a toolkit for working with eBPF programs. -;") -; (license license:expat))) -; -;(define-public go-github-com-containerd-cgroups-1.0.1 -; (package -; (name "go-github-com-containerd-cgroups") -; (version "1.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/cgroups") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1p992w942xba9z77nhhbc6nk5q09c3zxxhq9n7fm5alx3a8fwbpl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/cgroups")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" -; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) -; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-sirupsen-logrus-1.7.0" -; ,go-github-com-sirupsen-logrus-1.7.0) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-runtime-spec-1.0.2" -; ,go-github-com-opencontainers-runtime-spec-1.0.2) -; ("go-github-com-gogo-protobuf-1.3.2" -; ,go-github-com-gogo-protobuf-1.3.2) -; ("go-github-com-godbus-dbus-v5-5.0.3" -; ,go-github-com-godbus-dbus-v5-5.0.3) -; ("go-github-com-docker-go-units-0.4.0" -; ,go-github-com-docker-go-units-0.4.0) -; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" -; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) -; ("go-github-com-coreos-go-systemd-v22-22.1.0" -; ,go-github-com-coreos-go-systemd-v22-22.1.0) -; ("go-github-com-cilium-ebpf-0.4.0" ,go-github-com-cilium-ebpf-0.4.0))) -; (home-page "https://github.com/containerd/cgroups") -; (synopsis "cgroups") -; (description -; "Go package for creating, managing, inspecting, and destroying cgroups. -;The resources format for settings on the cgroup uses the OCI runtime-spec found -;@url{https://github.com/opencontainers/runtime-spec,here}.") -; (license license:asl2.0))) -; -;(define-public go-github-com-mitchellh-go-homedir-1.1.0 -; (package -; (name "go-github-com-mitchellh-go-homedir") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mitchellh/go-homedir") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ydzkipf28hwj2bfxqmwlww47khyk6d152xax4bnyh60f4lq3nx1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mitchellh/go-homedir")) -; (home-page "https://github.com/mitchellh/go-homedir") -; (synopsis "go-homedir") -; (description -; "This is a Go library for detecting the user's home directory without -;the use of cgo, so the library can be used in cross-compilation environments.") -; (license license:expat))) -; -;(define-public go-github-com-armon-consul-api-0.0.0-20180202201655-eb2c6b5be1b6 -; (package -; (name "go-github-com-armon-consul-api") -; (version "0.0.0-20180202201655-eb2c6b5be1b6") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/armon/consul-api") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1j6fdr1sg36qy4n4xjl7brq739fpm5npq98cmvklzjc9qrx98nk9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/armon/consul-api")) -; (home-page "https://github.com/armon/consul-api") -; (synopsis "consul-api") -; (description -; " Please use @url{https://github.com/hashicorp/consul/tree/master/api,consul api package} instead. -;Godocs for that package @url{http://godoc.org/github.com/hashicorp/consul/api,are here}.") -; (license license:mpl2.0))) -; -;(define-public go-github-com-coreos-bbolt-1.3.2 -; (package -; (name "go-github-com-coreos-bbolt") -; (version "1.3.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/etcd-io/bbolt") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "13d5l6p6c5wvkr6vn9hkhz9c593qifn7fgx0hg4d6jcvg1y0bnm2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/coreos/bbolt")) -; (home-page "https://github.com/coreos/bbolt") -; (synopsis "bbolt") -; (description -; "package bbolt implements a low-level key/value store in pure Go. It supports -;fully serializable transactions, ACID semantics, and lock-free MVCC with -;multiple readers and a single writer. Bolt can be used for projects that -;want a simple data store without the need to add large dependencies such as -;Postgres or MySQL. -;") -; (license license:expat))) -; -;(define-public go-github-com-coreos-etcd-3.3.10+incompatible -; (package -; (name "go-github-com-coreos-etcd") -; (version "3.3.10+incompatible") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/etcd-io/etcd") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1x2ii1hj8jraba8rbxz6dmc03y3sjxdnzipdvg6fywnlq1f3l3wl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/coreos/etcd")) -; (home-page "https://github.com/coreos/etcd") -; (synopsis "etcd") -; (description -; "Package main is a simple wrapper of the real etcd entrypoint package -;(located at github.com/coreos/etcd/etcdmain) to ensure that etcd is still -;\"go getable\"; e.g. `go get github.com/coreos/etcd` works as expected and -;builds a binary in $GOBIN/etcd -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-golang-groupcache-0.0.0-20190129154638-5b532d6fd5ef -; (package -; (name "go-github-com-golang-groupcache") -; (version "0.0.0-20190129154638-5b532d6fd5ef") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/groupcache") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ls2i4ixyd4r2556j7c5jmlligjb35gfvxknrdn2abjmcahgqd6h")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/groupcache")) -; (home-page "https://github.com/golang/groupcache") -; (synopsis "groupcache") -; (description -; "Package groupcache provides a data loading mechanism with caching -;and de-duplication that works across a set of peer processes. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-gorilla-websocket-1.4.0 -; (package -; (name "go-github-com-gorilla-websocket") -; (version "1.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/gorilla/websocket") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "00i4vb31nsfkzzk7swvx3i75r2d960js3dri1875vypk3v2s0pzk")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/gorilla/websocket")) -; (home-page "https://github.com/gorilla/websocket") -; (synopsis "Gorilla WebSocket") -; (description -; "Package websocket implements the WebSocket protocol defined in @url{https://rfc-editor.org/rfc/rfc6455.html,RFC 6455}. -;") -; (license license:bsd-2))) -; -;(define-public go-github-com-grpc-ecosystem-go-grpc-middleware-1.0.0 -; (package -; (name "go-github-com-grpc-ecosystem-go-grpc-middleware") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc-ecosystem/go-grpc-middleware") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0lwgxih021xfhfb1xb9la5f98bpgpaiz63sbllx77qwwl2rmhrsp")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/grpc-ecosystem/go-grpc-middleware")) -; (home-page "https://github.com/grpc-ecosystem/go-grpc-middleware") -; (synopsis "Go gRPC Middleware") -; (description -; "`grpc_middleware` is a collection of gRPC middleware packages: interceptors, helpers and tools. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-grpc-ecosystem-grpc-gateway-1.9.0 -; (package -; (name "go-github-com-grpc-ecosystem-grpc-gateway") -; (version "1.9.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc-ecosystem/grpc-gateway") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1r4y48c76yxc2hpqszfjirvh7zxjb6z72qmk95li12ar79dhv3dy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/grpc-ecosystem/grpc-gateway")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.0.0-20170812160011-eb3733d160e7" -; ,go-gopkg-in-yaml-v2-2.0.0-20170812160011-eb3733d160e7) -; ("go-gopkg-in-resty-v1-1.12.0" ,go-gopkg-in-resty-v1-1.12.0) -; ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" -; ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) -; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) -; ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" -; ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) -; ("go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8" -; ,go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8) -; ("go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3" -; ,go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3) -; ("go-github-com-rogpeppe-fastuuid-0.0.0-20150106093220-6724a57986af" -; ,go-github-com-rogpeppe-fastuuid-0.0.0-20150106093220-6724a57986af) -; ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-ghodss-yaml-1.0.0" ,go-github-com-ghodss-yaml-1.0.0))) -; (home-page "https://github.com/grpc-ecosystem/grpc-gateway") -; (synopsis "grpc-gateway") -; (description -; "The grpc-gateway is a plugin of the Google protocol buffers compiler -;@url{https://github.com/protocolbuffers/protobuf,protoc}. -;It reads protobuf service definitions and generates a reverse-proxy server which -;translates a RESTful HTTP API into gRPC. This server is generated according to the -;@url{https://github.com/googleapis/googleapis/raw/master/google/api/http.proto#L46,(code google.api.http)} -;annotations in your service definitions.") -; (license license:bsd-3))) -; -;(define-public go-github-com-magiconair-properties-1.8.0 -; (package -; (name "go-github-com-magiconair-properties") -; (version "1.8.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/magiconair/properties") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1a10362wv8a8qwb818wygn2z48lgzch940hvpv81hv8gc747ajxn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/magiconair/properties")) -; (home-page "https://github.com/magiconair/properties") -; (synopsis "Overview") -; (description -; "Package properties provides functions for reading and writing -;ISO-8859-1 and UTF-8 encoded .properties files and has -;support for recursive property expansion. -;") -; (license license:bsd-2))) -; -;(define-public go-github-com-pelletier-go-toml-1.2.0 -; (package -; (name "go-github-com-pelletier-go-toml") -; (version "1.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/pelletier/go-toml") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1fjzpcjng60mc3a4b2ql5a00d5gah84wj740dabv9kq67mpg8fxy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/pelletier/go-toml")) -; (home-page "https://github.com/pelletier/go-toml") -; (synopsis "go-toml") -; (description "Package toml is a TOML parser and manipulation library. -;") -; (license #f))) -; -;(define-public go-github-com-prometheus-common-0.4.0 -; (package -; (name "go-github-com-prometheus-common") -; (version "0.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/common") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "00008pczafy982m59n1j31pnp41f4grbc2c40jccp52xg3m5klmr")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/common")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1) -; ("go-gopkg-in-alecthomas-kingpin-v2-2.2.6" -; ,go-gopkg-in-alecthomas-kingpin-v2-2.2.6) -; ("go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5" -; ,go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5) -; ("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" -; ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) -; ("go-golang-org-x-net-0.0.0-20181114220301-adae6a3d119a" -; ,go-golang-org-x-net-0.0.0-20181114220301-adae6a3d119a) -; ("go-github-com-sirupsen-logrus-1.2.0" -; ,go-github-com-sirupsen-logrus-1.2.0) -; ("go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d" -; ,go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d) -; ("go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910" -; ,go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910) -; ("go-github-com-prometheus-client-golang-0.9.1" -; ,go-github-com-prometheus-client-golang-0.9.1) -; ("go-github-com-pkg-errors-0.8.0" ,go-github-com-pkg-errors-0.8.0) -; ("go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223" -; ,go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223) -; ("go-github-com-matttproud-golang-protobuf-extensions-1.0.1" -; ,go-github-com-matttproud-golang-protobuf-extensions-1.0.1) -; ("go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515" -; ,go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515) -; ("go-github-com-julienschmidt-httprouter-1.2.0" -; ,go-github-com-julienschmidt-httprouter-1.2.0) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0) -; ("go-github-com-gogo-protobuf-1.1.1" -; ,go-github-com-gogo-protobuf-1.1.1) -; ("go-github-com-go-stack-stack-1.8.0" -; ,go-github-com-go-stack-stack-1.8.0) -; ("go-github-com-go-logfmt-logfmt-0.3.0" -; ,go-github-com-go-logfmt-logfmt-0.3.0) -; ("go-github-com-go-kit-kit-0.8.0" ,go-github-com-go-kit-kit-0.8.0) -; ("go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973" -; ,go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973) -; ("go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf" -; ,go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf) -; ("go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc" -; ,go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc))) -; (home-page "https://github.com/prometheus/common") -; (synopsis "Common") -; (description -; "This repository contains Go libraries that are shared across Prometheus -;components and libraries. They are considered internal to Prometheus, without -;any stability guarantees for external usage.") -; (license license:asl2.0))) -; -;(define-public go-github-com-prometheus-procfs-0.0.0-20190507164030-5867b95ac084 -; (package -; (name "go-github-com-prometheus-procfs") -; (version "0.0.0-20190507164030-5867b95ac084") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/procfs") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1rahdk62ajj4zpfb3mgzjqip773la9fb0m87m7s9a0b39l3fmzvr")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/procfs")) -; (propagated-inputs -; `(("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" -; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4))) -; (home-page "https://github.com/prometheus/procfs") -; (synopsis "procfs") -; (description -; "Package procfs provides functions to retrieve system, kernel and process -;metrics from the pseudo-filesystem proc. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-oneofone-xxhash-1.2.2 -; (package -; (name "go-github-com-oneofone-xxhash") -; (version "1.2.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/OneOfOne/xxhash") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1mjfhrwhvxa48rycjnqpqzm521i38h1hdyz6pdwmhd7xb8j6gwi6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/OneOfOne/xxhash")) -; (home-page "https://github.com/OneOfOne/xxhash") -; (synopsis "xxhash") -; (description -; "This is a native Go implementation of the excellent @url{https://github.com/Cyan4973/xxHash,xxhash}* algorithm, an extremely fast non-cryptographic Hash algorithm, working at speeds close to RAM limits.") -; (license license:asl2.0))) -; -;(define-public go-github-com-spaolacci-murmur3-0.0.0-20180118202830-f09979ecbc72 -; (package -; (name "go-github-com-spaolacci-murmur3") -; (version "0.0.0-20180118202830-f09979ecbc72") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/spaolacci/murmur3") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1lv3zyz3jy2d76bhvvs8svygx66606iygdvwy5cwc0p5z8yghq25")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/spaolacci/murmur3")) -; (home-page "https://github.com/spaolacci/murmur3") -; (synopsis "murmur3") -; (description -; "Package murmur3 implements Austin Appleby's non-cryptographic MurmurHash3. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-cespare-xxhash-1.1.0 -; (package -; (name "go-github-com-cespare-xxhash") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/cespare/xxhash") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1qyzlcdcayavfazvi03izx83fvip8h36kis44zr2sg7xf6sx6l4x")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/cespare/xxhash")) -; (propagated-inputs -; `(("go-github-com-spaolacci-murmur3-0.0.0-20180118202830-f09979ecbc72" -; ,go-github-com-spaolacci-murmur3-0.0.0-20180118202830-f09979ecbc72) -; ("go-github-com-oneofone-xxhash-1.2.2" -; ,go-github-com-oneofone-xxhash-1.2.2))) -; (home-page "https://github.com/cespare/xxhash") -; (synopsis "xxhash") -; (description -; "Package xxhash implements the 64-bit variant of xxHash (XXH64) as described -;at @url{http://cyan4973.github.io/xxHash/,http://cyan4973.github.io/xxHash/}. -;") -; (license license:expat))) -; -;(define-public go-github-com-dgryski-go-sip13-0.0.0-20181026042036-e10d5fee7954 -; (package -; (name "go-github-com-dgryski-go-sip13") -; (version "0.0.0-20181026042036-e10d5fee7954") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/dgryski/go-sip13") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "15fyibfas209ljz3f7g07kdmfbl3hhyd9n5n7aq5n5p9m5mn41d6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/dgryski/go-sip13")) -; (home-page "https://github.com/dgryski/go-sip13") -; (synopsis #f) -; (description #f) -; (license license:expat))) -; -;(define-public go-github-com-oklog-ulid-1.3.1 -; (package -; (name "go-github-com-oklog-ulid") -; (version "1.3.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/oklog/ulid") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0hybwyid820n80axrk863k2py93hbqlq6hxhf84ppmz0qd0ys0gq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/oklog/ulid")) -; (home-page "https://github.com/oklog/ulid") -; (synopsis "Universally Unique Lexicographically Sortable Identifier") -; (description -; "This package provides a Go port of @url{https://github.com/alizain/ulid,alizain/ulid} with binary format implemented.") -; (license license:asl2.0))) -; -;(define-public go-github-com-prometheus-common-0.0.0-20181113130724-41aa239b4cce -; (package -; (name "go-github-com-prometheus-common") -; (version "0.0.0-20181113130724-41aa239b4cce") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/common") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0spy10lwanqa5ynks9cagphkq74zz4b3jm4w59vvizdcw4fhd7s6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/common")) -; (home-page "https://github.com/prometheus/common") -; (synopsis "Common") -; (description -; "This repository contains Go libraries that are shared across Prometheus -;components and libraries. They are considered internal to Prometheus, without -;any stability guarantees for external usage.") -; (license license:asl2.0))) -; -;(define-public go-github-com-prometheus-tsdb-0.7.1 -; (package -; (name "go-github-com-prometheus-tsdb") -; (version "0.7.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus-junkyard/tsdb") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1c1da8i5byvhh4fp3vqjfb65aaksjskn3ggb8wg9hcfzjrhgpz04")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/tsdb")) -; (propagated-inputs -; `(("go-gopkg-in-alecthomas-kingpin-v2-2.2.6" -; ,go-gopkg-in-alecthomas-kingpin-v2-2.2.6) -; ("go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8" -; ,go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8) -; ("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" -; ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) -; ("go-github-com-stretchr-testify-1.2.2" -; ,go-github-com-stretchr-testify-1.2.2) -; ("go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d" -; ,go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d) -; ("go-github-com-prometheus-common-0.0.0-20181113130724-41aa239b4cce" -; ,go-github-com-prometheus-common-0.0.0-20181113130724-41aa239b4cce) -; ("go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910" -; ,go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910) -; ("go-github-com-prometheus-client-golang-0.9.1" -; ,go-github-com-prometheus-client-golang-0.9.1) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-pkg-errors-0.8.0" ,go-github-com-pkg-errors-0.8.0) -; ("go-github-com-oklog-ulid-1.3.1" ,go-github-com-oklog-ulid-1.3.1) -; ("go-github-com-matttproud-golang-protobuf-extensions-1.0.1" -; ,go-github-com-matttproud-golang-protobuf-extensions-1.0.1) -; ("go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515" -; ,go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0) -; ("go-github-com-gogo-protobuf-1.1.1" -; ,go-github-com-gogo-protobuf-1.1.1) -; ("go-github-com-go-stack-stack-1.8.0" -; ,go-github-com-go-stack-stack-1.8.0) -; ("go-github-com-go-logfmt-logfmt-0.3.0" -; ,go-github-com-go-logfmt-logfmt-0.3.0) -; ("go-github-com-go-kit-kit-0.8.0" ,go-github-com-go-kit-kit-0.8.0) -; ("go-github-com-dgryski-go-sip13-0.0.0-20181026042036-e10d5fee7954" -; ,go-github-com-dgryski-go-sip13-0.0.0-20181026042036-e10d5fee7954) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1) -; ("go-github-com-cespare-xxhash-1.1.0" -; ,go-github-com-cespare-xxhash-1.1.0) -; ("go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973" -; ,go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973) -; ("go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf" -; ,go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf) -; ("go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc" -; ,go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc))) -; (home-page "https://github.com/prometheus/tsdb") -; (synopsis "TSDB") -; (description -; "Package tsdb implements a time series storage for float64 sample data. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-prometheus-client-golang-0.9.3 -; (package -; (name "go-github-com-prometheus-client-golang") -; (version "0.9.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/client_golang") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1608rm1y2p3iv8k2x7wyc6hshvpbfkv2k77hy0x870syms1g3g1p")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/client_golang")) -; (propagated-inputs -; `(("go-github-com-prometheus-tsdb-0.7.1" -; ,go-github-com-prometheus-tsdb-0.7.1) -; ("go-github-com-prometheus-procfs-0.0.0-20190507164030-5867b95ac084" -; ,go-github-com-prometheus-procfs-0.0.0-20190507164030-5867b95ac084) -; ("go-github-com-prometheus-common-0.4.0" -; ,go-github-com-prometheus-common-0.4.0) -; ("go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90" -; ,go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90) -; ("go-github-com-golang-protobuf-1.3.1" -; ,go-github-com-golang-protobuf-1.3.1) -; ("go-github-com-go-logfmt-logfmt-0.4.0" -; ,go-github-com-go-logfmt-logfmt-0.4.0) -; ("go-github-com-beorn7-perks-1.0.0" -; ,go-github-com-beorn7-perks-1.0.0))) -; (home-page "https://github.com/prometheus/client_golang") -; (synopsis "Prometheus Go client library") -; (description -; "This is the @url{http://golang.org,Go} client library for -;@url{http://prometheus.io,Prometheus}. It has two separate parts, one for -;instrumenting application code, and one for creating clients that talk to the -;Prometheus HTTP API.") -; (license license:asl2.0))) -; -;(define-public go-github-com-spf13-afero-1.1.2 -; (package -; (name "go-github-com-spf13-afero") -; (version "1.1.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/spf13/afero") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0miv4faf5ihjfifb1zv6aia6f6ik7h1s4954kcb8n6ixzhx9ck6k")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/spf13/afero")) -; (home-page "https://github.com/spf13/afero") -; (synopsis "Overview") -; (description -; "This package provides a FileSystem Abstraction System for Go") -; (license license:asl2.0))) -; -;(define-public go-github-com-spf13-cast-1.3.0 -; (package -; (name "go-github-com-spf13-cast") -; (version "1.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/spf13/cast") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0xq1ffqj8y8h7dcnm0m9lfrh0ga7pssnn2c1dnr09chqbpn4bdc5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/spf13/cast")) -; (propagated-inputs -; `(("go-github-com-stretchr-testify-1.2.2" -; ,go-github-com-stretchr-testify-1.2.2) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://github.com/spf13/cast") -; (synopsis "cast") -; (description "Package cast provides easy and safe casting in Go. -;") -; (license license:expat))) -; -;(define-public go-github-com-spf13-jwalterweatherman-1.0.0 -; (package -; (name "go-github-com-spf13-jwalterweatherman") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/spf13/jwalterweatherman") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "093fmmvavv84pv4q84hav7ph3fmrq87bvspjj899q0qsx37yvdr8")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/spf13/jwalterweatherman")) -; (home-page "https://github.com/spf13/jwalterweatherman") -; (synopsis "jWalterWeatherman") -; (description -; "Seamless printing to the terminal (stdout) and logging to a io.Writer -;(file) thatâ\x80\x99s as easy to use as fmt.Println.") -; (license license:expat))) -; -;(define-public go-github-com-ugorji-go-1.1.4 -; (package -; (name "go-github-com-ugorji-go") -; (version "1.1.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/ugorji/go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ma2qvn5wqvjidpdz74x832a813qnr1cxbx6n6n125ak9b3wbn5w")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/ugorji/go")) -; (home-page "https://github.com/ugorji/go") -; (synopsis "go-codec") -; (description -; "This repository contains the @code{go-codec} library, the @code{codecgen} tool and -;benchmarks for comparing against other libraries.") -; (license license:expat))) -; -;(define-public go-github-com-xordataexchange-crypt-0.0.3-0.20170626215501-b2862e3d0a77 -; (package -; (name "go-github-com-xordataexchange-crypt") -; (version "0.0.3-0.20170626215501-b2862e3d0a77") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/xordataexchange/crypt") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "04q3856anpzl4gdfgmg7pbp9cx231nkz3ymq2xp27rnmmwhfxr8y")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/xordataexchange/crypt")) -; (home-page "https://github.com/xordataexchange/crypt") -; (synopsis "crypt") -; (description -; "You can use crypt as a command line tool or as a configuration library:") -; (license license:expat))) -; -;(define-public go-go-etcd-io-bbolt-1.3.2 -; (package -; (name "go-go-etcd-io-bbolt") -; (version "1.3.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/etcd-io/bbolt") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "13d5l6p6c5wvkr6vn9hkhz9c593qifn7fgx0hg4d6jcvg1y0bnm2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "go.etcd.io/bbolt")) -; (home-page "https://go.etcd.io/bbolt") -; (synopsis "bbolt") -; (description -; "package bbolt implements a low-level key/value store in pure Go. It supports -;fully serializable transactions, ACID semantics, and lock-free MVCC with -;multiple readers and a single writer. Bolt can be used for projects that -;want a simple data store without the need to add large dependencies such as -;Postgres or MySQL. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-time-0.0.0-20190308202827-9d24e82272b4 -; (package -; (name "go-golang-org-x-time") -; (version "0.0.0-20190308202827-9d24e82272b4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/time") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1f5nkr4vys2vbd8wrwyiq2f5wcaahhpxmia85d1gshcbqjqf8dkb")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/time")) -; (home-page "https://golang.org/x/time") -; (synopsis "Go Time") -; (description "This repository provides supplementary Go time packages.") -; (license license:bsd-3))) -; -;(define-public go-github-com-spf13-viper-1.4.0 -; (package -; (name "go-github-com-spf13-viper") -; (version "1.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/spf13/viper") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1zpzxvn13wpvbblbbn73svaq39zgxfjqhci9d68g3qf309pcfy19")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/spf13/viper")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) -; ("go-google-golang-org-grpc-1.21.0" ,go-google-golang-org-grpc-1.21.0) -; ("go-golang-org-x-time-0.0.0-20190308202827-9d24e82272b4" -; ,go-golang-org-x-time-0.0.0-20190308202827-9d24e82272b4) -; ("go-golang-org-x-net-0.0.0-20190522155817-f3200d17e092" -; ,go-golang-org-x-net-0.0.0-20190522155817-f3200d17e092) -; ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) -; ("go-go-uber-org-multierr-1.1.0" ,go-go-uber-org-multierr-1.1.0) -; ("go-go-uber-org-atomic-1.4.0" ,go-go-uber-org-atomic-1.4.0) -; ("go-go-etcd-io-bbolt-1.3.2" ,go-go-etcd-io-bbolt-1.3.2) -; ("go-github-com-xordataexchange-crypt-0.0.3-0.20170626215501-b2862e3d0a77" -; ,go-github-com-xordataexchange-crypt-0.0.3-0.20170626215501-b2862e3d0a77) -; ("go-github-com-xiang90-probing-0.0.0-20190116061207-43a291ad63a2" -; ,go-github-com-xiang90-probing-0.0.0-20190116061207-43a291ad63a2) -; ("go-github-com-ugorji-go-1.1.4" ,go-github-com-ugorji-go-1.1.4) -; ("go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5" -; ,go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5) -; ("go-github-com-stretchr-testify-1.2.2" -; ,go-github-com-stretchr-testify-1.2.2) -; ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) -; ("go-github-com-spf13-jwalterweatherman-1.0.0" -; ,go-github-com-spf13-jwalterweatherman-1.0.0) -; ("go-github-com-spf13-cast-1.3.0" ,go-github-com-spf13-cast-1.3.0) -; ("go-github-com-spf13-afero-1.1.2" ,go-github-com-spf13-afero-1.1.2) -; ("go-github-com-soheilhy-cmux-0.1.4" -; ,go-github-com-soheilhy-cmux-0.1.4) -; ("go-github-com-prometheus-client-golang-0.9.3" -; ,go-github-com-prometheus-client-golang-0.9.3) -; ("go-github-com-pelletier-go-toml-1.2.0" -; ,go-github-com-pelletier-go-toml-1.2.0) -; ("go-github-com-mitchellh-mapstructure-1.1.2" -; ,go-github-com-mitchellh-mapstructure-1.1.2) -; ("go-github-com-magiconair-properties-1.8.0" -; ,go-github-com-magiconair-properties-1.8.0) -; ("go-github-com-jonboulle-clockwork-0.1.0" -; ,go-github-com-jonboulle-clockwork-0.1.0) -; ("go-github-com-hashicorp-hcl-1.0.0" -; ,go-github-com-hashicorp-hcl-1.0.0) -; ("go-github-com-grpc-ecosystem-grpc-gateway-1.9.0" -; ,go-github-com-grpc-ecosystem-grpc-gateway-1.9.0) -; ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" -; ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) -; ("go-github-com-grpc-ecosystem-go-grpc-middleware-1.0.0" -; ,go-github-com-grpc-ecosystem-go-grpc-middleware-1.0.0) -; ("go-github-com-gorilla-websocket-1.4.0" -; ,go-github-com-gorilla-websocket-1.4.0) -; ("go-github-com-google-btree-1.0.0" ,go-github-com-google-btree-1.0.0) -; ("go-github-com-golang-groupcache-0.0.0-20190129154638-5b532d6fd5ef" -; ,go-github-com-golang-groupcache-0.0.0-20190129154638-5b532d6fd5ef) -; ("go-github-com-gogo-protobuf-1.2.1" -; ,go-github-com-gogo-protobuf-1.2.1) -; ("go-github-com-fsnotify-fsnotify-1.4.7" -; ,go-github-com-fsnotify-fsnotify-1.4.7) -; ("go-github-com-dgrijalva-jwt-go-3.2.0+incompatible" -; ,go-github-com-dgrijalva-jwt-go-3.2.0+incompatible) -; ("go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f" -; ,go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f) -; ("go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e" -; ,go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e) -; ("go-github-com-coreos-go-semver-0.2.0" -; ,go-github-com-coreos-go-semver-0.2.0) -; ("go-github-com-coreos-etcd-3.3.10+incompatible" -; ,go-github-com-coreos-etcd-3.3.10+incompatible) -; ("go-github-com-coreos-bbolt-1.3.2" ,go-github-com-coreos-bbolt-1.3.2) -; ("go-github-com-armon-consul-api-0.0.0-20180202201655-eb2c6b5be1b6" -; ,go-github-com-armon-consul-api-0.0.0-20180202201655-eb2c6b5be1b6))) -; (home-page "https://github.com/spf13/viper") -; (synopsis "Install") -; (description "Many Go projects are built using Viper including:") -; (license license:expat))) -; -;(define-public go-github-com-spf13-cobra-1.0.0 -; (package -; (name "go-github-com-spf13-cobra") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/spf13/cobra") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0vbppqqhby302a5ayn0296jqr71qkcd4c9am7wzsk6z71fwdsa7h")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/spf13/cobra")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) -; ("go-github-com-spf13-viper-1.4.0" ,go-github-com-spf13-viper-1.4.0) -; ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) -; ("go-github-com-mitchellh-go-homedir-1.1.0" -; ,go-github-com-mitchellh-go-homedir-1.1.0) -; ("go-github-com-inconshreveable-mousetrap-1.0.0" -; ,go-github-com-inconshreveable-mousetrap-1.0.0) -; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" -; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0))) -; (home-page "https://github.com/spf13/cobra") -; (synopsis "Table of Contents") -; (description -; "Package cobra is a commander providing a simple interface to create powerful modern CLI interfaces. -;In addition to providing an interface, Cobra simultaneously provides a controller to organize your application code. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-continuity-0.1.0 -; (package -; (name "go-github-com-containerd-continuity") -; (version "0.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/continuity") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1h756l1xc31sc4zc1d3hmh64kl9qm5vpbbw0c93hrasn51ki96yz")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/continuity")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" -; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) -; ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" -; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) -; ("go-github-com-spf13-cobra-1.0.0" ,go-github-com-spf13-cobra-1.0.0) -; ("go-github-com-sirupsen-logrus-1.7.0" -; ,go-github-com-sirupsen-logrus-1.7.0) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-go-digest-1.0.0" -; ,go-github-com-opencontainers-go-digest-1.0.0) -; ("go-github-com-golang-protobuf-1.3.5" -; ,go-github-com-golang-protobuf-1.3.5) -; ("go-github-com-dustin-go-humanize-1.0.0" -; ,go-github-com-dustin-go-humanize-1.0.0) -; ("go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898" -; ,go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898))) -; (home-page "https://github.com/containerd/continuity") -; (synopsis "continuity") -; (description -; "This package provides a transport-agnostic, filesystem metadata manifest system") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-fifo-1.0.0 -; (package -; (name "go-github-com-containerd-fifo") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/fifo") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1l6jy9b4mjcj7pbz1n79zmipni1dz60rf5n66vn5p2ggavbq7h1q")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/fifo")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" -; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) -; (home-page "https://github.com/containerd/fifo") -; (synopsis "fifo") -; (description "Go package for handling fifos in a sane way.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-go-cni-1.0.2 -; (package -; (name "go-github-com-containerd-go-cni") -; (version "1.0.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/go-cni") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1hqwy402qy04slz2vj05s517mhdbmmkdjs6nhfnk184a730whgv6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/go-cni")) -; (propagated-inputs -; `(("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-onsi-gomega-1.7.1" ,go-github-com-onsi-gomega-1.7.1) -; ("go-github-com-onsi-ginkgo-1.10.3" ,go-github-com-onsi-ginkgo-1.10.3) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1) -; ("go-github-com-containernetworking-cni-0.8.0" -; ,go-github-com-containernetworking-cni-0.8.0))) -; (home-page "https://github.com/containerd/go-cni") -; (synopsis "go-cni") -; (description -; "This package provides a generic CNI library to provide APIs for CNI plugin interactions. The library provides APIs to:") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-go-runc-1.0.0 -; (package -; (name "go-github-com-containerd-go-runc") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/go-runc") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0xk30dzzxmd83bnfyilplizlxh1pg1gqz2jrq9wz9rqqkxazc03n")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/go-runc")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f" -; ,go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f) -; ("go-github-com-sirupsen-logrus-1.7.0" -; ,go-github-com-sirupsen-logrus-1.7.0) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-runtime-spec-1.0.2" -; ,go-github-com-opencontainers-runtime-spec-1.0.2) -; ("go-github-com-containerd-console-1.0.1" -; ,go-github-com-containerd-console-1.0.1))) -; (home-page "https://github.com/containerd/go-runc") -; (synopsis "go-runc") -; (description -; "This is a package for consuming the @url{https://github.com/opencontainers/runc,runc} binary in your Go applications. -;It tries to expose all the settings and features of the runc CLI. If there is something missing then add it, its opensource!") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-zfs-0.0.0-20210315114300-dde8f0fda960 -; (package -; (name "go-github-com-containerd-zfs") -; (version "0.0.0-20210315114300-dde8f0fda960") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/zfs") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ag5p2vqzdavq66wb1z42yw5jzrncsi97g8qk2x9nq51z1nj8rdi")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/zfs")) -; (propagated-inputs -; `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible" -; ,go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible) -; ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" -; ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) -; ("go-github-com-containerd-containerd-1.5.0-beta.3" -; ,go-github-com-containerd-containerd-1.5.0-beta.3))) -; (home-page "https://github.com/containerd/zfs") -; (synopsis "ZFS snapshotter plugin") -; (description "ZFS snapshotter plugin for containerd.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-containerd-1.5.0-beta.4 -; (package -; (name "go-github-com-containerd-containerd") -; (version "1.5.0-beta.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/containerd") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "039c26mjq8qs1s4kbx76fc99wnmnx165bqn16b2b9gyvxcphs7iv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/containerd")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) -; ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) -; ("go-github-com-golang-protobuf-1.3.5" -; ,go-github-com-golang-protobuf-1.3.5) -; ("go-github-com-gogo-googleapis-1.3.2" -; ,go-github-com-gogo-googleapis-1.3.2) -; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" -; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) -; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) -; ("go-k8s-io-cri-api-0.20.1" ,go-k8s-io-cri-api-0.20.1) -; ("go-k8s-io-component-base-0.20.1" ,go-k8s-io-component-base-0.20.1) -; ("go-k8s-io-client-go-0.20.1" ,go-k8s-io-client-go-0.20.1) -; ("go-k8s-io-apiserver-0.20.1" ,go-k8s-io-apiserver-0.20.1) -; ("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) -; ("go-k8s-io-api-0.20.1" ,go-k8s-io-api-0.20.1) -; ("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) -; ("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" -; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) -; ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" -; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) -; ("go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b" -; ,go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b) -; ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) -; ("go-github-com-tchap-go-patricia-2.2.6+incompatible" -; ,go-github-com-tchap-go-patricia-2.2.6+incompatible) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-sirupsen-logrus-1.7.0" -; ,go-github-com-sirupsen-logrus-1.7.0) -; ("go-github-com-prometheus-client-golang-1.7.1" -; ,go-github-com-prometheus-client-golang-1.7.1) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-selinux-1.8.0" -; ,go-github-com-opencontainers-selinux-1.8.0) -; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" -; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) -; ("go-github-com-opencontainers-runc-1.0.0-rc93" -; ,go-github-com-opencontainers-runc-1.0.0-rc93) -; ("go-github-com-opencontainers-image-spec-1.0.1" -; ,go-github-com-opencontainers-image-spec-1.0.1) -; ("go-github-com-opencontainers-go-digest-1.0.0" -; ,go-github-com-opencontainers-go-digest-1.0.0) -; ("go-github-com-moby-sys-symlink-0.1.0" -; ,go-github-com-moby-sys-symlink-0.1.0) -; ("go-github-com-moby-sys-mountinfo-0.4.1" -; ,go-github-com-moby-sys-mountinfo-0.4.1) -; ("go-github-com-klauspost-compress-1.11.3" -; ,go-github-com-klauspost-compress-1.11.3) -; ("go-github-com-imdario-mergo-0.3.11" -; ,go-github-com-imdario-mergo-0.3.11) -; ("go-github-com-hashicorp-go-multierror-1.0.0" -; ,go-github-com-hashicorp-go-multierror-1.0.0) -; ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" -; ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) -; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) -; ("go-github-com-google-go-cmp-0.5.4" -; ,go-github-com-google-go-cmp-0.5.4) -; ("go-github-com-gogo-protobuf-1.3.2" -; ,go-github-com-gogo-protobuf-1.3.2) -; ("go-github-com-fsnotify-fsnotify-1.4.9" -; ,go-github-com-fsnotify-fsnotify-1.4.9) -; ("go-github-com-emicklei-go-restful-2.9.5+incompatible" -; ,go-github-com-emicklei-go-restful-2.9.5+incompatible) -; ("go-github-com-docker-go-units-0.4.0" -; ,go-github-com-docker-go-units-0.4.0) -; ("go-github-com-docker-go-metrics-0.0.1" -; ,go-github-com-docker-go-metrics-0.0.1) -; ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" -; ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1) -; ("go-github-com-coreos-go-systemd-v22-22.1.0" -; ,go-github-com-coreos-go-systemd-v22-22.1.0) -; ("go-github-com-containernetworking-plugins-0.8.6" -; ,go-github-com-containernetworking-plugins-0.8.6) -; ("go-github-com-containerd-zfs-0.0.0-20210315114300-dde8f0fda960" -; ,go-github-com-containerd-zfs-0.0.0-20210315114300-dde8f0fda960) -; ("go-github-com-containerd-typeurl-1.0.1" -; ,go-github-com-containerd-typeurl-1.0.1) -; ("go-github-com-containerd-ttrpc-1.0.2" -; ,go-github-com-containerd-ttrpc-1.0.2) -; ("go-github-com-containerd-nri-0.0.0-20210316161719-dbaa18c31c14" -; ,go-github-com-containerd-nri-0.0.0-20210316161719-dbaa18c31c14) -; ("go-github-com-containerd-imgcrypt-1.1.1-0.20210312161619-7ed62a527887" -; ,go-github-com-containerd-imgcrypt-1.1.1-0.20210312161619-7ed62a527887) -; ("go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0" -; ,go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0) -; ("go-github-com-containerd-go-cni-1.0.1" -; ,go-github-com-containerd-go-cni-1.0.1) -; ("go-github-com-containerd-fifo-0.0.0-20210316144830-115abcc95a1d" -; ,go-github-com-containerd-fifo-0.0.0-20210316144830-115abcc95a1d) -; ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" -; ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) -; ("go-github-com-containerd-console-1.0.1" -; ,go-github-com-containerd-console-1.0.1) -; ("go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68" -; ,go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68) -; ("go-github-com-containerd-btrfs-0.0.0-20210316141732-918d888fb676" -; ,go-github-com-containerd-btrfs-0.0.0-20210316141732-918d888fb676) -; ("go-github-com-containerd-aufs-0.0.0-20210316121734-20793ff83c97" -; ,go-github-com-containerd-aufs-0.0.0-20210316121734-20793ff83c97) -; ("go-github-com-microsoft-hcsshim-0.8.15" -; ,go-github-com-microsoft-hcsshim-0.8.15) -; ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" -; ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3) -; ("go-github-com-burntsushi-toml-0.3.1" -; ,go-github-com-burntsushi-toml-0.3.1))) -; (home-page "https://github.com/containerd/containerd") -; (synopsis "Now Recruiting") -; (description -; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-sys-0.0.0-20210324051608-47abb6519492 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20210324051608-47abb6519492") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "19g0pa8lazad5kcq396ggg9x1d6sx39rw9brz3hklx71gg1jd3ja")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-microsoft-hcsshim-0.8.16 -; (package -; (name "go-github-com-microsoft-hcsshim") -; (version "0.8.16") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/microsoft/hcsshim") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "15bxkqq4zavwspx3ga8j3vx9jrc7l0jazsa6cs6im9liy6xhkbd6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/Microsoft/hcsshim")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) -; ("go-golang-org-x-sys-0.0.0-20210324051608-47abb6519492" -; ,go-golang-org-x-sys-0.0.0-20210324051608-47abb6519492) -; ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" -; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) -; ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) -; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) -; ("go-github-com-sirupsen-logrus-1.7.0" -; ,go-github-com-sirupsen-logrus-1.7.0) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" -; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) -; ("go-github-com-gogo-protobuf-1.3.2" -; ,go-github-com-gogo-protobuf-1.3.2) -; ("go-github-com-containerd-typeurl-1.0.1" -; ,go-github-com-containerd-typeurl-1.0.1) -; ("go-github-com-containerd-ttrpc-1.0.2" -; ,go-github-com-containerd-ttrpc-1.0.2) -; ("go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0" -; ,go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0) -; ("go-github-com-containerd-containerd-1.5.0-beta.4" -; ,go-github-com-containerd-containerd-1.5.0-beta.4) -; ("go-github-com-containerd-console-1.0.1" -; ,go-github-com-containerd-console-1.0.1) -; ("go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68" -; ,go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68) -; ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" -; ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3))) -; (home-page "https://github.com/Microsoft/hcsshim") -; (synopsis "hcsshim") -; (description -; "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") -; (license license:expat))) -; -;(define-public go-github-com-microsoft-go-winio-0.4.17-0.20210324224401-5516f17a5958 -; (package -; (name "go-github-com-microsoft-go-winio") -; (version "0.4.17-0.20210324224401-5516f17a5958") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/microsoft/go-winio") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0gmgiak4x4gdyr17zm4b9vvharflk9pz5aj5jayh9hq50133b2f9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/Microsoft/go-winio")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" -; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) -; ("go-github-com-sirupsen-logrus-1.7.0" -; ,go-github-com-sirupsen-logrus-1.7.0) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) -; (home-page "https://github.com/Microsoft/go-winio") -; (synopsis "go-winio") -; (description -; "This repository contains utilities for efficiently performing Win32 IO operations in -;Go. Currently, this is focused on accessing named pipes and other file handles, and -;for using named pipes as a net transport.") -; (license license:expat))) -; -;(define-public go-github-com-containerd-aufs-0.0.0-20210316121734-20793ff83c97 -; (package -; (name "go-github-com-containerd-aufs") -; (version "0.0.0-20210316121734-20793ff83c97") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/aufs") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ipr8pafb2xpkchfvnxjcfx9pb48mjr9k8krj9gnagssxhynbkd5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/aufs")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" -; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" -; ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) -; ("go-github-com-containerd-containerd-1.5.0-beta.3" -; ,go-github-com-containerd-containerd-1.5.0-beta.3))) -; (home-page "https://github.com/containerd/aufs") -; (synopsis "aufs snapshotter") -; (description -; "AUFS implementation of the snapshot interface for containerd.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-btrfs-0.0.0-20210316141732-918d888fb676 -; (package -; (name "go-github-com-containerd-btrfs") -; (version "0.0.0-20210316141732-918d888fb676") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/btrfs") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1yf38gg41y1v12m0cl81r9q7d13170a4npzqxhbz7qn32zr23kzn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/btrfs")) -; (propagated-inputs -; `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) -; (home-page "https://github.com/containerd/btrfs") -; (synopsis "go-btrfs") -; (description -; "Package btrfs provides bindings for working with btrfs partitions from Go. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-fifo-0.0.0-20210316144830-115abcc95a1d -; (package -; (name "go-github-com-containerd-fifo") -; (version "0.0.0-20210316144830-115abcc95a1d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/fifo") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0hqna43p8r6g3xv8g8n985hq1nzipsvjiwm70xpbzbgynh4ym6z5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/fifo")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" -; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) -; (home-page "https://github.com/containerd/fifo") -; (synopsis "fifo") -; (description "Go package for handling fifos in a sane way.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0 -; (package -; (name "go-github-com-containerd-go-runc") -; (version "0.0.0-20201020171139-16b287bc67d0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/go-runc") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0xk30dzzxmd83bnfyilplizlxh1pg1gqz2jrq9wz9rqqkxazc03n")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/go-runc")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f" -; ,go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f) -; ("go-github-com-sirupsen-logrus-1.7.0" -; ,go-github-com-sirupsen-logrus-1.7.0) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-runtime-spec-1.0.2" -; ,go-github-com-opencontainers-runtime-spec-1.0.2) -; ("go-github-com-containerd-console-1.0.1" -; ,go-github-com-containerd-console-1.0.1))) -; (home-page "https://github.com/containerd/go-runc") -; (synopsis "go-runc") -; (description -; "This is a package for consuming the @url{https://github.com/opencontainers/runc,runc} binary in your Go applications. -;It tries to expose all the settings and features of the runc CLI. If there is something missing then add it, its opensource!") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-imgcrypt-1.1.1-0.20210312161619-7ed62a527887 -; (package -; (name "go-github-com-containerd-imgcrypt") -; (version "1.1.1-0.20210312161619-7ed62a527887") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/imgcrypt") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "16pgcc0w8m2cxhfjzmmd2h3n6mxzc1nlghrhgjlx0lf4q96hv904")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/imgcrypt")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) -; ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" -; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) -; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) -; ("go-github-com-sirupsen-logrus-1.7.0" -; ,go-github-com-sirupsen-logrus-1.7.0) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" -; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) -; ("go-github-com-opencontainers-image-spec-1.0.1" -; ,go-github-com-opencontainers-image-spec-1.0.1) -; ("go-github-com-opencontainers-go-digest-1.0.0" -; ,go-github-com-opencontainers-go-digest-1.0.0) -; ("go-github-com-gogo-protobuf-1.3.2" -; ,go-github-com-gogo-protobuf-1.3.2) -; ("go-github-com-containers-ocicrypt-1.1.0" -; ,go-github-com-containers-ocicrypt-1.1.0) -; ("go-github-com-containerd-typeurl-1.0.1" -; ,go-github-com-containerd-typeurl-1.0.1) -; ("go-github-com-containerd-containerd-1.5.0-beta.3" -; ,go-github-com-containerd-containerd-1.5.0-beta.3) -; ("go-github-com-containerd-console-1.0.1" -; ,go-github-com-containerd-console-1.0.1) -; ("go-github-com-microsoft-hcsshim-0.8.15" -; ,go-github-com-microsoft-hcsshim-0.8.15) -; ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" -; ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3))) -; (home-page "https://github.com/containerd/imgcrypt") -; (synopsis "imgcrypt image encryption library and command line tool") -; (description -; "Project @code{imgcrypt} is a non-core subproject of containerd.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-nri-0.0.0-20210316161719-dbaa18c31c14 -; (package -; (name "go-github-com-containerd-nri") -; (version "0.0.0-20210316161719-dbaa18c31c14") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/nri") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0kyrvagbga6yib7il0m4zvqz977a4wsv5lgjd3ix53xmr4h7fgm7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/nri")) -; (propagated-inputs -; `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-containerd-containerd-1.5.0-beta.3" -; ,go-github-com-containerd-containerd-1.5.0-beta.3))) -; (home-page "https://github.com/containerd/nri") -; (synopsis "nri - Node Resource Interface") -; (description -; "This project is a WIP for a new, CNI like, interface for managing resources on a node for Pods and Containers.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-zfs-0.0.0-20210324211415-d5c4544f0433 -; (package -; (name "go-github-com-containerd-zfs") -; (version "0.0.0-20210324211415-d5c4544f0433") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/zfs") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1wsqwqv2pyn05asgpm9clgpwq9b8b0fjk4khzkjvscrf5j4v1rx4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/zfs")) -; (propagated-inputs -; `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible" -; ,go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible) -; ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" -; ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) -; ("go-github-com-containerd-containerd-1.5.0-beta.3" -; ,go-github-com-containerd-containerd-1.5.0-beta.3))) -; (home-page "https://github.com/containerd/zfs") -; (synopsis "ZFS snapshotter plugin") -; (description "ZFS snapshotter plugin for containerd.") -; (license license:asl2.0))) -; -;(define-public go-k8s-io-apiserver-0.20.4 -; (package -; (name "go-k8s-io-apiserver") -; (version "0.20.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes/apiserver") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1gffl7z6bvi46v0fvphbak4waddsgf4pd5w16khgrzl1sv9skn61")))) -; (build-system go-build-system) -; (arguments '(#:import-path "k8s.io/apiserver")) -; (propagated-inputs -; `(("go-k8s-io-component-base-0.20.4" ,go-k8s-io-component-base-0.20.4) -; ("go-k8s-io-client-go-0.20.4" ,go-k8s-io-client-go-0.20.4) -; ("go-k8s-io-apimachinery-0.20.4" ,go-k8s-io-apimachinery-0.20.4) -; ("go-k8s-io-api-0.20.4" ,go-k8s-io-api-0.20.4) -; ("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) -; ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.2" -; ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.2) -; ("go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.14" -; ,go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.14) -; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" -; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) -; ("go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd" -; ,go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd) -; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) -; ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) -; ("go-gopkg-in-square-go-jose-v2-2.2.2" -; ,go-gopkg-in-square-go-jose-v2-2.2.2) -; ("go-gopkg-in-natefinch-lumberjack-v2-2.0.0" -; ,go-gopkg-in-natefinch-lumberjack-v2-2.0.0) -; ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) -; ("go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a" -; ,go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a) -; ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" -; ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) -; ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" -; ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) -; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" -; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) -; ("go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0" -; ,go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0) -; ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) -; ("go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489" -; ,go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489) -; ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) -; ("go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5" -; ,go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) -; ("go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021" -; ,go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822" -; ,go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822) -; ("go-github-com-mailru-easyjson-0.7.0" -; ,go-github-com-mailru-easyjson-0.7.0) -; ("go-github-com-hashicorp-golang-lru-0.5.1" -; ,go-github-com-hashicorp-golang-lru-0.5.1) -; ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" -; ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) -; ("go-github-com-gorilla-websocket-1.4.2" -; ,go-github-com-gorilla-websocket-1.4.2) -; ("go-github-com-googleapis-gnostic-0.4.1" -; ,go-github-com-googleapis-gnostic-0.4.1) -; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) -; ("go-github-com-google-gofuzz-1.1.0" -; ,go-github-com-google-gofuzz-1.1.0) -; ("go-github-com-google-go-cmp-0.5.2" -; ,go-github-com-google-go-cmp-0.5.2) -; ("go-github-com-gogo-protobuf-1.3.1" -; ,go-github-com-gogo-protobuf-1.3.1) -; ("go-github-com-go-openapi-spec-0.19.3" -; ,go-github-com-go-openapi-spec-0.19.3) -; ("go-github-com-evanphx-json-patch-4.9.0+incompatible" -; ,go-github-com-evanphx-json-patch-4.9.0+incompatible) -; ("go-github-com-emicklei-go-restful-2.9.5+incompatible" -; ,go-github-com-emicklei-go-restful-2.9.5+incompatible) -; ("go-github-com-dustin-go-humanize-1.0.0" -; ,go-github-com-dustin-go-humanize-1.0.0) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1) -; ("go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f" -; ,go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f) -; ("go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e" -; ,go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e) -; ("go-github-com-coreos-go-semver-0.3.0" -; ,go-github-com-coreos-go-semver-0.3.0) -; ("go-github-com-coreos-go-oidc-2.1.0+incompatible" -; ,go-github-com-coreos-go-oidc-2.1.0+incompatible))) -; (home-page "https://k8s.io/apiserver") -; (synopsis "apiserver") -; (description -; "Generic library for building a Kubernetes aggregated API server.") -; (license license:asl2.0))) -; -;(define-public go-k8s-io-api-0.20.4 -; (package -; (name "go-k8s-io-api") -; (version "0.20.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes/api") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0hjckd94vpsr690kwx7dad8qlb8xjg2bz5ms315s9h6wc5cqwvgy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "k8s.io/api")) -; (propagated-inputs -; `(("go-k8s-io-apimachinery-0.20.4" ,go-k8s-io-apimachinery-0.20.4) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-gogo-protobuf-1.3.1" -; ,go-github-com-gogo-protobuf-1.3.1))) -; (home-page "https://k8s.io/api") -; (synopsis "api") -; (description -; "Schema of the external API types that are served by the Kubernetes API server.") -; (license license:asl2.0))) -; -;(define-public go-k8s-io-apimachinery-0.20.4 -; (package -; (name "go-k8s-io-apimachinery") -; (version "0.20.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes/apimachinery") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "15qc12lbzpd4lgajy0rv24b3ky4hhg5y1l37qxdfiakhz91didfw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "k8s.io/apimachinery")) -; (propagated-inputs -; `(("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) -; ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.2" -; ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.2) -; ("go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd" -; ,go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd) -; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) -; ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) -; ("go-gopkg-in-inf-v0-0.9.1" ,go-gopkg-in-inf-v0-0.9.1) -; ("go-google-golang-org-protobuf-1.25.0" -; ,go-google-golang-org-protobuf-1.25.0) -; ("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" -; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) -; ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) -; ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" -; ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) -; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" -; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-onsi-gomega-1.7.0" ,go-github-com-onsi-gomega-1.7.0) -; ("go-github-com-onsi-ginkgo-1.11.0" ,go-github-com-onsi-ginkgo-1.11.0) -; ("go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f" -; ,go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f) -; ("go-github-com-modern-go-reflect2-1.0.1" -; ,go-github-com-modern-go-reflect2-1.0.1) -; ("go-github-com-json-iterator-go-1.1.10" -; ,go-github-com-json-iterator-go-1.1.10) -; ("go-github-com-hashicorp-golang-lru-0.5.1" -; ,go-github-com-hashicorp-golang-lru-0.5.1) -; ("go-github-com-googleapis-gnostic-0.4.1" -; ,go-github-com-googleapis-gnostic-0.4.1) -; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) -; ("go-github-com-google-gofuzz-1.1.0" -; ,go-github-com-google-gofuzz-1.1.0) -; ("go-github-com-google-go-cmp-0.5.2" -; ,go-github-com-google-go-cmp-0.5.2) -; ("go-github-com-golang-protobuf-1.4.3" -; ,go-github-com-golang-protobuf-1.4.3) -; ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" -; ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) -; ("go-github-com-gogo-protobuf-1.3.1" -; ,go-github-com-gogo-protobuf-1.3.1) -; ("go-github-com-fsnotify-fsnotify-1.4.9" -; ,go-github-com-fsnotify-fsnotify-1.4.9) -; ("go-github-com-evanphx-json-patch-4.9.0+incompatible" -; ,go-github-com-evanphx-json-patch-4.9.0+incompatible) -; ("go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153" -; ,go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153) -; ("go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96" -; ,go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://k8s.io/apimachinery") -; (synopsis "apimachinery") -; (description -; "Scheme, typing, encoding, decoding, and conversion packages for Kubernetes and Kubernetes-like API objects.") -; (license license:asl2.0))) -; -;(define-public go-k8s-io-client-go-0.20.4 -; (package -; (name "go-k8s-io-client-go") -; (version "0.20.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes/client-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0g8x2d59qm6068rql63c0mdhcjz9jsyyf7a5fdg1hyf88dvigfcx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "k8s.io/client-go")) -; (propagated-inputs -; `(("go-k8s-io-apimachinery-0.20.4" ,go-k8s-io-apimachinery-0.20.4) -; ("go-k8s-io-api-0.20.4" ,go-k8s-io-api-0.20.4) -; ("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) -; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" -; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) -; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) -; ("go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e" -; ,go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e) -; ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" -; ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) -; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" -; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) -; ("go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0" -; ,go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) -; ("go-github-com-peterbourgon-diskv-2.0.1+incompatible" -; ,go-github-com-peterbourgon-diskv-2.0.1+incompatible) -; ("go-github-com-imdario-mergo-0.3.5" -; ,go-github-com-imdario-mergo-0.3.5) -; ("go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7" -; ,go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7) -; ("go-github-com-googleapis-gnostic-0.4.1" -; ,go-github-com-googleapis-gnostic-0.4.1) -; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) -; ("go-github-com-google-gofuzz-1.1.0" -; ,go-github-com-google-gofuzz-1.1.0) -; ("go-github-com-google-go-cmp-0.5.2" -; ,go-github-com-google-go-cmp-0.5.2) -; ("go-github-com-golang-protobuf-1.4.3" -; ,go-github-com-golang-protobuf-1.4.3) -; ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" -; ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) -; ("go-github-com-gogo-protobuf-1.3.1" -; ,go-github-com-gogo-protobuf-1.3.1) -; ("go-github-com-evanphx-json-patch-4.9.0+incompatible" -; ,go-github-com-evanphx-json-patch-4.9.0+incompatible) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1) -; ("go-github-com-azure-go-autorest-autorest-adal-0.9.5" -; ,go-github-com-azure-go-autorest-autorest-adal-0.9.5) -; ("go-github-com-azure-go-autorest-autorest-0.11.1" -; ,go-github-com-azure-go-autorest-autorest-0.11.1) -; ("go-cloud-google-com-go-0.54.0" ,go-cloud-google-com-go-0.54.0))) -; (home-page "https://k8s.io/client-go") -; (synopsis "client-go") -; (description -; "Go clients for talking to a @url{http://kubernetes.io/,kubernetes} cluster.") -; (license license:asl2.0))) -; -;(define-public go-k8s-io-component-base-0.20.4 -; (package -; (name "go-k8s-io-component-base") -; (version "0.20.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes/component-base") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "02b782p63h8z3pg64i1kfgkmxwslxpyl6afkhd1agbig9zd6g7w8")))) -; (build-system go-build-system) -; (arguments '(#:import-path "k8s.io/component-base")) -; (propagated-inputs -; `(("go-k8s-io-client-go-0.20.4" ,go-k8s-io-client-go-0.20.4) -; ("go-k8s-io-apimachinery-0.20.4" ,go-k8s-io-apimachinery-0.20.4) -; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" -; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) -; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) -; ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) -; ("go-go-uber-org-multierr-1.1.0" ,go-go-uber-org-multierr-1.1.0) -; ("go-go-uber-org-atomic-1.4.0" ,go-go-uber-org-atomic-1.4.0) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) -; ("go-github-com-sirupsen-logrus-1.6.0" -; ,go-github-com-sirupsen-logrus-1.6.0) -; ("go-github-com-prometheus-procfs-0.2.0" -; ,go-github-com-prometheus-procfs-0.2.0) -; ("go-github-com-prometheus-common-0.10.0" -; ,go-github-com-prometheus-common-0.10.0) -; ("go-github-com-prometheus-client-model-0.2.0" -; ,go-github-com-prometheus-client-model-0.2.0) -; ("go-github-com-prometheus-client-golang-1.7.1" -; ,go-github-com-prometheus-client-golang-1.7.1) -; ("go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd" -; ,go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd) -; ("go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369" -; ,go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369) -; ("go-github-com-google-go-cmp-0.5.2" -; ,go-github-com-google-go-cmp-0.5.2) -; ("go-github-com-go-logr-logr-0.2.0" ,go-github-com-go-logr-logr-0.2.0) -; ("go-github-com-blang-semver-3.5.1+incompatible" -; ,go-github-com-blang-semver-3.5.1+incompatible))) -; (home-page "https://k8s.io/component-base") -; (synopsis "component-base") -; (description -; "Implement KEP 32: @url{https://github.com/kubernetes/enhancements/blob/master/keps/sig-cluster-lifecycle/wgs/783-component-base/README.md,https://github.com/kubernetes/enhancements/blob/master/keps/sig-cluster-lifecycle/wgs/783-component-base/README.md}") -; (license license:asl2.0))) -; -;(define-public go-k8s-io-cri-api-0.20.4 -; (package -; (name "go-k8s-io-cri-api") -; (version "0.20.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes/cri-api") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1r98d0kv42sijdg3404xx2g5jj0zixvfagkky2zla12p68ajm4xr")))) -; (build-system go-build-system) -; (arguments '(#:import-path "k8s.io/cri-api")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" -; ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) -; ("go-google-golang-org-protobuf-1.25.0" -; ,go-google-golang-org-protobuf-1.25.0) -; ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) -; ("go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a" -; ,go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a) -; ("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" -; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) -; ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) -; ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" -; ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) -; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" -; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-kr-pretty-0.2.0" ,go-github-com-kr-pretty-0.2.0) -; ("go-github-com-google-go-cmp-0.5.2" -; ,go-github-com-google-go-cmp-0.5.2) -; ("go-github-com-golang-protobuf-1.4.3" -; ,go-github-com-golang-protobuf-1.4.3) -; ("go-github-com-gogo-protobuf-1.3.1" -; ,go-github-com-gogo-protobuf-1.3.1) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://k8s.io/cri-api") -; (synopsis "Purpose") -; (description -; "This repository contains the definitions for the Container Runtime Interface (CRI). -;CRI is a plugin interface which enables kubelet to use a wide variety of container runtimes, -;without the need to recompile. CRI consists of a protocol buffers and gRPC API.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-containerd-1.5.0-rc.0 -; (package -; (name "go-github-com-containerd-containerd") -; (version "1.5.0-rc.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/containerd") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "148z6782bj0vy3vzbhg2xf53g14llvxfsmdsqkz6x5n49rm6xr4i")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/containerd")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) -; ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) -; ("go-github-com-golang-protobuf-1.3.5" -; ,go-github-com-golang-protobuf-1.3.5) -; ("go-github-com-gogo-googleapis-1.3.2" -; ,go-github-com-gogo-googleapis-1.3.2) -; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" -; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) -; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) -; ("go-k8s-io-cri-api-0.20.4" ,go-k8s-io-cri-api-0.20.4) -; ("go-k8s-io-component-base-0.20.4" ,go-k8s-io-component-base-0.20.4) -; ("go-k8s-io-client-go-0.20.4" ,go-k8s-io-client-go-0.20.4) -; ("go-k8s-io-apiserver-0.20.4" ,go-k8s-io-apiserver-0.20.4) -; ("go-k8s-io-apimachinery-0.20.4" ,go-k8s-io-apimachinery-0.20.4) -; ("go-k8s-io-api-0.20.4" ,go-k8s-io-api-0.20.4) -; ("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) -; ("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" -; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) -; ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" -; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) -; ("go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b" -; ,go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b) -; ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) -; ("go-github-com-tchap-go-patricia-2.2.6+incompatible" -; ,go-github-com-tchap-go-patricia-2.2.6+incompatible) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-sirupsen-logrus-1.7.0" -; ,go-github-com-sirupsen-logrus-1.7.0) -; ("go-github-com-prometheus-client-golang-1.7.1" -; ,go-github-com-prometheus-client-golang-1.7.1) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-pelletier-go-toml-1.8.1" -; ,go-github-com-pelletier-go-toml-1.8.1) -; ("go-github-com-opencontainers-selinux-1.8.0" -; ,go-github-com-opencontainers-selinux-1.8.0) -; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" -; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) -; ("go-github-com-opencontainers-runc-1.0.0-rc93" -; ,go-github-com-opencontainers-runc-1.0.0-rc93) -; ("go-github-com-opencontainers-image-spec-1.0.1" -; ,go-github-com-opencontainers-image-spec-1.0.1) -; ("go-github-com-opencontainers-go-digest-1.0.0" -; ,go-github-com-opencontainers-go-digest-1.0.0) -; ("go-github-com-moby-sys-symlink-0.1.0" -; ,go-github-com-moby-sys-symlink-0.1.0) -; ("go-github-com-moby-sys-mountinfo-0.4.1" -; ,go-github-com-moby-sys-mountinfo-0.4.1) -; ("go-github-com-klauspost-compress-1.11.13" -; ,go-github-com-klauspost-compress-1.11.13) -; ("go-github-com-imdario-mergo-0.3.11" -; ,go-github-com-imdario-mergo-0.3.11) -; ("go-github-com-hashicorp-go-multierror-1.0.0" -; ,go-github-com-hashicorp-go-multierror-1.0.0) -; ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" -; ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) -; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) -; ("go-github-com-google-go-cmp-0.5.4" -; ,go-github-com-google-go-cmp-0.5.4) -; ("go-github-com-gogo-protobuf-1.3.2" -; ,go-github-com-gogo-protobuf-1.3.2) -; ("go-github-com-fsnotify-fsnotify-1.4.9" -; ,go-github-com-fsnotify-fsnotify-1.4.9) -; ("go-github-com-emicklei-go-restful-2.9.5+incompatible" -; ,go-github-com-emicklei-go-restful-2.9.5+incompatible) -; ("go-github-com-docker-go-units-0.4.0" -; ,go-github-com-docker-go-units-0.4.0) -; ("go-github-com-docker-go-metrics-0.0.1" -; ,go-github-com-docker-go-metrics-0.0.1) -; ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" -; ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1) -; ("go-github-com-coreos-go-systemd-v22-22.1.0" -; ,go-github-com-coreos-go-systemd-v22-22.1.0) -; ("go-github-com-containernetworking-plugins-0.8.6" -; ,go-github-com-containernetworking-plugins-0.8.6) -; ("go-github-com-containerd-zfs-0.0.0-20210324211415-d5c4544f0433" -; ,go-github-com-containerd-zfs-0.0.0-20210324211415-d5c4544f0433) -; ("go-github-com-containerd-typeurl-1.0.1" -; ,go-github-com-containerd-typeurl-1.0.1) -; ("go-github-com-containerd-ttrpc-1.0.2" -; ,go-github-com-containerd-ttrpc-1.0.2) -; ("go-github-com-containerd-nri-0.0.0-20210316161719-dbaa18c31c14" -; ,go-github-com-containerd-nri-0.0.0-20210316161719-dbaa18c31c14) -; ("go-github-com-containerd-imgcrypt-1.1.1-0.20210312161619-7ed62a527887" -; ,go-github-com-containerd-imgcrypt-1.1.1-0.20210312161619-7ed62a527887) -; ("go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0" -; ,go-github-com-containerd-go-runc-0.0.0-20201020171139-16b287bc67d0) -; ("go-github-com-containerd-go-cni-1.0.1" -; ,go-github-com-containerd-go-cni-1.0.1) -; ("go-github-com-containerd-fifo-0.0.0-20210316144830-115abcc95a1d" -; ,go-github-com-containerd-fifo-0.0.0-20210316144830-115abcc95a1d) -; ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" -; ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) -; ("go-github-com-containerd-console-1.0.1" -; ,go-github-com-containerd-console-1.0.1) -; ("go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68" -; ,go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68) -; ("go-github-com-containerd-btrfs-0.0.0-20210316141732-918d888fb676" -; ,go-github-com-containerd-btrfs-0.0.0-20210316141732-918d888fb676) -; ("go-github-com-containerd-aufs-0.0.0-20210316121734-20793ff83c97" -; ,go-github-com-containerd-aufs-0.0.0-20210316121734-20793ff83c97) -; ("go-github-com-microsoft-hcsshim-0.8.15" -; ,go-github-com-microsoft-hcsshim-0.8.15) -; ("go-github-com-microsoft-go-winio-0.4.17-0.20210324224401-5516f17a5958" -; ,go-github-com-microsoft-go-winio-0.4.17-0.20210324224401-5516f17a5958))) -; (home-page "https://github.com/containerd/containerd") -; (synopsis "Now Recruiting") -; (description -; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20210322153248-0c34fe9e7dc2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "021szs1czc0xg4chpays7i05dvkax9s8mns314ab01r887kchqxq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (propagated-inputs -; `(("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" -; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) -; ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" -; ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68) -; ("go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110" -; ,go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110))) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-github-com-containers-ocicrypt-1.1.1 -; (package -; (name "go-github-com-containers-ocicrypt") -; (version "1.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containers/ocicrypt") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1l0bfk244sxnakg3my529jsw532pffkmiyk5y1iqblz4mkjfphc8")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containers/ocicrypt")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) -; ("go-gopkg-in-square-go-jose-v2-2.5.1" -; ,go-gopkg-in-square-go-jose-v2-2.5.1) -; ("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) -; ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" -; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) -; ("go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2" -; ,go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2) -; ("go-go-mozilla-org-pkcs7-0.0.0-20200128120323-432b2356ecb1" -; ,go-go-mozilla-org-pkcs7-0.0.0-20200128120323-432b2356ecb1) -; ("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0) -; ("go-github-com-stefanberger-go-pkcs11uri-0.0.0-20201008174630-78d3cae3a980" -; ,go-github-com-stefanberger-go-pkcs11uri-0.0.0-20201008174630-78d3cae3a980) -; ("go-github-com-sirupsen-logrus-1.7.0" -; ,go-github-com-sirupsen-logrus-1.7.0) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-image-spec-1.0.1" -; ,go-github-com-opencontainers-image-spec-1.0.1) -; ("go-github-com-opencontainers-go-digest-1.0.0" -; ,go-github-com-opencontainers-go-digest-1.0.0) -; ("go-github-com-miekg-pkcs11-1.0.3" ,go-github-com-miekg-pkcs11-1.0.3) -; ("go-github-com-google-go-cmp-0.5.2" -; ,go-github-com-google-go-cmp-0.5.2) -; ("go-github-com-golang-protobuf-1.4.3" -; ,go-github-com-golang-protobuf-1.4.3))) -; (home-page "https://github.com/containers/ocicrypt") -; (synopsis "OCIcrypt Library") -; (description -; "The @code{ocicrypt} library is the OCI image spec implementation of container image encryption. More details of the spec can be seen in the @url{https://github.com/opencontainers/image-spec/pull/775,OCI repository}. The purpose of this library is to encode spec structures and consts in code, as well as provide a consistent implementation of image encryption across container runtimes and build tools.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-imgcrypt-1.1.1 -; (package -; (name "go-github-com-containerd-imgcrypt") -; (version "1.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/imgcrypt") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "177fs3p2xzwjsffcxqqllx6wi6ghfyqbvfgn95v3q7a2993yqk4k")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/imgcrypt")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) -; ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" -; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) -; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) -; ("go-github-com-sirupsen-logrus-1.7.0" -; ,go-github-com-sirupsen-logrus-1.7.0) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" -; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) -; ("go-github-com-opencontainers-image-spec-1.0.1" -; ,go-github-com-opencontainers-image-spec-1.0.1) -; ("go-github-com-opencontainers-go-digest-1.0.0" -; ,go-github-com-opencontainers-go-digest-1.0.0) -; ("go-github-com-gogo-protobuf-1.3.2" -; ,go-github-com-gogo-protobuf-1.3.2) -; ("go-github-com-containers-ocicrypt-1.1.1" -; ,go-github-com-containers-ocicrypt-1.1.1) -; ("go-github-com-containerd-typeurl-1.0.1" -; ,go-github-com-containerd-typeurl-1.0.1) -; ("go-github-com-containerd-containerd-1.5.0-rc.0" -; ,go-github-com-containerd-containerd-1.5.0-rc.0) -; ("go-github-com-containerd-console-1.0.2" -; ,go-github-com-containerd-console-1.0.2) -; ("go-github-com-microsoft-hcsshim-0.8.16" -; ,go-github-com-microsoft-hcsshim-0.8.16) -; ("go-github-com-microsoft-go-winio-0.4.17-0.20210324224401-5516f17a5958" -; ,go-github-com-microsoft-go-winio-0.4.17-0.20210324224401-5516f17a5958))) -; (home-page "https://github.com/containerd/imgcrypt") -; (synopsis "imgcrypt image encryption library and command line tool") -; (description -; "Project @code{imgcrypt} is a non-core subproject of containerd.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-nri-0.1.0 -; (package -; (name "go-github-com-containerd-nri") -; (version "0.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/nri") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0hqji5qa0n0fdyv9sjdl7mv3bb4fnq9i79pdzlw6m1nigrnb18qp")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/nri")) -; (propagated-inputs -; `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-containerd-containerd-1.5.0-beta.3" -; ,go-github-com-containerd-containerd-1.5.0-beta.3))) -; (home-page "https://github.com/containerd/nri") -; (synopsis "nri - Node Resource Interface") -; (description -; "This project is a WIP for a new, CNI like, interface for managing resources on a node for Pods and Containers.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20200224152610-e50cd9704f63 -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20200224152610-e50cd9704f63") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1392q1dfg4kkfg86w05gsszdlkd0hf424rvich1xzjqbm3ad3lin")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" -; ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) -; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) -; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" -; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-github-com-golang-protobuf-1.3.3" -; ,go-github-com-golang-protobuf-1.3.3))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-ttrpc-1.1.0 -; (package -; (name "go-github-com-containerd-ttrpc") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/ttrpc") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "13grp3ivmkdyhwpzhnva2w4lv035c4i1m0a2bdci4z44mif86gns")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/ttrpc")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.27.1" -; ,go-google-golang-org-protobuf-1.27.1) -; ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) -; ("go-google-golang-org-genproto-0.0.0-20200224152610-e50cd9704f63" -; ,go-google-golang-org-genproto-0.0.0-20200224152610-e50cd9704f63) -; ("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" -; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) -; ("go-github-com-sirupsen-logrus-1.8.1" -; ,go-github-com-sirupsen-logrus-1.8.1) -; ("go-github-com-prometheus-procfs-0.6.0" -; ,go-github-com-prometheus-procfs-0.6.0) -; ("go-github-com-gogo-protobuf-1.3.2" -; ,go-github-com-gogo-protobuf-1.3.2))) -; (home-page "https://github.com/containerd/ttrpc") -; (synopsis "ttrpc") -; (description "GRPC for low-memory environments.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-typeurl-1.0.2 -; (package -; (name "go-github-com-containerd-typeurl") -; (version "1.0.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/typeurl") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0wvfxlxgkln11d9s6rxay965c715bnpk203klbsq8m8qpjqrz620")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/typeurl")) -; (propagated-inputs -; `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-gogo-protobuf-1.3.2" -; ,go-github-com-gogo-protobuf-1.3.2))) -; (home-page "https://github.com/containerd/typeurl") -; (synopsis "typeurl") -; (description -; "This package provides a Go package for managing the registration, marshaling, and unmarshaling of encoded types.") -; (license license:asl2.0))) -; -;(define-public go-github-com-microsoft-hcsshim-0.8.15 -; (package -; (name "go-github-com-microsoft-hcsshim") -; (version "0.8.15") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/microsoft/hcsshim") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1119qf7nklpnn9li61m8jrd5wvifhiz7qh7sfjjy04rfvbvlsi6c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/Microsoft/hcsshim")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.30.0" ,go-google-golang-org-grpc-1.30.0) -; ("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" -; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) -; ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" -; ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) -; ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) -; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) -; ("go-github-com-sirupsen-logrus-1.7.0" -; ,go-github-com-sirupsen-logrus-1.7.0) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" -; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) -; ("go-github-com-gogo-protobuf-1.3.2" -; ,go-github-com-gogo-protobuf-1.3.2) -; ("go-github-com-containerd-typeurl-1.0.1" -; ,go-github-com-containerd-typeurl-1.0.1) -; ("go-github-com-containerd-ttrpc-1.0.2" -; ,go-github-com-containerd-ttrpc-1.0.2) -; ("go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328" -; ,go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328) -; ("go-github-com-containerd-containerd-1.5.0-beta.1" -; ,go-github-com-containerd-containerd-1.5.0-beta.1) -; ("go-github-com-containerd-console-1.0.1" -; ,go-github-com-containerd-console-1.0.1) -; ("go-github-com-containerd-cgroups-0.0.0-20200824123100-0b889c03f102" -; ,go-github-com-containerd-cgroups-0.0.0-20200824123100-0b889c03f102) -; ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" -; ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3))) -; (home-page "https://github.com/Microsoft/hcsshim") -; (synopsis "hcsshim") -; (description -; "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") -; (license license:expat))) -; -;(define-public go-github-com-containerd-containerd-1.4.1 -; (package -; (name "go-github-com-containerd-containerd") -; (version "1.4.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/containerd") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1k6dqaidnldf7kpxdszf0wn6xb8m6vaizm2aza81fri1q0051213")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/containerd")) -; (home-page "https://github.com/containerd/containerd") -; (synopsis "Now Recruiting") -; (description -; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-sys-0.0.0-20200622214017-ed371f2e16b4 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20200622214017-ed371f2e16b4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "107wfy2fj6z5zps1v72j8drfrfvss1158drb0yqhz5awlbvgrpj7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-containerd-aufs-0.0.0-20201003224125-76a6863f2989 -; (package -; (name "go-github-com-containerd-aufs") -; (version "0.0.0-20201003224125-76a6863f2989") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/aufs") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0nsiyqjrgf3vvv6hpiljknpbkzlla1czpkq69i607f7p5jd8bgaq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/aufs")) -; (propagated-inputs -; `(("go-gotest-tools-v3-3.0.2" ,go-gotest-tools-v3-3.0.2) -; ("go-golang-org-x-sys-0.0.0-20200622214017-ed371f2e16b4" -; ,go-golang-org-x-sys-0.0.0-20200622214017-ed371f2e16b4) -; ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-image-spec-1.0.1" -; ,go-github-com-opencontainers-image-spec-1.0.1) -; ("go-github-com-google-go-cmp-0.3.1" -; ,go-github-com-google-go-cmp-0.3.1) -; ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" -; ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) -; ("go-github-com-containerd-typeurl-1.0.1" -; ,go-github-com-containerd-typeurl-1.0.1) -; ("go-github-com-containerd-ttrpc-1.0.1" -; ,go-github-com-containerd-ttrpc-1.0.1) -; ("go-github-com-containerd-continuity-0.0.0-20200710164510-efbc4488d8fe" -; ,go-github-com-containerd-continuity-0.0.0-20200710164510-efbc4488d8fe) -; ("go-github-com-containerd-containerd-1.4.1" -; ,go-github-com-containerd-containerd-1.4.1) -; ("go-github-com-microsoft-hcsshim-0.8.9" -; ,go-github-com-microsoft-hcsshim-0.8.9))) -; (home-page "https://github.com/containerd/aufs") -; (synopsis "aufs snapshotter") -; (description -; "AUFS implementation of the snapshot interface for containerd.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68 -; (package -; (name "go-github-com-containerd-cgroups") -; (version "0.0.0-20210114181951-8a68de567b68") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/cgroups") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0v70kxazvsizx33w9nz341hg14acg2vnbfcpx9yknmsjqdwgqnhs")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/cgroups")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9" -; ,go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9) -; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) -; ("go-github-com-stretchr-testify-1.2.2" -; ,go-github-com-stretchr-testify-1.2.2) -; ("go-github-com-sirupsen-logrus-1.7.0" -; ,go-github-com-sirupsen-logrus-1.7.0) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-runtime-spec-1.0.2" -; ,go-github-com-opencontainers-runtime-spec-1.0.2) -; ("go-github-com-gogo-protobuf-1.3.1" -; ,go-github-com-gogo-protobuf-1.3.1) -; ("go-github-com-godbus-dbus-v5-5.0.3" -; ,go-github-com-godbus-dbus-v5-5.0.3) -; ("go-github-com-docker-go-units-0.4.0" -; ,go-github-com-docker-go-units-0.4.0) -; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" -; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) -; ("go-github-com-coreos-go-systemd-v22-22.1.0" -; ,go-github-com-coreos-go-systemd-v22-22.1.0) -; ("go-github-com-cilium-ebpf-0.2.0" ,go-github-com-cilium-ebpf-0.2.0))) -; (home-page "https://github.com/containerd/cgroups") -; (synopsis "cgroups") -; (description -; "Go package for creating, managing, inspecting, and destroying cgroups. -;The resources format for settings on the cgroup uses the OCI runtime-spec found -;@url{https://github.com/opencontainers/runtime-spec,here}.") -; (license license:asl2.0))) -; -;(define-public go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3 -; (package -; (name "go-github-com-microsoft-go-winio") -; (version "0.4.17-0.20210211115548-6eac466e5fa3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/microsoft/go-winio") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0w8fmybsl0v5azwi66qa299gwh0mlp907mrg4yaiya7s0cjmjx0d")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/Microsoft/go-winio")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" -; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) -; ("go-github-com-sirupsen-logrus-1.7.0" -; ,go-github-com-sirupsen-logrus-1.7.0) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) -; (home-page "https://github.com/Microsoft/go-winio") -; (synopsis "go-winio") -; (description -; "This repository contains utilities for efficiently performing Win32 IO operations in -;Go. Currently, this is focused on accessing named pipes and other file handles, and -;for using named pipes as a net transport.") -; (license license:expat))) -; -;(define-public go-github-com-microsoft-hcsshim-test-0.0.0-20210227013316-43a75bb4edd3 -; (package -; (name "go-github-com-microsoft-hcsshim-test") -; (version "0.0.0-20210227013316-43a75bb4edd3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/microsoft/hcsshim") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1j899w4hdw1mk6rfyy9qsm902iavgc49ykbjdsb02m6wszq1z0wy")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path -; "github.com/Microsoft/hcsshim/test" -; #:unpack-path -; "github.com/Microsoft/hcsshim")) -; (propagated-inputs -; `(("go-k8s-io-cri-api-0.20.1" ,go-k8s-io-cri-api-0.20.1) -; ("go-google-golang-org-grpc-1.30.0" ,go-google-golang-org-grpc-1.30.0) -; ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" -; ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) -; ("go-github-com-sirupsen-logrus-1.7.0" -; ,go-github-com-sirupsen-logrus-1.7.0) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39" -; ,go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39) -; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" -; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) -; ("go-github-com-gogo-protobuf-1.3.2" -; ,go-github-com-gogo-protobuf-1.3.2) -; ("go-github-com-containerd-typeurl-1.0.1" -; ,go-github-com-containerd-typeurl-1.0.1) -; ("go-github-com-containerd-ttrpc-1.0.2" -; ,go-github-com-containerd-ttrpc-1.0.2) -; ("go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328" -; ,go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328) -; ("go-github-com-containerd-containerd-1.5.0-beta.1" -; ,go-github-com-containerd-containerd-1.5.0-beta.1) -; ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" -; ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3))) -; (home-page "https://github.com/Microsoft/hcsshim") -; (synopsis #f) -; (description #f) -; (license license:expat))) -; -;(define-public go-github-com-microsoft-go-winio-0.4.16 -; (package -; (name "go-github-com-microsoft-go-winio") -; (version "0.4.16") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/microsoft/go-winio") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0snwbwdjs34x0my9ri77cvrbnahdiyjh2jlkzf12fy48p7fyk7pq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/Microsoft/go-winio")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3" -; ,go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3) -; ("go-github-com-sirupsen-logrus-1.4.1" -; ,go-github-com-sirupsen-logrus-1.4.1) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) -; (home-page "https://github.com/Microsoft/go-winio") -; (synopsis "go-winio") -; (description -; "This repository contains utilities for efficiently performing Win32 IO operations in -;Go. Currently, this is focused on accessing named pipes and other file handles, and -;for using named pipes as a net transport.") -; (license license:expat))) -; -;(define-public go-github-com-azure-azure-sdk-for-go-16.2.1+incompatible -; (package -; (name "go-github-com-azure-azure-sdk-for-go") -; (version "16.2.1+incompatible") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/Azure/azure-sdk-for-go") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1hwrspsyfs003h4f8zl8b41g3a6jpkqawqrykd1mjw9p6hs1c6k8")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/Azure/azure-sdk-for-go")) -; (home-page "https://github.com/Azure/azure-sdk-for-go") -; (synopsis "Azure SDK for Go") -; (description -; "Package sdk provides Go packages for managing and using Azure services. -;") -; (license license:expat))) -; -;(define-public go-github-com-azure-go-autorest-10.8.1+incompatible -; (package -; (name "go-github-com-azure-go-autorest") -; (version "10.8.1+incompatible") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/Azure/go-autorest") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "122zfifj93vkix8ggkdh0dz5rmzxh4bql4nry1hws2czmzgxlkdm")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/Azure/go-autorest")) -; (home-page "https://github.com/Azure/go-autorest") -; (synopsis "go-autorest") -; (description -; "Package go-autorest provides an HTTP request client for use with Autorest-generated API client packages. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-go-ini-ini-1.25.4 -; (package -; (name "go-github-com-go-ini-ini") -; (version "1.25.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/go-ini/ini") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0b6cql5ripbiyrm18d6bfd1rfjnwcbskppw3d0vb80l0wy72d0c6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/go-ini/ini")) -; (home-page "https://github.com/go-ini/ini") -; (synopsis "INI") -; (description -; "Package ini provides INI file read and write functionality in Go. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-jmespath-go-jmespath-0.0.0-20160202185014-0b12d6b521d8 -; (package -; (name "go-github-com-jmespath-go-jmespath") -; (version "0.0.0-20160202185014-0b12d6b521d8") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/jmespath/go-jmespath") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1vv6hph8j6xgv7gwl9vvhlsaaqsm22sxxqmgmldi4v11783pc1ld")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/jmespath/go-jmespath")) -; (home-page "https://github.com/jmespath/go-jmespath") -; (synopsis "go-jmespath - A JMESPath implementation in Go") -; (description -; "go-jmespath is a GO implementation of JMESPath, -;which is a query language for JSON. It will take a JSON -;document and transform it into another JSON document -;through a JMESPath expression.") -; (license license:asl2.0))) -; -;(define-public go-github-com-aws-aws-sdk-go-1.15.11 -; (package -; (name "go-github-com-aws-aws-sdk-go") -; (version "1.15.11") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/aws/aws-sdk-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0w960w39k3nyc17p1lvd41cls39qwg7kzfm57vfbdb4h1m5sck99")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/aws/aws-sdk-go")) -; (propagated-inputs -; `(("go-github-com-jmespath-go-jmespath-0.0.0-20160202185014-0b12d6b521d8" -; ,go-github-com-jmespath-go-jmespath-0.0.0-20160202185014-0b12d6b521d8) -; ("go-github-com-go-ini-ini-1.25.4" ,go-github-com-go-ini-ini-1.25.4))) -; (home-page "https://github.com/aws/aws-sdk-go") -; (synopsis "AWS SDK for Go") -; (description -; "Package sdk is the official AWS SDK for the Go programming language. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-beorn7-perks-0.0.0-20160804104726-4c0e84591b9a -; (package -; (name "go-github-com-beorn7-perks") -; (version "0.0.0-20160804104726-4c0e84591b9a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/beorn7/perks") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1hrybsql68xw57brzj805xx2mghydpdiysv3gbhr7f5wlxj2514y")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/beorn7/perks")) -; (home-page "https://github.com/beorn7/perks") -; (synopsis "Perks for Go (golang.org)") -; (description -; "Perks contains the Go package quantile that computes approximate quantiles over -;an unbounded data stream within low memory and CPU bounds.") -; (license license:expat))) -; -;(define-public go-github-com-bmizerany-assert-0.0.0-20160611221934-b7ed37b82869 -; (package -; (name "go-github-com-bmizerany-assert") -; (version "0.0.0-20160611221934-b7ed37b82869") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/bmizerany/assert") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "18hy1wyl9zdi7sgxafrn3m7fadh6in0rhhb8l0cvkxqzdl0jcw2s")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/bmizerany/assert")) -; (home-page "https://github.com/bmizerany/assert") -; (synopsis #f) -; (description #f) -; (license #f))) -; -;(define-public go-github-com-bshuster-repo-logrus-logstash-hook-0.4.1 -; (package -; (name "go-github-com-bshuster-repo-logrus-logstash-hook") -; (version "0.4.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/bshuster-repo/logrus-logstash-hook") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1kkjzav4i3l2ahgpirysr0cqh60vdq517lpj00cc9z32zfrsw87k")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "github.com/bshuster-repo/logrus-logstash-hook")) -; (home-page "https://github.com/bshuster-repo/logrus-logstash-hook") -; (synopsis "Logstash hook for logrus") -; (description -; "Use this hook to send the logs to @url{https://www.elastic.co/products/logstash,Logstash}.") -; (license license:expat))) -; -;(define-public go-github-com-dgrijalva-jwt-go-0.0.0-20170104182250-a601269ab70c -; (package -; (name "go-github-com-dgrijalva-jwt-go") -; (version "0.0.0-20170104182250-a601269ab70c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/dgrijalva/jwt-go") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1c2dhmj95wh9cs099cr43qghgmp6bqx0mq44vha2dqq5jkbazwfv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/dgrijalva/jwt-go")) -; (home-page "https://github.com/dgrijalva/jwt-go") -; (synopsis "jwt-go") -; (description -; "Package jwt is a Go implementation of JSON Web Tokens: @url{http://self-issued.info/docs/draft-jones-json-web-token.html,http://self-issued.info/docs/draft-jones-json-web-token.html} -;") -; (license license:expat))) -; -;(define-public go-github-com-docker-go-metrics-0.0.0-20180209012529-399ea8c73916 -; (package -; (name "go-github-com-docker-go-metrics") -; (version "0.0.0-20180209012529-399ea8c73916") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/docker/go-metrics") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0najfy92fq05b330cnjk5b326yi7dnnmvzfk6g5lsa1fci78yzw4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/docker/go-metrics")) -; (home-page "https://github.com/docker/go-metrics") -; (synopsis "go-metrics") -; (description -; "This package is small wrapper around the prometheus go client to help enforce convention and best practices for metrics collection in Docker projects.") -; (license (list license:asl2.0 license:cc-by-sa4.0)))) -; -;(define-public go-github-com-garyburd-redigo-0.0.0-20150301180006-535138d7bcd7 -; (package -; (name "go-github-com-garyburd-redigo") -; (version "0.0.0-20150301180006-535138d7bcd7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/garyburd/redigo") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1m7nc1gvv5yqnq8ii75f33485il6y6prf8gxl97dimsw94qccc5v")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/garyburd/redigo")) -; (home-page "https://github.com/garyburd/redigo") -; (synopsis #f) -; (description -; "Future development of Redigo is at -;@url{https://github.com/gomodule/redigo,github.com/gomodule/redigo}. Please submit -;issues at gomodule/redigo. The repository at github.com/garyburd/redigo is a -;read-only snapshot.") -; (license license:asl2.0))) -; -;(define-public go-github-com-gorilla-handlers-0.0.0-20150720190736-60c7bfde3e33 -; (package -; (name "go-github-com-gorilla-handlers") -; (version "0.0.0-20150720190736-60c7bfde3e33") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/gorilla/handlers") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0zvpxvybdn8yqpk2cxs134ip9wxmw6c1s0kw9nahf7qw1kfyzycm")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/gorilla/handlers")) -; (home-page "https://github.com/gorilla/handlers") -; (synopsis "gorilla/handlers") -; (description -; "Package handlers is a collection of handlers (aka \"HTTP middleware\") for use -;with Go's net/http package (or any framework supporting http.Handler). -;") -; (license license:bsd-2))) -; -;(define-public go-github-com-gorilla-mux-1.7.2 -; (package -; (name "go-github-com-gorilla-mux") -; (version "1.7.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/gorilla/mux") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1gjcbgpdl3snc38i8sj8k6sqbv3inyrxqyggbqvr4jfx2phv2zy6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/gorilla/mux")) -; (home-page "https://github.com/gorilla/mux") -; (synopsis "gorilla/mux") -; (description "Package mux implements a request router and dispatcher. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-jmespath-go-jmespath-0.0.0-20160803190731-bd40a432e4c7 -; (package -; (name "go-github-com-jmespath-go-jmespath") -; (version "0.0.0-20160803190731-bd40a432e4c7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/jmespath/go-jmespath") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1kgzwiyqn24ba9kgpjxlq1h746gnyby0psbjj9mp2yx0h1i0kc4z")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/jmespath/go-jmespath")) -; (home-page "https://github.com/jmespath/go-jmespath") -; (synopsis "go-jmespath - A JMESPath implementation in Go") -; (description -; "go-jmespath is a GO implementation of JMESPath, -;which is a query language for JSON. It will take a JSON -;document and transform it into another JSON document -;through a JMESPath expression.") -; (license license:asl2.0))) -; -;(define-public go-github-com-marstr-guid-1.1.0 -; (package -; (name "go-github-com-marstr-guid") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/marstr/guid") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "081qrar6wwpmb2pq3swv4byh73r9riyhl2dwv0902d8jg3kwricm")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/marstr/guid")) -; (home-page "https://github.com/marstr/guid") -; (synopsis "Guid") -; (description -; "Globally unique identifiers offer a quick means of generating non-colliding values across a distributed system. For this implemenation, @url{http://ietf.org/rfc/rfc4122.txt,RFC 4122} governs the desired behavior.") -; (license license:expat))) -; -;(define-public go-github-com-opencontainers-go-digest-0.0.0-20170106003457-a6d0ee40d420 -; (package -; (name "go-github-com-opencontainers-go-digest") -; (version "0.0.0-20170106003457-a6d0ee40d420") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/go-digest") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1paz3na2xkhi10p5bk7f7gbh5yykfgr9f9i2gcc13rb461yq6fmg")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/go-digest")) -; (home-page "https://github.com/opencontainers/go-digest") -; (synopsis "go-digest") -; (description -; "Package digest provides a generalized type to opaquely represent message -;digests and their operations within the registry. The Digest type is -;designed to serve as a flexible identifier in a content-addressable system. -;More importantly, it provides tools and wrappers to work with -;hash.Hash-based digests with little effort. -;") -; (license (list license:asl2.0 license:cc-by-sa4.0)))) -; -;(define-public go-github-com-opencontainers-image-spec-1.0.0 -; (package -; (name "go-github-com-opencontainers-image-spec") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/image-spec") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "04ax2pylpwzsa5pw6wk94shdpdmfyqf70ys0idhpxsygzc2m5l23")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/image-spec")) -; (home-page "https://github.com/opencontainers/image-spec") -; (synopsis "OCI Image Format Specification") -; (description -; "The OCI Image Format project creates and maintains the software shipping container image format spec (OCI Image Format).") -; (license license:asl2.0))) -; -;(define-public go-github-com-prometheus-client-golang-0.0.0-20180209125602-c332b6f63c06 -; (package -; (name "go-github-com-prometheus-client-golang") -; (version "0.0.0-20180209125602-c332b6f63c06") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/client_golang") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "068r759wnh1lxcjhj89z4bqbpl7ydcx2drn2967ygw80nyab30pq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/client_golang")) -; (home-page "https://github.com/prometheus/client_golang") -; (synopsis "Prometheus Go client library") -; (description -; "This is the @url{http://golang.org,Go} client library for -;@url{http://prometheus.io,Prometheus}. It has two separate parts, one for -;instrumenting application code, and one for creating clients that talk to the -;Prometheus HTTP API.") -; (license license:asl2.0))) -; -;(define-public go-github-com-prometheus-client-model-0.0.0-20171117100541-99fa1f4be8e5 -; (package -; (name "go-github-com-prometheus-client-model") -; (version "0.0.0-20171117100541-99fa1f4be8e5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/client_model") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "19y4ywsivhpxj7ikf2j0gm9k3cmyw37qcbfi78n526jxcc7kw998")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/client_model")) -; (home-page "https://github.com/prometheus/client_model") -; (synopsis "Deprecation note") -; (description -; "This repository used to contain the code that defined both -;the data model and the exposition format of Prometheus metrics.") -; (license license:asl2.0))) -; -;(define-public go-github-com-prometheus-common-0.0.0-20180110214958-89604d197083 -; (package -; (name "go-github-com-prometheus-common") -; (version "0.0.0-20180110214958-89604d197083") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/common") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "169rdlaf2mk9z4fydz7ajmngyhmf3q1lk96yhvx46bn986x5xkyn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/common")) -; (home-page "https://github.com/prometheus/common") -; (synopsis "Common") -; (description -; "This repository contains Go libraries that are shared across Prometheus -;components and libraries. They are considered internal to Prometheus, without -;any stability guarantees for external usage.") -; (license license:asl2.0))) -; -;(define-public go-github-com-smartystreets-goconvey-0.0.0-20190330032615-68dc04aab96a -; (package -; (name "go-github-com-smartystreets-goconvey") -; (version "0.0.0-20190330032615-68dc04aab96a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/smartystreets/goconvey") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1kas5v95fzhr88hg4rjy0vp03y4pzvy3pwwgkfz2yhn5nlj29nk6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/smartystreets/goconvey")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20190328211700-ab21143f2384" -; ,go-golang-org-x-tools-0.0.0-20190328211700-ab21143f2384) -; ("go-github-com-smartystreets-assertions-0.0.0-20180927180507-b2de0cb4f26d" -; ,go-github-com-smartystreets-assertions-0.0.0-20180927180507-b2de0cb4f26d) -; ("go-github-com-jtolds-gls-4.20.0+incompatible" -; ,go-github-com-jtolds-gls-4.20.0+incompatible) -; ("go-github-com-gopherjs-gopherjs-0.0.0-20181017120253-0766667cb4d1" -; ,go-github-com-gopherjs-gopherjs-0.0.0-20181017120253-0766667cb4d1))) -; (home-page "https://github.com/smartystreets/goconvey") -; (synopsis "GoConvey is awesome Go testing") -; (description -; "This executable provides an HTTP server that watches for file system changes -;to .go files within the working directory (and all nested go packages). -;Navigating to the configured host and port in a web browser will display the -;latest results of running `go test` in each go package. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-net-0.0.0-20190619014844-b5b0513f8c1b -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20190619014844-b5b0513f8c1b") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0sr4gbiq09izkmm6hcmfnia6lz6ngzzqjbwlrzh7jifbzyck53wz")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190602015325-4c4f7f33c9ed -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190602015325-4c4f7f33c9ed") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "191001bxqyc3xfs46nnqmm7jdk0r73vk7a4zqngfl7zwjv9smwsq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-docker-distribution-0.0.0-20190905152932-14b96e55d84c -; (package -; (name "go-github-com-docker-distribution") -; (version "0.0.0-20190905152932-14b96e55d84c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/distribution/distribution") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0jd7ccjy7ahznsh6hf9dhqbgn9glwc0db9g5nv8n6sys5d1jdni9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/docker/distribution")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) -; ("go-gopkg-in-check-v1-1.0.0-20141024133853-64131543e789" -; ,go-gopkg-in-check-v1-1.0.0-20141024133853-64131543e789) -; ("go-google-golang-org-grpc-0.0.0-20160317175043-d3ddb4469d5a" -; ,go-google-golang-org-grpc-0.0.0-20160317175043-d3ddb4469d5a) -; ("go-google-golang-org-cloud-0.0.0-20151119220103-975617b05ea8" -; ,go-google-golang-org-cloud-0.0.0-20151119220103-975617b05ea8) -; ("go-google-golang-org-api-0.0.0-20160322025152-9bf6e6e569ff" -; ,go-google-golang-org-api-0.0.0-20160322025152-9bf6e6e569ff) -; ("go-golang-org-x-sys-0.0.0-20190602015325-4c4f7f33c9ed" -; ,go-golang-org-x-sys-0.0.0-20190602015325-4c4f7f33c9ed) -; ("go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45" -; ,go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45) -; ("go-golang-org-x-net-0.0.0-20190619014844-b5b0513f8c1b" -; ,go-golang-org-x-net-0.0.0-20190619014844-b5b0513f8c1b) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2) -; ("go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20140908184405-b21fdbd4370f" -; ,go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20140908184405-b21fdbd4370f) -; ("go-github-com-yvasiyarov-gorelic-0.0.0-20141212073537-a9bba5b9ab50" -; ,go-github-com-yvasiyarov-gorelic-0.0.0-20141212073537-a9bba5b9ab50) -; ("go-github-com-yvasiyarov-go-metrics-0.0.0-20140926110328-57bccd1ccd43" -; ,go-github-com-yvasiyarov-go-metrics-0.0.0-20140926110328-57bccd1ccd43) -; ("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0) -; ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) -; ("go-github-com-spf13-cobra-0.0.3" ,go-github-com-spf13-cobra-0.0.3) -; ("go-github-com-smartystreets-goconvey-0.0.0-20190330032615-68dc04aab96a" -; ,go-github-com-smartystreets-goconvey-0.0.0-20190330032615-68dc04aab96a) -; ("go-github-com-sirupsen-logrus-1.4.2" -; ,go-github-com-sirupsen-logrus-1.4.2) -; ("go-github-com-satori-go-uuid-1.2.0" -; ,go-github-com-satori-go-uuid-1.2.0) -; ("go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7" -; ,go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7) -; ("go-github-com-prometheus-common-0.0.0-20180110214958-89604d197083" -; ,go-github-com-prometheus-common-0.0.0-20180110214958-89604d197083) -; ("go-github-com-prometheus-client-model-0.0.0-20171117100541-99fa1f4be8e5" -; ,go-github-com-prometheus-client-model-0.0.0-20171117100541-99fa1f4be8e5) -; ("go-github-com-prometheus-client-golang-0.0.0-20180209125602-c332b6f63c06" -; ,go-github-com-prometheus-client-golang-0.0.0-20180209125602-c332b6f63c06) -; ("go-github-com-opencontainers-image-spec-1.0.0" -; ,go-github-com-opencontainers-image-spec-1.0.0) -; ("go-github-com-opencontainers-go-digest-0.0.0-20170106003457-a6d0ee40d420" -; ,go-github-com-opencontainers-go-digest-0.0.0-20170106003457-a6d0ee40d420) -; ("go-github-com-ncw-swift-1.0.47" ,go-github-com-ncw-swift-1.0.47) -; ("go-github-com-mitchellh-osext-0.0.0-20151018003038-5e2d6d41470f" -; ,go-github-com-mitchellh-osext-0.0.0-20151018003038-5e2d6d41470f) -; ("go-github-com-mitchellh-mapstructure-1.1.2" -; ,go-github-com-mitchellh-mapstructure-1.1.2) -; ("go-github-com-matttproud-golang-protobuf-extensions-1.0.1" -; ,go-github-com-matttproud-golang-protobuf-extensions-1.0.1) -; ("go-github-com-marstr-guid-1.1.0" ,go-github-com-marstr-guid-1.1.0) -; ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) -; ("go-github-com-jmespath-go-jmespath-0.0.0-20160803190731-bd40a432e4c7" -; ,go-github-com-jmespath-go-jmespath-0.0.0-20160803190731-bd40a432e4c7) -; ("go-github-com-inconshreveable-mousetrap-1.0.0" -; ,go-github-com-inconshreveable-mousetrap-1.0.0) -; ("go-github-com-gorilla-mux-1.7.2" ,go-github-com-gorilla-mux-1.7.2) -; ("go-github-com-gorilla-handlers-0.0.0-20150720190736-60c7bfde3e33" -; ,go-github-com-gorilla-handlers-0.0.0-20150720190736-60c7bfde3e33) -; ("go-github-com-garyburd-redigo-0.0.0-20150301180006-535138d7bcd7" -; ,go-github-com-garyburd-redigo-0.0.0-20150301180006-535138d7bcd7) -; ("go-github-com-docker-libtrust-0.0.0-20150114040149-fa567046d9b1" -; ,go-github-com-docker-libtrust-0.0.0-20150114040149-fa567046d9b1) -; ("go-github-com-docker-go-metrics-0.0.0-20180209012529-399ea8c73916" -; ,go-github-com-docker-go-metrics-0.0.0-20180209012529-399ea8c73916) -; ("go-github-com-dnaeon-go-vcr-1.0.1" -; ,go-github-com-dnaeon-go-vcr-1.0.1) -; ("go-github-com-dgrijalva-jwt-go-0.0.0-20170104182250-a601269ab70c" -; ,go-github-com-dgrijalva-jwt-go-0.0.0-20170104182250-a601269ab70c) -; ("go-github-com-denverdino-aliyungo-0.0.0-20190125010748-a747050bb1ba" -; ,go-github-com-denverdino-aliyungo-0.0.0-20190125010748-a747050bb1ba) -; ("go-github-com-bugsnag-panicwrap-0.0.0-20151223152923-e2c28503fcd0" -; ,go-github-com-bugsnag-panicwrap-0.0.0-20151223152923-e2c28503fcd0) -; ("go-github-com-bugsnag-osext-0.0.0-20130617224835-0dd3f918b21b" -; ,go-github-com-bugsnag-osext-0.0.0-20130617224835-0dd3f918b21b) -; ("go-github-com-bugsnag-bugsnag-go-0.0.0-20141110184014-b1d153021fcd" -; ,go-github-com-bugsnag-bugsnag-go-0.0.0-20141110184014-b1d153021fcd) -; ("go-github-com-bshuster-repo-logrus-logstash-hook-0.4.1" -; ,go-github-com-bshuster-repo-logrus-logstash-hook-0.4.1) -; ("go-github-com-bmizerany-assert-0.0.0-20160611221934-b7ed37b82869" -; ,go-github-com-bmizerany-assert-0.0.0-20160611221934-b7ed37b82869) -; ("go-github-com-bitly-go-simplejson-0.5.0" -; ,go-github-com-bitly-go-simplejson-0.5.0) -; ("go-github-com-beorn7-perks-0.0.0-20160804104726-4c0e84591b9a" -; ,go-github-com-beorn7-perks-0.0.0-20160804104726-4c0e84591b9a) -; ("go-github-com-aws-aws-sdk-go-1.15.11" -; ,go-github-com-aws-aws-sdk-go-1.15.11) -; ("go-github-com-shopify-logrus-bugsnag-0.0.0-20171204204709-577dee27f20d" -; ,go-github-com-shopify-logrus-bugsnag-0.0.0-20171204204709-577dee27f20d) -; ("go-github-com-azure-go-autorest-10.8.1+incompatible" -; ,go-github-com-azure-go-autorest-10.8.1+incompatible) -; ("go-github-com-azure-azure-sdk-for-go-16.2.1+incompatible" -; ,go-github-com-azure-azure-sdk-for-go-16.2.1+incompatible))) -; (home-page "https://github.com/docker/distribution") -; (synopsis "Distribution") -; (description -; "Package distribution will define the interfaces for the components of -;docker distribution. The goal is to allow users to reliably package, ship -;and store content related to docker images. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-gogo-protobuf-1.2.2-0.20190723190241-65acae22fc9d -; (package -; (name "go-github-com-gogo-protobuf") -; (version "1.2.2-0.20190723190241-65acae22fc9d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/gogo/protobuf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0700alky9z0g9akhrzn20wf4jr1600d0clhs32sm8chnlbvidy46")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/gogo/protobuf")) -; (propagated-inputs -; `(("go-github-com-kisielk-gotool-1.0.0" -; ,go-github-com-kisielk-gotool-1.0.0) -; ("go-github-com-kisielk-errcheck-1.2.0" -; ,go-github-com-kisielk-errcheck-1.2.0))) -; (home-page "https://github.com/gogo/protobuf") -; (synopsis "Protocol Buffers for Go with Gadgets") -; (description -; "gogoprotobuf is a fork of @url{https://github.com/golang/protobuf,golang/protobuf} with extra code generation features.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190813064441-fde4db37ae7a -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190813064441-fde4db37ae7a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "16k4w4pzziq1kln18k5fg01qgk4hpzb5xsm7175kaky6d6gwyhg3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-k8s-io-cri-api-0.17.3 -; (package -; (name "go-k8s-io-cri-api") -; (version "0.17.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes/cri-api") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "047wg80q4cb9qikpj0zp2kzcgp599cdqwiqlravfy86bga4r3fgf")))) -; (build-system go-build-system) -; (arguments '(#:import-path "k8s.io/cri-api")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190813064441-fde4db37ae7a" -; ,go-golang-org-x-sys-0.0.0-20190813064441-fde4db37ae7a) -; ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) -; ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" -; ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) -; ("go-google-golang-org-grpc-1.23.1" ,go-google-golang-org-grpc-1.23.1) -; ("go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873" -; ,go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873) -; ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) -; ("go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9" -; ,go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9) -; ("go-github-com-stretchr-testify-1.4.0" -; ,go-github-com-stretchr-testify-1.4.0) -; ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2) -; ("go-github-com-gogo-protobuf-1.2.2-0.20190723190241-65acae22fc9d" -; ,go-github-com-gogo-protobuf-1.2.2-0.20190723190241-65acae22fc9d) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://k8s.io/cri-api") -; (synopsis "Purpose") -; (description -; "This repository contains the definitions for the Container Runtime Interface (CRI). -;CRI is a plugin interface which enables kubelet to use a wide variety of container runtimes, -;without the need to recompile. CRI consists of a protocol buffers and gRPC API.") -; (license license:asl2.0))) -; -;(define-public go-github-com-microsoft-hcsshim-test-0.0.0-20201218223536-d3e5debf77da -; (package -; (name "go-github-com-microsoft-hcsshim-test") -; (version "0.0.0-20201218223536-d3e5debf77da") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/microsoft/hcsshim") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0k57knv8zrf32hp7rpv1km9j772w6752pfvdbpd3l711ism48c84")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path -; "github.com/Microsoft/hcsshim/test" -; #:unpack-path -; "github.com/Microsoft/hcsshim")) -; (propagated-inputs -; `(("go-k8s-io-cri-api-0.17.3" ,go-k8s-io-cri-api-0.17.3) -; ("go-google-golang-org-grpc-1.23.1" ,go-google-golang-org-grpc-1.23.1) -; ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" -; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) -; ("go-go-etcd-io-bbolt-1.3.3" ,go-go-etcd-io-bbolt-1.3.3) -; ("go-github-com-xeipuuv-gojsonschema-0.0.0-20180618132009-1d523034197f" -; ,go-github-com-xeipuuv-gojsonschema-0.0.0-20180618132009-1d523034197f) -; ("go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415" -; ,go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415) -; ("go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f" -; ,go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f) -; ("go-github-com-syndtr-gocapability-0.0.0-20170704070218-db04d3cc01c8" -; ,go-github-com-syndtr-gocapability-0.0.0-20170704070218-db04d3cc01c8) -; ("go-github-com-sirupsen-logrus-1.4.2" -; ,go-github-com-sirupsen-logrus-1.4.2) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39" -; ,go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39) -; ("go-github-com-opencontainers-runtime-spec-1.0.2" -; ,go-github-com-opencontainers-runtime-spec-1.0.2) -; ("go-github-com-imdario-mergo-0.3.8" -; ,go-github-com-imdario-mergo-0.3.8) -; ("go-github-com-hashicorp-go-multierror-0.0.0-20161216184304-ed905158d874" -; ,go-github-com-hashicorp-go-multierror-0.0.0-20161216184304-ed905158d874) -; ("go-github-com-hashicorp-errwrap-0.0.0-20141028054710-7554cd9344ce" -; ,go-github-com-hashicorp-errwrap-0.0.0-20141028054710-7554cd9344ce) -; ("go-github-com-gogo-protobuf-1.3.1" -; ,go-github-com-gogo-protobuf-1.3.1) -; ("go-github-com-gogo-googleapis-1.2.0" -; ,go-github-com-gogo-googleapis-1.2.0) -; ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" -; ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) -; ("go-github-com-docker-distribution-0.0.0-20190905152932-14b96e55d84c" -; ,go-github-com-docker-distribution-0.0.0-20190905152932-14b96e55d84c) -; ("go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd" -; ,go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd) -; ("go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de" -; ,go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de) -; ("go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3" -; ,go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3) -; ("go-github-com-containerd-containerd-1.3.2" -; ,go-github-com-containerd-containerd-1.3.2) -; ("go-github-com-blang-semver-3.1.0+incompatible" -; ,go-github-com-blang-semver-3.1.0+incompatible) -; ("go-github-com-microsoft-go-winio-0.4.16-0.20201130162521-d1ffc52c7331" -; ,go-github-com-microsoft-go-winio-0.4.16-0.20201130162521-d1ffc52c7331))) -; (home-page "https://github.com/Microsoft/hcsshim") -; (synopsis #f) -; (description #f) -; (license license:expat))) -; -;(define-public go-github-com-containerd-aufs-0.0.0-20200908144142-dab0cbea06f4 -; (package -; (name "go-github-com-containerd-aufs") -; (version "0.0.0-20200908144142-dab0cbea06f4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/aufs") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "060iqypyrdmww0ykip1zqi5f2fl1il55vndgdn5aq5zj6530mgsn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/aufs")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) -; ("go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449" -; ,go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449) -; ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" -; ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) -; ("go-go-etcd-io-bbolt-1.3.3" ,go-go-etcd-io-bbolt-1.3.3) -; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) -; ("go-github-com-opencontainers-runc-1.0.0-rc9" -; ,go-github-com-opencontainers-runc-1.0.0-rc9) -; ("go-github-com-opencontainers-image-spec-1.0.1" -; ,go-github-com-opencontainers-image-spec-1.0.1) -; ("go-github-com-opencontainers-go-digest-1.0.0-rc1" -; ,go-github-com-opencontainers-go-digest-1.0.0-rc1) -; ("go-github-com-google-go-cmp-0.3.1" -; ,go-github-com-google-go-cmp-0.3.1) -; ("go-github-com-gogo-protobuf-1.3.1" -; ,go-github-com-gogo-protobuf-1.3.1) -; ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" -; ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) -; ("go-github-com-containerd-typeurl-0.0.0-20190911142611-5eb25027c9fd" -; ,go-github-com-containerd-typeurl-0.0.0-20190911142611-5eb25027c9fd) -; ("go-github-com-containerd-ttrpc-0.0.0-20191028202541-4f1b8fe65a5c" -; ,go-github-com-containerd-ttrpc-0.0.0-20191028202541-4f1b8fe65a5c) -; ("go-github-com-containerd-continuity-0.0.0-20191127005431-f65d91d395eb" -; ,go-github-com-containerd-continuity-0.0.0-20191127005431-f65d91d395eb) -; ("go-github-com-containerd-containerd-1.3.1-0.20191213020239-082f7e3aed57" -; ,go-github-com-containerd-containerd-1.3.1-0.20191213020239-082f7e3aed57) -; ("go-github-com-microsoft-hcsshim-0.8.7" -; ,go-github-com-microsoft-hcsshim-0.8.7))) -; (home-page "https://github.com/containerd/aufs") -; (synopsis "aufs snapshotter") -; (description -; "AUFS implementation of the snapshot interface for containerd.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-btrfs-0.0.0-20201111183144-404b9149801e -; (package -; (name "go-github-com-containerd-btrfs") -; (version "0.0.0-20201111183144-404b9149801e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/btrfs") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "10aakvy9njaly2mfwi1cvys8dxjn27mnd7wnpnmxh8pxb7g2svag")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/btrfs")) -; (propagated-inputs -; `(("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) -; (home-page "https://github.com/containerd/btrfs") -; (synopsis "go-btrfs") -; (description -; "Package btrfs provides bindings for working with btrfs partitions from Go. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-cgroups-0.0.0-20200824123100-0b889c03f102 -; (package -; (name "go-github-com-containerd-cgroups") -; (version "0.0.0-20200824123100-0b889c03f102") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/cgroups") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1zjmphy2df9y20hzrmwxfpyyvz8vb5lazr4pjyx3c5a5x0j4rv8d")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/cgroups")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9" -; ,go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9) -; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) -; ("go-github-com-stretchr-testify-1.2.2" -; ,go-github-com-stretchr-testify-1.2.2) -; ("go-github-com-sirupsen-logrus-1.6.0" -; ,go-github-com-sirupsen-logrus-1.6.0) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-runtime-spec-1.0.2" -; ,go-github-com-opencontainers-runtime-spec-1.0.2) -; ("go-github-com-gogo-protobuf-1.3.1" -; ,go-github-com-gogo-protobuf-1.3.1) -; ("go-github-com-godbus-dbus-v5-5.0.3" -; ,go-github-com-godbus-dbus-v5-5.0.3) -; ("go-github-com-docker-go-units-0.4.0" -; ,go-github-com-docker-go-units-0.4.0) -; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" -; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) -; ("go-github-com-coreos-go-systemd-v22-22.0.0" -; ,go-github-com-coreos-go-systemd-v22-22.0.0) -; ("go-github-com-cilium-ebpf-0.0.0-20200702112145-1c8d4c9ef775" -; ,go-github-com-cilium-ebpf-0.0.0-20200702112145-1c8d4c9ef775))) -; (home-page "https://github.com/containerd/cgroups") -; (synopsis "cgroups") -; (description -; "Go package for creating, managing, inspecting, and destroying cgroups. -;The resources format for settings on the cgroup uses the OCI runtime-spec found -;@url{https://github.com/opencontainers/runtime-spec,here}.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-continuity-0.0.0-20201208142359-180525291bb7 -; (package -; (name "go-github-com-containerd-continuity") -; (version "0.0.0-20201208142359-180525291bb7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/continuity") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1di4pspqfwfafdni0in84kzyn8h1fhqb6vh4i0g5skqmrc4sxf4h")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/continuity")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3" -; ,go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3) -; ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" -; ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) -; ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" -; ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) -; ("go-github-com-stretchr-testify-1.4.0" -; ,go-github-com-stretchr-testify-1.4.0) -; ("go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95" -; ,go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95) -; ("go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee" -; ,go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee) -; ("go-github-com-sirupsen-logrus-1.6.0" -; ,go-github-com-sirupsen-logrus-1.6.0) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-go-digest-1.0.0" -; ,go-github-com-opencontainers-go-digest-1.0.0) -; ("go-github-com-inconshreveable-mousetrap-1.0.0" -; ,go-github-com-inconshreveable-mousetrap-1.0.0) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0) -; ("go-github-com-dustin-go-humanize-1.0.0" -; ,go-github-com-dustin-go-humanize-1.0.0) -; ("go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898" -; ,go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898))) -; (home-page "https://github.com/containerd/continuity") -; (synopsis "continuity") -; (description -; "This package provides a transport-agnostic, filesystem metadata manifest system") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-fifo-0.0.0-20201026212402-0724c46b320c -; (package -; (name "go-github-com-containerd-fifo") -; (version "0.0.0-20201026212402-0724c46b320c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/fifo") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "11d9j0isblnnqf78ygvwjyijjxn6zdzf7p803v0jv2py4d0pkvj8")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/fifo")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449" -; ,go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449) -; ("go-github-com-stretchr-testify-1.4.0" -; ,go-github-com-stretchr-testify-1.4.0) -; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) -; (home-page "https://github.com/containerd/fifo") -; (synopsis "fifo") -; (description "Go package for handling fifos in a sane way.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containernetworking-cni-0.8.0 -; (package -; (name "go-github-com-containernetworking-cni") -; (version "0.8.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containernetworking/cni") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "16i59dhiq7pc7qs32cdk4yv4w9rjx4vvlw7fb6a6jhq6hxxjrgiw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containernetworking/cni")) -; (home-page "https://github.com/containernetworking/cni") -; (synopsis "CNI - the Container Network Interface") -; (description -; "CNI (), a @url{https://cncf.io,Cloud Native Computing Foundation} project, consists of a specification and libraries for writing plugins to configure network interfaces in Linux containers, along with a number of supported plugins. -;CNI concerns itself only with network connectivity of containers and removing allocated resources when the container is deleted. -;Because of this focus, CNI has a wide range of support and the specification is simple to implement.") -; (license license:asl2.0))) -; -;(define-public go-github-com-onsi-ginkgo-1.10.3 -; (package -; (name "go-github-com-onsi-ginkgo") -; (version "1.10.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/onsi/ginkgo") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "00a40by9f5ylycnar8h3p9b4z5rcsvfvg4j3v5s5mchdqrqjv1pc")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/onsi/ginkgo")) -; (home-page "https://github.com/onsi/ginkgo") -; (synopsis "Ginkgo 2.0 Release Candidate is available!") -; (description "Ginkgo is a BDD-style testing framework for Golang -;") -; (license license:expat))) -; -;(define-public go-github-com-stretchr-objx-0.0.0-20180129172003-8a3f7159479f -; (package -; (name "go-github-com-stretchr-objx") -; (version "0.0.0-20180129172003-8a3f7159479f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/objx") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0rbz4x4jbq9vp3zxmv0c2wh1vbg48lmc8ncdgz7zxk7241fc31ki")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/objx")) -; (home-page "https://github.com/stretchr/objx") -; (synopsis "Objx") -; (description -; "Objx - Go package for dealing with maps, slices, JSON and other data. -;") -; (license license:expat))) -; -;(define-public go-github-com-stretchr-testify-0.0.0-20180303142811-b89eecf5ca5d -; (package -; (name "go-github-com-stretchr-testify") -; (version "0.0.0-20180303142811-b89eecf5ca5d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/testify") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0g946ii8qjaynvidj648z8izl91i6yhy0ir6g3qsrn136im3r8wk")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/testify")) -; (home-page "https://github.com/stretchr/testify") -; (synopsis "Testify - Thou Shalt Write Tests") -; (description -; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -;") -; (license license:expat))) -; -;(define-public go-github-com-containerd-go-cni-1.0.1 -; (package -; (name "go-github-com-containerd-go-cni") -; (version "1.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/go-cni") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0sdlwa4d0kzpm3vg9jy6fxqqcfjq8innv1zjcyp8n9qy8vj9b24y")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/go-cni")) -; (propagated-inputs -; `(("go-github-com-stretchr-testify-0.0.0-20180303142811-b89eecf5ca5d" -; ,go-github-com-stretchr-testify-0.0.0-20180303142811-b89eecf5ca5d) -; ("go-github-com-stretchr-objx-0.0.0-20180129172003-8a3f7159479f" -; ,go-github-com-stretchr-objx-0.0.0-20180129172003-8a3f7159479f) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-onsi-gomega-1.7.1" ,go-github-com-onsi-gomega-1.7.1) -; ("go-github-com-onsi-ginkgo-1.10.3" ,go-github-com-onsi-ginkgo-1.10.3) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1) -; ("go-github-com-containernetworking-cni-0.8.0" -; ,go-github-com-containernetworking-cni-0.8.0))) -; (home-page "https://github.com/containerd/go-cni") -; (synopsis "go-cni") -; (description -; "This package provides a generic CNI library to provide APIs for CNI plugin interactions. The library provides APIs to:") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-console-0.0.0-20191206165004-02ecf6a7291e -; (package -; (name "go-github-com-containerd-console") -; (version "0.0.0-20191206165004-02ecf6a7291e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/console") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1b3yq446gv8da4fajknbjxr5syz1ypz0nii9sqw066hx8kmqzgqh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/console")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e" -; ,go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e) -; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) -; (home-page "https://github.com/containerd/console") -; (synopsis "console") -; (description -; "Golang package for dealing with consoles. Light on deps and a simple API.") -; (license license:asl2.0))) -; -;(define-public go-github-com-opencontainers-runtime-spec-1.0.1 -; (package -; (name "go-github-com-opencontainers-runtime-spec") -; (version "1.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/runtime-spec") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "00qb0q7ndxsll12ilp5a8pqfi4i1jqrlqzv0yf7sn52lkrdrw5f4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) -; (home-page "https://github.com/opencontainers/runtime-spec") -; (synopsis "Open Container Initiative Runtime Specification") -; (description -; "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328 -; (package -; (name "go-github-com-containerd-go-runc") -; (version "0.0.0-20200220073739-7016d3ce2328") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/go-runc") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1mx2lvfkxw9kiyhi18g3c6hcpb9r2115zjzyvz6rkdqr08xrij9k")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/go-runc")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449" -; ,go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449) -; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) -; ("go-github-com-opencontainers-runtime-spec-1.0.1" -; ,go-github-com-opencontainers-runtime-spec-1.0.1) -; ("go-github-com-containerd-console-0.0.0-20191206165004-02ecf6a7291e" -; ,go-github-com-containerd-console-0.0.0-20191206165004-02ecf6a7291e))) -; (home-page "https://github.com/containerd/go-runc") -; (synopsis "go-runc") -; (description -; "This is a package for consuming the @url{https://github.com/opencontainers/runc,runc} binary in your Go applications. -;It tries to expose all the settings and features of the runc CLI. If there is something missing then add it, its opensource!") -; (license license:asl2.0))) -; -;(define-public go-github-com-microsoft-go-winio-0.4.14 -; (package -; (name "go-github-com-microsoft-go-winio") -; (version "0.4.14") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/microsoft/go-winio") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0n34wi9l9ks2z3cz97j30ljfmqppwf1zxr16hwbnswyrk54fcxm3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/Microsoft/go-winio")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b" -; ,go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b) -; ("go-github-com-sirupsen-logrus-1.4.1" -; ,go-github-com-sirupsen-logrus-1.4.1) -; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) -; (home-page "https://github.com/Microsoft/go-winio") -; (synopsis "go-winio") -; (description -; "This repository contains utilities for efficiently performing Win32 IO operations in -;Go. Currently, this is focused on accessing named pipes and other file handles, and -;for using named pipes as a net transport.") -; (license license:expat))) -; -;(define-public go-github-com-microsoft-hcsshim-0.8.7-0.20190325164909-8abdbb8205e4 -; (package -; (name "go-github-com-microsoft-hcsshim") -; (version "0.8.7-0.20190325164909-8abdbb8205e4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/microsoft/hcsshim") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0029085clghvprb3bs2m9q7xk4njx5fg2gr5wm3a0y8kqx0awv45")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/Microsoft/hcsshim")) -; (home-page "https://github.com/Microsoft/hcsshim") -; (synopsis "hcsshim") -; (description -; "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") -; (license license:expat))) -; -;(define-public go-github-com-containerd-cgroups-0.0.0-20190717030353-c4b9ac5c7601 -; (package -; (name "go-github-com-containerd-cgroups") -; (version "0.0.0-20190717030353-c4b9ac5c7601") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/cgroups") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1fpai6nsm7qd5zfd8ykq8j4ngbqcy5v2isw16j086j0qabyw2iiw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/cgroups")) -; (home-page "https://github.com/containerd/cgroups") -; (synopsis "cgroups") -; (description -; "Go package for creating, managing, inspecting, and destroying cgroups. -;The resources format for settings on the cgroup uses the OCI runtime-spec found -;@url{https://github.com/opencontainers/runtime-spec,here}.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-console-0.0.0-20181022165439-0650fd9eeb50 -; (package -; (name "go-github-com-containerd-console") -; (version "0.0.0-20181022165439-0650fd9eeb50") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/console") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0cs11g3gjan15rnbgryf60725sw2hf83fb6y2hwn1rgcm0jab1b8")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/console")) -; (home-page "https://github.com/containerd/console") -; (synopsis "console") -; (description -; "Golang package for dealing with consoles. Light on deps and a simple API.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-containerd-1.3.0 -; (package -; (name "go-github-com-containerd-containerd") -; (version "1.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/containerd") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "05mr33l0rhkj49n6wf9lk95ijqvqwhp68ll879rpad1ypfv2f8as")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/containerd")) -; (home-page "https://github.com/containerd/containerd") -; (synopsis "Now Recruiting") -; (description -; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-continuity-0.0.0-20190815185530-f2a389ac0a02 -; (package -; (name "go-github-com-containerd-continuity") -; (version "0.0.0-20190815185530-f2a389ac0a02") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/continuity") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0h8a7npx46sjak0dyypkgg0h5dkq6dqpa4gx1v22ik62rmw0jy8r")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/continuity")) -; (home-page "https://github.com/containerd/continuity") -; (synopsis "continuity") -; (description -; "This package provides a transport-agnostic, filesystem metadata manifest system") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-fifo-0.0.0-20180307165137-3d5202aec260 -; (package -; (name "go-github-com-containerd-fifo") -; (version "0.0.0-20180307165137-3d5202aec260") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/fifo") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "11jp12vgfj0xg9m2w5cfay72fwrxb6w8za7rkcqw8yy8hypiqqxq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/fifo")) -; (home-page "https://github.com/containerd/fifo") -; (synopsis "fifo") -; (description "Go package for handling fifos in a sane way.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-go-runc-0.0.0-20190911050354-e029b79d8cda -; (package -; (name "go-github-com-containerd-go-runc") -; (version "0.0.0-20190911050354-e029b79d8cda") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/go-runc") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0zwb6bfnfmj09rnz1z3xx1y2pm4wrhyp2ls7vmf7p62j5zyvdpkw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/go-runc")) -; (home-page "https://github.com/containerd/go-runc") -; (synopsis "go-runc") -; (description -; "This is a package for consuming the @url{https://github.com/opencontainers/runc,runc} binary in your Go applications. -;It tries to expose all the settings and features of the runc CLI. If there is something missing then add it, its opensource!") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-ttrpc-0.0.0-20190828172938-92c8520ef9f8 -; (package -; (name "go-github-com-containerd-ttrpc") -; (version "0.0.0-20190828172938-92c8520ef9f8") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/ttrpc") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1kzclhmicw2xkiqsg6npx0xzs5jx36mqmyd0gj5dzv88i7p4b8dx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/ttrpc")) -; (home-page "https://github.com/containerd/ttrpc") -; (synopsis "ttrpc") -; (description "GRPC for low-memory environments.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-containerd-1.2.10 -; (package -; (name "go-github-com-containerd-containerd") -; (version "1.2.10") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/containerd") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1kddhkd93wkrimk0yjcqiavdrqc818nd39rf3wrgxyilx1mfnrwb")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/containerd")) -; (home-page "https://github.com/containerd/containerd") -; (synopsis "Now Recruiting") -; (description -; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") -; (license license:asl2.0))) -; -;(define-public go-github-com-fullsailor-pkcs7-0.0.0-20190404230743-d7302db945fa -; (package -; (name "go-github-com-fullsailor-pkcs7") -; (version "0.0.0-20190404230743-d7302db945fa") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/fullsailor/pkcs7") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "13d7dpj85j36pxwg1kn7b23rm54va5p9v3vdcx27pma2jjlsxsm1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/fullsailor/pkcs7")) -; (home-page "https://github.com/fullsailor/pkcs7") -; (synopsis "pkcs7") -; (description -; "Package pkcs7 implements parsing and generation of some PKCS#7 structures. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20190701094942-4def268fd1a4 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20190701094942-4def268fd1a4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1bfsnari529gw34cz0zqk3d9mrkcj1ay35kangri8kbgll0ss5a6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" -; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) -; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" -; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-gopkg-in-square-go-jose-v2-2.3.1 -; (package -; (name "go-gopkg-in-square-go-jose-v2") -; (version "2.3.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/square/go-jose.v2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "11r93g9xrcjqj7qvq8sbd5hy5rnbpmim0vdsp6rbav8gl7wimaa3")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path -; "gopkg.in/square/go-jose.v2" -; #:unpack-path -; "gopkg.in/square/go-jose.v2")) -; (home-page "https://gopkg.in/square/go-jose.v2") -; (synopsis "Go JOSE") -; (description -; "Package jose aims to provide an implementation of the Javascript Object Signing -;and Encryption set of standards. It implements encryption and signing based on -;the JSON Web Encryption and JSON Web Signature standards, with optional JSON -;Web Token support available in a sub-package. The library supports both the -;compact and full serialization formats, and has optional support for multiple -;recipients. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-containers-ocicrypt-1.0.1 -; (package -; (name "go-github-com-containers-ocicrypt") -; (version "1.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containers/ocicrypt") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0q27vzgdsimypkpi7iv0rl1xz571554adphyl0j8b5qa8wrf0n7v")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containers/ocicrypt")) -; (propagated-inputs -; `(("go-gotest-tools-2.2.0+incompatible" -; ,go-gotest-tools-2.2.0+incompatible) -; ("go-gopkg-in-square-go-jose-v2-2.3.1" -; ,go-gopkg-in-square-go-jose-v2-2.3.1) -; ("go-google-golang-org-grpc-1.24.0" ,go-google-golang-org-grpc-1.24.0) -; ("go-golang-org-x-crypto-0.0.0-20190701094942-4def268fd1a4" -; ,go-golang-org-x-crypto-0.0.0-20190701094942-4def268fd1a4) -; ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) -; ("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0) -; ("go-github-com-sirupsen-logrus-1.4.2" -; ,go-github-com-sirupsen-logrus-1.4.2) -; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) -; ("go-github-com-opencontainers-image-spec-1.0.1" -; ,go-github-com-opencontainers-image-spec-1.0.1) -; ("go-github-com-opencontainers-go-digest-1.0.0-rc1" -; ,go-github-com-opencontainers-go-digest-1.0.0-rc1) -; ("go-github-com-fullsailor-pkcs7-0.0.0-20190404230743-d7302db945fa" -; ,go-github-com-fullsailor-pkcs7-0.0.0-20190404230743-d7302db945fa) -; ("go-github-com-containerd-containerd-1.2.10" -; ,go-github-com-containerd-containerd-1.2.10))) -; (home-page "https://github.com/containers/ocicrypt") -; (synopsis "OCIcrypt Library") -; (description -; "The @code{ocicrypt} library is the OCI image spec implementation of container image encryption. More details of the spec can be seen in the @url{https://github.com/opencontainers/image-spec/pull/775,OCI repository}. The purpose of this library is to encode spec structures and consts in code, as well as provide a consistent implementation of image encryption across container runtimes and build tools.") -; (license license:asl2.0))) -; -;(define-public go-github-com-coreos-go-systemd-0.0.0-20161114122254-48702e0da86b -; (package -; (name "go-github-com-coreos-go-systemd") -; (version "0.0.0-20161114122254-48702e0da86b") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/coreos/go-systemd") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "04zl9ns4j3lpjykf32rv5cb6sj9x5ci8yi90vab1bl27vnqjgdkh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/coreos/go-systemd")) -; (home-page "https://github.com/coreos/go-systemd") -; (synopsis "go-systemd") -; (description "Go bindings to systemd. The project has several packages:") -; (license license:asl2.0))) -; -;(define-public go-github-com-docker-distribution-2.7.1-0.20190205005809-0d3efadf0154+incompatible -; (package -; (name "go-github-com-docker-distribution") -; (version "2.7.1-0.20190205005809-0d3efadf0154+incompatible") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/distribution/distribution") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1wayhmcxr6l281fqkbw1gh0ymhxlznf4jj1rcldhwrc64l2zjh8l")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/docker/distribution")) -; (home-page "https://github.com/docker/distribution") -; (synopsis "Distribution") -; (description -; "Package distribution will define the interfaces for the components of -;docker distribution. The goal is to allow users to reliably package, ship -;and store content related to docker images. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-docker-go-events-0.0.0-20170721190031-9461782956ad -; (package -; (name "go-github-com-docker-go-events") -; (version "0.0.0-20170721190031-9461782956ad") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/docker/go-events") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0vn0kd0w253jwdk86gv1h6s8p6bzxiyif74xdzlb39zr6fdrr145")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/docker/go-events")) -; (home-page "https://github.com/docker/go-events") -; (synopsis "Docker Events Package") -; (description -; "The Docker @code{events} package implements a composable event distribution package -;for Go.") -; (license license:asl2.0))) -; -;(define-public go-github-com-godbus-dbus-0.0.0-20151105175453-c7fdd8b5cd55 -; (package -; (name "go-github-com-godbus-dbus") -; (version "0.0.0-20151105175453-c7fdd8b5cd55") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/godbus/dbus") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "09zazkiny2im24xaiac5kbyhhnbqdbhwi9z9n7fj6rhpg8msiq9n")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/godbus/dbus")) -; (home-page "https://github.com/godbus/dbus") -; (synopsis "dbus") -; (description -; "Package dbus implements bindings to the D-Bus message bus system. -;") -; (license license:bsd-2))) -; -;(define-public go-github-com-gogo-googleapis-1.2.0 -; (package -; (name "go-github-com-gogo-googleapis") -; (version "1.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/gogo/googleapis") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1a82n0xp0v8lgjxzl3aa595r0rmy7afgyn2l3kv6z9kzw339i0jp")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/gogo/googleapis")) -; (propagated-inputs -; `(("go-github-com-gogo-protobuf-1.2.1" -; ,go-github-com-gogo-protobuf-1.2.1))) -; (home-page "https://github.com/gogo/googleapis") -; (synopsis "Google APIs generated by gogoprotobuf") -; (description -; "The @url{https://github.com/gogo/grpc-example,grpc-example} includes an example usage of this repository.") -; (license license:asl2.0))) -; -;(define-public go-github-com-imdario-mergo-0.3.8 -; (package -; (name "go-github-com-imdario-mergo") -; (version "0.3.8") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/imdario/mergo") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "15xwyrnwng11ib0fxi7clwick2r0njwn0gs3va2g5m1ad418ry57")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/imdario/mergo")) -; (home-page "https://github.com/imdario/mergo") -; (synopsis "Mergo") -; (description -; "This package provides a helper to merge structs and maps in Golang. Useful for configuration default values, avoiding messy if-statements. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-opencontainers-go-digest-1.0.0-rc1.0.20180430190053-c9281466c8b2 -; (package -; (name "go-github-com-opencontainers-go-digest") -; (version "1.0.0-rc1.0.20180430190053-c9281466c8b2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/go-digest") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1djdazssy27xn91pjhx3dgb0f11bnlzzbwkh7f8zwnpz011anasi")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/go-digest")) -; (home-page "https://github.com/opencontainers/go-digest") -; (synopsis "go-digest") -; (description -; "Package digest provides a generalized type to opaquely represent message -;digests and their operations within the registry. The Digest type is -;designed to serve as a flexible identifier in a content-addressable system. -;More importantly, it provides tools and wrappers to work with -;hash.Hash-based digests with little effort. -;") -; (license (list license:asl2.0 license:cc-by-sa4.0)))) -; -;(define-public go-github-com-opencontainers-runc-1.0.0-rc8.0.20190926000215-3e425f80a8c9 -; (package -; (name "go-github-com-opencontainers-runc") -; (version "1.0.0-rc8.0.20190926000215-3e425f80a8c9") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/runc") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "18psc830b2rkwml1x6vxngam5b5wi3pj14mw817rshpzy87prspj")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/runc")) -; (home-page "https://github.com/opencontainers/runc") -; (synopsis "runc") -; (description -; "@code{runc} is a CLI tool for spawning and running containers according to the OCI specification.") -; (license license:asl2.0))) -; -;(define-public go-github-com-opencontainers-runtime-spec-1.0.2-0.20190207185410-29686dbc5559 -; (package -; (name "go-github-com-opencontainers-runtime-spec") -; (version "1.0.2-0.20190207185410-29686dbc5559") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/runtime-spec") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0i8q3520jk4yl9rsxs8mn5vsi9i0gd3drysbhciaqwm5l8c30h65")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) -; (home-page "https://github.com/opencontainers/runtime-spec") -; (synopsis "Open Container Initiative Runtime Specification") -; (description -; "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") -; (license license:asl2.0))) -; -;(define-public go-github-com-prometheus-procfs-0.0.8 -; (package -; (name "go-github-com-prometheus-procfs") -; (version "0.0.8") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/procfs") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "076wblhz8fjdc73fmz1lg0hafbwg1xv8hszm78lbg9anjpfgacvq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/procfs")) -; (propagated-inputs -; `(("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" -; ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) -; ("go-github-com-google-go-cmp-0.3.1" -; ,go-github-com-google-go-cmp-0.3.1))) -; (home-page "https://github.com/prometheus/procfs") -; (synopsis "procfs") -; (description -; "Package procfs provides functions to retrieve system, kernel and process -;metrics from the pseudo-filesystem proc. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-net-0.0.0-20190522155817-f3200d17e092 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20190522155817-f3200d17e092") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1mskh7p80dd8j1ffy16917d3cyy7lfh1gb56n4rq9g1bwckz4lwy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190812073006-9eafafc0a87e -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190812073006-9eafafc0a87e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0g5wcpiafz47066993mgz77gka9qzww6w6crxpnyir0459j7z07r")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-grpc-1.24.0 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.24.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0h8mwv74vzcfb7p4ai247x094skxca71vjp4wpj2wzmri0x9p4v6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" -; ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) -; ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" -; ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) -; ("go-google-golang-org-appengine-1.1.0" -; ,go-google-golang-org-appengine-1.1.0) -; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" -; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-github-com-google-go-cmp-0.2.0" -; ,go-github-com-google-go-cmp-0.2.0) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2) -; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-client9-misspell-0.3.4" -; ,go-github-com-client9-misspell-0.3.4) -; ("go-github-com-burntsushi-toml-0.3.1" -; ,go-github-com-burntsushi-toml-0.3.1) -; ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-imgcrypt-1.0.1 -; (package -; (name "go-github-com-containerd-imgcrypt") -; (version "1.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/imgcrypt") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0y0gbnp8imckw6rv3sjf3sycp8rc9lyhv0pp0x3q3yksvqmbqh5v")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/imgcrypt")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.24.0" ,go-google-golang-org-grpc-1.24.0) -; ("go-golang-org-x-sys-0.0.0-20190812073006-9eafafc0a87e" -; ,go-golang-org-x-sys-0.0.0-20190812073006-9eafafc0a87e) -; ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" -; ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) -; ("go-golang-org-x-net-0.0.0-20190522155817-f3200d17e092" -; ,go-golang-org-x-net-0.0.0-20190522155817-f3200d17e092) -; ("go-go-etcd-io-bbolt-1.3.3" ,go-go-etcd-io-bbolt-1.3.3) -; ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) -; ("go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2" -; ,go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2) -; ("go-github-com-sirupsen-logrus-1.4.2" -; ,go-github-com-sirupsen-logrus-1.4.2) -; ("go-github-com-prometheus-procfs-0.0.8" -; ,go-github-com-prometheus-procfs-0.0.8) -; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) -; ("go-github-com-opencontainers-runtime-spec-1.0.2-0.20190207185410-29686dbc5559" -; ,go-github-com-opencontainers-runtime-spec-1.0.2-0.20190207185410-29686dbc5559) -; ("go-github-com-opencontainers-runc-1.0.0-rc8.0.20190926000215-3e425f80a8c9" -; ,go-github-com-opencontainers-runc-1.0.0-rc8.0.20190926000215-3e425f80a8c9) -; ("go-github-com-opencontainers-image-spec-1.0.1" -; ,go-github-com-opencontainers-image-spec-1.0.1) -; ("go-github-com-opencontainers-go-digest-1.0.0-rc1.0.20180430190053-c9281466c8b2" -; ,go-github-com-opencontainers-go-digest-1.0.0-rc1.0.20180430190053-c9281466c8b2) -; ("go-github-com-imdario-mergo-0.3.8" -; ,go-github-com-imdario-mergo-0.3.8) -; ("go-github-com-gogo-protobuf-1.2.1" -; ,go-github-com-gogo-protobuf-1.2.1) -; ("go-github-com-gogo-googleapis-1.2.0" -; ,go-github-com-gogo-googleapis-1.2.0) -; ("go-github-com-godbus-dbus-0.0.0-20151105175453-c7fdd8b5cd55" -; ,go-github-com-godbus-dbus-0.0.0-20151105175453-c7fdd8b5cd55) -; ("go-github-com-docker-go-units-0.4.0" -; ,go-github-com-docker-go-units-0.4.0) -; ("go-github-com-docker-go-events-0.0.0-20170721190031-9461782956ad" -; ,go-github-com-docker-go-events-0.0.0-20170721190031-9461782956ad) -; ("go-github-com-docker-distribution-2.7.1-0.20190205005809-0d3efadf0154+incompatible" -; ,go-github-com-docker-distribution-2.7.1-0.20190205005809-0d3efadf0154+incompatible) -; ("go-github-com-coreos-go-systemd-0.0.0-20161114122254-48702e0da86b" -; ,go-github-com-coreos-go-systemd-0.0.0-20161114122254-48702e0da86b) -; ("go-github-com-containers-ocicrypt-1.0.1" -; ,go-github-com-containers-ocicrypt-1.0.1) -; ("go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd" -; ,go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd) -; ("go-github-com-containerd-ttrpc-0.0.0-20190828172938-92c8520ef9f8" -; ,go-github-com-containerd-ttrpc-0.0.0-20190828172938-92c8520ef9f8) -; ("go-github-com-containerd-go-runc-0.0.0-20190911050354-e029b79d8cda" -; ,go-github-com-containerd-go-runc-0.0.0-20190911050354-e029b79d8cda) -; ("go-github-com-containerd-fifo-0.0.0-20180307165137-3d5202aec260" -; ,go-github-com-containerd-fifo-0.0.0-20180307165137-3d5202aec260) -; ("go-github-com-containerd-continuity-0.0.0-20190815185530-f2a389ac0a02" -; ,go-github-com-containerd-continuity-0.0.0-20190815185530-f2a389ac0a02) -; ("go-github-com-containerd-containerd-1.3.0" -; ,go-github-com-containerd-containerd-1.3.0) -; ("go-github-com-containerd-console-0.0.0-20181022165439-0650fd9eeb50" -; ,go-github-com-containerd-console-0.0.0-20181022165439-0650fd9eeb50) -; ("go-github-com-containerd-cgroups-0.0.0-20190717030353-c4b9ac5c7601" -; ,go-github-com-containerd-cgroups-0.0.0-20190717030353-c4b9ac5c7601) -; ("go-github-com-microsoft-hcsshim-0.8.7-0.20190325164909-8abdbb8205e4" -; ,go-github-com-microsoft-hcsshim-0.8.7-0.20190325164909-8abdbb8205e4) -; ("go-github-com-microsoft-go-winio-0.4.14" -; ,go-github-com-microsoft-go-winio-0.4.14))) -; (home-page "https://github.com/containerd/imgcrypt") -; (synopsis "imgcrypt image encryption library and command line tool") -; (description -; "Project @code{imgcrypt} is a non-core subproject of containerd.") -; (license license:asl2.0))) -; -;(define-public go-github-com-blang-semver-3.1.0+incompatible -; (package -; (name "go-github-com-blang-semver") -; (version "3.1.0+incompatible") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/blang/semver") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1s80qlij6j6wrh0fhm0l11hbf3qjra67nca5bl7izyfjj4621fcd")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/blang/semver")) -; (home-page "https://github.com/blang/semver") -; (synopsis "semver for golang") -; (description -; "semver is a @url{http://semver.org/,Semantic Versioning} library written in golang. It fully covers spec version @code{2.0.0}.") -; (license license:expat))) -; -;(define-public go-github-com-containerd-containerd-1.3.0-beta.2.0.20190828155532-0293cbd26c69 -; (package -; (name "go-github-com-containerd-containerd") -; (version "1.3.0-beta.2.0.20190828155532-0293cbd26c69") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/containerd") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1jhb4a7fczf817d9dwj0a02wfscv46hkymrqh1dcsgpdsp80igkw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/containerd")) -; (home-page "https://github.com/containerd/containerd") -; (synopsis "Now Recruiting") -; (description -; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") -; (license license:asl2.0))) -; -;(define-public go-github-com-hashicorp-errwrap-0.0.0-20141028054710-7554cd9344ce -; (package -; (name "go-github-com-hashicorp-errwrap") -; (version "0.0.0-20141028054710-7554cd9344ce") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/errwrap") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0kmv0p605di6jc8i1778qzass18m0mv9ks9vxxrfsiwcp4la82jf")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hashicorp/errwrap")) -; (home-page "https://github.com/hashicorp/errwrap") -; (synopsis "errwrap") -; (description -; "Package errwrap implements methods to formalize error wrapping in Go. -;") -; (license license:mpl2.0))) -; -;(define-public go-github-com-hashicorp-go-multierror-0.0.0-20161216184304-ed905158d874 -; (package -; (name "go-github-com-hashicorp-go-multierror") -; (version "0.0.0-20161216184304-ed905158d874") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/go-multierror") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1bldhx9dmx9q4gjsag3g1xswq1jsf394rs69fdbmgnkj75j3sp70")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hashicorp/go-multierror")) -; (home-page "https://github.com/hashicorp/go-multierror") -; (synopsis "go-multierror") -; (description -; "@code{go-multierror} is a package for Go that provides a mechanism for -;representing a list of @code{error} values as a single @code{error}.") -; (license license:mpl2.0))) -; -;(define-public go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39 -; (package -; (name "go-github-com-opencontainers-runtime-tools") -; (version "0.0.0-20181011054405-1d69bd0f9c39") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/runtime-tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1wgisl2v8i1hvy3bf8f16v7rarx2ynyasb0jx4kffp5n5hz2hfcl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/runtime-tools")) -; (home-page "https://github.com/opencontainers/runtime-tools") -; (synopsis "oci-runtime-tool") -; (description -; "oci-runtime-tool is a collection of tools for working with the @url{https://github.com/opencontainers/runtime-spec,OCI runtime specification}. -;To build from source code, runtime-tools requires Go 1.10.x or above.") -; (license license:asl2.0))) -; -;(define-public go-github-com-prometheus-procfs-0.0.5 -; (package -; (name "go-github-com-prometheus-procfs") -; (version "0.0.5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/procfs") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1nqn8ip9f4f6kqrvand4lxhcxrkk19dwf8s3nh336i9wr2jfhbwa")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/procfs")) -; (propagated-inputs -; `(("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" -; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) -; ("go-github-com-google-go-cmp-0.3.0" -; ,go-github-com-google-go-cmp-0.3.0))) -; (home-page "https://github.com/prometheus/procfs") -; (synopsis "procfs") -; (description -; "Package procfs provides functions to retrieve system, kernel and process -;metrics from the pseudo-filesystem proc. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-syndtr-gocapability-0.0.0-20170704070218-db04d3cc01c8 -; (package -; (name "go-github-com-syndtr-gocapability") -; (version "0.0.0-20170704070218-db04d3cc01c8") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/syndtr/gocapability") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0jwica5kqax70rd4gbc2yjdz54401s4mr6clyn60gcmnxc0wynds")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/syndtr/gocapability")) -; (home-page "https://github.com/syndtr/gocapability") -; (synopsis #f) -; (description #f) -; (license license:bsd-2))) -; -;(define-public go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f -; (package -; (name "go-github-com-xeipuuv-gojsonpointer") -; (version "0.0.0-20180127040702-4e3ac2762d5f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/xeipuuv/gojsonpointer") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "13y6iq2nzf9z4ls66bfgnnamj2m3438absmbpqry64bpwjfbsi9q")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/xeipuuv/gojsonpointer")) -; (home-page "https://github.com/xeipuuv/gojsonpointer") -; (synopsis "gojsonpointer") -; (description "An implementation of JSON Pointer - Go language") -; (license license:asl2.0))) -; -;(define-public go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415 -; (package -; (name "go-github-com-xeipuuv-gojsonreference") -; (version "0.0.0-20180127040603-bd5ef7bd5415") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/xeipuuv/gojsonreference") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1xby79padc7bmyb8rfbad8wfnfdzpnh51b1n8c0kibch0kwc1db5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/xeipuuv/gojsonreference")) -; (home-page "https://github.com/xeipuuv/gojsonreference") -; (synopsis "gojsonreference") -; (description "An implementation of JSON Reference - Go language") -; (license license:asl2.0))) -; -;(define-public go-github-com-xeipuuv-gojsonschema-0.0.0-20180618132009-1d523034197f -; (package -; (name "go-github-com-xeipuuv-gojsonschema") -; (version "0.0.0-20180618132009-1d523034197f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/xeipuuv/gojsonschema") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1z8c6x8sfh6d1ib2lm2jps7r139qip6h3zik3fxhy1yr1380qbzp")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/xeipuuv/gojsonschema")) -; (home-page "https://github.com/xeipuuv/gojsonschema") -; (synopsis "gojsonschema") -; (description -; "An implementation of JSON Schema for the Go programming language. Supports draft-04, draft-06 and draft-07.") -; (license license:asl2.0))) -; -;(define-public go-k8s-io-kubernetes-1.13.0 -; (package -; (name "go-k8s-io-kubernetes") -; (version "1.13.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes/kubernetes") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "12cvw8b7l319p8nc2imc2wck7zz7vzrwcjyxq5djqj7l5rbcwmzs")))) -; (build-system go-build-system) -; (arguments '(#:import-path "k8s.io/kubernetes")) -; (home-page "https://k8s.io/kubernetes") -; (synopsis "Kubernetes (K8s)") -; (description -; "Kubernetes, also known as K8s, is an open source system for managing @url{https://kubernetes.io/docs/concepts/overview/what-is-kubernetes/,containerized applications} -;across multiple hosts. It provides basic mechanisms for deployment, maintenance, -;and scaling of applications.") -; (license license:asl2.0))) -; -;(define-public go-github-com-microsoft-hcsshim-0.8.7 -; (package -; (name "go-github-com-microsoft-hcsshim") -; (version "0.8.7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/microsoft/hcsshim") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1c6ix202ll48n7x00xxb7gzgm3srm9zwwbx2503l6vz3sqclh9xm")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/Microsoft/hcsshim")) -; (propagated-inputs -; `(("go-k8s-io-kubernetes-1.13.0" ,go-k8s-io-kubernetes-1.13.0) -; ("go-gotest-tools-2.2.0+incompatible" -; ,go-gotest-tools-2.2.0+incompatible) -; ("go-google-golang-org-grpc-1.20.1" ,go-google-golang-org-grpc-1.20.1) -; ("go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3" -; ,go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3) -; ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" -; ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) -; ("go-go-opencensus-io-0.22.0" ,go-go-opencensus-io-0.22.0) -; ("go-github-com-xeipuuv-gojsonschema-0.0.0-20180618132009-1d523034197f" -; ,go-github-com-xeipuuv-gojsonschema-0.0.0-20180618132009-1d523034197f) -; ("go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415" -; ,go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415) -; ("go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f" -; ,go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f) -; ("go-github-com-urfave-cli-0.0.0-20171014202726-7bc6a0acffa5" -; ,go-github-com-urfave-cli-0.0.0-20171014202726-7bc6a0acffa5) -; ("go-github-com-syndtr-gocapability-0.0.0-20170704070218-db04d3cc01c8" -; ,go-github-com-syndtr-gocapability-0.0.0-20170704070218-db04d3cc01c8) -; ("go-github-com-sirupsen-logrus-1.4.1" -; ,go-github-com-sirupsen-logrus-1.4.1) -; ("go-github-com-prometheus-procfs-0.0.5" -; ,go-github-com-prometheus-procfs-0.0.5) -; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) -; ("go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39" -; ,go-github-com-opencontainers-runtime-tools-0.0.0-20181011054405-1d69bd0f9c39) -; ("go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700" -; ,go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700) -; ("go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f" -; ,go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f) -; ("go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2" -; ,go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2) -; ("go-github-com-hashicorp-go-multierror-0.0.0-20161216184304-ed905158d874" -; ,go-github-com-hashicorp-go-multierror-0.0.0-20161216184304-ed905158d874) -; ("go-github-com-hashicorp-errwrap-0.0.0-20141028054710-7554cd9344ce" -; ,go-github-com-hashicorp-errwrap-0.0.0-20141028054710-7554cd9344ce) -; ("go-github-com-gogo-protobuf-1.2.1" -; ,go-github-com-gogo-protobuf-1.2.1) -; ("go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd" -; ,go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd) -; ("go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de" -; ,go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de) -; ("go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3" -; ,go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3) -; ("go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448" -; ,go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448) -; ("go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc" -; ,go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc) -; ("go-github-com-containerd-containerd-1.3.0-beta.2.0.20190828155532-0293cbd26c69" -; ,go-github-com-containerd-containerd-1.3.0-beta.2.0.20190828155532-0293cbd26c69) -; ("go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1" -; ,go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1) -; ("go-github-com-containerd-cgroups-0.0.0-20190919134610-bf292b21730f" -; ,go-github-com-containerd-cgroups-0.0.0-20190919134610-bf292b21730f) -; ("go-github-com-blang-semver-3.1.0+incompatible" -; ,go-github-com-blang-semver-3.1.0+incompatible) -; ("go-github-com-microsoft-go-winio-0.4.15-0.20190919025122-fc70bd9a86b5" -; ,go-github-com-microsoft-go-winio-0.4.15-0.20190919025122-fc70bd9a86b5))) -; (home-page "https://github.com/Microsoft/hcsshim") -; (synopsis "hcsshim") -; (description -; "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") -; (license license:expat))) -; -;(define-public go-github-com-containerd-containerd-1.3.1-0.20191213020239-082f7e3aed57 -; (package -; (name "go-github-com-containerd-containerd") -; (version "1.3.1-0.20191213020239-082f7e3aed57") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/containerd") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1piaha1adhzhj150l7zhskn5fgl4r2cyvwhrrm8bbm3vnvhmgw7v")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/containerd")) -; (home-page "https://github.com/containerd/containerd") -; (synopsis "Now Recruiting") -; (description -; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-continuity-0.0.0-20191127005431-f65d91d395eb -; (package -; (name "go-github-com-containerd-continuity") -; (version "0.0.0-20191127005431-f65d91d395eb") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/continuity") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "15yh5idl3if8a982gsnq9q72021a7jcs9bdcrqaxbl4dwdqcszki")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/continuity")) -; (home-page "https://github.com/containerd/continuity") -; (synopsis "continuity") -; (description -; "This package provides a transport-agnostic, filesystem metadata manifest system") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190522044717-8097e1b27ff5 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190522044717-8097e1b27ff5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1rgflfvh365x5lwdyqdd9qk8hh3ycr88a2488bgqgvfhp5ri5p6x")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20190522204451-c2c4e71fbf69 -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20190522204451-c2c4e71fbf69") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1y44pmyy92pg822fhw80pnciifx1ah0g73i2l0ixickd24wyznnm")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" -; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) -; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) -; ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" -; ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) -; ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" -; ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) -; ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" -; ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) -; ("go-github-com-golang-protobuf-1.3.1" -; ,go-github-com-golang-protobuf-1.3.1))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-grpc-1.21.0 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.21.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0zxjlxnvjqfn6zfx7gbmqhadx0j788vxfn95g1ngbmjkgppzsnfp")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" -; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) -; ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" -; ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) -; ("go-google-golang-org-appengine-1.1.0" -; ,go-google-golang-org-appengine-1.1.0) -; ("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" -; ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" -; ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-github-com-google-go-cmp-0.2.0" -; ,go-github-com-google-go-cmp-0.2.0) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0) -; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-client9-misspell-0.3.4" -; ,go-github-com-client9-misspell-0.3.4) -; ("go-github-com-burntsushi-toml-0.3.1" -; ,go-github-com-burntsushi-toml-0.3.1) -; ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-ttrpc-0.0.0-20191028202541-4f1b8fe65a5c -; (package -; (name "go-github-com-containerd-ttrpc") -; (version "0.0.0-20191028202541-4f1b8fe65a5c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/ttrpc") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "19fhm39jagk2sfgi9g5zdqx4rynziwxhaap03x4mdj8kczlz21x8")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/ttrpc")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.21.0" ,go-google-golang-org-grpc-1.21.0) -; ("go-google-golang-org-genproto-0.0.0-20190522204451-c2c4e71fbf69" -; ,go-google-golang-org-genproto-0.0.0-20190522204451-c2c4e71fbf69) -; ("go-golang-org-x-sys-0.0.0-20190522044717-8097e1b27ff5" -; ,go-golang-org-x-sys-0.0.0-20190522044717-8097e1b27ff5) -; ("go-github-com-sirupsen-logrus-1.4.2" -; ,go-github-com-sirupsen-logrus-1.4.2) -; ("go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1" -; ,go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1) -; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) -; ("go-github-com-gogo-protobuf-1.2.1" -; ,go-github-com-gogo-protobuf-1.2.1))) -; (home-page "https://github.com/containerd/ttrpc") -; (synopsis "ttrpc") -; (description "GRPC for low-memory environments.") -; (license license:asl2.0))) -; -;(define-public go-github-com-gogo-protobuf-1.3.0 -; (package -; (name "go-github-com-gogo-protobuf") -; (version "1.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/gogo/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0slfyrmbpdcppf0z3waar90bpszdhi2gv705ys1b0zx5x6ax8f1a")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/gogo/protobuf")) -; (propagated-inputs -; `(("go-github-com-kisielk-gotool-1.0.0" -; ,go-github-com-kisielk-gotool-1.0.0) -; ("go-github-com-kisielk-errcheck-1.2.0" -; ,go-github-com-kisielk-errcheck-1.2.0))) -; (home-page "https://github.com/gogo/protobuf") -; (synopsis "Protocol Buffers for Go with Gadgets") -; (description -; "gogoprotobuf is a fork of @url{https://github.com/golang/protobuf,golang/protobuf} with extra code generation features.") -; (license license:bsd-3))) -; -;(define-public go-github-com-containerd-typeurl-0.0.0-20190911142611-5eb25027c9fd -; (package -; (name "go-github-com-containerd-typeurl") -; (version "0.0.0-20190911142611-5eb25027c9fd") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/typeurl") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1fyc2962b9sqgqycnlkxls6n0d701nszl84bayxrdv3r1491jn9v")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/typeurl")) -; (propagated-inputs -; `(("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) -; ("go-github-com-gogo-protobuf-1.3.0" -; ,go-github-com-gogo-protobuf-1.3.0))) -; (home-page "https://github.com/containerd/typeurl") -; (synopsis "typeurl") -; (description -; "This package provides a Go package for managing the registration, marshaling, and unmarshaling of encoded types.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-zfs-0.0.0-20200918131355-0a33824f23a2 -; (package -; (name "go-github-com-containerd-zfs") -; (version "0.0.0-20200918131355-0a33824f23a2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/zfs") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "112bj6mxc3r2ncybblf3w1fgqa6w0070f6a8vlqcml1g00ljhsz6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/zfs")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) -; ("go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449" -; ,go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449) -; ("go-go-etcd-io-bbolt-1.3.3" ,go-go-etcd-io-bbolt-1.3.3) -; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) -; ("go-github-com-opencontainers-runc-1.0.0-rc9" -; ,go-github-com-opencontainers-runc-1.0.0-rc9) -; ("go-github-com-opencontainers-image-spec-1.0.1" -; ,go-github-com-opencontainers-image-spec-1.0.1) -; ("go-github-com-opencontainers-go-digest-1.0.0-rc1" -; ,go-github-com-opencontainers-go-digest-1.0.0-rc1) -; ("go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible" -; ,go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible) -; ("go-github-com-google-uuid-1.1.1" ,go-github-com-google-uuid-1.1.1) -; ("go-github-com-google-go-cmp-0.3.1" -; ,go-github-com-google-go-cmp-0.3.1) -; ("go-github-com-gogo-protobuf-1.3.1" -; ,go-github-com-gogo-protobuf-1.3.1) -; ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" -; ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) -; ("go-github-com-containerd-typeurl-0.0.0-20190911142611-5eb25027c9fd" -; ,go-github-com-containerd-typeurl-0.0.0-20190911142611-5eb25027c9fd) -; ("go-github-com-containerd-ttrpc-0.0.0-20191028202541-4f1b8fe65a5c" -; ,go-github-com-containerd-ttrpc-0.0.0-20191028202541-4f1b8fe65a5c) -; ("go-github-com-containerd-continuity-0.0.0-20191127005431-f65d91d395eb" -; ,go-github-com-containerd-continuity-0.0.0-20191127005431-f65d91d395eb) -; ("go-github-com-containerd-containerd-1.3.1-0.20191213020239-082f7e3aed57" -; ,go-github-com-containerd-containerd-1.3.1-0.20191213020239-082f7e3aed57) -; ("go-github-com-microsoft-hcsshim-0.8.7" -; ,go-github-com-microsoft-hcsshim-0.8.7))) -; (home-page "https://github.com/containerd/zfs") -; (synopsis "ZFS snapshotter plugin") -; (description "ZFS snapshotter plugin for containerd.") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-sys-0.0.0-20201202213521-69691e467435 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20201202213521-69691e467435") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0lndxdnazszfj1jl87cpz31vd12jrjm1wj0zw1c2p8yg64cfkhna")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-containerd-containerd-1.5.0-beta.1 -; (package -; (name "go-github-com-containerd-containerd") -; (version "1.5.0-beta.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/containerd") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1jki3jwmbfk4mp2qhz4ppd6vgnicalszzv5ffibasa4qj5v19wcd")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/containerd")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) -; ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) -; ("go-github-com-golang-protobuf-1.3.5" -; ,go-github-com-golang-protobuf-1.3.5) -; ("go-github-com-gogo-googleapis-1.3.2" -; ,go-github-com-gogo-googleapis-1.3.2) -; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" -; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) -; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) -; ("go-k8s-io-cri-api-0.20.1" ,go-k8s-io-cri-api-0.20.1) -; ("go-k8s-io-component-base-0.20.1" ,go-k8s-io-component-base-0.20.1) -; ("go-k8s-io-client-go-0.20.1" ,go-k8s-io-client-go-0.20.1) -; ("go-k8s-io-apiserver-0.20.1" ,go-k8s-io-apiserver-0.20.1) -; ("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) -; ("go-k8s-io-api-0.20.1" ,go-k8s-io-api-0.20.1) -; ("go-gotest-tools-v3-3.0.2" ,go-gotest-tools-v3-3.0.2) -; ("go-golang-org-x-sys-0.0.0-20201202213521-69691e467435" -; ,go-golang-org-x-sys-0.0.0-20201202213521-69691e467435) -; ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" -; ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) -; ("go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b" -; ,go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b) -; ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) -; ("go-github-com-tchap-go-patricia-2.2.6+incompatible" -; ,go-github-com-tchap-go-patricia-2.2.6+incompatible) -; ("go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635" -; ,go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-sirupsen-logrus-1.7.0" -; ,go-github-com-sirupsen-logrus-1.7.0) -; ("go-github-com-prometheus-client-golang-1.7.1" -; ,go-github-com-prometheus-client-golang-1.7.1) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-selinux-1.8.0" -; ,go-github-com-opencontainers-selinux-1.8.0) -; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" -; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) -; ("go-github-com-opencontainers-runc-1.0.0-rc93" -; ,go-github-com-opencontainers-runc-1.0.0-rc93) -; ("go-github-com-opencontainers-image-spec-1.0.1" -; ,go-github-com-opencontainers-image-spec-1.0.1) -; ("go-github-com-opencontainers-go-digest-1.0.0" -; ,go-github-com-opencontainers-go-digest-1.0.0) -; ("go-github-com-moby-sys-symlink-0.1.0" -; ,go-github-com-moby-sys-symlink-0.1.0) -; ("go-github-com-moby-sys-mountinfo-0.4.0" -; ,go-github-com-moby-sys-mountinfo-0.4.0) -; ("go-github-com-klauspost-compress-1.11.3" -; ,go-github-com-klauspost-compress-1.11.3) -; ("go-github-com-imdario-mergo-0.3.10" -; ,go-github-com-imdario-mergo-0.3.10) -; ("go-github-com-hashicorp-go-multierror-1.0.0" -; ,go-github-com-hashicorp-go-multierror-1.0.0) -; ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" -; ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) -; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) -; ("go-github-com-google-go-cmp-0.5.2" -; ,go-github-com-google-go-cmp-0.5.2) -; ("go-github-com-gogo-protobuf-1.3.2" -; ,go-github-com-gogo-protobuf-1.3.2) -; ("go-github-com-fsnotify-fsnotify-1.4.9" -; ,go-github-com-fsnotify-fsnotify-1.4.9) -; ("go-github-com-emicklei-go-restful-2.9.5+incompatible" -; ,go-github-com-emicklei-go-restful-2.9.5+incompatible) -; ("go-github-com-docker-go-units-0.4.0" -; ,go-github-com-docker-go-units-0.4.0) -; ("go-github-com-docker-go-metrics-0.0.1" -; ,go-github-com-docker-go-metrics-0.0.1) -; ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" -; ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1) -; ("go-github-com-coreos-go-systemd-v22-22.1.0" -; ,go-github-com-coreos-go-systemd-v22-22.1.0) -; ("go-github-com-containernetworking-plugins-0.8.6" -; ,go-github-com-containernetworking-plugins-0.8.6) -; ("go-github-com-containerd-zfs-0.0.0-20200918131355-0a33824f23a2" -; ,go-github-com-containerd-zfs-0.0.0-20200918131355-0a33824f23a2) -; ("go-github-com-containerd-typeurl-1.0.1" -; ,go-github-com-containerd-typeurl-1.0.1) -; ("go-github-com-containerd-ttrpc-1.0.2" -; ,go-github-com-containerd-ttrpc-1.0.2) -; ("go-github-com-containerd-nri-0.0.0-20201007170849-eb1350a75164" -; ,go-github-com-containerd-nri-0.0.0-20201007170849-eb1350a75164) -; ("go-github-com-containerd-imgcrypt-1.0.1" -; ,go-github-com-containerd-imgcrypt-1.0.1) -; ("go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328" -; ,go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328) -; ("go-github-com-containerd-go-cni-1.0.1" -; ,go-github-com-containerd-go-cni-1.0.1) -; ("go-github-com-containerd-fifo-0.0.0-20201026212402-0724c46b320c" -; ,go-github-com-containerd-fifo-0.0.0-20201026212402-0724c46b320c) -; ("go-github-com-containerd-continuity-0.0.0-20201208142359-180525291bb7" -; ,go-github-com-containerd-continuity-0.0.0-20201208142359-180525291bb7) -; ("go-github-com-containerd-console-1.0.1" -; ,go-github-com-containerd-console-1.0.1) -; ("go-github-com-containerd-cgroups-0.0.0-20200824123100-0b889c03f102" -; ,go-github-com-containerd-cgroups-0.0.0-20200824123100-0b889c03f102) -; ("go-github-com-containerd-btrfs-0.0.0-20201111183144-404b9149801e" -; ,go-github-com-containerd-btrfs-0.0.0-20201111183144-404b9149801e) -; ("go-github-com-containerd-aufs-0.0.0-20200908144142-dab0cbea06f4" -; ,go-github-com-containerd-aufs-0.0.0-20200908144142-dab0cbea06f4) -; ("go-github-com-microsoft-hcsshim-test-0.0.0-20201218223536-d3e5debf77da" -; ,go-github-com-microsoft-hcsshim-test-0.0.0-20201218223536-d3e5debf77da) -; ("go-github-com-microsoft-hcsshim-0.8.14" -; ,go-github-com-microsoft-hcsshim-0.8.14) -; ("go-github-com-microsoft-go-winio-0.4.16" -; ,go-github-com-microsoft-go-winio-0.4.16) -; ("go-github-com-burntsushi-toml-0.3.1" -; ,go-github-com-burntsushi-toml-0.3.1))) -; (home-page "https://github.com/containerd/containerd") -; (synopsis "Now Recruiting") -; (description -; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") -; (license license:asl2.0))) -; -;(define-public go-github-com-miekg-pkcs11-1.0.3 -; (package -; (name "go-github-com-miekg-pkcs11") -; (version "1.0.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/miekg/pkcs11") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0rmmgssb6y28x54si5h63gwbdsjjxf5n9xvm3zqdfsf9l10gx2m6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/miekg/pkcs11")) -; (home-page "https://github.com/miekg/pkcs11") -; (synopsis "PKCS#11") -; (description -; "Package pkcs11 is a wrapper around the PKCS#11 cryptographic library. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-stefanberger-go-pkcs11uri-0.0.0-20201008174630-78d3cae3a980 -; (package -; (name "go-github-com-stefanberger-go-pkcs11uri") -; (version "0.0.0-20201008174630-78d3cae3a980") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stefanberger/go-pkcs11uri") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "09bnd1fn2v5y5ngsxz751a0x9fsqn8idlfrwyymfv9l57wvmrd2l")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stefanberger/go-pkcs11uri")) -; (home-page "https://github.com/stefanberger/go-pkcs11uri") -; (synopsis "go-pkcs11uri") -; (description -; "Welcome to the go-pkcs11uri library. The implementation follows @url{https://tools.ietf.org/html/rfc7512,RFC 7512} and this @url{https://www.rfc-editor.org/errata/rfc7512,errata}.") -; (license license:asl2.0))) -; -;(define-public go-go-mozilla-org-pkcs7-0.0.0-20200128120323-432b2356ecb1 -; (package -; (name "go-go-mozilla-org-pkcs7") -; (version "0.0.0-20200128120323-432b2356ecb1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mozilla-services/pkcs7") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0yncaq6i1x6apykvng92yyqkj5kmzl4c43lmcalr5lq7ks009p40")))) -; (build-system go-build-system) -; (arguments '(#:import-path "go.mozilla.org/pkcs7")) -; (home-page "https://go.mozilla.org/pkcs7") -; (synopsis "pkcs7") -; (description -; "Package pkcs7 implements parsing and generation of some PKCS#7 structures. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20200728195943-123391ffb6de -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20200728195943-123391ffb6de") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1a3wnn8yjvckh3smyqzwd2k2gvl3i8dk68pvcap0wha8hmga1vf3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" -; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) -; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" -; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20200817155316-9781c653f443 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20200817155316-9781c653f443") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1fkwiydhhmn6cxmd9jb4rj2wp06yxmqc3903b7zawsxm9jpslicm")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-gopkg-in-square-go-jose-v2-2.5.1 -; (package -; (name "go-gopkg-in-square-go-jose-v2") -; (version "2.5.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/square/go-jose.v2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0z0hbmb5yyvnjkyiyn259wkbqbjxs2pzx87jz472shn2bgggxa4n")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path -; "gopkg.in/square/go-jose.v2" -; #:unpack-path -; "gopkg.in/square/go-jose.v2")) -; (home-page "https://gopkg.in/square/go-jose.v2") -; (synopsis "Go JOSE") -; (description -; "Package jose aims to provide an implementation of the Javascript Object Signing -;and Encryption set of standards. It implements encryption and signing based on -;the JSON Web Encryption and JSON Web Signature standards, with optional JSON -;Web Token support available in a sub-package. The library supports both the -;compact and full serialization formats, and has optional support for multiple -;recipients. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-containers-ocicrypt-1.1.0 -; (package -; (name "go-github-com-containers-ocicrypt") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containers/ocicrypt") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "13avih8ml00idn6qy96ash3jxkimqxpkz4cy4kgryc8jx303nv6i")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containers/ocicrypt")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.3.0" ,go-gopkg-in-yaml-v2-2.3.0) -; ("go-gopkg-in-square-go-jose-v2-2.5.1" -; ,go-gopkg-in-square-go-jose-v2-2.5.1) -; ("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) -; ("go-golang-org-x-sys-0.0.0-20200817155316-9781c653f443" -; ,go-golang-org-x-sys-0.0.0-20200817155316-9781c653f443) -; ("go-golang-org-x-crypto-0.0.0-20200728195943-123391ffb6de" -; ,go-golang-org-x-crypto-0.0.0-20200728195943-123391ffb6de) -; ("go-go-mozilla-org-pkcs7-0.0.0-20200128120323-432b2356ecb1" -; ,go-go-mozilla-org-pkcs7-0.0.0-20200128120323-432b2356ecb1) -; ("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0) -; ("go-github-com-stefanberger-go-pkcs11uri-0.0.0-20201008174630-78d3cae3a980" -; ,go-github-com-stefanberger-go-pkcs11uri-0.0.0-20201008174630-78d3cae3a980) -; ("go-github-com-sirupsen-logrus-1.7.0" -; ,go-github-com-sirupsen-logrus-1.7.0) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-image-spec-1.0.1" -; ,go-github-com-opencontainers-image-spec-1.0.1) -; ("go-github-com-opencontainers-go-digest-1.0.0" -; ,go-github-com-opencontainers-go-digest-1.0.0) -; ("go-github-com-miekg-pkcs11-1.0.3" ,go-github-com-miekg-pkcs11-1.0.3) -; ("go-github-com-google-go-cmp-0.5.2" -; ,go-github-com-google-go-cmp-0.5.2) -; ("go-github-com-golang-protobuf-1.4.3" -; ,go-github-com-golang-protobuf-1.4.3))) -; (home-page "https://github.com/containers/ocicrypt") -; (synopsis "OCIcrypt Library") -; (description -; "The @code{ocicrypt} library is the OCI image spec implementation of container image encryption. More details of the spec can be seen in the @url{https://github.com/opencontainers/image-spec/pull/775,OCI repository}. The purpose of this library is to encode spec structures and consts in code, as well as provide a consistent implementation of image encryption across container runtimes and build tools.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-imgcrypt-1.0.4-0.20210301171431-0ae5c75f59ba -; (package -; (name "go-github-com-containerd-imgcrypt") -; (version "1.0.4-0.20210301171431-0ae5c75f59ba") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/imgcrypt") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0vkwgcxh3mpsn6wp231c9ad3sx6gmnc9948nn3vvbw8bsmjd4i77")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/imgcrypt")) -; (propagated-inputs -; `(("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) -; ("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) -; ("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) -; ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" -; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) -; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) -; ("go-github-com-sirupsen-logrus-1.7.0" -; ,go-github-com-sirupsen-logrus-1.7.0) -; ("go-github-com-prometheus-procfs-0.6.0" -; ,go-github-com-prometheus-procfs-0.6.0) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" -; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) -; ("go-github-com-opencontainers-image-spec-1.0.1" -; ,go-github-com-opencontainers-image-spec-1.0.1) -; ("go-github-com-opencontainers-go-digest-1.0.0" -; ,go-github-com-opencontainers-go-digest-1.0.0) -; ("go-github-com-imdario-mergo-0.3.11" -; ,go-github-com-imdario-mergo-0.3.11) -; ("go-github-com-gogo-protobuf-1.3.2" -; ,go-github-com-gogo-protobuf-1.3.2) -; ("go-github-com-containers-ocicrypt-1.1.0" -; ,go-github-com-containers-ocicrypt-1.1.0) -; ("go-github-com-containerd-typeurl-1.0.1" -; ,go-github-com-containerd-typeurl-1.0.1) -; ("go-github-com-containerd-containerd-1.5.0-beta.1" -; ,go-github-com-containerd-containerd-1.5.0-beta.1) -; ("go-github-com-containerd-console-1.0.1" -; ,go-github-com-containerd-console-1.0.1) -; ("go-github-com-microsoft-hcsshim-test-0.0.0-20210227013316-43a75bb4edd3" -; ,go-github-com-microsoft-hcsshim-test-0.0.0-20210227013316-43a75bb4edd3) -; ("go-github-com-microsoft-hcsshim-0.8.14" -; ,go-github-com-microsoft-hcsshim-0.8.14) -; ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" -; ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3))) -; (home-page "https://github.com/containerd/imgcrypt") -; (synopsis "imgcrypt image encryption library and command line tool") -; (description -; "Project @code{imgcrypt} is a non-core subproject of containerd.") -; (license license:asl2.0))) -; -;(define-public go-github-com-microsoft-go-winio-0.4.15-0.20190919025122-fc70bd9a86b5 -; (package -; (name "go-github-com-microsoft-go-winio") -; (version "0.4.15-0.20190919025122-fc70bd9a86b5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/microsoft/go-winio") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "015ra2h3qfaq436d0g7akahgz7bikyvljq48m0l2d2f4k3wki86p")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/Microsoft/go-winio")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3" -; ,go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3) -; ("go-github-com-sirupsen-logrus-1.4.1" -; ,go-github-com-sirupsen-logrus-1.4.1) -; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) -; (home-page "https://github.com/Microsoft/go-winio") -; (synopsis "go-winio") -; (description -; "This repository contains utilities for efficiently performing Win32 IO operations in -;Go. Currently, this is focused on accessing named pipes and other file handles, and -;for using named pipes as a net transport.") -; (license license:expat))) -; -;(define-public go-github-com-godbus-dbus-0.0.0-20190422162347-ade71ed3457e -; (package -; (name "go-github-com-godbus-dbus") -; (version "0.0.0-20190422162347-ade71ed3457e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/godbus/dbus") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "12ga9izv32j1zjij1p9f2sdnxjy3v80lw964518dvzirxpvwfszn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/godbus/dbus")) -; (home-page "https://github.com/godbus/dbus") -; (synopsis "dbus") -; (description -; "Package dbus implements bindings to the D-Bus message bus system. -;") -; (license license:bsd-2))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190514135907-3a4b5fb9f71f -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190514135907-3a4b5fb9f71f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "122ry2lw2525mqlnw2zc006y1flvj3yhj8rnpxqdwxp71jc3kqii")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-containerd-cgroups-0.0.0-20190919134610-bf292b21730f -; (package -; (name "go-github-com-containerd-cgroups") -; (version "0.0.0-20190919134610-bf292b21730f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/cgroups") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1vvk1vrwm9spilyl4r1r8626sg0zvnx3s3zmzigzinpkzzvbdqpw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/cgroups")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190514135907-3a4b5fb9f71f" -; ,go-golang-org-x-sys-0.0.0-20190514135907-3a4b5fb9f71f) -; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) -; ("go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700" -; ,go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700) -; ("go-github-com-gogo-protobuf-1.2.1" -; ,go-github-com-gogo-protobuf-1.2.1) -; ("go-github-com-godbus-dbus-0.0.0-20190422162347-ade71ed3457e" -; ,go-github-com-godbus-dbus-0.0.0-20190422162347-ade71ed3457e) -; ("go-github-com-docker-go-units-0.4.0" -; ,go-github-com-docker-go-units-0.4.0) -; ("go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e" -; ,go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e))) -; (home-page "https://github.com/containerd/cgroups") -; (synopsis "cgroups") -; (description -; "Go package for creating, managing, inspecting, and destroying cgroups. -;The resources format for settings on the cgroup uses the OCI runtime-spec found -;@url{https://github.com/opencontainers/runtime-spec,here}.") -; (license license:asl2.0))) -; -;(define-public go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700 -; (package -; (name "go-github-com-opencontainers-runtime-spec") -; (version "0.1.2-0.20190507144316-5b71a03e2700") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/runtime-spec") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1dx0bp4f885vx6l4b5b7h19j6sm0jn9s2qxarfd917f4wp8l0cpl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) -; (home-page "https://github.com/opencontainers/runtime-spec") -; (synopsis "Open Container Initiative Runtime Specification") -; (description -; "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") -; (license license:asl2.0))) -; -;(define-public go-github-com-urfave-cli-0.0.0-20171014202726-7bc6a0acffa5 -; (package -; (name "go-github-com-urfave-cli") -; (version "0.0.0-20171014202726-7bc6a0acffa5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/urfave/cli") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "13li8phkaznh81qxs9vg0r8294ph014rwca4cqf7gxhvyjlaigwp")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/urfave/cli")) -; (home-page "https://github.com/urfave/cli") -; (synopsis "cli") -; (description -; "Package cli provides a minimal framework for creating and organizing command line -;Go applications. cli is designed to be easy to understand and write, the most simple -;cli application can be written as follows: -;") -; (license license:expat))) -; -;(define-public go-github-com-microsoft-hcsshim-0.8.9 -; (package -; (name "go-github-com-microsoft-hcsshim") -; (version "0.8.9") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/microsoft/hcsshim") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1imyqhh51311fdmp81ffasf7z52rbqhblbhx6477d9w20p74866b")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/Microsoft/hcsshim")) -; (propagated-inputs -; `(("go-gotest-tools-2.2.0+incompatible" -; ,go-gotest-tools-2.2.0+incompatible) -; ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) -; ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" -; ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) -; ("go-google-golang-org-grpc-1.23.1" ,go-google-golang-org-grpc-1.23.1) -; ("go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873" -; ,go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873) -; ("go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3" -; ,go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3) -; ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" -; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) -; ("go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9" -; ,go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9) -; ("go-go-opencensus-io-0.22.0" ,go-go-opencensus-io-0.22.0) -; ("go-github-com-urfave-cli-0.0.0-20171014202726-7bc6a0acffa5" -; ,go-github-com-urfave-cli-0.0.0-20171014202726-7bc6a0acffa5) -; ("go-github-com-stretchr-testify-1.4.0" -; ,go-github-com-stretchr-testify-1.4.0) -; ("go-github-com-sirupsen-logrus-1.4.2" -; ,go-github-com-sirupsen-logrus-1.4.2) -; ("go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7" -; ,go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7) -; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) -; ("go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700" -; ,go-github-com-opencontainers-runtime-spec-0.1.2-0.20190507144316-5b71a03e2700) -; ("go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f" -; ,go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f) -; ("go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2" -; ,go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2) -; ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2) -; ("go-github-com-gogo-protobuf-1.3.1" -; ,go-github-com-gogo-protobuf-1.3.1) -; ("go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd" -; ,go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd) -; ("go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de" -; ,go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de) -; ("go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3" -; ,go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3) -; ("go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448" -; ,go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448) -; ("go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc" -; ,go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc) -; ("go-github-com-containerd-containerd-1.3.2" -; ,go-github-com-containerd-containerd-1.3.2) -; ("go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1" -; ,go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1) -; ("go-github-com-containerd-cgroups-0.0.0-20190919134610-bf292b21730f" -; ,go-github-com-containerd-cgroups-0.0.0-20190919134610-bf292b21730f) -; ("go-github-com-microsoft-go-winio-0.4.15-0.20190919025122-fc70bd9a86b5" -; ,go-github-com-microsoft-go-winio-0.4.15-0.20190919025122-fc70bd9a86b5))) -; (home-page "https://github.com/Microsoft/hcsshim") -; (synopsis "hcsshim") -; (description -; "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") -; (license license:expat))) -; -;(define-public go-github-com-cilium-ebpf-0.0.0-20200702112145-1c8d4c9ef775 -; (package -; (name "go-github-com-cilium-ebpf") -; (version "0.0.0-20200702112145-1c8d4c9ef775") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/cilium/ebpf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1la90b88a1li5hmlqxfx9lgxlyzqb2pd4c2dxmz4s5gg2gz8a5x5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/cilium/ebpf")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9" -; ,go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9))) -; (home-page "https://github.com/cilium/ebpf") -; (synopsis "eBPF") -; (description "Package ebpf is a toolkit for working with eBPF programs. -;") -; (license license:expat))) -; -;(define-public go-github-com-containerd-cgroups-0.0.0-20200710171044-318312a37340 -; (package -; (name "go-github-com-containerd-cgroups") -; (version "0.0.0-20200710171044-318312a37340") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/cgroups") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1kizbm55pmlnly2dggymp84a0d9pn4fh7jf31h6wqm385zrs14zp")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/cgroups")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9" -; ,go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9) -; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) -; ("go-github-com-stretchr-testify-1.2.2" -; ,go-github-com-stretchr-testify-1.2.2) -; ("go-github-com-sirupsen-logrus-1.6.0" -; ,go-github-com-sirupsen-logrus-1.6.0) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-runtime-spec-1.0.2" -; ,go-github-com-opencontainers-runtime-spec-1.0.2) -; ("go-github-com-gogo-protobuf-1.3.1" -; ,go-github-com-gogo-protobuf-1.3.1) -; ("go-github-com-godbus-dbus-v5-5.0.3" -; ,go-github-com-godbus-dbus-v5-5.0.3) -; ("go-github-com-docker-go-units-0.4.0" -; ,go-github-com-docker-go-units-0.4.0) -; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" -; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) -; ("go-github-com-coreos-go-systemd-v22-22.0.0" -; ,go-github-com-coreos-go-systemd-v22-22.0.0) -; ("go-github-com-cilium-ebpf-0.0.0-20200702112145-1c8d4c9ef775" -; ,go-github-com-cilium-ebpf-0.0.0-20200702112145-1c8d4c9ef775))) -; (home-page "https://github.com/containerd/cgroups") -; (synopsis "cgroups") -; (description -; "Go package for creating, managing, inspecting, and destroying cgroups. -;The resources format for settings on the cgroup uses the OCI runtime-spec found -;@url{https://github.com/opencontainers/runtime-spec,here}.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-containerd-1.4.0-beta.2.0.20200729163537-40b22ef07410 -; (package -; (name "go-github-com-containerd-containerd") -; (version "1.4.0-beta.2.0.20200729163537-40b22ef07410") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/containerd") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ky7ny5b0rvkr6a58pdlcm35kc9wls6jvl7cdk8py4a16y1f2lx9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/containerd")) -; (home-page "https://github.com/containerd/containerd") -; (synopsis "Now Recruiting") -; (description -; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") -; (license license:asl2.0))) -; -;(define-public go-github-com-onsi-ginkgo-1.10.1 -; (package -; (name "go-github-com-onsi-ginkgo") -; (version "1.10.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/onsi/ginkgo") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "033a42h1wzmji57p86igg9whvsbp6nvfdsypskw738ys903n3z4d")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/onsi/ginkgo")) -; (home-page "https://github.com/onsi/ginkgo") -; (synopsis "Ginkgo 2.0 Release Candidate is available!") -; (description "Ginkgo is a BDD-style testing framework for Golang -;") -; (license license:expat))) -; -;(define-public go-github-com-opencontainers-go-digest-1.0.0-rc1 -; (package -; (name "go-github-com-opencontainers-go-digest") -; (version "1.0.0-rc1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/go-digest") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "01gc7fpn8ax429024p2fcx3yb18axwz5bjf2hqxlii1jbsgw4bh9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/go-digest")) -; (home-page "https://github.com/opencontainers/go-digest") -; (synopsis "go-digest") -; (description -; "Package digest provides a generalized type to opaquely represent message -;digests and their operations within the registry. The Digest type is -;designed to serve as a flexible identifier in a content-addressable system. -;More importantly, it provides tools and wrappers to work with -;hash.Hash-based digests with little effort. -;") -; (license (list license:asl2.0 license:cc-by-sa4.0)))) -; -;(define-public go-github-com-pkg-errors-0.8.1-0.20171018195549-f15c970de5b7 -; (package -; (name "go-github-com-pkg-errors") -; (version "0.8.1-0.20171018195549-f15c970de5b7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/pkg/errors") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "18jihrffhfsjvz3rkanlhq9xjcdxkqilmflnijc64s7y7lijlbfm")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/pkg/errors")) -; (home-page "https://github.com/pkg/errors") -; (synopsis "errors") -; (description "Package errors provides simple error handling primitives. -;") -; (license license:bsd-2))) -; -;(define-public go-github-com-sirupsen-logrus-1.0.4-0.20170822132746-89742aefa4b2 -; (package -; (name "go-github-com-sirupsen-logrus") -; (version "1.0.4-0.20170822132746-89742aefa4b2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/sirupsen/logrus") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0hk7fabx59msg2y0iik6xvfp80s73ybrwlcshbm9ds91iqbkcxi6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/sirupsen/logrus")) -; (home-page "https://github.com/sirupsen/logrus") -; (synopsis "Logrus") -; (description -; "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20171113213409-9f005a07e0d3 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20171113213409-9f005a07e0d3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1mhmr6ljzl3iafsz4qy8vval7rmr828wh59dlqqqjqx6sqmcs1dv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-github-com-containerd-continuity-0.0.0-20200710164510-efbc4488d8fe -; (package -; (name "go-github-com-containerd-continuity") -; (version "0.0.0-20200710164510-efbc4488d8fe") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/continuity") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0d638nj7z7y8z19zdwbysamqh5m3kiwvnqny7av6bxax9gg6c3h8")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/continuity")) -; (propagated-inputs -; `(("go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2" -; ,go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2) -; ("go-gopkg-in-airbrake-gobrake-v2-2.0.9" -; ,go-gopkg-in-airbrake-gobrake-v2-2.0.9) -; ("go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e" -; ,go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e) -; ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" -; ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) -; ("go-golang-org-x-crypto-0.0.0-20171113213409-9f005a07e0d3" -; ,go-golang-org-x-crypto-0.0.0-20171113213409-9f005a07e0d3) -; ("go-github-com-stretchr-testify-1.4.0" -; ,go-github-com-stretchr-testify-1.4.0) -; ("go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95" -; ,go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95) -; ("go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee" -; ,go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee) -; ("go-github-com-sirupsen-logrus-1.0.4-0.20170822132746-89742aefa4b2" -; ,go-github-com-sirupsen-logrus-1.0.4-0.20170822132746-89742aefa4b2) -; ("go-github-com-pkg-errors-0.8.1-0.20171018195549-f15c970de5b7" -; ,go-github-com-pkg-errors-0.8.1-0.20171018195549-f15c970de5b7) -; ("go-github-com-opencontainers-go-digest-1.0.0-rc1" -; ,go-github-com-opencontainers-go-digest-1.0.0-rc1) -; ("go-github-com-onsi-gomega-1.7.0" ,go-github-com-onsi-gomega-1.7.0) -; ("go-github-com-onsi-ginkgo-1.10.1" ,go-github-com-onsi-ginkgo-1.10.1) -; ("go-github-com-inconshreveable-mousetrap-1.0.0" -; ,go-github-com-inconshreveable-mousetrap-1.0.0) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0) -; ("go-github-com-dustin-go-humanize-0.0.0-20171111073723-bb3d318650d4" -; ,go-github-com-dustin-go-humanize-0.0.0-20171111073723-bb3d318650d4) -; ("go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898" -; ,go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898))) -; (home-page "https://github.com/containerd/continuity") -; (synopsis "continuity") -; (description -; "This package provides a transport-agnostic, filesystem metadata manifest system") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20191210023423-ac6580df4449") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "14gvx65w5lddi20s4wypbbvbg9ni3m8777jhp9nqxhixc61k3dyi")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-containerd-fifo-0.0.0-20200410184934-f15a3290365b -; (package -; (name "go-github-com-containerd-fifo") -; (version "0.0.0-20200410184934-f15a3290365b") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/fifo") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1i3pylxr2a4b9gaifjrhfa21n147vvq2z9iqwzz9id532xv9mr48")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/fifo")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449" -; ,go-golang-org-x-sys-0.0.0-20191210023423-ac6580df4449) -; ("go-github-com-stretchr-testify-1.4.0" -; ,go-github-com-stretchr-testify-1.4.0) -; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) -; (home-page "https://github.com/containerd/fifo") -; (synopsis "fifo") -; (description "Go package for handling fifos in a sane way.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-ttrpc-1.0.1 -; (package -; (name "go-github-com-containerd-ttrpc") -; (version "1.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/ttrpc") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "02ilz14f1k9zip7caqfjwvfg2nwa7bs6880pi6fxbri1wy6ar45q")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/ttrpc")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.26.0" ,go-google-golang-org-grpc-1.26.0) -; ("go-google-golang-org-genproto-0.0.0-20200117163144-32f20d992d24" -; ,go-google-golang-org-genproto-0.0.0-20200117163144-32f20d992d24) -; ("go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479" -; ,go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479) -; ("go-github-com-sirupsen-logrus-1.4.2" -; ,go-github-com-sirupsen-logrus-1.4.2) -; ("go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1" -; ,go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.2" -; ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.2) -; ("go-github-com-gogo-protobuf-1.3.1" -; ,go-github-com-gogo-protobuf-1.3.1))) -; (home-page "https://github.com/containerd/ttrpc") -; (synopsis "ttrpc") -; (description "GRPC for low-memory environments.") -; (license license:asl2.0))) -; -;(define-public go-github-com-gogo-googleapis-1.4.0 -; (package -; (name "go-github-com-gogo-googleapis") -; (version "1.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/gogo/googleapis") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1kka9qmra1klfkjza0s5papqvsi65f2d349dl8k1lvfq487iv9r4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/gogo/googleapis")) -; (propagated-inputs -; `(("go-github-com-gogo-protobuf-1.3.1" -; ,go-github-com-gogo-protobuf-1.3.1))) -; (home-page "https://github.com/gogo/googleapis") -; (synopsis "Google APIs generated by gogoprotobuf") -; (description -; "The @url{https://github.com/gogo/grpc-example,grpc-example} includes an example usage of this repository.") -; (license license:asl2.0))) -; -;(define-public go-github-com-imdario-mergo-0.3.10 -; (package -; (name "go-github-com-imdario-mergo") -; (version "0.3.10") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/imdario/mergo") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "09h765p8yby9r8s0a3hv5kl8n2i382mda76wmvk48w1cc1w9s92p")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/imdario/mergo")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.3.0" ,go-gopkg-in-yaml-v2-2.3.0))) -; (home-page "https://github.com/imdario/mergo") -; (synopsis "Mergo") -; (description -; "This package provides a helper to merge structs and maps in Golang. Useful for configuration default values, avoiding messy if-statements. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-opencontainers-runc-0.1.1 -; (package -; (name "go-github-com-opencontainers-runc") -; (version "0.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/runc") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "09fm7f1k4lvx8v3crqb0cli1x2brlz8ka7f7qa8d2sb6ln58h7w7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/runc")) -; (home-page "https://github.com/opencontainers/runc") -; (synopsis "runc") -; (description -; "@code{runc} is a CLI tool for spawning and running containers according to the OCI specification.") -; (license license:asl2.0))) -; -;(define-public go-github-com-willf-bitset-1.1.11-0.20200630133818-d5bec3311243 -; (package -; (name "go-github-com-willf-bitset") -; (version "1.1.11-0.20200630133818-d5bec3311243") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/bits-and-blooms/bitset") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "05nyd0vhp2h9hbqlv2s9l2py6mr8hpz2zyfj09an1q7wd8vph4ja")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/willf/bitset")) -; (home-page "https://github.com/willf/bitset") -; (synopsis "bitset") -; (description -; "Package bitset implements bitsets, a mapping -;between non-negative integers and boolean values. It should be more -;efficient than map[uint] bool. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-opencontainers-selinux-1.6.0 -; (package -; (name "go-github-com-opencontainers-selinux") -; (version "1.6.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/selinux") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ja41zfgrkhk5khixjnxpi1b85xfcxlkhq2q9b7ma6xjfdhg8bq2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/selinux")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777" -; ,go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777) -; ("go-github-com-willf-bitset-1.1.11-0.20200630133818-d5bec3311243" -; ,go-github-com-willf-bitset-1.1.11-0.20200630133818-d5bec3311243) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) -; (home-page "https://github.com/opencontainers/selinux") -; (synopsis "selinux") -; (description "Common SELinux package used across the container ecosystem.") -; (license license:asl2.0))) -; -;(define-public go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2 -; (package -; (name "go-github-com-syndtr-gocapability") -; (version "0.0.0-20180916011248-d98352740cb2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/syndtr/gocapability") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "065y16562ynixxzj7iys4f4spb7knilbj3h833qlhds381j8hn93")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/syndtr/gocapability")) -; (home-page "https://github.com/syndtr/gocapability") -; (synopsis #f) -; (description #f) -; (license license:bsd-2))) -; -;(define-public go-github-com-containerd-nri-0.0.0-20201007170849-eb1350a75164 -; (package -; (name "go-github-com-containerd-nri") -; (version "0.0.0-20201007170849-eb1350a75164") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/nri") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1yhrxl36fswgxv7ny3p9xi99jsbwyk920gmzkjyfyk6nqs0hqbkg")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/nri")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.30.0" ,go-google-golang-org-grpc-1.30.0) -; ("go-golang-org-x-sys-0.0.0-20200728102440-3e129f6d46b1" -; ,go-golang-org-x-sys-0.0.0-20200728102440-3e129f6d46b1) -; ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" -; ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) -; ("go-golang-org-x-net-0.0.0-20200707034311-ab3426394381" -; ,go-golang-org-x-net-0.0.0-20200707034311-ab3426394381) -; ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) -; ("go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2" -; ,go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-selinux-1.6.0" -; ,go-github-com-opencontainers-selinux-1.6.0) -; ("go-github-com-opencontainers-runc-0.1.1" -; ,go-github-com-opencontainers-runc-0.1.1) -; ("go-github-com-opencontainers-image-spec-1.0.1" -; ,go-github-com-opencontainers-image-spec-1.0.1) -; ("go-github-com-opencontainers-go-digest-1.0.0" -; ,go-github-com-opencontainers-go-digest-1.0.0) -; ("go-github-com-imdario-mergo-0.3.10" -; ,go-github-com-imdario-mergo-0.3.10) -; ("go-github-com-google-uuid-1.1.1" ,go-github-com-google-uuid-1.1.1) -; ("go-github-com-google-go-cmp-0.5.1" -; ,go-github-com-google-go-cmp-0.5.1) -; ("go-github-com-gogo-googleapis-1.4.0" -; ,go-github-com-gogo-googleapis-1.4.0) -; ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" -; ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) -; ("go-github-com-docker-distribution-2.7.1+incompatible" -; ,go-github-com-docker-distribution-2.7.1+incompatible) -; ("go-github-com-containerd-typeurl-1.0.1" -; ,go-github-com-containerd-typeurl-1.0.1) -; ("go-github-com-containerd-ttrpc-1.0.1" -; ,go-github-com-containerd-ttrpc-1.0.1) -; ("go-github-com-containerd-fifo-0.0.0-20200410184934-f15a3290365b" -; ,go-github-com-containerd-fifo-0.0.0-20200410184934-f15a3290365b) -; ("go-github-com-containerd-continuity-0.0.0-20200710164510-efbc4488d8fe" -; ,go-github-com-containerd-continuity-0.0.0-20200710164510-efbc4488d8fe) -; ("go-github-com-containerd-containerd-1.4.0-beta.2.0.20200729163537-40b22ef07410" -; ,go-github-com-containerd-containerd-1.4.0-beta.2.0.20200729163537-40b22ef07410) -; ("go-github-com-containerd-cgroups-0.0.0-20200710171044-318312a37340" -; ,go-github-com-containerd-cgroups-0.0.0-20200710171044-318312a37340) -; ("go-github-com-microsoft-hcsshim-0.8.9" -; ,go-github-com-microsoft-hcsshim-0.8.9))) -; (home-page "https://github.com/containerd/nri") -; (synopsis "nri - Node Resource Interface") -; (description -; "This project is a WIP for a new, CNI like, interface for managing resources on a node for Pods and Containers.") -; (license license:asl2.0))) -; -;(define-public go-github-com-sirupsen-logrus-1.4.1 -; (package -; (name "go-github-com-sirupsen-logrus") -; (version "1.4.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/sirupsen/logrus") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1m7ny9jkb98cxqhsp13xa5hnqh1s9f25x04q6arsala4zswsw33c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/sirupsen/logrus")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33" -; ,go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33) -; ("go-github-com-stretchr-testify-1.2.2" -; ,go-github-com-stretchr-testify-1.2.2) -; ("go-github-com-stretchr-objx-0.1.1" -; ,go-github-com-stretchr-objx-0.1.1) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.1" -; ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.1) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://github.com/sirupsen/logrus") -; (synopsis "Logrus") -; (description -; "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190916202348-b4ddaad3f8a3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "05pa68kqxhpjk71b4cbm8vyzh6527b3ig6war2jr1g4aj3b7f1ak")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-microsoft-go-winio-0.4.16-0.20201130162521-d1ffc52c7331 -; (package -; (name "go-github-com-microsoft-go-winio") -; (version "0.4.16-0.20201130162521-d1ffc52c7331") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/microsoft/go-winio") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0snwbwdjs34x0my9ri77cvrbnahdiyjh2jlkzf12fy48p7fyk7pq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/Microsoft/go-winio")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3" -; ,go-golang-org-x-sys-0.0.0-20190916202348-b4ddaad3f8a3) -; ("go-github-com-sirupsen-logrus-1.4.1" -; ,go-github-com-sirupsen-logrus-1.4.1) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) -; (home-page "https://github.com/Microsoft/go-winio") -; (synopsis "go-winio") -; (description -; "This repository contains utilities for efficiently performing Win32 IO operations in -;Go. Currently, this is focused on accessing named pipes and other file handles, and -;for using named pipes as a net transport.") -; (license license:expat))) -; -;(define-public go-golang-org-x-sys-0.0.0-20191022100944-742c48ecaeb7 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20191022100944-742c48ecaeb7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1saf59bplvvb753my15ijxcy4a1jwfg53cmkgb6wkln2x4fgnhkp")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-cilium-ebpf-0.0.0-20200110133405-4032b1d8aae3 -; (package -; (name "go-github-com-cilium-ebpf") -; (version "0.0.0-20200110133405-4032b1d8aae3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/cilium/ebpf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "107x63zl8dlw2izn5xw8pnflgq19srpa46bgvjs8q4d61i02q1fr")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/cilium/ebpf")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20191022100944-742c48ecaeb7" -; ,go-golang-org-x-sys-0.0.0-20191022100944-742c48ecaeb7) -; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1))) -; (home-page "https://github.com/cilium/ebpf") -; (synopsis "eBPF") -; (description "Package ebpf is a toolkit for working with eBPF programs. -;") -; (license license:expat))) -; -;(define-public go-github-com-coreos-go-systemd-v22-22.0.0 -; (package -; (name "go-github-com-coreos-go-systemd-v22") -; (version "22.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/coreos/go-systemd") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0p4sb2fxxm2j1xny2l4fkq4kwj74plvh600gih8nyniqzannhrdx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/coreos/go-systemd/v22")) -; (propagated-inputs -; `(("go-github-com-godbus-dbus-v5-5.0.3" -; ,go-github-com-godbus-dbus-v5-5.0.3))) -; (home-page "https://github.com/coreos/go-systemd") -; (synopsis "go-systemd") -; (description "Go bindings to systemd. The project has several packages:") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-cgroups-0.0.0-20200531161412-0dbf7f05ba59 -; (package -; (name "go-github-com-containerd-cgroups") -; (version "0.0.0-20200531161412-0dbf7f05ba59") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/cgroups") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "10abzkjf77s8pv4mpyvy2jbl8wckhk3j7ykgs01sclal21v8p251")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/cgroups")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479" -; ,go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479) -; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) -; ("go-github-com-stretchr-testify-1.2.2" -; ,go-github-com-stretchr-testify-1.2.2) -; ("go-github-com-sirupsen-logrus-1.4.2" -; ,go-github-com-sirupsen-logrus-1.4.2) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-runtime-spec-1.0.2" -; ,go-github-com-opencontainers-runtime-spec-1.0.2) -; ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.2" -; ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.2) -; ("go-github-com-gogo-protobuf-1.3.1" -; ,go-github-com-gogo-protobuf-1.3.1) -; ("go-github-com-godbus-dbus-v5-5.0.3" -; ,go-github-com-godbus-dbus-v5-5.0.3) -; ("go-github-com-docker-go-units-0.4.0" -; ,go-github-com-docker-go-units-0.4.0) -; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" -; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) -; ("go-github-com-coreos-go-systemd-v22-22.0.0" -; ,go-github-com-coreos-go-systemd-v22-22.0.0) -; ("go-github-com-cilium-ebpf-0.0.0-20200110133405-4032b1d8aae3" -; ,go-github-com-cilium-ebpf-0.0.0-20200110133405-4032b1d8aae3))) -; (home-page "https://github.com/containerd/cgroups") -; (synopsis "cgroups") -; (description -; "Go package for creating, managing, inspecting, and destroying cgroups. -;The resources format for settings on the cgroup uses the OCI runtime-spec found -;@url{https://github.com/opencontainers/runtime-spec,here}.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1 -; (package -; (name "go-github-com-containerd-console") -; (version "0.0.0-20180822173158-c12b1e7919c1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/console") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ylrnmdhn9a2f8w8fsdgsvwnz5j0whhyhppjnhqc4lh8h9p9dpi9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/console")) -; (home-page "https://github.com/containerd/console") -; (synopsis "console") -; (description -; "Golang package for dealing with consoles. Light on deps and a simple API.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-containerd-1.3.2 -; (package -; (name "go-github-com-containerd-containerd") -; (version "1.3.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/containerd") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0qz6ss7a6f2r7gl7aar39pr5ry9l7nh7dn3kclr18nwdv01gmrvc")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/containerd")) -; (home-page "https://github.com/containerd/containerd") -; (synopsis "Now Recruiting") -; (description -; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc -; (package -; (name "go-github-com-containerd-continuity") -; (version "0.0.0-20190426062206-aaeac12a7ffc") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/continuity") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "05caqvxxb831xfvqnga692k98cy8xzkllqg1ibra0fb0ljnhbmca")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/continuity")) -; (home-page "https://github.com/containerd/continuity") -; (synopsis "continuity") -; (description -; "This package provides a transport-agnostic, filesystem metadata manifest system") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448 -; (package -; (name "go-github-com-containerd-fifo") -; (version "0.0.0-20190226154929-a9fb20d87448") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/fifo") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0c0sgfnafjnws4jgziczs6wxh0adjdrp6yyd88b7xy0hv13fsnqa")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/fifo")) -; (home-page "https://github.com/containerd/fifo") -; (synopsis "fifo") -; (description "Go package for handling fifos in a sane way.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3 -; (package -; (name "go-github-com-containerd-go-runc") -; (version "0.0.0-20180907222934-5a6d9f37cfa3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/go-runc") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "07qpxcjy64m238igpmj8g9z7qhf06k5xy1jcgpgvf5n912g4k3vd")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/go-runc")) -; (home-page "https://github.com/containerd/go-runc") -; (synopsis "go-runc") -; (description -; "This is a package for consuming the @url{https://github.com/opencontainers/runc,runc} binary in your Go applications. -;It tries to expose all the settings and features of the runc CLI. If there is something missing then add it, its opensource!") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de -; (package -; (name "go-github-com-containerd-ttrpc") -; (version "0.0.0-20190828154514-0e0f228740de") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/ttrpc") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1kzclhmicw2xkiqsg6npx0xzs5jx36mqmyd0gj5dzv88i7p4b8dx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/ttrpc")) -; (home-page "https://github.com/containerd/ttrpc") -; (synopsis "ttrpc") -; (description "GRPC for low-memory environments.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd -; (package -; (name "go-github-com-containerd-typeurl") -; (version "0.0.0-20180627222232-a93fcdb778cd") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/typeurl") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0aqnf5rzc5pldln0czhxlr0fqaf5553ab7wzsq85p90lg1ryqnd6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/typeurl")) -; (home-page "https://github.com/containerd/typeurl") -; (synopsis "typeurl") -; (description -; "This package provides a Go package for managing the registration, marshaling, and unmarshaling of encoded types.") -; (license license:asl2.0))) -; -;(define-public go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2 -; (package -; (name "go-github-com-opencontainers-go-digest") -; (version "0.0.0-20180430190053-c9281466c8b2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/go-digest") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1djdazssy27xn91pjhx3dgb0f11bnlzzbwkh7f8zwnpz011anasi")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/go-digest")) -; (home-page "https://github.com/opencontainers/go-digest") -; (synopsis "go-digest") -; (description -; "Package digest provides a generalized type to opaquely represent message -;digests and their operations within the registry. The Digest type is -;designed to serve as a flexible identifier in a content-addressable system. -;More importantly, it provides tools and wrappers to work with -;hash.Hash-based digests with little effort. -;") -; (license (list license:asl2.0 license:cc-by-sa4.0)))) -; -;(define-public go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f -; (package -; (name "go-github-com-opencontainers-runc") -; (version "0.0.0-20190115041553-12f6a991201f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/runc") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0lr4q440pliilq2njyj5glfpma89r9l1cl687niwkp2pzb32dm45")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/runc")) -; (home-page "https://github.com/opencontainers/runc") -; (synopsis "runc") -; (description -; "@code{runc} is a CLI tool for spawning and running containers according to the OCI specification.") -; (license license:asl2.0))) -; -;(define-public go-github-com-opencontainers-runtime-spec-1.0.2 -; (package -; (name "go-github-com-opencontainers-runtime-spec") -; (version "1.0.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/runtime-spec") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "19w981vcmd5lp2hy0630x6ayb8zz17n2vxqm2py5mg945xflcizg")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) -; (home-page "https://github.com/opencontainers/runtime-spec") -; (synopsis "Open Container Initiative Runtime Specification") -; (description -; "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") -; (license license:asl2.0))) -; -;(define-public go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7 -; (package -; (name "go-github-com-prometheus-procfs") -; (version "0.0.0-20180125133057-cb4147076ac7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/procfs") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0zhlrik0f9q1lj6cisgnxgbz4darbcix52hm5abi24l2ahchf5ca")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/procfs")) -; (home-page "https://github.com/prometheus/procfs") -; (synopsis "procfs") -; (description -; "Package procfs provides functions to retrieve system, kernel and process -;metrics from the pseudo-filesystem proc. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-urfave-cli-1.22.2 -; (package -; (name "go-github-com-urfave-cli") -; (version "1.22.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/urfave/cli") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "10mcnvi5qmn00vpyk6si8gjka7p654wr9hac4zc9w5h3ickhvbdc")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/urfave/cli")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) -; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d" -; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d) -; ("go-github-com-burntsushi-toml-0.3.1" -; ,go-github-com-burntsushi-toml-0.3.1))) -; (home-page "https://github.com/urfave/cli") -; (synopsis "cli") -; (description -; "Package cli provides a minimal framework for creating and organizing command line -;Go applications. cli is designed to be easy to understand and write, the most simple -;cli application can be written as follows: -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-net-0.0.0-20190501004415-9ce7a6920f09 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20190501004415-9ce7a6920f09") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1kbs85jsqbv4v89ii2zam4b8dhmllhsrf46njmi09x0w6s0b9cbk")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-go-opencensus-io-0.22.0 -; (package -; (name "go-go-opencensus-io") -; (version "0.22.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/census-instrumentation/opencensus-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "05jr8gkr2w34i5wwki4zhl5ch0qrgi7cdgag5iy5gpxplhbrvbg9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "go.opencensus.io")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.20.1" ,go-google-golang-org-grpc-1.20.1) -; ("go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb" -; ,go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb) -; ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) -; ("go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd" -; ,go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd) -; ("go-golang-org-x-net-0.0.0-20190501004415-9ce7a6920f09" -; ,go-golang-org-x-net-0.0.0-20190501004415-9ce7a6920f09) -; ("go-github-com-hashicorp-golang-lru-0.5.1" -; ,go-github-com-hashicorp-golang-lru-0.5.1) -; ("go-github-com-google-go-cmp-0.3.0" -; ,go-github-com-google-go-cmp-0.3.0) -; ("go-github-com-golang-protobuf-1.3.1" -; ,go-github-com-golang-protobuf-1.3.1))) -; (home-page "https://go.opencensus.io") -; (synopsis "OpenCensus Libraries for Go") -; (description "Package opencensus contains Go support for OpenCensus. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20191004110552-13f9640d40b9") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ba2767lvklnmfvb9jkwvd4m7z6326gaiz3rgylh795g88hy34g1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873 -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20190502173448-54afdca5d873") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1vm1vggl874jd4wi6qyl7aggc6s6kdsazk4vj0cs2dfcw2xnw8ag")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" -; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) -; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) -; ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" -; ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) -; ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" -; ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) -; ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" -; ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd) -; ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" -; ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) -; ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" -; ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-grpc-1.23.1 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.23.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1d8gjjhrqbiq8pb56lb4x10hb752k7k06wspjvh7v0vpzmf25981")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" -; ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) -; ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" -; ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) -; ("go-google-golang-org-appengine-1.1.0" -; ,go-google-golang-org-appengine-1.1.0) -; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" -; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-github-com-google-go-cmp-0.2.0" -; ,go-github-com-google-go-cmp-0.2.0) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0) -; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-client9-misspell-0.3.4" -; ,go-github-com-client9-misspell-0.3.4) -; ("go-github-com-burntsushi-toml-0.3.1" -; ,go-github-com-burntsushi-toml-0.3.1) -; ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-microsoft-hcsshim-0.8.14 -; (package -; (name "go-github-com-microsoft-hcsshim") -; (version "0.8.14") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/microsoft/hcsshim") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0k57knv8zrf32hp7rpv1km9j772w6752pfvdbpd3l711ism48c84")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/Microsoft/hcsshim")) -; (propagated-inputs -; `(("go-gotest-tools-2.2.0+incompatible" -; ,go-gotest-tools-2.2.0+incompatible) -; ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) -; ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" -; ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) -; ("go-google-golang-org-grpc-1.23.1" ,go-google-golang-org-grpc-1.23.1) -; ("go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873" -; ,go-google-golang-org-genproto-0.0.0-20190502173448-54afdca5d873) -; ("go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3" -; ,go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3) -; ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" -; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) -; ("go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9" -; ,go-golang-org-x-net-0.0.0-20191004110552-13f9640d40b9) -; ("go-go-opencensus-io-0.22.0" ,go-go-opencensus-io-0.22.0) -; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) -; ("go-github-com-stretchr-testify-1.4.0" -; ,go-github-com-stretchr-testify-1.4.0) -; ("go-github-com-sirupsen-logrus-1.4.2" -; ,go-github-com-sirupsen-logrus-1.4.2) -; ("go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7" -; ,go-github-com-prometheus-procfs-0.0.0-20180125133057-cb4147076ac7) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-runtime-spec-1.0.2" -; ,go-github-com-opencontainers-runtime-spec-1.0.2) -; ("go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f" -; ,go-github-com-opencontainers-runc-0.0.0-20190115041553-12f6a991201f) -; ("go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2" -; ,go-github-com-opencontainers-go-digest-0.0.0-20180430190053-c9281466c8b2) -; ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2) -; ("go-github-com-gogo-protobuf-1.3.1" -; ,go-github-com-gogo-protobuf-1.3.1) -; ("go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd" -; ,go-github-com-containerd-typeurl-0.0.0-20180627222232-a93fcdb778cd) -; ("go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de" -; ,go-github-com-containerd-ttrpc-0.0.0-20190828154514-0e0f228740de) -; ("go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3" -; ,go-github-com-containerd-go-runc-0.0.0-20180907222934-5a6d9f37cfa3) -; ("go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448" -; ,go-github-com-containerd-fifo-0.0.0-20190226154929-a9fb20d87448) -; ("go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc" -; ,go-github-com-containerd-continuity-0.0.0-20190426062206-aaeac12a7ffc) -; ("go-github-com-containerd-containerd-1.3.2" -; ,go-github-com-containerd-containerd-1.3.2) -; ("go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1" -; ,go-github-com-containerd-console-0.0.0-20180822173158-c12b1e7919c1) -; ("go-github-com-containerd-cgroups-0.0.0-20200531161412-0dbf7f05ba59" -; ,go-github-com-containerd-cgroups-0.0.0-20200531161412-0dbf7f05ba59) -; ("go-github-com-microsoft-go-winio-0.4.16-0.20201130162521-d1ffc52c7331" -; ,go-github-com-microsoft-go-winio-0.4.16-0.20201130162521-d1ffc52c7331))) -; (home-page "https://github.com/Microsoft/hcsshim") -; (synopsis "hcsshim") -; (description -; "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") -; (license license:expat))) -; -;(define-public go-github-com-containerd-containerd-1.4.3 -; (package -; (name "go-github-com-containerd-containerd") -; (version "1.4.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/containerd") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "09xvhjg5f8h90w1y94kqqnqzhbhd62dcdd9wb9sdqakisjk6zrl0")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/containerd")) -; (home-page "https://github.com/containerd/containerd") -; (synopsis "Now Recruiting") -; (description -; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") -; (license license:asl2.0))) -; -;(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.2 -; (package -; (name "go-github-com-konsorten-go-windows-terminal-sequences") -; (version "1.0.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/konsorten/go-windows-terminal-sequences") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "09mn209ika7ciy87xf2x31dq5fnqw39jidgaljvmqxwk7ff1hnx7")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) -; (home-page "https://github.com/konsorten/go-windows-terminal-sequences") -; (synopsis "Windows Terminal Sequences") -; (description -; "This library allow for enabling Windows terminal color support for Go.") -; (license license:expat))) -; -;(define-public go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1 -; (package -; (name "go-github-com-prometheus-procfs") -; (version "0.0.0-20190522114515-bc1a522cf7b1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/procfs") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "13ws66kd65zbhk31zmax9qgmh22fzjcgs5ihy4fm1d775w6bmdzx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/procfs")) -; (propagated-inputs -; `(("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" -; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4))) -; (home-page "https://github.com/prometheus/procfs") -; (synopsis "procfs") -; (description -; "Package procfs provides functions to retrieve system, kernel and process -;metrics from the pseudo-filesystem proc. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20200120151820-655fe14d7479") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "133yxmdcny5b0r8775m52sj7zja36riv0x2437k7jccywqi8nx32")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20200117163144-32f20d992d24 -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20200117163144-32f20d992d24") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1kl696jd8fykykjjbngqpgqsngajwbbrvrpl1q0804l6hz8qk858")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" -; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) -; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) -; ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" -; ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) -; ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" -; ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) -; ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" -; ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-ttrpc-1.0.2 -; (package -; (name "go-github-com-containerd-ttrpc") -; (version "1.0.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/ttrpc") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0plkm3yrr20vccfl0x8dxys3iphjwnmi285in0pivff6p9djf3yz")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/ttrpc")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.26.0" ,go-google-golang-org-grpc-1.26.0) -; ("go-google-golang-org-genproto-0.0.0-20200117163144-32f20d992d24" -; ,go-google-golang-org-genproto-0.0.0-20200117163144-32f20d992d24) -; ("go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479" -; ,go-golang-org-x-sys-0.0.0-20200120151820-655fe14d7479) -; ("go-github-com-sirupsen-logrus-1.4.2" -; ,go-github-com-sirupsen-logrus-1.4.2) -; ("go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1" -; ,go-github-com-prometheus-procfs-0.0.0-20190522114515-bc1a522cf7b1) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.2" -; ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.2) -; ("go-github-com-gogo-protobuf-1.3.1" -; ,go-github-com-gogo-protobuf-1.3.1))) -; (home-page "https://github.com/containerd/ttrpc") -; (synopsis "ttrpc") -; (description "GRPC for low-memory environments.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-typeurl-1.0.1 -; (package -; (name "go-github-com-containerd-typeurl") -; (version "1.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/typeurl") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "09cgrchrw5d36zq0mc321l5qr2gfbdm1z1a3hhkhqr4qay6vglqn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/typeurl")) -; (propagated-inputs -; `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-gogo-protobuf-1.3.1" -; ,go-github-com-gogo-protobuf-1.3.1))) -; (home-page "https://github.com/containerd/typeurl") -; (synopsis "typeurl") -; (description -; "This package provides a Go package for managing the registration, marshaling, and unmarshaling of encoded types.") -; (license license:asl2.0))) -; -;(define-public go-github-com-opencontainers-runc-1.0.0-rc9 -; (package -; (name "go-github-com-opencontainers-runc") -; (version "1.0.0-rc9") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/runc") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ss5b46cbbckyqlwgj8dbd5l59c5y0kp679hcpc0ybaj53pmwxj7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/runc")) -; (home-page "https://github.com/opencontainers/runc") -; (synopsis "runc") -; (description -; "@code{runc} is a CLI tool for spawning and running containers according to the OCI specification.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-zfs-0.0.0-20210301145711-11e8f1707f62 -; (package -; (name "go-github-com-containerd-zfs") -; (version "0.0.0-20210301145711-11e8f1707f62") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/zfs") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1919ax45a07v2y56xq5c0xihkn2c5zgyqv68rzx3x5cc20n2p8yg")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/zfs")) -; (propagated-inputs -; `(("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) -; ("go-go-etcd-io-bbolt-1.3.3" ,go-go-etcd-io-bbolt-1.3.3) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-runc-1.0.0-rc9" -; ,go-github-com-opencontainers-runc-1.0.0-rc9) -; ("go-github-com-opencontainers-image-spec-1.0.1" -; ,go-github-com-opencontainers-image-spec-1.0.1) -; ("go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible" -; ,go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible) -; ("go-github-com-google-uuid-1.1.1" ,go-github-com-google-uuid-1.1.1) -; ("go-github-com-gogo-protobuf-1.3.1" -; ,go-github-com-gogo-protobuf-1.3.1) -; ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" -; ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) -; ("go-github-com-containerd-typeurl-1.0.1" -; ,go-github-com-containerd-typeurl-1.0.1) -; ("go-github-com-containerd-ttrpc-1.0.2" -; ,go-github-com-containerd-ttrpc-1.0.2) -; ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" -; ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) -; ("go-github-com-containerd-containerd-1.4.3" -; ,go-github-com-containerd-containerd-1.4.3) -; ("go-github-com-microsoft-hcsshim-0.8.14" -; ,go-github-com-microsoft-hcsshim-0.8.14))) -; (home-page "https://github.com/containerd/zfs") -; (synopsis "ZFS snapshotter plugin") -; (description "ZFS snapshotter plugin for containerd.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containernetworking-cni-0.7.1 -; (package -; (name "go-github-com-containernetworking-cni") -; (version "0.7.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containernetworking/cni") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "02qn1br8164d99978acalisy1sx294g1axnii4yh1wji0fc735xz")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containernetworking/cni")) -; (home-page "https://github.com/containernetworking/cni") -; (synopsis "CNI - the Container Network Interface") -; (description -; "CNI (), a @url{https://cncf.io,Cloud Native Computing Foundation} project, consists of a specification and libraries for writing plugins to configure network interfaces in Linux containers, along with a number of supported plugins. -;CNI concerns itself only with network connectivity of containers and removing allocated resources when the container is deleted. -;Because of this focus, CNI has a wide range of support and the specification is simple to implement.") -; (license license:asl2.0))) -; -;(define-public go-github-com-coreos-go-iptables-0.4.5 -; (package -; (name "go-github-com-coreos-go-iptables") -; (version "0.4.5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/coreos/go-iptables") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "04iqh4hvvrrvjsfjyaa5bdyqklwzrzzy8yiyvja90hvv121f7975")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/coreos/go-iptables")) -; (home-page "https://github.com/coreos/go-iptables") -; (synopsis "go-iptables") -; (description "Go bindings for iptables utility.") -; (license license:asl2.0))) -; -;(define-public go-github-com-onsi-ginkgo-0.0.0-20151202141238-7f8ab55aaf3b -; (package -; (name "go-github-com-onsi-ginkgo") -; (version "0.0.0-20151202141238-7f8ab55aaf3b") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/onsi/ginkgo") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0nas6wqdym4jx42kw9wj80b58r69k9qhnvglz009lj34g5gba7rw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/onsi/ginkgo")) -; (home-page "https://github.com/onsi/ginkgo") -; (synopsis "Ginkgo 2.0 Release Candidate is available!") -; (description "Ginkgo is a BDD-style testing framework for Golang -;") -; (license license:expat))) -; -;(define-public go-github-com-onsi-gomega-0.0.0-20151007035656-2152b45fa28a -; (package -; (name "go-github-com-onsi-gomega") -; (version "0.0.0-20151007035656-2152b45fa28a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/onsi/gomega") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0amjlkawp84mmdqjgdamf93p1546cla6h4wwrx7hf5r862r2qcw2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/onsi/gomega")) -; (home-page "https://github.com/onsi/gomega") -; (synopsis ": a BDD Testing Framework for Golang") -; (description -; "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library. -;") -; (license license:expat))) -; -;(define-public go-github-com-vishvananda-netlink-0.0.0-20181108222139-023a6dafdcdf -; (package -; (name "go-github-com-vishvananda-netlink") -; (version "0.0.0-20181108222139-023a6dafdcdf") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/vishvananda/netlink") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1i5q8r8rg7lxzvq2vhbf25lrkzdlgficfv0bxg9rf7cgg6z819sn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/vishvananda/netlink")) -; (home-page "https://github.com/vishvananda/netlink") -; (synopsis "netlink - netlink library for go") -; (description -; "Package netlink provides a simple library for netlink. Netlink is -;the interface a user-space program in linux uses to communicate with -;the kernel. It can be used to add and remove interfaces, set up ip -;addresses and routes, and confiugre ipsec. Netlink communication -;requires elevated privileges, so in most cases this code needs to -;be run as root. The low level primitives for netlink are contained -;in the nl subpackage. This package attempts to provide a high-level -;interface that is loosly modeled on the iproute2 cli. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-vishvananda-netns-0.0.0-20180720170159-13995c7128cc -; (package -; (name "go-github-com-vishvananda-netns") -; (version "0.0.0-20180720170159-13995c7128cc") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/vishvananda/netns") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1zk6w8158qi4niva5rijchbv9ixgmijsgqshh54wdaav4xrhjshn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/vishvananda/netns")) -; (home-page "https://github.com/vishvananda/netns") -; (synopsis "netns - network namespaces in go") -; (description -; "Package netns allows ultra-simple network namespace handling. NsHandles -;can be retrieved and set. Note that the current namespace is thread -;local so actions that set and reset namespaces should use LockOSThread -;to make sure the namespace doesn't change due to a goroutine switch. -;It is best to close NsHandles when you are done with them. This can be -;accomplished via a `defer ns.Close()` on the handle. Changing namespaces -;requires elevated privileges, so in most cases this code needs to be run -;as root. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20181009213950-7c1a557ab941 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20181009213950-7c1a557ab941") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1f1q9mby8m7ws3gbj90v0prhnf4g2sgf74azmw31kzwd6azlar3m")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20181011144130-49bb7cea24b1 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20181011144130-49bb7cea24b1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "111q4qm3hcjvzvyv9y5rz8ydnyg48rckcygxqy6gv63q618wz6gn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-github-com-containernetworking-plugins-0.8.6 -; (package -; (name "go-github-com-containernetworking-plugins") -; (version "0.8.6") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containernetworking/plugins") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0f1cqxjf26sy1c4aw6y7pyd9lrz0vknby4q5j6xj77a1pab9073m")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containernetworking/plugins")) -; (propagated-inputs -; `(("go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2" -; ,go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2) -; ("go-gopkg-in-airbrake-gobrake-v2-2.0.9" -; ,go-gopkg-in-airbrake-gobrake-v2-2.0.9) -; ("go-golang-org-x-sys-0.0.0-20190616124812-15dcb6c0061f" -; ,go-golang-org-x-sys-0.0.0-20190616124812-15dcb6c0061f) -; ("go-golang-org-x-net-0.0.0-20181011144130-49bb7cea24b1" -; ,go-golang-org-x-net-0.0.0-20181011144130-49bb7cea24b1) -; ("go-golang-org-x-crypto-0.0.0-20181009213950-7c1a557ab941" -; ,go-golang-org-x-crypto-0.0.0-20181009213950-7c1a557ab941) -; ("go-github-com-vishvananda-netns-0.0.0-20180720170159-13995c7128cc" -; ,go-github-com-vishvananda-netns-0.0.0-20180720170159-13995c7128cc) -; ("go-github-com-vishvananda-netlink-0.0.0-20181108222139-023a6dafdcdf" -; ,go-github-com-vishvananda-netlink-0.0.0-20181108222139-023a6dafdcdf) -; ("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0) -; ("go-github-com-sirupsen-logrus-1.0.6" -; ,go-github-com-sirupsen-logrus-1.0.6) -; ("go-github-com-safchain-ethtool-0.0.0-20190326074333-42ed695e3de8" -; ,go-github-com-safchain-ethtool-0.0.0-20190326074333-42ed695e3de8) -; ("go-github-com-onsi-gomega-0.0.0-20151007035656-2152b45fa28a" -; ,go-github-com-onsi-gomega-0.0.0-20151007035656-2152b45fa28a) -; ("go-github-com-onsi-ginkgo-0.0.0-20151202141238-7f8ab55aaf3b" -; ,go-github-com-onsi-ginkgo-0.0.0-20151202141238-7f8ab55aaf3b) -; ("go-github-com-mattn-go-shellwords-1.0.3" -; ,go-github-com-mattn-go-shellwords-1.0.3) -; ("go-github-com-j-keck-arping-0.0.0-20160618110441-2cf9dc699c56" -; ,go-github-com-j-keck-arping-0.0.0-20160618110441-2cf9dc699c56) -; ("go-github-com-golang-protobuf-1.3.1" -; ,go-github-com-golang-protobuf-1.3.1) -; ("go-github-com-godbus-dbus-0.0.0-20180201030542-885f9cc04c9c" -; ,go-github-com-godbus-dbus-0.0.0-20180201030542-885f9cc04c9c) -; ("go-github-com-d2g-hardwareaddr-0.0.0-20190221164911-e7d9fbe030e4" -; ,go-github-com-d2g-hardwareaddr-0.0.0-20190221164911-e7d9fbe030e4) -; ("go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5" -; ,go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5) -; ("go-github-com-d2g-dhcp4client-1.0.0" -; ,go-github-com-d2g-dhcp4client-1.0.0) -; ("go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c" -; ,go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c) -; ("go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7" -; ,go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7) -; ("go-github-com-coreos-go-iptables-0.4.5" -; ,go-github-com-coreos-go-iptables-0.4.5) -; ("go-github-com-containernetworking-cni-0.7.1" -; ,go-github-com-containernetworking-cni-0.7.1) -; ("go-github-com-buger-jsonparser-0.0.0-20180808090653-f4dd9f5a6b44" -; ,go-github-com-buger-jsonparser-0.0.0-20180808090653-f4dd9f5a6b44) -; ("go-github-com-alexflint-go-filemutex-0.0.0-20171022225611-72bdc8eae2ae" -; ,go-github-com-alexflint-go-filemutex-0.0.0-20171022225611-72bdc8eae2ae) -; ("go-github-com-microsoft-hcsshim-0.8.6" -; ,go-github-com-microsoft-hcsshim-0.8.6) -; ("go-github-com-microsoft-go-winio-0.4.11" -; ,go-github-com-microsoft-go-winio-0.4.11))) -; (home-page "https://github.com/containernetworking/plugins") -; (synopsis "Plugins") -; (description -; "Some CNI network plugins, maintained by the containernetworking team. For more information, see the @url{https://www.cni.dev,CNI website}.") -; (license license:asl2.0))) -; -;(define-public go-github-com-imdario-mergo-0.3.11 -; (package -; (name "go-github-com-imdario-mergo") -; (version "0.3.11") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/imdario/mergo") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "07iay9j3ry7qrflvn9bgyyggvwacl1s1in1cnbmsp1020ydkph8k")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/imdario/mergo")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.3.0" ,go-gopkg-in-yaml-v2-2.3.0))) -; (home-page "https://github.com/imdario/mergo") -; (synopsis "Mergo") -; (description -; "This package provides a helper to merge structs and maps in Golang. Useful for configuration default values, avoiding messy if-statements. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-klauspost-compress-1.11.3 -; (package -; (name "go-github-com-klauspost-compress") -; (version "1.11.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/klauspost/compress") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "04wpilw6072fh2wd492ma1nw4br7bvz466mj0vi2m1g4w6d0z88z")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/klauspost/compress")) -; (home-page "https://github.com/klauspost/compress") -; (synopsis "compress") -; (description "This package provides various compression algorithms.") -; (license #f))) -; -;(define-public go-github-com-checkpoint-restore-go-criu-v4-4.1.0 -; (package -; (name "go-github-com-checkpoint-restore-go-criu-v4") -; (version "4.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/checkpoint-restore/go-criu") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0hfgjck015df5h44hczl3x4gg430saczgkl619cp0l6cpaxga5yi")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/checkpoint-restore/go-criu/v4")) -; (propagated-inputs -; `(("go-github-com-golang-protobuf-1.3.5" -; ,go-github-com-golang-protobuf-1.3.5))) -; (home-page "https://github.com/checkpoint-restore/go-criu") -; (synopsis "go-criu -- Go bindings for") -; (description -; "This repository provides Go bindings for CRIU. The code is based on the Go based PHaul -;implementation from the CRIU repository. For easier inclusion into other Go projects the -;CRIU Go bindings have been moved to this repository.") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20200124204421-9fbb57f87de9") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0qaz2jjkrxzgkapmjqingdwamrgq2aiblxvzzgrcsv2qhkj0wdps")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-cilium-ebpf-0.2.0 -; (package -; (name "go-github-com-cilium-ebpf") -; (version "0.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/cilium/ebpf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0f7my8n5v2c5cmgrcikgi0naamglr7c4khgxkbb1k5wl8mm9465a")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/cilium/ebpf")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9" -; ,go-golang-org-x-sys-0.0.0-20200124204421-9fbb57f87de9) -; ("go-github-com-google-go-cmp-0.5.2" -; ,go-github-com-google-go-cmp-0.5.2))) -; (home-page "https://github.com/cilium/ebpf") -; (synopsis "eBPF") -; (description "Package ebpf is a toolkit for working with eBPF programs. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20200916030750-2334cc1a136f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1lc7d513gwwpr6r7f55743684n1qsgn9vmg6b79x0hsp1x90z4mr")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-containerd-console-1.0.1 -; (package -; (name "go-github-com-containerd-console") -; (version "1.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/console") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0s837wj6h80fykk2pdmaji75rw9c3863by0gh0cq51hh0lgyjpvg")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/console")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f" -; ,go-golang-org-x-sys-0.0.0-20200916030750-2334cc1a136f) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) -; (home-page "https://github.com/containerd/console") -; (synopsis "console") -; (description -; "Golang package for dealing with consoles. Light on deps and a simple API.") -; (license license:asl2.0))) -; -;(define-public go-github-com-coreos-go-systemd-v22-22.1.0 -; (package -; (name "go-github-com-coreos-go-systemd-v22") -; (version "22.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/coreos/go-systemd") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "127dj1iwp69yj74nwh9ckgc0mkk1mv4yzbxmbdxix1r7j6q35z3j")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/coreos/go-systemd/v22")) -; (propagated-inputs -; `(("go-github-com-godbus-dbus-v5-5.0.3" -; ,go-github-com-godbus-dbus-v5-5.0.3))) -; (home-page "https://github.com/coreos/go-systemd") -; (synopsis "go-systemd") -; (description "Go bindings to systemd. The project has several packages:") -; (license license:asl2.0))) -; -;(define-public go-github-com-godbus-dbus-v5-5.0.3 -; (package -; (name "go-github-com-godbus-dbus-v5") -; (version "5.0.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/godbus/dbus") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1bkc904073k807yxg6mvqaxrr6ammmhginr9p54jfb55mz3hfw3s")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/godbus/dbus/v5")) -; (home-page "https://github.com/godbus/dbus") -; (synopsis "dbus") -; (description -; "Package dbus implements bindings to the D-Bus message bus system. -;") -; (license license:bsd-2))) -; -;(define-public go-github-com-opencontainers-runc-1.0.0-rc93 -; (package -; (name "go-github-com-opencontainers-runc") -; (version "1.0.0-rc93") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/runc") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "008d5wkznic80n5q1vwx727qn5ifalc7cydq68hc1gk9wrhna4v4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/runc")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" -; ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68) -; ("go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b" -; ,go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b) -; ("go-github-com-willf-bitset-1.1.11" -; ,go-github-com-willf-bitset-1.1.11) -; ("go-github-com-vishvananda-netlink-1.1.0" -; ,go-github-com-vishvananda-netlink-1.1.0) -; ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) -; ("go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635" -; ,go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635) -; ("go-github-com-sirupsen-logrus-1.7.0" -; ,go-github-com-sirupsen-logrus-1.7.0) -; ("go-github-com-seccomp-libseccomp-golang-0.9.1" -; ,go-github-com-seccomp-libseccomp-golang-0.9.1) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-selinux-1.8.0" -; ,go-github-com-opencontainers-selinux-1.8.0) -; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" -; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) -; ("go-github-com-mrunalp-fileutils-0.5.0" -; ,go-github-com-mrunalp-fileutils-0.5.0) -; ("go-github-com-moby-sys-mountinfo-0.4.0" -; ,go-github-com-moby-sys-mountinfo-0.4.0) -; ("go-github-com-golang-protobuf-1.4.3" -; ,go-github-com-golang-protobuf-1.4.3) -; ("go-github-com-godbus-dbus-v5-5.0.3" -; ,go-github-com-godbus-dbus-v5-5.0.3) -; ("go-github-com-docker-go-units-0.4.0" -; ,go-github-com-docker-go-units-0.4.0) -; ("go-github-com-cyphar-filepath-securejoin-0.2.2" -; ,go-github-com-cyphar-filepath-securejoin-0.2.2) -; ("go-github-com-coreos-go-systemd-v22-22.1.0" -; ,go-github-com-coreos-go-systemd-v22-22.1.0) -; ("go-github-com-containerd-console-1.0.1" -; ,go-github-com-containerd-console-1.0.1) -; ("go-github-com-cilium-ebpf-0.2.0" ,go-github-com-cilium-ebpf-0.2.0) -; ("go-github-com-checkpoint-restore-go-criu-v4-4.1.0" -; ,go-github-com-checkpoint-restore-go-criu-v4-4.1.0))) -; (home-page "https://github.com/opencontainers/runc") -; (synopsis "runc") -; (description -; "@code{runc} is a CLI tool for spawning and running containers according to the OCI specification.") -; (license license:asl2.0))) -; -;(define-public go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d -; (package -; (name "go-github-com-opencontainers-runtime-spec") -; (version "1.0.3-0.20200929063507-e6143ca7d51d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/runtime-spec") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "06yk9kjif5mgi46d0hcgqcikdcplf3yflqbj8h6ljxshp6jzc49w")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) -; (home-page "https://github.com/opencontainers/runtime-spec") -; (synopsis "Open Container Initiative Runtime Specification") -; (description -; "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") -; (license license:asl2.0))) -; -;(define-public go-github-com-willf-bitset-1.1.11 -; (package -; (name "go-github-com-willf-bitset") -; (version "1.1.11") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/bits-and-blooms/bitset") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1v7wnikdxiyhwdxnsj2wcrsrsi1kb2ssmarvbrda90vmxzafjl7d")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/willf/bitset")) -; (home-page "https://github.com/willf/bitset") -; (synopsis "bitset") -; (description -; "Package bitset implements bitsets, a mapping -;between non-negative integers and boolean values. It should be more -;efficient than map[uint] bool. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-opencontainers-selinux-1.8.0 -; (package -; (name "go-github-com-opencontainers-selinux") -; (version "1.8.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/selinux") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "08aakiva619hk4lgfvyi6kpjgw7hfirs0jlc2jdgzcv7p0gfhbmx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/selinux")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777" -; ,go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777) -; ("go-github-com-willf-bitset-1.1.11" -; ,go-github-com-willf-bitset-1.1.11) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) -; (home-page "https://github.com/opencontainers/selinux") -; (synopsis "selinux") -; (description "Common SELinux package used across the container ecosystem.") -; (license license:asl2.0))) -; -;(define-public go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.14 -; (package -; (name "go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client") -; (version "0.0.14") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes-sigs/apiserver-network-proxy") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0px41x5apgcssmwmx75cwm000s8b8pgd84dxn56maxx223dzz9vm")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path -; "sigs.k8s.io/apiserver-network-proxy/konnectivity-client")) -; (propagated-inputs -; `(("go-k8s-io-klog-v2-2.0.0" ,go-k8s-io-klog-v2-2.0.0) -; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) -; ("go-github-com-golang-protobuf-1.4.0" -; ,go-github-com-golang-protobuf-1.4.0))) -; (home-page -; "https://sigs.k8s.io/apiserver-network-proxy/konnectivity-client") -; (synopsis #f) -; (description #f) -; (license license:asl2.0))) -; -;(define-public go-k8s-io-apiserver-0.20.1 -; (package -; (name "go-k8s-io-apiserver") -; (version "0.20.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes/apiserver") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "03k8kjisscj59i410kk2bz0qfpxa2d2vbwxiwyn93k7a2avbn7cs")))) -; (build-system go-build-system) -; (arguments '(#:import-path "k8s.io/apiserver")) -; (propagated-inputs -; `(("go-k8s-io-component-base-0.20.1" ,go-k8s-io-component-base-0.20.1) -; ("go-k8s-io-client-go-0.20.1" ,go-k8s-io-client-go-0.20.1) -; ("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) -; ("go-k8s-io-api-0.20.1" ,go-k8s-io-api-0.20.1) -; ("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) -; ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.2" -; ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.2) -; ("go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.14" -; ,go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.14) -; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" -; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) -; ("go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd" -; ,go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd) -; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) -; ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) -; ("go-gopkg-in-square-go-jose-v2-2.2.2" -; ,go-gopkg-in-square-go-jose-v2-2.2.2) -; ("go-gopkg-in-natefinch-lumberjack-v2-2.0.0" -; ,go-gopkg-in-natefinch-lumberjack-v2-2.0.0) -; ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) -; ("go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a" -; ,go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a) -; ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" -; ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) -; ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" -; ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) -; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" -; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) -; ("go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0" -; ,go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0) -; ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) -; ("go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489" -; ,go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489) -; ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) -; ("go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5" -; ,go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) -; ("go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021" -; ,go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822" -; ,go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822) -; ("go-github-com-mailru-easyjson-0.7.0" -; ,go-github-com-mailru-easyjson-0.7.0) -; ("go-github-com-hashicorp-golang-lru-0.5.1" -; ,go-github-com-hashicorp-golang-lru-0.5.1) -; ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" -; ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) -; ("go-github-com-gorilla-websocket-1.4.2" -; ,go-github-com-gorilla-websocket-1.4.2) -; ("go-github-com-googleapis-gnostic-0.4.1" -; ,go-github-com-googleapis-gnostic-0.4.1) -; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) -; ("go-github-com-google-gofuzz-1.1.0" -; ,go-github-com-google-gofuzz-1.1.0) -; ("go-github-com-google-go-cmp-0.5.2" -; ,go-github-com-google-go-cmp-0.5.2) -; ("go-github-com-gogo-protobuf-1.3.1" -; ,go-github-com-gogo-protobuf-1.3.1) -; ("go-github-com-go-openapi-spec-0.19.3" -; ,go-github-com-go-openapi-spec-0.19.3) -; ("go-github-com-evanphx-json-patch-4.9.0+incompatible" -; ,go-github-com-evanphx-json-patch-4.9.0+incompatible) -; ("go-github-com-emicklei-go-restful-2.9.5+incompatible" -; ,go-github-com-emicklei-go-restful-2.9.5+incompatible) -; ("go-github-com-dustin-go-humanize-1.0.0" -; ,go-github-com-dustin-go-humanize-1.0.0) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1) -; ("go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f" -; ,go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f) -; ("go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e" -; ,go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e) -; ("go-github-com-coreos-go-semver-0.3.0" -; ,go-github-com-coreos-go-semver-0.3.0) -; ("go-github-com-coreos-go-oidc-2.1.0+incompatible" -; ,go-github-com-coreos-go-oidc-2.1.0+incompatible))) -; (home-page "https://k8s.io/apiserver") -; (synopsis "apiserver") -; (description -; "Generic library for building a Kubernetes aggregated API server.") -; (license license:asl2.0))) -; -;(define-public go-k8s-io-api-0.20.1 -; (package -; (name "go-k8s-io-api") -; (version "0.20.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes/api") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "051nl7g66k0jkc9rmfbvwdsmqkn36nq71kvnfym3lhnjcgg53k0l")))) -; (build-system go-build-system) -; (arguments '(#:import-path "k8s.io/api")) -; (propagated-inputs -; `(("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-gogo-protobuf-1.3.1" -; ,go-github-com-gogo-protobuf-1.3.1))) -; (home-page "https://k8s.io/api") -; (synopsis "api") -; (description -; "Schema of the external API types that are served by the Kubernetes API server.") -; (license license:asl2.0))) -; -;(define-public go-k8s-io-apimachinery-0.20.1 -; (package -; (name "go-k8s-io-apimachinery") -; (version "0.20.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes/apimachinery") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "15qc12lbzpd4lgajy0rv24b3ky4hhg5y1l37qxdfiakhz91didfw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "k8s.io/apimachinery")) -; (propagated-inputs -; `(("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) -; ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.2" -; ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.2) -; ("go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd" -; ,go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd) -; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) -; ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) -; ("go-gopkg-in-inf-v0-0.9.1" ,go-gopkg-in-inf-v0-0.9.1) -; ("go-google-golang-org-protobuf-1.25.0" -; ,go-google-golang-org-protobuf-1.25.0) -; ("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" -; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) -; ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) -; ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" -; ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) -; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" -; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-onsi-gomega-1.7.0" ,go-github-com-onsi-gomega-1.7.0) -; ("go-github-com-onsi-ginkgo-1.11.0" ,go-github-com-onsi-ginkgo-1.11.0) -; ("go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f" -; ,go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f) -; ("go-github-com-modern-go-reflect2-1.0.1" -; ,go-github-com-modern-go-reflect2-1.0.1) -; ("go-github-com-json-iterator-go-1.1.10" -; ,go-github-com-json-iterator-go-1.1.10) -; ("go-github-com-hashicorp-golang-lru-0.5.1" -; ,go-github-com-hashicorp-golang-lru-0.5.1) -; ("go-github-com-googleapis-gnostic-0.4.1" -; ,go-github-com-googleapis-gnostic-0.4.1) -; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) -; ("go-github-com-google-gofuzz-1.1.0" -; ,go-github-com-google-gofuzz-1.1.0) -; ("go-github-com-google-go-cmp-0.5.2" -; ,go-github-com-google-go-cmp-0.5.2) -; ("go-github-com-golang-protobuf-1.4.3" -; ,go-github-com-golang-protobuf-1.4.3) -; ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" -; ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) -; ("go-github-com-gogo-protobuf-1.3.1" -; ,go-github-com-gogo-protobuf-1.3.1) -; ("go-github-com-fsnotify-fsnotify-1.4.9" -; ,go-github-com-fsnotify-fsnotify-1.4.9) -; ("go-github-com-evanphx-json-patch-4.9.0+incompatible" -; ,go-github-com-evanphx-json-patch-4.9.0+incompatible) -; ("go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153" -; ,go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153) -; ("go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96" -; ,go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://k8s.io/apimachinery") -; (synopsis "apimachinery") -; (description -; "Scheme, typing, encoding, decoding, and conversion packages for Kubernetes and Kubernetes-like API objects.") -; (license license:asl2.0))) -; -;(define-public go-k8s-io-client-go-0.20.1 -; (package -; (name "go-k8s-io-client-go") -; (version "0.20.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes/client-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "02jrzwwcrdlya91fga2wvf8dsl1yka3kky194dm6l9pmd754qwzs")))) -; (build-system go-build-system) -; (arguments '(#:import-path "k8s.io/client-go")) -; (propagated-inputs -; `(("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) -; ("go-k8s-io-api-0.20.1" ,go-k8s-io-api-0.20.1) -; ("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) -; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" -; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) -; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) -; ("go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e" -; ,go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e) -; ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" -; ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) -; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" -; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) -; ("go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0" -; ,go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) -; ("go-github-com-peterbourgon-diskv-2.0.1+incompatible" -; ,go-github-com-peterbourgon-diskv-2.0.1+incompatible) -; ("go-github-com-imdario-mergo-0.3.5" -; ,go-github-com-imdario-mergo-0.3.5) -; ("go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7" -; ,go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7) -; ("go-github-com-googleapis-gnostic-0.4.1" -; ,go-github-com-googleapis-gnostic-0.4.1) -; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) -; ("go-github-com-google-gofuzz-1.1.0" -; ,go-github-com-google-gofuzz-1.1.0) -; ("go-github-com-google-go-cmp-0.5.2" -; ,go-github-com-google-go-cmp-0.5.2) -; ("go-github-com-golang-protobuf-1.4.3" -; ,go-github-com-golang-protobuf-1.4.3) -; ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" -; ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) -; ("go-github-com-gogo-protobuf-1.3.1" -; ,go-github-com-gogo-protobuf-1.3.1) -; ("go-github-com-evanphx-json-patch-4.9.0+incompatible" -; ,go-github-com-evanphx-json-patch-4.9.0+incompatible) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1) -; ("go-github-com-azure-go-autorest-autorest-adal-0.9.5" -; ,go-github-com-azure-go-autorest-autorest-adal-0.9.5) -; ("go-github-com-azure-go-autorest-autorest-0.11.1" -; ,go-github-com-azure-go-autorest-autorest-0.11.1) -; ("go-cloud-google-com-go-0.54.0" ,go-cloud-google-com-go-0.54.0))) -; (home-page "https://k8s.io/client-go") -; (synopsis "client-go") -; (description -; "Go clients for talking to a @url{http://kubernetes.io/,kubernetes} cluster.") -; (license license:asl2.0))) -; -;(define-public go-k8s-io-component-base-0.20.1 -; (package -; (name "go-k8s-io-component-base") -; (version "0.20.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes/component-base") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "05x3mv1lxh7s6ckfh1s9wwmb0n9rg14a9637ai9bhxdfps47sz0v")))) -; (build-system go-build-system) -; (arguments '(#:import-path "k8s.io/component-base")) -; (propagated-inputs -; `(("go-k8s-io-client-go-0.20.1" ,go-k8s-io-client-go-0.20.1) -; ("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) -; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" -; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) -; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) -; ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) -; ("go-go-uber-org-multierr-1.1.0" ,go-go-uber-org-multierr-1.1.0) -; ("go-go-uber-org-atomic-1.4.0" ,go-go-uber-org-atomic-1.4.0) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) -; ("go-github-com-sirupsen-logrus-1.6.0" -; ,go-github-com-sirupsen-logrus-1.6.0) -; ("go-github-com-prometheus-procfs-0.2.0" -; ,go-github-com-prometheus-procfs-0.2.0) -; ("go-github-com-prometheus-common-0.10.0" -; ,go-github-com-prometheus-common-0.10.0) -; ("go-github-com-prometheus-client-model-0.2.0" -; ,go-github-com-prometheus-client-model-0.2.0) -; ("go-github-com-prometheus-client-golang-1.7.1" -; ,go-github-com-prometheus-client-golang-1.7.1) -; ("go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd" -; ,go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd) -; ("go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369" -; ,go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369) -; ("go-github-com-google-go-cmp-0.5.2" -; ,go-github-com-google-go-cmp-0.5.2) -; ("go-github-com-go-logr-logr-0.2.0" ,go-github-com-go-logr-logr-0.2.0) -; ("go-github-com-blang-semver-3.5.1+incompatible" -; ,go-github-com-blang-semver-3.5.1+incompatible))) -; (home-page "https://k8s.io/component-base") -; (synopsis "component-base") -; (description -; "Implement KEP 32: @url{https://github.com/kubernetes/enhancements/blob/master/keps/sig-cluster-lifecycle/wgs/783-component-base/README.md,https://github.com/kubernetes/enhancements/blob/master/keps/sig-cluster-lifecycle/wgs/783-component-base/README.md}") -; (license license:asl2.0))) -; -;(define-public go-k8s-io-cri-api-0.20.1 -; (package -; (name "go-k8s-io-cri-api") -; (version "0.20.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes/cri-api") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1r98d0kv42sijdg3404xx2g5jj0zixvfagkky2zla12p68ajm4xr")))) -; (build-system go-build-system) -; (arguments '(#:import-path "k8s.io/cri-api")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" -; ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) -; ("go-google-golang-org-protobuf-1.25.0" -; ,go-google-golang-org-protobuf-1.25.0) -; ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) -; ("go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a" -; ,go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a) -; ("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" -; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) -; ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) -; ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" -; ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) -; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" -; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-kr-pretty-0.2.0" ,go-github-com-kr-pretty-0.2.0) -; ("go-github-com-google-go-cmp-0.5.2" -; ,go-github-com-google-go-cmp-0.5.2) -; ("go-github-com-golang-protobuf-1.4.3" -; ,go-github-com-golang-protobuf-1.4.3) -; ("go-github-com-gogo-protobuf-1.3.1" -; ,go-github-com-gogo-protobuf-1.3.1) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://k8s.io/cri-api") -; (synopsis "Purpose") -; (description -; "This repository contains the definitions for the Container Runtime Interface (CRI). -;CRI is a plugin interface which enables kubelet to use a wide variety of container runtimes, -;without the need to recompile. CRI consists of a protocol buffers and gRPC API.") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-containerd-1.5.0-beta.3 -; (package -; (name "go-github-com-containerd-containerd") -; (version "1.5.0-beta.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/containerd") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0fbd4llrwg5hi5adfkmfndma5y129yl9wwz3c3fjn7cfhc64hlqf")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/containerd")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) -; ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) -; ("go-github-com-golang-protobuf-1.3.5" -; ,go-github-com-golang-protobuf-1.3.5) -; ("go-github-com-gogo-googleapis-1.3.2" -; ,go-github-com-gogo-googleapis-1.3.2) -; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" -; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) -; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) -; ("go-k8s-io-cri-api-0.20.1" ,go-k8s-io-cri-api-0.20.1) -; ("go-k8s-io-component-base-0.20.1" ,go-k8s-io-component-base-0.20.1) -; ("go-k8s-io-client-go-0.20.1" ,go-k8s-io-client-go-0.20.1) -; ("go-k8s-io-apiserver-0.20.1" ,go-k8s-io-apiserver-0.20.1) -; ("go-k8s-io-apimachinery-0.20.1" ,go-k8s-io-apimachinery-0.20.1) -; ("go-k8s-io-api-0.20.1" ,go-k8s-io-api-0.20.1) -; ("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) -; ("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" -; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) -; ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" -; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) -; ("go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b" -; ,go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b) -; ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) -; ("go-github-com-tchap-go-patricia-2.2.6+incompatible" -; ,go-github-com-tchap-go-patricia-2.2.6+incompatible) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-sirupsen-logrus-1.7.0" -; ,go-github-com-sirupsen-logrus-1.7.0) -; ("go-github-com-prometheus-client-golang-1.7.1" -; ,go-github-com-prometheus-client-golang-1.7.1) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-selinux-1.8.0" -; ,go-github-com-opencontainers-selinux-1.8.0) -; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d" -; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200929063507-e6143ca7d51d) -; ("go-github-com-opencontainers-runc-1.0.0-rc93" -; ,go-github-com-opencontainers-runc-1.0.0-rc93) -; ("go-github-com-opencontainers-image-spec-1.0.1" -; ,go-github-com-opencontainers-image-spec-1.0.1) -; ("go-github-com-opencontainers-go-digest-1.0.0" -; ,go-github-com-opencontainers-go-digest-1.0.0) -; ("go-github-com-moby-sys-symlink-0.1.0" -; ,go-github-com-moby-sys-symlink-0.1.0) -; ("go-github-com-moby-sys-mountinfo-0.4.0" -; ,go-github-com-moby-sys-mountinfo-0.4.0) -; ("go-github-com-klauspost-compress-1.11.3" -; ,go-github-com-klauspost-compress-1.11.3) -; ("go-github-com-imdario-mergo-0.3.11" -; ,go-github-com-imdario-mergo-0.3.11) -; ("go-github-com-hashicorp-go-multierror-1.0.0" -; ,go-github-com-hashicorp-go-multierror-1.0.0) -; ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" -; ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) -; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) -; ("go-github-com-google-go-cmp-0.5.4" -; ,go-github-com-google-go-cmp-0.5.4) -; ("go-github-com-gogo-protobuf-1.3.2" -; ,go-github-com-gogo-protobuf-1.3.2) -; ("go-github-com-fsnotify-fsnotify-1.4.9" -; ,go-github-com-fsnotify-fsnotify-1.4.9) -; ("go-github-com-emicklei-go-restful-2.9.5+incompatible" -; ,go-github-com-emicklei-go-restful-2.9.5+incompatible) -; ("go-github-com-docker-go-units-0.4.0" -; ,go-github-com-docker-go-units-0.4.0) -; ("go-github-com-docker-go-metrics-0.0.1" -; ,go-github-com-docker-go-metrics-0.0.1) -; ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" -; ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1) -; ("go-github-com-coreos-go-systemd-v22-22.1.0" -; ,go-github-com-coreos-go-systemd-v22-22.1.0) -; ("go-github-com-containernetworking-plugins-0.8.6" -; ,go-github-com-containernetworking-plugins-0.8.6) -; ("go-github-com-containerd-zfs-0.0.0-20210301145711-11e8f1707f62" -; ,go-github-com-containerd-zfs-0.0.0-20210301145711-11e8f1707f62) -; ("go-github-com-containerd-typeurl-1.0.1" -; ,go-github-com-containerd-typeurl-1.0.1) -; ("go-github-com-containerd-ttrpc-1.0.2" -; ,go-github-com-containerd-ttrpc-1.0.2) -; ("go-github-com-containerd-nri-0.0.0-20201007170849-eb1350a75164" -; ,go-github-com-containerd-nri-0.0.0-20201007170849-eb1350a75164) -; ("go-github-com-containerd-imgcrypt-1.0.4-0.20210301171431-0ae5c75f59ba" -; ,go-github-com-containerd-imgcrypt-1.0.4-0.20210301171431-0ae5c75f59ba) -; ("go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328" -; ,go-github-com-containerd-go-runc-0.0.0-20200220073739-7016d3ce2328) -; ("go-github-com-containerd-go-cni-1.0.1" -; ,go-github-com-containerd-go-cni-1.0.1) -; ("go-github-com-containerd-fifo-0.0.0-20201026212402-0724c46b320c" -; ,go-github-com-containerd-fifo-0.0.0-20201026212402-0724c46b320c) -; ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" -; ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) -; ("go-github-com-containerd-console-1.0.1" -; ,go-github-com-containerd-console-1.0.1) -; ("go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68" -; ,go-github-com-containerd-cgroups-0.0.0-20210114181951-8a68de567b68) -; ("go-github-com-containerd-btrfs-0.0.0-20201111183144-404b9149801e" -; ,go-github-com-containerd-btrfs-0.0.0-20201111183144-404b9149801e) -; ("go-github-com-containerd-aufs-0.0.0-20201003224125-76a6863f2989" -; ,go-github-com-containerd-aufs-0.0.0-20201003224125-76a6863f2989) -; ("go-github-com-microsoft-hcsshim-test-0.0.0-20210227013316-43a75bb4edd3" -; ,go-github-com-microsoft-hcsshim-test-0.0.0-20210227013316-43a75bb4edd3) -; ("go-github-com-microsoft-hcsshim-0.8.15" -; ,go-github-com-microsoft-hcsshim-0.8.15) -; ("go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3" -; ,go-github-com-microsoft-go-winio-0.4.17-0.20210211115548-6eac466e5fa3) -; ("go-github-com-burntsushi-toml-0.3.1" -; ,go-github-com-burntsushi-toml-0.3.1))) -; (home-page "https://github.com/containerd/containerd") -; (synopsis "Now Recruiting") -; (description -; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") -; (license license:asl2.0))) -; -;(define-public go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898 -; (package -; (name "go-bazil-org-fuse") -; (version "0.0.0-20160811212531-371fbbdaa898") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/bazil/fuse") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1x5p301py7mcxgwklfm6pqqkzssln0nfzllng49pnk60m03ilp4w")))) -; (build-system go-build-system) -; (arguments '(#:import-path "bazil.org/fuse")) -; (home-page "https://bazil.org/fuse") -; (synopsis "bazil.org/fuse -- Filesystems in Go") -; (description -; "Package fuse enables writing FUSE file systems on Linux and FreeBSD. -;") -; (license #f))) -; -;(define-public go-github-com-sirupsen-logrus-1.7.0 -; (package -; (name "go-github-com-sirupsen-logrus") -; (version "1.7.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/sirupsen/logrus") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1a59pw7zimvm8k423iq9l4f4qjj1ia1xc6pkmhwl2mxc46y2n442")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/sirupsen/logrus")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037" -; ,go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037) -; ("go-github-com-stretchr-testify-1.2.2" -; ,go-github-com-stretchr-testify-1.2.2) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://github.com/sirupsen/logrus") -; (synopsis "Logrus") -; (description -; "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. -;") -; (license license:expat))) -; -;(define-public go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee -; (package -; (name "go-github-com-spf13-cobra") -; (version "0.0.2-0.20171109065643-2da4a54c5cee") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/spf13/cobra") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "18qbrp774fx6dyibjcy9snld705gslq6z2sql1biyjahxkm1vpfy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/spf13/cobra")) -; (home-page "https://github.com/spf13/cobra") -; (synopsis "Table of Contents") -; (description -; "Package cobra is a commander providing a simple interface to create powerful modern CLI interfaces. -;In addition to providing an interface, Cobra simultaneously provides a controller to organize your application code. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95 -; (package -; (name "go-github-com-spf13-pflag") -; (version "1.0.1-0.20171106142849-4c012f6dcd95") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/spf13/pflag") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0plmm67lkm25ir0lczwh7hmanyilrs1vxmbp8a0dyr282ji1dqm5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/spf13/pflag")) -; (home-page "https://github.com/spf13/pflag") -; (synopsis "Description") -; (description -; "Package pflag is a drop-in replacement for Go's flag package, implementing -;POSIX/GNU-style --flags. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e -; (package -; (name "go-github-com-containerd-continuity") -; (version "0.0.0-20210208174643-50096c924a4e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/continuity") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1drmxbb2l4z12b19dq3vvh1ss7b4z8fq1n5g6c8ln13mjgz6cq48")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/continuity")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3" -; ,go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3) -; ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" -; ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) -; ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" -; ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) -; ("go-github-com-stretchr-testify-1.4.0" -; ,go-github-com-stretchr-testify-1.4.0) -; ("go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95" -; ,go-github-com-spf13-pflag-1.0.1-0.20171106142849-4c012f6dcd95) -; ("go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee" -; ,go-github-com-spf13-cobra-0.0.2-0.20171109065643-2da4a54c5cee) -; ("go-github-com-sirupsen-logrus-1.7.0" -; ,go-github-com-sirupsen-logrus-1.7.0) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-go-digest-1.0.0" -; ,go-github-com-opencontainers-go-digest-1.0.0) -; ("go-github-com-inconshreveable-mousetrap-1.0.0" -; ,go-github-com-inconshreveable-mousetrap-1.0.0) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0) -; ("go-github-com-dustin-go-humanize-1.0.0" -; ,go-github-com-dustin-go-humanize-1.0.0) -; ("go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898" -; ,go-bazil-org-fuse-0.0.0-20160811212531-371fbbdaa898))) -; (home-page "https://github.com/containerd/continuity") -; (synopsis "continuity") -; (description -; "This package provides a transport-agnostic, filesystem metadata manifest system") -; (license license:asl2.0))) -; -;(define-public go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible -; (package -; (name "go-github-com-mistifyio-go-zfs") -; (version "2.1.2-0.20190413222219-f784269be439+incompatible") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mistifyio/go-zfs") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0x6ncjaqjm06c615kbwkqbd5wcdg9nmrbl7wm4w185s6kq6l8fpw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mistifyio/go-zfs")) -; (home-page "https://github.com/mistifyio/go-zfs") -; (synopsis "Go Wrapper for ZFS") -; (description -; "Package zfs provides wrappers around the ZFS command line tools. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-zfs-1.0.0 -; (package -; (name "go-github-com-containerd-zfs") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/zfs") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "10shqmcdxlxxi90kwgs5cljz12589yz5cm78aimv9m4cgwiv3wl3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/zfs")) -; (propagated-inputs -; `(("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible" -; ,go-github-com-mistifyio-go-zfs-2.1.2-0.20190413222219-f784269be439+incompatible) -; ("go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e" -; ,go-github-com-containerd-continuity-0.0.0-20210208174643-50096c924a4e) -; ("go-github-com-containerd-containerd-1.5.0-beta.3" -; ,go-github-com-containerd-containerd-1.5.0-beta.3))) -; (home-page "https://github.com/containerd/zfs") -; (synopsis "ZFS snapshotter plugin") -; (description "ZFS snapshotter plugin for containerd.") -; (license license:asl2.0))) -; -;(define-public go-github-com-microsoft-go-winio-0.4.11 -; (package -; (name "go-github-com-microsoft-go-winio") -; (version "0.4.11") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/microsoft/go-winio") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "14y1gryr3pb3zy09v2g8dh89m363rfd9sch0wgbabh531hfx72vn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/Microsoft/go-winio")) -; (home-page "https://github.com/Microsoft/go-winio") -; (synopsis "go-winio") -; (description -; "This repository contains utilities for efficiently performing Win32 IO operations in -;Go. Currently, this is focused on accessing named pipes and other file handles, and -;for using named pipes as a net transport.") -; (license license:expat))) -; -;(define-public go-github-com-microsoft-hcsshim-0.8.6 -; (package -; (name "go-github-com-microsoft-hcsshim") -; (version "0.8.6") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/microsoft/hcsshim") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "05arx8y4b6rvhjcnwizhc8svzab3ld0njkgj8vijgs27az84z6pw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/Microsoft/hcsshim")) -; (home-page "https://github.com/Microsoft/hcsshim") -; (synopsis "hcsshim") -; (description -; "This package contains the Golang interface for using the Windows @url{https://techcommunity.microsoft.com/t5/containers/introducing-the-host-compute-service-hcs/ba-p/382332,Host Compute Service} (HCS) to launch and manage @url{https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/,Windows Containers}. It also contains other helpers and functions for managing Windows Containers such as the Golang interface for the Host Network Service (HNS), as well as code for the @url{https://github.com/Microsoft/hcsshim/blob/v0.9.1/internal/guest/README.md,guest agent} (commonly referred to as the GCS or Guest Compute Service in the codebase) used to support running Linux Hyper-V containers.") -; (license license:expat))) -; -;(define-public go-github-com-alexflint-go-filemutex-0.0.0-20171022225611-72bdc8eae2ae -; (package -; (name "go-github-com-alexflint-go-filemutex") -; (version "0.0.0-20171022225611-72bdc8eae2ae") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/alexflint/go-filemutex") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "082y6y9zv40q3kaqvsv6fyaw2fc42j0sn9z0dl9rbiz4szixj3c4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/alexflint/go-filemutex")) -; (home-page "https://github.com/alexflint/go-filemutex") -; (synopsis "FileMutex") -; (description -; "FileMutex is similar to @code{sync.RWMutex}, but also synchronizes across processes. -;On Linux, OSX, and other POSIX systems it uses the flock system call. On windows -;it uses the LockFileEx and UnlockFileEx system calls.") -; (license license:expat))) -; -;(define-public go-github-com-buger-jsonparser-0.0.0-20180808090653-f4dd9f5a6b44 -; (package -; (name "go-github-com-buger-jsonparser") -; (version "0.0.0-20180808090653-f4dd9f5a6b44") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/buger/jsonparser") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "12qa2n33s7yz88ywpr3k9kg3b4gm6rqgnv28iyikyxw8h5jascz5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/buger/jsonparser")) -; (home-page "https://github.com/buger/jsonparser") -; (synopsis -; "Alternative JSON parser for Go (10x times faster standard library)") -; (description -; "It does not require you to know the structure of the payload (eg. create structs), and allows accessing fields by providing the path to them. It is up to @strong{10 times faster} than standard @code{encoding/json} package (depending on payload size and usage), @strong{allocates no memory}. See benchmarks below.") -; (license license:expat))) -; -;(define-public go-github-com-containernetworking-cni-0.8.1 -; (package -; (name "go-github-com-containernetworking-cni") -; (version "0.8.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containernetworking/cni") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ydzsiq6kfwjghf5dd4ld2rv3cxgbjq6c1523jxmib1phwf0s75z")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containernetworking/cni")) -; (home-page "https://github.com/containernetworking/cni") -; (synopsis "CNI - the Container Network Interface") -; (description -; "CNI (), a @url{https://cncf.io,Cloud Native Computing Foundation} project, consists of a specification and libraries for writing plugins to configure network interfaces in Linux containers, along with a number of supported plugins. -;CNI concerns itself only with network connectivity of containers and removing allocated resources when the container is deleted. -;Because of this focus, CNI has a wide range of support and the specification is simple to implement.") -; (license license:asl2.0))) -; -;(define-public go-github-com-coreos-go-iptables-0.5.0 -; (package -; (name "go-github-com-coreos-go-iptables") -; (version "0.5.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/coreos/go-iptables") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0syxjad9b3d19sjy7cy7zjpx5bx60yvbhidz8r9cdv43iqadxmp7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/coreos/go-iptables")) -; (home-page "https://github.com/coreos/go-iptables") -; (synopsis "go-iptables") -; (description "Go bindings for iptables utility.") -; (license license:asl2.0))) -; -;(define-public go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c -; (package -; (name "go-github-com-d2g-dhcp4") -; (version "0.0.0-20170904100407-a1d1b6c41b1c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/d2g/dhcp4") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "191hzw6yqzkm042h6miyycq3g0zrhqjhhpl27f8vhwzp4wanasiz")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/d2g/dhcp4")) -; (home-page "https://github.com/d2g/dhcp4") -; (synopsis "DHCP4 - A DHCP library written in Go.") -; (description -; "Warning: This library is still being developed. Function calls will change.") -; (license license:bsd-3))) -; -;(define-public go-github-com-d2g-dhcp4client-1.0.0 -; (package -; (name "go-github-com-d2g-dhcp4client") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/d2g/dhcp4client") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1n4qrn7xsgvnshmddq56hr8g2si5vfmxi0wnp0w71lmdfsxvvx0q")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/d2g/dhcp4client")) -; (home-page "https://github.com/d2g/dhcp4client") -; (synopsis "dhcp4client") -; (description "DHCP Client") -; (license license:mpl2.0))) -; -;(define-public go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5 -; (package -; (name "go-github-com-d2g-dhcp4server") -; (version "0.0.0-20181031114812-7d4a0a7f59a5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/d2g/dhcp4server") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "03ibq32flr74pxfly1yca9qicb6f15xgl159jjg3svgnzfjpblwl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/d2g/dhcp4server")) -; (home-page "https://github.com/d2g/dhcp4server") -; (synopsis "dhcp4server") -; (description "DHCP Server") -; (license license:mpl2.0))) -; -;(define-public go-github-com-d2g-hardwareaddr-0.0.0-20190221164911-e7d9fbe030e4 -; (package -; (name "go-github-com-d2g-hardwareaddr") -; (version "0.0.0-20190221164911-e7d9fbe030e4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/d2g/hardwareaddr") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "09nm5py9xbb9klwhzqkf6786i3b59ynba78xkrv9jx4ari7ibh8q")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/d2g/hardwareaddr")) -; (home-page "https://github.com/d2g/hardwareaddr") -; (synopsis "hardwareaddr") -; (description "Generate Hardware Addresses") -; (license license:mpl2.0))) -; -;(define-public go-github-com-godbus-dbus-0.0.0-20180201030542-885f9cc04c9c -; (package -; (name "go-github-com-godbus-dbus") -; (version "0.0.0-20180201030542-885f9cc04c9c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/godbus/dbus") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0wjpaj4vr5lvpnwc5faf3qizd7zd2v9yq0fm0558wap1hiyqb8x8")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/godbus/dbus")) -; (home-page "https://github.com/godbus/dbus") -; (synopsis "dbus") -; (description -; "Package dbus implements bindings to the D-Bus message bus system. -;") -; (license license:bsd-2))) -; -;(define-public go-github-com-j-keck-arping-0.0.0-20160618110441-2cf9dc699c56 -; (package -; (name "go-github-com-j-keck-arping") -; (version "0.0.0-20160618110441-2cf9dc699c56") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/j-keck/arping") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1bid8mpx3j4546ni0a6q5xyz7hb854g95qnxqmg5jzs9vrcird3c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/j-keck/arping")) -; (home-page "https://github.com/j-keck/arping") -; (synopsis "arping") -; (description -; "Package arping is a native go library to ping a host per arp datagram, or query a host mac address -;") -; (license license:expat))) -; -;(define-public go-github-com-mattn-go-shellwords-1.0.3 -; (package -; (name "go-github-com-mattn-go-shellwords") -; (version "1.0.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mattn/go-shellwords") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1pg7pl25wvpl2dbpyrv9p1r7prnqimxlf6136vn0dfm54j2x4mnr")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mattn/go-shellwords")) -; (home-page "https://github.com/mattn/go-shellwords") -; (synopsis "go-shellwords") -; (description "Parse line as shell words.") -; (license license:expat))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190904154756-749cb33beabd -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190904154756-749cb33beabd") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0dm3257q3rv2kyn5lmqqim2fqg634v6rhrqq4glvbk4wx4l3v337")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-nxadm-tail-1.4.4 -; (package -; (name "go-github-com-nxadm-tail") -; (version "1.4.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/nxadm/tail") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1czmwqii0fc8v3ar5bwqpfanprkxg19waly405zlvcflzvj53wwc")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/nxadm/tail")) -; (propagated-inputs -; `(("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" -; ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) -; ("go-golang-org-x-sys-0.0.0-20190904154756-749cb33beabd" -; ,go-golang-org-x-sys-0.0.0-20190904154756-749cb33beabd) -; ("go-github-com-fsnotify-fsnotify-1.4.7" -; ,go-github-com-fsnotify-fsnotify-1.4.7))) -; (home-page "https://github.com/nxadm/tail") -; (synopsis "tail functionality in Go") -; (description -; "nxadm/tail provides a Go library that emulates the features of the BSD `tail` -;program. The library comes with full support for truncation/move detection as -;it is designed to work with log rotation tools. The library works on all -;operating systems supported by Go, including POSIX systems like Linux and -;*BSD, and MS Windows. Go 1.9 is the oldest compiler release supported. -;") -; (license license:expat))) -; -;(define-public go-github-com-onsi-gomega-1.7.1 -; (package -; (name "go-github-com-onsi-gomega") -; (version "1.7.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/onsi/gomega") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "06p3x0910cdaa64l7d44s728d4j3yhps315dlcvrbjzhljjj7mam")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/onsi/gomega")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.2.4" ,go-gopkg-in-yaml-v2-2.2.4) -; ("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" -; ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) -; ("go-gopkg-in-fsnotify-v1-1.4.7" ,go-gopkg-in-fsnotify-v1-1.4.7) -; ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e" -; ,go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e) -; ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" -; ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) -; ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" -; ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) -; ("go-github-com-onsi-ginkgo-1.6.0" ,go-github-com-onsi-ginkgo-1.6.0) -; ("go-github-com-hpcloud-tail-1.0.0" ,go-github-com-hpcloud-tail-1.0.0) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0) -; ("go-github-com-fsnotify-fsnotify-1.4.7" -; ,go-github-com-fsnotify-fsnotify-1.4.7))) -; (home-page "https://github.com/onsi/gomega") -; (synopsis ": a BDD Testing Framework for Golang") -; (description -; "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20191120155948-bd437916bb0e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1i8x26frmlin55k69k936zd1rp5sqnq14y5ms4rkxbfzhasdm2rx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-onsi-ginkgo-1.12.1 -; (package -; (name "go-github-com-onsi-ginkgo") -; (version "1.12.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/onsi/ginkgo") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0xs9724l2b0bwjwrvw5cs3akxaw0n1j5kyxrb1ggfsdjz0zmjcxh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/onsi/ginkgo")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e" -; ,go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e) -; ("go-github-com-onsi-gomega-1.7.1" ,go-github-com-onsi-gomega-1.7.1) -; ("go-github-com-nxadm-tail-1.4.4" ,go-github-com-nxadm-tail-1.4.4))) -; (home-page "https://github.com/onsi/ginkgo") -; (synopsis "Ginkgo 2.0 Release Candidate is available!") -; (description "Ginkgo is a BDD-style testing framework for Golang -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-net-0.0.0-20201006153459-a7d1128ccaa0 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20201006153459-a7d1128ccaa0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1iqqq7s95b2a29bspfxv68qnby8vwjvy9f8gl2262p6f9hhp21d2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) -; ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" -; ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) -; ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" -; ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-github-com-onsi-gomega-1.10.3 -; (package -; (name "go-github-com-onsi-gomega") -; (version "1.10.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/onsi/gomega") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1jvp5wlny86ncsqak5rz70qfn61y3ajc64w0hrj4840zgh90zb06")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/onsi/gomega")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.3.0" ,go-gopkg-in-yaml-v2-2.3.0) -; ("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" -; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) -; ("go-golang-org-x-net-0.0.0-20201006153459-a7d1128ccaa0" -; ,go-golang-org-x-net-0.0.0-20201006153459-a7d1128ccaa0) -; ("go-github-com-onsi-ginkgo-1.12.1" ,go-github-com-onsi-ginkgo-1.12.1) -; ("go-github-com-golang-protobuf-1.4.2" -; ,go-github-com-golang-protobuf-1.4.2))) -; (home-page "https://github.com/onsi/gomega") -; (synopsis ": a BDD Testing Framework for Golang") -; (description -; "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library. -;") -; (license license:expat))) -; -;(define-public go-github-com-safchain-ethtool-0.0.0-20190326074333-42ed695e3de8 -; (package -; (name "go-github-com-safchain-ethtool") -; (version "0.0.0-20190326074333-42ed695e3de8") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/safchain/ethtool") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0n5hkrzc1bh46nidcssx4539kvcmgj501v3kzh2pljpg27509daj")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/safchain/ethtool")) -; (home-page "https://github.com/safchain/ethtool") -; (synopsis "ethtool go package") -; (description -; "Package ethtool aims to provide a library giving a simple access to the -;Linux SIOCETHTOOL ioctl operations. It can be used to retrieve informations -;from a network device like statistics, driver related informations or -;even the peer of a VETH interface. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-sirupsen-logrus-1.0.6 -; (package -; (name "go-github-com-sirupsen-logrus") -; (version "1.0.6") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/sirupsen/logrus") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "029irw2lsbqi944gdrbkwdw0m2794sqni4g21gsnmz142hbzds8c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/sirupsen/logrus")) -; (home-page "https://github.com/sirupsen/logrus") -; (synopsis "Logrus") -; (description -; "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-sys-0.0.0-20200217220822-9197077df867 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20200217220822-9197077df867") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1270yyiqzlgrsygp2j0qavh4agm4xjv3ljfpk4wgqgmg4ph1lmx1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-vishvananda-netns-0.0.0-20200728191858-db3c7e526aae -; (package -; (name "go-github-com-vishvananda-netns") -; (version "0.0.0-20200728191858-db3c7e526aae") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/vishvananda/netns") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1gx41r06by67q5yyyvjpr0cyqqs2pcksfaqxy0s36cx4vpjn5x9r")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/vishvananda/netns")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20200217220822-9197077df867" -; ,go-golang-org-x-sys-0.0.0-20200217220822-9197077df867))) -; (home-page "https://github.com/vishvananda/netns") -; (synopsis "netns - network namespaces in go") -; (description -; "Package netns allows ultra-simple network namespace handling. NsHandles -;can be retrieved and set. Note that the current namespace is thread -;local so actions that set and reset namespaces should use LockOSThread -;to make sure the namespace doesn't change due to a goroutine switch. -;It is best to close NsHandles when you are done with them. This can be -;accomplished via a `defer ns.Close()` on the handle. Changing namespaces -;requires elevated privileges, so in most cases this code needs to be run -;as root. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-sys-0.0.0-20200728102440-3e129f6d46b1 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20200728102440-3e129f6d46b1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "02wcaghvpysqijiqsiimk52vma7lx99g5kvdid2r1qsf9hmwgvy2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-vishvananda-netlink-1.1.1-0.20201029203352-d40f9887b852 -; (package -; (name "go-github-com-vishvananda-netlink") -; (version "1.1.1-0.20201029203352-d40f9887b852") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/vishvananda/netlink") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1aq13npm7vd153vxrk1vhsg36r2g9hrh21cvk422ssrf57qy2fsj")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/vishvananda/netlink")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20200728102440-3e129f6d46b1" -; ,go-golang-org-x-sys-0.0.0-20200728102440-3e129f6d46b1) -; ("go-github-com-vishvananda-netns-0.0.0-20200728191858-db3c7e526aae" -; ,go-github-com-vishvananda-netns-0.0.0-20200728191858-db3c7e526aae))) -; (home-page "https://github.com/vishvananda/netlink") -; (synopsis "netlink - netlink library for go") -; (description -; "Package netlink provides a simple library for netlink. Netlink is -;the interface a user-space program in linux uses to communicate with -;the kernel. It can be used to add and remove interfaces, set up ip -;addresses and routes, and confiugre ipsec. Netlink communication -;requires elevated privileges, so in most cases this code needs to -;be run as root. The low level primitives for netlink are contained -;in the nl subpackage. This package attempts to provide a high-level -;interface that is loosly modeled on the iproute2 cli. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-sys-0.0.0-20201117170446-d9b008d0a637 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20201117170446-d9b008d0a637") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "06pp1nrhzx6nm6rwwzm0xzf8bs3r1mfsrkclyhlhnr7x5r0a0ppi")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-gopkg-in-airbrake-gobrake-v2-2.0.9 -; (package -; (name "go-gopkg-in-airbrake-gobrake-v2") -; (version "2.0.9") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/airbrake/gobrake.v2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1x06f7n7qlyzqgyz0sdfcidf3w4ldn6zs6qx2mhibggk2z4whcjw")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path -; "gopkg.in/airbrake/gobrake.v2" -; #:unpack-path -; "gopkg.in/airbrake/gobrake.v2")) -; (home-page "https://gopkg.in/airbrake/gobrake.v2") -; (synopsis "Airbrake Golang Notifier") -; (description -; "You can use @url{https://github.com/airbrake/glog,glog fork} to send your logs to Airbrake.") -; (license license:bsd-3))) -; -;(define-public go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2 -; (package -; (name "go-gopkg-in-gemnasium-logrus-airbrake-hook-v2") -; (version "2.1.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/gemnasium/logrus-airbrake-hook.v2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0sbg0dn6cysmf8f2bi209jwl4jnpiwp4rdghnxlzirw3c32ms5y5")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path -; "gopkg.in/gemnasium/logrus-airbrake-hook.v2" -; #:unpack-path -; "gopkg.in/gemnasium/logrus-airbrake-hook.v2")) -; (home-page "https://gopkg.in/gemnasium/logrus-airbrake-hook.v2") -; (synopsis "Airbrake Hook for Logrus") -; (description -; "Use this hook to send your errors to @url{https://airbrake.io/,Airbrake}. -;This hook is using the @url{https://github.com/airbrake/gobrake,official airbrake go package}, and will hit the api V3. -;The hook is synchronous and will send the error for @code{log.Error}, @code{log.Fatal} and @code{log.Panic} levels.") -; (license license:expat))) -; -;(define-public go-github-com-containernetworking-plugins-0.9.1 -; (package -; (name "go-github-com-containernetworking-plugins") -; (version "0.9.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containernetworking/plugins") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "17rafngfa9b0ybs3j4lvjjqdva6jkamhnbb1n0qnv685g0asvqwz")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containernetworking/plugins")) -; (propagated-inputs -; `(("go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2" -; ,go-gopkg-in-gemnasium-logrus-airbrake-hook-v2-2.1.2) -; ("go-gopkg-in-airbrake-gobrake-v2-2.0.9" -; ,go-gopkg-in-airbrake-gobrake-v2-2.0.9) -; ("go-golang-org-x-sys-0.0.0-20201117170446-d9b008d0a637" -; ,go-golang-org-x-sys-0.0.0-20201117170446-d9b008d0a637) -; ("go-github-com-vishvananda-netlink-1.1.1-0.20201029203352-d40f9887b852" -; ,go-github-com-vishvananda-netlink-1.1.1-0.20201029203352-d40f9887b852) -; ("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0) -; ("go-github-com-sirupsen-logrus-1.0.6" -; ,go-github-com-sirupsen-logrus-1.0.6) -; ("go-github-com-safchain-ethtool-0.0.0-20190326074333-42ed695e3de8" -; ,go-github-com-safchain-ethtool-0.0.0-20190326074333-42ed695e3de8) -; ("go-github-com-onsi-gomega-1.10.3" ,go-github-com-onsi-gomega-1.10.3) -; ("go-github-com-onsi-ginkgo-1.12.1" ,go-github-com-onsi-ginkgo-1.12.1) -; ("go-github-com-mattn-go-shellwords-1.0.3" -; ,go-github-com-mattn-go-shellwords-1.0.3) -; ("go-github-com-j-keck-arping-0.0.0-20160618110441-2cf9dc699c56" -; ,go-github-com-j-keck-arping-0.0.0-20160618110441-2cf9dc699c56) -; ("go-github-com-godbus-dbus-0.0.0-20180201030542-885f9cc04c9c" -; ,go-github-com-godbus-dbus-0.0.0-20180201030542-885f9cc04c9c) -; ("go-github-com-d2g-hardwareaddr-0.0.0-20190221164911-e7d9fbe030e4" -; ,go-github-com-d2g-hardwareaddr-0.0.0-20190221164911-e7d9fbe030e4) -; ("go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5" -; ,go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5) -; ("go-github-com-d2g-dhcp4client-1.0.0" -; ,go-github-com-d2g-dhcp4client-1.0.0) -; ("go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c" -; ,go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c) -; ("go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7" -; ,go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7) -; ("go-github-com-coreos-go-iptables-0.5.0" -; ,go-github-com-coreos-go-iptables-0.5.0) -; ("go-github-com-containernetworking-cni-0.8.1" -; ,go-github-com-containernetworking-cni-0.8.1) -; ("go-github-com-buger-jsonparser-0.0.0-20180808090653-f4dd9f5a6b44" -; ,go-github-com-buger-jsonparser-0.0.0-20180808090653-f4dd9f5a6b44) -; ("go-github-com-alexflint-go-filemutex-0.0.0-20171022225611-72bdc8eae2ae" -; ,go-github-com-alexflint-go-filemutex-0.0.0-20171022225611-72bdc8eae2ae) -; ("go-github-com-microsoft-hcsshim-0.8.6" -; ,go-github-com-microsoft-hcsshim-0.8.6) -; ("go-github-com-microsoft-go-winio-0.4.11" -; ,go-github-com-microsoft-go-winio-0.4.11))) -; (home-page "https://github.com/containernetworking/plugins") -; (synopsis "Plugins") -; (description -; "Some CNI network plugins, maintained by the containernetworking team. For more information, see the @url{https://www.cni.dev,CNI website}.") -; (license license:asl2.0))) -; -;(define-public go-github-com-google-uuid-1.2.0 -; (package -; (name "go-github-com-google-uuid") -; (version "1.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/uuid") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "08wqig98w23cg2ngjijhgm6s0mdayb95awa3cn3bs69lg20gryac")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/uuid")) -; (home-page "https://github.com/google/uuid") -; (synopsis "uuid") -; (description "Package uuid generates and inspects UUIDs. -;") -; (license license:bsd-3))) -; -;(define-public go-gopkg-in-yaml-v2-2.3.0 -; (package -; (name "go-gopkg-in-yaml-v2") -; (version "2.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/yaml.v2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1md0hlyd9s6myv3663i9l59y74n4xjazifmmyxn43g86fgkc5lzj")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" -; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) -; (home-page "https://gopkg.in/yaml.v2") -; (synopsis "YAML support for the Go language") -; (description "Package yaml implements YAML support for the Go language. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-imdario-mergo-0.3.12 -; (package -; (name "go-github-com-imdario-mergo") -; (version "0.3.12") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/imdario/mergo") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "15s6807vcm7xq4l6my7rnw1i7x57712jvdidjli5bip79jfaxw90")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/imdario/mergo")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.3.0" ,go-gopkg-in-yaml-v2-2.3.0))) -; (home-page "https://github.com/imdario/mergo") -; (synopsis "Mergo") -; (description -; "This package provides a helper to merge structs and maps in Golang. Useful for configuration default values, avoiding messy if-statements. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-opencontainers-image-spec-1.0.1 -; (package -; (name "go-github-com-opencontainers-image-spec") -; (version "1.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/image-spec") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "03dvbj3dln8c55v9gp79mgmz2yi2ws3r08iyz2fk41y3i22iaw1q")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/image-spec")) -; (home-page "https://github.com/opencontainers/image-spec") -; (synopsis "OCI Image Format Specification") -; (description -; "The OCI Image Format project creates and maintains the software shipping container image format spec (OCI Image Format).") -; (license license:asl2.0))) -; -;(define-public go-github-com-checkpoint-restore-go-criu-v5-5.0.0 -; (package -; (name "go-github-com-checkpoint-restore-go-criu-v5") -; (version "5.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/checkpoint-restore/go-criu") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "07dal5a9y43azkkh61jf6s81h7anbl17drkh2mal9mzcsi8wa2z8")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/checkpoint-restore/go-criu/v5")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.23.0" -; ,go-google-golang-org-protobuf-1.23.0) -; ("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" -; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) -; ("go-github-com-golang-protobuf-1.4.3" -; ,go-github-com-golang-protobuf-1.4.3))) -; (home-page "https://github.com/checkpoint-restore/go-criu") -; (synopsis "go-criu -- Go bindings for CRIU") -; (description -; "This repository provides Go bindings for @url{https://criu.org/,CRIU}. The code is based on the Go-based PHaul -;implementation from the CRIU repository. For easier inclusion into other Go projects the -;CRIU Go bindings have been moved to this repository.") -; (license license:asl2.0))) -; -;(define-public go-github-com-kr-pretty-0.2.1 -; (package -; (name "go-github-com-kr-pretty") -; (version "0.2.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kr/pretty") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0vzfz06y9q8gs2nxx0kys0591vzp78k0fvpb8digi5n15h3b25hy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kr/pretty")) -; (propagated-inputs -; `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) -; (home-page "https://github.com/kr/pretty") -; (synopsis #f) -; (description -; "Package pretty provides pretty-printing for Go values. This is -;useful during debugging, to avoid wrapping long output lines in -;the terminal. -;") -; (license license:expat))) -; -;(define-public go-github-com-frankban-quicktest-1.11.3 -; (package -; (name "go-github-com-frankban-quicktest") -; (version "1.11.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/frankban/quicktest") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0d5njmwkfq2809vlimnlvy8ir6kln0c4cgdwr680fwsclpbr43qs")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/frankban/quicktest")) -; (propagated-inputs -; `(("go-github-com-kr-pretty-0.2.1" ,go-github-com-kr-pretty-0.2.1) -; ("go-github-com-google-go-cmp-0.5.4" -; ,go-github-com-google-go-cmp-0.5.4))) -; (home-page "https://github.com/frankban/quicktest") -; (synopsis "quicktest") -; (description -; "Package quicktest provides a collection of Go helpers for writing tests. -;") -; (license license:expat))) -; -;(define-public go-github-com-cilium-ebpf-0.6.2 -; (package -; (name "go-github-com-cilium-ebpf") -; (version "0.6.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/cilium/ebpf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0x64sg0kyc8bbsp75dpv8g2jfmpdldsshf9ni49jh6rgsnnqhpf8")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/cilium/ebpf")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" -; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) -; ("go-github-com-google-go-cmp-0.5.4" -; ,go-github-com-google-go-cmp-0.5.4) -; ("go-github-com-frankban-quicktest-1.11.3" -; ,go-github-com-frankban-quicktest-1.11.3))) -; (home-page "https://github.com/cilium/ebpf") -; (synopsis "eBPF") -; (description "Package ebpf is a toolkit for working with eBPF programs. -;") -; (license license:expat))) -; -;(define-public go-github-com-containerd-console-1.0.2 -; (package -; (name "go-github-com-containerd-console") -; (version "1.0.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/console") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0rxwgq578hphs2ldx1gg6c9fq1qm8rgqfx3vgi2sbrsmxn6m2438")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/console")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" -; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) -; (home-page "https://github.com/containerd/console") -; (synopsis "console") -; (description -; "Golang package for dealing with consoles. Light on deps and a simple API.") -; (license license:asl2.0))) -; -;(define-public go-github-com-coreos-go-systemd-v22-22.3.2 -; (package -; (name "go-github-com-coreos-go-systemd-v22") -; (version "22.3.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/coreos/go-systemd") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ndi86b8va84ha93njqgafypz4di7yxfd5r5kf1r0s3y3ghcjajq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/coreos/go-systemd/v22")) -; (propagated-inputs -; `(("go-github-com-godbus-dbus-v5-5.0.4" -; ,go-github-com-godbus-dbus-v5-5.0.4))) -; (home-page "https://github.com/coreos/go-systemd") -; (synopsis "go-systemd") -; (description "Go bindings to systemd. The project has several packages:") -; (license license:asl2.0))) -; -;(define-public go-github-com-cyphar-filepath-securejoin-0.2.2 -; (package -; (name "go-github-com-cyphar-filepath-securejoin") -; (version "0.2.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/cyphar/filepath-securejoin") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0id32zjb92wm569m29nfrzz5mw9z1glr3klayr6j134pp4h1sgq4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/cyphar/filepath-securejoin")) -; (home-page "https://github.com/cyphar/filepath-securejoin") -; (synopsis #f) -; (description -; "Package securejoin is an implementation of the hopefully-soon-to-be-included -;SecureJoin helper that is meant to be part of the \"path/filepath\" package. -;The purpose of this project is to provide a PoC implementation to make the -;SecureJoin proposal (@url{https://github.com/golang/go/issues/20126,https://github.com/golang/go/issues/20126}) more -;tangible. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-godbus-dbus-v5-5.0.4 -; (package -; (name "go-github-com-godbus-dbus-v5") -; (version "5.0.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/godbus/dbus") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0znax8kskb5gmp5fj75w56bc9p7b22wrdswzlh4d04sprlc471yi")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/godbus/dbus/v5")) -; (home-page "https://github.com/godbus/dbus") -; (synopsis "dbus") -; (description -; "Package dbus implements bindings to the D-Bus message bus system. -;") -; (license license:bsd-2))) -; -;(define-public go-github-com-mrunalp-fileutils-0.5.0 -; (package -; (name "go-github-com-mrunalp-fileutils") -; (version "0.5.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mrunalp/fileutils") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1zrs959gf4zgi6ijwkdn4dcqk0svfblpaikkqy63q30rqz4swm0x")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mrunalp/fileutils")) -; (home-page "https://github.com/mrunalp/fileutils") -; (synopsis "fileutils") -; (description "Collection of utilities for file manipulation in golang") -; (license license:asl2.0))) -; -;(define-public go-github-com-seccomp-libseccomp-golang-0.9.1 -; (package -; (name "go-github-com-seccomp-libseccomp-golang") -; (version "0.9.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/seccomp/libseccomp-golang") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "022c8prvxz0shrifams7lq4xidvkcqg9xi87wjjcpmbikqi72cna")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/seccomp/libseccomp-golang")) -; (home-page "https://github.com/seccomp/libseccomp-golang") -; (synopsis #f) -; (description -; "Package seccomp provides bindings for libseccomp, a library wrapping the Linux -;seccomp syscall. Seccomp enables an application to restrict system call use -;for itself and its children. -;") -; (license license:bsd-2))) -; -;(define-public go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635 -; (package -; (name "go-github-com-syndtr-gocapability") -; (version "0.0.0-20200815063812-42c35b437635") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/syndtr/gocapability") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "00zi0k190ydlm9drnafvj9p4cf6axm858wr71pbmq1p3r94iqws4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/syndtr/gocapability")) -; (home-page "https://github.com/syndtr/gocapability") -; (synopsis #f) -; (description #f) -; (license license:bsd-2))) -; -;(define-public go-github-com-vishvananda-netns-0.0.0-20191106174202-0a2b9b5464df -; (package -; (name "go-github-com-vishvananda-netns") -; (version "0.0.0-20191106174202-0a2b9b5464df") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/vishvananda/netns") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1k1zb7pzc4r4wicq7ncspf6zsvq298lvpsq963ibj813shg657xw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/vishvananda/netns")) -; (home-page "https://github.com/vishvananda/netns") -; (synopsis "netns - network namespaces in go") -; (description -; "Package netns allows ultra-simple network namespace handling. NsHandles -;can be retrieved and set. Note that the current namespace is thread -;local so actions that set and reset namespaces should use LockOSThread -;to make sure the namespace doesn't change due to a goroutine switch. -;It is best to close NsHandles when you are done with them. This can be -;accomplished via a `defer ns.Close()` on the handle. Changing namespaces -;requires elevated privileges, so in most cases this code needs to be run -;as root. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190606203320-7fc4e5ec1444 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190606203320-7fc4e5ec1444") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "18rv3m1kksv3758aqiaac2l6j334g0bapic6ibsj999agcn7y9fg")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-vishvananda-netlink-1.1.0 -; (package -; (name "go-github-com-vishvananda-netlink") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/vishvananda/netlink") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1vhl30p1gx636a088ls4h6a0l8jjyfvz79fr5w0qzdrg4qg9h08h")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/vishvananda/netlink")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190606203320-7fc4e5ec1444" -; ,go-golang-org-x-sys-0.0.0-20190606203320-7fc4e5ec1444) -; ("go-github-com-vishvananda-netns-0.0.0-20191106174202-0a2b9b5464df" -; ,go-github-com-vishvananda-netns-0.0.0-20191106174202-0a2b9b5464df))) -; (home-page "https://github.com/vishvananda/netlink") -; (synopsis "netlink - netlink library for go") -; (description -; "Package netlink provides a simple library for netlink. Netlink is -;the interface a user-space program in linux uses to communicate with -;the kernel. It can be used to add and remove interfaces, set up ip -;addresses and routes, and confiugre ipsec. Netlink communication -;requires elevated privileges, so in most cases this code needs to -;be run as root. The low level primitives for netlink are contained -;in the nl subpackage. This package attempts to provide a high-level -;interface that is loosly modeled on the iproute2 cli. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20201224014010-6772e930b67b") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0zlr39dxbg0fxfdrc20c4x0pw43n9kz749ssml97cdzqy116p5qa")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) -; ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" -; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) -; ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" -; ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-github-com-opencontainers-runc-1.0.2 -; (package -; (name "go-github-com-opencontainers-runc") -; (version "1.0.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/runc") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1bpckghjah0rczciw1a1ab8z718lb2d3k4mjm4zb45lpm3njmrcp")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/runc")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.26.0" -; ,go-google-golang-org-protobuf-1.26.0) -; ("go-golang-org-x-sys-0.0.0-20210426230700-d19ff857e887" -; ,go-golang-org-x-sys-0.0.0-20210426230700-d19ff857e887) -; ("go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b" -; ,go-golang-org-x-net-0.0.0-20201224014010-6772e930b67b) -; ("go-github-com-vishvananda-netlink-1.1.0" -; ,go-github-com-vishvananda-netlink-1.1.0) -; ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) -; ("go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635" -; ,go-github-com-syndtr-gocapability-0.0.0-20200815063812-42c35b437635) -; ("go-github-com-sirupsen-logrus-1.8.1" -; ,go-github-com-sirupsen-logrus-1.8.1) -; ("go-github-com-seccomp-libseccomp-golang-0.9.1" -; ,go-github-com-seccomp-libseccomp-golang-0.9.1) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-selinux-1.8.2" -; ,go-github-com-opencontainers-selinux-1.8.2) -; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417" -; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417) -; ("go-github-com-mrunalp-fileutils-0.5.0" -; ,go-github-com-mrunalp-fileutils-0.5.0) -; ("go-github-com-moby-sys-mountinfo-0.4.1" -; ,go-github-com-moby-sys-mountinfo-0.4.1) -; ("go-github-com-godbus-dbus-v5-5.0.4" -; ,go-github-com-godbus-dbus-v5-5.0.4) -; ("go-github-com-docker-go-units-0.4.0" -; ,go-github-com-docker-go-units-0.4.0) -; ("go-github-com-cyphar-filepath-securejoin-0.2.2" -; ,go-github-com-cyphar-filepath-securejoin-0.2.2) -; ("go-github-com-coreos-go-systemd-v22-22.3.2" -; ,go-github-com-coreos-go-systemd-v22-22.3.2) -; ("go-github-com-containerd-console-1.0.2" -; ,go-github-com-containerd-console-1.0.2) -; ("go-github-com-cilium-ebpf-0.6.2" ,go-github-com-cilium-ebpf-0.6.2) -; ("go-github-com-checkpoint-restore-go-criu-v5-5.0.0" -; ,go-github-com-checkpoint-restore-go-criu-v5-5.0.0) -; ("go-github-com-bits-and-blooms-bitset-1.2.0" -; ,go-github-com-bits-and-blooms-bitset-1.2.0))) -; (home-page "https://github.com/opencontainers/runc") -; (synopsis "runc") -; (description -; "@code{runc} is a CLI tool for spawning and running containers according to the OCI specification.") -; (license license:asl2.0))) -; -;(define-public go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417 -; (package -; (name "go-github-com-opencontainers-runtime-spec") -; (version "1.0.3-0.20210326190908-1c3f411f0417") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/runtime-spec") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1azk8z41ga8af35c966f06vrq9y9hwz6mkm59r3py5qaamzim3qq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) -; (home-page "https://github.com/opencontainers/runtime-spec") -; (synopsis "Open Container Initiative Runtime Specification") -; (description -; "The @url{https://www.opencontainers.org,Open Container Initiative} develops specifications for standards on Operating System process and application containers.") -; (license license:asl2.0))) -; -;(define-public go-github-com-bits-and-blooms-bitset-1.2.0 -; (package -; (name "go-github-com-bits-and-blooms-bitset") -; (version "1.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/bits-and-blooms/bitset") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0r9f7lvz6znl7yr6njg77m8hj472yhdshf1qaybwyw7j8as6c4r3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/bits-and-blooms/bitset")) -; (home-page "https://github.com/bits-and-blooms/bitset") -; (synopsis "bitset") -; (description -; "Package bitset implements bitsets, a mapping -;between non-negative integers and boolean values. It should be more -;efficient than map[uint] bool. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20191115151921-52ab43148777") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1kakxbqrb1w2vwg7r1896z68qcx2lfvimsl8cs2niiipbgpi6imx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-opencontainers-selinux-1.8.2 -; (package -; (name "go-github-com-opencontainers-selinux") -; (version "1.8.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/selinux") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1dl1h8nzpyhsfki1dcjphm5h4n52qwilahyl6qlnwgzcc76pwizq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/selinux")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777" -; ,go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-bits-and-blooms-bitset-1.2.0" -; ,go-github-com-bits-and-blooms-bitset-1.2.0))) -; (home-page "https://github.com/opencontainers/selinux") -; (synopsis "selinux") -; (description "Common SELinux package used across the container ecosystem.") -; (license license:asl2.0))) -; -;(define-public go-github-com-pelletier-go-toml-1.8.1 -; (package -; (name "go-github-com-pelletier-go-toml") -; (version "1.8.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/pelletier/go-toml") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1pi1r9ds0vxjza4qrbk52y98wxrzh1ghwzc9c2v1w6i02pdwdcz9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/pelletier/go-toml")) -; (propagated-inputs -; `(("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://github.com/pelletier/go-toml") -; (synopsis "go-toml") -; (description "Package toml is a TOML parser and manipulation library. -;") -; (license #f))) -; -;(define-public go-github-com-satori-go-uuid-1.2.0 -; (package -; (name "go-github-com-satori-go-uuid") -; (version "1.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/satori/go.uuid") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1j4s5pfg2ldm35y8ls8jah4dya2grfnx2drb4jcbjsyrp4cm5yfb")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/satori/go.uuid")) -; (home-page "https://github.com/satori/go.uuid") -; (synopsis "UUID package for Go language") -; (description -; "Package uuid provides implementation of Universally Unique Identifier (UUID). -;Supported versions are 1, 3, 4 and 5 (as specified in @url{https://rfc-editor.org/rfc/rfc4122.html,RFC 4122}) and -;version 2 (as specified in DCE 1.1). -;") -; (license license:expat))) -; -;(define-public go-github-com-tchap-go-patricia-2.2.6+incompatible -; (package -; (name "go-github-com-tchap-go-patricia") -; (version "2.2.6+incompatible") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/tchap/go-patricia") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1yy1s3pnll52iyzphwi50drvz36lx628vn3xfy5ld29fxqngrckb")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/tchap/go-patricia")) -; (home-page "https://github.com/tchap/go-patricia") -; (synopsis "go-patricia") -; (description -; "@strong{Documentation}: @url{http://godoc.org/github.com/tchap/go-patricia/patricia,GoDoc} -;@strong{Test Coverage}: @url{https://coveralls.io/r/tchap/go-patricia,(img (@ (src https://coveralls.io/repos/tchap/go-patricia/badge.png) (alt CoverageStatus)))}") -; (license license:expat))) -; -;(define-public go-golang-org-x-sys-0.0.0-20210426230700-d19ff857e887 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20210426230700-d19ff857e887") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "12m35a34dfm99agcv2ln9zvvyczigaxfwqbzqirvwn1lw4784whn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-gotest-tools-v3-3.0.3 -; (package -; (name "go-gotest-tools-v3") -; (version "3.0.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/gotestyourself/gotest.tools") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1h316233n33lkfhbak8ljdj5i8df6hcwwm48n200svf22x3d95ww")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gotest.tools/v3" #:unpack-path "gotest.tools/v3")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20190624222133-a101b041ded4" -; ,go-golang-org-x-tools-0.0.0-20190624222133-a101b041ded4) -; ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) -; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0))) -; (home-page "https://gotest.tools/v3") -; (synopsis "gotest.tools") -; (description -; "Package gotesttools is a collection of packages to augment `testing` and -;support common patterns. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-coreos-go-oidc-2.1.0+incompatible -; (package -; (name "go-github-com-coreos-go-oidc") -; (version "2.1.0+incompatible") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/coreos/go-oidc") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0y9vxack1whvxy766jrc6xhh2rfkvnznwxi356si2kabzjv2lp6h")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/coreos/go-oidc")) -; (home-page "https://github.com/coreos/go-oidc") -; (synopsis "go-oidc") -; (description -; "Package oidc implements OpenID Connect client logic for the golang.org/x/oauth2 package. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-coreos-go-semver-0.3.0 -; (package -; (name "go-github-com-coreos-go-semver") -; (version "0.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/coreos/go-semver") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0770h1mpig2j5sbiha3abnwaw8p6dg9i87r8pc7cf6m4kwml3sc9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/coreos/go-semver")) -; (home-page "https://github.com/coreos/go-semver") -; (synopsis "go-semver - Semantic Versioning Library") -; (description -; "go-semver is a @url{http://semver.org/,semantic versioning} library for Go. It lets you parse -;and compare two semantic version strings.") -; (license license:asl2.0))) -; -;(define-public go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e -; (package -; (name "go-github-com-coreos-go-systemd") -; (version "0.0.0-20190321100706-95778dfbb74e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/coreos/go-systemd") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1s3bg9p78wkixn2bqb2p23wbsqfg949ml6crw2b498s71mwh8rcf")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/coreos/go-systemd")) -; (home-page "https://github.com/coreos/go-systemd") -; (synopsis "go-systemd") -; (description "Go bindings to systemd. The project has several packages:") -; (license license:asl2.0))) -; -;(define-public go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f -; (package -; (name "go-github-com-coreos-pkg") -; (version "0.0.0-20180928190104-399ea9e2e55f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/coreos/pkg") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0nxbn0m7lr4dg0yrwnvlkfiyg3ndv8vdpssjx7b714nivpc6ar0y")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/coreos/pkg")) -; (home-page "https://github.com/coreos/pkg") -; (synopsis #f) -; (description "a collection of go utility packages") -; (license license:asl2.0))) -; -;(define-public go-github-com-dustin-go-humanize-1.0.0 -; (package -; (name "go-github-com-dustin-go-humanize") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/dustin/go-humanize") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1kqf1kavdyvjk7f8kx62pnm7fbypn9z1vbf8v2qdh3y7z7a0cbl3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/dustin/go-humanize")) -; (home-page "https://github.com/dustin/go-humanize") -; (synopsis "Humane Units") -; (description -; "Package humanize converts boring ugly numbers to human-friendly strings and back. -;") -; (license license:expat))) -; -;(define-public go-github-com-emicklei-go-restful-2.9.5+incompatible -; (package -; (name "go-github-com-emicklei-go-restful") -; (version "2.9.5+incompatible") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/emicklei/go-restful") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0258y7q2krih98zznc4jsym9mf689afn6nsnsif1jhshrj653k36")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/emicklei/go-restful")) -; (home-page "https://github.com/emicklei/go-restful") -; (synopsis "go-restful") -; (description -; "Package restful , a lean package for creating REST-style WebServices without magic. -;") -; (license license:expat))) -; -;(define-public go-github-com-gorilla-websocket-1.4.2 -; (package -; (name "go-github-com-gorilla-websocket") -; (version "1.4.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/gorilla/websocket") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0mkm9w6kjkrlzab5wh8p4qxkc0icqawjbvr01d2nk6ykylrln40s")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/gorilla/websocket")) -; (home-page "https://github.com/gorilla/websocket") -; (synopsis "Gorilla WebSocket") -; (description -; "Package websocket implements the WebSocket protocol defined in @url{https://rfc-editor.org/rfc/rfc6455.html,RFC 6455}. -;") -; (license license:bsd-2))) -; -;(define-public go-github-com-mailru-easyjson-0.7.0 -; (package -; (name "go-github-com-mailru-easyjson") -; (version "0.7.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mailru/easyjson") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "13zv5fvjp3nr65lhqhiw6i6mlmqvyls882rlmcas0ab35alsxni8")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mailru/easyjson")) -; (home-page "https://github.com/mailru/easyjson") -; (synopsis "easyjson") -; (description -; "Package easyjson contains marshaler/unmarshaler interfaces and helper functions. -;") -; (license license:expat))) -; -;(define-public go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822 -; (package -; (name "go-github-com-munnerz-goautoneg") -; (version "0.0.0-20191010083416-a7dc8b61c822") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/munnerz/goautoneg") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1m4v6bw6yf1g0kvpc46isjp0qfhx2y8gnvlnyjf637jy64613mgg")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/munnerz/goautoneg")) -; (home-page "https://github.com/munnerz/goautoneg") -; (synopsis #f) -; (description #f) -; (license license:bsd-3))) -; -;(define-public go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021 -; (package -; (name "go-github-com-pquerna-cachecontrol") -; (version "0.0.0-20171018203845-0dec1b30a021") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/pquerna/cachecontrol") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "14yyfhrv60rvb983rqm7s916nwvn9kcmbvnrcna2md0s3mkzs3yh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/pquerna/cachecontrol")) -; (home-page "https://github.com/pquerna/cachecontrol") -; (synopsis "cachecontrol: HTTP Caching Parser and Interpretation") -; (description -; "Package cachecontrol implements the logic for HTTP Caching -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5 -; (package -; (name "go-github-com-tmc-grpc-websocket-proxy") -; (version "0.0.0-20190109142713-0ad062ec5ee5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/tmc/grpc-websocket-proxy") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1anw4v9wspnw9xf2z5r9w0sszwjklyanl0l85wgg6nxak9gnrqp4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/tmc/grpc-websocket-proxy")) -; (home-page "https://github.com/tmc/grpc-websocket-proxy") -; (synopsis "grpc-websocket-proxy") -; (description -; "Wrap your grpc-gateway mux with this helper to expose streaming endpoints over websockets.") -; (license license:expat))) -; -;(define-public go-golang-org-x-sys-0.0.0-20200202164722-d101bd2416d5 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20200202164722-d101bd2416d5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ksxf37b0ym21n8j29m3wgbaiw1kcjw3hgf88kipc1ry2j13l98p")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-go-etcd-io-bbolt-1.3.5 -; (package -; (name "go-go-etcd-io-bbolt") -; (version "1.3.5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/etcd-io/bbolt") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1h64gipvcg7060byv5wjlf524kqwj12p3v08kfh4ygv46vpm8p2r")))) -; (build-system go-build-system) -; (arguments '(#:import-path "go.etcd.io/bbolt")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20200202164722-d101bd2416d5" -; ,go-golang-org-x-sys-0.0.0-20200202164722-d101bd2416d5))) -; (home-page "https://go.etcd.io/bbolt") -; (synopsis "bbolt") -; (description -; "package bbolt implements a low-level key/value store in pure Go. It supports -;fully serializable transactions, ACID semantics, and lock-free MVCC with -;multiple readers and a single writer. Bolt can be used for projects that -;want a simple data store without the need to add large dependencies such as -;Postgres or MySQL. -;") -; (license license:expat))) -; -;(define-public go-github-com-cockroachdb-datadriven-0.0.0-20190809214429-80d97fb3cbaa -; (package -; (name "go-github-com-cockroachdb-datadriven") -; (version "0.0.0-20190809214429-80d97fb3cbaa") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/cockroachdb/datadriven") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0rvavka9zhri6r50n8fy98247fl5vycb1hffjrhshsicjv1frmlp")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/cockroachdb/datadriven")) -; (home-page "https://github.com/cockroachdb/datadriven") -; (synopsis "Data-Driven Tests for Go") -; (description -; "This repository implements an extension of @url{https://github.com/golang/go/wiki/TableDrivenTests,Table-Driven Testing}. Instead of -;building and iterating over a table in the test code, the input is further -;separated into files (or inline strings). For certain classes of tests, this -;can significantly reduce the friction involved in writing and reading these -;tests.") -; (license license:asl2.0))) -; -;(define-public go-github-com-coreos-go-semver-0.2.0 -; (package -; (name "go-github-com-coreos-go-semver") -; (version "0.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/coreos/go-semver") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1gghi5bnqj50hfxhqc1cxmynqmh2yk9ii7ab9gsm75y5cp94ymk0")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/coreos/go-semver")) -; (home-page "https://github.com/coreos/go-semver") -; (synopsis "go-semver - Semantic Versioning Library") -; (description -; "go-semver is a @url{http://semver.org/,semantic versioning} library for Go. It lets you parse -;and compare two semantic version strings.") -; (license license:asl2.0))) -; -;(define-public go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7 -; (package -; (name "go-github-com-coreos-go-systemd") -; (version "0.0.0-20180511133405-39ca1b05acc7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/coreos/go-systemd") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1kzqrrzqspa5qm7kwslxl3m16lqzns23c24rv474ajzwmj3ixmx1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/coreos/go-systemd")) -; (home-page "https://github.com/coreos/go-systemd") -; (synopsis "go-systemd") -; (description "Go bindings to systemd. The project has several packages:") -; (license license:asl2.0))) -; -;(define-public go-github-com-coreos-pkg-0.0.0-20160727233714-3ac0863d7acf -; (package -; (name "go-github-com-coreos-pkg") -; (version "0.0.0-20160727233714-3ac0863d7acf") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/coreos/pkg") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0l5ans1ls2gknkrnhymgc0zbgg5nqjbjbqc51r611adcr0m6gg8l")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/coreos/pkg")) -; (home-page "https://github.com/coreos/pkg") -; (synopsis #f) -; (description "a collection of go utility packages") -; (license license:asl2.0))) -; -;(define-public go-github-com-creack-pty-1.1.7 -; (package -; (name "go-github-com-creack-pty") -; (version "1.1.7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/creack/pty") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1plwwlk1i9b80zv8zdplvv81shfyc9gf0flydnydsh5sr3ib5vrc")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/creack/pty")) -; (home-page "https://github.com/creack/pty") -; (synopsis "pty") -; (description -; "Package pty provides functions for working with Unix terminals. -;") -; (license license:expat))) -; -;(define-public go-github-com-dgrijalva-jwt-go-3.2.0+incompatible -; (package -; (name "go-github-com-dgrijalva-jwt-go") -; (version "3.2.0+incompatible") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/dgrijalva/jwt-go") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "08m27vlms74pfy5z79w67f9lk9zkx6a9jd68k3c4msxy75ry36mp")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/dgrijalva/jwt-go")) -; (home-page "https://github.com/dgrijalva/jwt-go") -; (synopsis "jwt-go") -; (description -; "Package jwt is a Go implementation of JSON Web Tokens: @url{http://self-issued.info/docs/draft-jones-json-web-token.html,http://self-issued.info/docs/draft-jones-json-web-token.html} -;") -; (license license:expat))) -; -;(define-public go-github-com-dustin-go-humanize-0.0.0-20171111073723-bb3d318650d4 -; (package -; (name "go-github-com-dustin-go-humanize") -; (version "0.0.0-20171111073723-bb3d318650d4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/dustin/go-humanize") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1lqd8ix3cb164j5iazjby2jpa6bdsflhy0h9mi4yldvvcvrc194c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/dustin/go-humanize")) -; (home-page "https://github.com/dustin/go-humanize") -; (synopsis "Humane Units") -; (description -; "Package humanize converts boring ugly numbers to human-friendly strings and back. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-tools-0.0.0-20180221164845-07fd8470d635 -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20180221164845-07fd8470d635") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "193g0a1zxb9ikph7r2klc6rdqxqzfmmr8d5bcibyhsm2l63s17mx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-github-com-kisielk-errcheck-1.1.0 -; (package -; (name "go-github-com-kisielk-errcheck") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kisielk/errcheck") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "19vd4rxmqbk5lpiav3pf7df3yjlz0l0dwx9mn0gjq5f998iyhy6y")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kisielk/errcheck")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20180221164845-07fd8470d635" -; ,go-golang-org-x-tools-0.0.0-20180221164845-07fd8470d635) -; ("go-github-com-kisielk-gotool-1.0.0" -; ,go-github-com-kisielk-gotool-1.0.0))) -; (home-page "https://github.com/kisielk/errcheck") -; (synopsis "errcheck") -; (description -; "errcheck is a program for checking for unchecked errors in go programs.") -; (license license:expat))) -; -;(define-public go-github-com-gogo-protobuf-1.2.1 -; (package -; (name "go-github-com-gogo-protobuf") -; (version "1.2.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/gogo/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "06yqa6h0kw3gr5pc3qmas7f7435a96zf7iw7p0l00r2hqf6fqq6m")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/gogo/protobuf")) -; (propagated-inputs -; `(("go-github-com-kisielk-errcheck-1.1.0" -; ,go-github-com-kisielk-errcheck-1.1.0))) -; (home-page "https://github.com/gogo/protobuf") -; (synopsis "Protocol Buffers for Go with Gadgets") -; (description -; "gogoprotobuf is a fork of @url{https://github.com/golang/protobuf,golang/protobuf} with extra code generation features.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-groupcache-0.0.0-20160516000752-02826c3e7903 -; (package -; (name "go-github-com-golang-groupcache") -; (version "0.0.0-20160516000752-02826c3e7903") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/groupcache") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0w46bsllddfij66nrg8jbfjsr54birvfww8a2fj9fmgyig5syn2x")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/groupcache")) -; (home-page "https://github.com/golang/groupcache") -; (synopsis "groupcache") -; (description -; "Package groupcache provides a data loading mechanism with caching -;and de-duplication that works across a set of peer processes. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-google-btree-1.0.0 -; (package -; (name "go-github-com-google-btree") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/btree") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ba430m9fbnagacp57krgidsyrgp3ycw5r7dj71brgp5r52g82p6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/btree")) -; (home-page "https://github.com/google/btree") -; (synopsis "BTree implementation for Go") -; (description -; "Package btree implements in-memory B-Trees of arbitrary degree. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-google-uuid-1.0.0 -; (package -; (name "go-github-com-google-uuid") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/uuid") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1922bjrnx66692dm0rrc1ckmznsaqx920ww4jzsds3xzrwf15mqv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/uuid")) -; (home-page "https://github.com/google/uuid") -; (synopsis "uuid") -; (description "Package uuid generates and inspects UUIDs. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-gorilla-websocket-0.0.0-20170926233335-4201258b820c -; (package -; (name "go-github-com-gorilla-websocket") -; (version "0.0.0-20170926233335-4201258b820c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/gorilla/websocket") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1kpdg3m46kp15ixl9ahhchhadyiblz0qpcxzylp8jhffc1rnxjb7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/gorilla/websocket")) -; (home-page "https://github.com/gorilla/websocket") -; (synopsis "Gorilla WebSocket") -; (description -; "Package websocket implements the WebSocket protocol defined in @url{https://rfc-editor.org/rfc/rfc6455.html,RFC 6455}. -;") -; (license license:bsd-2))) -; -;(define-public go-github-com-grpc-ecosystem-go-grpc-middleware-1.0.1-0.20190118093823-f849b5445de4 -; (package -; (name "go-github-com-grpc-ecosystem-go-grpc-middleware") -; (version "1.0.1-0.20190118093823-f849b5445de4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc-ecosystem/go-grpc-middleware") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0hscypgj0nd1407jp6y4qrnrr0mrhc4wgxz9b3mj1cs3pkvi61vc")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/grpc-ecosystem/go-grpc-middleware")) -; (home-page "https://github.com/grpc-ecosystem/go-grpc-middleware") -; (synopsis "Go gRPC Middleware") -; (description -; "`grpc_middleware` is a collection of gRPC middleware packages: interceptors, helpers and tools. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0 -; (package -; (name "go-github-com-grpc-ecosystem-go-grpc-prometheus") -; (version "1.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc-ecosystem/go-grpc-prometheus") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1lzk54h7np32b3acidg1ggbn8ppbnns0m71gcg9d1qkkdh8zrijl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/grpc-ecosystem/go-grpc-prometheus")) -; (home-page "https://github.com/grpc-ecosystem/go-grpc-prometheus") -; (synopsis "Go gRPC Interceptors for Prometheus monitoring") -; (description -; "@url{https://prometheus.io/,Prometheus} monitoring for your @url{https://github.com/grpc/grpc-go,gRPC Go} servers and clients.") -; (license license:asl2.0))) -; -;(define-public go-github-com-ghodss-yaml-1.0.0 -; (package -; (name "go-github-com-ghodss-yaml") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/ghodss/yaml") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0skwmimpy7hlh7pva2slpcplnm912rp3igs98xnqmn859kwa5v8g")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/ghodss/yaml")) -; (home-page "https://github.com/ghodss/yaml") -; (synopsis "YAML marshaling and unmarshaling support for Go") -; (description -; "Copyright 2013 The Go Authors. All rights reserved. -;Use of this source code is governed by a BSD-style -;license that can be found in the LICENSE file. -;") -; (license #f))) -; -;(define-public go-github-com-rogpeppe-fastuuid-0.0.0-20150106093220-6724a57986af -; (package -; (name "go-github-com-rogpeppe-fastuuid") -; (version "0.0.0-20150106093220-6724a57986af") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/rogpeppe/fastuuid") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "12s65phfx6hxj4v0b5kj8akgrbf5mxpa101fyzw03h6hld1f70cz")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/rogpeppe/fastuuid")) -; (home-page "https://github.com/rogpeppe/fastuuid") -; (synopsis "fastuuid") -; (description -; "Package fastuuid provides fast UUID generation of 192 bit -;universally unique identifiers. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20181107165924-66b7b1311ac8") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "00ny4r2bbj6rz939iy9g699acqydq7rfi6r6awn25w9i2dld9m13")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20181220203305-927f97764cc3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0np7b766gb92vbm514yhdl7cjmqvn0dxdxskd84aas2ri1fkpgw5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-gopkg-in-resty-v1-1.12.0 -; (package -; (name "go-gopkg-in-resty-v1") -; (version "1.12.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/resty.v1") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "062mn735rqzhha5ag07z4gz08hxzrfm2yx067jfmaaxmb6797lmp")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/resty.v1" #:unpack-path "gopkg.in/resty.v1")) -; (propagated-inputs -; `(("go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3" -; ,go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3))) -; (home-page "https://gopkg.in/resty.v1") -; (synopsis "News") -; (description -; "Package resty provides Simple HTTP and REST client library for Go. -;") -; (license license:expat))) -; -;(define-public go-gopkg-in-yaml-v2-2.0.0-20170812160011-eb3733d160e7 -; (package -; (name "go-gopkg-in-yaml-v2") -; (version "2.0.0-20170812160011-eb3733d160e7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/yaml.v2") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1srhvcaa9db3a6xj29mkjr5kg33y71pclrlx4vcwz5m1lgb5c7q6")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) -; (home-page "https://gopkg.in/yaml.v2") -; (synopsis "YAML support for the Go language") -; (description "Package yaml implements YAML support for the Go language. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-grpc-ecosystem-grpc-gateway-1.9.5 -; (package -; (name "go-github-com-grpc-ecosystem-grpc-gateway") -; (version "1.9.5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc-ecosystem/grpc-gateway") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0acpbxa1i1bxcpkclkcif2macbcfrlywb58vly5pzwsj261mg58a")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/grpc-ecosystem/grpc-gateway")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.0.0-20170812160011-eb3733d160e7" -; ,go-gopkg-in-yaml-v2-2.0.0-20170812160011-eb3733d160e7) -; ("go-gopkg-in-resty-v1-1.12.0" ,go-gopkg-in-resty-v1-1.12.0) -; ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" -; ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) -; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) -; ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" -; ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) -; ("go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8" -; ,go-golang-org-x-sys-0.0.0-20181107165924-66b7b1311ac8) -; ("go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3" -; ,go-golang-org-x-net-0.0.0-20181220203305-927f97764cc3) -; ("go-github-com-rogpeppe-fastuuid-0.0.0-20150106093220-6724a57986af" -; ,go-github-com-rogpeppe-fastuuid-0.0.0-20150106093220-6724a57986af) -; ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-ghodss-yaml-1.0.0" ,go-github-com-ghodss-yaml-1.0.0))) -; (home-page "https://github.com/grpc-ecosystem/grpc-gateway") -; (synopsis "grpc-gateway") -; (description -; "The grpc-gateway is a plugin of the Google protocol buffers compiler -;@url{https://github.com/protocolbuffers/protobuf,protoc}. -;It reads protobuf service definitions and generates a reverse-proxy server which -;translates a RESTful HTTP API into gRPC. This server is generated according to the -;@url{https://github.com/googleapis/googleapis/raw/master/google/api/http.proto#L46,(code google.api.http)} -;annotations in your service definitions.") -; (license license:bsd-3))) -; -;(define-public go-github-com-jonboulle-clockwork-0.1.0 -; (package -; (name "go-github-com-jonboulle-clockwork") -; (version "0.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/jonboulle/clockwork") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1pqxhsdavbp1n5grgyx2j6ylvql2fzn2cvpsgkc8li69dil7sibl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/jonboulle/clockwork")) -; (home-page "https://github.com/jonboulle/clockwork") -; (synopsis "clockwork") -; (description -; "Replace uses of the @code{time} package with the @code{clockwork.Clock} interface instead.") -; (license license:asl2.0))) -; -;(define-public go-github-com-mattn-go-isatty-0.0.4 -; (package -; (name "go-github-com-mattn-go-isatty") -; (version "0.0.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mattn/go-isatty") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0zs92j2cqaw9j8qx1sdxpv3ap0rgbs0vrvi72m40mg8aa36gd39w")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mattn/go-isatty")) -; (home-page "https://github.com/mattn/go-isatty") -; (synopsis "go-isatty") -; (description "Package isatty implements interface to isatty -;") -; (license license:expat))) -; -;(define-public go-github-com-mattn-go-runewidth-0.0.2 -; (package -; (name "go-github-com-mattn-go-runewidth") -; (version "0.0.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mattn/go-runewidth") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0vkrfrz3fzn5n6ix4k8s0cg0b448459sldq8bp4riavsxm932jzb")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mattn/go-runewidth")) -; (home-page "https://github.com/mattn/go-runewidth") -; (synopsis "go-runewidth") -; (description -; "This package provides functions to get fixed width of the character or string.") -; (license license:expat))) -; -;(define-public go-github-com-olekukonko-tablewriter-0.0.0-20170122224234-a0225b3f23b5 -; (package -; (name "go-github-com-olekukonko-tablewriter") -; (version "0.0.0-20170122224234-a0225b3f23b5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/olekukonko/tablewriter") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0bp9r6xzy6d3p7l2hjmvr25y3rp3p8c9xv1agkllkksm45ng6681")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/olekukonko/tablewriter")) -; (home-page "https://github.com/olekukonko/tablewriter") -; (synopsis "ASCII Table Writer") -; (description "Create & Generate text based table -;") -; (license license:expat))) -; -;(define-public go-github-com-soheilhy-cmux-0.1.4 -; (package -; (name "go-github-com-soheilhy-cmux") -; (version "0.1.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/soheilhy/cmux") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1f736g68d9vwlyfb6g0fxkr0r875369xafk30cz8kaq5niaqwv0h")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/soheilhy/cmux")) -; (home-page "https://github.com/soheilhy/cmux") -; (synopsis "cmux: Connection Mux") -; (description -; "Package cmux is a library to multiplex network connections based on -;their payload. Using cmux, you can serve different protocols from the -;same listener. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-spf13-pflag-1.0.1 -; (package -; (name "go-github-com-spf13-pflag") -; (version "1.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/spf13/pflag") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0nr4mdpfhhk94hq4ymn5b2sxc47b29p1akxd8b0hx4dvdybmipb5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/spf13/pflag")) -; (home-page "https://github.com/spf13/pflag") -; (synopsis "Description") -; (description -; "Package pflag is a drop-in replacement for Go's flag package, implementing -;POSIX/GNU-style --flags. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-tmc-grpc-websocket-proxy-0.0.0-20170815181823-89b8d40f7ca8 -; (package -; (name "go-github-com-tmc-grpc-websocket-proxy") -; (version "0.0.0-20170815181823-89b8d40f7ca8") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/tmc/grpc-websocket-proxy") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1bg6m0cycy5sww175zkbnhi9lvzb08iicc8xka8klrgaa9mc5nsk")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/tmc/grpc-websocket-proxy")) -; (home-page "https://github.com/tmc/grpc-websocket-proxy") -; (synopsis "grpc-websocket-proxy") -; (description -; "Wrap your grpc-gateway mux with this helper to expose streaming endpoints over websockets.") -; (license license:expat))) -; -;(define-public go-github-com-urfave-cli-1.20.0 -; (package -; (name "go-github-com-urfave-cli") -; (version "1.20.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/urfave/cli") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0y6f4sbzkiiwrxbl15biivj8c7qwxnvm3zl2dd3mw4wzg4x10ygj")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/urfave/cli")) -; (home-page "https://github.com/urfave/cli") -; (synopsis "cli") -; (description -; "Package cli provides a minimal framework for creating and organizing command line -;Go applications. cli is designed to be easy to understand and write, the most simple -;cli application can be written as follows: -;") -; (license license:expat))) -; -;(define-public go-github-com-xiang90-probing-0.0.0-20190116061207-43a291ad63a2 -; (package -; (name "go-github-com-xiang90-probing") -; (version "0.0.0-20190116061207-43a291ad63a2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/xiang90/probing") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1z22ms16j5j42775mf31isanwx2pwr1d8wqw8006dczjv36qnz5i")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/xiang90/probing")) -; (home-page "https://github.com/xiang90/probing") -; (synopsis "Getting Started") -; (description "We first need to serve the probing HTTP handler.") -; (license license:expat))) -; -;(define-public go-go-etcd-io-bbolt-1.3.3 -; (package -; (name "go-go-etcd-io-bbolt") -; (version "1.3.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/etcd-io/bbolt") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0dn0zngks9xiz0rrrb3911f73ghl64z84jsmzai2yfmzqr7cdkqc")))) -; (build-system go-build-system) -; (arguments '(#:import-path "go.etcd.io/bbolt")) -; (home-page "https://go.etcd.io/bbolt") -; (synopsis "bbolt") -; (description -; "package bbolt implements a low-level key/value store in pure Go. It supports -;fully serializable transactions, ACID semantics, and lock-free MVCC with -;multiple readers and a single writer. Bolt can be used for projects that -;want a simple data store without the need to add large dependencies such as -;Postgres or MySQL. -;") -; (license license:expat))) -; -;(define-public go-go-uber-org-atomic-1.3.2 -; (package -; (name "go-go-uber-org-atomic") -; (version "1.3.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/uber-go/atomic") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "11pzvjys5ddjjgrv94pgk9pnip9yyb54z7idf33zk7p7xylpnsv6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "go.uber.org/atomic")) -; (home-page "https://go.uber.org/atomic") -; (synopsis "atomic") -; (description -; "Package atomic provides simple wrappers around numerics to enforce atomic -;access. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-net-0.0.0-20190813141303-74dc4d7220e7 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20190813141303-74dc4d7220e7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0563yswwqknxx2gsvl0qikn0lmwalilbng8i12iw4d3v40n23s0l")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190826190057-c7b8b68b1456 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190826190057-c7b8b68b1456") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0lqnnrx5prrvkinnhgyvzzhcyvi8x5w54rlp336xjhpslkgqn132")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-time-0.0.0-20180412165947-fbb02b2291d2 -; (package -; (name "go-golang-org-x-time") -; (version "0.0.0-20180412165947-fbb02b2291d2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/time") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0jjqcv6rzihlgg4i797q80g1f6ch5diz2kxqh6488gwkb6nds4h4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/time")) -; (home-page "https://golang.org/x/time") -; (synopsis "Go Time") -; (description "This repository provides supplementary Go time packages.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-grpc-1.26.0 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.26.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1qsb2mcswpp3vd7i9gfvz4a3ypdwk2svhhn09nyywgb1vvw80krv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" -; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-github-com-google-go-cmp-0.2.0" -; ,go-github-com-google-go-cmp-0.2.0) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2) -; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" -; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) -; ("go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473" -; ,go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-gopkg-in-cheggaaa-pb-v1-1.0.25 -; (package -; (name "go-gopkg-in-cheggaaa-pb-v1") -; (version "1.0.25") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/cheggaaa/pb.v1") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0vxqiw6f3xyv0zy3g4lksf8za0z8i0hvfpw92hqimsy84f79j3dp")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path -; "gopkg.in/cheggaaa/pb.v1" -; #:unpack-path -; "gopkg.in/cheggaaa/pb.v1")) -; (home-page "https://gopkg.in/cheggaaa/pb.v1") -; (synopsis "Terminal progress bar for Go") -; (description "Simple console progress bars -;") -; (license license:bsd-3))) -; -;(define-public go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489 -; (package -; (name "go-go-etcd-io-etcd") -; (version "0.5.0-alpha.5.0.20200910180754-dd1b699fc489") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/etcd-io/etcd") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "11zkvkq7ipqi0n8y05zgn8lf7qm59xdk75x7jbxj5sflx38yfa0k")))) -; (build-system go-build-system) -; (arguments '(#:import-path "go.etcd.io/etcd")) -; (propagated-inputs -; `(("go-sigs-k8s-io-yaml-1.1.0" ,go-sigs-k8s-io-yaml-1.1.0) -; ("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" -; ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) -; ("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) -; ("go-gopkg-in-cheggaaa-pb-v1-1.0.25" -; ,go-gopkg-in-cheggaaa-pb-v1-1.0.25) -; ("go-google-golang-org-grpc-1.26.0" ,go-google-golang-org-grpc-1.26.0) -; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" -; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) -; ("go-golang-org-x-time-0.0.0-20180412165947-fbb02b2291d2" -; ,go-golang-org-x-time-0.0.0-20180412165947-fbb02b2291d2) -; ("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) -; ("go-golang-org-x-sys-0.0.0-20190826190057-c7b8b68b1456" -; ,go-golang-org-x-sys-0.0.0-20190826190057-c7b8b68b1456) -; ("go-golang-org-x-net-0.0.0-20190813141303-74dc4d7220e7" -; ,go-golang-org-x-net-0.0.0-20190813141303-74dc4d7220e7) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2) -; ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) -; ("go-go-uber-org-multierr-1.1.0" ,go-go-uber-org-multierr-1.1.0) -; ("go-go-uber-org-atomic-1.3.2" ,go-go-uber-org-atomic-1.3.2) -; ("go-go-etcd-io-bbolt-1.3.3" ,go-go-etcd-io-bbolt-1.3.3) -; ("go-github-com-xiang90-probing-0.0.0-20190116061207-43a291ad63a2" -; ,go-github-com-xiang90-probing-0.0.0-20190116061207-43a291ad63a2) -; ("go-github-com-urfave-cli-1.20.0" ,go-github-com-urfave-cli-1.20.0) -; ("go-github-com-tmc-grpc-websocket-proxy-0.0.0-20170815181823-89b8d40f7ca8" -; ,go-github-com-tmc-grpc-websocket-proxy-0.0.0-20170815181823-89b8d40f7ca8) -; ("go-github-com-spf13-pflag-1.0.1" ,go-github-com-spf13-pflag-1.0.1) -; ("go-github-com-spf13-cobra-0.0.3" ,go-github-com-spf13-cobra-0.0.3) -; ("go-github-com-soheilhy-cmux-0.1.4" -; ,go-github-com-soheilhy-cmux-0.1.4) -; ("go-github-com-sirupsen-logrus-1.4.2" -; ,go-github-com-sirupsen-logrus-1.4.2) -; ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" -; ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) -; ("go-github-com-prometheus-client-golang-1.0.0" -; ,go-github-com-prometheus-client-golang-1.0.0) -; ("go-github-com-olekukonko-tablewriter-0.0.0-20170122224234-a0225b3f23b5" -; ,go-github-com-olekukonko-tablewriter-0.0.0-20170122224234-a0225b3f23b5) -; ("go-github-com-modern-go-reflect2-1.0.1" -; ,go-github-com-modern-go-reflect2-1.0.1) -; ("go-github-com-mattn-go-runewidth-0.0.2" -; ,go-github-com-mattn-go-runewidth-0.0.2) -; ("go-github-com-mattn-go-isatty-0.0.4" -; ,go-github-com-mattn-go-isatty-0.0.4) -; ("go-github-com-mattn-go-colorable-0.0.9" -; ,go-github-com-mattn-go-colorable-0.0.9) -; ("go-github-com-json-iterator-go-1.1.7" -; ,go-github-com-json-iterator-go-1.1.7) -; ("go-github-com-jonboulle-clockwork-0.1.0" -; ,go-github-com-jonboulle-clockwork-0.1.0) -; ("go-github-com-inconshreveable-mousetrap-1.0.0" -; ,go-github-com-inconshreveable-mousetrap-1.0.0) -; ("go-github-com-grpc-ecosystem-grpc-gateway-1.9.5" -; ,go-github-com-grpc-ecosystem-grpc-gateway-1.9.5) -; ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" -; ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) -; ("go-github-com-grpc-ecosystem-go-grpc-middleware-1.0.1-0.20190118093823-f849b5445de4" -; ,go-github-com-grpc-ecosystem-go-grpc-middleware-1.0.1-0.20190118093823-f849b5445de4) -; ("go-github-com-gorilla-websocket-0.0.0-20170926233335-4201258b820c" -; ,go-github-com-gorilla-websocket-0.0.0-20170926233335-4201258b820c) -; ("go-github-com-google-uuid-1.0.0" ,go-github-com-google-uuid-1.0.0) -; ("go-github-com-google-btree-1.0.0" ,go-github-com-google-btree-1.0.0) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2) -; ("go-github-com-golang-groupcache-0.0.0-20160516000752-02826c3e7903" -; ,go-github-com-golang-groupcache-0.0.0-20160516000752-02826c3e7903) -; ("go-github-com-gogo-protobuf-1.2.1" -; ,go-github-com-gogo-protobuf-1.2.1) -; ("go-github-com-fatih-color-1.7.0" ,go-github-com-fatih-color-1.7.0) -; ("go-github-com-dustin-go-humanize-0.0.0-20171111073723-bb3d318650d4" -; ,go-github-com-dustin-go-humanize-0.0.0-20171111073723-bb3d318650d4) -; ("go-github-com-dgrijalva-jwt-go-3.2.0+incompatible" -; ,go-github-com-dgrijalva-jwt-go-3.2.0+incompatible) -; ("go-github-com-creack-pty-1.1.7" ,go-github-com-creack-pty-1.1.7) -; ("go-github-com-coreos-pkg-0.0.0-20160727233714-3ac0863d7acf" -; ,go-github-com-coreos-pkg-0.0.0-20160727233714-3ac0863d7acf) -; ("go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7" -; ,go-github-com-coreos-go-systemd-0.0.0-20180511133405-39ca1b05acc7) -; ("go-github-com-coreos-go-semver-0.2.0" -; ,go-github-com-coreos-go-semver-0.2.0) -; ("go-github-com-cockroachdb-datadriven-0.0.0-20190809214429-80d97fb3cbaa" -; ,go-github-com-cockroachdb-datadriven-0.0.0-20190809214429-80d97fb3cbaa) -; ("go-github-com-bgentry-speakeasy-0.1.0" -; ,go-github-com-bgentry-speakeasy-0.1.0))) -; (home-page "https://go.etcd.io/etcd") -; (synopsis "etcd") -; (description -; "Package main is a simple wrapper of the real etcd entrypoint package -;(located at github.com/coreos/etcd/etcdmain) to ensure that etcd is still -;\"go getable\"; e.g. `go get github.com/coreos/etcd` works as expected and -;builds a binary in $GOBIN/etcd -;") -; (license license:asl2.0))) -; -;(define-public go-gopkg-in-natefinch-lumberjack-v2-2.0.0 -; (package -; (name "go-gopkg-in-natefinch-lumberjack-v2") -; (version "2.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/natefinch/lumberjack.v2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1m2sxypk7p805jvc68padvylyx5v7cwkh5klnnxxr0340kgspf08")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path -; "gopkg.in/natefinch/lumberjack.v2" -; #:unpack-path -; "gopkg.in/natefinch/lumberjack.v2")) -; (home-page "https://gopkg.in/natefinch/lumberjack.v2") -; (synopsis "lumberjack") -; (description "Package lumberjack provides a rolling logger. -;") -; (license license:expat))) -; -;(define-public go-gopkg-in-square-go-jose-v2-2.2.2 -; (package -; (name "go-gopkg-in-square-go-jose-v2") -; (version "2.2.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/square/go-jose.v2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1cpvfqw7pw8m8wfj8nda4kam0z48q3gp6b9a3a0wr90zv9ldszbv")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path -; "gopkg.in/square/go-jose.v2" -; #:unpack-path -; "gopkg.in/square/go-jose.v2")) -; (home-page "https://gopkg.in/square/go-jose.v2") -; (synopsis "Go JOSE") -; (description -; "Package jose aims to provide an implementation of the Javascript Object Signing -;and Encryption set of standards. It implements encryption and signing based on -;the JSON Web Encryption and JSON Web Signature standards, with optional JSON -;Web Token support available in a sub-package. The library supports both the -;compact and full serialization formats, and has optional support for multiple -;recipients. -;") -; (license license:asl2.0))) -; -;(define-public go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.15 -; (package -; (name "go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client") -; (version "0.0.15") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes-sigs/apiserver-network-proxy") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "00ad9yjr3g1pj118xy063z7rnydkilqmvz9xf89vdva2kjqd7fal")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path -; "sigs.k8s.io/apiserver-network-proxy/konnectivity-client")) -; (propagated-inputs -; `(("go-k8s-io-klog-v2-2.0.0" ,go-k8s-io-klog-v2-2.0.0) -; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) -; ("go-github-com-golang-protobuf-1.4.0" -; ,go-github-com-golang-protobuf-1.4.0))) -; (home-page -; "https://sigs.k8s.io/apiserver-network-proxy/konnectivity-client") -; (synopsis #f) -; (description #f) -; (license license:asl2.0))) -; -;(define-public go-k8s-io-apiserver-0.20.6 -; (package -; (name "go-k8s-io-apiserver") -; (version "0.20.6") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes/apiserver") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0b53aw2cp9i2v5kg1m2s5kwkz7525ii8vs1g7d8yc2j980aar9y3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "k8s.io/apiserver")) -; (propagated-inputs -; `(("go-k8s-io-component-base-0.20.6" ,go-k8s-io-component-base-0.20.6) -; ("go-k8s-io-client-go-0.20.6" ,go-k8s-io-client-go-0.20.6) -; ("go-k8s-io-apimachinery-0.20.6" ,go-k8s-io-apimachinery-0.20.6) -; ("go-k8s-io-api-0.20.6" ,go-k8s-io-api-0.20.6) -; ("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) -; ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.3" -; ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.3) -; ("go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.15" -; ,go-sigs-k8s-io-apiserver-network-proxy-konnectivity-client-0.0.15) -; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" -; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) -; ("go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd" -; ,go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd) -; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) -; ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) -; ("go-gopkg-in-square-go-jose-v2-2.2.2" -; ,go-gopkg-in-square-go-jose-v2-2.2.2) -; ("go-gopkg-in-natefinch-lumberjack-v2-2.0.0" -; ,go-gopkg-in-natefinch-lumberjack-v2-2.0.0) -; ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) -; ("go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a" -; ,go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a) -; ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" -; ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) -; ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" -; ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) -; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" -; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) -; ("go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0" -; ,go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0) -; ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) -; ("go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489" -; ,go-go-etcd-io-etcd-0.5.0-alpha.5.0.20200910180754-dd1b699fc489) -; ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) -; ("go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5" -; ,go-github-com-tmc-grpc-websocket-proxy-0.0.0-20190109142713-0ad062ec5ee5) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) -; ("go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021" -; ,go-github-com-pquerna-cachecontrol-0.0.0-20171018203845-0dec1b30a021) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822" -; ,go-github-com-munnerz-goautoneg-0.0.0-20191010083416-a7dc8b61c822) -; ("go-github-com-mailru-easyjson-0.7.0" -; ,go-github-com-mailru-easyjson-0.7.0) -; ("go-github-com-hashicorp-golang-lru-0.5.1" -; ,go-github-com-hashicorp-golang-lru-0.5.1) -; ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" -; ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) -; ("go-github-com-gorilla-websocket-1.4.2" -; ,go-github-com-gorilla-websocket-1.4.2) -; ("go-github-com-googleapis-gnostic-0.4.1" -; ,go-github-com-googleapis-gnostic-0.4.1) -; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) -; ("go-github-com-google-gofuzz-1.1.0" -; ,go-github-com-google-gofuzz-1.1.0) -; ("go-github-com-google-go-cmp-0.5.2" -; ,go-github-com-google-go-cmp-0.5.2) -; ("go-github-com-gogo-protobuf-1.3.2" -; ,go-github-com-gogo-protobuf-1.3.2) -; ("go-github-com-go-openapi-spec-0.19.3" -; ,go-github-com-go-openapi-spec-0.19.3) -; ("go-github-com-evanphx-json-patch-4.9.0+incompatible" -; ,go-github-com-evanphx-json-patch-4.9.0+incompatible) -; ("go-github-com-emicklei-go-restful-2.9.5+incompatible" -; ,go-github-com-emicklei-go-restful-2.9.5+incompatible) -; ("go-github-com-dustin-go-humanize-1.0.0" -; ,go-github-com-dustin-go-humanize-1.0.0) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1) -; ("go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f" -; ,go-github-com-coreos-pkg-0.0.0-20180928190104-399ea9e2e55f) -; ("go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e" -; ,go-github-com-coreos-go-systemd-0.0.0-20190321100706-95778dfbb74e) -; ("go-github-com-coreos-go-semver-0.3.0" -; ,go-github-com-coreos-go-semver-0.3.0) -; ("go-github-com-coreos-go-oidc-2.1.0+incompatible" -; ,go-github-com-coreos-go-oidc-2.1.0+incompatible))) -; (home-page "https://k8s.io/apiserver") -; (synopsis "apiserver") -; (description -; "Generic library for building a Kubernetes aggregated API server.") -; (license license:asl2.0))) -; -;(define-public go-github-com-blang-semver-3.5.1+incompatible -; (package -; (name "go-github-com-blang-semver") -; (version "3.5.1+incompatible") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/blang/semver") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "13ws259bwcibkclbr82ilhk6zadm63kxklxhk12wayklj8ghhsmy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/blang/semver")) -; (home-page "https://github.com/blang/semver") -; (synopsis "semver for golang") -; (description -; "semver is a @url{http://semver.org/,Semantic Versioning} library written in golang. It fully covers spec version @code{2.0.0}.") -; (license license:expat))) -; -;(define-public go-github-com-prometheus-procfs-0.2.0 -; (package -; (name "go-github-com-prometheus-procfs") -; (version "0.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/procfs") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0rkpyq1grk3qyfahnfry5qkxjg5qb10yh1l8cvm8b79nqsmdyjbm")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/procfs")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20200106162015-b016eb3dc98e" -; ,go-golang-org-x-sys-0.0.0-20200106162015-b016eb3dc98e) -; ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" -; ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) -; ("go-github-com-google-go-cmp-0.3.1" -; ,go-github-com-google-go-cmp-0.3.1))) -; (home-page "https://github.com/prometheus/procfs") -; (synopsis "procfs") -; (description -; "Package procfs provides functions to retrieve system, kernel and process -;metrics from the pseudo-filesystem proc. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.3 -; (package -; (name "go-github-com-konsorten-go-windows-terminal-sequences") -; (version "1.0.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/konsorten/go-windows-terminal-sequences") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1yrsd4s8vhjnxhwbigirymz89dn6qfjnhn28i33vvvdgf96j6ypl")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) -; (home-page "https://github.com/konsorten/go-windows-terminal-sequences") -; (synopsis "Windows Terminal Sequences") -; (description -; "This library allow for enabling Windows terminal color support for Go.") -; (license license:expat))) -; -;(define-public go-github-com-sirupsen-logrus-1.6.0 -; (package -; (name "go-github-com-sirupsen-logrus") -; (version "1.6.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/sirupsen/logrus") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1zf9is1yxxnna0d1pyag2m9ziy3l27zb2j92p9msm1gx5jjrvzzj")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/sirupsen/logrus")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894" -; ,go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894) -; ("go-github-com-stretchr-testify-1.2.2" -; ,go-github-com-stretchr-testify-1.2.2) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.3" -; ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.3) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://github.com/sirupsen/logrus") -; (synopsis "Logrus") -; (description -; "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. -;") -; (license license:expat))) -; -;(define-public go-go-uber-org-atomic-1.4.0 -; (package -; (name "go-go-uber-org-atomic") -; (version "1.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/uber-go/atomic") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0c6yzx15c20719xii3dm0vyjd8i9jx45m0wh5yp1zf29b0gbljcy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "go.uber.org/atomic")) -; (home-page "https://go.uber.org/atomic") -; (synopsis "atomic") -; (description -; "Package atomic provides simple wrappers around numerics to enforce atomic -;access. -;") -; (license license:expat))) -; -;(define-public go-go-uber-org-multierr-1.1.0 -; (package -; (name "go-go-uber-org-multierr") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/uber-go/multierr") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1slfc6syvw8cvr6rbrjsy6ja5w8gsx0f8aq8qm16rp2x5c2pj07w")))) -; (build-system go-build-system) -; (arguments '(#:import-path "go.uber.org/multierr")) -; (home-page "https://go.uber.org/multierr") -; (synopsis "multierr") -; (description -; "Package multierr allows combining one or more errors together. -;") -; (license license:expat))) -; -;(define-public go-go-uber-org-zap-1.10.0 -; (package -; (name "go-go-uber-org-zap") -; (version "1.10.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/uber-go/zap") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "10hdzr1rghwbsl6bbd30779dx44fh9mg9pq8d2cgqlknqxxpvpvr")))) -; (build-system go-build-system) -; (arguments '(#:import-path "go.uber.org/zap")) -; (home-page "https://go.uber.org/zap") -; (synopsis "â\x9a¡ zap") -; (description "Package zap provides fast, structured, leveled logging. -;") -; (license license:expat))) -; -;(define-public go-github-com-golang-mock-1.4.1 -; (package -; (name "go-github-com-golang-mock") -; (version "1.4.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/mock") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1zb4n285mv85dh3y2f8fqbs30h2dhzw7vbczr6z0zg2gqr6vzg0q")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/mock")) -; (propagated-inputs -; `(("go-rsc-io-quote-v3-3.1.0" ,go-rsc-io-quote-v3-3.1.0) -; ("go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262" -; ,go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262))) -; (home-page "https://github.com/golang/mock") -; (synopsis "gomock") -; (description -; "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It -;integrates well with Go's built-in @code{testing} package, but can be used in other -;contexts too.") -; (license license:asl2.0))) -; -;(define-public go-github-com-golang-protobuf-1.3.4 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.3.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "12dclmj2if8l0069fby4psrpqby7p810dr1dr63nwx93g9jhvkmx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20200301022130-244492dfa37a -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20200301022130-244492dfa37a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0vm2q44phz4vjnzq9428rjk58c82fxf003whczp7c9ryn9fazh7s")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20200304193943-95d2e580d8eb -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20200304193943-95d2e580d8eb") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0f46657xsdc12lr29ksqg80fp0j8v2iqgihzh788avcj5cmhnqyl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" -; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) -; ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" -; ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) -; ("go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b" -; ,go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b) -; ("go-golang-org-x-mod-0.2.0" ,go-golang-org-x-mod-0.2.0))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20200305110556-506484158171 -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20200305110556-506484158171") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "19h7sxkfjcrkm7majd0pyzzirdnk1qlsxc3h5zklhm234d8jg407")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" -; ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) -; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) -; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" -; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-github-com-golang-protobuf-1.3.3" -; ,go-github-com-golang-protobuf-1.3.3))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-cloud-google-com-go-0.54.0 -; (package -; (name "go-cloud-google-com-go") -; (version "0.54.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-cloud-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ilqqymrphg546c66jc0npd48dlr88wbgrg462h1jgm2ykbnq1ba")))) -; (build-system go-build-system) -; (arguments '(#:import-path "cloud.google.com/go")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.1-2020.1.3" -; ,go-honnef-co-go-tools-0.0.1-2020.1.3) -; ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) -; ("go-google-golang-org-genproto-0.0.0-20200305110556-506484158171" -; ,go-google-golang-org-genproto-0.0.0-20200305110556-506484158171) -; ("go-google-golang-org-api-0.20.0" ,go-google-golang-org-api-0.20.0) -; ("go-golang-org-x-tools-0.0.0-20200304193943-95d2e580d8eb" -; ,go-golang-org-x-tools-0.0.0-20200304193943-95d2e580d8eb) -; ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) -; ("go-golang-org-x-sys-0.0.0-20200302150141-5c8b2ff67527" -; ,go-golang-org-x-sys-0.0.0-20200302150141-5c8b2ff67527) -; ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" -; ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) -; ("go-golang-org-x-net-0.0.0-20200301022130-244492dfa37a" -; ,go-golang-org-x-net-0.0.0-20200301022130-244492dfa37a) -; ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" -; ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) -; ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) -; ("go-github-com-jstemmer-go-junit-report-0.9.1" -; ,go-github-com-jstemmer-go-junit-report-0.9.1) -; ("go-github-com-googleapis-gax-go-v2-2.0.5" -; ,go-github-com-googleapis-gax-go-v2-2.0.5) -; ("go-github-com-google-pprof-0.0.0-20200229191704-1ebb73c60ed3" -; ,go-github-com-google-pprof-0.0.0-20200229191704-1ebb73c60ed3) -; ("go-github-com-google-martian-2.1.0+incompatible" -; ,go-github-com-google-martian-2.1.0+incompatible) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.3.4" -; ,go-github-com-golang-protobuf-1.3.4) -; ("go-github-com-golang-mock-1.4.1" ,go-github-com-golang-mock-1.4.1) -; ("go-cloud-google-com-go-storage-1.6.0" -; ,go-cloud-google-com-go-storage-1.6.0) -; ("go-cloud-google-com-go-pubsub-1.2.0" -; ,go-cloud-google-com-go-pubsub-1.2.0) -; ("go-cloud-google-com-go-datastore-1.1.0" -; ,go-cloud-google-com-go-datastore-1.1.0) -; ("go-cloud-google-com-go-bigquery-1.4.0" -; ,go-cloud-google-com-go-bigquery-1.4.0))) -; (home-page "https://cloud.google.com/go") -; (synopsis "Google Cloud Client Libraries for Go") -; (description -; "Package cloud is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -;of sub-packages. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7 -; (package -; (name "go-github-com-gregjones-httpcache") -; (version "0.0.0-20180305231024-9cad4c3443a7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/gregjones/httpcache") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0wjdwcwqqcx2d5y68qvhg6qyj977il5ijmnn9h9cd6wjbdy0ay6s")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/gregjones/httpcache")) -; (home-page "https://github.com/gregjones/httpcache") -; (synopsis "httpcache") -; (description -; "Package httpcache provides a http.RoundTripper implementation that works as a -;mostly RFC-compliant cache for http responses. -;") -; (license license:expat))) -; -;(define-public go-github-com-imdario-mergo-0.3.5 -; (package -; (name "go-github-com-imdario-mergo") -; (version "0.3.5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/imdario/mergo") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1mvgn89vp39gcpvhiq4n7nw5ipj7fk6h03jgc6fjwgvwvss213pb")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/imdario/mergo")) -; (home-page "https://github.com/imdario/mergo") -; (synopsis "Mergo") -; (description -; "This package provides a helper to merge structs and maps in Golang. Useful for configuration default values, avoiding messy if-statements. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-peterbourgon-diskv-2.0.1+incompatible -; (package -; (name "go-github-com-peterbourgon-diskv") -; (version "2.0.1+incompatible") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/peterbourgon/diskv") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1mxpa5aad08x30qcbffzk80g9540wvbca4blc1r2qyzl65b8929b")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/peterbourgon/diskv")) -; (home-page "https://github.com/peterbourgon/diskv") -; (synopsis "What is diskv?") -; (description -; "Diskv (disk-vee) is a simple, persistent key-value store written in the Go -;language. It starts with an incredibly simple API for storing arbitrary data on -;a filesystem by key, and builds several layers of performance-enhancing -;abstraction on top. The end result is a conceptually simple, but highly -;performant, disk-backed storage system.") -; (license license:expat))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20201002170205-7f63de1d35b0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1dr89jfs4dmpr3jqfshqqvfpzzdx4r76nkzhrvmixfrmn6wxrnd1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" -; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) -; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" -; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e -; (package -; (name "go-golang-org-x-time") -; (version "0.0.0-20200630173020-3af7569d3a1e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/time") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "05hqhw3vlssi499y6m41zgdp1yyjsw2kj95ahymlw6pkhsssh2vq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/time")) -; (home-page "https://golang.org/x/time") -; (synopsis "Go Time") -; (description "This repository provides supplementary Go time packages.") -; (license license:bsd-3))) -; -;(define-public go-k8s-io-api-0.20.6 -; (package -; (name "go-k8s-io-api") -; (version "0.20.6") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes/api") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0mm6a91a4nrlsvnfcbgn2574vdwxf1nxpgrd5avklh8mym2ngimw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "k8s.io/api")) -; (propagated-inputs -; `(("go-k8s-io-apimachinery-0.20.6" ,go-k8s-io-apimachinery-0.20.6) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-gogo-protobuf-1.3.2" -; ,go-github-com-gogo-protobuf-1.3.2))) -; (home-page "https://k8s.io/api") -; (synopsis "api") -; (description -; "Schema of the external API types that are served by the Kubernetes API server.") -; (license license:asl2.0))) -; -;(define-public go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96 -; (package -; (name "go-github-com-docker-spdystream") -; (version "0.0.0-20160310174837-449fdfce4d96") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/moby/spdystream") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1412cpiis971iq1kxrirzirhj2708ispjh0x0dh879b66x8507sl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/docker/spdystream")) -; (home-page "https://github.com/docker/spdystream") -; (synopsis "SpdyStream") -; (description -; "This package provides a multiplexed stream library using spdy") -; (license license:asl2.0))) -; -;(define-public go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153 -; (package -; (name "go-github-com-elazarl-goproxy") -; (version "0.0.0-20180725130230-947c36da3153") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/elazarl/goproxy") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0lmsnr5xmda89wig8sw62llg6acjb5caghz5jmdhnm85rm6rnssk")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/elazarl/goproxy")) -; (home-page "https://github.com/elazarl/goproxy") -; (synopsis "Introduction") -; (description -; "Taken from $GOROOT/src/pkg/net/http/chunked -;needed to write https responses to client. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-evanphx-json-patch-4.9.0+incompatible -; (package -; (name "go-github-com-evanphx-json-patch") -; (version "4.9.0+incompatible") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/evanphx/json-patch") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1r88qpzjxsx8skij9s5pi4a5qcv4bm18vq8sy21gpwgzp3qf6qzx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/evanphx/json-patch")) -; (home-page "https://github.com/evanphx/json-patch") -; (synopsis "JSON-Patch") -; (description -; "@code{jsonpatch} is a library which provides functionality for both applying -;@url{http://tools.ietf.org/html/rfc6902,RFC6902 JSON patches} against documents, as -;well as for calculating & applying @url{https://tools.ietf.org/html/rfc7396,RFC7396 JSON merge patches}.") -; (license license:bsd-3))) -; -;(define-public go-github-com-google-gofuzz-1.1.0 -; (package -; (name "go-github-com-google-gofuzz") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/gofuzz") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0si2fiigj45vr4jnw4grjhls7nw56wkwinnn93gqbl9ng9ynw8rx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/gofuzz")) -; (home-page "https://github.com/google/gofuzz") -; (synopsis "gofuzz") -; (description -; "Package fuzz is a library for populating go objects with random values. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f -; (package -; (name "go-github-com-mxk-go-flowrate") -; (version "0.0.0-20140419014527-cca7078d478f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mxk/go-flowrate") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0zqs39923ja0yypdmiqk6x8pgmfs3ms5x5sl1dqv9z6zyx2xy541")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mxk/go-flowrate")) -; (home-page "https://github.com/mxk/go-flowrate") -; (synopsis #f) -; (description #f) -; (license license:bsd-3))) -; -;(define-public go-github-com-onsi-ginkgo-1.11.0 -; (package -; (name "go-github-com-onsi-ginkgo") -; (version "1.11.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/onsi/ginkgo") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1vxmb5k89bq50m2kzcw5l3bdvci4czpifkgxd4nbq1yzv5ir03kp")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/onsi/ginkgo")) -; (home-page "https://github.com/onsi/ginkgo") -; (synopsis "Ginkgo 2.0 Release Candidate is available!") -; (description "Ginkgo is a BDD-style testing framework for Golang -;") -; (license license:expat))) -; -;(define-public go-github-com-fsnotify-fsnotify-1.4.7 -; (package -; (name "go-github-com-fsnotify-fsnotify") -; (version "1.4.7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/fsnotify/fsnotify") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/fsnotify/fsnotify")) -; (home-page "https://github.com/fsnotify/fsnotify") -; (synopsis "File system notifications for Go") -; (description -; "Package fsnotify provides a platform-independent interface for file system notifications. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-hpcloud-tail-1.0.0 -; (package -; (name "go-github-com-hpcloud-tail") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hpcloud/tail") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1njpzc0pi1acg5zx9y6vj9xi6ksbsc5d387rd6904hy6rh2m6kn0")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hpcloud/tail")) -; (home-page "https://github.com/hpcloud/tail") -; (synopsis "Go package for tail-ing files") -; (description -; "This package provides a Go package striving to emulate the features of the BSD @code{tail} program.") -; (license license:expat))) -; -;(define-public go-github-com-onsi-ginkgo-1.6.0 -; (package -; (name "go-github-com-onsi-ginkgo") -; (version "1.6.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/onsi/ginkgo") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0x0gc89vgq38xhgmi2h22bhr73cf2gmk42g89nz89k8dgg9hhr25")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/onsi/ginkgo")) -; (home-page "https://github.com/onsi/ginkgo") -; (synopsis "Ginkgo 2.0 Release Candidate is available!") -; (description "Ginkgo is a BDD-style testing framework for Golang -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20180906233101-161cd47e91fd") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0254ld010iijygbzykib2vags1dc0wlmcmhgh4jl8iny159lhbcv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20180909124046-d0be0721c37e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "081wyvfnlf842dqg03raxfz6lldlxpmyh1prix9lmrrm65arxb12")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-gopkg-in-fsnotify-v1-1.4.7 -; (package -; (name "go-gopkg-in-fsnotify-v1") -; (version "1.4.7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/fsnotify.v1") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path -; "gopkg.in/fsnotify.v1" -; #:unpack-path -; "gopkg.in/fsnotify.v1")) -; (home-page "https://gopkg.in/fsnotify.v1") -; (synopsis "File system notifications for Go") -; (description -; "Package fsnotify provides a platform-independent interface for file system notifications. -;") -; (license license:bsd-3))) -; -;(define-public go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7 -; (package -; (name "go-gopkg-in-tomb-v1") -; (version "1.0.0-20141024135613-dd632973f1e7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/tomb.v1") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1lqmq1ag7s4b3gc3ddvr792c5xb5k6sfn0cchr3i2s7f1c231zjv")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/tomb.v1" #:unpack-path "gopkg.in/tomb.v1")) -; (home-page "https://gopkg.in/tomb.v1") -; (synopsis "Installation and usage") -; (description -; "The tomb package offers a conventional API for clean goroutine termination. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-onsi-gomega-1.7.0 -; (package -; (name "go-github-com-onsi-gomega") -; (version "1.7.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/onsi/gomega") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "09j6wq425wgzzsbwm9ckhfgl2capv3yyqbrf45qyrjwkzm49i02y")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/onsi/gomega")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1) -; ("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" -; ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) -; ("go-gopkg-in-fsnotify-v1-1.4.7" ,go-gopkg-in-fsnotify-v1-1.4.7) -; ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e" -; ,go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e) -; ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" -; ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) -; ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" -; ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) -; ("go-github-com-onsi-ginkgo-1.6.0" ,go-github-com-onsi-ginkgo-1.6.0) -; ("go-github-com-hpcloud-tail-1.0.0" ,go-github-com-hpcloud-tail-1.0.0) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0) -; ("go-github-com-fsnotify-fsnotify-1.4.7" -; ,go-github-com-fsnotify-fsnotify-1.4.7))) -; (home-page "https://github.com/onsi/gomega") -; (synopsis ": a BDD Testing Framework for Golang") -; (description -; "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library. -;") -; (license license:expat))) -; -;(define-public go-gopkg-in-inf-v0-0.9.1 -; (package -; (name "go-gopkg-in-inf-v0") -; (version "0.9.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/inf.v0") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "00k5iqjcp371fllqxncv7jkf80hn1zww92zm78cclbcn4ybigkng")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/inf.v0" #:unpack-path "gopkg.in/inf.v0")) -; (home-page "https://gopkg.in/inf.v0") -; (synopsis #f) -; (description -; "Package inf (type inf.Dec) implements \"infinite-precision\" decimal -;arithmetic. -;\"Infinite precision\" describes two characteristics: practically unlimited -;precision for decimal number representation and no support for calculating -;with any specific fixed precision. -;(Although there is no practical limit on precision, inf.Dec can only -;represent finite decimals.) -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-nytimes-gziphandler-0.0.0-20170623195520-56545f4a5d46 -; (package -; (name "go-github-com-nytimes-gziphandler") -; (version "0.0.0-20170623195520-56545f4a5d46") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/nytimes/gziphandler") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1fwk9wz6vrvq72f2gq8jhvd1nvv6grqgwrjq66vjpm0726pxar72")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/NYTimes/gziphandler")) -; (home-page "https://github.com/NYTimes/gziphandler") -; (synopsis "Gzip Handler") -; (description -; "This is a tiny Go package which wraps HTTP handlers to transparently gzip the -;response body, for clients which support it. Although it's usually simpler to -;leave that to a reverse proxy (like nginx or Varnish), this package is useful -;when that's undesirable.") -; (license license:asl2.0))) -; -;(define-public go-github-com-asaskevich-govalidator-0.0.0-20190424111038-f61b66f89f4a -; (package -; (name "go-github-com-asaskevich-govalidator") -; (version "0.0.0-20190424111038-f61b66f89f4a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/asaskevich/govalidator") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1jzjd9ak4byb83bwhbyrrdclnhrgglyxcbr4d4qh39a6ywvcijm5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/asaskevich/govalidator")) -; (home-page "https://github.com/asaskevich/govalidator") -; (synopsis "govalidator") -; (description -; "Package govalidator is package of validators and sanitizers for strings, structs and collections. -;") -; (license license:expat))) -; -;(define-public go-github-com-emicklei-go-restful-0.0.0-20170410110728-ff4f55a20633 -; (package -; (name "go-github-com-emicklei-go-restful") -; (version "0.0.0-20170410110728-ff4f55a20633") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/emicklei/go-restful") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1v5lj5142abz3gvbygp6xghpdx4ps2lwswl8559ivaidahwnc21c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/emicklei/go-restful")) -; (home-page "https://github.com/emicklei/go-restful") -; (synopsis "go-restful") -; (description -; "Package restful , a lean package for creating REST-style WebServices without magic. -;") -; (license license:expat))) -; -;(define-public go-github-com-ghodss-yaml-0.0.0-20150909031657-73d445a93680 -; (package -; (name "go-github-com-ghodss-yaml") -; (version "0.0.0-20150909031657-73d445a93680") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/ghodss/yaml") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0pg53ky4sy3sp9j4n7vgf1p3gw4nbckwqfldcmmi9rf13kjh0mr7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/ghodss/yaml")) -; (home-page "https://github.com/ghodss/yaml") -; (synopsis "YAML marshaling and unmarshaling support for Go") -; (description -; "Copyright 2013 The Go Authors. All rights reserved. -;Use of this source code is governed by a BSD-style -;license that can be found in the LICENSE file. -;") -; (license #f))) -; -;(define-public go-github-com-go-openapi-jsonreference-0.19.3 -; (package -; (name "go-github-com-go-openapi-jsonreference") -; (version "0.19.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/go-openapi/jsonreference") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ln21xai74fynwmi4ck5j0c70yszjy96wfagc705y8khjxsgncsw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/go-openapi/jsonreference")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) -; ("go-golang-org-x-net-0.0.0-20190827160401-ba9fcec4b297" -; ,go-golang-org-x-net-0.0.0-20190827160401-ba9fcec4b297) -; ("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0) -; ("go-github-com-go-openapi-jsonpointer-0.19.3" -; ,go-github-com-go-openapi-jsonpointer-0.19.3) -; ("go-github-com-puerkitobio-urlesc-0.0.0-20170810143723-de5bf2ad4578" -; ,go-github-com-puerkitobio-urlesc-0.0.0-20170810143723-de5bf2ad4578) -; ("go-github-com-puerkitobio-purell-1.1.1" -; ,go-github-com-puerkitobio-purell-1.1.1))) -; (home-page "https://github.com/go-openapi/jsonreference") -; (synopsis "gojsonreference") -; (description -; "@url{https://raw.githubusercontent.com/go-openapi/jsonreference/master/LICENSE,(img (@ (src http://img.shields.io/badge/license-Apache%20v2-orange.svg) (alt license)))} @url{http://godoc.org/github.com/go-openapi/jsonreference,(img (@ (src https://godoc.org/github.com/go-openapi/jsonreference?status.svg=) (alt GoDoc)))} -;An implementation of JSON Reference - Go language") -; (license license:asl2.0))) -; -;(define-public go-github-com-mailru-easyjson-0.0.0-20190626092158-b2ccc519800e -; (package -; (name "go-github-com-mailru-easyjson") -; (version "0.0.0-20190626092158-b2ccc519800e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mailru/easyjson") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0q85h383mhbkcjm2vqm72bi8n2252fv3c56q3lclzb8n2crnjcdk")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mailru/easyjson")) -; (home-page "https://github.com/mailru/easyjson") -; (synopsis "easyjson") -; (description -; "Package easyjson contains marshaler/unmarshaler interfaces and helper functions. -;") -; (license license:expat))) -; -;(define-public go-github-com-go-openapi-jsonpointer-0.19.3 -; (package -; (name "go-github-com-go-openapi-jsonpointer") -; (version "0.19.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/go-openapi/jsonpointer") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1m4bb7c5y8ss2s8wl50k7lsk84nl4lcldkbkphrfdl21y51gz4jr")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/go-openapi/jsonpointer")) -; (propagated-inputs -; `(("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0) -; ("go-github-com-mailru-easyjson-0.0.0-20190626092158-b2ccc519800e" -; ,go-github-com-mailru-easyjson-0.0.0-20190626092158-b2ccc519800e) -; ("go-github-com-go-openapi-swag-0.19.5" -; ,go-github-com-go-openapi-swag-0.19.5))) -; (home-page "https://github.com/go-openapi/jsonpointer") -; (synopsis "gojsonpointer") -; (description -; "@url{https://raw.githubusercontent.com/go-openapi/jsonpointer/master/LICENSE,(img (@ (src http://img.shields.io/badge/license-Apache%20v2-orange.svg) (alt license)))} @url{http://godoc.org/github.com/go-openapi/jsonpointer,(img (@ (src https://godoc.org/github.com/go-openapi/jsonpointer?status.svg=) (alt GoDoc)))} -;An implementation of JSON Pointer - Go language") -; (license license:asl2.0))) -; -;(define-public go-github-com-puerkitobio-purell-1.1.1 -; (package -; (name "go-github-com-puerkitobio-purell") -; (version "1.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/PuerkitoBio/purell") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0c525frsxmalrn55hzzsxy17ng8avkd40ga0wxfw9haxsdjgqdqy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/PuerkitoBio/purell")) -; (home-page "https://github.com/PuerkitoBio/purell") -; (synopsis "Purell") -; (description -; "Package purell offers URL normalization as described on the wikipedia page: -;@url{http://en.wikipedia.org/wiki/URL_normalization,http://en.wikipedia.org/wiki/URL_normalization} -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-puerkitobio-urlesc-0.0.0-20170810143723-de5bf2ad4578 -; (package -; (name "go-github-com-puerkitobio-urlesc") -; (version "0.0.0-20170810143723-de5bf2ad4578") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/PuerkitoBio/urlesc") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0n0srpqwbaan1wrhh2b7ysz543pjs1xw2rghvqyffg9l0g8kzgcw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/PuerkitoBio/urlesc")) -; (home-page "https://github.com/PuerkitoBio/urlesc") -; (synopsis "urlesc") -; (description -; "Package urlesc implements query escaping as per @url{https://rfc-editor.org/rfc/rfc3986.html,RFC 3986}. -;It contains some parts of the net/url package, modified so as to allow -;some reserved characters incorrectly escaped by net/url. -;See @url{https://github.com/golang/go/issues/5684,https://github.com/golang/go/issues/5684} -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-go-openapi-swag-0.19.2 -; (package -; (name "go-github-com-go-openapi-swag") -; (version "0.19.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/go-openapi/swag") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1mlxlajx2p9wjm72rmqjrx5g49q2sn04y45s3nrykkf6jqlq1v4z")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/go-openapi/swag")) -; (propagated-inputs -; `(("go-github-com-sourcegraph-go-diff-0.5.1" -; ,go-github-com-sourcegraph-go-diff-0.5.1) -; ("go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422" -; ,go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422) -; ("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) -; ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" -; ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) -; ("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0) -; ("go-github-com-mailru-easyjson-0.0.0-20190614124828-94de47d64c63" -; ,go-github-com-mailru-easyjson-0.0.0-20190614124828-94de47d64c63) -; ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://github.com/go-openapi/swag") -; (synopsis "Swag") -; (description -; "Package swag contains a bunch of helper functions for go-openapi and go-swagger projects. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-go-openapi-jsonpointer-0.19.2 -; (package -; (name "go-github-com-go-openapi-jsonpointer") -; (version "0.19.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/go-openapi/jsonpointer") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1s3cqf4svrbygvvpvi7hf122szsgihas52vqh0bba3avf4w03g9n")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/go-openapi/jsonpointer")) -; (propagated-inputs -; `(("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0) -; ("go-github-com-go-openapi-swag-0.19.2" -; ,go-github-com-go-openapi-swag-0.19.2))) -; (home-page "https://github.com/go-openapi/jsonpointer") -; (synopsis "gojsonpointer") -; (description -; "@url{https://raw.githubusercontent.com/go-openapi/jsonpointer/master/LICENSE,(img (@ (src http://img.shields.io/badge/license-Apache%20v2-orange.svg) (alt license)))} @url{http://godoc.org/github.com/go-openapi/jsonpointer,(img (@ (src https://godoc.org/github.com/go-openapi/jsonpointer?status.svg=) (alt GoDoc)))} -;An implementation of JSON Pointer - Go language") -; (license license:asl2.0))) -; -;(define-public go-github-com-go-openapi-jsonreference-0.19.2 -; (package -; (name "go-github-com-go-openapi-jsonreference") -; (version "0.19.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/go-openapi/jsonreference") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0v933yvcwyzzlpdxwb9204ki7lls2rwfd96ww2i901ndvz37kdf8")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/go-openapi/jsonreference")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) -; ("go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980" -; ,go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980) -; ("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0) -; ("go-github-com-go-openapi-jsonpointer-0.19.2" -; ,go-github-com-go-openapi-jsonpointer-0.19.2) -; ("go-github-com-puerkitobio-urlesc-0.0.0-20170810143723-de5bf2ad4578" -; ,go-github-com-puerkitobio-urlesc-0.0.0-20170810143723-de5bf2ad4578) -; ("go-github-com-puerkitobio-purell-1.1.1" -; ,go-github-com-puerkitobio-purell-1.1.1))) -; (home-page "https://github.com/go-openapi/jsonreference") -; (synopsis "gojsonreference") -; (description -; "@url{https://raw.githubusercontent.com/go-openapi/jsonreference/master/LICENSE,(img (@ (src http://img.shields.io/badge/license-Apache%20v2-orange.svg) (alt license)))} @url{http://godoc.org/github.com/go-openapi/jsonreference,(img (@ (src https://godoc.org/github.com/go-openapi/jsonreference?status.svg=) (alt GoDoc)))} -;An implementation of JSON Reference - Go language") -; (license license:asl2.0))) -; -;(define-public go-github-com-kr-pty-1.1.5 -; (package -; (name "go-github-com-kr-pty") -; (version "1.1.5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kr/pty") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1bpq77b90z72cv9h66dvxsg2j197ylpgcps23xsjfbs752bykfw1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kr/pty")) -; (home-page "https://github.com/kr/pty") -; (synopsis "pty") -; (description -; "Package pty is a wrapper for github.com/creack/pty, which provides -;functions for working with Unix terminals. -;") -; (license license:expat))) -; -;(define-public go-github-com-stretchr-objx-0.2.0 -; (package -; (name "go-github-com-stretchr-objx") -; (version "0.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/objx") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0pcdvakxgddaiwcdj73ra4da05a3q4cgwbpm2w75ycq4kzv8ij8k")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/objx")) -; (propagated-inputs -; `(("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://github.com/stretchr/objx") -; (synopsis "Objx") -; (description -; "Objx - Go package for dealing with maps, slices, JSON and other data. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20190611184440-5c40567a22f8 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20190611184440-5c40567a22f8") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "17g8fb9vy2sqq8vgz8jdvf6c6d2290gm2qs0i4yzsd86mgn4dlrg")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" -; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) -; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" -; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20190827160401-ba9fcec4b297 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20190827160401-ba9fcec4b297") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1hbqvy6r0s5h0dpdqw8fynl3cq0acin3iyqki9xvl5r8h33yb9bx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190616124812-15dcb6c0061f -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190616124812-15dcb6c0061f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1qfkkysbyn44nyx57cq8mmw1cjgpxi9gi9xrf6kljmd9c1416zdd")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20190614205625-5aca471b1d59 -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20190614205625-5aca471b1d59") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1i4h3q83w4y9s065w0wnnnwlssy69jbrj08k47ppsa8dnv85kyrf")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" -; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-github-com-go-openapi-spec-0.19.3 -; (package -; (name "go-github-com-go-openapi-spec") -; (version "0.19.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/go-openapi/spec") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1dikq1p550vj5i9y918s075pgk0fxkixxk3fb70ri7wkm51s6nlj")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/go-openapi/spec")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) -; ("go-golang-org-x-tools-0.0.0-20190614205625-5aca471b1d59" -; ,go-golang-org-x-tools-0.0.0-20190614205625-5aca471b1d59) -; ("go-golang-org-x-sys-0.0.0-20190616124812-15dcb6c0061f" -; ,go-golang-org-x-sys-0.0.0-20190616124812-15dcb6c0061f) -; ("go-golang-org-x-net-0.0.0-20190827160401-ba9fcec4b297" -; ,go-golang-org-x-net-0.0.0-20190827160401-ba9fcec4b297) -; ("go-golang-org-x-crypto-0.0.0-20190611184440-5c40567a22f8" -; ,go-golang-org-x-crypto-0.0.0-20190611184440-5c40567a22f8) -; ("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0) -; ("go-github-com-stretchr-objx-0.2.0" -; ,go-github-com-stretchr-objx-0.2.0) -; ("go-github-com-kr-pty-1.1.5" ,go-github-com-kr-pty-1.1.5) -; ("go-github-com-go-openapi-swag-0.19.5" -; ,go-github-com-go-openapi-swag-0.19.5) -; ("go-github-com-go-openapi-jsonreference-0.19.2" -; ,go-github-com-go-openapi-jsonreference-0.19.2) -; ("go-github-com-go-openapi-jsonpointer-0.19.3" -; ,go-github-com-go-openapi-jsonpointer-0.19.3))) -; (home-page "https://github.com/go-openapi/spec") -; (synopsis "OAI object model") -; (description "The object model for OpenAPI specification documents.") -; (license license:asl2.0))) -; -;(define-public go-github-com-mailru-easyjson-0.0.0-20190614124828-94de47d64c63 -; (package -; (name "go-github-com-mailru-easyjson") -; (version "0.0.0-20190614124828-94de47d64c63") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mailru/easyjson") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1km0kkh7cf7dlz5pqi9yr1wamv0167y41cyv1dbrcxfdmwgpfd23")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mailru/easyjson")) -; (home-page "https://github.com/mailru/easyjson") -; (synopsis "easyjson") -; (description -; "Package easyjson contains marshaler/unmarshaler interfaces and helper functions. -;") -; (license license:expat))) -; -;(define-public go-github-com-shurcool-go-0.0.0-20180423040247-9e1955d9fb6e -; (package -; (name "go-github-com-shurcool-go") -; (version "0.0.0-20180423040247-9e1955d9fb6e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/shurcooL/go") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1lad9bvs75jsn61cfza19739c2c057k0bqxg2b4xz3z3l4w1mkqj")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/shurcooL/go")) -; (home-page "https://github.com/shurcooL/go") -; (synopsis "go") -; (description "Common Go code.") -; (license license:expat))) -; -;(define-public go-github-com-shurcool-go-goon-0.0.0-20170922171312-37c2f522c041 -; (package -; (name "go-github-com-shurcool-go-goon") -; (version "0.0.0-20170922171312-37c2f522c041") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/shurcooL/go-goon") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "17ac6j6msdcxbmfhq6pxhw5z339b87bd6ciln9909drjv2szyxqv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/shurcooL/go-goon")) -; (home-page "https://github.com/shurcooL/go-goon") -; (synopsis "goon") -; (description -; "Package goon is a deep pretty printer with Go-like notation. It implements the goon specification. -;") -; (license license:expat))) -; -;(define-public go-sourcegraph-com-sqs-pbtypes-0.0.0-20180604144634-d3ebe8f20ae4 -; (package -; (name "go-sourcegraph-com-sqs-pbtypes") -; (version "0.0.0-20180604144634-d3ebe8f20ae4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/sqs/pbtypes") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0vcyqq4jc2jv1wh288qdxv51qxcfj07lvnlf37pjicsd2yrb7yrr")))) -; (build-system go-build-system) -; (arguments '(#:import-path "sourcegraph.com/sqs/pbtypes")) -; (home-page "https://sourcegraph.com/sqs/pbtypes") -; (synopsis "pbtypes") -; (description -; "Package pbtypes contains protocol buffer types (Timestamp, Void, -;etc.) and related helpers. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-sourcegraph-go-diff-0.5.1 -; (package -; (name "go-github-com-sourcegraph-go-diff") -; (version "0.5.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/sourcegraph/go-diff") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0acabccjmxgdvhyd7fr0krlf7ymc7mngdq292n03hfys9nrnb0b2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/sourcegraph/go-diff")) -; (propagated-inputs -; `(("go-sourcegraph-com-sqs-pbtypes-0.0.0-20180604144634-d3ebe8f20ae4" -; ,go-sourcegraph-com-sqs-pbtypes-0.0.0-20180604144634-d3ebe8f20ae4) -; ("go-github-com-shurcool-go-goon-0.0.0-20170922171312-37c2f522c041" -; ,go-github-com-shurcool-go-goon-0.0.0-20170922171312-37c2f522c041) -; ("go-github-com-shurcool-go-0.0.0-20180423040247-9e1955d9fb6e" -; ,go-github-com-shurcool-go-0.0.0-20180423040247-9e1955d9fb6e) -; ("go-github-com-gogo-protobuf-1.1.1" -; ,go-github-com-gogo-protobuf-1.1.1))) -; (home-page "https://github.com/sourcegraph/go-diff") -; (synopsis "go-diff") -; (description "Diff parser and printer for Go.") -; (license license:expat))) -; -;(define-public go-github-com-go-openapi-swag-0.19.5 -; (package -; (name "go-github-com-go-openapi-swag") -; (version "0.19.5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/go-openapi/swag") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1z34vqc5yz6rzvarrvlhkimxx33p74iaxb28l1mv716njvlsmjhg")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/go-openapi/swag")) -; (propagated-inputs -; `(("go-github-com-sourcegraph-go-diff-0.5.1" -; ,go-github-com-sourcegraph-go-diff-0.5.1) -; ("go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422" -; ,go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422) -; ("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) -; ("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" -; ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) -; ("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0) -; ("go-github-com-mailru-easyjson-0.0.0-20190614124828-94de47d64c63" -; ,go-github-com-mailru-easyjson-0.0.0-20190614124828-94de47d64c63) -; ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://github.com/go-openapi/swag") -; (synopsis "Swag") -; (description -; "Package swag contains a bunch of helper functions for go-openapi and go-swagger projects. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-google-uuid-1.1.1 -; (package -; (name "go-github-com-google-uuid") -; (version "1.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/uuid") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0hfxcf9frkb57k6q0rdkrmnfs78ms21r1qfk9fhlqga2yh5xg8zb")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/uuid")) -; (home-page "https://github.com/google/uuid") -; (synopsis "uuid") -; (description "Package uuid generates and inspects UUIDs. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-docopt-docopt-go-0.0.0-20180111231733-ee0de3bc6815 -; (package -; (name "go-github-com-docopt-docopt-go") -; (version "0.0.0-20180111231733-ee0de3bc6815") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/docopt/docopt.go") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0hlra7rmi5pmd7d93rv56ahiy4qkgmq8a6mz0jpadvbi5qh8lq6j")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/docopt/docopt-go")) -; (home-page "https://github.com/docopt/docopt-go") -; (synopsis "docopt-go") -; (description -; "Package docopt parses command-line arguments based on a help message. -;") -; (license license:expat))) -; -;(define-public go-github-com-googleapis-gnostic-0.4.1 -; (package -; (name "go-github-com-googleapis-gnostic") -; (version "0.4.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/gnostic") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1fw28m3ach5pkcdh4ijd6s7w09j0n88p6mah3hp0k8918jsc6mj9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/googleapis/gnostic")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) -; ("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" -; ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) -; ("go-github-com-kr-pretty-0.2.0" ,go-github-com-kr-pretty-0.2.0) -; ("go-github-com-golang-protobuf-1.3.3" -; ,go-github-com-golang-protobuf-1.3.3) -; ("go-github-com-docopt-docopt-go-0.0.0-20180111231733-ee0de3bc6815" -; ,go-github-com-docopt-docopt-go-0.0.0-20180111231733-ee0de3bc6815))) -; (home-page "https://github.com/googleapis/gnostic") -; (synopsis "â¨\x81 gnostic") -; (description -; "Gnostic is a tool for building better REST APIs through knowledge. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-munnerz-goautoneg-0.0.0-20120707110453-a547fc61f48d -; (package -; (name "go-github-com-munnerz-goautoneg") -; (version "0.0.0-20120707110453-a547fc61f48d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/munnerz/goautoneg") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "19khhn5xhqv1yp7d6k987gh5w5rhrjnp4p0c6fyrd8z6lzz5h9qi")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/munnerz/goautoneg")) -; (home-page "https://github.com/munnerz/goautoneg") -; (synopsis #f) -; (description #f) -; (license license:bsd-3))) -; -;(define-public go-github-com-onsi-ginkgo-0.0.0-20170829012221-11459a886d9c -; (package -; (name "go-github-com-onsi-ginkgo") -; (version "0.0.0-20170829012221-11459a886d9c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/onsi/ginkgo") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1nswc1fnrrs792qbix05h91bilj8rr3wxmxgwi97p2gjk0r292zh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/onsi/ginkgo")) -; (home-page "https://github.com/onsi/ginkgo") -; (synopsis "Ginkgo 2.0 Release Candidate is available!") -; (description "Ginkgo is a BDD-style testing framework for Golang -;") -; (license license:expat))) -; -;(define-public go-github-com-onsi-gomega-0.0.0-20170829124025-dcabb60a477c -; (package -; (name "go-github-com-onsi-gomega") -; (version "0.0.0-20170829124025-dcabb60a477c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/onsi/gomega") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1775lv5jbsgv3ghq5v2827slqlhqdadrzc1nkpq4y0hdv2qzrgkm")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/onsi/gomega")) -; (home-page "https://github.com/onsi/gomega") -; (synopsis ": a BDD Testing Framework for Golang") -; (description -; "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library. -;") -; (license license:expat))) -; -;(define-public go-github-com-spf13-pflag-0.0.0-20170130214245-9ff6c6923cff -; (package -; (name "go-github-com-spf13-pflag") -; (version "0.0.0-20170130214245-9ff6c6923cff") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/spf13/pflag") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0mfrxzyl8x7araa126lh8l3sihbbgfbzgkrg3v3cx7y4n3wrsqvn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/spf13/pflag")) -; (home-page "https://github.com/spf13/pflag") -; (synopsis "Description") -; (description -; "Package pflag is a drop-in replacement for Go's flag package, implementing -;POSIX/GNU-style --flags. -;") -; (license license:bsd-3))) -; -;(define-public go-k8s-io-gengo-0.0.0-20200413195148-3a45101e95ac -; (package -; (name "go-k8s-io-gengo") -; (version "0.0.0-20200413195148-3a45101e95ac") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes/gengo") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0x46jq6rv8z0y96231rfgzvfscgy5hp5aacid3r93zy0rq9r37g6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "k8s.io/gengo")) -; (home-page "https://k8s.io/gengo") -; (synopsis "gengo") -; (description -; "This package provides a package for generating things based on go files. This mechanism was first used -;in Kubernetes and is split out here for ease of reuse and maintainability.") -; (license license:asl2.0))) -; -;(define-public go-sigs-k8s-io-structured-merge-diff-v4-4.0.2 -; (package -; (name "go-sigs-k8s-io-structured-merge-diff-v4") -; (version "4.0.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes-sigs/structured-merge-diff") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1z60sw6nrlzyddyx5pvh6afwf8jvmn8c2zw15hklq17iyvj3lj7a")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path -; "sigs.k8s.io/structured-merge-diff/v4" -; #:unpack-path -; "sigs.k8s.io/structured-merge-diff/v4")) -; (propagated-inputs -; `(("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0) -; ("go-github-com-modern-go-reflect2-1.0.1" -; ,go-github-com-modern-go-reflect2-1.0.1) -; ("go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd" -; ,go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd) -; ("go-github-com-json-iterator-go-1.1.6" -; ,go-github-com-json-iterator-go-1.1.6) -; ("go-github-com-google-gofuzz-1.0.0" -; ,go-github-com-google-gofuzz-1.0.0) -; ("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1))) -; (home-page "https://sigs.k8s.io/structured-merge-diff/v4") -; (synopsis "Structured Merge and Diff") -; (description -; "This repo contains code which implements the Kubernetes \"apply\" operation.") -; (license license:asl2.0))) -; -;(define-public go-sigs-k8s-io-yaml-1.1.0 -; (package -; (name "go-sigs-k8s-io-yaml") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes-sigs/yaml") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1p7hvjdr5jsyk7nys1g1pmgnf3ys6n320i6hds85afppk81k01kb")))) -; (build-system go-build-system) -; (arguments '(#:import-path "sigs.k8s.io/yaml")) -; (home-page "https://sigs.k8s.io/yaml") -; (synopsis "YAML marshaling and unmarshaling support for Go") -; (description -; "kubernetes-sigs/yaml is a permanent fork of @url{https://github.com/ghodss/yaml,ghodss/yaml}.") -; (license #f))) -; -;(define-public go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd -; (package -; (name "go-k8s-io-kube-openapi") -; (version "0.0.0-20201113171705-d219536bb9fd") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes/kube-openapi") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "11d420a3rxznh3f6x5a6xp22zjwv6jfq4w1gb6srqb4vn9rhgrka")))) -; (build-system go-build-system) -; (arguments '(#:import-path "k8s.io/kube-openapi")) -; (propagated-inputs -; `(("go-sigs-k8s-io-yaml-1.1.0" ,go-sigs-k8s-io-yaml-1.1.0) -; ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.2" -; ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.2) -; ("go-k8s-io-klog-v2-2.0.0" ,go-k8s-io-klog-v2-2.0.0) -; ("go-k8s-io-gengo-0.0.0-20200413195148-3a45101e95ac" -; ,go-k8s-io-gengo-0.0.0-20200413195148-3a45101e95ac) -; ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) -; ("go-golang-org-x-net-0.0.0-20200324143707-d3edc9973b7e" -; ,go-golang-org-x-net-0.0.0-20200324143707-d3edc9973b7e) -; ("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0) -; ("go-github-com-spf13-pflag-0.0.0-20170130214245-9ff6c6923cff" -; ,go-github-com-spf13-pflag-0.0.0-20170130214245-9ff6c6923cff) -; ("go-github-com-onsi-gomega-0.0.0-20170829124025-dcabb60a477c" -; ,go-github-com-onsi-gomega-0.0.0-20170829124025-dcabb60a477c) -; ("go-github-com-onsi-ginkgo-0.0.0-20170829012221-11459a886d9c" -; ,go-github-com-onsi-ginkgo-0.0.0-20170829012221-11459a886d9c) -; ("go-github-com-munnerz-goautoneg-0.0.0-20120707110453-a547fc61f48d" -; ,go-github-com-munnerz-goautoneg-0.0.0-20120707110453-a547fc61f48d) -; ("go-github-com-mitchellh-mapstructure-1.1.2" -; ,go-github-com-mitchellh-mapstructure-1.1.2) -; ("go-github-com-json-iterator-go-1.1.6" -; ,go-github-com-json-iterator-go-1.1.6) -; ("go-github-com-googleapis-gnostic-0.4.1" -; ,go-github-com-googleapis-gnostic-0.4.1) -; ("go-github-com-google-uuid-1.1.1" ,go-github-com-google-uuid-1.1.1) -; ("go-github-com-google-gofuzz-1.0.0" -; ,go-github-com-google-gofuzz-1.0.0) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.3.3" -; ,go-github-com-golang-protobuf-1.3.3) -; ("go-github-com-go-openapi-swag-0.19.5" -; ,go-github-com-go-openapi-swag-0.19.5) -; ("go-github-com-go-openapi-spec-0.19.3" -; ,go-github-com-go-openapi-spec-0.19.3) -; ("go-github-com-go-openapi-jsonreference-0.19.3" -; ,go-github-com-go-openapi-jsonreference-0.19.3) -; ("go-github-com-go-openapi-jsonpointer-0.19.3" -; ,go-github-com-go-openapi-jsonpointer-0.19.3) -; ("go-github-com-ghodss-yaml-0.0.0-20150909031657-73d445a93680" -; ,go-github-com-ghodss-yaml-0.0.0-20150909031657-73d445a93680) -; ("go-github-com-emicklei-go-restful-0.0.0-20170410110728-ff4f55a20633" -; ,go-github-com-emicklei-go-restful-0.0.0-20170410110728-ff4f55a20633) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1) -; ("go-github-com-asaskevich-govalidator-0.0.0-20190424111038-f61b66f89f4a" -; ,go-github-com-asaskevich-govalidator-0.0.0-20190424111038-f61b66f89f4a) -; ("go-github-com-nytimes-gziphandler-0.0.0-20170623195520-56545f4a5d46" -; ,go-github-com-nytimes-gziphandler-0.0.0-20170623195520-56545f4a5d46))) -; (home-page "https://k8s.io/kube-openapi") -; (synopsis "Kube OpenAPI") -; (description -; "This repo is the home for Kubernetes OpenAPI discovery spec generation. The goal -;is to support a subset of OpenAPI features to satisfy kubernetes use-cases but -;implement that subset with little to no assumption about the structure of the -;code or routes. Thus, there should be no kubernetes specific code in this repo.") -; (license license:asl2.0))) -; -;(define-public go-sigs-k8s-io-structured-merge-diff-v4-4.0.3 -; (package -; (name "go-sigs-k8s-io-structured-merge-diff-v4") -; (version "4.0.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes-sigs/structured-merge-diff") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1jv60bkk0z437bsz5ldjyc006k20njmpl0xfl8p3g1q0bx0fkypa")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path -; "sigs.k8s.io/structured-merge-diff/v4" -; #:unpack-path -; "sigs.k8s.io/structured-merge-diff/v4")) -; (propagated-inputs -; `(("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0) -; ("go-github-com-modern-go-reflect2-1.0.1" -; ,go-github-com-modern-go-reflect2-1.0.1) -; ("go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd" -; ,go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd) -; ("go-github-com-json-iterator-go-1.1.6" -; ,go-github-com-json-iterator-go-1.1.6) -; ("go-github-com-google-gofuzz-1.0.0" -; ,go-github-com-google-gofuzz-1.0.0) -; ("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1))) -; (home-page "https://sigs.k8s.io/structured-merge-diff/v4") -; (synopsis "Structured Merge and Diff") -; (description -; "This repo contains code which implements the Kubernetes \"apply\" operation.") -; (license license:asl2.0))) -; -;(define-public go-gopkg-in-yaml-v2-2.2.8 -; (package -; (name "go-gopkg-in-yaml-v2") -; (version "2.2.8") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/yaml.v2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1inf7svydzscwv9fcjd2rm61a4xjk6jkswknybmns2n58shimapw")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" -; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) -; (home-page "https://gopkg.in/yaml.v2") -; (synopsis "YAML support for the Go language") -; (description "Package yaml implements YAML support for the Go language. -;") -; (license license:asl2.0))) -; -;(define-public go-sigs-k8s-io-yaml-1.2.0 -; (package -; (name "go-sigs-k8s-io-yaml") -; (version "1.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes-sigs/yaml") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "059a1chkd6afyvqszrx7h93k6cgik3ia92x29f5whpwi66461pzq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "sigs.k8s.io/yaml")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://sigs.k8s.io/yaml") -; (synopsis "YAML marshaling and unmarshaling support for Go") -; (description -; "kubernetes-sigs/yaml is a permanent fork of @url{https://github.com/ghodss/yaml,ghodss/yaml}.") -; (license #f))) -; -;(define-public go-k8s-io-apimachinery-0.20.6 -; (package -; (name "go-k8s-io-apimachinery") -; (version "0.20.6") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes/apimachinery") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "16952v7zjk3pdyw5r3wy28qkcfx3risid0847pwdw8gmalwxr237")))) -; (build-system go-build-system) -; (arguments '(#:import-path "k8s.io/apimachinery")) -; (propagated-inputs -; `(("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) -; ("go-sigs-k8s-io-structured-merge-diff-v4-4.0.3" -; ,go-sigs-k8s-io-structured-merge-diff-v4-4.0.3) -; ("go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd" -; ,go-k8s-io-kube-openapi-0.0.0-20201113171705-d219536bb9fd) -; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) -; ("go-gopkg-in-yaml-v2-2.2.8" ,go-gopkg-in-yaml-v2-2.2.8) -; ("go-gopkg-in-inf-v0-0.9.1" ,go-gopkg-in-inf-v0-0.9.1) -; ("go-google-golang-org-protobuf-1.25.0" -; ,go-google-golang-org-protobuf-1.25.0) -; ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) -; ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" -; ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) -; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" -; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-onsi-gomega-1.7.0" ,go-github-com-onsi-gomega-1.7.0) -; ("go-github-com-onsi-ginkgo-1.11.0" ,go-github-com-onsi-ginkgo-1.11.0) -; ("go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f" -; ,go-github-com-mxk-go-flowrate-0.0.0-20140419014527-cca7078d478f) -; ("go-github-com-modern-go-reflect2-1.0.1" -; ,go-github-com-modern-go-reflect2-1.0.1) -; ("go-github-com-json-iterator-go-1.1.10" -; ,go-github-com-json-iterator-go-1.1.10) -; ("go-github-com-hashicorp-golang-lru-0.5.1" -; ,go-github-com-hashicorp-golang-lru-0.5.1) -; ("go-github-com-googleapis-gnostic-0.4.1" -; ,go-github-com-googleapis-gnostic-0.4.1) -; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) -; ("go-github-com-google-gofuzz-1.1.0" -; ,go-github-com-google-gofuzz-1.1.0) -; ("go-github-com-google-go-cmp-0.5.2" -; ,go-github-com-google-go-cmp-0.5.2) -; ("go-github-com-golang-protobuf-1.4.3" -; ,go-github-com-golang-protobuf-1.4.3) -; ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" -; ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) -; ("go-github-com-gogo-protobuf-1.3.2" -; ,go-github-com-gogo-protobuf-1.3.2) -; ("go-github-com-fsnotify-fsnotify-1.4.9" -; ,go-github-com-fsnotify-fsnotify-1.4.9) -; ("go-github-com-evanphx-json-patch-4.9.0+incompatible" -; ,go-github-com-evanphx-json-patch-4.9.0+incompatible) -; ("go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153" -; ,go-github-com-elazarl-goproxy-0.0.0-20180725130230-947c36da3153) -; ("go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96" -; ,go-github-com-docker-spdystream-0.0.0-20160310174837-449fdfce4d96) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://k8s.io/apimachinery") -; (synopsis "apimachinery") -; (description -; "Scheme, typing, encoding, decoding, and conversion packages for Kubernetes and Kubernetes-like API objects.") -; (license license:asl2.0))) -; -;(define-public go-k8s-io-client-go-0.20.6 -; (package -; (name "go-k8s-io-client-go") -; (version "0.20.6") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes/client-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1fpz56pfadbfp8mlzmzicfmlgk5zqbk2rdwnr8c8h6ypjd5xjcvz")))) -; (build-system go-build-system) -; (arguments '(#:import-path "k8s.io/client-go")) -; (propagated-inputs -; `(("go-k8s-io-apimachinery-0.20.6" ,go-k8s-io-apimachinery-0.20.6) -; ("go-k8s-io-api-0.20.6" ,go-k8s-io-api-0.20.6) -; ("go-sigs-k8s-io-yaml-1.2.0" ,go-sigs-k8s-io-yaml-1.2.0) -; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" -; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) -; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) -; ("go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e" -; ,go-golang-org-x-time-0.0.0-20200630173020-3af7569d3a1e) -; ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" -; ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) -; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" -; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) -; ("go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0" -; ,go-golang-org-x-crypto-0.0.0-20201002170205-7f63de1d35b0) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) -; ("go-github-com-peterbourgon-diskv-2.0.1+incompatible" -; ,go-github-com-peterbourgon-diskv-2.0.1+incompatible) -; ("go-github-com-imdario-mergo-0.3.5" -; ,go-github-com-imdario-mergo-0.3.5) -; ("go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7" -; ,go-github-com-gregjones-httpcache-0.0.0-20180305231024-9cad4c3443a7) -; ("go-github-com-googleapis-gnostic-0.4.1" -; ,go-github-com-googleapis-gnostic-0.4.1) -; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) -; ("go-github-com-google-gofuzz-1.1.0" -; ,go-github-com-google-gofuzz-1.1.0) -; ("go-github-com-google-go-cmp-0.5.2" -; ,go-github-com-google-go-cmp-0.5.2) -; ("go-github-com-golang-protobuf-1.4.3" -; ,go-github-com-golang-protobuf-1.4.3) -; ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" -; ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) -; ("go-github-com-gogo-protobuf-1.3.2" -; ,go-github-com-gogo-protobuf-1.3.2) -; ("go-github-com-evanphx-json-patch-4.9.0+incompatible" -; ,go-github-com-evanphx-json-patch-4.9.0+incompatible) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1) -; ("go-github-com-azure-go-autorest-autorest-adal-0.9.5" -; ,go-github-com-azure-go-autorest-autorest-adal-0.9.5) -; ("go-github-com-azure-go-autorest-autorest-0.11.1" -; ,go-github-com-azure-go-autorest-autorest-0.11.1) -; ("go-cloud-google-com-go-0.54.0" ,go-cloud-google-com-go-0.54.0))) -; (home-page "https://k8s.io/client-go") -; (synopsis "client-go") -; (description -; "Go clients for talking to a @url{http://kubernetes.io/,kubernetes} cluster.") -; (license license:asl2.0))) -; -;(define-public go-k8s-io-component-base-0.20.6 -; (package -; (name "go-k8s-io-component-base") -; (version "0.20.6") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes/component-base") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1987vm5lhbnn4ynrpzdgz3873lp78664cpdpkbv9jwnhzqdhpyhf")))) -; (build-system go-build-system) -; (arguments '(#:import-path "k8s.io/component-base")) -; (propagated-inputs -; `(("go-k8s-io-client-go-0.20.6" ,go-k8s-io-client-go-0.20.6) -; ("go-k8s-io-apimachinery-0.20.6" ,go-k8s-io-apimachinery-0.20.6) -; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" -; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) -; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) -; ("go-go-uber-org-zap-1.10.0" ,go-go-uber-org-zap-1.10.0) -; ("go-go-uber-org-multierr-1.1.0" ,go-go-uber-org-multierr-1.1.0) -; ("go-go-uber-org-atomic-1.4.0" ,go-go-uber-org-atomic-1.4.0) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) -; ("go-github-com-sirupsen-logrus-1.6.0" -; ,go-github-com-sirupsen-logrus-1.6.0) -; ("go-github-com-prometheus-procfs-0.2.0" -; ,go-github-com-prometheus-procfs-0.2.0) -; ("go-github-com-prometheus-common-0.10.0" -; ,go-github-com-prometheus-common-0.10.0) -; ("go-github-com-prometheus-client-model-0.2.0" -; ,go-github-com-prometheus-client-model-0.2.0) -; ("go-github-com-prometheus-client-golang-1.7.1" -; ,go-github-com-prometheus-client-golang-1.7.1) -; ("go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd" -; ,go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd) -; ("go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369" -; ,go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369) -; ("go-github-com-google-go-cmp-0.5.2" -; ,go-github-com-google-go-cmp-0.5.2) -; ("go-github-com-go-logr-logr-0.2.0" ,go-github-com-go-logr-logr-0.2.0) -; ("go-github-com-blang-semver-3.5.1+incompatible" -; ,go-github-com-blang-semver-3.5.1+incompatible))) -; (home-page "https://k8s.io/component-base") -; (synopsis "component-base") -; (description -; "Implement KEP 32: @url{https://github.com/kubernetes/enhancements/blob/master/keps/sig-cluster-lifecycle/wgs/783-component-base/README.md,https://github.com/kubernetes/enhancements/blob/master/keps/sig-cluster-lifecycle/wgs/783-component-base/README.md}") -; (license license:asl2.0))) -; -;(define-public go-github-com-kr-pretty-0.2.0 -; (package -; (name "go-github-com-kr-pretty") -; (version "0.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kr/pretty") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ywbfzz1h3a3qd8rpkiqwi1dm4w8ls9ijb4x1b7567grns9f0vnp")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kr/pretty")) -; (propagated-inputs -; `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) -; (home-page "https://github.com/kr/pretty") -; (synopsis #f) -; (description -; "Package pretty provides pretty-printing for Go values. This is -;useful during debugging, to avoid wrapping long output lines in -;the terminal. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20201112073958-5cba982894dd") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "08dvnwmi2p4slmhyx7gzkmzfp51mmnkzi0ngwhvv0vip1s3s3zjc")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20201110150050-8816d57aaa9a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0cbfam4w9jr5gib43v3s2r5j8mhd3hl6ks3azwsahaff6idggg20")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.24.0" -; ,go-google-golang-org-protobuf-1.24.0) -; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) -; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" -; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-github-com-golang-protobuf-1.4.1" -; ,go-github-com-golang-protobuf-1.4.1))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-k8s-io-cri-api-0.20.6 -; (package -; (name "go-k8s-io-cri-api") -; (version "0.20.6") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes/cri-api") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0yp4rfxjn4h78z4sbmwhcqm8mva9bsvsc5jky2qa76npp0hycjhx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "k8s.io/cri-api")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" -; ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) -; ("go-google-golang-org-protobuf-1.25.0" -; ,go-google-golang-org-protobuf-1.25.0) -; ("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) -; ("go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a" -; ,go-google-golang-org-genproto-0.0.0-20201110150050-8816d57aaa9a) -; ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) -; ("go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd" -; ,go-golang-org-x-sys-0.0.0-20201112073958-5cba982894dd) -; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" -; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-kr-pretty-0.2.0" ,go-github-com-kr-pretty-0.2.0) -; ("go-github-com-google-go-cmp-0.5.2" -; ,go-github-com-google-go-cmp-0.5.2) -; ("go-github-com-golang-protobuf-1.4.3" -; ,go-github-com-golang-protobuf-1.4.3) -; ("go-github-com-gogo-protobuf-1.3.2" -; ,go-github-com-gogo-protobuf-1.3.2) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://k8s.io/cri-api") -; (synopsis "Purpose") -; (description -; "This repository contains the definitions for the Container Runtime Interface (CRI). -;CRI is a plugin interface which enables kubelet to use a wide variety of container runtimes, -;without the need to recompile. CRI consists of a protocol buffers and gRPC API.") -; (license license:asl2.0))) -; -;(define-public go-github-com-go-logr-logr-0.2.0 -; (package -; (name "go-github-com-go-logr-logr") -; (version "0.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/go-logr/logr") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "06xh4pw53z38vyi300mgpnr4pkqgknw9xakdyk1xzqfg9zd60d7d")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/go-logr/logr")) -; (home-page "https://github.com/go-logr/logr") -; (synopsis "A minimal logging API for Go") -; (description -; "Package logr defines a general-purpose logging API and abstract interfaces -;to back that API. Packages in the Go ecosystem can depend on this package, -;while callers can implement logging with whatever backend is appropriate. -;") -; (license license:asl2.0))) -; -;(define-public go-k8s-io-klog-v2-2.4.0 -; (package -; (name "go-k8s-io-klog-v2") -; (version "2.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes/klog") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1zjih6bgdalga5hqaa2fwwidslq6lv358gkj88a8wwj7w253wc8c")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "k8s.io/klog/v2" #:unpack-path "k8s.io/klog/v2")) -; (propagated-inputs -; `(("go-github-com-go-logr-logr-0.2.0" -; ,go-github-com-go-logr-logr-0.2.0))) -; (home-page "https://k8s.io/klog/v2") -; (synopsis "klog") -; (description -; "Package klog implements logging analogous to the Google-internal C++ INFO/ERROR/V setup. -;It provides functions Info, Warning, Error, Fatal, plus formatting variants such as -;Infof. It also provides V-style logging controlled by the -v and -vmodule=file=2 flags. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-spf13-afero-1.2.2 -; (package -; (name "go-github-com-spf13-afero") -; (version "1.2.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/spf13/afero") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0j9r65qgd58324m85lkl49vk9dgwd62g7dwvkfcm3k6i9dc555a9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/spf13/afero")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0))) -; (home-page "https://github.com/spf13/afero") -; (synopsis "Overview") -; (description -; "This package provides a FileSystem Abstraction System for Go") -; (license license:asl2.0))) -; -;(define-public go-github-com-go-logr-logr-0.1.0 -; (package -; (name "go-github-com-go-logr-logr") -; (version "0.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/go-logr/logr") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0fhijjhxz4n2j5i24ckzv8r9kri3v44jdyklgbqjfq0xm7izqg14")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/go-logr/logr")) -; (home-page "https://github.com/go-logr/logr") -; (synopsis "A minimal logging API for Go") -; (description -; "Package logr defines a general-purpose logging API and abstract interfaces -;to back that API. Packages in the Go ecosystem can depend on this package, -;while callers can implement logging with whatever backend is appropriate. -;") -; (license license:asl2.0))) -; -;(define-public go-k8s-io-klog-v2-2.0.0 -; (package -; (name "go-k8s-io-klog-v2") -; (version "2.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes/klog") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "09vqm0n5l64lzpk3xqm4njbncnphx52qk21gwx8nsgyivlxx1n8g")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "k8s.io/klog/v2" #:unpack-path "k8s.io/klog/v2")) -; (propagated-inputs -; `(("go-github-com-go-logr-logr-0.1.0" -; ,go-github-com-go-logr-logr-0.1.0))) -; (home-page "https://k8s.io/klog/v2") -; (synopsis "klog") -; (description -; "Package klog implements logging analogous to the Google-internal C++ INFO/ERROR/V setup. -;It provides functions Info, Warning, Error, Fatal, plus formatting variants such as -;Infof. It also provides V-style logging controlled by the -v and -vmodule=file=2 flags. -;") -; (license license:asl2.0))) -; -;(define-public go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920 -; (package -; (name "go-k8s-io-utils") -; (version "0.0.0-20201110183641-67b214c5f920") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kubernetes/utils") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "19rc9v5xin0a8qbf25my3rd0jd74cin2mk2a38j2dwplqy3s9crl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "k8s.io/utils")) -; (propagated-inputs -; `(("go-k8s-io-klog-v2-2.0.0" ,go-k8s-io-klog-v2-2.0.0) -; ("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0) -; ("go-github-com-spf13-afero-1.2.2" ,go-github-com-spf13-afero-1.2.2) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://k8s.io/utils") -; (synopsis "Utils") -; (description -; "This package provides a set of Go libraries that provide low-level, kubernetes-independent packages -;supplementing the @url{https://golang.org/pkg/#stdlib,Go standard libs}.") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-tools-0.0.0-20181030221726-6c7e314b6563 -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20181030221726-6c7e314b6563") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1m1n6r8v6mrlh0yvlz3qxz4s7jc7nis0zf3dfl1i6hqh5xblkwnw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-github-com-kisielk-errcheck-1.2.0 -; (package -; (name "go-github-com-kisielk-errcheck") -; (version "1.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kisielk/errcheck") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0am6g10ipdxw84byscm7shda654882wjcbinq5c4696m6mhi2qrd")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kisielk/errcheck")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20181030221726-6c7e314b6563" -; ,go-golang-org-x-tools-0.0.0-20181030221726-6c7e314b6563))) -; (home-page "https://github.com/kisielk/errcheck") -; (synopsis "errcheck") -; (description -; "errcheck is a program for checking for unchecked errors in go programs.") -; (license license:expat))) -; -;(define-public go-github-com-gogo-protobuf-1.3.1 -; (package -; (name "go-github-com-gogo-protobuf") -; (version "1.3.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/gogo/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0x77x64sxjgfhmbijqfzmj8h4ar25l2w97h01q3cqs1wk7zfnkhp")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/gogo/protobuf")) -; (propagated-inputs -; `(("go-github-com-kisielk-gotool-1.0.0" -; ,go-github-com-kisielk-gotool-1.0.0) -; ("go-github-com-kisielk-errcheck-1.2.0" -; ,go-github-com-kisielk-errcheck-1.2.0))) -; (home-page "https://github.com/gogo/protobuf") -; (synopsis "Protocol Buffers for Go with Gadgets") -; (description -; "gogoprotobuf is a fork of @url{https://github.com/golang/protobuf,golang/protobuf} with extra code generation features.") -; (license license:bsd-3))) -; -;(define-public go-github-com-gogo-googleapis-1.3.2 -; (package -; (name "go-github-com-gogo-googleapis") -; (version "1.3.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/gogo/googleapis") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "10670qprmk151n6pa1yclr89kgrvmalzvkq221xqbid83iv59s2h")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/gogo/googleapis")) -; (propagated-inputs -; `(("go-github-com-gogo-protobuf-1.3.1" -; ,go-github-com-gogo-protobuf-1.3.1))) -; (home-page "https://github.com/gogo/googleapis") -; (synopsis "Google APIs generated by gogoprotobuf") -; (description -; "The @url{https://github.com/gogo/grpc-example,grpc-example} includes an example usage of this repository.") -; (license license:asl2.0))) -; -;(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d -; (package -; (name "go-github-com-cpuguy83-go-md2man-v2") -; (version "2.0.0-20190314233015-f79a8a8ca69d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/cpuguy83/go-md2man") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) -; (propagated-inputs -; `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" -; ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) -; ("go-github-com-russross-blackfriday-v2-2.0.1" -; ,go-github-com-russross-blackfriday-v2-2.0.1) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0))) -; (home-page "https://github.com/cpuguy83/go-md2man") -; (synopsis "go-md2man") -; (description "Converts markdown into roff (man pages).") -; (license license:expat))) -; -;(define-public go-github-com-urfave-cli-1.22.1 -; (package -; (name "go-github-com-urfave-cli") -; (version "1.22.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/urfave/cli") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "04ymak18flqlfcn8lycmg8r3931al8dvr8f1cg9n4yjaskmg72v8")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/urfave/cli")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) -; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d" -; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d) -; ("go-github-com-burntsushi-toml-0.3.1" -; ,go-github-com-burntsushi-toml-0.3.1))) -; (home-page "https://github.com/urfave/cli") -; (synopsis "cli") -; (description -; "Package cli provides a minimal framework for creating and organizing command line -;Go applications. cli is designed to be easy to understand and write, the most simple -;cli application can be written as follows: -;") -; (license license:expat))) -; -;(define-public go-google-golang-org-grpc-1.27.1 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.27.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "09phrrsafgq6hnbw8cawvx44bdpk1p584fys17x1bwn0j0451zzs")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" -; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-github-com-google-go-cmp-0.2.0" -; ,go-github-com-google-go-cmp-0.2.0) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2) -; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" -; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) -; ("go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473" -; ,go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-containerd-containerd-1.5.8 -; (package -; (name "go-github-com-containerd-containerd") -; (version "1.5.8") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/containerd") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "18lzmpbhbk1kq1nwdp6zcxb577kp425l2ikcmb45jcwgqdwzla6l")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/containerd")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.27.1" ,go-google-golang-org-grpc-1.27.1) -; ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) -; ("go-github-com-golang-protobuf-1.3.5" -; ,go-github-com-golang-protobuf-1.3.5) -; ("go-github-com-gogo-googleapis-1.3.2" -; ,go-github-com-gogo-googleapis-1.3.2) -; ("go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920" -; ,go-k8s-io-utils-0.0.0-20201110183641-67b214c5f920) -; ("go-k8s-io-klog-v2-2.4.0" ,go-k8s-io-klog-v2-2.4.0) -; ("go-k8s-io-cri-api-0.20.6" ,go-k8s-io-cri-api-0.20.6) -; ("go-k8s-io-component-base-0.20.6" ,go-k8s-io-component-base-0.20.6) -; ("go-k8s-io-client-go-0.20.6" ,go-k8s-io-client-go-0.20.6) -; ("go-k8s-io-apiserver-0.20.6" ,go-k8s-io-apiserver-0.20.6) -; ("go-k8s-io-apimachinery-0.20.6" ,go-k8s-io-apimachinery-0.20.6) -; ("go-k8s-io-api-0.20.6" ,go-k8s-io-api-0.20.6) -; ("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) -; ("go-golang-org-x-sys-0.0.0-20210426230700-d19ff857e887" -; ,go-golang-org-x-sys-0.0.0-20210426230700-d19ff857e887) -; ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" -; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) -; ("go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110" -; ,go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110) -; ("go-go-etcd-io-bbolt-1.3.5" ,go-go-etcd-io-bbolt-1.3.5) -; ("go-github-com-tchap-go-patricia-2.2.6+incompatible" -; ,go-github-com-tchap-go-patricia-2.2.6+incompatible) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-sirupsen-logrus-1.8.1" -; ,go-github-com-sirupsen-logrus-1.8.1) -; ("go-github-com-satori-go-uuid-1.2.0" -; ,go-github-com-satori-go-uuid-1.2.0) -; ("go-github-com-prometheus-client-golang-1.7.1" -; ,go-github-com-prometheus-client-golang-1.7.1) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-pelletier-go-toml-1.8.1" -; ,go-github-com-pelletier-go-toml-1.8.1) -; ("go-github-com-opencontainers-selinux-1.8.2" -; ,go-github-com-opencontainers-selinux-1.8.2) -; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417" -; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417) -; ("go-github-com-opencontainers-runc-1.0.2" -; ,go-github-com-opencontainers-runc-1.0.2) -; ("go-github-com-opencontainers-image-spec-1.0.1" -; ,go-github-com-opencontainers-image-spec-1.0.1) -; ("go-github-com-opencontainers-go-digest-1.0.0" -; ,go-github-com-opencontainers-go-digest-1.0.0) -; ("go-github-com-moby-sys-symlink-0.1.0" -; ,go-github-com-moby-sys-symlink-0.1.0) -; ("go-github-com-moby-sys-mountinfo-0.4.1" -; ,go-github-com-moby-sys-mountinfo-0.4.1) -; ("go-github-com-moby-locker-1.0.1" ,go-github-com-moby-locker-1.0.1) -; ("go-github-com-klauspost-compress-1.11.13" -; ,go-github-com-klauspost-compress-1.11.13) -; ("go-github-com-imdario-mergo-0.3.12" -; ,go-github-com-imdario-mergo-0.3.12) -; ("go-github-com-hashicorp-go-multierror-1.0.0" -; ,go-github-com-hashicorp-go-multierror-1.0.0) -; ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" -; ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) -; ("go-github-com-google-uuid-1.2.0" ,go-github-com-google-uuid-1.2.0) -; ("go-github-com-google-go-cmp-0.5.5" -; ,go-github-com-google-go-cmp-0.5.5) -; ("go-github-com-gogo-protobuf-1.3.2" -; ,go-github-com-gogo-protobuf-1.3.2) -; ("go-github-com-fsnotify-fsnotify-1.4.9" -; ,go-github-com-fsnotify-fsnotify-1.4.9) -; ("go-github-com-emicklei-go-restful-2.9.5+incompatible" -; ,go-github-com-emicklei-go-restful-2.9.5+incompatible) -; ("go-github-com-docker-go-units-0.4.0" -; ,go-github-com-docker-go-units-0.4.0) -; ("go-github-com-docker-go-metrics-0.0.1" -; ,go-github-com-docker-go-metrics-0.0.1) -; ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" -; ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1) -; ("go-github-com-coreos-go-systemd-v22-22.3.2" -; ,go-github-com-coreos-go-systemd-v22-22.3.2) -; ("go-github-com-containernetworking-plugins-0.9.1" -; ,go-github-com-containernetworking-plugins-0.9.1) -; ("go-github-com-containerd-zfs-1.0.0" -; ,go-github-com-containerd-zfs-1.0.0) -; ("go-github-com-containerd-typeurl-1.0.2" -; ,go-github-com-containerd-typeurl-1.0.2) -; ("go-github-com-containerd-ttrpc-1.1.0" -; ,go-github-com-containerd-ttrpc-1.1.0) -; ("go-github-com-containerd-nri-0.1.0" -; ,go-github-com-containerd-nri-0.1.0) -; ("go-github-com-containerd-imgcrypt-1.1.1" -; ,go-github-com-containerd-imgcrypt-1.1.1) -; ("go-github-com-containerd-go-runc-1.0.0" -; ,go-github-com-containerd-go-runc-1.0.0) -; ("go-github-com-containerd-go-cni-1.0.2" -; ,go-github-com-containerd-go-cni-1.0.2) -; ("go-github-com-containerd-fifo-1.0.0" -; ,go-github-com-containerd-fifo-1.0.0) -; ("go-github-com-containerd-continuity-0.1.0" -; ,go-github-com-containerd-continuity-0.1.0) -; ("go-github-com-containerd-console-1.0.2" -; ,go-github-com-containerd-console-1.0.2) -; ("go-github-com-containerd-cgroups-1.0.1" -; ,go-github-com-containerd-cgroups-1.0.1) -; ("go-github-com-containerd-btrfs-1.0.0" -; ,go-github-com-containerd-btrfs-1.0.0) -; ("go-github-com-containerd-aufs-1.0.0" -; ,go-github-com-containerd-aufs-1.0.0) -; ("go-github-com-microsoft-hcsshim-0.8.23" -; ,go-github-com-microsoft-hcsshim-0.8.23) -; ("go-github-com-microsoft-go-winio-0.4.17" -; ,go-github-com-microsoft-go-winio-0.4.17))) -; (home-page "https://github.com/containerd/containerd") -; (synopsis "Now Recruiting") -; (description -; "containerd is an industry-standard container runtime with an emphasis on simplicity, robustness and portability. It is available as a daemon for Linux and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") -; (license license:asl2.0))) -; -;(define-public go-github-com-azure-azure-sdk-for-go-56.3.0+incompatible -; (package -; (name "go-github-com-azure-azure-sdk-for-go") -; (version "56.3.0+incompatible") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/Azure/azure-sdk-for-go") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1c2z9wnjkm9v6294pdfh26ksxyiy9slfidc297xk0jbclnddf6k5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/Azure/azure-sdk-for-go")) -; (home-page "https://github.com/Azure/azure-sdk-for-go") -; (synopsis "Azure SDK for Go") -; (description -; "Package sdk provides Go packages for managing and using Azure services. -;") -; (license license:expat))) -; -;(define-public go-github-com-go-sql-driver-mysql-1.5.0 -; (package -; (name "go-github-com-go-sql-driver-mysql") -; (version "1.5.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/go-sql-driver/mysql") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "11x0m9yf3kdnf6981182r824psgxwfaqhn3x3in4yiidp0w0hk3v")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/go-sql-driver/mysql")) -; (home-page "https://github.com/go-sql-driver/mysql") -; (synopsis "Go-MySQL-Driver") -; (description -; "Package mysql provides a MySQL driver for Go's database/sql package. -;") -; (license license:mpl2.0))) -; -;(define-public go-github-com-jmespath-go-jmespath-0.3.0 -; (package -; (name "go-github-com-jmespath-go-jmespath") -; (version "0.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/jmespath/go-jmespath") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "12qgp7yb7yfjxhd311kb820fcjmg7gd4hp2fc4v6x8s7121pwnjp")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/jmespath/go-jmespath")) -; (propagated-inputs -; `(("go-github-com-stretchr-testify-1.5.1" -; ,go-github-com-stretchr-testify-1.5.1))) -; (home-page "https://github.com/jmespath/go-jmespath") -; (synopsis "go-jmespath - A JMESPath implementation in Go") -; (description -; "go-jmespath is a GO implementation of JMESPath, -;which is a query language for JSON. It will take a JSON -;document and transform it into another JSON document -;through a JMESPath expression.") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-net-0.0.0-20200202094626-16171245cfb2 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20200202094626-16171245cfb2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0pb4ap1h28cc4kr59lz94895wvsd2pf1vmd2by6b11ww8mkicn4s")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-github-com-aws-aws-sdk-go-1.34.9 -; (package -; (name "go-github-com-aws-aws-sdk-go") -; (version "1.34.9") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/aws/aws-sdk-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0sjh7m6bf4wvyfzx6wx46n4bg5d9vrwwjy0h5ykqwfh8cq3f77ib")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/aws/aws-sdk-go")) -; (propagated-inputs -; `(("go-golang-org-x-net-0.0.0-20200202094626-16171245cfb2" -; ,go-golang-org-x-net-0.0.0-20200202094626-16171245cfb2) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-jmespath-go-jmespath-0.3.0" -; ,go-github-com-jmespath-go-jmespath-0.3.0) -; ("go-github-com-go-sql-driver-mysql-1.5.0" -; ,go-github-com-go-sql-driver-mysql-1.5.0))) -; (home-page "https://github.com/aws/aws-sdk-go") -; (synopsis "AWS SDK for Go") -; (description -; "Package sdk is the official AWS SDK for the Go programming language. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-bitly-go-simplejson-0.5.0 -; (package -; (name "go-github-com-bitly-go-simplejson") -; (version "0.5.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/bitly/go-simplejson") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0n9f9dz1jn1jx86d48569nznpjn9fmq3knn7r65xpy7jhih284jj")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/bitly/go-simplejson")) -; (home-page "https://github.com/bitly/go-simplejson") -; (synopsis "go-simplejson") -; (description "a Go package to interact with arbitrary JSON") -; (license license:expat))) -; -;(define-public go-github-com-denverdino-aliyungo-0.0.0-20190125010748-a747050bb1ba -; (package -; (name "go-github-com-denverdino-aliyungo") -; (version "0.0.0-20190125010748-a747050bb1ba") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/denverdino/aliyungo") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0rc16ciz8gjpn36fhp0qz1ns0inlvjaz07z1qffl9ni4b49hhwkn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/denverdino/aliyungo")) -; (home-page "https://github.com/denverdino/aliyungo") -; (synopsis "AliyunGo: Go SDK for Aliyun Services") -; (description -; "This is an unofficial Go SDK for Aliyun services. You are welcome for contribution.") -; (license license:asl2.0))) -; -;(define-public go-github-com-dnaeon-go-vcr-1.0.1 -; (package -; (name "go-github-com-dnaeon-go-vcr") -; (version "1.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/dnaeon/go-vcr") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1d0kpqr12qrqlamz5a47bp05mx49za2v6l1k7c6z71xahfmb7v2d")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/dnaeon/go-vcr")) -; (home-page "https://github.com/dnaeon/go-vcr") -; (synopsis "go-vcr") -; (description -; "@code{go-vcr} simplifies testing by recording your HTTP interactions and -;replaying them in future runs in order to provide fast, deterministic -;and accurate testing of your code.") -; (license license:bsd-2))) -; -;(define-public go-github-com-gofrs-uuid-4.0.0+incompatible -; (package -; (name "go-github-com-gofrs-uuid") -; (version "4.0.0+incompatible") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/gofrs/uuid") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "08ma37vvrni836fxlswjd3bl2sdqyw3nxv6zdi1nyncnl9l0421k")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/gofrs/uuid")) -; (home-page "https://github.com/gofrs/uuid") -; (synopsis "UUID") -; (description -; "Package uuid provides implementations of the Universally Unique Identifier -;(UUID), as specified in RFC-4122 and the Peabody RFC Draft (revision 02). -;") -; (license license:expat))) -; -;(define-public go-github-com-mitchellh-osext-0.0.0-20151018003038-5e2d6d41470f -; (package -; (name "go-github-com-mitchellh-osext") -; (version "0.0.0-20151018003038-5e2d6d41470f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mitchellh/osext") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0j635c1cx7crs5wlirlk713l36x70pnlmqrzd3x3bjgnjg194jrk")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mitchellh/osext")) -; (home-page "https://github.com/mitchellh/osext") -; (synopsis "osext") -; (description "Extensions to the standard \"os\" package. -;") -; (license license:zlib))) -; -;(define-public go-github-com-ncw-swift-1.0.47 -; (package -; (name "go-github-com-ncw-swift") -; (version "1.0.47") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/ncw/swift") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0wxz4lvy6pjabghq8inby2fyh58ysclayccziawc8fd7a67kh4cd")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/ncw/swift")) -; (home-page "https://github.com/ncw/swift") -; (synopsis "Swift") -; (description -; "Package swift provides an easy to use interface to Swift / Openstack Object Storage / Rackspace Cloud Files -;") -; (license license:expat))) -; -;(define-public go-github-com-spf13-cobra-0.0.3 -; (package -; (name "go-github-com-spf13-cobra") -; (version "0.0.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/spf13/cobra") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1q1nsx05svyv9fv3fy6xv6gs9ffimkyzsfm49flvl3wnvf1ncrkd")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/spf13/cobra")) -; (home-page "https://github.com/spf13/cobra") -; (synopsis "Table of Contents") -; (description -; "Package cobra is a commander providing a simple interface to create powerful modern CLI interfaces. -;In addition to providing an interface, Cobra simultaneously provides a controller to organize your application code. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20210817164053-32db794688a5 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20210817164053-32db794688a5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0arh5rhahrjzmlifmbgswwc0kjkgmhps6g4hzia0i6ismsk74n48")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) -; ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" -; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) -; ("go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1" -; ,go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1) -; ("go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110" -; ,go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110))) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-api-0.0.0-20160322025152-9bf6e6e569ff -; (package -; (name "go-google-golang-org-api") -; (version "0.0.0-20160322025152-9bf6e6e569ff") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-api-go-client") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "02zn0zr4jrkdnxhxa0h3vm30j27bsc4lcswrffilkrafbspjsrxz")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/api")) -; (home-page "https://google.golang.org/api") -; (synopsis "Google APIs Client Library for Go") -; (description -; "Package api is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of -;sub-packages. -;") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-cloud-0.0.0-20151119220103-975617b05ea8 -; (package -; (name "go-google-golang-org-cloud") -; (version "0.0.0-20151119220103-975617b05ea8") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-cloud-go") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "156jhn1kakr98jfk830y4yr8lhisdj6qs38ypa42ddmgza9qcmdd")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/cloud")) -; (home-page "https://google.golang.org/cloud") -; (synopsis "Google Cloud Client Libraries for Go") -; (description -; "Package cloud is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -;of sub-packages. -;") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-grpc-0.0.0-20160317175043-d3ddb4469d5a -; (package -; (name "go-google-golang-org-grpc") -; (version "0.0.0-20160317175043-d3ddb4469d5a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0p45by0s66ragvx9hs8gkz1k1gy8456y794b5zspa0b86y2b53w9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-gopkg-in-check-v1-1.0.0-20141024133853-64131543e789 -; (package -; (name "go-gopkg-in-check-v1") -; (version "1.0.0-20141024133853-64131543e789") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/check.v1") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "01sz40asq0zwf6j7q2hww33wr1cflglngq8xazw466c9d1f9kyyh")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) -; (home-page "https://gopkg.in/check.v1") -; (synopsis "Instructions") -; (description -; "Package check is a rich testing extension for Go's testing package. -;") -; (license license:bsd-2))) -; -;(define-public go-github-com-distribution-distribution-v3-3.0.0-20211118083504-a29a3c99a684 -; (package -; (name "go-github-com-distribution-distribution-v3") -; (version "3.0.0-20211118083504-a29a3c99a684") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/distribution/distribution") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1v0larzrvgm4hyq5hj4s7sx0rdximk715n95z294mqr7kpsbjfrh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/distribution/distribution/v3")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) -; ("go-gopkg-in-check-v1-1.0.0-20141024133853-64131543e789" -; ,go-gopkg-in-check-v1-1.0.0-20141024133853-64131543e789) -; ("go-google-golang-org-grpc-0.0.0-20160317175043-d3ddb4469d5a" -; ,go-google-golang-org-grpc-0.0.0-20160317175043-d3ddb4469d5a) -; ("go-google-golang-org-cloud-0.0.0-20151119220103-975617b05ea8" -; ,go-google-golang-org-cloud-0.0.0-20151119220103-975617b05ea8) -; ("go-google-golang-org-api-0.0.0-20160322025152-9bf6e6e569ff" -; ,go-google-golang-org-api-0.0.0-20160322025152-9bf6e6e569ff) -; ("go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45" -; ,go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45) -; ("go-golang-org-x-crypto-0.0.0-20210817164053-32db794688a5" -; ,go-golang-org-x-crypto-0.0.0-20210817164053-32db794688a5) -; ("go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20140908184405-b21fdbd4370f" -; ,go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20140908184405-b21fdbd4370f) -; ("go-github-com-yvasiyarov-gorelic-0.0.0-20141212073537-a9bba5b9ab50" -; ,go-github-com-yvasiyarov-gorelic-0.0.0-20141212073537-a9bba5b9ab50) -; ("go-github-com-yvasiyarov-go-metrics-0.0.0-20140926110328-57bccd1ccd43" -; ,go-github-com-yvasiyarov-go-metrics-0.0.0-20140926110328-57bccd1ccd43) -; ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) -; ("go-github-com-spf13-cobra-0.0.3" ,go-github-com-spf13-cobra-0.0.3) -; ("go-github-com-sirupsen-logrus-1.8.1" -; ,go-github-com-sirupsen-logrus-1.8.1) -; ("go-github-com-opencontainers-image-spec-1.0.2" -; ,go-github-com-opencontainers-image-spec-1.0.2) -; ("go-github-com-opencontainers-go-digest-1.0.0" -; ,go-github-com-opencontainers-go-digest-1.0.0) -; ("go-github-com-ncw-swift-1.0.47" ,go-github-com-ncw-swift-1.0.47) -; ("go-github-com-mitchellh-osext-0.0.0-20151018003038-5e2d6d41470f" -; ,go-github-com-mitchellh-osext-0.0.0-20151018003038-5e2d6d41470f) -; ("go-github-com-mitchellh-mapstructure-1.1.2" -; ,go-github-com-mitchellh-mapstructure-1.1.2) -; ("go-github-com-inconshreveable-mousetrap-1.0.0" -; ,go-github-com-inconshreveable-mousetrap-1.0.0) -; ("go-github-com-gorilla-mux-1.8.0" ,go-github-com-gorilla-mux-1.8.0) -; ("go-github-com-gorilla-handlers-1.5.1" -; ,go-github-com-gorilla-handlers-1.5.1) -; ("go-github-com-gomodule-redigo-1.8.2" -; ,go-github-com-gomodule-redigo-1.8.2) -; ("go-github-com-gofrs-uuid-4.0.0+incompatible" -; ,go-github-com-gofrs-uuid-4.0.0+incompatible) -; ("go-github-com-docker-libtrust-0.0.0-20150114040149-fa567046d9b1" -; ,go-github-com-docker-libtrust-0.0.0-20150114040149-fa567046d9b1) -; ("go-github-com-docker-go-metrics-0.0.1" -; ,go-github-com-docker-go-metrics-0.0.1) -; ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" -; ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) -; ("go-github-com-dnaeon-go-vcr-1.0.1" -; ,go-github-com-dnaeon-go-vcr-1.0.1) -; ("go-github-com-denverdino-aliyungo-0.0.0-20190125010748-a747050bb1ba" -; ,go-github-com-denverdino-aliyungo-0.0.0-20190125010748-a747050bb1ba) -; ("go-github-com-bugsnag-panicwrap-0.0.0-20151223152923-e2c28503fcd0" -; ,go-github-com-bugsnag-panicwrap-0.0.0-20151223152923-e2c28503fcd0) -; ("go-github-com-bugsnag-osext-0.0.0-20130617224835-0dd3f918b21b" -; ,go-github-com-bugsnag-osext-0.0.0-20130617224835-0dd3f918b21b) -; ("go-github-com-bugsnag-bugsnag-go-0.0.0-20141110184014-b1d153021fcd" -; ,go-github-com-bugsnag-bugsnag-go-0.0.0-20141110184014-b1d153021fcd) -; ("go-github-com-bshuster-repo-logrus-logstash-hook-1.0.0" -; ,go-github-com-bshuster-repo-logrus-logstash-hook-1.0.0) -; ("go-github-com-bitly-go-simplejson-0.5.0" -; ,go-github-com-bitly-go-simplejson-0.5.0) -; ("go-github-com-aws-aws-sdk-go-1.34.9" -; ,go-github-com-aws-aws-sdk-go-1.34.9) -; ("go-github-com-shopify-logrus-bugsnag-0.0.0-20171204204709-577dee27f20d" -; ,go-github-com-shopify-logrus-bugsnag-0.0.0-20171204204709-577dee27f20d) -; ("go-github-com-azure-go-autorest-autorest-to-0.4.0" -; ,go-github-com-azure-go-autorest-autorest-to-0.4.0) -; ("go-github-com-azure-go-autorest-autorest-adal-0.9.15" -; ,go-github-com-azure-go-autorest-autorest-adal-0.9.15) -; ("go-github-com-azure-go-autorest-autorest-0.11.20" -; ,go-github-com-azure-go-autorest-autorest-0.11.20) -; ("go-github-com-azure-azure-sdk-for-go-56.3.0+incompatible" -; ,go-github-com-azure-azure-sdk-for-go-56.3.0+incompatible))) -; (home-page "https://github.com/distribution/distribution") -; (synopsis "Distribution") -; (description -; "Package distribution will define the interfaces for the components of -;docker distribution. The goal is to allow users to reliably package, ship -;and store content related to docker images. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-docker-cli-20.10.11+incompatible -; (package -; (name "go-github-com-docker-cli") -; (version "20.10.11+incompatible") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/docker/cli") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0dmmxn9ahyq2yq935fvp1b6ka6s43ih9nh6wwx8v6rjg7y35rb1n")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/docker/cli")) -; (home-page "https://github.com/docker/cli") -; (synopsis "docker/cli") -; (description -; "This repository is the home of the cli used in the Docker CE and -;Docker EE products.") -; (license license:asl2.0))) -; -;(define-public go-github-com-docker-docker-20.10.11+incompatible -; (package -; (name "go-github-com-docker-docker") -; (version "20.10.11+incompatible") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/moby/moby") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1h1r66j57l073iba6hwrhcz779vaym68l1gfycdiw2d2gglfrdgr")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/docker/docker")) -; (home-page "https://github.com/docker/docker") -; (synopsis "The Moby Project") -; (description -; "Moby is an open-source project created by Docker to enable and accelerate software containerization.") -; (license license:asl2.0))) -; -;(define-public go-github-com-opencontainers-go-digest-1.0.0 -; (package -; (name "go-github-com-opencontainers-go-digest") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/go-digest") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0i5acjajvr6hi9zb7gxwifd8w28y884cv7cx36adj8lngj647xbi")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/go-digest")) -; (home-page "https://github.com/opencontainers/go-digest") -; (synopsis "go-digest") -; (description -; "Package digest provides a generalized type to opaquely represent message -;digests and their operations within the registry. The Digest type is -;designed to serve as a flexible identifier in a content-addressable system. -;More importantly, it provides tools and wrappers to work with -;hash.Hash-based digests with little effort. -;") -; (license (list license:asl2.0 license:cc-by-sa4.0)))) -; -;(define-public go-github-com-opencontainers-image-spec-1.0.2 -; (package -; (name "go-github-com-opencontainers-image-spec") -; (version "1.0.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/image-spec") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1wcw1z39wjx338406ga86a41f5ird0yc4ab3c70nfhkpkvjjzhkm")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/image-spec")) -; (home-page "https://github.com/opencontainers/image-spec") -; (synopsis "OCI Image Format Specification") -; (description -; "The OCI Image Format project creates and maintains the software shipping container image format spec (OCI Image Format).") -; (license license:asl2.0))) -; -;(define-public go-github-com-phayes-freeport-0.0.0-20180830031419-95f893ade6f2 -; (package -; (name "go-github-com-phayes-freeport") -; (version "0.0.0-20180830031419-95f893ade6f2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/phayes/freeport") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "09kkm359hg8xl6qj8fqrs5fkrzn82i7frr5i0vy1kkfvd9ng6n90")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/phayes/freeport")) -; (home-page "https://github.com/phayes/freeport") -; (synopsis "FreePort") -; (description "Get a free open TCP port that is ready to use.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20191026070338-33540a1f6037") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0fjcv0vzvi6za0b4xmnk3932pr9f9gczzf03y0kgq3ry9rqg169y")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-sirupsen-logrus-1.8.1 -; (package -; (name "go-github-com-sirupsen-logrus") -; (version "1.8.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/sirupsen/logrus") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0rvqzic2zz7fpxyizmqxwmhv1m52ii9bgxnqa6km8wsa0l08wh42")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/sirupsen/logrus")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037" -; ,go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037) -; ("go-github-com-stretchr-testify-1.2.2" -; ,go-github-com-stretchr-testify-1.2.2) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://github.com/sirupsen/logrus") -; (synopsis "Logrus") -; (description -; "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. -;") -; (license license:expat))) -; -;(define-public go-github-com-russross-blackfriday-v2-2.0.1 -; (package -; (name "go-github-com-russross-blackfriday-v2") -; (version "2.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/russross/blackfriday") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0nlz7isdd4rgnwzs68499hlwicxz34j2k2a0b8jy0y7ycd2bcr5j")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/russross/blackfriday/v2")) -; (home-page "https://github.com/russross/blackfriday") -; (synopsis "Blackfriday") -; (description "Package blackfriday is a markdown processor. -;") -; (license license:bsd-2))) -; -;(define-public go-github-com-shurcool-sanitized-anchor-name-1.0.0 -; (package -; (name "go-github-com-shurcool-sanitized-anchor-name") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/shurcooL/sanitized_anchor_name") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1gv9p2nr46z80dnfjsklc6zxbgk96349sdsxjz05f3z6wb6m5l8f")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/shurcooL/sanitized_anchor_name")) -; (home-page "https://github.com/shurcooL/sanitized_anchor_name") -; (synopsis "sanitized_anchor_name") -; (description -; "Package sanitized_anchor_name provides a func to create sanitized anchor names. -;") -; (license license:expat))) -; -;(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0 -; (package -; (name "go-github-com-cpuguy83-go-md2man-v2") -; (version "2.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/cpuguy83/go-md2man") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) -; (propagated-inputs -; `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" -; ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) -; ("go-github-com-russross-blackfriday-v2-2.0.1" -; ,go-github-com-russross-blackfriday-v2-2.0.1) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0))) -; (home-page "https://github.com/cpuguy83/go-md2man") -; (synopsis "go-md2man") -; (description "Converts markdown into roff (man pages).") -; (license license:expat))) -; -;(define-public go-github-com-hashicorp-go-cleanhttp-0.5.1 -; (package -; (name "go-github-com-hashicorp-go-cleanhttp") -; (version "0.5.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/go-cleanhttp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "07kx3fhryqmaw3czacmm11qwx63js2q8cfq967vphk7xg9q377kk")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hashicorp/go-cleanhttp")) -; (home-page "https://github.com/hashicorp/go-cleanhttp") -; (synopsis "cleanhttp") -; (description -; "Package cleanhttp offers convenience utilities for acquiring \"clean\" -;http.Transport and http.Client structs. -;") -; (license license:mpl2.0))) -; -;(define-public go-github-com-mitchellh-go-homedir-1.0.0 -; (package -; (name "go-github-com-mitchellh-go-homedir") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mitchellh/go-homedir") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0f0z0aa4wivk4z1y503dmnw0k0g0g403dly8i4q263gfshs82sbq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mitchellh/go-homedir")) -; (home-page "https://github.com/mitchellh/go-homedir") -; (synopsis "go-homedir") -; (description -; "This is a Go library for detecting the user's home directory without -;the use of cgo, so the library can be used in cross-compilation environments.") -; (license license:expat))) -; -;(define-public go-github-com-hashicorp-go-rootcerts-1.0.0 -; (package -; (name "go-github-com-hashicorp-go-rootcerts") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/go-rootcerts") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0wply5zhj1rcybr932zbwm1i18q5wr7kgkhnz6bw6mk1n9yr8lfj")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hashicorp/go-rootcerts")) -; (propagated-inputs -; `(("go-github-com-mitchellh-go-homedir-1.0.0" -; ,go-github-com-mitchellh-go-homedir-1.0.0))) -; (home-page "https://github.com/hashicorp/go-rootcerts") -; (synopsis "rootcerts") -; (description -; "Package rootcerts contains functions to aid in loading CA certificates for -;TLS connections. -;") -; (license license:mpl2.0))) -; -;(define-public go-github-com-armon-circbuf-0.0.0-20150827004946-bbbad097214e -; (package -; (name "go-github-com-armon-circbuf") -; (version "0.0.0-20150827004946-bbbad097214e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/armon/circbuf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1idpr0lzb2px2p3wgfq2276yl7jpaz43df6n91kf790404s4zmk3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/armon/circbuf")) -; (home-page "https://github.com/armon/circbuf") -; (synopsis "circbuf") -; (description -; "This repository provides the @code{circbuf} package. This provides a @code{Buffer} object -;which is a circular (or ring) buffer. It has a fixed size, but can be written -;to infinitely. Only the last @code{size} bytes are ever retained. The buffer implements -;the @code{io.Writer} interface.") -; (license license:expat))) -; -;(define-public go-github-com-hashicorp-go-syslog-1.0.0 -; (package -; (name "go-github-com-hashicorp-go-syslog") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/go-syslog") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "09vccqggz212cg0jir6vv708d6mx0f9w5bxrcdah3h6chgmal6v1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hashicorp/go-syslog")) -; (home-page "https://github.com/hashicorp/go-syslog") -; (synopsis "go-syslog") -; (description -; "This repository provides a very simple @code{gsyslog} package. The point of this -;package is to allow safe importing of syslog without introducing cross-compilation -;issues. The stdlib @code{log/syslog} cannot be imported on Windows systems, and without -;conditional compilation this adds complications.") -; (license license:expat))) -; -;(define-public go-github-com-hashicorp-go-uuid-1.0.1 -; (package -; (name "go-github-com-hashicorp-go-uuid") -; (version "1.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/go-uuid") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0jvb88m0rq41bwgirsadgw7mnayl27av3gd2vqa3xvxp3fy0hp5k")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hashicorp/go-uuid")) -; (home-page "https://github.com/hashicorp/go-uuid") -; (synopsis "uuid") -; (description -; "Generates UUID-format strings using high quality, bytes. It is @strong{not} intended to be RFC compliant, merely to use a well-understood string representation of a 128-bit value. It can also parse UUID-format strings into their component bytes.") -; (license license:mpl2.0))) -; -;(define-public go-github-com-hashicorp-logutils-1.0.0 -; (package -; (name "go-github-com-hashicorp-logutils") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/logutils") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "076wf4sh5p3f953ndqk1cc0x7jhmlqrxak9953rz79rcdw77rjvv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hashicorp/logutils")) -; (home-page "https://github.com/hashicorp/logutils") -; (synopsis "logutils") -; (description -; "Package logutils augments the standard log package with levels. -;") -; (license license:mpl2.0))) -; -;(define-public go-github-com-hashicorp-go-net-0.0.1 -; (package -; (name "go-github-com-hashicorp-go-net") -; (version "0.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/go.net") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "06arwi95xp5rxyz7rndvhc3wlwg0jn9a5z6djf3yyg5h9zfab9i4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hashicorp/go.net")) -; (home-page "https://github.com/hashicorp/go.net") -; (synopsis #f) -; (description #f) -; (license license:bsd-3))) -; -;(define-public go-github-com-hashicorp-mdns-1.0.0 -; (package -; (name "go-github-com-hashicorp-mdns") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/mdns") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0qr4l91hhi97s8a1isnrw3s4q8pjzacqiks870vnwh15v7ig3axd")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hashicorp/mdns")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20181026203630-95b1ffbd15a5" -; ,go-golang-org-x-sys-0.0.0-20181026203630-95b1ffbd15a5) -; ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" -; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) -; ("go-golang-org-x-net-0.0.0-20181023162649-9b4f9f5ad519" -; ,go-golang-org-x-net-0.0.0-20181023162649-9b4f9f5ad519) -; ("go-golang-org-x-crypto-0.0.0-20181029021203-45a5f77698d3" -; ,go-golang-org-x-crypto-0.0.0-20181029021203-45a5f77698d3) -; ("go-github-com-miekg-dns-1.0.14" ,go-github-com-miekg-dns-1.0.14) -; ("go-github-com-hashicorp-go-net-0.0.1" -; ,go-github-com-hashicorp-go-net-0.0.1))) -; (home-page "https://github.com/hashicorp/mdns") -; (synopsis "mdns") -; (description -; "Simple mDNS client/server library in Golang. mDNS or Multicast DNS can be -;used to discover services on the local network without the use of an authoritative -;DNS server. This enables peer-to-peer discovery. It is important to note that many -;networks restrict the use of multicasting, which prevents mDNS from functioning. -;Notably, multicast cannot be used in any sort of cloud, or shared infrastructure -;environment. However it works well in most office, home, or private infrastructure -;environments.") -; (license license:expat))) -; -;(define-public go-github-com-armon-go-metrics-0.0.0-20180917152333-f0300d1749da -; (package -; (name "go-github-com-armon-go-metrics") -; (version "0.0.0-20180917152333-f0300d1749da") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/armon/go-metrics") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "13l7c35ps0r27vxfil2w0xhhc7w5rh00awvlmn4cz0a937b9ffpv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/armon/go-metrics")) -; (home-page "https://github.com/armon/go-metrics") -; (synopsis "go-metrics") -; (description -; "This library provides a @code{metrics} package which can be used to instrument code, -;expose application metrics, and profile runtime performance in a flexible manner.") -; (license license:expat))) -; -;(define-public go-github-com-hashicorp-go-uuid-1.0.0 -; (package -; (name "go-github-com-hashicorp-go-uuid") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/go-uuid") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1jflywlani7583qm4ysph40hsgx3n66n5zr2k84i057fmwa1ypfy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hashicorp/go-uuid")) -; (home-page "https://github.com/hashicorp/go-uuid") -; (synopsis "uuid") -; (description -; "Generates UUID-format strings using high quality, bytes. It is @strong{not} intended to be RFC compliant, merely to use a well-understood string representation of a 128-bit value. It can also parse UUID-format strings into their component bytes.") -; (license license:mpl2.0))) -; -;(define-public go-github-com-hashicorp-go-immutable-radix-1.0.0 -; (package -; (name "go-github-com-hashicorp-go-immutable-radix") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/go-immutable-radix") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1v3nmsnk1s8bzpclrhirz7iq0g5xxbw9q5gvrg9ss6w9crs72qr6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hashicorp/go-immutable-radix")) -; (propagated-inputs -; `(("go-github-com-hashicorp-golang-lru-0.5.0" -; ,go-github-com-hashicorp-golang-lru-0.5.0) -; ("go-github-com-hashicorp-go-uuid-1.0.0" -; ,go-github-com-hashicorp-go-uuid-1.0.0))) -; (home-page "https://github.com/hashicorp/go-immutable-radix") -; (synopsis "go-immutable-radix") -; (description -; "This package provides the @code{iradix} package that implements an immutable @url{http://en.wikipedia.org/wiki/Radix_tree,radix tree}. -;The package only provides a single @code{Tree} implementation, optimized for sparse nodes.") -; (license license:mpl2.0))) -; -;(define-public go-github-com-hashicorp-go-msgpack-0.5.3 -; (package -; (name "go-github-com-hashicorp-go-msgpack") -; (version "0.5.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/go-msgpack") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "00jv0ajqd58pkb2yyhlrjp0rv1mvb1ijx3yqjyikcmzvk9jb4h5m")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hashicorp/go-msgpack")) -; (home-page "https://github.com/hashicorp/go-msgpack") -; (synopsis "go-codec") -; (description "This repository contains the @code{go-codec} library.") -; (license license:expat))) -; -;(define-public go-github-com-hashicorp-go-sockaddr-1.0.0 -; (package -; (name "go-github-com-hashicorp-go-sockaddr") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/go-sockaddr") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1yn1xq8ysn0lszmkygz3a9lgpswbz1p91jv7q8l20s4749a22xgi")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hashicorp/go-sockaddr")) -; (home-page "https://github.com/hashicorp/go-sockaddr") -; (synopsis "go-sockaddr") -; (description -; "Package sockaddr is a Go implementation of the UNIX socket family data types and -;related helper functions. -;") -; (license license:mpl2.0))) -; -;(define-public go-github-com-miekg-dns-1.0.14 -; (package -; (name "go-github-com-miekg-dns") -; (version "1.0.14") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/miekg/dns") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1qgli6yp59bv6vc6zag84cwxmcxgnyxm1q2f301yyijk3wy5b2ak")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/miekg/dns")) -; (home-page "https://github.com/miekg/dns") -; (synopsis "Alternative (more granular) approach to a DNS library") -; (description -; "Package dns implements a full featured interface to the Domain Name System. -;Both server- and client-side programming is supported. The package allows -;complete control over what is sent out to the DNS. The API follows the -;less-is-more principle, by presenting a small, clean interface. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-sean--seed-0.0.0-20170313163322-e2103e2c3529 -; (package -; (name "go-github-com-sean--seed") -; (version "0.0.0-20170313163322-e2103e2c3529") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/sean-/seed") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0glir8jxi1w7aga2jwdb63pp1h8q4whknili7xixsqzwyy716125")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/sean-/seed")) -; (home-page "https://github.com/sean-/seed") -; (synopsis "- Quickly Seed Go's Random Number Generator") -; (description -; "Boiler-plate to securely @url{https://en.wikipedia.org/wiki/Random_seed,seed} Go's -;random number generator (if possible). This library isn't anything fancy, it's -;just a canonical way of seeding Go's random number generator. Cribbed from -;@url{https://github.com/hashicorp/nomad/commit/f89a993ec6b91636a3384dd568898245fbc273a1,(code Nomad)} -;before it was moved into -;@url{https://github.com/hashicorp/consul/commit/d695bcaae6e31ee307c11fdf55bb0bf46ea9fcf4,(code Consul)} -;and made into a helper function, and now further modularized to be a super -;lightweight and reusable library.") -; (license #f))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20181029021203-45a5f77698d3 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20181029021203-45a5f77698d3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0636jjj89wkzqchajwwzgcn4aafc334p70nawh9jzavg2mkx0ch4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20181023162649-9b4f9f5ad519 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20181023162649-9b4f9f5ad519") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "06hvxy113h76f31gv1mq6vdr6xja1zv0fdig686l2b4y2b6swych")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20181026203630-95b1ffbd15a5 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20181026203630-95b1ffbd15a5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "06c3lf93wzf5kkfmzmgn75x4c0a7159vrwjrqh6zh9zxzqq5whpq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-hashicorp-memberlist-0.1.3 -; (package -; (name "go-github-com-hashicorp-memberlist") -; (version "0.1.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/memberlist") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0k1spq7dagvqj3baqw2dhxx1zxrb02y6m3apzr3a7gyirii890g3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hashicorp/memberlist")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20181026203630-95b1ffbd15a5" -; ,go-golang-org-x-sys-0.0.0-20181026203630-95b1ffbd15a5) -; ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" -; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) -; ("go-golang-org-x-net-0.0.0-20181023162649-9b4f9f5ad519" -; ,go-golang-org-x-net-0.0.0-20181023162649-9b4f9f5ad519) -; ("go-golang-org-x-crypto-0.0.0-20181029021203-45a5f77698d3" -; ,go-golang-org-x-crypto-0.0.0-20181029021203-45a5f77698d3) -; ("go-github-com-stretchr-testify-1.2.2" -; ,go-github-com-stretchr-testify-1.2.2) -; ("go-github-com-sean--seed-0.0.0-20170313163322-e2103e2c3529" -; ,go-github-com-sean--seed-0.0.0-20170313163322-e2103e2c3529) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-pascaldekloe-goe-0.0.0-20180627143212-57f6aae5913c" -; ,go-github-com-pascaldekloe-goe-0.0.0-20180627143212-57f6aae5913c) -; ("go-github-com-miekg-dns-1.0.14" ,go-github-com-miekg-dns-1.0.14) -; ("go-github-com-hashicorp-go-sockaddr-1.0.0" -; ,go-github-com-hashicorp-go-sockaddr-1.0.0) -; ("go-github-com-hashicorp-go-multierror-1.0.0" -; ,go-github-com-hashicorp-go-multierror-1.0.0) -; ("go-github-com-hashicorp-go-msgpack-0.5.3" -; ,go-github-com-hashicorp-go-msgpack-0.5.3) -; ("go-github-com-hashicorp-go-immutable-radix-1.0.0" -; ,go-github-com-hashicorp-go-immutable-radix-1.0.0) -; ("go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c" -; ,go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1) -; ("go-github-com-armon-go-metrics-0.0.0-20180917152333-f0300d1749da" -; ,go-github-com-armon-go-metrics-0.0.0-20180917152333-f0300d1749da))) -; (home-page "https://github.com/hashicorp/memberlist") -; (synopsis "memberlist") -; (description -; "memberlist is a library that manages cluster -;membership and member failure detection using a gossip based protocol. -;") -; (license license:mpl2.0))) -; -;(define-public go-github-com-armon-go-radix-0.0.0-20180808171621-7fddfc383310 -; (package -; (name "go-github-com-armon-go-radix") -; (version "0.0.0-20180808171621-7fddfc383310") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/armon/go-radix") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0y8chspn14n9xpsfb9gxnnf819rfpriaz64v81p7873a42kkhxb4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/armon/go-radix")) -; (home-page "https://github.com/armon/go-radix") -; (synopsis "go-radix") -; (description -; "This package provides the @code{radix} package that implements a @url{http://en.wikipedia.org/wiki/Radix_tree,radix tree}. -;The package only provides a single @code{Tree} implementation, optimized for sparse nodes.") -; (license license:expat))) -; -;(define-public go-github-com-bgentry-speakeasy-0.1.0 -; (package -; (name "go-github-com-bgentry-speakeasy") -; (version "0.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/bgentry/speakeasy") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "02dfrj0wyphd3db9zn2mixqxwiz1ivnyc5xc7gkz58l5l27nzp8s")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/bgentry/speakeasy")) -; (home-page "https://github.com/bgentry/speakeasy") -; (synopsis "Speakeasy") -; (description -; "This package provides cross-platform Go (#golang) helpers for taking user input -;from the terminal while not echoing the input back (similar to @code{getpasswd}). The -;package uses syscalls to avoid any dependence on cgo, and is therefore -;compatible with cross-compiling.") -; (license license:expat))) -; -;(define-public go-github-com-fatih-color-1.7.0 -; (package -; (name "go-github-com-fatih-color") -; (version "1.7.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/fatih/color") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0v8msvg38r8d1iiq2i5r4xyfx0invhc941kjrsg5gzwvagv55inv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/fatih/color")) -; (home-page "https://github.com/fatih/color") -; (synopsis "color") -; (description -; "Package color is an ANSI color package to output colorized or SGR defined -;output to the standard output. The API can be used in several way, pick one -;that suits you. -;") -; (license license:expat))) -; -;(define-public go-github-com-hashicorp-errwrap-1.0.0 -; (package -; (name "go-github-com-hashicorp-errwrap") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/errwrap") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0slfb6w3b61xz04r32bi0a1bygc82rjzhqkxj2si2074wynqnr1c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hashicorp/errwrap")) -; (home-page "https://github.com/hashicorp/errwrap") -; (synopsis "errwrap") -; (description -; "Package errwrap implements methods to formalize error wrapping in Go. -;") -; (license license:mpl2.0))) -; -;(define-public go-github-com-hashicorp-go-multierror-1.0.0 -; (package -; (name "go-github-com-hashicorp-go-multierror") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/go-multierror") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "00nyn8llqzbfm8aflr9kwsvpzi4kv8v45c141v88xskxp5xf6z49")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hashicorp/go-multierror")) -; (propagated-inputs -; `(("go-github-com-hashicorp-errwrap-1.0.0" -; ,go-github-com-hashicorp-errwrap-1.0.0))) -; (home-page "https://github.com/hashicorp/go-multierror") -; (synopsis "go-multierror") -; (description -; "@code{go-multierror} is a package for Go that provides a mechanism for -;representing a list of @code{error} values as a single @code{error}.") -; (license license:mpl2.0))) -; -;(define-public go-github-com-mattn-go-colorable-0.0.9 -; (package -; (name "go-github-com-mattn-go-colorable") -; (version "0.0.9") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mattn/go-colorable") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1nwjmsppsjicr7anq8na6md7b1z84l9ppnlr045hhxjvbkqwalvx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mattn/go-colorable")) -; (home-page "https://github.com/mattn/go-colorable") -; (synopsis "go-colorable") -; (description "Colorable writer for windows.") -; (license license:expat))) -; -;(define-public go-github-com-mattn-go-isatty-0.0.3 -; (package -; (name "go-github-com-mattn-go-isatty") -; (version "0.0.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mattn/go-isatty") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "06w45aqz2a6yrk25axbly2k5wmsccv8cspb94bfmz4izvw8h927n")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mattn/go-isatty")) -; (home-page "https://github.com/mattn/go-isatty") -; (synopsis "go-isatty") -; (description "Package isatty implements interface to isatty -;") -; (license license:expat))) -; -;(define-public go-github-com-posener-complete-1.1.1 -; (package -; (name "go-github-com-posener-complete") -; (version "1.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/posener/complete") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1nbdiybjizbaxbf5q0xwbq0cjqw4bl6jggvsjzrpif0w86fcjda2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/posener/complete")) -; (home-page "https://github.com/posener/complete") -; (synopsis "complete") -; (description -; "Package complete provides a tool for bash writing bash completion in go, and bash completion for the go command line. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-sys-0.0.0-20180823144017-11551d06cbcc -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20180823144017-11551d06cbcc") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0j34525b9smcyjqmxvvqgcfn87kkx3b2izidmjp2cmhjxzjrgpwm")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-mitchellh-cli-1.0.0 -; (package -; (name "go-github-com-mitchellh-cli") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mitchellh/cli") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1i9kmr7rcf10d2hji8h4247hmc0nbairv7a0q51393aw2h1bnwg2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mitchellh/cli")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20180823144017-11551d06cbcc" -; ,go-golang-org-x-sys-0.0.0-20180823144017-11551d06cbcc) -; ("go-github-com-posener-complete-1.1.1" -; ,go-github-com-posener-complete-1.1.1) -; ("go-github-com-mattn-go-isatty-0.0.3" -; ,go-github-com-mattn-go-isatty-0.0.3) -; ("go-github-com-mattn-go-colorable-0.0.9" -; ,go-github-com-mattn-go-colorable-0.0.9) -; ("go-github-com-hashicorp-go-multierror-1.0.0" -; ,go-github-com-hashicorp-go-multierror-1.0.0) -; ("go-github-com-fatih-color-1.7.0" ,go-github-com-fatih-color-1.7.0) -; ("go-github-com-bgentry-speakeasy-0.1.0" -; ,go-github-com-bgentry-speakeasy-0.1.0) -; ("go-github-com-armon-go-radix-0.0.0-20180808171621-7fddfc383310" -; ,go-github-com-armon-go-radix-0.0.0-20180808171621-7fddfc383310))) -; (home-page "https://github.com/mitchellh/cli") -; (synopsis "Go CLI Library") -; (description -; "cli is a library for implementing powerful command-line interfaces in Go. -;cli is the library that powers the CLI for -;@url{https://github.com/mitchellh/packer,Packer}, -;@url{https://github.com/hashicorp/serf,Serf}, -;@url{https://github.com/hashicorp/consul,Consul}, -;@url{https://github.com/hashicorp/vault,Vault}, -;@url{https://github.com/hashicorp/terraform,Terraform}, and -;@url{https://github.com/hashicorp/nomad,Nomad}.") -; (license license:mpl2.0))) -; -;(define-public go-github-com-mitchellh-gox-0.4.0 -; (package -; (name "go-github-com-mitchellh-gox") -; (version "0.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mitchellh/gox") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1q4fdkw904mrmh1q5z8pfd3r0gcn5dm776kldqawddy93iiwnp8r")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mitchellh/gox")) -; (home-page "https://github.com/mitchellh/gox") -; (synopsis "Gox - Simple Go Cross Compilation") -; (description -; "Gox is a simple, no-frills tool for Go cross compilation that behaves a -;lot like standard @code{go build}. Gox will parallelize builds for multiple -;platforms. Gox will also build the cross-compilation toolchain for you.") -; (license license:mpl2.0))) -; -;(define-public go-github-com-mitchellh-iochan-1.0.0 -; (package -; (name "go-github-com-mitchellh-iochan") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mitchellh/iochan") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "058n9bbf536f2nw3pbs7pysrg9cqvgkb28z2zf5wjyrzrknyk53g")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mitchellh/iochan")) -; (home-page "https://github.com/mitchellh/iochan") -; (synopsis "iochan") -; (description -; "iochan is a Go library for treating @code{io} readers and writers like channels. -;This is useful when sometimes you wish to use @code{io.Reader} and such in @code{select} -;statements.") -; (license license:expat))) -; -;(define-public go-github-com-mitchellh-mapstructure-0.0.0-20160808181253-ca63d7c062ee -; (package -; (name "go-github-com-mitchellh-mapstructure") -; (version "0.0.0-20160808181253-ca63d7c062ee") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mitchellh/mapstructure") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1yjwhgi57l5fxlmpdchipdd4jasdn1sa8ccl2f2486v06rv6z7gr")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mitchellh/mapstructure")) -; (home-page "https://github.com/mitchellh/mapstructure") -; (synopsis "mapstructure") -; (description -; "Package mapstructure exposes functionality to convert one arbitrary -;Go type into another, typically to convert a map[string]interface{} -;into a native Go structure. -;") -; (license license:expat))) -; -;(define-public go-github-com-ryanuber-columnize-0.0.0-20160712163229-9b3edd62028f -; (package -; (name "go-github-com-ryanuber-columnize") -; (version "0.0.0-20160712163229-9b3edd62028f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/ryanuber/columnize") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ya1idkbb0a9fjlhkcnh5a9yvpwzwfmbyg7d56lpplwr9rqi1da4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/ryanuber/columnize")) -; (home-page "https://github.com/ryanuber/columnize") -; (synopsis "Columnize") -; (description "Easy column-formatted output for golang") -; (license license:expat))) -; -;(define-public go-golang-org-x-net-0.0.0-20181201002055-351d144fa1fc -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20181201002055-351d144fa1fc") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1c5x25qjyz83y92bq0lll5kmznyi3m02wd4c54scgf0866gy938k")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-github-com-hashicorp-serf-0.8.2 -; (package -; (name "go-github-com-hashicorp-serf") -; (version "0.8.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/serf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0nrslghvdjhaczr2xp9mn8xgcx1dxl4jgpbk0l61ssmxahpx4iyc")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hashicorp/serf")) -; (propagated-inputs -; `(("go-golang-org-x-net-0.0.0-20181201002055-351d144fa1fc" -; ,go-golang-org-x-net-0.0.0-20181201002055-351d144fa1fc) -; ("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0) -; ("go-github-com-ryanuber-columnize-0.0.0-20160712163229-9b3edd62028f" -; ,go-github-com-ryanuber-columnize-0.0.0-20160712163229-9b3edd62028f) -; ("go-github-com-mitchellh-mapstructure-0.0.0-20160808181253-ca63d7c062ee" -; ,go-github-com-mitchellh-mapstructure-0.0.0-20160808181253-ca63d7c062ee) -; ("go-github-com-mitchellh-iochan-1.0.0" -; ,go-github-com-mitchellh-iochan-1.0.0) -; ("go-github-com-mitchellh-gox-0.4.0" -; ,go-github-com-mitchellh-gox-0.4.0) -; ("go-github-com-mitchellh-cli-1.0.0" -; ,go-github-com-mitchellh-cli-1.0.0) -; ("go-github-com-hashicorp-memberlist-0.1.3" -; ,go-github-com-hashicorp-memberlist-0.1.3) -; ("go-github-com-hashicorp-mdns-1.0.0" -; ,go-github-com-hashicorp-mdns-1.0.0) -; ("go-github-com-hashicorp-logutils-1.0.0" -; ,go-github-com-hashicorp-logutils-1.0.0) -; ("go-github-com-hashicorp-go-uuid-1.0.1" -; ,go-github-com-hashicorp-go-uuid-1.0.1) -; ("go-github-com-hashicorp-go-syslog-1.0.0" -; ,go-github-com-hashicorp-go-syslog-1.0.0) -; ("go-github-com-hashicorp-go-msgpack-0.5.3" -; ,go-github-com-hashicorp-go-msgpack-0.5.3) -; ("go-github-com-armon-go-metrics-0.0.0-20180917152333-f0300d1749da" -; ,go-github-com-armon-go-metrics-0.0.0-20180917152333-f0300d1749da) -; ("go-github-com-armon-circbuf-0.0.0-20150827004946-bbbad097214e" -; ,go-github-com-armon-circbuf-0.0.0-20150827004946-bbbad097214e))) -; (home-page "https://github.com/hashicorp/serf") -; (synopsis "Serf") -; (description -; "Serf is a decentralized solution for service discovery and orchestration -;that is lightweight, highly available, and fault tolerant.") -; (license license:mpl2.0))) -; -;(define-public go-github-com-mitchellh-mapstructure-1.1.2 -; (package -; (name "go-github-com-mitchellh-mapstructure") -; (version "1.1.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mitchellh/mapstructure") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "03bpv28jz9zhn4947saqwi328ydj7f6g6pf1m2d4m5zdh5jlfkrr")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mitchellh/mapstructure")) -; (home-page "https://github.com/mitchellh/mapstructure") -; (synopsis "mapstructure") -; (description -; "Package mapstructure exposes functionality to convert one arbitrary -;Go type into another, typically to convert a map[string]interface{} -;into a native Go structure. -;") -; (license license:expat))) -; -;(define-public go-github-com-pascaldekloe-goe-0.0.0-20180627143212-57f6aae5913c -; (package -; (name "go-github-com-pascaldekloe-goe") -; (version "0.0.0-20180627143212-57f6aae5913c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/pascaldekloe/goe") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1dqd3mfb4z2vmv6pg6fhgvfc53vhndk24wcl9lj1rz02n6m279fq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/pascaldekloe/goe")) -; (home-page "https://github.com/pascaldekloe/goe") -; (synopsis "Go Enterprise") -; (description -; "Common enterprise features for the Go programming language (golang).") -; (license license:cc0))) -; -;(define-public go-github-com-hashicorp-consul-api-1.1.0 -; (package -; (name "go-github-com-hashicorp-consul-api") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/consul") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0xm3gl8i7pgsbsc2397bwh9hp2dwnk4cmw5y05acqn3zpyp84sbv")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path -; "github.com/hashicorp/consul/api" -; #:unpack-path -; "github.com/hashicorp/consul")) -; (propagated-inputs -; `(("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0) -; ("go-github-com-pascaldekloe-goe-0.0.0-20180627143212-57f6aae5913c" -; ,go-github-com-pascaldekloe-goe-0.0.0-20180627143212-57f6aae5913c) -; ("go-github-com-mitchellh-mapstructure-1.1.2" -; ,go-github-com-mitchellh-mapstructure-1.1.2) -; ("go-github-com-hashicorp-serf-0.8.2" -; ,go-github-com-hashicorp-serf-0.8.2) -; ("go-github-com-hashicorp-go-uuid-1.0.1" -; ,go-github-com-hashicorp-go-uuid-1.0.1) -; ("go-github-com-hashicorp-go-rootcerts-1.0.0" -; ,go-github-com-hashicorp-go-rootcerts-1.0.0) -; ("go-github-com-hashicorp-go-cleanhttp-0.5.1" -; ,go-github-com-hashicorp-go-cleanhttp-0.5.1))) -; (home-page "https://github.com/hashicorp/consul") -; (synopsis "Consul API client") -; (description -; "This package provides the @code{api} package which attempts to -;provide programmatic access to the full Consul API.") -; (license license:mpl2.0))) -; -;(define-public go-github-com-golang-mock-1.5.0 -; (package -; (name "go-github-com-golang-mock") -; (version "1.5.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/mock") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "12l7p08pwwk3xn70w7rlm28nz6jf4szlzgjxjfmbssyirxxxy8v1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/mock")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" -; ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) -; ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0))) -; (home-page "https://github.com/golang/mock") -; (synopsis "gomock") -; (description -; "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It -;integrates well with Go's built-in @code{testing} package, but can be used in other -;contexts too.") -; (license license:asl2.0))) -; -;(define-public go-github-com-google-pprof-0.0.0-20210226084205-cbba55b83ad5 -; (package -; (name "go-github-com-google-pprof") -; (version "0.0.0-20210226084205-cbba55b83ad5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/pprof") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0drr44nqq0s3jillcrl8qa7sklxybs083lvashdh2ad62hrs31l7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/pprof")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" -; ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) -; ("go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639" -; ,go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639) -; ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" -; ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) -; ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" -; ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) -; ("go-github-com-chzyer-logex-1.1.10" -; ,go-github-com-chzyer-logex-1.1.10))) -; (home-page "https://github.com/google/pprof") -; (synopsis "Introduction") -; (description -; "pprof is a tool for collection, manipulation and visualization -;of performance profiles. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20210226172049-e18ecbb05110") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1vlq8mdscp7yfaa1lmyv03y5m4c2d67ydg2q1i6smkrxghn3zn3q")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) -; ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" -; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) -; ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" -; ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-github-com-google-pprof-0.0.0-20210122040257-d980be63207e -; (package -; (name "go-github-com-google-pprof") -; (version "0.0.0-20210122040257-d980be63207e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/pprof") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0vg5z6rp5kfd324w8j12hlx9zv049vxljpc6dyqkj2k9vzzzqkw8")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/pprof")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" -; ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) -; ("go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639" -; ,go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639) -; ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" -; ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) -; ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" -; ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) -; ("go-github-com-chzyer-logex-1.1.10" -; ,go-github-com-chzyer-logex-1.1.10))) -; (home-page "https://github.com/google/pprof") -; (synopsis "Introduction") -; (description -; "pprof is a tool for collection, manipulation and visualization -;of performance profiles. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-mod-0.4.1 -; (package -; (name "go-golang-org-x-mod") -; (version "0.4.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/mod") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0q4p41223d1xh4jmw9vmywjfi0jzn56gbidrwv5x1bzmx2qmj01n")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/mod")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" -; ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) -; ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" -; ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) -; ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" -; ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) -; (home-page "https://golang.org/x/mod") -; (synopsis "mod") -; (description -; "This repository holds packages for writing tools -;that work directly with Go module mechanics. -;That is, it is for direct manipulation of Go modules themselves.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20210119194325-5f4716e94777 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20210119194325-5f4716e94777") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1xh4hk0fhkzq096z9qbzqfswmmgg4kvb44qvazpandvlpwm4jds2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) -; ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" -; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) -; ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" -; ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-oauth2-0.0.0-20210218202405-ba52d332ba99 -; (package -; (name "go-golang-org-x-oauth2") -; (version "0.0.0-20210218202405-ba52d332ba99") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/oauth2") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0fdm3fljk3k4xbpzaywccayrhgqdfl79vl18k4z1zw2pl654bqbg")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/oauth2")) -; (propagated-inputs -; `(("go-google-golang-org-appengine-1.6.6" -; ,go-google-golang-org-appengine-1.6.6) -; ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" -; ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) -; ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) -; (home-page "https://golang.org/x/oauth2") -; (synopsis "OAuth2 for Go") -; (description -; "Package oauth2 provides support for making -;OAuth2 authorized and authenticated HTTP requests, -;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -;It can additionally grant authorization with Bearer JWT. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20210220050731-9a76102bfb43 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20210220050731-9a76102bfb43") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "07qn19yla2w604p3dc8h1c75xj2pxc4fajvg0mf0d4c72d5qiss4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-google-pprof-0.0.0-20201203190320-1bf35d6f28c2 -; (package -; (name "go-github-com-google-pprof") -; (version "0.0.0-20201203190320-1bf35d6f28c2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/pprof") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "140n5hjk2faanrf6v5h1559g755rgavynz1r99s1n15bmgibysvp")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/pprof")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" -; ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) -; ("go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639" -; ,go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639) -; ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" -; ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) -; ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" -; ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) -; ("go-github-com-chzyer-logex-1.1.10" -; ,go-github-com-chzyer-logex-1.1.10))) -; (home-page "https://github.com/google/pprof") -; (synopsis "Introduction") -; (description -; "pprof is a tool for collection, manipulation and visualization -;of performance profiles. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-mod-0.4.0 -; (package -; (name "go-golang-org-x-mod") -; (version "0.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/mod") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ri003765yxawq6s8jbkbiaijihwrg980c4qwqsaa5x0sq2psrg1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/mod")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" -; ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) -; ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" -; ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) -; ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" -; ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) -; (home-page "https://golang.org/x/mod") -; (synopsis "mod") -; (description -; "This repository holds packages for writing tools -;that work directly with Go module mechanics. -;That is, it is for direct manipulation of Go modules themselves.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20201209123823-ac852fbbde11 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20201209123823-ac852fbbde11") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1zmp2fxgf7792xx15qhzcsfs8k0qv7q3m6jlcj6qvdngfzyvna64")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) -; ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" -; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) -; ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" -; ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20201208233053-a543418bbed2 -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20201208233053-a543418bbed2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0r87p89pm2h75yajsz0g2vvy2q3z9gknc0fmsdm5rh427f1qazfr")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" -; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) -; ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" -; ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) -; ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" -; ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) -; ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) -; ("go-github-com-yuin-goldmark-1.2.1" -; ,go-github-com-yuin-goldmark-1.2.1))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-github-com-google-martian-v3-3.1.0 -; (package -; (name "go-github-com-google-martian-v3") -; (version "3.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/martian") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1pr9akggfzj2vw11l7ry4sij0hqslpc3gwx4ynbzyvbjhvh64sbc")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/martian/v3")) -; (propagated-inputs -; `(("go-golang-org-x-net-0.0.0-20190628185345-da137c7871d7" -; ,go-golang-org-x-net-0.0.0-20190628185345-da137c7871d7))) -; (home-page "https://github.com/google/martian") -; (synopsis "Martian Proxy") -; (description -; "Package martian provides an HTTP/1.1 proxy with an API for configurable -;request and response modifiers. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639 -; (package -; (name "go-github-com-ianlancetaylor-demangle") -; (version "0.0.0-20200824232613-28f6c0f3b639") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/ianlancetaylor/demangle") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0rsq3622gd40f1x1l7caidsxrmzg1993ich2higwd94fqbxs1r83")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/ianlancetaylor/demangle")) -; (home-page "https://github.com/ianlancetaylor/demangle") -; (synopsis "github.com/ianlancetaylor/demangle") -; (description -; "Package demangle defines functions that demangle GCC/LLVM -;C++ and Rust symbol names. -;This package recognizes names that were mangled according to the C++ ABI -;defined at @url{http://codesourcery.com/cxx-abi/,http://codesourcery.com/cxx-abi/} and the Rust ABI -;defined at -;@url{https://rust-lang.github.io/rfcs/2603-rust-symbol-name-mangling-v0.html,https://rust-lang.github.io/rfcs/2603-rust-symbol-name-mangling-v0.html} -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-google-pprof-0.0.0-20201023163331-3e6fc7fc9c4c -; (package -; (name "go-github-com-google-pprof") -; (version "0.0.0-20201023163331-3e6fc7fc9c4c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/pprof") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1xmy4579gx45lqsy1cgddnc7nmaqfpiwd2kc5dhf8i0wjjvf18hq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/pprof")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" -; ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) -; ("go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639" -; ,go-github-com-ianlancetaylor-demangle-0.0.0-20200824232613-28f6c0f3b639) -; ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" -; ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) -; ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" -; ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) -; ("go-github-com-chzyer-logex-1.1.10" -; ,go-github-com-chzyer-logex-1.1.10))) -; (home-page "https://github.com/google/pprof") -; (synopsis "Introduction") -; (description -; "pprof is a tool for collection, manipulation and visualization -;of performance profiles. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-net-0.0.0-20201031054903-ff519b6c9102 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20201031054903-ff519b6c9102") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "162ssgcc0kgj42ajaki0q3j5lwmixqqwkdqcmz41xg1k8wjm7riw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) -; ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" -; ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) -; ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" -; ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-text-0.3.4 -; (package -; (name "go-golang-org-x-text") -; (version "0.3.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/text") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "11jdvix83xcl5xnb039y4zrz4x5skzsps0w1jryp6wrar53cydvz")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/text")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" -; ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) -; (home-page "https://golang.org/x/text") -; (synopsis "Go Text") -; (description -; "text is a repository of text-related packages related to internationalization -;(i18n) and localization (l10n), such as character encodings, text -;transformations, and locale-specific text handling. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20201110124207-079ba7bd75cd -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20201110124207-079ba7bd75cd") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0g4d7cx480rbnpg16qqc4yycd50lpp2mi2qzvzr6hdny91v7sa05")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" -; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) -; ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" -; ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) -; ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" -; ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) -; ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) -; ("go-github-com-yuin-goldmark-1.2.1" -; ,go-github-com-yuin-goldmark-1.2.1))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-github-com-google-go-cmp-0.5.2 -; (package -; (name "go-github-com-google-go-cmp") -; (version "0.5.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/go-cmp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0qchy411jm9q2l9mf7x3ry2ycaqp9xdhf2nx14qrpzcxfigv2705")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/go-cmp")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" -; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) -; (home-page "https://github.com/google/go-cmp") -; (synopsis "Package for equality of Go values") -; (description -; "This package is intended to be a more powerful and safer alternative to -;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-oauth2-0.0.0-20200902213428-5d25da1a8d43 -; (package -; (name "go-golang-org-x-oauth2") -; (version "0.0.0-20200902213428-5d25da1a8d43") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/oauth2") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "14jx8sxshbvnx4fggn12mlmz000zcrd1a73n1455b1wgg1xfzq3n")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/oauth2")) -; (propagated-inputs -; `(("go-google-golang-org-appengine-1.6.6" -; ,go-google-golang-org-appengine-1.6.6) -; ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" -; ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) -; ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) -; (home-page "https://golang.org/x/oauth2") -; (synopsis "OAuth2 for Go") -; (description -; "Package oauth2 provides support for making -;OAuth2 authorized and authenticated HTTP requests, -;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -;It can additionally grant authorization with Bearer JWT. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20200905004654-be1d3432aa8f -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20200905004654-be1d3432aa8f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1kd3szjsazhpgidv5xjv0s26fm4wvv2cr7j4zk8nblnqkic58as2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20200904185747-39188db58858 -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20200904185747-39188db58858") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ydyylwqzjwijy4rdp2fmvnfh3s27896dx6g74r2wa6vbhisszvk")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" -; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) -; ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" -; ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) -; ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" -; ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) -; ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) -; ("go-github-com-yuin-goldmark-1.2.1" -; ,go-github-com-yuin-goldmark-1.2.1))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20200904004341-0bd0a958aa1d -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20200904004341-0bd0a958aa1d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "01xp4ic4jvdv7n984cjgrgqbpbi9m4bj2xnfrs1s1zn1adx0jivs")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.24.0" -; ,go-google-golang-org-protobuf-1.24.0) -; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) -; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" -; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-github-com-golang-protobuf-1.4.1" -; ,go-github-com-golang-protobuf-1.4.1))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-grpc-1.31.1 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.31.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "18565vf9i2zc69znd9b8a2iz0kgv5cms0g0ppj93hnhri8rjqagk")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" -; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.3.3" -; ,go-github-com-golang-protobuf-1.3.3) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-envoyproxy-go-control-plane-0.9.4" -; ,go-github-com-envoyproxy-go-control-plane-0.9.4) -; ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" -; ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-api-0.35.0 -; (package -; (name "go-google-golang-org-api") -; (version "0.35.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-api-go-client") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0fgn21lmrlkw44sl0ivjicygwksibb1pclzp3zyh3ivn7ylvk2jd")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/api")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.31.1" ,go-google-golang-org-grpc-1.31.1) -; ("go-google-golang-org-genproto-0.0.0-20200904004341-0bd0a958aa1d" -; ,go-google-golang-org-genproto-0.0.0-20200904004341-0bd0a958aa1d) -; ("go-google-golang-org-appengine-1.6.6" -; ,go-google-golang-org-appengine-1.6.6) -; ("go-golang-org-x-tools-0.0.0-20200904185747-39188db58858" -; ,go-golang-org-x-tools-0.0.0-20200904185747-39188db58858) -; ("go-golang-org-x-sys-0.0.0-20200905004654-be1d3432aa8f" -; ,go-golang-org-x-sys-0.0.0-20200905004654-be1d3432aa8f) -; ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" -; ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) -; ("go-golang-org-x-oauth2-0.0.0-20200902213428-5d25da1a8d43" -; ,go-golang-org-x-oauth2-0.0.0-20200902213428-5d25da1a8d43) -; ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" -; ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) -; ("go-go-opencensus-io-0.22.4" ,go-go-opencensus-io-0.22.4) -; ("go-github-com-googleapis-gax-go-v2-2.0.5" -; ,go-github-com-googleapis-gax-go-v2-2.0.5) -; ("go-github-com-google-go-cmp-0.5.2" -; ,go-github-com-google-go-cmp-0.5.2) -; ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) -; (home-page "https://google.golang.org/api") -; (synopsis "Google APIs Client Library for Go") -; (description -; "Package api is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of -;sub-packages. -;") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20201109203340-2640f1f9cdfb -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20201109203340-2640f1f9cdfb") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "00mwybjbdpvmlkvmwsjvdb2z8lzzx2a340y4pf3bxqamalhdka0w")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.24.0" -; ,go-google-golang-org-protobuf-1.24.0) -; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) -; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" -; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-github-com-golang-protobuf-1.4.1" -; ,go-github-com-golang-protobuf-1.4.1))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-cloud-google-com-go-0.72.0 -; (package -; (name "go-cloud-google-com-go") -; (version "0.72.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-cloud-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1x4gy466jrzab9l02dwd3lvy2dwy84j34zpjkm5xnxh45za6hpxn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "cloud.google.com/go")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) -; ("go-google-golang-org-genproto-0.0.0-20201109203340-2640f1f9cdfb" -; ,go-google-golang-org-genproto-0.0.0-20201109203340-2640f1f9cdfb) -; ("go-google-golang-org-api-0.35.0" ,go-google-golang-org-api-0.35.0) -; ("go-golang-org-x-tools-0.0.0-20201110124207-079ba7bd75cd" -; ,go-golang-org-x-tools-0.0.0-20201110124207-079ba7bd75cd) -; ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) -; ("go-golang-org-x-oauth2-0.0.0-20200902213428-5d25da1a8d43" -; ,go-golang-org-x-oauth2-0.0.0-20200902213428-5d25da1a8d43) -; ("go-golang-org-x-net-0.0.0-20201031054903-ff519b6c9102" -; ,go-golang-org-x-net-0.0.0-20201031054903-ff519b6c9102) -; ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" -; ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) -; ("go-go-opencensus-io-0.22.5" ,go-go-opencensus-io-0.22.5) -; ("go-github-com-jstemmer-go-junit-report-0.9.1" -; ,go-github-com-jstemmer-go-junit-report-0.9.1) -; ("go-github-com-googleapis-gax-go-v2-2.0.5" -; ,go-github-com-googleapis-gax-go-v2-2.0.5) -; ("go-github-com-google-pprof-0.0.0-20201023163331-3e6fc7fc9c4c" -; ,go-github-com-google-pprof-0.0.0-20201023163331-3e6fc7fc9c4c) -; ("go-github-com-google-martian-v3-3.1.0" -; ,go-github-com-google-martian-v3-3.1.0) -; ("go-github-com-google-go-cmp-0.5.2" -; ,go-github-com-google-go-cmp-0.5.2) -; ("go-github-com-golang-protobuf-1.4.3" -; ,go-github-com-golang-protobuf-1.4.3) -; ("go-github-com-golang-mock-1.4.4" ,go-github-com-golang-mock-1.4.4) -; ("go-cloud-google-com-go-storage-1.10.0" -; ,go-cloud-google-com-go-storage-1.10.0))) -; (home-page "https://cloud.google.com/go") -; (synopsis "Google Cloud Client Libraries for Go") -; (description -; "Package cloud is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -;of sub-packages. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-oauth2-0.0.0-20201109201403-9fd604954f58 -; (package -; (name "go-golang-org-x-oauth2") -; (version "0.0.0-20201109201403-9fd604954f58") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/oauth2") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "06dj14f6jrgpqmf3v3z74zhcin3yj7yp8mzxljm3a3ihq984kz8v")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/oauth2")) -; (propagated-inputs -; `(("go-google-golang-org-appengine-1.6.6" -; ,go-google-golang-org-appengine-1.6.6) -; ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" -; ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) -; ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) -; (home-page "https://golang.org/x/oauth2") -; (synopsis "OAuth2 for Go") -; (description -; "Package oauth2 provides support for making -;OAuth2 authorized and authenticated HTTP requests, -;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -;It can additionally grant authorization with Bearer JWT. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20201201145000-ef89a241ccb3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0a8myxx2mvdr77a003gpy5jmdzbxbnrf5zppmpl4za4sspxlmwif")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20201201161351-ac6f37ff4c2a -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20201201161351-ac6f37ff4c2a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0akq0z86x51rh556fs7icjmmmgdyaa7rq7cmqlngrmvjb79wnwpl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" -; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) -; ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" -; ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) -; ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" -; ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) -; ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) -; ("go-github-com-yuin-goldmark-1.2.1" -; ,go-github-com-yuin-goldmark-1.2.1))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20201201144952-b05cb90ed32e -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20201201144952-b05cb90ed32e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1n9jlhnn5fg7a41ahdril7wgfli43kxplnpxbdbhrkknjra7xdjd")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.24.0" -; ,go-google-golang-org-protobuf-1.24.0) -; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) -; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" -; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-github-com-golang-protobuf-1.4.1" -; ,go-github-com-golang-protobuf-1.4.1))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-api-0.36.0 -; (package -; (name "go-google-golang-org-api") -; (version "0.36.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-api-go-client") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1x6wlavrqi2r6ss3h2kg94p2lfj0z019kc85zm1pajpf0k23fxp7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/api")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) -; ("go-google-golang-org-genproto-0.0.0-20201201144952-b05cb90ed32e" -; ,go-google-golang-org-genproto-0.0.0-20201201144952-b05cb90ed32e) -; ("go-google-golang-org-appengine-1.6.7" -; ,go-google-golang-org-appengine-1.6.7) -; ("go-golang-org-x-tools-0.0.0-20201201161351-ac6f37ff4c2a" -; ,go-golang-org-x-tools-0.0.0-20201201161351-ac6f37ff4c2a) -; ("go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3" -; ,go-golang-org-x-sys-0.0.0-20201201145000-ef89a241ccb3) -; ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" -; ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) -; ("go-golang-org-x-oauth2-0.0.0-20201109201403-9fd604954f58" -; ,go-golang-org-x-oauth2-0.0.0-20201109201403-9fd604954f58) -; ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" -; ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) -; ("go-go-opencensus-io-0.22.5" ,go-go-opencensus-io-0.22.5) -; ("go-github-com-googleapis-gax-go-v2-2.0.5" -; ,go-github-com-googleapis-gax-go-v2-2.0.5) -; ("go-github-com-google-go-cmp-0.5.4" -; ,go-github-com-google-go-cmp-0.5.4) -; ("go-cloud-google-com-go-0.72.0" ,go-cloud-google-com-go-0.72.0))) -; (home-page "https://google.golang.org/api") -; (synopsis "Google APIs Client Library for Go") -; (description -; "Package api is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of -;sub-packages. -;") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20201210142538-e3217bee35cc -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20201210142538-e3217bee35cc") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1bzfa58dw7jmkrp46hikbsq1yyk2r29a1gn51sqlilbvf7lq96p9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.24.0" -; ,go-google-golang-org-protobuf-1.24.0) -; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) -; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" -; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-github-com-golang-protobuf-1.4.1" -; ,go-github-com-golang-protobuf-1.4.1))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-cloud-google-com-go-0.74.0 -; (package -; (name "go-cloud-google-com-go") -; (version "0.74.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-cloud-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "09j1qppf2gf14bn06hsyrj9jaxz9vlbs9d7yrxrdvh2234qsbggy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "cloud.google.com/go")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.34.0" ,go-google-golang-org-grpc-1.34.0) -; ("go-google-golang-org-genproto-0.0.0-20201210142538-e3217bee35cc" -; ,go-google-golang-org-genproto-0.0.0-20201210142538-e3217bee35cc) -; ("go-google-golang-org-api-0.36.0" ,go-google-golang-org-api-0.36.0) -; ("go-golang-org-x-tools-0.0.0-20201208233053-a543418bbed2" -; ,go-golang-org-x-tools-0.0.0-20201208233053-a543418bbed2) -; ("go-golang-org-x-text-0.3.4" ,go-golang-org-x-text-0.3.4) -; ("go-golang-org-x-oauth2-0.0.0-20201208152858-08078c50e5b5" -; ,go-golang-org-x-oauth2-0.0.0-20201208152858-08078c50e5b5) -; ("go-golang-org-x-net-0.0.0-20201209123823-ac852fbbde11" -; ,go-golang-org-x-net-0.0.0-20201209123823-ac852fbbde11) -; ("go-golang-org-x-mod-0.4.0" ,go-golang-org-x-mod-0.4.0) -; ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" -; ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) -; ("go-go-opencensus-io-0.22.5" ,go-go-opencensus-io-0.22.5) -; ("go-github-com-jstemmer-go-junit-report-0.9.1" -; ,go-github-com-jstemmer-go-junit-report-0.9.1) -; ("go-github-com-googleapis-gax-go-v2-2.0.5" -; ,go-github-com-googleapis-gax-go-v2-2.0.5) -; ("go-github-com-google-pprof-0.0.0-20201203190320-1bf35d6f28c2" -; ,go-github-com-google-pprof-0.0.0-20201203190320-1bf35d6f28c2) -; ("go-github-com-google-martian-v3-3.1.0" -; ,go-github-com-google-martian-v3-3.1.0) -; ("go-github-com-google-go-cmp-0.5.4" -; ,go-github-com-google-go-cmp-0.5.4) -; ("go-github-com-golang-protobuf-1.4.3" -; ,go-github-com-golang-protobuf-1.4.3) -; ("go-github-com-golang-mock-1.4.4" ,go-github-com-golang-mock-1.4.4) -; ("go-cloud-google-com-go-storage-1.10.0" -; ,go-cloud-google-com-go-storage-1.10.0))) -; (home-page "https://cloud.google.com/go") -; (synopsis "Google Cloud Client Libraries for Go") -; (description -; "Package cloud is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -;of sub-packages. -;") -; (license license:asl2.0))) -; -;(define-public go-go-opencensus-io-0.22.5 -; (package -; (name "go-go-opencensus-io") -; (version "0.22.5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/census-instrumentation/opencensus-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "18s1d7bk28i8gbs6i587ccd31qp3f8gibgd14dpkzs05gyvlccy6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "go.opencensus.io")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.20.1" ,go-google-golang-org-grpc-1.20.1) -; ("go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb" -; ,go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb) -; ("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) -; ("go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd" -; ,go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd) -; ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" -; ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) -; ("go-github-com-stretchr-testify-1.4.0" -; ,go-github-com-stretchr-testify-1.4.0) -; ("go-github-com-google-go-cmp-0.3.0" -; ,go-github-com-google-go-cmp-0.3.0) -; ("go-github-com-golang-protobuf-1.3.1" -; ,go-github-com-golang-protobuf-1.3.1) -; ("go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6" -; ,go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6))) -; (home-page "https://go.opencensus.io") -; (synopsis "OpenCensus Libraries for Go") -; (description "Package opencensus contains Go support for OpenCensus. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-oauth2-0.0.0-20201208152858-08078c50e5b5 -; (package -; (name "go-golang-org-x-oauth2") -; (version "0.0.0-20201208152858-08078c50e5b5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/oauth2") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0zynwxw47nhwhs6n1c87c9np43lwl9m9z2w2cmdvjwhsisa93b75")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/oauth2")) -; (propagated-inputs -; `(("go-google-golang-org-appengine-1.6.6" -; ,go-google-golang-org-appengine-1.6.6) -; ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" -; ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) -; ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) -; (home-page "https://golang.org/x/oauth2") -; (synopsis "OAuth2 for Go") -; (description -; "Package oauth2 provides support for making -;OAuth2 authorized and authenticated HTTP requests, -;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -;It can additionally grant authorization with Bearer JWT. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20210104204734-6f8348627aad -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20210104204734-6f8348627aad") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0pmz8dwjf4gxr1gwnp4iahh3yh09apcf40kvvybycsx4rfjc2gbl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20210105154028-b0ab187a4818 -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20210105154028-b0ab187a4818") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "157w706lz7j4s7cwgh7j7mf8v1sah5hm4dlmp8isf6vhnqpixdp7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" -; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) -; ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" -; ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) -; ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" -; ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) -; ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) -; ("go-github-com-yuin-goldmark-1.2.1" -; ,go-github-com-yuin-goldmark-1.2.1))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20201214200347-8c77b98c765d -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20201214200347-8c77b98c765d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1bdpss5xmla0gjz66mdk8bqpsdb5i1xz65g30k9cs2h7vrqlwzn4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.24.0" -; ,go-google-golang-org-protobuf-1.24.0) -; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) -; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" -; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-github-com-golang-protobuf-1.4.1" -; ,go-github-com-golang-protobuf-1.4.1))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-github-com-cncf-udpa-go-0.0.0-20200629203442-efcf912fb354 -; (package -; (name "go-github-com-cncf-udpa-go") -; (version "0.0.0-20200629203442-efcf912fb354") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/cncf/udpa") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "18b1v01h3id5d7v5gqabc4qsaja17r45rn3fvv38nrfx9l4smv0x")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path -; "github.com/cncf/udpa/go" -; #:unpack-path -; "github.com/cncf/udpa")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2) -; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" -; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0))) -; (home-page "https://github.com/cncf/udpa") -; (synopsis "Description") -; (description -; "This library has been deprecated in favor of @code{github.com/cncf/xds/go}. All users are recommended to switch their imports.") -; (license license:asl2.0))) -; -;(define-public go-github-com-envoyproxy-go-control-plane-0.9.7 -; (package -; (name "go-github-com-envoyproxy-go-control-plane") -; (version "0.9.7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/envoyproxy/go-control-plane") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0nx5ybyadkjqr29hndn6amhbcqpi1rkfv12bxp0rk3ay045zxsh8")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.23.0" -; ,go-google-golang-org-protobuf-1.23.0) -; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) -; ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" -; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) -; ("go-github-com-stretchr-testify-1.5.1" -; ,go-github-com-stretchr-testify-1.5.1) -; ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" -; ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.4.2" -; ,go-github-com-golang-protobuf-1.4.2) -; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" -; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) -; ("go-github-com-cncf-udpa-go-0.0.0-20200629203442-efcf912fb354" -; ,go-github-com-cncf-udpa-go-0.0.0-20200629203442-efcf912fb354) -; ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" -; ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) -; (home-page "https://github.com/envoyproxy/go-control-plane") -; (synopsis "control-plane") -; (description -; "This repository contains a Go-based implementation of an API server that -;implements the discovery service APIs defined in -;@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-grpc-1.34.0 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.34.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0s8y19qvv0zfy2irq8vv12h65v7pw18k6yqfix1j2370yxmsajgm")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.25.0" -; ,go-google-golang-org-protobuf-1.25.0) -; ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" -; ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) -; ("go-github-com-google-go-cmp-0.5.0" -; ,go-github-com-google-go-cmp-0.5.0) -; ("go-github-com-golang-protobuf-1.4.2" -; ,go-github-com-golang-protobuf-1.4.2) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-envoyproxy-go-control-plane-0.9.7" -; ,go-github-com-envoyproxy-go-control-plane-0.9.7) -; ("go-github-com-cncf-udpa-go-0.0.0-20200629203442-efcf912fb354" -; ,go-github-com-cncf-udpa-go-0.0.0-20200629203442-efcf912fb354))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-api-0.40.0 -; (package -; (name "go-google-golang-org-api") -; (version "0.40.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-api-go-client") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0vs0bnzljg5iib8x01sy49ndgsz3cl1sq53pvy3h6kzp7may0bpc")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/api")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.34.0" ,go-google-golang-org-grpc-1.34.0) -; ("go-google-golang-org-genproto-0.0.0-20201214200347-8c77b98c765d" -; ,go-google-golang-org-genproto-0.0.0-20201214200347-8c77b98c765d) -; ("go-google-golang-org-appengine-1.6.7" -; ,go-google-golang-org-appengine-1.6.7) -; ("go-golang-org-x-tools-0.0.0-20210105154028-b0ab187a4818" -; ,go-golang-org-x-tools-0.0.0-20210105154028-b0ab187a4818) -; ("go-golang-org-x-sys-0.0.0-20210104204734-6f8348627aad" -; ,go-golang-org-x-sys-0.0.0-20210104204734-6f8348627aad) -; ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" -; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) -; ("go-golang-org-x-oauth2-0.0.0-20201208152858-08078c50e5b5" -; ,go-golang-org-x-oauth2-0.0.0-20201208152858-08078c50e5b5) -; ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" -; ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) -; ("go-go-opencensus-io-0.22.5" ,go-go-opencensus-io-0.22.5) -; ("go-github-com-googleapis-gax-go-v2-2.0.5" -; ,go-github-com-googleapis-gax-go-v2-2.0.5) -; ("go-github-com-google-go-cmp-0.5.4" -; ,go-github-com-google-go-cmp-0.5.4) -; ("go-cloud-google-com-go-0.74.0" ,go-cloud-google-com-go-0.74.0))) -; (home-page "https://google.golang.org/api") -; (synopsis "Google APIs Client Library for Go") -; (description -; "Package api is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of -;sub-packages. -;") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20210222152913-aa3ee6e6a81c -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20210222152913-aa3ee6e6a81c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "06wa7v3s558rwxsqd1kqz5xy10kigzx50ciqh3zdxsbvxqvjwxrx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.24.0" -; ,go-google-golang-org-protobuf-1.24.0) -; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) -; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" -; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-github-com-golang-protobuf-1.4.1" -; ,go-github-com-golang-protobuf-1.4.1))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-grpc-1.35.0 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.35.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "15ij5acp9h8dxq0brc0jljj98badri23zpm4yvmsn6gnnxaykl72")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.25.0" -; ,go-google-golang-org-protobuf-1.25.0) -; ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" -; ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) -; ("go-github-com-google-go-cmp-0.5.0" -; ,go-github-com-google-go-cmp-0.5.0) -; ("go-github-com-golang-protobuf-1.4.2" -; ,go-github-com-golang-protobuf-1.4.2) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad" -; ,go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad) -; ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" -; ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-cloud-google-com-go-0.78.0 -; (package -; (name "go-cloud-google-com-go") -; (version "0.78.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-cloud-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "11wldladkcz41ivsfnbrqy2hg5wp55d72hnr2wki0zvnhbzsj376")))) -; (build-system go-build-system) -; (arguments '(#:import-path "cloud.google.com/go")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.35.0" ,go-google-golang-org-grpc-1.35.0) -; ("go-google-golang-org-genproto-0.0.0-20210222152913-aa3ee6e6a81c" -; ,go-google-golang-org-genproto-0.0.0-20210222152913-aa3ee6e6a81c) -; ("go-google-golang-org-api-0.40.0" ,go-google-golang-org-api-0.40.0) -; ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) -; ("go-golang-org-x-text-0.3.5" ,go-golang-org-x-text-0.3.5) -; ("go-golang-org-x-sys-0.0.0-20210220050731-9a76102bfb43" -; ,go-golang-org-x-sys-0.0.0-20210220050731-9a76102bfb43) -; ("go-golang-org-x-oauth2-0.0.0-20210218202405-ba52d332ba99" -; ,go-golang-org-x-oauth2-0.0.0-20210218202405-ba52d332ba99) -; ("go-golang-org-x-net-0.0.0-20210119194325-5f4716e94777" -; ,go-golang-org-x-net-0.0.0-20210119194325-5f4716e94777) -; ("go-golang-org-x-mod-0.4.1" ,go-golang-org-x-mod-0.4.1) -; ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" -; ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) -; ("go-go-opencensus-io-0.22.5" ,go-go-opencensus-io-0.22.5) -; ("go-github-com-jstemmer-go-junit-report-0.9.1" -; ,go-github-com-jstemmer-go-junit-report-0.9.1) -; ("go-github-com-googleapis-gax-go-v2-2.0.5" -; ,go-github-com-googleapis-gax-go-v2-2.0.5) -; ("go-github-com-google-pprof-0.0.0-20210122040257-d980be63207e" -; ,go-github-com-google-pprof-0.0.0-20210122040257-d980be63207e) -; ("go-github-com-google-martian-v3-3.1.0" -; ,go-github-com-google-martian-v3-3.1.0) -; ("go-github-com-google-go-cmp-0.5.4" -; ,go-github-com-google-go-cmp-0.5.4) -; ("go-github-com-golang-protobuf-1.4.3" -; ,go-github-com-golang-protobuf-1.4.3) -; ("go-github-com-golang-mock-1.4.4" ,go-github-com-golang-mock-1.4.4) -; ("go-cloud-google-com-go-storage-1.10.0" -; ,go-cloud-google-com-go-storage-1.10.0))) -; (home-page "https://cloud.google.com/go") -; (synopsis "Google Cloud Client Libraries for Go") -; (description -; "Package cloud is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -;of sub-packages. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-oauth2-0.0.0-20210220000619-9bb904979d93 -; (package -; (name "go-golang-org-x-oauth2") -; (version "0.0.0-20210220000619-9bb904979d93") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/oauth2") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1rhndpvpvfy5bsaxi974cznlq4hbamhmy6l06ppp9phh12pvn11p")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/oauth2")) -; (propagated-inputs -; `(("go-google-golang-org-appengine-1.6.6" -; ,go-google-golang-org-appengine-1.6.6) -; ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" -; ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) -; ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) -; (home-page "https://golang.org/x/oauth2") -; (synopsis "OAuth2 for Go") -; (description -; "Package oauth2 provides support for making -;OAuth2 authorized and authenticated HTTP requests, -;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -;It can additionally grant authorization with Bearer JWT. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20210305230114-8fe3ee5dd75b -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20210305230114-8fe3ee5dd75b") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1x7fn66vplxkac6lbwqv649wwnx7kz0bqdzgr98z7yx7cfdxd7rj")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20210303154014-9728d6b83eeb -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20210303154014-9728d6b83eeb") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1abic7gjp07d1s6imjfn00s316xdirss3zvcric74gr9varr02xn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.24.0" -; ,go-google-golang-org-protobuf-1.24.0) -; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) -; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" -; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-github-com-golang-protobuf-1.4.1" -; ,go-github-com-golang-protobuf-1.4.1))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-api-0.41.0 -; (package -; (name "go-google-golang-org-api") -; (version "0.41.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-api-go-client") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0yzz534xzl2km3vxr18h204yvnrzqlss02fagg2ign0sy3qnlkhx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/api")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.36.0" ,go-google-golang-org-grpc-1.36.0) -; ("go-google-golang-org-genproto-0.0.0-20210303154014-9728d6b83eeb" -; ,go-google-golang-org-genproto-0.0.0-20210303154014-9728d6b83eeb) -; ("go-google-golang-org-appengine-1.6.7" -; ,go-google-golang-org-appengine-1.6.7) -; ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) -; ("go-golang-org-x-sys-0.0.0-20210305230114-8fe3ee5dd75b" -; ,go-golang-org-x-sys-0.0.0-20210305230114-8fe3ee5dd75b) -; ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" -; ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) -; ("go-golang-org-x-oauth2-0.0.0-20210220000619-9bb904979d93" -; ,go-golang-org-x-oauth2-0.0.0-20210220000619-9bb904979d93) -; ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" -; ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) -; ("go-go-opencensus-io-0.23.0" ,go-go-opencensus-io-0.23.0) -; ("go-github-com-googleapis-gax-go-v2-2.0.5" -; ,go-github-com-googleapis-gax-go-v2-2.0.5) -; ("go-github-com-google-go-cmp-0.5.5" -; ,go-github-com-google-go-cmp-0.5.5) -; ("go-cloud-google-com-go-0.78.0" ,go-cloud-google-com-go-0.78.0))) -; (home-page "https://google.golang.org/api") -; (synopsis "Google APIs Client Library for Go") -; (description -; "Package api is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of -;sub-packages. -;") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20210310155132-4ce2db91004e -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20210310155132-4ce2db91004e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0r5f024c4piqna27pvc28m0h44ms9rhcbihf1zn5l8prf4vvrdw9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.24.0" -; ,go-google-golang-org-protobuf-1.24.0) -; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) -; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" -; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-github-com-golang-protobuf-1.4.1" -; ,go-github-com-golang-protobuf-1.4.1))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-cloud-google-com-go-0.79.0 -; (package -; (name "go-cloud-google-com-go") -; (version "0.79.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-cloud-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "031jrfgyys0slh154593d4swj6iqrjvs9dxwmab99dl6zfws77jv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "cloud.google.com/go")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.36.0" ,go-google-golang-org-grpc-1.36.0) -; ("go-google-golang-org-genproto-0.0.0-20210310155132-4ce2db91004e" -; ,go-google-golang-org-genproto-0.0.0-20210310155132-4ce2db91004e) -; ("go-google-golang-org-api-0.41.0" ,go-google-golang-org-api-0.41.0) -; ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) -; ("go-golang-org-x-text-0.3.5" ,go-golang-org-x-text-0.3.5) -; ("go-golang-org-x-oauth2-0.0.0-20210220000619-9bb904979d93" -; ,go-golang-org-x-oauth2-0.0.0-20210220000619-9bb904979d93) -; ("go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110" -; ,go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110) -; ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" -; ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) -; ("go-go-opencensus-io-0.23.0" ,go-go-opencensus-io-0.23.0) -; ("go-github-com-jstemmer-go-junit-report-0.9.1" -; ,go-github-com-jstemmer-go-junit-report-0.9.1) -; ("go-github-com-googleapis-gax-go-v2-2.0.5" -; ,go-github-com-googleapis-gax-go-v2-2.0.5) -; ("go-github-com-google-pprof-0.0.0-20210226084205-cbba55b83ad5" -; ,go-github-com-google-pprof-0.0.0-20210226084205-cbba55b83ad5) -; ("go-github-com-google-martian-v3-3.1.0" -; ,go-github-com-google-martian-v3-3.1.0) -; ("go-github-com-google-go-cmp-0.5.5" -; ,go-github-com-google-go-cmp-0.5.5) -; ("go-github-com-golang-protobuf-1.4.3" -; ,go-github-com-golang-protobuf-1.4.3) -; ("go-github-com-golang-mock-1.5.0" ,go-github-com-golang-mock-1.5.0) -; ("go-cloud-google-com-go-storage-1.10.0" -; ,go-cloud-google-com-go-storage-1.10.0))) -; (home-page "https://cloud.google.com/go") -; (synopsis "Google Cloud Client Libraries for Go") -; (description -; "Package cloud is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -;of sub-packages. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-oauth2-0.0.0-20210313182246-cd4f82c27b84 -; (package -; (name "go-golang-org-x-oauth2") -; (version "0.0.0-20210313182246-cd4f82c27b84") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/oauth2") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1jf68sh1957ji1lv1zrrhsbm6jr3508pw159pfzgyw6hbzsg5amv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/oauth2")) -; (propagated-inputs -; `(("go-google-golang-org-appengine-1.6.6" -; ,go-google-golang-org-appengine-1.6.6) -; ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" -; ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) -; ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) -; (home-page "https://golang.org/x/oauth2") -; (synopsis "OAuth2 for Go") -; (description -; "Package oauth2 provides support for making -;OAuth2 authorized and authenticated HTTP requests, -;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -;It can additionally grant authorization with Bearer JWT. -;") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20210319143718-93e7006c17a6 -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20210319143718-93e7006c17a6") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0l143m8rn7zmbfb2rpdawhxs8qjbdpn61hqynf47j5hwsbjci2xs")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.24.0" -; ,go-google-golang-org-protobuf-1.24.0) -; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) -; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" -; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-github-com-golang-protobuf-1.4.1" -; ,go-github-com-golang-protobuf-1.4.1))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-grpc-1.36.0 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.36.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1m4xsfv3ysc84cwqxqqr61fs3d2w04f0q5xbdjijhczjixcxwh5i")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.25.0" -; ,go-google-golang-org-protobuf-1.25.0) -; ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" -; ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) -; ("go-github-com-google-go-cmp-0.5.0" -; ,go-github-com-google-go-cmp-0.5.0) -; ("go-github-com-golang-protobuf-1.4.2" -; ,go-github-com-golang-protobuf-1.4.2) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad" -; ,go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad) -; ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" -; ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-api-0.43.0 -; (package -; (name "go-google-golang-org-api") -; (version "0.43.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-api-go-client") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0wxxbihigjn49warampi7gqfslbnp9nrj5zmk8p3ssq429jpvsib")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/api")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.36.0" ,go-google-golang-org-grpc-1.36.0) -; ("go-google-golang-org-genproto-0.0.0-20210319143718-93e7006c17a6" -; ,go-google-golang-org-genproto-0.0.0-20210319143718-93e7006c17a6) -; ("go-google-golang-org-appengine-1.6.7" -; ,go-google-golang-org-appengine-1.6.7) -; ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) -; ("go-golang-org-x-sys-0.0.0-20210320140829-1e4c9ba3b0c4" -; ,go-golang-org-x-sys-0.0.0-20210320140829-1e4c9ba3b0c4) -; ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" -; ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) -; ("go-golang-org-x-oauth2-0.0.0-20210313182246-cd4f82c27b84" -; ,go-golang-org-x-oauth2-0.0.0-20210313182246-cd4f82c27b84) -; ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" -; ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) -; ("go-go-opencensus-io-0.23.0" ,go-go-opencensus-io-0.23.0) -; ("go-github-com-googleapis-gax-go-v2-2.0.5" -; ,go-github-com-googleapis-gax-go-v2-2.0.5) -; ("go-github-com-google-go-cmp-0.5.5" -; ,go-github-com-google-go-cmp-0.5.5) -; ("go-cloud-google-com-go-0.79.0" ,go-cloud-google-com-go-0.79.0))) -; (home-page "https://google.golang.org/api") -; (synopsis "Google APIs Client Library for Go") -; (description -; "Package api is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of -;sub-packages. -;") -; (license license:bsd-3))) -; -;(define-public go-cloud-google-com-go-0.81.0 -; (package -; (name "go-cloud-google-com-go") -; (version "0.81.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-cloud-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "15jgynqb5pbxqbj3a7ii970yn4srsw1dbxzxnhpkfkmplalpgyh3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "cloud.google.com/go")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.36.1" ,go-google-golang-org-grpc-1.36.1) -; ("go-google-golang-org-genproto-0.0.0-20210402141018-6c239bbf2bb1" -; ,go-google-golang-org-genproto-0.0.0-20210402141018-6c239bbf2bb1) -; ("go-google-golang-org-api-0.43.0" ,go-google-golang-org-api-0.43.0) -; ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) -; ("go-golang-org-x-text-0.3.5" ,go-golang-org-x-text-0.3.5) -; ("go-golang-org-x-oauth2-0.0.0-20210313182246-cd4f82c27b84" -; ,go-golang-org-x-oauth2-0.0.0-20210313182246-cd4f82c27b84) -; ("go-golang-org-x-net-0.0.0-20210316092652-d523dce5a7f4" -; ,go-golang-org-x-net-0.0.0-20210316092652-d523dce5a7f4) -; ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" -; ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) -; ("go-go-opencensus-io-0.23.0" ,go-go-opencensus-io-0.23.0) -; ("go-github-com-jstemmer-go-junit-report-0.9.1" -; ,go-github-com-jstemmer-go-junit-report-0.9.1) -; ("go-github-com-googleapis-gax-go-v2-2.0.5" -; ,go-github-com-googleapis-gax-go-v2-2.0.5) -; ("go-github-com-google-pprof-0.0.0-20210226084205-cbba55b83ad5" -; ,go-github-com-google-pprof-0.0.0-20210226084205-cbba55b83ad5) -; ("go-github-com-google-martian-v3-3.1.0" -; ,go-github-com-google-martian-v3-3.1.0) -; ("go-github-com-google-go-cmp-0.5.5" -; ,go-github-com-google-go-cmp-0.5.5) -; ("go-github-com-golang-protobuf-1.5.1" -; ,go-github-com-golang-protobuf-1.5.1) -; ("go-github-com-golang-mock-1.5.0" ,go-github-com-golang-mock-1.5.0) -; ("go-cloud-google-com-go-storage-1.10.0" -; ,go-cloud-google-com-go-storage-1.10.0))) -; (home-page "https://cloud.google.com/go") -; (synopsis "Google Cloud Client Libraries for Go") -; (description -; "Package cloud is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -;of sub-packages. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e -; (package -; (name "go-github-com-golang-groupcache") -; (version "0.0.0-20200121045136-8c9f03a8e57e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/groupcache") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0vjjr79r32icjzlb05wn02k59av7jx0rn1jijml8r4whlg7dnkfh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/groupcache")) -; (home-page "https://github.com/golang/groupcache") -; (synopsis "groupcache") -; (description -; "Package groupcache provides a data loading mechanism with caching -;and de-duplication that works across a set of peer processes. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-golang-protobuf-1.4.3 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.4.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1kf1d7xmyjvy0z6j5czp6nqyvj9zrk6liv6znif08927xqfrzyln")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.23.0" -; ,go-google-golang-org-protobuf-1.23.0) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0))) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-github-com-google-go-cmp-0.5.3 -; (package -; (name "go-github-com-google-go-cmp") -; (version "0.5.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/go-cmp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "011gdkmyk3w7qkcwljhqak4h5npn4n7fwgx1fwpyx9c7wizvgkm5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/go-cmp")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" -; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) -; (home-page "https://github.com/google/go-cmp") -; (synopsis "Package for equality of Go values") -; (description -; "This package is intended to be a more powerful and safer alternative to -;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") -; (license license:bsd-3))) -; -;(define-public go-github-com-stretchr-testify-1.6.1 -; (package -; (name "go-github-com-stretchr-testify") -; (version "1.6.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/testify") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1yhiqqzjvi63pf01rgzx68gqkkvjx03fvl5wk30br5l6s81s090l")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/testify")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" -; ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) -; ("go-github-com-stretchr-objx-0.1.0" -; ,go-github-com-stretchr-objx-0.1.0) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-davecgh-go-spew-1.1.0" -; ,go-github-com-davecgh-go-spew-1.1.0))) -; (home-page "https://github.com/stretchr/testify") -; (synopsis "Testify - Thou Shalt Write Tests") -; (description -; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20201110031124-69a78807bb2b") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "176z5k6jbhr9vf0am2avl1lyqwym3q0mri98yb8r572z33qmcw1d")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) -; ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" -; ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) -; ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" -; ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-grpc-1.33.2 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.33.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "03yz4nlf4kqbnpw48f0mvcb2f5zzy0vjd5i2iw0hrjspd0238fzk")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.25.0" -; ,go-google-golang-org-protobuf-1.25.0) -; ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" -; ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) -; ("go-github-com-google-go-cmp-0.5.0" -; ,go-github-com-google-go-cmp-0.5.0) -; ("go-github-com-golang-protobuf-1.4.1" -; ,go-github-com-golang-protobuf-1.4.1) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-envoyproxy-go-control-plane-0.9.4" -; ,go-github-com-envoyproxy-go-control-plane-0.9.4) -; ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" -; ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-go-opencensus-io-0.23.0 -; (package -; (name "go-go-opencensus-io") -; (version "0.23.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/census-instrumentation/opencensus-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0gw4f7inf8y2ik00yfb36xganiq9rl4w2d1a41bsjqsh83ajz2km")))) -; (build-system go-build-system) -; (arguments '(#:import-path "go.opencensus.io")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.33.2" ,go-google-golang-org-grpc-1.33.2) -; ("go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b" -; ,go-golang-org-x-net-0.0.0-20201110031124-69a78807bb2b) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-google-go-cmp-0.5.3" -; ,go-github-com-google-go-cmp-0.5.3) -; ("go-github-com-golang-protobuf-1.4.3" -; ,go-github-com-golang-protobuf-1.4.3) -; ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" -; ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e))) -; (home-page "https://go.opencensus.io") -; (synopsis "OpenCensus Libraries for Go") -; (description "Package opencensus contains Go support for OpenCensus. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-golang-mock-1.4.4 -; (package -; (name "go-github-com-golang-mock") -; (version "1.4.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/mock") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1lj0dvd6div4jaq1s0afpwqaq9ah8cxhkq93wii2ably1xmp2l0a")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/mock")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262" -; ,go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262))) -; (home-page "https://github.com/golang/mock") -; (synopsis "gomock") -; (description -; "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It -;integrates well with Go's built-in @code{testing} package, but can be used in other -;contexts too.") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-tools-0.0.0-20200825202427-b303f430e36d -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20200825202427-b303f430e36d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0zzf6ifzjvkwin6m97jp2dndbfac0sbdr84ki79j9srhpqdigl75")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" -; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) -; ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" -; ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) -; ("go-golang-org-x-net-0.0.0-20200625001655-4c5254603344" -; ,go-golang-org-x-net-0.0.0-20200625001655-4c5254603344) -; ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) -; ("go-github-com-yuin-goldmark-1.1.32" -; ,go-github-com-yuin-goldmark-1.1.32))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20190628185345-da137c7871d7 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20190628185345-da137c7871d7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1qsiyr3irmb6ii06hivm9p2c7wqyxczms1a9v1ss5698yjr3fg47")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-github-com-google-martian-v3-3.0.0 -; (package -; (name "go-github-com-google-martian-v3") -; (version "3.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/martian") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ngvs4l6a06s8scnliq9i5pwvwpzfpa5wf9skg0gcvysli1rm3fm")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/martian/v3")) -; (propagated-inputs -; `(("go-golang-org-x-net-0.0.0-20190628185345-da137c7871d7" -; ,go-golang-org-x-net-0.0.0-20190628185345-da137c7871d7))) -; (home-page "https://github.com/google/martian") -; (synopsis "Martian Proxy") -; (description -; "Package martian provides an HTTP/1.1 proxy with an API for configurable -;request and response modifiers. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-google-pprof-0.0.0-20200708004538-1a94d8640e99 -; (package -; (name "go-github-com-google-pprof") -; (version "0.0.0-20200708004538-1a94d8640e99") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/pprof") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0isfwwan9vimwsfjml0phwrqv6kb83mkmk063dcb81k09gzzs3wy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/pprof")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" -; ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) -; ("go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6" -; ,go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6) -; ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" -; ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) -; ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" -; ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) -; ("go-github-com-chzyer-logex-1.1.10" -; ,go-github-com-chzyer-logex-1.1.10))) -; (home-page "https://github.com/google/pprof") -; (synopsis "Introduction") -; (description -; "pprof is a tool for collection, manipulation and visualization -;of performance profiles. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-net-0.0.0-20200707034311-ab3426394381 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20200707034311-ab3426394381") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1wr7rnnqp210yykkypinb8ciszx28aq5a3l3dvsv6swzxxngs8zn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" -; ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) -; ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" -; ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20200729194436-6467de6f59a7 -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20200729194436-6467de6f59a7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "14zpkr5idlx2zbm5dp7gk4afppy7k3j4y68s1qvpgi70yazaxzkd")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" -; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) -; ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" -; ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) -; ("go-golang-org-x-net-0.0.0-20200625001655-4c5254603344" -; ,go-golang-org-x-net-0.0.0-20200625001655-4c5254603344) -; ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) -; ("go-github-com-yuin-goldmark-1.1.32" -; ,go-github-com-yuin-goldmark-1.1.32))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262 -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20190425150028-36563e24a262") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0lasi96f6a1h11gkm8kl33x03pmxp369wrqq2dg7x7xv9nq76d6g")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" -; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-text-0.0.0-20170915032832-14c0d48ead0c -; (package -; (name "go-golang-org-x-text") -; (version "0.0.0-20170915032832-14c0d48ead0c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/text") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0y0nrj4hw7vby6m3iqklbf4v7njqlsx7s4pwfkwmvh1ryn1kb7d6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/text")) -; (home-page "https://golang.org/x/text") -; (synopsis "Go Text") -; (description -; "text is a repository of text-related packages related to internationalization -;(i18n) and localization (l10n), such as character encodings, text -;transformations, and locale-specific text handling. -;") -; (license license:bsd-3))) -; -;(define-public go-rsc-io-sampler-1.3.0 -; (package -; (name "go-rsc-io-sampler") -; (version "1.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/rsc/sampler") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0byxk2ynba50py805kcvbvjzh59l1r308i1xgyzpw6lff4xx9xjh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "rsc.io/sampler")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.0.0-20170915032832-14c0d48ead0c" -; ,go-golang-org-x-text-0.0.0-20170915032832-14c0d48ead0c))) -; (home-page "https://rsc.io/sampler") -; (synopsis #f) -; (description "Package sampler shows simple texts. -;") -; (license license:bsd-3))) -; -;(define-public go-rsc-io-quote-v3-3.1.0 -; (package -; (name "go-rsc-io-quote-v3") -; (version "3.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/rsc/quote") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0nvv97hwwrl1mx5gzsbdm1ndnwpg3m7i2jb10ig9wily7zmvki0i")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "rsc.io/quote/v3" #:unpack-path "rsc.io/quote/v3")) -; (propagated-inputs `(("go-rsc-io-sampler-1.3.0" ,go-rsc-io-sampler-1.3.0))) -; (home-page "https://rsc.io/quote/v3") -; (synopsis #f) -; (description "Package quote collects pithy sayings. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-mock-1.4.3 -; (package -; (name "go-github-com-golang-mock") -; (version "1.4.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/mock") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1p37xnja1dgq5ykx24n7wincwz2gahjh71b95p8vpw7ss2g8j8wx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/mock")) -; (propagated-inputs -; `(("go-rsc-io-quote-v3-3.1.0" ,go-rsc-io-quote-v3-3.1.0) -; ("go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262" -; ,go-golang-org-x-tools-0.0.0-20190425150028-36563e24a262))) -; (home-page "https://github.com/golang/mock") -; (synopsis "gomock") -; (description -; "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It -;integrates well with Go's built-in @code{testing} package, but can be used in other -;contexts too.") -; (license license:asl2.0))) -; -;(define-public go-github-com-golang-protobuf-1.3.5 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.3.5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1gkd1942vk9n8kfzdwy1iil6wgvlwjq7a3y5jc49ck4lz9rhmgkq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-github-com-chzyer-logex-1.1.10 -; (package -; (name "go-github-com-chzyer-logex") -; (version "1.1.10") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/chzyer/logex") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "08pbjj3wx9acavlwyr055isa8a5hnmllgdv5k6ra60l5y1brmlq4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/chzyer/logex")) -; (home-page "https://github.com/chzyer/logex") -; (synopsis #f) -; (description #f) -; (license #f))) -; -;(define-public go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e -; (package -; (name "go-github-com-chzyer-readline") -; (version "0.0.0-20180603132655-2972be24d48e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/chzyer/readline") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "104q8dazj8yf6b089jjr82fy9h1g80zyyzvp3g8b44a7d8ngjj6r")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/chzyer/readline")) -; (home-page "https://github.com/chzyer/readline") -; (synopsis "Guide") -; (description -; "Readline is a pure go implementation for GNU-Readline kind library. -;") -; (license license:expat))) -; -;(define-public go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1 -; (package -; (name "go-github-com-chzyer-test") -; (version "0.0.0-20180213035817-a1ea475d72b1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/chzyer/test") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0rns2aqk22i9xsgyap0pq8wi4cfaxsri4d9q6xxhhyma8jjsnj2k")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/chzyer/test")) -; (home-page "https://github.com/chzyer/test") -; (synopsis "test") -; (description #f) -; (license license:expat))) -; -;(define-public go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6 -; (package -; (name "go-github-com-ianlancetaylor-demangle") -; (version "0.0.0-20181102032728-5e5cf60278f6") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/ianlancetaylor/demangle") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1fhjk11cip9c3jyj1byz9z77n6n2rlxmyz0xjx1zpn1da3cvri75")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/ianlancetaylor/demangle")) -; (home-page "https://github.com/ianlancetaylor/demangle") -; (synopsis "github.com/ianlancetaylor/demangle") -; (description -; "Package demangle defines functions that demangle GCC/LLVM -;C++ and Rust symbol names. -;This package recognizes names that were mangled according to the C++ ABI -;defined at @url{http://codesourcery.com/cxx-abi/,http://codesourcery.com/cxx-abi/} and the Rust ABI -;defined at -;@url{https://rust-lang.github.io/rfcs/2603-rust-symbol-name-mangling-v0.html,https://rust-lang.github.io/rfcs/2603-rust-symbol-name-mangling-v0.html} -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20191204072324-ce4227a45e2e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1s43wvqfml6ml5ks7iv2bis9d664g77mq86v7mfmjhn56x856g35")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-google-pprof-0.0.0-20200229191704-1ebb73c60ed3 -; (package -; (name "go-github-com-google-pprof") -; (version "0.0.0-20200229191704-1ebb73c60ed3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/pprof") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1gdi9p4j1zfm5xlm488i5l0q3kk4q6hsmbmlk6p729i0di2n3ifa")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/pprof")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e" -; ,go-golang-org-x-sys-0.0.0-20191204072324-ce4227a45e2e) -; ("go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6" -; ,go-github-com-ianlancetaylor-demangle-0.0.0-20181102032728-5e5cf60278f6) -; ("go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1" -; ,go-github-com-chzyer-test-0.0.0-20180213035817-a1ea475d72b1) -; ("go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e" -; ,go-github-com-chzyer-readline-0.0.0-20180603132655-2972be24d48e) -; ("go-github-com-chzyer-logex-1.1.10" -; ,go-github-com-chzyer-logex-1.1.10))) -; (home-page "https://github.com/google/pprof") -; (synopsis "Introduction") -; (description -; "pprof is a tool for collection, manipulation and visualization -;of performance profiles. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-jstemmer-go-junit-report-0.9.1 -; (package -; (name "go-github-com-jstemmer-go-junit-report") -; (version "0.9.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/jstemmer/go-junit-report") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1knip80yir1cdsjlb3rzy0a4w3kl4ljpiciaz6hjzwqlfhnv7bkw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/jstemmer/go-junit-report")) -; (home-page "https://github.com/jstemmer/go-junit-report") -; (synopsis "go-junit-report") -; (description -; "Converts @code{go test} output to an xml report, suitable for applications that -;expect junit xml reports (e.g. @url{http://jenkins-ci.org,Jenkins}).") -; (license license:expat))) -; -;(define-public go-golang-org-x-net-0.0.0-20200324143707-d3edc9973b7e -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20200324143707-d3edc9973b7e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "12zbjwcsh9b0lwycqlkrnbyg5a6a9dzgj8hhgq399bdda5bd97y7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" -; ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-mock-1.2.0 -; (package -; (name "go-github-com-golang-mock") -; (version "1.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/mock") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "12ddj2g8ab87id6n2n67vnbhq6p8dvgsq1pzpqfriym4dk8w54fg")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/mock")) -; (home-page "https://github.com/golang/mock") -; (synopsis "gomock") -; (description -; "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It -;integrates well with Go's built-in @code{testing} package, but can be used in other -;contexts too.") -; (license license:asl2.0))) -; -;(define-public go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c -; (package -; (name "go-github-com-google-btree") -; (version "0.0.0-20180813153112-4030bb1f1f0c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/btree") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ba430m9fbnagacp57krgidsyrgp3ycw5r7dj71brgp5r52g82p6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/btree")) -; (home-page "https://github.com/google/btree") -; (synopsis "BTree implementation for Go") -; (description -; "Package btree implements in-memory B-Trees of arbitrary degree. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-google-martian-2.1.0+incompatible -; (package -; (name "go-github-com-google-martian") -; (version "2.1.0+incompatible") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/martian") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "197hil6vrjk50b9wvwyzf61csid83whsjj6ik8mc9r2lryxlyyrp")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/martian")) -; (home-page "https://github.com/google/martian") -; (synopsis "Martian Proxy") -; (description -; "Package martian provides an HTTP/1.1 proxy with an API for configurable -;request and response modifiers. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-google-pprof-0.0.0-20181206194817-3ea8567a2e57 -; (package -; (name "go-github-com-google-pprof") -; (version "0.0.0-20181206194817-3ea8567a2e57") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/pprof") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "09rhjn3ms0a72dw0yzbp237p7yhqma772zspddn6mgkh3gi3kn4c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/pprof")) -; (home-page "https://github.com/google/pprof") -; (synopsis "Introduction") -; (description -; "pprof is a tool for collection, manipulation and visualization -;of performance profiles. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-googleapis-gax-go-v2-2.0.4 -; (package -; (name "go-github-com-googleapis-gax-go-v2") -; (version "2.0.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/gax-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1iwnm6ky1x53lgs44mw3hpdkjzrm5qd0kfs50m0qcq2ml5m1cwdm")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/googleapis/gax-go/v2")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.19.0" -; ,go-google-golang-org-grpc-1.19.0))) -; (home-page "https://github.com/googleapis/gax-go") -; (synopsis #f) -; (description -; "Package gax contains a set of modules which aid the development of APIs -;for clients and servers based on gRPC and Google API conventions. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-jstemmer-go-junit-report-0.0.0-20190106144839-af01ea7f8024 -; (package -; (name "go-github-com-jstemmer-go-junit-report") -; (version "0.0.0-20190106144839-af01ea7f8024") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/jstemmer/go-junit-report") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1lp3n94ris12hac02wi31f3whs88lcrzwgdg43a5j6cafg9p1d0s")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/jstemmer/go-junit-report")) -; (home-page "https://github.com/jstemmer/go-junit-report") -; (synopsis "go-junit-report") -; (description -; "Converts @code{go test} output to an xml report, suitable for applications that -;expect junit xml reports (e.g. @url{http://jenkins-ci.org,Jenkins}).") -; (license license:expat))) -; -;(define-public go-golang-org-x-text-0.3.1-0.20180807135948-17ff2d5776d2 -; (package -; (name "go-golang-org-x-text") -; (version "0.3.1-0.20180807135948-17ff2d5776d2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/text") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1rrh2mnmyxr45nsvy42zq3w3ly6gw6rl993knwvf1w71kyv0jjnj")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/text")) -; (home-page "https://golang.org/x/text") -; (synopsis "Go Text") -; (description -; "text is a repository of text-related packages related to internationalization -;(i18n) and localization (l10n), such as character encodings, text -;transformations, and locale-specific text handling. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-time-0.0.0-20181108054448-85acf8d2951c -; (package -; (name "go-golang-org-x-time") -; (version "0.0.0-20181108054448-85acf8d2951c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/time") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0yqnxsrarjk4qkda8kcxzmk7y90kkkxzx9iwryzrk7bzs87ky3xc")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/time")) -; (home-page "https://golang.org/x/time") -; (synopsis "Go Time") -; (description "This repository provides supplementary Go time packages.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f -; (package -; (name "go-golang-org-x-lint") -; (version "0.0.0-20190301231843-5614ed5bae6f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/lint") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0fzn0zjv0x92xvfdq3a0v9w5sgkhr7hxkfy9zaqi8i57807z8bnx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/lint")) -; (home-page "https://golang.org/x/lint") -; (synopsis "Installation") -; (description "Package lint contains a linter for Go source code. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421 -; (package -; (name "go-golang-org-x-oauth2") -; (version "0.0.0-20190226205417-e64efc72b421") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/oauth2") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0djvwz2avx7knsjbl434vw1wqbrg53xp1kh599gfixn5icrggz4m")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/oauth2")) -; (propagated-inputs -; `(("go-google-golang-org-appengine-1.4.0" -; ,go-google-golang-org-appengine-1.4.0) -; ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" -; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) -; ("go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e" -; ,go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e) -; ("go-cloud-google-com-go-0.34.0" ,go-cloud-google-com-go-0.34.0))) -; (home-page "https://golang.org/x/oauth2") -; (synopsis "OAuth2 for Go") -; (description -; "Package oauth2 provides support for making -;OAuth2 authorized and authenticated HTTP requests, -;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -;It can additionally grant authorization with Bearer JWT. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138 -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20190312170243-e65039ee4138") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0c094599cf70wdrms49a3879qkq122pqlp2av444gs2pvc8apdcx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-api-0.4.0 -; (package -; (name "go-google-golang-org-api") -; (version "0.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-api-go-client") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1hzgrw5wasmcjlqpxsmryddzzw4cwyzf2vx14i9z51v1plwssijm")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/api")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" -; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) -; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) -; ("go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19" -; ,go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19) -; ("go-google-golang-org-appengine-1.4.0" -; ,go-google-golang-org-appengine-1.4.0) -; ("go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138" -; ,go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138) -; ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" -; ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) -; ("go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421" -; ,go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421) -; ("go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f" -; ,go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f) -; ("go-go-opencensus-io-0.21.0" ,go-go-opencensus-io-0.21.0) -; ("go-github-com-google-go-cmp-0.2.0" -; ,go-github-com-google-go-cmp-0.2.0))) -; (home-page "https://google.golang.org/api") -; (synopsis "Google APIs Client Library for Go") -; (description -; "Package api is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of -;sub-packages. -;") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20190418145605-e7d98fc518a7 -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20190418145605-e7d98fc518a7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1cnavkyawwvfc5yl097ygnfy1ac69v4zc02gdfnq1bvgcvgmvnbi")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" -; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) -; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) -; ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" -; ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) -; ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" -; ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) -; ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" -; ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd) -; ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" -; ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) -; ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" -; ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-honnef-co-go-tools-0.0.0-20190106161140-3f1c8253044a -; (package -; (name "go-honnef-co-go-tools") -; (version "0.0.0-20190106161140-3f1c8253044a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/dominikh/go-tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0d3vgh0fgfj1z7i648g1s6x2pwxd07sxfjwg1xn3yagr9h06jh3h")))) -; (build-system go-build-system) -; (arguments '(#:import-path "honnef.co/go/tools")) -; (home-page "https://honnef.co/go/tools") -; (synopsis "Documentation") -; (description -; "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, -;offers simplifications, and enforces style rules.") -; (license license:expat))) -; -;(define-public go-cloud-google-com-go-0.38.0 -; (package -; (name "go-cloud-google-com-go") -; (version "0.38.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-cloud-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0n6n13b7lri2fmc4bn4ifszyawj31dpbzvyv0xafsf81440z8cyh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "cloud.google.com/go")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190106161140-3f1c8253044a" -; ,go-honnef-co-go-tools-0.0.0-20190106161140-3f1c8253044a) -; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) -; ("go-google-golang-org-genproto-0.0.0-20190418145605-e7d98fc518a7" -; ,go-google-golang-org-genproto-0.0.0-20190418145605-e7d98fc518a7) -; ("go-google-golang-org-api-0.4.0" ,go-google-golang-org-api-0.4.0) -; ("go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138" -; ,go-golang-org-x-tools-0.0.0-20190312170243-e65039ee4138) -; ("go-golang-org-x-time-0.0.0-20181108054448-85acf8d2951c" -; ,go-golang-org-x-time-0.0.0-20181108054448-85acf8d2951c) -; ("go-golang-org-x-text-0.3.1-0.20180807135948-17ff2d5776d2" -; ,go-golang-org-x-text-0.3.1-0.20180807135948-17ff2d5776d2) -; ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" -; ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) -; ("go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421" -; ,go-golang-org-x-oauth2-0.0.0-20190226205417-e64efc72b421) -; ("go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f" -; ,go-golang-org-x-lint-0.0.0-20190301231843-5614ed5bae6f) -; ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" -; ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) -; ("go-go-opencensus-io-0.21.0" ,go-go-opencensus-io-0.21.0) -; ("go-github-com-jstemmer-go-junit-report-0.0.0-20190106144839-af01ea7f8024" -; ,go-github-com-jstemmer-go-junit-report-0.0.0-20190106144839-af01ea7f8024) -; ("go-github-com-googleapis-gax-go-v2-2.0.4" -; ,go-github-com-googleapis-gax-go-v2-2.0.4) -; ("go-github-com-google-pprof-0.0.0-20181206194817-3ea8567a2e57" -; ,go-github-com-google-pprof-0.0.0-20181206194817-3ea8567a2e57) -; ("go-github-com-google-martian-2.1.0+incompatible" -; ,go-github-com-google-martian-2.1.0+incompatible) -; ("go-github-com-google-go-cmp-0.2.0" -; ,go-github-com-google-go-cmp-0.2.0) -; ("go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c" -; ,go-github-com-google-btree-0.0.0-20180813153112-4030bb1f1f0c) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0) -; ("go-github-com-golang-mock-1.2.0" ,go-github-com-golang-mock-1.2.0))) -; (home-page "https://cloud.google.com/go") -; (synopsis "Google Cloud Client Libraries for Go") -; (description -; "Package cloud is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -;of sub-packages. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-hashicorp-golang-lru-0.5.1 -; (package -; (name "go-github-com-hashicorp-golang-lru") -; (version "0.5.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/golang-lru") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "13f870cvk161bzjj6x41l45r5x9i1z9r2ymwmvm7768kg08zznpy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hashicorp/golang-lru")) -; (home-page "https://github.com/hashicorp/golang-lru") -; (synopsis "golang-lru") -; (description -; "Package lru provides three different LRU caches of varying sophistication. -;") -; (license license:mpl2.0))) -; -;(define-public go-github-com-hashicorp-golang-lru-0.5.0 -; (package -; (name "go-github-com-hashicorp-golang-lru") -; (version "0.5.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/golang-lru") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "12k2cp2k615fjvfa5hyb9k2alian77wivds8s65diwshwv41939f")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hashicorp/golang-lru")) -; (home-page "https://github.com/hashicorp/golang-lru") -; (synopsis "golang-lru") -; (description -; "Package lru provides three different LRU caches of varying sophistication. -;") -; (license license:mpl2.0))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19 -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20190307195333-5fe7a883aa19") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0qjkwig0r42q0j2qv57s4ahsgmmp41dz3ih3rnaqg0619n5w7lbs")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" -; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) -; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) -; ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" -; ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) -; ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" -; ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) -; ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" -; ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd) -; ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" -; ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) -; ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" -; ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-go-opencensus-io-0.21.0 -; (package -; (name "go-go-opencensus-io") -; (version "0.21.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/census-instrumentation/opencensus-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "14s0a12xdzjvad0dgksgv8m3hh7nc585abvjkvyk6r67a29lxj6x")))) -; (build-system go-build-system) -; (arguments '(#:import-path "go.opencensus.io")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) -; ("go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19" -; ,go-google-golang-org-genproto-0.0.0-20190307195333-5fe7a883aa19) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-github-com-hashicorp-golang-lru-0.5.0" -; ,go-github-com-hashicorp-golang-lru-0.5.0) -; ("go-github-com-google-go-cmp-0.2.0" -; ,go-github-com-google-go-cmp-0.2.0) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0))) -; (home-page "https://go.opencensus.io") -; (synopsis "OpenCensus Libraries for Go") -; (description "Package opencensus contains Go support for OpenCensus. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422 -; (package -; (name "go-golang-org-x-lint") -; (version "0.0.0-20190409202823-959b441ac422") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/lint") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1mgcv5f00pkzsbwnq2y7vqvd1b4lr5a3s47cphh2qv4indfk7pck")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/lint")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" -; ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd))) -; (home-page "https://golang.org/x/lint") -; (synopsis "Installation") -; (description "Package lint contains a linter for Go source code. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20190503192946-f4e77d36d62c -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20190503192946-f4e77d36d62c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0avjnglqqg9ya0cbhp23m4namykii219kxjywxn4cd7pfcc5arha")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45 -; (package -; (name "go-golang-org-x-oauth2") -; (version "0.0.0-20190604053449-0f29369cfe45") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/oauth2") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "06jwpvx0x2gjn2y959drbcir5kd7vg87k0r1216abk6rrdzzrzi2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/oauth2")) -; (propagated-inputs -; `(("go-google-golang-org-appengine-1.4.0" -; ,go-google-golang-org-appengine-1.4.0) -; ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" -; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) -; ("go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e" -; ,go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e) -; ("go-cloud-google-com-go-0.34.0" ,go-cloud-google-com-go-0.34.0))) -; (home-page "https://golang.org/x/oauth2") -; (synopsis "OAuth2 for Go") -; (description -; "Package oauth2 provides support for making -;OAuth2 authorized and authenticated HTTP requests, -;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -;It can additionally grant authorization with Bearer JWT. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190507160741-ecd444e8653b") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1vhld4948mzfnlgf20id29mv1bwpk9a3xlbw1mbjzxzxxdv1jds2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-appengine-1.5.0 -; (package -; (name "go-google-golang-org-appengine") -; (version "1.5.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/appengine") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0l7mkdnwhidv8m686x432vmx8z5nqcrr9f46ddgvrxbh4wvyfcll")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/appengine")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225" -; ,go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0))) -; (home-page "https://google.golang.org/appengine") -; (synopsis "Go App Engine packages") -; (description -; "Package appengine provides basic functionality for Google App Engine. -;") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-api-0.20.0 -; (package -; (name "go-google-golang-org-api") -; (version "0.20.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-api-go-client") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "13syr1x33k6mrn5w6l4sgdbzn368w3m60vf6kk2j10fwa45125rg")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/api")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" -; ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) -; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) -; ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" -; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) -; ("go-google-golang-org-appengine-1.5.0" -; ,go-google-golang-org-appengine-1.5.0) -; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" -; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) -; ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) -; ("go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b" -; ,go-golang-org-x-sys-0.0.0-20190507160741-ecd444e8653b) -; ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" -; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) -; ("go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45" -; ,go-golang-org-x-oauth2-0.0.0-20190604053449-0f29369cfe45) -; ("go-golang-org-x-net-0.0.0-20190503192946-f4e77d36d62c" -; ,go-golang-org-x-net-0.0.0-20190503192946-f4e77d36d62c) -; ("go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422" -; ,go-golang-org-x-lint-0.0.0-20190409202823-959b441ac422) -; ("go-go-opencensus-io-0.21.0" ,go-go-opencensus-io-0.21.0) -; ("go-github-com-hashicorp-golang-lru-0.5.1" -; ,go-github-com-hashicorp-golang-lru-0.5.1) -; ("go-github-com-googleapis-gax-go-v2-2.0.5" -; ,go-github-com-googleapis-gax-go-v2-2.0.5) -; ("go-github-com-google-go-cmp-0.3.0" -; ,go-github-com-google-go-cmp-0.3.0) -; ("go-cloud-google-com-go-0.38.0" ,go-cloud-google-com-go-0.38.0))) -; (home-page "https://google.golang.org/api") -; (synopsis "Google APIs Client Library for Go") -; (description -; "Package api is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of -;sub-packages. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-google-renameio-0.1.0 -; (package -; (name "go-github-com-google-renameio") -; (version "0.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/renameio") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ki2x5a9nrj17sn092d6n4zr29lfg5ydv4xz5cp58z6cw8ip43jx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/renameio")) -; (home-page "https://github.com/google/renameio") -; (synopsis "Atomicity vs durability") -; (description -; "Package renameio provides a way to atomically create or replace a file or -;symbolic link. -;") -; (license license:asl2.0))) -; -;(define-public go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127 -; (package -; (name "go-gopkg-in-check-v1") -; (version "1.0.0-20180628173108-788fd7840127") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/check.v1") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0v3bim0j375z81zrpr5qv42knqs0y2qv2vkjiqi5axvb78slki1a")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) -; (home-page "https://gopkg.in/check.v1") -; (synopsis "Instructions") -; (description -; "Package check is a rich testing extension for Go's testing package. -;") -; (license license:bsd-2))) -; -;(define-public go-gopkg-in-errgo-v2-2.1.0 -; (package -; (name "go-gopkg-in-errgo-v2") -; (version "2.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/errgo.v2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "065mbihiy7q67wnql0bzl9y1kkvck5ivra68254zbih52jxwrgr2")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/errgo.v2" #:unpack-path "gopkg.in/errgo.v2")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" -; ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) -; ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0))) -; (home-page "https://gopkg.in/errgo.v2") -; (synopsis #f) -; (description -; "Package errgo provides some primitives for error creation and handling.") -; (license license:bsd-3))) -; -;(define-public go-github-com-rogpeppe-go-internal-1.3.0 -; (package -; (name "go-github-com-rogpeppe-go-internal") -; (version "1.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/rogpeppe/go-internal") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0mcdh1licgnnahwml9y2iq6xy5x9xmjw5frcnds2s3wpjyqrl216")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/rogpeppe/go-internal")) -; (propagated-inputs -; `(("go-gopkg-in-errgo-v2-2.1.0" ,go-gopkg-in-errgo-v2-2.1.0))) -; (home-page "https://github.com/rogpeppe/go-internal") -; (synopsis #f) -; (description -; "This repository factors out an opinionated selection of internal packages and functionality from the Go standard -;library. Currently this consists mostly of packages and testing code from within the Go tool implementation.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20190510104115-cbcb75029529 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20190510104115-cbcb75029529") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "12831ga1gq04a3jbbcmww7kaqfdfgp7cdv2fj9aqidz8h52ajdmh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" -; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) -; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" -; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-mod-0.0.0-20190513183733-4bf6d317e70e -; (package -; (name "go-golang-org-x-mod") -; (version "0.0.0-20190513183733-4bf6d317e70e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/mod") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "19lg1ly3j31anx92p0hynic1gjk417wwxphfdrb2cq1c19kj3r17")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/mod")) -; (propagated-inputs -; `(("go-golang-org-x-crypto-0.0.0-20190510104115-cbcb75029529" -; ,go-golang-org-x-crypto-0.0.0-20190510104115-cbcb75029529))) -; (home-page "https://golang.org/x/mod") -; (synopsis "mod") -; (description -; "This repository holds packages for writing tools -;that work directly with Go module mechanics. -;That is, it is for direct manipulation of Go modules themselves.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20191130070609-6e064ea0cf2d -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20191130070609-6e064ea0cf2d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1nbki367xspsa37j6276f5q2gv31vfjpb52axn3p3ymz548my75d")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7" -; ,go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7) -; ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" -; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) -; ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" -; ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-honnef-co-go-tools-0.0.1-2020.1.3 -; (package -; (name "go-honnef-co-go-tools") -; (version "0.0.1-2020.1.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/dominikh/go-tools") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0pvi1mzhy6zgx4zfgdypbl4zhvgg11hl5qv7blf2qs0a96j2djhf")))) -; (build-system go-build-system) -; (arguments '(#:import-path "honnef.co/go/tools")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20191130070609-6e064ea0cf2d" -; ,go-golang-org-x-tools-0.0.0-20191130070609-6e064ea0cf2d) -; ("go-golang-org-x-mod-0.0.0-20190513183733-4bf6d317e70e" -; ,go-golang-org-x-mod-0.0.0-20190513183733-4bf6d317e70e) -; ("go-github-com-rogpeppe-go-internal-1.3.0" -; ,go-github-com-rogpeppe-go-internal-1.3.0) -; ("go-github-com-kisielk-gotool-1.0.0" -; ,go-github-com-kisielk-gotool-1.0.0) -; ("go-github-com-google-renameio-0.1.0" -; ,go-github-com-google-renameio-0.1.0) -; ("go-github-com-burntsushi-toml-0.3.1" -; ,go-github-com-burntsushi-toml-0.3.1))) -; (home-page "https://honnef.co/go/tools") -; (synopsis "Documentation") -; (description -; "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, -;offers simplifications, and enforces style rules.") -; (license license:expat))) -; -;(define-public go-cloud-google-com-go-0.56.0 -; (package -; (name "go-cloud-google-com-go") -; (version "0.56.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-cloud-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1bpx84q7byxr5rp197qcg3pl56acs8v1q555frxgcqygxwjacszf")))) -; (build-system go-build-system) -; (arguments '(#:import-path "cloud.google.com/go")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.1-2020.1.3" -; ,go-honnef-co-go-tools-0.0.1-2020.1.3) -; ("go-google-golang-org-grpc-1.28.0" ,go-google-golang-org-grpc-1.28.0) -; ("go-google-golang-org-genproto-0.0.0-20200331122359-1ee6d9798940" -; ,go-google-golang-org-genproto-0.0.0-20200331122359-1ee6d9798940) -; ("go-google-golang-org-api-0.20.0" ,go-google-golang-org-api-0.20.0) -; ("go-golang-org-x-tools-0.0.0-20200331025713-a30bf2db82d4" -; ,go-golang-org-x-tools-0.0.0-20200331025713-a30bf2db82d4) -; ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) -; ("go-golang-org-x-sys-0.0.0-20200331124033-c3d80250170d" -; ,go-golang-org-x-sys-0.0.0-20200331124033-c3d80250170d) -; ("go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a" -; ,go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a) -; ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" -; ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) -; ("go-golang-org-x-net-0.0.0-20200324143707-d3edc9973b7e" -; ,go-golang-org-x-net-0.0.0-20200324143707-d3edc9973b7e) -; ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" -; ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) -; ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) -; ("go-github-com-jstemmer-go-junit-report-0.9.1" -; ,go-github-com-jstemmer-go-junit-report-0.9.1) -; ("go-github-com-googleapis-gax-go-v2-2.0.5" -; ,go-github-com-googleapis-gax-go-v2-2.0.5) -; ("go-github-com-google-pprof-0.0.0-20200229191704-1ebb73c60ed3" -; ,go-github-com-google-pprof-0.0.0-20200229191704-1ebb73c60ed3) -; ("go-github-com-google-martian-2.1.0+incompatible" -; ,go-github-com-google-martian-2.1.0+incompatible) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.3.5" -; ,go-github-com-golang-protobuf-1.3.5) -; ("go-github-com-golang-mock-1.4.3" ,go-github-com-golang-mock-1.4.3) -; ("go-cloud-google-com-go-storage-1.6.0" -; ,go-cloud-google-com-go-storage-1.6.0) -; ("go-cloud-google-com-go-pubsub-1.2.0" -; ,go-cloud-google-com-go-pubsub-1.2.0) -; ("go-cloud-google-com-go-datastore-1.1.0" -; ,go-cloud-google-com-go-datastore-1.1.0) -; ("go-cloud-google-com-go-bigquery-1.4.0" -; ,go-cloud-google-com-go-bigquery-1.4.0))) -; (home-page "https://cloud.google.com/go") -; (synopsis "Google Cloud Client Libraries for Go") -; (description -; "Package cloud is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -;of sub-packages. -;") -; (license license:asl2.0))) -; -;(define-public go-go-opencensus-io-0.22.3 -; (package -; (name "go-go-opencensus-io") -; (version "0.22.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/census-instrumentation/opencensus-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0xj16iq5jp26hi2py7lsd8cvqh651fgn39y05gzvjdi88d9xd3nw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "go.opencensus.io")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.20.1" ,go-google-golang-org-grpc-1.20.1) -; ("go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb" -; ,go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb) -; ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) -; ("go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd" -; ,go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd) -; ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" -; ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) -; ("go-github-com-stretchr-testify-1.4.0" -; ,go-github-com-stretchr-testify-1.4.0) -; ("go-github-com-google-go-cmp-0.3.0" -; ,go-github-com-google-go-cmp-0.3.0) -; ("go-github-com-golang-protobuf-1.3.1" -; ,go-github-com-golang-protobuf-1.3.1) -; ("go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6" -; ,go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6))) -; (home-page "https://go.opencensus.io") -; (synopsis "OpenCensus Libraries for Go") -; (description "Package opencensus contains Go support for OpenCensus. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a -; (package -; (name "go-golang-org-x-sync") -; (version "0.0.0-20200317015054-43a5402ce75a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sync") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0j6zrrb81qjr1926kkwmn0di9a0jn8qyjd9dw614rfkihxgq1vsm")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sync")) -; (home-page "https://golang.org/x/sync") -; (synopsis "Go Sync") -; (description -; "This repository provides Go concurrency primitives in addition to the -;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20200331124033-c3d80250170d -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20200331124033-c3d80250170d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1nswjhkg7yixla0b3d8xwzf94rawwyjrxipay3ffdvm426n0ld42")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-yuin-goldmark-1.1.25 -; (package -; (name "go-github-com-yuin-goldmark") -; (version "1.1.25") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/yuin/goldmark") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0cr3mk8pr7vsyisgrvln5ailnnn9xhardcy8mkshybk5c3n1kw5k")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/yuin/goldmark")) -; (home-page "https://github.com/yuin/goldmark") -; (synopsis "goldmark") -; (description -; "Package goldmark implements functions to convert markdown text to a desired format. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-tools-0.0.0-20200331025713-a30bf2db82d4 -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20200331025713-a30bf2db82d4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1rb488ydwi24zmd1zvsv8k8srs3q6xnqqfdar538hssqgljyvp7l")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" -; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) -; ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" -; ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) -; ("go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b" -; ,go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b) -; ("go-golang-org-x-mod-0.2.0" ,go-golang-org-x-mod-0.2.0) -; ("go-github-com-yuin-goldmark-1.1.25" -; ,go-github-com-yuin-goldmark-1.1.25))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-appengine-1.6.5 -; (package -; (name "go-google-golang-org-appengine") -; (version "1.6.5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/appengine") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "05hbq4cs7bqw0zl17bx8rzdkszid3nyl92100scg3jjrg70dhm7w")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/appengine")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) -; ("go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65" -; ,go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65) -; ("go-github-com-golang-protobuf-1.3.1" -; ,go-github-com-golang-protobuf-1.3.1))) -; (home-page "https://google.golang.org/appengine") -; (synopsis "Go App Engine packages") -; (description -; "Package appengine provides basic functionality for Google App Engine. -;") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20200331122359-1ee6d9798940 -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20200331122359-1ee6d9798940") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1zsp55d7xjc0b3yw5jjpvbsc0gkji1c1j2vxmcwm89dh26rz4jwd")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" -; ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) -; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) -; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" -; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-github-com-golang-protobuf-1.3.3" -; ,go-github-com-golang-protobuf-1.3.3))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-grpc-1.28.0 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.28.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1m36rg3w2mf4r3383yf0r1pjrz890mdw506h1lpm6bkc8w3kyqz3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" -; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-github-com-google-go-cmp-0.2.0" -; ,go-github-com-google-go-cmp-0.2.0) -; ("go-github-com-golang-protobuf-1.3.3" -; ,go-github-com-golang-protobuf-1.3.3) -; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" -; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) -; ("go-github-com-envoyproxy-go-control-plane-0.9.4" -; ,go-github-com-envoyproxy-go-control-plane-0.9.4))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-api-0.29.0 -; (package -; (name "go-google-golang-org-api") -; (version "0.29.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-api-go-client") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1y6izqcc6krill33pb57fbgbs7ni3jxyf3knm5jkl4qydsj9303h")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/api")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.28.0" ,go-google-golang-org-grpc-1.28.0) -; ("go-google-golang-org-genproto-0.0.0-20200331122359-1ee6d9798940" -; ,go-google-golang-org-genproto-0.0.0-20200331122359-1ee6d9798940) -; ("go-google-golang-org-appengine-1.6.5" -; ,go-google-golang-org-appengine-1.6.5) -; ("go-golang-org-x-tools-0.0.0-20200331025713-a30bf2db82d4" -; ,go-golang-org-x-tools-0.0.0-20200331025713-a30bf2db82d4) -; ("go-golang-org-x-sys-0.0.0-20200331124033-c3d80250170d" -; ,go-golang-org-x-sys-0.0.0-20200331124033-c3d80250170d) -; ("go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a" -; ,go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a) -; ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" -; ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) -; ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" -; ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) -; ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) -; ("go-github-com-googleapis-gax-go-v2-2.0.5" -; ,go-github-com-googleapis-gax-go-v2-2.0.5) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-cloud-google-com-go-0.56.0" ,go-cloud-google-com-go-0.56.0))) -; (home-page "https://google.golang.org/api") -; (synopsis "Google APIs Client Library for Go") -; (description -; "Package api is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of -;sub-packages. -;") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20200729003335-053ba62fc06f -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20200729003335-053ba62fc06f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1h34qgr4lqy1l0niay3gzqh6pc63y2xh1mmp8757y8jsrdz1s5fv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.24.0" -; ,go-google-golang-org-protobuf-1.24.0) -; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) -; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" -; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-github-com-golang-protobuf-1.4.1" -; ,go-github-com-golang-protobuf-1.4.1))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-grpc-1.30.0 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.30.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "05pb9xrxd7kpbi8zzby90f87b6sxq65nmpgqx5h3255whmmpzbi9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" -; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.3.3" -; ,go-github-com-golang-protobuf-1.3.3) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-envoyproxy-go-control-plane-0.9.4" -; ,go-github-com-envoyproxy-go-control-plane-0.9.4) -; ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" -; ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-cloud-google-com-go-0.62.0 -; (package -; (name "go-cloud-google-com-go") -; (version "0.62.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-cloud-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "00x1nlq4fvvxrwx24firscav511qwck3zl6ghs9p6zzzixla8r5h")))) -; (build-system go-build-system) -; (arguments '(#:import-path "cloud.google.com/go")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.25.0" -; ,go-google-golang-org-protobuf-1.25.0) -; ("go-google-golang-org-grpc-1.30.0" ,go-google-golang-org-grpc-1.30.0) -; ("go-google-golang-org-genproto-0.0.0-20200729003335-053ba62fc06f" -; ,go-google-golang-org-genproto-0.0.0-20200729003335-053ba62fc06f) -; ("go-google-golang-org-api-0.29.0" ,go-google-golang-org-api-0.29.0) -; ("go-golang-org-x-tools-0.0.0-20200729194436-6467de6f59a7" -; ,go-golang-org-x-tools-0.0.0-20200729194436-6467de6f59a7) -; ("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) -; ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" -; ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) -; ("go-golang-org-x-net-0.0.0-20200707034311-ab3426394381" -; ,go-golang-org-x-net-0.0.0-20200707034311-ab3426394381) -; ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" -; ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) -; ("go-go-opencensus-io-0.22.4" ,go-go-opencensus-io-0.22.4) -; ("go-github-com-jstemmer-go-junit-report-0.9.1" -; ,go-github-com-jstemmer-go-junit-report-0.9.1) -; ("go-github-com-googleapis-gax-go-v2-2.0.5" -; ,go-github-com-googleapis-gax-go-v2-2.0.5) -; ("go-github-com-google-pprof-0.0.0-20200708004538-1a94d8640e99" -; ,go-github-com-google-pprof-0.0.0-20200708004538-1a94d8640e99) -; ("go-github-com-google-martian-v3-3.0.0" -; ,go-github-com-google-martian-v3-3.0.0) -; ("go-github-com-google-go-cmp-0.5.1" -; ,go-github-com-google-go-cmp-0.5.1) -; ("go-github-com-golang-protobuf-1.4.2" -; ,go-github-com-golang-protobuf-1.4.2) -; ("go-github-com-golang-mock-1.4.3" ,go-github-com-golang-mock-1.4.3) -; ("go-cloud-google-com-go-storage-1.10.0" -; ,go-cloud-google-com-go-storage-1.10.0))) -; (home-page "https://cloud.google.com/go") -; (synopsis "Google Cloud Client Libraries for Go") -; (description -; "Package cloud is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -;of sub-packages. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-google-go-cmp-0.5.1 -; (package -; (name "go-github-com-google-go-cmp") -; (version "0.5.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/go-cmp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1wjdid59brciv09agxgmqac5k9ywg63nhzb0yi9anmqpl38gps0p")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/go-cmp")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" -; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) -; (home-page "https://github.com/google/go-cmp") -; (synopsis "Package for equality of Go values") -; (description -; "This package is intended to be a more powerful and safer alternative to -;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") -; (license license:bsd-3))) -; -;(define-public go-github-com-googleapis-gax-go-v2-2.0.5 -; (package -; (name "go-github-com-googleapis-gax-go-v2") -; (version "2.0.5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/gax-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1lxawwngv6miaqd25s3ba0didfzylbwisd2nz7r4gmbmin6jsjrx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/googleapis/gax-go/v2")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.19.0" -; ,go-google-golang-org-grpc-1.19.0))) -; (home-page "https://github.com/googleapis/gax-go") -; (synopsis #f) -; (description -; "Package gax contains a set of modules which aid the development of APIs -;for clients and servers based on gRPC and Google API conventions. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6 -; (package -; (name "go-github-com-golang-groupcache") -; (version "0.0.0-20190702054246-869f871628b6") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/groupcache") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0r4nk8129bvx50qb4xzjaay39b2h6k7cbdqqzdlanmc82ygczsbw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/groupcache")) -; (home-page "https://github.com/golang/groupcache") -; (synopsis "groupcache") -; (description -; "Package groupcache provides a data loading mechanism with caching -;and de-duplication that works across a set of peer processes. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190502145724-3ef323f4f1fd") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "15iw4gjvrnrx98rlny1qcaprp3577rh2b77byb38dr6m3q42rvc6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6 -; (package -; (name "go-golang-org-x-sync") -; (version "0.0.0-20190227155943-e225da77a7e6") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sync") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0bh3583smcfw6jw3w6lp0za93rz7hpxfdz8vhxng75b7a6vdlw4p")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sync")) -; (home-page "https://golang.org/x/sync") -; (synopsis "Go Sync") -; (description -; "This repository provides Go concurrency primitives in addition to the -;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20190425155659-357c62f0e4bb") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1h1a0wys83cc86s4w2hqmz78ixijw8f7qchmiwdv5xjvpg0i27c2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" -; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) -; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) -; ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" -; ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) -; ("go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6" -; ,go-golang-org-x-sync-0.0.0-20190227155943-e225da77a7e6) -; ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" -; ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd) -; ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" -; ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) -; ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" -; ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-grpc-1.20.1 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.20.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0rj3fs6jillapiwnpkfn3v2jbl7a3zsb0lys4srswl26hjijviqq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" -; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) -; ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" -; ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) -; ("go-google-golang-org-appengine-1.1.0" -; ,go-google-golang-org-appengine-1.1.0) -; ("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" -; ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" -; ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0) -; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-client9-misspell-0.3.4" -; ,go-github-com-client9-misspell-0.3.4) -; ("go-github-com-burntsushi-toml-0.3.1" -; ,go-github-com-burntsushi-toml-0.3.1) -; ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-go-opencensus-io-0.22.4 -; (package -; (name "go-go-opencensus-io") -; (version "0.22.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/census-instrumentation/opencensus-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "10skbvs4yxjm3z10yfg5cj2mdzjsna87qk1icp9xv0iwp8wzq6h0")))) -; (build-system go-build-system) -; (arguments '(#:import-path "go.opencensus.io")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.20.1" ,go-google-golang-org-grpc-1.20.1) -; ("go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb" -; ,go-google-golang-org-genproto-0.0.0-20190425155659-357c62f0e4bb) -; ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) -; ("go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd" -; ,go-golang-org-x-sys-0.0.0-20190502145724-3ef323f4f1fd) -; ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" -; ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) -; ("go-github-com-stretchr-testify-1.4.0" -; ,go-github-com-stretchr-testify-1.4.0) -; ("go-github-com-google-go-cmp-0.3.0" -; ,go-github-com-google-go-cmp-0.3.0) -; ("go-github-com-golang-protobuf-1.3.1" -; ,go-github-com-golang-protobuf-1.3.1) -; ("go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6" -; ,go-github-com-golang-groupcache-0.0.0-20190702054246-869f871628b6))) -; (home-page "https://go.opencensus.io") -; (synopsis "OpenCensus Libraries for Go") -; (description "Package opencensus contains Go support for OpenCensus. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b -; (package -; (name "go-golang-org-x-lint") -; (version "0.0.0-20200302205851-738671d3881b") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/lint") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0jkiz4py59jjnkyxbxifpf7bsar11lbgmj5jiq2kic5k03shkn9c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/lint")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7" -; ,go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7))) -; (home-page "https://golang.org/x/lint") -; (synopsis "Installation") -; (description "Package lint contains a linter for Go source code. -;") -; (license license:bsd-3))) -; -;(define-public go-cloud-google-com-go-0.34.0 -; (package -; (name "go-cloud-google-com-go") -; (version "0.34.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-cloud-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1kclgclwar3r37zbvb9gg3qxbgzkb50zk3s9778zlh2773qikmai")))) -; (build-system go-build-system) -; (arguments '(#:import-path "cloud.google.com/go")) -; (home-page "https://cloud.google.com/go") -; (synopsis "Google Cloud Client Libraries for Go") -; (description -; "Package cloud is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -;of sub-packages. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20190108225652-1e06a53dbb7e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0lpqqvdccby48nixihvmn8ig1z48b950m1bxfqxn78air308qc3j")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d -; (package -; (name "go-golang-org-x-oauth2") -; (version "0.0.0-20200107190931-bf48bf16ab8d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/oauth2") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1sirdib60zwmh93kf9qrx51r8544k1p9rs5mk0797wibz3m4mrdg")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/oauth2")) -; (propagated-inputs -; `(("go-google-golang-org-appengine-1.4.0" -; ,go-google-golang-org-appengine-1.4.0) -; ("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" -; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) -; ("go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e" -; ,go-golang-org-x-net-0.0.0-20190108225652-1e06a53dbb7e) -; ("go-cloud-google-com-go-0.34.0" ,go-cloud-google-com-go-0.34.0))) -; (home-page "https://golang.org/x/oauth2") -; (synopsis "OAuth2 for Go") -; (description -; "Package oauth2 provides support for making -;OAuth2 authorized and authenticated HTTP requests, -;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -;It can additionally grant authorization with Bearer JWT. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20200803210538-64077c9b5642 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20200803210538-64077c9b5642") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1pdrkim9v0wbxipl586d29vz4ci9xib0f02g6yv7c0nang627pag")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-yuin-goldmark-1.1.32 -; (package -; (name "go-github-com-yuin-goldmark") -; (version "1.1.32") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/yuin/goldmark") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "03i9yq6n3yvn5v70xi6x3pn49ndy8zm4217ihwwhlw2nkwhny7a5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/yuin/goldmark")) -; (home-page "https://github.com/yuin/goldmark") -; (synopsis "goldmark") -; (description -; "Package goldmark implements functions to convert markdown text to a desired format. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-net-0.0.0-20200625001655-4c5254603344 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20200625001655-4c5254603344") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1da0a1m488d95vggpi52dkag98n5671ml6sn80nwv6lgbmdx8qbq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" -; ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) -; ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" -; ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208 -; (package -; (name "go-golang-org-x-sync") -; (version "0.0.0-20200625203802-6e8e738ad208") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sync") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1avk27pszd5l5df6ff7j78wgla46ir1hhy2jwfl9a3c0ys602yx9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sync")) -; (home-page "https://golang.org/x/sync") -; (synopsis "Go Sync") -; (description -; "This repository provides Go concurrency primitives in addition to the -;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20200804011535-6c149bb5ef0d -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20200804011535-6c149bb5ef0d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1l244hp5n0qff7nmvcffggjv7jm4061g63g76z967zvdqcxh23i2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" -; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) -; ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" -; ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) -; ("go-golang-org-x-net-0.0.0-20200625001655-4c5254603344" -; ,go-golang-org-x-net-0.0.0-20200625001655-4c5254603344) -; ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) -; ("go-github-com-yuin-goldmark-1.1.32" -; ,go-github-com-yuin-goldmark-1.1.32))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20200804131852-c06518451d9c -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20200804131852-c06518451d9c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0wl9bhr94yf0b8lc947zr0iwm3l20irzy869xczfd6z0a1g54gsa")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.24.0" -; ,go-google-golang-org-protobuf-1.24.0) -; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) -; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" -; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-github-com-golang-protobuf-1.4.1" -; ,go-github-com-golang-protobuf-1.4.1))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-api-0.30.0 -; (package -; (name "go-google-golang-org-api") -; (version "0.30.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-api-go-client") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1vh5rrc6hvzh1rqawrwr4nyilnr3dgqx1pr2njjzdg0prfmflm5p")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/api")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.31.0" ,go-google-golang-org-grpc-1.31.0) -; ("go-google-golang-org-genproto-0.0.0-20200804131852-c06518451d9c" -; ,go-google-golang-org-genproto-0.0.0-20200804131852-c06518451d9c) -; ("go-google-golang-org-appengine-1.6.6" -; ,go-google-golang-org-appengine-1.6.6) -; ("go-golang-org-x-tools-0.0.0-20200804011535-6c149bb5ef0d" -; ,go-golang-org-x-tools-0.0.0-20200804011535-6c149bb5ef0d) -; ("go-golang-org-x-sys-0.0.0-20200803210538-64077c9b5642" -; ,go-golang-org-x-sys-0.0.0-20200803210538-64077c9b5642) -; ("go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208" -; ,go-golang-org-x-sync-0.0.0-20200625203802-6e8e738ad208) -; ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" -; ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) -; ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" -; ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) -; ("go-go-opencensus-io-0.22.4" ,go-go-opencensus-io-0.22.4) -; ("go-github-com-googleapis-gax-go-v2-2.0.5" -; ,go-github-com-googleapis-gax-go-v2-2.0.5) -; ("go-github-com-google-go-cmp-0.5.1" -; ,go-github-com-google-go-cmp-0.5.1) -; ("go-cloud-google-com-go-0.62.0" ,go-cloud-google-com-go-0.62.0))) -; (home-page "https://google.golang.org/api") -; (synopsis "Google APIs Client Library for Go") -; (description -; "Package api is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of -;sub-packages. -;") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-1.24.0 -; (package -; (name "go-google-golang-org-protobuf") -; (version "1.24.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0x3qyn3rizbs671gs7f8v50rmiwf9h7kbaradpivw9718mhbg1gn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" -; ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.4.1" -; ,go-github-com-golang-protobuf-1.4.1))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20200825200019-8632dd797987 -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20200825200019-8632dd797987") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0h8s1mz8pbdiwmv2g61afa7f05zin3m6mdy2fmny6wcidz4w2i3k")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.24.0" -; ,go-google-golang-org-protobuf-1.24.0) -; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) -; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" -; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-github-com-golang-protobuf-1.4.1" -; ,go-github-com-golang-protobuf-1.4.1))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f -; (package -; (name "go-github-com-cncf-udpa-go") -; (version "0.0.0-20191209042840-269d4d468f6f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/cncf/udpa") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0i1jiaw2k3hlwwmg4hap81vb4s1p25xp9kdfww37v0fbgjariccs")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path -; "github.com/cncf/udpa/go" -; #:unpack-path -; "github.com/cncf/udpa")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2) -; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" -; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0))) -; (home-page "https://github.com/cncf/udpa") -; (synopsis "Description") -; (description -; "This library has been deprecated in favor of @code{github.com/cncf/xds/go}. All users are recommended to switch their imports.") -; (license license:asl2.0))) -; -;(define-public go-github-com-envoyproxy-go-control-plane-0.9.4 -; (package -; (name "go-github-com-envoyproxy-go-control-plane") -; (version "0.9.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/envoyproxy/go-control-plane") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0m0crzx70lp7vz13v20wxb1fcfdnzp7h3mkh3bn6a8mbfz6w5asj")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) -; ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" -; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) -; ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" -; ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) -; ("go-github-com-google-go-cmp-0.2.0" -; ,go-github-com-google-go-cmp-0.2.0) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2) -; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" -; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) -; ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" -; ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f) -; ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" -; ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) -; (home-page "https://github.com/envoyproxy/go-control-plane") -; (synopsis "control-plane") -; (description -; "This repository contains a Go-based implementation of an API server that -;implements the discovery service APIs defined in -;@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") -; (license license:asl2.0))) -; -;(define-public go-github-com-golang-protobuf-1.3.3 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.3.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1cyyr52yhj3fzrily3rmsbqyj8va4ld75lmry0857m39rgpv8sy1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-grpc-1.31.0 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.31.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1y3lilpipmaysjk4skbzw1qa6lv05vzixzw9lg9x73xfb01q4nyz")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" -; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.3.3" -; ,go-github-com-golang-protobuf-1.3.3) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-envoyproxy-go-control-plane-0.9.4" -; ,go-github-com-envoyproxy-go-control-plane-0.9.4) -; ("go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f" -; ,go-github-com-cncf-udpa-go-0.0.0-20191209042840-269d4d468f6f))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-cloud-google-com-go-0.65.0 -; (package -; (name "go-cloud-google-com-go") -; (version "0.65.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-cloud-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0xrcg39jrw90gq8vl8pfq63sp3bkak04wh392yj5rh4lc1a4lxjq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "cloud.google.com/go")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.31.0" ,go-google-golang-org-grpc-1.31.0) -; ("go-google-golang-org-genproto-0.0.0-20200825200019-8632dd797987" -; ,go-google-golang-org-genproto-0.0.0-20200825200019-8632dd797987) -; ("go-google-golang-org-api-0.30.0" ,go-google-golang-org-api-0.30.0) -; ("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" -; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) -; ("go-golang-org-x-tools-0.0.0-20200825202427-b303f430e36d" -; ,go-golang-org-x-tools-0.0.0-20200825202427-b303f430e36d) -; ("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) -; ("go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d" -; ,go-golang-org-x-oauth2-0.0.0-20200107190931-bf48bf16ab8d) -; ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" -; ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) -; ("go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b" -; ,go-golang-org-x-lint-0.0.0-20200302205851-738671d3881b) -; ("go-go-opencensus-io-0.22.4" ,go-go-opencensus-io-0.22.4) -; ("go-github-com-jstemmer-go-junit-report-0.9.1" -; ,go-github-com-jstemmer-go-junit-report-0.9.1) -; ("go-github-com-googleapis-gax-go-v2-2.0.5" -; ,go-github-com-googleapis-gax-go-v2-2.0.5) -; ("go-github-com-google-pprof-0.0.0-20200708004538-1a94d8640e99" -; ,go-github-com-google-pprof-0.0.0-20200708004538-1a94d8640e99) -; ("go-github-com-google-martian-v3-3.0.0" -; ,go-github-com-google-martian-v3-3.0.0) -; ("go-github-com-google-go-cmp-0.5.1" -; ,go-github-com-google-go-cmp-0.5.1) -; ("go-github-com-golang-protobuf-1.4.2" -; ,go-github-com-golang-protobuf-1.4.2) -; ("go-github-com-golang-mock-1.4.4" ,go-github-com-golang-mock-1.4.4) -; ("go-cloud-google-com-go-storage-1.10.0" -; ,go-cloud-google-com-go-storage-1.10.0))) -; (home-page "https://cloud.google.com/go") -; (synopsis "Google Cloud Client Libraries for Go") -; (description -; "Package cloud is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -;of sub-packages. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20200323222414-85ca7c5b95cd") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1504qkgbhhm4f0bhk77v2r1lj6x171ay5m79alkg78wjb5cign5l")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20200822124328-c89045814202 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20200822124328-c89045814202") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1g3wxilwbcbf2xj20y3mpxh38jka4fyhl48akfqf00vr48zmx96x")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" -; ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) -; ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" -; ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-appengine-1.6.6 -; (package -; (name "go-google-golang-org-appengine") -; (version "1.6.6") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/appengine") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "15c38h6fbv06cnkr6yknygfrpibyms2mya4w0l29kaxf42jn1qi5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/appengine")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) -; ("go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65" -; ,go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65) -; ("go-github-com-golang-protobuf-1.3.1" -; ,go-github-com-golang-protobuf-1.3.1))) -; (home-page "https://google.golang.org/appengine") -; (synopsis "Go App Engine packages") -; (description -; "Package appengine provides basic functionality for Google App Engine. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-oauth2-0.0.0-20210402161424-2e8d93401602 -; (package -; (name "go-golang-org-x-oauth2") -; (version "0.0.0-20210402161424-2e8d93401602") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/oauth2") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0j1crxa78gip3hxrds5jngi034j4zm4q3z7r8bqs3rjxnwcki9ig")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/oauth2")) -; (propagated-inputs -; `(("go-google-golang-org-appengine-1.6.6" -; ,go-google-golang-org-appengine-1.6.6) -; ("go-golang-org-x-net-0.0.0-20200822124328-c89045814202" -; ,go-golang-org-x-net-0.0.0-20200822124328-c89045814202) -; ("go-cloud-google-com-go-0.65.0" ,go-cloud-google-com-go-0.65.0))) -; (home-page "https://golang.org/x/oauth2") -; (synopsis "OAuth2 for Go") -; (description -; "Package oauth2 provides support for making -;OAuth2 authorized and authenticated HTTP requests, -;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -;It can additionally grant authorization with Bearer JWT. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20210403161142-5e06dd20ab57 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20210403161142-5e06dd20ab57") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1acdn06771rxjg38ql9wl8dr1vf23nazjnvk6105z3hddnh14fgb")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20190603091049-60506f45cf65") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0827yz7irmnzcdhw8vg74819jaw5ahs4w4v5fvzgfvnxyb9f6zcc")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-text-0.3.2 -; (package -; (name "go-golang-org-x-text") -; (version "0.3.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/text") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0flv9idw0jm5nm8lx25xqanbkqgfiym6619w575p7nrdh0riqwqh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/text")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" -; ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) -; (home-page "https://golang.org/x/text") -; (synopsis "Go Text") -; (description -; "text is a repository of text-related packages related to internationalization -;(i18n) and localization (l10n), such as character encodings, text -;transformations, and locale-specific text handling. -;") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-appengine-1.6.7 -; (package -; (name "go-google-golang-org-appengine") -; (version "1.6.7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/appengine") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1wkipg7xxc0ha5p6c3bj0vpgq38l18441n5l6zxdhx0gzvz5z1hs")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/appengine")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) -; ("go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65" -; ,go-golang-org-x-net-0.0.0-20190603091049-60506f45cf65) -; ("go-github-com-golang-protobuf-1.3.1" -; ,go-github-com-golang-protobuf-1.3.1))) -; (home-page "https://google.golang.org/appengine") -; (synopsis "Go App Engine packages") -; (description -; "Package appengine provides basic functionality for Google App Engine. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-golang-protobuf-1.5.1 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.5.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1qx8gvsdx1w27vamw6wn1jns2d8pz0g9sji3l0hvs4wl1jf7p32d")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.26.0" -; ,go-google-golang-org-protobuf-1.26.0) -; ("go-github-com-google-go-cmp-0.5.5" -; ,go-github-com-google-go-cmp-0.5.5))) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5 -; (package -; (name "go-golang-org-x-lint") -; (version "0.0.0-20201208152925-83fdc39ff7b5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/lint") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ms3rs5hvpnm9bxbr5f9743i7hn2bbmqdmvzxq6nmi0f24ypv1l3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/lint")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7" -; ,go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7))) -; (home-page "https://golang.org/x/lint") -; (synopsis "Installation") -; (description "Package lint contains a linter for Go source code. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20210315160823-c6e025ad8005 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20210315160823-c6e025ad8005") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1dy8j3gvbkng0vy2wgdiy48871j4vchgsks2ggfxcx4jg32d2qsr")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20210316092652-d523dce5a7f4 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20210316092652-d523dce5a7f4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "01hhvh6msyg11adxhgjwzbv4jprq5ajzkxxb16ln3dqv4na9b2k1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) -; ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" -; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) -; ("go-golang-org-x-sys-0.0.0-20210315160823-c6e025ad8005" -; ,go-golang-org-x-sys-0.0.0-20210315160823-c6e025ad8005))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20210320140829-1e4c9ba3b0c4 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20210320140829-1e4c9ba3b0c4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0nrxjq5j058sba9s5g65l5rdw6b4f335lxa7hhcf57paklym1qgr")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.1.0 -; (package -; (name "go-golang-org-x-tools") -; (version "0.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1asrm22kv5x891qkbpap8alg612k321jbs1akc0vwsan251gm507")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" -; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) -; ("go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4" -; ,go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4) -; ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" -; ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) -; ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" -; ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) -; ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) -; ("go-github-com-yuin-goldmark-1.2.1" -; ,go-github-com-yuin-goldmark-1.2.1))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20210402141018-6c239bbf2bb1 -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20210402141018-6c239bbf2bb1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1xih6y4dwjj939ilwc5s6w419kjnkn1hw33jsgml0nkjcnac74wc")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.26.0" -; ,go-google-golang-org-protobuf-1.26.0) -; ("go-google-golang-org-grpc-1.36.1" ,go-google-golang-org-grpc-1.36.1) -; ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) -; ("go-golang-org-x-text-0.3.5" ,go-golang-org-x-text-0.3.5) -; ("go-golang-org-x-sys-0.0.0-20210320140829-1e4c9ba3b0c4" -; ,go-golang-org-x-sys-0.0.0-20210320140829-1e4c9ba3b0c4) -; ("go-golang-org-x-net-0.0.0-20210316092652-d523dce5a7f4" -; ,go-golang-org-x-net-0.0.0-20210316092652-d523dce5a7f4) -; ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" -; ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) -; ("go-github-com-golang-protobuf-1.5.1" -; ,go-github-com-golang-protobuf-1.5.1))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad -; (package -; (name "go-github-com-envoyproxy-go-control-plane") -; (version "0.9.9-0.20201210154907-fd9021fe5dad") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/envoyproxy/go-control-plane") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0piyk6pk36x2qr3bhys2k240pfwz3bv64fhi2l0vx1mzwiddapbm")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.23.0" -; ,go-google-golang-org-protobuf-1.23.0) -; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) -; ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" -; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) -; ("go-github-com-stretchr-testify-1.5.1" -; ,go-github-com-stretchr-testify-1.5.1) -; ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" -; ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.4.2" -; ,go-github-com-golang-protobuf-1.4.2) -; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" -; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) -; ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" -; ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403) -; ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" -; ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) -; (home-page "https://github.com/envoyproxy/go-control-plane") -; (synopsis "control-plane") -; (description -; "This repository contains a Go-based implementation of an API server that -;implements the discovery service APIs defined in -;@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-grpc-1.36.1 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.36.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0l3prxp18lb0pagqg4l6c9i0l6gakfxgf6vxcsv589i0xsxw8ivm")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.25.0" -; ,go-google-golang-org-protobuf-1.25.0) -; ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" -; ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) -; ("go-github-com-google-go-cmp-0.5.0" -; ,go-github-com-google-go-cmp-0.5.0) -; ("go-github-com-golang-protobuf-1.4.2" -; ,go-github-com-golang-protobuf-1.4.2) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad" -; ,go-github-com-envoyproxy-go-control-plane-0.9.9-0.20201210154907-fd9021fe5dad) -; ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" -; ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-api-0.44.0 -; (package -; (name "go-google-golang-org-api") -; (version "0.44.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-api-go-client") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0sh6qzc3pnyliy10afrmzpfbbbm2mwcyc6mp5422xhgp3p2x370x")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/api")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.36.1" ,go-google-golang-org-grpc-1.36.1) -; ("go-google-golang-org-genproto-0.0.0-20210402141018-6c239bbf2bb1" -; ,go-google-golang-org-genproto-0.0.0-20210402141018-6c239bbf2bb1) -; ("go-google-golang-org-appengine-1.6.7" -; ,go-google-golang-org-appengine-1.6.7) -; ("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) -; ("go-golang-org-x-sys-0.0.0-20210403161142-5e06dd20ab57" -; ,go-golang-org-x-sys-0.0.0-20210403161142-5e06dd20ab57) -; ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" -; ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) -; ("go-golang-org-x-oauth2-0.0.0-20210402161424-2e8d93401602" -; ,go-golang-org-x-oauth2-0.0.0-20210402161424-2e8d93401602) -; ("go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5" -; ,go-golang-org-x-lint-0.0.0-20201208152925-83fdc39ff7b5) -; ("go-go-opencensus-io-0.23.0" ,go-go-opencensus-io-0.23.0) -; ("go-github-com-googleapis-gax-go-v2-2.0.5" -; ,go-github-com-googleapis-gax-go-v2-2.0.5) -; ("go-github-com-google-go-cmp-0.5.5" -; ,go-github-com-google-go-cmp-0.5.5) -; ("go-cloud-google-com-go-0.81.0" ,go-cloud-google-com-go-0.81.0))) -; (home-page "https://google.golang.org/api") -; (synopsis "Google APIs Client Library for Go") -; (description -; "Package api is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/google.golang.org/api,https://godoc.org/google.golang.org/api} for a full list of -;sub-packages. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-bketelsen-crypt-0.0.4 -; (package -; (name "go-github-com-bketelsen-crypt") -; (version "0.0.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/bketelsen/crypt") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0fyfcvy73zskd1p1mv0cn03anxkkr5gvlawsc87znqk60hdypq3v")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/bketelsen/crypt")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.38.0" ,go-google-golang-org-grpc-1.38.0) -; ("go-google-golang-org-api-0.44.0" ,go-google-golang-org-api-0.44.0) -; ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" -; ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9) -; ("go-go-etcd-io-etcd-client-v2-2.305.0" -; ,go-go-etcd-io-etcd-client-v2-2.305.0) -; ("go-github-com-hashicorp-consul-api-1.1.0" -; ,go-github-com-hashicorp-consul-api-1.1.0) -; ("go-cloud-google-com-go-firestore-1.1.0" -; ,go-cloud-google-com-go-firestore-1.1.0))) -; (home-page "https://github.com/bketelsen/crypt") -; (synopsis "crypt") -; (description -; "You can use crypt as a command line tool or as a configuration library:") -; (license license:expat))) -; -;(define-public go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20191005200804-aed5e4c7ecf9") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0wsdsbl9n61l99z0cvib2xzg56fsfgky4yc5xapdw9ywx9h0zm3a")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-fsnotify-fsnotify-1.4.9 -; (package -; (name "go-github-com-fsnotify-fsnotify") -; (version "1.4.9") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/fsnotify/fsnotify") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1i1r72knpbfwwql9frn9bqc3nhfc2ai5m6qllcyr6wban62lr40x")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/fsnotify/fsnotify")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9" -; ,go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9))) -; (home-page "https://github.com/fsnotify/fsnotify") -; (synopsis "File system notifications for Go") -; (description -; "Package fsnotify provides a platform-independent interface for file system notifications. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-hashicorp-hcl-1.0.0 -; (package -; (name "go-github-com-hashicorp-hcl") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/hcl") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0q6ml0qqs0yil76mpn4mdx4lp94id8vbv575qm60jzl1ijcl5i66")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hashicorp/hcl")) -; (propagated-inputs -; `(("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://github.com/hashicorp/hcl") -; (synopsis "HCL") -; (description "Package hcl decodes HCL into usable Go structures. -;") -; (license license:mpl2.0))) -; -;(define-public go-github-com-magiconair-properties-1.8.5 -; (package -; (name "go-github-com-magiconair-properties") -; (version "1.8.5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/magiconair/properties") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0v4agnkhc30fblbmhs0gq2bikhdnnmqmpp4phrnza68m04j5hxbn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/magiconair/properties")) -; (home-page "https://github.com/magiconair/properties") -; (synopsis "Overview") -; (description -; "Package properties provides functions for reading and writing -;ISO-8859-1 and UTF-8 encoded .properties files and has -;support for recursive property expansion. -;") -; (license license:bsd-2))) -; -;(define-public go-github-com-mitchellh-mapstructure-1.4.1 -; (package -; (name "go-github-com-mitchellh-mapstructure") -; (version "1.4.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mitchellh/mapstructure") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1m98wiadb6kdnzv21m8p7nk1jb30zpjh47fkb1dg251r3m7bj47v")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mitchellh/mapstructure")) -; (home-page "https://github.com/mitchellh/mapstructure") -; (synopsis "mapstructure") -; (description -; "Package mapstructure exposes functionality to convert one arbitrary -;Go type into another, typically to convert a map[string]interface{} -;into a native Go structure. -;") -; (license license:expat))) -; -;(define-public go-github-com-pelletier-go-toml-1.9.3 -; (package -; (name "go-github-com-pelletier-go-toml") -; (version "1.9.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/pelletier/go-toml") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0cqwnvlgs1wgdgjxlwv8j52f7d6syniadr51sjh2fya99m5wzvsn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/pelletier/go-toml")) -; (home-page "https://github.com/pelletier/go-toml") -; (synopsis "go-toml") -; (description "Package toml is a TOML parser and manipulation library. -;") -; (license #f))) -; -;(define-public go-github-com-gopherjs-gopherjs-0.0.0-20181017120253-0766667cb4d1 -; (package -; (name "go-github-com-gopherjs-gopherjs") -; (version "0.0.0-20181017120253-0766667cb4d1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/gopherjs/gopherjs") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "13pfc9sxiwjky2lm1xb3i3lcisn8p6mgjk2d927l7r92ysph8dmw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/gopherjs/gopherjs")) -; (home-page "https://github.com/gopherjs/gopherjs") -; (synopsis "GopherJS - A compiler from Go to JavaScript") -; (description -; "GopherJS compiles Go code (@url{https://golang.org/,golang.org}) to pure JavaScript code. Its main purpose is to give you the opportunity to write front-end code in Go which will still run in all browsers.") -; (license license:bsd-2))) -; -;(define-public go-github-com-jtolds-gls-4.20.0+incompatible -; (package -; (name "go-github-com-jtolds-gls") -; (version "4.20.0+incompatible") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/jtolio/gls") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1k7xd2q2ysv2xsh373qs801v6f359240kx0vrl0ydh7731lngvk6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/jtolds/gls")) -; (home-page "https://github.com/jtolds/gls") -; (synopsis "gls") -; (description "Package gls implements goroutine-local storage. -;") -; (license license:expat))) -; -;(define-public go-github-com-smartystreets-assertions-0.0.0-20180927180507-b2de0cb4f26d -; (package -; (name "go-github-com-smartystreets-assertions") -; (version "0.0.0-20180927180507-b2de0cb4f26d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/smartystreets/assertions") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1i7ldgavgl35c7gk25p7bvdr282ckng090zr4ch9mk1705akx09y")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/smartystreets/assertions")) -; (home-page "https://github.com/smartystreets/assertions") -; (synopsis #f) -; (description -; "Package assertions contains the implementations for all assertions which -;are referenced in goconvey's `convey` package -;(github.com/smartystreets/goconvey/convey) and gunit (github.com/smartystreets/gunit) -;for use with the So(...) method. -;They can also be used in traditional Go test functions and even in -;applications. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-tools-0.0.0-20190328211700-ab21143f2384 -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20190328211700-ab21143f2384") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "15fk0psk53pplpyghz55bhay0kvsv5rikmn5hwgjnnyxq9vfy178")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-github-com-smartystreets-goconvey-1.6.4 -; (package -; (name "go-github-com-smartystreets-goconvey") -; (version "1.6.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/smartystreets/goconvey") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "07zjxwszayal88z1j2bwnqrsa32vg8l4nivks5yfr9j8xfsw7n6m")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/smartystreets/goconvey")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20190328211700-ab21143f2384" -; ,go-golang-org-x-tools-0.0.0-20190328211700-ab21143f2384) -; ("go-github-com-smartystreets-assertions-0.0.0-20180927180507-b2de0cb4f26d" -; ,go-github-com-smartystreets-assertions-0.0.0-20180927180507-b2de0cb4f26d) -; ("go-github-com-jtolds-gls-4.20.0+incompatible" -; ,go-github-com-jtolds-gls-4.20.0+incompatible) -; ("go-github-com-gopherjs-gopherjs-0.0.0-20181017120253-0766667cb4d1" -; ,go-github-com-gopherjs-gopherjs-0.0.0-20181017120253-0766667cb4d1))) -; (home-page "https://github.com/smartystreets/goconvey") -; (synopsis "GoConvey is awesome Go testing") -; (description -; "This executable provides an HTTP server that watches for file system changes -;to .go files within the working directory (and all nested go packages). -;Navigating to the configured host and port in a web browser will display the -;latest results of running `go test` in each go package. -;") -; (license license:expat))) -; -;(define-public go-github-com-kr-fs-0.1.0 -; (package -; (name "go-github-com-kr-fs") -; (version "0.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kr/fs") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "11zg176x9hr9q7fsk95r6q0wf214gg4czy02slax4x56n79g6a7q")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kr/fs")) -; (home-page "https://github.com/kr/fs") -; (synopsis #f) -; (description "Package fs provides filesystem-related functions. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-pkg-sftp-1.10.1 -; (package -; (name "go-github-com-pkg-sftp") -; (version "1.10.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/pkg/sftp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0iw6lijdljwh5xw5hsy0b578cr52h6vvm7hbnzlrvciwhh4sfhhp")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/pkg/sftp")) -; (propagated-inputs -; `(("go-golang-org-x-crypto-0.0.0-20190820162420-60c769a6c586" -; ,go-golang-org-x-crypto-0.0.0-20190820162420-60c769a6c586) -; ("go-github-com-stretchr-testify-1.4.0" -; ,go-github-com-stretchr-testify-1.4.0) -; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) -; ("go-github-com-kr-fs-0.1.0" ,go-github-com-kr-fs-0.1.0))) -; (home-page "https://github.com/pkg/sftp") -; (synopsis "sftp") -; (description -; "Package sftp implements the SSH File Transfer Protocol as described in -;@url{https://tools.ietf.org/html/draft-ietf-secsh-filexfer-02,https://tools.ietf.org/html/draft-ietf-secsh-filexfer-02} -;") -; (license license:bsd-2))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20190820162420-60c769a6c586 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20190820162420-60c769a6c586") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1wy2pg38dz29vf1h48yfqf8m3jqvwnbdw8vkk3ldlj5d8fbbbmv8")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" -; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) -; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" -; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-github-com-spf13-afero-1.6.0 -; (package -; (name "go-github-com-spf13-afero") -; (version "1.6.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/spf13/afero") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0yi8p0yxiidpcg4cagxg2iyqcaapsng89rak4qyxmgails2fqg37")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/spf13/afero")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) -; ("go-golang-org-x-crypto-0.0.0-20190820162420-60c769a6c586" -; ,go-golang-org-x-crypto-0.0.0-20190820162420-60c769a6c586) -; ("go-github-com-pkg-sftp-1.10.1" ,go-github-com-pkg-sftp-1.10.1))) -; (home-page "https://github.com/spf13/afero") -; (synopsis "Overview") -; (description -; "This package provides a FileSystem Abstraction System for Go") -; (license license:asl2.0))) -; -;(define-public go-github-com-spf13-cast-1.3.1 -; (package -; (name "go-github-com-spf13-cast") -; (version "1.3.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/spf13/cast") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0lb84788glr0qzrq2ifi36rgvp96qrgywvxrr3ggq5hrbr38hgn1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/spf13/cast")) -; (propagated-inputs -; `(("go-github-com-stretchr-testify-1.2.2" -; ,go-github-com-stretchr-testify-1.2.2) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://github.com/spf13/cast") -; (synopsis "cast") -; (description "Package cast provides easy and safe casting in Go. -;") -; (license license:expat))) -; -;(define-public go-github-com-spf13-jwalterweatherman-1.1.0 -; (package -; (name "go-github-com-spf13-jwalterweatherman") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/spf13/jwalterweatherman") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ywmkwci5zyd88ijym6f30fj5c0k2yayxarkmnazf5ybljv50q7b")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/spf13/jwalterweatherman")) -; (propagated-inputs -; `(("go-github-com-stretchr-testify-1.2.2" -; ,go-github-com-stretchr-testify-1.2.2) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://github.com/spf13/jwalterweatherman") -; (synopsis "jWalterWeatherman") -; (description -; "Seamless printing to the terminal (stdout) and logging to a io.Writer -;(file) thatâ\x80\x99s as easy to use as fmt.Println.") -; (license license:expat))) -; -;(define-public go-github-com-subosito-gotenv-1.2.0 -; (package -; (name "go-github-com-subosito-gotenv") -; (version "1.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/subosito/gotenv") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0mav91j7r4arjkpq5zcf9j74f6pww8ic53x43wy7kg3ibw31yjs5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/subosito/gotenv")) -; (home-page "https://github.com/subosito/gotenv") -; (synopsis "gotenv") -; (description -; "Package gotenv provides functionality to dynamically load the environment variables -;") -; (license license:expat))) -; -;(define-public go-gopkg-in-ini-v1-1.62.0 -; (package -; (name "go-gopkg-in-ini-v1") -; (version "1.62.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/ini.v1") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1dm9ydqyflasp5li22kb0w73s6kp2swii8naqfhnz64v171gmm5v")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/ini.v1" #:unpack-path "gopkg.in/ini.v1")) -; (home-page "https://gopkg.in/ini.v1") -; (synopsis "INI") -; (description -; "Package ini provides INI file read and write functionality in Go. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-spf13-viper-1.8.1 -; (package -; (name "go-github-com-spf13-viper") -; (version "1.8.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/spf13/viper") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0jcsvd9l05pv10rma6zicp44q2mlvxj0qlhnf4zcg2pymb5i0hq6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/spf13/viper")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) -; ("go-gopkg-in-ini-v1-1.62.0" ,go-gopkg-in-ini-v1-1.62.0) -; ("go-github-com-subosito-gotenv-1.2.0" -; ,go-github-com-subosito-gotenv-1.2.0) -; ("go-github-com-stretchr-testify-1.7.0" -; ,go-github-com-stretchr-testify-1.7.0) -; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) -; ("go-github-com-spf13-jwalterweatherman-1.1.0" -; ,go-github-com-spf13-jwalterweatherman-1.1.0) -; ("go-github-com-spf13-cast-1.3.1" ,go-github-com-spf13-cast-1.3.1) -; ("go-github-com-spf13-afero-1.6.0" ,go-github-com-spf13-afero-1.6.0) -; ("go-github-com-smartystreets-goconvey-1.6.4" -; ,go-github-com-smartystreets-goconvey-1.6.4) -; ("go-github-com-pelletier-go-toml-1.9.3" -; ,go-github-com-pelletier-go-toml-1.9.3) -; ("go-github-com-mitchellh-mapstructure-1.4.1" -; ,go-github-com-mitchellh-mapstructure-1.4.1) -; ("go-github-com-magiconair-properties-1.8.5" -; ,go-github-com-magiconair-properties-1.8.5) -; ("go-github-com-hashicorp-hcl-1.0.0" -; ,go-github-com-hashicorp-hcl-1.0.0) -; ("go-github-com-fsnotify-fsnotify-1.4.9" -; ,go-github-com-fsnotify-fsnotify-1.4.9) -; ("go-github-com-bketelsen-crypt-0.0.4" -; ,go-github-com-bketelsen-crypt-0.0.4))) -; (home-page "https://github.com/spf13/viper") -; (synopsis "Install") -; (description "Many Go projects are built using Viper including:") -; (license license:expat))) -; -;(define-public go-github-com-spf13-cobra-1.2.1 -; (package -; (name "go-github-com-spf13-cobra") -; (version "1.2.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/spf13/cobra") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "091kz3xnlsgpqb90fc5nhjr4yfr8b8sjnyl0zd4wm1fgzkpw09jh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/spf13/cobra")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) -; ("go-github-com-spf13-viper-1.8.1" ,go-github-com-spf13-viper-1.8.1) -; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) -; ("go-github-com-inconshreveable-mousetrap-1.0.0" -; ,go-github-com-inconshreveable-mousetrap-1.0.0) -; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" -; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0))) -; (home-page "https://github.com/spf13/cobra") -; (synopsis "Table of Contents") -; (description -; "Package cobra is a commander providing a simple interface to create powerful modern CLI interfaces. -;In addition to providing an interface, Cobra simultaneously provides a controller to organize your application code. -;") -; (license license:asl2.0))) -; -;(define-public go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c -; (package -; (name "go-gopkg-in-yaml-v3") -; (version "3.0.0-20200313102051-9f266ea9e77c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/yaml.v3") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1bbai3lzb50m0x2vwsdbagrbhvfylj9k1m32hgbqwldqx4p9ay35")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" -; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) -; (home-page "https://gopkg.in/yaml.v3") -; (synopsis "YAML support for the Go language") -; (description "Package yaml implements YAML support for the Go language. -;") -; (license #f))) -; -;(define-public go-github-com-stretchr-testify-1.7.0 -; (package -; (name "go-github-com-stretchr-testify") -; (version "1.7.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/testify") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ixgjsvafr3513pz3r6pmgk074s2dxkll0dadvl25gkf30rkmh10")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/testify")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" -; ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) -; ("go-github-com-stretchr-objx-0.1.0" -; ,go-github-com-stretchr-objx-0.1.0) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-davecgh-go-spew-1.1.0" -; ,go-github-com-davecgh-go-spew-1.1.0))) -; (home-page "https://github.com/stretchr/testify") -; (synopsis "Testify - Thou Shalt Write Tests") -; (description -; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20211117183948-ae814b36b871 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20211117183948-ae814b36b871") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "01d5llpsijgbgm8px6mhaknqwh8g707zc5i5744gcndr8w0649sk")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.6" ,go-golang-org-x-text-0.3.6) -; ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" -; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) -; ("go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1" -; ,go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1) -; ("go-golang-org-x-net-0.0.0-20211112202133-69e39bad7dc2" -; ,go-golang-org-x-net-0.0.0-20211112202133-69e39bad7dc2))) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-github-com-shopify-logrus-bugsnag-0.0.0-20171204204709-577dee27f20d -; (package -; (name "go-github-com-shopify-logrus-bugsnag") -; (version "0.0.0-20171204204709-577dee27f20d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/Shopify/logrus-bugsnag") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1l3yahk77vzgmjs7baf8g14sv33jj04rw73iind4wayg40lfgrp8")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/Shopify/logrus-bugsnag")) -; (home-page "https://github.com/Shopify/logrus-bugsnag") -; (synopsis "logrus-bugsnag") -; (description -; "logrus-bugsnag is a hook that allows @url{https://github.com/sirupsen/logrus,Logrus} to interface with @url{https://bugsnag.com,Bugsnag}.") -; (license license:expat))) -; -;(define-public go-github-com-bshuster-repo-logrus-logstash-hook-1.0.0 -; (package -; (name "go-github-com-bshuster-repo-logrus-logstash-hook") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/bshuster-repo/logrus-logstash-hook") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1akr33xzj4jr65mc9kvfjh1wlhw8fbr3hbh4rr816kxfns3c0gwd")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "github.com/bshuster-repo/logrus-logstash-hook")) -; (home-page "https://github.com/bshuster-repo/logrus-logstash-hook") -; (synopsis "Logstash hook for logrus") -; (description -; "Use this hook to send the logs to @url{https://www.elastic.co/products/logstash,Logstash}.") -; (license license:expat))) -; -;(define-public go-github-com-bugsnag-bugsnag-go-0.0.0-20141110184014-b1d153021fcd -; (package -; (name "go-github-com-bugsnag-bugsnag-go") -; (version "0.0.0-20141110184014-b1d153021fcd") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/bugsnag/bugsnag-go") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "057vwigfzq42p9vkk9yhy8vkvgdmh6653rc988jmvmrkwbgvb352")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/bugsnag/bugsnag-go")) -; (home-page "https://github.com/bugsnag/bugsnag-go") -; (synopsis "Bugsnag error reporter for Go") -; (description -; "Package bugsnag captures errors in real-time and reports them to Bugsnag (@url{http://bugsnag.com,http://bugsnag.com}). -;") -; (license license:expat))) -; -;(define-public go-github-com-bugsnag-osext-0.0.0-20130617224835-0dd3f918b21b -; (package -; (name "go-github-com-bugsnag-osext") -; (version "0.0.0-20130617224835-0dd3f918b21b") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/bugsnag/osext") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "02pczqml6p1mnfdrygm3rs02g0r65qx8v1bi3x24dx8wv9dr5y23")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/bugsnag/osext")) -; (home-page "https://github.com/bugsnag/osext") -; (synopsis #f) -; (description "Extensions to the standard \"os\" package. -;") -; (license license:zlib))) -; -;(define-public go-github-com-bugsnag-panicwrap-0.0.0-20151223152923-e2c28503fcd0 -; (package -; (name "go-github-com-bugsnag-panicwrap") -; (version "0.0.0-20151223152923-e2c28503fcd0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/bugsnag/panicwrap") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "02z1q18s83xhfsz3n8bzv071a6n0irlad11yxppaf7015a7dl446")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/bugsnag/panicwrap")) -; (home-page "https://github.com/bugsnag/panicwrap") -; (synopsis "panicwrap") -; (description -; "The panicwrap package provides functions for capturing and handling -;panics in your application. It does this by re-executing the running -;application and monitoring stderr for any panics. At the same time, -;stdout/stderr/etc. are set to the same values so that data is shuttled -;through properly, making the existence of panicwrap mostly transparent. -;") -; (license license:expat))) -; -;(define-public go-github-com-docker-distribution-2.7.1+incompatible -; (package -; (name "go-github-com-docker-distribution") -; (version "2.7.1+incompatible") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/distribution/distribution") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1nx8b5a68rn81alp8wkkw6qd5v32mgf0fk23mxm60zdf63qk1nzw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/docker/distribution")) -; (home-page "https://github.com/docker/distribution") -; (synopsis "Distribution") -; (description -; "Package distribution will define the interfaces for the components of -;docker distribution. The goal is to allow users to reliably package, ship -;and store content related to docker images. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-danieljoos-wincred-1.1.0 -; (package -; (name "go-github-com-danieljoos-wincred") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/danieljoos/wincred") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0fllr8lwk70qb8gfndkgshfq5c7p8zdpp47bcd3816giv5w78vxi")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/danieljoos/wincred")) -; (propagated-inputs -; `(("go-github-com-stretchr-testify-1.5.1" -; ,go-github-com-stretchr-testify-1.5.1))) -; (home-page "https://github.com/danieljoos/wincred") -; (synopsis "wincred") -; (description -; "Package wincred provides primitives for accessing the Windows Credentials Management API. -;This includes functions for retrieval, listing and storage of credentials as well as Go structures for convenient access to the credential data. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20210119212857-b64e53b001e4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "16in6bazi0frdkzhqxyvmw7qcvzjavq21dnz9bmrqq8d4dpd2j44")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-docker-docker-credential-helpers-0.6.4 -; (package -; (name "go-github-com-docker-docker-credential-helpers") -; (version "0.6.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/docker/docker-credential-helpers") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0xsz8zgil2xrv835p3i6qbk7s81jz62sgasfvmmxi6lrkirahmh6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/docker/docker-credential-helpers")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4" -; ,go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4) -; ("go-github-com-danieljoos-wincred-1.1.0" -; ,go-github-com-danieljoos-wincred-1.1.0))) -; (home-page "https://github.com/docker/docker-credential-helpers") -; (synopsis "Introduction") -; (description -; "docker-credential-helpers is a suite of programs to use native stores to keep Docker credentials safe.") -; (license license:expat))) -; -;(define-public go-github-com-docker-go-connections-0.4.0 -; (package -; (name "go-github-com-docker-go-connections") -; (version "0.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/docker/go-connections") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0mv6f6b5nljc17dmwmc28hc0y11pqglz7x0d2mjrwdmfxf64hwqq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/docker/go-connections")) -; (home-page "https://github.com/docker/go-connections") -; (synopsis "Introduction") -; (description -; "Package connections provides libraries to work with network connections. -;This library is divided in several components for specific usage. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c -; (package -; (name "go-github-com-docker-go-events") -; (version "0.0.0-20190806004212-e31b211e4f1c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/docker/go-events") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "09gm4z43g23isbklabnsnfb87bwf8kjdgvvyi3vfjq2bqdjdg7cl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/docker/go-events")) -; (home-page "https://github.com/docker/go-events") -; (synopsis "Docker Events Package") -; (description -; "The Docker @code{events} package implements a composable event distribution package -;for Go.") -; (license license:asl2.0))) -; -;(define-public go-github-com-json-iterator-go-1.1.7 -; (package -; (name "go-github-com-json-iterator-go") -; (version "1.1.7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/json-iterator/go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0n79p4s67zl5zprxv7diayw3vavnmmfqkmd6snz0i9bxp825dsyz")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/json-iterator/go")) -; (propagated-inputs -; `(("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0) -; ("go-github-com-modern-go-reflect2-0.0.0-20180701023420-4b7aa43c6742" -; ,go-github-com-modern-go-reflect2-0.0.0-20180701023420-4b7aa43c6742) -; ("go-github-com-modern-go-concurrent-0.0.0-20180228061459-e0a39a4cb421" -; ,go-github-com-modern-go-concurrent-0.0.0-20180228061459-e0a39a4cb421) -; ("go-github-com-google-gofuzz-1.0.0" -; ,go-github-com-google-gofuzz-1.0.0) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://github.com/json-iterator/go") -; (synopsis "Benchmark") -; (description -; "Package jsoniter implements encoding and decoding of JSON as defined in -;@url{https://rfc-editor.org/rfc/rfc4627.html,RFC 4627} and provides interfaces with identical syntax of standard lib encoding/json. -;Converting from encoding/json to jsoniter is no more than replacing the package with jsoniter -;and variable type declarations (if any). -;jsoniter interfaces gives 100% compatibility with code using standard lib. -;") -; (license license:expat))) -; -;(define-public go-github-com-prometheus-common-0.6.0 -; (package -; (name "go-github-com-prometheus-common") -; (version "0.6.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/common") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1q16br348117ffycxdwsldb0i39p34miclfa8z93k6vjwnrqbh2l")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/common")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1) -; ("go-gopkg-in-alecthomas-kingpin-v2-2.2.6" -; ,go-gopkg-in-alecthomas-kingpin-v2-2.2.6) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980" -; ,go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980) -; ("go-github-com-sirupsen-logrus-1.2.0" -; ,go-github-com-sirupsen-logrus-1.2.0) -; ("go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90" -; ,go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90) -; ("go-github-com-prometheus-client-golang-1.0.0" -; ,go-github-com-prometheus-client-golang-1.0.0) -; ("go-github-com-pkg-errors-0.8.0" ,go-github-com-pkg-errors-0.8.0) -; ("go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223" -; ,go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223) -; ("go-github-com-matttproud-golang-protobuf-extensions-1.0.1" -; ,go-github-com-matttproud-golang-protobuf-extensions-1.0.1) -; ("go-github-com-julienschmidt-httprouter-1.2.0" -; ,go-github-com-julienschmidt-httprouter-1.2.0) -; ("go-github-com-golang-protobuf-1.3.1" -; ,go-github-com-golang-protobuf-1.3.1) -; ("go-github-com-go-logfmt-logfmt-0.4.0" -; ,go-github-com-go-logfmt-logfmt-0.4.0) -; ("go-github-com-go-kit-kit-0.8.0" ,go-github-com-go-kit-kit-0.8.0))) -; (home-page "https://github.com/prometheus/common") -; (synopsis "Common") -; (description -; "This repository contains Go libraries that are shared across Prometheus -;components and libraries. They are considered internal to Prometheus, without -;any stability guarantees for external usage.") -; (license license:asl2.0))) -; -;(define-public go-github-com-prometheus-procfs-0.0.3 -; (package -; (name "go-github-com-prometheus-procfs") -; (version "0.0.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/procfs") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "18c4m795fwng8f8qa395f3crvamlbk5y5afk8b5rzyisnmjq774y")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/procfs")) -; (propagated-inputs -; `(("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" -; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) -; ("go-github-com-google-go-cmp-0.3.0" -; ,go-github-com-google-go-cmp-0.3.0))) -; (home-page "https://github.com/prometheus/procfs") -; (synopsis "procfs") -; (description -; "Package procfs provides functions to retrieve system, kernel and process -;metrics from the pseudo-filesystem proc. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190801041406-cbf593c0f2f3 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190801041406-cbf593c0f2f3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1zmcmckinhclcwlvznjqvs31aww8jnf6pjm9is0nq8lqlvipg5ls")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-prometheus-client-golang-1.1.0 -; (package -; (name "go-github-com-prometheus-client-golang") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/client_golang") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1r0irxkmfnj6ininb06w6ybknini5lz02idawrbkk2i5lq1qcvvf")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/client_golang")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190801041406-cbf593c0f2f3" -; ,go-golang-org-x-sys-0.0.0-20190801041406-cbf593c0f2f3) -; ("go-github-com-prometheus-procfs-0.0.3" -; ,go-github-com-prometheus-procfs-0.0.3) -; ("go-github-com-prometheus-common-0.6.0" -; ,go-github-com-prometheus-common-0.6.0) -; ("go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90" -; ,go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90) -; ("go-github-com-json-iterator-go-1.1.7" -; ,go-github-com-json-iterator-go-1.1.7) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2) -; ("go-github-com-beorn7-perks-1.0.1" -; ,go-github-com-beorn7-perks-1.0.1))) -; (home-page "https://github.com/prometheus/client_golang") -; (synopsis "Prometheus Go client library") -; (description -; "This is the @url{http://golang.org,Go} client library for -;@url{http://prometheus.io,Prometheus}. It has two separate parts, one for -;instrumenting application code, and one for creating clients that talk to the -;Prometheus HTTP API.") -; (license license:asl2.0))) -; -;(define-public go-github-com-docker-go-metrics-0.0.1 -; (package -; (name "go-github-com-docker-go-metrics") -; (version "0.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/docker/go-metrics") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1b6f1889chmwlsgrqxylnks2jic16j2dqhsdd1dvaklk48ky95ga")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/docker/go-metrics")) -; (propagated-inputs -; `(("go-github-com-prometheus-client-golang-1.1.0" -; ,go-github-com-prometheus-client-golang-1.1.0))) -; (home-page "https://github.com/docker/go-metrics") -; (synopsis "go-metrics") -; (description -; "This package is small wrapper around the prometheus go client to help enforce convention and best practices for metrics collection in Docker projects.") -; (license (list license:asl2.0 license:cc-by-sa4.0)))) -; -;(define-public go-github-com-docker-go-units-0.4.0 -; (package -; (name "go-github-com-docker-go-units") -; (version "0.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/docker/go-units") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0k8gja8ql4pqg5rzmqvka42vjfs6rzablak87whcnqba6qxpimvz")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/docker/go-units")) -; (home-page "https://github.com/docker/go-units") -; (synopsis "Introduction") -; (description -; "Package units provides helper function to parse and print size and time units -;in human-readable format. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-docker-libtrust-0.0.0-20150114040149-fa567046d9b1 -; (package -; (name "go-github-com-docker-libtrust") -; (version "0.0.0-20150114040149-fa567046d9b1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/docker/libtrust") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1121c7fxarzyr3fvxyzfw8qs4hb8k92dsix26s5vxncgszl5svf2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/docker/libtrust")) -; (home-page "https://github.com/docker/libtrust") -; (synopsis "libtrust") -; (description -; "Package libtrust provides an interface for managing authentication and -;authorization using public key cryptography. Authentication is handled -;using the identity attached to the public key and verified through TLS -;x509 certificates, a key challenge, or signature. Authorization and -;access control is managed through a trust graph distributed between -;both remote trust servers and locally cached and managed data. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-yuin-goldmark-1.1.27 -; (package -; (name "go-github-com-yuin-goldmark") -; (version "1.1.27") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/yuin/goldmark") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1872cqnii0kwiqcy81yin0idvjy5mdy4zlzz0csb319lcjs3b923")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/yuin/goldmark")) -; (home-page "https://github.com/yuin/goldmark") -; (synopsis "goldmark") -; (description -; "Package goldmark implements functions to convert markdown text to a desired format. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-mod-0.2.0 -; (package -; (name "go-golang-org-x-mod") -; (version "0.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/mod") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1fp6885dclq77mh73v7i54v2b9llpv4di193zc8vmsbbkkc483cl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/mod")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" -; ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) -; ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" -; ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) -; ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" -; ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) -; (home-page "https://golang.org/x/mod") -; (synopsis "mod") -; (description -; "This repository holds packages for writing tools -;that work directly with Go module mechanics. -;That is, it is for direct manipulation of Go modules themselves.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20200226121028-0de0cce0169b") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1db7s5kbzyh2zd5lpv05n7hp8wbwdvgk0wpiwrlnig94mkr0y5aq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20200619180055-7c47624df98f -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20200619180055-7c47624df98f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1fhzwd32j7w9g3algq0zj8g7ivx3f0mn9nx9mj046wdscryn49mk")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" -; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) -; ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" -; ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) -; ("go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b" -; ,go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b) -; ("go-golang-org-x-mod-0.2.0" ,go-golang-org-x-mod-0.2.0) -; ("go-github-com-yuin-goldmark-1.1.27" -; ,go-github-com-yuin-goldmark-1.1.27))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-github-com-kisielk-errcheck-1.5.0 -; (package -; (name "go-github-com-kisielk-errcheck") -; (version "1.5.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kisielk/errcheck") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ci3jz2px74pfmr42jv7dpx7fdzx08vai4czp9fkiyb0gcaiqsk6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kisielk/errcheck")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20200619180055-7c47624df98f" -; ,go-golang-org-x-tools-0.0.0-20200619180055-7c47624df98f))) -; (home-page "https://github.com/kisielk/errcheck") -; (synopsis "errcheck") -; (description -; "errcheck is a program for checking for unchecked errors in go programs.") -; (license license:expat))) -; -;(define-public go-github-com-kisielk-gotool-1.0.0 -; (package -; (name "go-github-com-kisielk-gotool") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kisielk/gotool") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "14af2pa0ssyp8bp2mvdw184s5wcysk6akil3wzxmr05wwy951iwn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kisielk/gotool")) -; (home-page "https://github.com/kisielk/gotool") -; (synopsis "gotool") -; (description -; "Package gotool contains utility functions used to implement the standard -;\"cmd/go\" tool, provided as a convenience to developers who want to write -;tools with similar semantics. -;") -; (license license:expat))) -; -;(define-public go-github-com-yuin-goldmark-1.2.1 -; (package -; (name "go-github-com-yuin-goldmark") -; (version "1.2.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/yuin/goldmark") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "12rsnsf65drcp0jfw2jl9w589vsn3pxdk1zh3v9q908iigngrcmy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/yuin/goldmark")) -; (home-page "https://github.com/yuin/goldmark") -; (synopsis "goldmark") -; (description -; "Package goldmark implements functions to convert markdown text to a desired format. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-mod-0.3.0 -; (package -; (name "go-golang-org-x-mod") -; (version "0.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/mod") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ldgbx2zpprbsfn6p8pfgs4nn87gwbfcv2z0fa7n8alwsq2yw78q")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/mod")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" -; ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) -; ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" -; ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) -; ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" -; ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) -; (home-page "https://golang.org/x/mod") -; (synopsis "mod") -; (description -; "This repository holds packages for writing tools -;that work directly with Go module mechanics. -;That is, it is for direct manipulation of Go modules themselves.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20200622213623-75b288015ac9") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "18vlncvvs11ds3zaaziqjlg5s2vcwi3496nn6qv7p0dp94j5pwa2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" -; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) -; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" -; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20200930185726-fdedc70b468f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1njlfhjbvi4lxvjbq8zswrb0y0q4jd2p6x51h1q6vmyzi9af6869")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20201021035429-f5854403a974 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20201021035429-f5854403a974") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1vw63zpmhi337f3gc432x3wkib4j2ia8dy7if31wxwb9dgqvy222")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) -; ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" -; ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) -; ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" -; ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9 -; (package -; (name "go-golang-org-x-sync") -; (version "0.0.0-20201020160332-67f06af15bc9") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sync") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "093p4panc808ak5bamzz7m9nb0xxib7778jpnr6f0xkz1n4fzyw5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sync")) -; (home-page "https://golang.org/x/sync") -; (synopsis "Go Sync") -; (description -; "This repository provides Go concurrency primitives in addition to the -;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20210106214847-113979e3529a -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20210106214847-113979e3529a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0pq1a7hkamqdwsajyfrb27s56cvxz5838krsgyqz346s2djwdrzl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" -; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) -; ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" -; ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) -; ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" -; ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) -; ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) -; ("go-github-com-yuin-goldmark-1.2.1" -; ,go-github-com-yuin-goldmark-1.2.1))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-github-com-gogo-protobuf-1.3.2 -; (package -; (name "go-github-com-gogo-protobuf") -; (version "1.3.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/gogo/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0dfv1bhx5zhb5bsj5sj757nkacf2swp1ajpcyj9d0b37n602m18a")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/gogo/protobuf")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20210106214847-113979e3529a" -; ,go-golang-org-x-tools-0.0.0-20210106214847-113979e3529a) -; ("go-github-com-kisielk-gotool-1.0.0" -; ,go-github-com-kisielk-gotool-1.0.0) -; ("go-github-com-kisielk-errcheck-1.5.0" -; ,go-github-com-kisielk-errcheck-1.5.0))) -; (home-page "https://github.com/gogo/protobuf") -; (synopsis "Protocol Buffers for Go with Gadgets") -; (description -; "gogoprotobuf is a fork of @url{https://github.com/golang/protobuf,golang/protobuf} with extra code generation features.") -; (license license:bsd-3))) -; -;(define-public go-github-com-gomodule-redigo-1.8.2 -; (package -; (name "go-github-com-gomodule-redigo") -; (version "1.8.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/gomodule/redigo") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0wp37175n4lgkq234px9vx0c7mdx8sx3d45zky73az8zbabirwga")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/gomodule/redigo")) -; (propagated-inputs -; `(("go-github-com-stretchr-testify-1.5.1" -; ,go-github-com-stretchr-testify-1.5.1))) -; (home-page "https://github.com/gomodule/redigo") -; (synopsis "Redigo") -; (description -; "Redigo is a @url{http://golang.org/,Go} client for the @url{http://redis.io/,Redis} database.") -; (license license:asl2.0))) -; -;(define-public go-github-com-felixge-httpsnoop-1.0.1 -; (package -; (name "go-github-com-felixge-httpsnoop") -; (version "1.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/felixge/httpsnoop") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ncd8lar5zxiwjhsp315s4hsl4bhnm271h49jhyxc66r5yffgmac")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/felixge/httpsnoop")) -; (home-page "https://github.com/felixge/httpsnoop") -; (synopsis "httpsnoop") -; (description -; "Package httpsnoop provides an easy way to capture http related metrics (i.e. -;response time, bytes written, and http status code) from your application's -;http.Handlers. -;") -; (license license:expat))) -; -;(define-public go-github-com-gorilla-handlers-1.5.1 -; (package -; (name "go-github-com-gorilla-handlers") -; (version "1.5.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/gorilla/handlers") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "15gycdz9lkjnsvvichsbdf25vf6pi1sfn41khhz53iqf300l0w0s")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/gorilla/handlers")) -; (propagated-inputs -; `(("go-github-com-felixge-httpsnoop-1.0.1" -; ,go-github-com-felixge-httpsnoop-1.0.1))) -; (home-page "https://github.com/gorilla/handlers") -; (synopsis "gorilla/handlers") -; (description -; "Package handlers is a collection of handlers (aka \"HTTP middleware\") for use -;with Go's net/http package (or any framework supporting http.Handler). -;") -; (license license:bsd-2))) -; -;(define-public go-github-com-gorilla-mux-1.8.0 -; (package -; (name "go-github-com-gorilla-mux") -; (version "1.8.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/gorilla/mux") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "18f0q9qxgq1yh4ji07mqhiydfcwvi56z9d775v7dc7yckj33kpdk")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/gorilla/mux")) -; (home-page "https://github.com/gorilla/mux") -; (synopsis "gorilla/mux") -; (description "Package mux implements a request router and dispatcher. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-inconshreveable-mousetrap-1.0.0 -; (package -; (name "go-github-com-inconshreveable-mousetrap") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/inconshreveable/mousetrap") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1mn0kg48xkd74brf48qf5hzp0bc6g8cf5a77w895rl3qnlpfw152")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/inconshreveable/mousetrap")) -; (home-page "https://github.com/inconshreveable/mousetrap") -; (synopsis "mousetrap") -; (description "mousetrap is a tiny library that answers a single question.") -; (license license:asl2.0))) -; -;(define-public go-github-com-klauspost-compress-1.11.13 -; (package -; (name "go-github-com-klauspost-compress") -; (version "1.11.13") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/klauspost/compress") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "19l2rbh6vg0ly4qp2gn5lf39ijggf7asav7lxziikkhjqqb4223j")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/klauspost/compress")) -; (home-page "https://github.com/klauspost/compress") -; (synopsis "compress") -; (description "This package provides various compression algorithms.") -; (license #f))) -; -;(define-public go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369 -; (package -; (name "go-github-com-matttproud-golang-protobuf-extensions") -; (version "1.0.2-0.20181231171920-c182affec369") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/matttproud/golang_protobuf_extensions") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1xqsf9vpcrd4hp95rl6kgmjvkv1df4aicfw4l5vfcxcwxknfx2xs")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "github.com/matttproud/golang_protobuf_extensions")) -; (propagated-inputs -; `(("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" -; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0))) -; (home-page "https://github.com/matttproud/golang_protobuf_extensions") -; (synopsis "Overview") -; (description -; "This repository provides various Protocol Buffer extensions for the Go -;language (golang), namely support for record length-delimited message -;streaming.") -; (license license:asl2.0))) -; -;(define-public go-github-com-moby-locker-1.0.1 -; (package -; (name "go-github-com-moby-locker") -; (version "1.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/moby/locker") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "07rc2c6h35f9mcy81jp382a030f6xmcifi9n5jnlayybfwxmpjir")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/moby/locker")) -; (home-page "https://github.com/moby/locker") -; (synopsis "Locker") -; (description -; "Package locker provides a mechanism for creating finer-grained locking to help -;free up more global locks to handle other tasks. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-azure-go-ansiterm-0.0.0-20170929234023-d6e3b3328b78 -; (package -; (name "go-github-com-azure-go-ansiterm") -; (version "0.0.0-20170929234023-d6e3b3328b78") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/Azure/go-ansiterm") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "010khrkhkf9cxlvvb6ncqv4c1qcdmpbz9jn38g4fxf4xsma8xx1q")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/Azure/go-ansiterm")) -; (home-page "https://github.com/Azure/go-ansiterm") -; (synopsis "go-ansiterm") -; (description -; "This is a cross platform Ansi Terminal Emulation library. It reads a stream of Ansi characters and produces the appropriate function calls. The results of the function calls are platform dependent.") -; (license license:expat))) -; -;(define-public go-github-com-pkg-errors-0.9.1 -; (package -; (name "go-github-com-pkg-errors") -; (version "0.9.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/pkg/errors") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1761pybhc2kqr6v5fm8faj08x9bql8427yqg6vnfv6nhrasx1mwq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/pkg/errors")) -; (home-page "https://github.com/pkg/errors") -; (synopsis "errors") -; (description "Package errors provides simple error handling primitives. -;") -; (license license:bsd-2))) -; -;(define-public go-golang-org-x-sys-0.0.0-20200302150141-5c8b2ff67527 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20200302150141-5c8b2ff67527") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0r5s7f4w7crrbcf5ydpr2xzsq0svjm332vsds41yp58kwi2lvh2v")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-gotest-tools-2.2.0+incompatible -; (package -; (name "go-gotest-tools") -; (version "2.2.0+incompatible") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/gotestyourself/gotest.tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0yif3gdyckmf8i54jq0xn00kflla5rhib9sarw66ngnbl7bn9kyl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "gotest.tools")) -; (home-page "https://gotest.tools") -; (synopsis "gotest.tools") -; (description -; "Package gotesttools is a collection of packages to augment `testing` and -;support common patterns. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-spf13-pflag-1.0.3 -; (package -; (name "go-github-com-spf13-pflag") -; (version "1.0.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/spf13/pflag") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1cj3cjm7d3zk0mf1xdybh0jywkbbw7a6yr3y22x9sis31scprswd")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/spf13/pflag")) -; (home-page "https://github.com/spf13/pflag") -; (synopsis "Description") -; (description -; "Package pflag is a drop-in replacement for Go's flag package, implementing -;POSIX/GNU-style --flags. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20190624222133-a101b041ded4 -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20190624222133-a101b041ded4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1pm50dybm5wixjjspvfpafjmiy81b1zp08h13gxc5cylrfgncrfl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" -; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-gotest-tools-v3-3.0.2 -; (package -; (name "go-gotest-tools-v3") -; (version "3.0.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/gotestyourself/gotest.tools") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0cap2aq2wphnbkkzkck5zdjxb64q3jqxfwpkgqys7279rbr8cvjm")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gotest.tools/v3" #:unpack-path "gotest.tools/v3")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20190624222133-a101b041ded4" -; ,go-golang-org-x-tools-0.0.0-20190624222133-a101b041ded4) -; ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) -; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) -; ("go-github-com-google-go-cmp-0.3.0" -; ,go-github-com-google-go-cmp-0.3.0))) -; (home-page "https://gotest.tools/v3") -; (synopsis "gotest.tools") -; (description -; "Package gotesttools is a collection of packages to augment `testing` and -;support common patterns. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd -; (package -; (name "go-github-com-moby-term") -; (version "0.0.0-20200312100748-672ec06f55cd") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/moby/term") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0xspasm3d101hmjsayrbx6az4r4ybbg5gkj13qybhpq674a6kkwn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/moby/term")) -; (propagated-inputs -; `(("go-gotest-tools-v3-3.0.2" ,go-gotest-tools-v3-3.0.2) -; ("go-gotest-tools-2.2.0+incompatible" -; ,go-gotest-tools-2.2.0+incompatible) -; ("go-golang-org-x-sys-0.0.0-20200302150141-5c8b2ff67527" -; ,go-golang-org-x-sys-0.0.0-20200302150141-5c8b2ff67527) -; ("go-github-com-sirupsen-logrus-1.4.2" -; ,go-github-com-sirupsen-logrus-1.4.2) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-google-go-cmp-0.3.1" -; ,go-github-com-google-go-cmp-0.3.1) -; ("go-github-com-azure-go-ansiterm-0.0.0-20170929234023-d6e3b3328b78" -; ,go-github-com-azure-go-ansiterm-0.0.0-20170929234023-d6e3b3328b78))) -; (home-page "https://github.com/moby/term") -; (synopsis "term - utilities for dealing with terminals") -; (description -; "Package term provides structures and helper functions to work with -;terminal (state, sizes). -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-morikuni-aec-1.0.0 -; (package -; (name "go-github-com-morikuni-aec") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/morikuni/aec") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1qaqh0lk9wrqgff0yrxnbznvmwyhdxy3g9b2hjpazp5bw4nj0dp7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/morikuni/aec")) -; (home-page "https://github.com/morikuni/aec") -; (synopsis "aec") -; (description "Go wrapper for ANSI escape code.") -; (license license:expat))) -; -;(define-public go-github-com-beorn7-perks-1.0.1 -; (package -; (name "go-github-com-beorn7-perks") -; (version "1.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/beorn7/perks") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "17n4yygjxa6p499dj3yaqzfww2g7528165cl13haj97hlx94dgl7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/beorn7/perks")) -; (home-page "https://github.com/beorn7/perks") -; (synopsis "Perks for Go (golang.org)") -; (description -; "Perks contains the Go package quantile that computes approximate quantiles over -;an unbounded data stream within low memory and CPU bounds.") -; (license license:expat))) -; -;(define-public go-github-com-cespare-xxhash-v2-2.1.1 -; (package -; (name "go-github-com-cespare-xxhash-v2") -; (version "2.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/cespare/xxhash") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0rl5rs8546zj1vzggv38w93wx0b5dvav7yy5hzxa8kw7iikv1cgr")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/cespare/xxhash/v2")) -; (home-page "https://github.com/cespare/xxhash") -; (synopsis "xxhash") -; (description -; "Package xxhash implements the 64-bit variant of xxHash (XXH64) as described -;at @url{http://cyan4973.github.io/xxHash/,http://cyan4973.github.io/xxHash/}. -;") -; (license license:expat))) -; -;(define-public go-github-com-google-gofuzz-1.0.0 -; (package -; (name "go-github-com-google-gofuzz") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/gofuzz") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0qz439qvccm91w0mmjz4fqgx48clxdwagkvvx89cr43q1d4iry36")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/gofuzz")) -; (home-page "https://github.com/google/gofuzz") -; (synopsis "gofuzz") -; (description -; "Package fuzz is a library for populating go objects with random values. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-modern-go-concurrent-0.0.0-20180228061459-e0a39a4cb421 -; (package -; (name "go-github-com-modern-go-concurrent") -; (version "0.0.0-20180228061459-e0a39a4cb421") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/modern-go/concurrent") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0hamz1zimsxm9vl0ih19v7sbibglwq2j6473w4j9k7ib80fmxdzr")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/modern-go/concurrent")) -; (home-page "https://github.com/modern-go/concurrent") -; (synopsis "concurrent") -; (description -; "because sync.Map is only available in go 1.9, we can use concurrent.Map to make code portable") -; (license license:asl2.0))) -; -;(define-public go-github-com-modern-go-reflect2-0.0.0-20180701023420-4b7aa43c6742 -; (package -; (name "go-github-com-modern-go-reflect2") -; (version "0.0.0-20180701023420-4b7aa43c6742") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/modern-go/reflect2") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1721y3yr3dpx5dx5ashf063qczk2awy5zjir1jvp1h5hn7qz4i49")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/modern-go/reflect2")) -; (home-page "https://github.com/modern-go/reflect2") -; (synopsis "reflect2") -; (description "reflect api that avoids runtime reflect.Value cost") -; (license license:asl2.0))) -; -;(define-public go-github-com-json-iterator-go-1.1.10 -; (package -; (name "go-github-com-json-iterator-go") -; (version "1.1.10") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/json-iterator/go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "134zwc2pmf8nd90r8065wsl6vv1mwjl23bs70i08dzhw5h98drr4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/json-iterator/go")) -; (propagated-inputs -; `(("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0) -; ("go-github-com-modern-go-reflect2-0.0.0-20180701023420-4b7aa43c6742" -; ,go-github-com-modern-go-reflect2-0.0.0-20180701023420-4b7aa43c6742) -; ("go-github-com-modern-go-concurrent-0.0.0-20180228061459-e0a39a4cb421" -; ,go-github-com-modern-go-concurrent-0.0.0-20180228061459-e0a39a4cb421) -; ("go-github-com-google-gofuzz-1.0.0" -; ,go-github-com-google-gofuzz-1.0.0) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://github.com/json-iterator/go") -; (synopsis "Benchmark") -; (description -; "Package jsoniter implements encoding and decoding of JSON as defined in -;@url{https://rfc-editor.org/rfc/rfc4627.html,RFC 4627} and provides interfaces with identical syntax of standard lib encoding/json. -;Converting from encoding/json to jsoniter is no more than replacing the package with jsoniter -;and variable type declarations (if any). -;jsoniter interfaces gives 100% compatibility with code using standard lib. -;") -; (license license:expat))) -; -;(define-public go-github-com-kr-pty-1.1.1 -; (package -; (name "go-github-com-kr-pty") -; (version "1.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kr/pty") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0383f0mb9kqjvncqrfpidsf8y6ns5zlrc91c6a74xpyxjwvzl2y6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kr/pty")) -; (home-page "https://github.com/kr/pty") -; (synopsis "pty") -; (description -; "Package pty is a wrapper for github.com/creack/pty, which provides -;functions for working with Unix terminals. -;") -; (license license:expat))) -; -;(define-public go-github-com-kr-text-0.1.0 -; (package -; (name "go-github-com-kr-text") -; (version "0.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kr/text") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1gm5bsl01apvc84bw06hasawyqm4q84vx1pm32wr9jnd7a8vjgj1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kr/text")) -; (propagated-inputs -; `(("go-github-com-kr-pty-1.1.1" ,go-github-com-kr-pty-1.1.1))) -; (home-page "https://github.com/kr/text") -; (synopsis #f) -; (description -; "Package text provides rudimentary functions for manipulating text in -;paragraphs. -;") -; (license license:expat))) -; -;(define-public go-github-com-kr-pretty-0.1.0 -; (package -; (name "go-github-com-kr-pretty") -; (version "0.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kr/pretty") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "18m4pwg2abd0j9cn5v3k2ksk9ig4vlwxmlw9rrglanziv9l967qp")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kr/pretty")) -; (propagated-inputs -; `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) -; (home-page "https://github.com/kr/pretty") -; (synopsis #f) -; (description -; "Package pretty provides pretty-printing for Go values. This is -;useful during debugging, to avoid wrapping long output lines in -;the terminal. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e -; (package -; (name "go-golang-org-x-sync") -; (version "0.0.0-20190911185100-cd5d95a43a6e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sync") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1nqkyz2y1qvqcma52ijh02s8aiqmkfb95j08f6zcjhbga3ds6hds")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sync")) -; (home-page "https://golang.org/x/sync") -; (synopsis "Go Sync") -; (description -; "This repository provides Go concurrency primitives in addition to the -;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20200106162015-b016eb3dc98e -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20200106162015-b016eb3dc98e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1k0qr26046d228gi6ngkfxp4m1rjgxk4jj75h0kh1cpyp91n5rja")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-prometheus-procfs-0.1.3 -; (package -; (name "go-github-com-prometheus-procfs") -; (version "0.1.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/procfs") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "09wmlmvmjf49nchidqffc99wn6vl98v5k9qgyyrhqgv0015xskwa")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/procfs")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20200106162015-b016eb3dc98e" -; ,go-golang-org-x-sys-0.0.0-20200106162015-b016eb3dc98e) -; ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" -; ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) -; ("go-github-com-google-go-cmp-0.3.1" -; ,go-github-com-google-go-cmp-0.3.1))) -; (home-page "https://github.com/prometheus/procfs") -; (synopsis "procfs") -; (description -; "Package procfs provides functions to retrieve system, kernel and process -;metrics from the pseudo-filesystem proc. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-stretchr-testify-1.4.0 -; (package -; (name "go-github-com-stretchr-testify") -; (version "1.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/testify") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "187i5g88sxfy4vxpm7dw1gwv29pa2qaq475lxrdh5livh69wqfjb")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/testify")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) -; ("go-github-com-stretchr-objx-0.1.0" -; ,go-github-com-stretchr-objx-0.1.0) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-davecgh-go-spew-1.1.0" -; ,go-github-com-davecgh-go-spew-1.1.0))) -; (home-page "https://github.com/stretchr/testify") -; (synopsis "Testify - Thou Shalt Write Tests") -; (description -; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-sys-0.0.0-20200615200032-f1bc736245b1 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20200615200032-f1bc736245b1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1fbmih4n2xw53qbpmc7msqf2660i4ryr0chbrsbj8mdalfrjr0vp")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15 -; (package -; (name "go-gopkg-in-check-v1") -; (version "1.0.0-20190902080502-41f04d3bba15") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/check.v1") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0vfk9czmlxmp6wndq8k17rhnjxal764mxfhrccza7nwlia760pjy")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) -; (home-page "https://gopkg.in/check.v1") -; (synopsis "Instructions") -; (description -; "Package check is a rich testing extension for Go's testing package. -;") -; (license license:bsd-2))) -; -;(define-public go-gopkg-in-yaml-v2-2.2.5 -; (package -; (name "go-gopkg-in-yaml-v2") -; (version "2.2.5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/yaml.v2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "08smz8dfyxp02ha74my9iszqa5qzgl3ksi28ilyp8lqipssiq6fg")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" -; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) -; (home-page "https://gopkg.in/yaml.v2") -; (synopsis "YAML support for the Go language") -; (description "Package yaml implements YAML support for the Go language. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-prometheus-client-golang-1.7.1 -; (package -; (name "go-github-com-prometheus-client-golang") -; (version "1.7.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/client_golang") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0i9wbwjq3idgp9y0vv7fvg6g7zrqi9qlfw915xc49ahw83q2h61w")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/client_golang")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.2.5" ,go-gopkg-in-yaml-v2-2.2.5) -; ("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" -; ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) -; ("go-golang-org-x-sys-0.0.0-20200615200032-f1bc736245b1" -; ,go-golang-org-x-sys-0.0.0-20200615200032-f1bc736245b1) -; ("go-github-com-stretchr-testify-1.4.0" -; ,go-github-com-stretchr-testify-1.4.0) -; ("go-github-com-prometheus-procfs-0.1.3" -; ,go-github-com-prometheus-procfs-0.1.3) -; ("go-github-com-prometheus-common-0.10.0" -; ,go-github-com-prometheus-common-0.10.0) -; ("go-github-com-prometheus-client-model-0.2.0" -; ,go-github-com-prometheus-client-model-0.2.0) -; ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0) -; ("go-github-com-json-iterator-go-1.1.10" -; ,go-github-com-json-iterator-go-1.1.10) -; ("go-github-com-golang-protobuf-1.4.2" -; ,go-github-com-golang-protobuf-1.4.2) -; ("go-github-com-cespare-xxhash-v2-2.1.1" -; ,go-github-com-cespare-xxhash-v2-2.1.1) -; ("go-github-com-beorn7-perks-1.0.1" -; ,go-github-com-beorn7-perks-1.0.1))) -; (home-page "https://github.com/prometheus/client_golang") -; (synopsis "Prometheus Go client library") -; (description -; "This is the @url{http://golang.org,Go} client library for -;@url{http://prometheus.io,Prometheus}. It has two separate parts, one for -;instrumenting application code, and one for creating clients that talk to the -;Prometheus HTTP API.") -; (license license:asl2.0))) -; -;(define-public go-github-com-alecthomas-template-0.0.0-20190718012654-fb15b899a751 -; (package -; (name "go-github-com-alecthomas-template") -; (version "0.0.0-20190718012654-fb15b899a751") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/alecthomas/template") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1vlasv4dgycydh5wx6jdcvz40zdv90zz1h7836z7lhsi2ymvii26")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/alecthomas/template")) -; (home-page "https://github.com/alecthomas/template") -; (synopsis "Go's") -; (description -; "Package template implements data-driven templates for generating textual output. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-alecthomas-units-0.0.0-20190717042225-c3de453c63f4 -; (package -; (name "go-github-com-alecthomas-units") -; (version "0.0.0-20190717042225-c3de453c63f4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/alecthomas/units") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0js37zlgv37y61j4a2d46jh72xm5kxmpaiw0ya9v944bjpc386my")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/alecthomas/units")) -; (home-page "https://github.com/alecthomas/units") -; (synopsis "Units - Helpful unit multipliers and functions for Go") -; (description -; "Package units provides helpful unit multipliers and functions for Go. -;") -; (license license:expat))) -; -;(define-public go-github-com-go-kit-kit-0.9.0 -; (package -; (name "go-github-com-go-kit-kit") -; (version "0.9.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/go-kit/kit") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "09038mnw705h7isbjp8dzgp2i04bp5rqkmifxvwc5xkh75s00qpw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/go-kit/kit")) -; (home-page "https://github.com/go-kit/kit") -; (synopsis "Go kit") -; (description -; "@strong{Go kit} is a @strong{programming toolkit} for building microservices -;(or elegant monoliths) in Go. We solve common problems in distributed -;systems and application architecture so you can focus on delivering -;business value.") -; (license license:expat))) -; -;(define-public go-github-com-go-logfmt-logfmt-0.4.0 -; (package -; (name "go-github-com-go-logfmt-logfmt") -; (version "0.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/go-logfmt/logfmt") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "06smxc112xmixz78nyvk3b2hmc7wasf2sl5vxj1xz62kqcq9lzm9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/go-logfmt/logfmt")) -; (propagated-inputs -; `(("go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515" -; ,go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515))) -; (home-page "https://github.com/go-logfmt/logfmt") -; (synopsis "logfmt") -; (description -; "Package logfmt implements utilities to marshal and unmarshal data in the -;logfmt format. The logfmt format records key/value pairs in a way that -;balances readability for humans and simplicity of computer parsing. It is -;most commonly used as a more human friendly alternative to JSON for -;structured logging. -;") -; (license license:expat))) -; -;(define-public go-github-com-pkg-errors-0.8.1 -; (package -; (name "go-github-com-pkg-errors") -; (version "0.8.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/pkg/errors") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0g5qcb4d4fd96midz0zdk8b9kz8xkzwfa8kr1cliqbg8sxsy5vd1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/pkg/errors")) -; (home-page "https://github.com/pkg/errors") -; (synopsis "errors") -; (description "Package errors provides simple error handling primitives. -;") -; (license license:bsd-2))) -; -;(define-public go-github-com-beorn7-perks-1.0.0 -; (package -; (name "go-github-com-beorn7-perks") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/beorn7/perks") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1i1nz1f6g55xi2y3aiaz5kqfgvknarbfl4f0sx4nyyb4s7xb1z9x")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/beorn7/perks")) -; (home-page "https://github.com/beorn7/perks") -; (synopsis "Perks for Go (golang.org)") -; (description -; "Perks contains the Go package quantile that computes approximate quantiles over -;an unbounded data stream within low memory and CPU bounds.") -; (license license:expat))) -; -;(define-public go-github-com-golang-protobuf-1.3.1 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.3.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "15am4s4646qy6iv0g3kkqq52rzykqjhm4bf08dk0fy2r58knpsyl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-github-com-json-iterator-go-1.1.6 -; (package -; (name "go-github-com-json-iterator-go") -; (version "1.1.6") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/json-iterator/go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "08caswxvdn7nvaqyj5kyny6ghpygandlbw9vxdj7l5vkp7q0s43r")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/json-iterator/go")) -; (home-page "https://github.com/json-iterator/go") -; (synopsis "Benchmark") -; (description -; "Package jsoniter implements encoding and decoding of JSON as defined in -;@url{https://rfc-editor.org/rfc/rfc4627.html,RFC 4627} and provides interfaces with identical syntax of standard lib encoding/json. -;Converting from encoding/json to jsoniter is no more than replacing the package with jsoniter -;and variable type declarations (if any). -;jsoniter interfaces gives 100% compatibility with code using standard lib. -;") -; (license license:expat))) -; -;(define-public go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd -; (package -; (name "go-github-com-modern-go-concurrent") -; (version "0.0.0-20180306012644-bacd9c7ef1dd") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/modern-go/concurrent") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0s0fxccsyb8icjmiym5k7prcqx36hvgdwl588y0491gi18k5i4zs")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/modern-go/concurrent")) -; (home-page "https://github.com/modern-go/concurrent") -; (synopsis "concurrent") -; (description -; "because sync.Map is only available in go 1.9, we can use concurrent.Map to make code portable") -; (license license:asl2.0))) -; -;(define-public go-github-com-modern-go-reflect2-1.0.1 -; (package -; (name "go-github-com-modern-go-reflect2") -; (version "1.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/modern-go/reflect2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "06a3sablw53n1dqqbr2f53jyksbxdmmk8axaas4yvnhyfi55k4lf")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/modern-go/reflect2")) -; (home-page "https://github.com/modern-go/reflect2") -; (synopsis "reflect2") -; (description "reflect api that avoids runtime reflect.Value cost") -; (license license:asl2.0))) -; -;(define-public go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90 -; (package -; (name "go-github-com-prometheus-client-model") -; (version "0.0.0-20190129233127-fd36f4220a90") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/client_model") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1bs5d72k361llflgl94c22n0w53j30rsfh84smgk8mbjbcmjsaa5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/client_model")) -; (propagated-inputs -; `(("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" -; ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0))) -; (home-page "https://github.com/prometheus/client_model") -; (synopsis "Deprecation note") -; (description -; "This repository used to contain the code that defined both -;the data model and the exposition format of Prometheus metrics.") -; (license license:asl2.0))) -; -;(define-public go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc -; (package -; (name "go-github-com-alecthomas-template") -; (version "0.0.0-20160405071501-a0175ee3bccc") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/alecthomas/template") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0qjgvvh26vk1cyfq9fadyhfgdj36f1iapbmr5xp6zqipldz8ffxj")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/alecthomas/template")) -; (home-page "https://github.com/alecthomas/template") -; (synopsis "Go's") -; (description -; "Package template implements data-driven templates for generating textual output. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf -; (package -; (name "go-github-com-alecthomas-units") -; (version "0.0.0-20151022065526-2efee857e7cf") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/alecthomas/units") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1j65b91qb9sbrml9cpabfrcf07wmgzzghrl7809hjjhrmbzri5bl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/alecthomas/units")) -; (home-page "https://github.com/alecthomas/units") -; (synopsis "Units - Helpful unit multipliers and functions for Go") -; (description -; "Package units provides helpful unit multipliers and functions for Go. -;") -; (license license:expat))) -; -;(define-public go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973 -; (package -; (name "go-github-com-beorn7-perks") -; (version "0.0.0-20180321164747-3a771d992973") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/beorn7/perks") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1l2lns4f5jabp61201sh88zf3b0q793w4zdgp9nll7mmfcxxjif3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/beorn7/perks")) -; (home-page "https://github.com/beorn7/perks") -; (synopsis "Perks for Go (golang.org)") -; (description -; "Perks contains the Go package quantile that computes approximate quantiles over -;an unbounded data stream within low memory and CPU bounds.") -; (license license:expat))) -; -;(define-public go-github-com-go-kit-kit-0.8.0 -; (package -; (name "go-github-com-go-kit-kit") -; (version "0.8.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/go-kit/kit") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1rcywbc2pvab06qyf8pc2rdfjv7r6kxdv2v4wnpqnjhz225wqvc0")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/go-kit/kit")) -; (home-page "https://github.com/go-kit/kit") -; (synopsis "Go kit") -; (description -; "@strong{Go kit} is a @strong{programming toolkit} for building microservices -;(or elegant monoliths) in Go. We solve common problems in distributed -;systems and application architecture so you can focus on delivering -;business value.") -; (license license:expat))) -; -;(define-public go-github-com-go-logfmt-logfmt-0.3.0 -; (package -; (name "go-github-com-go-logfmt-logfmt") -; (version "0.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/go-logfmt/logfmt") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1gkgh3k5w1xwb2qbjq52p6azq3h1c1rr6pfwjlwj1zrijpzn2xb9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/go-logfmt/logfmt")) -; (home-page "https://github.com/go-logfmt/logfmt") -; (synopsis "logfmt") -; (description -; "Package logfmt implements utilities to marshal and unmarshal data in the -;logfmt format. The logfmt format records key/value pairs in a way that -;balances readability for humans and simplicity of computer parsing. It is -;most commonly used as a more human friendly alternative to JSON for -;structured logging. -;") -; (license license:expat))) -; -;(define-public go-github-com-go-stack-stack-1.8.0 -; (package -; (name "go-github-com-go-stack-stack") -; (version "1.8.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/go-stack/stack") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0wk25751ryyvxclyp8jdk5c3ar0cmfr8lrjb66qbg4808x66b96v")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/go-stack/stack")) -; (home-page "https://github.com/go-stack/stack") -; (synopsis "stack") -; (description -; "Package stack implements utilities to capture, manipulate, and format call -;stacks. It provides a simpler API than package runtime. -;") -; (license license:expat))) -; -;(define-public go-github-com-gogo-protobuf-1.1.1 -; (package -; (name "go-github-com-gogo-protobuf") -; (version "1.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/gogo/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1525pq7r6h3s8dncvq8gxi893p2nq8dxpzvq0nfl5b4p6mq0v1c2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/gogo/protobuf")) -; (home-page "https://github.com/gogo/protobuf") -; (synopsis "Protocol Buffers for Go with Gadgets") -; (description -; "gogoprotobuf is a fork of @url{https://github.com/golang/protobuf,golang/protobuf} with extra code generation features.") -; (license license:bsd-3))) -; -;(define-public go-github-com-julienschmidt-httprouter-1.2.0 -; (package -; (name "go-github-com-julienschmidt-httprouter") -; (version "1.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/julienschmidt/httprouter") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1k8bylc9s4vpvf5xhqh9h246dl1snxrzzz0614zz88cdh8yzs666")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/julienschmidt/httprouter")) -; (home-page "https://github.com/julienschmidt/httprouter") -; (synopsis "HttpRouter") -; (description -; "Package httprouter is a trie based high performance HTTP request router. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515 -; (package -; (name "go-github-com-kr-logfmt") -; (version "0.0.0-20140226030751-b84e30acd515") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kr/logfmt") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "02ldzxgznrfdzvghfraslhgp19la1fczcbzh7wm2zdc6lmpd1qq9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kr/logfmt")) -; (home-page "https://github.com/kr/logfmt") -; (synopsis #f) -; (description -; "Package implements the decoding of logfmt key-value pairs. -;") -; (license license:expat))) -; -;(define-public go-github-com-matttproud-golang-protobuf-extensions-1.0.1 -; (package -; (name "go-github-com-matttproud-golang-protobuf-extensions") -; (version "1.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/matttproud/golang_protobuf_extensions") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1d0c1isd2lk9pnfq2nk0aih356j30k3h1gi2w0ixsivi5csl7jya")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "github.com/matttproud/golang_protobuf_extensions")) -; (home-page "https://github.com/matttproud/golang_protobuf_extensions") -; (synopsis "Overview") -; (description -; "This repository provides various Protocol Buffer extensions for the Go -;language (golang), namely support for record length-delimited message -;streaming.") -; (license license:asl2.0))) -; -;(define-public go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223 -; (package -; (name "go-github-com-mwitkow-go-conntrack") -; (version "0.0.0-20161129095857-cc309e4a2223") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mwitkow/go-conntrack") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0nbrnpk7bkmqg9mzwsxlm0y8m7s9qd9phr1q30qlx2qmdmz7c1mf")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mwitkow/go-conntrack")) -; (home-page "https://github.com/mwitkow/go-conntrack") -; (synopsis "Go tracing and monitoring (Prometheus) for") -; (description -; "@url{https://prometheus.io/,Prometheus} monitoring and @url{https://godoc.org/golang.org/x/net/trace#EventLog,(code x/net/trace)} tracing wrappers @code{net.Conn}, both inbound (@code{net.Listener}) and outbound (@code{net.Dialer}).") -; (license license:asl2.0))) -; -;(define-public go-github-com-pkg-errors-0.8.0 -; (package -; (name "go-github-com-pkg-errors") -; (version "0.8.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/pkg/errors") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "001i6n71ghp2l6kdl3qq1v2vmghcz3kicv9a5wgcihrzigm75pp5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/pkg/errors")) -; (home-page "https://github.com/pkg/errors") -; (synopsis "errors") -; (description "Package errors provides simple error handling primitives. -;") -; (license license:bsd-2))) -; -;(define-public go-github-com-prometheus-client-golang-0.9.1 -; (package -; (name "go-github-com-prometheus-client-golang") -; (version "0.9.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/client_golang") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "01gnylazia30pcp069xcng482gwmm3xcx5zgrlwdkhic1lyb6i9l")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/client_golang")) -; (home-page "https://github.com/prometheus/client_golang") -; (synopsis "Prometheus Go client library") -; (description -; "This is the @url{http://golang.org,Go} client library for -;@url{http://prometheus.io,Prometheus}. It has two separate parts, one for -;instrumenting application code, and one for creating clients that talk to the -;Prometheus HTTP API.") -; (license license:asl2.0))) -; -;(define-public go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910 -; (package -; (name "go-github-com-prometheus-client-model") -; (version "0.0.0-20180712105110-5c3871d89910") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/client_model") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "04psf81l9fjcwascsys428v03fx4fi894h7fhrj2vvcz723q57k0")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/client_model")) -; (home-page "https://github.com/prometheus/client_model") -; (synopsis "Deprecation note") -; (description -; "This repository used to contain the code that defined both -;the data model and the exposition format of Prometheus metrics.") -; (license license:asl2.0))) -; -;(define-public go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d -; (package -; (name "go-github-com-prometheus-procfs") -; (version "0.0.0-20181005140218-185b4288413d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/procfs") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0d85429kdw5dgj5zhyiz1sq3i5691vj2gjnda93nnxxzx9acg8cv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/procfs")) -; (home-page "https://github.com/prometheus/procfs") -; (synopsis "procfs") -; (description -; "Package procfs provides functions to retrieve system, kernel and process -;metrics from the pseudo-filesystem proc. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20180904163835-0709b304e793 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20180904163835-0709b304e793") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0i05s09y5pavmfh71fgih7syxg58x7a4krgd8am6d3mnahnmab5c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20180905080454-ebe1bf3edb33") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0rkspxyjxdmc9f4n09hgkwj8jjd8z5p8mc9z8vwqwqcwrqv4sg7c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-sirupsen-logrus-1.2.0 -; (package -; (name "go-github-com-sirupsen-logrus") -; (version "1.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/sirupsen/logrus") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0r6334x2bls8ddznvzaldx4g88msjjns4mlks95rqrrg7h0ijigg")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/sirupsen/logrus")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33" -; ,go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33) -; ("go-golang-org-x-crypto-0.0.0-20180904163835-0709b304e793" -; ,go-golang-org-x-crypto-0.0.0-20180904163835-0709b304e793) -; ("go-github-com-stretchr-testify-1.2.2" -; ,go-github-com-stretchr-testify-1.2.2) -; ("go-github-com-stretchr-objx-0.1.1" -; ,go-github-com-stretchr-objx-0.1.1) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.1" -; ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.1) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://github.com/sirupsen/logrus") -; (synopsis "Logrus") -; (description -; "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-net-0.0.0-20181114220301-adae6a3d119a -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20181114220301-adae6a3d119a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1fx860zsgzqk28j7lmp96qsfrgb0kzbfjvr294hywswcbwdwkb01")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-gopkg-in-yaml-v2-2.2.1 -; (package -; (name "go-gopkg-in-yaml-v2") -; (version "2.2.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/yaml.v2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0dwjrs2lp2gdlscs7bsrmyc5yf6mm4fvgw71bzr9mv2qrd2q73s1")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" -; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) -; (home-page "https://gopkg.in/yaml.v2") -; (synopsis "YAML support for the Go language") -; (description "Package yaml implements YAML support for the Go language. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-prometheus-common-0.4.1 -; (package -; (name "go-github-com-prometheus-common") -; (version "0.4.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/common") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0sf4sjdckblz1hqdfvripk3zyp8xq89w7q75kbsyg4c078af896s")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/common")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1) -; ("go-gopkg-in-alecthomas-kingpin-v2-2.2.6" -; ,go-gopkg-in-alecthomas-kingpin-v2-2.2.6) -; ("go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5" -; ,go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5) -; ("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" -; ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) -; ("go-golang-org-x-net-0.0.0-20181114220301-adae6a3d119a" -; ,go-golang-org-x-net-0.0.0-20181114220301-adae6a3d119a) -; ("go-github-com-sirupsen-logrus-1.2.0" -; ,go-github-com-sirupsen-logrus-1.2.0) -; ("go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d" -; ,go-github-com-prometheus-procfs-0.0.0-20181005140218-185b4288413d) -; ("go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910" -; ,go-github-com-prometheus-client-model-0.0.0-20180712105110-5c3871d89910) -; ("go-github-com-prometheus-client-golang-0.9.1" -; ,go-github-com-prometheus-client-golang-0.9.1) -; ("go-github-com-pkg-errors-0.8.0" ,go-github-com-pkg-errors-0.8.0) -; ("go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223" -; ,go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223) -; ("go-github-com-matttproud-golang-protobuf-extensions-1.0.1" -; ,go-github-com-matttproud-golang-protobuf-extensions-1.0.1) -; ("go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515" -; ,go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515) -; ("go-github-com-julienschmidt-httprouter-1.2.0" -; ,go-github-com-julienschmidt-httprouter-1.2.0) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0) -; ("go-github-com-gogo-protobuf-1.1.1" -; ,go-github-com-gogo-protobuf-1.1.1) -; ("go-github-com-go-stack-stack-1.8.0" -; ,go-github-com-go-stack-stack-1.8.0) -; ("go-github-com-go-logfmt-logfmt-0.3.0" -; ,go-github-com-go-logfmt-logfmt-0.3.0) -; ("go-github-com-go-kit-kit-0.8.0" ,go-github-com-go-kit-kit-0.8.0) -; ("go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973" -; ,go-github-com-beorn7-perks-0.0.0-20180321164747-3a771d992973) -; ("go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf" -; ,go-github-com-alecthomas-units-0.0.0-20151022065526-2efee857e7cf) -; ("go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc" -; ,go-github-com-alecthomas-template-0.0.0-20160405071501-a0175ee3bccc))) -; (home-page "https://github.com/prometheus/common") -; (synopsis "Common") -; (description -; "This repository contains Go libraries that are shared across Prometheus -;components and libraries. They are considered internal to Prometheus, without -;any stability guarantees for external usage.") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4 -; (package -; (name "go-golang-org-x-sync") -; (version "0.0.0-20181221193216-37e7f081c4d4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sync") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1bb0mw6ckb1k7z8v3iil2qlqwfj408fvvp8m1cik2b46p7snyjhm")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sync")) -; (home-page "https://golang.org/x/sync") -; (synopsis "Go Sync") -; (description -; "This repository provides Go concurrency primitives in addition to the -;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") -; (license license:bsd-3))) -; -;(define-public go-github-com-prometheus-procfs-0.0.2 -; (package -; (name "go-github-com-prometheus-procfs") -; (version "0.0.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/procfs") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0s7pvs7fgnfpmym3cd0k219av321h9sf3yvdlnn3qy0ps280lg7k")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/procfs")) -; (propagated-inputs -; `(("go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4" -; ,go-golang-org-x-sync-0.0.0-20181221193216-37e7f081c4d4))) -; (home-page "https://github.com/prometheus/procfs") -; (synopsis "procfs") -; (description -; "Package procfs provides functions to retrieve system, kernel and process -;metrics from the pseudo-filesystem proc. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-stretchr-testify-1.3.0 -; (package -; (name "go-github-com-stretchr-testify") -; (version "1.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/testify") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0wjchp2c8xbgcbbq32w3kvblk6q6yn533g78nxl6iskq6y95lxsy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/testify")) -; (propagated-inputs -; `(("go-github-com-stretchr-objx-0.1.0" -; ,go-github-com-stretchr-objx-0.1.0) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-davecgh-go-spew-1.1.0" -; ,go-github-com-davecgh-go-spew-1.1.0))) -; (home-page "https://github.com/stretchr/testify") -; (synopsis "Testify - Thou Shalt Write Tests") -; (description -; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20181116152217-5ac8a444bdc5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "00zdrighflwc4iyizsag184nvl1cbkk02v73kpl5miprdrvzqlr4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-prometheus-client-golang-1.0.0 -; (package -; (name "go-github-com-prometheus-client-golang") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/client_golang") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1f03ndyi3jq7zdxinnvzimz3s4z2374r6dikkc8i42xzb6d1bli6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/client_golang")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5" -; ,go-golang-org-x-sys-0.0.0-20181116152217-5ac8a444bdc5) -; ("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0) -; ("go-github-com-prometheus-procfs-0.0.2" -; ,go-github-com-prometheus-procfs-0.0.2) -; ("go-github-com-prometheus-common-0.4.1" -; ,go-github-com-prometheus-common-0.4.1) -; ("go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90" -; ,go-github-com-prometheus-client-model-0.0.0-20190129233127-fd36f4220a90) -; ("go-github-com-modern-go-reflect2-1.0.1" -; ,go-github-com-modern-go-reflect2-1.0.1) -; ("go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd" -; ,go-github-com-modern-go-concurrent-0.0.0-20180306012644-bacd9c7ef1dd) -; ("go-github-com-json-iterator-go-1.1.6" -; ,go-github-com-json-iterator-go-1.1.6) -; ("go-github-com-golang-protobuf-1.3.1" -; ,go-github-com-golang-protobuf-1.3.1) -; ("go-github-com-beorn7-perks-1.0.0" -; ,go-github-com-beorn7-perks-1.0.0))) -; (home-page "https://github.com/prometheus/client_golang") -; (synopsis "Prometheus Go client library") -; (description -; "This is the @url{http://golang.org,Go} client library for -;@url{http://prometheus.io,Prometheus}. It has two separate parts, one for -;instrumenting application code, and one for creating clients that talk to the -;Prometheus HTTP API.") -; (license license:asl2.0))) -; -;(define-public go-github-com-prometheus-client-model-0.2.0 -; (package -; (name "go-github-com-prometheus-client-model") -; (version "0.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/client_model") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0jffnz94d6ff39fr96b5w8i8yk26pwnrfggzz8jhi8k0yihg2c9d")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/client_model")) -; (propagated-inputs -; `(("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" -; ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0))) -; (home-page "https://github.com/prometheus/client_model") -; (synopsis "Deprecation note") -; (description -; "This repository used to contain the code that defined both -;the data model and the exposition format of Prometheus metrics.") -; (license license:asl2.0))) -; -;(define-public go-github-com-davecgh-go-spew-1.1.1 -; (package -; (name "go-github-com-davecgh-go-spew") -; (version "1.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/davecgh/go-spew") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/davecgh/go-spew")) -; (home-page "https://github.com/davecgh/go-spew") -; (synopsis "go-spew") -; (description -; "Go-spew implements a deep pretty printer for Go data structures to aid in -;debugging. A comprehensive suite of tests with 100% test coverage is provided -;to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage -;report. Go-spew is licensed under the liberal ISC license, so it may be used in -;open source or commercial projects.") -; (license license:isc))) -; -;(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.1 -; (package -; (name "go-github-com-konsorten-go-windows-terminal-sequences") -; (version "1.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/konsorten/go-windows-terminal-sequences") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1lchgf27n276vma6iyxa0v1xds68n2g8lih5lavqnx5x6q5pw2ip")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) -; (home-page "https://github.com/konsorten/go-windows-terminal-sequences") -; (synopsis "Windows Terminal Sequences") -; (description -; "This library allow for enabling Windows terminal color support for Go.") -; (license license:expat))) -; -;(define-public go-github-com-stretchr-objx-0.1.1 -; (package -; (name "go-github-com-stretchr-objx") -; (version "0.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/objx") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0iph0qmpyqg4kwv8jsx6a56a7hhqq8swrazv40ycxk9rzr0s8yls")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/objx")) -; (home-page "https://github.com/stretchr/objx") -; (synopsis "Objx") -; (description -; "Objx - Go package for dealing with maps, slices, JSON and other data. -;") -; (license license:expat))) -; -;(define-public go-github-com-stretchr-testify-1.2.2 -; (package -; (name "go-github-com-stretchr-testify") -; (version "1.2.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/testify") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0dlszlshlxbmmfxj5hlwgv3r22x0y1af45gn1vd198nvvs3pnvfs")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/testify")) -; (home-page "https://github.com/stretchr/testify") -; (synopsis "Testify - Thou Shalt Write Tests") -; (description -; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -;") -; (license license:expat))) -; -;(define-public go-github-com-sirupsen-logrus-1.4.2 -; (package -; (name "go-github-com-sirupsen-logrus") -; (version "1.4.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/sirupsen/logrus") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "087k2lxrr9p9dh68yw71d05h5g9p5v26zbwd6j7lghinjfaw334x")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/sirupsen/logrus")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894" -; ,go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894) -; ("go-github-com-stretchr-testify-1.2.2" -; ,go-github-com-stretchr-testify-1.2.2) -; ("go-github-com-stretchr-objx-0.1.1" -; ,go-github-com-stretchr-objx-0.1.1) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.1" -; ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.1) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://github.com/sirupsen/logrus") -; (synopsis "Logrus") -; (description -; "Package logrus is a structured logger for Go, completely API compatible with the standard library logger. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20190613194153-d28f0bde5980") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "18xj31h70m7xxb7gc86n9i21w6d7djbjz67zfaljm4jqskz6hxkf")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190422165155-953cdadca894") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0gkha4whk8xkcv3isigbs250akag99isxnd3v9xmy0kl3g88hxy1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-gopkg-in-alecthomas-kingpin-v2-2.2.6 -; (package -; (name "go-gopkg-in-alecthomas-kingpin-v2") -; (version "2.2.6") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/alecthomas/kingpin.v2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0mndnv3hdngr3bxp7yxfd47cas4prv98sqw534mx7vp38gd88n5r")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path -; "gopkg.in/alecthomas/kingpin.v2" -; #:unpack-path -; "gopkg.in/alecthomas/kingpin.v2")) -; (home-page "https://gopkg.in/alecthomas/kingpin.v2") -; (synopsis "Kingpin - A Go (golang) command line and flag parser") -; (description -; "Package kingpin provides command line interfaces like this: -;") -; (license license:expat))) -; -;(define-public go-gopkg-in-yaml-v2-2.2.4 -; (package -; (name "go-gopkg-in-yaml-v2") -; (version "2.2.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/yaml.v2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "11bwj757wi8kdrcnlgfqb8vv2d2xdhlghmyagd19i62khrkchsg2")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" -; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) -; (home-page "https://gopkg.in/yaml.v2") -; (synopsis "YAML support for the Go language") -; (description "Package yaml implements YAML support for the Go language. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-prometheus-common-0.10.0 -; (package -; (name "go-github-com-prometheus-common") -; (version "0.10.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/common") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ra7zfqsnvgfizzsxn3rk0dwhk7nx8p8082zgpvadbv2b0j1k01i")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/common")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.2.4" ,go-gopkg-in-yaml-v2-2.2.4) -; ("go-gopkg-in-alecthomas-kingpin-v2-2.2.6" -; ,go-gopkg-in-alecthomas-kingpin-v2-2.2.6) -; ("go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894" -; ,go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894) -; ("go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980" -; ,go-golang-org-x-net-0.0.0-20190613194153-d28f0bde5980) -; ("go-github-com-sirupsen-logrus-1.4.2" -; ,go-github-com-sirupsen-logrus-1.4.2) -; ("go-github-com-prometheus-client-model-0.2.0" -; ,go-github-com-prometheus-client-model-0.2.0) -; ("go-github-com-prometheus-client-golang-1.0.0" -; ,go-github-com-prometheus-client-golang-1.0.0) -; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) -; ("go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223" -; ,go-github-com-mwitkow-go-conntrack-0.0.0-20161129095857-cc309e4a2223) -; ("go-github-com-matttproud-golang-protobuf-extensions-1.0.1" -; ,go-github-com-matttproud-golang-protobuf-extensions-1.0.1) -; ("go-github-com-julienschmidt-httprouter-1.2.0" -; ,go-github-com-julienschmidt-httprouter-1.2.0) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2) -; ("go-github-com-go-logfmt-logfmt-0.4.0" -; ,go-github-com-go-logfmt-logfmt-0.4.0) -; ("go-github-com-go-kit-kit-0.9.0" ,go-github-com-go-kit-kit-0.9.0) -; ("go-github-com-alecthomas-units-0.0.0-20190717042225-c3de453c63f4" -; ,go-github-com-alecthomas-units-0.0.0-20190717042225-c3de453c63f4) -; ("go-github-com-alecthomas-template-0.0.0-20190718012654-fb15b899a751" -; ,go-github-com-alecthomas-template-0.0.0-20190718012654-fb15b899a751))) -; (home-page "https://github.com/prometheus/common") -; (synopsis "Common") -; (description -; "This repository contains Go libraries that are shared across Prometheus -;components and libraries. They are considered internal to Prometheus, without -;any stability guarantees for external usage.") -; (license license:asl2.0))) -; -;(define-public go-github-com-google-go-cmp-0.5.4 -; (package -; (name "go-github-com-google-go-cmp") -; (version "0.5.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/go-cmp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ld9pwb6l22g75g1zpa691l7q9ki7pjgpcqhwgdfr3va1zisr5ci")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/go-cmp")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" -; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) -; (home-page "https://github.com/google/go-cmp") -; (synopsis "Package for equality of Go values") -; (description -; "This package is intended to be a more powerful and safer alternative to -;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a -; (package -; (name "go-golang-org-x-sync") -; (version "0.0.0-20201207232520-09787c993a3a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sync") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1nv4mwi9njkkyc7lwmxrjr8ggfh2cf1c67a9bq85dnss81vpj61y")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sync")) -; (home-page "https://golang.org/x/sync") -; (synopsis "Go Sync") -; (description -; "This repository provides Go concurrency primitives in addition to the -;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20210124154548-22da62e12c0c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "17gp3dl75wq3x7j9z1pqgcyvjhvy9jaln1wbscy57al3whdsjp07")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-prometheus-procfs-0.6.0 -; (package -; (name "go-github-com-prometheus-procfs") -; (version "0.6.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/procfs") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0czzw37dq0sfq7rivxmxxw5hy287grqnng6q6hfz6mkqmhqgm1m6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/procfs")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" -; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) -; ("go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a" -; ,go-golang-org-x-sync-0.0.0-20201207232520-09787c993a3a) -; ("go-github-com-google-go-cmp-0.5.4" -; ,go-github-com-google-go-cmp-0.5.4))) -; (home-page "https://github.com/prometheus/procfs") -; (synopsis "procfs") -; (description -; "Package procfs provides functions to retrieve system, kernel and process -;metrics from the pseudo-filesystem proc. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-spf13-pflag-1.0.5 -; (package -; (name "go-github-com-spf13-pflag") -; (version "1.0.5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/spf13/pflag") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0gpmacngd0gpslnbkzi263f5ishigzgh6pbdv9hp092rnjl4nd31")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/spf13/pflag")) -; (home-page "https://github.com/spf13/pflag") -; (synopsis "Description") -; (description -; "Package pflag is a drop-in replacement for Go's flag package, implementing -;POSIX/GNU-style --flags. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-yvasiyarov-go-metrics-0.0.0-20140926110328-57bccd1ccd43 -; (package -; (name "go-github-com-yvasiyarov-go-metrics") -; (version "0.0.0-20140926110328-57bccd1ccd43") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/yvasiyarov/go-metrics") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1rwlq9k3iii54da90fjivi13zacx2h6znppkzncvl653xhjpm26g")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/yvasiyarov/go-metrics")) -; (home-page "https://github.com/yvasiyarov/go-metrics") -; (synopsis "go-metrics") -; (description "Go port of Coda Hale's Metrics library -;") -; (license #f))) -; -;(define-public go-github-com-yvasiyarov-gorelic-0.0.0-20141212073537-a9bba5b9ab50 -; (package -; (name "go-github-com-yvasiyarov-gorelic") -; (version "0.0.0-20141212073537-a9bba5b9ab50") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/yvasiyarov/gorelic") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1niwv40k9rx2g5h6wddci9ykf1sm1d5ml9mjgdjd1ahm4wfq08gn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/yvasiyarov/gorelic")) -; (home-page "https://github.com/yvasiyarov/gorelic") -; (synopsis "GoRelic is deprecated in favour of") -; (description -; "Package gorelic is an New Relic agent implementation for Go runtime. It collect a lot of metrics about Go scheduler, garbage collector and memory allocator and send them to NewRelic. -;") -; (license license:bsd-2))) -; -;(define-public go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20140908184405-b21fdbd4370f -; (package -; (name "go-github-com-yvasiyarov-newrelic-platform-go") -; (version "0.0.0-20140908184405-b21fdbd4370f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/yvasiyarov/newrelic_platform_go") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0a4yncdxwsy0rn3bhkadfysm817b7ndzmh9fkg8hh92pnw5aabzw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/yvasiyarov/newrelic_platform_go")) -; (home-page "https://github.com/yvasiyarov/newrelic_platform_go") -; (synopsis "New Relic Platform Agent SDK for Go(golang)") -; (description -; "Package newrelic_platform_go is New Relic Platform Agent SDK for Go language. -;") -; (license license:bsd-2))) -; -;(define-public go-golang-org-x-sys-0.0.0-20210423082822-04245dca01da -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20210423082822-04245dca01da") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "11is2c5cpxk0gf2mxza2wpzfcf71fxb9b3in77f6w2q0pr68ykzx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20211112202133-69e39bad7dc2 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20211112202133-69e39bad7dc2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0yvg72fb037yh4xvjyfgrr8nsbz7nfiiksvq0a5922z255anamy6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.6" ,go-golang-org-x-text-0.3.6) -; ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" -; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) -; ("go-golang-org-x-sys-0.0.0-20210423082822-04245dca01da" -; ,go-golang-org-x-sys-0.0.0-20210423082822-04245dca01da))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20210615035016-665e8c7367d1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "11n848csibdbv7b46zjyf4l7sphg37n9sjzqfy1ds7p1jyakwmnv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-text-0.3.6 -; (package -; (name "go-golang-org-x-text") -; (version "0.3.6") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/text") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0wzhvdb059vrp2cczqw422ajrb9sbs4l3qd020hlngj33qfhxah0")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/text")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" -; ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) -; (home-page "https://golang.org/x/text") -; (synopsis "Go Text") -; (description -; "text is a repository of text-related packages related to internationalization -;(i18n) and localization (l10n), such as character encodings, text -;transformations, and locale-specific text handling. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.5.2 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.5.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1mh5fyim42dn821nsd3afnmgscrzzhn3h8rag635d2jnr23r1zhk")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.26.0" -; ,go-google-golang-org-protobuf-1.26.0) -; ("go-github-com-google-go-cmp-0.5.5" -; ,go-github-com-google-go-cmp-0.5.5))) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-mod-0.1.1-0.20191105210325-c90efee705ee -; (package -; (name "go-golang-org-x-mod") -; (version "0.1.1-0.20191105210325-c90efee705ee") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/mod") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0i5md645rmcy5z5ij9ng428k9rz4g3k1kjy3blsq1264rn426gdf")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/mod")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" -; ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) -; ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" -; ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) -; (home-page "https://golang.org/x/mod") -; (synopsis "mod") -; (description -; "This repository holds packages for writing tools -;that work directly with Go module mechanics. -;That is, it is for direct manipulation of Go modules themselves.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7 -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20200130002326-2f3ba24bd6e7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0j3nnmlwnbivf0h9x89vlp8ji3ha41v96bj33cxwmrrjnxq543ww")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" -; ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) -; ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" -; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) -; ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" -; ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) -; ("go-golang-org-x-mod-0.1.1-0.20191105210325-c90efee705ee" -; ,go-golang-org-x-mod-0.1.1-0.20191105210325-c90efee705ee))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-lint-0.0.0-20210508222113-6edffad5e616 -; (package -; (name "go-golang-org-x-lint") -; (version "0.0.0-20210508222113-6edffad5e616") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/lint") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1n7lrr3282q3li4f06afms444qy13rfd316za0drqihakwyki2jk")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/lint")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7" -; ,go-golang-org-x-tools-0.0.0-20200130002326-2f3ba24bd6e7))) -; (home-page "https://golang.org/x/lint") -; (synopsis "Installation") -; (description "Package lint contains a linter for Go source code. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-text-0.3.5 -; (package -; (name "go-golang-org-x-text") -; (version "0.3.5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/text") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "082s9d7wnh1aa2v08g3h5z4if2f8hl4y01pb788qsvab9329lj0w")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/text")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" -; ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) -; (home-page "https://golang.org/x/text") -; (synopsis "Go Text") -; (description -; "text is a repository of text-related packages related to internationalization -;(i18n) and localization (l10n), such as character encodings, text -;transformations, and locale-specific text handling. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-yuin-goldmark-1.3.5 -; (package -; (name "go-github-com-yuin-goldmark") -; (version "1.3.5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/yuin/goldmark") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "08rrhfji92hixiv3v0wvamwcy56f90wsw84w7lyvad7g90kbsknx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/yuin/goldmark")) -; (home-page "https://github.com/yuin/goldmark") -; (synopsis "goldmark") -; (description -; "Package goldmark implements functions to convert markdown text to a desired format. -;") -; (license license:expat))) -; -;(define-public go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20190404232315-eb5bcb51f2a3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "17k4g8krxbl84gzcs275b7gsh66dzm15fdxivjnx9xz8q84l4kby")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190412213103-97732733099d -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190412213103-97732733099d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "118hkp01i4z1f5h6hcjm0ff2ngqhrzj1f7731n0kw8dr6hvbx0sw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20191011191535-87dc89f01550") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0z4i1m2yn3f31ci7wvcm2rxkx2yiv7a78mfzklncmsz2k97rlh2g")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" -; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) -; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" -; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20190620200207-3b0461eec859") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0l00c8l0a8xnv6qdpwfzxxsr58jggacgzdrwiprrfx2xqm37b6d5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7 -; (package -; (name "go-golang-org-x-xerrors") -; (version "0.0.0-20190717185122-a985d3407aa7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/xerrors") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "00wzr5w8aadipgc3rkk8f11i41znskfj9ix5nhhaxyg7isrslgcj")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/xerrors")) -; (home-page "https://golang.org/x/xerrors") -; (synopsis #f) -; (description -; "Package xerrors implements functions to manipulate errors. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20191119224855-298f0cb1881e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0l4pqwib2wnfnix6nvxl0yrq87ipi7ff1rz6z5bxfzy9dki1nzmv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7" -; ,go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7) -; ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" -; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) -; ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" -; ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898 -; (package -; (name "go-golang-org-x-xerrors") -; (version "0.0.0-20191011141410-1b5146add898") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/xerrors") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0w2akj91krxjag0xdhsg78470888nicc5ismc2ap9jqpss6v1zih")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/xerrors")) -; (home-page "https://golang.org/x/xerrors") -; (synopsis #f) -; (description -; "Package xerrors implements functions to manipulate errors. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-mod-0.4.2 -; (package -; (name "go-golang-org-x-mod") -; (version "0.4.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/mod") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0z1p17i291z2k6va08i80ljyzyij2b6qsz78lnz0wi8zsnkfdz43")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/mod")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" -; ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) -; ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" -; ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) -; ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" -; ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) -; (home-page "https://golang.org/x/mod") -; (synopsis "mod") -; (description -; "This repository holds packages for writing tools -;that work directly with Go module mechanics. -;That is, it is for direct manipulation of Go modules themselves.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20210330210617-4fbd30eecc44 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20210330210617-4fbd30eecc44") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "02mmymbm7wb3vdp3z9hm8p0f45708fybyd38qm8qxzwm19zqnp56")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20201119102817-f84b799fce68") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1dvhqian5byzkcg1bnqzygqa6ccc6krc2q7j12pp1vhl3y7znnsg")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1 -; (package -; (name "go-golang-org-x-term") -; (version "0.0.0-20201126162022-7de9c90e9dd1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/term") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ba252xmv6qsvf1w1gcy98mngrj0vd4inbjw0lsklqvva65nljna")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/term")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" -; ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) -; (home-page "https://golang.org/x/term") -; (synopsis "Go terminal/console support") -; (description -; "Package term provides support functions for dealing with terminals, as -;commonly found on UNIX systems. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20180917221912-90fa682c2a6e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-text-0.3.3 -; (package -; (name "go-golang-org-x-text") -; (version "0.3.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/text") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "19pihqm3phyndmiw6i42pdv6z1rbvlqlsnhsyqf9gsnn0qnmqqlh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/text")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" -; ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) -; (home-page "https://golang.org/x/text") -; (synopsis "Go Text") -; (description -; "text is a repository of text-related packages related to internationalization -;(i18n) and localization (l10n), such as character encodings, text -;transformations, and locale-specific text handling. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20210405180319-a5a99cb37ef4 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20210405180319-a5a99cb37ef4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0z90hpmxdw9i8vfhd6vf7hd63c86f1128qfb5f3y4kinvlpjy3rl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) -; ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" -; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) -; ("go-golang-org-x-sys-0.0.0-20210330210617-4fbd30eecc44" -; ,go-golang-org-x-sys-0.0.0-20210330210617-4fbd30eecc44))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c -; (package -; (name "go-golang-org-x-sync") -; (version "0.0.0-20210220032951-036812b2e83c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sync") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1gl202py3s4gl6arkaxlf8qa6f0jyyg2f95m6f89qnfmr416h85b")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sync")) -; (home-page "https://golang.org/x/sync") -; (synopsis "Go Sync") -; (description -; "This repository provides Go concurrency primitives in addition to the -;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20210510120138-977fb7262007 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20210510120138-977fb7262007") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0d2vnblgzxgvis2kly99gv10kadyl3v0cpv1lskjqg2v5d11r6hd")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1 -; (package -; (name "go-golang-org-x-xerrors") -; (version "0.0.0-20200804184101-5ec99f83aff1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/xerrors") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1dbzc3gmf2haazpv7cgmv97rq40g2xzwbglc17vas8dwhgwgwrzb")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/xerrors")) -; (home-page "https://golang.org/x/xerrors") -; (synopsis #f) -; (description -; "Package xerrors implements functions to manipulate errors. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.1.2 -; (package -; (name "go-golang-org-x-tools") -; (version "0.1.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "047qwlvxs8whsal3yjjhywr9w0xrp5ky7q969mfxb1x9r20k76ci")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" -; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) -; ("go-golang-org-x-sys-0.0.0-20210510120138-977fb7262007" -; ,go-golang-org-x-sys-0.0.0-20210510120138-977fb7262007) -; ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" -; ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) -; ("go-golang-org-x-net-0.0.0-20210405180319-a5a99cb37ef4" -; ,go-golang-org-x-net-0.0.0-20210405180319-a5a99cb37ef4) -; ("go-golang-org-x-mod-0.4.2" ,go-golang-org-x-mod-0.4.2) -; ("go-github-com-yuin-goldmark-1.3.5" -; ,go-github-com-yuin-goldmark-1.3.5))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-1.26.0 -; (package -; (name "go-google-golang-org-protobuf") -; (version "1.26.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0xq6phaps6d0vcv13ga59gzj4306l0ki9kikhmb52h6pq0iwfqlz")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.5.5" -; ,go-github-com-google-go-cmp-0.5.5) -; ("go-github-com-golang-protobuf-1.5.0" -; ,go-github-com-golang-protobuf-1.5.0))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20210602131652-f16073e35f0c -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20210602131652-f16073e35f0c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "06n5npgcjk8is2ajf0786nma5wjwpbwca273gv3yqq7dr3bkzv48")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.26.0" -; ,go-google-golang-org-protobuf-1.26.0) -; ("go-google-golang-org-grpc-1.38.0" ,go-google-golang-org-grpc-1.38.0) -; ("go-golang-org-x-tools-0.1.2" ,go-golang-org-x-tools-0.1.2) -; ("go-golang-org-x-text-0.3.5" ,go-golang-org-x-text-0.3.5) -; ("go-golang-org-x-lint-0.0.0-20210508222113-6edffad5e616" -; ,go-golang-org-x-lint-0.0.0-20210508222113-6edffad5e616) -; ("go-github-com-golang-protobuf-1.5.2" -; ,go-github-com-golang-protobuf-1.5.2))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-github-com-envoyproxy-go-control-plane-0.9.0 -; (package -; (name "go-github-com-envoyproxy-go-control-plane") -; (version "0.9.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/envoyproxy/go-control-plane") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1dpvi4wnycyj6hnai78fr8aj58b27b1vcwdp3v0id5v22kvgr3xw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.23.0" ,go-google-golang-org-grpc-1.23.0) -; ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" -; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) -; ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" -; ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2) -; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" -; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) -; ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" -; ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) -; (home-page "https://github.com/envoyproxy/go-control-plane") -; (synopsis "control-plane") -; (description -; "This repository contains a Go-based implementation of an API server that -;implements the discovery service APIs defined in -;@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-grpc-1.25.1 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.25.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0a136ij9p11yj1vx892yqy40jkh7n5nfbpdvhgydcj823mx51c6f")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" -; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-github-com-google-go-cmp-0.2.0" -; ,go-github-com-google-go-cmp-0.2.0) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2) -; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" -; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) -; ("go-github-com-envoyproxy-go-control-plane-0.9.0" -; ,go-github-com-envoyproxy-go-control-plane-0.9.0))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403 -; (package -; (name "go-github-com-cncf-udpa-go") -; (version "0.0.0-20201120205902-5459f2c99403") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/cncf/udpa") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0i3al193dsp91j7iywqrm6fr56y2sz51ci4vf19mb3j4n2x44gsi")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path -; "github.com/cncf/udpa/go" -; #:unpack-path -; "github.com/cncf/udpa")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.25.1" ,go-google-golang-org-grpc-1.25.1) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2) -; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" -; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0))) -; (home-page "https://github.com/cncf/udpa") -; (synopsis "Description") -; (description -; "This library has been deprecated in favor of @code{github.com/cncf/xds/go}. All users are recommended to switch their imports.") -; (license license:asl2.0))) -; -;(define-public go-github-com-davecgh-go-spew-1.1.0 -; (package -; (name "go-github-com-davecgh-go-spew") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/davecgh/go-spew") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/davecgh/go-spew")) -; (home-page "https://github.com/davecgh/go-spew") -; (synopsis "go-spew") -; (description -; "Go-spew implements a deep pretty printer for Go data structures to aid in -;debugging. A comprehensive suite of tests with 100% test coverage is provided -;to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage -;report. Go-spew is licensed under the liberal ISC license, so it may be used in -;open source or commercial projects.") -; (license license:isc))) -; -;(define-public go-github-com-pmezard-go-difflib-1.0.0 -; (package -; (name "go-github-com-pmezard-go-difflib") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/pmezard/go-difflib") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/pmezard/go-difflib")) -; (home-page "https://github.com/pmezard/go-difflib") -; (synopsis "go-difflib") -; (description -; "Go-difflib is a partial port of python 3 difflib package. Its main goal -;was to make unified and context diff available in pure Go, mostly for -;testing purposes.") -; (license license:bsd-3))) -; -;(define-public go-github-com-stretchr-objx-0.1.0 -; (package -; (name "go-github-com-stretchr-objx") -; (version "0.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/objx") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/objx")) -; (home-page "https://github.com/stretchr/objx") -; (synopsis "Objx") -; (description -; "Objx - Go package for dealing with maps, slices, JSON and other data. -;") -; (license license:expat))) -; -;(define-public go-gopkg-in-yaml-v2-2.2.2 -; (package -; (name "go-gopkg-in-yaml-v2") -; (version "2.2.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/yaml.v2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "01wj12jzsdqlnidpyjssmj0r4yavlqy7dwrg7adqd8dicjc4ncsa")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" -; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) -; (home-page "https://gopkg.in/yaml.v2") -; (synopsis "YAML support for the Go language") -; (description "Package yaml implements YAML support for the Go language. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-stretchr-testify-1.5.1 -; (package -; (name "go-github-com-stretchr-testify") -; (version "1.5.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/testify") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "09r89m1wy4cjv2nps1ykp00qjpi0531r07q3s34hr7m6njk4srkl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/testify")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) -; ("go-github-com-stretchr-objx-0.1.0" -; ,go-github-com-stretchr-objx-0.1.0) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-davecgh-go-spew-1.1.0" -; ,go-github-com-davecgh-go-spew-1.1.0))) -; (home-page "https://github.com/stretchr/testify") -; (synopsis "Testify - Thou Shalt Write Tests") -; (description -; "** We are working on testify v2 and would love to hear what you'd like to see in it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -;Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend. -;") -; (license license:expat))) -; -;(define-public go-github-com-envoyproxy-go-control-plane-0.9.9-0.20210217033140-668b12f5399d -; (package -; (name "go-github-com-envoyproxy-go-control-plane") -; (version "0.9.9-0.20210217033140-668b12f5399d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/envoyproxy/go-control-plane") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0vmhc8ii081x1k2qw4kji7wjyg6l25zp1y6qxi27wq8m341i4rzb")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.23.0" -; ,go-google-golang-org-protobuf-1.23.0) -; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) -; ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" -; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) -; ("go-github-com-stretchr-testify-1.5.1" -; ,go-github-com-stretchr-testify-1.5.1) -; ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" -; ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.4.2" -; ,go-github-com-golang-protobuf-1.4.2) -; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" -; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) -; ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" -; ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403) -; ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" -; ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) -; (home-page "https://github.com/envoyproxy/go-control-plane") -; (synopsis "control-plane") -; (description -; "This repository contains a Go-based implementation of an API server that -;implements the discovery service APIs defined in -;@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-protobuf-1.23.0 -; (package -; (name "go-google-golang-org-protobuf") -; (version "1.23.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "03yan0m1v0zmlr935p4n24fd376mznsg85zy8sywbgisls4s1bzy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.4.0" -; ,go-github-com-golang-protobuf-1.4.0))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.4.2 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.4.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0m5z81im4nsyfgarjhppayk4hqnrwswr3nix9mj8pff8x9jvcjqw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.23.0" -; ,go-google-golang-org-protobuf-1.23.0) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0))) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-github-com-google-uuid-1.1.2 -; (package -; (name "go-github-com-google-uuid") -; (version "1.1.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/uuid") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1rbpfa0v0ly9sdnixcxhf79swki54ikgm1zkwwkj64p1ws66syqd")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/uuid")) -; (home-page "https://github.com/google/uuid") -; (synopsis "uuid") -; (description "Package uuid generates and inspects UUIDs. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-google-go-cmp-0.5.0 -; (package -; (name "go-github-com-google-go-cmp") -; (version "0.5.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/go-cmp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "04pzp583p6b32y34c6jygfxarff9qjs39rarvfh6467z24sdd9k4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/go-cmp")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" -; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) -; (home-page "https://github.com/google/go-cmp") -; (synopsis "Package for equality of Go values") -; (description -; "This package is intended to be a more powerful and safer alternative to -;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-1.22.0 -; (package -; (name "go-google-golang-org-protobuf") -; (version "1.22.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0n7lc4m7kfvj01glc0gnjy0zsnsic7cxnbvlajy0h14cxbab87pj")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.4.0" -; ,go-github-com-golang-protobuf-1.4.0))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.4.1 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.4.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0w7ks4vffnnkp0miwgc3chrsnmya45lzvpahb2wmw0jwhdp5kdx7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.22.0" -; ,go-google-golang-org-protobuf-1.22.0) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0))) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-github-com-census-instrumentation-opencensus-proto-0.2.1 -; (package -; (name "go-github-com-census-instrumentation-opencensus-proto") -; (version "0.2.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/census-instrumentation/opencensus-proto") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "19fcx3sc99i5dsklny6r073z5j20vlwn2xqm6di1q3b1xwchzqfj")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "github.com/census-instrumentation/opencensus-proto")) -; (home-page "https://github.com/census-instrumentation/opencensus-proto") -; (synopsis -; "OpenCensus Proto - Language Independent Interface Types For OpenCensus") -; (description -; "Census provides a framework to define and collect stats against metrics and to -;break those stats down across user-defined dimensions.") -; (license license:asl2.0))) -; -;(define-public go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4 -; (package -; (name "go-github-com-prometheus-client-model") -; (version "0.0.0-20190812154241-14fe0d1b01d4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/client_model") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0zdmk6rbbx39cvfz0r59v2jg5sg9yd02b4pds5n5llgvivi99550")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/client_model")) -; (propagated-inputs -; `(("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" -; ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0))) -; (home-page "https://github.com/prometheus/client_model") -; (synopsis "Deprecation note") -; (description -; "This repository used to contain the code that defined both -;the data model and the exposition format of Prometheus metrics.") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20190311212946-11955173bddd") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0hlkai67w167wiyivkzd1fgqrnyxkb94l2c6kr51jwcscizfyfn3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3 -; (package -; (name "go-golang-org-x-lint") -; (version "0.0.0-20190313153728-d0100b6bd8b3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/lint") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0b0amr9x4ji66iv9ayfx7zrfx52k1m5g66qfcxkgj80qrb1y2yn7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/lint")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" -; ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd))) -; (home-page "https://golang.org/x/lint") -; (synopsis "Installation") -; (description "Package lint contains a linter for Go source code. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sync-0.0.0-20190423024810-112230192c58 -; (package -; (name "go-golang-org-x-sync") -; (version "0.0.0-20190423024810-112230192c58") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sync") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "05i2k43j2d0llq768hg5pf3hb2yhfzp9la1w5wp0rsnnzblr0lfn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sync")) -; (home-page "https://golang.org/x/sync") -; (synopsis "Go Sync") -; (description -; "This repository provides Go concurrency primitives in addition to the -;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135 -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20190524140312-2c0ae7006135") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1lsi2ssxajclj3bciz2a41v1vjv768ja3v6wnbyhxy8xphwkp4fk")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" -; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-grpc-1.23.0 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.23.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1cn33r2gclmq2v1ndpf1n5bmhf2qs8mms7ii5cnl6f9ch4r2c4k3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" -; ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) -; ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" -; ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) -; ("go-google-golang-org-appengine-1.1.0" -; ,go-google-golang-org-appengine-1.1.0) -; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" -; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-github-com-google-go-cmp-0.2.0" -; ,go-github-com-google-go-cmp-0.2.0) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0) -; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-client9-misspell-0.3.4" -; ,go-github-com-client9-misspell-0.3.4) -; ("go-github-com-burntsushi-toml-0.3.1" -; ,go-github-com-burntsushi-toml-0.3.1) -; ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473 -; (package -; (name "go-github-com-envoyproxy-go-control-plane") -; (version "0.9.1-0.20191026205805-5f8ba28d4473") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/envoyproxy/go-control-plane") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1f1s764rd41vd9vgk3r14h1m6fz6pdvxj6fd83q58gxifbc4q5w4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.23.0" ,go-google-golang-org-grpc-1.23.0) -; ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" -; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) -; ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" -; ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2) -; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" -; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) -; ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" -; ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) -; (home-page "https://github.com/envoyproxy/go-control-plane") -; (synopsis "control-plane") -; (description -; "This repository contains a Go-based implementation of an API server that -;implements the discovery service APIs defined in -;@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") -; (license license:asl2.0))) -; -;(define-public go-github-com-envoyproxy-protoc-gen-validate-0.1.0 -; (package -; (name "go-github-com-envoyproxy-protoc-gen-validate") -; (version "0.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/envoyproxy/protoc-gen-validate") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0kxd3wwh3xwqk0r684hsy281xq4y71cd11d4q2hspcjbnlbwh7cy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/envoyproxy/protoc-gen-validate")) -; (home-page "https://github.com/envoyproxy/protoc-gen-validate") -; (synopsis "protoc-gen-validate (PGV)") -; (description -; "PGV is a protoc plugin to generate polyglot message validators. While protocol buffers effectively guarantee the types of structured data, they cannot enforce semantic rules for values. This plugin adds support to protoc-generated code to validate such constraints.") -; (license license:asl2.0))) -; -;(define-public go-github-com-google-go-cmp-0.2.0 -; (package -; (name "go-github-com-google-go-cmp") -; (version "0.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/go-cmp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1fbv0x27k9sn8svafc0hjwsnckk864lv4yi7bvzrxvmd3d5hskds")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/go-cmp")) -; (home-page "https://github.com/google/go-cmp") -; (synopsis "Package for equality of Go values") -; (description -; "This package is intended to be a more powerful and safer alternative to -;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20190308221718-c2843e01d9a2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20190311183353-d8887717615a -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20190311183353-d8887717615a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1wfm6ngxjyj7v5a2dqib6lw8bb2rdnf1kl48diykxjrsddn0s163")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190215142949-d0b11bdaac8a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.3.2 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.3.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1k1wb4zr0qbwgpvz9q5ws9zhlal8hq7dmq62pwxxriksayl6hzym")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4 -; (package -; (name "go-golang-org-x-exp") -; (version "0.0.0-20190121172915-509febef88a4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/exp") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "02isrh39z8znrp5znplzy0dip2gnrl3jm1355raliyvhnhg04j6q")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/exp")) -; (home-page "https://golang.org/x/exp") -; (synopsis "exp") -; (description -; "This subrepository holds experimental and deprecated (in the @code{old} -;directory) packages.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961 -; (package -; (name "go-golang-org-x-lint") -; (version "0.0.0-20190227174305-5b3e6a55c961") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/lint") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "04zp5vbds9nffmjg36wjpi5vg9zmf890yf78xxasai3ni637ivfw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/lint")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" -; ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c))) -; (home-page "https://golang.org/x/lint") -; (synopsis "Installation") -; (description "Package lint contains a linter for Go source code. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20190213061140-3a22650c66bd") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "12q6fgdkc0742vcms67nzadgdwvi3rnb1gx3vwkljhrvlnwvz7wc")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f -; (package -; (name "go-golang-org-x-sync") -; (version "0.0.0-20181108010431-42b317875d0f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sync") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0mrjhk7al7yyh76x9flvxy4jm5jyqh2fxbxagpaazxn1xdgkaif3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sync")) -; (home-page "https://golang.org/x/sync") -; (synopsis "Go Sync") -; (description -; "This repository provides Go concurrency primitives in addition to the -;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20180724234803-3673e40ba225") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0vx7mz18p480p7fh0w5jv6mfdbsswrlac1sz4i705q7q7ygz59lm")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-appengine-1.4.0 -; (package -; (name "go-google-golang-org-appengine") -; (version "1.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/appengine") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "06zl7w4sxgdq2pl94wy9ncii6h0z3szl4xpqds0sv3b3wbdlhbnn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/appengine")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225" -; ,go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0))) -; (home-page "https://google.golang.org/appengine") -; (synopsis "Go App Engine packages") -; (description -; "Package appengine provides basic functionality for Google App Engine. -;") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20190226205152-f727befe758c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0rpcqw6z13qd33rbasg32zb0gdhgh5lzjla63r6g651zf6hpsak0")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-google-golang-org-appengine-1.4.0" -; ,go-google-golang-org-appengine-1.4.0) -; ("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" -; ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) -; ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" -; ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-cloud-google-com-go-0.26.0 -; (package -; (name "go-cloud-google-com-go") -; (version "0.26.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-cloud-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "149v3ci17g6wd2pm18mzcncq5qpl9hwdjnz3rlbn5rfidyn46la1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "cloud.google.com/go")) -; (home-page "https://cloud.google.com/go") -; (synopsis "Google Cloud Client Libraries for Go") -; (description -; "Package cloud is the root of the packages used to access Google Cloud -;Services. See @url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} for a full list -;of sub-packages. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-burntsushi-toml-0.3.1 -; (package -; (name "go-github-com-burntsushi-toml") -; (version "0.3.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/BurntSushi/toml") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1fjdwwfzyzllgiwydknf1pwjvy49qxfsczqx5gz3y0izs7as99j6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/BurntSushi/toml")) -; (home-page "https://github.com/BurntSushi/toml") -; (synopsis "TOML parser and encoder for Go with reflection") -; (description -; "Package toml implements decoding and encoding of TOML files. -;") -; (license license:expat))) -; -;(define-public go-github-com-client9-misspell-0.3.4 -; (package -; (name "go-github-com-client9-misspell") -; (version "0.3.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/client9/misspell") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1vwf33wsc4la25zk9nylpbp9px3svlmldkm0bha4hp56jws4q9cs")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/client9/misspell")) -; (home-page "https://github.com/client9/misspell") -; (synopsis "Install") -; (description -; "Package misspell corrects commonly misspelled English words in source files. -;") -; (license license:expat))) -; -;(define-public go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b -; (package -; (name "go-github-com-golang-glog") -; (version "0.0.0-20160126235308-23def4e6c14b") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/glog") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0jb2834rw5sykfr937fxi8hxi2zy80sj2bdn9b3jb4b26ksqng30")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/glog")) -; (home-page "https://github.com/golang/glog") -; (synopsis "glog") -; (description -; "Package glog implements logging analogous to the Google-internal C++ INFO/ERROR/V setup. -;It provides functions Info, Warning, Error, Fatal, plus formatting variants such as -;Infof. It also provides V-style logging controlled by the -v and -vmodule=file=2 flags. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-golang-mock-1.1.1 -; (package -; (name "go-github-com-golang-mock") -; (version "1.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/mock") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ap8wb6pdl6ccmdb43advjll2ly4sz26wsc3axw0hbrjrybybzgy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/mock")) -; (home-page "https://github.com/golang/mock") -; (synopsis "gomock") -; (description -; "gomock is a mocking framework for the @url{http://golang.org/,Go programming language}. It -;integrates well with Go's built-in @code{testing} package, but can be used in other -;contexts too.") -; (license license:asl2.0))) -; -;(define-public go-github-com-golang-protobuf-1.2.0 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0kf4b59rcbb1cchfny2dm9jyznp8ri2hsb14n8iak1q8986xa0ab")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3 -; (package -; (name "go-golang-org-x-lint") -; (version "0.0.0-20181026193005-c67002cb31c3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/lint") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0gymbggskjmphqxqcx4s0vnlcz7mygbix0vhwcwv5r67c0bf6765")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/lint")) -; (home-page "https://golang.org/x/lint") -; (synopsis "Installation") -; (description "Package lint contains a linter for Go source code. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20180826012351-8a410e7b638d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0hp0l8f6fir5gmgrjq0mhh5ikc0rlrm72774228800kfwqjrxxny")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be -; (package -; (name "go-golang-org-x-oauth2") -; (version "0.0.0-20180821212333-d2e6202438be") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/oauth2") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0wbn75fd10485nb93bm4kqldqifdim5xqy4v7r5sdvimvf3fyhn7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/oauth2")) -; (home-page "https://golang.org/x/oauth2") -; (synopsis "OAuth2 for Go") -; (description -; "Package oauth2 provides support for making -;OAuth2 authorized and authenticated HTTP requests, -;as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC 6749}. -;It can additionally grant authorization with Bearer JWT. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f -; (package -; (name "go-golang-org-x-sync") -; (version "0.0.0-20180314180146-1d60e4601c6f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sync") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "046jlanz2lkxq1r57x9bl6s4cvfqaic6p2xybsj8mq1120jv4rs6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sync")) -; (home-page "https://golang.org/x/sync") -; (synopsis "Go Sync") -; (description -; "This repository provides Go concurrency primitives in addition to the -;ones provided by the language and \"sync\" and \"sync/atomic\" packages.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20180830151530-49385e6e1522") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0spbldahns09fdxkxflb1x24f8k2awdlnr6k5i7ci4fqd19r1dv4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-text-0.3.0 -; (package -; (name "go-golang-org-x-text") -; (version "0.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/text") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/text")) -; (home-page "https://golang.org/x/text") -; (synopsis "Go Text") -; (description -; "text is a repository of text-related packages related to internationalization -;(i18n) and localization (l10n), such as character encodings, text -;transformations, and locale-specific text handling. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20190114222345-bf090417da8b") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1n3xp56k4k3lj06rx7587wr5gnwg0148nvwx6ch0g7ar02hh94hw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-appengine-1.1.0 -; (package -; (name "go-google-golang-org-appengine") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/appengine") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1pz202zszg8f35dk5pfhwgcdi3r6dx1l4yk6x6ly7nb4j45zi96x")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/appengine")) -; (home-page "https://google.golang.org/appengine") -; (synopsis "Go App Engine packages") -; (description -; "Package appengine provides basic functionality for Google App Engine. -;") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8 -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20180817151627-c66870c02cf8") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0siq7sv68556ygqi2d2zmvx8l1xjqdc0fylqzci5h1mq2i14bayn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-grpc-1.19.0 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.19.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1znqwpj7ix3dpzx4zch0q70sdl3z5lvbb7v3q4i8sf8kas3yv71v")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" -; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) -; ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" -; ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) -; ("go-google-golang-org-appengine-1.1.0" -; ,go-google-golang-org-appengine-1.1.0) -; ("go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b" -; ,go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b) -; ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522" -; ,go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522) -; ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" -; ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d" -; ,go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d) -; ("go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3" -; ,go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0) -; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-client9-misspell-0.3.4" -; ,go-github-com-client9-misspell-0.3.4) -; ("go-github-com-burntsushi-toml-0.3.1" -; ,go-github-com-burntsushi-toml-0.3.1) -; ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099 -; (package -; (name "go-honnef-co-go-tools") -; (version "0.0.0-20190102054323-c2f93a96b099") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/dominikh/go-tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "07lg29aiap80ca9f201jzng9vjr168cv3qmvjmbd7v5pmww9kmr8")))) -; (build-system go-build-system) -; (arguments '(#:import-path "honnef.co/go/tools")) -; (home-page "https://honnef.co/go/tools") -; (synopsis "Documentation") -; (description -; "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, -;offers simplifications, and enforces style rules.") -; (license license:expat))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55 -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20190819201941-24fa4b261c55") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "109zhaqlfd8zkbr1hk6zqbs6vcxfrk64scjwh2nswph05gr0m84d")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" -; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) -; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) -; ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" -; ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) -; ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" -; ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) -; ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" -; ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-grpc-1.27.0 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.27.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ijrmgrxyabfn51nm3p9l81iaasq5fg237wnr6mdc4dzsfcg8kd7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" -; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-github-com-google-go-cmp-0.2.0" -; ,go-github-com-google-go-cmp-0.2.0) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2) -; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" -; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) -; ("go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473" -; ,go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-github-com-google-go-cmp-0.3.0 -; (package -; (name "go-github-com-google-go-cmp") -; (version "0.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/go-cmp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1hyxx3434zshl2m9ja78gwlkg1rx9yl6diqa7dnjb31xz5x4gbjj")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/go-cmp")) -; (home-page "https://github.com/google/go-cmp") -; (synopsis "Package for equality of Go values") -; (description -; "This package is intended to be a more powerful and safer alternative to -;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd -; (package -; (name "go-google-golang-org-protobuf") -; (version "0.0.0-20200109180630-ec00e32a8dfd") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0w6lp9w2avxcpxwzzhspr209ifhyjagvs23k0vykfdqahl1aplrh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.3.0" -; ,go-github-com-google-go-cmp-0.3.0))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.4.0-rc.1 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.4.0-rc.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "186rirvbfgv6hrxp27ipx2cdpv19qifdd20biqfdm01wiyclqimn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd" -; ,go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd) -; ("go-github-com-google-go-cmp-0.3.1" -; ,go-github-com-google-go-cmp-0.3.1))) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-github-com-google-go-cmp-0.3.1 -; (package -; (name "go-github-com-google-go-cmp") -; (version "0.3.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/go-cmp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1caw49i0plkjxir7kdf5qhwls3krqwfmi7g4h392rdfwi3kfahx1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/go-cmp")) -; (home-page "https://github.com/google/go-cmp") -; (synopsis "Package for equality of Go values") -; (description -; "This package is intended to be a more powerful and safer alternative to -;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64 -; (package -; (name "go-google-golang-org-protobuf") -; (version "0.0.0-20200221191635-4d8936d0db64") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0563bsvdjj6k0sgwqd5yzrgfiax7sp3lcwh608gync5sv9fx39cy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.3.1" -; ,go-github-com-google-go-cmp-0.3.1) -; ("go-github-com-golang-protobuf-1.4.0-rc.1" -; ,go-github-com-golang-protobuf-1.4.0-rc.1))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.4.0-rc.1.0.20200221234624-67d41d38c208") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ykxhg3zixmw25pd435f8h16wnz1g00jpcmmg3xl030kksgqgpp6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64" -; ,go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0))) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60 -; (package -; (name "go-google-golang-org-protobuf") -; (version "0.0.0-20200228230310-ab0ca4ff8a60") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1rinspcznfp85yz4vrlf4h38hr576virgv8lcs22bsylqga808sd")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208" -; ,go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.4.0-rc.2 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.4.0-rc.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1hd43hjv5zl6bjbmhm5phx74bw4xajsi73m5zky2k56za4mpgzzc")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60" -; ,go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0))) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967 -; (package -; (name "go-google-golang-org-protobuf") -; (version "1.20.1-0.20200309200217-e05f789c0967") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "17wmy89hnmpkwc63rfcjp50q15s9f1rhmczg06c3z9yy41zk82w9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.4.0-rc.2" -; ,go-github-com-golang-protobuf-1.4.0-rc.2))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.4.0-rc.4.0.20200313231945-b860323f09d0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1zj6cwshx0l5n9cn2cpbikzzb79px5dmkpc4p19zy1iif5r5p0z0")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967" -; ,go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0))) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-1.21.0 -; (package -; (name "go-google-golang-org-protobuf") -; (version "1.21.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "12bwln8z1lf9105gdp6ip0rx741i4yfz1520gxnp8861lh9wcl63")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0" -; ,go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.4.0 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1fjvl5n77abxz5qsd4mgyvjq19x43c5bfvmq62mq3m5plx6zksc8")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.21.0" -; ,go-google-golang-org-protobuf-1.21.0) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0))) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-github-com-google-go-cmp-0.4.0 -; (package -; (name "go-github-com-google-go-cmp") -; (version "0.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/go-cmp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1x5pvl3fb5sbyng7i34431xycnhmx8xx94gq2n19g6p0vz68z2v2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/go-cmp")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" -; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) -; (home-page "https://github.com/google/go-cmp") -; (synopsis "Package for equality of Go values") -; (description -; "This package is intended to be a more powerful and safer alternative to -;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc -; (package -; (name "go-google-golang-org-protobuf") -; (version "1.23.1-0.20200526195155-81db48ad09cc") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "02cpr8rqr5wmpj2fqb32mzilsdnxkh52g1jz95a3ck3gzffc7hh1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.4.0" -; ,go-github-com-golang-protobuf-1.4.0))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc -; (package -; (name "go-honnef-co-go-tools") -; (version "0.0.0-20190523083050-ea95bdfd59fc") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/dominikh/go-tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1763nw7pwpzkvzfnm63dgzcgbq9hwmq5l1nffchnhh77vgkaq4ic")))) -; (build-system go-build-system) -; (arguments '(#:import-path "honnef.co/go/tools")) -; (home-page "https://honnef.co/go/tools") -; (synopsis "Documentation") -; (description -; "Staticcheck is a state of the art linter for the . Using static analysis, it finds bugs and performance issues, -;offers simplifications, and enforces style rules.") -; (license license:expat))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013 -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20200526211855-cb27e3aa2013") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ml73ghqcwbz7ipfk8fnxb5indcml49b5p7vp1fsyny0abyyrmxf")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" -; ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) -; ("go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc" -; ,go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc) -; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) -; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" -; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-github-com-golang-protobuf-1.4.1" -; ,go-github-com-golang-protobuf-1.4.1))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for interacting with Google's gRPC -;APIs.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-protobuf-1.25.0 -; (package -; (name "go-google-golang-org-protobuf") -; (version "1.25.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0apfl42x166dh96zfq5kvv4b4ax9xljik6bq1mnvn2240ir3mc23")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" -; ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) -; ("go-github-com-google-go-cmp-0.5.0" -; ,go-github-com-google-go-cmp-0.5.0) -; ("go-github-com-golang-protobuf-1.4.1" -; ,go-github-com-golang-protobuf-1.4.1))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-grpc-1.38.0 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.38.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "08lgqdvbd0i4qwsv1y37qmf8mhsy9ywzx73ixiwih7xhnalrf7xl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.25.0" -; ,go-google-golang-org-protobuf-1.25.0) -; ("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" -; ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-github-com-google-uuid-1.1.2" ,go-github-com-google-uuid-1.1.2) -; ("go-github-com-google-go-cmp-0.5.0" -; ,go-github-com-google-go-cmp-0.5.0) -; ("go-github-com-golang-protobuf-1.4.2" -; ,go-github-com-golang-protobuf-1.4.2) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-envoyproxy-go-control-plane-0.9.9-0.20210217033140-668b12f5399d" -; ,go-github-com-envoyproxy-go-control-plane-0.9.9-0.20210217033140-668b12f5399d) -; ("go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403" -; ,go-github-com-cncf-udpa-go-0.0.0-20201120205902-5459f2c99403))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC. -;") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-protobuf-1.26.0-rc.1 -; (package -; (name "go-google-golang-org-protobuf") -; (version "1.26.0-rc.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1m2jp247qcnix42jncn0q7pwrjgbhiqllb1115hfsz40xfnfhp8j")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.5.5" -; ,go-github-com-google-go-cmp-0.5.5))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.5.0 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.5.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1craaxv34g4g8q3yrv6pr28fx9ihnk7hj5gnbmxcrhcp78423lnf")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.26.0-rc.1" -; ,go-google-golang-org-protobuf-1.26.0-rc.1) -; ("go-github-com-google-go-cmp-0.5.5" -; ,go-github-com-google-go-cmp-0.5.5))) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module -;(@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) -;contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543 -; (package -; (name "go-golang-org-x-xerrors") -; (version "0.0.0-20191204190536-9bdfabe68543") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/xerrors") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1yjfi1bk9xb81lqn85nnm13zz725wazvrx3b50hx19qmwg7a4b0c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/xerrors")) -; (home-page "https://golang.org/x/xerrors") -; (synopsis #f) -; (description -; "Package xerrors implements functions to manipulate errors. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-google-go-cmp-0.5.5 -; (package -; (name "go-github-com-google-go-cmp") -; (version "0.5.5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/go-cmp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "12fmkdhyv5d4is8s57k78j097zb0phlgnrkqc03agiszxlid69x7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/go-cmp")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" -; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) -; (home-page "https://github.com/google/go-cmp") -; (synopsis "Package for equality of Go values") -; (description -; "This package is intended to be a more powerful and safer alternative to -;@code{reflect.DeepEqual} for comparing whether two values are semantically equal.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-1.27.1 -; (package -; (name "go-google-golang-org-protobuf") -; (version "1.27.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0aszb7cv8fq1m8akgd4kjyg5q7g5z9fdqnry6057ygq9r8r2yif2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.5.5" -; ,go-github-com-google-go-cmp-0.5.5) -; ("go-github-com-golang-protobuf-1.5.0" -; ,go-github-com-golang-protobuf-1.5.0))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is a -;language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol buffer developer guide} -;for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-gopkg-in-yaml-v2-2.4.0 -; (package -; (name "go-gopkg-in-yaml-v2") -; (version "2.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/yaml.v2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1pbmrpj7gcws34g8vwna4i2nhm9p6235piww36436xhyaa10cldr")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" -; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) -; (home-page "https://gopkg.in/yaml.v2") -; (synopsis "YAML support for the Go language") -; (description "Package yaml implements YAML support for the Go language. -;") -; (license license:asl2.0))) -; -;(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 -; (package -; (name "go-gopkg-in-check-v1") -; (version "0.0.0-20161208181325-20d25e280405") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/check.v1") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) -; (home-page "https://gopkg.in/check.v1") -; (synopsis "Instructions") -; (description -; "Package check is a rich testing extension for Go's testing package. -;") -; (license license:bsd-2))) -; -;(define-public go-gopkg-in-yaml-v3-3.0.0-20210107192922-496545a6307b -; (package -; (name "go-gopkg-in-yaml-v3") -; (version "3.0.0-20210107192922-496545a6307b") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/yaml.v3") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "06f4lnrp494wqaygv09dggr2dwf3z2bawqhnlnnwiamg5y787k4g")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" -; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) -; (home-page "https://gopkg.in/yaml.v3") -; (synopsis "YAML support for the Go language") -; (description "Package yaml implements YAML support for the Go language. -;") -; (license #f))) -; -;(define-public go-oras-land-oras-go-1.0.0 -; (package -; (name "go-oras-land-oras-go") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/oras-project/oras-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1pqix8xj298229c886ahdggsvbg4srm4izjr66icvfjjx7rndagz")))) -; (build-system go-build-system) -; (arguments '(#:import-path "oras.land/oras-go")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v3-3.0.0-20210107192922-496545a6307b" -; ,go-gopkg-in-yaml-v3-3.0.0-20210107192922-496545a6307b) -; ("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) -; ("go-google-golang-org-protobuf-1.27.1" -; ,go-google-golang-org-protobuf-1.27.1) -; ("go-google-golang-org-grpc-1.38.0" ,go-google-golang-org-grpc-1.38.0) -; ("go-google-golang-org-genproto-0.0.0-20210602131652-f16073e35f0c" -; ,go-google-golang-org-genproto-0.0.0-20210602131652-f16073e35f0c) -; ("go-golang-org-x-text-0.3.6" ,go-golang-org-x-text-0.3.6) -; ("go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1" -; ,go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1) -; ("go-golang-org-x-net-0.0.0-20211112202133-69e39bad7dc2" -; ,go-golang-org-x-net-0.0.0-20211112202133-69e39bad7dc2) -; ("go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20140908184405-b21fdbd4370f" -; ,go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20140908184405-b21fdbd4370f) -; ("go-github-com-yvasiyarov-gorelic-0.0.0-20141212073537-a9bba5b9ab50" -; ,go-github-com-yvasiyarov-gorelic-0.0.0-20141212073537-a9bba5b9ab50) -; ("go-github-com-yvasiyarov-go-metrics-0.0.0-20140926110328-57bccd1ccd43" -; ,go-github-com-yvasiyarov-go-metrics-0.0.0-20140926110328-57bccd1ccd43) -; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) -; ("go-github-com-prometheus-procfs-0.6.0" -; ,go-github-com-prometheus-procfs-0.6.0) -; ("go-github-com-prometheus-common-0.10.0" -; ,go-github-com-prometheus-common-0.10.0) -; ("go-github-com-prometheus-client-model-0.2.0" -; ,go-github-com-prometheus-client-model-0.2.0) -; ("go-github-com-prometheus-client-golang-1.7.1" -; ,go-github-com-prometheus-client-golang-1.7.1) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-morikuni-aec-1.0.0" ,go-github-com-morikuni-aec-1.0.0) -; ("go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd" -; ,go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd) -; ("go-github-com-moby-locker-1.0.1" ,go-github-com-moby-locker-1.0.1) -; ("go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369" -; ,go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369) -; ("go-github-com-klauspost-compress-1.11.13" -; ,go-github-com-klauspost-compress-1.11.13) -; ("go-github-com-inconshreveable-mousetrap-1.0.0" -; ,go-github-com-inconshreveable-mousetrap-1.0.0) -; ("go-github-com-gorilla-mux-1.8.0" ,go-github-com-gorilla-mux-1.8.0) -; ("go-github-com-gorilla-handlers-1.5.1" -; ,go-github-com-gorilla-handlers-1.5.1) -; ("go-github-com-gomodule-redigo-1.8.2" -; ,go-github-com-gomodule-redigo-1.8.2) -; ("go-github-com-golang-protobuf-1.5.2" -; ,go-github-com-golang-protobuf-1.5.2) -; ("go-github-com-gogo-protobuf-1.3.2" -; ,go-github-com-gogo-protobuf-1.3.2) -; ("go-github-com-felixge-httpsnoop-1.0.1" -; ,go-github-com-felixge-httpsnoop-1.0.1) -; ("go-github-com-docker-libtrust-0.0.0-20150114040149-fa567046d9b1" -; ,go-github-com-docker-libtrust-0.0.0-20150114040149-fa567046d9b1) -; ("go-github-com-docker-go-units-0.4.0" -; ,go-github-com-docker-go-units-0.4.0) -; ("go-github-com-docker-go-metrics-0.0.1" -; ,go-github-com-docker-go-metrics-0.0.1) -; ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" -; ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) -; ("go-github-com-docker-go-connections-0.4.0" -; ,go-github-com-docker-go-connections-0.4.0) -; ("go-github-com-docker-docker-credential-helpers-0.6.4" -; ,go-github-com-docker-docker-credential-helpers-0.6.4) -; ("go-github-com-docker-distribution-2.7.1+incompatible" -; ,go-github-com-docker-distribution-2.7.1+incompatible) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1) -; ("go-github-com-cespare-xxhash-v2-2.1.1" -; ,go-github-com-cespare-xxhash-v2-2.1.1) -; ("go-github-com-bugsnag-panicwrap-0.0.0-20151223152923-e2c28503fcd0" -; ,go-github-com-bugsnag-panicwrap-0.0.0-20151223152923-e2c28503fcd0) -; ("go-github-com-bugsnag-osext-0.0.0-20130617224835-0dd3f918b21b" -; ,go-github-com-bugsnag-osext-0.0.0-20130617224835-0dd3f918b21b) -; ("go-github-com-bugsnag-bugsnag-go-0.0.0-20141110184014-b1d153021fcd" -; ,go-github-com-bugsnag-bugsnag-go-0.0.0-20141110184014-b1d153021fcd) -; ("go-github-com-bshuster-repo-logrus-logstash-hook-1.0.0" -; ,go-github-com-bshuster-repo-logrus-logstash-hook-1.0.0) -; ("go-github-com-beorn7-perks-1.0.1" ,go-github-com-beorn7-perks-1.0.1) -; ("go-github-com-shopify-logrus-bugsnag-0.0.0-20171204204709-577dee27f20d" -; ,go-github-com-shopify-logrus-bugsnag-0.0.0-20171204204709-577dee27f20d) -; ("go-github-com-azure-go-ansiterm-0.0.0-20170929234023-d6e3b3328b78" -; ,go-github-com-azure-go-ansiterm-0.0.0-20170929234023-d6e3b3328b78) -; ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" -; ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) -; ("go-golang-org-x-crypto-0.0.0-20211117183948-ae814b36b871" -; ,go-golang-org-x-crypto-0.0.0-20211117183948-ae814b36b871) -; ("go-github-com-stretchr-testify-1.7.0" -; ,go-github-com-stretchr-testify-1.7.0) -; ("go-github-com-spf13-cobra-1.2.1" ,go-github-com-spf13-cobra-1.2.1) -; ("go-github-com-sirupsen-logrus-1.8.1" -; ,go-github-com-sirupsen-logrus-1.8.1) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-phayes-freeport-0.0.0-20180830031419-95f893ade6f2" -; ,go-github-com-phayes-freeport-0.0.0-20180830031419-95f893ade6f2) -; ("go-github-com-opencontainers-image-spec-1.0.2" -; ,go-github-com-opencontainers-image-spec-1.0.2) -; ("go-github-com-opencontainers-go-digest-1.0.0" -; ,go-github-com-opencontainers-go-digest-1.0.0) -; ("go-github-com-docker-docker-20.10.11+incompatible" -; ,go-github-com-docker-docker-20.10.11+incompatible) -; ("go-github-com-docker-cli-20.10.11+incompatible" -; ,go-github-com-docker-cli-20.10.11+incompatible) -; ("go-github-com-distribution-distribution-v3-3.0.0-20211118083504-a29a3c99a684" -; ,go-github-com-distribution-distribution-v3-3.0.0-20211118083504-a29a3c99a684) -; ("go-github-com-containerd-containerd-1.5.8" -; ,go-github-com-containerd-containerd-1.5.8))) -; (home-page "https://oras.land/oras-go") -; (synopsis "ORAS Go library") -; (description -; "Documentation for the ORAS Go library is located on -;the project website: @url{https://oras.land/client_libraries/go/,oras.land/client_libraries/go}") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20210226172049-e18ecbb05110") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1vlq8mdscp7yfaa1lmyv03y5m4c2d67ydg2q1i6smkrxghn3zn3q")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) -; ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" -; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) -; ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" -; ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20210615035016-665e8c7367d1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "11n848csibdbv7b46zjyf4l7sphg37n9sjzqfy1ds7p1jyakwmnv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20201119102817-f84b799fce68") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1dvhqian5byzkcg1bnqzygqa6ccc6krc2q7j12pp1vhl3y7znnsg")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1 -; (package -; (name "go-golang-org-x-term") -; (version "0.0.0-20201126162022-7de9c90e9dd1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/term") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ba252xmv6qsvf1w1gcy98mngrj0vd4inbjw0lsklqvva65nljna")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/term")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" -; ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) -; (home-page "https://golang.org/x/term") -; (synopsis "Go terminal/console support") -; (description -; "Package term provides support functions for dealing with terminals, as -;commonly found on UNIX systems. -;") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20180917221912-90fa682c2a6e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-text-0.3.3 -; (package -; (name "go-golang-org-x-text") -; (version "0.3.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/text") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "19pihqm3phyndmiw6i42pdv6z1rbvlqlsnhsyqf9gsnn0qnmqqlh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/text")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" -; ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) -; (home-page "https://golang.org/x/text") -; (synopsis "Go Text") -; (description -; "text is a repository of text-related packages related to internationalization -;(i18n) and localization (l10n), such as character encodings, text -;transformations, and locale-specific text handling. -;") -; (license license:bsd-3))) -; -;(define-public go-github-com-hpcng-golang-x-crypto-0.0.0-20210830200829-e6b35e3fb874 -; (package -; (name "go-github-com-hpcng-golang-x-crypto") -; (version "0.0.0-20210830200829-e6b35e3fb874") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hpcng/golang-x-crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "17zbxn6m550dkfcx7hi6wvl7f5gm39hx72bfkdjgpzq05fdb1bfk")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hpcng/golang-x-crypto")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) -; ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" -; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) -; ("go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1" -; ,go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1) -; ("go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110" -; ,go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110))) -; (home-page "https://github.com/hpcng/golang-x-crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) +(define-public go-github-com-netflix-go-expect-0.0.0-20220104043353-73e0943537d2 + (package + (name "go-github-com-netflix-go-expect") + (version "0.0.0-20220104043353-73e0943537d2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/Netflix/go-expect") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0zkvhnc4ii6ygvcsj54ng0kql26rnny7l3hy1w61g88mxjsww1b9")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/Netflix/go-expect")) + (propagated-inputs + `(("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-creack-pty-1.1.17" ,go-github-com-creack-pty-1.1.17))) + (home-page "https://github.com/Netflix/go-expect") + (synopsis "go-expect") + (description + "Package expect provides an expect-like interface to automate control of +applications. It is unlike expect in that it does not spawn or manage process +lifecycle. This package only focuses on expecting output and sending input +through it's psuedoterminal.") + (license license:asl2.0))) +(define-public go-github-com-protonmail-go-crypto-0.0.0-20220113124808-70ae35bab23f + (package + (name "go-github-com-protonmail-go-crypto") + (version "0.0.0-20220113124808-70ae35bab23f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/ProtonMail/go-crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0dpalb7cd2xs0hji80zv378vf8gx4ph7b8xdd05kvbskyw67fb7n")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/ProtonMail/go-crypto")) + (propagated-inputs + `(("go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2" + ,go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2))) + (home-page "https://github.com/ProtonMail/go-crypto") + (synopsis #f) + (description + "This module is backwards compatible with x/crypto/openpgp, so you can simply +replace all imports of @code{golang.org/x/crypto/openpgp} with +@code{github.com/ProtonMail/go-crypto/openpgp}.") + (license license:bsd-3))) +(define-public go-github-com-adigunhammedolalekan-registry-auth-0.0.0-20200730122110-8cde180a3a60 + (package + (name "go-github-com-adigunhammedolalekan-registry-auth") + (version "0.0.0-20200730122110-8cde180a3a60") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/adigunhammedolalekan/registry-auth") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0855a5c0ifi6q2ghb6gax0kwwra5j7pd2lplq4wp8r83dnv4vwj0")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/adigunhammedolalekan/registry-auth")) + (propagated-inputs + `(("go-github-com-sirupsen-logrus-1.4.2" + ,go-github-com-sirupsen-logrus-1.4.2) + ("go-github-com-gorilla-mux-1.7.4" ,go-github-com-gorilla-mux-1.7.4) + ("go-github-com-docker-libtrust-0.0.0-20160708172513-aabc10ec26b7" + ,go-github-com-docker-libtrust-0.0.0-20160708172513-aabc10ec26b7) + ("go-github-com-docker-distribution-2.7.1+incompatible" + ,go-github-com-docker-distribution-2.7.1+incompatible))) + (home-page "https://github.com/adigunhammedolalekan/registry-auth") + (synopsis "registry-auth") + (description + "a package to implements docker registry token authentication server as described +here +[https://github.com/docker/distribution/blob/1b9ab303a477ded9bdd3fc97e9119fa8f9e58fca/docs/spec/auth/index.md]") + (license license:expat))) +(define-public go-github-com-apex-log-1.9.0 + (package + (name "go-github-com-apex-log") + (version "1.9.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/apex/log") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ibqkncnb8wcwilg2kyfyl5541g69rg551iy6m61q6iwdn5vfhi2")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/apex/log")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) + ("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" + ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) + ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) + ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" + ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) + ("go-github-com-tj-go-spin-1.1.0" ,go-github-com-tj-go-spin-1.1.0) + ("go-github-com-tj-go-kinesis-0.0.0-20171128231115-08b17f58cb1b" + ,go-github-com-tj-go-kinesis-0.0.0-20171128231115-08b17f58cb1b) + ("go-github-com-tj-go-elastic-0.0.0-20171221160941-36157cbbebc2" + ,go-github-com-tj-go-elastic-0.0.0-20171221160941-36157cbbebc2) + ("go-github-com-tj-go-buffer-1.1.0" ,go-github-com-tj-go-buffer-1.1.0) + ("go-github-com-tj-assert-0.0.3" ,go-github-com-tj-assert-0.0.3) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-smartystreets-gunit-1.0.0" + ,go-github-com-smartystreets-gunit-1.0.0) + ("go-github-com-smartystreets-go-aws-auth-0.0.0-20180515143844-0c1422d1fdb9" + ,go-github-com-smartystreets-go-aws-auth-0.0.0-20180515143844-0c1422d1fdb9) + ("go-github-com-rogpeppe-fastuuid-1.1.0" + ,go-github-com-rogpeppe-fastuuid-1.1.0) + ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) + ("go-github-com-mattn-go-colorable-0.1.2" + ,go-github-com-mattn-go-colorable-0.1.2) + ("go-github-com-kr-pretty-0.2.0" ,go-github-com-kr-pretty-0.2.0) + ("go-github-com-jpillora-backoff-0.0.0-20180909062703-3050d21c67d7" + ,go-github-com-jpillora-backoff-0.0.0-20180909062703-3050d21c67d7) + ("go-github-com-google-uuid-1.1.1" ,go-github-com-google-uuid-1.1.1) + ("go-github-com-golang-protobuf-1.3.1" + ,go-github-com-golang-protobuf-1.3.1) + ("go-github-com-go-logfmt-logfmt-0.4.0" + ,go-github-com-go-logfmt-logfmt-0.4.0) + ("go-github-com-fatih-color-1.7.0" ,go-github-com-fatih-color-1.7.0) + ("go-github-com-aybabtme-rgbterm-0.0.0-20170906152045-cc83f3b3ce59" + ,go-github-com-aybabtme-rgbterm-0.0.0-20170906152045-cc83f3b3ce59) + ("go-github-com-aws-aws-sdk-go-1.20.6" + ,go-github-com-aws-aws-sdk-go-1.20.6) + ("go-github-com-aphistic-sweet-0.2.0" + ,go-github-com-aphistic-sweet-0.2.0) + ("go-github-com-aphistic-golf-0.0.0-20180712155816-02c07f170c5a" + ,go-github-com-aphistic-golf-0.0.0-20180712155816-02c07f170c5a) + ("go-github-com-apex-logs-1.0.0" ,go-github-com-apex-logs-1.0.0))) + (home-page "https://github.com/apex/log") + (synopsis "Handlers") + (description + "Package log implements a simple structured logging API designed with few +assumptions. Designed for centralized logging solutions such as Kinesis which +require encoding and decoding before fanning-out to handlers.") + (license license:expat))) +(define-public go-github-com-apptainer-container-key-client-0.7.2 + (package + (name "go-github-com-apptainer-container-key-client") + (version "0.7.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/apptainer/container-key-client") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0f4bb1k8pi37alzgzvjw23ynp54752qwgnr9gim3vc061qcjx377")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/apptainer/container-key-client")) + (propagated-inputs + `(("go-github-com-sylabs-json-resp-0.8.0" + ,go-github-com-sylabs-json-resp-0.8.0))) + (home-page "https://github.com/apptainer/container-key-client") + (synopsis "Container Key Client") + (description + "This project provides a Go client to Apptainer for key storage and retrieval +using the HKP protocol. Forked from +@url{https://github.com/sylabs/scs-key-client,sylabs/scs-key-client}.") + (license license:bsd-3))) +(define-public go-github-com-apptainer-container-library-client-1.2.2 + (package + (name "go-github-com-apptainer-container-library-client") + (version "1.2.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/apptainer/container-library-client") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1f6pxzk0k9jf9612kjw6jlmrs8yzqqrvhjwfxwri1q1d4i410a0h")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/apptainer/container-library-client")) + (propagated-inputs + `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" + ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.0" + ,go-github-com-davecgh-go-spew-1.1.0) + ("go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a" + ,go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a) + ("go-github-com-sylabs-json-resp-0.8.0" + ,go-github-com-sylabs-json-resp-0.8.0) + ("go-github-com-stretchr-testify-1.7.0" + ,go-github-com-stretchr-testify-1.7.0) + ("go-github-com-go-log-log-0.2.0" ,go-github-com-go-log-log-0.2.0) + ("go-github-com-blang-semver-v4-4.0.0" + ,go-github-com-blang-semver-v4-4.0.0))) + (home-page "https://github.com/apptainer/container-library-client") + (synopsis "Container Library Client") + (description + "This project provides a Go client to Apptainer for the container library. +Forked from +@url{https://github.com/sylabs/scs-library-client,sylabs/scs-library-client}.") + (license license:bsd-3))) +(define-public go-github-com-apptainer-sif-v2-2.3.2 + (package + (name "go-github-com-apptainer-sif-v2") + (version "2.3.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/apptainer/sif") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "10cmvgyjxnfgw5661n1zbdr8zs29rx9izsr1bbnnyjr9kdqdhfg1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/apptainer/sif/v2")) + (propagated-inputs + `(("go-gopkg-in-warnings-v0-0.1.2" ,go-gopkg-in-warnings-v0-0.1.2) + ("go-golang-org-x-sys-0.0.0-20211205182925-97ca703d548d" + ,go-golang-org-x-sys-0.0.0-20211205182925-97ca703d548d) + ("go-golang-org-x-net-0.0.0-20210813160813-60bc85c4be6d" + ,go-golang-org-x-net-0.0.0-20210813160813-60bc85c4be6d) + ("go-golang-org-x-crypto-0.0.0-20210817164053-32db794688a5" + ,go-golang-org-x-crypto-0.0.0-20210817164053-32db794688a5) + ("go-github-com-xanzy-ssh-agent-0.3.0" + ,go-github-com-xanzy-ssh-agent-0.3.0) + ("go-github-com-sergi-go-diff-1.1.0" + ,go-github-com-sergi-go-diff-1.1.0) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-mitchellh-go-homedir-1.1.0" + ,go-github-com-mitchellh-go-homedir-1.1.0) + ("go-github-com-kevinburke-ssh-config-0.0.0-20201106050909-4977a11b4351" + ,go-github-com-kevinburke-ssh-config-0.0.0-20201106050909-4977a11b4351) + ("go-github-com-jbenet-go-context-0.0.0-20150711004518-d14ea06fba99" + ,go-github-com-jbenet-go-context-0.0.0-20150711004518-d14ea06fba99) + ("go-github-com-inconshreveable-mousetrap-1.0.0" + ,go-github-com-inconshreveable-mousetrap-1.0.0) + ("go-github-com-imdario-mergo-0.3.12" + ,go-github-com-imdario-mergo-0.3.12) + ("go-github-com-go-git-go-billy-v5-5.3.1" + ,go-github-com-go-git-go-billy-v5-5.3.1) + ("go-github-com-go-git-gcfg-1.5.0" ,go-github-com-go-git-gcfg-1.5.0) + ("go-github-com-emirpasic-gods-1.12.0" + ,go-github-com-emirpasic-gods-1.12.0) + ("go-github-com-acomagu-bufpipe-1.0.3" + ,go-github-com-acomagu-bufpipe-1.0.3) + ("go-github-com-microsoft-go-winio-0.4.16" + ,go-github-com-microsoft-go-winio-0.4.16) + ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) + ("go-github-com-spf13-cobra-1.3.0" ,go-github-com-spf13-cobra-1.3.0) + ("go-github-com-sebdah-goldie-v2-2.5.3" + ,go-github-com-sebdah-goldie-v2-2.5.3) + ("go-github-com-magefile-mage-1.12.1" + ,go-github-com-magefile-mage-1.12.1) + ("go-github-com-google-uuid-1.3.0" ,go-github-com-google-uuid-1.3.0) + ("go-github-com-go-git-go-git-v5-5.4.2" + ,go-github-com-go-git-go-git-v5-5.4.2) + ("go-github-com-blang-semver-v4-4.0.0" + ,go-github-com-blang-semver-v4-4.0.0) + ("go-github-com-protonmail-go-crypto-0.0.0-20220113124808-70ae35bab23f" + ,go-github-com-protonmail-go-crypto-0.0.0-20220113124808-70ae35bab23f))) + (home-page "https://github.com/apptainer/sif") + (synopsis "The Singularity Image Format (SIF)") + (description + "This module contains an open source implementation of the Singularity Image +Format (SIF) that makes it easy to create complete and encapsulated container +environments stored in a single file.") + (license license:bsd-3))) +(define-public go-github-com-blang-semver-v4-4.0.0 + (package + (name "go-github-com-blang-semver-v4") + (version "4.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/blang/semver") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "14h9ys4n4kx9cbj42lkdf4i5k3nkll6sd62jcvl7cs565v6fiknz")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/blang/semver/v4")) + (home-page "https://github.com/blang/semver") + (synopsis #f) + (description #f) + (license license:expat))) +(define-public go-github-com-buger-jsonparser-1.1.1 + (package + (name "go-github-com-buger-jsonparser") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/buger/jsonparser") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0qv2lsh2biwxn927941gqiv5pqg7n4v58j0i536pjp7pr17pq7dp")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/buger/jsonparser")) + (home-page "https://github.com/buger/jsonparser") + (synopsis + "Alternative JSON parser for Go (10x times faster standard library)") + (description + "It does not require you to know the structure of the payload (eg. create +structs), and allows accessing fields by providing the path to them. It is up +to @strong{10 times faster} than standard @code{encoding/json} package +(depending on payload size and usage), @strong{allocates no memory}. See +benchmarks below.") + (license license:expat))) +(define-public go-github-com-cenkalti-backoff-v4-4.1.2 + (package + (name "go-github-com-cenkalti-backoff-v4") + (version "4.1.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cenkalti/backoff") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "08c28226q612i1pv83161y57qh16631vpc51ai9f76qfrzsy946z")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/cenkalti/backoff/v4")) + (home-page "https://github.com/cenkalti/backoff") + (synopsis "Exponential Backoff") + (description + "Package backoff implements backoff algorithms for retrying operations.") + (license license:expat))) +(define-public go-github-com-containerd-cgroups-1.0.3 + (package + (name "go-github-com-containerd-cgroups") + (version "1.0.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/cgroups") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0mqsi2jm1f7xvs35kx6ijvadr6zycshc1xivq6xdiwrw24wb0m3r")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/cgroups")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20210510120138-977fb7262007" + ,go-golang-org-x-sys-0.0.0-20210510120138-977fb7262007) + ("go-go-uber-org-goleak-1.1.12" ,go-go-uber-org-goleak-1.1.12) + ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) + ("go-github-com-stretchr-testify-1.7.0" + ,go-github-com-stretchr-testify-1.7.0) + ("go-github-com-sirupsen-logrus-1.8.1" + ,go-github-com-sirupsen-logrus-1.8.1) + ("go-github-com-opencontainers-runtime-spec-1.0.2" + ,go-github-com-opencontainers-runtime-spec-1.0.2) + ("go-github-com-gogo-protobuf-1.3.2" + ,go-github-com-gogo-protobuf-1.3.2) + ("go-github-com-godbus-dbus-v5-5.0.4" + ,go-github-com-godbus-dbus-v5-5.0.4) + ("go-github-com-docker-go-units-0.4.0" + ,go-github-com-docker-go-units-0.4.0) + ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" + ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) + ("go-github-com-coreos-go-systemd-v22-22.3.2" + ,go-github-com-coreos-go-systemd-v22-22.3.2) + ("go-github-com-cilium-ebpf-0.4.0" ,go-github-com-cilium-ebpf-0.4.0))) + (home-page "https://github.com/containerd/cgroups") + (synopsis "cgroups") + (description + "Go package for creating, managing, inspecting, and destroying cgroups. The +resources format for settings on the cgroup uses the OCI runtime-spec found +@url{https://github.com/opencontainers/runtime-spec,here}.") + (license license:asl2.0))) +(define-public go-github-com-containerd-containerd-1.6.0 + (package + (name "go-github-com-containerd-containerd") + (version "1.6.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/containerd") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1wqmb124l8hjh7a053xjgh1kwblczg6q99l4vh6pi5zmnmdn67iv")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/containerd")) + (propagated-inputs + `(("go-google-golang-org-genproto-0.0.0-20200224152610-e50cd9704f63" + ,go-google-golang-org-genproto-0.0.0-20200224152610-e50cd9704f63) + ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) + ("go-github-com-gogo-googleapis-1.3.2" + ,go-github-com-gogo-googleapis-1.3.2) + ("go-k8s-io-utils-0.0.0-20210930125809-cb0fa318a74b" + ,go-k8s-io-utils-0.0.0-20210930125809-cb0fa318a74b) + ("go-k8s-io-klog-v2-2.30.0" ,go-k8s-io-klog-v2-2.30.0) + ("go-k8s-io-cri-api-0.23.1" ,go-k8s-io-cri-api-0.23.1) + ("go-k8s-io-component-base-0.22.5" ,go-k8s-io-component-base-0.22.5) + ("go-k8s-io-client-go-0.22.5" ,go-k8s-io-client-go-0.22.5) + ("go-k8s-io-apiserver-0.22.5" ,go-k8s-io-apiserver-0.22.5) + ("go-k8s-io-apimachinery-0.22.5" ,go-k8s-io-apimachinery-0.22.5) + ("go-k8s-io-api-0.22.5" ,go-k8s-io-api-0.22.5) + ("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) + ("go-google-golang-org-protobuf-1.27.1" + ,go-google-golang-org-protobuf-1.27.1) + ("go-google-golang-org-grpc-1.43.0" ,go-google-golang-org-grpc-1.43.0) + ("go-golang-org-x-term-0.0.0-20210615171337-6886f2dfbf5b" + ,go-golang-org-x-term-0.0.0-20210615171337-6886f2dfbf5b) + ("go-golang-org-x-sys-0.0.0-20211216021012-1d35b9e2eb4e" + ,go-golang-org-x-sys-0.0.0-20211216021012-1d35b9e2eb4e) + ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" + ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) + ("go-golang-org-x-oauth2-0.0.0-20210819190943-2bc19b11175f" + ,go-golang-org-x-oauth2-0.0.0-20210819190943-2bc19b11175f) + ("go-golang-org-x-net-0.0.0-20211216030914-fe4d6282115f" + ,go-golang-org-x-net-0.0.0-20211216030914-fe4d6282115f) + ("go-golang-org-x-crypto-0.0.0-20210817164053-32db794688a5" + ,go-golang-org-x-crypto-0.0.0-20210817164053-32db794688a5) + ("go-go-opentelemetry-io-otel-trace-1.3.0" + ,go-go-opentelemetry-io-otel-trace-1.3.0) + ("go-go-opentelemetry-io-otel-sdk-1.3.0" + ,go-go-opentelemetry-io-otel-sdk-1.3.0) + ("go-go-opentelemetry-io-otel-exporters-otlp-otlptrace-otlptracehttp-1.3.0" + ,go-go-opentelemetry-io-otel-exporters-otlp-otlptrace-otlptracehttp-1.3.0) + ("go-go-opentelemetry-io-otel-exporters-otlp-otlptrace-otlptracegrpc-1.3.0" + ,go-go-opentelemetry-io-otel-exporters-otlp-otlptrace-otlptracegrpc-1.3.0) + ("go-go-opentelemetry-io-otel-exporters-otlp-otlptrace-1.3.0" + ,go-go-opentelemetry-io-otel-exporters-otlp-otlptrace-1.3.0) + ("go-go-opentelemetry-io-otel-1.3.0" + ,go-go-opentelemetry-io-otel-1.3.0) + ("go-go-opentelemetry-io-contrib-instrumentation-google-golang-org-grpc-otelgrpc-0.28.0" + ,go-go-opentelemetry-io-contrib-instrumentation-google-golang-org-grpc-otelgrpc-0.28.0) + ("go-go-etcd-io-bbolt-1.3.6" ,go-go-etcd-io-bbolt-1.3.6) + ("go-github-com-vishvananda-netlink-1.1.1-0.20210330154013-f5de75959ad5" + ,go-github-com-vishvananda-netlink-1.1.1-0.20210330154013-f5de75959ad5) + ("go-github-com-tchap-go-patricia-2.2.6+incompatible" + ,go-github-com-tchap-go-patricia-2.2.6+incompatible) + ("go-github-com-stretchr-testify-1.7.0" + ,go-github-com-stretchr-testify-1.7.0) + ("go-github-com-sirupsen-logrus-1.8.1" + ,go-github-com-sirupsen-logrus-1.8.1) + ("go-github-com-satori-go-uuid-1.2.0" + ,go-github-com-satori-go-uuid-1.2.0) + ("go-github-com-prometheus-client-golang-1.11.0" + ,go-github-com-prometheus-client-golang-1.11.0) + ("go-github-com-pelletier-go-toml-1.9.3" + ,go-github-com-pelletier-go-toml-1.9.3) + ("go-github-com-opencontainers-selinux-1.10.0" + ,go-github-com-opencontainers-selinux-1.10.0) + ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417" + ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417) + ("go-github-com-opencontainers-runc-1.1.0" + ,go-github-com-opencontainers-runc-1.1.0) + ("go-github-com-opencontainers-image-spec-1.0.2-0.20211117181255-693428a734f5" + ,go-github-com-opencontainers-image-spec-1.0.2-0.20211117181255-693428a734f5) + ("go-github-com-opencontainers-go-digest-1.0.0" + ,go-github-com-opencontainers-go-digest-1.0.0) + ("go-github-com-moby-sys-symlink-0.2.0" + ,go-github-com-moby-sys-symlink-0.2.0) + ("go-github-com-moby-sys-signal-0.6.0" + ,go-github-com-moby-sys-signal-0.6.0) + ("go-github-com-moby-sys-mountinfo-0.5.0" + ,go-github-com-moby-sys-mountinfo-0.5.0) + ("go-github-com-moby-locker-1.0.1" ,go-github-com-moby-locker-1.0.1) + ("go-github-com-klauspost-compress-1.11.13" + ,go-github-com-klauspost-compress-1.11.13) + ("go-github-com-json-iterator-go-1.1.12" + ,go-github-com-json-iterator-go-1.1.12) + ("go-github-com-intel-goresctrl-0.2.0" + ,go-github-com-intel-goresctrl-0.2.0) + ("go-github-com-imdario-mergo-0.3.12" + ,go-github-com-imdario-mergo-0.3.12) + ("go-github-com-hashicorp-go-multierror-1.1.1" + ,go-github-com-hashicorp-go-multierror-1.1.1) + ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" + ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) + ("go-github-com-grpc-ecosystem-go-grpc-middleware-1.3.0" + ,go-github-com-grpc-ecosystem-go-grpc-middleware-1.3.0) + ("go-github-com-google-uuid-1.2.0" ,go-github-com-google-uuid-1.2.0) + ("go-github-com-google-go-cmp-0.5.6" + ,go-github-com-google-go-cmp-0.5.6) + ("go-github-com-gogo-protobuf-1.3.2" + ,go-github-com-gogo-protobuf-1.3.2) + ("go-github-com-go-logr-stdr-1.2.2" ,go-github-com-go-logr-stdr-1.2.2) + ("go-github-com-fsnotify-fsnotify-1.4.9" + ,go-github-com-fsnotify-fsnotify-1.4.9) + ("go-github-com-emicklei-go-restful-2.9.5+incompatible" + ,go-github-com-emicklei-go-restful-2.9.5+incompatible) + ("go-github-com-docker-go-units-0.4.0" + ,go-github-com-docker-go-units-0.4.0) + ("go-github-com-docker-go-metrics-0.0.1" + ,go-github-com-docker-go-metrics-0.0.1) + ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" + ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1) + ("go-github-com-coreos-go-systemd-v22-22.3.2" + ,go-github-com-coreos-go-systemd-v22-22.3.2) + ("go-github-com-containernetworking-plugins-1.0.1" + ,go-github-com-containernetworking-plugins-1.0.1) + ("go-github-com-containerd-zfs-1.0.0" + ,go-github-com-containerd-zfs-1.0.0) + ("go-github-com-containerd-typeurl-1.0.2" + ,go-github-com-containerd-typeurl-1.0.2) + ("go-github-com-containerd-ttrpc-1.1.0" + ,go-github-com-containerd-ttrpc-1.1.0) + ("go-github-com-containerd-nri-0.1.0" + ,go-github-com-containerd-nri-0.1.0) + ("go-github-com-containerd-imgcrypt-1.1.3" + ,go-github-com-containerd-imgcrypt-1.1.3) + ("go-github-com-containerd-go-runc-1.0.0" + ,go-github-com-containerd-go-runc-1.0.0) + ("go-github-com-containerd-go-cni-1.1.3" + ,go-github-com-containerd-go-cni-1.1.3) + ("go-github-com-containerd-fifo-1.0.0" + ,go-github-com-containerd-fifo-1.0.0) + ("go-github-com-containerd-continuity-0.2.2" + ,go-github-com-containerd-continuity-0.2.2) + ("go-github-com-containerd-console-1.0.3" + ,go-github-com-containerd-console-1.0.3) + ("go-github-com-containerd-cgroups-1.0.3" + ,go-github-com-containerd-cgroups-1.0.3) + ("go-github-com-containerd-btrfs-1.0.0" + ,go-github-com-containerd-btrfs-1.0.0) + ("go-github-com-containerd-aufs-1.0.0" + ,go-github-com-containerd-aufs-1.0.0) + ("go-github-com-microsoft-hcsshim-0.9.2" + ,go-github-com-microsoft-hcsshim-0.9.2) + ("go-github-com-microsoft-go-winio-0.5.1" + ,go-github-com-microsoft-go-winio-0.5.1) + ("go-github-com-adalogics-go-fuzz-headers-0.0.0-20210715213245-6c3934b029d8" + ,go-github-com-adalogics-go-fuzz-headers-0.0.0-20210715213245-6c3934b029d8) + ("go-cloud-google-com-go-0.81.0" ,go-cloud-google-com-go-0.81.0))) + (home-page "https://github.com/containerd/containerd") + (synopsis "Now Recruiting") + (description + "containerd is an industry-standard container runtime with an emphasis on +simplicity, robustness and portability. It is available as a daemon for Linux +and Windows, which can manage the complete container lifecycle of its host +system: image transfer and storage, container execution and supervision, +low-level storage and network attachments, etc.") + (license license:asl2.0))) +(define-public go-github-com-containernetworking-cni-1.0.1 + (package + (name "go-github-com-containernetworking-cni") + (version "1.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containernetworking/cni") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0jzijcb96z26lchh6j4js3rl7c148mwlaiz3s6ww47kljnxmv05f")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containernetworking/cni")) + (propagated-inputs + `(("go-github-com-onsi-gomega-1.10.1" ,go-github-com-onsi-gomega-1.10.1) + ("go-github-com-onsi-ginkgo-1.13.0" + ,go-github-com-onsi-ginkgo-1.13.0))) + (home-page "https://github.com/containernetworking/cni") + (synopsis "CNI - the Container Network Interface") + (description + "CNI (), a @url{https://cncf.io,Cloud Native Computing Foundation} project, +consists of a specification and libraries for writing plugins to configure +network interfaces in Linux containers, along with a number of supported +plugins. CNI concerns itself only with network connectivity of containers and +removing allocated resources when the container is deleted. Because of this +focus, CNI has a wide range of support and the specification is simple to +implement.") + (license license:asl2.0))) +(define-public go-github-com-containernetworking-plugins-1.1.0 + (package + (name "go-github-com-containernetworking-plugins") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containernetworking/plugins") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "10c9sxi5nq88772ql35a3vy5m1wrdyji4imc4ysl27malcqxhiik")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containernetworking/plugins")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) + ("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" + ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) + ("go-golang-org-x-text-0.3.6" ,go-golang-org-x-text-0.3.6) + ("go-golang-org-x-net-0.0.0-20210428140749-89ef3d95e781" + ,go-golang-org-x-net-0.0.0-20210428140749-89ef3d95e781) + ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) + ("go-github-com-vishvananda-netns-0.0.0-20210104183010-2eb08e3e575f" + ,go-github-com-vishvananda-netns-0.0.0-20210104183010-2eb08e3e575f) + ("go-github-com-sirupsen-logrus-1.8.1" + ,go-github-com-sirupsen-logrus-1.8.1) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-nxadm-tail-1.4.8" ,go-github-com-nxadm-tail-1.4.8) + ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" + ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) + ("go-github-com-gogo-protobuf-1.3.2" + ,go-github-com-gogo-protobuf-1.3.2) + ("go-github-com-fsnotify-fsnotify-1.4.9" + ,go-github-com-fsnotify-fsnotify-1.4.9) + ("go-github-com-containerd-cgroups-1.0.1" + ,go-github-com-containerd-cgroups-1.0.1) + ("go-github-com-microsoft-go-winio-0.4.17" + ,go-github-com-microsoft-go-winio-0.4.17) + ("go-golang-org-x-sys-0.0.0-20210809222454-d867a43fc93e" + ,go-golang-org-x-sys-0.0.0-20210809222454-d867a43fc93e) + ("go-github-com-vishvananda-netlink-1.1.1-0.20210330154013-f5de75959ad5" + ,go-github-com-vishvananda-netlink-1.1.1-0.20210330154013-f5de75959ad5) + ("go-github-com-safchain-ethtool-0.0.0-20210803160452-9aa261dae9b1" + ,go-github-com-safchain-ethtool-0.0.0-20210803160452-9aa261dae9b1) + ("go-github-com-onsi-gomega-1.15.0" ,go-github-com-onsi-gomega-1.15.0) + ("go-github-com-onsi-ginkgo-1.16.4" ,go-github-com-onsi-ginkgo-1.16.4) + ("go-github-com-networkplumbing-go-nft-0.2.0" + ,go-github-com-networkplumbing-go-nft-0.2.0) + ("go-github-com-mattn-go-shellwords-1.0.12" + ,go-github-com-mattn-go-shellwords-1.0.12) + ("go-github-com-godbus-dbus-v5-5.0.4" + ,go-github-com-godbus-dbus-v5-5.0.4) + ("go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5" + ,go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5) + ("go-github-com-d2g-dhcp4client-1.0.0" + ,go-github-com-d2g-dhcp4client-1.0.0) + ("go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c" + ,go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c) + ("go-github-com-coreos-go-systemd-v22-22.3.2" + ,go-github-com-coreos-go-systemd-v22-22.3.2) + ("go-github-com-coreos-go-iptables-0.6.0" + ,go-github-com-coreos-go-iptables-0.6.0) + ("go-github-com-containernetworking-cni-1.0.1" + ,go-github-com-containernetworking-cni-1.0.1) + ("go-github-com-buger-jsonparser-1.1.1" + ,go-github-com-buger-jsonparser-1.1.1) + ("go-github-com-alexflint-go-filemutex-1.1.0" + ,go-github-com-alexflint-go-filemutex-1.1.0) + ("go-github-com-microsoft-hcsshim-0.8.20" + ,go-github-com-microsoft-hcsshim-0.8.20))) + (home-page "https://github.com/containernetworking/plugins") + (synopsis "Plugins") + (description + "Some CNI network plugins, maintained by the containernetworking team. For more +information, see the @url{https://www.cni.dev,CNI website}.") + (license license:asl2.0))) +(define-public go-github-com-containers-image-v5-5.19.1 + (package + (name "go-github-com-containers-image-v5") + (version "5.19.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containers/image") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wyq3ns6yrzi9bff2kb8p3rppw652m4ffq8374sdjkn7f39z4inf")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containers/image/v5")) + (propagated-inputs + `(("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" + ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) + ("go-golang-org-x-sys-0.0.0-20220114195835-da31bd327af9" + ,go-golang-org-x-sys-0.0.0-20220114195835-da31bd327af9) + ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" + ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) + ("go-golang-org-x-net-0.0.0-20211112202133-69e39bad7dc2" + ,go-golang-org-x-net-0.0.0-20211112202133-69e39bad7dc2) + ("go-golang-org-x-crypto-0.0.0-20211215153901-e495a2d5b3d3" + ,go-golang-org-x-crypto-0.0.0-20211215153901-e495a2d5b3d3) + ("go-go-etcd-io-bbolt-1.3.6" ,go-go-etcd-io-bbolt-1.3.6) + ("go-github-com-xeipuuv-gojsonschema-1.2.0" + ,go-github-com-xeipuuv-gojsonschema-1.2.0) + ("go-github-com-xeipuuv-gojsonpointer-0.0.0-20190809123943-df4f5c81cb3b" + ,go-github-com-xeipuuv-gojsonpointer-0.0.0-20190809123943-df4f5c81cb3b) + ("go-github-com-vbauerster-mpb-v7-7.3.2" + ,go-github-com-vbauerster-mpb-v7-7.3.2) + ("go-github-com-vbatts-tar-split-0.11.2" + ,go-github-com-vbatts-tar-split-0.11.2) + ("go-github-com-ulikunitz-xz-0.5.10" + ,go-github-com-ulikunitz-xz-0.5.10) + ("go-github-com-sylabs-sif-v2-2.3.1" + ,go-github-com-sylabs-sif-v2-2.3.1) + ("go-github-com-stretchr-testify-1.7.0" + ,go-github-com-stretchr-testify-1.7.0) + ("go-github-com-sirupsen-logrus-1.8.1" + ,go-github-com-sirupsen-logrus-1.8.1) + ("go-github-com-proglottis-gpgme-0.1.1" + ,go-github-com-proglottis-gpgme-0.1.1) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-ostreedev-ostree-go-0.0.0-20190702140239-759a8c1ac913" + ,go-github-com-ostreedev-ostree-go-0.0.0-20190702140239-759a8c1ac913) + ("go-github-com-opencontainers-selinux-1.10.0" + ,go-github-com-opencontainers-selinux-1.10.0) + ("go-github-com-opencontainers-image-spec-1.0.3-0.20211202193544-a5463b7f9c84" + ,go-github-com-opencontainers-image-spec-1.0.3-0.20211202193544-a5463b7f9c84) + ("go-github-com-opencontainers-go-digest-1.0.0" + ,go-github-com-opencontainers-go-digest-1.0.0) + ("go-github-com-manifoldco-promptui-0.9.0" + ,go-github-com-manifoldco-promptui-0.9.0) + ("go-github-com-klauspost-pgzip-1.2.5" + ,go-github-com-klauspost-pgzip-1.2.5) + ("go-github-com-klauspost-compress-1.14.2" + ,go-github-com-klauspost-compress-1.14.2) + ("go-github-com-imdario-mergo-0.3.12" + ,go-github-com-imdario-mergo-0.3.12) + ("go-github-com-hashicorp-go-multierror-1.1.1" + ,go-github-com-hashicorp-go-multierror-1.1.1) + ("go-github-com-gorilla-mux-1.7.4" ,go-github-com-gorilla-mux-1.7.4) + ("go-github-com-ghodss-yaml-1.0.0" ,go-github-com-ghodss-yaml-1.0.0) + ("go-github-com-docker-libtrust-0.0.0-20160708172513-aabc10ec26b7" + ,go-github-com-docker-libtrust-0.0.0-20160708172513-aabc10ec26b7) + ("go-github-com-docker-go-connections-0.4.0" + ,go-github-com-docker-go-connections-0.4.0) + ("go-github-com-docker-docker-credential-helpers-0.6.4" + ,go-github-com-docker-docker-credential-helpers-0.6.4) + ("go-github-com-docker-docker-20.10.12+incompatible" + ,go-github-com-docker-docker-20.10.12+incompatible) + ("go-github-com-docker-distribution-2.7.1+incompatible" + ,go-github-com-docker-distribution-2.7.1+incompatible) + ("go-github-com-containers-storage-1.38.2" + ,go-github-com-containers-storage-1.38.2) + ("go-github-com-containers-ocicrypt-1.1.2" + ,go-github-com-containers-ocicrypt-1.1.2) + ("go-github-com-containers-libtrust-0.0.0-20190913040956-14b96171aa3b" + ,go-github-com-containers-libtrust-0.0.0-20190913040956-14b96171aa3b) + ("go-github-com-containerd-containerd-1.5.9" + ,go-github-com-containerd-containerd-1.5.9) + ("go-github-com-burntsushi-toml-1.0.0" + ,go-github-com-burntsushi-toml-1.0.0) + ("go-github-com-14rcole-gopopulate-0.0.0-20180821133914-b175b219e774" + ,go-github-com-14rcole-gopopulate-0.0.0-20180821133914-b175b219e774))) + (home-page "https://github.com/containers/image") + (synopsis "") + (description + "The package image provides libraries and commands to interact with container +images.") + (license license:asl2.0))) +(define-public go-github-com-creack-pty-1.1.17 + (package + (name "go-github-com-creack-pty") + (version "1.1.17") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/creack/pty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "09lcq5bw1dwppxjia05sj4fy7gbk62vishfz1bgrbd1r06i57mjf")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/creack/pty")) + (home-page "https://github.com/creack/pty") + (synopsis "pty") + (description + "Package pty provides functions for working with Unix terminals.") + (license license:expat))) +(define-public go-github-com-cyphar-filepath-securejoin-0.2.3 + (package + (name "go-github-com-cyphar-filepath-securejoin") + (version "0.2.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cyphar/filepath-securejoin") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0w03d8hslwfhcnfqck21agzs7y0sc6gpwfz53md8fv26ishwxppy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/cyphar/filepath-securejoin")) + (home-page "https://github.com/cyphar/filepath-securejoin") + (synopsis #f) + (description + "Package securejoin is an implementation of the hopefully-soon-to-be-included +SecureJoin helper that is meant to be part of the \"path/filepath\" package. The +purpose of this project is to provide a PoC implementation to make the +SecureJoin proposal +(@url{https://github.com/golang/go/issues/20126,https://github.com/golang/go/issues/20126}) +more tangible.") + (license license:bsd-3))) +(define-public go-github-com-docker-docker-20.10.12+incompatible + (package + (name "go-github-com-docker-docker") + (version "20.10.12+incompatible") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/moby/moby") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "17j820ij8p6w61jyg5g6y5dwv56dh1w178f6ia2i2dc9b8mz6b5a")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/docker/docker")) + (home-page "https://github.com/docker/docker") + (synopsis "The Moby Project") + (description + "Moby is an open-source project created by Docker to enable and accelerate +software containerization.") + (license license:asl2.0))) +(define-public go-github-com-fatih-color-1.13.0 + (package + (name "go-github-com-fatih-color") + (version "1.13.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/fatih/color") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "029qkxsdpblhrpgbv4fcmqwkqnjhx08hwiqp19pd7zz6l8a373ay")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/fatih/color")) + (propagated-inputs + `(("go-github-com-mattn-go-isatty-0.0.14" + ,go-github-com-mattn-go-isatty-0.0.14) + ("go-github-com-mattn-go-colorable-0.1.9" + ,go-github-com-mattn-go-colorable-0.1.9))) + (home-page "https://github.com/fatih/color") + (synopsis "color") + (description + "Package color is an ANSI color package to output colorized or SGR defined output +to the standard output. The API can be used in several way, pick one that suits +you.") + (license license:expat))) +(define-public go-github-com-go-log-log-0.2.0 + (package + (name "go-github-com-go-log-log") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/go-log/log") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1idnqv4yvkmdh3wcsgvhcpak9z6ix8dsifdjq5kfbbnskdq5rmvg")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/go-log/log")) + (home-page "https://github.com/go-log/log") + (synopsis "Log") + (description "Package log provides a log interface") + (license license:expat))) +(define-public go-github-com-google-uuid-1.3.0 + (package + (name "go-github-com-google-uuid") + (version "1.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/uuid") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0imkw52m7fzrwsdj2rfrk3zbplqfbwncyv6hv89xw0vdw3jpk122")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/uuid")) + (home-page "https://github.com/google/uuid") + (synopsis "uuid") + (description "Package uuid generates and inspects UUIDs.") + (license license:bsd-3))) +(define-public go-github-com-opencontainers-go-digest-1.0.0 + (package + (name "go-github-com-opencontainers-go-digest") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/go-digest") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0i5acjajvr6hi9zb7gxwifd8w28y884cv7cx36adj8lngj647xbi")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/go-digest")) + (home-page "https://github.com/opencontainers/go-digest") + (synopsis "go-digest") + (description + "Package digest provides a generalized type to opaquely represent message digests +and their operations within the registry. The Digest type is designed to serve +as a flexible identifier in a content-addressable system. More importantly, it +provides tools and wrappers to work with hash.Hash-based digests with little +effort.") + (license (list license:asl2.0 license:cc-by-sa4.0)))) +(define-public go-github-com-opencontainers-image-spec-1.0.3-0.20211202193544-a5463b7f9c84 + (package + (name "go-github-com-opencontainers-image-spec") + (version "1.0.3-0.20211202193544-a5463b7f9c84") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/image-spec") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "11js6467d7fhcvad4aw26d4p0r5b33vf41qhcf1bdwx0y7smd7s4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/image-spec")) + (propagated-inputs + `(("go-github-com-xeipuuv-gojsonschema-1.2.0" + ,go-github-com-xeipuuv-gojsonschema-1.2.0) + ("go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415" + ,go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415) + ("go-github-com-russross-blackfriday-1.6.0" + ,go-github-com-russross-blackfriday-1.6.0) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-go-digest-1.0.0" + ,go-github-com-opencontainers-go-digest-1.0.0))) + (home-page "https://github.com/opencontainers/image-spec") + (synopsis "OCI Image Format Specification") + (description + "The OCI Image Format project creates and maintains the software shipping +container image format spec (OCI Image Format).") + (license license:asl2.0))) +(define-public go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417 + (package + (name "go-github-com-opencontainers-runtime-spec") + (version "1.0.3-0.20210326190908-1c3f411f0417") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/runtime-spec") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1azk8z41ga8af35c966f06vrq9y9hwz6mkm59r3py5qaamzim3qq")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) + (home-page "https://github.com/opencontainers/runtime-spec") + (synopsis "Open Container Initiative Runtime Specification") + (description + "The @url{https://www.opencontainers.org,Open Container Initiative} develops +specifications for standards on Operating System process and application +containers.") + (license license:asl2.0))) +(define-public go-github-com-opencontainers-runtime-tools-0.9.1-0.20210326182921-59cdde06764b + (package + (name "go-github-com-opencontainers-runtime-tools") + (version "0.9.1-0.20210326182921-59cdde06764b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/runtime-tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0f4zy6x1rrrg10bphwijic30m3r4mq934zbavnci6jyi41l1w2r0")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/runtime-tools")) + (home-page "https://github.com/opencontainers/runtime-tools") + (synopsis "oci-runtime-tool") + (description + "oci-runtime-tool is a collection of tools for working with the +@url{https://github.com/opencontainers/runtime-spec,OCI runtime specification}. +To build from source code, runtime-tools requires Go 1.10.x or above.") + (license license:asl2.0))) +(define-public go-github-com-opencontainers-selinux-1.10.0 + (package + (name "go-github-com-opencontainers-selinux") + (version "1.10.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/selinux") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "118q1d9py9zhym4jmyiivasmllkdnkp1zyx4brc6n2cfmxfph6gc")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/selinux")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777" + ,go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777))) + (home-page "https://github.com/opencontainers/selinux") + (synopsis "selinux") + (description "Common SELinux package used across the container ecosystem.") + (license license:asl2.0))) +(define-public go-github-com-opencontainers-umoci-0.4.7 + (package + (name "go-github-com-opencontainers-umoci") + (version "0.4.7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/umoci") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0in8kyi4jprvbm3zsl3risbjj8b0ma62yl3rq8rcvcgypx0mn7d4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/umoci")) + (propagated-inputs + `(("go-gopkg-in-yaml-v3-3.0.0-20200615113413-eeeca48fe776" + ,go-gopkg-in-yaml-v3-3.0.0-20200615113413-eeeca48fe776) + ("go-gopkg-in-check-v1-1.0.0-20200227125254-8fa46927fb4f" + ,go-gopkg-in-check-v1-1.0.0-20200227125254-8fa46927fb4f) + ("go-google-golang-org-protobuf-1.24.0" + ,go-google-golang-org-protobuf-1.24.0) + ("go-golang-org-x-sys-0.0.0-20200622214017-ed371f2e16b4" + ,go-golang-org-x-sys-0.0.0-20200622214017-ed371f2e16b4) + ("go-golang-org-x-crypto-0.0.0-20200604202706-70a84ac30bf9" + ,go-golang-org-x-crypto-0.0.0-20200604202706-70a84ac30bf9) + ("go-github-com-vbatts-go-mtree-0.5.0" + ,go-github-com-vbatts-go-mtree-0.5.0) + ("go-github-com-urfave-cli-1.22.4" ,go-github-com-urfave-cli-1.22.4) + ("go-github-com-tj-assert-0.0.3" ,go-github-com-tj-assert-0.0.3) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-sirupsen-logrus-1.6.0" + ,go-github-com-sirupsen-logrus-1.6.0) + ("go-github-com-rootless-containers-proto-0.1.0" + ,go-github-com-rootless-containers-proto-0.1.0) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-runtime-spec-1.0.2" + ,go-github-com-opencontainers-runtime-spec-1.0.2) + ("go-github-com-opencontainers-runc-1.0.0-rc90" + ,go-github-com-opencontainers-runc-1.0.0-rc90) + ("go-github-com-opencontainers-image-spec-1.0.1" + ,go-github-com-opencontainers-image-spec-1.0.1) + ("go-github-com-opencontainers-go-digest-1.0.0" + ,go-github-com-opencontainers-go-digest-1.0.0) + ("go-github-com-niemeyer-pretty-0.0.0-20200227124842-a10e7caefd8e" + ,go-github-com-niemeyer-pretty-0.0.0-20200227124842-a10e7caefd8e) + ("go-github-com-mohae-deepcopy-0.0.0-20170929034955-c48cc78d4826" + ,go-github-com-mohae-deepcopy-0.0.0-20170929034955-c48cc78d4826) + ("go-github-com-mattn-go-colorable-0.1.6" + ,go-github-com-mattn-go-colorable-0.1.6) + ("go-github-com-kr-text-0.2.0" ,go-github-com-kr-text-0.2.0) + ("go-github-com-klauspost-pgzip-1.2.4" + ,go-github-com-klauspost-pgzip-1.2.4) + ("go-github-com-klauspost-compress-1.11.3" + ,go-github-com-klauspost-compress-1.11.3) + ("go-github-com-google-go-cmp-0.5.0" + ,go-github-com-google-go-cmp-0.5.0) + ("go-github-com-golang-protobuf-1.4.2" + ,go-github-com-golang-protobuf-1.4.2) + ("go-github-com-docker-go-units-0.4.0" + ,go-github-com-docker-go-units-0.4.0) + ("go-github-com-cyphar-filepath-securejoin-0.2.2" + ,go-github-com-cyphar-filepath-securejoin-0.2.2) + ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" + ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) + ("go-github-com-apex-log-1.4.0" ,go-github-com-apex-log-1.4.0) + ("go-github-com-adamkorcz-go-fuzz-headers-0.0.0-20210312213058-32f4d319f0d2" + ,go-github-com-adamkorcz-go-fuzz-headers-0.0.0-20210312213058-32f4d319f0d2))) + (home-page "https://github.com/opencontainers/umoci") + (synopsis "Install") + (description + "@strong{u}moci @strong{m}odifies @strong{O}pen @strong{C}ontainer +@strong{i}mages.") + (license license:asl2.0))) +(define-public go-github-com-pelletier-go-toml-1.9.4 + (package + (name "go-github-com-pelletier-go-toml") + (version "1.9.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pelletier/go-toml") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0f2d9m19dadl18i2baf57xygvn9vprm6wb8chvpx8kipx94nchyl")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pelletier/go-toml")) + (home-page "https://github.com/pelletier/go-toml") + (synopsis "go-toml") + (description "Package toml is a TOML parser and manipulation library.") + (license license:expat))) +(define-public go-github-com-pkg-errors-0.9.1 + (package + (name "go-github-com-pkg-errors") + (version "0.9.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pkg/errors") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1761pybhc2kqr6v5fm8faj08x9bql8427yqg6vnfv6nhrasx1mwq")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pkg/errors")) + (home-page "https://github.com/pkg/errors") + (synopsis "errors") + (description "Package errors provides simple error handling primitives.") + (license license:bsd-2))) +(define-public go-github-com-seccomp-containers-golang-0.6.0 + (package + (name "go-github-com-seccomp-containers-golang") + (version "0.6.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/seccomp/containers-golang") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0clrwdnmr131a65h66br57bsnr17i1s3kq9cc7ljrdaym57y6cfz")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/seccomp/containers-golang")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20200720211630-cb9d2d5c5666" + ,go-golang-org-x-sys-0.0.0-20200720211630-cb9d2d5c5666) + ("go-github-com-xeipuuv-gojsonschema-1.2.0" + ,go-github-com-xeipuuv-gojsonschema-1.2.0) + ("go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2" + ,go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2) + ("go-github-com-sirupsen-logrus-1.6.0" + ,go-github-com-sirupsen-logrus-1.6.0) + ("go-github-com-seccomp-libseccomp-golang-0.9.1" + ,go-github-com-seccomp-libseccomp-golang-0.9.1) + ("go-github-com-opencontainers-selinux-1.6.0" + ,go-github-com-opencontainers-selinux-1.6.0) + ("go-github-com-opencontainers-runtime-tools-0.9.0" + ,go-github-com-opencontainers-runtime-tools-0.9.0) + ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200710190001-3e4195d92445" + ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200710190001-3e4195d92445) + ("go-github-com-hashicorp-go-multierror-1.1.0" + ,go-github-com-hashicorp-go-multierror-1.1.0) + ("go-github-com-blang-semver-3.5.1+incompatible" + ,go-github-com-blang-semver-3.5.1+incompatible))) + (home-page "https://github.com/seccomp/containers-golang") + (synopsis "containers-golang") + (description + "@code{containers-golang} is a set of Go libraries used by container runtimes to +generate and load seccomp mappings into the kernel.") + (license license:asl2.0))) +(define-public go-github-com-seccomp-libseccomp-golang-0.9.2-0.20210429002308-3879420cc921 + (package + (name "go-github-com-seccomp-libseccomp-golang") + (version "0.9.2-0.20210429002308-3879420cc921") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/seccomp/libseccomp-golang") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ypr3j50cd9lnj9szfyh45kh0cf7swm7cv2svz1575mldd9m1xr9")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/seccomp/libseccomp-golang")) + (home-page "https://github.com/seccomp/libseccomp-golang") + (synopsis #f) + (description + "Package seccomp provides bindings for libseccomp, a library wrapping the Linux +seccomp syscall. Seccomp enables an application to restrict system call use for +itself and its children.") + (license license:bsd-2))) +(define-public go-github-com-spf13-cobra-1.3.0 + (package + (name "go-github-com-spf13-cobra") + (version "1.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/spf13/cobra") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0j3kj6yxrl2aigixapjl6bi2gmghrj52763wbd7jc079f38wz94n")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/spf13/cobra")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) + ("go-github-com-spf13-viper-1.10.0" ,go-github-com-spf13-viper-1.10.0) + ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) + ("go-github-com-inconshreveable-mousetrap-1.0.0" + ,go-github-com-inconshreveable-mousetrap-1.0.0) + ("go-github-com-cpuguy83-go-md2man-v2-2.0.1" + ,go-github-com-cpuguy83-go-md2man-v2-2.0.1))) + (home-page "https://github.com/spf13/cobra") + (synopsis "Overview") + (description + "Package cobra is a commander providing a simple interface to create powerful +modern CLI interfaces. In addition to providing an interface, Cobra +simultaneously provides a controller to organize your application code.") + (license license:asl2.0))) +(define-public go-github-com-spf13-pflag-1.0.5 + (package + (name "go-github-com-spf13-pflag") + (version "1.0.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/spf13/pflag") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0gpmacngd0gpslnbkzi263f5ishigzgh6pbdv9hp092rnjl4nd31")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/spf13/pflag")) + (home-page "https://github.com/spf13/pflag") + (synopsis "Description") + (description + "Package pflag is a drop-in replacement for Go's flag package, implementing +POSIX/GNU-style --flags.") + (license license:bsd-3))) +(define-public go-github-com-sylabs-json-resp-0.8.0 + (package + (name "go-github-com-sylabs-json-resp") + (version "0.8.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sylabs/json-resp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ygr4mavaj1pp78hkkphhn3ydd923n3klwnx8x7v4ajqzx4cx4id")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/sylabs/json-resp")) + (home-page "https://github.com/sylabs/json-resp") + (synopsis "JSON Response") + (description + "The @code{json-resp} package contains a small set of functions that are used to +marshall and unmarshall response data and errors in JSON format.") + (license license:bsd-3))) +(define-public go-github-com-vbauerster-mpb-v7-7.4.1 + (package + (name "go-github-com-vbauerster-mpb-v7") + (version "7.4.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/vbauerster/mpb") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ii1r84qjfp2spvj6nb8xy5b3nsfw17jmwgp55zkaz9n9lfj75w2")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/vbauerster/mpb/v7")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20220209214540-3681064d5158" + ,go-golang-org-x-sys-0.0.0-20220209214540-3681064d5158) + ("go-github-com-mattn-go-runewidth-0.0.13" + ,go-github-com-mattn-go-runewidth-0.0.13) + ("go-github-com-acarl005-stripansi-0.0.0-20180116102854-5a71ef0e047d" + ,go-github-com-acarl005-stripansi-0.0.0-20180116102854-5a71ef0e047d) + ("go-github-com-vividcortex-ewma-1.2.0" + ,go-github-com-vividcortex-ewma-1.2.0))) + (home-page "https://github.com/vbauerster/mpb") + (synopsis "Multi Progress Bar") + (description + "Package mpb is a library for rendering progress bars in terminal applications.") + (license license:unlicense))) +(define-public go-golang-org-x-sys-0.0.0-20220209214540-3681064d5158 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20220209214540-3681064d5158") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0cw9rzb4rxmr2si28pjqx3wv5r119c83kd08yy1h7nf725bzrs89")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) +(define-public go-golang-org-x-term-0.0.0-20210916214954-140adaaadfaf + (package + (name "go-golang-org-x-term") + (version "0.0.0-20210916214954-140adaaadfaf") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/term") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1rcdx2q92pzpmdyzdlzpq9flc3ibfi3m1rni7w4qlmlq569s6wh3")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/term")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1" + ,go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1))) + (home-page "https://golang.org/x/term") + (synopsis "Go terminal/console support") + (description + "Package term provides support functions for dealing with terminals, as commonly +found on UNIX systems.") + (license license:bsd-3))) +(define-public go-gopkg-in-yaml-v2-2.4.0 + (package + (name "go-gopkg-in-yaml-v2") + (version "2.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1pbmrpj7gcws34g8vwna4i2nhm9p6235piww36436xhyaa10cldr")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v2") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language.") + (license license:asl2.0))) +(define-public go-gotest-tools-v3-3.1.0 + (package + (name "go-gotest-tools-v3") + (version "3.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gotestyourself/gotest.tools") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0jk2grk2q19k453m76hn2bsq9i73yk63drlfjg1imvhmmcl88872")))) + (build-system go-build-system) + (arguments + '(#:import-path "gotest.tools/v3" #:unpack-path "gotest.tools/v3")) + (propagated-inputs + `(("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) + ("go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4" + ,go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4) + ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-google-go-cmp-0.5.5" + ,go-github-com-google-go-cmp-0.5.5))) + (home-page "https://gotest.tools/v3") + (synopsis "gotest.tools") + (description + "Package gotesttools is a collection of packages to augment `testing` and support +common patterns.") + (license license:asl2.0))) +(define-public go-mvdan-cc-sh-v3-3.4.3-0.20220202175809-113ed667a8a7 + (package + (name "go-mvdan-cc-sh-v3") + (version "3.4.3-0.20220202175809-113ed667a8a7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mvdan/sh") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1k5113qqm20x58838k8f0ry3v1hinahjf2yl8y4450922yy0mq2k")))) + (build-system go-build-system) + (arguments + '(#:import-path "mvdan.cc/sh/v3" #:unpack-path "mvdan.cc/sh/v3")) + (propagated-inputs + `(("go-mvdan-cc-editorconfig-0.2.0" ,go-mvdan-cc-editorconfig-0.2.0) + ("go-golang-org-x-term-0.0.0-20210916214954-140adaaadfaf" + ,go-golang-org-x-term-0.0.0-20210916214954-140adaaadfaf) + ("go-golang-org-x-sys-0.0.0-20210925032602-92d5a993a665" + ,go-golang-org-x-sys-0.0.0-20210925032602-92d5a993a665) + ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" + ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) + ("go-github-com-rogpeppe-go-internal-1.8.1-0.20210923151022-86f73c517451" + ,go-github-com-rogpeppe-go-internal-1.8.1-0.20210923151022-86f73c517451) + ("go-github-com-pkg-diff-0.0.0-20210226163009-20ebb0f2a09e" + ,go-github-com-pkg-diff-0.0.0-20210226163009-20ebb0f2a09e) + ("go-github-com-kr-pretty-0.3.0" ,go-github-com-kr-pretty-0.3.0) + ("go-github-com-google-renameio-1.0.1" + ,go-github-com-google-renameio-1.0.1) + ("go-github-com-frankban-quicktest-1.13.1" + ,go-github-com-frankban-quicktest-1.13.1) + ("go-github-com-creack-pty-1.1.15" ,go-github-com-creack-pty-1.1.15))) + (home-page "https://mvdan.cc/sh/v3") + (synopsis "sh") + (description + "This package provides a shell parser, formatter, and interpreter. Supports +@url{https://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html,POSIX +Shell}, @url{https://www.gnu.org/software/bash/,Bash}, and +@url{http://www.mirbsd.org/mksh.htm,mksh}. Requires Go 1.16 or later.") + (license license:bsd-3))) +(define-public go-oras-land-oras-go-1.1.0 + (package + (name "go-oras-land-oras-go") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/oras-project/oras-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1mbn57dgpr7m2f7cw5r9s8kka44khrgqca84np6wnjiyzxgr1khk")))) + (build-system go-build-system) + (arguments '(#:import-path "oras.land/oras-go")) + (propagated-inputs + `(("go-gopkg-in-yaml-v3-3.0.0-20210107192922-496545a6307b" + ,go-gopkg-in-yaml-v3-3.0.0-20210107192922-496545a6307b) + ("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) + ("go-gopkg-in-check-v1-1.0.0-20200227125254-8fa46927fb4f" + ,go-gopkg-in-check-v1-1.0.0-20200227125254-8fa46927fb4f) + ("go-google-golang-org-protobuf-1.27.1" + ,go-google-golang-org-protobuf-1.27.1) + ("go-google-golang-org-grpc-1.43.0" ,go-google-golang-org-grpc-1.43.0) + ("go-google-golang-org-genproto-0.0.0-20220107163113-42d7afdf6368" + ,go-google-golang-org-genproto-0.0.0-20220107163113-42d7afdf6368) + ("go-golang-org-x-text-0.3.7" ,go-golang-org-x-text-0.3.7) + ("go-golang-org-x-sys-0.0.0-20211216021012-1d35b9e2eb4e" + ,go-golang-org-x-sys-0.0.0-20211216021012-1d35b9e2eb4e) + ("go-golang-org-x-net-0.0.0-20220107192237-5cfca573fb4d" + ,go-golang-org-x-net-0.0.0-20220107192237-5cfca573fb4d) + ("go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20140908184405-b21fdbd4370f" + ,go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20140908184405-b21fdbd4370f) + ("go-github-com-yvasiyarov-gorelic-0.0.0-20141212073537-a9bba5b9ab50" + ,go-github-com-yvasiyarov-gorelic-0.0.0-20141212073537-a9bba5b9ab50) + ("go-github-com-yvasiyarov-go-metrics-0.0.0-20140926110328-57bccd1ccd43" + ,go-github-com-yvasiyarov-go-metrics-0.0.0-20140926110328-57bccd1ccd43) + ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) + ("go-github-com-prometheus-procfs-0.6.0" + ,go-github-com-prometheus-procfs-0.6.0) + ("go-github-com-prometheus-common-0.10.0" + ,go-github-com-prometheus-common-0.10.0) + ("go-github-com-prometheus-client-model-0.2.0" + ,go-github-com-prometheus-client-model-0.2.0) + ("go-github-com-prometheus-client-golang-1.7.1" + ,go-github-com-prometheus-client-golang-1.7.1) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-niemeyer-pretty-0.0.0-20200227124842-a10e7caefd8e" + ,go-github-com-niemeyer-pretty-0.0.0-20200227124842-a10e7caefd8e) + ("go-github-com-morikuni-aec-1.0.0" ,go-github-com-morikuni-aec-1.0.0) + ("go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd" + ,go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd) + ("go-github-com-moby-sys-mountinfo-0.5.0" + ,go-github-com-moby-sys-mountinfo-0.5.0) + ("go-github-com-moby-locker-1.0.1" ,go-github-com-moby-locker-1.0.1) + ("go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369" + ,go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369) + ("go-github-com-kr-text-0.2.0" ,go-github-com-kr-text-0.2.0) + ("go-github-com-klauspost-compress-1.13.6" + ,go-github-com-klauspost-compress-1.13.6) + ("go-github-com-inconshreveable-mousetrap-1.0.0" + ,go-github-com-inconshreveable-mousetrap-1.0.0) + ("go-github-com-gorilla-mux-1.8.0" ,go-github-com-gorilla-mux-1.8.0) + ("go-github-com-gorilla-handlers-1.5.1" + ,go-github-com-gorilla-handlers-1.5.1) + ("go-github-com-google-go-cmp-0.5.6" + ,go-github-com-google-go-cmp-0.5.6) + ("go-github-com-gomodule-redigo-1.8.2" + ,go-github-com-gomodule-redigo-1.8.2) + ("go-github-com-golang-protobuf-1.5.2" + ,go-github-com-golang-protobuf-1.5.2) + ("go-github-com-golang-groupcache-0.0.0-20210331224755-41bb18bfe9da" + ,go-github-com-golang-groupcache-0.0.0-20210331224755-41bb18bfe9da) + ("go-github-com-gogo-protobuf-1.3.2" + ,go-github-com-gogo-protobuf-1.3.2) + ("go-github-com-felixge-httpsnoop-1.0.1" + ,go-github-com-felixge-httpsnoop-1.0.1) + ("go-github-com-docker-libtrust-0.0.0-20150114040149-fa567046d9b1" + ,go-github-com-docker-libtrust-0.0.0-20150114040149-fa567046d9b1) + ("go-github-com-docker-go-units-0.4.0" + ,go-github-com-docker-go-units-0.4.0) + ("go-github-com-docker-go-metrics-0.0.1" + ,go-github-com-docker-go-metrics-0.0.1) + ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" + ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) + ("go-github-com-docker-go-connections-0.4.0" + ,go-github-com-docker-go-connections-0.4.0) + ("go-github-com-docker-docker-credential-helpers-0.6.4" + ,go-github-com-docker-docker-credential-helpers-0.6.4) + ("go-github-com-docker-distribution-2.7.1+incompatible" + ,go-github-com-docker-distribution-2.7.1+incompatible) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1) + ("go-github-com-containerd-cgroups-1.0.2" + ,go-github-com-containerd-cgroups-1.0.2) + ("go-github-com-cespare-xxhash-v2-2.1.1" + ,go-github-com-cespare-xxhash-v2-2.1.1) + ("go-github-com-bugsnag-panicwrap-0.0.0-20151223152923-e2c28503fcd0" + ,go-github-com-bugsnag-panicwrap-0.0.0-20151223152923-e2c28503fcd0) + ("go-github-com-bugsnag-osext-0.0.0-20130617224835-0dd3f918b21b" + ,go-github-com-bugsnag-osext-0.0.0-20130617224835-0dd3f918b21b) + ("go-github-com-bugsnag-bugsnag-go-0.0.0-20141110184014-b1d153021fcd" + ,go-github-com-bugsnag-bugsnag-go-0.0.0-20141110184014-b1d153021fcd) + ("go-github-com-bshuster-repo-logrus-logstash-hook-1.0.0" + ,go-github-com-bshuster-repo-logrus-logstash-hook-1.0.0) + ("go-github-com-beorn7-perks-1.0.1" ,go-github-com-beorn7-perks-1.0.1) + ("go-github-com-shopify-logrus-bugsnag-0.0.0-20171204204709-577dee27f20d" + ,go-github-com-shopify-logrus-bugsnag-0.0.0-20171204204709-577dee27f20d) + ("go-github-com-microsoft-hcsshim-0.9.1" + ,go-github-com-microsoft-hcsshim-0.9.1) + ("go-github-com-microsoft-go-winio-0.5.1" + ,go-github-com-microsoft-go-winio-0.5.1) + ("go-github-com-azure-go-ansiterm-0.0.0-20170929234023-d6e3b3328b78" + ,go-github-com-azure-go-ansiterm-0.0.0-20170929234023-d6e3b3328b78) + ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" + ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) + ("go-golang-org-x-crypto-0.0.0-20211117183948-ae814b36b871" + ,go-golang-org-x-crypto-0.0.0-20211117183948-ae814b36b871) + ("go-github-com-stretchr-testify-1.7.0" + ,go-github-com-stretchr-testify-1.7.0) + ("go-github-com-spf13-cobra-1.2.1" ,go-github-com-spf13-cobra-1.2.1) + ("go-github-com-sirupsen-logrus-1.8.1" + ,go-github-com-sirupsen-logrus-1.8.1) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-phayes-freeport-0.0.0-20180830031419-95f893ade6f2" + ,go-github-com-phayes-freeport-0.0.0-20180830031419-95f893ade6f2) + ("go-github-com-opencontainers-image-spec-1.0.2" + ,go-github-com-opencontainers-image-spec-1.0.2) + ("go-github-com-opencontainers-go-digest-1.0.0" + ,go-github-com-opencontainers-go-digest-1.0.0) + ("go-github-com-docker-docker-20.10.11+incompatible" + ,go-github-com-docker-docker-20.10.11+incompatible) + ("go-github-com-docker-cli-20.10.11+incompatible" + ,go-github-com-docker-cli-20.10.11+incompatible) + ("go-github-com-distribution-distribution-v3-3.0.0-20211118083504-a29a3c99a684" + ,go-github-com-distribution-distribution-v3-3.0.0-20211118083504-a29a3c99a684) + ("go-github-com-containerd-containerd-1.5.9" + ,go-github-com-containerd-containerd-1.5.9))) + (home-page "https://oras.land/oras-go") + (synopsis "ORAS Go library") + (description + "Documentation for the ORAS Go library is located on the project website: +@url{https://oras.land/client_libraries/go/,oras.land/client_libraries/go}") + (license license:asl2.0))) +(define-public go-github-com-opencontainers-image-spec-1.0.2-0.20211117181255-693428a734f5 + (package + (name "go-github-com-opencontainers-image-spec") + (version "1.0.2-0.20211117181255-693428a734f5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/image-spec") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1w9fmamky30idjbqs78qhds6d5b9gdy6wzcxx6fhmpm2159dv62b")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/image-spec")) + (home-page "https://github.com/opencontainers/image-spec") + (synopsis "OCI Image Format Specification") + (description + "The OCI Image Format project creates and maintains the software shipping +container image format spec (OCI Image Format).") + (license license:asl2.0))) +(define-public go-github-com-moby-sys + (package + (name "go-github-com-moby-sys") + (version "0.0.0-20220308220145-03355939d693") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/moby/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ns4bav4n0k93nwz898dmcrz9zm4fa08sxyzhi7wqj4f8mpz4fam")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/moby/sys")) + (home-page "https://github.com/moby/sys") + (synopsis #f) + (description #f) + (license license:asl2.0))) +(define-public go-github-com-urfave-cli-1.22.5 + (package + (name "go-github-com-urfave-cli") + (version "1.22.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/urfave/cli") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1n8lk58j7bdsp47yh5bcpsw38lhkbyzcy3203ffkawc2rvkf1pp7")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/urfave/cli")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) + ("go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d" + ,go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d) + ("go-github-com-burntsushi-toml-0.3.1" + ,go-github-com-burntsushi-toml-0.3.1))) + (home-page "https://github.com/urfave/cli") + (synopsis "cli") + (description + "Package cli provides a minimal framework for creating and organizing command +line Go applications. cli is designed to be easy to understand and write, the +most simple cli application can be written as follows:") + (license license:expat))) +(define-public go-github-com-xeipuuv-gojsonpointer-0.0.0-20190905194746-02993c407bfb + (package + (name "go-github-com-xeipuuv-gojsonpointer") + (version "0.0.0-20190905194746-02993c407bfb") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/xeipuuv/gojsonpointer") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0y7gmpgsm8c12ax4a0ij9srmd9d424iq224n172ckwfqf37amvzy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/xeipuuv/gojsonpointer")) + (home-page "https://github.com/xeipuuv/gojsonpointer") + (synopsis "gojsonpointer") + (description "An implementation of JSON Pointer - Go language") + (license license:asl2.0))) +(define-public go-github-com-yvasiyarov-go-metrics-0.0.0-20150112132944-c25f46c4b940 + (package + (name "go-github-com-yvasiyarov-go-metrics") + (version "0.0.0-20150112132944-c25f46c4b940") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/yvasiyarov/go-metrics") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0p1hx4ml4gzgyj8n0fg5lv8bq092zwg00n59lq8v8sphjc1h8i8d")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/yvasiyarov/go-metrics")) + (home-page "https://github.com/yvasiyarov/go-metrics") + (synopsis "go-metrics") + (description "Go port of Coda Hale's Metrics library") + (license license:expat))) +(define-public go-github-com-yvasiyarov-gorelic-0.0.6 + (package + (name "go-github-com-yvasiyarov-gorelic") + (version "0.0.6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/yvasiyarov/gorelic") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0210d8z7l945611b5ynzjhnypqfdyr490ndrap13s4k5z1jgqjnb")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/yvasiyarov/gorelic")) + (home-page "https://github.com/yvasiyarov/gorelic") + (synopsis "GoRelic is deprecated in favour of") + (description + "Package gorelic is an New Relic agent implementation for Go runtime. It collect +a lot of metrics about Go scheduler, garbage collector and memory allocator and +send them to NewRelic.") + (license license:bsd-2))) +(define-public go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20160601141957-9c099fbc30e9 + (package + (name "go-github-com-yvasiyarov-newrelic-platform-go") + (version "0.0.0-20160601141957-9c099fbc30e9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/yvasiyarov/newrelic_platform_go") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0n6jap27qc7b7c37ck1gv9biq5nfl7y06jk0cqgc517yfnb4f07x")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/yvasiyarov/newrelic_platform_go")) + (home-page "https://github.com/yvasiyarov/newrelic_platform_go") + (synopsis "New Relic Platform Agent SDK for Go(golang)") + (description + "Package newrelic_platform_go is New Relic Platform Agent SDK for Go language.") + (license license:bsd-2))) diff --git a/glicid/packages/linux.scm b/glicid/packages/linux.scm index 1576fa8..b4731e5 100644 --- a/glicid/packages/linux.scm +++ b/glicid/packages/linux.scm @@ -16,7 +16,7 @@ #:use-module (gnu packages autotools) #:use-module (gnu packages python) #:use-module (gnu packages tls) -; #:use-module (glicid packages golang) + #:use-module (glicid packages golang) #:use-module (glicid utils) ) @@ -208,6 +208,54 @@ ("cryptsetup", cryptsetup) ("go", go-1.17) ("pkg-config", pkg-config) + go-github-com-netflix-go-expect-0.0.0-20220104043353-73e0943537d2 + go-github-com-protonmail-go-crypto-0.0.0-20220113124808-70ae35bab23f + go-github-com-adigunhammedolalekan-registry-auth-0.0.0-20200730122110-8cde180a3a60 + go-github-com-apex-log-1.9.0 + go-github-com-apptainer-container-key-client-0.7.2 + go-github-com-apptainer-container-library-client-1.2.2 + go-github-com-apptainer-sif-v2-2.3.2 + go-github-com-blang-semver-v4-4.0.0 + go-github-com-buger-jsonparser-1.1.1 + go-github-com-cenkalti-backoff-v4-4.1.2 + go-github-com-containerd-cgroups-1.0.3 + go-github-com-containerd-containerd-1.6.0 + go-github-com-containernetworking-cni-1.0.1 + go-github-com-containernetworking-plugins-1.1.0 + go-github-com-containers-image-v5-5.19.1 + go-github-com-creack-pty-1.1.17 + go-github-com-cyphar-filepath-securejoin-0.2.3 + go-github-com-docker-docker-20.10.12+incompatible + go-github-com-fatih-color-1.13.0 + go-github-com-go-log-log-0.2.0 + go-github-com-google-uuid-1.3.0 + go-github-com-opencontainers-go-digest-1.0.0 + go-github-com-opencontainers-image-spec-1.0.3-0.20211202193544-a5463b7f9c84 + go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417 + go-github-com-opencontainers-runtime-tools-0.9.1-0.20210326182921-59cdde06764b + go-github-com-opencontainers-selinux-1.10.0 + go-github-com-opencontainers-umoci-0.4.7 + go-github-com-pelletier-go-toml-1.9.4 + go-github-com-pkg-errors-0.9.1 + go-github-com-seccomp-containers-golang-0.6.0 + go-github-com-seccomp-libseccomp-golang-0.9.2-0.20210429002308-3879420cc921 + go-github-com-spf13-cobra-1.3.0 + go-github-com-spf13-pflag-1.0.5 + go-github-com-sylabs-json-resp-0.8.0 + go-github-com-vbauerster-mpb-v7-7.4.1 + go-golang-org-x-sys-0.0.0-20220209214540-3681064d5158 + go-golang-org-x-term-0.0.0-20210916214954-140adaaadfaf + go-gopkg-in-yaml-v2-2.4.0 + go-gotest-tools-v3-3.1.0 + go-mvdan-cc-sh-v3-3.4.3-0.20220202175809-113ed667a8a7 + go-oras-land-oras-go-1.1.0 + go-github-com-opencontainers-image-spec-1.0.2-0.20211117181255-693428a734f5 + go-github-com-moby-sys + go-github-com-urfave-cli-1.22.5 + go-github-com-xeipuuv-gojsonpointer-0.0.0-20190905194746-02993c407bfb + go-github-com-yvasiyarov-go-metrics-0.0.0-20150112132944-c25f46c4b940 + go-github-com-yvasiyarov-gorelic-0.0.6 + go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20160601141957-9c099fbc30e9 )) (arguments `(#:phases From d06c76d3d025a9c260b39c4ab4b1de33343244ef Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Wed, 23 Mar 2022 18:08:31 +0100 Subject: [PATCH 274/383] adding apptainer 1.0.1 --- glicid/packages/linux.scm | 96 +++++++++++++++++++-------------------- 1 file changed, 48 insertions(+), 48 deletions(-) diff --git a/glicid/packages/linux.scm b/glicid/packages/linux.scm index b4731e5..1155b47 100644 --- a/glicid/packages/linux.scm +++ b/glicid/packages/linux.scm @@ -208,54 +208,54 @@ ("cryptsetup", cryptsetup) ("go", go-1.17) ("pkg-config", pkg-config) - go-github-com-netflix-go-expect-0.0.0-20220104043353-73e0943537d2 - go-github-com-protonmail-go-crypto-0.0.0-20220113124808-70ae35bab23f - go-github-com-adigunhammedolalekan-registry-auth-0.0.0-20200730122110-8cde180a3a60 - go-github-com-apex-log-1.9.0 - go-github-com-apptainer-container-key-client-0.7.2 - go-github-com-apptainer-container-library-client-1.2.2 - go-github-com-apptainer-sif-v2-2.3.2 - go-github-com-blang-semver-v4-4.0.0 - go-github-com-buger-jsonparser-1.1.1 - go-github-com-cenkalti-backoff-v4-4.1.2 - go-github-com-containerd-cgroups-1.0.3 - go-github-com-containerd-containerd-1.6.0 - go-github-com-containernetworking-cni-1.0.1 - go-github-com-containernetworking-plugins-1.1.0 - go-github-com-containers-image-v5-5.19.1 - go-github-com-creack-pty-1.1.17 - go-github-com-cyphar-filepath-securejoin-0.2.3 - go-github-com-docker-docker-20.10.12+incompatible - go-github-com-fatih-color-1.13.0 - go-github-com-go-log-log-0.2.0 - go-github-com-google-uuid-1.3.0 - go-github-com-opencontainers-go-digest-1.0.0 - go-github-com-opencontainers-image-spec-1.0.3-0.20211202193544-a5463b7f9c84 - go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417 - go-github-com-opencontainers-runtime-tools-0.9.1-0.20210326182921-59cdde06764b - go-github-com-opencontainers-selinux-1.10.0 - go-github-com-opencontainers-umoci-0.4.7 - go-github-com-pelletier-go-toml-1.9.4 - go-github-com-pkg-errors-0.9.1 - go-github-com-seccomp-containers-golang-0.6.0 - go-github-com-seccomp-libseccomp-golang-0.9.2-0.20210429002308-3879420cc921 - go-github-com-spf13-cobra-1.3.0 - go-github-com-spf13-pflag-1.0.5 - go-github-com-sylabs-json-resp-0.8.0 - go-github-com-vbauerster-mpb-v7-7.4.1 - go-golang-org-x-sys-0.0.0-20220209214540-3681064d5158 - go-golang-org-x-term-0.0.0-20210916214954-140adaaadfaf - go-gopkg-in-yaml-v2-2.4.0 - go-gotest-tools-v3-3.1.0 - go-mvdan-cc-sh-v3-3.4.3-0.20220202175809-113ed667a8a7 - go-oras-land-oras-go-1.1.0 - go-github-com-opencontainers-image-spec-1.0.2-0.20211117181255-693428a734f5 - go-github-com-moby-sys - go-github-com-urfave-cli-1.22.5 - go-github-com-xeipuuv-gojsonpointer-0.0.0-20190905194746-02993c407bfb - go-github-com-yvasiyarov-go-metrics-0.0.0-20150112132944-c25f46c4b940 - go-github-com-yvasiyarov-gorelic-0.0.6 - go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20160601141957-9c099fbc30e9 + ("go-github-com-netflix-go-expect-0.0.0-20220104043353-73e0943537d2", go-github-com-netflix-go-expect-0.0.0-20220104043353-73e0943537d2) + ("go-github-com-protonmail-go-crypto-0.0.0-20220113124808-70ae35bab23f", go-github-com-protonmail-go-crypto-0.0.0-20220113124808-70ae35bab23f) + ("go-github-com-adigunhammedolalekan-registry-auth-0.0.0-20200730122110-8cde180a3a60", go-github-com-adigunhammedolalekan-registry-auth-0.0.0-20200730122110-8cde180a3a60) + ("go-github-com-apex-log-1.9.0", go-github-com-apex-log-1.9.0) + ("go-github-com-apptainer-container-key-client-0.7.2", go-github-com-apptainer-container-key-client-0.7.2) + ("go-github-com-apptainer-container-library-client-1.2.2", go-github-com-apptainer-container-library-client-1.2.2) + ("go-github-com-apptainer-sif-v2-2.3.2", go-github-com-apptainer-sif-v2-2.3.2) + ("go-github-com-blang-semver-v4-4.0.0", go-github-com-blang-semver-v4-4.0.0) + ("go-github-com-buger-jsonparser-1.1.1", go-github-com-buger-jsonparser-1.1.1) + ("go-github-com-cenkalti-backoff-v4-4.1.2", go-github-com-cenkalti-backoff-v4-4.1.2) + ("go-github-com-containerd-cgroups-1.0.3", go-github-com-containerd-cgroups-1.0.3) + ("go-github-com-containerd-containerd-1.6.0", go-github-com-containerd-containerd-1.6.0) + ("go-github-com-containernetworking-cni-1.0.1", go-github-com-containernetworking-cni-1.0.1) + ("go-github-com-containernetworking-plugins-1.1.0", go-github-com-containernetworking-plugins-1.1.0) + ("go-github-com-containers-image-v5-5.19.1", go-github-com-containers-image-v5-5.19.1) + ("go-github-com-creack-pty-1.1.17", go-github-com-creack-pty-1.1.17) + ("go-github-com-cyphar-filepath-securejoin-0.2.3", go-github-com-cyphar-filepath-securejoin-0.2.3) + ("go-github-com-docker-docker-20.10.12+incompatible", go-github-com-docker-docker-20.10.12+incompatible) + ("go-github-com-fatih-color-1.13.0", go-github-com-fatih-color-1.13.0) + ("go-github-com-go-log-log-0.2.0", go-github-com-go-log-log-0.2.0) + ("go-github-com-google-uuid-1.3.0", go-github-com-google-uuid-1.3.0) + ("go-github-com-opencontainers-go-digest-1.0.0", go-github-com-opencontainers-go-digest-1.0.0) + ("go-github-com-opencontainers-image-spec-1.0.3-0.20211202193544-a5463b7f9c84", go-github-com-opencontainers-image-spec-1.0.3-0.20211202193544-a5463b7f9c84) + ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417", go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417) + ("go-github-com-opencontainers-runtime-tools-0.9.1-0.20210326182921-59cdde06764b", go-github-com-opencontainers-runtime-tools-0.9.1-0.20210326182921-59cdde06764b) + ("go-github-com-opencontainers-selinux-1.10.0", go-github-com-opencontainers-selinux-1.10.0) + ("go-github-com-opencontainers-umoci-0.4.7", go-github-com-opencontainers-umoci-0.4.7) + ("go-github-com-pelletier-go-toml-1.9.4", go-github-com-pelletier-go-toml-1.9.4) + ("go-github-com-pkg-errors-0.9.1", go-github-com-pkg-errors-0.9.1) + ("go-github-com-seccomp-containers-golang-0.6.0", go-github-com-seccomp-containers-golang-0.6.0) + ("go-github-com-seccomp-libseccomp-golang-0.9.2-0.20210429002308-3879420cc921", go-github-com-seccomp-libseccomp-golang-0.9.2-0.20210429002308-3879420cc921) + ("go-github-com-spf13-cobra-1.3.0", go-github-com-spf13-cobra-1.3.0) + ("go-github-com-spf13-pflag-1.0.5", go-github-com-spf13-pflag-1.0.5) + ("go-github-com-sylabs-json-resp-0.8.0", go-github-com-sylabs-json-resp-0.8.0) + ("go-github-com-vbauerster-mpb-v7-7.4.1", go-github-com-vbauerster-mpb-v7-7.4.1) + ("go-golang-org-x-sys-0.0.0-20220209214540-3681064d5158", go-golang-org-x-sys-0.0.0-20220209214540-3681064d5158) + ("go-golang-org-x-term-0.0.0-20210916214954-140adaaadfaf", go-golang-org-x-term-0.0.0-20210916214954-140adaaadfaf) + ("go-gopkg-in-yaml-v2-2.4.0", go-gopkg-in-yaml-v2-2.4.0) + ("go-gotest-tools-v3-3.1.0", go-gotest-tools-v3-3.1.0) + ("go-mvdan-cc-sh-v3-3.4.3-0.20220202175809-113ed667a8a7", go-mvdan-cc-sh-v3-3.4.3-0.20220202175809-113ed667a8a7) + ("go-oras-land-oras-go-1.1.0", go-oras-land-oras-go-1.1.0) + ("go-github-com-opencontainers-image-spec-1.0.2-0.20211117181255-693428a734f5", go-github-com-opencontainers-image-spec-1.0.2-0.20211117181255-693428a734f5) + ("go-github-com-moby-sys", go-github-com-moby-sys) + ("go-github-com-urfave-cli-1.22.5", go-github-com-urfave-cli-1.22.5) + ("go-github-com-xeipuuv-gojsonpointer-0.0.0-20190905194746-02993c407bfb", go-github-com-xeipuuv-gojsonpointer-0.0.0-20190905194746-02993c407bfb) + ("go-github-com-yvasiyarov-go-metrics-0.0.0-20150112132944-c25f46c4b940", go-github-com-yvasiyarov-go-metrics-0.0.0-20150112132944-c25f46c4b940) + ("go-github-com-yvasiyarov-gorelic-0.0.6", go-github-com-yvasiyarov-gorelic-0.0.6) + ("go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20160601141957-9c099fbc30e9", go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20160601141957-9c099fbc30e9) )) (arguments `(#:phases From 43952c83e043d34e14612918abf706206fd9acf0 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Thu, 24 Mar 2022 12:23:10 +0100 Subject: [PATCH 275/383] adding apptainer 1.0.1 --- glicid/packages/golang.scm | 1723 ------------------------------------ 1 file changed, 1723 deletions(-) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index f0ce537..d181188 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -6,1726 +6,3 @@ #:use-module (guix packages) ) -(define-public go-github-com-netflix-go-expect-0.0.0-20220104043353-73e0943537d2 - (package - (name "go-github-com-netflix-go-expect") - (version "0.0.0-20220104043353-73e0943537d2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/Netflix/go-expect") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0zkvhnc4ii6ygvcsj54ng0kql26rnny7l3hy1w61g88mxjsww1b9")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/Netflix/go-expect")) - (propagated-inputs - `(("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-creack-pty-1.1.17" ,go-github-com-creack-pty-1.1.17))) - (home-page "https://github.com/Netflix/go-expect") - (synopsis "go-expect") - (description - "Package expect provides an expect-like interface to automate control of -applications. It is unlike expect in that it does not spawn or manage process -lifecycle. This package only focuses on expecting output and sending input -through it's psuedoterminal.") - (license license:asl2.0))) -(define-public go-github-com-protonmail-go-crypto-0.0.0-20220113124808-70ae35bab23f - (package - (name "go-github-com-protonmail-go-crypto") - (version "0.0.0-20220113124808-70ae35bab23f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/ProtonMail/go-crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0dpalb7cd2xs0hji80zv378vf8gx4ph7b8xdd05kvbskyw67fb7n")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/ProtonMail/go-crypto")) - (propagated-inputs - `(("go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2" - ,go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2))) - (home-page "https://github.com/ProtonMail/go-crypto") - (synopsis #f) - (description - "This module is backwards compatible with x/crypto/openpgp, so you can simply -replace all imports of @code{golang.org/x/crypto/openpgp} with -@code{github.com/ProtonMail/go-crypto/openpgp}.") - (license license:bsd-3))) -(define-public go-github-com-adigunhammedolalekan-registry-auth-0.0.0-20200730122110-8cde180a3a60 - (package - (name "go-github-com-adigunhammedolalekan-registry-auth") - (version "0.0.0-20200730122110-8cde180a3a60") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/adigunhammedolalekan/registry-auth") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0855a5c0ifi6q2ghb6gax0kwwra5j7pd2lplq4wp8r83dnv4vwj0")))) - (build-system go-build-system) - (arguments - '(#:import-path "github.com/adigunhammedolalekan/registry-auth")) - (propagated-inputs - `(("go-github-com-sirupsen-logrus-1.4.2" - ,go-github-com-sirupsen-logrus-1.4.2) - ("go-github-com-gorilla-mux-1.7.4" ,go-github-com-gorilla-mux-1.7.4) - ("go-github-com-docker-libtrust-0.0.0-20160708172513-aabc10ec26b7" - ,go-github-com-docker-libtrust-0.0.0-20160708172513-aabc10ec26b7) - ("go-github-com-docker-distribution-2.7.1+incompatible" - ,go-github-com-docker-distribution-2.7.1+incompatible))) - (home-page "https://github.com/adigunhammedolalekan/registry-auth") - (synopsis "registry-auth") - (description - "a package to implements docker registry token authentication server as described -here -[https://github.com/docker/distribution/blob/1b9ab303a477ded9bdd3fc97e9119fa8f9e58fca/docs/spec/auth/index.md]") - (license license:expat))) -(define-public go-github-com-apex-log-1.9.0 - (package - (name "go-github-com-apex-log") - (version "1.9.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/apex/log") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ibqkncnb8wcwilg2kyfyl5541g69rg551iy6m61q6iwdn5vfhi2")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/apex/log")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) - ("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" - ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) - ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) - ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" - ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) - ("go-github-com-tj-go-spin-1.1.0" ,go-github-com-tj-go-spin-1.1.0) - ("go-github-com-tj-go-kinesis-0.0.0-20171128231115-08b17f58cb1b" - ,go-github-com-tj-go-kinesis-0.0.0-20171128231115-08b17f58cb1b) - ("go-github-com-tj-go-elastic-0.0.0-20171221160941-36157cbbebc2" - ,go-github-com-tj-go-elastic-0.0.0-20171221160941-36157cbbebc2) - ("go-github-com-tj-go-buffer-1.1.0" ,go-github-com-tj-go-buffer-1.1.0) - ("go-github-com-tj-assert-0.0.3" ,go-github-com-tj-assert-0.0.3) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-smartystreets-gunit-1.0.0" - ,go-github-com-smartystreets-gunit-1.0.0) - ("go-github-com-smartystreets-go-aws-auth-0.0.0-20180515143844-0c1422d1fdb9" - ,go-github-com-smartystreets-go-aws-auth-0.0.0-20180515143844-0c1422d1fdb9) - ("go-github-com-rogpeppe-fastuuid-1.1.0" - ,go-github-com-rogpeppe-fastuuid-1.1.0) - ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) - ("go-github-com-mattn-go-colorable-0.1.2" - ,go-github-com-mattn-go-colorable-0.1.2) - ("go-github-com-kr-pretty-0.2.0" ,go-github-com-kr-pretty-0.2.0) - ("go-github-com-jpillora-backoff-0.0.0-20180909062703-3050d21c67d7" - ,go-github-com-jpillora-backoff-0.0.0-20180909062703-3050d21c67d7) - ("go-github-com-google-uuid-1.1.1" ,go-github-com-google-uuid-1.1.1) - ("go-github-com-golang-protobuf-1.3.1" - ,go-github-com-golang-protobuf-1.3.1) - ("go-github-com-go-logfmt-logfmt-0.4.0" - ,go-github-com-go-logfmt-logfmt-0.4.0) - ("go-github-com-fatih-color-1.7.0" ,go-github-com-fatih-color-1.7.0) - ("go-github-com-aybabtme-rgbterm-0.0.0-20170906152045-cc83f3b3ce59" - ,go-github-com-aybabtme-rgbterm-0.0.0-20170906152045-cc83f3b3ce59) - ("go-github-com-aws-aws-sdk-go-1.20.6" - ,go-github-com-aws-aws-sdk-go-1.20.6) - ("go-github-com-aphistic-sweet-0.2.0" - ,go-github-com-aphistic-sweet-0.2.0) - ("go-github-com-aphistic-golf-0.0.0-20180712155816-02c07f170c5a" - ,go-github-com-aphistic-golf-0.0.0-20180712155816-02c07f170c5a) - ("go-github-com-apex-logs-1.0.0" ,go-github-com-apex-logs-1.0.0))) - (home-page "https://github.com/apex/log") - (synopsis "Handlers") - (description - "Package log implements a simple structured logging API designed with few -assumptions. Designed for centralized logging solutions such as Kinesis which -require encoding and decoding before fanning-out to handlers.") - (license license:expat))) -(define-public go-github-com-apptainer-container-key-client-0.7.2 - (package - (name "go-github-com-apptainer-container-key-client") - (version "0.7.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/apptainer/container-key-client") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0f4bb1k8pi37alzgzvjw23ynp54752qwgnr9gim3vc061qcjx377")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/apptainer/container-key-client")) - (propagated-inputs - `(("go-github-com-sylabs-json-resp-0.8.0" - ,go-github-com-sylabs-json-resp-0.8.0))) - (home-page "https://github.com/apptainer/container-key-client") - (synopsis "Container Key Client") - (description - "This project provides a Go client to Apptainer for key storage and retrieval -using the HKP protocol. Forked from -@url{https://github.com/sylabs/scs-key-client,sylabs/scs-key-client}.") - (license license:bsd-3))) -(define-public go-github-com-apptainer-container-library-client-1.2.2 - (package - (name "go-github-com-apptainer-container-library-client") - (version "1.2.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/apptainer/container-library-client") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1f6pxzk0k9jf9612kjw6jlmrs8yzqqrvhjwfxwri1q1d4i410a0h")))) - (build-system go-build-system) - (arguments - '(#:import-path "github.com/apptainer/container-library-client")) - (propagated-inputs - `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" - ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.0" - ,go-github-com-davecgh-go-spew-1.1.0) - ("go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a" - ,go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a) - ("go-github-com-sylabs-json-resp-0.8.0" - ,go-github-com-sylabs-json-resp-0.8.0) - ("go-github-com-stretchr-testify-1.7.0" - ,go-github-com-stretchr-testify-1.7.0) - ("go-github-com-go-log-log-0.2.0" ,go-github-com-go-log-log-0.2.0) - ("go-github-com-blang-semver-v4-4.0.0" - ,go-github-com-blang-semver-v4-4.0.0))) - (home-page "https://github.com/apptainer/container-library-client") - (synopsis "Container Library Client") - (description - "This project provides a Go client to Apptainer for the container library. -Forked from -@url{https://github.com/sylabs/scs-library-client,sylabs/scs-library-client}.") - (license license:bsd-3))) -(define-public go-github-com-apptainer-sif-v2-2.3.2 - (package - (name "go-github-com-apptainer-sif-v2") - (version "2.3.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/apptainer/sif") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "10cmvgyjxnfgw5661n1zbdr8zs29rx9izsr1bbnnyjr9kdqdhfg1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/apptainer/sif/v2")) - (propagated-inputs - `(("go-gopkg-in-warnings-v0-0.1.2" ,go-gopkg-in-warnings-v0-0.1.2) - ("go-golang-org-x-sys-0.0.0-20211205182925-97ca703d548d" - ,go-golang-org-x-sys-0.0.0-20211205182925-97ca703d548d) - ("go-golang-org-x-net-0.0.0-20210813160813-60bc85c4be6d" - ,go-golang-org-x-net-0.0.0-20210813160813-60bc85c4be6d) - ("go-golang-org-x-crypto-0.0.0-20210817164053-32db794688a5" - ,go-golang-org-x-crypto-0.0.0-20210817164053-32db794688a5) - ("go-github-com-xanzy-ssh-agent-0.3.0" - ,go-github-com-xanzy-ssh-agent-0.3.0) - ("go-github-com-sergi-go-diff-1.1.0" - ,go-github-com-sergi-go-diff-1.1.0) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-mitchellh-go-homedir-1.1.0" - ,go-github-com-mitchellh-go-homedir-1.1.0) - ("go-github-com-kevinburke-ssh-config-0.0.0-20201106050909-4977a11b4351" - ,go-github-com-kevinburke-ssh-config-0.0.0-20201106050909-4977a11b4351) - ("go-github-com-jbenet-go-context-0.0.0-20150711004518-d14ea06fba99" - ,go-github-com-jbenet-go-context-0.0.0-20150711004518-d14ea06fba99) - ("go-github-com-inconshreveable-mousetrap-1.0.0" - ,go-github-com-inconshreveable-mousetrap-1.0.0) - ("go-github-com-imdario-mergo-0.3.12" - ,go-github-com-imdario-mergo-0.3.12) - ("go-github-com-go-git-go-billy-v5-5.3.1" - ,go-github-com-go-git-go-billy-v5-5.3.1) - ("go-github-com-go-git-gcfg-1.5.0" ,go-github-com-go-git-gcfg-1.5.0) - ("go-github-com-emirpasic-gods-1.12.0" - ,go-github-com-emirpasic-gods-1.12.0) - ("go-github-com-acomagu-bufpipe-1.0.3" - ,go-github-com-acomagu-bufpipe-1.0.3) - ("go-github-com-microsoft-go-winio-0.4.16" - ,go-github-com-microsoft-go-winio-0.4.16) - ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) - ("go-github-com-spf13-cobra-1.3.0" ,go-github-com-spf13-cobra-1.3.0) - ("go-github-com-sebdah-goldie-v2-2.5.3" - ,go-github-com-sebdah-goldie-v2-2.5.3) - ("go-github-com-magefile-mage-1.12.1" - ,go-github-com-magefile-mage-1.12.1) - ("go-github-com-google-uuid-1.3.0" ,go-github-com-google-uuid-1.3.0) - ("go-github-com-go-git-go-git-v5-5.4.2" - ,go-github-com-go-git-go-git-v5-5.4.2) - ("go-github-com-blang-semver-v4-4.0.0" - ,go-github-com-blang-semver-v4-4.0.0) - ("go-github-com-protonmail-go-crypto-0.0.0-20220113124808-70ae35bab23f" - ,go-github-com-protonmail-go-crypto-0.0.0-20220113124808-70ae35bab23f))) - (home-page "https://github.com/apptainer/sif") - (synopsis "The Singularity Image Format (SIF)") - (description - "This module contains an open source implementation of the Singularity Image -Format (SIF) that makes it easy to create complete and encapsulated container -environments stored in a single file.") - (license license:bsd-3))) -(define-public go-github-com-blang-semver-v4-4.0.0 - (package - (name "go-github-com-blang-semver-v4") - (version "4.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/blang/semver") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "14h9ys4n4kx9cbj42lkdf4i5k3nkll6sd62jcvl7cs565v6fiknz")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/blang/semver/v4")) - (home-page "https://github.com/blang/semver") - (synopsis #f) - (description #f) - (license license:expat))) -(define-public go-github-com-buger-jsonparser-1.1.1 - (package - (name "go-github-com-buger-jsonparser") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/buger/jsonparser") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0qv2lsh2biwxn927941gqiv5pqg7n4v58j0i536pjp7pr17pq7dp")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/buger/jsonparser")) - (home-page "https://github.com/buger/jsonparser") - (synopsis - "Alternative JSON parser for Go (10x times faster standard library)") - (description - "It does not require you to know the structure of the payload (eg. create -structs), and allows accessing fields by providing the path to them. It is up -to @strong{10 times faster} than standard @code{encoding/json} package -(depending on payload size and usage), @strong{allocates no memory}. See -benchmarks below.") - (license license:expat))) -(define-public go-github-com-cenkalti-backoff-v4-4.1.2 - (package - (name "go-github-com-cenkalti-backoff-v4") - (version "4.1.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cenkalti/backoff") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "08c28226q612i1pv83161y57qh16631vpc51ai9f76qfrzsy946z")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/cenkalti/backoff/v4")) - (home-page "https://github.com/cenkalti/backoff") - (synopsis "Exponential Backoff") - (description - "Package backoff implements backoff algorithms for retrying operations.") - (license license:expat))) -(define-public go-github-com-containerd-cgroups-1.0.3 - (package - (name "go-github-com-containerd-cgroups") - (version "1.0.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/cgroups") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0mqsi2jm1f7xvs35kx6ijvadr6zycshc1xivq6xdiwrw24wb0m3r")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/cgroups")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20210510120138-977fb7262007" - ,go-golang-org-x-sys-0.0.0-20210510120138-977fb7262007) - ("go-go-uber-org-goleak-1.1.12" ,go-go-uber-org-goleak-1.1.12) - ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) - ("go-github-com-stretchr-testify-1.7.0" - ,go-github-com-stretchr-testify-1.7.0) - ("go-github-com-sirupsen-logrus-1.8.1" - ,go-github-com-sirupsen-logrus-1.8.1) - ("go-github-com-opencontainers-runtime-spec-1.0.2" - ,go-github-com-opencontainers-runtime-spec-1.0.2) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2) - ("go-github-com-godbus-dbus-v5-5.0.4" - ,go-github-com-godbus-dbus-v5-5.0.4) - ("go-github-com-docker-go-units-0.4.0" - ,go-github-com-docker-go-units-0.4.0) - ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" - ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) - ("go-github-com-coreos-go-systemd-v22-22.3.2" - ,go-github-com-coreos-go-systemd-v22-22.3.2) - ("go-github-com-cilium-ebpf-0.4.0" ,go-github-com-cilium-ebpf-0.4.0))) - (home-page "https://github.com/containerd/cgroups") - (synopsis "cgroups") - (description - "Go package for creating, managing, inspecting, and destroying cgroups. The -resources format for settings on the cgroup uses the OCI runtime-spec found -@url{https://github.com/opencontainers/runtime-spec,here}.") - (license license:asl2.0))) -(define-public go-github-com-containerd-containerd-1.6.0 - (package - (name "go-github-com-containerd-containerd") - (version "1.6.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/containerd") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1wqmb124l8hjh7a053xjgh1kwblczg6q99l4vh6pi5zmnmdn67iv")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/containerd")) - (propagated-inputs - `(("go-google-golang-org-genproto-0.0.0-20200224152610-e50cd9704f63" - ,go-google-golang-org-genproto-0.0.0-20200224152610-e50cd9704f63) - ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) - ("go-github-com-gogo-googleapis-1.3.2" - ,go-github-com-gogo-googleapis-1.3.2) - ("go-k8s-io-utils-0.0.0-20210930125809-cb0fa318a74b" - ,go-k8s-io-utils-0.0.0-20210930125809-cb0fa318a74b) - ("go-k8s-io-klog-v2-2.30.0" ,go-k8s-io-klog-v2-2.30.0) - ("go-k8s-io-cri-api-0.23.1" ,go-k8s-io-cri-api-0.23.1) - ("go-k8s-io-component-base-0.22.5" ,go-k8s-io-component-base-0.22.5) - ("go-k8s-io-client-go-0.22.5" ,go-k8s-io-client-go-0.22.5) - ("go-k8s-io-apiserver-0.22.5" ,go-k8s-io-apiserver-0.22.5) - ("go-k8s-io-apimachinery-0.22.5" ,go-k8s-io-apimachinery-0.22.5) - ("go-k8s-io-api-0.22.5" ,go-k8s-io-api-0.22.5) - ("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) - ("go-google-golang-org-protobuf-1.27.1" - ,go-google-golang-org-protobuf-1.27.1) - ("go-google-golang-org-grpc-1.43.0" ,go-google-golang-org-grpc-1.43.0) - ("go-golang-org-x-term-0.0.0-20210615171337-6886f2dfbf5b" - ,go-golang-org-x-term-0.0.0-20210615171337-6886f2dfbf5b) - ("go-golang-org-x-sys-0.0.0-20211216021012-1d35b9e2eb4e" - ,go-golang-org-x-sys-0.0.0-20211216021012-1d35b9e2eb4e) - ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" - ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) - ("go-golang-org-x-oauth2-0.0.0-20210819190943-2bc19b11175f" - ,go-golang-org-x-oauth2-0.0.0-20210819190943-2bc19b11175f) - ("go-golang-org-x-net-0.0.0-20211216030914-fe4d6282115f" - ,go-golang-org-x-net-0.0.0-20211216030914-fe4d6282115f) - ("go-golang-org-x-crypto-0.0.0-20210817164053-32db794688a5" - ,go-golang-org-x-crypto-0.0.0-20210817164053-32db794688a5) - ("go-go-opentelemetry-io-otel-trace-1.3.0" - ,go-go-opentelemetry-io-otel-trace-1.3.0) - ("go-go-opentelemetry-io-otel-sdk-1.3.0" - ,go-go-opentelemetry-io-otel-sdk-1.3.0) - ("go-go-opentelemetry-io-otel-exporters-otlp-otlptrace-otlptracehttp-1.3.0" - ,go-go-opentelemetry-io-otel-exporters-otlp-otlptrace-otlptracehttp-1.3.0) - ("go-go-opentelemetry-io-otel-exporters-otlp-otlptrace-otlptracegrpc-1.3.0" - ,go-go-opentelemetry-io-otel-exporters-otlp-otlptrace-otlptracegrpc-1.3.0) - ("go-go-opentelemetry-io-otel-exporters-otlp-otlptrace-1.3.0" - ,go-go-opentelemetry-io-otel-exporters-otlp-otlptrace-1.3.0) - ("go-go-opentelemetry-io-otel-1.3.0" - ,go-go-opentelemetry-io-otel-1.3.0) - ("go-go-opentelemetry-io-contrib-instrumentation-google-golang-org-grpc-otelgrpc-0.28.0" - ,go-go-opentelemetry-io-contrib-instrumentation-google-golang-org-grpc-otelgrpc-0.28.0) - ("go-go-etcd-io-bbolt-1.3.6" ,go-go-etcd-io-bbolt-1.3.6) - ("go-github-com-vishvananda-netlink-1.1.1-0.20210330154013-f5de75959ad5" - ,go-github-com-vishvananda-netlink-1.1.1-0.20210330154013-f5de75959ad5) - ("go-github-com-tchap-go-patricia-2.2.6+incompatible" - ,go-github-com-tchap-go-patricia-2.2.6+incompatible) - ("go-github-com-stretchr-testify-1.7.0" - ,go-github-com-stretchr-testify-1.7.0) - ("go-github-com-sirupsen-logrus-1.8.1" - ,go-github-com-sirupsen-logrus-1.8.1) - ("go-github-com-satori-go-uuid-1.2.0" - ,go-github-com-satori-go-uuid-1.2.0) - ("go-github-com-prometheus-client-golang-1.11.0" - ,go-github-com-prometheus-client-golang-1.11.0) - ("go-github-com-pelletier-go-toml-1.9.3" - ,go-github-com-pelletier-go-toml-1.9.3) - ("go-github-com-opencontainers-selinux-1.10.0" - ,go-github-com-opencontainers-selinux-1.10.0) - ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417" - ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417) - ("go-github-com-opencontainers-runc-1.1.0" - ,go-github-com-opencontainers-runc-1.1.0) - ("go-github-com-opencontainers-image-spec-1.0.2-0.20211117181255-693428a734f5" - ,go-github-com-opencontainers-image-spec-1.0.2-0.20211117181255-693428a734f5) - ("go-github-com-opencontainers-go-digest-1.0.0" - ,go-github-com-opencontainers-go-digest-1.0.0) - ("go-github-com-moby-sys-symlink-0.2.0" - ,go-github-com-moby-sys-symlink-0.2.0) - ("go-github-com-moby-sys-signal-0.6.0" - ,go-github-com-moby-sys-signal-0.6.0) - ("go-github-com-moby-sys-mountinfo-0.5.0" - ,go-github-com-moby-sys-mountinfo-0.5.0) - ("go-github-com-moby-locker-1.0.1" ,go-github-com-moby-locker-1.0.1) - ("go-github-com-klauspost-compress-1.11.13" - ,go-github-com-klauspost-compress-1.11.13) - ("go-github-com-json-iterator-go-1.1.12" - ,go-github-com-json-iterator-go-1.1.12) - ("go-github-com-intel-goresctrl-0.2.0" - ,go-github-com-intel-goresctrl-0.2.0) - ("go-github-com-imdario-mergo-0.3.12" - ,go-github-com-imdario-mergo-0.3.12) - ("go-github-com-hashicorp-go-multierror-1.1.1" - ,go-github-com-hashicorp-go-multierror-1.1.1) - ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" - ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) - ("go-github-com-grpc-ecosystem-go-grpc-middleware-1.3.0" - ,go-github-com-grpc-ecosystem-go-grpc-middleware-1.3.0) - ("go-github-com-google-uuid-1.2.0" ,go-github-com-google-uuid-1.2.0) - ("go-github-com-google-go-cmp-0.5.6" - ,go-github-com-google-go-cmp-0.5.6) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2) - ("go-github-com-go-logr-stdr-1.2.2" ,go-github-com-go-logr-stdr-1.2.2) - ("go-github-com-fsnotify-fsnotify-1.4.9" - ,go-github-com-fsnotify-fsnotify-1.4.9) - ("go-github-com-emicklei-go-restful-2.9.5+incompatible" - ,go-github-com-emicklei-go-restful-2.9.5+incompatible) - ("go-github-com-docker-go-units-0.4.0" - ,go-github-com-docker-go-units-0.4.0) - ("go-github-com-docker-go-metrics-0.0.1" - ,go-github-com-docker-go-metrics-0.0.1) - ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" - ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1) - ("go-github-com-coreos-go-systemd-v22-22.3.2" - ,go-github-com-coreos-go-systemd-v22-22.3.2) - ("go-github-com-containernetworking-plugins-1.0.1" - ,go-github-com-containernetworking-plugins-1.0.1) - ("go-github-com-containerd-zfs-1.0.0" - ,go-github-com-containerd-zfs-1.0.0) - ("go-github-com-containerd-typeurl-1.0.2" - ,go-github-com-containerd-typeurl-1.0.2) - ("go-github-com-containerd-ttrpc-1.1.0" - ,go-github-com-containerd-ttrpc-1.1.0) - ("go-github-com-containerd-nri-0.1.0" - ,go-github-com-containerd-nri-0.1.0) - ("go-github-com-containerd-imgcrypt-1.1.3" - ,go-github-com-containerd-imgcrypt-1.1.3) - ("go-github-com-containerd-go-runc-1.0.0" - ,go-github-com-containerd-go-runc-1.0.0) - ("go-github-com-containerd-go-cni-1.1.3" - ,go-github-com-containerd-go-cni-1.1.3) - ("go-github-com-containerd-fifo-1.0.0" - ,go-github-com-containerd-fifo-1.0.0) - ("go-github-com-containerd-continuity-0.2.2" - ,go-github-com-containerd-continuity-0.2.2) - ("go-github-com-containerd-console-1.0.3" - ,go-github-com-containerd-console-1.0.3) - ("go-github-com-containerd-cgroups-1.0.3" - ,go-github-com-containerd-cgroups-1.0.3) - ("go-github-com-containerd-btrfs-1.0.0" - ,go-github-com-containerd-btrfs-1.0.0) - ("go-github-com-containerd-aufs-1.0.0" - ,go-github-com-containerd-aufs-1.0.0) - ("go-github-com-microsoft-hcsshim-0.9.2" - ,go-github-com-microsoft-hcsshim-0.9.2) - ("go-github-com-microsoft-go-winio-0.5.1" - ,go-github-com-microsoft-go-winio-0.5.1) - ("go-github-com-adalogics-go-fuzz-headers-0.0.0-20210715213245-6c3934b029d8" - ,go-github-com-adalogics-go-fuzz-headers-0.0.0-20210715213245-6c3934b029d8) - ("go-cloud-google-com-go-0.81.0" ,go-cloud-google-com-go-0.81.0))) - (home-page "https://github.com/containerd/containerd") - (synopsis "Now Recruiting") - (description - "containerd is an industry-standard container runtime with an emphasis on -simplicity, robustness and portability. It is available as a daemon for Linux -and Windows, which can manage the complete container lifecycle of its host -system: image transfer and storage, container execution and supervision, -low-level storage and network attachments, etc.") - (license license:asl2.0))) -(define-public go-github-com-containernetworking-cni-1.0.1 - (package - (name "go-github-com-containernetworking-cni") - (version "1.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containernetworking/cni") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0jzijcb96z26lchh6j4js3rl7c148mwlaiz3s6ww47kljnxmv05f")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containernetworking/cni")) - (propagated-inputs - `(("go-github-com-onsi-gomega-1.10.1" ,go-github-com-onsi-gomega-1.10.1) - ("go-github-com-onsi-ginkgo-1.13.0" - ,go-github-com-onsi-ginkgo-1.13.0))) - (home-page "https://github.com/containernetworking/cni") - (synopsis "CNI - the Container Network Interface") - (description - "CNI (), a @url{https://cncf.io,Cloud Native Computing Foundation} project, -consists of a specification and libraries for writing plugins to configure -network interfaces in Linux containers, along with a number of supported -plugins. CNI concerns itself only with network connectivity of containers and -removing allocated resources when the container is deleted. Because of this -focus, CNI has a wide range of support and the specification is simple to -implement.") - (license license:asl2.0))) -(define-public go-github-com-containernetworking-plugins-1.1.0 - (package - (name "go-github-com-containernetworking-plugins") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containernetworking/plugins") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "10c9sxi5nq88772ql35a3vy5m1wrdyji4imc4ysl27malcqxhiik")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containernetworking/plugins")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) - ("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" - ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) - ("go-golang-org-x-text-0.3.6" ,go-golang-org-x-text-0.3.6) - ("go-golang-org-x-net-0.0.0-20210428140749-89ef3d95e781" - ,go-golang-org-x-net-0.0.0-20210428140749-89ef3d95e781) - ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) - ("go-github-com-vishvananda-netns-0.0.0-20210104183010-2eb08e3e575f" - ,go-github-com-vishvananda-netns-0.0.0-20210104183010-2eb08e3e575f) - ("go-github-com-sirupsen-logrus-1.8.1" - ,go-github-com-sirupsen-logrus-1.8.1) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-nxadm-tail-1.4.8" ,go-github-com-nxadm-tail-1.4.8) - ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" - ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2) - ("go-github-com-fsnotify-fsnotify-1.4.9" - ,go-github-com-fsnotify-fsnotify-1.4.9) - ("go-github-com-containerd-cgroups-1.0.1" - ,go-github-com-containerd-cgroups-1.0.1) - ("go-github-com-microsoft-go-winio-0.4.17" - ,go-github-com-microsoft-go-winio-0.4.17) - ("go-golang-org-x-sys-0.0.0-20210809222454-d867a43fc93e" - ,go-golang-org-x-sys-0.0.0-20210809222454-d867a43fc93e) - ("go-github-com-vishvananda-netlink-1.1.1-0.20210330154013-f5de75959ad5" - ,go-github-com-vishvananda-netlink-1.1.1-0.20210330154013-f5de75959ad5) - ("go-github-com-safchain-ethtool-0.0.0-20210803160452-9aa261dae9b1" - ,go-github-com-safchain-ethtool-0.0.0-20210803160452-9aa261dae9b1) - ("go-github-com-onsi-gomega-1.15.0" ,go-github-com-onsi-gomega-1.15.0) - ("go-github-com-onsi-ginkgo-1.16.4" ,go-github-com-onsi-ginkgo-1.16.4) - ("go-github-com-networkplumbing-go-nft-0.2.0" - ,go-github-com-networkplumbing-go-nft-0.2.0) - ("go-github-com-mattn-go-shellwords-1.0.12" - ,go-github-com-mattn-go-shellwords-1.0.12) - ("go-github-com-godbus-dbus-v5-5.0.4" - ,go-github-com-godbus-dbus-v5-5.0.4) - ("go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5" - ,go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5) - ("go-github-com-d2g-dhcp4client-1.0.0" - ,go-github-com-d2g-dhcp4client-1.0.0) - ("go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c" - ,go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c) - ("go-github-com-coreos-go-systemd-v22-22.3.2" - ,go-github-com-coreos-go-systemd-v22-22.3.2) - ("go-github-com-coreos-go-iptables-0.6.0" - ,go-github-com-coreos-go-iptables-0.6.0) - ("go-github-com-containernetworking-cni-1.0.1" - ,go-github-com-containernetworking-cni-1.0.1) - ("go-github-com-buger-jsonparser-1.1.1" - ,go-github-com-buger-jsonparser-1.1.1) - ("go-github-com-alexflint-go-filemutex-1.1.0" - ,go-github-com-alexflint-go-filemutex-1.1.0) - ("go-github-com-microsoft-hcsshim-0.8.20" - ,go-github-com-microsoft-hcsshim-0.8.20))) - (home-page "https://github.com/containernetworking/plugins") - (synopsis "Plugins") - (description - "Some CNI network plugins, maintained by the containernetworking team. For more -information, see the @url{https://www.cni.dev,CNI website}.") - (license license:asl2.0))) -(define-public go-github-com-containers-image-v5-5.19.1 - (package - (name "go-github-com-containers-image-v5") - (version "5.19.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containers/image") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0wyq3ns6yrzi9bff2kb8p3rppw652m4ffq8374sdjkn7f39z4inf")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containers/image/v5")) - (propagated-inputs - `(("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" - ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) - ("go-golang-org-x-sys-0.0.0-20220114195835-da31bd327af9" - ,go-golang-org-x-sys-0.0.0-20220114195835-da31bd327af9) - ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" - ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) - ("go-golang-org-x-net-0.0.0-20211112202133-69e39bad7dc2" - ,go-golang-org-x-net-0.0.0-20211112202133-69e39bad7dc2) - ("go-golang-org-x-crypto-0.0.0-20211215153901-e495a2d5b3d3" - ,go-golang-org-x-crypto-0.0.0-20211215153901-e495a2d5b3d3) - ("go-go-etcd-io-bbolt-1.3.6" ,go-go-etcd-io-bbolt-1.3.6) - ("go-github-com-xeipuuv-gojsonschema-1.2.0" - ,go-github-com-xeipuuv-gojsonschema-1.2.0) - ("go-github-com-xeipuuv-gojsonpointer-0.0.0-20190809123943-df4f5c81cb3b" - ,go-github-com-xeipuuv-gojsonpointer-0.0.0-20190809123943-df4f5c81cb3b) - ("go-github-com-vbauerster-mpb-v7-7.3.2" - ,go-github-com-vbauerster-mpb-v7-7.3.2) - ("go-github-com-vbatts-tar-split-0.11.2" - ,go-github-com-vbatts-tar-split-0.11.2) - ("go-github-com-ulikunitz-xz-0.5.10" - ,go-github-com-ulikunitz-xz-0.5.10) - ("go-github-com-sylabs-sif-v2-2.3.1" - ,go-github-com-sylabs-sif-v2-2.3.1) - ("go-github-com-stretchr-testify-1.7.0" - ,go-github-com-stretchr-testify-1.7.0) - ("go-github-com-sirupsen-logrus-1.8.1" - ,go-github-com-sirupsen-logrus-1.8.1) - ("go-github-com-proglottis-gpgme-0.1.1" - ,go-github-com-proglottis-gpgme-0.1.1) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-ostreedev-ostree-go-0.0.0-20190702140239-759a8c1ac913" - ,go-github-com-ostreedev-ostree-go-0.0.0-20190702140239-759a8c1ac913) - ("go-github-com-opencontainers-selinux-1.10.0" - ,go-github-com-opencontainers-selinux-1.10.0) - ("go-github-com-opencontainers-image-spec-1.0.3-0.20211202193544-a5463b7f9c84" - ,go-github-com-opencontainers-image-spec-1.0.3-0.20211202193544-a5463b7f9c84) - ("go-github-com-opencontainers-go-digest-1.0.0" - ,go-github-com-opencontainers-go-digest-1.0.0) - ("go-github-com-manifoldco-promptui-0.9.0" - ,go-github-com-manifoldco-promptui-0.9.0) - ("go-github-com-klauspost-pgzip-1.2.5" - ,go-github-com-klauspost-pgzip-1.2.5) - ("go-github-com-klauspost-compress-1.14.2" - ,go-github-com-klauspost-compress-1.14.2) - ("go-github-com-imdario-mergo-0.3.12" - ,go-github-com-imdario-mergo-0.3.12) - ("go-github-com-hashicorp-go-multierror-1.1.1" - ,go-github-com-hashicorp-go-multierror-1.1.1) - ("go-github-com-gorilla-mux-1.7.4" ,go-github-com-gorilla-mux-1.7.4) - ("go-github-com-ghodss-yaml-1.0.0" ,go-github-com-ghodss-yaml-1.0.0) - ("go-github-com-docker-libtrust-0.0.0-20160708172513-aabc10ec26b7" - ,go-github-com-docker-libtrust-0.0.0-20160708172513-aabc10ec26b7) - ("go-github-com-docker-go-connections-0.4.0" - ,go-github-com-docker-go-connections-0.4.0) - ("go-github-com-docker-docker-credential-helpers-0.6.4" - ,go-github-com-docker-docker-credential-helpers-0.6.4) - ("go-github-com-docker-docker-20.10.12+incompatible" - ,go-github-com-docker-docker-20.10.12+incompatible) - ("go-github-com-docker-distribution-2.7.1+incompatible" - ,go-github-com-docker-distribution-2.7.1+incompatible) - ("go-github-com-containers-storage-1.38.2" - ,go-github-com-containers-storage-1.38.2) - ("go-github-com-containers-ocicrypt-1.1.2" - ,go-github-com-containers-ocicrypt-1.1.2) - ("go-github-com-containers-libtrust-0.0.0-20190913040956-14b96171aa3b" - ,go-github-com-containers-libtrust-0.0.0-20190913040956-14b96171aa3b) - ("go-github-com-containerd-containerd-1.5.9" - ,go-github-com-containerd-containerd-1.5.9) - ("go-github-com-burntsushi-toml-1.0.0" - ,go-github-com-burntsushi-toml-1.0.0) - ("go-github-com-14rcole-gopopulate-0.0.0-20180821133914-b175b219e774" - ,go-github-com-14rcole-gopopulate-0.0.0-20180821133914-b175b219e774))) - (home-page "https://github.com/containers/image") - (synopsis "") - (description - "The package image provides libraries and commands to interact with container -images.") - (license license:asl2.0))) -(define-public go-github-com-creack-pty-1.1.17 - (package - (name "go-github-com-creack-pty") - (version "1.1.17") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/creack/pty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "09lcq5bw1dwppxjia05sj4fy7gbk62vishfz1bgrbd1r06i57mjf")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/creack/pty")) - (home-page "https://github.com/creack/pty") - (synopsis "pty") - (description - "Package pty provides functions for working with Unix terminals.") - (license license:expat))) -(define-public go-github-com-cyphar-filepath-securejoin-0.2.3 - (package - (name "go-github-com-cyphar-filepath-securejoin") - (version "0.2.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cyphar/filepath-securejoin") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0w03d8hslwfhcnfqck21agzs7y0sc6gpwfz53md8fv26ishwxppy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/cyphar/filepath-securejoin")) - (home-page "https://github.com/cyphar/filepath-securejoin") - (synopsis #f) - (description - "Package securejoin is an implementation of the hopefully-soon-to-be-included -SecureJoin helper that is meant to be part of the \"path/filepath\" package. The -purpose of this project is to provide a PoC implementation to make the -SecureJoin proposal -(@url{https://github.com/golang/go/issues/20126,https://github.com/golang/go/issues/20126}) -more tangible.") - (license license:bsd-3))) -(define-public go-github-com-docker-docker-20.10.12+incompatible - (package - (name "go-github-com-docker-docker") - (version "20.10.12+incompatible") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/moby/moby") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "17j820ij8p6w61jyg5g6y5dwv56dh1w178f6ia2i2dc9b8mz6b5a")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/docker/docker")) - (home-page "https://github.com/docker/docker") - (synopsis "The Moby Project") - (description - "Moby is an open-source project created by Docker to enable and accelerate -software containerization.") - (license license:asl2.0))) -(define-public go-github-com-fatih-color-1.13.0 - (package - (name "go-github-com-fatih-color") - (version "1.13.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/fatih/color") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "029qkxsdpblhrpgbv4fcmqwkqnjhx08hwiqp19pd7zz6l8a373ay")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/fatih/color")) - (propagated-inputs - `(("go-github-com-mattn-go-isatty-0.0.14" - ,go-github-com-mattn-go-isatty-0.0.14) - ("go-github-com-mattn-go-colorable-0.1.9" - ,go-github-com-mattn-go-colorable-0.1.9))) - (home-page "https://github.com/fatih/color") - (synopsis "color") - (description - "Package color is an ANSI color package to output colorized or SGR defined output -to the standard output. The API can be used in several way, pick one that suits -you.") - (license license:expat))) -(define-public go-github-com-go-log-log-0.2.0 - (package - (name "go-github-com-go-log-log") - (version "0.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/go-log/log") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1idnqv4yvkmdh3wcsgvhcpak9z6ix8dsifdjq5kfbbnskdq5rmvg")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/go-log/log")) - (home-page "https://github.com/go-log/log") - (synopsis "Log") - (description "Package log provides a log interface") - (license license:expat))) -(define-public go-github-com-google-uuid-1.3.0 - (package - (name "go-github-com-google-uuid") - (version "1.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/uuid") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0imkw52m7fzrwsdj2rfrk3zbplqfbwncyv6hv89xw0vdw3jpk122")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/uuid")) - (home-page "https://github.com/google/uuid") - (synopsis "uuid") - (description "Package uuid generates and inspects UUIDs.") - (license license:bsd-3))) -(define-public go-github-com-opencontainers-go-digest-1.0.0 - (package - (name "go-github-com-opencontainers-go-digest") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/go-digest") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0i5acjajvr6hi9zb7gxwifd8w28y884cv7cx36adj8lngj647xbi")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/go-digest")) - (home-page "https://github.com/opencontainers/go-digest") - (synopsis "go-digest") - (description - "Package digest provides a generalized type to opaquely represent message digests -and their operations within the registry. The Digest type is designed to serve -as a flexible identifier in a content-addressable system. More importantly, it -provides tools and wrappers to work with hash.Hash-based digests with little -effort.") - (license (list license:asl2.0 license:cc-by-sa4.0)))) -(define-public go-github-com-opencontainers-image-spec-1.0.3-0.20211202193544-a5463b7f9c84 - (package - (name "go-github-com-opencontainers-image-spec") - (version "1.0.3-0.20211202193544-a5463b7f9c84") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/image-spec") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "11js6467d7fhcvad4aw26d4p0r5b33vf41qhcf1bdwx0y7smd7s4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/image-spec")) - (propagated-inputs - `(("go-github-com-xeipuuv-gojsonschema-1.2.0" - ,go-github-com-xeipuuv-gojsonschema-1.2.0) - ("go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415" - ,go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415) - ("go-github-com-russross-blackfriday-1.6.0" - ,go-github-com-russross-blackfriday-1.6.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-go-digest-1.0.0" - ,go-github-com-opencontainers-go-digest-1.0.0))) - (home-page "https://github.com/opencontainers/image-spec") - (synopsis "OCI Image Format Specification") - (description - "The OCI Image Format project creates and maintains the software shipping -container image format spec (OCI Image Format).") - (license license:asl2.0))) -(define-public go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417 - (package - (name "go-github-com-opencontainers-runtime-spec") - (version "1.0.3-0.20210326190908-1c3f411f0417") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/runtime-spec") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1azk8z41ga8af35c966f06vrq9y9hwz6mkm59r3py5qaamzim3qq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) - (home-page "https://github.com/opencontainers/runtime-spec") - (synopsis "Open Container Initiative Runtime Specification") - (description - "The @url{https://www.opencontainers.org,Open Container Initiative} develops -specifications for standards on Operating System process and application -containers.") - (license license:asl2.0))) -(define-public go-github-com-opencontainers-runtime-tools-0.9.1-0.20210326182921-59cdde06764b - (package - (name "go-github-com-opencontainers-runtime-tools") - (version "0.9.1-0.20210326182921-59cdde06764b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/runtime-tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0f4zy6x1rrrg10bphwijic30m3r4mq934zbavnci6jyi41l1w2r0")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/runtime-tools")) - (home-page "https://github.com/opencontainers/runtime-tools") - (synopsis "oci-runtime-tool") - (description - "oci-runtime-tool is a collection of tools for working with the -@url{https://github.com/opencontainers/runtime-spec,OCI runtime specification}. -To build from source code, runtime-tools requires Go 1.10.x or above.") - (license license:asl2.0))) -(define-public go-github-com-opencontainers-selinux-1.10.0 - (package - (name "go-github-com-opencontainers-selinux") - (version "1.10.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/selinux") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "118q1d9py9zhym4jmyiivasmllkdnkp1zyx4brc6n2cfmxfph6gc")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/selinux")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777" - ,go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777))) - (home-page "https://github.com/opencontainers/selinux") - (synopsis "selinux") - (description "Common SELinux package used across the container ecosystem.") - (license license:asl2.0))) -(define-public go-github-com-opencontainers-umoci-0.4.7 - (package - (name "go-github-com-opencontainers-umoci") - (version "0.4.7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/umoci") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0in8kyi4jprvbm3zsl3risbjj8b0ma62yl3rq8rcvcgypx0mn7d4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/umoci")) - (propagated-inputs - `(("go-gopkg-in-yaml-v3-3.0.0-20200615113413-eeeca48fe776" - ,go-gopkg-in-yaml-v3-3.0.0-20200615113413-eeeca48fe776) - ("go-gopkg-in-check-v1-1.0.0-20200227125254-8fa46927fb4f" - ,go-gopkg-in-check-v1-1.0.0-20200227125254-8fa46927fb4f) - ("go-google-golang-org-protobuf-1.24.0" - ,go-google-golang-org-protobuf-1.24.0) - ("go-golang-org-x-sys-0.0.0-20200622214017-ed371f2e16b4" - ,go-golang-org-x-sys-0.0.0-20200622214017-ed371f2e16b4) - ("go-golang-org-x-crypto-0.0.0-20200604202706-70a84ac30bf9" - ,go-golang-org-x-crypto-0.0.0-20200604202706-70a84ac30bf9) - ("go-github-com-vbatts-go-mtree-0.5.0" - ,go-github-com-vbatts-go-mtree-0.5.0) - ("go-github-com-urfave-cli-1.22.4" ,go-github-com-urfave-cli-1.22.4) - ("go-github-com-tj-assert-0.0.3" ,go-github-com-tj-assert-0.0.3) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-sirupsen-logrus-1.6.0" - ,go-github-com-sirupsen-logrus-1.6.0) - ("go-github-com-rootless-containers-proto-0.1.0" - ,go-github-com-rootless-containers-proto-0.1.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-runtime-spec-1.0.2" - ,go-github-com-opencontainers-runtime-spec-1.0.2) - ("go-github-com-opencontainers-runc-1.0.0-rc90" - ,go-github-com-opencontainers-runc-1.0.0-rc90) - ("go-github-com-opencontainers-image-spec-1.0.1" - ,go-github-com-opencontainers-image-spec-1.0.1) - ("go-github-com-opencontainers-go-digest-1.0.0" - ,go-github-com-opencontainers-go-digest-1.0.0) - ("go-github-com-niemeyer-pretty-0.0.0-20200227124842-a10e7caefd8e" - ,go-github-com-niemeyer-pretty-0.0.0-20200227124842-a10e7caefd8e) - ("go-github-com-mohae-deepcopy-0.0.0-20170929034955-c48cc78d4826" - ,go-github-com-mohae-deepcopy-0.0.0-20170929034955-c48cc78d4826) - ("go-github-com-mattn-go-colorable-0.1.6" - ,go-github-com-mattn-go-colorable-0.1.6) - ("go-github-com-kr-text-0.2.0" ,go-github-com-kr-text-0.2.0) - ("go-github-com-klauspost-pgzip-1.2.4" - ,go-github-com-klauspost-pgzip-1.2.4) - ("go-github-com-klauspost-compress-1.11.3" - ,go-github-com-klauspost-compress-1.11.3) - ("go-github-com-google-go-cmp-0.5.0" - ,go-github-com-google-go-cmp-0.5.0) - ("go-github-com-golang-protobuf-1.4.2" - ,go-github-com-golang-protobuf-1.4.2) - ("go-github-com-docker-go-units-0.4.0" - ,go-github-com-docker-go-units-0.4.0) - ("go-github-com-cyphar-filepath-securejoin-0.2.2" - ,go-github-com-cyphar-filepath-securejoin-0.2.2) - ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" - ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) - ("go-github-com-apex-log-1.4.0" ,go-github-com-apex-log-1.4.0) - ("go-github-com-adamkorcz-go-fuzz-headers-0.0.0-20210312213058-32f4d319f0d2" - ,go-github-com-adamkorcz-go-fuzz-headers-0.0.0-20210312213058-32f4d319f0d2))) - (home-page "https://github.com/opencontainers/umoci") - (synopsis "Install") - (description - "@strong{u}moci @strong{m}odifies @strong{O}pen @strong{C}ontainer -@strong{i}mages.") - (license license:asl2.0))) -(define-public go-github-com-pelletier-go-toml-1.9.4 - (package - (name "go-github-com-pelletier-go-toml") - (version "1.9.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pelletier/go-toml") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0f2d9m19dadl18i2baf57xygvn9vprm6wb8chvpx8kipx94nchyl")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pelletier/go-toml")) - (home-page "https://github.com/pelletier/go-toml") - (synopsis "go-toml") - (description "Package toml is a TOML parser and manipulation library.") - (license license:expat))) -(define-public go-github-com-pkg-errors-0.9.1 - (package - (name "go-github-com-pkg-errors") - (version "0.9.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pkg/errors") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1761pybhc2kqr6v5fm8faj08x9bql8427yqg6vnfv6nhrasx1mwq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pkg/errors")) - (home-page "https://github.com/pkg/errors") - (synopsis "errors") - (description "Package errors provides simple error handling primitives.") - (license license:bsd-2))) -(define-public go-github-com-seccomp-containers-golang-0.6.0 - (package - (name "go-github-com-seccomp-containers-golang") - (version "0.6.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/seccomp/containers-golang") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0clrwdnmr131a65h66br57bsnr17i1s3kq9cc7ljrdaym57y6cfz")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/seccomp/containers-golang")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20200720211630-cb9d2d5c5666" - ,go-golang-org-x-sys-0.0.0-20200720211630-cb9d2d5c5666) - ("go-github-com-xeipuuv-gojsonschema-1.2.0" - ,go-github-com-xeipuuv-gojsonschema-1.2.0) - ("go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2" - ,go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2) - ("go-github-com-sirupsen-logrus-1.6.0" - ,go-github-com-sirupsen-logrus-1.6.0) - ("go-github-com-seccomp-libseccomp-golang-0.9.1" - ,go-github-com-seccomp-libseccomp-golang-0.9.1) - ("go-github-com-opencontainers-selinux-1.6.0" - ,go-github-com-opencontainers-selinux-1.6.0) - ("go-github-com-opencontainers-runtime-tools-0.9.0" - ,go-github-com-opencontainers-runtime-tools-0.9.0) - ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200710190001-3e4195d92445" - ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200710190001-3e4195d92445) - ("go-github-com-hashicorp-go-multierror-1.1.0" - ,go-github-com-hashicorp-go-multierror-1.1.0) - ("go-github-com-blang-semver-3.5.1+incompatible" - ,go-github-com-blang-semver-3.5.1+incompatible))) - (home-page "https://github.com/seccomp/containers-golang") - (synopsis "containers-golang") - (description - "@code{containers-golang} is a set of Go libraries used by container runtimes to -generate and load seccomp mappings into the kernel.") - (license license:asl2.0))) -(define-public go-github-com-seccomp-libseccomp-golang-0.9.2-0.20210429002308-3879420cc921 - (package - (name "go-github-com-seccomp-libseccomp-golang") - (version "0.9.2-0.20210429002308-3879420cc921") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/seccomp/libseccomp-golang") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ypr3j50cd9lnj9szfyh45kh0cf7swm7cv2svz1575mldd9m1xr9")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/seccomp/libseccomp-golang")) - (home-page "https://github.com/seccomp/libseccomp-golang") - (synopsis #f) - (description - "Package seccomp provides bindings for libseccomp, a library wrapping the Linux -seccomp syscall. Seccomp enables an application to restrict system call use for -itself and its children.") - (license license:bsd-2))) -(define-public go-github-com-spf13-cobra-1.3.0 - (package - (name "go-github-com-spf13-cobra") - (version "1.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/spf13/cobra") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0j3kj6yxrl2aigixapjl6bi2gmghrj52763wbd7jc079f38wz94n")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/spf13/cobra")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) - ("go-github-com-spf13-viper-1.10.0" ,go-github-com-spf13-viper-1.10.0) - ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) - ("go-github-com-inconshreveable-mousetrap-1.0.0" - ,go-github-com-inconshreveable-mousetrap-1.0.0) - ("go-github-com-cpuguy83-go-md2man-v2-2.0.1" - ,go-github-com-cpuguy83-go-md2man-v2-2.0.1))) - (home-page "https://github.com/spf13/cobra") - (synopsis "Overview") - (description - "Package cobra is a commander providing a simple interface to create powerful -modern CLI interfaces. In addition to providing an interface, Cobra -simultaneously provides a controller to organize your application code.") - (license license:asl2.0))) -(define-public go-github-com-spf13-pflag-1.0.5 - (package - (name "go-github-com-spf13-pflag") - (version "1.0.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/spf13/pflag") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0gpmacngd0gpslnbkzi263f5ishigzgh6pbdv9hp092rnjl4nd31")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/spf13/pflag")) - (home-page "https://github.com/spf13/pflag") - (synopsis "Description") - (description - "Package pflag is a drop-in replacement for Go's flag package, implementing -POSIX/GNU-style --flags.") - (license license:bsd-3))) -(define-public go-github-com-sylabs-json-resp-0.8.0 - (package - (name "go-github-com-sylabs-json-resp") - (version "0.8.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sylabs/json-resp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ygr4mavaj1pp78hkkphhn3ydd923n3klwnx8x7v4ajqzx4cx4id")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/sylabs/json-resp")) - (home-page "https://github.com/sylabs/json-resp") - (synopsis "JSON Response") - (description - "The @code{json-resp} package contains a small set of functions that are used to -marshall and unmarshall response data and errors in JSON format.") - (license license:bsd-3))) -(define-public go-github-com-vbauerster-mpb-v7-7.4.1 - (package - (name "go-github-com-vbauerster-mpb-v7") - (version "7.4.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/vbauerster/mpb") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ii1r84qjfp2spvj6nb8xy5b3nsfw17jmwgp55zkaz9n9lfj75w2")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/vbauerster/mpb/v7")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20220209214540-3681064d5158" - ,go-golang-org-x-sys-0.0.0-20220209214540-3681064d5158) - ("go-github-com-mattn-go-runewidth-0.0.13" - ,go-github-com-mattn-go-runewidth-0.0.13) - ("go-github-com-acarl005-stripansi-0.0.0-20180116102854-5a71ef0e047d" - ,go-github-com-acarl005-stripansi-0.0.0-20180116102854-5a71ef0e047d) - ("go-github-com-vividcortex-ewma-1.2.0" - ,go-github-com-vividcortex-ewma-1.2.0))) - (home-page "https://github.com/vbauerster/mpb") - (synopsis "Multi Progress Bar") - (description - "Package mpb is a library for rendering progress bars in terminal applications.") - (license license:unlicense))) -(define-public go-golang-org-x-sys-0.0.0-20220209214540-3681064d5158 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20220209214540-3681064d5158") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0cw9rzb4rxmr2si28pjqx3wv5r119c83kd08yy1h7nf725bzrs89")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) -(define-public go-golang-org-x-term-0.0.0-20210916214954-140adaaadfaf - (package - (name "go-golang-org-x-term") - (version "0.0.0-20210916214954-140adaaadfaf") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/term") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1rcdx2q92pzpmdyzdlzpq9flc3ibfi3m1rni7w4qlmlq569s6wh3")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/term")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1" - ,go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1))) - (home-page "https://golang.org/x/term") - (synopsis "Go terminal/console support") - (description - "Package term provides support functions for dealing with terminals, as commonly -found on UNIX systems.") - (license license:bsd-3))) -(define-public go-gopkg-in-yaml-v2-2.4.0 - (package - (name "go-gopkg-in-yaml-v2") - (version "2.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1pbmrpj7gcws34g8vwna4i2nhm9p6235piww36436xhyaa10cldr")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v2") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language.") - (license license:asl2.0))) -(define-public go-gotest-tools-v3-3.1.0 - (package - (name "go-gotest-tools-v3") - (version "3.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gotestyourself/gotest.tools") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0jk2grk2q19k453m76hn2bsq9i73yk63drlfjg1imvhmmcl88872")))) - (build-system go-build-system) - (arguments - '(#:import-path "gotest.tools/v3" #:unpack-path "gotest.tools/v3")) - (propagated-inputs - `(("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) - ("go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4" - ,go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4) - ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-google-go-cmp-0.5.5" - ,go-github-com-google-go-cmp-0.5.5))) - (home-page "https://gotest.tools/v3") - (synopsis "gotest.tools") - (description - "Package gotesttools is a collection of packages to augment `testing` and support -common patterns.") - (license license:asl2.0))) -(define-public go-mvdan-cc-sh-v3-3.4.3-0.20220202175809-113ed667a8a7 - (package - (name "go-mvdan-cc-sh-v3") - (version "3.4.3-0.20220202175809-113ed667a8a7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mvdan/sh") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1k5113qqm20x58838k8f0ry3v1hinahjf2yl8y4450922yy0mq2k")))) - (build-system go-build-system) - (arguments - '(#:import-path "mvdan.cc/sh/v3" #:unpack-path "mvdan.cc/sh/v3")) - (propagated-inputs - `(("go-mvdan-cc-editorconfig-0.2.0" ,go-mvdan-cc-editorconfig-0.2.0) - ("go-golang-org-x-term-0.0.0-20210916214954-140adaaadfaf" - ,go-golang-org-x-term-0.0.0-20210916214954-140adaaadfaf) - ("go-golang-org-x-sys-0.0.0-20210925032602-92d5a993a665" - ,go-golang-org-x-sys-0.0.0-20210925032602-92d5a993a665) - ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" - ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) - ("go-github-com-rogpeppe-go-internal-1.8.1-0.20210923151022-86f73c517451" - ,go-github-com-rogpeppe-go-internal-1.8.1-0.20210923151022-86f73c517451) - ("go-github-com-pkg-diff-0.0.0-20210226163009-20ebb0f2a09e" - ,go-github-com-pkg-diff-0.0.0-20210226163009-20ebb0f2a09e) - ("go-github-com-kr-pretty-0.3.0" ,go-github-com-kr-pretty-0.3.0) - ("go-github-com-google-renameio-1.0.1" - ,go-github-com-google-renameio-1.0.1) - ("go-github-com-frankban-quicktest-1.13.1" - ,go-github-com-frankban-quicktest-1.13.1) - ("go-github-com-creack-pty-1.1.15" ,go-github-com-creack-pty-1.1.15))) - (home-page "https://mvdan.cc/sh/v3") - (synopsis "sh") - (description - "This package provides a shell parser, formatter, and interpreter. Supports -@url{https://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html,POSIX -Shell}, @url{https://www.gnu.org/software/bash/,Bash}, and -@url{http://www.mirbsd.org/mksh.htm,mksh}. Requires Go 1.16 or later.") - (license license:bsd-3))) -(define-public go-oras-land-oras-go-1.1.0 - (package - (name "go-oras-land-oras-go") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/oras-project/oras-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1mbn57dgpr7m2f7cw5r9s8kka44khrgqca84np6wnjiyzxgr1khk")))) - (build-system go-build-system) - (arguments '(#:import-path "oras.land/oras-go")) - (propagated-inputs - `(("go-gopkg-in-yaml-v3-3.0.0-20210107192922-496545a6307b" - ,go-gopkg-in-yaml-v3-3.0.0-20210107192922-496545a6307b) - ("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) - ("go-gopkg-in-check-v1-1.0.0-20200227125254-8fa46927fb4f" - ,go-gopkg-in-check-v1-1.0.0-20200227125254-8fa46927fb4f) - ("go-google-golang-org-protobuf-1.27.1" - ,go-google-golang-org-protobuf-1.27.1) - ("go-google-golang-org-grpc-1.43.0" ,go-google-golang-org-grpc-1.43.0) - ("go-google-golang-org-genproto-0.0.0-20220107163113-42d7afdf6368" - ,go-google-golang-org-genproto-0.0.0-20220107163113-42d7afdf6368) - ("go-golang-org-x-text-0.3.7" ,go-golang-org-x-text-0.3.7) - ("go-golang-org-x-sys-0.0.0-20211216021012-1d35b9e2eb4e" - ,go-golang-org-x-sys-0.0.0-20211216021012-1d35b9e2eb4e) - ("go-golang-org-x-net-0.0.0-20220107192237-5cfca573fb4d" - ,go-golang-org-x-net-0.0.0-20220107192237-5cfca573fb4d) - ("go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20140908184405-b21fdbd4370f" - ,go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20140908184405-b21fdbd4370f) - ("go-github-com-yvasiyarov-gorelic-0.0.0-20141212073537-a9bba5b9ab50" - ,go-github-com-yvasiyarov-gorelic-0.0.0-20141212073537-a9bba5b9ab50) - ("go-github-com-yvasiyarov-go-metrics-0.0.0-20140926110328-57bccd1ccd43" - ,go-github-com-yvasiyarov-go-metrics-0.0.0-20140926110328-57bccd1ccd43) - ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) - ("go-github-com-prometheus-procfs-0.6.0" - ,go-github-com-prometheus-procfs-0.6.0) - ("go-github-com-prometheus-common-0.10.0" - ,go-github-com-prometheus-common-0.10.0) - ("go-github-com-prometheus-client-model-0.2.0" - ,go-github-com-prometheus-client-model-0.2.0) - ("go-github-com-prometheus-client-golang-1.7.1" - ,go-github-com-prometheus-client-golang-1.7.1) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-niemeyer-pretty-0.0.0-20200227124842-a10e7caefd8e" - ,go-github-com-niemeyer-pretty-0.0.0-20200227124842-a10e7caefd8e) - ("go-github-com-morikuni-aec-1.0.0" ,go-github-com-morikuni-aec-1.0.0) - ("go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd" - ,go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd) - ("go-github-com-moby-sys-mountinfo-0.5.0" - ,go-github-com-moby-sys-mountinfo-0.5.0) - ("go-github-com-moby-locker-1.0.1" ,go-github-com-moby-locker-1.0.1) - ("go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369" - ,go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369) - ("go-github-com-kr-text-0.2.0" ,go-github-com-kr-text-0.2.0) - ("go-github-com-klauspost-compress-1.13.6" - ,go-github-com-klauspost-compress-1.13.6) - ("go-github-com-inconshreveable-mousetrap-1.0.0" - ,go-github-com-inconshreveable-mousetrap-1.0.0) - ("go-github-com-gorilla-mux-1.8.0" ,go-github-com-gorilla-mux-1.8.0) - ("go-github-com-gorilla-handlers-1.5.1" - ,go-github-com-gorilla-handlers-1.5.1) - ("go-github-com-google-go-cmp-0.5.6" - ,go-github-com-google-go-cmp-0.5.6) - ("go-github-com-gomodule-redigo-1.8.2" - ,go-github-com-gomodule-redigo-1.8.2) - ("go-github-com-golang-protobuf-1.5.2" - ,go-github-com-golang-protobuf-1.5.2) - ("go-github-com-golang-groupcache-0.0.0-20210331224755-41bb18bfe9da" - ,go-github-com-golang-groupcache-0.0.0-20210331224755-41bb18bfe9da) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2) - ("go-github-com-felixge-httpsnoop-1.0.1" - ,go-github-com-felixge-httpsnoop-1.0.1) - ("go-github-com-docker-libtrust-0.0.0-20150114040149-fa567046d9b1" - ,go-github-com-docker-libtrust-0.0.0-20150114040149-fa567046d9b1) - ("go-github-com-docker-go-units-0.4.0" - ,go-github-com-docker-go-units-0.4.0) - ("go-github-com-docker-go-metrics-0.0.1" - ,go-github-com-docker-go-metrics-0.0.1) - ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" - ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) - ("go-github-com-docker-go-connections-0.4.0" - ,go-github-com-docker-go-connections-0.4.0) - ("go-github-com-docker-docker-credential-helpers-0.6.4" - ,go-github-com-docker-docker-credential-helpers-0.6.4) - ("go-github-com-docker-distribution-2.7.1+incompatible" - ,go-github-com-docker-distribution-2.7.1+incompatible) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1) - ("go-github-com-containerd-cgroups-1.0.2" - ,go-github-com-containerd-cgroups-1.0.2) - ("go-github-com-cespare-xxhash-v2-2.1.1" - ,go-github-com-cespare-xxhash-v2-2.1.1) - ("go-github-com-bugsnag-panicwrap-0.0.0-20151223152923-e2c28503fcd0" - ,go-github-com-bugsnag-panicwrap-0.0.0-20151223152923-e2c28503fcd0) - ("go-github-com-bugsnag-osext-0.0.0-20130617224835-0dd3f918b21b" - ,go-github-com-bugsnag-osext-0.0.0-20130617224835-0dd3f918b21b) - ("go-github-com-bugsnag-bugsnag-go-0.0.0-20141110184014-b1d153021fcd" - ,go-github-com-bugsnag-bugsnag-go-0.0.0-20141110184014-b1d153021fcd) - ("go-github-com-bshuster-repo-logrus-logstash-hook-1.0.0" - ,go-github-com-bshuster-repo-logrus-logstash-hook-1.0.0) - ("go-github-com-beorn7-perks-1.0.1" ,go-github-com-beorn7-perks-1.0.1) - ("go-github-com-shopify-logrus-bugsnag-0.0.0-20171204204709-577dee27f20d" - ,go-github-com-shopify-logrus-bugsnag-0.0.0-20171204204709-577dee27f20d) - ("go-github-com-microsoft-hcsshim-0.9.1" - ,go-github-com-microsoft-hcsshim-0.9.1) - ("go-github-com-microsoft-go-winio-0.5.1" - ,go-github-com-microsoft-go-winio-0.5.1) - ("go-github-com-azure-go-ansiterm-0.0.0-20170929234023-d6e3b3328b78" - ,go-github-com-azure-go-ansiterm-0.0.0-20170929234023-d6e3b3328b78) - ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" - ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) - ("go-golang-org-x-crypto-0.0.0-20211117183948-ae814b36b871" - ,go-golang-org-x-crypto-0.0.0-20211117183948-ae814b36b871) - ("go-github-com-stretchr-testify-1.7.0" - ,go-github-com-stretchr-testify-1.7.0) - ("go-github-com-spf13-cobra-1.2.1" ,go-github-com-spf13-cobra-1.2.1) - ("go-github-com-sirupsen-logrus-1.8.1" - ,go-github-com-sirupsen-logrus-1.8.1) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-phayes-freeport-0.0.0-20180830031419-95f893ade6f2" - ,go-github-com-phayes-freeport-0.0.0-20180830031419-95f893ade6f2) - ("go-github-com-opencontainers-image-spec-1.0.2" - ,go-github-com-opencontainers-image-spec-1.0.2) - ("go-github-com-opencontainers-go-digest-1.0.0" - ,go-github-com-opencontainers-go-digest-1.0.0) - ("go-github-com-docker-docker-20.10.11+incompatible" - ,go-github-com-docker-docker-20.10.11+incompatible) - ("go-github-com-docker-cli-20.10.11+incompatible" - ,go-github-com-docker-cli-20.10.11+incompatible) - ("go-github-com-distribution-distribution-v3-3.0.0-20211118083504-a29a3c99a684" - ,go-github-com-distribution-distribution-v3-3.0.0-20211118083504-a29a3c99a684) - ("go-github-com-containerd-containerd-1.5.9" - ,go-github-com-containerd-containerd-1.5.9))) - (home-page "https://oras.land/oras-go") - (synopsis "ORAS Go library") - (description - "Documentation for the ORAS Go library is located on the project website: -@url{https://oras.land/client_libraries/go/,oras.land/client_libraries/go}") - (license license:asl2.0))) -(define-public go-github-com-opencontainers-image-spec-1.0.2-0.20211117181255-693428a734f5 - (package - (name "go-github-com-opencontainers-image-spec") - (version "1.0.2-0.20211117181255-693428a734f5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/image-spec") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1w9fmamky30idjbqs78qhds6d5b9gdy6wzcxx6fhmpm2159dv62b")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/image-spec")) - (home-page "https://github.com/opencontainers/image-spec") - (synopsis "OCI Image Format Specification") - (description - "The OCI Image Format project creates and maintains the software shipping -container image format spec (OCI Image Format).") - (license license:asl2.0))) - -(define-public go-github-com-moby-sys - (package - (name "go-github-com-moby-sys") - (version "0.0.0-20220308220145-03355939d693") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/moby/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ns4bav4n0k93nwz898dmcrz9zm4fa08sxyzhi7wqj4f8mpz4fam")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/moby/sys")) - (home-page "https://github.com/moby/sys") - (synopsis #f) - (description #f) - (license license:asl2.0))) -(define-public go-github-com-urfave-cli-1.22.5 - (package - (name "go-github-com-urfave-cli") - (version "1.22.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/urfave/cli") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1n8lk58j7bdsp47yh5bcpsw38lhkbyzcy3203ffkawc2rvkf1pp7")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/urfave/cli")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) - ("go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d" - ,go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d) - ("go-github-com-burntsushi-toml-0.3.1" - ,go-github-com-burntsushi-toml-0.3.1))) - (home-page "https://github.com/urfave/cli") - (synopsis "cli") - (description - "Package cli provides a minimal framework for creating and organizing command -line Go applications. cli is designed to be easy to understand and write, the -most simple cli application can be written as follows:") - (license license:expat))) -(define-public go-github-com-xeipuuv-gojsonpointer-0.0.0-20190905194746-02993c407bfb - (package - (name "go-github-com-xeipuuv-gojsonpointer") - (version "0.0.0-20190905194746-02993c407bfb") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/xeipuuv/gojsonpointer") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0y7gmpgsm8c12ax4a0ij9srmd9d424iq224n172ckwfqf37amvzy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/xeipuuv/gojsonpointer")) - (home-page "https://github.com/xeipuuv/gojsonpointer") - (synopsis "gojsonpointer") - (description "An implementation of JSON Pointer - Go language") - (license license:asl2.0))) -(define-public go-github-com-yvasiyarov-go-metrics-0.0.0-20150112132944-c25f46c4b940 - (package - (name "go-github-com-yvasiyarov-go-metrics") - (version "0.0.0-20150112132944-c25f46c4b940") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/yvasiyarov/go-metrics") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0p1hx4ml4gzgyj8n0fg5lv8bq092zwg00n59lq8v8sphjc1h8i8d")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/yvasiyarov/go-metrics")) - (home-page "https://github.com/yvasiyarov/go-metrics") - (synopsis "go-metrics") - (description "Go port of Coda Hale's Metrics library") - (license license:expat))) -(define-public go-github-com-yvasiyarov-gorelic-0.0.6 - (package - (name "go-github-com-yvasiyarov-gorelic") - (version "0.0.6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/yvasiyarov/gorelic") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0210d8z7l945611b5ynzjhnypqfdyr490ndrap13s4k5z1jgqjnb")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/yvasiyarov/gorelic")) - (home-page "https://github.com/yvasiyarov/gorelic") - (synopsis "GoRelic is deprecated in favour of") - (description - "Package gorelic is an New Relic agent implementation for Go runtime. It collect -a lot of metrics about Go scheduler, garbage collector and memory allocator and -send them to NewRelic.") - (license license:bsd-2))) -(define-public go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20160601141957-9c099fbc30e9 - (package - (name "go-github-com-yvasiyarov-newrelic-platform-go") - (version "0.0.0-20160601141957-9c099fbc30e9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/yvasiyarov/newrelic_platform_go") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0n6jap27qc7b7c37ck1gv9biq5nfl7y06jk0cqgc517yfnb4f07x")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/yvasiyarov/newrelic_platform_go")) - (home-page "https://github.com/yvasiyarov/newrelic_platform_go") - (synopsis "New Relic Platform Agent SDK for Go(golang)") - (description - "Package newrelic_platform_go is New Relic Platform Agent SDK for Go language.") - (license license:bsd-2))) From 851dd1c11b9c5a00fa2a674950203a30c60bdbb4 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Thu, 24 Mar 2022 13:52:38 +0100 Subject: [PATCH 276/383] adding apptainer 1.0.1 --- glicid/packages/golang.scm | 12676 +++++++++++++++++++++++++++++++++-- 1 file changed, 12007 insertions(+), 669 deletions(-) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index f0ce537..e8200f8 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -6,6 +6,174 @@ #:use-module (guix packages) ) +(define-public go-github-com-creack-pty-1.1.17 + (package + (name "go-github-com-creack-pty") + (version "1.1.17") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/creack/pty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "09lcq5bw1dwppxjia05sj4fy7gbk62vishfz1bgrbd1r06i57mjf")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/creack/pty")) + (home-page "https://github.com/creack/pty") + (synopsis "pty") + (description + "Package pty provides functions for working with Unix terminals.") + (license license:expat))) + +(define-public go-github-com-davecgh-go-spew-1.1.0 + (package + (name "go-github-com-davecgh-go-spew") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/davecgh/go-spew") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/davecgh/go-spew")) + (home-page "https://github.com/davecgh/go-spew") + (synopsis "go-spew") + (description + "Go-spew implements a deep pretty printer for Go data structures to aid in +debugging. A comprehensive suite of tests with 100% test coverage is provided +to ensure proper functionality. See @code{test_coverage.txt} for the gocov +coverage report. Go-spew is licensed under the liberal ISC license, so it may +be used in open source or commercial projects.") + (license license:isc))) + +(define-public go-github-com-pmezard-go-difflib-1.0.0 + (package + (name "go-github-com-pmezard-go-difflib") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pmezard/go-difflib") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pmezard/go-difflib")) + (home-page "https://github.com/pmezard/go-difflib") + (synopsis "go-difflib") + (description + "Go-difflib is a partial port of python 3 difflib package. Its main goal was to +make unified and context diff available in pure Go, mostly for testing purposes.") + (license license:bsd-3))) + +(define-public go-github-com-stretchr-objx-0.1.0 + (package + (name "go-github-com-stretchr-objx") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/objx") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/objx")) + (home-page "https://github.com/stretchr/objx") + (synopsis "Objx") + (description + "Objx - Go package for dealing with maps, slices, JSON and other data.") + (license license:expat))) + +(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 + (package + (name "go-gopkg-in-check-v1") + (version "0.0.0-20161208181325-20d25e280405") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/check.v1") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) + (home-page "https://gopkg.in/check.v1") + (synopsis "Instructions") + (description + "Package check is a rich testing extension for Go's testing package.") + (license license:bsd-2))) + +(define-public go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c + (package + (name "go-gopkg-in-yaml-v3") + (version "3.0.0-20200313102051-9f266ea9e77c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v3") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1bbai3lzb50m0x2vwsdbagrbhvfylj9k1m32hgbqwldqx4p9ay35")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v3") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language.") + (license unknown-license!))) + +(define-public go-github-com-stretchr-testify-1.6.1 + (package + (name "go-github-com-stretchr-testify") + (version "1.6.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1yhiqqzjvi63pf01rgzx68gqkkvjx03fvl5wk30br5l6s81s090l")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (propagated-inputs + `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" + ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) + ("go-github-com-stretchr-objx-0.1.0" + ,go-github-com-stretchr-objx-0.1.0) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.0" + ,go-github-com-davecgh-go-spew-1.1.0))) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in +it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that +your code will behave as you intend.") + (license license:expat))) + (define-public go-github-com-netflix-go-expect-0.0.0-20220104043353-73e0943537d2 (package (name "go-github-com-netflix-go-expect") @@ -33,6 +201,157 @@ applications. It is unlike expect in that it does not spawn or manage process lifecycle. This package only focuses on expecting output and sending input through it's psuedoterminal.") (license license:asl2.0))) + +(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20180917221912-90fa682c2a6e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-golang-org-x-text-0.3.3 + (package + (name "go-golang-org-x-text") + (version "0.3.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19pihqm3phyndmiw6i42pdv6z1rbvlqlsnhsyqf9gsnn0qnmqqlh")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/text")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" + ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) + (home-page "https://golang.org/x/text") + (synopsis "Go Text") + (description + "text is a repository of text-related packages related to internationalization +(i18n) and localization (l10n), such as character encodings, text +transformations, and locale-specific text handling.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20210226172049-e18ecbb05110") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1vlq8mdscp7yfaa1lmyv03y5m4c2d67ydg2q1i6smkrxghn3zn3q")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) + ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" + ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) + ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" + ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20201119102817-f84b799fce68") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1dvhqian5byzkcg1bnqzygqa6ccc6krc2q7j12pp1vhl3y7znnsg")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1 + (package + (name "go-golang-org-x-term") + (version "0.0.0-20201126162022-7de9c90e9dd1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/term") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ba252xmv6qsvf1w1gcy98mngrj0vd4inbjw0lsklqvva65nljna")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/term")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" + ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) + (home-page "https://golang.org/x/term") + (synopsis "Go terminal/console support") + (description + "Package term provides support functions for dealing with terminals, as commonly +found on UNIX systems.") + (license license:bsd-3))) + +(define-public go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20210322153248-0c34fe9e7dc2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "021szs1czc0xg4chpays7i05dvkax9s8mns314ab01r887kchqxq")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" + ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) + ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" + ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68) + ("go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110" + ,go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + (define-public go-github-com-protonmail-go-crypto-0.0.0-20220113124808-70ae35bab23f (package (name "go-github-com-protonmail-go-crypto") @@ -58,6 +377,247 @@ through it's psuedoterminal.") replace all imports of @code{golang.org/x/crypto/openpgp} with @code{github.com/ProtonMail/go-crypto/openpgp}.") (license license:bsd-3))) + +(define-public go-github-com-docker-distribution-2.7.1+incompatible + (package + (name "go-github-com-docker-distribution") + (version "2.7.1+incompatible") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/distribution/distribution") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1nx8b5a68rn81alp8wkkw6qd5v32mgf0fk23mxm60zdf63qk1nzw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/docker/distribution")) + (home-page "https://github.com/docker/distribution") + (synopsis "Distribution") + (description + "Package distribution will define the interfaces for the components of docker +distribution. The goal is to allow users to reliably package, ship and store +content related to docker images.") + (license license:asl2.0))) + +(define-public go-github-com-docker-libtrust-0.0.0-20160708172513-aabc10ec26b7 + (package + (name "go-github-com-docker-libtrust") + (version "0.0.0-20160708172513-aabc10ec26b7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/docker/libtrust") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1lwslbggzc2b0c4wxl5pn6i2nfgz5jz8f7s7vnid9mrlsk59h7s1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/docker/libtrust")) + (home-page "https://github.com/docker/libtrust") + (synopsis "libtrust") + (description + "Package libtrust provides an interface for managing authentication and +authorization using public key cryptography. Authentication is handled using +the identity attached to the public key and verified through TLS x509 +certificates, a key challenge, or signature. Authorization and access control +is managed through a trust graph distributed between both remote trust servers +and locally cached and managed data.") + (license license:asl2.0))) + +(define-public go-github-com-gorilla-mux-1.7.4 + (package + (name "go-github-com-gorilla-mux") + (version "1.7.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gorilla/mux") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1d0sy1paa055ic84sp3766s9pa24q008hf77dc842vrgvn8p3wmh")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/gorilla/mux")) + (home-page "https://github.com/gorilla/mux") + (synopsis "gorilla/mux") + (description "Package mux implements a request router and dispatcher.") + (license license:bsd-3))) + +(define-public go-github-com-davecgh-go-spew-1.1.1 + (package + (name "go-github-com-davecgh-go-spew") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/davecgh/go-spew") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/davecgh/go-spew")) + (home-page "https://github.com/davecgh/go-spew") + (synopsis "go-spew") + (description + "Go-spew implements a deep pretty printer for Go data structures to aid in +debugging. A comprehensive suite of tests with 100% test coverage is provided +to ensure proper functionality. See @code{test_coverage.txt} for the gocov +coverage report. Go-spew is licensed under the liberal ISC license, so it may +be used in open source or commercial projects.") + (license license:isc))) + +(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.1 + (package + (name "go-github-com-konsorten-go-windows-terminal-sequences") + (version "1.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/konsorten/go-windows-terminal-sequences") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1lchgf27n276vma6iyxa0v1xds68n2g8lih5lavqnx5x6q5pw2ip")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) + (home-page "https://github.com/konsorten/go-windows-terminal-sequences") + (synopsis "Windows Terminal Sequences") + (description + "This library allow for enabling Windows terminal color support for Go.") + (license license:expat))) + +(define-public go-github-com-pmezard-go-difflib-1.0.0 + (package + (name "go-github-com-pmezard-go-difflib") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pmezard/go-difflib") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pmezard/go-difflib")) + (home-page "https://github.com/pmezard/go-difflib") + (synopsis "go-difflib") + (description + "Go-difflib is a partial port of python 3 difflib package. Its main goal was to +make unified and context diff available in pure Go, mostly for testing purposes.") + (license license:bsd-3))) + +(define-public go-github-com-stretchr-objx-0.1.1 + (package + (name "go-github-com-stretchr-objx") + (version "0.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/objx") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0iph0qmpyqg4kwv8jsx6a56a7hhqq8swrazv40ycxk9rzr0s8yls")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/objx")) + (home-page "https://github.com/stretchr/objx") + (synopsis "Objx") + (description + "Objx - Go package for dealing with maps, slices, JSON and other data.") + (license license:expat))) + +(define-public go-github-com-stretchr-testify-1.2.2 + (package + (name "go-github-com-stretchr-testify") + (version "1.2.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0dlszlshlxbmmfxj5hlwgv3r22x0y1af45gn1vd198nvvs3pnvfs")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in +it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that +your code will behave as you intend.") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190422165155-953cdadca894") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0gkha4whk8xkcv3isigbs250akag99isxnd3v9xmy0kl3g88hxy1")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-sirupsen-logrus-1.4.2 + (package + (name "go-github-com-sirupsen-logrus") + (version "1.4.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sirupsen/logrus") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "087k2lxrr9p9dh68yw71d05h5g9p5v26zbwd6j7lghinjfaw334x")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/sirupsen/logrus")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894" + ,go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894) + ("go-github-com-stretchr-testify-1.2.2" + ,go-github-com-stretchr-testify-1.2.2) + ("go-github-com-stretchr-objx-0.1.1" + ,go-github-com-stretchr-objx-0.1.1) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.1" + ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.1) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/sirupsen/logrus") + (synopsis "Logrus") + (description + "Package logrus is a structured logger for Go, completely API compatible with the +standard library logger.") + (license license:expat))) + (define-public go-github-com-adigunhammedolalekan-registry-auth-0.0.0-20200730122110-8cde180a3a60 (package (name "go-github-com-adigunhammedolalekan-registry-auth") @@ -89,6 +649,1524 @@ replace all imports of @code{golang.org/x/crypto/openpgp} with here [https://github.com/docker/distribution/blob/1b9ab303a477ded9bdd3fc97e9119fa8f9e58fca/docs/spec/auth/index.md]") (license license:expat))) + +(define-public go-github-com-stretchr-testify-1.3.0 + (package + (name "go-github-com-stretchr-testify") + (version "1.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wjchp2c8xbgcbbq32w3kvblk6q6yn533g78nxl6iskq6y95lxsy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (propagated-inputs + `(("go-github-com-stretchr-objx-0.1.0" + ,go-github-com-stretchr-objx-0.1.0) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.0" + ,go-github-com-davecgh-go-spew-1.1.0))) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in +it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that +your code will behave as you intend.") + (license license:expat))) + +(define-public go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0 + (package + (name "go-github-com-tj-assert") + (version "0.0.0-20171129193455-018094318fb0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/tj/assert") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "15ika7izp5hkd10dm30apwfvpm0d1yl2rnxs6896q0svz9zvi2z3")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/tj/assert")) + (home-page "https://github.com/tj/assert") + (synopsis "assert") + (description + "Package assert implements the same assertions as the `assert` package but stops +test execution when a test fails.") + (license license:expat))) + +(define-public go-github-com-apex-logs-1.0.0 + (package + (name "go-github-com-apex-logs") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/apex/logs") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1kysjp3s8718p02ngpr60gnjjspv0a69biksfjqa1540svrbi850")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/apex/logs")) + (propagated-inputs + `(("go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0" + ,go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0) + ("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0))) + (home-page "https://github.com/apex/logs") + (synopsis "Example") + (description "Go client for @url{https://apex.sh/logs/,Apex Logs}.") + (license license:expat))) + +(define-public go-github-com-aphistic-golf-0.0.0-20180712155816-02c07f170c5a + (package + (name "go-github-com-aphistic-golf") + (version "0.0.0-20180712155816-02c07f170c5a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/aphistic/golf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1qixab9bb29wqbr4nc5j3g25hq1j7am93f181rkj7a4qacncx763")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/aphistic/golf")) + (home-page "https://github.com/aphistic/golf") + (synopsis "golf") + (description + "This package provides logging capabilities using the GELF +(@url{https://www.graylog.org/resources/gelf-2/,https://www.graylog.org/resources/gelf-2/}) +log format") + (license license:expat))) + +(define-public go-github-com-mattn-go-isatty-0.0.5 + (package + (name "go-github-com-mattn-go-isatty") + (version "0.0.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mattn/go-isatty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "114d5xm8rfxplzd7nxz97gfngb4bhqy102szl084d1afcxsvm4aa")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mattn/go-isatty")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223" + ,go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223))) + (home-page "https://github.com/mattn/go-isatty") + (synopsis "go-isatty") + (description "Package isatty implements interface to isatty") + (license license:expat))) + +(define-public go-github-com-mattn-go-colorable-0.1.1 + (package + (name "go-github-com-mattn-go-colorable") + (version "0.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mattn/go-colorable") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0l640974j804c1yyjfgyxqlsivz0yrzmbql4mhcw2azryigkp08p")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mattn/go-colorable")) + (propagated-inputs + `(("go-github-com-mattn-go-isatty-0.0.5" + ,go-github-com-mattn-go-isatty-0.0.5))) + (home-page "https://github.com/mattn/go-colorable") + (synopsis "go-colorable") + (description "Colorable writer for windows.") + (license license:expat))) + +(define-public go-github-com-mgutz-ansi-0.0.0-20170206155736-9520e82c474b + (package + (name "go-github-com-mgutz-ansi") + (version "0.0.0-20170206155736-9520e82c474b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mgutz/ansi") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "00bz22314j26736w1f0q4jy9d9dfaml17vn890n5zqy3cmvmww1j")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mgutz/ansi")) + (home-page "https://github.com/mgutz/ansi") + (synopsis "ansi") + (description + "Package ansi is a small, fast library to create ANSI colored strings and codes.") + (license license:expat))) + +(define-public go-github-com-fsnotify-fsnotify-1.4.7 + (package + (name "go-github-com-fsnotify-fsnotify") + (version "1.4.7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/fsnotify/fsnotify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/fsnotify/fsnotify")) + (home-page "https://github.com/fsnotify/fsnotify") + (synopsis "File system notifications for Go") + (description + "Package fsnotify provides a platform-independent interface for file system +notifications.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.2.0 + (package + (name "go-github-com-golang-protobuf") + (version "1.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0kf4b59rcbb1cchfny2dm9jyznp8ri2hsb14n8iak1q8986xa0ab")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code +github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-github-com-hpcloud-tail-1.0.0 + (package + (name "go-github-com-hpcloud-tail") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hpcloud/tail") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1njpzc0pi1acg5zx9y6vj9xi6ksbsc5d387rd6904hy6rh2m6kn0")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hpcloud/tail")) + (home-page "https://github.com/hpcloud/tail") + (synopsis "Go package for tail-ing files") + (description + "This package provides a Go package striving to emulate the features of the BSD +@code{tail} program.") + (license license:expat))) + +(define-public go-github-com-onsi-ginkgo-1.6.0 + (package + (name "go-github-com-onsi-ginkgo") + (version "1.6.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/onsi/ginkgo") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0x0gc89vgq38xhgmi2h22bhr73cf2gmk42g89nz89k8dgg9hhr25")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/onsi/ginkgo")) + (home-page "https://github.com/onsi/ginkgo") + (synopsis "Ginkgo 2.0 Release Candidate is available!") + (description "Ginkgo is a BDD-style testing framework for Golang") + (license license:expat))) + +(define-public go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd + (package + (name "go-golang-org-x-net") + (version "0.0.0-20180906233101-161cd47e91fd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0254ld010iijygbzykib2vags1dc0wlmcmhgh4jl8iny159lhbcv")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20180314180146-1d60e4601c6f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "046jlanz2lkxq1r57x9bl6s4cvfqaic6p2xybsj8mq1120jv4rs6")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the ones +provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20180909124046-d0be0721c37e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "081wyvfnlf842dqg03raxfz6lldlxpmyh1prix9lmrrm65arxb12")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-gopkg-in-fsnotify-v1-1.4.7 + (package + (name "go-gopkg-in-fsnotify-v1") + (version "1.4.7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/fsnotify.v1") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) + (build-system go-build-system) + (arguments + '(#:import-path + "gopkg.in/fsnotify.v1" + #:unpack-path + "gopkg.in/fsnotify.v1")) + (home-page "https://gopkg.in/fsnotify.v1") + (synopsis "File system notifications for Go") + (description + "Package fsnotify provides a platform-independent interface for file system +notifications.") + (license license:bsd-3))) + +(define-public go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7 + (package + (name "go-gopkg-in-tomb-v1") + (version "1.0.0-20141024135613-dd632973f1e7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/tomb.v1") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1lqmq1ag7s4b3gc3ddvr792c5xb5k6sfn0cchr3i2s7f1c231zjv")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/tomb.v1" #:unpack-path "gopkg.in/tomb.v1")) + (home-page "https://gopkg.in/tomb.v1") + (synopsis "Installation and usage") + (description + "The tomb package offers a conventional API for clean goroutine termination.") + (license license:bsd-3))) + +(define-public go-gopkg-in-yaml-v2-2.2.1 + (package + (name "go-gopkg-in-yaml-v2") + (version "2.2.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0dwjrs2lp2gdlscs7bsrmyc5yf6mm4fvgw71bzr9mv2qrd2q73s1")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v2") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language.") + (license license:asl2.0))) + +(define-public go-github-com-onsi-gomega-1.5.0 + (package + (name "go-github-com-onsi-gomega") + (version "1.5.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/onsi/gomega") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1n7i4hksdgv410m43v2sw14bl5vy59dkp6nlw5l76nibbh37syr9")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/onsi/gomega")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1) + ("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" + ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) + ("go-gopkg-in-fsnotify-v1-1.4.7" ,go-gopkg-in-fsnotify-v1-1.4.7) + ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e" + ,go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e) + ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" + ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) + ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" + ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) + ("go-github-com-onsi-ginkgo-1.6.0" ,go-github-com-onsi-ginkgo-1.6.0) + ("go-github-com-hpcloud-tail-1.0.0" ,go-github-com-hpcloud-tail-1.0.0) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0) + ("go-github-com-fsnotify-fsnotify-1.4.7" + ,go-github-com-fsnotify-fsnotify-1.4.7))) + (home-page "https://github.com/onsi/gomega") + (synopsis ": a BDD Testing Framework for Golang") + (description + "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library.") + (license license:expat))) + +(define-public go-github-com-sergi-go-diff-1.0.0 + (package + (name "go-github-com-sergi-go-diff") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sergi/go-diff") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0swiazj8wphs2zmk1qgq75xza6m19snif94h2m6fi8dqkwqdl7c7")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/sergi/go-diff")) + (home-page "https://github.com/sergi/go-diff") + (synopsis "go-diff") + (description + "go-diff offers algorithms to perform operations required for synchronizing plain +text:") + (license license:expat))) + +(define-public go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190404232315-eb5bcb51f2a3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "17k4g8krxbl84gzcs275b7gsh66dzm15fdxivjnx9xz8q84l4kby")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20190412213103-97732733099d + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190412213103-97732733099d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "118hkp01i4z1f5h6hcjm0ff2ngqhrzj1f7731n0kw8dr6hvbx0sw")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-crypto-0.0.0-20190426145343-a29dc8fdc734 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20190426145343-a29dc8fdc734") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "07f0jj4haqs0ywc1akk1qjwn5msl2j0pry1rxjkkbfcq4r6ihc1p")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" + ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) + ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" + ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-github-com-aphistic-sweet-0.2.0 + (package + (name "go-github-com-aphistic-sweet") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/aphistic/sweet") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1bb4qagfxf6byqn2yx0vq24xfvisz3ah4w6bvqclc8cklvfngw43")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/aphistic/sweet")) + (propagated-inputs + `(("go-golang-org-x-crypto-0.0.0-20190426145343-a29dc8fdc734" + ,go-golang-org-x-crypto-0.0.0-20190426145343-a29dc8fdc734) + ("go-github-com-sergi-go-diff-1.0.0" + ,go-github-com-sergi-go-diff-1.0.0) + ("go-github-com-onsi-gomega-1.5.0" ,go-github-com-onsi-gomega-1.5.0) + ("go-github-com-mgutz-ansi-0.0.0-20170206155736-9520e82c474b" + ,go-github-com-mgutz-ansi-0.0.0-20170206155736-9520e82c474b) + ("go-github-com-mattn-go-colorable-0.1.1" + ,go-github-com-mattn-go-colorable-0.1.1))) + (home-page "https://github.com/aphistic/sweet") + (synopsis "sweet") + (description + "Sweet is a pluggable test runner capable of hooking into standard Go tests. It +attempts to provide access to the standard Go test tool as close as possible +while adding support for test suites and plugins that can hook into test results +to add additional functionality.") + (license license:expat))) + +(define-public go-github-com-jmespath-go-jmespath-0.0.0-20180206201540-c2b33e8439af + (package + (name "go-github-com-jmespath-go-jmespath") + (version "0.0.0-20180206201540-c2b33e8439af") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jmespath/go-jmespath") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1r6w7ydx8ydryxk3sfhzsk8m6f1nsik9jg3i1zhi69v4kfl4d5cz")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/jmespath/go-jmespath")) + (home-page "https://github.com/jmespath/go-jmespath") + (synopsis "go-jmespath - A JMESPath implementation in Go") + (description + "go-jmespath is a GO implementation of JMESPath, which is a query language for +JSON. It will take a JSON document and transform it into another JSON document +through a JMESPath expression.") + (license license:asl2.0))) + +(define-public go-github-com-aws-aws-sdk-go-1.20.6 + (package + (name "go-github-com-aws-aws-sdk-go") + (version "1.20.6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/aws/aws-sdk-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "016vy5s9finyfgh08j7rvn2pnwymdgj2ydr59w57pysnri87mdwx")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/aws/aws-sdk-go")) + (propagated-inputs + `(("go-github-com-jmespath-go-jmespath-0.0.0-20180206201540-c2b33e8439af" + ,go-github-com-jmespath-go-jmespath-0.0.0-20180206201540-c2b33e8439af))) + (home-page "https://github.com/aws/aws-sdk-go") + (synopsis "AWS SDK for Go") + (description + "Package sdk is the official AWS SDK for the Go programming language.") + (license license:asl2.0))) + +(define-public go-github-com-aybabtme-rgbterm-0.0.0-20170906152045-cc83f3b3ce59 + (package + (name "go-github-com-aybabtme-rgbterm") + (version "0.0.0-20170906152045-cc83f3b3ce59") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/aybabtme/rgbterm") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wvmxvjn64968ikvnxrflb1x8rlcwzpfl53fzbxff2axbx9lq50q")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/aybabtme/rgbterm")) + (home-page "https://github.com/aybabtme/rgbterm") + (synopsis "RGB terminal") + (description + "Package rgbterm colorizes bytes and strings using RGB colors, for a full range +of pretty terminal strings.") + (license unknown-license!))) + +(define-public go-github-com-fatih-color-1.7.0 + (package + (name "go-github-com-fatih-color") + (version "1.7.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/fatih/color") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0v8msvg38r8d1iiq2i5r4xyfx0invhc941kjrsg5gzwvagv55inv")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/fatih/color")) + (home-page "https://github.com/fatih/color") + (synopsis "color") + (description + "Package color is an ANSI color package to output colorized or SGR defined output +to the standard output. The API can be used in several way, pick one that suits +you.") + (license license:expat))) + +(define-public go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515 + (package + (name "go-github-com-kr-logfmt") + (version "0.0.0-20140226030751-b84e30acd515") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/logfmt") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "02ldzxgznrfdzvghfraslhgp19la1fczcbzh7wm2zdc6lmpd1qq9")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/logfmt")) + (home-page "https://github.com/kr/logfmt") + (synopsis #f) + (description "Package implements the decoding of logfmt key-value pairs.") + (license license:expat))) + +(define-public go-github-com-go-logfmt-logfmt-0.4.0 + (package + (name "go-github-com-go-logfmt-logfmt") + (version "0.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/go-logfmt/logfmt") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "06smxc112xmixz78nyvk3b2hmc7wasf2sl5vxj1xz62kqcq9lzm9")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/go-logfmt/logfmt")) + (propagated-inputs + `(("go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515" + ,go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515))) + (home-page "https://github.com/go-logfmt/logfmt") + (synopsis "logfmt") + (description + "Package logfmt implements utilities to marshal and unmarshal data in the logfmt +format. The logfmt format records key/value pairs in a way that balances +readability for humans and simplicity of computer parsing. It is most commonly +used as a more human friendly alternative to JSON for structured logging.") + (license license:expat))) + +(define-public go-github-com-golang-protobuf-1.3.1 + (package + (name "go-github-com-golang-protobuf") + (version "1.3.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "15am4s4646qy6iv0g3kkqq52rzykqjhm4bf08dk0fy2r58knpsyl")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code +github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-github-com-google-uuid-1.1.1 + (package + (name "go-github-com-google-uuid") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/uuid") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hfxcf9frkb57k6q0rdkrmnfs78ms21r1qfk9fhlqga2yh5xg8zb")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/uuid")) + (home-page "https://github.com/google/uuid") + (synopsis "uuid") + (description "Package uuid generates and inspects UUIDs.") + (license license:bsd-3))) + +(define-public go-github-com-jpillora-backoff-0.0.0-20180909062703-3050d21c67d7 + (package + (name "go-github-com-jpillora-backoff") + (version "0.0.0-20180909062703-3050d21c67d7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jpillora/backoff") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1nxapdx9xg5gwiscfhq7m0w14hj4gaxb4avmgf1mx9zd3jnw9jxv")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/jpillora/backoff")) + (home-page "https://github.com/jpillora/backoff") + (synopsis "Backoff") + (description + "Package backoff provides an exponential-backoff implementation.") + (license license:expat))) + +(define-public go-github-com-kr-pty-1.1.1 + (package + (name "go-github-com-kr-pty") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/pty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0383f0mb9kqjvncqrfpidsf8y6ns5zlrc91c6a74xpyxjwvzl2y6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/pty")) + (home-page "https://github.com/kr/pty") + (synopsis "pty") + (description + "Package pty is a wrapper for github.com/creack/pty, which provides functions for +working with Unix terminals.") + (license license:expat))) + +(define-public go-github-com-kr-text-0.1.0 + (package + (name "go-github-com-kr-text") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1gm5bsl01apvc84bw06hasawyqm4q84vx1pm32wr9jnd7a8vjgj1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/text")) + (propagated-inputs + `(("go-github-com-kr-pty-1.1.1" ,go-github-com-kr-pty-1.1.1))) + (home-page "https://github.com/kr/text") + (synopsis #f) + (description + "Package text provides rudimentary functions for manipulating text in paragraphs.") + (license license:expat))) + +(define-public go-github-com-kr-pretty-0.2.0 + (package + (name "go-github-com-kr-pretty") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/pretty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ywbfzz1h3a3qd8rpkiqwi1dm4w8ls9ijb4x1b7567grns9f0vnp")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/pretty")) + (propagated-inputs + `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) + (home-page "https://github.com/kr/pretty") + (synopsis #f) + (description + "Package pretty provides pretty-printing for Go values. This is useful during +debugging, to avoid wrapping long output lines in the terminal.") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190222072716-a9d3bda3a223") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1w45zc13xrjzl19s1sx74r5mg3lf2z2nm13wygcdq5r5pyjlhdz9")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-mattn-go-isatty-0.0.8 + (package + (name "go-github-com-mattn-go-isatty") + (version "0.0.8") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mattn/go-isatty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0rqfh1rj6f5wm8p2ky7inm8g10152p7w6n2cli17kf9gad797i8h")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mattn/go-isatty")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223" + ,go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223))) + (home-page "https://github.com/mattn/go-isatty") + (synopsis "go-isatty") + (description "Package isatty implements interface to isatty") + (license license:expat))) + +(define-public go-github-com-mattn-go-colorable-0.1.2 + (package + (name "go-github-com-mattn-go-colorable") + (version "0.1.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mattn/go-colorable") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0512jm3wmzkkn7d99x9wflyqf48n5ri3npy1fqkq6l6adc5mni3n")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mattn/go-colorable")) + (propagated-inputs + `(("go-github-com-mattn-go-isatty-0.0.8" + ,go-github-com-mattn-go-isatty-0.0.8))) + (home-page "https://github.com/mattn/go-colorable") + (synopsis "go-colorable") + (description "Colorable writer for windows.") + (license license:expat))) + +(define-public go-github-com-pkg-errors-0.8.1 + (package + (name "go-github-com-pkg-errors") + (version "0.8.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pkg/errors") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0g5qcb4d4fd96midz0zdk8b9kz8xkzwfa8kr1cliqbg8sxsy5vd1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pkg/errors")) + (home-page "https://github.com/pkg/errors") + (synopsis "errors") + (description "Package errors provides simple error handling primitives.") + (license license:bsd-2))) + +(define-public go-github-com-rogpeppe-fastuuid-1.1.0 + (package + (name "go-github-com-rogpeppe-fastuuid") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/rogpeppe/fastuuid") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1jlif5pxyz3md02ij93kd2y2j1zz0ajc9k8azvn83vv6l3r5c1zg")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/rogpeppe/fastuuid")) + (home-page "https://github.com/rogpeppe/fastuuid") + (synopsis "fastuuid") + (description + "Package fastuuid provides fast UUID generation of 192 bit universally unique +identifiers.") + (license license:bsd-3))) + +(define-public go-github-com-smartystreets-go-aws-auth-0.0.0-20180515143844-0c1422d1fdb9 + (package + (name "go-github-com-smartystreets-go-aws-auth") + (version "0.0.0-20180515143844-0c1422d1fdb9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/smarty-archives/go-aws-auth") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0krfdpgn3gfii1z9fi8ydfw0wwfqyvp6w3rji7w92m528zkjl93d")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/smartystreets/go-aws-auth")) + (home-page "https://github.com/smartystreets/go-aws-auth") + (synopsis "go-aws-auth") + (description + "Package awsauth implements AWS request signing using Signed Signature Version 2, +Signed Signature Version 3, and Signed Signature Version 4. Supports S3 and +STS.") + (license license:expat))) + +(define-public go-github-com-smartystreets-assertions-1.0.0 + (package + (name "go-github-com-smartystreets-assertions") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/smartystreets/assertions") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1188hs39zvil41sdnxs83h1hp319lfyc5n2rvd1xnhz1dh5qjjh4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/smartystreets/assertions")) + (home-page "https://github.com/smartystreets/assertions") + (synopsis #f) + (description + "Package assertions contains the implementations for all assertions which are +referenced in goconvey's `convey` package +(github.com/smartystreets/goconvey/convey) and gunit +(github.com/smartystreets/gunit) for use with the So(...) method. They can also +be used in traditional Go test functions and even in applications.") + (license license:expat))) + +(define-public go-github-com-smartystreets-gunit-1.0.0 + (package + (name "go-github-com-smartystreets-gunit") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/smartystreets/gunit") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "11d09rl5qqpj36a311pjj8w5jkj83d5b8gdcsx8f1zn4j924sm5d")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/smartystreets/gunit")) + (propagated-inputs + `(("go-github-com-smartystreets-assertions-1.0.0" + ,go-github-com-smartystreets-assertions-1.0.0))) + (home-page "https://github.com/smartystreets/gunit") + (synopsis "gunit") + (description + "Package gunit provides \"testing\" package hooks and convenience functions for +writing tests in an xUnit style. See the README file and the examples folder +for examples.") + (license license:expat))) + +(define-public go-github-com-davecgh-go-spew-1.1.1 + (package + (name "go-github-com-davecgh-go-spew") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/davecgh/go-spew") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/davecgh/go-spew")) + (home-page "https://github.com/davecgh/go-spew") + (synopsis "go-spew") + (description + "Go-spew implements a deep pretty printer for Go data structures to aid in +debugging. A comprehensive suite of tests with 100% test coverage is provided +to ensure proper functionality. See @code{test_coverage.txt} for the gocov +coverage report. Go-spew is licensed under the liberal ISC license, so it may +be used in open source or commercial projects.") + (license license:isc))) + +(define-public go-github-com-davecgh-go-spew-1.1.0 + (package + (name "go-github-com-davecgh-go-spew") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/davecgh/go-spew") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/davecgh/go-spew")) + (home-page "https://github.com/davecgh/go-spew") + (synopsis "go-spew") + (description + "Go-spew implements a deep pretty printer for Go data structures to aid in +debugging. A comprehensive suite of tests with 100% test coverage is provided +to ensure proper functionality. See @code{test_coverage.txt} for the gocov +coverage report. Go-spew is licensed under the liberal ISC license, so it may +be used in open source or commercial projects.") + (license license:isc))) + +(define-public go-github-com-pmezard-go-difflib-1.0.0 + (package + (name "go-github-com-pmezard-go-difflib") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pmezard/go-difflib") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pmezard/go-difflib")) + (home-page "https://github.com/pmezard/go-difflib") + (synopsis "go-difflib") + (description + "Go-difflib is a partial port of python 3 difflib package. Its main goal was to +make unified and context diff available in pure Go, mostly for testing purposes.") + (license license:bsd-3))) + +(define-public go-github-com-stretchr-objx-0.1.0 + (package + (name "go-github-com-stretchr-objx") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/objx") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/objx")) + (home-page "https://github.com/stretchr/objx") + (synopsis "Objx") + (description + "Objx - Go package for dealing with maps, slices, JSON and other data.") + (license license:expat))) + +(define-public go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c + (package + (name "go-gopkg-in-yaml-v3") + (version "3.0.0-20200313102051-9f266ea9e77c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v3") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1bbai3lzb50m0x2vwsdbagrbhvfylj9k1m32hgbqwldqx4p9ay35")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v3") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language.") + (license unknown-license!))) + +(define-public go-github-com-stretchr-testify-1.6.1 + (package + (name "go-github-com-stretchr-testify") + (version "1.6.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1yhiqqzjvi63pf01rgzx68gqkkvjx03fvl5wk30br5l6s81s090l")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (propagated-inputs + `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" + ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) + ("go-github-com-stretchr-objx-0.1.0" + ,go-github-com-stretchr-objx-0.1.0) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.0" + ,go-github-com-davecgh-go-spew-1.1.0))) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in +it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that +your code will behave as you intend.") + (license license:expat))) + +(define-public go-gopkg-in-yaml-v3-3.0.0-20200605160147-a5ece683394c + (package + (name "go-gopkg-in-yaml-v3") + (version "3.0.0-20200605160147-a5ece683394c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v3") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03cm7c3p5fh0aa8vnxv5010dgqqr268ivb480ix1salxx3396w68")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v3") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language.") + (license unknown-license!))) + +(define-public go-github-com-tj-assert-0.0.3 + (package + (name "go-github-com-tj-assert") + (version "0.0.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/tj/assert") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1j5swk3fjq1h5fpqkipddz2ccnbidr7qrpm5dpdaflg9q5jnc673")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/tj/assert")) + (propagated-inputs + `(("go-gopkg-in-yaml-v3-3.0.0-20200605160147-a5ece683394c" + ,go-gopkg-in-yaml-v3-3.0.0-20200605160147-a5ece683394c) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/tj/assert") + (synopsis "assert") + (description + "Package assert implements the same assertions as the `assert` package but stops +test execution when a test fails.") + (license license:expat))) + +(define-public go-github-com-tj-go-buffer-1.1.0 + (package + (name "go-github-com-tj-go-buffer") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/tj/go-buffer") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1qdxpa069pjjbzh217aadpzz1aq1n6h32lhp60yjcpi7hr4q8fxx")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/tj/go-buffer")) + (propagated-inputs + `(("go-github-com-tj-assert-0.0.3" ,go-github-com-tj-assert-0.0.3))) + (home-page "https://github.com/tj/go-buffer") + (synopsis "Buffer") + (description + "Package buffer provides a generic buffer or batching mechanism for flushing +entries at a given size or interval, useful for cases such as batching log +events.") + (license license:expat))) + +(define-public go-github-com-tj-go-elastic-0.0.0-20171221160941-36157cbbebc2 + (package + (name "go-github-com-tj-go-elastic") + (version "0.0.0-20171221160941-36157cbbebc2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/tj/go-elastic") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1r94vc4hbfvqvjz74n4mvsw4dy3vbyzlivb90kyn8vn76a4wqk69")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/tj/go-elastic")) + (home-page "https://github.com/tj/go-elastic") + (synopsis "go-elastic") + (description + "Package elastic provides an Elasticsearch client with AWS sigv4 support.") + (license license:expat))) + +(define-public go-github-com-tj-go-kinesis-0.0.0-20171128231115-08b17f58cb1b + (package + (name "go-github-com-tj-go-kinesis") + (version "0.0.0-20171128231115-08b17f58cb1b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/tj/go-kinesis") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "108c6p5j6rhhc2cnc2v5368yfsw73y6lzlvz02vpvvjph8rhmld4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/tj/go-kinesis")) + (home-page "https://github.com/tj/go-kinesis") + (synopsis "go-kinesis") + (description + "Package kinesis implements a batch producer built on top of the official AWS +SDK.") + (license license:expat))) + +(define-public go-github-com-tj-go-spin-1.1.0 + (package + (name "go-github-com-tj-go-spin") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/tj/go-spin") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "11xr67991m5pwsy1dira3iwd0sr55vmn1cyjwmlqziw4bwpym64s")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/tj/go-spin")) + (home-page "https://github.com/tj/go-spin") + (synopsis #f) + (description #f) + (license #f))) + +(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20190308221718-c2843e01d9a2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190215142949-d0b11bdaac8a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-text-0.3.0 + (package + (name "go-golang-org-x-text") + (version "0.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/text")) + (home-page "https://golang.org/x/text") + (synopsis "Go Text") + (description + "text is a repository of text-related packages related to internationalization +(i18n) and localization (l10n), such as character encodings, text +transformations, and locale-specific text handling.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190620200207-3b0461eec859") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0l00c8l0a8xnv6qdpwfzxxsr58jggacgzdrwiprrfx2xqm37b6d5")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20180917221912-90fa682c2a6e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-golang-org-x-text-0.3.2 + (package + (name "go-golang-org-x-text") + (version "0.3.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0flv9idw0jm5nm8lx25xqanbkqgfiym6619w575p7nrdh0riqwqh")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/text")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" + ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) + (home-page "https://golang.org/x/text") + (synopsis "Go Text") + (description + "text is a repository of text-related packages related to internationalization +(i18n) and localization (l10n), such as character encodings, text +transformations, and locale-specific text handling.") + (license license:bsd-3))) + +(define-public go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15 + (package + (name "go-gopkg-in-check-v1") + (version "1.0.0-20190902080502-41f04d3bba15") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/check.v1") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0vfk9czmlxmp6wndq8k17rhnjxal764mxfhrccza7nwlia760pjy")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) + (home-page "https://gopkg.in/check.v1") + (synopsis "Instructions") + (description + "Package check is a rich testing extension for Go's testing package.") + (license license:bsd-2))) + +(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 + (package + (name "go-gopkg-in-check-v1") + (version "0.0.0-20161208181325-20d25e280405") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/check.v1") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) + (home-page "https://gopkg.in/check.v1") + (synopsis "Instructions") + (description + "Package check is a rich testing extension for Go's testing package.") + (license license:bsd-2))) + +(define-public go-gopkg-in-yaml-v2-2.2.2 + (package + (name "go-gopkg-in-yaml-v2") + (version "2.2.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "01wj12jzsdqlnidpyjssmj0r4yavlqy7dwrg7adqd8dicjc4ncsa")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v2") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language.") + (license license:asl2.0))) + (define-public go-github-com-apex-log-1.9.0 (package (name "go-github-com-apex-log") @@ -154,6 +2232,29 @@ here assumptions. Designed for centralized logging solutions such as Kinesis which require encoding and decoding before fanning-out to handlers.") (license license:expat))) + +(define-public go-github-com-sylabs-json-resp-0.8.0 + (package + (name "go-github-com-sylabs-json-resp") + (version "0.8.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sylabs/json-resp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ygr4mavaj1pp78hkkphhn3ydd923n3klwnx8x7v4ajqzx4cx4id")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/sylabs/json-resp")) + (home-page "https://github.com/sylabs/json-resp") + (synopsis "JSON Response") + (description + "The @code{json-resp} package contains a small set of functions that are used to +marshall and unmarshall response data and errors in JSON format.") + (license license:bsd-3))) + (define-public go-github-com-apptainer-container-key-client-0.7.2 (package (name "go-github-com-apptainer-container-key-client") @@ -179,6 +2280,238 @@ require encoding and decoding before fanning-out to handlers.") using the HKP protocol. Forked from @url{https://github.com/sylabs/scs-key-client,sylabs/scs-key-client}.") (license license:bsd-3))) + +(define-public go-github-com-blang-semver-v4-4.0.0 + (package + (name "go-github-com-blang-semver-v4") + (version "4.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/blang/semver") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "14h9ys4n4kx9cbj42lkdf4i5k3nkll6sd62jcvl7cs565v6fiknz")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/blang/semver/v4")) + (home-page "https://github.com/blang/semver") + (synopsis #f) + (description #f) + (license license:expat))) + +(define-public go-github-com-go-log-log-0.2.0 + (package + (name "go-github-com-go-log-log") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/go-log/log") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1idnqv4yvkmdh3wcsgvhcpak9z6ix8dsifdjq5kfbbnskdq5rmvg")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/go-log/log")) + (home-page "https://github.com/go-log/log") + (synopsis "Log") + (description "Package log provides a log interface") + (license license:expat))) + +(define-public go-github-com-stretchr-objx-0.1.0 + (package + (name "go-github-com-stretchr-objx") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/objx") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/objx")) + (home-page "https://github.com/stretchr/objx") + (synopsis "Objx") + (description + "Objx - Go package for dealing with maps, slices, JSON and other data.") + (license license:expat))) + +(define-public go-github-com-stretchr-testify-1.7.0 + (package + (name "go-github-com-stretchr-testify") + (version "1.7.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ixgjsvafr3513pz3r6pmgk074s2dxkll0dadvl25gkf30rkmh10")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (propagated-inputs + `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" + ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) + ("go-github-com-stretchr-objx-0.1.0" + ,go-github-com-stretchr-objx-0.1.0) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.0" + ,go-github-com-davecgh-go-spew-1.1.0))) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in +it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that +your code will behave as you intend.") + (license license:expat))) + +(define-public go-github-com-sylabs-json-resp-0.8.0 + (package + (name "go-github-com-sylabs-json-resp") + (version "0.8.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sylabs/json-resp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ygr4mavaj1pp78hkkphhn3ydd923n3klwnx8x7v4ajqzx4cx4id")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/sylabs/json-resp")) + (home-page "https://github.com/sylabs/json-resp") + (synopsis "JSON Response") + (description + "The @code{json-resp} package contains a small set of functions that are used to +marshall and unmarshall response data and errors in JSON format.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20200317015054-43a5402ce75a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0j6zrrb81qjr1926kkwmn0di9a0jn8qyjd9dw614rfkihxgq1vsm")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the ones +provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-github-com-davecgh-go-spew-1.1.0 + (package + (name "go-github-com-davecgh-go-spew") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/davecgh/go-spew") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/davecgh/go-spew")) + (home-page "https://github.com/davecgh/go-spew") + (synopsis "go-spew") + (description + "Go-spew implements a deep pretty printer for Go data structures to aid in +debugging. A comprehensive suite of tests with 100% test coverage is provided +to ensure proper functionality. See @code{test_coverage.txt} for the gocov +coverage report. Go-spew is licensed under the liberal ISC license, so it may +be used in open source or commercial projects.") + (license license:isc))) + +(define-public go-github-com-pmezard-go-difflib-1.0.0 + (package + (name "go-github-com-pmezard-go-difflib") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pmezard/go-difflib") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pmezard/go-difflib")) + (home-page "https://github.com/pmezard/go-difflib") + (synopsis "go-difflib") + (description + "Go-difflib is a partial port of python 3 difflib package. Its main goal was to +make unified and context diff available in pure Go, mostly for testing purposes.") + (license license:bsd-3))) + +(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 + (package + (name "go-gopkg-in-check-v1") + (version "0.0.0-20161208181325-20d25e280405") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/check.v1") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) + (home-page "https://gopkg.in/check.v1") + (synopsis "Instructions") + (description + "Package check is a rich testing extension for Go's testing package.") + (license license:bsd-2))) + +(define-public go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c + (package + (name "go-gopkg-in-yaml-v3") + (version "3.0.0-20200313102051-9f266ea9e77c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v3") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1bbai3lzb50m0x2vwsdbagrbhvfylj9k1m32hgbqwldqx4p9ay35")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v3") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language.") + (license unknown-license!))) + (define-public go-github-com-apptainer-container-library-client-1.2.2 (package (name "go-github-com-apptainer-container-library-client") @@ -218,74 +2551,7 @@ using the HKP protocol. Forked from Forked from @url{https://github.com/sylabs/scs-library-client,sylabs/scs-library-client}.") (license license:bsd-3))) -(define-public go-github-com-apptainer-sif-v2-2.3.2 - (package - (name "go-github-com-apptainer-sif-v2") - (version "2.3.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/apptainer/sif") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "10cmvgyjxnfgw5661n1zbdr8zs29rx9izsr1bbnnyjr9kdqdhfg1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/apptainer/sif/v2")) - (propagated-inputs - `(("go-gopkg-in-warnings-v0-0.1.2" ,go-gopkg-in-warnings-v0-0.1.2) - ("go-golang-org-x-sys-0.0.0-20211205182925-97ca703d548d" - ,go-golang-org-x-sys-0.0.0-20211205182925-97ca703d548d) - ("go-golang-org-x-net-0.0.0-20210813160813-60bc85c4be6d" - ,go-golang-org-x-net-0.0.0-20210813160813-60bc85c4be6d) - ("go-golang-org-x-crypto-0.0.0-20210817164053-32db794688a5" - ,go-golang-org-x-crypto-0.0.0-20210817164053-32db794688a5) - ("go-github-com-xanzy-ssh-agent-0.3.0" - ,go-github-com-xanzy-ssh-agent-0.3.0) - ("go-github-com-sergi-go-diff-1.1.0" - ,go-github-com-sergi-go-diff-1.1.0) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-mitchellh-go-homedir-1.1.0" - ,go-github-com-mitchellh-go-homedir-1.1.0) - ("go-github-com-kevinburke-ssh-config-0.0.0-20201106050909-4977a11b4351" - ,go-github-com-kevinburke-ssh-config-0.0.0-20201106050909-4977a11b4351) - ("go-github-com-jbenet-go-context-0.0.0-20150711004518-d14ea06fba99" - ,go-github-com-jbenet-go-context-0.0.0-20150711004518-d14ea06fba99) - ("go-github-com-inconshreveable-mousetrap-1.0.0" - ,go-github-com-inconshreveable-mousetrap-1.0.0) - ("go-github-com-imdario-mergo-0.3.12" - ,go-github-com-imdario-mergo-0.3.12) - ("go-github-com-go-git-go-billy-v5-5.3.1" - ,go-github-com-go-git-go-billy-v5-5.3.1) - ("go-github-com-go-git-gcfg-1.5.0" ,go-github-com-go-git-gcfg-1.5.0) - ("go-github-com-emirpasic-gods-1.12.0" - ,go-github-com-emirpasic-gods-1.12.0) - ("go-github-com-acomagu-bufpipe-1.0.3" - ,go-github-com-acomagu-bufpipe-1.0.3) - ("go-github-com-microsoft-go-winio-0.4.16" - ,go-github-com-microsoft-go-winio-0.4.16) - ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) - ("go-github-com-spf13-cobra-1.3.0" ,go-github-com-spf13-cobra-1.3.0) - ("go-github-com-sebdah-goldie-v2-2.5.3" - ,go-github-com-sebdah-goldie-v2-2.5.3) - ("go-github-com-magefile-mage-1.12.1" - ,go-github-com-magefile-mage-1.12.1) - ("go-github-com-google-uuid-1.3.0" ,go-github-com-google-uuid-1.3.0) - ("go-github-com-go-git-go-git-v5-5.4.2" - ,go-github-com-go-git-go-git-v5-5.4.2) - ("go-github-com-blang-semver-v4-4.0.0" - ,go-github-com-blang-semver-v4-4.0.0) - ("go-github-com-protonmail-go-crypto-0.0.0-20220113124808-70ae35bab23f" - ,go-github-com-protonmail-go-crypto-0.0.0-20220113124808-70ae35bab23f))) - (home-page "https://github.com/apptainer/sif") - (synopsis "The Singularity Image Format (SIF)") - (description - "This module contains an open source implementation of the Singularity Image -Format (SIF) that makes it easy to create complete and encapsulated container -environments stored in a single file.") - (license license:bsd-3))) + (define-public go-github-com-blang-semver-v4-4.0.0 (package (name "go-github-com-blang-semver-v4") @@ -305,6 +2571,7 @@ environments stored in a single file.") (synopsis #f) (description #f) (license license:expat))) + (define-public go-github-com-buger-jsonparser-1.1.1 (package (name "go-github-com-buger-jsonparser") @@ -330,6 +2597,7 @@ to @strong{10 times faster} than standard @code{encoding/json} package (depending on payload size and usage), @strong{allocates no memory}. See benchmarks below.") (license license:expat))) + (define-public go-github-com-cenkalti-backoff-v4-4.1.2 (package (name "go-github-com-cenkalti-backoff-v4") @@ -350,6 +2618,1796 @@ benchmarks below.") (description "Package backoff implements backoff algorithms for retrying operations.") (license license:expat))) + +(define-public go-github-com-kr-pretty-0.2.1 + (package + (name "go-github-com-kr-pretty") + (version "0.2.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/pretty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0vzfz06y9q8gs2nxx0kys0591vzp78k0fvpb8digi5n15h3b25hy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/pretty")) + (propagated-inputs + `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) + (home-page "https://github.com/kr/pretty") + (synopsis #f) + (description + "Package pretty provides pretty-printing for Go values. This is useful during +debugging, to avoid wrapping long output lines in the terminal.") + (license license:expat))) + +(define-public go-github-com-frankban-quicktest-1.11.3 + (package + (name "go-github-com-frankban-quicktest") + (version "1.11.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/frankban/quicktest") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0d5njmwkfq2809vlimnlvy8ir6kln0c4cgdwr680fwsclpbr43qs")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/frankban/quicktest")) + (propagated-inputs + `(("go-github-com-kr-pretty-0.2.1" ,go-github-com-kr-pretty-0.2.1) + ("go-github-com-google-go-cmp-0.5.4" + ,go-github-com-google-go-cmp-0.5.4))) + (home-page "https://github.com/frankban/quicktest") + (synopsis "quicktest") + (description + "Package quicktest provides a collection of Go helpers for writing tests.") + (license license:expat))) + +(define-public go-github-com-google-go-cmp-0.5.4 + (package + (name "go-github-com-google-go-cmp") + (version "0.5.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ld9pwb6l22g75g1zpa691l7q9ki7pjgpcqhwgdfr3va1zisr5ci")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically +equal.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20210124154548-22da62e12c0c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "17gp3dl75wq3x7j9z1pqgcyvjhvy9jaln1wbscy57al3whdsjp07")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-cilium-ebpf-0.4.0 + (package + (name "go-github-com-cilium-ebpf") + (version "0.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cilium/ebpf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1j33vfz8mxnqadkd17l0y3ll71gph3ndm8hwrwbwnf5px7bfv9yl")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/cilium/ebpf")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" + ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) + ("go-github-com-google-go-cmp-0.5.4" + ,go-github-com-google-go-cmp-0.5.4) + ("go-github-com-frankban-quicktest-1.11.3" + ,go-github-com-frankban-quicktest-1.11.3))) + (home-page "https://github.com/cilium/ebpf") + (synopsis "eBPF") + (description "Package ebpf is a toolkit for working with eBPF programs.") + (license license:expat))) + +(define-public go-github-com-coreos-go-systemd-v22-22.3.2 + (package + (name "go-github-com-coreos-go-systemd-v22") + (version "22.3.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/coreos/go-systemd") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ndi86b8va84ha93njqgafypz4di7yxfd5r5kf1r0s3y3ghcjajq")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/coreos/go-systemd/v22")) + (propagated-inputs + `(("go-github-com-godbus-dbus-v5-5.0.4" + ,go-github-com-godbus-dbus-v5-5.0.4))) + (home-page "https://github.com/coreos/go-systemd") + (synopsis "go-systemd") + (description "Go bindings to systemd. The project has several packages:") + (license license:asl2.0))) + +(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0 + (package + (name "go-github-com-cpuguy83-go-md2man-v2") + (version "2.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cpuguy83/go-md2man") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) + (propagated-inputs + `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" + ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) + ("go-github-com-russross-blackfriday-v2-2.0.1" + ,go-github-com-russross-blackfriday-v2-2.0.1) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0))) + (home-page "https://github.com/cpuguy83/go-md2man") + (synopsis "go-md2man") + (description "Converts markdown into roff (man pages).") + (license license:expat))) + +(define-public go-github-com-docker-go-units-0.4.0 + (package + (name "go-github-com-docker-go-units") + (version "0.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/docker/go-units") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0k8gja8ql4pqg5rzmqvka42vjfs6rzablak87whcnqba6qxpimvz")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/docker/go-units")) + (home-page "https://github.com/docker/go-units") + (synopsis "Introduction") + (description + "Package units provides helper function to parse and print size and time units in +human-readable format.") + (license license:asl2.0))) + +(define-public go-github-com-godbus-dbus-v5-5.0.4 + (package + (name "go-github-com-godbus-dbus-v5") + (version "5.0.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/godbus/dbus") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0znax8kskb5gmp5fj75w56bc9p7b22wrdswzlh4d04sprlc471yi")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/godbus/dbus/v5")) + (home-page "https://github.com/godbus/dbus") + (synopsis "dbus") + (description + "Package dbus implements bindings to the D-Bus message bus system.") + (license license:bsd-2))) + +(define-public go-github-com-yuin-goldmark-1.1.27 + (package + (name "go-github-com-yuin-goldmark") + (version "1.1.27") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/yuin/goldmark") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1872cqnii0kwiqcy81yin0idvjy5mdy4zlzz0csb319lcjs3b923")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/yuin/goldmark")) + (home-page "https://github.com/yuin/goldmark") + (synopsis "goldmark") + (description + "Package goldmark implements functions to convert markdown text to a desired +format.") + (license license:expat))) + +(define-public go-golang-org-x-mod-0.2.0 + (package + (name "go-golang-org-x-mod") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/mod") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fp6885dclq77mh73v7i54v2b9llpv4di193zc8vmsbbkkc483cl")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/mod")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" + ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) + ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" + ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) + ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" + ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) + (home-page "https://golang.org/x/mod") + (synopsis "mod") + (description + "This repository holds packages for writing tools that work directly with Go +module mechanics. That is, it is for direct manipulation of Go modules +themselves.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b + (package + (name "go-golang-org-x-net") + (version "0.0.0-20200226121028-0de0cce0169b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1db7s5kbzyh2zd5lpv05n7hp8wbwdvgk0wpiwrlnig94mkr0y5aq")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20190911185100-cd5d95a43a6e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1nqkyz2y1qvqcma52ijh02s8aiqmkfb95j08f6zcjhbga3ds6hds")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the ones +provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543 + (package + (name "go-golang-org-x-xerrors") + (version "0.0.0-20191204190536-9bdfabe68543") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/xerrors") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1yjfi1bk9xb81lqn85nnm13zz725wazvrx3b50hx19qmwg7a4b0c")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/xerrors")) + (home-page "https://golang.org/x/xerrors") + (synopsis #f) + (description "Package xerrors implements functions to manipulate errors.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20200619180055-7c47624df98f + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20200619180055-7c47624df98f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fhzwd32j7w9g3algq0zj8g7ivx3f0mn9nx9mj046wdscryn49mk")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) + ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" + ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) + ("go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b" + ,go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b) + ("go-golang-org-x-mod-0.2.0" ,go-golang-org-x-mod-0.2.0) + ("go-github-com-yuin-goldmark-1.1.27" + ,go-github-com-yuin-goldmark-1.1.27))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-github-com-kisielk-errcheck-1.5.0 + (package + (name "go-github-com-kisielk-errcheck") + (version "1.5.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kisielk/errcheck") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ci3jz2px74pfmr42jv7dpx7fdzx08vai4czp9fkiyb0gcaiqsk6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kisielk/errcheck")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20200619180055-7c47624df98f" + ,go-golang-org-x-tools-0.0.0-20200619180055-7c47624df98f))) + (home-page "https://github.com/kisielk/errcheck") + (synopsis "errcheck") + (description + "errcheck is a program for checking for unchecked errors in go programs.") + (license license:expat))) + +(define-public go-github-com-kisielk-gotool-1.0.0 + (package + (name "go-github-com-kisielk-gotool") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kisielk/gotool") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "14af2pa0ssyp8bp2mvdw184s5wcysk6akil3wzxmr05wwy951iwn")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kisielk/gotool")) + (home-page "https://github.com/kisielk/gotool") + (synopsis "gotool") + (description + "Package gotool contains utility functions used to implement the standard +\"cmd/go\" tool, provided as a convenience to developers who want to write tools +with similar semantics.") + (license license:expat))) + +(define-public go-github-com-yuin-goldmark-1.2.1 + (package + (name "go-github-com-yuin-goldmark") + (version "1.2.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/yuin/goldmark") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12rsnsf65drcp0jfw2jl9w589vsn3pxdk1zh3v9q908iigngrcmy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/yuin/goldmark")) + (home-page "https://github.com/yuin/goldmark") + (synopsis "goldmark") + (description + "Package goldmark implements functions to convert markdown text to a desired +format.") + (license license:expat))) + +(define-public go-golang-org-x-mod-0.3.0 + (package + (name "go-golang-org-x-mod") + (version "0.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/mod") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ldgbx2zpprbsfn6p8pfgs4nn87gwbfcv2z0fa7n8alwsq2yw78q")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/mod")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" + ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) + ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" + ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) + ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" + ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) + (home-page "https://golang.org/x/mod") + (synopsis "mod") + (description + "This repository holds packages for writing tools that work directly with Go +module mechanics. That is, it is for direct manipulation of Go modules +themselves.") + (license license:bsd-3))) + +(define-public go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20200622213623-75b288015ac9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18vlncvvs11ds3zaaziqjlg5s2vcwi3496nn6qv7p0dp94j5pwa2")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" + ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) + ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" + ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200930185726-fdedc70b468f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1njlfhjbvi4lxvjbq8zswrb0y0q4jd2p6x51h1q6vmyzi9af6869")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20201021035429-f5854403a974 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20201021035429-f5854403a974") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1vw63zpmhi337f3gc432x3wkib4j2ia8dy7if31wxwb9dgqvy222")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) + ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" + ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) + ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" + ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9 + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20201020160332-67f06af15bc9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "093p4panc808ak5bamzz7m9nb0xxib7778jpnr6f0xkz1n4fzyw5")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the ones +provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20210106214847-113979e3529a + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20210106214847-113979e3529a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0pq1a7hkamqdwsajyfrb27s56cvxz5838krsgyqz346s2djwdrzl")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" + ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) + ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" + ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) + ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" + ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) + ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) + ("go-github-com-yuin-goldmark-1.2.1" + ,go-github-com-yuin-goldmark-1.2.1))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-github-com-gogo-protobuf-1.3.2 + (package + (name "go-github-com-gogo-protobuf") + (version "1.3.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gogo/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0dfv1bhx5zhb5bsj5sj757nkacf2swp1ajpcyj9d0b37n602m18a")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/gogo/protobuf")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20210106214847-113979e3529a" + ,go-golang-org-x-tools-0.0.0-20210106214847-113979e3529a) + ("go-github-com-kisielk-gotool-1.0.0" + ,go-github-com-kisielk-gotool-1.0.0) + ("go-github-com-kisielk-errcheck-1.5.0" + ,go-github-com-kisielk-errcheck-1.5.0))) + (home-page "https://github.com/gogo/protobuf") + (synopsis "Protocol Buffers for Go with Gadgets") + (description + "gogoprotobuf is a fork of +@url{https://github.com/golang/protobuf,golang/protobuf} with extra code +generation features.") + (license license:bsd-3))) + +(define-public go-github-com-opencontainers-runtime-spec-1.0.2 + (package + (name "go-github-com-opencontainers-runtime-spec") + (version "1.0.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/runtime-spec") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19w981vcmd5lp2hy0630x6ayb8zz17n2vxqm2py5mg945xflcizg")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) + (home-page "https://github.com/opencontainers/runtime-spec") + (synopsis "Open Container Initiative Runtime Specification") + (description + "The @url{https://www.opencontainers.org,Open Container Initiative} develops +specifications for standards on Operating System process and application +containers.") + (license license:asl2.0))) + +(define-public go-github-com-davecgh-go-spew-1.1.1 + (package + (name "go-github-com-davecgh-go-spew") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/davecgh/go-spew") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/davecgh/go-spew")) + (home-page "https://github.com/davecgh/go-spew") + (synopsis "go-spew") + (description + "Go-spew implements a deep pretty printer for Go data structures to aid in +debugging. A comprehensive suite of tests with 100% test coverage is provided +to ensure proper functionality. See @code{test_coverage.txt} for the gocov +coverage report. Go-spew is licensed under the liberal ISC license, so it may +be used in open source or commercial projects.") + (license license:isc))) + +(define-public go-github-com-stretchr-testify-1.2.2 + (package + (name "go-github-com-stretchr-testify") + (version "1.2.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0dlszlshlxbmmfxj5hlwgv3r22x0y1af45gn1vd198nvvs3pnvfs")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in +it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that +your code will behave as you intend.") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20191026070338-33540a1f6037") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0fjcv0vzvi6za0b4xmnk3932pr9f9gczzf03y0kgq3ry9rqg169y")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-sirupsen-logrus-1.8.1 + (package + (name "go-github-com-sirupsen-logrus") + (version "1.8.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sirupsen/logrus") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0rvqzic2zz7fpxyizmqxwmhv1m52ii9bgxnqa6km8wsa0l08wh42")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/sirupsen/logrus")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037" + ,go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037) + ("go-github-com-stretchr-testify-1.2.2" + ,go-github-com-stretchr-testify-1.2.2) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/sirupsen/logrus") + (synopsis "Logrus") + (description + "Package logrus is a structured logger for Go, completely API compatible with the +standard library logger.") + (license license:expat))) + +(define-public go-github-com-burntsushi-toml-0.3.1 + (package + (name "go-github-com-burntsushi-toml") + (version "0.3.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/BurntSushi/toml") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fjdwwfzyzllgiwydknf1pwjvy49qxfsczqx5gz3y0izs7as99j6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/BurntSushi/toml")) + (home-page "https://github.com/BurntSushi/toml") + (synopsis "Testing") + (description + "Package toml implements decoding and encoding of TOML files.") + (license license:expat))) + +(define-public go-github-com-russross-blackfriday-v2-2.0.1 + (package + (name "go-github-com-russross-blackfriday-v2") + (version "2.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/russross/blackfriday") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0nlz7isdd4rgnwzs68499hlwicxz34j2k2a0b8jy0y7ycd2bcr5j")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/russross/blackfriday/v2")) + (home-page "https://github.com/russross/blackfriday") + (synopsis "Blackfriday") + (description "Package blackfriday is a markdown processor.") + (license license:bsd-2))) + +(define-public go-github-com-shurcool-sanitized-anchor-name-1.0.0 + (package + (name "go-github-com-shurcool-sanitized-anchor-name") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/shurcooL/sanitized_anchor_name") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1gv9p2nr46z80dnfjsklc6zxbgk96349sdsxjz05f3z6wb6m5l8f")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/shurcooL/sanitized_anchor_name")) + (home-page "https://github.com/shurcooL/sanitized_anchor_name") + (synopsis "sanitized_anchor_name") + (description + "Package sanitized_anchor_name provides a func to create sanitized anchor names.") + (license license:expat))) + +(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d + (package + (name "go-github-com-cpuguy83-go-md2man-v2") + (version "2.0.0-20190314233015-f79a8a8ca69d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cpuguy83/go-md2man") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) + (propagated-inputs + `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" + ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) + ("go-github-com-russross-blackfriday-v2-2.0.1" + ,go-github-com-russross-blackfriday-v2-2.0.1) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0))) + (home-page "https://github.com/cpuguy83/go-md2man") + (synopsis "go-md2man") + (description "Converts markdown into roff (man pages).") + (license license:expat))) + +(define-public go-gopkg-in-yaml-v2-2.2.2 + (package + (name "go-gopkg-in-yaml-v2") + (version "2.2.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "01wj12jzsdqlnidpyjssmj0r4yavlqy7dwrg7adqd8dicjc4ncsa")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v2") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language.") + (license license:asl2.0))) + +(define-public go-github-com-urfave-cli-1.22.2 + (package + (name "go-github-com-urfave-cli") + (version "1.22.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/urfave/cli") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "10mcnvi5qmn00vpyk6si8gjka7p654wr9hac4zc9w5h3ickhvbdc")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/urfave/cli")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) + ("go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d" + ,go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d) + ("go-github-com-burntsushi-toml-0.3.1" + ,go-github-com-burntsushi-toml-0.3.1))) + (home-page "https://github.com/urfave/cli") + (synopsis "cli") + (description + "Package cli provides a minimal framework for creating and organizing command +line Go applications. cli is designed to be easy to understand and write, the +most simple cli application can be written as follows:") + (license license:expat))) + +(define-public go-github-com-kr-pty-1.1.1 + (package + (name "go-github-com-kr-pty") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/pty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0383f0mb9kqjvncqrfpidsf8y6ns5zlrc91c6a74xpyxjwvzl2y6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/pty")) + (home-page "https://github.com/kr/pty") + (synopsis "pty") + (description + "Package pty is a wrapper for github.com/creack/pty, which provides functions for +working with Unix terminals.") + (license license:expat))) + +(define-public go-github-com-kr-text-0.1.0 + (package + (name "go-github-com-kr-text") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1gm5bsl01apvc84bw06hasawyqm4q84vx1pm32wr9jnd7a8vjgj1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/text")) + (propagated-inputs + `(("go-github-com-kr-pty-1.1.1" ,go-github-com-kr-pty-1.1.1))) + (home-page "https://github.com/kr/text") + (synopsis #f) + (description + "Package text provides rudimentary functions for manipulating text in paragraphs.") + (license license:expat))) + +(define-public go-github-com-kr-pretty-0.1.0 + (package + (name "go-github-com-kr-pretty") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/pretty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18m4pwg2abd0j9cn5v3k2ksk9ig4vlwxmlw9rrglanziv9l967qp")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/pretty")) + (propagated-inputs + `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) + (home-page "https://github.com/kr/pretty") + (synopsis #f) + (description + "Package pretty provides pretty-printing for Go values. This is useful during +debugging, to avoid wrapping long output lines in the terminal.") + (license license:expat))) + +(define-public go-github-com-davecgh-go-spew-1.1.0 + (package + (name "go-github-com-davecgh-go-spew") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/davecgh/go-spew") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/davecgh/go-spew")) + (home-page "https://github.com/davecgh/go-spew") + (synopsis "go-spew") + (description + "Go-spew implements a deep pretty printer for Go data structures to aid in +debugging. A comprehensive suite of tests with 100% test coverage is provided +to ensure proper functionality. See @code{test_coverage.txt} for the gocov +coverage report. Go-spew is licensed under the liberal ISC license, so it may +be used in open source or commercial projects.") + (license license:isc))) + +(define-public go-github-com-pmezard-go-difflib-1.0.0 + (package + (name "go-github-com-pmezard-go-difflib") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pmezard/go-difflib") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pmezard/go-difflib")) + (home-page "https://github.com/pmezard/go-difflib") + (synopsis "go-difflib") + (description + "Go-difflib is a partial port of python 3 difflib package. Its main goal was to +make unified and context diff available in pure Go, mostly for testing purposes.") + (license license:bsd-3))) + +(define-public go-github-com-stretchr-objx-0.1.0 + (package + (name "go-github-com-stretchr-objx") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/objx") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/objx")) + (home-page "https://github.com/stretchr/objx") + (synopsis "Objx") + (description + "Objx - Go package for dealing with maps, slices, JSON and other data.") + (license license:expat))) + +(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 + (package + (name "go-gopkg-in-check-v1") + (version "0.0.0-20161208181325-20d25e280405") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/check.v1") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) + (home-page "https://gopkg.in/check.v1") + (synopsis "Instructions") + (description + "Package check is a rich testing extension for Go's testing package.") + (license license:bsd-2))) + +(define-public go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c + (package + (name "go-gopkg-in-yaml-v3") + (version "3.0.0-20200313102051-9f266ea9e77c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v3") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1bbai3lzb50m0x2vwsdbagrbhvfylj9k1m32hgbqwldqx4p9ay35")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v3") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language.") + (license unknown-license!))) + +(define-public go-github-com-stretchr-testify-1.7.0 + (package + (name "go-github-com-stretchr-testify") + (version "1.7.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ixgjsvafr3513pz3r6pmgk074s2dxkll0dadvl25gkf30rkmh10")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (propagated-inputs + `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" + ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) + ("go-github-com-stretchr-objx-0.1.0" + ,go-github-com-stretchr-objx-0.1.0) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.0" + ,go-github-com-davecgh-go-spew-1.1.0))) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in +it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that +your code will behave as you intend.") + (license license:expat))) + +(define-public go-golang-org-x-net-0.0.0-20190311183353-d8887717615a + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190311183353-d8887717615a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1wfm6ngxjyj7v5a2dqib6lw8bb2rdnf1kl48diykxjrsddn0s163")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20190311212946-11955173bddd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hlkai67w167wiyivkzd1fgqrnyxkb94l2c6kr51jwcscizfyfn3")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-golang-org-x-lint-0.0.0-20190930215403-16217165b5de + (package + (name "go-golang-org-x-lint") + (version "0.0.0-20190930215403-16217165b5de") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/lint") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0jhwmwc0vykcmf164na0pnadl8gv7184b6pf3xayknwmzdw6vd7h")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/lint")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" + ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd))) + (home-page "https://golang.org/x/lint") + (synopsis "Installation") + (description "Package lint contains a linter for Go source code.") + (license license:bsd-3))) + +(define-public go-github-com-yuin-goldmark-1.3.5 + (package + (name "go-github-com-yuin-goldmark") + (version "1.3.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/yuin/goldmark") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "08rrhfji92hixiv3v0wvamwcy56f90wsw84w7lyvad7g90kbsknx")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/yuin/goldmark")) + (home-page "https://github.com/yuin/goldmark") + (synopsis "goldmark") + (description + "Package goldmark implements functions to convert markdown text to a desired +format.") + (license license:expat))) + +(define-public go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190404232315-eb5bcb51f2a3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "17k4g8krxbl84gzcs275b7gsh66dzm15fdxivjnx9xz8q84l4kby")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20190412213103-97732733099d + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190412213103-97732733099d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "118hkp01i4z1f5h6hcjm0ff2ngqhrzj1f7731n0kw8dr6hvbx0sw")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20191011191535-87dc89f01550") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0z4i1m2yn3f31ci7wvcm2rxkx2yiv7a78mfzklncmsz2k97rlh2g")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" + ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) + ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" + ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20190308221718-c2843e01d9a2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190215142949-d0b11bdaac8a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-text-0.3.0 + (package + (name "go-golang-org-x-text") + (version "0.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/text")) + (home-page "https://golang.org/x/text") + (synopsis "Go Text") + (description + "text is a repository of text-related packages related to internationalization +(i18n) and localization (l10n), such as character encodings, text +transformations, and locale-specific text handling.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190620200207-3b0461eec859") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0l00c8l0a8xnv6qdpwfzxxsr58jggacgzdrwiprrfx2xqm37b6d5")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20190423024810-112230192c58 + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20190423024810-112230192c58") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "05i2k43j2d0llq768hg5pf3hb2yhfzp9la1w5wp0rsnnzblr0lfn")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the ones +provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7 + (package + (name "go-golang-org-x-xerrors") + (version "0.0.0-20190717185122-a985d3407aa7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/xerrors") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "00wzr5w8aadipgc3rkk8f11i41znskfj9ix5nhhaxyg7isrslgcj")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/xerrors")) + (home-page "https://golang.org/x/xerrors") + (synopsis #f) + (description "Package xerrors implements functions to manipulate errors.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20191119224855-298f0cb1881e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0l4pqwib2wnfnix6nvxl0yrq87ipi7ff1rz6z5bxfzy9dki1nzmv")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7" + ,go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7) + ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" + ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) + ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" + ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898 + (package + (name "go-golang-org-x-xerrors") + (version "0.0.0-20191011141410-1b5146add898") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/xerrors") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0w2akj91krxjag0xdhsg78470888nicc5ismc2ap9jqpss6v1zih")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/xerrors")) + (home-page "https://golang.org/x/xerrors") + (synopsis #f) + (description "Package xerrors implements functions to manipulate errors.") + (license license:bsd-3))) + +(define-public go-golang-org-x-mod-0.4.2 + (package + (name "go-golang-org-x-mod") + (version "0.4.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/mod") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0z1p17i291z2k6va08i80ljyzyij2b6qsz78lnz0wi8zsnkfdz43")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/mod")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" + ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) + ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" + ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) + ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" + ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) + (home-page "https://golang.org/x/mod") + (synopsis "mod") + (description + "This repository holds packages for writing tools that work directly with Go +module mechanics. That is, it is for direct manipulation of Go modules +themselves.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20210330210617-4fbd30eecc44 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20210330210617-4fbd30eecc44") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "02mmymbm7wb3vdp3z9hm8p0f45708fybyd38qm8qxzwm19zqnp56")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20201119102817-f84b799fce68") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1dvhqian5byzkcg1bnqzygqa6ccc6krc2q7j12pp1vhl3y7znnsg")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1 + (package + (name "go-golang-org-x-term") + (version "0.0.0-20201126162022-7de9c90e9dd1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/term") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ba252xmv6qsvf1w1gcy98mngrj0vd4inbjw0lsklqvva65nljna")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/term")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" + ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) + (home-page "https://golang.org/x/term") + (synopsis "Go terminal/console support") + (description + "Package term provides support functions for dealing with terminals, as commonly +found on UNIX systems.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20180917221912-90fa682c2a6e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-golang-org-x-text-0.3.3 + (package + (name "go-golang-org-x-text") + (version "0.3.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19pihqm3phyndmiw6i42pdv6z1rbvlqlsnhsyqf9gsnn0qnmqqlh")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/text")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" + ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) + (home-page "https://golang.org/x/text") + (synopsis "Go Text") + (description + "text is a repository of text-related packages related to internationalization +(i18n) and localization (l10n), such as character encodings, text +transformations, and locale-specific text handling.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20210405180319-a5a99cb37ef4 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20210405180319-a5a99cb37ef4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0z90hpmxdw9i8vfhd6vf7hd63c86f1128qfb5f3y4kinvlpjy3rl")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) + ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" + ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) + ("go-golang-org-x-sys-0.0.0-20210330210617-4fbd30eecc44" + ,go-golang-org-x-sys-0.0.0-20210330210617-4fbd30eecc44))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20210220032951-036812b2e83c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1gl202py3s4gl6arkaxlf8qa6f0jyyg2f95m6f89qnfmr416h85b")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the ones +provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1 + (package + (name "go-golang-org-x-xerrors") + (version "0.0.0-20200804184101-5ec99f83aff1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/xerrors") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1dbzc3gmf2haazpv7cgmv97rq40g2xzwbglc17vas8dwhgwgwrzb")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/xerrors")) + (home-page "https://golang.org/x/xerrors") + (synopsis #f) + (description "Package xerrors implements functions to manipulate errors.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.1.5 + (package + (name "go-golang-org-x-tools") + (version "0.1.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1wzbbcja1q0gn8ahxvzvpl4nzj2icwmc0pppgipmx5rdnngqw80l")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" + ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) + ("go-golang-org-x-sys-0.0.0-20210510120138-977fb7262007" + ,go-golang-org-x-sys-0.0.0-20210510120138-977fb7262007) + ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" + ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) + ("go-golang-org-x-net-0.0.0-20210405180319-a5a99cb37ef4" + ,go-golang-org-x-net-0.0.0-20210405180319-a5a99cb37ef4) + ("go-golang-org-x-mod-0.4.2" ,go-golang-org-x-mod-0.4.2) + ("go-github-com-yuin-goldmark-1.3.5" + ,go-github-com-yuin-goldmark-1.3.5))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127 + (package + (name "go-gopkg-in-check-v1") + (version "1.0.0-20180628173108-788fd7840127") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/check.v1") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0v3bim0j375z81zrpr5qv42knqs0y2qv2vkjiqi5axvb78slki1a")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) + (home-page "https://gopkg.in/check.v1") + (synopsis "Instructions") + (description + "Package check is a rich testing extension for Go's testing package.") + (license license:bsd-2))) + +(define-public go-go-uber-org-goleak-1.1.12 + (package + (name "go-go-uber-org-goleak") + (version "1.1.12") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/uber-go/goleak") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1wda3bd5xqbnvskgpr2lg6ccnrm3v9wl0i5c5b6xrrzf01b81vzg")))) + (build-system go-build-system) + (arguments '(#:import-path "go.uber.org/goleak")) + (propagated-inputs + `(("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" + ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) + ("go-golang-org-x-tools-0.1.5" ,go-golang-org-x-tools-0.1.5) + ("go-golang-org-x-lint-0.0.0-20190930215403-16217165b5de" + ,go-golang-org-x-lint-0.0.0-20190930215403-16217165b5de) + ("go-github-com-stretchr-testify-1.7.0" + ,go-github-com-stretchr-testify-1.7.0) + ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0))) + (home-page "https://go.uber.org/goleak") + (synopsis "goleak") + (description "Package goleak is a Goroutine leak detector.") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20210510120138-977fb7262007 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20210510120138-977fb7262007") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0d2vnblgzxgvis2kly99gv10kadyl3v0cpv1lskjqg2v5d11r6hd")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + (define-public go-github-com-containerd-cgroups-1.0.3 (package (name "go-github-com-containerd-cgroups") @@ -394,176 +4452,1196 @@ benchmarks below.") resources format for settings on the cgroup uses the OCI runtime-spec found @url{https://github.com/opencontainers/runtime-spec,here}.") (license license:asl2.0))) -(define-public go-github-com-containerd-containerd-1.6.0 + +(define-public go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9 (package - (name "go-github-com-containerd-containerd") + (name "go-golang-org-x-sys") + (version "0.0.0-20191005200804-aed5e4c7ecf9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wsdsbl9n61l99z0cvib2xzg56fsfgky4yc5xapdw9ywx9h0zm3a")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-fsnotify-fsnotify-1.4.9 + (package + (name "go-github-com-fsnotify-fsnotify") + (version "1.4.9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/fsnotify/fsnotify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1i1r72knpbfwwql9frn9bqc3nhfc2ai5m6qllcyr6wban62lr40x")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/fsnotify/fsnotify")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9" + ,go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9))) + (home-page "https://github.com/fsnotify/fsnotify") + (synopsis "File system notifications for Go") + (description + "Package fsnotify provides a platform-independent interface for file system +notifications.") + (license license:bsd-3))) + +(define-public go-github-com-sclevine-agouti-3.0.0+incompatible + (package + (name "go-github-com-sclevine-agouti") + (version "3.0.0+incompatible") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sclevine/agouti") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fsj7x7hhmqq43a9qxdfap7ik6b35hqk58dwii0ir1zm1fnw105b")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/sclevine/agouti")) + (home-page "https://github.com/sclevine/agouti") + (synopsis "Agouti") + (description + "Package agouti is a universal WebDriver client for Go. It extends the +agouti/api package to provide a feature-rich interface for controlling a web +browser.") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20200519105757-fe76b779f299 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200519105757-fe76b779f299") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0g6j3n9fdv1a2lp2i8wbaaya85yrbfx3ns6iq1s7l2ayhxxmgh6b")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20180917221912-90fa682c2a6e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-golang-org-x-text-0.3.2 + (package + (name "go-golang-org-x-text") + (version "0.3.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0flv9idw0jm5nm8lx25xqanbkqgfiym6619w575p7nrdh0riqwqh")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/text")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" + ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) + (home-page "https://golang.org/x/text") + (synopsis "Go Text") + (description + "text is a repository of text-related packages related to internationalization +(i18n) and localization (l10n), such as character encodings, text +transformations, and locale-specific text handling.") + (license license:bsd-3))) + +(define-public go-github-com-onsi-ginkgo-1.13.0 + (package + (name "go-github-com-onsi-ginkgo") + (version "1.13.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/onsi/ginkgo") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1p8p334z7xjfsn35hfkls8crirz8hgqqq0hj83gxizpzq8v24qpi")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/onsi/ginkgo")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) + ("go-golang-org-x-sys-0.0.0-20200519105757-fe76b779f299" + ,go-golang-org-x-sys-0.0.0-20200519105757-fe76b779f299) + ("go-github-com-sclevine-agouti-3.0.0+incompatible" + ,go-github-com-sclevine-agouti-3.0.0+incompatible) + ("go-github-com-onsi-gomega-1.10.1" ,go-github-com-onsi-gomega-1.10.1) + ("go-github-com-nxadm-tail-1.4.4" ,go-github-com-nxadm-tail-1.4.4) + ("go-github-com-fsnotify-fsnotify-1.4.9" + ,go-github-com-fsnotify-fsnotify-1.4.9))) + (home-page "https://github.com/onsi/ginkgo") + (synopsis "Ginkgo 2.0 Release Candidate is available!") + (description "Ginkgo is a BDD-style testing framework for Golang") + (license license:expat))) + +(define-public go-github-com-google-go-cmp-0.3.0 + (package + (name "go-github-com-google-go-cmp") + (version "0.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1hyxx3434zshl2m9ja78gwlkg1rx9yl6diqa7dnjb31xz5x4gbjj")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically +equal.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd + (package + (name "go-google-golang-org-protobuf") + (version "0.0.0-20200109180630-ec00e32a8dfd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0w6lp9w2avxcpxwzzhspr209ifhyjagvs23k0vykfdqahl1aplrh")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.3.0" + ,go-github-com-google-go-cmp-0.3.0))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is +a language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol +buffer developer guide} for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.4.0-rc.1 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.0-rc.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "186rirvbfgv6hrxp27ipx2cdpv19qifdd20biqfdm01wiyclqimn")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd" + ,go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd) + ("go-github-com-google-go-cmp-0.3.1" + ,go-github-com-google-go-cmp-0.3.1))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code +github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-github-com-google-go-cmp-0.3.1 + (package + (name "go-github-com-google-go-cmp") + (version "0.3.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1caw49i0plkjxir7kdf5qhwls3krqwfmi7g4h392rdfwi3kfahx1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically +equal.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64 + (package + (name "go-google-golang-org-protobuf") + (version "0.0.0-20200221191635-4d8936d0db64") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0563bsvdjj6k0sgwqd5yzrgfiax7sp3lcwh608gync5sv9fx39cy")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.3.1" + ,go-github-com-google-go-cmp-0.3.1) + ("go-github-com-golang-protobuf-1.4.0-rc.1" + ,go-github-com-golang-protobuf-1.4.0-rc.1))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is +a language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol +buffer developer guide} for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.0-rc.1.0.20200221234624-67d41d38c208") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ykxhg3zixmw25pd435f8h16wnz1g00jpcmmg3xl030kksgqgpp6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64" + ,go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code +github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60 + (package + (name "go-google-golang-org-protobuf") + (version "0.0.0-20200228230310-ab0ca4ff8a60") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1rinspcznfp85yz4vrlf4h38hr576virgv8lcs22bsylqga808sd")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208" + ,go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is +a language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol +buffer developer guide} for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.4.0-rc.2 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.0-rc.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1hd43hjv5zl6bjbmhm5phx74bw4xajsi73m5zky2k56za4mpgzzc")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60" + ,go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code +github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967 + (package + (name "go-google-golang-org-protobuf") + (version "1.20.1-0.20200309200217-e05f789c0967") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "17wmy89hnmpkwc63rfcjp50q15s9f1rhmczg06c3z9yy41zk82w9")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.0-rc.2" + ,go-github-com-golang-protobuf-1.4.0-rc.2))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is +a language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol +buffer developer guide} for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.0-rc.4.0.20200313231945-b860323f09d0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1zj6cwshx0l5n9cn2cpbikzzb79px5dmkpc4p19zy1iif5r5p0z0")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967" + ,go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code +github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-1.21.0 + (package + (name "go-google-golang-org-protobuf") + (version "1.21.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12bwln8z1lf9105gdp6ip0rx741i4yfz1520gxnp8861lh9wcl63")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0" + ,go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is +a language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol +buffer developer guide} for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.4.0 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fjvl5n77abxz5qsd4mgyvjq19x43c5bfvmq62mq3m5plx6zksc8")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.21.0" + ,go-google-golang-org-protobuf-1.21.0) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code +github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-github-com-google-go-cmp-0.4.0 + (package + (name "go-github-com-google-go-cmp") + (version "0.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1x5pvl3fb5sbyng7i34431xycnhmx8xx94gq2n19g6p0vz68z2v2")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically +equal.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-1.23.0 + (package + (name "go-google-golang-org-protobuf") + (version "1.23.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03yan0m1v0zmlr935p4n24fd376mznsg85zy8sywbgisls4s1bzy")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.0" + ,go-github-com-golang-protobuf-1.4.0))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is +a language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol +buffer developer guide} for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.4.2 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0m5z81im4nsyfgarjhppayk4hqnrwswr3nix9mj8pff8x9jvcjqw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.23.0" + ,go-google-golang-org-protobuf-1.23.0) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code +github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20190904154756-749cb33beabd + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190904154756-749cb33beabd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0dm3257q3rv2kyn5lmqqim2fqg634v6rhrqq4glvbk4wx4l3v337")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-nxadm-tail-1.4.4 + (package + (name "go-github-com-nxadm-tail") + (version "1.4.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/nxadm/tail") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1czmwqii0fc8v3ar5bwqpfanprkxg19waly405zlvcflzvj53wwc")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/nxadm/tail")) + (propagated-inputs + `(("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" + ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) + ("go-golang-org-x-sys-0.0.0-20190904154756-749cb33beabd" + ,go-golang-org-x-sys-0.0.0-20190904154756-749cb33beabd) + ("go-github-com-fsnotify-fsnotify-1.4.7" + ,go-github-com-fsnotify-fsnotify-1.4.7))) + (home-page "https://github.com/nxadm/tail") + (synopsis "tail functionality in Go") + (description + "nxadm/tail provides a Go library that emulates the features of the BSD `tail` +program. The library comes with full support for truncation/move detection as +it is designed to work with log rotation tools. The library works on all +operating systems supported by Go, including POSIX systems like Linux and *BSD, +and MS Windows. Go 1.9 is the oldest compiler release supported.") + (license license:expat))) + +(define-public go-github-com-fsnotify-fsnotify-1.4.7 + (package + (name "go-github-com-fsnotify-fsnotify") + (version "1.4.7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/fsnotify/fsnotify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/fsnotify/fsnotify")) + (home-page "https://github.com/fsnotify/fsnotify") + (synopsis "File system notifications for Go") + (description + "Package fsnotify provides a platform-independent interface for file system +notifications.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.2.0 + (package + (name "go-github-com-golang-protobuf") + (version "1.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0kf4b59rcbb1cchfny2dm9jyznp8ri2hsb14n8iak1q8986xa0ab")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code +github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-github-com-hpcloud-tail-1.0.0 + (package + (name "go-github-com-hpcloud-tail") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hpcloud/tail") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1njpzc0pi1acg5zx9y6vj9xi6ksbsc5d387rd6904hy6rh2m6kn0")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hpcloud/tail")) + (home-page "https://github.com/hpcloud/tail") + (synopsis "Go package for tail-ing files") + (description + "This package provides a Go package striving to emulate the features of the BSD +@code{tail} program.") + (license license:expat))) + +(define-public go-github-com-onsi-ginkgo-1.6.0 + (package + (name "go-github-com-onsi-ginkgo") (version "1.6.0") (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/containerd/containerd") + (url "https://github.com/onsi/ginkgo") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "1wqmb124l8hjh7a053xjgh1kwblczg6q99l4vh6pi5zmnmdn67iv")))) + (base32 "0x0gc89vgq38xhgmi2h22bhr73cf2gmk42g89nz89k8dgg9hhr25")))) (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/containerd")) - (propagated-inputs - `(("go-google-golang-org-genproto-0.0.0-20200224152610-e50cd9704f63" - ,go-google-golang-org-genproto-0.0.0-20200224152610-e50cd9704f63) - ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) - ("go-github-com-gogo-googleapis-1.3.2" - ,go-github-com-gogo-googleapis-1.3.2) - ("go-k8s-io-utils-0.0.0-20210930125809-cb0fa318a74b" - ,go-k8s-io-utils-0.0.0-20210930125809-cb0fa318a74b) - ("go-k8s-io-klog-v2-2.30.0" ,go-k8s-io-klog-v2-2.30.0) - ("go-k8s-io-cri-api-0.23.1" ,go-k8s-io-cri-api-0.23.1) - ("go-k8s-io-component-base-0.22.5" ,go-k8s-io-component-base-0.22.5) - ("go-k8s-io-client-go-0.22.5" ,go-k8s-io-client-go-0.22.5) - ("go-k8s-io-apiserver-0.22.5" ,go-k8s-io-apiserver-0.22.5) - ("go-k8s-io-apimachinery-0.22.5" ,go-k8s-io-apimachinery-0.22.5) - ("go-k8s-io-api-0.22.5" ,go-k8s-io-api-0.22.5) - ("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) - ("go-google-golang-org-protobuf-1.27.1" - ,go-google-golang-org-protobuf-1.27.1) - ("go-google-golang-org-grpc-1.43.0" ,go-google-golang-org-grpc-1.43.0) - ("go-golang-org-x-term-0.0.0-20210615171337-6886f2dfbf5b" - ,go-golang-org-x-term-0.0.0-20210615171337-6886f2dfbf5b) - ("go-golang-org-x-sys-0.0.0-20211216021012-1d35b9e2eb4e" - ,go-golang-org-x-sys-0.0.0-20211216021012-1d35b9e2eb4e) - ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" - ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) - ("go-golang-org-x-oauth2-0.0.0-20210819190943-2bc19b11175f" - ,go-golang-org-x-oauth2-0.0.0-20210819190943-2bc19b11175f) - ("go-golang-org-x-net-0.0.0-20211216030914-fe4d6282115f" - ,go-golang-org-x-net-0.0.0-20211216030914-fe4d6282115f) - ("go-golang-org-x-crypto-0.0.0-20210817164053-32db794688a5" - ,go-golang-org-x-crypto-0.0.0-20210817164053-32db794688a5) - ("go-go-opentelemetry-io-otel-trace-1.3.0" - ,go-go-opentelemetry-io-otel-trace-1.3.0) - ("go-go-opentelemetry-io-otel-sdk-1.3.0" - ,go-go-opentelemetry-io-otel-sdk-1.3.0) - ("go-go-opentelemetry-io-otel-exporters-otlp-otlptrace-otlptracehttp-1.3.0" - ,go-go-opentelemetry-io-otel-exporters-otlp-otlptrace-otlptracehttp-1.3.0) - ("go-go-opentelemetry-io-otel-exporters-otlp-otlptrace-otlptracegrpc-1.3.0" - ,go-go-opentelemetry-io-otel-exporters-otlp-otlptrace-otlptracegrpc-1.3.0) - ("go-go-opentelemetry-io-otel-exporters-otlp-otlptrace-1.3.0" - ,go-go-opentelemetry-io-otel-exporters-otlp-otlptrace-1.3.0) - ("go-go-opentelemetry-io-otel-1.3.0" - ,go-go-opentelemetry-io-otel-1.3.0) - ("go-go-opentelemetry-io-contrib-instrumentation-google-golang-org-grpc-otelgrpc-0.28.0" - ,go-go-opentelemetry-io-contrib-instrumentation-google-golang-org-grpc-otelgrpc-0.28.0) - ("go-go-etcd-io-bbolt-1.3.6" ,go-go-etcd-io-bbolt-1.3.6) - ("go-github-com-vishvananda-netlink-1.1.1-0.20210330154013-f5de75959ad5" - ,go-github-com-vishvananda-netlink-1.1.1-0.20210330154013-f5de75959ad5) - ("go-github-com-tchap-go-patricia-2.2.6+incompatible" - ,go-github-com-tchap-go-patricia-2.2.6+incompatible) - ("go-github-com-stretchr-testify-1.7.0" - ,go-github-com-stretchr-testify-1.7.0) - ("go-github-com-sirupsen-logrus-1.8.1" - ,go-github-com-sirupsen-logrus-1.8.1) - ("go-github-com-satori-go-uuid-1.2.0" - ,go-github-com-satori-go-uuid-1.2.0) - ("go-github-com-prometheus-client-golang-1.11.0" - ,go-github-com-prometheus-client-golang-1.11.0) - ("go-github-com-pelletier-go-toml-1.9.3" - ,go-github-com-pelletier-go-toml-1.9.3) - ("go-github-com-opencontainers-selinux-1.10.0" - ,go-github-com-opencontainers-selinux-1.10.0) - ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417" - ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417) - ("go-github-com-opencontainers-runc-1.1.0" - ,go-github-com-opencontainers-runc-1.1.0) - ("go-github-com-opencontainers-image-spec-1.0.2-0.20211117181255-693428a734f5" - ,go-github-com-opencontainers-image-spec-1.0.2-0.20211117181255-693428a734f5) - ("go-github-com-opencontainers-go-digest-1.0.0" - ,go-github-com-opencontainers-go-digest-1.0.0) - ("go-github-com-moby-sys-symlink-0.2.0" - ,go-github-com-moby-sys-symlink-0.2.0) - ("go-github-com-moby-sys-signal-0.6.0" - ,go-github-com-moby-sys-signal-0.6.0) - ("go-github-com-moby-sys-mountinfo-0.5.0" - ,go-github-com-moby-sys-mountinfo-0.5.0) - ("go-github-com-moby-locker-1.0.1" ,go-github-com-moby-locker-1.0.1) - ("go-github-com-klauspost-compress-1.11.13" - ,go-github-com-klauspost-compress-1.11.13) - ("go-github-com-json-iterator-go-1.1.12" - ,go-github-com-json-iterator-go-1.1.12) - ("go-github-com-intel-goresctrl-0.2.0" - ,go-github-com-intel-goresctrl-0.2.0) - ("go-github-com-imdario-mergo-0.3.12" - ,go-github-com-imdario-mergo-0.3.12) - ("go-github-com-hashicorp-go-multierror-1.1.1" - ,go-github-com-hashicorp-go-multierror-1.1.1) - ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" - ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) - ("go-github-com-grpc-ecosystem-go-grpc-middleware-1.3.0" - ,go-github-com-grpc-ecosystem-go-grpc-middleware-1.3.0) - ("go-github-com-google-uuid-1.2.0" ,go-github-com-google-uuid-1.2.0) - ("go-github-com-google-go-cmp-0.5.6" - ,go-github-com-google-go-cmp-0.5.6) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2) - ("go-github-com-go-logr-stdr-1.2.2" ,go-github-com-go-logr-stdr-1.2.2) - ("go-github-com-fsnotify-fsnotify-1.4.9" - ,go-github-com-fsnotify-fsnotify-1.4.9) - ("go-github-com-emicklei-go-restful-2.9.5+incompatible" - ,go-github-com-emicklei-go-restful-2.9.5+incompatible) - ("go-github-com-docker-go-units-0.4.0" - ,go-github-com-docker-go-units-0.4.0) - ("go-github-com-docker-go-metrics-0.0.1" - ,go-github-com-docker-go-metrics-0.0.1) - ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" - ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1) - ("go-github-com-coreos-go-systemd-v22-22.3.2" - ,go-github-com-coreos-go-systemd-v22-22.3.2) - ("go-github-com-containernetworking-plugins-1.0.1" - ,go-github-com-containernetworking-plugins-1.0.1) - ("go-github-com-containerd-zfs-1.0.0" - ,go-github-com-containerd-zfs-1.0.0) - ("go-github-com-containerd-typeurl-1.0.2" - ,go-github-com-containerd-typeurl-1.0.2) - ("go-github-com-containerd-ttrpc-1.1.0" - ,go-github-com-containerd-ttrpc-1.1.0) - ("go-github-com-containerd-nri-0.1.0" - ,go-github-com-containerd-nri-0.1.0) - ("go-github-com-containerd-imgcrypt-1.1.3" - ,go-github-com-containerd-imgcrypt-1.1.3) - ("go-github-com-containerd-go-runc-1.0.0" - ,go-github-com-containerd-go-runc-1.0.0) - ("go-github-com-containerd-go-cni-1.1.3" - ,go-github-com-containerd-go-cni-1.1.3) - ("go-github-com-containerd-fifo-1.0.0" - ,go-github-com-containerd-fifo-1.0.0) - ("go-github-com-containerd-continuity-0.2.2" - ,go-github-com-containerd-continuity-0.2.2) - ("go-github-com-containerd-console-1.0.3" - ,go-github-com-containerd-console-1.0.3) - ("go-github-com-containerd-cgroups-1.0.3" - ,go-github-com-containerd-cgroups-1.0.3) - ("go-github-com-containerd-btrfs-1.0.0" - ,go-github-com-containerd-btrfs-1.0.0) - ("go-github-com-containerd-aufs-1.0.0" - ,go-github-com-containerd-aufs-1.0.0) - ("go-github-com-microsoft-hcsshim-0.9.2" - ,go-github-com-microsoft-hcsshim-0.9.2) - ("go-github-com-microsoft-go-winio-0.5.1" - ,go-github-com-microsoft-go-winio-0.5.1) - ("go-github-com-adalogics-go-fuzz-headers-0.0.0-20210715213245-6c3934b029d8" - ,go-github-com-adalogics-go-fuzz-headers-0.0.0-20210715213245-6c3934b029d8) - ("go-cloud-google-com-go-0.81.0" ,go-cloud-google-com-go-0.81.0))) - (home-page "https://github.com/containerd/containerd") - (synopsis "Now Recruiting") + (arguments '(#:import-path "github.com/onsi/ginkgo")) + (home-page "https://github.com/onsi/ginkgo") + (synopsis "Ginkgo 2.0 Release Candidate is available!") + (description "Ginkgo is a BDD-style testing framework for Golang") + (license license:expat))) + +(define-public go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd + (package + (name "go-golang-org-x-net") + (version "0.0.0-20180906233101-161cd47e91fd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0254ld010iijygbzykib2vags1dc0wlmcmhgh4jl8iny159lhbcv")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") (description - "containerd is an industry-standard container runtime with an emphasis on -simplicity, robustness and portability. It is available as a daemon for Linux -and Windows, which can manage the complete container lifecycle of its host -system: image transfer and storage, container execution and supervision, -low-level storage and network attachments, etc.") + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20180314180146-1d60e4601c6f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "046jlanz2lkxq1r57x9bl6s4cvfqaic6p2xybsj8mq1120jv4rs6")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the ones +provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20180909124046-d0be0721c37e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "081wyvfnlf842dqg03raxfz6lldlxpmyh1prix9lmrrm65arxb12")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-gopkg-in-fsnotify-v1-1.4.7 + (package + (name "go-gopkg-in-fsnotify-v1") + (version "1.4.7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/fsnotify.v1") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) + (build-system go-build-system) + (arguments + '(#:import-path + "gopkg.in/fsnotify.v1" + #:unpack-path + "gopkg.in/fsnotify.v1")) + (home-page "https://gopkg.in/fsnotify.v1") + (synopsis "File system notifications for Go") + (description + "Package fsnotify provides a platform-independent interface for file system +notifications.") + (license license:bsd-3))) + +(define-public go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7 + (package + (name "go-gopkg-in-tomb-v1") + (version "1.0.0-20141024135613-dd632973f1e7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/tomb.v1") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1lqmq1ag7s4b3gc3ddvr792c5xb5k6sfn0cchr3i2s7f1c231zjv")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/tomb.v1" #:unpack-path "gopkg.in/tomb.v1")) + (home-page "https://gopkg.in/tomb.v1") + (synopsis "Installation and usage") + (description + "The tomb package offers a conventional API for clean goroutine termination.") + (license license:bsd-3))) + +(define-public go-gopkg-in-yaml-v2-2.2.4 + (package + (name "go-gopkg-in-yaml-v2") + (version "2.2.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "11bwj757wi8kdrcnlgfqb8vv2d2xdhlghmyagd19i62khrkchsg2")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v2") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language.") (license license:asl2.0))) + +(define-public go-github-com-onsi-gomega-1.7.1 + (package + (name "go-github-com-onsi-gomega") + (version "1.7.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/onsi/gomega") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "06p3x0910cdaa64l7d44s728d4j3yhps315dlcvrbjzhljjj7mam")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/onsi/gomega")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.4" ,go-gopkg-in-yaml-v2-2.2.4) + ("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" + ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) + ("go-gopkg-in-fsnotify-v1-1.4.7" ,go-gopkg-in-fsnotify-v1-1.4.7) + ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e" + ,go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e) + ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" + ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) + ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" + ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) + ("go-github-com-onsi-ginkgo-1.6.0" ,go-github-com-onsi-ginkgo-1.6.0) + ("go-github-com-hpcloud-tail-1.0.0" ,go-github-com-hpcloud-tail-1.0.0) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0) + ("go-github-com-fsnotify-fsnotify-1.4.7" + ,go-github-com-fsnotify-fsnotify-1.4.7))) + (home-page "https://github.com/onsi/gomega") + (synopsis ": a BDD Testing Framework for Golang") + (description + "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library.") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20191120155948-bd437916bb0e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1i8x26frmlin55k69k936zd1rp5sqnq14y5ms4rkxbfzhasdm2rx")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-onsi-ginkgo-1.12.1 + (package + (name "go-github-com-onsi-ginkgo") + (version "1.12.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/onsi/ginkgo") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0xs9724l2b0bwjwrvw5cs3akxaw0n1j5kyxrb1ggfsdjz0zmjcxh")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/onsi/ginkgo")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e" + ,go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e) + ("go-github-com-onsi-gomega-1.7.1" ,go-github-com-onsi-gomega-1.7.1) + ("go-github-com-nxadm-tail-1.4.4" ,go-github-com-nxadm-tail-1.4.4))) + (home-page "https://github.com/onsi/ginkgo") + (synopsis "Ginkgo 2.0 Release Candidate is available!") + (description "Ginkgo is a BDD-style testing framework for Golang") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190215142949-d0b11bdaac8a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20190308221718-c2843e01d9a2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200323222414-85ca7c5b95cd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1504qkgbhhm4f0bhk77v2r1lj6x171ay5m79alkg78wjb5cign5l")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-text-0.3.0 + (package + (name "go-golang-org-x-text") + (version "0.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/text")) + (home-page "https://golang.org/x/text") + (synopsis "Go Text") + (description + "text is a repository of text-related packages related to internationalization +(i18n) and localization (l10n), such as character encodings, text +transformations, and locale-specific text handling.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20200520004742-59133d7f0dd7 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20200520004742-59133d7f0dd7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03js31gnf3hir5dh6q01bj7cs0y4wzyinqg1mvr0nlb83kak9ggq")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" + ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543 + (package + (name "go-golang-org-x-xerrors") + (version "0.0.0-20191204190536-9bdfabe68543") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/xerrors") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1yjfi1bk9xb81lqn85nnm13zz725wazvrx3b50hx19qmwg7a4b0c")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/xerrors")) + (home-page "https://golang.org/x/xerrors") + (synopsis #f) + (description "Package xerrors implements functions to manipulate errors.") + (license license:bsd-3))) + +(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 + (package + (name "go-gopkg-in-check-v1") + (version "0.0.0-20161208181325-20d25e280405") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/check.v1") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) + (home-page "https://gopkg.in/check.v1") + (synopsis "Instructions") + (description + "Package check is a rich testing extension for Go's testing package.") + (license license:bsd-2))) + +(define-public go-gopkg-in-yaml-v2-2.3.0 + (package + (name "go-gopkg-in-yaml-v2") + (version "2.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1md0hlyd9s6myv3663i9l59y74n4xjazifmmyxn43g86fgkc5lzj")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v2") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language.") + (license license:asl2.0))) + +(define-public go-github-com-onsi-gomega-1.10.1 + (package + (name "go-github-com-onsi-gomega") + (version "1.10.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/onsi/gomega") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "068mirdbwl9n9dqlvqr489h52wkd90cv1jvng4yp8kv83lhzk2dq")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/onsi/gomega")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.3.0" ,go-gopkg-in-yaml-v2-2.3.0) + ("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) + ("go-golang-org-x-net-0.0.0-20200520004742-59133d7f0dd7" + ,go-golang-org-x-net-0.0.0-20200520004742-59133d7f0dd7) + ("go-github-com-onsi-ginkgo-1.12.1" ,go-github-com-onsi-ginkgo-1.12.1) + ("go-github-com-golang-protobuf-1.4.2" + ,go-github-com-golang-protobuf-1.4.2))) + (home-page "https://github.com/onsi/gomega") + (synopsis ": a BDD Testing Framework for Golang") + (description + "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library.") + (license license:expat))) + (define-public go-github-com-containernetworking-cni-1.0.1 (package (name "go-github-com-containernetworking-cni") @@ -594,177 +5672,7 @@ removing allocated resources when the container is deleted. Because of this focus, CNI has a wide range of support and the specification is simple to implement.") (license license:asl2.0))) -(define-public go-github-com-containernetworking-plugins-1.1.0 - (package - (name "go-github-com-containernetworking-plugins") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containernetworking/plugins") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "10c9sxi5nq88772ql35a3vy5m1wrdyji4imc4ysl27malcqxhiik")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containernetworking/plugins")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) - ("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" - ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) - ("go-golang-org-x-text-0.3.6" ,go-golang-org-x-text-0.3.6) - ("go-golang-org-x-net-0.0.0-20210428140749-89ef3d95e781" - ,go-golang-org-x-net-0.0.0-20210428140749-89ef3d95e781) - ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) - ("go-github-com-vishvananda-netns-0.0.0-20210104183010-2eb08e3e575f" - ,go-github-com-vishvananda-netns-0.0.0-20210104183010-2eb08e3e575f) - ("go-github-com-sirupsen-logrus-1.8.1" - ,go-github-com-sirupsen-logrus-1.8.1) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-nxadm-tail-1.4.8" ,go-github-com-nxadm-tail-1.4.8) - ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" - ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2) - ("go-github-com-fsnotify-fsnotify-1.4.9" - ,go-github-com-fsnotify-fsnotify-1.4.9) - ("go-github-com-containerd-cgroups-1.0.1" - ,go-github-com-containerd-cgroups-1.0.1) - ("go-github-com-microsoft-go-winio-0.4.17" - ,go-github-com-microsoft-go-winio-0.4.17) - ("go-golang-org-x-sys-0.0.0-20210809222454-d867a43fc93e" - ,go-golang-org-x-sys-0.0.0-20210809222454-d867a43fc93e) - ("go-github-com-vishvananda-netlink-1.1.1-0.20210330154013-f5de75959ad5" - ,go-github-com-vishvananda-netlink-1.1.1-0.20210330154013-f5de75959ad5) - ("go-github-com-safchain-ethtool-0.0.0-20210803160452-9aa261dae9b1" - ,go-github-com-safchain-ethtool-0.0.0-20210803160452-9aa261dae9b1) - ("go-github-com-onsi-gomega-1.15.0" ,go-github-com-onsi-gomega-1.15.0) - ("go-github-com-onsi-ginkgo-1.16.4" ,go-github-com-onsi-ginkgo-1.16.4) - ("go-github-com-networkplumbing-go-nft-0.2.0" - ,go-github-com-networkplumbing-go-nft-0.2.0) - ("go-github-com-mattn-go-shellwords-1.0.12" - ,go-github-com-mattn-go-shellwords-1.0.12) - ("go-github-com-godbus-dbus-v5-5.0.4" - ,go-github-com-godbus-dbus-v5-5.0.4) - ("go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5" - ,go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5) - ("go-github-com-d2g-dhcp4client-1.0.0" - ,go-github-com-d2g-dhcp4client-1.0.0) - ("go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c" - ,go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c) - ("go-github-com-coreos-go-systemd-v22-22.3.2" - ,go-github-com-coreos-go-systemd-v22-22.3.2) - ("go-github-com-coreos-go-iptables-0.6.0" - ,go-github-com-coreos-go-iptables-0.6.0) - ("go-github-com-containernetworking-cni-1.0.1" - ,go-github-com-containernetworking-cni-1.0.1) - ("go-github-com-buger-jsonparser-1.1.1" - ,go-github-com-buger-jsonparser-1.1.1) - ("go-github-com-alexflint-go-filemutex-1.1.0" - ,go-github-com-alexflint-go-filemutex-1.1.0) - ("go-github-com-microsoft-hcsshim-0.8.20" - ,go-github-com-microsoft-hcsshim-0.8.20))) - (home-page "https://github.com/containernetworking/plugins") - (synopsis "Plugins") - (description - "Some CNI network plugins, maintained by the containernetworking team. For more -information, see the @url{https://www.cni.dev,CNI website}.") - (license license:asl2.0))) -(define-public go-github-com-containers-image-v5-5.19.1 - (package - (name "go-github-com-containers-image-v5") - (version "5.19.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containers/image") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0wyq3ns6yrzi9bff2kb8p3rppw652m4ffq8374sdjkn7f39z4inf")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containers/image/v5")) - (propagated-inputs - `(("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" - ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) - ("go-golang-org-x-sys-0.0.0-20220114195835-da31bd327af9" - ,go-golang-org-x-sys-0.0.0-20220114195835-da31bd327af9) - ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" - ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) - ("go-golang-org-x-net-0.0.0-20211112202133-69e39bad7dc2" - ,go-golang-org-x-net-0.0.0-20211112202133-69e39bad7dc2) - ("go-golang-org-x-crypto-0.0.0-20211215153901-e495a2d5b3d3" - ,go-golang-org-x-crypto-0.0.0-20211215153901-e495a2d5b3d3) - ("go-go-etcd-io-bbolt-1.3.6" ,go-go-etcd-io-bbolt-1.3.6) - ("go-github-com-xeipuuv-gojsonschema-1.2.0" - ,go-github-com-xeipuuv-gojsonschema-1.2.0) - ("go-github-com-xeipuuv-gojsonpointer-0.0.0-20190809123943-df4f5c81cb3b" - ,go-github-com-xeipuuv-gojsonpointer-0.0.0-20190809123943-df4f5c81cb3b) - ("go-github-com-vbauerster-mpb-v7-7.3.2" - ,go-github-com-vbauerster-mpb-v7-7.3.2) - ("go-github-com-vbatts-tar-split-0.11.2" - ,go-github-com-vbatts-tar-split-0.11.2) - ("go-github-com-ulikunitz-xz-0.5.10" - ,go-github-com-ulikunitz-xz-0.5.10) - ("go-github-com-sylabs-sif-v2-2.3.1" - ,go-github-com-sylabs-sif-v2-2.3.1) - ("go-github-com-stretchr-testify-1.7.0" - ,go-github-com-stretchr-testify-1.7.0) - ("go-github-com-sirupsen-logrus-1.8.1" - ,go-github-com-sirupsen-logrus-1.8.1) - ("go-github-com-proglottis-gpgme-0.1.1" - ,go-github-com-proglottis-gpgme-0.1.1) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-ostreedev-ostree-go-0.0.0-20190702140239-759a8c1ac913" - ,go-github-com-ostreedev-ostree-go-0.0.0-20190702140239-759a8c1ac913) - ("go-github-com-opencontainers-selinux-1.10.0" - ,go-github-com-opencontainers-selinux-1.10.0) - ("go-github-com-opencontainers-image-spec-1.0.3-0.20211202193544-a5463b7f9c84" - ,go-github-com-opencontainers-image-spec-1.0.3-0.20211202193544-a5463b7f9c84) - ("go-github-com-opencontainers-go-digest-1.0.0" - ,go-github-com-opencontainers-go-digest-1.0.0) - ("go-github-com-manifoldco-promptui-0.9.0" - ,go-github-com-manifoldco-promptui-0.9.0) - ("go-github-com-klauspost-pgzip-1.2.5" - ,go-github-com-klauspost-pgzip-1.2.5) - ("go-github-com-klauspost-compress-1.14.2" - ,go-github-com-klauspost-compress-1.14.2) - ("go-github-com-imdario-mergo-0.3.12" - ,go-github-com-imdario-mergo-0.3.12) - ("go-github-com-hashicorp-go-multierror-1.1.1" - ,go-github-com-hashicorp-go-multierror-1.1.1) - ("go-github-com-gorilla-mux-1.7.4" ,go-github-com-gorilla-mux-1.7.4) - ("go-github-com-ghodss-yaml-1.0.0" ,go-github-com-ghodss-yaml-1.0.0) - ("go-github-com-docker-libtrust-0.0.0-20160708172513-aabc10ec26b7" - ,go-github-com-docker-libtrust-0.0.0-20160708172513-aabc10ec26b7) - ("go-github-com-docker-go-connections-0.4.0" - ,go-github-com-docker-go-connections-0.4.0) - ("go-github-com-docker-docker-credential-helpers-0.6.4" - ,go-github-com-docker-docker-credential-helpers-0.6.4) - ("go-github-com-docker-docker-20.10.12+incompatible" - ,go-github-com-docker-docker-20.10.12+incompatible) - ("go-github-com-docker-distribution-2.7.1+incompatible" - ,go-github-com-docker-distribution-2.7.1+incompatible) - ("go-github-com-containers-storage-1.38.2" - ,go-github-com-containers-storage-1.38.2) - ("go-github-com-containers-ocicrypt-1.1.2" - ,go-github-com-containers-ocicrypt-1.1.2) - ("go-github-com-containers-libtrust-0.0.0-20190913040956-14b96171aa3b" - ,go-github-com-containers-libtrust-0.0.0-20190913040956-14b96171aa3b) - ("go-github-com-containerd-containerd-1.5.9" - ,go-github-com-containerd-containerd-1.5.9) - ("go-github-com-burntsushi-toml-1.0.0" - ,go-github-com-burntsushi-toml-1.0.0) - ("go-github-com-14rcole-gopopulate-0.0.0-20180821133914-b175b219e774" - ,go-github-com-14rcole-gopopulate-0.0.0-20180821133914-b175b219e774))) - (home-page "https://github.com/containers/image") - (synopsis "") - (description - "The package image provides libraries and commands to interact with container -images.") - (license license:asl2.0))) + (define-public go-github-com-creack-pty-1.1.17 (package (name "go-github-com-creack-pty") @@ -785,6 +5693,7 @@ images.") (description "Package pty provides functions for working with Unix terminals.") (license license:expat))) + (define-public go-github-com-cyphar-filepath-securejoin-0.2.3 (package (name "go-github-com-cyphar-filepath-securejoin") @@ -810,6 +5719,7 @@ SecureJoin proposal (@url{https://github.com/golang/go/issues/20126,https://github.com/golang/go/issues/20126}) more tangible.") (license license:bsd-3))) + (define-public go-github-com-docker-docker-20.10.12+incompatible (package (name "go-github-com-docker-docker") @@ -831,6 +5741,144 @@ more tangible.") "Moby is an open-source project created by Docker to enable and accelerate software containerization.") (license license:asl2.0))) + +(define-public go-golang-org-x-sys-0.0.0-20200116001909-b77594299b42 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200116001909-b77594299b42") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0isfm6kmh4fjhh6m7mrb3zvdjka2y31c5habr5kydl7rg0lwkabv")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-mattn-go-isatty-0.0.12 + (package + (name "go-github-com-mattn-go-isatty") + (version "0.0.12") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mattn/go-isatty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1dfsh27d52wmz0nmmzm2382pfrs2fcijvh6cgir7jbb4pnigr5w4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mattn/go-isatty")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20200116001909-b77594299b42" + ,go-golang-org-x-sys-0.0.0-20200116001909-b77594299b42))) + (home-page "https://github.com/mattn/go-isatty") + (synopsis "go-isatty") + (description "Package isatty implements interface to isatty") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20200223170610-d5e6a3e2c0ae + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200223170610-d5e6a3e2c0ae") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0lz7vm5dz2p14fzq2j4m1l9p392cl0fa73aaf45gln07ylfajk4n")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-mattn-go-colorable-0.1.9 + (package + (name "go-github-com-mattn-go-colorable") + (version "0.1.9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mattn/go-colorable") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0f46aiyfca71y7g7ypkicqi0r4ys9jwdw2v6hwdc0x76d39hh0qk")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mattn/go-colorable")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20200223170610-d5e6a3e2c0ae" + ,go-golang-org-x-sys-0.0.0-20200223170610-d5e6a3e2c0ae) + ("go-github-com-mattn-go-isatty-0.0.12" + ,go-github-com-mattn-go-isatty-0.0.12))) + (home-page "https://github.com/mattn/go-colorable") + (synopsis "go-colorable") + (description "Colorable writer for windows.") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20210630005230-0f9fa26af87c + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20210630005230-0f9fa26af87c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "17g7kc6bf6zw4ib1xhmkbpfdn85jbmindqsz0l8ymmc6v279h13q")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-mattn-go-isatty-0.0.14 + (package + (name "go-github-com-mattn-go-isatty") + (version "0.0.14") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mattn/go-isatty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "015zc3j60vb85d7f2al15la24wn45piazxlagqhzrbgfdyqci60z")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mattn/go-isatty")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20210630005230-0f9fa26af87c" + ,go-golang-org-x-sys-0.0.0-20210630005230-0f9fa26af87c))) + (home-page "https://github.com/mattn/go-isatty") + (synopsis "go-isatty") + (description "Package isatty implements interface to isatty") + (license license:expat))) + (define-public go-github-com-fatih-color-1.13.0 (package (name "go-github-com-fatih-color") @@ -858,6 +5906,7 @@ software containerization.") to the standard output. The API can be used in several way, pick one that suits you.") (license license:expat))) + (define-public go-github-com-go-log-log-0.2.0 (package (name "go-github-com-go-log-log") @@ -877,6 +5926,7 @@ you.") (synopsis "Log") (description "Package log provides a log interface") (license license:expat))) + (define-public go-github-com-google-uuid-1.3.0 (package (name "go-github-com-google-uuid") @@ -896,6 +5946,7 @@ you.") (synopsis "uuid") (description "Package uuid generates and inspects UUIDs.") (license license:bsd-3))) + (define-public go-github-com-opencontainers-go-digest-1.0.0 (package (name "go-github-com-opencontainers-go-digest") @@ -920,6 +5971,240 @@ as a flexible identifier in a content-addressable system. More importantly, it provides tools and wrappers to work with hash.Hash-based digests with little effort.") (license (list license:asl2.0 license:cc-by-sa4.0)))) + +(define-public go-github-com-opencontainers-go-digest-1.0.0 + (package + (name "go-github-com-opencontainers-go-digest") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/go-digest") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0i5acjajvr6hi9zb7gxwifd8w28y884cv7cx36adj8lngj647xbi")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/go-digest")) + (home-page "https://github.com/opencontainers/go-digest") + (synopsis "go-digest") + (description + "Package digest provides a generalized type to opaquely represent message digests +and their operations within the registry. The Digest type is designed to serve +as a flexible identifier in a content-addressable system. More importantly, it +provides tools and wrappers to work with hash.Hash-based digests with little +effort.") + (license (list license:asl2.0 license:cc-by-sa4.0)))) + +(define-public go-github-com-pkg-errors-0.9.1 + (package + (name "go-github-com-pkg-errors") + (version "0.9.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pkg/errors") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1761pybhc2kqr6v5fm8faj08x9bql8427yqg6vnfv6nhrasx1mwq")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pkg/errors")) + (home-page "https://github.com/pkg/errors") + (synopsis "errors") + (description "Package errors provides simple error handling primitives.") + (license license:bsd-2))) + +(define-public go-github-com-russross-blackfriday-1.6.0 + (package + (name "go-github-com-russross-blackfriday") + (version "1.6.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/russross/blackfriday") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "036028ynpq52z9snmd2b1kjzyvv6n9sg71k651ndznggnw19aamp")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/russross/blackfriday")) + (home-page "https://github.com/russross/blackfriday") + (synopsis "Blackfriday") + (description "Package blackfriday is a Markdown processor.") + (license license:bsd-2))) + +(define-public go-github-com-davecgh-go-spew-1.1.0 + (package + (name "go-github-com-davecgh-go-spew") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/davecgh/go-spew") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/davecgh/go-spew")) + (home-page "https://github.com/davecgh/go-spew") + (synopsis "go-spew") + (description + "Go-spew implements a deep pretty printer for Go data structures to aid in +debugging. A comprehensive suite of tests with 100% test coverage is provided +to ensure proper functionality. See @code{test_coverage.txt} for the gocov +coverage report. Go-spew is licensed under the liberal ISC license, so it may +be used in open source or commercial projects.") + (license license:isc))) + +(define-public go-github-com-pmezard-go-difflib-1.0.0 + (package + (name "go-github-com-pmezard-go-difflib") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pmezard/go-difflib") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pmezard/go-difflib")) + (home-page "https://github.com/pmezard/go-difflib") + (synopsis "go-difflib") + (description + "Go-difflib is a partial port of python 3 difflib package. Its main goal was to +make unified and context diff available in pure Go, mostly for testing purposes.") + (license license:bsd-3))) + +(define-public go-github-com-stretchr-objx-0.1.0 + (package + (name "go-github-com-stretchr-objx") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/objx") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/objx")) + (home-page "https://github.com/stretchr/objx") + (synopsis "Objx") + (description + "Objx - Go package for dealing with maps, slices, JSON and other data.") + (license license:expat))) + +(define-public go-github-com-stretchr-testify-1.3.0 + (package + (name "go-github-com-stretchr-testify") + (version "1.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wjchp2c8xbgcbbq32w3kvblk6q6yn533g78nxl6iskq6y95lxsy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (propagated-inputs + `(("go-github-com-stretchr-objx-0.1.0" + ,go-github-com-stretchr-objx-0.1.0) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.0" + ,go-github-com-davecgh-go-spew-1.1.0))) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in +it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that +your code will behave as you intend.") + (license license:expat))) + +(define-public go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f + (package + (name "go-github-com-xeipuuv-gojsonpointer") + (version "0.0.0-20180127040702-4e3ac2762d5f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/xeipuuv/gojsonpointer") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "13y6iq2nzf9z4ls66bfgnnamj2m3438absmbpqry64bpwjfbsi9q")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/xeipuuv/gojsonpointer")) + (home-page "https://github.com/xeipuuv/gojsonpointer") + (synopsis "gojsonpointer") + (description "An implementation of JSON Pointer - Go language") + (license license:asl2.0))) + +(define-public go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415 + (package + (name "go-github-com-xeipuuv-gojsonreference") + (version "0.0.0-20180127040603-bd5ef7bd5415") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/xeipuuv/gojsonreference") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1xby79padc7bmyb8rfbad8wfnfdzpnh51b1n8c0kibch0kwc1db5")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/xeipuuv/gojsonreference")) + (home-page "https://github.com/xeipuuv/gojsonreference") + (synopsis "gojsonreference") + (description "An implementation of JSON Reference - Go language") + (license license:asl2.0))) + +(define-public go-github-com-xeipuuv-gojsonschema-1.2.0 + (package + (name "go-github-com-xeipuuv-gojsonschema") + (version "1.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/xeipuuv/gojsonschema") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1mqiq0r8qw4qlfp3ls8073r6514rmzwrmdn4j33rppk3zh942i6l")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/xeipuuv/gojsonschema")) + (propagated-inputs + `(("go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415" + ,go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415) + ("go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f" + ,go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f) + ("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0))) + (home-page "https://github.com/xeipuuv/gojsonschema") + (synopsis "gojsonschema") + (description + "An implementation of JSON Schema for the Go programming language. Supports +draft-04, draft-06 and draft-07.") + (license license:asl2.0))) + (define-public go-github-com-opencontainers-image-spec-1.0.3-0.20211202193544-a5463b7f9c84 (package (name "go-github-com-opencontainers-image-spec") @@ -951,6 +6236,7 @@ effort.") "The OCI Image Format project creates and maintains the software shipping container image format spec (OCI Image Format).") (license license:asl2.0))) + (define-public go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417 (package (name "go-github-com-opencontainers-runtime-spec") @@ -973,6 +6259,7 @@ container image format spec (OCI Image Format).") specifications for standards on Operating System process and application containers.") (license license:asl2.0))) + (define-public go-github-com-opencontainers-runtime-tools-0.9.1-0.20210326182921-59cdde06764b (package (name "go-github-com-opencontainers-runtime-tools") @@ -995,6 +6282,29 @@ containers.") @url{https://github.com/opencontainers/runtime-spec,OCI runtime specification}. To build from source code, runtime-tools requires Go 1.10.x or above.") (license license:asl2.0))) + +(define-public go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20191115151921-52ab43148777") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1kakxbqrb1w2vwg7r1896z68qcx2lfvimsl8cs2niiipbgpi6imx")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + (define-public go-github-com-opencontainers-selinux-1.10.0 (package (name "go-github-com-opencontainers-selinux") @@ -1017,6 +6327,4209 @@ To build from source code, runtime-tools requires Go 1.10.x or above.") (synopsis "selinux") (description "Common SELinux package used across the container ecosystem.") (license license:asl2.0))) + +(define-public go-github-com-adamkorcz-go-fuzz-headers-0.0.0-20210312213058-32f4d319f0d2 + (package + (name "go-github-com-adamkorcz-go-fuzz-headers") + (version "0.0.0-20210312213058-32f4d319f0d2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/AdamKorcz/go-fuzz-headers") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0r14xxw8c7pkmln0n5vlrahf1785mr7mlyklmfpa11p9kk9pmq5j")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/AdamKorcz/go-fuzz-headers")) + (home-page "https://github.com/AdamKorcz/go-fuzz-headers") + (synopsis #f) + (description #f) + (license #f))) + +(define-public go-github-com-stretchr-testify-1.3.0 + (package + (name "go-github-com-stretchr-testify") + (version "1.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wjchp2c8xbgcbbq32w3kvblk6q6yn533g78nxl6iskq6y95lxsy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (propagated-inputs + `(("go-github-com-stretchr-objx-0.1.0" + ,go-github-com-stretchr-objx-0.1.0) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.0" + ,go-github-com-davecgh-go-spew-1.1.0))) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in +it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that +your code will behave as you intend.") + (license license:expat))) + +(define-public go-github-com-apex-logs-0.0.7 + (package + (name "go-github-com-apex-logs") + (version "0.0.7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/apex/logs") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1h12q9sb7f4yjizajfxvjllzqab1s8scgqj22prwyfbbqg1ilchv")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/apex/logs")) + (propagated-inputs + `(("go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0" + ,go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0) + ("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0))) + (home-page "https://github.com/apex/logs") + (synopsis "Example") + (description "Go client for @url{https://apex.sh/logs/,Apex Logs}.") + (license license:expat))) + +(define-public go-github-com-aphistic-golf-0.0.0-20180712155816-02c07f170c5a + (package + (name "go-github-com-aphistic-golf") + (version "0.0.0-20180712155816-02c07f170c5a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/aphistic/golf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1qixab9bb29wqbr4nc5j3g25hq1j7am93f181rkj7a4qacncx763")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/aphistic/golf")) + (home-page "https://github.com/aphistic/golf") + (synopsis "golf") + (description + "This package provides logging capabilities using the GELF +(@url{https://www.graylog.org/resources/gelf-2/,https://www.graylog.org/resources/gelf-2/}) +log format") + (license license:expat))) + +(define-public go-github-com-mattn-go-isatty-0.0.5 + (package + (name "go-github-com-mattn-go-isatty") + (version "0.0.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mattn/go-isatty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "114d5xm8rfxplzd7nxz97gfngb4bhqy102szl084d1afcxsvm4aa")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mattn/go-isatty")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223" + ,go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223))) + (home-page "https://github.com/mattn/go-isatty") + (synopsis "go-isatty") + (description "Package isatty implements interface to isatty") + (license license:expat))) + +(define-public go-github-com-mattn-go-colorable-0.1.1 + (package + (name "go-github-com-mattn-go-colorable") + (version "0.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mattn/go-colorable") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0l640974j804c1yyjfgyxqlsivz0yrzmbql4mhcw2azryigkp08p")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mattn/go-colorable")) + (propagated-inputs + `(("go-github-com-mattn-go-isatty-0.0.5" + ,go-github-com-mattn-go-isatty-0.0.5))) + (home-page "https://github.com/mattn/go-colorable") + (synopsis "go-colorable") + (description "Colorable writer for windows.") + (license license:expat))) + +(define-public go-github-com-mgutz-ansi-0.0.0-20170206155736-9520e82c474b + (package + (name "go-github-com-mgutz-ansi") + (version "0.0.0-20170206155736-9520e82c474b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mgutz/ansi") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "00bz22314j26736w1f0q4jy9d9dfaml17vn890n5zqy3cmvmww1j")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mgutz/ansi")) + (home-page "https://github.com/mgutz/ansi") + (synopsis "ansi") + (description + "Package ansi is a small, fast library to create ANSI colored strings and codes.") + (license license:expat))) + +(define-public go-github-com-fsnotify-fsnotify-1.4.7 + (package + (name "go-github-com-fsnotify-fsnotify") + (version "1.4.7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/fsnotify/fsnotify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/fsnotify/fsnotify")) + (home-page "https://github.com/fsnotify/fsnotify") + (synopsis "File system notifications for Go") + (description + "Package fsnotify provides a platform-independent interface for file system +notifications.") + (license license:bsd-3))) + +(define-public go-github-com-hpcloud-tail-1.0.0 + (package + (name "go-github-com-hpcloud-tail") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hpcloud/tail") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1njpzc0pi1acg5zx9y6vj9xi6ksbsc5d387rd6904hy6rh2m6kn0")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hpcloud/tail")) + (home-page "https://github.com/hpcloud/tail") + (synopsis "Go package for tail-ing files") + (description + "This package provides a Go package striving to emulate the features of the BSD +@code{tail} program.") + (license license:expat))) + +(define-public go-github-com-onsi-ginkgo-1.6.0 + (package + (name "go-github-com-onsi-ginkgo") + (version "1.6.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/onsi/ginkgo") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0x0gc89vgq38xhgmi2h22bhr73cf2gmk42g89nz89k8dgg9hhr25")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/onsi/ginkgo")) + (home-page "https://github.com/onsi/ginkgo") + (synopsis "Ginkgo 2.0 Release Candidate is available!") + (description "Ginkgo is a BDD-style testing framework for Golang") + (license license:expat))) + +(define-public go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd + (package + (name "go-golang-org-x-net") + (version "0.0.0-20180906233101-161cd47e91fd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0254ld010iijygbzykib2vags1dc0wlmcmhgh4jl8iny159lhbcv")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20180909124046-d0be0721c37e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "081wyvfnlf842dqg03raxfz6lldlxpmyh1prix9lmrrm65arxb12")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-gopkg-in-fsnotify-v1-1.4.7 + (package + (name "go-gopkg-in-fsnotify-v1") + (version "1.4.7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/fsnotify.v1") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) + (build-system go-build-system) + (arguments + '(#:import-path + "gopkg.in/fsnotify.v1" + #:unpack-path + "gopkg.in/fsnotify.v1")) + (home-page "https://gopkg.in/fsnotify.v1") + (synopsis "File system notifications for Go") + (description + "Package fsnotify provides a platform-independent interface for file system +notifications.") + (license license:bsd-3))) + +(define-public go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7 + (package + (name "go-gopkg-in-tomb-v1") + (version "1.0.0-20141024135613-dd632973f1e7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/tomb.v1") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1lqmq1ag7s4b3gc3ddvr792c5xb5k6sfn0cchr3i2s7f1c231zjv")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/tomb.v1" #:unpack-path "gopkg.in/tomb.v1")) + (home-page "https://gopkg.in/tomb.v1") + (synopsis "Installation and usage") + (description + "The tomb package offers a conventional API for clean goroutine termination.") + (license license:bsd-3))) + +(define-public go-gopkg-in-yaml-v2-2.2.1 + (package + (name "go-gopkg-in-yaml-v2") + (version "2.2.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0dwjrs2lp2gdlscs7bsrmyc5yf6mm4fvgw71bzr9mv2qrd2q73s1")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v2") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language.") + (license license:asl2.0))) + +(define-public go-github-com-onsi-gomega-1.5.0 + (package + (name "go-github-com-onsi-gomega") + (version "1.5.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/onsi/gomega") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1n7i4hksdgv410m43v2sw14bl5vy59dkp6nlw5l76nibbh37syr9")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/onsi/gomega")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1) + ("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" + ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) + ("go-gopkg-in-fsnotify-v1-1.4.7" ,go-gopkg-in-fsnotify-v1-1.4.7) + ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e" + ,go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e) + ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" + ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) + ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" + ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) + ("go-github-com-onsi-ginkgo-1.6.0" ,go-github-com-onsi-ginkgo-1.6.0) + ("go-github-com-hpcloud-tail-1.0.0" ,go-github-com-hpcloud-tail-1.0.0) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0) + ("go-github-com-fsnotify-fsnotify-1.4.7" + ,go-github-com-fsnotify-fsnotify-1.4.7))) + (home-page "https://github.com/onsi/gomega") + (synopsis ": a BDD Testing Framework for Golang") + (description + "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library.") + (license license:expat))) + +(define-public go-github-com-sergi-go-diff-1.0.0 + (package + (name "go-github-com-sergi-go-diff") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sergi/go-diff") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0swiazj8wphs2zmk1qgq75xza6m19snif94h2m6fi8dqkwqdl7c7")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/sergi/go-diff")) + (home-page "https://github.com/sergi/go-diff") + (synopsis "go-diff") + (description + "go-diff offers algorithms to perform operations required for synchronizing plain +text:") + (license license:expat))) + +(define-public go-golang-org-x-crypto-0.0.0-20190426145343-a29dc8fdc734 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20190426145343-a29dc8fdc734") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "07f0jj4haqs0ywc1akk1qjwn5msl2j0pry1rxjkkbfcq4r6ihc1p")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" + ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) + ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" + ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-github-com-aphistic-sweet-0.2.0 + (package + (name "go-github-com-aphistic-sweet") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/aphistic/sweet") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1bb4qagfxf6byqn2yx0vq24xfvisz3ah4w6bvqclc8cklvfngw43")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/aphistic/sweet")) + (propagated-inputs + `(("go-golang-org-x-crypto-0.0.0-20190426145343-a29dc8fdc734" + ,go-golang-org-x-crypto-0.0.0-20190426145343-a29dc8fdc734) + ("go-github-com-sergi-go-diff-1.0.0" + ,go-github-com-sergi-go-diff-1.0.0) + ("go-github-com-onsi-gomega-1.5.0" ,go-github-com-onsi-gomega-1.5.0) + ("go-github-com-mgutz-ansi-0.0.0-20170206155736-9520e82c474b" + ,go-github-com-mgutz-ansi-0.0.0-20170206155736-9520e82c474b) + ("go-github-com-mattn-go-colorable-0.1.1" + ,go-github-com-mattn-go-colorable-0.1.1))) + (home-page "https://github.com/aphistic/sweet") + (synopsis "sweet") + (description + "Sweet is a pluggable test runner capable of hooking into standard Go tests. It +attempts to provide access to the standard Go test tool as close as possible +while adding support for test suites and plugins that can hook into test results +to add additional functionality.") + (license license:expat))) + +(define-public go-github-com-jmespath-go-jmespath-0.0.0-20180206201540-c2b33e8439af + (package + (name "go-github-com-jmespath-go-jmespath") + (version "0.0.0-20180206201540-c2b33e8439af") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jmespath/go-jmespath") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1r6w7ydx8ydryxk3sfhzsk8m6f1nsik9jg3i1zhi69v4kfl4d5cz")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/jmespath/go-jmespath")) + (home-page "https://github.com/jmespath/go-jmespath") + (synopsis "go-jmespath - A JMESPath implementation in Go") + (description + "go-jmespath is a GO implementation of JMESPath, which is a query language for +JSON. It will take a JSON document and transform it into another JSON document +through a JMESPath expression.") + (license license:asl2.0))) + +(define-public go-github-com-aws-aws-sdk-go-1.20.6 + (package + (name "go-github-com-aws-aws-sdk-go") + (version "1.20.6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/aws/aws-sdk-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "016vy5s9finyfgh08j7rvn2pnwymdgj2ydr59w57pysnri87mdwx")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/aws/aws-sdk-go")) + (propagated-inputs + `(("go-github-com-jmespath-go-jmespath-0.0.0-20180206201540-c2b33e8439af" + ,go-github-com-jmespath-go-jmespath-0.0.0-20180206201540-c2b33e8439af))) + (home-page "https://github.com/aws/aws-sdk-go") + (synopsis "AWS SDK for Go") + (description + "Package sdk is the official AWS SDK for the Go programming language.") + (license license:asl2.0))) + +(define-public go-github-com-aybabtme-rgbterm-0.0.0-20170906152045-cc83f3b3ce59 + (package + (name "go-github-com-aybabtme-rgbterm") + (version "0.0.0-20170906152045-cc83f3b3ce59") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/aybabtme/rgbterm") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wvmxvjn64968ikvnxrflb1x8rlcwzpfl53fzbxff2axbx9lq50q")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/aybabtme/rgbterm")) + (home-page "https://github.com/aybabtme/rgbterm") + (synopsis "RGB terminal") + (description + "Package rgbterm colorizes bytes and strings using RGB colors, for a full range +of pretty terminal strings.") + (license unknown-license!))) + +(define-public go-github-com-fatih-color-1.7.0 + (package + (name "go-github-com-fatih-color") + (version "1.7.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/fatih/color") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0v8msvg38r8d1iiq2i5r4xyfx0invhc941kjrsg5gzwvagv55inv")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/fatih/color")) + (home-page "https://github.com/fatih/color") + (synopsis "color") + (description + "Package color is an ANSI color package to output colorized or SGR defined output +to the standard output. The API can be used in several way, pick one that suits +you.") + (license license:expat))) + +(define-public go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515 + (package + (name "go-github-com-kr-logfmt") + (version "0.0.0-20140226030751-b84e30acd515") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/logfmt") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "02ldzxgznrfdzvghfraslhgp19la1fczcbzh7wm2zdc6lmpd1qq9")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/logfmt")) + (home-page "https://github.com/kr/logfmt") + (synopsis #f) + (description "Package implements the decoding of logfmt key-value pairs.") + (license license:expat))) + +(define-public go-github-com-go-logfmt-logfmt-0.4.0 + (package + (name "go-github-com-go-logfmt-logfmt") + (version "0.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/go-logfmt/logfmt") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "06smxc112xmixz78nyvk3b2hmc7wasf2sl5vxj1xz62kqcq9lzm9")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/go-logfmt/logfmt")) + (propagated-inputs + `(("go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515" + ,go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515))) + (home-page "https://github.com/go-logfmt/logfmt") + (synopsis "logfmt") + (description + "Package logfmt implements utilities to marshal and unmarshal data in the logfmt +format. The logfmt format records key/value pairs in a way that balances +readability for humans and simplicity of computer parsing. It is most commonly +used as a more human friendly alternative to JSON for structured logging.") + (license license:expat))) + +(define-public go-github-com-golang-protobuf-1.3.1 + (package + (name "go-github-com-golang-protobuf") + (version "1.3.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "15am4s4646qy6iv0g3kkqq52rzykqjhm4bf08dk0fy2r58knpsyl")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code +github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-github-com-google-uuid-1.1.1 + (package + (name "go-github-com-google-uuid") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/uuid") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hfxcf9frkb57k6q0rdkrmnfs78ms21r1qfk9fhlqga2yh5xg8zb")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/uuid")) + (home-page "https://github.com/google/uuid") + (synopsis "uuid") + (description "Package uuid generates and inspects UUIDs.") + (license license:bsd-3))) + +(define-public go-github-com-jpillora-backoff-0.0.0-20180909062703-3050d21c67d7 + (package + (name "go-github-com-jpillora-backoff") + (version "0.0.0-20180909062703-3050d21c67d7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jpillora/backoff") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1nxapdx9xg5gwiscfhq7m0w14hj4gaxb4avmgf1mx9zd3jnw9jxv")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/jpillora/backoff")) + (home-page "https://github.com/jpillora/backoff") + (synopsis "Backoff") + (description + "Package backoff provides an exponential-backoff implementation.") + (license license:expat))) + +(define-public go-github-com-kr-pretty-0.2.0 + (package + (name "go-github-com-kr-pretty") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/pretty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ywbfzz1h3a3qd8rpkiqwi1dm4w8ls9ijb4x1b7567grns9f0vnp")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/pretty")) + (propagated-inputs + `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) + (home-page "https://github.com/kr/pretty") + (synopsis #f) + (description + "Package pretty provides pretty-printing for Go values. This is useful during +debugging, to avoid wrapping long output lines in the terminal.") + (license license:expat))) + +(define-public go-github-com-mattn-go-colorable-0.1.2 + (package + (name "go-github-com-mattn-go-colorable") + (version "0.1.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mattn/go-colorable") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0512jm3wmzkkn7d99x9wflyqf48n5ri3npy1fqkq6l6adc5mni3n")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mattn/go-colorable")) + (propagated-inputs + `(("go-github-com-mattn-go-isatty-0.0.8" + ,go-github-com-mattn-go-isatty-0.0.8))) + (home-page "https://github.com/mattn/go-colorable") + (synopsis "go-colorable") + (description "Colorable writer for windows.") + (license license:expat))) + +(define-public go-github-com-pkg-errors-0.8.1 + (package + (name "go-github-com-pkg-errors") + (version "0.8.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pkg/errors") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0g5qcb4d4fd96midz0zdk8b9kz8xkzwfa8kr1cliqbg8sxsy5vd1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pkg/errors")) + (home-page "https://github.com/pkg/errors") + (synopsis "errors") + (description "Package errors provides simple error handling primitives.") + (license license:bsd-2))) + +(define-public go-github-com-rogpeppe-fastuuid-1.1.0 + (package + (name "go-github-com-rogpeppe-fastuuid") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/rogpeppe/fastuuid") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1jlif5pxyz3md02ij93kd2y2j1zz0ajc9k8azvn83vv6l3r5c1zg")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/rogpeppe/fastuuid")) + (home-page "https://github.com/rogpeppe/fastuuid") + (synopsis "fastuuid") + (description + "Package fastuuid provides fast UUID generation of 192 bit universally unique +identifiers.") + (license license:bsd-3))) + +(define-public go-github-com-smartystreets-go-aws-auth-0.0.0-20180515143844-0c1422d1fdb9 + (package + (name "go-github-com-smartystreets-go-aws-auth") + (version "0.0.0-20180515143844-0c1422d1fdb9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/smarty-archives/go-aws-auth") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0krfdpgn3gfii1z9fi8ydfw0wwfqyvp6w3rji7w92m528zkjl93d")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/smartystreets/go-aws-auth")) + (home-page "https://github.com/smartystreets/go-aws-auth") + (synopsis "go-aws-auth") + (description + "Package awsauth implements AWS request signing using Signed Signature Version 2, +Signed Signature Version 3, and Signed Signature Version 4. Supports S3 and +STS.") + (license license:expat))) + +(define-public go-github-com-smartystreets-assertions-1.0.0 + (package + (name "go-github-com-smartystreets-assertions") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/smartystreets/assertions") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1188hs39zvil41sdnxs83h1hp319lfyc5n2rvd1xnhz1dh5qjjh4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/smartystreets/assertions")) + (home-page "https://github.com/smartystreets/assertions") + (synopsis #f) + (description + "Package assertions contains the implementations for all assertions which are +referenced in goconvey's `convey` package +(github.com/smartystreets/goconvey/convey) and gunit +(github.com/smartystreets/gunit) for use with the So(...) method. They can also +be used in traditional Go test functions and even in applications.") + (license license:expat))) + +(define-public go-github-com-smartystreets-gunit-1.0.0 + (package + (name "go-github-com-smartystreets-gunit") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/smartystreets/gunit") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "11d09rl5qqpj36a311pjj8w5jkj83d5b8gdcsx8f1zn4j924sm5d")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/smartystreets/gunit")) + (propagated-inputs + `(("go-github-com-smartystreets-assertions-1.0.0" + ,go-github-com-smartystreets-assertions-1.0.0))) + (home-page "https://github.com/smartystreets/gunit") + (synopsis "gunit") + (description + "Package gunit provides \"testing\" package hooks and convenience functions for +writing tests in an xUnit style. See the README file and the examples folder +for examples.") + (license license:expat))) + +(define-public go-github-com-stretchr-testify-1.4.0 + (package + (name "go-github-com-stretchr-testify") + (version "1.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "187i5g88sxfy4vxpm7dw1gwv29pa2qaq475lxrdh5livh69wqfjb")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) + ("go-github-com-stretchr-objx-0.1.0" + ,go-github-com-stretchr-objx-0.1.0) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.0" + ,go-github-com-davecgh-go-spew-1.1.0))) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in +it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that +your code will behave as you intend.") + (license license:expat))) + +(define-public go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0 + (package + (name "go-github-com-tj-assert") + (version "0.0.0-20171129193455-018094318fb0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/tj/assert") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "15ika7izp5hkd10dm30apwfvpm0d1yl2rnxs6896q0svz9zvi2z3")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/tj/assert")) + (home-page "https://github.com/tj/assert") + (synopsis "assert") + (description + "Package assert implements the same assertions as the `assert` package but stops +test execution when a test fails.") + (license license:expat))) + +(define-public go-github-com-tj-go-elastic-0.0.0-20171221160941-36157cbbebc2 + (package + (name "go-github-com-tj-go-elastic") + (version "0.0.0-20171221160941-36157cbbebc2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/tj/go-elastic") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1r94vc4hbfvqvjz74n4mvsw4dy3vbyzlivb90kyn8vn76a4wqk69")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/tj/go-elastic")) + (home-page "https://github.com/tj/go-elastic") + (synopsis "go-elastic") + (description + "Package elastic provides an Elasticsearch client with AWS sigv4 support.") + (license license:expat))) + +(define-public go-github-com-tj-go-kinesis-0.0.0-20171128231115-08b17f58cb1b + (package + (name "go-github-com-tj-go-kinesis") + (version "0.0.0-20171128231115-08b17f58cb1b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/tj/go-kinesis") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "108c6p5j6rhhc2cnc2v5368yfsw73y6lzlvz02vpvvjph8rhmld4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/tj/go-kinesis")) + (home-page "https://github.com/tj/go-kinesis") + (synopsis "go-kinesis") + (description + "Package kinesis implements a batch producer built on top of the official AWS +SDK.") + (license license:expat))) + +(define-public go-github-com-tj-go-spin-1.1.0 + (package + (name "go-github-com-tj-go-spin") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/tj/go-spin") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "11xr67991m5pwsy1dira3iwd0sr55vmn1cyjwmlqziw4bwpym64s")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/tj/go-spin")) + (home-page "https://github.com/tj/go-spin") + (synopsis #f) + (description #f) + (license #f))) + +(define-public go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190620200207-3b0461eec859") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0l00c8l0a8xnv6qdpwfzxxsr58jggacgzdrwiprrfx2xqm37b6d5")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20180917221912-90fa682c2a6e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-golang-org-x-text-0.3.2 + (package + (name "go-golang-org-x-text") + (version "0.3.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0flv9idw0jm5nm8lx25xqanbkqgfiym6619w575p7nrdh0riqwqh")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/text")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" + ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) + (home-page "https://golang.org/x/text") + (synopsis "Go Text") + (description + "text is a repository of text-related packages related to internationalization +(i18n) and localization (l10n), such as character encodings, text +transformations, and locale-specific text handling.") + (license license:bsd-3))) + +(define-public go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15 + (package + (name "go-gopkg-in-check-v1") + (version "1.0.0-20190902080502-41f04d3bba15") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/check.v1") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0vfk9czmlxmp6wndq8k17rhnjxal764mxfhrccza7nwlia760pjy")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) + (home-page "https://gopkg.in/check.v1") + (synopsis "Instructions") + (description + "Package check is a rich testing extension for Go's testing package.") + (license license:bsd-2))) + +(define-public go-github-com-apex-log-1.4.0 + (package + (name "go-github-com-apex-log") + (version "1.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/apex/log") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0711096f04dyjk2vgj5b50491fl36wciwbq80xwvns5wwkqdg2z5")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/apex/log")) + (propagated-inputs + `(("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" + ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) + ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) + ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" + ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) + ("go-github-com-tj-go-spin-1.1.0" ,go-github-com-tj-go-spin-1.1.0) + ("go-github-com-tj-go-kinesis-0.0.0-20171128231115-08b17f58cb1b" + ,go-github-com-tj-go-kinesis-0.0.0-20171128231115-08b17f58cb1b) + ("go-github-com-tj-go-elastic-0.0.0-20171221160941-36157cbbebc2" + ,go-github-com-tj-go-elastic-0.0.0-20171221160941-36157cbbebc2) + ("go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0" + ,go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0) + ("go-github-com-stretchr-testify-1.4.0" + ,go-github-com-stretchr-testify-1.4.0) + ("go-github-com-smartystreets-gunit-1.0.0" + ,go-github-com-smartystreets-gunit-1.0.0) + ("go-github-com-smartystreets-go-aws-auth-0.0.0-20180515143844-0c1422d1fdb9" + ,go-github-com-smartystreets-go-aws-auth-0.0.0-20180515143844-0c1422d1fdb9) + ("go-github-com-rogpeppe-fastuuid-1.1.0" + ,go-github-com-rogpeppe-fastuuid-1.1.0) + ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) + ("go-github-com-mattn-go-colorable-0.1.2" + ,go-github-com-mattn-go-colorable-0.1.2) + ("go-github-com-kr-pretty-0.2.0" ,go-github-com-kr-pretty-0.2.0) + ("go-github-com-jpillora-backoff-0.0.0-20180909062703-3050d21c67d7" + ,go-github-com-jpillora-backoff-0.0.0-20180909062703-3050d21c67d7) + ("go-github-com-google-uuid-1.1.1" ,go-github-com-google-uuid-1.1.1) + ("go-github-com-golang-protobuf-1.3.1" + ,go-github-com-golang-protobuf-1.3.1) + ("go-github-com-go-logfmt-logfmt-0.4.0" + ,go-github-com-go-logfmt-logfmt-0.4.0) + ("go-github-com-fatih-color-1.7.0" ,go-github-com-fatih-color-1.7.0) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1) + ("go-github-com-aybabtme-rgbterm-0.0.0-20170906152045-cc83f3b3ce59" + ,go-github-com-aybabtme-rgbterm-0.0.0-20170906152045-cc83f3b3ce59) + ("go-github-com-aws-aws-sdk-go-1.20.6" + ,go-github-com-aws-aws-sdk-go-1.20.6) + ("go-github-com-aphistic-sweet-0.2.0" + ,go-github-com-aphistic-sweet-0.2.0) + ("go-github-com-aphistic-golf-0.0.0-20180712155816-02c07f170c5a" + ,go-github-com-aphistic-golf-0.0.0-20180712155816-02c07f170c5a) + ("go-github-com-apex-logs-0.0.7" ,go-github-com-apex-logs-0.0.7))) + (home-page "https://github.com/apex/log") + (synopsis "Handlers") + (description + "Package log implements a simple structured logging API designed with few +assumptions. Designed for centralized logging solutions such as Kinesis which +require encoding and decoding before fanning-out to handlers.") + (license license:expat))) + +(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0 + (package + (name "go-github-com-cpuguy83-go-md2man-v2") + (version "2.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cpuguy83/go-md2man") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) + (propagated-inputs + `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" + ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) + ("go-github-com-russross-blackfriday-v2-2.0.1" + ,go-github-com-russross-blackfriday-v2-2.0.1) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0))) + (home-page "https://github.com/cpuguy83/go-md2man") + (synopsis "go-md2man") + (description "Converts markdown into roff (man pages).") + (license license:expat))) + +(define-public go-github-com-cyphar-filepath-securejoin-0.2.2 + (package + (name "go-github-com-cyphar-filepath-securejoin") + (version "0.2.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cyphar/filepath-securejoin") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0id32zjb92wm569m29nfrzz5mw9z1glr3klayr6j134pp4h1sgq4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/cyphar/filepath-securejoin")) + (home-page "https://github.com/cyphar/filepath-securejoin") + (synopsis #f) + (description + "Package securejoin is an implementation of the hopefully-soon-to-be-included +SecureJoin helper that is meant to be part of the \"path/filepath\" package. The +purpose of this project is to provide a PoC implementation to make the +SecureJoin proposal +(@url{https://github.com/golang/go/issues/20126,https://github.com/golang/go/issues/20126}) +more tangible.") + (license license:bsd-3))) + +(define-public go-github-com-docker-go-units-0.4.0 + (package + (name "go-github-com-docker-go-units") + (version "0.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/docker/go-units") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0k8gja8ql4pqg5rzmqvka42vjfs6rzablak87whcnqba6qxpimvz")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/docker/go-units")) + (home-page "https://github.com/docker/go-units") + (synopsis "Introduction") + (description + "Package units provides helper function to parse and print size and time units in +human-readable format.") + (license license:asl2.0))) + +(define-public go-google-golang-org-protobuf-1.23.0 + (package + (name "go-google-golang-org-protobuf") + (version "1.23.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03yan0m1v0zmlr935p4n24fd376mznsg85zy8sywbgisls4s1bzy")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.0" + ,go-github-com-golang-protobuf-1.4.0))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is +a language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol +buffer developer guide} for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.4.2 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0m5z81im4nsyfgarjhppayk4hqnrwswr3nix9mj8pff8x9jvcjqw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.23.0" + ,go-google-golang-org-protobuf-1.23.0) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code +github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-github-com-google-go-cmp-0.5.0 + (package + (name "go-github-com-google-go-cmp") + (version "0.5.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "04pzp583p6b32y34c6jygfxarff9qjs39rarvfh6467z24sdd9k4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically +equal.") + (license license:bsd-3))) + +(define-public go-github-com-klauspost-compress-1.11.3 + (package + (name "go-github-com-klauspost-compress") + (version "1.11.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/klauspost/compress") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "04wpilw6072fh2wd492ma1nw4br7bvz466mj0vi2m1g4w6d0z88z")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/klauspost/compress")) + (home-page "https://github.com/klauspost/compress") + (synopsis "compress") + (description "This package provides various compression algorithms.") + (license unknown-license!))) + +(define-public go-github-com-klauspost-pgzip-1.2.4 + (package + (name "go-github-com-klauspost-pgzip") + (version "1.2.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/klauspost/pgzip") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0mnhfdn0isbkra455jynqjbmrwymx09shlbzbyvgfycih3nbrif0")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/klauspost/pgzip")) + (home-page "https://github.com/klauspost/pgzip") + (synopsis "pgzip") + (description + "Package pgzip implements reading and writing of gzip format compressed files, as +specified in @url{https://rfc-editor.org/rfc/rfc1952.html,RFC 1952}.") + (license license:expat))) + +(define-public go-github-com-creack-pty-1.1.9 + (package + (name "go-github-com-creack-pty") + (version "1.1.9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/creack/pty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1v52599qq76dwq742mffakzj6mxqqccv2szn3hjicjld56nmd2d3")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/creack/pty")) + (home-page "https://github.com/creack/pty") + (synopsis "pty") + (description + "Package pty provides functions for working with Unix terminals.") + (license license:expat))) + +(define-public go-github-com-kr-text-0.2.0 + (package + (name "go-github-com-kr-text") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hf58ypz6rxsw6nx3i856whir9lvy4sdx946wbw1nfaf2rdmr9vx")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/text")) + (propagated-inputs + `(("go-github-com-creack-pty-1.1.9" ,go-github-com-creack-pty-1.1.9))) + (home-page "https://github.com/kr/text") + (synopsis #f) + (description + "Package text provides rudimentary functions for manipulating text in paragraphs.") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20200116001909-b77594299b42 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200116001909-b77594299b42") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0isfm6kmh4fjhh6m7mrb3zvdjka2y31c5habr5kydl7rg0lwkabv")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-mattn-go-isatty-0.0.12 + (package + (name "go-github-com-mattn-go-isatty") + (version "0.0.12") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mattn/go-isatty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1dfsh27d52wmz0nmmzm2382pfrs2fcijvh6cgir7jbb4pnigr5w4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mattn/go-isatty")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20200116001909-b77594299b42" + ,go-golang-org-x-sys-0.0.0-20200116001909-b77594299b42))) + (home-page "https://github.com/mattn/go-isatty") + (synopsis "go-isatty") + (description "Package isatty implements interface to isatty") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20200223170610-d5e6a3e2c0ae + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200223170610-d5e6a3e2c0ae") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0lz7vm5dz2p14fzq2j4m1l9p392cl0fa73aaf45gln07ylfajk4n")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-mattn-go-colorable-0.1.6 + (package + (name "go-github-com-mattn-go-colorable") + (version "0.1.6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mattn/go-colorable") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0zv9ix7g0qf71jdhv7gbab9hjfkgbxl22kwhpz9ck1y6m4g1zxaw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mattn/go-colorable")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20200223170610-d5e6a3e2c0ae" + ,go-golang-org-x-sys-0.0.0-20200223170610-d5e6a3e2c0ae) + ("go-github-com-mattn-go-isatty-0.0.12" + ,go-github-com-mattn-go-isatty-0.0.12))) + (home-page "https://github.com/mattn/go-colorable") + (synopsis "go-colorable") + (description "Colorable writer for windows.") + (license license:expat))) + +(define-public go-github-com-mohae-deepcopy-0.0.0-20170929034955-c48cc78d4826 + (package + (name "go-github-com-mohae-deepcopy") + (version "0.0.0-20170929034955-c48cc78d4826") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mohae/deepcopy") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0jdhsz0hsbn0k45rmvm39knbvs024j24ay2q65k5ih8ql8m2c0sd")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mohae/deepcopy")) + (home-page "https://github.com/mohae/deepcopy") + (synopsis "deepCopy") + (description + "deepcopy makes deep copies of things. A standard copy will copy the pointers: +deep copy copies the values pointed to. Unexported field values are not copied.") + (license license:expat))) + +(define-public go-github-com-kr-pty-1.1.1 + (package + (name "go-github-com-kr-pty") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/pty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0383f0mb9kqjvncqrfpidsf8y6ns5zlrc91c6a74xpyxjwvzl2y6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/pty")) + (home-page "https://github.com/kr/pty") + (synopsis "pty") + (description + "Package pty is a wrapper for github.com/creack/pty, which provides functions for +working with Unix terminals.") + (license license:expat))) + +(define-public go-github-com-kr-text-0.1.0 + (package + (name "go-github-com-kr-text") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1gm5bsl01apvc84bw06hasawyqm4q84vx1pm32wr9jnd7a8vjgj1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/text")) + (propagated-inputs + `(("go-github-com-kr-pty-1.1.1" ,go-github-com-kr-pty-1.1.1))) + (home-page "https://github.com/kr/text") + (synopsis #f) + (description + "Package text provides rudimentary functions for manipulating text in paragraphs.") + (license license:expat))) + +(define-public go-github-com-niemeyer-pretty-0.0.0-20200227124842-a10e7caefd8e + (package + (name "go-github-com-niemeyer-pretty") + (version "0.0.0-20200227124842-a10e7caefd8e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/niemeyer/pretty") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1jmazh4xzaa3v6g46hz60q2z7nmqs9l9cxdzmmscn3kbcs2znq4v")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/niemeyer/pretty")) + (propagated-inputs + `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) + (home-page "https://github.com/niemeyer/pretty") + (synopsis #f) + (description + "Package pretty provides pretty-printing for Go values. This is useful during +debugging, to avoid wrapping long output lines in the terminal.") + (license license:expat))) + +(define-public go-github-com-opencontainers-go-digest-1.0.0 + (package + (name "go-github-com-opencontainers-go-digest") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/go-digest") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0i5acjajvr6hi9zb7gxwifd8w28y884cv7cx36adj8lngj647xbi")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/go-digest")) + (home-page "https://github.com/opencontainers/go-digest") + (synopsis "go-digest") + (description + "Package digest provides a generalized type to opaquely represent message digests +and their operations within the registry. The Digest type is designed to serve +as a flexible identifier in a content-addressable system. More importantly, it +provides tools and wrappers to work with hash.Hash-based digests with little +effort.") + (license (list license:asl2.0 license:cc-by-sa4.0)))) + +(define-public go-github-com-opencontainers-image-spec-1.0.1 + (package + (name "go-github-com-opencontainers-image-spec") + (version "1.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/image-spec") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03dvbj3dln8c55v9gp79mgmz2yi2ws3r08iyz2fk41y3i22iaw1q")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/image-spec")) + (home-page "https://github.com/opencontainers/image-spec") + (synopsis "OCI Image Format Specification") + (description + "The OCI Image Format project creates and maintains the software shipping +container image format spec (OCI Image Format).") + (license license:asl2.0))) + +(define-public go-github-com-opencontainers-runc-1.0.0-rc90 + (package + (name "go-github-com-opencontainers-runc") + (version "1.0.0-rc90") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/runc") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0pi3rvj585997m4z9ljkxz2z9yxf9p2jr0pmqbqrc7bc95f5hagk")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/runc")) + (home-page "https://github.com/opencontainers/runc") + (synopsis "runc") + (description + "@code{runc} is a CLI tool for spawning and running containers on Linux according +to the OCI specification.") + (license license:asl2.0))) + +(define-public go-github-com-opencontainers-runtime-spec-1.0.2 + (package + (name "go-github-com-opencontainers-runtime-spec") + (version "1.0.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/runtime-spec") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19w981vcmd5lp2hy0630x6ayb8zz17n2vxqm2py5mg945xflcizg")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) + (home-page "https://github.com/opencontainers/runtime-spec") + (synopsis "Open Container Initiative Runtime Specification") + (description + "The @url{https://www.opencontainers.org,Open Container Initiative} develops +specifications for standards on Operating System process and application +containers.") + (license license:asl2.0))) + +(define-public go-github-com-pkg-errors-0.9.1 + (package + (name "go-github-com-pkg-errors") + (version "0.9.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pkg/errors") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1761pybhc2kqr6v5fm8faj08x9bql8427yqg6vnfv6nhrasx1mwq")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pkg/errors")) + (home-page "https://github.com/pkg/errors") + (synopsis "errors") + (description "Package errors provides simple error handling primitives.") + (license license:bsd-2))) + +(define-public go-github-com-rootless-containers-proto-0.1.0 + (package + (name "go-github-com-rootless-containers-proto") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/rootless-containers/proto") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1yik3b2fxpdkhplni8saabpvf43wnnz4wh6fapak29mkj3lx3mfh")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/rootless-containers/proto")) + (home-page "https://github.com/rootless-containers/proto") + (synopsis #f) + (description + "This project contains the +@url{https://developers.google.com/protocol-buffers/,protobuf} definition of the +@code{user.rootlesscontainers} extended attribute. The main purpose of this +attribute is to allow for a interoperable and standardised way of emulating +persistent syscalls in a @url{https://rootlesscontaine.rs/,rootless container} +(syscalls such as @code{chown(2)} which would ordinarily fail).") + (license license:asl2.0))) + +(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.3 + (package + (name "go-github-com-konsorten-go-windows-terminal-sequences") + (version "1.0.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/konsorten/go-windows-terminal-sequences") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1yrsd4s8vhjnxhwbigirymz89dn6qfjnhn28i33vvvdgf96j6ypl")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) + (home-page "https://github.com/konsorten/go-windows-terminal-sequences") + (synopsis "Windows Terminal Sequences") + (description + "This library allow for enabling Windows terminal color support for Go.") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190422165155-953cdadca894") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0gkha4whk8xkcv3isigbs250akag99isxnd3v9xmy0kl3g88hxy1")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-sirupsen-logrus-1.6.0 + (package + (name "go-github-com-sirupsen-logrus") + (version "1.6.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sirupsen/logrus") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1zf9is1yxxnna0d1pyag2m9ziy3l27zb2j92p9msm1gx5jjrvzzj")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/sirupsen/logrus")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894" + ,go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894) + ("go-github-com-stretchr-testify-1.2.2" + ,go-github-com-stretchr-testify-1.2.2) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.3" + ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.3) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/sirupsen/logrus") + (synopsis "Logrus") + (description + "Package logrus is a structured logger for Go, completely API compatible with the +standard library logger.") + (license license:expat))) + +(define-public go-github-com-davecgh-go-spew-1.1.0 + (package + (name "go-github-com-davecgh-go-spew") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/davecgh/go-spew") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/davecgh/go-spew")) + (home-page "https://github.com/davecgh/go-spew") + (synopsis "go-spew") + (description + "Go-spew implements a deep pretty printer for Go data structures to aid in +debugging. A comprehensive suite of tests with 100% test coverage is provided +to ensure proper functionality. See @code{test_coverage.txt} for the gocov +coverage report. Go-spew is licensed under the liberal ISC license, so it may +be used in open source or commercial projects.") + (license license:isc))) + +(define-public go-github-com-stretchr-objx-0.1.0 + (package + (name "go-github-com-stretchr-objx") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/objx") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/objx")) + (home-page "https://github.com/stretchr/objx") + (synopsis "Objx") + (description + "Objx - Go package for dealing with maps, slices, JSON and other data.") + (license license:expat))) + +(define-public go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c + (package + (name "go-gopkg-in-yaml-v3") + (version "3.0.0-20200313102051-9f266ea9e77c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v3") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1bbai3lzb50m0x2vwsdbagrbhvfylj9k1m32hgbqwldqx4p9ay35")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v3") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language.") + (license unknown-license!))) + +(define-public go-github-com-stretchr-testify-1.6.1 + (package + (name "go-github-com-stretchr-testify") + (version "1.6.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1yhiqqzjvi63pf01rgzx68gqkkvjx03fvl5wk30br5l6s81s090l")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (propagated-inputs + `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" + ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) + ("go-github-com-stretchr-objx-0.1.0" + ,go-github-com-stretchr-objx-0.1.0) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.0" + ,go-github-com-davecgh-go-spew-1.1.0))) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in +it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that +your code will behave as you intend.") + (license license:expat))) + +(define-public go-gopkg-in-yaml-v3-3.0.0-20200605160147-a5ece683394c + (package + (name "go-gopkg-in-yaml-v3") + (version "3.0.0-20200605160147-a5ece683394c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v3") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03cm7c3p5fh0aa8vnxv5010dgqqr268ivb480ix1salxx3396w68")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v3") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language.") + (license unknown-license!))) + +(define-public go-github-com-tj-assert-0.0.3 + (package + (name "go-github-com-tj-assert") + (version "0.0.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/tj/assert") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1j5swk3fjq1h5fpqkipddz2ccnbidr7qrpm5dpdaflg9q5jnc673")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/tj/assert")) + (propagated-inputs + `(("go-gopkg-in-yaml-v3-3.0.0-20200605160147-a5ece683394c" + ,go-gopkg-in-yaml-v3-3.0.0-20200605160147-a5ece683394c) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/tj/assert") + (synopsis "assert") + (description + "Package assert implements the same assertions as the `assert` package but stops +test execution when a test fails.") + (license license:expat))) + +(define-public go-github-com-russross-blackfriday-v2-2.0.1 + (package + (name "go-github-com-russross-blackfriday-v2") + (version "2.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/russross/blackfriday") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0nlz7isdd4rgnwzs68499hlwicxz34j2k2a0b8jy0y7ycd2bcr5j")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/russross/blackfriday/v2")) + (home-page "https://github.com/russross/blackfriday") + (synopsis "Blackfriday") + (description "Package blackfriday is a markdown processor.") + (license license:bsd-2))) + +(define-public go-github-com-shurcool-sanitized-anchor-name-1.0.0 + (package + (name "go-github-com-shurcool-sanitized-anchor-name") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/shurcooL/sanitized_anchor_name") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1gv9p2nr46z80dnfjsklc6zxbgk96349sdsxjz05f3z6wb6m5l8f")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/shurcooL/sanitized_anchor_name")) + (home-page "https://github.com/shurcooL/sanitized_anchor_name") + (synopsis "sanitized_anchor_name") + (description + "Package sanitized_anchor_name provides a func to create sanitized anchor names.") + (license license:expat))) + +(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d + (package + (name "go-github-com-cpuguy83-go-md2man-v2") + (version "2.0.0-20190314233015-f79a8a8ca69d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cpuguy83/go-md2man") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) + (propagated-inputs + `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" + ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) + ("go-github-com-russross-blackfriday-v2-2.0.1" + ,go-github-com-russross-blackfriday-v2-2.0.1) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0))) + (home-page "https://github.com/cpuguy83/go-md2man") + (synopsis "go-md2man") + (description "Converts markdown into roff (man pages).") + (license license:expat))) + +(define-public go-gopkg-in-yaml-v2-2.2.2 + (package + (name "go-gopkg-in-yaml-v2") + (version "2.2.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "01wj12jzsdqlnidpyjssmj0r4yavlqy7dwrg7adqd8dicjc4ncsa")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v2") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language.") + (license license:asl2.0))) + +(define-public go-github-com-urfave-cli-1.22.4 + (package + (name "go-github-com-urfave-cli") + (version "1.22.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/urfave/cli") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1s7frsmiih4wh8vpx9z3ck4667c6vpjrmba7b9ymnv1p9khyg8wc")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/urfave/cli")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) + ("go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d" + ,go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d) + ("go-github-com-burntsushi-toml-0.3.1" + ,go-github-com-burntsushi-toml-0.3.1))) + (home-page "https://github.com/urfave/cli") + (synopsis "cli") + (description + "Package cli provides a minimal framework for creating and organizing command +line Go applications. cli is designed to be easy to understand and write, the +most simple cli application can be written as follows:") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190222072716-a9d3bda3a223") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1w45zc13xrjzl19s1sx74r5mg3lf2z2nm13wygcdq5r5pyjlhdz9")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-mattn-go-isatty-0.0.8 + (package + (name "go-github-com-mattn-go-isatty") + (version "0.0.8") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mattn/go-isatty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0rqfh1rj6f5wm8p2ky7inm8g10152p7w6n2cli17kf9gad797i8h")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mattn/go-isatty")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223" + ,go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223))) + (home-page "https://github.com/mattn/go-isatty") + (synopsis "go-isatty") + (description "Package isatty implements interface to isatty") + (license license:expat))) + +(define-public go-github-com-mattn-go-colorable-0.1.4 + (package + (name "go-github-com-mattn-go-colorable") + (version "0.1.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mattn/go-colorable") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1yxcz08kminqr1221zxpibnbzfcgs3fafin0z9zqb3gqvf74jywz")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mattn/go-colorable")) + (propagated-inputs + `(("go-github-com-mattn-go-isatty-0.0.8" + ,go-github-com-mattn-go-isatty-0.0.8))) + (home-page "https://github.com/mattn/go-colorable") + (synopsis "go-colorable") + (description "Colorable writer for windows.") + (license license:expat))) + +(define-public go-github-com-mattn-go-isatty-0.0.11 + (package + (name "go-github-com-mattn-go-isatty") + (version "0.0.11") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mattn/go-isatty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0h671sv7hfprja495kavazkalkx7xzaqksjh13brcnwq67ijrali")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mattn/go-isatty")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037" + ,go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037))) + (home-page "https://github.com/mattn/go-isatty") + (synopsis "go-isatty") + (description "Package isatty implements interface to isatty") + (license license:expat))) + +(define-public go-github-com-fatih-color-1.9.0 + (package + (name "go-github-com-fatih-color") + (version "1.9.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/fatih/color") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "086z8ssmr1fn9ba4mqnw7pnccfpys6l5yfhvycv1gdrsk7n27mvs")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/fatih/color")) + (propagated-inputs + `(("go-github-com-mattn-go-isatty-0.0.11" + ,go-github-com-mattn-go-isatty-0.0.11) + ("go-github-com-mattn-go-colorable-0.1.4" + ,go-github-com-mattn-go-colorable-0.1.4))) + (home-page "https://github.com/fatih/color") + (synopsis "color") + (description + "Package color is an ANSI color package to output colorized or SGR defined output +to the standard output. The API can be used in several way, pick one that suits +you.") + (license license:expat))) + +(define-public go-github-com-davecgh-go-spew-1.1.1 + (package + (name "go-github-com-davecgh-go-spew") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/davecgh/go-spew") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/davecgh/go-spew")) + (home-page "https://github.com/davecgh/go-spew") + (synopsis "go-spew") + (description + "Go-spew implements a deep pretty printer for Go data structures to aid in +debugging. A comprehensive suite of tests with 100% test coverage is provided +to ensure proper functionality. See @code{test_coverage.txt} for the gocov +coverage report. Go-spew is licensed under the liberal ISC license, so it may +be used in open source or commercial projects.") + (license license:isc))) + +(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.1 + (package + (name "go-github-com-konsorten-go-windows-terminal-sequences") + (version "1.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/konsorten/go-windows-terminal-sequences") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1lchgf27n276vma6iyxa0v1xds68n2g8lih5lavqnx5x6q5pw2ip")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) + (home-page "https://github.com/konsorten/go-windows-terminal-sequences") + (synopsis "Windows Terminal Sequences") + (description + "This library allow for enabling Windows terminal color support for Go.") + (license license:expat))) + +(define-public go-github-com-pmezard-go-difflib-1.0.0 + (package + (name "go-github-com-pmezard-go-difflib") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pmezard/go-difflib") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pmezard/go-difflib")) + (home-page "https://github.com/pmezard/go-difflib") + (synopsis "go-difflib") + (description + "Go-difflib is a partial port of python 3 difflib package. Its main goal was to +make unified and context diff available in pure Go, mostly for testing purposes.") + (license license:bsd-3))) + +(define-public go-github-com-stretchr-objx-0.1.1 + (package + (name "go-github-com-stretchr-objx") + (version "0.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/objx") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0iph0qmpyqg4kwv8jsx6a56a7hhqq8swrazv40ycxk9rzr0s8yls")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/objx")) + (home-page "https://github.com/stretchr/objx") + (synopsis "Objx") + (description + "Objx - Go package for dealing with maps, slices, JSON and other data.") + (license license:expat))) + +(define-public go-github-com-stretchr-testify-1.2.2 + (package + (name "go-github-com-stretchr-testify") + (version "1.2.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0dlszlshlxbmmfxj5hlwgv3r22x0y1af45gn1vd198nvvs3pnvfs")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in +it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that +your code will behave as you intend.") + (license license:expat))) + +(define-public go-golang-org-x-crypto-0.0.0-20180904163835-0709b304e793 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20180904163835-0709b304e793") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0i05s09y5pavmfh71fgih7syxg58x7a4krgd8am6d3mnahnmab5c")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20180905080454-ebe1bf3edb33") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0rkspxyjxdmc9f4n09hgkwj8jjd8z5p8mc9z8vwqwqcwrqv4sg7c")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-sirupsen-logrus-1.3.0 + (package + (name "go-github-com-sirupsen-logrus") + (version "1.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sirupsen/logrus") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ib7k8cwxn53dyxd3af1g81z018n77n6q64pm4miznirf7c2c9gk")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/sirupsen/logrus")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33" + ,go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33) + ("go-golang-org-x-crypto-0.0.0-20180904163835-0709b304e793" + ,go-golang-org-x-crypto-0.0.0-20180904163835-0709b304e793) + ("go-github-com-stretchr-testify-1.2.2" + ,go-github-com-stretchr-testify-1.2.2) + ("go-github-com-stretchr-objx-0.1.1" + ,go-github-com-stretchr-objx-0.1.1) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.1" + ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.1) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/sirupsen/logrus") + (synopsis "Logrus") + (description + "Package logrus is a structured logger for Go, completely API compatible with the +standard library logger.") + (license license:expat))) + +(define-public go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20191011191535-87dc89f01550") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0z4i1m2yn3f31ci7wvcm2rxkx2yiv7a78mfzklncmsz2k97rlh2g")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" + ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) + ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" + ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20191026070338-33540a1f6037") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0fjcv0vzvi6za0b4xmnk3932pr9f9gczzf03y0kgq3ry9rqg169y")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-vbatts-go-mtree-0.5.0 + (package + (name "go-github-com-vbatts-go-mtree") + (version "0.5.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/vbatts/go-mtree") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0p42aliw6ngp7zgg5y9mi18z1ka9n0vblbrp5flp93i7qfmc5y0k")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/vbatts/go-mtree")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037" + ,go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037) + ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" + ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550) + ("go-github-com-sirupsen-logrus-1.3.0" + ,go-github-com-sirupsen-logrus-1.3.0) + ("go-github-com-fatih-color-1.9.0" ,go-github-com-fatih-color-1.9.0) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/vbatts/go-mtree") + (synopsis "go-mtree") + (description + "@code{mtree} is a filesystem hierarchy validation tooling and format. This is a +library and simple cli tool for +@url{https://www.freebsd.org/cgi/man.cgi?mtree%288%29=,mtree(8)} support.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190404232315-eb5bcb51f2a3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "17k4g8krxbl84gzcs275b7gsh66dzm15fdxivjnx9xz8q84l4kby")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20190412213103-97732733099d + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190412213103-97732733099d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "118hkp01i4z1f5h6hcjm0ff2ngqhrzj1f7731n0kw8dr6hvbx0sw")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-crypto-0.0.0-20200604202706-70a84ac30bf9 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20200604202706-70a84ac30bf9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0zr8np92g3qx7cdgaz4b2z5wnlym9lqyhrvs3xvv1fbsapd2z6i3")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" + ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) + ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" + ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20200622214017-ed371f2e16b4 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200622214017-ed371f2e16b4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "107wfy2fj6z5zps1v72j8drfrfvss1158drb0yqhz5awlbvgrpj7")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-1.22.0 + (package + (name "go-google-golang-org-protobuf") + (version "1.22.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0n7lc4m7kfvj01glc0gnjy0zsnsic7cxnbvlajy0h14cxbab87pj")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.0" + ,go-github-com-golang-protobuf-1.4.0))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is +a language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol +buffer developer guide} for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.4.1 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0w7ks4vffnnkp0miwgc3chrsnmya45lzvpahb2wmw0jwhdp5kdx7")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.22.0" + ,go-google-golang-org-protobuf-1.22.0) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code +github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-github-com-census-instrumentation-opencensus-proto-0.2.1 + (package + (name "go-github-com-census-instrumentation-opencensus-proto") + (version "0.2.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/census-instrumentation/opencensus-proto") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19fcx3sc99i5dsklny6r073z5j20vlwn2xqm6di1q3b1xwchzqfj")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/census-instrumentation/opencensus-proto")) + (home-page "https://github.com/census-instrumentation/opencensus-proto") + (synopsis + "OpenCensus Proto - Language Independent Interface Types For OpenCensus") + (description + "Census provides a framework to define and collect stats against metrics and to +break those stats down across user-defined dimensions.") + (license license:asl2.0))) + +(define-public go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4 + (package + (name "go-github-com-prometheus-client-model") + (version "0.0.0-20190812154241-14fe0d1b01d4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/client_model") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0zdmk6rbbx39cvfz0r59v2jg5sg9yd02b4pds5n5llgvivi99550")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/client_model")) + (propagated-inputs + `(("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" + ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0))) + (home-page "https://github.com/prometheus/client_model") + (synopsis "Deprecation note") + (description + "This repository used to contain the code that defined both the data model and +the exposition format of Prometheus metrics.") + (license license:asl2.0))) + +(define-public go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20190311212946-11955173bddd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hlkai67w167wiyivkzd1fgqrnyxkb94l2c6kr51jwcscizfyfn3")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3 + (package + (name "go-golang-org-x-lint") + (version "0.0.0-20190313153728-d0100b6bd8b3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/lint") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0b0amr9x4ji66iv9ayfx7zrfx52k1m5g66qfcxkgj80qrb1y2yn7")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/lint")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" + ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd))) + (home-page "https://golang.org/x/lint") + (synopsis "Installation") + (description "Package lint contains a linter for Go source code.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20190423024810-112230192c58 + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20190423024810-112230192c58") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "05i2k43j2d0llq768hg5pf3hb2yhfzp9la1w5wp0rsnnzblr0lfn")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the ones +provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135 + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20190524140312-2c0ae7006135") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1lsi2ssxajclj3bciz2a41v1vjv768ja3v6wnbyhxy8xphwkp4fk")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" + ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-google-golang-org-grpc-1.23.0 + (package + (name "go-google-golang-org-grpc") + (version "1.23.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1cn33r2gclmq2v1ndpf1n5bmhf2qs8mms7ii5cnl6f9ch4r2c4k3")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" + ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) + ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" + ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) + ("go-google-golang-org-appengine-1.1.0" + ,go-google-golang-org-appengine-1.1.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-google-go-cmp-0.2.0" + ,go-github-com-google-go-cmp-0.2.0) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0) + ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-client9-misspell-0.3.4" + ,go-github-com-client9-misspell-0.3.4) + ("go-github-com-burntsushi-toml-0.3.1" + ,go-github-com-burntsushi-toml-0.3.1) + ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC.") + (license license:asl2.0))) + +(define-public go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473 + (package + (name "go-github-com-envoyproxy-go-control-plane") + (version "0.9.1-0.20191026205805-5f8ba28d4473") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/envoyproxy/go-control-plane") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1f1s764rd41vd9vgk3r14h1m6fz6pdvxj6fd83q58gxifbc4q5w4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.23.0" ,go-google-golang-org-grpc-1.23.0) + ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" + ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) + ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" + ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2) + ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" + ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) + ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" + ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) + (home-page "https://github.com/envoyproxy/go-control-plane") + (synopsis "control-plane") + (description + "This repository contains a Go-based implementation of an API server that +implements the discovery service APIs defined in +@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") + (license license:asl2.0))) + +(define-public go-github-com-envoyproxy-protoc-gen-validate-0.1.0 + (package + (name "go-github-com-envoyproxy-protoc-gen-validate") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/envoyproxy/protoc-gen-validate") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0kxd3wwh3xwqk0r684hsy281xq4y71cd11d4q2hspcjbnlbwh7cy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/envoyproxy/protoc-gen-validate")) + (home-page "https://github.com/envoyproxy/protoc-gen-validate") + (synopsis "protoc-gen-validate (PGV)") + (description + "PGV is a protoc plugin to generate polyglot message validators. While protocol +buffers effectively guarantee the types of structured data, they cannot enforce +semantic rules for values. This plugin adds support to protoc-generated code to +validate such constraints.") + (license license:asl2.0))) + +(define-public go-github-com-google-go-cmp-0.2.0 + (package + (name "go-github-com-google-go-cmp") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fbv0x27k9sn8svafc0hjwsnckk864lv4yi7bvzrxvmd3d5hskds")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically +equal.") + (license license:bsd-3))) + +(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20190308221718-c2843e01d9a2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20190311183353-d8887717615a + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190311183353-d8887717615a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1wfm6ngxjyj7v5a2dqib6lw8bb2rdnf1kl48diykxjrsddn0s163")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190215142949-d0b11bdaac8a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.3.2 + (package + (name "go-github-com-golang-protobuf") + (version "1.3.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1k1wb4zr0qbwgpvz9q5ws9zhlal8hq7dmq62pwxxriksayl6hzym")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code +github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4 + (package + (name "go-golang-org-x-exp") + (version "0.0.0-20190121172915-509febef88a4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/exp") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "02isrh39z8znrp5znplzy0dip2gnrl3jm1355raliyvhnhg04j6q")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/exp")) + (home-page "https://golang.org/x/exp") + (synopsis "exp") + (description + "This subrepository holds experimental and deprecated (in the @code{old} +directory) packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961 + (package + (name "go-golang-org-x-lint") + (version "0.0.0-20190227174305-5b3e6a55c961") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/lint") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "04zp5vbds9nffmjg36wjpi5vg9zmf890yf78xxasai3ni637ivfw")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/lint")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" + ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c))) + (home-page "https://golang.org/x/lint") + (synopsis "Installation") + (description "Package lint contains a linter for Go source code.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190213061140-3a22650c66bd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12q6fgdkc0742vcms67nzadgdwvi3rnb1gx3vwkljhrvlnwvz7wc")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20181108010431-42b317875d0f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0mrjhk7al7yyh76x9flvxy4jm5jyqh2fxbxagpaazxn1xdgkaif3")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the ones +provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20180724234803-3673e40ba225") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0vx7mz18p480p7fh0w5jv6mfdbsswrlac1sz4i705q7q7ygz59lm")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-google-golang-org-appengine-1.4.0 + (package + (name "go-google-golang-org-appengine") + (version "1.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/appengine") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "06zl7w4sxgdq2pl94wy9ncii6h0z3szl4xpqds0sv3b3wbdlhbnn")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/appengine")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225" + ,go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0))) + (home-page "https://google.golang.org/appengine") + (synopsis "Go App Engine packages") + (description + "Package appengine provides basic functionality for Google App Engine.") + (license license:asl2.0))) + +(define-public go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20190226205152-f727befe758c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0rpcqw6z13qd33rbasg32zb0gdhgh5lzjla63r6g651zf6hpsak0")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-google-golang-org-appengine-1.4.0" + ,go-google-golang-org-appengine-1.4.0) + ("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" + ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) + ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" + ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-cloud-google-com-go-0.26.0 + (package + (name "go-cloud-google-com-go") + (version "0.26.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-cloud-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "149v3ci17g6wd2pm18mzcncq5qpl9hwdjnz3rlbn5rfidyn46la1")))) + (build-system go-build-system) + (arguments '(#:import-path "cloud.google.com/go")) + (home-page "https://cloud.google.com/go") + (synopsis "Google Cloud Client Libraries for Go") + (description + "Package cloud is the root of the packages used to access Google Cloud Services. +See +@url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} +for a full list of sub-packages.") + (license license:asl2.0))) + +(define-public go-github-com-burntsushi-toml-0.3.1 + (package + (name "go-github-com-burntsushi-toml") + (version "0.3.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/BurntSushi/toml") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fjdwwfzyzllgiwydknf1pwjvy49qxfsczqx5gz3y0izs7as99j6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/BurntSushi/toml")) + (home-page "https://github.com/BurntSushi/toml") + (synopsis "Testing") + (description + "Package toml implements decoding and encoding of TOML files.") + (license license:expat))) + +(define-public go-github-com-client9-misspell-0.3.4 + (package + (name "go-github-com-client9-misspell") + (version "0.3.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/client9/misspell") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1vwf33wsc4la25zk9nylpbp9px3svlmldkm0bha4hp56jws4q9cs")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/client9/misspell")) + (home-page "https://github.com/client9/misspell") + (synopsis "Install") + (description + "Package misspell corrects commonly misspelled English words in source files.") + (license license:expat))) + +(define-public go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b + (package + (name "go-github-com-golang-glog") + (version "0.0.0-20160126235308-23def4e6c14b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/glog") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0jb2834rw5sykfr937fxi8hxi2zy80sj2bdn9b3jb4b26ksqng30")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/glog")) + (home-page "https://github.com/golang/glog") + (synopsis "glog") + (description + "Package glog implements logging analogous to the Google-internal C++ +INFO/ERROR/V setup. It provides functions Info, Warning, Error, Fatal, plus +formatting variants such as Infof. It also provides V-style logging controlled +by the -v and -vmodule=file=2 flags.") + (license license:asl2.0))) + +(define-public go-github-com-golang-mock-1.1.1 + (package + (name "go-github-com-golang-mock") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/mock") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ap8wb6pdl6ccmdb43advjll2ly4sz26wsc3axw0hbrjrybybzgy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/mock")) + (home-page "https://github.com/golang/mock") + (synopsis "gomock") + (description + "gomock is a mocking framework for the @url{http://golang.org/,Go programming +language}. It integrates well with Go's built-in @code{testing} package, but +can be used in other contexts too.") + (license license:asl2.0))) + +(define-public go-github-com-golang-protobuf-1.2.0 + (package + (name "go-github-com-golang-protobuf") + (version "1.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0kf4b59rcbb1cchfny2dm9jyznp8ri2hsb14n8iak1q8986xa0ab")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code +github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3 + (package + (name "go-golang-org-x-lint") + (version "0.0.0-20181026193005-c67002cb31c3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/lint") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0gymbggskjmphqxqcx4s0vnlcz7mygbix0vhwcwv5r67c0bf6765")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/lint")) + (home-page "https://golang.org/x/lint") + (synopsis "Installation") + (description "Package lint contains a linter for Go source code.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d + (package + (name "go-golang-org-x-net") + (version "0.0.0-20180826012351-8a410e7b638d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hp0l8f6fir5gmgrjq0mhh5ikc0rlrm72774228800kfwqjrxxny")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be + (package + (name "go-golang-org-x-oauth2") + (version "0.0.0-20180821212333-d2e6202438be") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/oauth2") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wbn75fd10485nb93bm4kqldqifdim5xqy4v7r5sdvimvf3fyhn7")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/oauth2")) + (home-page "https://golang.org/x/oauth2") + (synopsis "OAuth2 for Go") + (description + "Package oauth2 provides support for making OAuth2 authorized and authenticated +HTTP requests, as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC +6749}. It can additionally grant authorization with Bearer JWT.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20180314180146-1d60e4601c6f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "046jlanz2lkxq1r57x9bl6s4cvfqaic6p2xybsj8mq1120jv4rs6")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the ones +provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20180830151530-49385e6e1522") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0spbldahns09fdxkxflb1x24f8k2awdlnr6k5i7ci4fqd19r1dv4")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-text-0.3.0 + (package + (name "go-golang-org-x-text") + (version "0.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/text")) + (home-page "https://golang.org/x/text") + (synopsis "Go Text") + (description + "text is a repository of text-related packages related to internationalization +(i18n) and localization (l10n), such as character encodings, text +transformations, and locale-specific text handling.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20190114222345-bf090417da8b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1n3xp56k4k3lj06rx7587wr5gnwg0148nvwx6ch0g7ar02hh94hw")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-google-golang-org-appengine-1.1.0 + (package + (name "go-google-golang-org-appengine") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/appengine") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1pz202zszg8f35dk5pfhwgcdi3r6dx1l4yk6x6ly7nb4j45zi96x")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/appengine")) + (home-page "https://google.golang.org/appengine") + (synopsis "Go App Engine packages") + (description + "Package appengine provides basic functionality for Google App Engine.") + (license license:asl2.0))) + +(define-public go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8 + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20180817151627-c66870c02cf8") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0siq7sv68556ygqi2d2zmvx8l1xjqdc0fylqzci5h1mq2i14bayn")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for +interacting with Google's gRPC APIs.") + (license license:asl2.0))) + +(define-public go-google-golang-org-grpc-1.19.0 + (package + (name "go-google-golang-org-grpc") + (version "1.19.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1znqwpj7ix3dpzx4zch0q70sdl3z5lvbb7v3q4i8sf8kas3yv71v")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" + ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) + ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" + ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) + ("go-google-golang-org-appengine-1.1.0" + ,go-google-golang-org-appengine-1.1.0) + ("go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b" + ,go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b) + ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522" + ,go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522) + ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" + ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d" + ,go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d) + ("go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3" + ,go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0) + ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-client9-misspell-0.3.4" + ,go-github-com-client9-misspell-0.3.4) + ("go-github-com-burntsushi-toml-0.3.1" + ,go-github-com-burntsushi-toml-0.3.1) + ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC.") + (license license:asl2.0))) + +(define-public go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099 + (package + (name "go-honnef-co-go-tools") + (version "0.0.0-20190102054323-c2f93a96b099") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/dominikh/go-tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "07lg29aiap80ca9f201jzng9vjr168cv3qmvjmbd7v5pmww9kmr8")))) + (build-system go-build-system) + (arguments '(#:import-path "honnef.co/go/tools")) + (home-page "https://honnef.co/go/tools") + (synopsis "Documentation") + (description + "Staticcheck is a state of the art linter for the . Using static analysis, it +finds bugs and performance issues, offers simplifications, and enforces style +rules.") + (license license:expat))) + +(define-public go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55 + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20190819201941-24fa4b261c55") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "109zhaqlfd8zkbr1hk6zqbs6vcxfrk64scjwh2nswph05gr0m84d")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" + ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) + ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) + ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" + ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) + ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" + ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) + ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" + ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for +interacting with Google's gRPC APIs.") + (license license:asl2.0))) + +(define-public go-google-golang-org-grpc-1.27.0 + (package + (name "go-google-golang-org-grpc") + (version "1.27.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ijrmgrxyabfn51nm3p9l81iaasq5fg237wnr6mdc4dzsfcg8kd7")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" + ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-github-com-google-go-cmp-0.2.0" + ,go-github-com-google-go-cmp-0.2.0) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2) + ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" + ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) + ("go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473" + ,go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC.") + (license license:asl2.0))) + +(define-public go-github-com-google-go-cmp-0.3.0 + (package + (name "go-github-com-google-go-cmp") + (version "0.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1hyxx3434zshl2m9ja78gwlkg1rx9yl6diqa7dnjb31xz5x4gbjj")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically +equal.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd + (package + (name "go-google-golang-org-protobuf") + (version "0.0.0-20200109180630-ec00e32a8dfd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0w6lp9w2avxcpxwzzhspr209ifhyjagvs23k0vykfdqahl1aplrh")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.3.0" + ,go-github-com-google-go-cmp-0.3.0))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is +a language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol +buffer developer guide} for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.4.0-rc.1 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.0-rc.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "186rirvbfgv6hrxp27ipx2cdpv19qifdd20biqfdm01wiyclqimn")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd" + ,go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd) + ("go-github-com-google-go-cmp-0.3.1" + ,go-github-com-google-go-cmp-0.3.1))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code +github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-github-com-google-go-cmp-0.3.1 + (package + (name "go-github-com-google-go-cmp") + (version "0.3.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1caw49i0plkjxir7kdf5qhwls3krqwfmi7g4h392rdfwi3kfahx1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically +equal.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64 + (package + (name "go-google-golang-org-protobuf") + (version "0.0.0-20200221191635-4d8936d0db64") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0563bsvdjj6k0sgwqd5yzrgfiax7sp3lcwh608gync5sv9fx39cy")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.3.1" + ,go-github-com-google-go-cmp-0.3.1) + ("go-github-com-golang-protobuf-1.4.0-rc.1" + ,go-github-com-golang-protobuf-1.4.0-rc.1))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is +a language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol +buffer developer guide} for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.0-rc.1.0.20200221234624-67d41d38c208") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ykxhg3zixmw25pd435f8h16wnz1g00jpcmmg3xl030kksgqgpp6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64" + ,go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code +github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60 + (package + (name "go-google-golang-org-protobuf") + (version "0.0.0-20200228230310-ab0ca4ff8a60") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1rinspcznfp85yz4vrlf4h38hr576virgv8lcs22bsylqga808sd")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208" + ,go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is +a language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol +buffer developer guide} for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.4.0-rc.2 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.0-rc.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1hd43hjv5zl6bjbmhm5phx74bw4xajsi73m5zky2k56za4mpgzzc")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60" + ,go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code +github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967 + (package + (name "go-google-golang-org-protobuf") + (version "1.20.1-0.20200309200217-e05f789c0967") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "17wmy89hnmpkwc63rfcjp50q15s9f1rhmczg06c3z9yy41zk82w9")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.0-rc.2" + ,go-github-com-golang-protobuf-1.4.0-rc.2))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is +a language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol +buffer developer guide} for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.0-rc.4.0.20200313231945-b860323f09d0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1zj6cwshx0l5n9cn2cpbikzzb79px5dmkpc4p19zy1iif5r5p0z0")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967" + ,go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code +github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-1.21.0 + (package + (name "go-google-golang-org-protobuf") + (version "1.21.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12bwln8z1lf9105gdp6ip0rx741i4yfz1520gxnp8861lh9wcl63")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0" + ,go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is +a language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol +buffer developer guide} for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.4.0 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fjvl5n77abxz5qsd4mgyvjq19x43c5bfvmq62mq3m5plx6zksc8")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.21.0" + ,go-google-golang-org-protobuf-1.21.0) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code +github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543 + (package + (name "go-golang-org-x-xerrors") + (version "0.0.0-20191204190536-9bdfabe68543") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/xerrors") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1yjfi1bk9xb81lqn85nnm13zz725wazvrx3b50hx19qmwg7a4b0c")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/xerrors")) + (home-page "https://golang.org/x/xerrors") + (synopsis #f) + (description "Package xerrors implements functions to manipulate errors.") + (license license:bsd-3))) + +(define-public go-github-com-google-go-cmp-0.4.0 + (package + (name "go-github-com-google-go-cmp") + (version "0.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1x5pvl3fb5sbyng7i34431xycnhmx8xx94gq2n19g6p0vz68z2v2")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically +equal.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc + (package + (name "go-google-golang-org-protobuf") + (version "1.23.1-0.20200526195155-81db48ad09cc") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "02cpr8rqr5wmpj2fqb32mzilsdnxkh52g1jz95a3ck3gzffc7hh1")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.0" + ,go-github-com-golang-protobuf-1.4.0))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is +a language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol +buffer developer guide} for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc + (package + (name "go-honnef-co-go-tools") + (version "0.0.0-20190523083050-ea95bdfd59fc") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/dominikh/go-tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1763nw7pwpzkvzfnm63dgzcgbq9hwmq5l1nffchnhh77vgkaq4ic")))) + (build-system go-build-system) + (arguments '(#:import-path "honnef.co/go/tools")) + (home-page "https://honnef.co/go/tools") + (synopsis "Documentation") + (description + "Staticcheck is a state of the art linter for the . Using static analysis, it +finds bugs and performance issues, offers simplifications, and enforces style +rules.") + (license license:expat))) + +(define-public go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013 + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20200526211855-cb27e3aa2013") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ml73ghqcwbz7ipfk8fnxb5indcml49b5p7vp1fsyny0abyyrmxf")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" + ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) + ("go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc" + ,go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-golang-protobuf-1.4.1" + ,go-github-com-golang-protobuf-1.4.1))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for +interacting with Google's gRPC APIs.") + (license license:asl2.0))) + +(define-public go-google-golang-org-protobuf-1.24.0 + (package + (name "go-google-golang-org-protobuf") + (version "1.24.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0x3qyn3rizbs671gs7f8v50rmiwf9h7kbaradpivw9718mhbg1gn")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" + ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.1" + ,go-github-com-golang-protobuf-1.4.1))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is +a language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol +buffer developer guide} for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-gopkg-in-check-v1-1.0.0-20200227125254-8fa46927fb4f + (package + (name "go-gopkg-in-check-v1") + (version "1.0.0-20200227125254-8fa46927fb4f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/check.v1") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0fx03x0nx9mjwnqphnx852q9p76qg7cazrachvgr1bj357lplrcw")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) + (home-page "https://gopkg.in/check.v1") + (synopsis "Instructions") + (description + "Package check is a rich testing extension for Go's testing package.") + (license license:bsd-2))) + +(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 + (package + (name "go-gopkg-in-check-v1") + (version "0.0.0-20161208181325-20d25e280405") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/check.v1") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) + (home-page "https://gopkg.in/check.v1") + (synopsis "Instructions") + (description + "Package check is a rich testing extension for Go's testing package.") + (license license:bsd-2))) + +(define-public go-gopkg-in-yaml-v3-3.0.0-20200615113413-eeeca48fe776 + (package + (name "go-gopkg-in-yaml-v3") + (version "3.0.0-20200615113413-eeeca48fe776") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v3") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "06m3kx5mp6vwfcpjl04c39r1dpbakg2la9ql1jw3zvpi6jk7iwbk")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v3") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language.") + (license unknown-license!))) + (define-public go-github-com-opencontainers-umoci-0.4.7 (package (name "go-github-com-opencontainers-umoci") @@ -1092,6 +10605,7 @@ To build from source code, runtime-tools requires Go 1.10.x or above.") "@strong{u}moci @strong{m}odifies @strong{O}pen @strong{C}ontainer @strong{i}mages.") (license license:asl2.0))) + (define-public go-github-com-pelletier-go-toml-1.9.4 (package (name "go-github-com-pelletier-go-toml") @@ -1110,7 +10624,8 @@ To build from source code, runtime-tools requires Go 1.10.x or above.") (home-page "https://github.com/pelletier/go-toml") (synopsis "go-toml") (description "Package toml is a TOML parser and manipulation library.") - (license license:expat))) + (license unknown-license!))) + (define-public go-github-com-pkg-errors-0.9.1 (package (name "go-github-com-pkg-errors") @@ -1130,6 +10645,570 @@ To build from source code, runtime-tools requires Go 1.10.x or above.") (synopsis "errors") (description "Package errors provides simple error handling primitives.") (license license:bsd-2))) + +(define-public go-github-com-blang-semver-3.5.1+incompatible + (package + (name "go-github-com-blang-semver") + (version "3.5.1+incompatible") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/blang/semver") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "13ws259bwcibkclbr82ilhk6zadm63kxklxhk12wayklj8ghhsmy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/blang/semver")) + (home-page "https://github.com/blang/semver") + (synopsis "semver for golang") + (description + "semver is a @url{http://semver.org/,Semantic Versioning} library written in +golang. It fully covers spec version @code{2.0.0}.") + (license license:expat))) + +(define-public go-github-com-hashicorp-errwrap-1.0.0 + (package + (name "go-github-com-hashicorp-errwrap") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/errwrap") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0slfb6w3b61xz04r32bi0a1bygc82rjzhqkxj2si2074wynqnr1c")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/errwrap")) + (home-page "https://github.com/hashicorp/errwrap") + (synopsis "errwrap") + (description + "Package errwrap implements methods to formalize error wrapping in Go.") + (license license:mpl2.0))) + +(define-public go-github-com-hashicorp-go-multierror-1.1.0 + (package + (name "go-github-com-hashicorp-go-multierror") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/go-multierror") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0pmjpzpra7lqgikxzwlcp5mh01b46j2vhyxkixz0v86fr9kf0k3k")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/go-multierror")) + (propagated-inputs + `(("go-github-com-hashicorp-errwrap-1.0.0" + ,go-github-com-hashicorp-errwrap-1.0.0))) + (home-page "https://github.com/hashicorp/go-multierror") + (synopsis "go-multierror") + (description + "@code{go-multierror} is a package for Go that provides a mechanism for +representing a list of @code{error} values as a single @code{error}.") + (license license:mpl2.0))) + +(define-public go-github-com-opencontainers-runtime-spec-1.0.3-0.20200710190001-3e4195d92445 + (package + (name "go-github-com-opencontainers-runtime-spec") + (version "1.0.3-0.20200710190001-3e4195d92445") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/runtime-spec") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "04kfdbap80r89rn7f7xcmkyy0qbpd18dgk65bzapy0x0calpgrlk")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) + (home-page "https://github.com/opencontainers/runtime-spec") + (synopsis "Open Container Initiative Runtime Specification") + (description + "The @url{https://www.opencontainers.org,Open Container Initiative} develops +specifications for standards on Operating System process and application +containers.") + (license license:asl2.0))) + +(define-public go-github-com-opencontainers-runtime-tools-0.9.0 + (package + (name "go-github-com-opencontainers-runtime-tools") + (version "0.9.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/runtime-tools") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1pli3jb1rq9lkzzz83f7jw788vijg7x6ly3vgasdlwri7kiph1sa")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/runtime-tools")) + (home-page "https://github.com/opencontainers/runtime-tools") + (synopsis "oci-runtime-tool") + (description + "oci-runtime-tool is a collection of tools for working with the +@url{https://github.com/opencontainers/runtime-spec,OCI runtime specification}. +To build from source code, runtime-tools requires Go 1.10.x or above.") + (license license:asl2.0))) + +(define-public go-github-com-pkg-errors-0.9.1 + (package + (name "go-github-com-pkg-errors") + (version "0.9.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pkg/errors") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1761pybhc2kqr6v5fm8faj08x9bql8427yqg6vnfv6nhrasx1mwq")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pkg/errors")) + (home-page "https://github.com/pkg/errors") + (synopsis "errors") + (description "Package errors provides simple error handling primitives.") + (license license:bsd-2))) + +(define-public go-github-com-willf-bitset-1.1.11-0.20200630133818-d5bec3311243 + (package + (name "go-github-com-willf-bitset") + (version "1.1.11-0.20200630133818-d5bec3311243") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/bits-and-blooms/bitset") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "05nyd0vhp2h9hbqlv2s9l2py6mr8hpz2zyfj09an1q7wd8vph4ja")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/willf/bitset")) + (home-page "https://github.com/willf/bitset") + (synopsis "bitset") + (description + "Package bitset implements bitsets, a mapping between non-negative integers and +boolean values. It should be more efficient than map[uint] bool.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20191115151921-52ab43148777") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1kakxbqrb1w2vwg7r1896z68qcx2lfvimsl8cs2niiipbgpi6imx")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-opencontainers-selinux-1.6.0 + (package + (name "go-github-com-opencontainers-selinux") + (version "1.6.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/selinux") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ja41zfgrkhk5khixjnxpi1b85xfcxlkhq2q9b7ma6xjfdhg8bq2")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/selinux")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777" + ,go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777) + ("go-github-com-willf-bitset-1.1.11-0.20200630133818-d5bec3311243" + ,go-github-com-willf-bitset-1.1.11-0.20200630133818-d5bec3311243) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) + (home-page "https://github.com/opencontainers/selinux") + (synopsis "selinux") + (description "Common SELinux package used across the container ecosystem.") + (license license:asl2.0))) + +(define-public go-github-com-seccomp-libseccomp-golang-0.9.1 + (package + (name "go-github-com-seccomp-libseccomp-golang") + (version "0.9.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/seccomp/libseccomp-golang") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "022c8prvxz0shrifams7lq4xidvkcqg9xi87wjjcpmbikqi72cna")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/seccomp/libseccomp-golang")) + (home-page "https://github.com/seccomp/libseccomp-golang") + (synopsis #f) + (description + "Package seccomp provides bindings for libseccomp, a library wrapping the Linux +seccomp syscall. Seccomp enables an application to restrict system call use for +itself and its children.") + (license license:bsd-2))) + +(define-public go-github-com-davecgh-go-spew-1.1.1 + (package + (name "go-github-com-davecgh-go-spew") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/davecgh/go-spew") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/davecgh/go-spew")) + (home-page "https://github.com/davecgh/go-spew") + (synopsis "go-spew") + (description + "Go-spew implements a deep pretty printer for Go data structures to aid in +debugging. A comprehensive suite of tests with 100% test coverage is provided +to ensure proper functionality. See @code{test_coverage.txt} for the gocov +coverage report. Go-spew is licensed under the liberal ISC license, so it may +be used in open source or commercial projects.") + (license license:isc))) + +(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.3 + (package + (name "go-github-com-konsorten-go-windows-terminal-sequences") + (version "1.0.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/konsorten/go-windows-terminal-sequences") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1yrsd4s8vhjnxhwbigirymz89dn6qfjnhn28i33vvvdgf96j6ypl")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) + (home-page "https://github.com/konsorten/go-windows-terminal-sequences") + (synopsis "Windows Terminal Sequences") + (description + "This library allow for enabling Windows terminal color support for Go.") + (license license:expat))) + +(define-public go-github-com-stretchr-testify-1.2.2 + (package + (name "go-github-com-stretchr-testify") + (version "1.2.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0dlszlshlxbmmfxj5hlwgv3r22x0y1af45gn1vd198nvvs3pnvfs")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in +it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that +your code will behave as you intend.") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190422165155-953cdadca894") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0gkha4whk8xkcv3isigbs250akag99isxnd3v9xmy0kl3g88hxy1")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-sirupsen-logrus-1.6.0 + (package + (name "go-github-com-sirupsen-logrus") + (version "1.6.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sirupsen/logrus") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1zf9is1yxxnna0d1pyag2m9ziy3l27zb2j92p9msm1gx5jjrvzzj")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/sirupsen/logrus")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894" + ,go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894) + ("go-github-com-stretchr-testify-1.2.2" + ,go-github-com-stretchr-testify-1.2.2) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.3" + ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.3) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/sirupsen/logrus") + (synopsis "Logrus") + (description + "Package logrus is a structured logger for Go, completely API compatible with the +standard library logger.") + (license license:expat))) + +(define-public go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2 + (package + (name "go-github-com-syndtr-gocapability") + (version "0.0.0-20180916011248-d98352740cb2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/syndtr/gocapability") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "065y16562ynixxzj7iys4f4spb7knilbj3h833qlhds381j8hn93")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/syndtr/gocapability")) + (home-page "https://github.com/syndtr/gocapability") + (synopsis #f) + (description #f) + (license license:bsd-2))) + +(define-public go-github-com-davecgh-go-spew-1.1.0 + (package + (name "go-github-com-davecgh-go-spew") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/davecgh/go-spew") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/davecgh/go-spew")) + (home-page "https://github.com/davecgh/go-spew") + (synopsis "go-spew") + (description + "Go-spew implements a deep pretty printer for Go data structures to aid in +debugging. A comprehensive suite of tests with 100% test coverage is provided +to ensure proper functionality. See @code{test_coverage.txt} for the gocov +coverage report. Go-spew is licensed under the liberal ISC license, so it may +be used in open source or commercial projects.") + (license license:isc))) + +(define-public go-github-com-pmezard-go-difflib-1.0.0 + (package + (name "go-github-com-pmezard-go-difflib") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pmezard/go-difflib") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pmezard/go-difflib")) + (home-page "https://github.com/pmezard/go-difflib") + (synopsis "go-difflib") + (description + "Go-difflib is a partial port of python 3 difflib package. Its main goal was to +make unified and context diff available in pure Go, mostly for testing purposes.") + (license license:bsd-3))) + +(define-public go-github-com-stretchr-objx-0.1.0 + (package + (name "go-github-com-stretchr-objx") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/objx") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/objx")) + (home-page "https://github.com/stretchr/objx") + (synopsis "Objx") + (description + "Objx - Go package for dealing with maps, slices, JSON and other data.") + (license license:expat))) + +(define-public go-github-com-stretchr-testify-1.3.0 + (package + (name "go-github-com-stretchr-testify") + (version "1.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wjchp2c8xbgcbbq32w3kvblk6q6yn533g78nxl6iskq6y95lxsy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (propagated-inputs + `(("go-github-com-stretchr-objx-0.1.0" + ,go-github-com-stretchr-objx-0.1.0) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.0" + ,go-github-com-davecgh-go-spew-1.1.0))) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in +it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that +your code will behave as you intend.") + (license license:expat))) + +(define-public go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f + (package + (name "go-github-com-xeipuuv-gojsonpointer") + (version "0.0.0-20180127040702-4e3ac2762d5f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/xeipuuv/gojsonpointer") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "13y6iq2nzf9z4ls66bfgnnamj2m3438absmbpqry64bpwjfbsi9q")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/xeipuuv/gojsonpointer")) + (home-page "https://github.com/xeipuuv/gojsonpointer") + (synopsis "gojsonpointer") + (description "An implementation of JSON Pointer - Go language") + (license license:asl2.0))) + +(define-public go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415 + (package + (name "go-github-com-xeipuuv-gojsonreference") + (version "0.0.0-20180127040603-bd5ef7bd5415") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/xeipuuv/gojsonreference") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1xby79padc7bmyb8rfbad8wfnfdzpnh51b1n8c0kibch0kwc1db5")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/xeipuuv/gojsonreference")) + (home-page "https://github.com/xeipuuv/gojsonreference") + (synopsis "gojsonreference") + (description "An implementation of JSON Reference - Go language") + (license license:asl2.0))) + +(define-public go-github-com-xeipuuv-gojsonschema-1.2.0 + (package + (name "go-github-com-xeipuuv-gojsonschema") + (version "1.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/xeipuuv/gojsonschema") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1mqiq0r8qw4qlfp3ls8073r6514rmzwrmdn4j33rppk3zh942i6l")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/xeipuuv/gojsonschema")) + (propagated-inputs + `(("go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415" + ,go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415) + ("go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f" + ,go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f) + ("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0))) + (home-page "https://github.com/xeipuuv/gojsonschema") + (synopsis "gojsonschema") + (description + "An implementation of JSON Schema for the Go programming language. Supports +draft-04, draft-06 and draft-07.") + (license license:asl2.0))) + +(define-public go-golang-org-x-sys-0.0.0-20200720211630-cb9d2d5c5666 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200720211630-cb9d2d5c5666") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18b1179cvv3rfn3hhysiqwcn2c15a1kzff74q4494rz69k0j7w4q")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + (define-public go-github-com-seccomp-containers-golang-0.6.0 (package (name "go-github-com-seccomp-containers-golang") @@ -1172,6 +11251,7 @@ To build from source code, runtime-tools requires Go 1.10.x or above.") "@code{containers-golang} is a set of Go libraries used by container runtimes to generate and load seccomp mappings into the kernel.") (license license:asl2.0))) + (define-public go-github-com-seccomp-libseccomp-golang-0.9.2-0.20210429002308-3879420cc921 (package (name "go-github-com-seccomp-libseccomp-golang") @@ -1194,36 +11274,7 @@ generate and load seccomp mappings into the kernel.") seccomp syscall. Seccomp enables an application to restrict system call use for itself and its children.") (license license:bsd-2))) -(define-public go-github-com-spf13-cobra-1.3.0 - (package - (name "go-github-com-spf13-cobra") - (version "1.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/spf13/cobra") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0j3kj6yxrl2aigixapjl6bi2gmghrj52763wbd7jc079f38wz94n")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/spf13/cobra")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) - ("go-github-com-spf13-viper-1.10.0" ,go-github-com-spf13-viper-1.10.0) - ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) - ("go-github-com-inconshreveable-mousetrap-1.0.0" - ,go-github-com-inconshreveable-mousetrap-1.0.0) - ("go-github-com-cpuguy83-go-md2man-v2-2.0.1" - ,go-github-com-cpuguy83-go-md2man-v2-2.0.1))) - (home-page "https://github.com/spf13/cobra") - (synopsis "Overview") - (description - "Package cobra is a commander providing a simple interface to create powerful -modern CLI interfaces. In addition to providing an interface, Cobra -simultaneously provides a controller to organize your application code.") - (license license:asl2.0))) + (define-public go-github-com-spf13-pflag-1.0.5 (package (name "go-github-com-spf13-pflag") @@ -1245,6 +11296,7 @@ simultaneously provides a controller to organize your application code.") "Package pflag is a drop-in replacement for Go's flag package, implementing POSIX/GNU-style --flags.") (license license:bsd-3))) + (define-public go-github-com-sylabs-json-resp-0.8.0 (package (name "go-github-com-sylabs-json-resp") @@ -1266,6 +11318,302 @@ POSIX/GNU-style --flags.") "The @code{json-resp} package contains a small set of functions that are used to marshall and unmarshall response data and errors in JSON format.") (license license:bsd-3))) + +(define-public go-github-com-burntsushi-toml-0.3.1 + (package + (name "go-github-com-burntsushi-toml") + (version "0.3.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/BurntSushi/toml") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fjdwwfzyzllgiwydknf1pwjvy49qxfsczqx5gz3y0izs7as99j6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/BurntSushi/toml")) + (home-page "https://github.com/BurntSushi/toml") + (synopsis "Testing") + (description + "Package toml implements decoding and encoding of TOML files.") + (license license:expat))) + +(define-public go-github-com-pmezard-go-difflib-1.0.0 + (package + (name "go-github-com-pmezard-go-difflib") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pmezard/go-difflib") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pmezard/go-difflib")) + (home-page "https://github.com/pmezard/go-difflib") + (synopsis "go-difflib") + (description + "Go-difflib is a partial port of python 3 difflib package. Its main goal was to +make unified and context diff available in pure Go, mostly for testing purposes.") + (license license:bsd-3))) + +(define-public go-github-com-russross-blackfriday-v2-2.0.1 + (package + (name "go-github-com-russross-blackfriday-v2") + (version "2.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/russross/blackfriday") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0nlz7isdd4rgnwzs68499hlwicxz34j2k2a0b8jy0y7ycd2bcr5j")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/russross/blackfriday/v2")) + (home-page "https://github.com/russross/blackfriday") + (synopsis "Blackfriday") + (description "Package blackfriday is a markdown processor.") + (license license:bsd-2))) + +(define-public go-github-com-shurcool-sanitized-anchor-name-1.0.0 + (package + (name "go-github-com-shurcool-sanitized-anchor-name") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/shurcooL/sanitized_anchor_name") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1gv9p2nr46z80dnfjsklc6zxbgk96349sdsxjz05f3z6wb6m5l8f")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/shurcooL/sanitized_anchor_name")) + (home-page "https://github.com/shurcooL/sanitized_anchor_name") + (synopsis "sanitized_anchor_name") + (description + "Package sanitized_anchor_name provides a func to create sanitized anchor names.") + (license license:expat))) + +(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d + (package + (name "go-github-com-cpuguy83-go-md2man-v2") + (version "2.0.0-20190314233015-f79a8a8ca69d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cpuguy83/go-md2man") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) + (propagated-inputs + `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" + ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) + ("go-github-com-russross-blackfriday-v2-2.0.1" + ,go-github-com-russross-blackfriday-v2-2.0.1) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0))) + (home-page "https://github.com/cpuguy83/go-md2man") + (synopsis "go-md2man") + (description "Converts markdown into roff (man pages).") + (license license:expat))) + +(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 + (package + (name "go-gopkg-in-check-v1") + (version "0.0.0-20161208181325-20d25e280405") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/check.v1") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) + (home-page "https://gopkg.in/check.v1") + (synopsis "Instructions") + (description + "Package check is a rich testing extension for Go's testing package.") + (license license:bsd-2))) + +(define-public go-gopkg-in-yaml-v2-2.2.2 + (package + (name "go-gopkg-in-yaml-v2") + (version "2.2.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "01wj12jzsdqlnidpyjssmj0r4yavlqy7dwrg7adqd8dicjc4ncsa")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v2") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language.") + (license license:asl2.0))) + +(define-public go-github-com-urfave-cli-1.22.5 + (package + (name "go-github-com-urfave-cli") + (version "1.22.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/urfave/cli") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1n8lk58j7bdsp47yh5bcpsw38lhkbyzcy3203ffkawc2rvkf1pp7")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/urfave/cli")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) + ("go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d" + ,go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d) + ("go-github-com-burntsushi-toml-0.3.1" + ,go-github-com-burntsushi-toml-0.3.1))) + (home-page "https://github.com/urfave/cli") + (synopsis "cli") + (description + "Package cli provides a minimal framework for creating and organizing command +line Go applications. cli is designed to be easy to understand and write, the +most simple cli application can be written as follows:") + (license license:expat))) + +(define-public go-github-com-vividcortex-ewma-1.2.0 + (package + (name "go-github-com-vividcortex-ewma") + (version "1.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/VividCortex/ewma") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0whx516l9nm4n41spagb605ry7kfnz1qha96mcshnfjlahhnnylq")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/VividCortex/ewma")) + (home-page "https://github.com/VividCortex/ewma") + (synopsis "EWMA") + (description + "Package ewma implements exponentially weighted moving averages.") + (license license:expat))) + +(define-public go-github-com-acarl005-stripansi-0.0.0-20180116102854-5a71ef0e047d + (package + (name "go-github-com-acarl005-stripansi") + (version "0.0.0-20180116102854-5a71ef0e047d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/acarl005/stripansi") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "02sxiishdixm791jqbkmhdcvc712l0fb8rqmibxzgc61h0qs6rs3")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/acarl005/stripansi")) + (home-page "https://github.com/acarl005/stripansi") + (synopsis "Strip ANSI") + (description "This Go package removes ANSI escape codes from strings.") + (license license:expat))) + +(define-public go-github-com-rivo-uniseg-0.2.0 + (package + (name "go-github-com-rivo-uniseg") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/rivo/uniseg") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0j7h22vfmjj562vr8gpsyrkrwp1pq9ayh5fylv24skxb467g9f0q")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/rivo/uniseg")) + (home-page "https://github.com/rivo/uniseg") + (synopsis "Unicode Text Segmentation for Go") + (description + "Package uniseg implements Unicode Text Segmentation according to Unicode +Standard Annex #29 +(@url{http://unicode.org/reports/tr29/,http://unicode.org/reports/tr29/}).") + (license license:expat))) + +(define-public go-github-com-mattn-go-runewidth-0.0.13 + (package + (name "go-github-com-mattn-go-runewidth") + (version "0.0.13") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mattn/go-runewidth") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1yir0f3wc5z5hnkwhvx5qb6nmpfb05zp2gvfjvna63s8kmla1rrn")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mattn/go-runewidth")) + (propagated-inputs + `(("go-github-com-rivo-uniseg-0.2.0" ,go-github-com-rivo-uniseg-0.2.0))) + (home-page "https://github.com/mattn/go-runewidth") + (synopsis "go-runewidth") + (description + "This package provides functions to get fixed width of the character or string.") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20220209214540-3681064d5158 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20220209214540-3681064d5158") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0cw9rzb4rxmr2si28pjqx3wv5r119c83kd08yy1h7nf725bzrs89")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + (define-public go-github-com-vbauerster-mpb-v7-7.4.1 (package (name "go-github-com-vbauerster-mpb-v7") @@ -1295,6 +11643,68 @@ marshall and unmarshall response data and errors in JSON format.") (description "Package mpb is a library for rendering progress bars in terminal applications.") (license license:unlicense))) + +(define-public go-github-com-xeipuuv-gojsonpointer-0.0.0-20190905194746-02993c407bfb + (package + (name "go-github-com-xeipuuv-gojsonpointer") + (version "0.0.0-20190905194746-02993c407bfb") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/xeipuuv/gojsonpointer") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0y7gmpgsm8c12ax4a0ij9srmd9d424iq224n172ckwfqf37amvzy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/xeipuuv/gojsonpointer")) + (home-page "https://github.com/xeipuuv/gojsonpointer") + (synopsis "gojsonpointer") + (description "An implementation of JSON Pointer - Go language") + (license license:asl2.0))) + +(define-public go-github-com-yvasiyarov-go-metrics-0.0.0-20150112132944-c25f46c4b940 + (package + (name "go-github-com-yvasiyarov-go-metrics") + (version "0.0.0-20150112132944-c25f46c4b940") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/yvasiyarov/go-metrics") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0p1hx4ml4gzgyj8n0fg5lv8bq092zwg00n59lq8v8sphjc1h8i8d")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/yvasiyarov/go-metrics")) + (home-page "https://github.com/yvasiyarov/go-metrics") + (synopsis "go-metrics") + (description "Go port of Coda Hale's Metrics library") + (license unknown-license!))) + +(define-public go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20160601141957-9c099fbc30e9 + (package + (name "go-github-com-yvasiyarov-newrelic-platform-go") + (version "0.0.0-20160601141957-9c099fbc30e9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/yvasiyarov/newrelic_platform_go") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0n6jap27qc7b7c37ck1gv9biq5nfl7y06jk0cqgc517yfnb4f07x")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/yvasiyarov/newrelic_platform_go")) + (home-page "https://github.com/yvasiyarov/newrelic_platform_go") + (synopsis "New Relic Platform Agent SDK for Go(golang)") + (description + "Package newrelic_platform_go is New Relic Platform Agent SDK for Go language.") + (license license:bsd-2))) + (define-public go-golang-org-x-sys-0.0.0-20220209214540-3681064d5158 (package (name "go-golang-org-x-sys") @@ -1316,6 +11726,29 @@ marshall and unmarshall response data and errors in JSON format.") "This repository holds supplemental Go packages for low-level interactions with the operating system.") (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20210615035016-665e8c7367d1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "11n848csibdbv7b46zjyf4l7sphg37n9sjzqfy1ds7p1jyakwmnv")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + (define-public go-golang-org-x-term-0.0.0-20210916214954-140adaaadfaf (package (name "go-golang-org-x-term") @@ -1340,6 +11773,29 @@ the operating system.") "Package term provides support functions for dealing with terminals, as commonly found on UNIX systems.") (license license:bsd-3))) + +(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 + (package + (name "go-gopkg-in-check-v1") + (version "0.0.0-20161208181325-20d25e280405") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/check.v1") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) + (home-page "https://gopkg.in/check.v1") + (synopsis "Instructions") + (description + "Package check is a rich testing extension for Go's testing package.") + (license license:bsd-2))) + (define-public go-gopkg-in-yaml-v2-2.4.0 (package (name "go-gopkg-in-yaml-v2") @@ -1363,6 +11819,628 @@ found on UNIX systems.") (synopsis "YAML support for the Go language") (description "Package yaml implements YAML support for the Go language.") (license license:asl2.0))) + +(define-public go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543 + (package + (name "go-golang-org-x-xerrors") + (version "0.0.0-20191204190536-9bdfabe68543") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/xerrors") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1yjfi1bk9xb81lqn85nnm13zz725wazvrx3b50hx19qmwg7a4b0c")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/xerrors")) + (home-page "https://golang.org/x/xerrors") + (synopsis #f) + (description "Package xerrors implements functions to manipulate errors.") + (license license:bsd-3))) + +(define-public go-github-com-google-go-cmp-0.5.5 + (package + (name "go-github-com-google-go-cmp") + (version "0.5.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12fmkdhyv5d4is8s57k78j097zb0phlgnrkqc03agiszxlid69x7")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically +equal.") + (license license:bsd-3))) + +(define-public go-github-com-pkg-errors-0.9.1 + (package + (name "go-github-com-pkg-errors") + (version "0.9.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pkg/errors") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1761pybhc2kqr6v5fm8faj08x9bql8427yqg6vnfv6nhrasx1mwq")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pkg/errors")) + (home-page "https://github.com/pkg/errors") + (synopsis "errors") + (description "Package errors provides simple error handling primitives.") + (license license:bsd-2))) + +(define-public go-github-com-spf13-pflag-1.0.3 + (package + (name "go-github-com-spf13-pflag") + (version "1.0.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/spf13/pflag") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1cj3cjm7d3zk0mf1xdybh0jywkbbw7a6yr3y22x9sis31scprswd")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/spf13/pflag")) + (home-page "https://github.com/spf13/pflag") + (synopsis "Description") + (description + "Package pflag is a drop-in replacement for Go's flag package, implementing +POSIX/GNU-style --flags.") + (license license:bsd-3))) + +(define-public go-github-com-yuin-goldmark-1.2.1 + (package + (name "go-github-com-yuin-goldmark") + (version "1.2.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/yuin/goldmark") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12rsnsf65drcp0jfw2jl9w589vsn3pxdk1zh3v9q908iigngrcmy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/yuin/goldmark")) + (home-page "https://github.com/yuin/goldmark") + (synopsis "goldmark") + (description + "Package goldmark implements functions to convert markdown text to a desired +format.") + (license license:expat))) + +(define-public go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20191011191535-87dc89f01550") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0z4i1m2yn3f31ci7wvcm2rxkx2yiv7a78mfzklncmsz2k97rlh2g")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" + ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) + ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" + ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190620200207-3b0461eec859") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0l00c8l0a8xnv6qdpwfzxxsr58jggacgzdrwiprrfx2xqm37b6d5")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20190423024810-112230192c58 + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20190423024810-112230192c58") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "05i2k43j2d0llq768hg5pf3hb2yhfzp9la1w5wp0rsnnzblr0lfn")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the ones +provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7 + (package + (name "go-golang-org-x-xerrors") + (version "0.0.0-20190717185122-a985d3407aa7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/xerrors") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "00wzr5w8aadipgc3rkk8f11i41znskfj9ix5nhhaxyg7isrslgcj")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/xerrors")) + (home-page "https://golang.org/x/xerrors") + (synopsis #f) + (description "Package xerrors implements functions to manipulate errors.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20191119224855-298f0cb1881e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0l4pqwib2wnfnix6nvxl0yrq87ipi7ff1rz6z5bxfzy9dki1nzmv")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7" + ,go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7) + ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" + ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) + ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" + ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898 + (package + (name "go-golang-org-x-xerrors") + (version "0.0.0-20191011141410-1b5146add898") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/xerrors") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0w2akj91krxjag0xdhsg78470888nicc5ismc2ap9jqpss6v1zih")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/xerrors")) + (home-page "https://golang.org/x/xerrors") + (synopsis #f) + (description "Package xerrors implements functions to manipulate errors.") + (license license:bsd-3))) + +(define-public go-golang-org-x-mod-0.3.0 + (package + (name "go-golang-org-x-mod") + (version "0.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/mod") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ldgbx2zpprbsfn6p8pfgs4nn87gwbfcv2z0fa7n8alwsq2yw78q")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/mod")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" + ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) + ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" + ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) + ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" + ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) + (home-page "https://golang.org/x/mod") + (synopsis "mod") + (description + "This repository holds packages for writing tools that work directly with Go +module mechanics. That is, it is for direct manipulation of Go modules +themselves.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190215142949-d0b11bdaac8a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20190308221718-c2843e01d9a2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-text-0.3.0 + (package + (name "go-golang-org-x-text") + (version "0.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/text")) + (home-page "https://golang.org/x/text") + (synopsis "Go Text") + (description + "text is a repository of text-related packages related to internationalization +(i18n) and localization (l10n), such as character encodings, text +transformations, and locale-specific text handling.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190404232315-eb5bcb51f2a3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "17k4g8krxbl84gzcs275b7gsh66dzm15fdxivjnx9xz8q84l4kby")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20190412213103-97732733099d + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190412213103-97732733099d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "118hkp01i4z1f5h6hcjm0ff2ngqhrzj1f7731n0kw8dr6hvbx0sw")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20200622213623-75b288015ac9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18vlncvvs11ds3zaaziqjlg5s2vcwi3496nn6qv7p0dp94j5pwa2")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" + ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) + ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" + ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200930185726-fdedc70b468f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1njlfhjbvi4lxvjbq8zswrb0y0q4jd2p6x51h1q6vmyzi9af6869")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20180917221912-90fa682c2a6e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-golang-org-x-text-0.3.3 + (package + (name "go-golang-org-x-text") + (version "0.3.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19pihqm3phyndmiw6i42pdv6z1rbvlqlsnhsyqf9gsnn0qnmqqlh")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/text")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" + ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) + (home-page "https://golang.org/x/text") + (synopsis "Go Text") + (description + "text is a repository of text-related packages related to internationalization +(i18n) and localization (l10n), such as character encodings, text +transformations, and locale-specific text handling.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20201021035429-f5854403a974 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20201021035429-f5854403a974") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1vw63zpmhi337f3gc432x3wkib4j2ia8dy7if31wxwb9dgqvy222")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) + ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" + ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) + ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" + ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9 + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20201020160332-67f06af15bc9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "093p4panc808ak5bamzz7m9nb0xxib7778jpnr6f0xkz1n4fzyw5")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the ones +provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20210119212857-b64e53b001e4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "16in6bazi0frdkzhqxyvmw7qcvzjavq21dnz9bmrqq8d4dpd2j44")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1 + (package + (name "go-golang-org-x-xerrors") + (version "0.0.0-20200804184101-5ec99f83aff1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/xerrors") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1dbzc3gmf2haazpv7cgmv97rq40g2xzwbglc17vas8dwhgwgwrzb")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/xerrors")) + (home-page "https://golang.org/x/xerrors") + (synopsis #f) + (description "Package xerrors implements functions to manipulate errors.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.1.0 + (package + (name "go-golang-org-x-tools") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1asrm22kv5x891qkbpap8alg612k321jbs1akc0vwsan251gm507")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" + ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) + ("go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4" + ,go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4) + ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" + ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) + ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" + ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) + ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) + ("go-github-com-yuin-goldmark-1.2.1" + ,go-github-com-yuin-goldmark-1.2.1))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + (define-public go-gotest-tools-v3-3.1.0 (package (name "go-gotest-tools-v3") @@ -1393,6 +12471,494 @@ found on UNIX systems.") "Package gotesttools is a collection of packages to augment `testing` and support common patterns.") (license license:asl2.0))) + +(define-public go-github-com-creack-pty-1.1.15 + (package + (name "go-github-com-creack-pty") + (version "1.1.15") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/creack/pty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1j5w51ammp5rp90bhdwqi216dxmndpmf4gf3gim75qls52qj8j2r")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/creack/pty")) + (home-page "https://github.com/creack/pty") + (synopsis "pty") + (description + "Package pty provides functions for working with Unix terminals.") + (license license:expat))) + +(define-public go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543 + (package + (name "go-golang-org-x-xerrors") + (version "0.0.0-20191204190536-9bdfabe68543") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/xerrors") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1yjfi1bk9xb81lqn85nnm13zz725wazvrx3b50hx19qmwg7a4b0c")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/xerrors")) + (home-page "https://golang.org/x/xerrors") + (synopsis #f) + (description "Package xerrors implements functions to manipulate errors.") + (license license:bsd-3))) + +(define-public go-github-com-google-go-cmp-0.5.6 + (package + (name "go-github-com-google-go-cmp") + (version "0.5.6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0lrb0pacv5iy3m6fn1qb3nv7zwimfhpzqq8f6hwpwx88cx3g6p1s")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically +equal.") + (license license:bsd-3))) + +(define-public go-github-com-frankban-quicktest-1.13.1 + (package + (name "go-github-com-frankban-quicktest") + (version "1.13.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/frankban/quicktest") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1x0v98s4m0zy9m4h7x3kmx30vxk2ah496qb81mnmzv98h4cgdki0")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/frankban/quicktest")) + (propagated-inputs + `(("go-github-com-kr-pretty-0.3.0" ,go-github-com-kr-pretty-0.3.0) + ("go-github-com-google-go-cmp-0.5.6" + ,go-github-com-google-go-cmp-0.5.6))) + (home-page "https://github.com/frankban/quicktest") + (synopsis "quicktest") + (description + "Package quicktest provides a collection of Go helpers for writing tests.") + (license license:expat))) + +(define-public go-github-com-google-renameio-1.0.1 + (package + (name "go-github-com-google-renameio") + (version "1.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/renameio") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1qn84nra9nxqyqg4i496b6ijbhnxvx66hdndwl7qh7r6q8lz2ba5")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/renameio")) + (home-page "https://github.com/google/renameio") + (synopsis "Atomicity vs durability") + (description + "Package renameio provides a way to atomically create or replace a file or +symbolic link.") + (license license:asl2.0))) + +(define-public go-github-com-creack-pty-1.1.9 + (package + (name "go-github-com-creack-pty") + (version "1.1.9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/creack/pty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1v52599qq76dwq742mffakzj6mxqqccv2szn3hjicjld56nmd2d3")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/creack/pty")) + (home-page "https://github.com/creack/pty") + (synopsis "pty") + (description + "Package pty provides functions for working with Unix terminals.") + (license license:expat))) + +(define-public go-github-com-kr-text-0.2.0 + (package + (name "go-github-com-kr-text") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hf58ypz6rxsw6nx3i856whir9lvy4sdx946wbw1nfaf2rdmr9vx")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/text")) + (propagated-inputs + `(("go-github-com-creack-pty-1.1.9" ,go-github-com-creack-pty-1.1.9))) + (home-page "https://github.com/kr/text") + (synopsis #f) + (description + "Package text provides rudimentary functions for manipulating text in paragraphs.") + (license license:expat))) + +(define-public go-github-com-rogpeppe-go-internal-1.6.1 + (package + (name "go-github-com-rogpeppe-go-internal") + (version "1.6.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/rogpeppe/go-internal") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "00j2vpp1bsggdvw1winkz23mg0q6drjiir5q0k49pmqx1sh7106l")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/rogpeppe/go-internal")) + (propagated-inputs + `(("go-gopkg-in-errgo-v2-2.1.0" ,go-gopkg-in-errgo-v2-2.1.0))) + (home-page "https://github.com/rogpeppe/go-internal") + (synopsis #f) + (description + "This repository factors out an opinionated selection of internal packages and +functionality from the Go standard library. Currently this consists mostly of +packages and testing code from within the Go tool implementation.") + (license license:bsd-3))) + +(define-public go-github-com-kr-pretty-0.3.0 + (package + (name "go-github-com-kr-pretty") + (version "0.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/pretty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0vp5ijbapw8j52c3l992m1wm8nhl23n68xk3lqxhad3srxmdb9z4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/pretty")) + (propagated-inputs + `(("go-github-com-rogpeppe-go-internal-1.6.1" + ,go-github-com-rogpeppe-go-internal-1.6.1) + ("go-github-com-kr-text-0.2.0" ,go-github-com-kr-text-0.2.0))) + (home-page "https://github.com/kr/pretty") + (synopsis #f) + (description + "Package pretty provides pretty-printing for Go values. This is useful during +debugging, to avoid wrapping long output lines in the terminal.") + (license license:expat))) + +(define-public go-github-com-pkg-diff-0.0.0-20210226163009-20ebb0f2a09e + (package + (name "go-github-com-pkg-diff") + (version "0.0.0-20210226163009-20ebb0f2a09e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pkg/diff") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1g3dzgwhz4fx3ddpsv7fsa4r1v5clsp2lbw2qrkdk9y1vc5gi8yi")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pkg/diff")) + (home-page "https://github.com/pkg/diff") + (synopsis "diff") + (description + "Package diff contains high level routines that generate a textual diff.") + (license license:bsd-3))) + +(define-public go-github-com-kr-pty-1.1.1 + (package + (name "go-github-com-kr-pty") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/pty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0383f0mb9kqjvncqrfpidsf8y6ns5zlrc91c6a74xpyxjwvzl2y6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/pty")) + (home-page "https://github.com/kr/pty") + (synopsis "pty") + (description + "Package pty is a wrapper for github.com/creack/pty, which provides functions for +working with Unix terminals.") + (license license:expat))) + +(define-public go-github-com-kr-text-0.1.0 + (package + (name "go-github-com-kr-text") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1gm5bsl01apvc84bw06hasawyqm4q84vx1pm32wr9jnd7a8vjgj1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/text")) + (propagated-inputs + `(("go-github-com-kr-pty-1.1.1" ,go-github-com-kr-pty-1.1.1))) + (home-page "https://github.com/kr/text") + (synopsis #f) + (description + "Package text provides rudimentary functions for manipulating text in paragraphs.") + (license license:expat))) + +(define-public go-github-com-kr-pretty-0.1.0 + (package + (name "go-github-com-kr-pretty") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/pretty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18m4pwg2abd0j9cn5v3k2ksk9ig4vlwxmlw9rrglanziv9l967qp")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/pretty")) + (propagated-inputs + `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) + (home-page "https://github.com/kr/pretty") + (synopsis #f) + (description + "Package pretty provides pretty-printing for Go values. This is useful during +debugging, to avoid wrapping long output lines in the terminal.") + (license license:expat))) + +(define-public go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127 + (package + (name "go-gopkg-in-check-v1") + (version "1.0.0-20180628173108-788fd7840127") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/check.v1") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0v3bim0j375z81zrpr5qv42knqs0y2qv2vkjiqi5axvb78slki1a")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) + (home-page "https://gopkg.in/check.v1") + (synopsis "Instructions") + (description + "Package check is a rich testing extension for Go's testing package.") + (license license:bsd-2))) + +(define-public go-gopkg-in-errgo-v2-2.1.0 + (package + (name "go-gopkg-in-errgo-v2") + (version "2.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/errgo.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "065mbihiy7q67wnql0bzl9y1kkvck5ivra68254zbih52jxwrgr2")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/errgo.v2" #:unpack-path "gopkg.in/errgo.v2")) + (propagated-inputs + `(("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" + ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) + ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0))) + (home-page "https://gopkg.in/errgo.v2") + (synopsis #f) + (description + "Package errgo provides some primitives for error creation and handling.") + (license license:bsd-3))) + +(define-public go-github-com-rogpeppe-go-internal-1.8.1-0.20210923151022-86f73c517451 + (package + (name "go-github-com-rogpeppe-go-internal") + (version "1.8.1-0.20210923151022-86f73c517451") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/rogpeppe/go-internal") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1qswk3kaif0n8q125dvd8rfcyc3wqw71yi16fc26336kbwjzrc9p")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/rogpeppe/go-internal")) + (propagated-inputs + `(("go-gopkg-in-errgo-v2-2.1.0" ,go-gopkg-in-errgo-v2-2.1.0) + ("go-github-com-pkg-diff-0.0.0-20210226163009-20ebb0f2a09e" + ,go-github-com-pkg-diff-0.0.0-20210226163009-20ebb0f2a09e))) + (home-page "https://github.com/rogpeppe/go-internal") + (synopsis #f) + (description + "This repository factors out an opinionated selection of internal packages and +functionality from the Go standard library. Currently this consists mostly of +packages and testing code from within the Go tool implementation.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20210220032951-036812b2e83c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1gl202py3s4gl6arkaxlf8qa6f0jyyg2f95m6f89qnfmr416h85b")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the ones +provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20210925032602-92d5a993a665 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20210925032602-92d5a993a665") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ps9wq5vz0ilsjxd05glnkkmbfxzpsqvjp0mgm2y1hm6ql5qfpn5")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20210615035016-665e8c7367d1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "11n848csibdbv7b46zjyf4l7sphg37n9sjzqfy1ds7p1jyakwmnv")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-term-0.0.0-20210916214954-140adaaadfaf + (package + (name "go-golang-org-x-term") + (version "0.0.0-20210916214954-140adaaadfaf") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/term") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1rcdx2q92pzpmdyzdlzpq9flc3ibfi3m1rni7w4qlmlq569s6wh3")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/term")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1" + ,go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1))) + (home-page "https://golang.org/x/term") + (synopsis "Go terminal/console support") + (description + "Package term provides support functions for dealing with terminals, as commonly +found on UNIX systems.") + (license license:bsd-3))) + +(define-public go-mvdan-cc-editorconfig-0.2.0 + (package + (name "go-mvdan-cc-editorconfig") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mvdan/editorconfig") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1rav1rp8pi921gsffqr2wjdhbr12w81g31yv6iw4yb1zyh726qqg")))) + (build-system go-build-system) + (arguments '(#:import-path "mvdan.cc/editorconfig")) + (home-page "https://mvdan.cc/editorconfig") + (synopsis "editorconfig") + (description + "Package editorconfig allows parsing and using EditorConfig files, as defined in +@url{https://editorconfig.org/,https://editorconfig.org/}.") + (license license:bsd-3))) + (define-public go-mvdan-cc-sh-v3-3.4.3-0.20220202175809-113ed667a8a7 (package (name "go-mvdan-cc-sh-v3") @@ -1435,151 +13001,7 @@ common patterns.") Shell}, @url{https://www.gnu.org/software/bash/,Bash}, and @url{http://www.mirbsd.org/mksh.htm,mksh}. Requires Go 1.16 or later.") (license license:bsd-3))) -(define-public go-oras-land-oras-go-1.1.0 - (package - (name "go-oras-land-oras-go") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/oras-project/oras-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1mbn57dgpr7m2f7cw5r9s8kka44khrgqca84np6wnjiyzxgr1khk")))) - (build-system go-build-system) - (arguments '(#:import-path "oras.land/oras-go")) - (propagated-inputs - `(("go-gopkg-in-yaml-v3-3.0.0-20210107192922-496545a6307b" - ,go-gopkg-in-yaml-v3-3.0.0-20210107192922-496545a6307b) - ("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) - ("go-gopkg-in-check-v1-1.0.0-20200227125254-8fa46927fb4f" - ,go-gopkg-in-check-v1-1.0.0-20200227125254-8fa46927fb4f) - ("go-google-golang-org-protobuf-1.27.1" - ,go-google-golang-org-protobuf-1.27.1) - ("go-google-golang-org-grpc-1.43.0" ,go-google-golang-org-grpc-1.43.0) - ("go-google-golang-org-genproto-0.0.0-20220107163113-42d7afdf6368" - ,go-google-golang-org-genproto-0.0.0-20220107163113-42d7afdf6368) - ("go-golang-org-x-text-0.3.7" ,go-golang-org-x-text-0.3.7) - ("go-golang-org-x-sys-0.0.0-20211216021012-1d35b9e2eb4e" - ,go-golang-org-x-sys-0.0.0-20211216021012-1d35b9e2eb4e) - ("go-golang-org-x-net-0.0.0-20220107192237-5cfca573fb4d" - ,go-golang-org-x-net-0.0.0-20220107192237-5cfca573fb4d) - ("go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20140908184405-b21fdbd4370f" - ,go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20140908184405-b21fdbd4370f) - ("go-github-com-yvasiyarov-gorelic-0.0.0-20141212073537-a9bba5b9ab50" - ,go-github-com-yvasiyarov-gorelic-0.0.0-20141212073537-a9bba5b9ab50) - ("go-github-com-yvasiyarov-go-metrics-0.0.0-20140926110328-57bccd1ccd43" - ,go-github-com-yvasiyarov-go-metrics-0.0.0-20140926110328-57bccd1ccd43) - ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) - ("go-github-com-prometheus-procfs-0.6.0" - ,go-github-com-prometheus-procfs-0.6.0) - ("go-github-com-prometheus-common-0.10.0" - ,go-github-com-prometheus-common-0.10.0) - ("go-github-com-prometheus-client-model-0.2.0" - ,go-github-com-prometheus-client-model-0.2.0) - ("go-github-com-prometheus-client-golang-1.7.1" - ,go-github-com-prometheus-client-golang-1.7.1) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-niemeyer-pretty-0.0.0-20200227124842-a10e7caefd8e" - ,go-github-com-niemeyer-pretty-0.0.0-20200227124842-a10e7caefd8e) - ("go-github-com-morikuni-aec-1.0.0" ,go-github-com-morikuni-aec-1.0.0) - ("go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd" - ,go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd) - ("go-github-com-moby-sys-mountinfo-0.5.0" - ,go-github-com-moby-sys-mountinfo-0.5.0) - ("go-github-com-moby-locker-1.0.1" ,go-github-com-moby-locker-1.0.1) - ("go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369" - ,go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369) - ("go-github-com-kr-text-0.2.0" ,go-github-com-kr-text-0.2.0) - ("go-github-com-klauspost-compress-1.13.6" - ,go-github-com-klauspost-compress-1.13.6) - ("go-github-com-inconshreveable-mousetrap-1.0.0" - ,go-github-com-inconshreveable-mousetrap-1.0.0) - ("go-github-com-gorilla-mux-1.8.0" ,go-github-com-gorilla-mux-1.8.0) - ("go-github-com-gorilla-handlers-1.5.1" - ,go-github-com-gorilla-handlers-1.5.1) - ("go-github-com-google-go-cmp-0.5.6" - ,go-github-com-google-go-cmp-0.5.6) - ("go-github-com-gomodule-redigo-1.8.2" - ,go-github-com-gomodule-redigo-1.8.2) - ("go-github-com-golang-protobuf-1.5.2" - ,go-github-com-golang-protobuf-1.5.2) - ("go-github-com-golang-groupcache-0.0.0-20210331224755-41bb18bfe9da" - ,go-github-com-golang-groupcache-0.0.0-20210331224755-41bb18bfe9da) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2) - ("go-github-com-felixge-httpsnoop-1.0.1" - ,go-github-com-felixge-httpsnoop-1.0.1) - ("go-github-com-docker-libtrust-0.0.0-20150114040149-fa567046d9b1" - ,go-github-com-docker-libtrust-0.0.0-20150114040149-fa567046d9b1) - ("go-github-com-docker-go-units-0.4.0" - ,go-github-com-docker-go-units-0.4.0) - ("go-github-com-docker-go-metrics-0.0.1" - ,go-github-com-docker-go-metrics-0.0.1) - ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" - ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) - ("go-github-com-docker-go-connections-0.4.0" - ,go-github-com-docker-go-connections-0.4.0) - ("go-github-com-docker-docker-credential-helpers-0.6.4" - ,go-github-com-docker-docker-credential-helpers-0.6.4) - ("go-github-com-docker-distribution-2.7.1+incompatible" - ,go-github-com-docker-distribution-2.7.1+incompatible) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1) - ("go-github-com-containerd-cgroups-1.0.2" - ,go-github-com-containerd-cgroups-1.0.2) - ("go-github-com-cespare-xxhash-v2-2.1.1" - ,go-github-com-cespare-xxhash-v2-2.1.1) - ("go-github-com-bugsnag-panicwrap-0.0.0-20151223152923-e2c28503fcd0" - ,go-github-com-bugsnag-panicwrap-0.0.0-20151223152923-e2c28503fcd0) - ("go-github-com-bugsnag-osext-0.0.0-20130617224835-0dd3f918b21b" - ,go-github-com-bugsnag-osext-0.0.0-20130617224835-0dd3f918b21b) - ("go-github-com-bugsnag-bugsnag-go-0.0.0-20141110184014-b1d153021fcd" - ,go-github-com-bugsnag-bugsnag-go-0.0.0-20141110184014-b1d153021fcd) - ("go-github-com-bshuster-repo-logrus-logstash-hook-1.0.0" - ,go-github-com-bshuster-repo-logrus-logstash-hook-1.0.0) - ("go-github-com-beorn7-perks-1.0.1" ,go-github-com-beorn7-perks-1.0.1) - ("go-github-com-shopify-logrus-bugsnag-0.0.0-20171204204709-577dee27f20d" - ,go-github-com-shopify-logrus-bugsnag-0.0.0-20171204204709-577dee27f20d) - ("go-github-com-microsoft-hcsshim-0.9.1" - ,go-github-com-microsoft-hcsshim-0.9.1) - ("go-github-com-microsoft-go-winio-0.5.1" - ,go-github-com-microsoft-go-winio-0.5.1) - ("go-github-com-azure-go-ansiterm-0.0.0-20170929234023-d6e3b3328b78" - ,go-github-com-azure-go-ansiterm-0.0.0-20170929234023-d6e3b3328b78) - ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" - ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) - ("go-golang-org-x-crypto-0.0.0-20211117183948-ae814b36b871" - ,go-golang-org-x-crypto-0.0.0-20211117183948-ae814b36b871) - ("go-github-com-stretchr-testify-1.7.0" - ,go-github-com-stretchr-testify-1.7.0) - ("go-github-com-spf13-cobra-1.2.1" ,go-github-com-spf13-cobra-1.2.1) - ("go-github-com-sirupsen-logrus-1.8.1" - ,go-github-com-sirupsen-logrus-1.8.1) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-phayes-freeport-0.0.0-20180830031419-95f893ade6f2" - ,go-github-com-phayes-freeport-0.0.0-20180830031419-95f893ade6f2) - ("go-github-com-opencontainers-image-spec-1.0.2" - ,go-github-com-opencontainers-image-spec-1.0.2) - ("go-github-com-opencontainers-go-digest-1.0.0" - ,go-github-com-opencontainers-go-digest-1.0.0) - ("go-github-com-docker-docker-20.10.11+incompatible" - ,go-github-com-docker-docker-20.10.11+incompatible) - ("go-github-com-docker-cli-20.10.11+incompatible" - ,go-github-com-docker-cli-20.10.11+incompatible) - ("go-github-com-distribution-distribution-v3-3.0.0-20211118083504-a29a3c99a684" - ,go-github-com-distribution-distribution-v3-3.0.0-20211118083504-a29a3c99a684) - ("go-github-com-containerd-containerd-1.5.9" - ,go-github-com-containerd-containerd-1.5.9))) - (home-page "https://oras.land/oras-go") - (synopsis "ORAS Go library") - (description - "Documentation for the ORAS Go library is located on the project website: -@url{https://oras.land/client_libraries/go/,oras.land/client_libraries/go}") - (license license:asl2.0))) + (define-public go-github-com-opencontainers-image-spec-1.0.2-0.20211117181255-693428a734f5 (package (name "go-github-com-opencontainers-image-spec") @@ -1602,91 +13024,6 @@ Shell}, @url{https://www.gnu.org/software/bash/,Bash}, and container image format spec (OCI Image Format).") (license license:asl2.0))) -(define-public go-github-com-moby-sys - (package - (name "go-github-com-moby-sys") - (version "0.0.0-20220308220145-03355939d693") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/moby/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ns4bav4n0k93nwz898dmcrz9zm4fa08sxyzhi7wqj4f8mpz4fam")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/moby/sys")) - (home-page "https://github.com/moby/sys") - (synopsis #f) - (description #f) - (license license:asl2.0))) -(define-public go-github-com-urfave-cli-1.22.5 - (package - (name "go-github-com-urfave-cli") - (version "1.22.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/urfave/cli") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1n8lk58j7bdsp47yh5bcpsw38lhkbyzcy3203ffkawc2rvkf1pp7")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/urfave/cli")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) - ("go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d" - ,go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d) - ("go-github-com-burntsushi-toml-0.3.1" - ,go-github-com-burntsushi-toml-0.3.1))) - (home-page "https://github.com/urfave/cli") - (synopsis "cli") - (description - "Package cli provides a minimal framework for creating and organizing command -line Go applications. cli is designed to be easy to understand and write, the -most simple cli application can be written as follows:") - (license license:expat))) -(define-public go-github-com-xeipuuv-gojsonpointer-0.0.0-20190905194746-02993c407bfb - (package - (name "go-github-com-xeipuuv-gojsonpointer") - (version "0.0.0-20190905194746-02993c407bfb") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/xeipuuv/gojsonpointer") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0y7gmpgsm8c12ax4a0ij9srmd9d424iq224n172ckwfqf37amvzy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/xeipuuv/gojsonpointer")) - (home-page "https://github.com/xeipuuv/gojsonpointer") - (synopsis "gojsonpointer") - (description "An implementation of JSON Pointer - Go language") - (license license:asl2.0))) -(define-public go-github-com-yvasiyarov-go-metrics-0.0.0-20150112132944-c25f46c4b940 - (package - (name "go-github-com-yvasiyarov-go-metrics") - (version "0.0.0-20150112132944-c25f46c4b940") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/yvasiyarov/go-metrics") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0p1hx4ml4gzgyj8n0fg5lv8bq092zwg00n59lq8v8sphjc1h8i8d")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/yvasiyarov/go-metrics")) - (home-page "https://github.com/yvasiyarov/go-metrics") - (synopsis "go-metrics") - (description "Go port of Coda Hale's Metrics library") - (license license:expat))) (define-public go-github-com-yvasiyarov-gorelic-0.0.6 (package (name "go-github-com-yvasiyarov-gorelic") @@ -1709,23 +13046,24 @@ most simple cli application can be written as follows:") a lot of metrics about Go scheduler, garbage collector and memory allocator and send them to NewRelic.") (license license:bsd-2))) -(define-public go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20160601141957-9c099fbc30e9 + +(define-public go-github-com-moby-sys-0.0.0-20220308220145-03355939d693 (package - (name "go-github-com-yvasiyarov-newrelic-platform-go") - (version "0.0.0-20160601141957-9c099fbc30e9") + (name "go-github-com-moby-sys") + (version "0.0.0-20220308220145-03355939d693") (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/yvasiyarov/newrelic_platform_go") + (url "https://github.com/moby/sys") (commit (go-version->git-ref version)))) (file-name (git-file-name name version)) (sha256 - (base32 "0n6jap27qc7b7c37ck1gv9biq5nfl7y06jk0cqgc517yfnb4f07x")))) + (base32 "1ns4bav4n0k93nwz898dmcrz9zm4fa08sxyzhi7wqj4f8mpz4fam")))) (build-system go-build-system) - (arguments '(#:import-path "github.com/yvasiyarov/newrelic_platform_go")) - (home-page "https://github.com/yvasiyarov/newrelic_platform_go") - (synopsis "New Relic Platform Agent SDK for Go(golang)") - (description - "Package newrelic_platform_go is New Relic Platform Agent SDK for Go language.") - (license license:bsd-2))) + (arguments '(#:import-path "github.com/moby/sys")) + (home-page "https://github.com/moby/sys") + (synopsis #f) + (description #f) + (license license:asl2.0))) + From 96542c279a7c65f26fe92b48daf1f36e4b9a65f1 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Thu, 24 Mar 2022 13:56:30 +0100 Subject: [PATCH 277/383] adding apptainer 1.0.1 --- glicid/packages/golang.scm | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index 5fa374a..27203b3 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -139,7 +139,7 @@ make unified and context diff available in pure Go, mostly for testing purposes. (home-page "https://gopkg.in/yaml.v3") (synopsis "YAML support for the Go language") (description "Package yaml implements YAML support for the Go language.") - (license unknown-license!))) + (license license:expat))) (define-public go-github-com-stretchr-testify-1.6.1 (package @@ -1276,7 +1276,7 @@ through a JMESPath expression.") (description "Package rgbterm colorizes bytes and strings using RGB colors, for a full range of pretty terminal strings.") - (license unknown-license!))) + (license license:expat))) (define-public go-github-com-fatih-color-1.7.0 (package @@ -1779,7 +1779,7 @@ make unified and context diff available in pure Go, mostly for testing purposes. (home-page "https://gopkg.in/yaml.v3") (synopsis "YAML support for the Go language") (description "Package yaml implements YAML support for the Go language.") - (license unknown-license!))) + (license license:expat))) (define-public go-github-com-stretchr-testify-1.6.1 (package @@ -1836,7 +1836,7 @@ your code will behave as you intend.") (home-page "https://gopkg.in/yaml.v3") (synopsis "YAML support for the Go language") (description "Package yaml implements YAML support for the Go language.") - (license unknown-license!))) + (license license:expat))) (define-public go-github-com-tj-assert-0.0.3 (package @@ -2510,7 +2510,7 @@ make unified and context diff available in pure Go, mostly for testing purposes. (home-page "https://gopkg.in/yaml.v3") (synopsis "YAML support for the Go language") (description "Package yaml implements YAML support for the Go language.") - (license unknown-license!))) + (license license:expat))) (define-public go-github-com-apptainer-container-library-client-1.2.2 (package @@ -3695,7 +3695,7 @@ make unified and context diff available in pure Go, mostly for testing purposes. (home-page "https://gopkg.in/yaml.v3") (synopsis "YAML support for the Go language") (description "Package yaml implements YAML support for the Go language.") - (license unknown-license!))) + (license license:expat))) (define-public go-github-com-stretchr-testify-1.7.0 (package @@ -6861,7 +6861,7 @@ through a JMESPath expression.") (description "Package rgbterm colorizes bytes and strings using RGB colors, for a full range of pretty terminal strings.") - (license unknown-license!))) + (license license:expat))) (define-public go-github-com-fatih-color-1.7.0 (package @@ -7621,7 +7621,7 @@ equal.") (home-page "https://github.com/klauspost/compress") (synopsis "compress") (description "This package provides various compression algorithms.") - (license unknown-license!))) + (license license:expat))) (define-public go-github-com-klauspost-pgzip-1.2.4 (package @@ -8155,7 +8155,7 @@ be used in open source or commercial projects.") (home-page "https://gopkg.in/yaml.v3") (synopsis "YAML support for the Go language") (description "Package yaml implements YAML support for the Go language.") - (license unknown-license!))) + (license license:expat))) (define-public go-github-com-stretchr-testify-1.6.1 (package @@ -8212,7 +8212,7 @@ your code will behave as you intend.") (home-page "https://gopkg.in/yaml.v3") (synopsis "YAML support for the Go language") (description "Package yaml implements YAML support for the Go language.") - (license unknown-license!))) + (license license:expat))) (define-public go-github-com-tj-assert-0.0.3 (package @@ -10528,7 +10528,7 @@ buffer developer guide} for more information about protocol buffers themselves." (home-page "https://gopkg.in/yaml.v3") (synopsis "YAML support for the Go language") (description "Package yaml implements YAML support for the Go language.") - (license unknown-license!))) + (license license:expat))) (define-public go-github-com-opencontainers-umoci-0.4.7 (package @@ -10624,7 +10624,7 @@ buffer developer guide} for more information about protocol buffers themselves." (home-page "https://github.com/pelletier/go-toml") (synopsis "go-toml") (description "Package toml is a TOML parser and manipulation library.") - (license unknown-license!))) + (license license:expat))) (define-public go-github-com-pkg-errors-0.9.1 (package @@ -11682,7 +11682,7 @@ the operating system.") (home-page "https://github.com/yvasiyarov/go-metrics") (synopsis "go-metrics") (description "Go port of Coda Hale's Metrics library") - (license unknown-license!))) + (license license:expat))) (define-public go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20160601141957-9c099fbc30e9 (package From b49b012a920510096546df6e1af21bf918e764ab Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Thu, 24 Mar 2022 14:12:54 +0100 Subject: [PATCH 278/383] adding apptainer 1.0.1 --- glicid/packages/golang.scm | 68 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index 27203b3..a878379 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -13066,3 +13066,71 @@ send them to NewRelic.") (synopsis #f) (description #f) (license license:asl2.0))) +(define-public go-github-com-apptainer-sif-v2-2.3.2 + (package + (name "go-github-com-apptainer-sif-v2") + (version "2.3.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/apptainer/sif") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "10cmvgyjxnfgw5661n1zbdr8zs29rx9izsr1bbnnyjr9kdqdhfg1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/apptainer/sif/v2")) + (propagated-inputs + `(("go-gopkg-in-warnings-v0-0.1.2" ,go-gopkg-in-warnings-v0-0.1.2) + ("go-golang-org-x-sys-0.0.0-20211205182925-97ca703d548d" + ,go-golang-org-x-sys-0.0.0-20211205182925-97ca703d548d) + ("go-golang-org-x-net-0.0.0-20210813160813-60bc85c4be6d" + ,go-golang-org-x-net-0.0.0-20210813160813-60bc85c4be6d) + ("go-golang-org-x-crypto-0.0.0-20210817164053-32db794688a5" + ,go-golang-org-x-crypto-0.0.0-20210817164053-32db794688a5) + ("go-github-com-xanzy-ssh-agent-0.3.0" + ,go-github-com-xanzy-ssh-agent-0.3.0) + ("go-github-com-sergi-go-diff-1.1.0" + ,go-github-com-sergi-go-diff-1.1.0) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-mitchellh-go-homedir-1.1.0" + ,go-github-com-mitchellh-go-homedir-1.1.0) + ("go-github-com-kevinburke-ssh-config-0.0.0-20201106050909-4977a11b4351" + ,go-github-com-kevinburke-ssh-config-0.0.0-20201106050909-4977a11b4351) + ("go-github-com-jbenet-go-context-0.0.0-20150711004518-d14ea06fba99" + ,go-github-com-jbenet-go-context-0.0.0-20150711004518-d14ea06fba99) + ("go-github-com-inconshreveable-mousetrap-1.0.0" + ,go-github-com-inconshreveable-mousetrap-1.0.0) + ("go-github-com-imdario-mergo-0.3.12" + ,go-github-com-imdario-mergo-0.3.12) + ("go-github-com-go-git-go-billy-v5-5.3.1" + ,go-github-com-go-git-go-billy-v5-5.3.1) + ("go-github-com-go-git-gcfg-1.5.0" ,go-github-com-go-git-gcfg-1.5.0) + ("go-github-com-emirpasic-gods-1.12.0" + ,go-github-com-emirpasic-gods-1.12.0) + ("go-github-com-acomagu-bufpipe-1.0.3" + ,go-github-com-acomagu-bufpipe-1.0.3) + ("go-github-com-microsoft-go-winio-0.4.16" + ,go-github-com-microsoft-go-winio-0.4.16) + ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) + ("go-github-com-spf13-cobra-1.3.0" ,go-github-com-spf13-cobra-1.3.0) + ("go-github-com-sebdah-goldie-v2-2.5.3" + ,go-github-com-sebdah-goldie-v2-2.5.3) + ("go-github-com-magefile-mage-1.12.1" + ,go-github-com-magefile-mage-1.12.1) + ("go-github-com-google-uuid-1.3.0" ,go-github-com-google-uuid-1.3.0) + ("go-github-com-go-git-go-git-v5-5.4.2" + ,go-github-com-go-git-go-git-v5-5.4.2) + ("go-github-com-blang-semver-v4-4.0.0" + ,go-github-com-blang-semver-v4-4.0.0) + ("go-github-com-protonmail-go-crypto-0.0.0-20220113124808-70ae35bab23f" + ,go-github-com-protonmail-go-crypto-0.0.0-20220113124808-70ae35bab23f))) + (home-page "https://github.com/apptainer/sif") + (synopsis "The Singularity Image Format (SIF)") + (description + "This module contains an open source implementation of the Singularity Image +Format (SIF) that makes it easy to create complete and encapsulated container +environments stored in a single file.") + (license license:bsd-3))) From 23c1927739cc407d0a066021896db2ceca0138ce Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 25 Mar 2022 08:45:07 +0100 Subject: [PATCH 279/383] adding apptainer 1.0.1 --- glicid/packages/golang.scm | 26256 +++++++++++++++++------------------ glicid/packages/linux.scm | 22 +- 2 files changed, 13142 insertions(+), 13136 deletions(-) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index a878379..1ebb21a 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -6,13131 +6,13131 @@ #:use-module (guix packages) ) -(define-public go-github-com-creack-pty-1.1.17 - (package - (name "go-github-com-creack-pty") - (version "1.1.17") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/creack/pty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "09lcq5bw1dwppxjia05sj4fy7gbk62vishfz1bgrbd1r06i57mjf")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/creack/pty")) - (home-page "https://github.com/creack/pty") - (synopsis "pty") - (description - "Package pty provides functions for working with Unix terminals.") - (license license:expat))) - -(define-public go-github-com-davecgh-go-spew-1.1.0 - (package - (name "go-github-com-davecgh-go-spew") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/davecgh/go-spew") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/davecgh/go-spew")) - (home-page "https://github.com/davecgh/go-spew") - (synopsis "go-spew") - (description - "Go-spew implements a deep pretty printer for Go data structures to aid in -debugging. A comprehensive suite of tests with 100% test coverage is provided -to ensure proper functionality. See @code{test_coverage.txt} for the gocov -coverage report. Go-spew is licensed under the liberal ISC license, so it may -be used in open source or commercial projects.") - (license license:isc))) - -(define-public go-github-com-pmezard-go-difflib-1.0.0 - (package - (name "go-github-com-pmezard-go-difflib") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pmezard/go-difflib") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pmezard/go-difflib")) - (home-page "https://github.com/pmezard/go-difflib") - (synopsis "go-difflib") - (description - "Go-difflib is a partial port of python 3 difflib package. Its main goal was to -make unified and context diff available in pure Go, mostly for testing purposes.") - (license license:bsd-3))) - -(define-public go-github-com-stretchr-objx-0.1.0 - (package - (name "go-github-com-stretchr-objx") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/objx") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/objx")) - (home-page "https://github.com/stretchr/objx") - (synopsis "Objx") - (description - "Objx - Go package for dealing with maps, slices, JSON and other data.") - (license license:expat))) - -(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 - (package - (name "go-gopkg-in-check-v1") - (version "0.0.0-20161208181325-20d25e280405") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/check.v1") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) - (home-page "https://gopkg.in/check.v1") - (synopsis "Instructions") - (description - "Package check is a rich testing extension for Go's testing package.") - (license license:bsd-2))) - -(define-public go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c - (package - (name "go-gopkg-in-yaml-v3") - (version "3.0.0-20200313102051-9f266ea9e77c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v3") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1bbai3lzb50m0x2vwsdbagrbhvfylj9k1m32hgbqwldqx4p9ay35")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v3") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language.") - (license license:expat))) - -(define-public go-github-com-stretchr-testify-1.6.1 - (package - (name "go-github-com-stretchr-testify") - (version "1.6.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/testify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1yhiqqzjvi63pf01rgzx68gqkkvjx03fvl5wk30br5l6s81s090l")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/testify")) - (propagated-inputs - `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" - ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) - ("go-github-com-stretchr-objx-0.1.0" - ,go-github-com-stretchr-objx-0.1.0) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.0" - ,go-github-com-davecgh-go-spew-1.1.0))) - (home-page "https://github.com/stretchr/testify") - (synopsis "Testify - Thou Shalt Write Tests") - (description - "** We are working on testify v2 and would love to hear what you'd like to see in -it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -Package testify is a set of packages that provide many tools for testifying that -your code will behave as you intend.") - (license license:expat))) - -(define-public go-github-com-netflix-go-expect-0.0.0-20220104043353-73e0943537d2 - (package - (name "go-github-com-netflix-go-expect") - (version "0.0.0-20220104043353-73e0943537d2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/Netflix/go-expect") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0zkvhnc4ii6ygvcsj54ng0kql26rnny7l3hy1w61g88mxjsww1b9")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/Netflix/go-expect")) - (propagated-inputs - `(("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-creack-pty-1.1.17" ,go-github-com-creack-pty-1.1.17))) - (home-page "https://github.com/Netflix/go-expect") - (synopsis "go-expect") - (description - "Package expect provides an expect-like interface to automate control of -applications. It is unlike expect in that it does not spawn or manage process -lifecycle. This package only focuses on expecting output and sending input -through it's psuedoterminal.") - (license license:asl2.0))) - -(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20180917221912-90fa682c2a6e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-golang-org-x-text-0.3.3 - (package - (name "go-golang-org-x-text") - (version "0.3.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19pihqm3phyndmiw6i42pdv6z1rbvlqlsnhsyqf9gsnn0qnmqqlh")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/text")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" - ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) - (home-page "https://golang.org/x/text") - (synopsis "Go Text") - (description - "text is a repository of text-related packages related to internationalization -(i18n) and localization (l10n), such as character encodings, text -transformations, and locale-specific text handling.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20210226172049-e18ecbb05110") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1vlq8mdscp7yfaa1lmyv03y5m4c2d67ydg2q1i6smkrxghn3zn3q")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) - ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" - ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) - ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" - ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20201119102817-f84b799fce68") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1dvhqian5byzkcg1bnqzygqa6ccc6krc2q7j12pp1vhl3y7znnsg")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1 - (package - (name "go-golang-org-x-term") - (version "0.0.0-20201126162022-7de9c90e9dd1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/term") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ba252xmv6qsvf1w1gcy98mngrj0vd4inbjw0lsklqvva65nljna")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/term")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" - ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) - (home-page "https://golang.org/x/term") - (synopsis "Go terminal/console support") - (description - "Package term provides support functions for dealing with terminals, as commonly -found on UNIX systems.") - (license license:bsd-3))) - -(define-public go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20210322153248-0c34fe9e7dc2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "021szs1czc0xg4chpays7i05dvkax9s8mns314ab01r887kchqxq")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" - ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) - ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" - ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68) - ("go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110" - ,go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-github-com-protonmail-go-crypto-0.0.0-20220113124808-70ae35bab23f - (package - (name "go-github-com-protonmail-go-crypto") - (version "0.0.0-20220113124808-70ae35bab23f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/ProtonMail/go-crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0dpalb7cd2xs0hji80zv378vf8gx4ph7b8xdd05kvbskyw67fb7n")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/ProtonMail/go-crypto")) - (propagated-inputs - `(("go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2" - ,go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2))) - (home-page "https://github.com/ProtonMail/go-crypto") - (synopsis #f) - (description - "This module is backwards compatible with x/crypto/openpgp, so you can simply -replace all imports of @code{golang.org/x/crypto/openpgp} with -@code{github.com/ProtonMail/go-crypto/openpgp}.") - (license license:bsd-3))) - -(define-public go-github-com-docker-distribution-2.7.1+incompatible - (package - (name "go-github-com-docker-distribution") - (version "2.7.1+incompatible") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/distribution/distribution") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1nx8b5a68rn81alp8wkkw6qd5v32mgf0fk23mxm60zdf63qk1nzw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/docker/distribution")) - (home-page "https://github.com/docker/distribution") - (synopsis "Distribution") - (description - "Package distribution will define the interfaces for the components of docker -distribution. The goal is to allow users to reliably package, ship and store -content related to docker images.") - (license license:asl2.0))) - -(define-public go-github-com-docker-libtrust-0.0.0-20160708172513-aabc10ec26b7 - (package - (name "go-github-com-docker-libtrust") - (version "0.0.0-20160708172513-aabc10ec26b7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/docker/libtrust") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1lwslbggzc2b0c4wxl5pn6i2nfgz5jz8f7s7vnid9mrlsk59h7s1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/docker/libtrust")) - (home-page "https://github.com/docker/libtrust") - (synopsis "libtrust") - (description - "Package libtrust provides an interface for managing authentication and -authorization using public key cryptography. Authentication is handled using -the identity attached to the public key and verified through TLS x509 -certificates, a key challenge, or signature. Authorization and access control -is managed through a trust graph distributed between both remote trust servers -and locally cached and managed data.") - (license license:asl2.0))) - -(define-public go-github-com-gorilla-mux-1.7.4 - (package - (name "go-github-com-gorilla-mux") - (version "1.7.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gorilla/mux") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1d0sy1paa055ic84sp3766s9pa24q008hf77dc842vrgvn8p3wmh")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/gorilla/mux")) - (home-page "https://github.com/gorilla/mux") - (synopsis "gorilla/mux") - (description "Package mux implements a request router and dispatcher.") - (license license:bsd-3))) - -(define-public go-github-com-davecgh-go-spew-1.1.1 - (package - (name "go-github-com-davecgh-go-spew") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/davecgh/go-spew") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/davecgh/go-spew")) - (home-page "https://github.com/davecgh/go-spew") - (synopsis "go-spew") - (description - "Go-spew implements a deep pretty printer for Go data structures to aid in -debugging. A comprehensive suite of tests with 100% test coverage is provided -to ensure proper functionality. See @code{test_coverage.txt} for the gocov -coverage report. Go-spew is licensed under the liberal ISC license, so it may -be used in open source or commercial projects.") - (license license:isc))) - -(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.1 - (package - (name "go-github-com-konsorten-go-windows-terminal-sequences") - (version "1.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/konsorten/go-windows-terminal-sequences") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1lchgf27n276vma6iyxa0v1xds68n2g8lih5lavqnx5x6q5pw2ip")))) - (build-system go-build-system) - (arguments - '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) - (home-page "https://github.com/konsorten/go-windows-terminal-sequences") - (synopsis "Windows Terminal Sequences") - (description - "This library allow for enabling Windows terminal color support for Go.") - (license license:expat))) - -(define-public go-github-com-pmezard-go-difflib-1.0.0 - (package - (name "go-github-com-pmezard-go-difflib") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pmezard/go-difflib") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pmezard/go-difflib")) - (home-page "https://github.com/pmezard/go-difflib") - (synopsis "go-difflib") - (description - "Go-difflib is a partial port of python 3 difflib package. Its main goal was to -make unified and context diff available in pure Go, mostly for testing purposes.") - (license license:bsd-3))) - -(define-public go-github-com-stretchr-objx-0.1.1 - (package - (name "go-github-com-stretchr-objx") - (version "0.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/objx") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0iph0qmpyqg4kwv8jsx6a56a7hhqq8swrazv40ycxk9rzr0s8yls")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/objx")) - (home-page "https://github.com/stretchr/objx") - (synopsis "Objx") - (description - "Objx - Go package for dealing with maps, slices, JSON and other data.") - (license license:expat))) - -(define-public go-github-com-stretchr-testify-1.2.2 - (package - (name "go-github-com-stretchr-testify") - (version "1.2.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/testify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0dlszlshlxbmmfxj5hlwgv3r22x0y1af45gn1vd198nvvs3pnvfs")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/testify")) - (home-page "https://github.com/stretchr/testify") - (synopsis "Testify - Thou Shalt Write Tests") - (description - "** We are working on testify v2 and would love to hear what you'd like to see in -it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -Package testify is a set of packages that provide many tools for testifying that -your code will behave as you intend.") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190422165155-953cdadca894") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0gkha4whk8xkcv3isigbs250akag99isxnd3v9xmy0kl3g88hxy1")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-sirupsen-logrus-1.4.2 - (package - (name "go-github-com-sirupsen-logrus") - (version "1.4.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sirupsen/logrus") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "087k2lxrr9p9dh68yw71d05h5g9p5v26zbwd6j7lghinjfaw334x")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/sirupsen/logrus")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894" - ,go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894) - ("go-github-com-stretchr-testify-1.2.2" - ,go-github-com-stretchr-testify-1.2.2) - ("go-github-com-stretchr-objx-0.1.1" - ,go-github-com-stretchr-objx-0.1.1) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.1" - ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.1) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/sirupsen/logrus") - (synopsis "Logrus") - (description - "Package logrus is a structured logger for Go, completely API compatible with the -standard library logger.") - (license license:expat))) - -(define-public go-github-com-adigunhammedolalekan-registry-auth-0.0.0-20200730122110-8cde180a3a60 - (package - (name "go-github-com-adigunhammedolalekan-registry-auth") - (version "0.0.0-20200730122110-8cde180a3a60") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/adigunhammedolalekan/registry-auth") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0855a5c0ifi6q2ghb6gax0kwwra5j7pd2lplq4wp8r83dnv4vwj0")))) - (build-system go-build-system) - (arguments - '(#:import-path "github.com/adigunhammedolalekan/registry-auth")) - (propagated-inputs - `(("go-github-com-sirupsen-logrus-1.4.2" - ,go-github-com-sirupsen-logrus-1.4.2) - ("go-github-com-gorilla-mux-1.7.4" ,go-github-com-gorilla-mux-1.7.4) - ("go-github-com-docker-libtrust-0.0.0-20160708172513-aabc10ec26b7" - ,go-github-com-docker-libtrust-0.0.0-20160708172513-aabc10ec26b7) - ("go-github-com-docker-distribution-2.7.1+incompatible" - ,go-github-com-docker-distribution-2.7.1+incompatible))) - (home-page "https://github.com/adigunhammedolalekan/registry-auth") - (synopsis "registry-auth") - (description - "a package to implements docker registry token authentication server as described -here -[https://github.com/docker/distribution/blob/1b9ab303a477ded9bdd3fc97e9119fa8f9e58fca/docs/spec/auth/index.md]") - (license license:expat))) - -(define-public go-github-com-stretchr-testify-1.3.0 - (package - (name "go-github-com-stretchr-testify") - (version "1.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/testify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0wjchp2c8xbgcbbq32w3kvblk6q6yn533g78nxl6iskq6y95lxsy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/testify")) - (propagated-inputs - `(("go-github-com-stretchr-objx-0.1.0" - ,go-github-com-stretchr-objx-0.1.0) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.0" - ,go-github-com-davecgh-go-spew-1.1.0))) - (home-page "https://github.com/stretchr/testify") - (synopsis "Testify - Thou Shalt Write Tests") - (description - "** We are working on testify v2 and would love to hear what you'd like to see in -it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -Package testify is a set of packages that provide many tools for testifying that -your code will behave as you intend.") - (license license:expat))) - -(define-public go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0 - (package - (name "go-github-com-tj-assert") - (version "0.0.0-20171129193455-018094318fb0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/tj/assert") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "15ika7izp5hkd10dm30apwfvpm0d1yl2rnxs6896q0svz9zvi2z3")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/tj/assert")) - (home-page "https://github.com/tj/assert") - (synopsis "assert") - (description - "Package assert implements the same assertions as the `assert` package but stops -test execution when a test fails.") - (license license:expat))) - -(define-public go-github-com-apex-logs-1.0.0 - (package - (name "go-github-com-apex-logs") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/apex/logs") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1kysjp3s8718p02ngpr60gnjjspv0a69biksfjqa1540svrbi850")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/apex/logs")) - (propagated-inputs - `(("go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0" - ,go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0) - ("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0))) - (home-page "https://github.com/apex/logs") - (synopsis "Example") - (description "Go client for @url{https://apex.sh/logs/,Apex Logs}.") - (license license:expat))) - -(define-public go-github-com-aphistic-golf-0.0.0-20180712155816-02c07f170c5a - (package - (name "go-github-com-aphistic-golf") - (version "0.0.0-20180712155816-02c07f170c5a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/aphistic/golf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1qixab9bb29wqbr4nc5j3g25hq1j7am93f181rkj7a4qacncx763")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/aphistic/golf")) - (home-page "https://github.com/aphistic/golf") - (synopsis "golf") - (description - "This package provides logging capabilities using the GELF -(@url{https://www.graylog.org/resources/gelf-2/,https://www.graylog.org/resources/gelf-2/}) -log format") - (license license:expat))) - -(define-public go-github-com-mattn-go-isatty-0.0.5 - (package - (name "go-github-com-mattn-go-isatty") - (version "0.0.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mattn/go-isatty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "114d5xm8rfxplzd7nxz97gfngb4bhqy102szl084d1afcxsvm4aa")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mattn/go-isatty")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223" - ,go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223))) - (home-page "https://github.com/mattn/go-isatty") - (synopsis "go-isatty") - (description "Package isatty implements interface to isatty") - (license license:expat))) - -(define-public go-github-com-mattn-go-colorable-0.1.1 - (package - (name "go-github-com-mattn-go-colorable") - (version "0.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mattn/go-colorable") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0l640974j804c1yyjfgyxqlsivz0yrzmbql4mhcw2azryigkp08p")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mattn/go-colorable")) - (propagated-inputs - `(("go-github-com-mattn-go-isatty-0.0.5" - ,go-github-com-mattn-go-isatty-0.0.5))) - (home-page "https://github.com/mattn/go-colorable") - (synopsis "go-colorable") - (description "Colorable writer for windows.") - (license license:expat))) - -(define-public go-github-com-mgutz-ansi-0.0.0-20170206155736-9520e82c474b - (package - (name "go-github-com-mgutz-ansi") - (version "0.0.0-20170206155736-9520e82c474b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mgutz/ansi") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "00bz22314j26736w1f0q4jy9d9dfaml17vn890n5zqy3cmvmww1j")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mgutz/ansi")) - (home-page "https://github.com/mgutz/ansi") - (synopsis "ansi") - (description - "Package ansi is a small, fast library to create ANSI colored strings and codes.") - (license license:expat))) - -(define-public go-github-com-fsnotify-fsnotify-1.4.7 - (package - (name "go-github-com-fsnotify-fsnotify") - (version "1.4.7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/fsnotify/fsnotify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/fsnotify/fsnotify")) - (home-page "https://github.com/fsnotify/fsnotify") - (synopsis "File system notifications for Go") - (description - "Package fsnotify provides a platform-independent interface for file system -notifications.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.2.0 - (package - (name "go-github-com-golang-protobuf") - (version "1.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0kf4b59rcbb1cchfny2dm9jyznp8ri2hsb14n8iak1q8986xa0ab")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code -github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-github-com-hpcloud-tail-1.0.0 - (package - (name "go-github-com-hpcloud-tail") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hpcloud/tail") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1njpzc0pi1acg5zx9y6vj9xi6ksbsc5d387rd6904hy6rh2m6kn0")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hpcloud/tail")) - (home-page "https://github.com/hpcloud/tail") - (synopsis "Go package for tail-ing files") - (description - "This package provides a Go package striving to emulate the features of the BSD -@code{tail} program.") - (license license:expat))) - -(define-public go-github-com-onsi-ginkgo-1.6.0 - (package - (name "go-github-com-onsi-ginkgo") - (version "1.6.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/onsi/ginkgo") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0x0gc89vgq38xhgmi2h22bhr73cf2gmk42g89nz89k8dgg9hhr25")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/onsi/ginkgo")) - (home-page "https://github.com/onsi/ginkgo") - (synopsis "Ginkgo 2.0 Release Candidate is available!") - (description "Ginkgo is a BDD-style testing framework for Golang") - (license license:expat))) - -(define-public go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd - (package - (name "go-golang-org-x-net") - (version "0.0.0-20180906233101-161cd47e91fd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0254ld010iijygbzykib2vags1dc0wlmcmhgh4jl8iny159lhbcv")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20180314180146-1d60e4601c6f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "046jlanz2lkxq1r57x9bl6s4cvfqaic6p2xybsj8mq1120jv4rs6")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the ones -provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20180909124046-d0be0721c37e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "081wyvfnlf842dqg03raxfz6lldlxpmyh1prix9lmrrm65arxb12")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-gopkg-in-fsnotify-v1-1.4.7 - (package - (name "go-gopkg-in-fsnotify-v1") - (version "1.4.7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/fsnotify.v1") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) - (build-system go-build-system) - (arguments - '(#:import-path - "gopkg.in/fsnotify.v1" - #:unpack-path - "gopkg.in/fsnotify.v1")) - (home-page "https://gopkg.in/fsnotify.v1") - (synopsis "File system notifications for Go") - (description - "Package fsnotify provides a platform-independent interface for file system -notifications.") - (license license:bsd-3))) - -(define-public go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7 - (package - (name "go-gopkg-in-tomb-v1") - (version "1.0.0-20141024135613-dd632973f1e7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/tomb.v1") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1lqmq1ag7s4b3gc3ddvr792c5xb5k6sfn0cchr3i2s7f1c231zjv")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/tomb.v1" #:unpack-path "gopkg.in/tomb.v1")) - (home-page "https://gopkg.in/tomb.v1") - (synopsis "Installation and usage") - (description - "The tomb package offers a conventional API for clean goroutine termination.") - (license license:bsd-3))) - -(define-public go-gopkg-in-yaml-v2-2.2.1 - (package - (name "go-gopkg-in-yaml-v2") - (version "2.2.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0dwjrs2lp2gdlscs7bsrmyc5yf6mm4fvgw71bzr9mv2qrd2q73s1")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v2") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language.") - (license license:asl2.0))) - -(define-public go-github-com-onsi-gomega-1.5.0 - (package - (name "go-github-com-onsi-gomega") - (version "1.5.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/onsi/gomega") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1n7i4hksdgv410m43v2sw14bl5vy59dkp6nlw5l76nibbh37syr9")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/onsi/gomega")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1) - ("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" - ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) - ("go-gopkg-in-fsnotify-v1-1.4.7" ,go-gopkg-in-fsnotify-v1-1.4.7) - ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e" - ,go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e) - ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" - ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) - ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" - ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) - ("go-github-com-onsi-ginkgo-1.6.0" ,go-github-com-onsi-ginkgo-1.6.0) - ("go-github-com-hpcloud-tail-1.0.0" ,go-github-com-hpcloud-tail-1.0.0) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0) - ("go-github-com-fsnotify-fsnotify-1.4.7" - ,go-github-com-fsnotify-fsnotify-1.4.7))) - (home-page "https://github.com/onsi/gomega") - (synopsis ": a BDD Testing Framework for Golang") - (description - "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library.") - (license license:expat))) - -(define-public go-github-com-sergi-go-diff-1.0.0 - (package - (name "go-github-com-sergi-go-diff") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sergi/go-diff") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0swiazj8wphs2zmk1qgq75xza6m19snif94h2m6fi8dqkwqdl7c7")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/sergi/go-diff")) - (home-page "https://github.com/sergi/go-diff") - (synopsis "go-diff") - (description - "go-diff offers algorithms to perform operations required for synchronizing plain -text:") - (license license:expat))) - -(define-public go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190404232315-eb5bcb51f2a3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "17k4g8krxbl84gzcs275b7gsh66dzm15fdxivjnx9xz8q84l4kby")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20190412213103-97732733099d - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190412213103-97732733099d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "118hkp01i4z1f5h6hcjm0ff2ngqhrzj1f7731n0kw8dr6hvbx0sw")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-crypto-0.0.0-20190426145343-a29dc8fdc734 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20190426145343-a29dc8fdc734") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "07f0jj4haqs0ywc1akk1qjwn5msl2j0pry1rxjkkbfcq4r6ihc1p")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" - ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) - ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" - ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-github-com-aphistic-sweet-0.2.0 - (package - (name "go-github-com-aphistic-sweet") - (version "0.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/aphistic/sweet") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1bb4qagfxf6byqn2yx0vq24xfvisz3ah4w6bvqclc8cklvfngw43")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/aphistic/sweet")) - (propagated-inputs - `(("go-golang-org-x-crypto-0.0.0-20190426145343-a29dc8fdc734" - ,go-golang-org-x-crypto-0.0.0-20190426145343-a29dc8fdc734) - ("go-github-com-sergi-go-diff-1.0.0" - ,go-github-com-sergi-go-diff-1.0.0) - ("go-github-com-onsi-gomega-1.5.0" ,go-github-com-onsi-gomega-1.5.0) - ("go-github-com-mgutz-ansi-0.0.0-20170206155736-9520e82c474b" - ,go-github-com-mgutz-ansi-0.0.0-20170206155736-9520e82c474b) - ("go-github-com-mattn-go-colorable-0.1.1" - ,go-github-com-mattn-go-colorable-0.1.1))) - (home-page "https://github.com/aphistic/sweet") - (synopsis "sweet") - (description - "Sweet is a pluggable test runner capable of hooking into standard Go tests. It -attempts to provide access to the standard Go test tool as close as possible -while adding support for test suites and plugins that can hook into test results -to add additional functionality.") - (license license:expat))) - -(define-public go-github-com-jmespath-go-jmespath-0.0.0-20180206201540-c2b33e8439af - (package - (name "go-github-com-jmespath-go-jmespath") - (version "0.0.0-20180206201540-c2b33e8439af") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/jmespath/go-jmespath") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1r6w7ydx8ydryxk3sfhzsk8m6f1nsik9jg3i1zhi69v4kfl4d5cz")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/jmespath/go-jmespath")) - (home-page "https://github.com/jmespath/go-jmespath") - (synopsis "go-jmespath - A JMESPath implementation in Go") - (description - "go-jmespath is a GO implementation of JMESPath, which is a query language for -JSON. It will take a JSON document and transform it into another JSON document -through a JMESPath expression.") - (license license:asl2.0))) - -(define-public go-github-com-aws-aws-sdk-go-1.20.6 - (package - (name "go-github-com-aws-aws-sdk-go") - (version "1.20.6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/aws/aws-sdk-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "016vy5s9finyfgh08j7rvn2pnwymdgj2ydr59w57pysnri87mdwx")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/aws/aws-sdk-go")) - (propagated-inputs - `(("go-github-com-jmespath-go-jmespath-0.0.0-20180206201540-c2b33e8439af" - ,go-github-com-jmespath-go-jmespath-0.0.0-20180206201540-c2b33e8439af))) - (home-page "https://github.com/aws/aws-sdk-go") - (synopsis "AWS SDK for Go") - (description - "Package sdk is the official AWS SDK for the Go programming language.") - (license license:asl2.0))) - -(define-public go-github-com-aybabtme-rgbterm-0.0.0-20170906152045-cc83f3b3ce59 - (package - (name "go-github-com-aybabtme-rgbterm") - (version "0.0.0-20170906152045-cc83f3b3ce59") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/aybabtme/rgbterm") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0wvmxvjn64968ikvnxrflb1x8rlcwzpfl53fzbxff2axbx9lq50q")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/aybabtme/rgbterm")) - (home-page "https://github.com/aybabtme/rgbterm") - (synopsis "RGB terminal") - (description - "Package rgbterm colorizes bytes and strings using RGB colors, for a full range -of pretty terminal strings.") - (license license:expat))) - -(define-public go-github-com-fatih-color-1.7.0 - (package - (name "go-github-com-fatih-color") - (version "1.7.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/fatih/color") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0v8msvg38r8d1iiq2i5r4xyfx0invhc941kjrsg5gzwvagv55inv")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/fatih/color")) - (home-page "https://github.com/fatih/color") - (synopsis "color") - (description - "Package color is an ANSI color package to output colorized or SGR defined output -to the standard output. The API can be used in several way, pick one that suits -you.") - (license license:expat))) - -(define-public go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515 - (package - (name "go-github-com-kr-logfmt") - (version "0.0.0-20140226030751-b84e30acd515") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/logfmt") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "02ldzxgznrfdzvghfraslhgp19la1fczcbzh7wm2zdc6lmpd1qq9")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/logfmt")) - (home-page "https://github.com/kr/logfmt") - (synopsis #f) - (description "Package implements the decoding of logfmt key-value pairs.") - (license license:expat))) - -(define-public go-github-com-go-logfmt-logfmt-0.4.0 - (package - (name "go-github-com-go-logfmt-logfmt") - (version "0.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/go-logfmt/logfmt") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "06smxc112xmixz78nyvk3b2hmc7wasf2sl5vxj1xz62kqcq9lzm9")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/go-logfmt/logfmt")) - (propagated-inputs - `(("go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515" - ,go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515))) - (home-page "https://github.com/go-logfmt/logfmt") - (synopsis "logfmt") - (description - "Package logfmt implements utilities to marshal and unmarshal data in the logfmt -format. The logfmt format records key/value pairs in a way that balances -readability for humans and simplicity of computer parsing. It is most commonly -used as a more human friendly alternative to JSON for structured logging.") - (license license:expat))) - -(define-public go-github-com-golang-protobuf-1.3.1 - (package - (name "go-github-com-golang-protobuf") - (version "1.3.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "15am4s4646qy6iv0g3kkqq52rzykqjhm4bf08dk0fy2r58knpsyl")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code -github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-github-com-google-uuid-1.1.1 - (package - (name "go-github-com-google-uuid") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/uuid") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hfxcf9frkb57k6q0rdkrmnfs78ms21r1qfk9fhlqga2yh5xg8zb")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/uuid")) - (home-page "https://github.com/google/uuid") - (synopsis "uuid") - (description "Package uuid generates and inspects UUIDs.") - (license license:bsd-3))) - -(define-public go-github-com-jpillora-backoff-0.0.0-20180909062703-3050d21c67d7 - (package - (name "go-github-com-jpillora-backoff") - (version "0.0.0-20180909062703-3050d21c67d7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/jpillora/backoff") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1nxapdx9xg5gwiscfhq7m0w14hj4gaxb4avmgf1mx9zd3jnw9jxv")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/jpillora/backoff")) - (home-page "https://github.com/jpillora/backoff") - (synopsis "Backoff") - (description - "Package backoff provides an exponential-backoff implementation.") - (license license:expat))) - -(define-public go-github-com-kr-pty-1.1.1 - (package - (name "go-github-com-kr-pty") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/pty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0383f0mb9kqjvncqrfpidsf8y6ns5zlrc91c6a74xpyxjwvzl2y6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/pty")) - (home-page "https://github.com/kr/pty") - (synopsis "pty") - (description - "Package pty is a wrapper for github.com/creack/pty, which provides functions for -working with Unix terminals.") - (license license:expat))) - -(define-public go-github-com-kr-text-0.1.0 - (package - (name "go-github-com-kr-text") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1gm5bsl01apvc84bw06hasawyqm4q84vx1pm32wr9jnd7a8vjgj1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/text")) - (propagated-inputs - `(("go-github-com-kr-pty-1.1.1" ,go-github-com-kr-pty-1.1.1))) - (home-page "https://github.com/kr/text") - (synopsis #f) - (description - "Package text provides rudimentary functions for manipulating text in paragraphs.") - (license license:expat))) - -(define-public go-github-com-kr-pretty-0.2.0 - (package - (name "go-github-com-kr-pretty") - (version "0.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/pretty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ywbfzz1h3a3qd8rpkiqwi1dm4w8ls9ijb4x1b7567grns9f0vnp")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/pretty")) - (propagated-inputs - `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) - (home-page "https://github.com/kr/pretty") - (synopsis #f) - (description - "Package pretty provides pretty-printing for Go values. This is useful during -debugging, to avoid wrapping long output lines in the terminal.") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190222072716-a9d3bda3a223") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1w45zc13xrjzl19s1sx74r5mg3lf2z2nm13wygcdq5r5pyjlhdz9")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-mattn-go-isatty-0.0.8 - (package - (name "go-github-com-mattn-go-isatty") - (version "0.0.8") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mattn/go-isatty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0rqfh1rj6f5wm8p2ky7inm8g10152p7w6n2cli17kf9gad797i8h")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mattn/go-isatty")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223" - ,go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223))) - (home-page "https://github.com/mattn/go-isatty") - (synopsis "go-isatty") - (description "Package isatty implements interface to isatty") - (license license:expat))) - -(define-public go-github-com-mattn-go-colorable-0.1.2 - (package - (name "go-github-com-mattn-go-colorable") - (version "0.1.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mattn/go-colorable") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0512jm3wmzkkn7d99x9wflyqf48n5ri3npy1fqkq6l6adc5mni3n")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mattn/go-colorable")) - (propagated-inputs - `(("go-github-com-mattn-go-isatty-0.0.8" - ,go-github-com-mattn-go-isatty-0.0.8))) - (home-page "https://github.com/mattn/go-colorable") - (synopsis "go-colorable") - (description "Colorable writer for windows.") - (license license:expat))) - -(define-public go-github-com-pkg-errors-0.8.1 - (package - (name "go-github-com-pkg-errors") - (version "0.8.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pkg/errors") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0g5qcb4d4fd96midz0zdk8b9kz8xkzwfa8kr1cliqbg8sxsy5vd1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pkg/errors")) - (home-page "https://github.com/pkg/errors") - (synopsis "errors") - (description "Package errors provides simple error handling primitives.") - (license license:bsd-2))) - -(define-public go-github-com-rogpeppe-fastuuid-1.1.0 - (package - (name "go-github-com-rogpeppe-fastuuid") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/rogpeppe/fastuuid") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1jlif5pxyz3md02ij93kd2y2j1zz0ajc9k8azvn83vv6l3r5c1zg")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/rogpeppe/fastuuid")) - (home-page "https://github.com/rogpeppe/fastuuid") - (synopsis "fastuuid") - (description - "Package fastuuid provides fast UUID generation of 192 bit universally unique -identifiers.") - (license license:bsd-3))) - -(define-public go-github-com-smartystreets-go-aws-auth-0.0.0-20180515143844-0c1422d1fdb9 - (package - (name "go-github-com-smartystreets-go-aws-auth") - (version "0.0.0-20180515143844-0c1422d1fdb9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/smarty-archives/go-aws-auth") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0krfdpgn3gfii1z9fi8ydfw0wwfqyvp6w3rji7w92m528zkjl93d")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/smartystreets/go-aws-auth")) - (home-page "https://github.com/smartystreets/go-aws-auth") - (synopsis "go-aws-auth") - (description - "Package awsauth implements AWS request signing using Signed Signature Version 2, -Signed Signature Version 3, and Signed Signature Version 4. Supports S3 and -STS.") - (license license:expat))) - -(define-public go-github-com-smartystreets-assertions-1.0.0 - (package - (name "go-github-com-smartystreets-assertions") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/smartystreets/assertions") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1188hs39zvil41sdnxs83h1hp319lfyc5n2rvd1xnhz1dh5qjjh4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/smartystreets/assertions")) - (home-page "https://github.com/smartystreets/assertions") - (synopsis #f) - (description - "Package assertions contains the implementations for all assertions which are -referenced in goconvey's `convey` package -(github.com/smartystreets/goconvey/convey) and gunit -(github.com/smartystreets/gunit) for use with the So(...) method. They can also -be used in traditional Go test functions and even in applications.") - (license license:expat))) - -(define-public go-github-com-smartystreets-gunit-1.0.0 - (package - (name "go-github-com-smartystreets-gunit") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/smartystreets/gunit") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "11d09rl5qqpj36a311pjj8w5jkj83d5b8gdcsx8f1zn4j924sm5d")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/smartystreets/gunit")) - (propagated-inputs - `(("go-github-com-smartystreets-assertions-1.0.0" - ,go-github-com-smartystreets-assertions-1.0.0))) - (home-page "https://github.com/smartystreets/gunit") - (synopsis "gunit") - (description - "Package gunit provides \"testing\" package hooks and convenience functions for -writing tests in an xUnit style. See the README file and the examples folder -for examples.") - (license license:expat))) - -(define-public go-github-com-davecgh-go-spew-1.1.1 - (package - (name "go-github-com-davecgh-go-spew") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/davecgh/go-spew") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/davecgh/go-spew")) - (home-page "https://github.com/davecgh/go-spew") - (synopsis "go-spew") - (description - "Go-spew implements a deep pretty printer for Go data structures to aid in -debugging. A comprehensive suite of tests with 100% test coverage is provided -to ensure proper functionality. See @code{test_coverage.txt} for the gocov -coverage report. Go-spew is licensed under the liberal ISC license, so it may -be used in open source or commercial projects.") - (license license:isc))) - -(define-public go-github-com-davecgh-go-spew-1.1.0 - (package - (name "go-github-com-davecgh-go-spew") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/davecgh/go-spew") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/davecgh/go-spew")) - (home-page "https://github.com/davecgh/go-spew") - (synopsis "go-spew") - (description - "Go-spew implements a deep pretty printer for Go data structures to aid in -debugging. A comprehensive suite of tests with 100% test coverage is provided -to ensure proper functionality. See @code{test_coverage.txt} for the gocov -coverage report. Go-spew is licensed under the liberal ISC license, so it may -be used in open source or commercial projects.") - (license license:isc))) - -(define-public go-github-com-pmezard-go-difflib-1.0.0 - (package - (name "go-github-com-pmezard-go-difflib") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pmezard/go-difflib") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pmezard/go-difflib")) - (home-page "https://github.com/pmezard/go-difflib") - (synopsis "go-difflib") - (description - "Go-difflib is a partial port of python 3 difflib package. Its main goal was to -make unified and context diff available in pure Go, mostly for testing purposes.") - (license license:bsd-3))) - -(define-public go-github-com-stretchr-objx-0.1.0 - (package - (name "go-github-com-stretchr-objx") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/objx") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/objx")) - (home-page "https://github.com/stretchr/objx") - (synopsis "Objx") - (description - "Objx - Go package for dealing with maps, slices, JSON and other data.") - (license license:expat))) - -(define-public go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c - (package - (name "go-gopkg-in-yaml-v3") - (version "3.0.0-20200313102051-9f266ea9e77c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v3") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1bbai3lzb50m0x2vwsdbagrbhvfylj9k1m32hgbqwldqx4p9ay35")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v3") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language.") - (license license:expat))) - -(define-public go-github-com-stretchr-testify-1.6.1 - (package - (name "go-github-com-stretchr-testify") - (version "1.6.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/testify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1yhiqqzjvi63pf01rgzx68gqkkvjx03fvl5wk30br5l6s81s090l")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/testify")) - (propagated-inputs - `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" - ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) - ("go-github-com-stretchr-objx-0.1.0" - ,go-github-com-stretchr-objx-0.1.0) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.0" - ,go-github-com-davecgh-go-spew-1.1.0))) - (home-page "https://github.com/stretchr/testify") - (synopsis "Testify - Thou Shalt Write Tests") - (description - "** We are working on testify v2 and would love to hear what you'd like to see in -it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -Package testify is a set of packages that provide many tools for testifying that -your code will behave as you intend.") - (license license:expat))) - -(define-public go-gopkg-in-yaml-v3-3.0.0-20200605160147-a5ece683394c - (package - (name "go-gopkg-in-yaml-v3") - (version "3.0.0-20200605160147-a5ece683394c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v3") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "03cm7c3p5fh0aa8vnxv5010dgqqr268ivb480ix1salxx3396w68")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v3") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language.") - (license license:expat))) - -(define-public go-github-com-tj-assert-0.0.3 - (package - (name "go-github-com-tj-assert") - (version "0.0.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/tj/assert") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1j5swk3fjq1h5fpqkipddz2ccnbidr7qrpm5dpdaflg9q5jnc673")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/tj/assert")) - (propagated-inputs - `(("go-gopkg-in-yaml-v3-3.0.0-20200605160147-a5ece683394c" - ,go-gopkg-in-yaml-v3-3.0.0-20200605160147-a5ece683394c) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/tj/assert") - (synopsis "assert") - (description - "Package assert implements the same assertions as the `assert` package but stops -test execution when a test fails.") - (license license:expat))) - -(define-public go-github-com-tj-go-buffer-1.1.0 - (package - (name "go-github-com-tj-go-buffer") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/tj/go-buffer") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1qdxpa069pjjbzh217aadpzz1aq1n6h32lhp60yjcpi7hr4q8fxx")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/tj/go-buffer")) - (propagated-inputs - `(("go-github-com-tj-assert-0.0.3" ,go-github-com-tj-assert-0.0.3))) - (home-page "https://github.com/tj/go-buffer") - (synopsis "Buffer") - (description - "Package buffer provides a generic buffer or batching mechanism for flushing -entries at a given size or interval, useful for cases such as batching log -events.") - (license license:expat))) - -(define-public go-github-com-tj-go-elastic-0.0.0-20171221160941-36157cbbebc2 - (package - (name "go-github-com-tj-go-elastic") - (version "0.0.0-20171221160941-36157cbbebc2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/tj/go-elastic") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1r94vc4hbfvqvjz74n4mvsw4dy3vbyzlivb90kyn8vn76a4wqk69")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/tj/go-elastic")) - (home-page "https://github.com/tj/go-elastic") - (synopsis "go-elastic") - (description - "Package elastic provides an Elasticsearch client with AWS sigv4 support.") - (license license:expat))) - -(define-public go-github-com-tj-go-kinesis-0.0.0-20171128231115-08b17f58cb1b - (package - (name "go-github-com-tj-go-kinesis") - (version "0.0.0-20171128231115-08b17f58cb1b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/tj/go-kinesis") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "108c6p5j6rhhc2cnc2v5368yfsw73y6lzlvz02vpvvjph8rhmld4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/tj/go-kinesis")) - (home-page "https://github.com/tj/go-kinesis") - (synopsis "go-kinesis") - (description - "Package kinesis implements a batch producer built on top of the official AWS -SDK.") - (license license:expat))) - -(define-public go-github-com-tj-go-spin-1.1.0 - (package - (name "go-github-com-tj-go-spin") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/tj/go-spin") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "11xr67991m5pwsy1dira3iwd0sr55vmn1cyjwmlqziw4bwpym64s")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/tj/go-spin")) - (home-page "https://github.com/tj/go-spin") - (synopsis #f) - (description #f) - (license #f))) - -(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20190308221718-c2843e01d9a2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190215142949-d0b11bdaac8a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-text-0.3.0 - (package - (name "go-golang-org-x-text") - (version "0.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/text")) - (home-page "https://golang.org/x/text") - (synopsis "Go Text") - (description - "text is a repository of text-related packages related to internationalization -(i18n) and localization (l10n), such as character encodings, text -transformations, and locale-specific text handling.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190620200207-3b0461eec859") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0l00c8l0a8xnv6qdpwfzxxsr58jggacgzdrwiprrfx2xqm37b6d5")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20180917221912-90fa682c2a6e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-golang-org-x-text-0.3.2 - (package - (name "go-golang-org-x-text") - (version "0.3.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0flv9idw0jm5nm8lx25xqanbkqgfiym6619w575p7nrdh0riqwqh")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/text")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" - ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) - (home-page "https://golang.org/x/text") - (synopsis "Go Text") - (description - "text is a repository of text-related packages related to internationalization -(i18n) and localization (l10n), such as character encodings, text -transformations, and locale-specific text handling.") - (license license:bsd-3))) - -(define-public go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15 - (package - (name "go-gopkg-in-check-v1") - (version "1.0.0-20190902080502-41f04d3bba15") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/check.v1") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0vfk9czmlxmp6wndq8k17rhnjxal764mxfhrccza7nwlia760pjy")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) - (home-page "https://gopkg.in/check.v1") - (synopsis "Instructions") - (description - "Package check is a rich testing extension for Go's testing package.") - (license license:bsd-2))) - -(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 - (package - (name "go-gopkg-in-check-v1") - (version "0.0.0-20161208181325-20d25e280405") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/check.v1") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) - (home-page "https://gopkg.in/check.v1") - (synopsis "Instructions") - (description - "Package check is a rich testing extension for Go's testing package.") - (license license:bsd-2))) - -(define-public go-gopkg-in-yaml-v2-2.2.2 - (package - (name "go-gopkg-in-yaml-v2") - (version "2.2.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "01wj12jzsdqlnidpyjssmj0r4yavlqy7dwrg7adqd8dicjc4ncsa")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v2") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language.") - (license license:asl2.0))) - -(define-public go-github-com-apex-log-1.9.0 - (package - (name "go-github-com-apex-log") - (version "1.9.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/apex/log") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ibqkncnb8wcwilg2kyfyl5541g69rg551iy6m61q6iwdn5vfhi2")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/apex/log")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) - ("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" - ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) - ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) - ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" - ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) - ("go-github-com-tj-go-spin-1.1.0" ,go-github-com-tj-go-spin-1.1.0) - ("go-github-com-tj-go-kinesis-0.0.0-20171128231115-08b17f58cb1b" - ,go-github-com-tj-go-kinesis-0.0.0-20171128231115-08b17f58cb1b) - ("go-github-com-tj-go-elastic-0.0.0-20171221160941-36157cbbebc2" - ,go-github-com-tj-go-elastic-0.0.0-20171221160941-36157cbbebc2) - ("go-github-com-tj-go-buffer-1.1.0" ,go-github-com-tj-go-buffer-1.1.0) - ("go-github-com-tj-assert-0.0.3" ,go-github-com-tj-assert-0.0.3) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-smartystreets-gunit-1.0.0" - ,go-github-com-smartystreets-gunit-1.0.0) - ("go-github-com-smartystreets-go-aws-auth-0.0.0-20180515143844-0c1422d1fdb9" - ,go-github-com-smartystreets-go-aws-auth-0.0.0-20180515143844-0c1422d1fdb9) - ("go-github-com-rogpeppe-fastuuid-1.1.0" - ,go-github-com-rogpeppe-fastuuid-1.1.0) - ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) - ("go-github-com-mattn-go-colorable-0.1.2" - ,go-github-com-mattn-go-colorable-0.1.2) - ("go-github-com-kr-pretty-0.2.0" ,go-github-com-kr-pretty-0.2.0) - ("go-github-com-jpillora-backoff-0.0.0-20180909062703-3050d21c67d7" - ,go-github-com-jpillora-backoff-0.0.0-20180909062703-3050d21c67d7) - ("go-github-com-google-uuid-1.1.1" ,go-github-com-google-uuid-1.1.1) - ("go-github-com-golang-protobuf-1.3.1" - ,go-github-com-golang-protobuf-1.3.1) - ("go-github-com-go-logfmt-logfmt-0.4.0" - ,go-github-com-go-logfmt-logfmt-0.4.0) - ("go-github-com-fatih-color-1.7.0" ,go-github-com-fatih-color-1.7.0) - ("go-github-com-aybabtme-rgbterm-0.0.0-20170906152045-cc83f3b3ce59" - ,go-github-com-aybabtme-rgbterm-0.0.0-20170906152045-cc83f3b3ce59) - ("go-github-com-aws-aws-sdk-go-1.20.6" - ,go-github-com-aws-aws-sdk-go-1.20.6) - ("go-github-com-aphistic-sweet-0.2.0" - ,go-github-com-aphistic-sweet-0.2.0) - ("go-github-com-aphistic-golf-0.0.0-20180712155816-02c07f170c5a" - ,go-github-com-aphistic-golf-0.0.0-20180712155816-02c07f170c5a) - ("go-github-com-apex-logs-1.0.0" ,go-github-com-apex-logs-1.0.0))) - (home-page "https://github.com/apex/log") - (synopsis "Handlers") - (description - "Package log implements a simple structured logging API designed with few -assumptions. Designed for centralized logging solutions such as Kinesis which -require encoding and decoding before fanning-out to handlers.") - (license license:expat))) - -(define-public go-github-com-sylabs-json-resp-0.8.0 - (package - (name "go-github-com-sylabs-json-resp") - (version "0.8.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sylabs/json-resp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ygr4mavaj1pp78hkkphhn3ydd923n3klwnx8x7v4ajqzx4cx4id")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/sylabs/json-resp")) - (home-page "https://github.com/sylabs/json-resp") - (synopsis "JSON Response") - (description - "The @code{json-resp} package contains a small set of functions that are used to -marshall and unmarshall response data and errors in JSON format.") - (license license:bsd-3))) - -(define-public go-github-com-apptainer-container-key-client-0.7.2 - (package - (name "go-github-com-apptainer-container-key-client") - (version "0.7.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/apptainer/container-key-client") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0f4bb1k8pi37alzgzvjw23ynp54752qwgnr9gim3vc061qcjx377")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/apptainer/container-key-client")) - (propagated-inputs - `(("go-github-com-sylabs-json-resp-0.8.0" - ,go-github-com-sylabs-json-resp-0.8.0))) - (home-page "https://github.com/apptainer/container-key-client") - (synopsis "Container Key Client") - (description - "This project provides a Go client to Apptainer for key storage and retrieval -using the HKP protocol. Forked from -@url{https://github.com/sylabs/scs-key-client,sylabs/scs-key-client}.") - (license license:bsd-3))) - -(define-public go-github-com-blang-semver-v4-4.0.0 - (package - (name "go-github-com-blang-semver-v4") - (version "4.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/blang/semver") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "14h9ys4n4kx9cbj42lkdf4i5k3nkll6sd62jcvl7cs565v6fiknz")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/blang/semver/v4")) - (home-page "https://github.com/blang/semver") - (synopsis #f) - (description #f) - (license license:expat))) - -(define-public go-github-com-go-log-log-0.2.0 - (package - (name "go-github-com-go-log-log") - (version "0.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/go-log/log") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1idnqv4yvkmdh3wcsgvhcpak9z6ix8dsifdjq5kfbbnskdq5rmvg")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/go-log/log")) - (home-page "https://github.com/go-log/log") - (synopsis "Log") - (description "Package log provides a log interface") - (license license:expat))) - -(define-public go-github-com-stretchr-objx-0.1.0 - (package - (name "go-github-com-stretchr-objx") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/objx") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/objx")) - (home-page "https://github.com/stretchr/objx") - (synopsis "Objx") - (description - "Objx - Go package for dealing with maps, slices, JSON and other data.") - (license license:expat))) - -(define-public go-github-com-stretchr-testify-1.7.0 - (package - (name "go-github-com-stretchr-testify") - (version "1.7.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/testify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ixgjsvafr3513pz3r6pmgk074s2dxkll0dadvl25gkf30rkmh10")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/testify")) - (propagated-inputs - `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" - ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) - ("go-github-com-stretchr-objx-0.1.0" - ,go-github-com-stretchr-objx-0.1.0) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.0" - ,go-github-com-davecgh-go-spew-1.1.0))) - (home-page "https://github.com/stretchr/testify") - (synopsis "Testify - Thou Shalt Write Tests") - (description - "** We are working on testify v2 and would love to hear what you'd like to see in -it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -Package testify is a set of packages that provide many tools for testifying that -your code will behave as you intend.") - (license license:expat))) - -(define-public go-github-com-sylabs-json-resp-0.8.0 - (package - (name "go-github-com-sylabs-json-resp") - (version "0.8.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sylabs/json-resp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ygr4mavaj1pp78hkkphhn3ydd923n3klwnx8x7v4ajqzx4cx4id")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/sylabs/json-resp")) - (home-page "https://github.com/sylabs/json-resp") - (synopsis "JSON Response") - (description - "The @code{json-resp} package contains a small set of functions that are used to -marshall and unmarshall response data and errors in JSON format.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20200317015054-43a5402ce75a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0j6zrrb81qjr1926kkwmn0di9a0jn8qyjd9dw614rfkihxgq1vsm")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the ones -provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-github-com-davecgh-go-spew-1.1.0 - (package - (name "go-github-com-davecgh-go-spew") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/davecgh/go-spew") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/davecgh/go-spew")) - (home-page "https://github.com/davecgh/go-spew") - (synopsis "go-spew") - (description - "Go-spew implements a deep pretty printer for Go data structures to aid in -debugging. A comprehensive suite of tests with 100% test coverage is provided -to ensure proper functionality. See @code{test_coverage.txt} for the gocov -coverage report. Go-spew is licensed under the liberal ISC license, so it may -be used in open source or commercial projects.") - (license license:isc))) - -(define-public go-github-com-pmezard-go-difflib-1.0.0 - (package - (name "go-github-com-pmezard-go-difflib") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pmezard/go-difflib") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pmezard/go-difflib")) - (home-page "https://github.com/pmezard/go-difflib") - (synopsis "go-difflib") - (description - "Go-difflib is a partial port of python 3 difflib package. Its main goal was to -make unified and context diff available in pure Go, mostly for testing purposes.") - (license license:bsd-3))) - -(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 - (package - (name "go-gopkg-in-check-v1") - (version "0.0.0-20161208181325-20d25e280405") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/check.v1") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) - (home-page "https://gopkg.in/check.v1") - (synopsis "Instructions") - (description - "Package check is a rich testing extension for Go's testing package.") - (license license:bsd-2))) - -(define-public go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c - (package - (name "go-gopkg-in-yaml-v3") - (version "3.0.0-20200313102051-9f266ea9e77c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v3") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1bbai3lzb50m0x2vwsdbagrbhvfylj9k1m32hgbqwldqx4p9ay35")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v3") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language.") - (license license:expat))) - -(define-public go-github-com-apptainer-container-library-client-1.2.2 - (package - (name "go-github-com-apptainer-container-library-client") - (version "1.2.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/apptainer/container-library-client") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1f6pxzk0k9jf9612kjw6jlmrs8yzqqrvhjwfxwri1q1d4i410a0h")))) - (build-system go-build-system) - (arguments - '(#:import-path "github.com/apptainer/container-library-client")) - (propagated-inputs - `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" - ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.0" - ,go-github-com-davecgh-go-spew-1.1.0) - ("go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a" - ,go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a) - ("go-github-com-sylabs-json-resp-0.8.0" - ,go-github-com-sylabs-json-resp-0.8.0) - ("go-github-com-stretchr-testify-1.7.0" - ,go-github-com-stretchr-testify-1.7.0) - ("go-github-com-go-log-log-0.2.0" ,go-github-com-go-log-log-0.2.0) - ("go-github-com-blang-semver-v4-4.0.0" - ,go-github-com-blang-semver-v4-4.0.0))) - (home-page "https://github.com/apptainer/container-library-client") - (synopsis "Container Library Client") - (description - "This project provides a Go client to Apptainer for the container library. -Forked from -@url{https://github.com/sylabs/scs-library-client,sylabs/scs-library-client}.") - (license license:bsd-3))) - -(define-public go-github-com-blang-semver-v4-4.0.0 - (package - (name "go-github-com-blang-semver-v4") - (version "4.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/blang/semver") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "14h9ys4n4kx9cbj42lkdf4i5k3nkll6sd62jcvl7cs565v6fiknz")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/blang/semver/v4")) - (home-page "https://github.com/blang/semver") - (synopsis #f) - (description #f) - (license license:expat))) - -(define-public go-github-com-buger-jsonparser-1.1.1 - (package - (name "go-github-com-buger-jsonparser") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/buger/jsonparser") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0qv2lsh2biwxn927941gqiv5pqg7n4v58j0i536pjp7pr17pq7dp")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/buger/jsonparser")) - (home-page "https://github.com/buger/jsonparser") - (synopsis - "Alternative JSON parser for Go (10x times faster standard library)") - (description - "It does not require you to know the structure of the payload (eg. create -structs), and allows accessing fields by providing the path to them. It is up -to @strong{10 times faster} than standard @code{encoding/json} package -(depending on payload size and usage), @strong{allocates no memory}. See -benchmarks below.") - (license license:expat))) - -(define-public go-github-com-cenkalti-backoff-v4-4.1.2 - (package - (name "go-github-com-cenkalti-backoff-v4") - (version "4.1.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cenkalti/backoff") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "08c28226q612i1pv83161y57qh16631vpc51ai9f76qfrzsy946z")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/cenkalti/backoff/v4")) - (home-page "https://github.com/cenkalti/backoff") - (synopsis "Exponential Backoff") - (description - "Package backoff implements backoff algorithms for retrying operations.") - (license license:expat))) - -(define-public go-github-com-kr-pretty-0.2.1 - (package - (name "go-github-com-kr-pretty") - (version "0.2.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/pretty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0vzfz06y9q8gs2nxx0kys0591vzp78k0fvpb8digi5n15h3b25hy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/pretty")) - (propagated-inputs - `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) - (home-page "https://github.com/kr/pretty") - (synopsis #f) - (description - "Package pretty provides pretty-printing for Go values. This is useful during -debugging, to avoid wrapping long output lines in the terminal.") - (license license:expat))) - -(define-public go-github-com-frankban-quicktest-1.11.3 - (package - (name "go-github-com-frankban-quicktest") - (version "1.11.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/frankban/quicktest") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0d5njmwkfq2809vlimnlvy8ir6kln0c4cgdwr680fwsclpbr43qs")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/frankban/quicktest")) - (propagated-inputs - `(("go-github-com-kr-pretty-0.2.1" ,go-github-com-kr-pretty-0.2.1) - ("go-github-com-google-go-cmp-0.5.4" - ,go-github-com-google-go-cmp-0.5.4))) - (home-page "https://github.com/frankban/quicktest") - (synopsis "quicktest") - (description - "Package quicktest provides a collection of Go helpers for writing tests.") - (license license:expat))) - -(define-public go-github-com-google-go-cmp-0.5.4 - (package - (name "go-github-com-google-go-cmp") - (version "0.5.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ld9pwb6l22g75g1zpa691l7q9ki7pjgpcqhwgdfr3va1zisr5ci")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically -equal.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20210124154548-22da62e12c0c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "17gp3dl75wq3x7j9z1pqgcyvjhvy9jaln1wbscy57al3whdsjp07")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-cilium-ebpf-0.4.0 - (package - (name "go-github-com-cilium-ebpf") - (version "0.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cilium/ebpf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1j33vfz8mxnqadkd17l0y3ll71gph3ndm8hwrwbwnf5px7bfv9yl")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/cilium/ebpf")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" - ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) - ("go-github-com-google-go-cmp-0.5.4" - ,go-github-com-google-go-cmp-0.5.4) - ("go-github-com-frankban-quicktest-1.11.3" - ,go-github-com-frankban-quicktest-1.11.3))) - (home-page "https://github.com/cilium/ebpf") - (synopsis "eBPF") - (description "Package ebpf is a toolkit for working with eBPF programs.") - (license license:expat))) - -(define-public go-github-com-coreos-go-systemd-v22-22.3.2 - (package - (name "go-github-com-coreos-go-systemd-v22") - (version "22.3.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/coreos/go-systemd") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ndi86b8va84ha93njqgafypz4di7yxfd5r5kf1r0s3y3ghcjajq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/coreos/go-systemd/v22")) - (propagated-inputs - `(("go-github-com-godbus-dbus-v5-5.0.4" - ,go-github-com-godbus-dbus-v5-5.0.4))) - (home-page "https://github.com/coreos/go-systemd") - (synopsis "go-systemd") - (description "Go bindings to systemd. The project has several packages:") - (license license:asl2.0))) - -(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0 - (package - (name "go-github-com-cpuguy83-go-md2man-v2") - (version "2.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cpuguy83/go-md2man") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) - (propagated-inputs - `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" - ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) - ("go-github-com-russross-blackfriday-v2-2.0.1" - ,go-github-com-russross-blackfriday-v2-2.0.1) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0))) - (home-page "https://github.com/cpuguy83/go-md2man") - (synopsis "go-md2man") - (description "Converts markdown into roff (man pages).") - (license license:expat))) - -(define-public go-github-com-docker-go-units-0.4.0 - (package - (name "go-github-com-docker-go-units") - (version "0.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/docker/go-units") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0k8gja8ql4pqg5rzmqvka42vjfs6rzablak87whcnqba6qxpimvz")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/docker/go-units")) - (home-page "https://github.com/docker/go-units") - (synopsis "Introduction") - (description - "Package units provides helper function to parse and print size and time units in -human-readable format.") - (license license:asl2.0))) - -(define-public go-github-com-godbus-dbus-v5-5.0.4 - (package - (name "go-github-com-godbus-dbus-v5") - (version "5.0.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/godbus/dbus") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0znax8kskb5gmp5fj75w56bc9p7b22wrdswzlh4d04sprlc471yi")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/godbus/dbus/v5")) - (home-page "https://github.com/godbus/dbus") - (synopsis "dbus") - (description - "Package dbus implements bindings to the D-Bus message bus system.") - (license license:bsd-2))) - -(define-public go-github-com-yuin-goldmark-1.1.27 - (package - (name "go-github-com-yuin-goldmark") - (version "1.1.27") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/yuin/goldmark") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1872cqnii0kwiqcy81yin0idvjy5mdy4zlzz0csb319lcjs3b923")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/yuin/goldmark")) - (home-page "https://github.com/yuin/goldmark") - (synopsis "goldmark") - (description - "Package goldmark implements functions to convert markdown text to a desired -format.") - (license license:expat))) - -(define-public go-golang-org-x-mod-0.2.0 - (package - (name "go-golang-org-x-mod") - (version "0.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/mod") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fp6885dclq77mh73v7i54v2b9llpv4di193zc8vmsbbkkc483cl")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/mod")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" - ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) - ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" - ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) - ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" - ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) - (home-page "https://golang.org/x/mod") - (synopsis "mod") - (description - "This repository holds packages for writing tools that work directly with Go -module mechanics. That is, it is for direct manipulation of Go modules -themselves.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b - (package - (name "go-golang-org-x-net") - (version "0.0.0-20200226121028-0de0cce0169b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1db7s5kbzyh2zd5lpv05n7hp8wbwdvgk0wpiwrlnig94mkr0y5aq")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20190911185100-cd5d95a43a6e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1nqkyz2y1qvqcma52ijh02s8aiqmkfb95j08f6zcjhbga3ds6hds")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the ones -provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543 - (package - (name "go-golang-org-x-xerrors") - (version "0.0.0-20191204190536-9bdfabe68543") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/xerrors") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1yjfi1bk9xb81lqn85nnm13zz725wazvrx3b50hx19qmwg7a4b0c")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/xerrors")) - (home-page "https://golang.org/x/xerrors") - (synopsis #f) - (description "Package xerrors implements functions to manipulate errors.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20200619180055-7c47624df98f - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20200619180055-7c47624df98f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fhzwd32j7w9g3algq0zj8g7ivx3f0mn9nx9mj046wdscryn49mk")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) - ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" - ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) - ("go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b" - ,go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b) - ("go-golang-org-x-mod-0.2.0" ,go-golang-org-x-mod-0.2.0) - ("go-github-com-yuin-goldmark-1.1.27" - ,go-github-com-yuin-goldmark-1.1.27))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-github-com-kisielk-errcheck-1.5.0 - (package - (name "go-github-com-kisielk-errcheck") - (version "1.5.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kisielk/errcheck") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ci3jz2px74pfmr42jv7dpx7fdzx08vai4czp9fkiyb0gcaiqsk6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kisielk/errcheck")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20200619180055-7c47624df98f" - ,go-golang-org-x-tools-0.0.0-20200619180055-7c47624df98f))) - (home-page "https://github.com/kisielk/errcheck") - (synopsis "errcheck") - (description - "errcheck is a program for checking for unchecked errors in go programs.") - (license license:expat))) - -(define-public go-github-com-kisielk-gotool-1.0.0 - (package - (name "go-github-com-kisielk-gotool") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kisielk/gotool") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "14af2pa0ssyp8bp2mvdw184s5wcysk6akil3wzxmr05wwy951iwn")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kisielk/gotool")) - (home-page "https://github.com/kisielk/gotool") - (synopsis "gotool") - (description - "Package gotool contains utility functions used to implement the standard -\"cmd/go\" tool, provided as a convenience to developers who want to write tools -with similar semantics.") - (license license:expat))) - -(define-public go-github-com-yuin-goldmark-1.2.1 - (package - (name "go-github-com-yuin-goldmark") - (version "1.2.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/yuin/goldmark") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12rsnsf65drcp0jfw2jl9w589vsn3pxdk1zh3v9q908iigngrcmy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/yuin/goldmark")) - (home-page "https://github.com/yuin/goldmark") - (synopsis "goldmark") - (description - "Package goldmark implements functions to convert markdown text to a desired -format.") - (license license:expat))) - -(define-public go-golang-org-x-mod-0.3.0 - (package - (name "go-golang-org-x-mod") - (version "0.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/mod") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ldgbx2zpprbsfn6p8pfgs4nn87gwbfcv2z0fa7n8alwsq2yw78q")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/mod")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" - ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) - ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" - ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) - ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" - ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) - (home-page "https://golang.org/x/mod") - (synopsis "mod") - (description - "This repository holds packages for writing tools that work directly with Go -module mechanics. That is, it is for direct manipulation of Go modules -themselves.") - (license license:bsd-3))) - -(define-public go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20200622213623-75b288015ac9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18vlncvvs11ds3zaaziqjlg5s2vcwi3496nn6qv7p0dp94j5pwa2")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" - ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) - ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" - ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200930185726-fdedc70b468f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1njlfhjbvi4lxvjbq8zswrb0y0q4jd2p6x51h1q6vmyzi9af6869")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20201021035429-f5854403a974 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20201021035429-f5854403a974") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1vw63zpmhi337f3gc432x3wkib4j2ia8dy7if31wxwb9dgqvy222")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) - ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" - ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) - ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" - ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9 - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20201020160332-67f06af15bc9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "093p4panc808ak5bamzz7m9nb0xxib7778jpnr6f0xkz1n4fzyw5")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the ones -provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20210106214847-113979e3529a - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20210106214847-113979e3529a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0pq1a7hkamqdwsajyfrb27s56cvxz5838krsgyqz346s2djwdrzl")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" - ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) - ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" - ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) - ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" - ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) - ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) - ("go-github-com-yuin-goldmark-1.2.1" - ,go-github-com-yuin-goldmark-1.2.1))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-github-com-gogo-protobuf-1.3.2 - (package - (name "go-github-com-gogo-protobuf") - (version "1.3.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gogo/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0dfv1bhx5zhb5bsj5sj757nkacf2swp1ajpcyj9d0b37n602m18a")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/gogo/protobuf")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20210106214847-113979e3529a" - ,go-golang-org-x-tools-0.0.0-20210106214847-113979e3529a) - ("go-github-com-kisielk-gotool-1.0.0" - ,go-github-com-kisielk-gotool-1.0.0) - ("go-github-com-kisielk-errcheck-1.5.0" - ,go-github-com-kisielk-errcheck-1.5.0))) - (home-page "https://github.com/gogo/protobuf") - (synopsis "Protocol Buffers for Go with Gadgets") - (description - "gogoprotobuf is a fork of -@url{https://github.com/golang/protobuf,golang/protobuf} with extra code -generation features.") - (license license:bsd-3))) - -(define-public go-github-com-opencontainers-runtime-spec-1.0.2 - (package - (name "go-github-com-opencontainers-runtime-spec") - (version "1.0.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/runtime-spec") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19w981vcmd5lp2hy0630x6ayb8zz17n2vxqm2py5mg945xflcizg")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) - (home-page "https://github.com/opencontainers/runtime-spec") - (synopsis "Open Container Initiative Runtime Specification") - (description - "The @url{https://www.opencontainers.org,Open Container Initiative} develops -specifications for standards on Operating System process and application -containers.") - (license license:asl2.0))) - -(define-public go-github-com-davecgh-go-spew-1.1.1 - (package - (name "go-github-com-davecgh-go-spew") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/davecgh/go-spew") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/davecgh/go-spew")) - (home-page "https://github.com/davecgh/go-spew") - (synopsis "go-spew") - (description - "Go-spew implements a deep pretty printer for Go data structures to aid in -debugging. A comprehensive suite of tests with 100% test coverage is provided -to ensure proper functionality. See @code{test_coverage.txt} for the gocov -coverage report. Go-spew is licensed under the liberal ISC license, so it may -be used in open source or commercial projects.") - (license license:isc))) - -(define-public go-github-com-stretchr-testify-1.2.2 - (package - (name "go-github-com-stretchr-testify") - (version "1.2.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/testify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0dlszlshlxbmmfxj5hlwgv3r22x0y1af45gn1vd198nvvs3pnvfs")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/testify")) - (home-page "https://github.com/stretchr/testify") - (synopsis "Testify - Thou Shalt Write Tests") - (description - "** We are working on testify v2 and would love to hear what you'd like to see in -it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -Package testify is a set of packages that provide many tools for testifying that -your code will behave as you intend.") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20191026070338-33540a1f6037") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0fjcv0vzvi6za0b4xmnk3932pr9f9gczzf03y0kgq3ry9rqg169y")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-sirupsen-logrus-1.8.1 - (package - (name "go-github-com-sirupsen-logrus") - (version "1.8.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sirupsen/logrus") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0rvqzic2zz7fpxyizmqxwmhv1m52ii9bgxnqa6km8wsa0l08wh42")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/sirupsen/logrus")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037" - ,go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037) - ("go-github-com-stretchr-testify-1.2.2" - ,go-github-com-stretchr-testify-1.2.2) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/sirupsen/logrus") - (synopsis "Logrus") - (description - "Package logrus is a structured logger for Go, completely API compatible with the -standard library logger.") - (license license:expat))) - -(define-public go-github-com-burntsushi-toml-0.3.1 - (package - (name "go-github-com-burntsushi-toml") - (version "0.3.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/BurntSushi/toml") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fjdwwfzyzllgiwydknf1pwjvy49qxfsczqx5gz3y0izs7as99j6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/BurntSushi/toml")) - (home-page "https://github.com/BurntSushi/toml") - (synopsis "Testing") - (description - "Package toml implements decoding and encoding of TOML files.") - (license license:expat))) - -(define-public go-github-com-russross-blackfriday-v2-2.0.1 - (package - (name "go-github-com-russross-blackfriday-v2") - (version "2.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/russross/blackfriday") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0nlz7isdd4rgnwzs68499hlwicxz34j2k2a0b8jy0y7ycd2bcr5j")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/russross/blackfriday/v2")) - (home-page "https://github.com/russross/blackfriday") - (synopsis "Blackfriday") - (description "Package blackfriday is a markdown processor.") - (license license:bsd-2))) - -(define-public go-github-com-shurcool-sanitized-anchor-name-1.0.0 - (package - (name "go-github-com-shurcool-sanitized-anchor-name") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/shurcooL/sanitized_anchor_name") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1gv9p2nr46z80dnfjsklc6zxbgk96349sdsxjz05f3z6wb6m5l8f")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/shurcooL/sanitized_anchor_name")) - (home-page "https://github.com/shurcooL/sanitized_anchor_name") - (synopsis "sanitized_anchor_name") - (description - "Package sanitized_anchor_name provides a func to create sanitized anchor names.") - (license license:expat))) - -(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d - (package - (name "go-github-com-cpuguy83-go-md2man-v2") - (version "2.0.0-20190314233015-f79a8a8ca69d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cpuguy83/go-md2man") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) - (propagated-inputs - `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" - ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) - ("go-github-com-russross-blackfriday-v2-2.0.1" - ,go-github-com-russross-blackfriday-v2-2.0.1) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0))) - (home-page "https://github.com/cpuguy83/go-md2man") - (synopsis "go-md2man") - (description "Converts markdown into roff (man pages).") - (license license:expat))) - -(define-public go-gopkg-in-yaml-v2-2.2.2 - (package - (name "go-gopkg-in-yaml-v2") - (version "2.2.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "01wj12jzsdqlnidpyjssmj0r4yavlqy7dwrg7adqd8dicjc4ncsa")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v2") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language.") - (license license:asl2.0))) - -(define-public go-github-com-urfave-cli-1.22.2 - (package - (name "go-github-com-urfave-cli") - (version "1.22.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/urfave/cli") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "10mcnvi5qmn00vpyk6si8gjka7p654wr9hac4zc9w5h3ickhvbdc")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/urfave/cli")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) - ("go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d" - ,go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d) - ("go-github-com-burntsushi-toml-0.3.1" - ,go-github-com-burntsushi-toml-0.3.1))) - (home-page "https://github.com/urfave/cli") - (synopsis "cli") - (description - "Package cli provides a minimal framework for creating and organizing command -line Go applications. cli is designed to be easy to understand and write, the -most simple cli application can be written as follows:") - (license license:expat))) - -(define-public go-github-com-kr-pty-1.1.1 - (package - (name "go-github-com-kr-pty") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/pty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0383f0mb9kqjvncqrfpidsf8y6ns5zlrc91c6a74xpyxjwvzl2y6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/pty")) - (home-page "https://github.com/kr/pty") - (synopsis "pty") - (description - "Package pty is a wrapper for github.com/creack/pty, which provides functions for -working with Unix terminals.") - (license license:expat))) - -(define-public go-github-com-kr-text-0.1.0 - (package - (name "go-github-com-kr-text") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1gm5bsl01apvc84bw06hasawyqm4q84vx1pm32wr9jnd7a8vjgj1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/text")) - (propagated-inputs - `(("go-github-com-kr-pty-1.1.1" ,go-github-com-kr-pty-1.1.1))) - (home-page "https://github.com/kr/text") - (synopsis #f) - (description - "Package text provides rudimentary functions for manipulating text in paragraphs.") - (license license:expat))) - -(define-public go-github-com-kr-pretty-0.1.0 - (package - (name "go-github-com-kr-pretty") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/pretty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18m4pwg2abd0j9cn5v3k2ksk9ig4vlwxmlw9rrglanziv9l967qp")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/pretty")) - (propagated-inputs - `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) - (home-page "https://github.com/kr/pretty") - (synopsis #f) - (description - "Package pretty provides pretty-printing for Go values. This is useful during -debugging, to avoid wrapping long output lines in the terminal.") - (license license:expat))) - -(define-public go-github-com-davecgh-go-spew-1.1.0 - (package - (name "go-github-com-davecgh-go-spew") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/davecgh/go-spew") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/davecgh/go-spew")) - (home-page "https://github.com/davecgh/go-spew") - (synopsis "go-spew") - (description - "Go-spew implements a deep pretty printer for Go data structures to aid in -debugging. A comprehensive suite of tests with 100% test coverage is provided -to ensure proper functionality. See @code{test_coverage.txt} for the gocov -coverage report. Go-spew is licensed under the liberal ISC license, so it may -be used in open source or commercial projects.") - (license license:isc))) - -(define-public go-github-com-pmezard-go-difflib-1.0.0 - (package - (name "go-github-com-pmezard-go-difflib") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pmezard/go-difflib") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pmezard/go-difflib")) - (home-page "https://github.com/pmezard/go-difflib") - (synopsis "go-difflib") - (description - "Go-difflib is a partial port of python 3 difflib package. Its main goal was to -make unified and context diff available in pure Go, mostly for testing purposes.") - (license license:bsd-3))) - -(define-public go-github-com-stretchr-objx-0.1.0 - (package - (name "go-github-com-stretchr-objx") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/objx") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/objx")) - (home-page "https://github.com/stretchr/objx") - (synopsis "Objx") - (description - "Objx - Go package for dealing with maps, slices, JSON and other data.") - (license license:expat))) - -(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 - (package - (name "go-gopkg-in-check-v1") - (version "0.0.0-20161208181325-20d25e280405") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/check.v1") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) - (home-page "https://gopkg.in/check.v1") - (synopsis "Instructions") - (description - "Package check is a rich testing extension for Go's testing package.") - (license license:bsd-2))) - -(define-public go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c - (package - (name "go-gopkg-in-yaml-v3") - (version "3.0.0-20200313102051-9f266ea9e77c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v3") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1bbai3lzb50m0x2vwsdbagrbhvfylj9k1m32hgbqwldqx4p9ay35")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v3") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language.") - (license license:expat))) - -(define-public go-github-com-stretchr-testify-1.7.0 - (package - (name "go-github-com-stretchr-testify") - (version "1.7.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/testify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ixgjsvafr3513pz3r6pmgk074s2dxkll0dadvl25gkf30rkmh10")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/testify")) - (propagated-inputs - `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" - ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) - ("go-github-com-stretchr-objx-0.1.0" - ,go-github-com-stretchr-objx-0.1.0) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.0" - ,go-github-com-davecgh-go-spew-1.1.0))) - (home-page "https://github.com/stretchr/testify") - (synopsis "Testify - Thou Shalt Write Tests") - (description - "** We are working on testify v2 and would love to hear what you'd like to see in -it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -Package testify is a set of packages that provide many tools for testifying that -your code will behave as you intend.") - (license license:expat))) - -(define-public go-golang-org-x-net-0.0.0-20190311183353-d8887717615a - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190311183353-d8887717615a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1wfm6ngxjyj7v5a2dqib6lw8bb2rdnf1kl48diykxjrsddn0s163")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20190311212946-11955173bddd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hlkai67w167wiyivkzd1fgqrnyxkb94l2c6kr51jwcscizfyfn3")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-golang-org-x-lint-0.0.0-20190930215403-16217165b5de - (package - (name "go-golang-org-x-lint") - (version "0.0.0-20190930215403-16217165b5de") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/lint") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0jhwmwc0vykcmf164na0pnadl8gv7184b6pf3xayknwmzdw6vd7h")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/lint")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" - ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd))) - (home-page "https://golang.org/x/lint") - (synopsis "Installation") - (description "Package lint contains a linter for Go source code.") - (license license:bsd-3))) - -(define-public go-github-com-yuin-goldmark-1.3.5 - (package - (name "go-github-com-yuin-goldmark") - (version "1.3.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/yuin/goldmark") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "08rrhfji92hixiv3v0wvamwcy56f90wsw84w7lyvad7g90kbsknx")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/yuin/goldmark")) - (home-page "https://github.com/yuin/goldmark") - (synopsis "goldmark") - (description - "Package goldmark implements functions to convert markdown text to a desired -format.") - (license license:expat))) - -(define-public go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190404232315-eb5bcb51f2a3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "17k4g8krxbl84gzcs275b7gsh66dzm15fdxivjnx9xz8q84l4kby")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20190412213103-97732733099d - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190412213103-97732733099d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "118hkp01i4z1f5h6hcjm0ff2ngqhrzj1f7731n0kw8dr6hvbx0sw")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20191011191535-87dc89f01550") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0z4i1m2yn3f31ci7wvcm2rxkx2yiv7a78mfzklncmsz2k97rlh2g")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" - ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) - ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" - ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20190308221718-c2843e01d9a2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190215142949-d0b11bdaac8a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-text-0.3.0 - (package - (name "go-golang-org-x-text") - (version "0.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/text")) - (home-page "https://golang.org/x/text") - (synopsis "Go Text") - (description - "text is a repository of text-related packages related to internationalization -(i18n) and localization (l10n), such as character encodings, text -transformations, and locale-specific text handling.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190620200207-3b0461eec859") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0l00c8l0a8xnv6qdpwfzxxsr58jggacgzdrwiprrfx2xqm37b6d5")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20190423024810-112230192c58 - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20190423024810-112230192c58") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "05i2k43j2d0llq768hg5pf3hb2yhfzp9la1w5wp0rsnnzblr0lfn")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the ones -provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7 - (package - (name "go-golang-org-x-xerrors") - (version "0.0.0-20190717185122-a985d3407aa7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/xerrors") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "00wzr5w8aadipgc3rkk8f11i41znskfj9ix5nhhaxyg7isrslgcj")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/xerrors")) - (home-page "https://golang.org/x/xerrors") - (synopsis #f) - (description "Package xerrors implements functions to manipulate errors.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20191119224855-298f0cb1881e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0l4pqwib2wnfnix6nvxl0yrq87ipi7ff1rz6z5bxfzy9dki1nzmv")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7" - ,go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7) - ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" - ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) - ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" - ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898 - (package - (name "go-golang-org-x-xerrors") - (version "0.0.0-20191011141410-1b5146add898") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/xerrors") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0w2akj91krxjag0xdhsg78470888nicc5ismc2ap9jqpss6v1zih")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/xerrors")) - (home-page "https://golang.org/x/xerrors") - (synopsis #f) - (description "Package xerrors implements functions to manipulate errors.") - (license license:bsd-3))) - -(define-public go-golang-org-x-mod-0.4.2 - (package - (name "go-golang-org-x-mod") - (version "0.4.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/mod") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0z1p17i291z2k6va08i80ljyzyij2b6qsz78lnz0wi8zsnkfdz43")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/mod")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" - ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) - ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" - ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) - ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" - ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) - (home-page "https://golang.org/x/mod") - (synopsis "mod") - (description - "This repository holds packages for writing tools that work directly with Go -module mechanics. That is, it is for direct manipulation of Go modules -themselves.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20210330210617-4fbd30eecc44 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20210330210617-4fbd30eecc44") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "02mmymbm7wb3vdp3z9hm8p0f45708fybyd38qm8qxzwm19zqnp56")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20201119102817-f84b799fce68") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1dvhqian5byzkcg1bnqzygqa6ccc6krc2q7j12pp1vhl3y7znnsg")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1 - (package - (name "go-golang-org-x-term") - (version "0.0.0-20201126162022-7de9c90e9dd1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/term") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ba252xmv6qsvf1w1gcy98mngrj0vd4inbjw0lsklqvva65nljna")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/term")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" - ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) - (home-page "https://golang.org/x/term") - (synopsis "Go terminal/console support") - (description - "Package term provides support functions for dealing with terminals, as commonly -found on UNIX systems.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20180917221912-90fa682c2a6e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-golang-org-x-text-0.3.3 - (package - (name "go-golang-org-x-text") - (version "0.3.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19pihqm3phyndmiw6i42pdv6z1rbvlqlsnhsyqf9gsnn0qnmqqlh")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/text")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" - ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) - (home-page "https://golang.org/x/text") - (synopsis "Go Text") - (description - "text is a repository of text-related packages related to internationalization -(i18n) and localization (l10n), such as character encodings, text -transformations, and locale-specific text handling.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20210405180319-a5a99cb37ef4 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20210405180319-a5a99cb37ef4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0z90hpmxdw9i8vfhd6vf7hd63c86f1128qfb5f3y4kinvlpjy3rl")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) - ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" - ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) - ("go-golang-org-x-sys-0.0.0-20210330210617-4fbd30eecc44" - ,go-golang-org-x-sys-0.0.0-20210330210617-4fbd30eecc44))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20210220032951-036812b2e83c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1gl202py3s4gl6arkaxlf8qa6f0jyyg2f95m6f89qnfmr416h85b")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the ones -provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1 - (package - (name "go-golang-org-x-xerrors") - (version "0.0.0-20200804184101-5ec99f83aff1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/xerrors") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1dbzc3gmf2haazpv7cgmv97rq40g2xzwbglc17vas8dwhgwgwrzb")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/xerrors")) - (home-page "https://golang.org/x/xerrors") - (synopsis #f) - (description "Package xerrors implements functions to manipulate errors.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.1.5 - (package - (name "go-golang-org-x-tools") - (version "0.1.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1wzbbcja1q0gn8ahxvzvpl4nzj2icwmc0pppgipmx5rdnngqw80l")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" - ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) - ("go-golang-org-x-sys-0.0.0-20210510120138-977fb7262007" - ,go-golang-org-x-sys-0.0.0-20210510120138-977fb7262007) - ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" - ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) - ("go-golang-org-x-net-0.0.0-20210405180319-a5a99cb37ef4" - ,go-golang-org-x-net-0.0.0-20210405180319-a5a99cb37ef4) - ("go-golang-org-x-mod-0.4.2" ,go-golang-org-x-mod-0.4.2) - ("go-github-com-yuin-goldmark-1.3.5" - ,go-github-com-yuin-goldmark-1.3.5))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127 - (package - (name "go-gopkg-in-check-v1") - (version "1.0.0-20180628173108-788fd7840127") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/check.v1") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0v3bim0j375z81zrpr5qv42knqs0y2qv2vkjiqi5axvb78slki1a")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) - (home-page "https://gopkg.in/check.v1") - (synopsis "Instructions") - (description - "Package check is a rich testing extension for Go's testing package.") - (license license:bsd-2))) - -(define-public go-go-uber-org-goleak-1.1.12 - (package - (name "go-go-uber-org-goleak") - (version "1.1.12") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/uber-go/goleak") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1wda3bd5xqbnvskgpr2lg6ccnrm3v9wl0i5c5b6xrrzf01b81vzg")))) - (build-system go-build-system) - (arguments '(#:import-path "go.uber.org/goleak")) - (propagated-inputs - `(("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" - ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) - ("go-golang-org-x-tools-0.1.5" ,go-golang-org-x-tools-0.1.5) - ("go-golang-org-x-lint-0.0.0-20190930215403-16217165b5de" - ,go-golang-org-x-lint-0.0.0-20190930215403-16217165b5de) - ("go-github-com-stretchr-testify-1.7.0" - ,go-github-com-stretchr-testify-1.7.0) - ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0))) - (home-page "https://go.uber.org/goleak") - (synopsis "goleak") - (description "Package goleak is a Goroutine leak detector.") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20210510120138-977fb7262007 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20210510120138-977fb7262007") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0d2vnblgzxgvis2kly99gv10kadyl3v0cpv1lskjqg2v5d11r6hd")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-containerd-cgroups-1.0.3 - (package - (name "go-github-com-containerd-cgroups") - (version "1.0.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/cgroups") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0mqsi2jm1f7xvs35kx6ijvadr6zycshc1xivq6xdiwrw24wb0m3r")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/cgroups")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20210510120138-977fb7262007" - ,go-golang-org-x-sys-0.0.0-20210510120138-977fb7262007) - ("go-go-uber-org-goleak-1.1.12" ,go-go-uber-org-goleak-1.1.12) - ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) - ("go-github-com-stretchr-testify-1.7.0" - ,go-github-com-stretchr-testify-1.7.0) - ("go-github-com-sirupsen-logrus-1.8.1" - ,go-github-com-sirupsen-logrus-1.8.1) - ("go-github-com-opencontainers-runtime-spec-1.0.2" - ,go-github-com-opencontainers-runtime-spec-1.0.2) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2) - ("go-github-com-godbus-dbus-v5-5.0.4" - ,go-github-com-godbus-dbus-v5-5.0.4) - ("go-github-com-docker-go-units-0.4.0" - ,go-github-com-docker-go-units-0.4.0) - ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" - ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) - ("go-github-com-coreos-go-systemd-v22-22.3.2" - ,go-github-com-coreos-go-systemd-v22-22.3.2) - ("go-github-com-cilium-ebpf-0.4.0" ,go-github-com-cilium-ebpf-0.4.0))) - (home-page "https://github.com/containerd/cgroups") - (synopsis "cgroups") - (description - "Go package for creating, managing, inspecting, and destroying cgroups. The -resources format for settings on the cgroup uses the OCI runtime-spec found -@url{https://github.com/opencontainers/runtime-spec,here}.") - (license license:asl2.0))) - -(define-public go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20191005200804-aed5e4c7ecf9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0wsdsbl9n61l99z0cvib2xzg56fsfgky4yc5xapdw9ywx9h0zm3a")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-fsnotify-fsnotify-1.4.9 - (package - (name "go-github-com-fsnotify-fsnotify") - (version "1.4.9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/fsnotify/fsnotify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1i1r72knpbfwwql9frn9bqc3nhfc2ai5m6qllcyr6wban62lr40x")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/fsnotify/fsnotify")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9" - ,go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9))) - (home-page "https://github.com/fsnotify/fsnotify") - (synopsis "File system notifications for Go") - (description - "Package fsnotify provides a platform-independent interface for file system -notifications.") - (license license:bsd-3))) - -(define-public go-github-com-sclevine-agouti-3.0.0+incompatible - (package - (name "go-github-com-sclevine-agouti") - (version "3.0.0+incompatible") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sclevine/agouti") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fsj7x7hhmqq43a9qxdfap7ik6b35hqk58dwii0ir1zm1fnw105b")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/sclevine/agouti")) - (home-page "https://github.com/sclevine/agouti") - (synopsis "Agouti") - (description - "Package agouti is a universal WebDriver client for Go. It extends the -agouti/api package to provide a feature-rich interface for controlling a web -browser.") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20200519105757-fe76b779f299 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200519105757-fe76b779f299") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0g6j3n9fdv1a2lp2i8wbaaya85yrbfx3ns6iq1s7l2ayhxxmgh6b")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20180917221912-90fa682c2a6e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-golang-org-x-text-0.3.2 - (package - (name "go-golang-org-x-text") - (version "0.3.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0flv9idw0jm5nm8lx25xqanbkqgfiym6619w575p7nrdh0riqwqh")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/text")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" - ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) - (home-page "https://golang.org/x/text") - (synopsis "Go Text") - (description - "text is a repository of text-related packages related to internationalization -(i18n) and localization (l10n), such as character encodings, text -transformations, and locale-specific text handling.") - (license license:bsd-3))) - -(define-public go-github-com-onsi-ginkgo-1.13.0 - (package - (name "go-github-com-onsi-ginkgo") - (version "1.13.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/onsi/ginkgo") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1p8p334z7xjfsn35hfkls8crirz8hgqqq0hj83gxizpzq8v24qpi")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/onsi/ginkgo")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) - ("go-golang-org-x-sys-0.0.0-20200519105757-fe76b779f299" - ,go-golang-org-x-sys-0.0.0-20200519105757-fe76b779f299) - ("go-github-com-sclevine-agouti-3.0.0+incompatible" - ,go-github-com-sclevine-agouti-3.0.0+incompatible) - ("go-github-com-onsi-gomega-1.10.1" ,go-github-com-onsi-gomega-1.10.1) - ("go-github-com-nxadm-tail-1.4.4" ,go-github-com-nxadm-tail-1.4.4) - ("go-github-com-fsnotify-fsnotify-1.4.9" - ,go-github-com-fsnotify-fsnotify-1.4.9))) - (home-page "https://github.com/onsi/ginkgo") - (synopsis "Ginkgo 2.0 Release Candidate is available!") - (description "Ginkgo is a BDD-style testing framework for Golang") - (license license:expat))) - -(define-public go-github-com-google-go-cmp-0.3.0 - (package - (name "go-github-com-google-go-cmp") - (version "0.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1hyxx3434zshl2m9ja78gwlkg1rx9yl6diqa7dnjb31xz5x4gbjj")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically -equal.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd - (package - (name "go-google-golang-org-protobuf") - (version "0.0.0-20200109180630-ec00e32a8dfd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0w6lp9w2avxcpxwzzhspr209ifhyjagvs23k0vykfdqahl1aplrh")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.3.0" - ,go-github-com-google-go-cmp-0.3.0))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is -a language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol -buffer developer guide} for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.4.0-rc.1 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.0-rc.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "186rirvbfgv6hrxp27ipx2cdpv19qifdd20biqfdm01wiyclqimn")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd" - ,go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd) - ("go-github-com-google-go-cmp-0.3.1" - ,go-github-com-google-go-cmp-0.3.1))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code -github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-github-com-google-go-cmp-0.3.1 - (package - (name "go-github-com-google-go-cmp") - (version "0.3.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1caw49i0plkjxir7kdf5qhwls3krqwfmi7g4h392rdfwi3kfahx1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically -equal.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64 - (package - (name "go-google-golang-org-protobuf") - (version "0.0.0-20200221191635-4d8936d0db64") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0563bsvdjj6k0sgwqd5yzrgfiax7sp3lcwh608gync5sv9fx39cy")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.3.1" - ,go-github-com-google-go-cmp-0.3.1) - ("go-github-com-golang-protobuf-1.4.0-rc.1" - ,go-github-com-golang-protobuf-1.4.0-rc.1))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is -a language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol -buffer developer guide} for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.0-rc.1.0.20200221234624-67d41d38c208") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ykxhg3zixmw25pd435f8h16wnz1g00jpcmmg3xl030kksgqgpp6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64" - ,go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code -github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60 - (package - (name "go-google-golang-org-protobuf") - (version "0.0.0-20200228230310-ab0ca4ff8a60") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1rinspcznfp85yz4vrlf4h38hr576virgv8lcs22bsylqga808sd")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208" - ,go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is -a language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol -buffer developer guide} for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.4.0-rc.2 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.0-rc.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1hd43hjv5zl6bjbmhm5phx74bw4xajsi73m5zky2k56za4mpgzzc")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60" - ,go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code -github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967 - (package - (name "go-google-golang-org-protobuf") - (version "1.20.1-0.20200309200217-e05f789c0967") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "17wmy89hnmpkwc63rfcjp50q15s9f1rhmczg06c3z9yy41zk82w9")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.0-rc.2" - ,go-github-com-golang-protobuf-1.4.0-rc.2))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is -a language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol -buffer developer guide} for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.0-rc.4.0.20200313231945-b860323f09d0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1zj6cwshx0l5n9cn2cpbikzzb79px5dmkpc4p19zy1iif5r5p0z0")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967" - ,go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code -github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-1.21.0 - (package - (name "go-google-golang-org-protobuf") - (version "1.21.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12bwln8z1lf9105gdp6ip0rx741i4yfz1520gxnp8861lh9wcl63")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0" - ,go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is -a language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol -buffer developer guide} for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.4.0 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fjvl5n77abxz5qsd4mgyvjq19x43c5bfvmq62mq3m5plx6zksc8")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.21.0" - ,go-google-golang-org-protobuf-1.21.0) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code -github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-github-com-google-go-cmp-0.4.0 - (package - (name "go-github-com-google-go-cmp") - (version "0.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1x5pvl3fb5sbyng7i34431xycnhmx8xx94gq2n19g6p0vz68z2v2")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically -equal.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-1.23.0 - (package - (name "go-google-golang-org-protobuf") - (version "1.23.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "03yan0m1v0zmlr935p4n24fd376mznsg85zy8sywbgisls4s1bzy")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.0" - ,go-github-com-golang-protobuf-1.4.0))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is -a language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol -buffer developer guide} for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.4.2 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0m5z81im4nsyfgarjhppayk4hqnrwswr3nix9mj8pff8x9jvcjqw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.23.0" - ,go-google-golang-org-protobuf-1.23.0) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code -github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20190904154756-749cb33beabd - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190904154756-749cb33beabd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0dm3257q3rv2kyn5lmqqim2fqg634v6rhrqq4glvbk4wx4l3v337")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-nxadm-tail-1.4.4 - (package - (name "go-github-com-nxadm-tail") - (version "1.4.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/nxadm/tail") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1czmwqii0fc8v3ar5bwqpfanprkxg19waly405zlvcflzvj53wwc")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/nxadm/tail")) - (propagated-inputs - `(("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" - ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) - ("go-golang-org-x-sys-0.0.0-20190904154756-749cb33beabd" - ,go-golang-org-x-sys-0.0.0-20190904154756-749cb33beabd) - ("go-github-com-fsnotify-fsnotify-1.4.7" - ,go-github-com-fsnotify-fsnotify-1.4.7))) - (home-page "https://github.com/nxadm/tail") - (synopsis "tail functionality in Go") - (description - "nxadm/tail provides a Go library that emulates the features of the BSD `tail` -program. The library comes with full support for truncation/move detection as -it is designed to work with log rotation tools. The library works on all -operating systems supported by Go, including POSIX systems like Linux and *BSD, -and MS Windows. Go 1.9 is the oldest compiler release supported.") - (license license:expat))) - -(define-public go-github-com-fsnotify-fsnotify-1.4.7 - (package - (name "go-github-com-fsnotify-fsnotify") - (version "1.4.7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/fsnotify/fsnotify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/fsnotify/fsnotify")) - (home-page "https://github.com/fsnotify/fsnotify") - (synopsis "File system notifications for Go") - (description - "Package fsnotify provides a platform-independent interface for file system -notifications.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.2.0 - (package - (name "go-github-com-golang-protobuf") - (version "1.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0kf4b59rcbb1cchfny2dm9jyznp8ri2hsb14n8iak1q8986xa0ab")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code -github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-github-com-hpcloud-tail-1.0.0 - (package - (name "go-github-com-hpcloud-tail") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hpcloud/tail") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1njpzc0pi1acg5zx9y6vj9xi6ksbsc5d387rd6904hy6rh2m6kn0")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hpcloud/tail")) - (home-page "https://github.com/hpcloud/tail") - (synopsis "Go package for tail-ing files") - (description - "This package provides a Go package striving to emulate the features of the BSD -@code{tail} program.") - (license license:expat))) - -(define-public go-github-com-onsi-ginkgo-1.6.0 - (package - (name "go-github-com-onsi-ginkgo") - (version "1.6.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/onsi/ginkgo") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0x0gc89vgq38xhgmi2h22bhr73cf2gmk42g89nz89k8dgg9hhr25")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/onsi/ginkgo")) - (home-page "https://github.com/onsi/ginkgo") - (synopsis "Ginkgo 2.0 Release Candidate is available!") - (description "Ginkgo is a BDD-style testing framework for Golang") - (license license:expat))) - -(define-public go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd - (package - (name "go-golang-org-x-net") - (version "0.0.0-20180906233101-161cd47e91fd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0254ld010iijygbzykib2vags1dc0wlmcmhgh4jl8iny159lhbcv")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20180314180146-1d60e4601c6f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "046jlanz2lkxq1r57x9bl6s4cvfqaic6p2xybsj8mq1120jv4rs6")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the ones -provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20180909124046-d0be0721c37e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "081wyvfnlf842dqg03raxfz6lldlxpmyh1prix9lmrrm65arxb12")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-gopkg-in-fsnotify-v1-1.4.7 - (package - (name "go-gopkg-in-fsnotify-v1") - (version "1.4.7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/fsnotify.v1") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) - (build-system go-build-system) - (arguments - '(#:import-path - "gopkg.in/fsnotify.v1" - #:unpack-path - "gopkg.in/fsnotify.v1")) - (home-page "https://gopkg.in/fsnotify.v1") - (synopsis "File system notifications for Go") - (description - "Package fsnotify provides a platform-independent interface for file system -notifications.") - (license license:bsd-3))) - -(define-public go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7 - (package - (name "go-gopkg-in-tomb-v1") - (version "1.0.0-20141024135613-dd632973f1e7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/tomb.v1") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1lqmq1ag7s4b3gc3ddvr792c5xb5k6sfn0cchr3i2s7f1c231zjv")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/tomb.v1" #:unpack-path "gopkg.in/tomb.v1")) - (home-page "https://gopkg.in/tomb.v1") - (synopsis "Installation and usage") - (description - "The tomb package offers a conventional API for clean goroutine termination.") - (license license:bsd-3))) - -(define-public go-gopkg-in-yaml-v2-2.2.4 - (package - (name "go-gopkg-in-yaml-v2") - (version "2.2.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "11bwj757wi8kdrcnlgfqb8vv2d2xdhlghmyagd19i62khrkchsg2")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v2") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language.") - (license license:asl2.0))) - -(define-public go-github-com-onsi-gomega-1.7.1 - (package - (name "go-github-com-onsi-gomega") - (version "1.7.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/onsi/gomega") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "06p3x0910cdaa64l7d44s728d4j3yhps315dlcvrbjzhljjj7mam")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/onsi/gomega")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.4" ,go-gopkg-in-yaml-v2-2.2.4) - ("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" - ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) - ("go-gopkg-in-fsnotify-v1-1.4.7" ,go-gopkg-in-fsnotify-v1-1.4.7) - ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e" - ,go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e) - ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" - ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) - ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" - ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) - ("go-github-com-onsi-ginkgo-1.6.0" ,go-github-com-onsi-ginkgo-1.6.0) - ("go-github-com-hpcloud-tail-1.0.0" ,go-github-com-hpcloud-tail-1.0.0) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0) - ("go-github-com-fsnotify-fsnotify-1.4.7" - ,go-github-com-fsnotify-fsnotify-1.4.7))) - (home-page "https://github.com/onsi/gomega") - (synopsis ": a BDD Testing Framework for Golang") - (description - "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library.") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20191120155948-bd437916bb0e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1i8x26frmlin55k69k936zd1rp5sqnq14y5ms4rkxbfzhasdm2rx")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-onsi-ginkgo-1.12.1 - (package - (name "go-github-com-onsi-ginkgo") - (version "1.12.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/onsi/ginkgo") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0xs9724l2b0bwjwrvw5cs3akxaw0n1j5kyxrb1ggfsdjz0zmjcxh")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/onsi/ginkgo")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e" - ,go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e) - ("go-github-com-onsi-gomega-1.7.1" ,go-github-com-onsi-gomega-1.7.1) - ("go-github-com-nxadm-tail-1.4.4" ,go-github-com-nxadm-tail-1.4.4))) - (home-page "https://github.com/onsi/ginkgo") - (synopsis "Ginkgo 2.0 Release Candidate is available!") - (description "Ginkgo is a BDD-style testing framework for Golang") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190215142949-d0b11bdaac8a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20190308221718-c2843e01d9a2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200323222414-85ca7c5b95cd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1504qkgbhhm4f0bhk77v2r1lj6x171ay5m79alkg78wjb5cign5l")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-text-0.3.0 - (package - (name "go-golang-org-x-text") - (version "0.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/text")) - (home-page "https://golang.org/x/text") - (synopsis "Go Text") - (description - "text is a repository of text-related packages related to internationalization -(i18n) and localization (l10n), such as character encodings, text -transformations, and locale-specific text handling.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20200520004742-59133d7f0dd7 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20200520004742-59133d7f0dd7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "03js31gnf3hir5dh6q01bj7cs0y4wzyinqg1mvr0nlb83kak9ggq")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" - ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543 - (package - (name "go-golang-org-x-xerrors") - (version "0.0.0-20191204190536-9bdfabe68543") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/xerrors") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1yjfi1bk9xb81lqn85nnm13zz725wazvrx3b50hx19qmwg7a4b0c")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/xerrors")) - (home-page "https://golang.org/x/xerrors") - (synopsis #f) - (description "Package xerrors implements functions to manipulate errors.") - (license license:bsd-3))) - -(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 - (package - (name "go-gopkg-in-check-v1") - (version "0.0.0-20161208181325-20d25e280405") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/check.v1") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) - (home-page "https://gopkg.in/check.v1") - (synopsis "Instructions") - (description - "Package check is a rich testing extension for Go's testing package.") - (license license:bsd-2))) - -(define-public go-gopkg-in-yaml-v2-2.3.0 - (package - (name "go-gopkg-in-yaml-v2") - (version "2.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1md0hlyd9s6myv3663i9l59y74n4xjazifmmyxn43g86fgkc5lzj")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v2") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language.") - (license license:asl2.0))) - -(define-public go-github-com-onsi-gomega-1.10.1 - (package - (name "go-github-com-onsi-gomega") - (version "1.10.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/onsi/gomega") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "068mirdbwl9n9dqlvqr489h52wkd90cv1jvng4yp8kv83lhzk2dq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/onsi/gomega")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.3.0" ,go-gopkg-in-yaml-v2-2.3.0) - ("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) - ("go-golang-org-x-net-0.0.0-20200520004742-59133d7f0dd7" - ,go-golang-org-x-net-0.0.0-20200520004742-59133d7f0dd7) - ("go-github-com-onsi-ginkgo-1.12.1" ,go-github-com-onsi-ginkgo-1.12.1) - ("go-github-com-golang-protobuf-1.4.2" - ,go-github-com-golang-protobuf-1.4.2))) - (home-page "https://github.com/onsi/gomega") - (synopsis ": a BDD Testing Framework for Golang") - (description - "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library.") - (license license:expat))) - -(define-public go-github-com-containernetworking-cni-1.0.1 - (package - (name "go-github-com-containernetworking-cni") - (version "1.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containernetworking/cni") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0jzijcb96z26lchh6j4js3rl7c148mwlaiz3s6ww47kljnxmv05f")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containernetworking/cni")) - (propagated-inputs - `(("go-github-com-onsi-gomega-1.10.1" ,go-github-com-onsi-gomega-1.10.1) - ("go-github-com-onsi-ginkgo-1.13.0" - ,go-github-com-onsi-ginkgo-1.13.0))) - (home-page "https://github.com/containernetworking/cni") - (synopsis "CNI - the Container Network Interface") - (description - "CNI (), a @url{https://cncf.io,Cloud Native Computing Foundation} project, -consists of a specification and libraries for writing plugins to configure -network interfaces in Linux containers, along with a number of supported -plugins. CNI concerns itself only with network connectivity of containers and -removing allocated resources when the container is deleted. Because of this -focus, CNI has a wide range of support and the specification is simple to -implement.") - (license license:asl2.0))) - -(define-public go-github-com-creack-pty-1.1.17 - (package - (name "go-github-com-creack-pty") - (version "1.1.17") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/creack/pty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "09lcq5bw1dwppxjia05sj4fy7gbk62vishfz1bgrbd1r06i57mjf")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/creack/pty")) - (home-page "https://github.com/creack/pty") - (synopsis "pty") - (description - "Package pty provides functions for working with Unix terminals.") - (license license:expat))) - -(define-public go-github-com-cyphar-filepath-securejoin-0.2.3 - (package - (name "go-github-com-cyphar-filepath-securejoin") - (version "0.2.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cyphar/filepath-securejoin") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0w03d8hslwfhcnfqck21agzs7y0sc6gpwfz53md8fv26ishwxppy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/cyphar/filepath-securejoin")) - (home-page "https://github.com/cyphar/filepath-securejoin") - (synopsis #f) - (description - "Package securejoin is an implementation of the hopefully-soon-to-be-included -SecureJoin helper that is meant to be part of the \"path/filepath\" package. The -purpose of this project is to provide a PoC implementation to make the -SecureJoin proposal -(@url{https://github.com/golang/go/issues/20126,https://github.com/golang/go/issues/20126}) -more tangible.") - (license license:bsd-3))) - -(define-public go-github-com-docker-docker-20.10.12+incompatible - (package - (name "go-github-com-docker-docker") - (version "20.10.12+incompatible") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/moby/moby") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "17j820ij8p6w61jyg5g6y5dwv56dh1w178f6ia2i2dc9b8mz6b5a")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/docker/docker")) - (home-page "https://github.com/docker/docker") - (synopsis "The Moby Project") - (description - "Moby is an open-source project created by Docker to enable and accelerate -software containerization.") - (license license:asl2.0))) - -(define-public go-golang-org-x-sys-0.0.0-20200116001909-b77594299b42 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200116001909-b77594299b42") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0isfm6kmh4fjhh6m7mrb3zvdjka2y31c5habr5kydl7rg0lwkabv")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-mattn-go-isatty-0.0.12 - (package - (name "go-github-com-mattn-go-isatty") - (version "0.0.12") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mattn/go-isatty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1dfsh27d52wmz0nmmzm2382pfrs2fcijvh6cgir7jbb4pnigr5w4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mattn/go-isatty")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20200116001909-b77594299b42" - ,go-golang-org-x-sys-0.0.0-20200116001909-b77594299b42))) - (home-page "https://github.com/mattn/go-isatty") - (synopsis "go-isatty") - (description "Package isatty implements interface to isatty") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20200223170610-d5e6a3e2c0ae - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200223170610-d5e6a3e2c0ae") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0lz7vm5dz2p14fzq2j4m1l9p392cl0fa73aaf45gln07ylfajk4n")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-mattn-go-colorable-0.1.9 - (package - (name "go-github-com-mattn-go-colorable") - (version "0.1.9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mattn/go-colorable") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0f46aiyfca71y7g7ypkicqi0r4ys9jwdw2v6hwdc0x76d39hh0qk")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mattn/go-colorable")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20200223170610-d5e6a3e2c0ae" - ,go-golang-org-x-sys-0.0.0-20200223170610-d5e6a3e2c0ae) - ("go-github-com-mattn-go-isatty-0.0.12" - ,go-github-com-mattn-go-isatty-0.0.12))) - (home-page "https://github.com/mattn/go-colorable") - (synopsis "go-colorable") - (description "Colorable writer for windows.") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20210630005230-0f9fa26af87c - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20210630005230-0f9fa26af87c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "17g7kc6bf6zw4ib1xhmkbpfdn85jbmindqsz0l8ymmc6v279h13q")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-mattn-go-isatty-0.0.14 - (package - (name "go-github-com-mattn-go-isatty") - (version "0.0.14") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mattn/go-isatty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "015zc3j60vb85d7f2al15la24wn45piazxlagqhzrbgfdyqci60z")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mattn/go-isatty")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20210630005230-0f9fa26af87c" - ,go-golang-org-x-sys-0.0.0-20210630005230-0f9fa26af87c))) - (home-page "https://github.com/mattn/go-isatty") - (synopsis "go-isatty") - (description "Package isatty implements interface to isatty") - (license license:expat))) - -(define-public go-github-com-fatih-color-1.13.0 - (package - (name "go-github-com-fatih-color") - (version "1.13.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/fatih/color") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "029qkxsdpblhrpgbv4fcmqwkqnjhx08hwiqp19pd7zz6l8a373ay")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/fatih/color")) - (propagated-inputs - `(("go-github-com-mattn-go-isatty-0.0.14" - ,go-github-com-mattn-go-isatty-0.0.14) - ("go-github-com-mattn-go-colorable-0.1.9" - ,go-github-com-mattn-go-colorable-0.1.9))) - (home-page "https://github.com/fatih/color") - (synopsis "color") - (description - "Package color is an ANSI color package to output colorized or SGR defined output -to the standard output. The API can be used in several way, pick one that suits -you.") - (license license:expat))) - -(define-public go-github-com-go-log-log-0.2.0 - (package - (name "go-github-com-go-log-log") - (version "0.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/go-log/log") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1idnqv4yvkmdh3wcsgvhcpak9z6ix8dsifdjq5kfbbnskdq5rmvg")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/go-log/log")) - (home-page "https://github.com/go-log/log") - (synopsis "Log") - (description "Package log provides a log interface") - (license license:expat))) - -(define-public go-github-com-google-uuid-1.3.0 - (package - (name "go-github-com-google-uuid") - (version "1.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/uuid") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0imkw52m7fzrwsdj2rfrk3zbplqfbwncyv6hv89xw0vdw3jpk122")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/uuid")) - (home-page "https://github.com/google/uuid") - (synopsis "uuid") - (description "Package uuid generates and inspects UUIDs.") - (license license:bsd-3))) - -(define-public go-github-com-opencontainers-go-digest-1.0.0 - (package - (name "go-github-com-opencontainers-go-digest") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/go-digest") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0i5acjajvr6hi9zb7gxwifd8w28y884cv7cx36adj8lngj647xbi")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/go-digest")) - (home-page "https://github.com/opencontainers/go-digest") - (synopsis "go-digest") - (description - "Package digest provides a generalized type to opaquely represent message digests -and their operations within the registry. The Digest type is designed to serve -as a flexible identifier in a content-addressable system. More importantly, it -provides tools and wrappers to work with hash.Hash-based digests with little -effort.") - (license (list license:asl2.0 license:cc-by-sa4.0)))) - -(define-public go-github-com-opencontainers-go-digest-1.0.0 - (package - (name "go-github-com-opencontainers-go-digest") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/go-digest") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0i5acjajvr6hi9zb7gxwifd8w28y884cv7cx36adj8lngj647xbi")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/go-digest")) - (home-page "https://github.com/opencontainers/go-digest") - (synopsis "go-digest") - (description - "Package digest provides a generalized type to opaquely represent message digests -and their operations within the registry. The Digest type is designed to serve -as a flexible identifier in a content-addressable system. More importantly, it -provides tools and wrappers to work with hash.Hash-based digests with little -effort.") - (license (list license:asl2.0 license:cc-by-sa4.0)))) - -(define-public go-github-com-pkg-errors-0.9.1 - (package - (name "go-github-com-pkg-errors") - (version "0.9.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pkg/errors") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1761pybhc2kqr6v5fm8faj08x9bql8427yqg6vnfv6nhrasx1mwq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pkg/errors")) - (home-page "https://github.com/pkg/errors") - (synopsis "errors") - (description "Package errors provides simple error handling primitives.") - (license license:bsd-2))) - -(define-public go-github-com-russross-blackfriday-1.6.0 - (package - (name "go-github-com-russross-blackfriday") - (version "1.6.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/russross/blackfriday") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "036028ynpq52z9snmd2b1kjzyvv6n9sg71k651ndznggnw19aamp")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/russross/blackfriday")) - (home-page "https://github.com/russross/blackfriday") - (synopsis "Blackfriday") - (description "Package blackfriday is a Markdown processor.") - (license license:bsd-2))) - -(define-public go-github-com-davecgh-go-spew-1.1.0 - (package - (name "go-github-com-davecgh-go-spew") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/davecgh/go-spew") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/davecgh/go-spew")) - (home-page "https://github.com/davecgh/go-spew") - (synopsis "go-spew") - (description - "Go-spew implements a deep pretty printer for Go data structures to aid in -debugging. A comprehensive suite of tests with 100% test coverage is provided -to ensure proper functionality. See @code{test_coverage.txt} for the gocov -coverage report. Go-spew is licensed under the liberal ISC license, so it may -be used in open source or commercial projects.") - (license license:isc))) - -(define-public go-github-com-pmezard-go-difflib-1.0.0 - (package - (name "go-github-com-pmezard-go-difflib") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pmezard/go-difflib") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pmezard/go-difflib")) - (home-page "https://github.com/pmezard/go-difflib") - (synopsis "go-difflib") - (description - "Go-difflib is a partial port of python 3 difflib package. Its main goal was to -make unified and context diff available in pure Go, mostly for testing purposes.") - (license license:bsd-3))) - -(define-public go-github-com-stretchr-objx-0.1.0 - (package - (name "go-github-com-stretchr-objx") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/objx") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/objx")) - (home-page "https://github.com/stretchr/objx") - (synopsis "Objx") - (description - "Objx - Go package for dealing with maps, slices, JSON and other data.") - (license license:expat))) - -(define-public go-github-com-stretchr-testify-1.3.0 - (package - (name "go-github-com-stretchr-testify") - (version "1.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/testify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0wjchp2c8xbgcbbq32w3kvblk6q6yn533g78nxl6iskq6y95lxsy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/testify")) - (propagated-inputs - `(("go-github-com-stretchr-objx-0.1.0" - ,go-github-com-stretchr-objx-0.1.0) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.0" - ,go-github-com-davecgh-go-spew-1.1.0))) - (home-page "https://github.com/stretchr/testify") - (synopsis "Testify - Thou Shalt Write Tests") - (description - "** We are working on testify v2 and would love to hear what you'd like to see in -it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -Package testify is a set of packages that provide many tools for testifying that -your code will behave as you intend.") - (license license:expat))) - -(define-public go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f - (package - (name "go-github-com-xeipuuv-gojsonpointer") - (version "0.0.0-20180127040702-4e3ac2762d5f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/xeipuuv/gojsonpointer") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "13y6iq2nzf9z4ls66bfgnnamj2m3438absmbpqry64bpwjfbsi9q")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/xeipuuv/gojsonpointer")) - (home-page "https://github.com/xeipuuv/gojsonpointer") - (synopsis "gojsonpointer") - (description "An implementation of JSON Pointer - Go language") - (license license:asl2.0))) - -(define-public go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415 - (package - (name "go-github-com-xeipuuv-gojsonreference") - (version "0.0.0-20180127040603-bd5ef7bd5415") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/xeipuuv/gojsonreference") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1xby79padc7bmyb8rfbad8wfnfdzpnh51b1n8c0kibch0kwc1db5")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/xeipuuv/gojsonreference")) - (home-page "https://github.com/xeipuuv/gojsonreference") - (synopsis "gojsonreference") - (description "An implementation of JSON Reference - Go language") - (license license:asl2.0))) - -(define-public go-github-com-xeipuuv-gojsonschema-1.2.0 - (package - (name "go-github-com-xeipuuv-gojsonschema") - (version "1.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/xeipuuv/gojsonschema") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1mqiq0r8qw4qlfp3ls8073r6514rmzwrmdn4j33rppk3zh942i6l")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/xeipuuv/gojsonschema")) - (propagated-inputs - `(("go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415" - ,go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415) - ("go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f" - ,go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f) - ("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0))) - (home-page "https://github.com/xeipuuv/gojsonschema") - (synopsis "gojsonschema") - (description - "An implementation of JSON Schema for the Go programming language. Supports -draft-04, draft-06 and draft-07.") - (license license:asl2.0))) - -(define-public go-github-com-opencontainers-image-spec-1.0.3-0.20211202193544-a5463b7f9c84 - (package - (name "go-github-com-opencontainers-image-spec") - (version "1.0.3-0.20211202193544-a5463b7f9c84") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/image-spec") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "11js6467d7fhcvad4aw26d4p0r5b33vf41qhcf1bdwx0y7smd7s4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/image-spec")) - (propagated-inputs - `(("go-github-com-xeipuuv-gojsonschema-1.2.0" - ,go-github-com-xeipuuv-gojsonschema-1.2.0) - ("go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415" - ,go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415) - ("go-github-com-russross-blackfriday-1.6.0" - ,go-github-com-russross-blackfriday-1.6.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-go-digest-1.0.0" - ,go-github-com-opencontainers-go-digest-1.0.0))) - (home-page "https://github.com/opencontainers/image-spec") - (synopsis "OCI Image Format Specification") - (description - "The OCI Image Format project creates and maintains the software shipping -container image format spec (OCI Image Format).") - (license license:asl2.0))) - -(define-public go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417 - (package - (name "go-github-com-opencontainers-runtime-spec") - (version "1.0.3-0.20210326190908-1c3f411f0417") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/runtime-spec") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1azk8z41ga8af35c966f06vrq9y9hwz6mkm59r3py5qaamzim3qq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) - (home-page "https://github.com/opencontainers/runtime-spec") - (synopsis "Open Container Initiative Runtime Specification") - (description - "The @url{https://www.opencontainers.org,Open Container Initiative} develops -specifications for standards on Operating System process and application -containers.") - (license license:asl2.0))) - -(define-public go-github-com-opencontainers-runtime-tools-0.9.1-0.20210326182921-59cdde06764b - (package - (name "go-github-com-opencontainers-runtime-tools") - (version "0.9.1-0.20210326182921-59cdde06764b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/runtime-tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0f4zy6x1rrrg10bphwijic30m3r4mq934zbavnci6jyi41l1w2r0")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/runtime-tools")) - (home-page "https://github.com/opencontainers/runtime-tools") - (synopsis "oci-runtime-tool") - (description - "oci-runtime-tool is a collection of tools for working with the -@url{https://github.com/opencontainers/runtime-spec,OCI runtime specification}. -To build from source code, runtime-tools requires Go 1.10.x or above.") - (license license:asl2.0))) - -(define-public go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20191115151921-52ab43148777") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1kakxbqrb1w2vwg7r1896z68qcx2lfvimsl8cs2niiipbgpi6imx")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-opencontainers-selinux-1.10.0 - (package - (name "go-github-com-opencontainers-selinux") - (version "1.10.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/selinux") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "118q1d9py9zhym4jmyiivasmllkdnkp1zyx4brc6n2cfmxfph6gc")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/selinux")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777" - ,go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777))) - (home-page "https://github.com/opencontainers/selinux") - (synopsis "selinux") - (description "Common SELinux package used across the container ecosystem.") - (license license:asl2.0))) - -(define-public go-github-com-adamkorcz-go-fuzz-headers-0.0.0-20210312213058-32f4d319f0d2 - (package - (name "go-github-com-adamkorcz-go-fuzz-headers") - (version "0.0.0-20210312213058-32f4d319f0d2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/AdamKorcz/go-fuzz-headers") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0r14xxw8c7pkmln0n5vlrahf1785mr7mlyklmfpa11p9kk9pmq5j")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/AdamKorcz/go-fuzz-headers")) - (home-page "https://github.com/AdamKorcz/go-fuzz-headers") - (synopsis #f) - (description #f) - (license #f))) - -(define-public go-github-com-stretchr-testify-1.3.0 - (package - (name "go-github-com-stretchr-testify") - (version "1.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/testify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0wjchp2c8xbgcbbq32w3kvblk6q6yn533g78nxl6iskq6y95lxsy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/testify")) - (propagated-inputs - `(("go-github-com-stretchr-objx-0.1.0" - ,go-github-com-stretchr-objx-0.1.0) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.0" - ,go-github-com-davecgh-go-spew-1.1.0))) - (home-page "https://github.com/stretchr/testify") - (synopsis "Testify - Thou Shalt Write Tests") - (description - "** We are working on testify v2 and would love to hear what you'd like to see in -it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -Package testify is a set of packages that provide many tools for testifying that -your code will behave as you intend.") - (license license:expat))) - -(define-public go-github-com-apex-logs-0.0.7 - (package - (name "go-github-com-apex-logs") - (version "0.0.7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/apex/logs") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1h12q9sb7f4yjizajfxvjllzqab1s8scgqj22prwyfbbqg1ilchv")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/apex/logs")) - (propagated-inputs - `(("go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0" - ,go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0) - ("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0))) - (home-page "https://github.com/apex/logs") - (synopsis "Example") - (description "Go client for @url{https://apex.sh/logs/,Apex Logs}.") - (license license:expat))) - -(define-public go-github-com-aphistic-golf-0.0.0-20180712155816-02c07f170c5a - (package - (name "go-github-com-aphistic-golf") - (version "0.0.0-20180712155816-02c07f170c5a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/aphistic/golf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1qixab9bb29wqbr4nc5j3g25hq1j7am93f181rkj7a4qacncx763")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/aphistic/golf")) - (home-page "https://github.com/aphistic/golf") - (synopsis "golf") - (description - "This package provides logging capabilities using the GELF -(@url{https://www.graylog.org/resources/gelf-2/,https://www.graylog.org/resources/gelf-2/}) -log format") - (license license:expat))) - -(define-public go-github-com-mattn-go-isatty-0.0.5 - (package - (name "go-github-com-mattn-go-isatty") - (version "0.0.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mattn/go-isatty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "114d5xm8rfxplzd7nxz97gfngb4bhqy102szl084d1afcxsvm4aa")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mattn/go-isatty")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223" - ,go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223))) - (home-page "https://github.com/mattn/go-isatty") - (synopsis "go-isatty") - (description "Package isatty implements interface to isatty") - (license license:expat))) - -(define-public go-github-com-mattn-go-colorable-0.1.1 - (package - (name "go-github-com-mattn-go-colorable") - (version "0.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mattn/go-colorable") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0l640974j804c1yyjfgyxqlsivz0yrzmbql4mhcw2azryigkp08p")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mattn/go-colorable")) - (propagated-inputs - `(("go-github-com-mattn-go-isatty-0.0.5" - ,go-github-com-mattn-go-isatty-0.0.5))) - (home-page "https://github.com/mattn/go-colorable") - (synopsis "go-colorable") - (description "Colorable writer for windows.") - (license license:expat))) - -(define-public go-github-com-mgutz-ansi-0.0.0-20170206155736-9520e82c474b - (package - (name "go-github-com-mgutz-ansi") - (version "0.0.0-20170206155736-9520e82c474b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mgutz/ansi") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "00bz22314j26736w1f0q4jy9d9dfaml17vn890n5zqy3cmvmww1j")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mgutz/ansi")) - (home-page "https://github.com/mgutz/ansi") - (synopsis "ansi") - (description - "Package ansi is a small, fast library to create ANSI colored strings and codes.") - (license license:expat))) - -(define-public go-github-com-fsnotify-fsnotify-1.4.7 - (package - (name "go-github-com-fsnotify-fsnotify") - (version "1.4.7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/fsnotify/fsnotify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/fsnotify/fsnotify")) - (home-page "https://github.com/fsnotify/fsnotify") - (synopsis "File system notifications for Go") - (description - "Package fsnotify provides a platform-independent interface for file system -notifications.") - (license license:bsd-3))) - -(define-public go-github-com-hpcloud-tail-1.0.0 - (package - (name "go-github-com-hpcloud-tail") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hpcloud/tail") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1njpzc0pi1acg5zx9y6vj9xi6ksbsc5d387rd6904hy6rh2m6kn0")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hpcloud/tail")) - (home-page "https://github.com/hpcloud/tail") - (synopsis "Go package for tail-ing files") - (description - "This package provides a Go package striving to emulate the features of the BSD -@code{tail} program.") - (license license:expat))) - -(define-public go-github-com-onsi-ginkgo-1.6.0 - (package - (name "go-github-com-onsi-ginkgo") - (version "1.6.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/onsi/ginkgo") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0x0gc89vgq38xhgmi2h22bhr73cf2gmk42g89nz89k8dgg9hhr25")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/onsi/ginkgo")) - (home-page "https://github.com/onsi/ginkgo") - (synopsis "Ginkgo 2.0 Release Candidate is available!") - (description "Ginkgo is a BDD-style testing framework for Golang") - (license license:expat))) - -(define-public go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd - (package - (name "go-golang-org-x-net") - (version "0.0.0-20180906233101-161cd47e91fd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0254ld010iijygbzykib2vags1dc0wlmcmhgh4jl8iny159lhbcv")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20180909124046-d0be0721c37e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "081wyvfnlf842dqg03raxfz6lldlxpmyh1prix9lmrrm65arxb12")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-gopkg-in-fsnotify-v1-1.4.7 - (package - (name "go-gopkg-in-fsnotify-v1") - (version "1.4.7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/fsnotify.v1") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) - (build-system go-build-system) - (arguments - '(#:import-path - "gopkg.in/fsnotify.v1" - #:unpack-path - "gopkg.in/fsnotify.v1")) - (home-page "https://gopkg.in/fsnotify.v1") - (synopsis "File system notifications for Go") - (description - "Package fsnotify provides a platform-independent interface for file system -notifications.") - (license license:bsd-3))) - -(define-public go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7 - (package - (name "go-gopkg-in-tomb-v1") - (version "1.0.0-20141024135613-dd632973f1e7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/tomb.v1") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1lqmq1ag7s4b3gc3ddvr792c5xb5k6sfn0cchr3i2s7f1c231zjv")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/tomb.v1" #:unpack-path "gopkg.in/tomb.v1")) - (home-page "https://gopkg.in/tomb.v1") - (synopsis "Installation and usage") - (description - "The tomb package offers a conventional API for clean goroutine termination.") - (license license:bsd-3))) - -(define-public go-gopkg-in-yaml-v2-2.2.1 - (package - (name "go-gopkg-in-yaml-v2") - (version "2.2.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0dwjrs2lp2gdlscs7bsrmyc5yf6mm4fvgw71bzr9mv2qrd2q73s1")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v2") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language.") - (license license:asl2.0))) - -(define-public go-github-com-onsi-gomega-1.5.0 - (package - (name "go-github-com-onsi-gomega") - (version "1.5.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/onsi/gomega") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1n7i4hksdgv410m43v2sw14bl5vy59dkp6nlw5l76nibbh37syr9")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/onsi/gomega")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1) - ("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" - ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) - ("go-gopkg-in-fsnotify-v1-1.4.7" ,go-gopkg-in-fsnotify-v1-1.4.7) - ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e" - ,go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e) - ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" - ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) - ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" - ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) - ("go-github-com-onsi-ginkgo-1.6.0" ,go-github-com-onsi-ginkgo-1.6.0) - ("go-github-com-hpcloud-tail-1.0.0" ,go-github-com-hpcloud-tail-1.0.0) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0) - ("go-github-com-fsnotify-fsnotify-1.4.7" - ,go-github-com-fsnotify-fsnotify-1.4.7))) - (home-page "https://github.com/onsi/gomega") - (synopsis ": a BDD Testing Framework for Golang") - (description - "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library.") - (license license:expat))) - -(define-public go-github-com-sergi-go-diff-1.0.0 - (package - (name "go-github-com-sergi-go-diff") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sergi/go-diff") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0swiazj8wphs2zmk1qgq75xza6m19snif94h2m6fi8dqkwqdl7c7")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/sergi/go-diff")) - (home-page "https://github.com/sergi/go-diff") - (synopsis "go-diff") - (description - "go-diff offers algorithms to perform operations required for synchronizing plain -text:") - (license license:expat))) - -(define-public go-golang-org-x-crypto-0.0.0-20190426145343-a29dc8fdc734 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20190426145343-a29dc8fdc734") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "07f0jj4haqs0ywc1akk1qjwn5msl2j0pry1rxjkkbfcq4r6ihc1p")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" - ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) - ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" - ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-github-com-aphistic-sweet-0.2.0 - (package - (name "go-github-com-aphistic-sweet") - (version "0.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/aphistic/sweet") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1bb4qagfxf6byqn2yx0vq24xfvisz3ah4w6bvqclc8cklvfngw43")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/aphistic/sweet")) - (propagated-inputs - `(("go-golang-org-x-crypto-0.0.0-20190426145343-a29dc8fdc734" - ,go-golang-org-x-crypto-0.0.0-20190426145343-a29dc8fdc734) - ("go-github-com-sergi-go-diff-1.0.0" - ,go-github-com-sergi-go-diff-1.0.0) - ("go-github-com-onsi-gomega-1.5.0" ,go-github-com-onsi-gomega-1.5.0) - ("go-github-com-mgutz-ansi-0.0.0-20170206155736-9520e82c474b" - ,go-github-com-mgutz-ansi-0.0.0-20170206155736-9520e82c474b) - ("go-github-com-mattn-go-colorable-0.1.1" - ,go-github-com-mattn-go-colorable-0.1.1))) - (home-page "https://github.com/aphistic/sweet") - (synopsis "sweet") - (description - "Sweet is a pluggable test runner capable of hooking into standard Go tests. It -attempts to provide access to the standard Go test tool as close as possible -while adding support for test suites and plugins that can hook into test results -to add additional functionality.") - (license license:expat))) - -(define-public go-github-com-jmespath-go-jmespath-0.0.0-20180206201540-c2b33e8439af - (package - (name "go-github-com-jmespath-go-jmespath") - (version "0.0.0-20180206201540-c2b33e8439af") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/jmespath/go-jmespath") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1r6w7ydx8ydryxk3sfhzsk8m6f1nsik9jg3i1zhi69v4kfl4d5cz")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/jmespath/go-jmespath")) - (home-page "https://github.com/jmespath/go-jmespath") - (synopsis "go-jmespath - A JMESPath implementation in Go") - (description - "go-jmespath is a GO implementation of JMESPath, which is a query language for -JSON. It will take a JSON document and transform it into another JSON document -through a JMESPath expression.") - (license license:asl2.0))) - -(define-public go-github-com-aws-aws-sdk-go-1.20.6 - (package - (name "go-github-com-aws-aws-sdk-go") - (version "1.20.6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/aws/aws-sdk-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "016vy5s9finyfgh08j7rvn2pnwymdgj2ydr59w57pysnri87mdwx")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/aws/aws-sdk-go")) - (propagated-inputs - `(("go-github-com-jmespath-go-jmespath-0.0.0-20180206201540-c2b33e8439af" - ,go-github-com-jmespath-go-jmespath-0.0.0-20180206201540-c2b33e8439af))) - (home-page "https://github.com/aws/aws-sdk-go") - (synopsis "AWS SDK for Go") - (description - "Package sdk is the official AWS SDK for the Go programming language.") - (license license:asl2.0))) - -(define-public go-github-com-aybabtme-rgbterm-0.0.0-20170906152045-cc83f3b3ce59 - (package - (name "go-github-com-aybabtme-rgbterm") - (version "0.0.0-20170906152045-cc83f3b3ce59") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/aybabtme/rgbterm") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0wvmxvjn64968ikvnxrflb1x8rlcwzpfl53fzbxff2axbx9lq50q")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/aybabtme/rgbterm")) - (home-page "https://github.com/aybabtme/rgbterm") - (synopsis "RGB terminal") - (description - "Package rgbterm colorizes bytes and strings using RGB colors, for a full range -of pretty terminal strings.") - (license license:expat))) - -(define-public go-github-com-fatih-color-1.7.0 - (package - (name "go-github-com-fatih-color") - (version "1.7.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/fatih/color") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0v8msvg38r8d1iiq2i5r4xyfx0invhc941kjrsg5gzwvagv55inv")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/fatih/color")) - (home-page "https://github.com/fatih/color") - (synopsis "color") - (description - "Package color is an ANSI color package to output colorized or SGR defined output -to the standard output. The API can be used in several way, pick one that suits -you.") - (license license:expat))) - -(define-public go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515 - (package - (name "go-github-com-kr-logfmt") - (version "0.0.0-20140226030751-b84e30acd515") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/logfmt") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "02ldzxgznrfdzvghfraslhgp19la1fczcbzh7wm2zdc6lmpd1qq9")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/logfmt")) - (home-page "https://github.com/kr/logfmt") - (synopsis #f) - (description "Package implements the decoding of logfmt key-value pairs.") - (license license:expat))) - -(define-public go-github-com-go-logfmt-logfmt-0.4.0 - (package - (name "go-github-com-go-logfmt-logfmt") - (version "0.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/go-logfmt/logfmt") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "06smxc112xmixz78nyvk3b2hmc7wasf2sl5vxj1xz62kqcq9lzm9")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/go-logfmt/logfmt")) - (propagated-inputs - `(("go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515" - ,go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515))) - (home-page "https://github.com/go-logfmt/logfmt") - (synopsis "logfmt") - (description - "Package logfmt implements utilities to marshal and unmarshal data in the logfmt -format. The logfmt format records key/value pairs in a way that balances -readability for humans and simplicity of computer parsing. It is most commonly -used as a more human friendly alternative to JSON for structured logging.") - (license license:expat))) - -(define-public go-github-com-golang-protobuf-1.3.1 - (package - (name "go-github-com-golang-protobuf") - (version "1.3.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "15am4s4646qy6iv0g3kkqq52rzykqjhm4bf08dk0fy2r58knpsyl")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code -github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-github-com-google-uuid-1.1.1 - (package - (name "go-github-com-google-uuid") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/uuid") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hfxcf9frkb57k6q0rdkrmnfs78ms21r1qfk9fhlqga2yh5xg8zb")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/uuid")) - (home-page "https://github.com/google/uuid") - (synopsis "uuid") - (description "Package uuid generates and inspects UUIDs.") - (license license:bsd-3))) - -(define-public go-github-com-jpillora-backoff-0.0.0-20180909062703-3050d21c67d7 - (package - (name "go-github-com-jpillora-backoff") - (version "0.0.0-20180909062703-3050d21c67d7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/jpillora/backoff") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1nxapdx9xg5gwiscfhq7m0w14hj4gaxb4avmgf1mx9zd3jnw9jxv")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/jpillora/backoff")) - (home-page "https://github.com/jpillora/backoff") - (synopsis "Backoff") - (description - "Package backoff provides an exponential-backoff implementation.") - (license license:expat))) - -(define-public go-github-com-kr-pretty-0.2.0 - (package - (name "go-github-com-kr-pretty") - (version "0.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/pretty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ywbfzz1h3a3qd8rpkiqwi1dm4w8ls9ijb4x1b7567grns9f0vnp")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/pretty")) - (propagated-inputs - `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) - (home-page "https://github.com/kr/pretty") - (synopsis #f) - (description - "Package pretty provides pretty-printing for Go values. This is useful during -debugging, to avoid wrapping long output lines in the terminal.") - (license license:expat))) - -(define-public go-github-com-mattn-go-colorable-0.1.2 - (package - (name "go-github-com-mattn-go-colorable") - (version "0.1.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mattn/go-colorable") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0512jm3wmzkkn7d99x9wflyqf48n5ri3npy1fqkq6l6adc5mni3n")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mattn/go-colorable")) - (propagated-inputs - `(("go-github-com-mattn-go-isatty-0.0.8" - ,go-github-com-mattn-go-isatty-0.0.8))) - (home-page "https://github.com/mattn/go-colorable") - (synopsis "go-colorable") - (description "Colorable writer for windows.") - (license license:expat))) - -(define-public go-github-com-pkg-errors-0.8.1 - (package - (name "go-github-com-pkg-errors") - (version "0.8.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pkg/errors") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0g5qcb4d4fd96midz0zdk8b9kz8xkzwfa8kr1cliqbg8sxsy5vd1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pkg/errors")) - (home-page "https://github.com/pkg/errors") - (synopsis "errors") - (description "Package errors provides simple error handling primitives.") - (license license:bsd-2))) - -(define-public go-github-com-rogpeppe-fastuuid-1.1.0 - (package - (name "go-github-com-rogpeppe-fastuuid") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/rogpeppe/fastuuid") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1jlif5pxyz3md02ij93kd2y2j1zz0ajc9k8azvn83vv6l3r5c1zg")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/rogpeppe/fastuuid")) - (home-page "https://github.com/rogpeppe/fastuuid") - (synopsis "fastuuid") - (description - "Package fastuuid provides fast UUID generation of 192 bit universally unique -identifiers.") - (license license:bsd-3))) - -(define-public go-github-com-smartystreets-go-aws-auth-0.0.0-20180515143844-0c1422d1fdb9 - (package - (name "go-github-com-smartystreets-go-aws-auth") - (version "0.0.0-20180515143844-0c1422d1fdb9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/smarty-archives/go-aws-auth") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0krfdpgn3gfii1z9fi8ydfw0wwfqyvp6w3rji7w92m528zkjl93d")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/smartystreets/go-aws-auth")) - (home-page "https://github.com/smartystreets/go-aws-auth") - (synopsis "go-aws-auth") - (description - "Package awsauth implements AWS request signing using Signed Signature Version 2, -Signed Signature Version 3, and Signed Signature Version 4. Supports S3 and -STS.") - (license license:expat))) - -(define-public go-github-com-smartystreets-assertions-1.0.0 - (package - (name "go-github-com-smartystreets-assertions") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/smartystreets/assertions") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1188hs39zvil41sdnxs83h1hp319lfyc5n2rvd1xnhz1dh5qjjh4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/smartystreets/assertions")) - (home-page "https://github.com/smartystreets/assertions") - (synopsis #f) - (description - "Package assertions contains the implementations for all assertions which are -referenced in goconvey's `convey` package -(github.com/smartystreets/goconvey/convey) and gunit -(github.com/smartystreets/gunit) for use with the So(...) method. They can also -be used in traditional Go test functions and even in applications.") - (license license:expat))) - -(define-public go-github-com-smartystreets-gunit-1.0.0 - (package - (name "go-github-com-smartystreets-gunit") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/smartystreets/gunit") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "11d09rl5qqpj36a311pjj8w5jkj83d5b8gdcsx8f1zn4j924sm5d")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/smartystreets/gunit")) - (propagated-inputs - `(("go-github-com-smartystreets-assertions-1.0.0" - ,go-github-com-smartystreets-assertions-1.0.0))) - (home-page "https://github.com/smartystreets/gunit") - (synopsis "gunit") - (description - "Package gunit provides \"testing\" package hooks and convenience functions for -writing tests in an xUnit style. See the README file and the examples folder -for examples.") - (license license:expat))) - -(define-public go-github-com-stretchr-testify-1.4.0 - (package - (name "go-github-com-stretchr-testify") - (version "1.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/testify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "187i5g88sxfy4vxpm7dw1gwv29pa2qaq475lxrdh5livh69wqfjb")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/testify")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) - ("go-github-com-stretchr-objx-0.1.0" - ,go-github-com-stretchr-objx-0.1.0) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.0" - ,go-github-com-davecgh-go-spew-1.1.0))) - (home-page "https://github.com/stretchr/testify") - (synopsis "Testify - Thou Shalt Write Tests") - (description - "** We are working on testify v2 and would love to hear what you'd like to see in -it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -Package testify is a set of packages that provide many tools for testifying that -your code will behave as you intend.") - (license license:expat))) - -(define-public go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0 - (package - (name "go-github-com-tj-assert") - (version "0.0.0-20171129193455-018094318fb0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/tj/assert") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "15ika7izp5hkd10dm30apwfvpm0d1yl2rnxs6896q0svz9zvi2z3")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/tj/assert")) - (home-page "https://github.com/tj/assert") - (synopsis "assert") - (description - "Package assert implements the same assertions as the `assert` package but stops -test execution when a test fails.") - (license license:expat))) - -(define-public go-github-com-tj-go-elastic-0.0.0-20171221160941-36157cbbebc2 - (package - (name "go-github-com-tj-go-elastic") - (version "0.0.0-20171221160941-36157cbbebc2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/tj/go-elastic") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1r94vc4hbfvqvjz74n4mvsw4dy3vbyzlivb90kyn8vn76a4wqk69")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/tj/go-elastic")) - (home-page "https://github.com/tj/go-elastic") - (synopsis "go-elastic") - (description - "Package elastic provides an Elasticsearch client with AWS sigv4 support.") - (license license:expat))) - -(define-public go-github-com-tj-go-kinesis-0.0.0-20171128231115-08b17f58cb1b - (package - (name "go-github-com-tj-go-kinesis") - (version "0.0.0-20171128231115-08b17f58cb1b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/tj/go-kinesis") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "108c6p5j6rhhc2cnc2v5368yfsw73y6lzlvz02vpvvjph8rhmld4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/tj/go-kinesis")) - (home-page "https://github.com/tj/go-kinesis") - (synopsis "go-kinesis") - (description - "Package kinesis implements a batch producer built on top of the official AWS -SDK.") - (license license:expat))) - -(define-public go-github-com-tj-go-spin-1.1.0 - (package - (name "go-github-com-tj-go-spin") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/tj/go-spin") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "11xr67991m5pwsy1dira3iwd0sr55vmn1cyjwmlqziw4bwpym64s")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/tj/go-spin")) - (home-page "https://github.com/tj/go-spin") - (synopsis #f) - (description #f) - (license #f))) - -(define-public go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190620200207-3b0461eec859") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0l00c8l0a8xnv6qdpwfzxxsr58jggacgzdrwiprrfx2xqm37b6d5")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20180917221912-90fa682c2a6e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-golang-org-x-text-0.3.2 - (package - (name "go-golang-org-x-text") - (version "0.3.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0flv9idw0jm5nm8lx25xqanbkqgfiym6619w575p7nrdh0riqwqh")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/text")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" - ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) - (home-page "https://golang.org/x/text") - (synopsis "Go Text") - (description - "text is a repository of text-related packages related to internationalization -(i18n) and localization (l10n), such as character encodings, text -transformations, and locale-specific text handling.") - (license license:bsd-3))) - -(define-public go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15 - (package - (name "go-gopkg-in-check-v1") - (version "1.0.0-20190902080502-41f04d3bba15") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/check.v1") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0vfk9czmlxmp6wndq8k17rhnjxal764mxfhrccza7nwlia760pjy")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) - (home-page "https://gopkg.in/check.v1") - (synopsis "Instructions") - (description - "Package check is a rich testing extension for Go's testing package.") - (license license:bsd-2))) - -(define-public go-github-com-apex-log-1.4.0 - (package - (name "go-github-com-apex-log") - (version "1.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/apex/log") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0711096f04dyjk2vgj5b50491fl36wciwbq80xwvns5wwkqdg2z5")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/apex/log")) - (propagated-inputs - `(("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" - ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) - ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) - ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" - ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) - ("go-github-com-tj-go-spin-1.1.0" ,go-github-com-tj-go-spin-1.1.0) - ("go-github-com-tj-go-kinesis-0.0.0-20171128231115-08b17f58cb1b" - ,go-github-com-tj-go-kinesis-0.0.0-20171128231115-08b17f58cb1b) - ("go-github-com-tj-go-elastic-0.0.0-20171221160941-36157cbbebc2" - ,go-github-com-tj-go-elastic-0.0.0-20171221160941-36157cbbebc2) - ("go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0" - ,go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0) - ("go-github-com-stretchr-testify-1.4.0" - ,go-github-com-stretchr-testify-1.4.0) - ("go-github-com-smartystreets-gunit-1.0.0" - ,go-github-com-smartystreets-gunit-1.0.0) - ("go-github-com-smartystreets-go-aws-auth-0.0.0-20180515143844-0c1422d1fdb9" - ,go-github-com-smartystreets-go-aws-auth-0.0.0-20180515143844-0c1422d1fdb9) - ("go-github-com-rogpeppe-fastuuid-1.1.0" - ,go-github-com-rogpeppe-fastuuid-1.1.0) - ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) - ("go-github-com-mattn-go-colorable-0.1.2" - ,go-github-com-mattn-go-colorable-0.1.2) - ("go-github-com-kr-pretty-0.2.0" ,go-github-com-kr-pretty-0.2.0) - ("go-github-com-jpillora-backoff-0.0.0-20180909062703-3050d21c67d7" - ,go-github-com-jpillora-backoff-0.0.0-20180909062703-3050d21c67d7) - ("go-github-com-google-uuid-1.1.1" ,go-github-com-google-uuid-1.1.1) - ("go-github-com-golang-protobuf-1.3.1" - ,go-github-com-golang-protobuf-1.3.1) - ("go-github-com-go-logfmt-logfmt-0.4.0" - ,go-github-com-go-logfmt-logfmt-0.4.0) - ("go-github-com-fatih-color-1.7.0" ,go-github-com-fatih-color-1.7.0) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1) - ("go-github-com-aybabtme-rgbterm-0.0.0-20170906152045-cc83f3b3ce59" - ,go-github-com-aybabtme-rgbterm-0.0.0-20170906152045-cc83f3b3ce59) - ("go-github-com-aws-aws-sdk-go-1.20.6" - ,go-github-com-aws-aws-sdk-go-1.20.6) - ("go-github-com-aphistic-sweet-0.2.0" - ,go-github-com-aphistic-sweet-0.2.0) - ("go-github-com-aphistic-golf-0.0.0-20180712155816-02c07f170c5a" - ,go-github-com-aphistic-golf-0.0.0-20180712155816-02c07f170c5a) - ("go-github-com-apex-logs-0.0.7" ,go-github-com-apex-logs-0.0.7))) - (home-page "https://github.com/apex/log") - (synopsis "Handlers") - (description - "Package log implements a simple structured logging API designed with few -assumptions. Designed for centralized logging solutions such as Kinesis which -require encoding and decoding before fanning-out to handlers.") - (license license:expat))) - -(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0 - (package - (name "go-github-com-cpuguy83-go-md2man-v2") - (version "2.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cpuguy83/go-md2man") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) - (propagated-inputs - `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" - ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) - ("go-github-com-russross-blackfriday-v2-2.0.1" - ,go-github-com-russross-blackfriday-v2-2.0.1) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0))) - (home-page "https://github.com/cpuguy83/go-md2man") - (synopsis "go-md2man") - (description "Converts markdown into roff (man pages).") - (license license:expat))) - -(define-public go-github-com-cyphar-filepath-securejoin-0.2.2 - (package - (name "go-github-com-cyphar-filepath-securejoin") - (version "0.2.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cyphar/filepath-securejoin") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0id32zjb92wm569m29nfrzz5mw9z1glr3klayr6j134pp4h1sgq4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/cyphar/filepath-securejoin")) - (home-page "https://github.com/cyphar/filepath-securejoin") - (synopsis #f) - (description - "Package securejoin is an implementation of the hopefully-soon-to-be-included -SecureJoin helper that is meant to be part of the \"path/filepath\" package. The -purpose of this project is to provide a PoC implementation to make the -SecureJoin proposal -(@url{https://github.com/golang/go/issues/20126,https://github.com/golang/go/issues/20126}) -more tangible.") - (license license:bsd-3))) - -(define-public go-github-com-docker-go-units-0.4.0 - (package - (name "go-github-com-docker-go-units") - (version "0.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/docker/go-units") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0k8gja8ql4pqg5rzmqvka42vjfs6rzablak87whcnqba6qxpimvz")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/docker/go-units")) - (home-page "https://github.com/docker/go-units") - (synopsis "Introduction") - (description - "Package units provides helper function to parse and print size and time units in -human-readable format.") - (license license:asl2.0))) - -(define-public go-google-golang-org-protobuf-1.23.0 - (package - (name "go-google-golang-org-protobuf") - (version "1.23.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "03yan0m1v0zmlr935p4n24fd376mznsg85zy8sywbgisls4s1bzy")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.0" - ,go-github-com-golang-protobuf-1.4.0))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is -a language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol -buffer developer guide} for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.4.2 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0m5z81im4nsyfgarjhppayk4hqnrwswr3nix9mj8pff8x9jvcjqw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.23.0" - ,go-google-golang-org-protobuf-1.23.0) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code -github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-github-com-google-go-cmp-0.5.0 - (package - (name "go-github-com-google-go-cmp") - (version "0.5.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "04pzp583p6b32y34c6jygfxarff9qjs39rarvfh6467z24sdd9k4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically -equal.") - (license license:bsd-3))) - -(define-public go-github-com-klauspost-compress-1.11.3 - (package - (name "go-github-com-klauspost-compress") - (version "1.11.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/klauspost/compress") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "04wpilw6072fh2wd492ma1nw4br7bvz466mj0vi2m1g4w6d0z88z")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/klauspost/compress")) - (home-page "https://github.com/klauspost/compress") - (synopsis "compress") - (description "This package provides various compression algorithms.") - (license license:expat))) - -(define-public go-github-com-klauspost-pgzip-1.2.4 - (package - (name "go-github-com-klauspost-pgzip") - (version "1.2.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/klauspost/pgzip") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0mnhfdn0isbkra455jynqjbmrwymx09shlbzbyvgfycih3nbrif0")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/klauspost/pgzip")) - (home-page "https://github.com/klauspost/pgzip") - (synopsis "pgzip") - (description - "Package pgzip implements reading and writing of gzip format compressed files, as -specified in @url{https://rfc-editor.org/rfc/rfc1952.html,RFC 1952}.") - (license license:expat))) - -(define-public go-github-com-creack-pty-1.1.9 - (package - (name "go-github-com-creack-pty") - (version "1.1.9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/creack/pty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1v52599qq76dwq742mffakzj6mxqqccv2szn3hjicjld56nmd2d3")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/creack/pty")) - (home-page "https://github.com/creack/pty") - (synopsis "pty") - (description - "Package pty provides functions for working with Unix terminals.") - (license license:expat))) - -(define-public go-github-com-kr-text-0.2.0 - (package - (name "go-github-com-kr-text") - (version "0.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hf58ypz6rxsw6nx3i856whir9lvy4sdx946wbw1nfaf2rdmr9vx")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/text")) - (propagated-inputs - `(("go-github-com-creack-pty-1.1.9" ,go-github-com-creack-pty-1.1.9))) - (home-page "https://github.com/kr/text") - (synopsis #f) - (description - "Package text provides rudimentary functions for manipulating text in paragraphs.") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20200116001909-b77594299b42 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200116001909-b77594299b42") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0isfm6kmh4fjhh6m7mrb3zvdjka2y31c5habr5kydl7rg0lwkabv")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-mattn-go-isatty-0.0.12 - (package - (name "go-github-com-mattn-go-isatty") - (version "0.0.12") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mattn/go-isatty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1dfsh27d52wmz0nmmzm2382pfrs2fcijvh6cgir7jbb4pnigr5w4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mattn/go-isatty")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20200116001909-b77594299b42" - ,go-golang-org-x-sys-0.0.0-20200116001909-b77594299b42))) - (home-page "https://github.com/mattn/go-isatty") - (synopsis "go-isatty") - (description "Package isatty implements interface to isatty") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20200223170610-d5e6a3e2c0ae - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200223170610-d5e6a3e2c0ae") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0lz7vm5dz2p14fzq2j4m1l9p392cl0fa73aaf45gln07ylfajk4n")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-mattn-go-colorable-0.1.6 - (package - (name "go-github-com-mattn-go-colorable") - (version "0.1.6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mattn/go-colorable") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0zv9ix7g0qf71jdhv7gbab9hjfkgbxl22kwhpz9ck1y6m4g1zxaw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mattn/go-colorable")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20200223170610-d5e6a3e2c0ae" - ,go-golang-org-x-sys-0.0.0-20200223170610-d5e6a3e2c0ae) - ("go-github-com-mattn-go-isatty-0.0.12" - ,go-github-com-mattn-go-isatty-0.0.12))) - (home-page "https://github.com/mattn/go-colorable") - (synopsis "go-colorable") - (description "Colorable writer for windows.") - (license license:expat))) - -(define-public go-github-com-mohae-deepcopy-0.0.0-20170929034955-c48cc78d4826 - (package - (name "go-github-com-mohae-deepcopy") - (version "0.0.0-20170929034955-c48cc78d4826") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mohae/deepcopy") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0jdhsz0hsbn0k45rmvm39knbvs024j24ay2q65k5ih8ql8m2c0sd")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mohae/deepcopy")) - (home-page "https://github.com/mohae/deepcopy") - (synopsis "deepCopy") - (description - "deepcopy makes deep copies of things. A standard copy will copy the pointers: -deep copy copies the values pointed to. Unexported field values are not copied.") - (license license:expat))) - -(define-public go-github-com-kr-pty-1.1.1 - (package - (name "go-github-com-kr-pty") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/pty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0383f0mb9kqjvncqrfpidsf8y6ns5zlrc91c6a74xpyxjwvzl2y6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/pty")) - (home-page "https://github.com/kr/pty") - (synopsis "pty") - (description - "Package pty is a wrapper for github.com/creack/pty, which provides functions for -working with Unix terminals.") - (license license:expat))) - -(define-public go-github-com-kr-text-0.1.0 - (package - (name "go-github-com-kr-text") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1gm5bsl01apvc84bw06hasawyqm4q84vx1pm32wr9jnd7a8vjgj1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/text")) - (propagated-inputs - `(("go-github-com-kr-pty-1.1.1" ,go-github-com-kr-pty-1.1.1))) - (home-page "https://github.com/kr/text") - (synopsis #f) - (description - "Package text provides rudimentary functions for manipulating text in paragraphs.") - (license license:expat))) - -(define-public go-github-com-niemeyer-pretty-0.0.0-20200227124842-a10e7caefd8e - (package - (name "go-github-com-niemeyer-pretty") - (version "0.0.0-20200227124842-a10e7caefd8e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/niemeyer/pretty") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1jmazh4xzaa3v6g46hz60q2z7nmqs9l9cxdzmmscn3kbcs2znq4v")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/niemeyer/pretty")) - (propagated-inputs - `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) - (home-page "https://github.com/niemeyer/pretty") - (synopsis #f) - (description - "Package pretty provides pretty-printing for Go values. This is useful during -debugging, to avoid wrapping long output lines in the terminal.") - (license license:expat))) - -(define-public go-github-com-opencontainers-go-digest-1.0.0 - (package - (name "go-github-com-opencontainers-go-digest") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/go-digest") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0i5acjajvr6hi9zb7gxwifd8w28y884cv7cx36adj8lngj647xbi")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/go-digest")) - (home-page "https://github.com/opencontainers/go-digest") - (synopsis "go-digest") - (description - "Package digest provides a generalized type to opaquely represent message digests -and their operations within the registry. The Digest type is designed to serve -as a flexible identifier in a content-addressable system. More importantly, it -provides tools and wrappers to work with hash.Hash-based digests with little -effort.") - (license (list license:asl2.0 license:cc-by-sa4.0)))) - -(define-public go-github-com-opencontainers-image-spec-1.0.1 - (package - (name "go-github-com-opencontainers-image-spec") - (version "1.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/image-spec") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "03dvbj3dln8c55v9gp79mgmz2yi2ws3r08iyz2fk41y3i22iaw1q")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/image-spec")) - (home-page "https://github.com/opencontainers/image-spec") - (synopsis "OCI Image Format Specification") - (description - "The OCI Image Format project creates and maintains the software shipping -container image format spec (OCI Image Format).") - (license license:asl2.0))) - -(define-public go-github-com-opencontainers-runc-1.0.0-rc90 - (package - (name "go-github-com-opencontainers-runc") - (version "1.0.0-rc90") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/runc") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0pi3rvj585997m4z9ljkxz2z9yxf9p2jr0pmqbqrc7bc95f5hagk")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/runc")) - (home-page "https://github.com/opencontainers/runc") - (synopsis "runc") - (description - "@code{runc} is a CLI tool for spawning and running containers on Linux according -to the OCI specification.") - (license license:asl2.0))) - -(define-public go-github-com-opencontainers-runtime-spec-1.0.2 - (package - (name "go-github-com-opencontainers-runtime-spec") - (version "1.0.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/runtime-spec") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19w981vcmd5lp2hy0630x6ayb8zz17n2vxqm2py5mg945xflcizg")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) - (home-page "https://github.com/opencontainers/runtime-spec") - (synopsis "Open Container Initiative Runtime Specification") - (description - "The @url{https://www.opencontainers.org,Open Container Initiative} develops -specifications for standards on Operating System process and application -containers.") - (license license:asl2.0))) - -(define-public go-github-com-pkg-errors-0.9.1 - (package - (name "go-github-com-pkg-errors") - (version "0.9.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pkg/errors") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1761pybhc2kqr6v5fm8faj08x9bql8427yqg6vnfv6nhrasx1mwq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pkg/errors")) - (home-page "https://github.com/pkg/errors") - (synopsis "errors") - (description "Package errors provides simple error handling primitives.") - (license license:bsd-2))) - -(define-public go-github-com-rootless-containers-proto-0.1.0 - (package - (name "go-github-com-rootless-containers-proto") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/rootless-containers/proto") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1yik3b2fxpdkhplni8saabpvf43wnnz4wh6fapak29mkj3lx3mfh")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/rootless-containers/proto")) - (home-page "https://github.com/rootless-containers/proto") - (synopsis #f) - (description - "This project contains the -@url{https://developers.google.com/protocol-buffers/,protobuf} definition of the -@code{user.rootlesscontainers} extended attribute. The main purpose of this -attribute is to allow for a interoperable and standardised way of emulating -persistent syscalls in a @url{https://rootlesscontaine.rs/,rootless container} -(syscalls such as @code{chown(2)} which would ordinarily fail).") - (license license:asl2.0))) - -(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.3 - (package - (name "go-github-com-konsorten-go-windows-terminal-sequences") - (version "1.0.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/konsorten/go-windows-terminal-sequences") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1yrsd4s8vhjnxhwbigirymz89dn6qfjnhn28i33vvvdgf96j6ypl")))) - (build-system go-build-system) - (arguments - '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) - (home-page "https://github.com/konsorten/go-windows-terminal-sequences") - (synopsis "Windows Terminal Sequences") - (description - "This library allow for enabling Windows terminal color support for Go.") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190422165155-953cdadca894") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0gkha4whk8xkcv3isigbs250akag99isxnd3v9xmy0kl3g88hxy1")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-sirupsen-logrus-1.6.0 - (package - (name "go-github-com-sirupsen-logrus") - (version "1.6.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sirupsen/logrus") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1zf9is1yxxnna0d1pyag2m9ziy3l27zb2j92p9msm1gx5jjrvzzj")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/sirupsen/logrus")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894" - ,go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894) - ("go-github-com-stretchr-testify-1.2.2" - ,go-github-com-stretchr-testify-1.2.2) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.3" - ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.3) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/sirupsen/logrus") - (synopsis "Logrus") - (description - "Package logrus is a structured logger for Go, completely API compatible with the -standard library logger.") - (license license:expat))) - -(define-public go-github-com-davecgh-go-spew-1.1.0 - (package - (name "go-github-com-davecgh-go-spew") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/davecgh/go-spew") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/davecgh/go-spew")) - (home-page "https://github.com/davecgh/go-spew") - (synopsis "go-spew") - (description - "Go-spew implements a deep pretty printer for Go data structures to aid in -debugging. A comprehensive suite of tests with 100% test coverage is provided -to ensure proper functionality. See @code{test_coverage.txt} for the gocov -coverage report. Go-spew is licensed under the liberal ISC license, so it may -be used in open source or commercial projects.") - (license license:isc))) - -(define-public go-github-com-stretchr-objx-0.1.0 - (package - (name "go-github-com-stretchr-objx") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/objx") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/objx")) - (home-page "https://github.com/stretchr/objx") - (synopsis "Objx") - (description - "Objx - Go package for dealing with maps, slices, JSON and other data.") - (license license:expat))) - -(define-public go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c - (package - (name "go-gopkg-in-yaml-v3") - (version "3.0.0-20200313102051-9f266ea9e77c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v3") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1bbai3lzb50m0x2vwsdbagrbhvfylj9k1m32hgbqwldqx4p9ay35")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v3") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language.") - (license license:expat))) - -(define-public go-github-com-stretchr-testify-1.6.1 - (package - (name "go-github-com-stretchr-testify") - (version "1.6.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/testify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1yhiqqzjvi63pf01rgzx68gqkkvjx03fvl5wk30br5l6s81s090l")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/testify")) - (propagated-inputs - `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" - ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) - ("go-github-com-stretchr-objx-0.1.0" - ,go-github-com-stretchr-objx-0.1.0) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.0" - ,go-github-com-davecgh-go-spew-1.1.0))) - (home-page "https://github.com/stretchr/testify") - (synopsis "Testify - Thou Shalt Write Tests") - (description - "** We are working on testify v2 and would love to hear what you'd like to see in -it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -Package testify is a set of packages that provide many tools for testifying that -your code will behave as you intend.") - (license license:expat))) - -(define-public go-gopkg-in-yaml-v3-3.0.0-20200605160147-a5ece683394c - (package - (name "go-gopkg-in-yaml-v3") - (version "3.0.0-20200605160147-a5ece683394c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v3") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "03cm7c3p5fh0aa8vnxv5010dgqqr268ivb480ix1salxx3396w68")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v3") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language.") - (license license:expat))) - -(define-public go-github-com-tj-assert-0.0.3 - (package - (name "go-github-com-tj-assert") - (version "0.0.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/tj/assert") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1j5swk3fjq1h5fpqkipddz2ccnbidr7qrpm5dpdaflg9q5jnc673")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/tj/assert")) - (propagated-inputs - `(("go-gopkg-in-yaml-v3-3.0.0-20200605160147-a5ece683394c" - ,go-gopkg-in-yaml-v3-3.0.0-20200605160147-a5ece683394c) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/tj/assert") - (synopsis "assert") - (description - "Package assert implements the same assertions as the `assert` package but stops -test execution when a test fails.") - (license license:expat))) - -(define-public go-github-com-russross-blackfriday-v2-2.0.1 - (package - (name "go-github-com-russross-blackfriday-v2") - (version "2.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/russross/blackfriday") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0nlz7isdd4rgnwzs68499hlwicxz34j2k2a0b8jy0y7ycd2bcr5j")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/russross/blackfriday/v2")) - (home-page "https://github.com/russross/blackfriday") - (synopsis "Blackfriday") - (description "Package blackfriday is a markdown processor.") - (license license:bsd-2))) - -(define-public go-github-com-shurcool-sanitized-anchor-name-1.0.0 - (package - (name "go-github-com-shurcool-sanitized-anchor-name") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/shurcooL/sanitized_anchor_name") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1gv9p2nr46z80dnfjsklc6zxbgk96349sdsxjz05f3z6wb6m5l8f")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/shurcooL/sanitized_anchor_name")) - (home-page "https://github.com/shurcooL/sanitized_anchor_name") - (synopsis "sanitized_anchor_name") - (description - "Package sanitized_anchor_name provides a func to create sanitized anchor names.") - (license license:expat))) - -(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d - (package - (name "go-github-com-cpuguy83-go-md2man-v2") - (version "2.0.0-20190314233015-f79a8a8ca69d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cpuguy83/go-md2man") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) - (propagated-inputs - `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" - ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) - ("go-github-com-russross-blackfriday-v2-2.0.1" - ,go-github-com-russross-blackfriday-v2-2.0.1) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0))) - (home-page "https://github.com/cpuguy83/go-md2man") - (synopsis "go-md2man") - (description "Converts markdown into roff (man pages).") - (license license:expat))) - -(define-public go-gopkg-in-yaml-v2-2.2.2 - (package - (name "go-gopkg-in-yaml-v2") - (version "2.2.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "01wj12jzsdqlnidpyjssmj0r4yavlqy7dwrg7adqd8dicjc4ncsa")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v2") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language.") - (license license:asl2.0))) - -(define-public go-github-com-urfave-cli-1.22.4 - (package - (name "go-github-com-urfave-cli") - (version "1.22.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/urfave/cli") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1s7frsmiih4wh8vpx9z3ck4667c6vpjrmba7b9ymnv1p9khyg8wc")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/urfave/cli")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) - ("go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d" - ,go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d) - ("go-github-com-burntsushi-toml-0.3.1" - ,go-github-com-burntsushi-toml-0.3.1))) - (home-page "https://github.com/urfave/cli") - (synopsis "cli") - (description - "Package cli provides a minimal framework for creating and organizing command -line Go applications. cli is designed to be easy to understand and write, the -most simple cli application can be written as follows:") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190222072716-a9d3bda3a223") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1w45zc13xrjzl19s1sx74r5mg3lf2z2nm13wygcdq5r5pyjlhdz9")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-mattn-go-isatty-0.0.8 - (package - (name "go-github-com-mattn-go-isatty") - (version "0.0.8") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mattn/go-isatty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0rqfh1rj6f5wm8p2ky7inm8g10152p7w6n2cli17kf9gad797i8h")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mattn/go-isatty")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223" - ,go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223))) - (home-page "https://github.com/mattn/go-isatty") - (synopsis "go-isatty") - (description "Package isatty implements interface to isatty") - (license license:expat))) - -(define-public go-github-com-mattn-go-colorable-0.1.4 - (package - (name "go-github-com-mattn-go-colorable") - (version "0.1.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mattn/go-colorable") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1yxcz08kminqr1221zxpibnbzfcgs3fafin0z9zqb3gqvf74jywz")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mattn/go-colorable")) - (propagated-inputs - `(("go-github-com-mattn-go-isatty-0.0.8" - ,go-github-com-mattn-go-isatty-0.0.8))) - (home-page "https://github.com/mattn/go-colorable") - (synopsis "go-colorable") - (description "Colorable writer for windows.") - (license license:expat))) - -(define-public go-github-com-mattn-go-isatty-0.0.11 - (package - (name "go-github-com-mattn-go-isatty") - (version "0.0.11") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mattn/go-isatty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0h671sv7hfprja495kavazkalkx7xzaqksjh13brcnwq67ijrali")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mattn/go-isatty")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037" - ,go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037))) - (home-page "https://github.com/mattn/go-isatty") - (synopsis "go-isatty") - (description "Package isatty implements interface to isatty") - (license license:expat))) - -(define-public go-github-com-fatih-color-1.9.0 - (package - (name "go-github-com-fatih-color") - (version "1.9.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/fatih/color") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "086z8ssmr1fn9ba4mqnw7pnccfpys6l5yfhvycv1gdrsk7n27mvs")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/fatih/color")) - (propagated-inputs - `(("go-github-com-mattn-go-isatty-0.0.11" - ,go-github-com-mattn-go-isatty-0.0.11) - ("go-github-com-mattn-go-colorable-0.1.4" - ,go-github-com-mattn-go-colorable-0.1.4))) - (home-page "https://github.com/fatih/color") - (synopsis "color") - (description - "Package color is an ANSI color package to output colorized or SGR defined output -to the standard output. The API can be used in several way, pick one that suits -you.") - (license license:expat))) - -(define-public go-github-com-davecgh-go-spew-1.1.1 - (package - (name "go-github-com-davecgh-go-spew") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/davecgh/go-spew") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/davecgh/go-spew")) - (home-page "https://github.com/davecgh/go-spew") - (synopsis "go-spew") - (description - "Go-spew implements a deep pretty printer for Go data structures to aid in -debugging. A comprehensive suite of tests with 100% test coverage is provided -to ensure proper functionality. See @code{test_coverage.txt} for the gocov -coverage report. Go-spew is licensed under the liberal ISC license, so it may -be used in open source or commercial projects.") - (license license:isc))) - -(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.1 - (package - (name "go-github-com-konsorten-go-windows-terminal-sequences") - (version "1.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/konsorten/go-windows-terminal-sequences") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1lchgf27n276vma6iyxa0v1xds68n2g8lih5lavqnx5x6q5pw2ip")))) - (build-system go-build-system) - (arguments - '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) - (home-page "https://github.com/konsorten/go-windows-terminal-sequences") - (synopsis "Windows Terminal Sequences") - (description - "This library allow for enabling Windows terminal color support for Go.") - (license license:expat))) - -(define-public go-github-com-pmezard-go-difflib-1.0.0 - (package - (name "go-github-com-pmezard-go-difflib") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pmezard/go-difflib") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pmezard/go-difflib")) - (home-page "https://github.com/pmezard/go-difflib") - (synopsis "go-difflib") - (description - "Go-difflib is a partial port of python 3 difflib package. Its main goal was to -make unified and context diff available in pure Go, mostly for testing purposes.") - (license license:bsd-3))) - -(define-public go-github-com-stretchr-objx-0.1.1 - (package - (name "go-github-com-stretchr-objx") - (version "0.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/objx") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0iph0qmpyqg4kwv8jsx6a56a7hhqq8swrazv40ycxk9rzr0s8yls")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/objx")) - (home-page "https://github.com/stretchr/objx") - (synopsis "Objx") - (description - "Objx - Go package for dealing with maps, slices, JSON and other data.") - (license license:expat))) - -(define-public go-github-com-stretchr-testify-1.2.2 - (package - (name "go-github-com-stretchr-testify") - (version "1.2.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/testify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0dlszlshlxbmmfxj5hlwgv3r22x0y1af45gn1vd198nvvs3pnvfs")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/testify")) - (home-page "https://github.com/stretchr/testify") - (synopsis "Testify - Thou Shalt Write Tests") - (description - "** We are working on testify v2 and would love to hear what you'd like to see in -it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -Package testify is a set of packages that provide many tools for testifying that -your code will behave as you intend.") - (license license:expat))) - -(define-public go-golang-org-x-crypto-0.0.0-20180904163835-0709b304e793 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20180904163835-0709b304e793") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0i05s09y5pavmfh71fgih7syxg58x7a4krgd8am6d3mnahnmab5c")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20180905080454-ebe1bf3edb33") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0rkspxyjxdmc9f4n09hgkwj8jjd8z5p8mc9z8vwqwqcwrqv4sg7c")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-sirupsen-logrus-1.3.0 - (package - (name "go-github-com-sirupsen-logrus") - (version "1.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sirupsen/logrus") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ib7k8cwxn53dyxd3af1g81z018n77n6q64pm4miznirf7c2c9gk")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/sirupsen/logrus")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33" - ,go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33) - ("go-golang-org-x-crypto-0.0.0-20180904163835-0709b304e793" - ,go-golang-org-x-crypto-0.0.0-20180904163835-0709b304e793) - ("go-github-com-stretchr-testify-1.2.2" - ,go-github-com-stretchr-testify-1.2.2) - ("go-github-com-stretchr-objx-0.1.1" - ,go-github-com-stretchr-objx-0.1.1) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.1" - ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.1) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/sirupsen/logrus") - (synopsis "Logrus") - (description - "Package logrus is a structured logger for Go, completely API compatible with the -standard library logger.") - (license license:expat))) - -(define-public go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20191011191535-87dc89f01550") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0z4i1m2yn3f31ci7wvcm2rxkx2yiv7a78mfzklncmsz2k97rlh2g")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" - ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) - ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" - ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20191026070338-33540a1f6037") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0fjcv0vzvi6za0b4xmnk3932pr9f9gczzf03y0kgq3ry9rqg169y")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-vbatts-go-mtree-0.5.0 - (package - (name "go-github-com-vbatts-go-mtree") - (version "0.5.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/vbatts/go-mtree") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0p42aliw6ngp7zgg5y9mi18z1ka9n0vblbrp5flp93i7qfmc5y0k")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/vbatts/go-mtree")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037" - ,go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037) - ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" - ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550) - ("go-github-com-sirupsen-logrus-1.3.0" - ,go-github-com-sirupsen-logrus-1.3.0) - ("go-github-com-fatih-color-1.9.0" ,go-github-com-fatih-color-1.9.0) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/vbatts/go-mtree") - (synopsis "go-mtree") - (description - "@code{mtree} is a filesystem hierarchy validation tooling and format. This is a -library and simple cli tool for -@url{https://www.freebsd.org/cgi/man.cgi?mtree%288%29=,mtree(8)} support.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190404232315-eb5bcb51f2a3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "17k4g8krxbl84gzcs275b7gsh66dzm15fdxivjnx9xz8q84l4kby")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20190412213103-97732733099d - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190412213103-97732733099d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "118hkp01i4z1f5h6hcjm0ff2ngqhrzj1f7731n0kw8dr6hvbx0sw")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-crypto-0.0.0-20200604202706-70a84ac30bf9 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20200604202706-70a84ac30bf9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0zr8np92g3qx7cdgaz4b2z5wnlym9lqyhrvs3xvv1fbsapd2z6i3")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" - ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) - ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" - ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20200622214017-ed371f2e16b4 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200622214017-ed371f2e16b4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "107wfy2fj6z5zps1v72j8drfrfvss1158drb0yqhz5awlbvgrpj7")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-1.22.0 - (package - (name "go-google-golang-org-protobuf") - (version "1.22.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0n7lc4m7kfvj01glc0gnjy0zsnsic7cxnbvlajy0h14cxbab87pj")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.0" - ,go-github-com-golang-protobuf-1.4.0))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is -a language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol -buffer developer guide} for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.4.1 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0w7ks4vffnnkp0miwgc3chrsnmya45lzvpahb2wmw0jwhdp5kdx7")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.22.0" - ,go-google-golang-org-protobuf-1.22.0) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code -github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-github-com-census-instrumentation-opencensus-proto-0.2.1 - (package - (name "go-github-com-census-instrumentation-opencensus-proto") - (version "0.2.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/census-instrumentation/opencensus-proto") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19fcx3sc99i5dsklny6r073z5j20vlwn2xqm6di1q3b1xwchzqfj")))) - (build-system go-build-system) - (arguments - '(#:import-path "github.com/census-instrumentation/opencensus-proto")) - (home-page "https://github.com/census-instrumentation/opencensus-proto") - (synopsis - "OpenCensus Proto - Language Independent Interface Types For OpenCensus") - (description - "Census provides a framework to define and collect stats against metrics and to -break those stats down across user-defined dimensions.") - (license license:asl2.0))) - -(define-public go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4 - (package - (name "go-github-com-prometheus-client-model") - (version "0.0.0-20190812154241-14fe0d1b01d4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/client_model") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0zdmk6rbbx39cvfz0r59v2jg5sg9yd02b4pds5n5llgvivi99550")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/client_model")) - (propagated-inputs - `(("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" - ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0))) - (home-page "https://github.com/prometheus/client_model") - (synopsis "Deprecation note") - (description - "This repository used to contain the code that defined both the data model and -the exposition format of Prometheus metrics.") - (license license:asl2.0))) - -(define-public go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20190311212946-11955173bddd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hlkai67w167wiyivkzd1fgqrnyxkb94l2c6kr51jwcscizfyfn3")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3 - (package - (name "go-golang-org-x-lint") - (version "0.0.0-20190313153728-d0100b6bd8b3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/lint") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0b0amr9x4ji66iv9ayfx7zrfx52k1m5g66qfcxkgj80qrb1y2yn7")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/lint")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" - ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd))) - (home-page "https://golang.org/x/lint") - (synopsis "Installation") - (description "Package lint contains a linter for Go source code.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20190423024810-112230192c58 - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20190423024810-112230192c58") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "05i2k43j2d0llq768hg5pf3hb2yhfzp9la1w5wp0rsnnzblr0lfn")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the ones -provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135 - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20190524140312-2c0ae7006135") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1lsi2ssxajclj3bciz2a41v1vjv768ja3v6wnbyhxy8xphwkp4fk")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" - ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-google-golang-org-grpc-1.23.0 - (package - (name "go-google-golang-org-grpc") - (version "1.23.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1cn33r2gclmq2v1ndpf1n5bmhf2qs8mms7ii5cnl6f9ch4r2c4k3")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" - ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) - ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" - ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) - ("go-google-golang-org-appengine-1.1.0" - ,go-google-golang-org-appengine-1.1.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-google-go-cmp-0.2.0" - ,go-github-com-google-go-cmp-0.2.0) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0) - ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-client9-misspell-0.3.4" - ,go-github-com-client9-misspell-0.3.4) - ("go-github-com-burntsushi-toml-0.3.1" - ,go-github-com-burntsushi-toml-0.3.1) - ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC.") - (license license:asl2.0))) - -(define-public go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473 - (package - (name "go-github-com-envoyproxy-go-control-plane") - (version "0.9.1-0.20191026205805-5f8ba28d4473") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/envoyproxy/go-control-plane") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1f1s764rd41vd9vgk3r14h1m6fz6pdvxj6fd83q58gxifbc4q5w4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.23.0" ,go-google-golang-org-grpc-1.23.0) - ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" - ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) - ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" - ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2) - ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" - ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) - ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" - ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) - (home-page "https://github.com/envoyproxy/go-control-plane") - (synopsis "control-plane") - (description - "This repository contains a Go-based implementation of an API server that -implements the discovery service APIs defined in -@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") - (license license:asl2.0))) - -(define-public go-github-com-envoyproxy-protoc-gen-validate-0.1.0 - (package - (name "go-github-com-envoyproxy-protoc-gen-validate") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/envoyproxy/protoc-gen-validate") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0kxd3wwh3xwqk0r684hsy281xq4y71cd11d4q2hspcjbnlbwh7cy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/envoyproxy/protoc-gen-validate")) - (home-page "https://github.com/envoyproxy/protoc-gen-validate") - (synopsis "protoc-gen-validate (PGV)") - (description - "PGV is a protoc plugin to generate polyglot message validators. While protocol -buffers effectively guarantee the types of structured data, they cannot enforce -semantic rules for values. This plugin adds support to protoc-generated code to -validate such constraints.") - (license license:asl2.0))) - -(define-public go-github-com-google-go-cmp-0.2.0 - (package - (name "go-github-com-google-go-cmp") - (version "0.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fbv0x27k9sn8svafc0hjwsnckk864lv4yi7bvzrxvmd3d5hskds")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically -equal.") - (license license:bsd-3))) - -(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20190308221718-c2843e01d9a2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20190311183353-d8887717615a - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190311183353-d8887717615a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1wfm6ngxjyj7v5a2dqib6lw8bb2rdnf1kl48diykxjrsddn0s163")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190215142949-d0b11bdaac8a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.3.2 - (package - (name "go-github-com-golang-protobuf") - (version "1.3.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1k1wb4zr0qbwgpvz9q5ws9zhlal8hq7dmq62pwxxriksayl6hzym")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code -github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4 - (package - (name "go-golang-org-x-exp") - (version "0.0.0-20190121172915-509febef88a4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/exp") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "02isrh39z8znrp5znplzy0dip2gnrl3jm1355raliyvhnhg04j6q")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/exp")) - (home-page "https://golang.org/x/exp") - (synopsis "exp") - (description - "This subrepository holds experimental and deprecated (in the @code{old} -directory) packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961 - (package - (name "go-golang-org-x-lint") - (version "0.0.0-20190227174305-5b3e6a55c961") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/lint") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "04zp5vbds9nffmjg36wjpi5vg9zmf890yf78xxasai3ni637ivfw")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/lint")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" - ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c))) - (home-page "https://golang.org/x/lint") - (synopsis "Installation") - (description "Package lint contains a linter for Go source code.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190213061140-3a22650c66bd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12q6fgdkc0742vcms67nzadgdwvi3rnb1gx3vwkljhrvlnwvz7wc")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20181108010431-42b317875d0f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0mrjhk7al7yyh76x9flvxy4jm5jyqh2fxbxagpaazxn1xdgkaif3")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the ones -provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20180724234803-3673e40ba225") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0vx7mz18p480p7fh0w5jv6mfdbsswrlac1sz4i705q7q7ygz59lm")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-google-golang-org-appengine-1.4.0 - (package - (name "go-google-golang-org-appengine") - (version "1.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/appengine") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "06zl7w4sxgdq2pl94wy9ncii6h0z3szl4xpqds0sv3b3wbdlhbnn")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/appengine")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225" - ,go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0))) - (home-page "https://google.golang.org/appengine") - (synopsis "Go App Engine packages") - (description - "Package appengine provides basic functionality for Google App Engine.") - (license license:asl2.0))) - -(define-public go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20190226205152-f727befe758c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0rpcqw6z13qd33rbasg32zb0gdhgh5lzjla63r6g651zf6hpsak0")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-google-golang-org-appengine-1.4.0" - ,go-google-golang-org-appengine-1.4.0) - ("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" - ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) - ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" - ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-cloud-google-com-go-0.26.0 - (package - (name "go-cloud-google-com-go") - (version "0.26.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-cloud-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "149v3ci17g6wd2pm18mzcncq5qpl9hwdjnz3rlbn5rfidyn46la1")))) - (build-system go-build-system) - (arguments '(#:import-path "cloud.google.com/go")) - (home-page "https://cloud.google.com/go") - (synopsis "Google Cloud Client Libraries for Go") - (description - "Package cloud is the root of the packages used to access Google Cloud Services. -See -@url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} -for a full list of sub-packages.") - (license license:asl2.0))) - -(define-public go-github-com-burntsushi-toml-0.3.1 - (package - (name "go-github-com-burntsushi-toml") - (version "0.3.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/BurntSushi/toml") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fjdwwfzyzllgiwydknf1pwjvy49qxfsczqx5gz3y0izs7as99j6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/BurntSushi/toml")) - (home-page "https://github.com/BurntSushi/toml") - (synopsis "Testing") - (description - "Package toml implements decoding and encoding of TOML files.") - (license license:expat))) - -(define-public go-github-com-client9-misspell-0.3.4 - (package - (name "go-github-com-client9-misspell") - (version "0.3.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/client9/misspell") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1vwf33wsc4la25zk9nylpbp9px3svlmldkm0bha4hp56jws4q9cs")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/client9/misspell")) - (home-page "https://github.com/client9/misspell") - (synopsis "Install") - (description - "Package misspell corrects commonly misspelled English words in source files.") - (license license:expat))) - -(define-public go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b - (package - (name "go-github-com-golang-glog") - (version "0.0.0-20160126235308-23def4e6c14b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/glog") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0jb2834rw5sykfr937fxi8hxi2zy80sj2bdn9b3jb4b26ksqng30")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/glog")) - (home-page "https://github.com/golang/glog") - (synopsis "glog") - (description - "Package glog implements logging analogous to the Google-internal C++ -INFO/ERROR/V setup. It provides functions Info, Warning, Error, Fatal, plus -formatting variants such as Infof. It also provides V-style logging controlled -by the -v and -vmodule=file=2 flags.") - (license license:asl2.0))) - -(define-public go-github-com-golang-mock-1.1.1 - (package - (name "go-github-com-golang-mock") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/mock") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ap8wb6pdl6ccmdb43advjll2ly4sz26wsc3axw0hbrjrybybzgy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/mock")) - (home-page "https://github.com/golang/mock") - (synopsis "gomock") - (description - "gomock is a mocking framework for the @url{http://golang.org/,Go programming -language}. It integrates well with Go's built-in @code{testing} package, but -can be used in other contexts too.") - (license license:asl2.0))) - -(define-public go-github-com-golang-protobuf-1.2.0 - (package - (name "go-github-com-golang-protobuf") - (version "1.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0kf4b59rcbb1cchfny2dm9jyznp8ri2hsb14n8iak1q8986xa0ab")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code -github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3 - (package - (name "go-golang-org-x-lint") - (version "0.0.0-20181026193005-c67002cb31c3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/lint") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0gymbggskjmphqxqcx4s0vnlcz7mygbix0vhwcwv5r67c0bf6765")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/lint")) - (home-page "https://golang.org/x/lint") - (synopsis "Installation") - (description "Package lint contains a linter for Go source code.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d - (package - (name "go-golang-org-x-net") - (version "0.0.0-20180826012351-8a410e7b638d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hp0l8f6fir5gmgrjq0mhh5ikc0rlrm72774228800kfwqjrxxny")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be - (package - (name "go-golang-org-x-oauth2") - (version "0.0.0-20180821212333-d2e6202438be") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/oauth2") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0wbn75fd10485nb93bm4kqldqifdim5xqy4v7r5sdvimvf3fyhn7")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/oauth2")) - (home-page "https://golang.org/x/oauth2") - (synopsis "OAuth2 for Go") - (description - "Package oauth2 provides support for making OAuth2 authorized and authenticated -HTTP requests, as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC -6749}. It can additionally grant authorization with Bearer JWT.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20180314180146-1d60e4601c6f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "046jlanz2lkxq1r57x9bl6s4cvfqaic6p2xybsj8mq1120jv4rs6")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the ones -provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20180830151530-49385e6e1522") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0spbldahns09fdxkxflb1x24f8k2awdlnr6k5i7ci4fqd19r1dv4")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-text-0.3.0 - (package - (name "go-golang-org-x-text") - (version "0.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/text")) - (home-page "https://golang.org/x/text") - (synopsis "Go Text") - (description - "text is a repository of text-related packages related to internationalization -(i18n) and localization (l10n), such as character encodings, text -transformations, and locale-specific text handling.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20190114222345-bf090417da8b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1n3xp56k4k3lj06rx7587wr5gnwg0148nvwx6ch0g7ar02hh94hw")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-google-golang-org-appengine-1.1.0 - (package - (name "go-google-golang-org-appengine") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/appengine") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1pz202zszg8f35dk5pfhwgcdi3r6dx1l4yk6x6ly7nb4j45zi96x")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/appengine")) - (home-page "https://google.golang.org/appengine") - (synopsis "Go App Engine packages") - (description - "Package appengine provides basic functionality for Google App Engine.") - (license license:asl2.0))) - -(define-public go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8 - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20180817151627-c66870c02cf8") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0siq7sv68556ygqi2d2zmvx8l1xjqdc0fylqzci5h1mq2i14bayn")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for -interacting with Google's gRPC APIs.") - (license license:asl2.0))) - -(define-public go-google-golang-org-grpc-1.19.0 - (package - (name "go-google-golang-org-grpc") - (version "1.19.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1znqwpj7ix3dpzx4zch0q70sdl3z5lvbb7v3q4i8sf8kas3yv71v")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" - ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) - ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" - ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) - ("go-google-golang-org-appengine-1.1.0" - ,go-google-golang-org-appengine-1.1.0) - ("go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b" - ,go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b) - ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522" - ,go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522) - ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" - ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d" - ,go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d) - ("go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3" - ,go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0) - ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-client9-misspell-0.3.4" - ,go-github-com-client9-misspell-0.3.4) - ("go-github-com-burntsushi-toml-0.3.1" - ,go-github-com-burntsushi-toml-0.3.1) - ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC.") - (license license:asl2.0))) - -(define-public go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099 - (package - (name "go-honnef-co-go-tools") - (version "0.0.0-20190102054323-c2f93a96b099") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/dominikh/go-tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "07lg29aiap80ca9f201jzng9vjr168cv3qmvjmbd7v5pmww9kmr8")))) - (build-system go-build-system) - (arguments '(#:import-path "honnef.co/go/tools")) - (home-page "https://honnef.co/go/tools") - (synopsis "Documentation") - (description - "Staticcheck is a state of the art linter for the . Using static analysis, it -finds bugs and performance issues, offers simplifications, and enforces style -rules.") - (license license:expat))) - -(define-public go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55 - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20190819201941-24fa4b261c55") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "109zhaqlfd8zkbr1hk6zqbs6vcxfrk64scjwh2nswph05gr0m84d")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" - ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) - ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) - ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" - ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) - ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" - ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) - ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" - ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for -interacting with Google's gRPC APIs.") - (license license:asl2.0))) - -(define-public go-google-golang-org-grpc-1.27.0 - (package - (name "go-google-golang-org-grpc") - (version "1.27.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ijrmgrxyabfn51nm3p9l81iaasq5fg237wnr6mdc4dzsfcg8kd7")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" - ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-github-com-google-go-cmp-0.2.0" - ,go-github-com-google-go-cmp-0.2.0) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2) - ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" - ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) - ("go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473" - ,go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC.") - (license license:asl2.0))) - -(define-public go-github-com-google-go-cmp-0.3.0 - (package - (name "go-github-com-google-go-cmp") - (version "0.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1hyxx3434zshl2m9ja78gwlkg1rx9yl6diqa7dnjb31xz5x4gbjj")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically -equal.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd - (package - (name "go-google-golang-org-protobuf") - (version "0.0.0-20200109180630-ec00e32a8dfd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0w6lp9w2avxcpxwzzhspr209ifhyjagvs23k0vykfdqahl1aplrh")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.3.0" - ,go-github-com-google-go-cmp-0.3.0))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is -a language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol -buffer developer guide} for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.4.0-rc.1 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.0-rc.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "186rirvbfgv6hrxp27ipx2cdpv19qifdd20biqfdm01wiyclqimn")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd" - ,go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd) - ("go-github-com-google-go-cmp-0.3.1" - ,go-github-com-google-go-cmp-0.3.1))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code -github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-github-com-google-go-cmp-0.3.1 - (package - (name "go-github-com-google-go-cmp") - (version "0.3.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1caw49i0plkjxir7kdf5qhwls3krqwfmi7g4h392rdfwi3kfahx1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically -equal.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64 - (package - (name "go-google-golang-org-protobuf") - (version "0.0.0-20200221191635-4d8936d0db64") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0563bsvdjj6k0sgwqd5yzrgfiax7sp3lcwh608gync5sv9fx39cy")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.3.1" - ,go-github-com-google-go-cmp-0.3.1) - ("go-github-com-golang-protobuf-1.4.0-rc.1" - ,go-github-com-golang-protobuf-1.4.0-rc.1))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is -a language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol -buffer developer guide} for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.0-rc.1.0.20200221234624-67d41d38c208") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ykxhg3zixmw25pd435f8h16wnz1g00jpcmmg3xl030kksgqgpp6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64" - ,go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code -github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60 - (package - (name "go-google-golang-org-protobuf") - (version "0.0.0-20200228230310-ab0ca4ff8a60") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1rinspcznfp85yz4vrlf4h38hr576virgv8lcs22bsylqga808sd")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208" - ,go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is -a language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol -buffer developer guide} for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.4.0-rc.2 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.0-rc.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1hd43hjv5zl6bjbmhm5phx74bw4xajsi73m5zky2k56za4mpgzzc")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60" - ,go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code -github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967 - (package - (name "go-google-golang-org-protobuf") - (version "1.20.1-0.20200309200217-e05f789c0967") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "17wmy89hnmpkwc63rfcjp50q15s9f1rhmczg06c3z9yy41zk82w9")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.0-rc.2" - ,go-github-com-golang-protobuf-1.4.0-rc.2))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is -a language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol -buffer developer guide} for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.0-rc.4.0.20200313231945-b860323f09d0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1zj6cwshx0l5n9cn2cpbikzzb79px5dmkpc4p19zy1iif5r5p0z0")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967" - ,go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code -github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-1.21.0 - (package - (name "go-google-golang-org-protobuf") - (version "1.21.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12bwln8z1lf9105gdp6ip0rx741i4yfz1520gxnp8861lh9wcl63")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0" - ,go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is -a language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol -buffer developer guide} for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.4.0 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fjvl5n77abxz5qsd4mgyvjq19x43c5bfvmq62mq3m5plx6zksc8")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.21.0" - ,go-google-golang-org-protobuf-1.21.0) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code -github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543 - (package - (name "go-golang-org-x-xerrors") - (version "0.0.0-20191204190536-9bdfabe68543") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/xerrors") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1yjfi1bk9xb81lqn85nnm13zz725wazvrx3b50hx19qmwg7a4b0c")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/xerrors")) - (home-page "https://golang.org/x/xerrors") - (synopsis #f) - (description "Package xerrors implements functions to manipulate errors.") - (license license:bsd-3))) - -(define-public go-github-com-google-go-cmp-0.4.0 - (package - (name "go-github-com-google-go-cmp") - (version "0.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1x5pvl3fb5sbyng7i34431xycnhmx8xx94gq2n19g6p0vz68z2v2")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically -equal.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc - (package - (name "go-google-golang-org-protobuf") - (version "1.23.1-0.20200526195155-81db48ad09cc") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "02cpr8rqr5wmpj2fqb32mzilsdnxkh52g1jz95a3ck3gzffc7hh1")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.0" - ,go-github-com-golang-protobuf-1.4.0))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is -a language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol -buffer developer guide} for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc - (package - (name "go-honnef-co-go-tools") - (version "0.0.0-20190523083050-ea95bdfd59fc") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/dominikh/go-tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1763nw7pwpzkvzfnm63dgzcgbq9hwmq5l1nffchnhh77vgkaq4ic")))) - (build-system go-build-system) - (arguments '(#:import-path "honnef.co/go/tools")) - (home-page "https://honnef.co/go/tools") - (synopsis "Documentation") - (description - "Staticcheck is a state of the art linter for the . Using static analysis, it -finds bugs and performance issues, offers simplifications, and enforces style -rules.") - (license license:expat))) - -(define-public go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013 - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20200526211855-cb27e3aa2013") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ml73ghqcwbz7ipfk8fnxb5indcml49b5p7vp1fsyny0abyyrmxf")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" - ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) - ("go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc" - ,go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-golang-protobuf-1.4.1" - ,go-github-com-golang-protobuf-1.4.1))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for -interacting with Google's gRPC APIs.") - (license license:asl2.0))) - -(define-public go-google-golang-org-protobuf-1.24.0 - (package - (name "go-google-golang-org-protobuf") - (version "1.24.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0x3qyn3rizbs671gs7f8v50rmiwf9h7kbaradpivw9718mhbg1gn")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" - ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.1" - ,go-github-com-golang-protobuf-1.4.1))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is -a language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol -buffer developer guide} for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-gopkg-in-check-v1-1.0.0-20200227125254-8fa46927fb4f - (package - (name "go-gopkg-in-check-v1") - (version "1.0.0-20200227125254-8fa46927fb4f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/check.v1") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0fx03x0nx9mjwnqphnx852q9p76qg7cazrachvgr1bj357lplrcw")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) - (home-page "https://gopkg.in/check.v1") - (synopsis "Instructions") - (description - "Package check is a rich testing extension for Go's testing package.") - (license license:bsd-2))) - -(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 - (package - (name "go-gopkg-in-check-v1") - (version "0.0.0-20161208181325-20d25e280405") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/check.v1") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) - (home-page "https://gopkg.in/check.v1") - (synopsis "Instructions") - (description - "Package check is a rich testing extension for Go's testing package.") - (license license:bsd-2))) - -(define-public go-gopkg-in-yaml-v3-3.0.0-20200615113413-eeeca48fe776 - (package - (name "go-gopkg-in-yaml-v3") - (version "3.0.0-20200615113413-eeeca48fe776") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v3") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "06m3kx5mp6vwfcpjl04c39r1dpbakg2la9ql1jw3zvpi6jk7iwbk")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v3") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language.") - (license license:expat))) - -(define-public go-github-com-opencontainers-umoci-0.4.7 - (package - (name "go-github-com-opencontainers-umoci") - (version "0.4.7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/umoci") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0in8kyi4jprvbm3zsl3risbjj8b0ma62yl3rq8rcvcgypx0mn7d4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/umoci")) - (propagated-inputs - `(("go-gopkg-in-yaml-v3-3.0.0-20200615113413-eeeca48fe776" - ,go-gopkg-in-yaml-v3-3.0.0-20200615113413-eeeca48fe776) - ("go-gopkg-in-check-v1-1.0.0-20200227125254-8fa46927fb4f" - ,go-gopkg-in-check-v1-1.0.0-20200227125254-8fa46927fb4f) - ("go-google-golang-org-protobuf-1.24.0" - ,go-google-golang-org-protobuf-1.24.0) - ("go-golang-org-x-sys-0.0.0-20200622214017-ed371f2e16b4" - ,go-golang-org-x-sys-0.0.0-20200622214017-ed371f2e16b4) - ("go-golang-org-x-crypto-0.0.0-20200604202706-70a84ac30bf9" - ,go-golang-org-x-crypto-0.0.0-20200604202706-70a84ac30bf9) - ("go-github-com-vbatts-go-mtree-0.5.0" - ,go-github-com-vbatts-go-mtree-0.5.0) - ("go-github-com-urfave-cli-1.22.4" ,go-github-com-urfave-cli-1.22.4) - ("go-github-com-tj-assert-0.0.3" ,go-github-com-tj-assert-0.0.3) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-sirupsen-logrus-1.6.0" - ,go-github-com-sirupsen-logrus-1.6.0) - ("go-github-com-rootless-containers-proto-0.1.0" - ,go-github-com-rootless-containers-proto-0.1.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-runtime-spec-1.0.2" - ,go-github-com-opencontainers-runtime-spec-1.0.2) - ("go-github-com-opencontainers-runc-1.0.0-rc90" - ,go-github-com-opencontainers-runc-1.0.0-rc90) - ("go-github-com-opencontainers-image-spec-1.0.1" - ,go-github-com-opencontainers-image-spec-1.0.1) - ("go-github-com-opencontainers-go-digest-1.0.0" - ,go-github-com-opencontainers-go-digest-1.0.0) - ("go-github-com-niemeyer-pretty-0.0.0-20200227124842-a10e7caefd8e" - ,go-github-com-niemeyer-pretty-0.0.0-20200227124842-a10e7caefd8e) - ("go-github-com-mohae-deepcopy-0.0.0-20170929034955-c48cc78d4826" - ,go-github-com-mohae-deepcopy-0.0.0-20170929034955-c48cc78d4826) - ("go-github-com-mattn-go-colorable-0.1.6" - ,go-github-com-mattn-go-colorable-0.1.6) - ("go-github-com-kr-text-0.2.0" ,go-github-com-kr-text-0.2.0) - ("go-github-com-klauspost-pgzip-1.2.4" - ,go-github-com-klauspost-pgzip-1.2.4) - ("go-github-com-klauspost-compress-1.11.3" - ,go-github-com-klauspost-compress-1.11.3) - ("go-github-com-google-go-cmp-0.5.0" - ,go-github-com-google-go-cmp-0.5.0) - ("go-github-com-golang-protobuf-1.4.2" - ,go-github-com-golang-protobuf-1.4.2) - ("go-github-com-docker-go-units-0.4.0" - ,go-github-com-docker-go-units-0.4.0) - ("go-github-com-cyphar-filepath-securejoin-0.2.2" - ,go-github-com-cyphar-filepath-securejoin-0.2.2) - ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" - ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) - ("go-github-com-apex-log-1.4.0" ,go-github-com-apex-log-1.4.0) - ("go-github-com-adamkorcz-go-fuzz-headers-0.0.0-20210312213058-32f4d319f0d2" - ,go-github-com-adamkorcz-go-fuzz-headers-0.0.0-20210312213058-32f4d319f0d2))) - (home-page "https://github.com/opencontainers/umoci") - (synopsis "Install") - (description - "@strong{u}moci @strong{m}odifies @strong{O}pen @strong{C}ontainer -@strong{i}mages.") - (license license:asl2.0))) - -(define-public go-github-com-pelletier-go-toml-1.9.4 - (package - (name "go-github-com-pelletier-go-toml") - (version "1.9.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pelletier/go-toml") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0f2d9m19dadl18i2baf57xygvn9vprm6wb8chvpx8kipx94nchyl")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pelletier/go-toml")) - (home-page "https://github.com/pelletier/go-toml") - (synopsis "go-toml") - (description "Package toml is a TOML parser and manipulation library.") - (license license:expat))) - -(define-public go-github-com-pkg-errors-0.9.1 - (package - (name "go-github-com-pkg-errors") - (version "0.9.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pkg/errors") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1761pybhc2kqr6v5fm8faj08x9bql8427yqg6vnfv6nhrasx1mwq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pkg/errors")) - (home-page "https://github.com/pkg/errors") - (synopsis "errors") - (description "Package errors provides simple error handling primitives.") - (license license:bsd-2))) - -(define-public go-github-com-blang-semver-3.5.1+incompatible - (package - (name "go-github-com-blang-semver") - (version "3.5.1+incompatible") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/blang/semver") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "13ws259bwcibkclbr82ilhk6zadm63kxklxhk12wayklj8ghhsmy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/blang/semver")) - (home-page "https://github.com/blang/semver") - (synopsis "semver for golang") - (description - "semver is a @url{http://semver.org/,Semantic Versioning} library written in -golang. It fully covers spec version @code{2.0.0}.") - (license license:expat))) - -(define-public go-github-com-hashicorp-errwrap-1.0.0 - (package - (name "go-github-com-hashicorp-errwrap") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/errwrap") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0slfb6w3b61xz04r32bi0a1bygc82rjzhqkxj2si2074wynqnr1c")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/errwrap")) - (home-page "https://github.com/hashicorp/errwrap") - (synopsis "errwrap") - (description - "Package errwrap implements methods to formalize error wrapping in Go.") - (license license:mpl2.0))) - -(define-public go-github-com-hashicorp-go-multierror-1.1.0 - (package - (name "go-github-com-hashicorp-go-multierror") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/go-multierror") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0pmjpzpra7lqgikxzwlcp5mh01b46j2vhyxkixz0v86fr9kf0k3k")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/go-multierror")) - (propagated-inputs - `(("go-github-com-hashicorp-errwrap-1.0.0" - ,go-github-com-hashicorp-errwrap-1.0.0))) - (home-page "https://github.com/hashicorp/go-multierror") - (synopsis "go-multierror") - (description - "@code{go-multierror} is a package for Go that provides a mechanism for -representing a list of @code{error} values as a single @code{error}.") - (license license:mpl2.0))) - -(define-public go-github-com-opencontainers-runtime-spec-1.0.3-0.20200710190001-3e4195d92445 - (package - (name "go-github-com-opencontainers-runtime-spec") - (version "1.0.3-0.20200710190001-3e4195d92445") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/runtime-spec") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "04kfdbap80r89rn7f7xcmkyy0qbpd18dgk65bzapy0x0calpgrlk")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) - (home-page "https://github.com/opencontainers/runtime-spec") - (synopsis "Open Container Initiative Runtime Specification") - (description - "The @url{https://www.opencontainers.org,Open Container Initiative} develops -specifications for standards on Operating System process and application -containers.") - (license license:asl2.0))) - -(define-public go-github-com-opencontainers-runtime-tools-0.9.0 - (package - (name "go-github-com-opencontainers-runtime-tools") - (version "0.9.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/runtime-tools") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1pli3jb1rq9lkzzz83f7jw788vijg7x6ly3vgasdlwri7kiph1sa")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/runtime-tools")) - (home-page "https://github.com/opencontainers/runtime-tools") - (synopsis "oci-runtime-tool") - (description - "oci-runtime-tool is a collection of tools for working with the -@url{https://github.com/opencontainers/runtime-spec,OCI runtime specification}. -To build from source code, runtime-tools requires Go 1.10.x or above.") - (license license:asl2.0))) - -(define-public go-github-com-pkg-errors-0.9.1 - (package - (name "go-github-com-pkg-errors") - (version "0.9.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pkg/errors") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1761pybhc2kqr6v5fm8faj08x9bql8427yqg6vnfv6nhrasx1mwq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pkg/errors")) - (home-page "https://github.com/pkg/errors") - (synopsis "errors") - (description "Package errors provides simple error handling primitives.") - (license license:bsd-2))) - -(define-public go-github-com-willf-bitset-1.1.11-0.20200630133818-d5bec3311243 - (package - (name "go-github-com-willf-bitset") - (version "1.1.11-0.20200630133818-d5bec3311243") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/bits-and-blooms/bitset") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "05nyd0vhp2h9hbqlv2s9l2py6mr8hpz2zyfj09an1q7wd8vph4ja")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/willf/bitset")) - (home-page "https://github.com/willf/bitset") - (synopsis "bitset") - (description - "Package bitset implements bitsets, a mapping between non-negative integers and -boolean values. It should be more efficient than map[uint] bool.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20191115151921-52ab43148777") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1kakxbqrb1w2vwg7r1896z68qcx2lfvimsl8cs2niiipbgpi6imx")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-opencontainers-selinux-1.6.0 - (package - (name "go-github-com-opencontainers-selinux") - (version "1.6.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/selinux") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ja41zfgrkhk5khixjnxpi1b85xfcxlkhq2q9b7ma6xjfdhg8bq2")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/selinux")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777" - ,go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777) - ("go-github-com-willf-bitset-1.1.11-0.20200630133818-d5bec3311243" - ,go-github-com-willf-bitset-1.1.11-0.20200630133818-d5bec3311243) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) - (home-page "https://github.com/opencontainers/selinux") - (synopsis "selinux") - (description "Common SELinux package used across the container ecosystem.") - (license license:asl2.0))) - -(define-public go-github-com-seccomp-libseccomp-golang-0.9.1 - (package - (name "go-github-com-seccomp-libseccomp-golang") - (version "0.9.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/seccomp/libseccomp-golang") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "022c8prvxz0shrifams7lq4xidvkcqg9xi87wjjcpmbikqi72cna")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/seccomp/libseccomp-golang")) - (home-page "https://github.com/seccomp/libseccomp-golang") - (synopsis #f) - (description - "Package seccomp provides bindings for libseccomp, a library wrapping the Linux -seccomp syscall. Seccomp enables an application to restrict system call use for -itself and its children.") - (license license:bsd-2))) - -(define-public go-github-com-davecgh-go-spew-1.1.1 - (package - (name "go-github-com-davecgh-go-spew") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/davecgh/go-spew") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/davecgh/go-spew")) - (home-page "https://github.com/davecgh/go-spew") - (synopsis "go-spew") - (description - "Go-spew implements a deep pretty printer for Go data structures to aid in -debugging. A comprehensive suite of tests with 100% test coverage is provided -to ensure proper functionality. See @code{test_coverage.txt} for the gocov -coverage report. Go-spew is licensed under the liberal ISC license, so it may -be used in open source or commercial projects.") - (license license:isc))) - -(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.3 - (package - (name "go-github-com-konsorten-go-windows-terminal-sequences") - (version "1.0.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/konsorten/go-windows-terminal-sequences") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1yrsd4s8vhjnxhwbigirymz89dn6qfjnhn28i33vvvdgf96j6ypl")))) - (build-system go-build-system) - (arguments - '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) - (home-page "https://github.com/konsorten/go-windows-terminal-sequences") - (synopsis "Windows Terminal Sequences") - (description - "This library allow for enabling Windows terminal color support for Go.") - (license license:expat))) - -(define-public go-github-com-stretchr-testify-1.2.2 - (package - (name "go-github-com-stretchr-testify") - (version "1.2.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/testify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0dlszlshlxbmmfxj5hlwgv3r22x0y1af45gn1vd198nvvs3pnvfs")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/testify")) - (home-page "https://github.com/stretchr/testify") - (synopsis "Testify - Thou Shalt Write Tests") - (description - "** We are working on testify v2 and would love to hear what you'd like to see in -it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -Package testify is a set of packages that provide many tools for testifying that -your code will behave as you intend.") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190422165155-953cdadca894") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0gkha4whk8xkcv3isigbs250akag99isxnd3v9xmy0kl3g88hxy1")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-sirupsen-logrus-1.6.0 - (package - (name "go-github-com-sirupsen-logrus") - (version "1.6.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sirupsen/logrus") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1zf9is1yxxnna0d1pyag2m9ziy3l27zb2j92p9msm1gx5jjrvzzj")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/sirupsen/logrus")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894" - ,go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894) - ("go-github-com-stretchr-testify-1.2.2" - ,go-github-com-stretchr-testify-1.2.2) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.3" - ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.3) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/sirupsen/logrus") - (synopsis "Logrus") - (description - "Package logrus is a structured logger for Go, completely API compatible with the -standard library logger.") - (license license:expat))) - -(define-public go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2 - (package - (name "go-github-com-syndtr-gocapability") - (version "0.0.0-20180916011248-d98352740cb2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/syndtr/gocapability") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "065y16562ynixxzj7iys4f4spb7knilbj3h833qlhds381j8hn93")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/syndtr/gocapability")) - (home-page "https://github.com/syndtr/gocapability") - (synopsis #f) - (description #f) - (license license:bsd-2))) - -(define-public go-github-com-davecgh-go-spew-1.1.0 - (package - (name "go-github-com-davecgh-go-spew") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/davecgh/go-spew") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/davecgh/go-spew")) - (home-page "https://github.com/davecgh/go-spew") - (synopsis "go-spew") - (description - "Go-spew implements a deep pretty printer for Go data structures to aid in -debugging. A comprehensive suite of tests with 100% test coverage is provided -to ensure proper functionality. See @code{test_coverage.txt} for the gocov -coverage report. Go-spew is licensed under the liberal ISC license, so it may -be used in open source or commercial projects.") - (license license:isc))) - -(define-public go-github-com-pmezard-go-difflib-1.0.0 - (package - (name "go-github-com-pmezard-go-difflib") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pmezard/go-difflib") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pmezard/go-difflib")) - (home-page "https://github.com/pmezard/go-difflib") - (synopsis "go-difflib") - (description - "Go-difflib is a partial port of python 3 difflib package. Its main goal was to -make unified and context diff available in pure Go, mostly for testing purposes.") - (license license:bsd-3))) - -(define-public go-github-com-stretchr-objx-0.1.0 - (package - (name "go-github-com-stretchr-objx") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/objx") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/objx")) - (home-page "https://github.com/stretchr/objx") - (synopsis "Objx") - (description - "Objx - Go package for dealing with maps, slices, JSON and other data.") - (license license:expat))) - -(define-public go-github-com-stretchr-testify-1.3.0 - (package - (name "go-github-com-stretchr-testify") - (version "1.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/testify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0wjchp2c8xbgcbbq32w3kvblk6q6yn533g78nxl6iskq6y95lxsy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/testify")) - (propagated-inputs - `(("go-github-com-stretchr-objx-0.1.0" - ,go-github-com-stretchr-objx-0.1.0) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.0" - ,go-github-com-davecgh-go-spew-1.1.0))) - (home-page "https://github.com/stretchr/testify") - (synopsis "Testify - Thou Shalt Write Tests") - (description - "** We are working on testify v2 and would love to hear what you'd like to see in -it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -Package testify is a set of packages that provide many tools for testifying that -your code will behave as you intend.") - (license license:expat))) - -(define-public go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f - (package - (name "go-github-com-xeipuuv-gojsonpointer") - (version "0.0.0-20180127040702-4e3ac2762d5f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/xeipuuv/gojsonpointer") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "13y6iq2nzf9z4ls66bfgnnamj2m3438absmbpqry64bpwjfbsi9q")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/xeipuuv/gojsonpointer")) - (home-page "https://github.com/xeipuuv/gojsonpointer") - (synopsis "gojsonpointer") - (description "An implementation of JSON Pointer - Go language") - (license license:asl2.0))) - -(define-public go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415 - (package - (name "go-github-com-xeipuuv-gojsonreference") - (version "0.0.0-20180127040603-bd5ef7bd5415") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/xeipuuv/gojsonreference") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1xby79padc7bmyb8rfbad8wfnfdzpnh51b1n8c0kibch0kwc1db5")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/xeipuuv/gojsonreference")) - (home-page "https://github.com/xeipuuv/gojsonreference") - (synopsis "gojsonreference") - (description "An implementation of JSON Reference - Go language") - (license license:asl2.0))) - -(define-public go-github-com-xeipuuv-gojsonschema-1.2.0 - (package - (name "go-github-com-xeipuuv-gojsonschema") - (version "1.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/xeipuuv/gojsonschema") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1mqiq0r8qw4qlfp3ls8073r6514rmzwrmdn4j33rppk3zh942i6l")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/xeipuuv/gojsonschema")) - (propagated-inputs - `(("go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415" - ,go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415) - ("go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f" - ,go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f) - ("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0))) - (home-page "https://github.com/xeipuuv/gojsonschema") - (synopsis "gojsonschema") - (description - "An implementation of JSON Schema for the Go programming language. Supports -draft-04, draft-06 and draft-07.") - (license license:asl2.0))) - -(define-public go-golang-org-x-sys-0.0.0-20200720211630-cb9d2d5c5666 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200720211630-cb9d2d5c5666") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18b1179cvv3rfn3hhysiqwcn2c15a1kzff74q4494rz69k0j7w4q")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-seccomp-containers-golang-0.6.0 - (package - (name "go-github-com-seccomp-containers-golang") - (version "0.6.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/seccomp/containers-golang") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0clrwdnmr131a65h66br57bsnr17i1s3kq9cc7ljrdaym57y6cfz")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/seccomp/containers-golang")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20200720211630-cb9d2d5c5666" - ,go-golang-org-x-sys-0.0.0-20200720211630-cb9d2d5c5666) - ("go-github-com-xeipuuv-gojsonschema-1.2.0" - ,go-github-com-xeipuuv-gojsonschema-1.2.0) - ("go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2" - ,go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2) - ("go-github-com-sirupsen-logrus-1.6.0" - ,go-github-com-sirupsen-logrus-1.6.0) - ("go-github-com-seccomp-libseccomp-golang-0.9.1" - ,go-github-com-seccomp-libseccomp-golang-0.9.1) - ("go-github-com-opencontainers-selinux-1.6.0" - ,go-github-com-opencontainers-selinux-1.6.0) - ("go-github-com-opencontainers-runtime-tools-0.9.0" - ,go-github-com-opencontainers-runtime-tools-0.9.0) - ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200710190001-3e4195d92445" - ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200710190001-3e4195d92445) - ("go-github-com-hashicorp-go-multierror-1.1.0" - ,go-github-com-hashicorp-go-multierror-1.1.0) - ("go-github-com-blang-semver-3.5.1+incompatible" - ,go-github-com-blang-semver-3.5.1+incompatible))) - (home-page "https://github.com/seccomp/containers-golang") - (synopsis "containers-golang") - (description - "@code{containers-golang} is a set of Go libraries used by container runtimes to -generate and load seccomp mappings into the kernel.") - (license license:asl2.0))) - -(define-public go-github-com-seccomp-libseccomp-golang-0.9.2-0.20210429002308-3879420cc921 - (package - (name "go-github-com-seccomp-libseccomp-golang") - (version "0.9.2-0.20210429002308-3879420cc921") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/seccomp/libseccomp-golang") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ypr3j50cd9lnj9szfyh45kh0cf7swm7cv2svz1575mldd9m1xr9")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/seccomp/libseccomp-golang")) - (home-page "https://github.com/seccomp/libseccomp-golang") - (synopsis #f) - (description - "Package seccomp provides bindings for libseccomp, a library wrapping the Linux -seccomp syscall. Seccomp enables an application to restrict system call use for -itself and its children.") - (license license:bsd-2))) - -(define-public go-github-com-spf13-pflag-1.0.5 - (package - (name "go-github-com-spf13-pflag") - (version "1.0.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/spf13/pflag") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0gpmacngd0gpslnbkzi263f5ishigzgh6pbdv9hp092rnjl4nd31")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/spf13/pflag")) - (home-page "https://github.com/spf13/pflag") - (synopsis "Description") - (description - "Package pflag is a drop-in replacement for Go's flag package, implementing -POSIX/GNU-style --flags.") - (license license:bsd-3))) - -(define-public go-github-com-sylabs-json-resp-0.8.0 - (package - (name "go-github-com-sylabs-json-resp") - (version "0.8.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sylabs/json-resp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ygr4mavaj1pp78hkkphhn3ydd923n3klwnx8x7v4ajqzx4cx4id")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/sylabs/json-resp")) - (home-page "https://github.com/sylabs/json-resp") - (synopsis "JSON Response") - (description - "The @code{json-resp} package contains a small set of functions that are used to -marshall and unmarshall response data and errors in JSON format.") - (license license:bsd-3))) - -(define-public go-github-com-burntsushi-toml-0.3.1 - (package - (name "go-github-com-burntsushi-toml") - (version "0.3.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/BurntSushi/toml") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fjdwwfzyzllgiwydknf1pwjvy49qxfsczqx5gz3y0izs7as99j6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/BurntSushi/toml")) - (home-page "https://github.com/BurntSushi/toml") - (synopsis "Testing") - (description - "Package toml implements decoding and encoding of TOML files.") - (license license:expat))) - -(define-public go-github-com-pmezard-go-difflib-1.0.0 - (package - (name "go-github-com-pmezard-go-difflib") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pmezard/go-difflib") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pmezard/go-difflib")) - (home-page "https://github.com/pmezard/go-difflib") - (synopsis "go-difflib") - (description - "Go-difflib is a partial port of python 3 difflib package. Its main goal was to -make unified and context diff available in pure Go, mostly for testing purposes.") - (license license:bsd-3))) - -(define-public go-github-com-russross-blackfriday-v2-2.0.1 - (package - (name "go-github-com-russross-blackfriday-v2") - (version "2.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/russross/blackfriday") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0nlz7isdd4rgnwzs68499hlwicxz34j2k2a0b8jy0y7ycd2bcr5j")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/russross/blackfriday/v2")) - (home-page "https://github.com/russross/blackfriday") - (synopsis "Blackfriday") - (description "Package blackfriday is a markdown processor.") - (license license:bsd-2))) - -(define-public go-github-com-shurcool-sanitized-anchor-name-1.0.0 - (package - (name "go-github-com-shurcool-sanitized-anchor-name") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/shurcooL/sanitized_anchor_name") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1gv9p2nr46z80dnfjsklc6zxbgk96349sdsxjz05f3z6wb6m5l8f")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/shurcooL/sanitized_anchor_name")) - (home-page "https://github.com/shurcooL/sanitized_anchor_name") - (synopsis "sanitized_anchor_name") - (description - "Package sanitized_anchor_name provides a func to create sanitized anchor names.") - (license license:expat))) - -(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d - (package - (name "go-github-com-cpuguy83-go-md2man-v2") - (version "2.0.0-20190314233015-f79a8a8ca69d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cpuguy83/go-md2man") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) - (propagated-inputs - `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" - ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) - ("go-github-com-russross-blackfriday-v2-2.0.1" - ,go-github-com-russross-blackfriday-v2-2.0.1) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0))) - (home-page "https://github.com/cpuguy83/go-md2man") - (synopsis "go-md2man") - (description "Converts markdown into roff (man pages).") - (license license:expat))) - -(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 - (package - (name "go-gopkg-in-check-v1") - (version "0.0.0-20161208181325-20d25e280405") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/check.v1") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) - (home-page "https://gopkg.in/check.v1") - (synopsis "Instructions") - (description - "Package check is a rich testing extension for Go's testing package.") - (license license:bsd-2))) - -(define-public go-gopkg-in-yaml-v2-2.2.2 - (package - (name "go-gopkg-in-yaml-v2") - (version "2.2.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "01wj12jzsdqlnidpyjssmj0r4yavlqy7dwrg7adqd8dicjc4ncsa")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v2") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language.") - (license license:asl2.0))) - -(define-public go-github-com-urfave-cli-1.22.5 - (package - (name "go-github-com-urfave-cli") - (version "1.22.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/urfave/cli") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1n8lk58j7bdsp47yh5bcpsw38lhkbyzcy3203ffkawc2rvkf1pp7")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/urfave/cli")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) - ("go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d" - ,go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d) - ("go-github-com-burntsushi-toml-0.3.1" - ,go-github-com-burntsushi-toml-0.3.1))) - (home-page "https://github.com/urfave/cli") - (synopsis "cli") - (description - "Package cli provides a minimal framework for creating and organizing command -line Go applications. cli is designed to be easy to understand and write, the -most simple cli application can be written as follows:") - (license license:expat))) - -(define-public go-github-com-vividcortex-ewma-1.2.0 - (package - (name "go-github-com-vividcortex-ewma") - (version "1.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/VividCortex/ewma") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0whx516l9nm4n41spagb605ry7kfnz1qha96mcshnfjlahhnnylq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/VividCortex/ewma")) - (home-page "https://github.com/VividCortex/ewma") - (synopsis "EWMA") - (description - "Package ewma implements exponentially weighted moving averages.") - (license license:expat))) - -(define-public go-github-com-acarl005-stripansi-0.0.0-20180116102854-5a71ef0e047d - (package - (name "go-github-com-acarl005-stripansi") - (version "0.0.0-20180116102854-5a71ef0e047d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/acarl005/stripansi") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "02sxiishdixm791jqbkmhdcvc712l0fb8rqmibxzgc61h0qs6rs3")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/acarl005/stripansi")) - (home-page "https://github.com/acarl005/stripansi") - (synopsis "Strip ANSI") - (description "This Go package removes ANSI escape codes from strings.") - (license license:expat))) - -(define-public go-github-com-rivo-uniseg-0.2.0 - (package - (name "go-github-com-rivo-uniseg") - (version "0.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/rivo/uniseg") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0j7h22vfmjj562vr8gpsyrkrwp1pq9ayh5fylv24skxb467g9f0q")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/rivo/uniseg")) - (home-page "https://github.com/rivo/uniseg") - (synopsis "Unicode Text Segmentation for Go") - (description - "Package uniseg implements Unicode Text Segmentation according to Unicode -Standard Annex #29 -(@url{http://unicode.org/reports/tr29/,http://unicode.org/reports/tr29/}).") - (license license:expat))) - -(define-public go-github-com-mattn-go-runewidth-0.0.13 - (package - (name "go-github-com-mattn-go-runewidth") - (version "0.0.13") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mattn/go-runewidth") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1yir0f3wc5z5hnkwhvx5qb6nmpfb05zp2gvfjvna63s8kmla1rrn")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mattn/go-runewidth")) - (propagated-inputs - `(("go-github-com-rivo-uniseg-0.2.0" ,go-github-com-rivo-uniseg-0.2.0))) - (home-page "https://github.com/mattn/go-runewidth") - (synopsis "go-runewidth") - (description - "This package provides functions to get fixed width of the character or string.") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20220209214540-3681064d5158 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20220209214540-3681064d5158") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0cw9rzb4rxmr2si28pjqx3wv5r119c83kd08yy1h7nf725bzrs89")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-vbauerster-mpb-v7-7.4.1 - (package - (name "go-github-com-vbauerster-mpb-v7") - (version "7.4.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/vbauerster/mpb") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ii1r84qjfp2spvj6nb8xy5b3nsfw17jmwgp55zkaz9n9lfj75w2")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/vbauerster/mpb/v7")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20220209214540-3681064d5158" - ,go-golang-org-x-sys-0.0.0-20220209214540-3681064d5158) - ("go-github-com-mattn-go-runewidth-0.0.13" - ,go-github-com-mattn-go-runewidth-0.0.13) - ("go-github-com-acarl005-stripansi-0.0.0-20180116102854-5a71ef0e047d" - ,go-github-com-acarl005-stripansi-0.0.0-20180116102854-5a71ef0e047d) - ("go-github-com-vividcortex-ewma-1.2.0" - ,go-github-com-vividcortex-ewma-1.2.0))) - (home-page "https://github.com/vbauerster/mpb") - (synopsis "Multi Progress Bar") - (description - "Package mpb is a library for rendering progress bars in terminal applications.") - (license license:unlicense))) - -(define-public go-github-com-xeipuuv-gojsonpointer-0.0.0-20190905194746-02993c407bfb - (package - (name "go-github-com-xeipuuv-gojsonpointer") - (version "0.0.0-20190905194746-02993c407bfb") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/xeipuuv/gojsonpointer") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0y7gmpgsm8c12ax4a0ij9srmd9d424iq224n172ckwfqf37amvzy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/xeipuuv/gojsonpointer")) - (home-page "https://github.com/xeipuuv/gojsonpointer") - (synopsis "gojsonpointer") - (description "An implementation of JSON Pointer - Go language") - (license license:asl2.0))) - -(define-public go-github-com-yvasiyarov-go-metrics-0.0.0-20150112132944-c25f46c4b940 - (package - (name "go-github-com-yvasiyarov-go-metrics") - (version "0.0.0-20150112132944-c25f46c4b940") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/yvasiyarov/go-metrics") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0p1hx4ml4gzgyj8n0fg5lv8bq092zwg00n59lq8v8sphjc1h8i8d")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/yvasiyarov/go-metrics")) - (home-page "https://github.com/yvasiyarov/go-metrics") - (synopsis "go-metrics") - (description "Go port of Coda Hale's Metrics library") - (license license:expat))) - -(define-public go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20160601141957-9c099fbc30e9 - (package - (name "go-github-com-yvasiyarov-newrelic-platform-go") - (version "0.0.0-20160601141957-9c099fbc30e9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/yvasiyarov/newrelic_platform_go") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0n6jap27qc7b7c37ck1gv9biq5nfl7y06jk0cqgc517yfnb4f07x")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/yvasiyarov/newrelic_platform_go")) - (home-page "https://github.com/yvasiyarov/newrelic_platform_go") - (synopsis "New Relic Platform Agent SDK for Go(golang)") - (description - "Package newrelic_platform_go is New Relic Platform Agent SDK for Go language.") - (license license:bsd-2))) - -(define-public go-golang-org-x-sys-0.0.0-20220209214540-3681064d5158 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20220209214540-3681064d5158") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0cw9rzb4rxmr2si28pjqx3wv5r119c83kd08yy1h7nf725bzrs89")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20210615035016-665e8c7367d1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "11n848csibdbv7b46zjyf4l7sphg37n9sjzqfy1ds7p1jyakwmnv")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-term-0.0.0-20210916214954-140adaaadfaf - (package - (name "go-golang-org-x-term") - (version "0.0.0-20210916214954-140adaaadfaf") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/term") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1rcdx2q92pzpmdyzdlzpq9flc3ibfi3m1rni7w4qlmlq569s6wh3")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/term")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1" - ,go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1))) - (home-page "https://golang.org/x/term") - (synopsis "Go terminal/console support") - (description - "Package term provides support functions for dealing with terminals, as commonly -found on UNIX systems.") - (license license:bsd-3))) - -(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 - (package - (name "go-gopkg-in-check-v1") - (version "0.0.0-20161208181325-20d25e280405") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/check.v1") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) - (home-page "https://gopkg.in/check.v1") - (synopsis "Instructions") - (description - "Package check is a rich testing extension for Go's testing package.") - (license license:bsd-2))) - -(define-public go-gopkg-in-yaml-v2-2.4.0 - (package - (name "go-gopkg-in-yaml-v2") - (version "2.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1pbmrpj7gcws34g8vwna4i2nhm9p6235piww36436xhyaa10cldr")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v2") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language.") - (license license:asl2.0))) - -(define-public go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543 - (package - (name "go-golang-org-x-xerrors") - (version "0.0.0-20191204190536-9bdfabe68543") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/xerrors") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1yjfi1bk9xb81lqn85nnm13zz725wazvrx3b50hx19qmwg7a4b0c")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/xerrors")) - (home-page "https://golang.org/x/xerrors") - (synopsis #f) - (description "Package xerrors implements functions to manipulate errors.") - (license license:bsd-3))) - -(define-public go-github-com-google-go-cmp-0.5.5 - (package - (name "go-github-com-google-go-cmp") - (version "0.5.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12fmkdhyv5d4is8s57k78j097zb0phlgnrkqc03agiszxlid69x7")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically -equal.") - (license license:bsd-3))) - -(define-public go-github-com-pkg-errors-0.9.1 - (package - (name "go-github-com-pkg-errors") - (version "0.9.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pkg/errors") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1761pybhc2kqr6v5fm8faj08x9bql8427yqg6vnfv6nhrasx1mwq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pkg/errors")) - (home-page "https://github.com/pkg/errors") - (synopsis "errors") - (description "Package errors provides simple error handling primitives.") - (license license:bsd-2))) - -(define-public go-github-com-spf13-pflag-1.0.3 - (package - (name "go-github-com-spf13-pflag") - (version "1.0.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/spf13/pflag") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1cj3cjm7d3zk0mf1xdybh0jywkbbw7a6yr3y22x9sis31scprswd")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/spf13/pflag")) - (home-page "https://github.com/spf13/pflag") - (synopsis "Description") - (description - "Package pflag is a drop-in replacement for Go's flag package, implementing -POSIX/GNU-style --flags.") - (license license:bsd-3))) - -(define-public go-github-com-yuin-goldmark-1.2.1 - (package - (name "go-github-com-yuin-goldmark") - (version "1.2.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/yuin/goldmark") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12rsnsf65drcp0jfw2jl9w589vsn3pxdk1zh3v9q908iigngrcmy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/yuin/goldmark")) - (home-page "https://github.com/yuin/goldmark") - (synopsis "goldmark") - (description - "Package goldmark implements functions to convert markdown text to a desired -format.") - (license license:expat))) - -(define-public go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20191011191535-87dc89f01550") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0z4i1m2yn3f31ci7wvcm2rxkx2yiv7a78mfzklncmsz2k97rlh2g")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" - ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) - ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" - ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190620200207-3b0461eec859") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0l00c8l0a8xnv6qdpwfzxxsr58jggacgzdrwiprrfx2xqm37b6d5")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20190423024810-112230192c58 - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20190423024810-112230192c58") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "05i2k43j2d0llq768hg5pf3hb2yhfzp9la1w5wp0rsnnzblr0lfn")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the ones -provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7 - (package - (name "go-golang-org-x-xerrors") - (version "0.0.0-20190717185122-a985d3407aa7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/xerrors") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "00wzr5w8aadipgc3rkk8f11i41znskfj9ix5nhhaxyg7isrslgcj")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/xerrors")) - (home-page "https://golang.org/x/xerrors") - (synopsis #f) - (description "Package xerrors implements functions to manipulate errors.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20191119224855-298f0cb1881e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0l4pqwib2wnfnix6nvxl0yrq87ipi7ff1rz6z5bxfzy9dki1nzmv")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7" - ,go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7) - ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" - ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) - ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" - ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898 - (package - (name "go-golang-org-x-xerrors") - (version "0.0.0-20191011141410-1b5146add898") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/xerrors") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0w2akj91krxjag0xdhsg78470888nicc5ismc2ap9jqpss6v1zih")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/xerrors")) - (home-page "https://golang.org/x/xerrors") - (synopsis #f) - (description "Package xerrors implements functions to manipulate errors.") - (license license:bsd-3))) - -(define-public go-golang-org-x-mod-0.3.0 - (package - (name "go-golang-org-x-mod") - (version "0.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/mod") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ldgbx2zpprbsfn6p8pfgs4nn87gwbfcv2z0fa7n8alwsq2yw78q")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/mod")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" - ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) - ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" - ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) - ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" - ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) - (home-page "https://golang.org/x/mod") - (synopsis "mod") - (description - "This repository holds packages for writing tools that work directly with Go -module mechanics. That is, it is for direct manipulation of Go modules -themselves.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190215142949-d0b11bdaac8a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20190308221718-c2843e01d9a2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-text-0.3.0 - (package - (name "go-golang-org-x-text") - (version "0.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/text")) - (home-page "https://golang.org/x/text") - (synopsis "Go Text") - (description - "text is a repository of text-related packages related to internationalization -(i18n) and localization (l10n), such as character encodings, text -transformations, and locale-specific text handling.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190404232315-eb5bcb51f2a3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "17k4g8krxbl84gzcs275b7gsh66dzm15fdxivjnx9xz8q84l4kby")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20190412213103-97732733099d - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190412213103-97732733099d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "118hkp01i4z1f5h6hcjm0ff2ngqhrzj1f7731n0kw8dr6hvbx0sw")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20200622213623-75b288015ac9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18vlncvvs11ds3zaaziqjlg5s2vcwi3496nn6qv7p0dp94j5pwa2")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" - ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) - ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" - ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200930185726-fdedc70b468f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1njlfhjbvi4lxvjbq8zswrb0y0q4jd2p6x51h1q6vmyzi9af6869")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20180917221912-90fa682c2a6e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-golang-org-x-text-0.3.3 - (package - (name "go-golang-org-x-text") - (version "0.3.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19pihqm3phyndmiw6i42pdv6z1rbvlqlsnhsyqf9gsnn0qnmqqlh")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/text")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" - ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) - (home-page "https://golang.org/x/text") - (synopsis "Go Text") - (description - "text is a repository of text-related packages related to internationalization -(i18n) and localization (l10n), such as character encodings, text -transformations, and locale-specific text handling.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20201021035429-f5854403a974 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20201021035429-f5854403a974") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1vw63zpmhi337f3gc432x3wkib4j2ia8dy7if31wxwb9dgqvy222")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) - ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" - ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) - ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" - ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9 - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20201020160332-67f06af15bc9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "093p4panc808ak5bamzz7m9nb0xxib7778jpnr6f0xkz1n4fzyw5")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the ones -provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20210119212857-b64e53b001e4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "16in6bazi0frdkzhqxyvmw7qcvzjavq21dnz9bmrqq8d4dpd2j44")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1 - (package - (name "go-golang-org-x-xerrors") - (version "0.0.0-20200804184101-5ec99f83aff1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/xerrors") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1dbzc3gmf2haazpv7cgmv97rq40g2xzwbglc17vas8dwhgwgwrzb")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/xerrors")) - (home-page "https://golang.org/x/xerrors") - (synopsis #f) - (description "Package xerrors implements functions to manipulate errors.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.1.0 - (package - (name "go-golang-org-x-tools") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1asrm22kv5x891qkbpap8alg612k321jbs1akc0vwsan251gm507")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" - ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) - ("go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4" - ,go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4) - ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" - ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) - ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" - ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) - ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) - ("go-github-com-yuin-goldmark-1.2.1" - ,go-github-com-yuin-goldmark-1.2.1))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-gotest-tools-v3-3.1.0 - (package - (name "go-gotest-tools-v3") - (version "3.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gotestyourself/gotest.tools") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0jk2grk2q19k453m76hn2bsq9i73yk63drlfjg1imvhmmcl88872")))) - (build-system go-build-system) - (arguments - '(#:import-path "gotest.tools/v3" #:unpack-path "gotest.tools/v3")) - (propagated-inputs - `(("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) - ("go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4" - ,go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4) - ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-google-go-cmp-0.5.5" - ,go-github-com-google-go-cmp-0.5.5))) - (home-page "https://gotest.tools/v3") - (synopsis "gotest.tools") - (description - "Package gotesttools is a collection of packages to augment `testing` and support -common patterns.") - (license license:asl2.0))) - -(define-public go-github-com-creack-pty-1.1.15 - (package - (name "go-github-com-creack-pty") - (version "1.1.15") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/creack/pty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1j5w51ammp5rp90bhdwqi216dxmndpmf4gf3gim75qls52qj8j2r")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/creack/pty")) - (home-page "https://github.com/creack/pty") - (synopsis "pty") - (description - "Package pty provides functions for working with Unix terminals.") - (license license:expat))) - -(define-public go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543 - (package - (name "go-golang-org-x-xerrors") - (version "0.0.0-20191204190536-9bdfabe68543") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/xerrors") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1yjfi1bk9xb81lqn85nnm13zz725wazvrx3b50hx19qmwg7a4b0c")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/xerrors")) - (home-page "https://golang.org/x/xerrors") - (synopsis #f) - (description "Package xerrors implements functions to manipulate errors.") - (license license:bsd-3))) - -(define-public go-github-com-google-go-cmp-0.5.6 - (package - (name "go-github-com-google-go-cmp") - (version "0.5.6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0lrb0pacv5iy3m6fn1qb3nv7zwimfhpzqq8f6hwpwx88cx3g6p1s")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically -equal.") - (license license:bsd-3))) - -(define-public go-github-com-frankban-quicktest-1.13.1 - (package - (name "go-github-com-frankban-quicktest") - (version "1.13.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/frankban/quicktest") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1x0v98s4m0zy9m4h7x3kmx30vxk2ah496qb81mnmzv98h4cgdki0")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/frankban/quicktest")) - (propagated-inputs - `(("go-github-com-kr-pretty-0.3.0" ,go-github-com-kr-pretty-0.3.0) - ("go-github-com-google-go-cmp-0.5.6" - ,go-github-com-google-go-cmp-0.5.6))) - (home-page "https://github.com/frankban/quicktest") - (synopsis "quicktest") - (description - "Package quicktest provides a collection of Go helpers for writing tests.") - (license license:expat))) - -(define-public go-github-com-google-renameio-1.0.1 - (package - (name "go-github-com-google-renameio") - (version "1.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/renameio") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1qn84nra9nxqyqg4i496b6ijbhnxvx66hdndwl7qh7r6q8lz2ba5")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/renameio")) - (home-page "https://github.com/google/renameio") - (synopsis "Atomicity vs durability") - (description - "Package renameio provides a way to atomically create or replace a file or -symbolic link.") - (license license:asl2.0))) - -(define-public go-github-com-creack-pty-1.1.9 - (package - (name "go-github-com-creack-pty") - (version "1.1.9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/creack/pty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1v52599qq76dwq742mffakzj6mxqqccv2szn3hjicjld56nmd2d3")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/creack/pty")) - (home-page "https://github.com/creack/pty") - (synopsis "pty") - (description - "Package pty provides functions for working with Unix terminals.") - (license license:expat))) - -(define-public go-github-com-kr-text-0.2.0 - (package - (name "go-github-com-kr-text") - (version "0.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hf58ypz6rxsw6nx3i856whir9lvy4sdx946wbw1nfaf2rdmr9vx")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/text")) - (propagated-inputs - `(("go-github-com-creack-pty-1.1.9" ,go-github-com-creack-pty-1.1.9))) - (home-page "https://github.com/kr/text") - (synopsis #f) - (description - "Package text provides rudimentary functions for manipulating text in paragraphs.") - (license license:expat))) - -(define-public go-github-com-rogpeppe-go-internal-1.6.1 - (package - (name "go-github-com-rogpeppe-go-internal") - (version "1.6.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/rogpeppe/go-internal") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "00j2vpp1bsggdvw1winkz23mg0q6drjiir5q0k49pmqx1sh7106l")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/rogpeppe/go-internal")) - (propagated-inputs - `(("go-gopkg-in-errgo-v2-2.1.0" ,go-gopkg-in-errgo-v2-2.1.0))) - (home-page "https://github.com/rogpeppe/go-internal") - (synopsis #f) - (description - "This repository factors out an opinionated selection of internal packages and -functionality from the Go standard library. Currently this consists mostly of -packages and testing code from within the Go tool implementation.") - (license license:bsd-3))) - -(define-public go-github-com-kr-pretty-0.3.0 - (package - (name "go-github-com-kr-pretty") - (version "0.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/pretty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0vp5ijbapw8j52c3l992m1wm8nhl23n68xk3lqxhad3srxmdb9z4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/pretty")) - (propagated-inputs - `(("go-github-com-rogpeppe-go-internal-1.6.1" - ,go-github-com-rogpeppe-go-internal-1.6.1) - ("go-github-com-kr-text-0.2.0" ,go-github-com-kr-text-0.2.0))) - (home-page "https://github.com/kr/pretty") - (synopsis #f) - (description - "Package pretty provides pretty-printing for Go values. This is useful during -debugging, to avoid wrapping long output lines in the terminal.") - (license license:expat))) - -(define-public go-github-com-pkg-diff-0.0.0-20210226163009-20ebb0f2a09e - (package - (name "go-github-com-pkg-diff") - (version "0.0.0-20210226163009-20ebb0f2a09e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pkg/diff") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1g3dzgwhz4fx3ddpsv7fsa4r1v5clsp2lbw2qrkdk9y1vc5gi8yi")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pkg/diff")) - (home-page "https://github.com/pkg/diff") - (synopsis "diff") - (description - "Package diff contains high level routines that generate a textual diff.") - (license license:bsd-3))) - -(define-public go-github-com-kr-pty-1.1.1 - (package - (name "go-github-com-kr-pty") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/pty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0383f0mb9kqjvncqrfpidsf8y6ns5zlrc91c6a74xpyxjwvzl2y6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/pty")) - (home-page "https://github.com/kr/pty") - (synopsis "pty") - (description - "Package pty is a wrapper for github.com/creack/pty, which provides functions for -working with Unix terminals.") - (license license:expat))) - -(define-public go-github-com-kr-text-0.1.0 - (package - (name "go-github-com-kr-text") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1gm5bsl01apvc84bw06hasawyqm4q84vx1pm32wr9jnd7a8vjgj1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/text")) - (propagated-inputs - `(("go-github-com-kr-pty-1.1.1" ,go-github-com-kr-pty-1.1.1))) - (home-page "https://github.com/kr/text") - (synopsis #f) - (description - "Package text provides rudimentary functions for manipulating text in paragraphs.") - (license license:expat))) - -(define-public go-github-com-kr-pretty-0.1.0 - (package - (name "go-github-com-kr-pretty") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/pretty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18m4pwg2abd0j9cn5v3k2ksk9ig4vlwxmlw9rrglanziv9l967qp")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/pretty")) - (propagated-inputs - `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) - (home-page "https://github.com/kr/pretty") - (synopsis #f) - (description - "Package pretty provides pretty-printing for Go values. This is useful during -debugging, to avoid wrapping long output lines in the terminal.") - (license license:expat))) - -(define-public go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127 - (package - (name "go-gopkg-in-check-v1") - (version "1.0.0-20180628173108-788fd7840127") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/check.v1") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0v3bim0j375z81zrpr5qv42knqs0y2qv2vkjiqi5axvb78slki1a")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) - (home-page "https://gopkg.in/check.v1") - (synopsis "Instructions") - (description - "Package check is a rich testing extension for Go's testing package.") - (license license:bsd-2))) - -(define-public go-gopkg-in-errgo-v2-2.1.0 - (package - (name "go-gopkg-in-errgo-v2") - (version "2.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/errgo.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "065mbihiy7q67wnql0bzl9y1kkvck5ivra68254zbih52jxwrgr2")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/errgo.v2" #:unpack-path "gopkg.in/errgo.v2")) - (propagated-inputs - `(("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" - ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) - ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0))) - (home-page "https://gopkg.in/errgo.v2") - (synopsis #f) - (description - "Package errgo provides some primitives for error creation and handling.") - (license license:bsd-3))) - -(define-public go-github-com-rogpeppe-go-internal-1.8.1-0.20210923151022-86f73c517451 - (package - (name "go-github-com-rogpeppe-go-internal") - (version "1.8.1-0.20210923151022-86f73c517451") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/rogpeppe/go-internal") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1qswk3kaif0n8q125dvd8rfcyc3wqw71yi16fc26336kbwjzrc9p")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/rogpeppe/go-internal")) - (propagated-inputs - `(("go-gopkg-in-errgo-v2-2.1.0" ,go-gopkg-in-errgo-v2-2.1.0) - ("go-github-com-pkg-diff-0.0.0-20210226163009-20ebb0f2a09e" - ,go-github-com-pkg-diff-0.0.0-20210226163009-20ebb0f2a09e))) - (home-page "https://github.com/rogpeppe/go-internal") - (synopsis #f) - (description - "This repository factors out an opinionated selection of internal packages and -functionality from the Go standard library. Currently this consists mostly of -packages and testing code from within the Go tool implementation.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20210220032951-036812b2e83c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1gl202py3s4gl6arkaxlf8qa6f0jyyg2f95m6f89qnfmr416h85b")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the ones -provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20210925032602-92d5a993a665 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20210925032602-92d5a993a665") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ps9wq5vz0ilsjxd05glnkkmbfxzpsqvjp0mgm2y1hm6ql5qfpn5")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20210615035016-665e8c7367d1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "11n848csibdbv7b46zjyf4l7sphg37n9sjzqfy1ds7p1jyakwmnv")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-term-0.0.0-20210916214954-140adaaadfaf - (package - (name "go-golang-org-x-term") - (version "0.0.0-20210916214954-140adaaadfaf") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/term") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1rcdx2q92pzpmdyzdlzpq9flc3ibfi3m1rni7w4qlmlq569s6wh3")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/term")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1" - ,go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1))) - (home-page "https://golang.org/x/term") - (synopsis "Go terminal/console support") - (description - "Package term provides support functions for dealing with terminals, as commonly -found on UNIX systems.") - (license license:bsd-3))) - -(define-public go-mvdan-cc-editorconfig-0.2.0 - (package - (name "go-mvdan-cc-editorconfig") - (version "0.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mvdan/editorconfig") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1rav1rp8pi921gsffqr2wjdhbr12w81g31yv6iw4yb1zyh726qqg")))) - (build-system go-build-system) - (arguments '(#:import-path "mvdan.cc/editorconfig")) - (home-page "https://mvdan.cc/editorconfig") - (synopsis "editorconfig") - (description - "Package editorconfig allows parsing and using EditorConfig files, as defined in -@url{https://editorconfig.org/,https://editorconfig.org/}.") - (license license:bsd-3))) - -(define-public go-mvdan-cc-sh-v3-3.4.3-0.20220202175809-113ed667a8a7 - (package - (name "go-mvdan-cc-sh-v3") - (version "3.4.3-0.20220202175809-113ed667a8a7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mvdan/sh") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1k5113qqm20x58838k8f0ry3v1hinahjf2yl8y4450922yy0mq2k")))) - (build-system go-build-system) - (arguments - '(#:import-path "mvdan.cc/sh/v3" #:unpack-path "mvdan.cc/sh/v3")) - (propagated-inputs - `(("go-mvdan-cc-editorconfig-0.2.0" ,go-mvdan-cc-editorconfig-0.2.0) - ("go-golang-org-x-term-0.0.0-20210916214954-140adaaadfaf" - ,go-golang-org-x-term-0.0.0-20210916214954-140adaaadfaf) - ("go-golang-org-x-sys-0.0.0-20210925032602-92d5a993a665" - ,go-golang-org-x-sys-0.0.0-20210925032602-92d5a993a665) - ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" - ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) - ("go-github-com-rogpeppe-go-internal-1.8.1-0.20210923151022-86f73c517451" - ,go-github-com-rogpeppe-go-internal-1.8.1-0.20210923151022-86f73c517451) - ("go-github-com-pkg-diff-0.0.0-20210226163009-20ebb0f2a09e" - ,go-github-com-pkg-diff-0.0.0-20210226163009-20ebb0f2a09e) - ("go-github-com-kr-pretty-0.3.0" ,go-github-com-kr-pretty-0.3.0) - ("go-github-com-google-renameio-1.0.1" - ,go-github-com-google-renameio-1.0.1) - ("go-github-com-frankban-quicktest-1.13.1" - ,go-github-com-frankban-quicktest-1.13.1) - ("go-github-com-creack-pty-1.1.15" ,go-github-com-creack-pty-1.1.15))) - (home-page "https://mvdan.cc/sh/v3") - (synopsis "sh") - (description - "This package provides a shell parser, formatter, and interpreter. Supports -@url{https://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html,POSIX -Shell}, @url{https://www.gnu.org/software/bash/,Bash}, and -@url{http://www.mirbsd.org/mksh.htm,mksh}. Requires Go 1.16 or later.") - (license license:bsd-3))) - -(define-public go-github-com-opencontainers-image-spec-1.0.2-0.20211117181255-693428a734f5 - (package - (name "go-github-com-opencontainers-image-spec") - (version "1.0.2-0.20211117181255-693428a734f5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/image-spec") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1w9fmamky30idjbqs78qhds6d5b9gdy6wzcxx6fhmpm2159dv62b")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/image-spec")) - (home-page "https://github.com/opencontainers/image-spec") - (synopsis "OCI Image Format Specification") - (description - "The OCI Image Format project creates and maintains the software shipping -container image format spec (OCI Image Format).") - (license license:asl2.0))) - -(define-public go-github-com-yvasiyarov-gorelic-0.0.6 - (package - (name "go-github-com-yvasiyarov-gorelic") - (version "0.0.6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/yvasiyarov/gorelic") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0210d8z7l945611b5ynzjhnypqfdyr490ndrap13s4k5z1jgqjnb")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/yvasiyarov/gorelic")) - (home-page "https://github.com/yvasiyarov/gorelic") - (synopsis "GoRelic is deprecated in favour of") - (description - "Package gorelic is an New Relic agent implementation for Go runtime. It collect -a lot of metrics about Go scheduler, garbage collector and memory allocator and -send them to NewRelic.") - (license license:bsd-2))) - -(define-public go-github-com-moby-sys-0.0.0-20220308220145-03355939d693 - (package - (name "go-github-com-moby-sys") - (version "0.0.0-20220308220145-03355939d693") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/moby/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ns4bav4n0k93nwz898dmcrz9zm4fa08sxyzhi7wqj4f8mpz4fam")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/moby/sys")) - (home-page "https://github.com/moby/sys") - (synopsis #f) - (description #f) - (license license:asl2.0))) -(define-public go-github-com-apptainer-sif-v2-2.3.2 - (package - (name "go-github-com-apptainer-sif-v2") - (version "2.3.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/apptainer/sif") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "10cmvgyjxnfgw5661n1zbdr8zs29rx9izsr1bbnnyjr9kdqdhfg1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/apptainer/sif/v2")) - (propagated-inputs - `(("go-gopkg-in-warnings-v0-0.1.2" ,go-gopkg-in-warnings-v0-0.1.2) - ("go-golang-org-x-sys-0.0.0-20211205182925-97ca703d548d" - ,go-golang-org-x-sys-0.0.0-20211205182925-97ca703d548d) - ("go-golang-org-x-net-0.0.0-20210813160813-60bc85c4be6d" - ,go-golang-org-x-net-0.0.0-20210813160813-60bc85c4be6d) - ("go-golang-org-x-crypto-0.0.0-20210817164053-32db794688a5" - ,go-golang-org-x-crypto-0.0.0-20210817164053-32db794688a5) - ("go-github-com-xanzy-ssh-agent-0.3.0" - ,go-github-com-xanzy-ssh-agent-0.3.0) - ("go-github-com-sergi-go-diff-1.1.0" - ,go-github-com-sergi-go-diff-1.1.0) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-mitchellh-go-homedir-1.1.0" - ,go-github-com-mitchellh-go-homedir-1.1.0) - ("go-github-com-kevinburke-ssh-config-0.0.0-20201106050909-4977a11b4351" - ,go-github-com-kevinburke-ssh-config-0.0.0-20201106050909-4977a11b4351) - ("go-github-com-jbenet-go-context-0.0.0-20150711004518-d14ea06fba99" - ,go-github-com-jbenet-go-context-0.0.0-20150711004518-d14ea06fba99) - ("go-github-com-inconshreveable-mousetrap-1.0.0" - ,go-github-com-inconshreveable-mousetrap-1.0.0) - ("go-github-com-imdario-mergo-0.3.12" - ,go-github-com-imdario-mergo-0.3.12) - ("go-github-com-go-git-go-billy-v5-5.3.1" - ,go-github-com-go-git-go-billy-v5-5.3.1) - ("go-github-com-go-git-gcfg-1.5.0" ,go-github-com-go-git-gcfg-1.5.0) - ("go-github-com-emirpasic-gods-1.12.0" - ,go-github-com-emirpasic-gods-1.12.0) - ("go-github-com-acomagu-bufpipe-1.0.3" - ,go-github-com-acomagu-bufpipe-1.0.3) - ("go-github-com-microsoft-go-winio-0.4.16" - ,go-github-com-microsoft-go-winio-0.4.16) - ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) - ("go-github-com-spf13-cobra-1.3.0" ,go-github-com-spf13-cobra-1.3.0) - ("go-github-com-sebdah-goldie-v2-2.5.3" - ,go-github-com-sebdah-goldie-v2-2.5.3) - ("go-github-com-magefile-mage-1.12.1" - ,go-github-com-magefile-mage-1.12.1) - ("go-github-com-google-uuid-1.3.0" ,go-github-com-google-uuid-1.3.0) - ("go-github-com-go-git-go-git-v5-5.4.2" - ,go-github-com-go-git-go-git-v5-5.4.2) - ("go-github-com-blang-semver-v4-4.0.0" - ,go-github-com-blang-semver-v4-4.0.0) - ("go-github-com-protonmail-go-crypto-0.0.0-20220113124808-70ae35bab23f" - ,go-github-com-protonmail-go-crypto-0.0.0-20220113124808-70ae35bab23f))) - (home-page "https://github.com/apptainer/sif") - (synopsis "The Singularity Image Format (SIF)") - (description - "This module contains an open source implementation of the Singularity Image -Format (SIF) that makes it easy to create complete and encapsulated container -environments stored in a single file.") - (license license:bsd-3))) +;(define-public go-github-com-creack-pty-1.1.17 +; (package +; (name "go-github-com-creack-pty") +; (version "1.1.17") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/creack/pty") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "09lcq5bw1dwppxjia05sj4fy7gbk62vishfz1bgrbd1r06i57mjf")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/creack/pty")) +; (home-page "https://github.com/creack/pty") +; (synopsis "pty") +; (description +; "Package pty provides functions for working with Unix terminals.") +; (license license:expat))) +; +;(define-public go-github-com-davecgh-go-spew-1.1.0 +; (package +; (name "go-github-com-davecgh-go-spew") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/davecgh/go-spew") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/davecgh/go-spew")) +; (home-page "https://github.com/davecgh/go-spew") +; (synopsis "go-spew") +; (description +; "Go-spew implements a deep pretty printer for Go data structures to aid in +;debugging. A comprehensive suite of tests with 100% test coverage is provided +;to ensure proper functionality. See @code{test_coverage.txt} for the gocov +;coverage report. Go-spew is licensed under the liberal ISC license, so it may +;be used in open source or commercial projects.") +; (license license:isc))) +; +;(define-public go-github-com-pmezard-go-difflib-1.0.0 +; (package +; (name "go-github-com-pmezard-go-difflib") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/pmezard/go-difflib") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/pmezard/go-difflib")) +; (home-page "https://github.com/pmezard/go-difflib") +; (synopsis "go-difflib") +; (description +; "Go-difflib is a partial port of python 3 difflib package. Its main goal was to +;make unified and context diff available in pure Go, mostly for testing purposes.") +; (license license:bsd-3))) +; +;(define-public go-github-com-stretchr-objx-0.1.0 +; (package +; (name "go-github-com-stretchr-objx") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/objx") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/objx")) +; (home-page "https://github.com/stretchr/objx") +; (synopsis "Objx") +; (description +; "Objx - Go package for dealing with maps, slices, JSON and other data.") +; (license license:expat))) +; +;(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 +; (package +; (name "go-gopkg-in-check-v1") +; (version "0.0.0-20161208181325-20d25e280405") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/check.v1") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) +; (home-page "https://gopkg.in/check.v1") +; (synopsis "Instructions") +; (description +; "Package check is a rich testing extension for Go's testing package.") +; (license license:bsd-2))) +; +;(define-public go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c +; (package +; (name "go-gopkg-in-yaml-v3") +; (version "3.0.0-20200313102051-9f266ea9e77c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/yaml.v3") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1bbai3lzb50m0x2vwsdbagrbhvfylj9k1m32hgbqwldqx4p9ay35")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" +; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) +; (home-page "https://gopkg.in/yaml.v3") +; (synopsis "YAML support for the Go language") +; (description "Package yaml implements YAML support for the Go language.") +; (license license:expat))) +; +;(define-public go-github-com-stretchr-testify-1.6.1 +; (package +; (name "go-github-com-stretchr-testify") +; (version "1.6.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/testify") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1yhiqqzjvi63pf01rgzx68gqkkvjx03fvl5wk30br5l6s81s090l")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/testify")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" +; ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) +; ("go-github-com-stretchr-objx-0.1.0" +; ,go-github-com-stretchr-objx-0.1.0) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.0" +; ,go-github-com-davecgh-go-spew-1.1.0))) +; (home-page "https://github.com/stretchr/testify") +; (synopsis "Testify - Thou Shalt Write Tests") +; (description +; "** We are working on testify v2 and would love to hear what you'd like to see in +;it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +;Package testify is a set of packages that provide many tools for testifying that +;your code will behave as you intend.") +; (license license:expat))) +; +;(define-public go-github-com-netflix-go-expect-0.0.0-20220104043353-73e0943537d2 +; (package +; (name "go-github-com-netflix-go-expect") +; (version "0.0.0-20220104043353-73e0943537d2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/Netflix/go-expect") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0zkvhnc4ii6ygvcsj54ng0kql26rnny7l3hy1w61g88mxjsww1b9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/Netflix/go-expect")) +; (propagated-inputs +; `(("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-creack-pty-1.1.17" ,go-github-com-creack-pty-1.1.17))) +; (home-page "https://github.com/Netflix/go-expect") +; (synopsis "go-expect") +; (description +; "Package expect provides an expect-like interface to automate control of +;applications. It is unlike expect in that it does not spawn or manage process +;lifecycle. This package only focuses on expecting output and sending input +;through it's psuedoterminal.") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20180917221912-90fa682c2a6e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-text-0.3.3 +; (package +; (name "go-golang-org-x-text") +; (version "0.3.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/text") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19pihqm3phyndmiw6i42pdv6z1rbvlqlsnhsyqf9gsnn0qnmqqlh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/text")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" +; ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) +; (home-page "https://golang.org/x/text") +; (synopsis "Go Text") +; (description +; "text is a repository of text-related packages related to internationalization +;(i18n) and localization (l10n), such as character encodings, text +;transformations, and locale-specific text handling.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20210226172049-e18ecbb05110") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1vlq8mdscp7yfaa1lmyv03y5m4c2d67ydg2q1i6smkrxghn3zn3q")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) +; ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" +; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) +; ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" +; ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20201119102817-f84b799fce68") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1dvhqian5byzkcg1bnqzygqa6ccc6krc2q7j12pp1vhl3y7znnsg")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1 +; (package +; (name "go-golang-org-x-term") +; (version "0.0.0-20201126162022-7de9c90e9dd1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/term") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ba252xmv6qsvf1w1gcy98mngrj0vd4inbjw0lsklqvva65nljna")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/term")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" +; ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) +; (home-page "https://golang.org/x/term") +; (synopsis "Go terminal/console support") +; (description +; "Package term provides support functions for dealing with terminals, as commonly +;found on UNIX systems.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20210322153248-0c34fe9e7dc2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "021szs1czc0xg4chpays7i05dvkax9s8mns314ab01r887kchqxq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (propagated-inputs +; `(("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" +; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) +; ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" +; ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68) +; ("go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110" +; ,go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110))) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-github-com-protonmail-go-crypto-0.0.0-20220113124808-70ae35bab23f +; (package +; (name "go-github-com-protonmail-go-crypto") +; (version "0.0.0-20220113124808-70ae35bab23f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/ProtonMail/go-crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0dpalb7cd2xs0hji80zv378vf8gx4ph7b8xdd05kvbskyw67fb7n")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/ProtonMail/go-crypto")) +; (propagated-inputs +; `(("go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2" +; ,go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2))) +; (home-page "https://github.com/ProtonMail/go-crypto") +; (synopsis #f) +; (description +; "This module is backwards compatible with x/crypto/openpgp, so you can simply +;replace all imports of @code{golang.org/x/crypto/openpgp} with +;@code{github.com/ProtonMail/go-crypto/openpgp}.") +; (license license:bsd-3))) +; +;(define-public go-github-com-docker-distribution-2.7.1+incompatible +; (package +; (name "go-github-com-docker-distribution") +; (version "2.7.1+incompatible") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/distribution/distribution") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1nx8b5a68rn81alp8wkkw6qd5v32mgf0fk23mxm60zdf63qk1nzw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/docker/distribution")) +; (home-page "https://github.com/docker/distribution") +; (synopsis "Distribution") +; (description +; "Package distribution will define the interfaces for the components of docker +;distribution. The goal is to allow users to reliably package, ship and store +;content related to docker images.") +; (license license:asl2.0))) +; +;(define-public go-github-com-docker-libtrust-0.0.0-20160708172513-aabc10ec26b7 +; (package +; (name "go-github-com-docker-libtrust") +; (version "0.0.0-20160708172513-aabc10ec26b7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/docker/libtrust") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1lwslbggzc2b0c4wxl5pn6i2nfgz5jz8f7s7vnid9mrlsk59h7s1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/docker/libtrust")) +; (home-page "https://github.com/docker/libtrust") +; (synopsis "libtrust") +; (description +; "Package libtrust provides an interface for managing authentication and +;authorization using public key cryptography. Authentication is handled using +;the identity attached to the public key and verified through TLS x509 +;certificates, a key challenge, or signature. Authorization and access control +;is managed through a trust graph distributed between both remote trust servers +;and locally cached and managed data.") +; (license license:asl2.0))) +; +;(define-public go-github-com-gorilla-mux-1.7.4 +; (package +; (name "go-github-com-gorilla-mux") +; (version "1.7.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/gorilla/mux") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1d0sy1paa055ic84sp3766s9pa24q008hf77dc842vrgvn8p3wmh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/gorilla/mux")) +; (home-page "https://github.com/gorilla/mux") +; (synopsis "gorilla/mux") +; (description "Package mux implements a request router and dispatcher.") +; (license license:bsd-3))) +; +;(define-public go-github-com-davecgh-go-spew-1.1.1 +; (package +; (name "go-github-com-davecgh-go-spew") +; (version "1.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/davecgh/go-spew") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/davecgh/go-spew")) +; (home-page "https://github.com/davecgh/go-spew") +; (synopsis "go-spew") +; (description +; "Go-spew implements a deep pretty printer for Go data structures to aid in +;debugging. A comprehensive suite of tests with 100% test coverage is provided +;to ensure proper functionality. See @code{test_coverage.txt} for the gocov +;coverage report. Go-spew is licensed under the liberal ISC license, so it may +;be used in open source or commercial projects.") +; (license license:isc))) +; +;(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.1 +; (package +; (name "go-github-com-konsorten-go-windows-terminal-sequences") +; (version "1.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/konsorten/go-windows-terminal-sequences") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1lchgf27n276vma6iyxa0v1xds68n2g8lih5lavqnx5x6q5pw2ip")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) +; (home-page "https://github.com/konsorten/go-windows-terminal-sequences") +; (synopsis "Windows Terminal Sequences") +; (description +; "This library allow for enabling Windows terminal color support for Go.") +; (license license:expat))) +; +;(define-public go-github-com-pmezard-go-difflib-1.0.0 +; (package +; (name "go-github-com-pmezard-go-difflib") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/pmezard/go-difflib") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/pmezard/go-difflib")) +; (home-page "https://github.com/pmezard/go-difflib") +; (synopsis "go-difflib") +; (description +; "Go-difflib is a partial port of python 3 difflib package. Its main goal was to +;make unified and context diff available in pure Go, mostly for testing purposes.") +; (license license:bsd-3))) +; +;(define-public go-github-com-stretchr-objx-0.1.1 +; (package +; (name "go-github-com-stretchr-objx") +; (version "0.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/objx") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0iph0qmpyqg4kwv8jsx6a56a7hhqq8swrazv40ycxk9rzr0s8yls")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/objx")) +; (home-page "https://github.com/stretchr/objx") +; (synopsis "Objx") +; (description +; "Objx - Go package for dealing with maps, slices, JSON and other data.") +; (license license:expat))) +; +;(define-public go-github-com-stretchr-testify-1.2.2 +; (package +; (name "go-github-com-stretchr-testify") +; (version "1.2.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/testify") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0dlszlshlxbmmfxj5hlwgv3r22x0y1af45gn1vd198nvvs3pnvfs")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/testify")) +; (home-page "https://github.com/stretchr/testify") +; (synopsis "Testify - Thou Shalt Write Tests") +; (description +; "** We are working on testify v2 and would love to hear what you'd like to see in +;it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +;Package testify is a set of packages that provide many tools for testifying that +;your code will behave as you intend.") +; (license license:expat))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190422165155-953cdadca894") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0gkha4whk8xkcv3isigbs250akag99isxnd3v9xmy0kl3g88hxy1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-sirupsen-logrus-1.4.2 +; (package +; (name "go-github-com-sirupsen-logrus") +; (version "1.4.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/sirupsen/logrus") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "087k2lxrr9p9dh68yw71d05h5g9p5v26zbwd6j7lghinjfaw334x")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/sirupsen/logrus")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894" +; ,go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894) +; ("go-github-com-stretchr-testify-1.2.2" +; ,go-github-com-stretchr-testify-1.2.2) +; ("go-github-com-stretchr-objx-0.1.1" +; ,go-github-com-stretchr-objx-0.1.1) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.1" +; ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.1) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://github.com/sirupsen/logrus") +; (synopsis "Logrus") +; (description +; "Package logrus is a structured logger for Go, completely API compatible with the +;standard library logger.") +; (license license:expat))) +; +;(define-public go-github-com-adigunhammedolalekan-registry-auth-0.0.0-20200730122110-8cde180a3a60 +; (package +; (name "go-github-com-adigunhammedolalekan-registry-auth") +; (version "0.0.0-20200730122110-8cde180a3a60") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/adigunhammedolalekan/registry-auth") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0855a5c0ifi6q2ghb6gax0kwwra5j7pd2lplq4wp8r83dnv4vwj0")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "github.com/adigunhammedolalekan/registry-auth")) +; (propagated-inputs +; `(("go-github-com-sirupsen-logrus-1.4.2" +; ,go-github-com-sirupsen-logrus-1.4.2) +; ("go-github-com-gorilla-mux-1.7.4" ,go-github-com-gorilla-mux-1.7.4) +; ("go-github-com-docker-libtrust-0.0.0-20160708172513-aabc10ec26b7" +; ,go-github-com-docker-libtrust-0.0.0-20160708172513-aabc10ec26b7) +; ("go-github-com-docker-distribution-2.7.1+incompatible" +; ,go-github-com-docker-distribution-2.7.1+incompatible))) +; (home-page "https://github.com/adigunhammedolalekan/registry-auth") +; (synopsis "registry-auth") +; (description +; "a package to implements docker registry token authentication server as described +;here +;[https://github.com/docker/distribution/blob/1b9ab303a477ded9bdd3fc97e9119fa8f9e58fca/docs/spec/auth/index.md]") +; (license license:expat))) +; +;(define-public go-github-com-stretchr-testify-1.3.0 +; (package +; (name "go-github-com-stretchr-testify") +; (version "1.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/testify") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0wjchp2c8xbgcbbq32w3kvblk6q6yn533g78nxl6iskq6y95lxsy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/testify")) +; (propagated-inputs +; `(("go-github-com-stretchr-objx-0.1.0" +; ,go-github-com-stretchr-objx-0.1.0) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.0" +; ,go-github-com-davecgh-go-spew-1.1.0))) +; (home-page "https://github.com/stretchr/testify") +; (synopsis "Testify - Thou Shalt Write Tests") +; (description +; "** We are working on testify v2 and would love to hear what you'd like to see in +;it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +;Package testify is a set of packages that provide many tools for testifying that +;your code will behave as you intend.") +; (license license:expat))) +; +;(define-public go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0 +; (package +; (name "go-github-com-tj-assert") +; (version "0.0.0-20171129193455-018094318fb0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/tj/assert") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "15ika7izp5hkd10dm30apwfvpm0d1yl2rnxs6896q0svz9zvi2z3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/tj/assert")) +; (home-page "https://github.com/tj/assert") +; (synopsis "assert") +; (description +; "Package assert implements the same assertions as the `assert` package but stops +;test execution when a test fails.") +; (license license:expat))) +; +;(define-public go-github-com-apex-logs-1.0.0 +; (package +; (name "go-github-com-apex-logs") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/apex/logs") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1kysjp3s8718p02ngpr60gnjjspv0a69biksfjqa1540svrbi850")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/apex/logs")) +; (propagated-inputs +; `(("go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0" +; ,go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0) +; ("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0))) +; (home-page "https://github.com/apex/logs") +; (synopsis "Example") +; (description "Go client for @url{https://apex.sh/logs/,Apex Logs}.") +; (license license:expat))) +; +;(define-public go-github-com-aphistic-golf-0.0.0-20180712155816-02c07f170c5a +; (package +; (name "go-github-com-aphistic-golf") +; (version "0.0.0-20180712155816-02c07f170c5a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/aphistic/golf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1qixab9bb29wqbr4nc5j3g25hq1j7am93f181rkj7a4qacncx763")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/aphistic/golf")) +; (home-page "https://github.com/aphistic/golf") +; (synopsis "golf") +; (description +; "This package provides logging capabilities using the GELF +;(@url{https://www.graylog.org/resources/gelf-2/,https://www.graylog.org/resources/gelf-2/}) +;log format") +; (license license:expat))) +; +;(define-public go-github-com-mattn-go-isatty-0.0.5 +; (package +; (name "go-github-com-mattn-go-isatty") +; (version "0.0.5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mattn/go-isatty") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "114d5xm8rfxplzd7nxz97gfngb4bhqy102szl084d1afcxsvm4aa")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mattn/go-isatty")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223" +; ,go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223))) +; (home-page "https://github.com/mattn/go-isatty") +; (synopsis "go-isatty") +; (description "Package isatty implements interface to isatty") +; (license license:expat))) +; +;(define-public go-github-com-mattn-go-colorable-0.1.1 +; (package +; (name "go-github-com-mattn-go-colorable") +; (version "0.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mattn/go-colorable") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0l640974j804c1yyjfgyxqlsivz0yrzmbql4mhcw2azryigkp08p")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mattn/go-colorable")) +; (propagated-inputs +; `(("go-github-com-mattn-go-isatty-0.0.5" +; ,go-github-com-mattn-go-isatty-0.0.5))) +; (home-page "https://github.com/mattn/go-colorable") +; (synopsis "go-colorable") +; (description "Colorable writer for windows.") +; (license license:expat))) +; +;(define-public go-github-com-mgutz-ansi-0.0.0-20170206155736-9520e82c474b +; (package +; (name "go-github-com-mgutz-ansi") +; (version "0.0.0-20170206155736-9520e82c474b") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mgutz/ansi") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "00bz22314j26736w1f0q4jy9d9dfaml17vn890n5zqy3cmvmww1j")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mgutz/ansi")) +; (home-page "https://github.com/mgutz/ansi") +; (synopsis "ansi") +; (description +; "Package ansi is a small, fast library to create ANSI colored strings and codes.") +; (license license:expat))) +; +;(define-public go-github-com-fsnotify-fsnotify-1.4.7 +; (package +; (name "go-github-com-fsnotify-fsnotify") +; (version "1.4.7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/fsnotify/fsnotify") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/fsnotify/fsnotify")) +; (home-page "https://github.com/fsnotify/fsnotify") +; (synopsis "File system notifications for Go") +; (description +; "Package fsnotify provides a platform-independent interface for file system +;notifications.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.2.0 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0kf4b59rcbb1cchfny2dm9jyznp8ri2hsb14n8iak1q8986xa0ab")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code +;github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-github-com-hpcloud-tail-1.0.0 +; (package +; (name "go-github-com-hpcloud-tail") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hpcloud/tail") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1njpzc0pi1acg5zx9y6vj9xi6ksbsc5d387rd6904hy6rh2m6kn0")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hpcloud/tail")) +; (home-page "https://github.com/hpcloud/tail") +; (synopsis "Go package for tail-ing files") +; (description +; "This package provides a Go package striving to emulate the features of the BSD +;@code{tail} program.") +; (license license:expat))) +; +;(define-public go-github-com-onsi-ginkgo-1.6.0 +; (package +; (name "go-github-com-onsi-ginkgo") +; (version "1.6.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/onsi/ginkgo") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0x0gc89vgq38xhgmi2h22bhr73cf2gmk42g89nz89k8dgg9hhr25")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/onsi/ginkgo")) +; (home-page "https://github.com/onsi/ginkgo") +; (synopsis "Ginkgo 2.0 Release Candidate is available!") +; (description "Ginkgo is a BDD-style testing framework for Golang") +; (license license:expat))) +; +;(define-public go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20180906233101-161cd47e91fd") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0254ld010iijygbzykib2vags1dc0wlmcmhgh4jl8iny159lhbcv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f +; (package +; (name "go-golang-org-x-sync") +; (version "0.0.0-20180314180146-1d60e4601c6f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sync") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "046jlanz2lkxq1r57x9bl6s4cvfqaic6p2xybsj8mq1120jv4rs6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sync")) +; (home-page "https://golang.org/x/sync") +; (synopsis "Go Sync") +; (description +; "This repository provides Go concurrency primitives in addition to the ones +;provided by the language and \"sync\" and \"sync/atomic\" packages.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20180909124046-d0be0721c37e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "081wyvfnlf842dqg03raxfz6lldlxpmyh1prix9lmrrm65arxb12")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-gopkg-in-fsnotify-v1-1.4.7 +; (package +; (name "go-gopkg-in-fsnotify-v1") +; (version "1.4.7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/fsnotify.v1") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path +; "gopkg.in/fsnotify.v1" +; #:unpack-path +; "gopkg.in/fsnotify.v1")) +; (home-page "https://gopkg.in/fsnotify.v1") +; (synopsis "File system notifications for Go") +; (description +; "Package fsnotify provides a platform-independent interface for file system +;notifications.") +; (license license:bsd-3))) +; +;(define-public go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7 +; (package +; (name "go-gopkg-in-tomb-v1") +; (version "1.0.0-20141024135613-dd632973f1e7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/tomb.v1") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1lqmq1ag7s4b3gc3ddvr792c5xb5k6sfn0cchr3i2s7f1c231zjv")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/tomb.v1" #:unpack-path "gopkg.in/tomb.v1")) +; (home-page "https://gopkg.in/tomb.v1") +; (synopsis "Installation and usage") +; (description +; "The tomb package offers a conventional API for clean goroutine termination.") +; (license license:bsd-3))) +; +;(define-public go-gopkg-in-yaml-v2-2.2.1 +; (package +; (name "go-gopkg-in-yaml-v2") +; (version "2.2.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/yaml.v2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0dwjrs2lp2gdlscs7bsrmyc5yf6mm4fvgw71bzr9mv2qrd2q73s1")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" +; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) +; (home-page "https://gopkg.in/yaml.v2") +; (synopsis "YAML support for the Go language") +; (description "Package yaml implements YAML support for the Go language.") +; (license license:asl2.0))) +; +;(define-public go-github-com-onsi-gomega-1.5.0 +; (package +; (name "go-github-com-onsi-gomega") +; (version "1.5.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/onsi/gomega") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1n7i4hksdgv410m43v2sw14bl5vy59dkp6nlw5l76nibbh37syr9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/onsi/gomega")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1) +; ("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" +; ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) +; ("go-gopkg-in-fsnotify-v1-1.4.7" ,go-gopkg-in-fsnotify-v1-1.4.7) +; ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e" +; ,go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e) +; ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" +; ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) +; ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" +; ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) +; ("go-github-com-onsi-ginkgo-1.6.0" ,go-github-com-onsi-ginkgo-1.6.0) +; ("go-github-com-hpcloud-tail-1.0.0" ,go-github-com-hpcloud-tail-1.0.0) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0) +; ("go-github-com-fsnotify-fsnotify-1.4.7" +; ,go-github-com-fsnotify-fsnotify-1.4.7))) +; (home-page "https://github.com/onsi/gomega") +; (synopsis ": a BDD Testing Framework for Golang") +; (description +; "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library.") +; (license license:expat))) +; +;(define-public go-github-com-sergi-go-diff-1.0.0 +; (package +; (name "go-github-com-sergi-go-diff") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/sergi/go-diff") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0swiazj8wphs2zmk1qgq75xza6m19snif94h2m6fi8dqkwqdl7c7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/sergi/go-diff")) +; (home-page "https://github.com/sergi/go-diff") +; (synopsis "go-diff") +; (description +; "go-diff offers algorithms to perform operations required for synchronizing plain +;text:") +; (license license:expat))) +; +;(define-public go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190404232315-eb5bcb51f2a3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "17k4g8krxbl84gzcs275b7gsh66dzm15fdxivjnx9xz8q84l4kby")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190412213103-97732733099d +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190412213103-97732733099d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "118hkp01i4z1f5h6hcjm0ff2ngqhrzj1f7731n0kw8dr6hvbx0sw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20190426145343-a29dc8fdc734 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20190426145343-a29dc8fdc734") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "07f0jj4haqs0ywc1akk1qjwn5msl2j0pry1rxjkkbfcq4r6ihc1p")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" +; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) +; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" +; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-github-com-aphistic-sweet-0.2.0 +; (package +; (name "go-github-com-aphistic-sweet") +; (version "0.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/aphistic/sweet") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1bb4qagfxf6byqn2yx0vq24xfvisz3ah4w6bvqclc8cklvfngw43")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/aphistic/sweet")) +; (propagated-inputs +; `(("go-golang-org-x-crypto-0.0.0-20190426145343-a29dc8fdc734" +; ,go-golang-org-x-crypto-0.0.0-20190426145343-a29dc8fdc734) +; ("go-github-com-sergi-go-diff-1.0.0" +; ,go-github-com-sergi-go-diff-1.0.0) +; ("go-github-com-onsi-gomega-1.5.0" ,go-github-com-onsi-gomega-1.5.0) +; ("go-github-com-mgutz-ansi-0.0.0-20170206155736-9520e82c474b" +; ,go-github-com-mgutz-ansi-0.0.0-20170206155736-9520e82c474b) +; ("go-github-com-mattn-go-colorable-0.1.1" +; ,go-github-com-mattn-go-colorable-0.1.1))) +; (home-page "https://github.com/aphistic/sweet") +; (synopsis "sweet") +; (description +; "Sweet is a pluggable test runner capable of hooking into standard Go tests. It +;attempts to provide access to the standard Go test tool as close as possible +;while adding support for test suites and plugins that can hook into test results +;to add additional functionality.") +; (license license:expat))) +; +;(define-public go-github-com-jmespath-go-jmespath-0.0.0-20180206201540-c2b33e8439af +; (package +; (name "go-github-com-jmespath-go-jmespath") +; (version "0.0.0-20180206201540-c2b33e8439af") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/jmespath/go-jmespath") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1r6w7ydx8ydryxk3sfhzsk8m6f1nsik9jg3i1zhi69v4kfl4d5cz")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/jmespath/go-jmespath")) +; (home-page "https://github.com/jmespath/go-jmespath") +; (synopsis "go-jmespath - A JMESPath implementation in Go") +; (description +; "go-jmespath is a GO implementation of JMESPath, which is a query language for +;JSON. It will take a JSON document and transform it into another JSON document +;through a JMESPath expression.") +; (license license:asl2.0))) +; +;(define-public go-github-com-aws-aws-sdk-go-1.20.6 +; (package +; (name "go-github-com-aws-aws-sdk-go") +; (version "1.20.6") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/aws/aws-sdk-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "016vy5s9finyfgh08j7rvn2pnwymdgj2ydr59w57pysnri87mdwx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/aws/aws-sdk-go")) +; (propagated-inputs +; `(("go-github-com-jmespath-go-jmespath-0.0.0-20180206201540-c2b33e8439af" +; ,go-github-com-jmespath-go-jmespath-0.0.0-20180206201540-c2b33e8439af))) +; (home-page "https://github.com/aws/aws-sdk-go") +; (synopsis "AWS SDK for Go") +; (description +; "Package sdk is the official AWS SDK for the Go programming language.") +; (license license:asl2.0))) +; +;(define-public go-github-com-aybabtme-rgbterm-0.0.0-20170906152045-cc83f3b3ce59 +; (package +; (name "go-github-com-aybabtme-rgbterm") +; (version "0.0.0-20170906152045-cc83f3b3ce59") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/aybabtme/rgbterm") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0wvmxvjn64968ikvnxrflb1x8rlcwzpfl53fzbxff2axbx9lq50q")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/aybabtme/rgbterm")) +; (home-page "https://github.com/aybabtme/rgbterm") +; (synopsis "RGB terminal") +; (description +; "Package rgbterm colorizes bytes and strings using RGB colors, for a full range +;of pretty terminal strings.") +; (license license:expat))) +; +;(define-public go-github-com-fatih-color-1.7.0 +; (package +; (name "go-github-com-fatih-color") +; (version "1.7.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/fatih/color") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0v8msvg38r8d1iiq2i5r4xyfx0invhc941kjrsg5gzwvagv55inv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/fatih/color")) +; (home-page "https://github.com/fatih/color") +; (synopsis "color") +; (description +; "Package color is an ANSI color package to output colorized or SGR defined output +;to the standard output. The API can be used in several way, pick one that suits +;you.") +; (license license:expat))) +; +;(define-public go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515 +; (package +; (name "go-github-com-kr-logfmt") +; (version "0.0.0-20140226030751-b84e30acd515") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kr/logfmt") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "02ldzxgznrfdzvghfraslhgp19la1fczcbzh7wm2zdc6lmpd1qq9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kr/logfmt")) +; (home-page "https://github.com/kr/logfmt") +; (synopsis #f) +; (description "Package implements the decoding of logfmt key-value pairs.") +; (license license:expat))) +; +;(define-public go-github-com-go-logfmt-logfmt-0.4.0 +; (package +; (name "go-github-com-go-logfmt-logfmt") +; (version "0.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/go-logfmt/logfmt") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "06smxc112xmixz78nyvk3b2hmc7wasf2sl5vxj1xz62kqcq9lzm9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/go-logfmt/logfmt")) +; (propagated-inputs +; `(("go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515" +; ,go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515))) +; (home-page "https://github.com/go-logfmt/logfmt") +; (synopsis "logfmt") +; (description +; "Package logfmt implements utilities to marshal and unmarshal data in the logfmt +;format. The logfmt format records key/value pairs in a way that balances +;readability for humans and simplicity of computer parsing. It is most commonly +;used as a more human friendly alternative to JSON for structured logging.") +; (license license:expat))) +; +;(define-public go-github-com-golang-protobuf-1.3.1 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.3.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "15am4s4646qy6iv0g3kkqq52rzykqjhm4bf08dk0fy2r58knpsyl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code +;github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-github-com-google-uuid-1.1.1 +; (package +; (name "go-github-com-google-uuid") +; (version "1.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/uuid") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0hfxcf9frkb57k6q0rdkrmnfs78ms21r1qfk9fhlqga2yh5xg8zb")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/uuid")) +; (home-page "https://github.com/google/uuid") +; (synopsis "uuid") +; (description "Package uuid generates and inspects UUIDs.") +; (license license:bsd-3))) +; +;(define-public go-github-com-jpillora-backoff-0.0.0-20180909062703-3050d21c67d7 +; (package +; (name "go-github-com-jpillora-backoff") +; (version "0.0.0-20180909062703-3050d21c67d7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/jpillora/backoff") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1nxapdx9xg5gwiscfhq7m0w14hj4gaxb4avmgf1mx9zd3jnw9jxv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/jpillora/backoff")) +; (home-page "https://github.com/jpillora/backoff") +; (synopsis "Backoff") +; (description +; "Package backoff provides an exponential-backoff implementation.") +; (license license:expat))) +; +;(define-public go-github-com-kr-pty-1.1.1 +; (package +; (name "go-github-com-kr-pty") +; (version "1.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kr/pty") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0383f0mb9kqjvncqrfpidsf8y6ns5zlrc91c6a74xpyxjwvzl2y6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kr/pty")) +; (home-page "https://github.com/kr/pty") +; (synopsis "pty") +; (description +; "Package pty is a wrapper for github.com/creack/pty, which provides functions for +;working with Unix terminals.") +; (license license:expat))) +; +;(define-public go-github-com-kr-text-0.1.0 +; (package +; (name "go-github-com-kr-text") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kr/text") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1gm5bsl01apvc84bw06hasawyqm4q84vx1pm32wr9jnd7a8vjgj1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kr/text")) +; (propagated-inputs +; `(("go-github-com-kr-pty-1.1.1" ,go-github-com-kr-pty-1.1.1))) +; (home-page "https://github.com/kr/text") +; (synopsis #f) +; (description +; "Package text provides rudimentary functions for manipulating text in paragraphs.") +; (license license:expat))) +; +;(define-public go-github-com-kr-pretty-0.2.0 +; (package +; (name "go-github-com-kr-pretty") +; (version "0.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kr/pretty") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ywbfzz1h3a3qd8rpkiqwi1dm4w8ls9ijb4x1b7567grns9f0vnp")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kr/pretty")) +; (propagated-inputs +; `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) +; (home-page "https://github.com/kr/pretty") +; (synopsis #f) +; (description +; "Package pretty provides pretty-printing for Go values. This is useful during +;debugging, to avoid wrapping long output lines in the terminal.") +; (license license:expat))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190222072716-a9d3bda3a223") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1w45zc13xrjzl19s1sx74r5mg3lf2z2nm13wygcdq5r5pyjlhdz9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-mattn-go-isatty-0.0.8 +; (package +; (name "go-github-com-mattn-go-isatty") +; (version "0.0.8") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mattn/go-isatty") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0rqfh1rj6f5wm8p2ky7inm8g10152p7w6n2cli17kf9gad797i8h")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mattn/go-isatty")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223" +; ,go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223))) +; (home-page "https://github.com/mattn/go-isatty") +; (synopsis "go-isatty") +; (description "Package isatty implements interface to isatty") +; (license license:expat))) +; +;(define-public go-github-com-mattn-go-colorable-0.1.2 +; (package +; (name "go-github-com-mattn-go-colorable") +; (version "0.1.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mattn/go-colorable") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0512jm3wmzkkn7d99x9wflyqf48n5ri3npy1fqkq6l6adc5mni3n")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mattn/go-colorable")) +; (propagated-inputs +; `(("go-github-com-mattn-go-isatty-0.0.8" +; ,go-github-com-mattn-go-isatty-0.0.8))) +; (home-page "https://github.com/mattn/go-colorable") +; (synopsis "go-colorable") +; (description "Colorable writer for windows.") +; (license license:expat))) +; +;(define-public go-github-com-pkg-errors-0.8.1 +; (package +; (name "go-github-com-pkg-errors") +; (version "0.8.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/pkg/errors") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0g5qcb4d4fd96midz0zdk8b9kz8xkzwfa8kr1cliqbg8sxsy5vd1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/pkg/errors")) +; (home-page "https://github.com/pkg/errors") +; (synopsis "errors") +; (description "Package errors provides simple error handling primitives.") +; (license license:bsd-2))) +; +;(define-public go-github-com-rogpeppe-fastuuid-1.1.0 +; (package +; (name "go-github-com-rogpeppe-fastuuid") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/rogpeppe/fastuuid") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1jlif5pxyz3md02ij93kd2y2j1zz0ajc9k8azvn83vv6l3r5c1zg")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/rogpeppe/fastuuid")) +; (home-page "https://github.com/rogpeppe/fastuuid") +; (synopsis "fastuuid") +; (description +; "Package fastuuid provides fast UUID generation of 192 bit universally unique +;identifiers.") +; (license license:bsd-3))) +; +;(define-public go-github-com-smartystreets-go-aws-auth-0.0.0-20180515143844-0c1422d1fdb9 +; (package +; (name "go-github-com-smartystreets-go-aws-auth") +; (version "0.0.0-20180515143844-0c1422d1fdb9") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/smarty-archives/go-aws-auth") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0krfdpgn3gfii1z9fi8ydfw0wwfqyvp6w3rji7w92m528zkjl93d")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/smartystreets/go-aws-auth")) +; (home-page "https://github.com/smartystreets/go-aws-auth") +; (synopsis "go-aws-auth") +; (description +; "Package awsauth implements AWS request signing using Signed Signature Version 2, +;Signed Signature Version 3, and Signed Signature Version 4. Supports S3 and +;STS.") +; (license license:expat))) +; +;(define-public go-github-com-smartystreets-assertions-1.0.0 +; (package +; (name "go-github-com-smartystreets-assertions") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/smartystreets/assertions") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1188hs39zvil41sdnxs83h1hp319lfyc5n2rvd1xnhz1dh5qjjh4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/smartystreets/assertions")) +; (home-page "https://github.com/smartystreets/assertions") +; (synopsis #f) +; (description +; "Package assertions contains the implementations for all assertions which are +;referenced in goconvey's `convey` package +;(github.com/smartystreets/goconvey/convey) and gunit +;(github.com/smartystreets/gunit) for use with the So(...) method. They can also +;be used in traditional Go test functions and even in applications.") +; (license license:expat))) +; +;(define-public go-github-com-smartystreets-gunit-1.0.0 +; (package +; (name "go-github-com-smartystreets-gunit") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/smartystreets/gunit") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "11d09rl5qqpj36a311pjj8w5jkj83d5b8gdcsx8f1zn4j924sm5d")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/smartystreets/gunit")) +; (propagated-inputs +; `(("go-github-com-smartystreets-assertions-1.0.0" +; ,go-github-com-smartystreets-assertions-1.0.0))) +; (home-page "https://github.com/smartystreets/gunit") +; (synopsis "gunit") +; (description +; "Package gunit provides \"testing\" package hooks and convenience functions for +;writing tests in an xUnit style. See the README file and the examples folder +;for examples.") +; (license license:expat))) +; +;(define-public go-github-com-davecgh-go-spew-1.1.1 +; (package +; (name "go-github-com-davecgh-go-spew") +; (version "1.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/davecgh/go-spew") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/davecgh/go-spew")) +; (home-page "https://github.com/davecgh/go-spew") +; (synopsis "go-spew") +; (description +; "Go-spew implements a deep pretty printer for Go data structures to aid in +;debugging. A comprehensive suite of tests with 100% test coverage is provided +;to ensure proper functionality. See @code{test_coverage.txt} for the gocov +;coverage report. Go-spew is licensed under the liberal ISC license, so it may +;be used in open source or commercial projects.") +; (license license:isc))) +; +;(define-public go-github-com-davecgh-go-spew-1.1.0 +; (package +; (name "go-github-com-davecgh-go-spew") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/davecgh/go-spew") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/davecgh/go-spew")) +; (home-page "https://github.com/davecgh/go-spew") +; (synopsis "go-spew") +; (description +; "Go-spew implements a deep pretty printer for Go data structures to aid in +;debugging. A comprehensive suite of tests with 100% test coverage is provided +;to ensure proper functionality. See @code{test_coverage.txt} for the gocov +;coverage report. Go-spew is licensed under the liberal ISC license, so it may +;be used in open source or commercial projects.") +; (license license:isc))) +; +;(define-public go-github-com-pmezard-go-difflib-1.0.0 +; (package +; (name "go-github-com-pmezard-go-difflib") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/pmezard/go-difflib") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/pmezard/go-difflib")) +; (home-page "https://github.com/pmezard/go-difflib") +; (synopsis "go-difflib") +; (description +; "Go-difflib is a partial port of python 3 difflib package. Its main goal was to +;make unified and context diff available in pure Go, mostly for testing purposes.") +; (license license:bsd-3))) +; +;(define-public go-github-com-stretchr-objx-0.1.0 +; (package +; (name "go-github-com-stretchr-objx") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/objx") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/objx")) +; (home-page "https://github.com/stretchr/objx") +; (synopsis "Objx") +; (description +; "Objx - Go package for dealing with maps, slices, JSON and other data.") +; (license license:expat))) +; +;(define-public go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c +; (package +; (name "go-gopkg-in-yaml-v3") +; (version "3.0.0-20200313102051-9f266ea9e77c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/yaml.v3") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1bbai3lzb50m0x2vwsdbagrbhvfylj9k1m32hgbqwldqx4p9ay35")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" +; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) +; (home-page "https://gopkg.in/yaml.v3") +; (synopsis "YAML support for the Go language") +; (description "Package yaml implements YAML support for the Go language.") +; (license license:expat))) +; +;(define-public go-github-com-stretchr-testify-1.6.1 +; (package +; (name "go-github-com-stretchr-testify") +; (version "1.6.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/testify") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1yhiqqzjvi63pf01rgzx68gqkkvjx03fvl5wk30br5l6s81s090l")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/testify")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" +; ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) +; ("go-github-com-stretchr-objx-0.1.0" +; ,go-github-com-stretchr-objx-0.1.0) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.0" +; ,go-github-com-davecgh-go-spew-1.1.0))) +; (home-page "https://github.com/stretchr/testify") +; (synopsis "Testify - Thou Shalt Write Tests") +; (description +; "** We are working on testify v2 and would love to hear what you'd like to see in +;it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +;Package testify is a set of packages that provide many tools for testifying that +;your code will behave as you intend.") +; (license license:expat))) +; +;(define-public go-gopkg-in-yaml-v3-3.0.0-20200605160147-a5ece683394c +; (package +; (name "go-gopkg-in-yaml-v3") +; (version "3.0.0-20200605160147-a5ece683394c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/yaml.v3") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "03cm7c3p5fh0aa8vnxv5010dgqqr268ivb480ix1salxx3396w68")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" +; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) +; (home-page "https://gopkg.in/yaml.v3") +; (synopsis "YAML support for the Go language") +; (description "Package yaml implements YAML support for the Go language.") +; (license license:expat))) +; +;(define-public go-github-com-tj-assert-0.0.3 +; (package +; (name "go-github-com-tj-assert") +; (version "0.0.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/tj/assert") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1j5swk3fjq1h5fpqkipddz2ccnbidr7qrpm5dpdaflg9q5jnc673")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/tj/assert")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v3-3.0.0-20200605160147-a5ece683394c" +; ,go-gopkg-in-yaml-v3-3.0.0-20200605160147-a5ece683394c) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://github.com/tj/assert") +; (synopsis "assert") +; (description +; "Package assert implements the same assertions as the `assert` package but stops +;test execution when a test fails.") +; (license license:expat))) +; +;(define-public go-github-com-tj-go-buffer-1.1.0 +; (package +; (name "go-github-com-tj-go-buffer") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/tj/go-buffer") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1qdxpa069pjjbzh217aadpzz1aq1n6h32lhp60yjcpi7hr4q8fxx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/tj/go-buffer")) +; (propagated-inputs +; `(("go-github-com-tj-assert-0.0.3" ,go-github-com-tj-assert-0.0.3))) +; (home-page "https://github.com/tj/go-buffer") +; (synopsis "Buffer") +; (description +; "Package buffer provides a generic buffer or batching mechanism for flushing +;entries at a given size or interval, useful for cases such as batching log +;events.") +; (license license:expat))) +; +;(define-public go-github-com-tj-go-elastic-0.0.0-20171221160941-36157cbbebc2 +; (package +; (name "go-github-com-tj-go-elastic") +; (version "0.0.0-20171221160941-36157cbbebc2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/tj/go-elastic") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1r94vc4hbfvqvjz74n4mvsw4dy3vbyzlivb90kyn8vn76a4wqk69")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/tj/go-elastic")) +; (home-page "https://github.com/tj/go-elastic") +; (synopsis "go-elastic") +; (description +; "Package elastic provides an Elasticsearch client with AWS sigv4 support.") +; (license license:expat))) +; +;(define-public go-github-com-tj-go-kinesis-0.0.0-20171128231115-08b17f58cb1b +; (package +; (name "go-github-com-tj-go-kinesis") +; (version "0.0.0-20171128231115-08b17f58cb1b") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/tj/go-kinesis") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "108c6p5j6rhhc2cnc2v5368yfsw73y6lzlvz02vpvvjph8rhmld4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/tj/go-kinesis")) +; (home-page "https://github.com/tj/go-kinesis") +; (synopsis "go-kinesis") +; (description +; "Package kinesis implements a batch producer built on top of the official AWS +;SDK.") +; (license license:expat))) +; +;(define-public go-github-com-tj-go-spin-1.1.0 +; (package +; (name "go-github-com-tj-go-spin") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/tj/go-spin") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "11xr67991m5pwsy1dira3iwd0sr55vmn1cyjwmlqziw4bwpym64s")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/tj/go-spin")) +; (home-page "https://github.com/tj/go-spin") +; (synopsis #f) +; (description #f) +; (license #f))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20190308221718-c2843e01d9a2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190215142949-d0b11bdaac8a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-text-0.3.0 +; (package +; (name "go-golang-org-x-text") +; (version "0.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/text") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/text")) +; (home-page "https://golang.org/x/text") +; (synopsis "Go Text") +; (description +; "text is a repository of text-related packages related to internationalization +;(i18n) and localization (l10n), such as character encodings, text +;transformations, and locale-specific text handling.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190620200207-3b0461eec859") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0l00c8l0a8xnv6qdpwfzxxsr58jggacgzdrwiprrfx2xqm37b6d5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20180917221912-90fa682c2a6e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-text-0.3.2 +; (package +; (name "go-golang-org-x-text") +; (version "0.3.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/text") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0flv9idw0jm5nm8lx25xqanbkqgfiym6619w575p7nrdh0riqwqh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/text")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" +; ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) +; (home-page "https://golang.org/x/text") +; (synopsis "Go Text") +; (description +; "text is a repository of text-related packages related to internationalization +;(i18n) and localization (l10n), such as character encodings, text +;transformations, and locale-specific text handling.") +; (license license:bsd-3))) +; +;(define-public go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15 +; (package +; (name "go-gopkg-in-check-v1") +; (version "1.0.0-20190902080502-41f04d3bba15") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/check.v1") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0vfk9czmlxmp6wndq8k17rhnjxal764mxfhrccza7nwlia760pjy")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) +; (home-page "https://gopkg.in/check.v1") +; (synopsis "Instructions") +; (description +; "Package check is a rich testing extension for Go's testing package.") +; (license license:bsd-2))) +; +;(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 +; (package +; (name "go-gopkg-in-check-v1") +; (version "0.0.0-20161208181325-20d25e280405") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/check.v1") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) +; (home-page "https://gopkg.in/check.v1") +; (synopsis "Instructions") +; (description +; "Package check is a rich testing extension for Go's testing package.") +; (license license:bsd-2))) +; +;(define-public go-gopkg-in-yaml-v2-2.2.2 +; (package +; (name "go-gopkg-in-yaml-v2") +; (version "2.2.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/yaml.v2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "01wj12jzsdqlnidpyjssmj0r4yavlqy7dwrg7adqd8dicjc4ncsa")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" +; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) +; (home-page "https://gopkg.in/yaml.v2") +; (synopsis "YAML support for the Go language") +; (description "Package yaml implements YAML support for the Go language.") +; (license license:asl2.0))) +; +;(define-public go-github-com-apex-log-1.9.0 +; (package +; (name "go-github-com-apex-log") +; (version "1.9.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/apex/log") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ibqkncnb8wcwilg2kyfyl5541g69rg551iy6m61q6iwdn5vfhi2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/apex/log")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) +; ("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" +; ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) +; ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) +; ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" +; ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) +; ("go-github-com-tj-go-spin-1.1.0" ,go-github-com-tj-go-spin-1.1.0) +; ("go-github-com-tj-go-kinesis-0.0.0-20171128231115-08b17f58cb1b" +; ,go-github-com-tj-go-kinesis-0.0.0-20171128231115-08b17f58cb1b) +; ("go-github-com-tj-go-elastic-0.0.0-20171221160941-36157cbbebc2" +; ,go-github-com-tj-go-elastic-0.0.0-20171221160941-36157cbbebc2) +; ("go-github-com-tj-go-buffer-1.1.0" ,go-github-com-tj-go-buffer-1.1.0) +; ("go-github-com-tj-assert-0.0.3" ,go-github-com-tj-assert-0.0.3) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-smartystreets-gunit-1.0.0" +; ,go-github-com-smartystreets-gunit-1.0.0) +; ("go-github-com-smartystreets-go-aws-auth-0.0.0-20180515143844-0c1422d1fdb9" +; ,go-github-com-smartystreets-go-aws-auth-0.0.0-20180515143844-0c1422d1fdb9) +; ("go-github-com-rogpeppe-fastuuid-1.1.0" +; ,go-github-com-rogpeppe-fastuuid-1.1.0) +; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) +; ("go-github-com-mattn-go-colorable-0.1.2" +; ,go-github-com-mattn-go-colorable-0.1.2) +; ("go-github-com-kr-pretty-0.2.0" ,go-github-com-kr-pretty-0.2.0) +; ("go-github-com-jpillora-backoff-0.0.0-20180909062703-3050d21c67d7" +; ,go-github-com-jpillora-backoff-0.0.0-20180909062703-3050d21c67d7) +; ("go-github-com-google-uuid-1.1.1" ,go-github-com-google-uuid-1.1.1) +; ("go-github-com-golang-protobuf-1.3.1" +; ,go-github-com-golang-protobuf-1.3.1) +; ("go-github-com-go-logfmt-logfmt-0.4.0" +; ,go-github-com-go-logfmt-logfmt-0.4.0) +; ("go-github-com-fatih-color-1.7.0" ,go-github-com-fatih-color-1.7.0) +; ("go-github-com-aybabtme-rgbterm-0.0.0-20170906152045-cc83f3b3ce59" +; ,go-github-com-aybabtme-rgbterm-0.0.0-20170906152045-cc83f3b3ce59) +; ("go-github-com-aws-aws-sdk-go-1.20.6" +; ,go-github-com-aws-aws-sdk-go-1.20.6) +; ("go-github-com-aphistic-sweet-0.2.0" +; ,go-github-com-aphistic-sweet-0.2.0) +; ("go-github-com-aphistic-golf-0.0.0-20180712155816-02c07f170c5a" +; ,go-github-com-aphistic-golf-0.0.0-20180712155816-02c07f170c5a) +; ("go-github-com-apex-logs-1.0.0" ,go-github-com-apex-logs-1.0.0))) +; (home-page "https://github.com/apex/log") +; (synopsis "Handlers") +; (description +; "Package log implements a simple structured logging API designed with few +;assumptions. Designed for centralized logging solutions such as Kinesis which +;require encoding and decoding before fanning-out to handlers.") +; (license license:expat))) +; +;(define-public go-github-com-sylabs-json-resp-0.8.0 +; (package +; (name "go-github-com-sylabs-json-resp") +; (version "0.8.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/sylabs/json-resp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ygr4mavaj1pp78hkkphhn3ydd923n3klwnx8x7v4ajqzx4cx4id")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/sylabs/json-resp")) +; (home-page "https://github.com/sylabs/json-resp") +; (synopsis "JSON Response") +; (description +; "The @code{json-resp} package contains a small set of functions that are used to +;marshall and unmarshall response data and errors in JSON format.") +; (license license:bsd-3))) +; +;(define-public go-github-com-apptainer-container-key-client-0.7.2 +; (package +; (name "go-github-com-apptainer-container-key-client") +; (version "0.7.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/apptainer/container-key-client") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0f4bb1k8pi37alzgzvjw23ynp54752qwgnr9gim3vc061qcjx377")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/apptainer/container-key-client")) +; (propagated-inputs +; `(("go-github-com-sylabs-json-resp-0.8.0" +; ,go-github-com-sylabs-json-resp-0.8.0))) +; (home-page "https://github.com/apptainer/container-key-client") +; (synopsis "Container Key Client") +; (description +; "This project provides a Go client to Apptainer for key storage and retrieval +;using the HKP protocol. Forked from +;@url{https://github.com/sylabs/scs-key-client,sylabs/scs-key-client}.") +; (license license:bsd-3))) +; +;(define-public go-github-com-blang-semver-v4-4.0.0 +; (package +; (name "go-github-com-blang-semver-v4") +; (version "4.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/blang/semver") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "14h9ys4n4kx9cbj42lkdf4i5k3nkll6sd62jcvl7cs565v6fiknz")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/blang/semver/v4")) +; (home-page "https://github.com/blang/semver") +; (synopsis #f) +; (description #f) +; (license license:expat))) +; +;(define-public go-github-com-go-log-log-0.2.0 +; (package +; (name "go-github-com-go-log-log") +; (version "0.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/go-log/log") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1idnqv4yvkmdh3wcsgvhcpak9z6ix8dsifdjq5kfbbnskdq5rmvg")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/go-log/log")) +; (home-page "https://github.com/go-log/log") +; (synopsis "Log") +; (description "Package log provides a log interface") +; (license license:expat))) +; +;(define-public go-github-com-stretchr-objx-0.1.0 +; (package +; (name "go-github-com-stretchr-objx") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/objx") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/objx")) +; (home-page "https://github.com/stretchr/objx") +; (synopsis "Objx") +; (description +; "Objx - Go package for dealing with maps, slices, JSON and other data.") +; (license license:expat))) +; +;(define-public go-github-com-stretchr-testify-1.7.0 +; (package +; (name "go-github-com-stretchr-testify") +; (version "1.7.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/testify") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ixgjsvafr3513pz3r6pmgk074s2dxkll0dadvl25gkf30rkmh10")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/testify")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" +; ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) +; ("go-github-com-stretchr-objx-0.1.0" +; ,go-github-com-stretchr-objx-0.1.0) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.0" +; ,go-github-com-davecgh-go-spew-1.1.0))) +; (home-page "https://github.com/stretchr/testify") +; (synopsis "Testify - Thou Shalt Write Tests") +; (description +; "** We are working on testify v2 and would love to hear what you'd like to see in +;it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +;Package testify is a set of packages that provide many tools for testifying that +;your code will behave as you intend.") +; (license license:expat))) +; +;(define-public go-github-com-sylabs-json-resp-0.8.0 +; (package +; (name "go-github-com-sylabs-json-resp") +; (version "0.8.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/sylabs/json-resp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ygr4mavaj1pp78hkkphhn3ydd923n3klwnx8x7v4ajqzx4cx4id")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/sylabs/json-resp")) +; (home-page "https://github.com/sylabs/json-resp") +; (synopsis "JSON Response") +; (description +; "The @code{json-resp} package contains a small set of functions that are used to +;marshall and unmarshall response data and errors in JSON format.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a +; (package +; (name "go-golang-org-x-sync") +; (version "0.0.0-20200317015054-43a5402ce75a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sync") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0j6zrrb81qjr1926kkwmn0di9a0jn8qyjd9dw614rfkihxgq1vsm")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sync")) +; (home-page "https://golang.org/x/sync") +; (synopsis "Go Sync") +; (description +; "This repository provides Go concurrency primitives in addition to the ones +;provided by the language and \"sync\" and \"sync/atomic\" packages.") +; (license license:bsd-3))) +; +;(define-public go-github-com-davecgh-go-spew-1.1.0 +; (package +; (name "go-github-com-davecgh-go-spew") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/davecgh/go-spew") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/davecgh/go-spew")) +; (home-page "https://github.com/davecgh/go-spew") +; (synopsis "go-spew") +; (description +; "Go-spew implements a deep pretty printer for Go data structures to aid in +;debugging. A comprehensive suite of tests with 100% test coverage is provided +;to ensure proper functionality. See @code{test_coverage.txt} for the gocov +;coverage report. Go-spew is licensed under the liberal ISC license, so it may +;be used in open source or commercial projects.") +; (license license:isc))) +; +;(define-public go-github-com-pmezard-go-difflib-1.0.0 +; (package +; (name "go-github-com-pmezard-go-difflib") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/pmezard/go-difflib") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/pmezard/go-difflib")) +; (home-page "https://github.com/pmezard/go-difflib") +; (synopsis "go-difflib") +; (description +; "Go-difflib is a partial port of python 3 difflib package. Its main goal was to +;make unified and context diff available in pure Go, mostly for testing purposes.") +; (license license:bsd-3))) +; +;(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 +; (package +; (name "go-gopkg-in-check-v1") +; (version "0.0.0-20161208181325-20d25e280405") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/check.v1") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) +; (home-page "https://gopkg.in/check.v1") +; (synopsis "Instructions") +; (description +; "Package check is a rich testing extension for Go's testing package.") +; (license license:bsd-2))) +; +;(define-public go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c +; (package +; (name "go-gopkg-in-yaml-v3") +; (version "3.0.0-20200313102051-9f266ea9e77c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/yaml.v3") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1bbai3lzb50m0x2vwsdbagrbhvfylj9k1m32hgbqwldqx4p9ay35")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" +; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) +; (home-page "https://gopkg.in/yaml.v3") +; (synopsis "YAML support for the Go language") +; (description "Package yaml implements YAML support for the Go language.") +; (license license:expat))) +; +;(define-public go-github-com-apptainer-container-library-client-1.2.2 +; (package +; (name "go-github-com-apptainer-container-library-client") +; (version "1.2.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/apptainer/container-library-client") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1f6pxzk0k9jf9612kjw6jlmrs8yzqqrvhjwfxwri1q1d4i410a0h")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "github.com/apptainer/container-library-client")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" +; ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.0" +; ,go-github-com-davecgh-go-spew-1.1.0) +; ("go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a" +; ,go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a) +; ("go-github-com-sylabs-json-resp-0.8.0" +; ,go-github-com-sylabs-json-resp-0.8.0) +; ("go-github-com-stretchr-testify-1.7.0" +; ,go-github-com-stretchr-testify-1.7.0) +; ("go-github-com-go-log-log-0.2.0" ,go-github-com-go-log-log-0.2.0) +; ("go-github-com-blang-semver-v4-4.0.0" +; ,go-github-com-blang-semver-v4-4.0.0))) +; (home-page "https://github.com/apptainer/container-library-client") +; (synopsis "Container Library Client") +; (description +; "This project provides a Go client to Apptainer for the container library. +;Forked from +;@url{https://github.com/sylabs/scs-library-client,sylabs/scs-library-client}.") +; (license license:bsd-3))) +; +;(define-public go-github-com-blang-semver-v4-4.0.0 +; (package +; (name "go-github-com-blang-semver-v4") +; (version "4.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/blang/semver") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "14h9ys4n4kx9cbj42lkdf4i5k3nkll6sd62jcvl7cs565v6fiknz")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/blang/semver/v4")) +; (home-page "https://github.com/blang/semver") +; (synopsis #f) +; (description #f) +; (license license:expat))) +; +;(define-public go-github-com-buger-jsonparser-1.1.1 +; (package +; (name "go-github-com-buger-jsonparser") +; (version "1.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/buger/jsonparser") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0qv2lsh2biwxn927941gqiv5pqg7n4v58j0i536pjp7pr17pq7dp")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/buger/jsonparser")) +; (home-page "https://github.com/buger/jsonparser") +; (synopsis +; "Alternative JSON parser for Go (10x times faster standard library)") +; (description +; "It does not require you to know the structure of the payload (eg. create +;structs), and allows accessing fields by providing the path to them. It is up +;to @strong{10 times faster} than standard @code{encoding/json} package +;(depending on payload size and usage), @strong{allocates no memory}. See +;benchmarks below.") +; (license license:expat))) +; +;(define-public go-github-com-cenkalti-backoff-v4-4.1.2 +; (package +; (name "go-github-com-cenkalti-backoff-v4") +; (version "4.1.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/cenkalti/backoff") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "08c28226q612i1pv83161y57qh16631vpc51ai9f76qfrzsy946z")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/cenkalti/backoff/v4")) +; (home-page "https://github.com/cenkalti/backoff") +; (synopsis "Exponential Backoff") +; (description +; "Package backoff implements backoff algorithms for retrying operations.") +; (license license:expat))) +; +;(define-public go-github-com-kr-pretty-0.2.1 +; (package +; (name "go-github-com-kr-pretty") +; (version "0.2.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kr/pretty") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0vzfz06y9q8gs2nxx0kys0591vzp78k0fvpb8digi5n15h3b25hy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kr/pretty")) +; (propagated-inputs +; `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) +; (home-page "https://github.com/kr/pretty") +; (synopsis #f) +; (description +; "Package pretty provides pretty-printing for Go values. This is useful during +;debugging, to avoid wrapping long output lines in the terminal.") +; (license license:expat))) +; +;(define-public go-github-com-frankban-quicktest-1.11.3 +; (package +; (name "go-github-com-frankban-quicktest") +; (version "1.11.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/frankban/quicktest") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0d5njmwkfq2809vlimnlvy8ir6kln0c4cgdwr680fwsclpbr43qs")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/frankban/quicktest")) +; (propagated-inputs +; `(("go-github-com-kr-pretty-0.2.1" ,go-github-com-kr-pretty-0.2.1) +; ("go-github-com-google-go-cmp-0.5.4" +; ,go-github-com-google-go-cmp-0.5.4))) +; (home-page "https://github.com/frankban/quicktest") +; (synopsis "quicktest") +; (description +; "Package quicktest provides a collection of Go helpers for writing tests.") +; (license license:expat))) +; +;(define-public go-github-com-google-go-cmp-0.5.4 +; (package +; (name "go-github-com-google-go-cmp") +; (version "0.5.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/go-cmp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ld9pwb6l22g75g1zpa691l7q9ki7pjgpcqhwgdfr3va1zisr5ci")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/go-cmp")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" +; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) +; (home-page "https://github.com/google/go-cmp") +; (synopsis "Package for equality of Go values") +; (description +; "This package is intended to be a more powerful and safer alternative to +;@code{reflect.DeepEqual} for comparing whether two values are semantically +;equal.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20210124154548-22da62e12c0c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "17gp3dl75wq3x7j9z1pqgcyvjhvy9jaln1wbscy57al3whdsjp07")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-cilium-ebpf-0.4.0 +; (package +; (name "go-github-com-cilium-ebpf") +; (version "0.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/cilium/ebpf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1j33vfz8mxnqadkd17l0y3ll71gph3ndm8hwrwbwnf5px7bfv9yl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/cilium/ebpf")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" +; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) +; ("go-github-com-google-go-cmp-0.5.4" +; ,go-github-com-google-go-cmp-0.5.4) +; ("go-github-com-frankban-quicktest-1.11.3" +; ,go-github-com-frankban-quicktest-1.11.3))) +; (home-page "https://github.com/cilium/ebpf") +; (synopsis "eBPF") +; (description "Package ebpf is a toolkit for working with eBPF programs.") +; (license license:expat))) +; +;(define-public go-github-com-coreos-go-systemd-v22-22.3.2 +; (package +; (name "go-github-com-coreos-go-systemd-v22") +; (version "22.3.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/coreos/go-systemd") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ndi86b8va84ha93njqgafypz4di7yxfd5r5kf1r0s3y3ghcjajq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/coreos/go-systemd/v22")) +; (propagated-inputs +; `(("go-github-com-godbus-dbus-v5-5.0.4" +; ,go-github-com-godbus-dbus-v5-5.0.4))) +; (home-page "https://github.com/coreos/go-systemd") +; (synopsis "go-systemd") +; (description "Go bindings to systemd. The project has several packages:") +; (license license:asl2.0))) +; +;(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0 +; (package +; (name "go-github-com-cpuguy83-go-md2man-v2") +; (version "2.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/cpuguy83/go-md2man") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) +; (propagated-inputs +; `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" +; ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) +; ("go-github-com-russross-blackfriday-v2-2.0.1" +; ,go-github-com-russross-blackfriday-v2-2.0.1) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0))) +; (home-page "https://github.com/cpuguy83/go-md2man") +; (synopsis "go-md2man") +; (description "Converts markdown into roff (man pages).") +; (license license:expat))) +; +;(define-public go-github-com-docker-go-units-0.4.0 +; (package +; (name "go-github-com-docker-go-units") +; (version "0.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/docker/go-units") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0k8gja8ql4pqg5rzmqvka42vjfs6rzablak87whcnqba6qxpimvz")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/docker/go-units")) +; (home-page "https://github.com/docker/go-units") +; (synopsis "Introduction") +; (description +; "Package units provides helper function to parse and print size and time units in +;human-readable format.") +; (license license:asl2.0))) +; +;(define-public go-github-com-godbus-dbus-v5-5.0.4 +; (package +; (name "go-github-com-godbus-dbus-v5") +; (version "5.0.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/godbus/dbus") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0znax8kskb5gmp5fj75w56bc9p7b22wrdswzlh4d04sprlc471yi")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/godbus/dbus/v5")) +; (home-page "https://github.com/godbus/dbus") +; (synopsis "dbus") +; (description +; "Package dbus implements bindings to the D-Bus message bus system.") +; (license license:bsd-2))) +; +;(define-public go-github-com-yuin-goldmark-1.1.27 +; (package +; (name "go-github-com-yuin-goldmark") +; (version "1.1.27") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/yuin/goldmark") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1872cqnii0kwiqcy81yin0idvjy5mdy4zlzz0csb319lcjs3b923")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/yuin/goldmark")) +; (home-page "https://github.com/yuin/goldmark") +; (synopsis "goldmark") +; (description +; "Package goldmark implements functions to convert markdown text to a desired +;format.") +; (license license:expat))) +; +;(define-public go-golang-org-x-mod-0.2.0 +; (package +; (name "go-golang-org-x-mod") +; (version "0.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/mod") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1fp6885dclq77mh73v7i54v2b9llpv4di193zc8vmsbbkkc483cl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/mod")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" +; ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) +; ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" +; ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) +; ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" +; ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) +; (home-page "https://golang.org/x/mod") +; (synopsis "mod") +; (description +; "This repository holds packages for writing tools that work directly with Go +;module mechanics. That is, it is for direct manipulation of Go modules +;themselves.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20200226121028-0de0cce0169b") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1db7s5kbzyh2zd5lpv05n7hp8wbwdvgk0wpiwrlnig94mkr0y5aq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e +; (package +; (name "go-golang-org-x-sync") +; (version "0.0.0-20190911185100-cd5d95a43a6e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sync") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1nqkyz2y1qvqcma52ijh02s8aiqmkfb95j08f6zcjhbga3ds6hds")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sync")) +; (home-page "https://golang.org/x/sync") +; (synopsis "Go Sync") +; (description +; "This repository provides Go concurrency primitives in addition to the ones +;provided by the language and \"sync\" and \"sync/atomic\" packages.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543 +; (package +; (name "go-golang-org-x-xerrors") +; (version "0.0.0-20191204190536-9bdfabe68543") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/xerrors") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1yjfi1bk9xb81lqn85nnm13zz725wazvrx3b50hx19qmwg7a4b0c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/xerrors")) +; (home-page "https://golang.org/x/xerrors") +; (synopsis #f) +; (description "Package xerrors implements functions to manipulate errors.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20200619180055-7c47624df98f +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20200619180055-7c47624df98f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1fhzwd32j7w9g3algq0zj8g7ivx3f0mn9nx9mj046wdscryn49mk")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" +; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) +; ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" +; ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) +; ("go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b" +; ,go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b) +; ("go-golang-org-x-mod-0.2.0" ,go-golang-org-x-mod-0.2.0) +; ("go-github-com-yuin-goldmark-1.1.27" +; ,go-github-com-yuin-goldmark-1.1.27))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-github-com-kisielk-errcheck-1.5.0 +; (package +; (name "go-github-com-kisielk-errcheck") +; (version "1.5.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kisielk/errcheck") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ci3jz2px74pfmr42jv7dpx7fdzx08vai4czp9fkiyb0gcaiqsk6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kisielk/errcheck")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20200619180055-7c47624df98f" +; ,go-golang-org-x-tools-0.0.0-20200619180055-7c47624df98f))) +; (home-page "https://github.com/kisielk/errcheck") +; (synopsis "errcheck") +; (description +; "errcheck is a program for checking for unchecked errors in go programs.") +; (license license:expat))) +; +;(define-public go-github-com-kisielk-gotool-1.0.0 +; (package +; (name "go-github-com-kisielk-gotool") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kisielk/gotool") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "14af2pa0ssyp8bp2mvdw184s5wcysk6akil3wzxmr05wwy951iwn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kisielk/gotool")) +; (home-page "https://github.com/kisielk/gotool") +; (synopsis "gotool") +; (description +; "Package gotool contains utility functions used to implement the standard +;\"cmd/go\" tool, provided as a convenience to developers who want to write tools +;with similar semantics.") +; (license license:expat))) +; +;(define-public go-github-com-yuin-goldmark-1.2.1 +; (package +; (name "go-github-com-yuin-goldmark") +; (version "1.2.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/yuin/goldmark") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "12rsnsf65drcp0jfw2jl9w589vsn3pxdk1zh3v9q908iigngrcmy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/yuin/goldmark")) +; (home-page "https://github.com/yuin/goldmark") +; (synopsis "goldmark") +; (description +; "Package goldmark implements functions to convert markdown text to a desired +;format.") +; (license license:expat))) +; +;(define-public go-golang-org-x-mod-0.3.0 +; (package +; (name "go-golang-org-x-mod") +; (version "0.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/mod") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ldgbx2zpprbsfn6p8pfgs4nn87gwbfcv2z0fa7n8alwsq2yw78q")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/mod")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" +; ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) +; ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" +; ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) +; ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" +; ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) +; (home-page "https://golang.org/x/mod") +; (synopsis "mod") +; (description +; "This repository holds packages for writing tools that work directly with Go +;module mechanics. That is, it is for direct manipulation of Go modules +;themselves.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20200622213623-75b288015ac9") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "18vlncvvs11ds3zaaziqjlg5s2vcwi3496nn6qv7p0dp94j5pwa2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" +; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) +; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" +; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20200930185726-fdedc70b468f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1njlfhjbvi4lxvjbq8zswrb0y0q4jd2p6x51h1q6vmyzi9af6869")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20201021035429-f5854403a974 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20201021035429-f5854403a974") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1vw63zpmhi337f3gc432x3wkib4j2ia8dy7if31wxwb9dgqvy222")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) +; ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" +; ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) +; ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" +; ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9 +; (package +; (name "go-golang-org-x-sync") +; (version "0.0.0-20201020160332-67f06af15bc9") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sync") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "093p4panc808ak5bamzz7m9nb0xxib7778jpnr6f0xkz1n4fzyw5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sync")) +; (home-page "https://golang.org/x/sync") +; (synopsis "Go Sync") +; (description +; "This repository provides Go concurrency primitives in addition to the ones +;provided by the language and \"sync\" and \"sync/atomic\" packages.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20210106214847-113979e3529a +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20210106214847-113979e3529a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0pq1a7hkamqdwsajyfrb27s56cvxz5838krsgyqz346s2djwdrzl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" +; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) +; ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" +; ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) +; ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" +; ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) +; ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) +; ("go-github-com-yuin-goldmark-1.2.1" +; ,go-github-com-yuin-goldmark-1.2.1))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-github-com-gogo-protobuf-1.3.2 +; (package +; (name "go-github-com-gogo-protobuf") +; (version "1.3.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/gogo/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0dfv1bhx5zhb5bsj5sj757nkacf2swp1ajpcyj9d0b37n602m18a")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/gogo/protobuf")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20210106214847-113979e3529a" +; ,go-golang-org-x-tools-0.0.0-20210106214847-113979e3529a) +; ("go-github-com-kisielk-gotool-1.0.0" +; ,go-github-com-kisielk-gotool-1.0.0) +; ("go-github-com-kisielk-errcheck-1.5.0" +; ,go-github-com-kisielk-errcheck-1.5.0))) +; (home-page "https://github.com/gogo/protobuf") +; (synopsis "Protocol Buffers for Go with Gadgets") +; (description +; "gogoprotobuf is a fork of +;@url{https://github.com/golang/protobuf,golang/protobuf} with extra code +;generation features.") +; (license license:bsd-3))) +; +;(define-public go-github-com-opencontainers-runtime-spec-1.0.2 +; (package +; (name "go-github-com-opencontainers-runtime-spec") +; (version "1.0.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/runtime-spec") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19w981vcmd5lp2hy0630x6ayb8zz17n2vxqm2py5mg945xflcizg")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) +; (home-page "https://github.com/opencontainers/runtime-spec") +; (synopsis "Open Container Initiative Runtime Specification") +; (description +; "The @url{https://www.opencontainers.org,Open Container Initiative} develops +;specifications for standards on Operating System process and application +;containers.") +; (license license:asl2.0))) +; +;(define-public go-github-com-davecgh-go-spew-1.1.1 +; (package +; (name "go-github-com-davecgh-go-spew") +; (version "1.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/davecgh/go-spew") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/davecgh/go-spew")) +; (home-page "https://github.com/davecgh/go-spew") +; (synopsis "go-spew") +; (description +; "Go-spew implements a deep pretty printer for Go data structures to aid in +;debugging. A comprehensive suite of tests with 100% test coverage is provided +;to ensure proper functionality. See @code{test_coverage.txt} for the gocov +;coverage report. Go-spew is licensed under the liberal ISC license, so it may +;be used in open source or commercial projects.") +; (license license:isc))) +; +;(define-public go-github-com-stretchr-testify-1.2.2 +; (package +; (name "go-github-com-stretchr-testify") +; (version "1.2.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/testify") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0dlszlshlxbmmfxj5hlwgv3r22x0y1af45gn1vd198nvvs3pnvfs")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/testify")) +; (home-page "https://github.com/stretchr/testify") +; (synopsis "Testify - Thou Shalt Write Tests") +; (description +; "** We are working on testify v2 and would love to hear what you'd like to see in +;it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +;Package testify is a set of packages that provide many tools for testifying that +;your code will behave as you intend.") +; (license license:expat))) +; +;(define-public go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20191026070338-33540a1f6037") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0fjcv0vzvi6za0b4xmnk3932pr9f9gczzf03y0kgq3ry9rqg169y")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-sirupsen-logrus-1.8.1 +; (package +; (name "go-github-com-sirupsen-logrus") +; (version "1.8.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/sirupsen/logrus") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0rvqzic2zz7fpxyizmqxwmhv1m52ii9bgxnqa6km8wsa0l08wh42")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/sirupsen/logrus")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037" +; ,go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037) +; ("go-github-com-stretchr-testify-1.2.2" +; ,go-github-com-stretchr-testify-1.2.2) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://github.com/sirupsen/logrus") +; (synopsis "Logrus") +; (description +; "Package logrus is a structured logger for Go, completely API compatible with the +;standard library logger.") +; (license license:expat))) +; +;(define-public go-github-com-burntsushi-toml-0.3.1 +; (package +; (name "go-github-com-burntsushi-toml") +; (version "0.3.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/BurntSushi/toml") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1fjdwwfzyzllgiwydknf1pwjvy49qxfsczqx5gz3y0izs7as99j6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/BurntSushi/toml")) +; (home-page "https://github.com/BurntSushi/toml") +; (synopsis "Testing") +; (description +; "Package toml implements decoding and encoding of TOML files.") +; (license license:expat))) +; +;(define-public go-github-com-russross-blackfriday-v2-2.0.1 +; (package +; (name "go-github-com-russross-blackfriday-v2") +; (version "2.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/russross/blackfriday") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0nlz7isdd4rgnwzs68499hlwicxz34j2k2a0b8jy0y7ycd2bcr5j")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/russross/blackfriday/v2")) +; (home-page "https://github.com/russross/blackfriday") +; (synopsis "Blackfriday") +; (description "Package blackfriday is a markdown processor.") +; (license license:bsd-2))) +; +;(define-public go-github-com-shurcool-sanitized-anchor-name-1.0.0 +; (package +; (name "go-github-com-shurcool-sanitized-anchor-name") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/shurcooL/sanitized_anchor_name") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1gv9p2nr46z80dnfjsklc6zxbgk96349sdsxjz05f3z6wb6m5l8f")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/shurcooL/sanitized_anchor_name")) +; (home-page "https://github.com/shurcooL/sanitized_anchor_name") +; (synopsis "sanitized_anchor_name") +; (description +; "Package sanitized_anchor_name provides a func to create sanitized anchor names.") +; (license license:expat))) +; +;(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d +; (package +; (name "go-github-com-cpuguy83-go-md2man-v2") +; (version "2.0.0-20190314233015-f79a8a8ca69d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/cpuguy83/go-md2man") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) +; (propagated-inputs +; `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" +; ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) +; ("go-github-com-russross-blackfriday-v2-2.0.1" +; ,go-github-com-russross-blackfriday-v2-2.0.1) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0))) +; (home-page "https://github.com/cpuguy83/go-md2man") +; (synopsis "go-md2man") +; (description "Converts markdown into roff (man pages).") +; (license license:expat))) +; +;(define-public go-gopkg-in-yaml-v2-2.2.2 +; (package +; (name "go-gopkg-in-yaml-v2") +; (version "2.2.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/yaml.v2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "01wj12jzsdqlnidpyjssmj0r4yavlqy7dwrg7adqd8dicjc4ncsa")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" +; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) +; (home-page "https://gopkg.in/yaml.v2") +; (synopsis "YAML support for the Go language") +; (description "Package yaml implements YAML support for the Go language.") +; (license license:asl2.0))) +; +;(define-public go-github-com-urfave-cli-1.22.2 +; (package +; (name "go-github-com-urfave-cli") +; (version "1.22.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/urfave/cli") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "10mcnvi5qmn00vpyk6si8gjka7p654wr9hac4zc9w5h3ickhvbdc")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/urfave/cli")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) +; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d" +; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d) +; ("go-github-com-burntsushi-toml-0.3.1" +; ,go-github-com-burntsushi-toml-0.3.1))) +; (home-page "https://github.com/urfave/cli") +; (synopsis "cli") +; (description +; "Package cli provides a minimal framework for creating and organizing command +;line Go applications. cli is designed to be easy to understand and write, the +;most simple cli application can be written as follows:") +; (license license:expat))) +; +;(define-public go-github-com-kr-pty-1.1.1 +; (package +; (name "go-github-com-kr-pty") +; (version "1.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kr/pty") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0383f0mb9kqjvncqrfpidsf8y6ns5zlrc91c6a74xpyxjwvzl2y6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kr/pty")) +; (home-page "https://github.com/kr/pty") +; (synopsis "pty") +; (description +; "Package pty is a wrapper for github.com/creack/pty, which provides functions for +;working with Unix terminals.") +; (license license:expat))) +; +;(define-public go-github-com-kr-text-0.1.0 +; (package +; (name "go-github-com-kr-text") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kr/text") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1gm5bsl01apvc84bw06hasawyqm4q84vx1pm32wr9jnd7a8vjgj1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kr/text")) +; (propagated-inputs +; `(("go-github-com-kr-pty-1.1.1" ,go-github-com-kr-pty-1.1.1))) +; (home-page "https://github.com/kr/text") +; (synopsis #f) +; (description +; "Package text provides rudimentary functions for manipulating text in paragraphs.") +; (license license:expat))) +; +;(define-public go-github-com-kr-pretty-0.1.0 +; (package +; (name "go-github-com-kr-pretty") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kr/pretty") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "18m4pwg2abd0j9cn5v3k2ksk9ig4vlwxmlw9rrglanziv9l967qp")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kr/pretty")) +; (propagated-inputs +; `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) +; (home-page "https://github.com/kr/pretty") +; (synopsis #f) +; (description +; "Package pretty provides pretty-printing for Go values. This is useful during +;debugging, to avoid wrapping long output lines in the terminal.") +; (license license:expat))) +; +;(define-public go-github-com-davecgh-go-spew-1.1.0 +; (package +; (name "go-github-com-davecgh-go-spew") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/davecgh/go-spew") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/davecgh/go-spew")) +; (home-page "https://github.com/davecgh/go-spew") +; (synopsis "go-spew") +; (description +; "Go-spew implements a deep pretty printer for Go data structures to aid in +;debugging. A comprehensive suite of tests with 100% test coverage is provided +;to ensure proper functionality. See @code{test_coverage.txt} for the gocov +;coverage report. Go-spew is licensed under the liberal ISC license, so it may +;be used in open source or commercial projects.") +; (license license:isc))) +; +;(define-public go-github-com-pmezard-go-difflib-1.0.0 +; (package +; (name "go-github-com-pmezard-go-difflib") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/pmezard/go-difflib") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/pmezard/go-difflib")) +; (home-page "https://github.com/pmezard/go-difflib") +; (synopsis "go-difflib") +; (description +; "Go-difflib is a partial port of python 3 difflib package. Its main goal was to +;make unified and context diff available in pure Go, mostly for testing purposes.") +; (license license:bsd-3))) +; +;(define-public go-github-com-stretchr-objx-0.1.0 +; (package +; (name "go-github-com-stretchr-objx") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/objx") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/objx")) +; (home-page "https://github.com/stretchr/objx") +; (synopsis "Objx") +; (description +; "Objx - Go package for dealing with maps, slices, JSON and other data.") +; (license license:expat))) +; +;(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 +; (package +; (name "go-gopkg-in-check-v1") +; (version "0.0.0-20161208181325-20d25e280405") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/check.v1") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) +; (home-page "https://gopkg.in/check.v1") +; (synopsis "Instructions") +; (description +; "Package check is a rich testing extension for Go's testing package.") +; (license license:bsd-2))) +; +;(define-public go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c +; (package +; (name "go-gopkg-in-yaml-v3") +; (version "3.0.0-20200313102051-9f266ea9e77c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/yaml.v3") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1bbai3lzb50m0x2vwsdbagrbhvfylj9k1m32hgbqwldqx4p9ay35")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" +; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) +; (home-page "https://gopkg.in/yaml.v3") +; (synopsis "YAML support for the Go language") +; (description "Package yaml implements YAML support for the Go language.") +; (license license:expat))) +; +;(define-public go-github-com-stretchr-testify-1.7.0 +; (package +; (name "go-github-com-stretchr-testify") +; (version "1.7.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/testify") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ixgjsvafr3513pz3r6pmgk074s2dxkll0dadvl25gkf30rkmh10")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/testify")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" +; ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) +; ("go-github-com-stretchr-objx-0.1.0" +; ,go-github-com-stretchr-objx-0.1.0) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.0" +; ,go-github-com-davecgh-go-spew-1.1.0))) +; (home-page "https://github.com/stretchr/testify") +; (synopsis "Testify - Thou Shalt Write Tests") +; (description +; "** We are working on testify v2 and would love to hear what you'd like to see in +;it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +;Package testify is a set of packages that provide many tools for testifying that +;your code will behave as you intend.") +; (license license:expat))) +; +;(define-public go-golang-org-x-net-0.0.0-20190311183353-d8887717615a +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190311183353-d8887717615a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1wfm6ngxjyj7v5a2dqib6lw8bb2rdnf1kl48diykxjrsddn0s163")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20190311212946-11955173bddd") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0hlkai67w167wiyivkzd1fgqrnyxkb94l2c6kr51jwcscizfyfn3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-lint-0.0.0-20190930215403-16217165b5de +; (package +; (name "go-golang-org-x-lint") +; (version "0.0.0-20190930215403-16217165b5de") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/lint") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0jhwmwc0vykcmf164na0pnadl8gv7184b6pf3xayknwmzdw6vd7h")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/lint")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" +; ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd))) +; (home-page "https://golang.org/x/lint") +; (synopsis "Installation") +; (description "Package lint contains a linter for Go source code.") +; (license license:bsd-3))) +; +;(define-public go-github-com-yuin-goldmark-1.3.5 +; (package +; (name "go-github-com-yuin-goldmark") +; (version "1.3.5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/yuin/goldmark") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "08rrhfji92hixiv3v0wvamwcy56f90wsw84w7lyvad7g90kbsknx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/yuin/goldmark")) +; (home-page "https://github.com/yuin/goldmark") +; (synopsis "goldmark") +; (description +; "Package goldmark implements functions to convert markdown text to a desired +;format.") +; (license license:expat))) +; +;(define-public go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190404232315-eb5bcb51f2a3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "17k4g8krxbl84gzcs275b7gsh66dzm15fdxivjnx9xz8q84l4kby")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190412213103-97732733099d +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190412213103-97732733099d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "118hkp01i4z1f5h6hcjm0ff2ngqhrzj1f7731n0kw8dr6hvbx0sw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20191011191535-87dc89f01550") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0z4i1m2yn3f31ci7wvcm2rxkx2yiv7a78mfzklncmsz2k97rlh2g")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" +; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) +; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" +; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20190308221718-c2843e01d9a2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190215142949-d0b11bdaac8a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-text-0.3.0 +; (package +; (name "go-golang-org-x-text") +; (version "0.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/text") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/text")) +; (home-page "https://golang.org/x/text") +; (synopsis "Go Text") +; (description +; "text is a repository of text-related packages related to internationalization +;(i18n) and localization (l10n), such as character encodings, text +;transformations, and locale-specific text handling.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190620200207-3b0461eec859") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0l00c8l0a8xnv6qdpwfzxxsr58jggacgzdrwiprrfx2xqm37b6d5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sync-0.0.0-20190423024810-112230192c58 +; (package +; (name "go-golang-org-x-sync") +; (version "0.0.0-20190423024810-112230192c58") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sync") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "05i2k43j2d0llq768hg5pf3hb2yhfzp9la1w5wp0rsnnzblr0lfn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sync")) +; (home-page "https://golang.org/x/sync") +; (synopsis "Go Sync") +; (description +; "This repository provides Go concurrency primitives in addition to the ones +;provided by the language and \"sync\" and \"sync/atomic\" packages.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7 +; (package +; (name "go-golang-org-x-xerrors") +; (version "0.0.0-20190717185122-a985d3407aa7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/xerrors") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "00wzr5w8aadipgc3rkk8f11i41znskfj9ix5nhhaxyg7isrslgcj")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/xerrors")) +; (home-page "https://golang.org/x/xerrors") +; (synopsis #f) +; (description "Package xerrors implements functions to manipulate errors.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20191119224855-298f0cb1881e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0l4pqwib2wnfnix6nvxl0yrq87ipi7ff1rz6z5bxfzy9dki1nzmv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7" +; ,go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7) +; ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" +; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) +; ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" +; ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898 +; (package +; (name "go-golang-org-x-xerrors") +; (version "0.0.0-20191011141410-1b5146add898") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/xerrors") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0w2akj91krxjag0xdhsg78470888nicc5ismc2ap9jqpss6v1zih")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/xerrors")) +; (home-page "https://golang.org/x/xerrors") +; (synopsis #f) +; (description "Package xerrors implements functions to manipulate errors.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-mod-0.4.2 +; (package +; (name "go-golang-org-x-mod") +; (version "0.4.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/mod") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0z1p17i291z2k6va08i80ljyzyij2b6qsz78lnz0wi8zsnkfdz43")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/mod")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" +; ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) +; ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" +; ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) +; ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" +; ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) +; (home-page "https://golang.org/x/mod") +; (synopsis "mod") +; (description +; "This repository holds packages for writing tools that work directly with Go +;module mechanics. That is, it is for direct manipulation of Go modules +;themselves.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20210330210617-4fbd30eecc44 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20210330210617-4fbd30eecc44") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "02mmymbm7wb3vdp3z9hm8p0f45708fybyd38qm8qxzwm19zqnp56")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20201119102817-f84b799fce68") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1dvhqian5byzkcg1bnqzygqa6ccc6krc2q7j12pp1vhl3y7znnsg")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1 +; (package +; (name "go-golang-org-x-term") +; (version "0.0.0-20201126162022-7de9c90e9dd1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/term") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ba252xmv6qsvf1w1gcy98mngrj0vd4inbjw0lsklqvva65nljna")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/term")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" +; ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) +; (home-page "https://golang.org/x/term") +; (synopsis "Go terminal/console support") +; (description +; "Package term provides support functions for dealing with terminals, as commonly +;found on UNIX systems.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20180917221912-90fa682c2a6e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-text-0.3.3 +; (package +; (name "go-golang-org-x-text") +; (version "0.3.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/text") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19pihqm3phyndmiw6i42pdv6z1rbvlqlsnhsyqf9gsnn0qnmqqlh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/text")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" +; ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) +; (home-page "https://golang.org/x/text") +; (synopsis "Go Text") +; (description +; "text is a repository of text-related packages related to internationalization +;(i18n) and localization (l10n), such as character encodings, text +;transformations, and locale-specific text handling.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20210405180319-a5a99cb37ef4 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20210405180319-a5a99cb37ef4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0z90hpmxdw9i8vfhd6vf7hd63c86f1128qfb5f3y4kinvlpjy3rl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) +; ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" +; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) +; ("go-golang-org-x-sys-0.0.0-20210330210617-4fbd30eecc44" +; ,go-golang-org-x-sys-0.0.0-20210330210617-4fbd30eecc44))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c +; (package +; (name "go-golang-org-x-sync") +; (version "0.0.0-20210220032951-036812b2e83c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sync") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1gl202py3s4gl6arkaxlf8qa6f0jyyg2f95m6f89qnfmr416h85b")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sync")) +; (home-page "https://golang.org/x/sync") +; (synopsis "Go Sync") +; (description +; "This repository provides Go concurrency primitives in addition to the ones +;provided by the language and \"sync\" and \"sync/atomic\" packages.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1 +; (package +; (name "go-golang-org-x-xerrors") +; (version "0.0.0-20200804184101-5ec99f83aff1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/xerrors") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1dbzc3gmf2haazpv7cgmv97rq40g2xzwbglc17vas8dwhgwgwrzb")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/xerrors")) +; (home-page "https://golang.org/x/xerrors") +; (synopsis #f) +; (description "Package xerrors implements functions to manipulate errors.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.1.5 +; (package +; (name "go-golang-org-x-tools") +; (version "0.1.5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1wzbbcja1q0gn8ahxvzvpl4nzj2icwmc0pppgipmx5rdnngqw80l")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" +; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) +; ("go-golang-org-x-sys-0.0.0-20210510120138-977fb7262007" +; ,go-golang-org-x-sys-0.0.0-20210510120138-977fb7262007) +; ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" +; ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) +; ("go-golang-org-x-net-0.0.0-20210405180319-a5a99cb37ef4" +; ,go-golang-org-x-net-0.0.0-20210405180319-a5a99cb37ef4) +; ("go-golang-org-x-mod-0.4.2" ,go-golang-org-x-mod-0.4.2) +; ("go-github-com-yuin-goldmark-1.3.5" +; ,go-github-com-yuin-goldmark-1.3.5))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127 +; (package +; (name "go-gopkg-in-check-v1") +; (version "1.0.0-20180628173108-788fd7840127") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/check.v1") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0v3bim0j375z81zrpr5qv42knqs0y2qv2vkjiqi5axvb78slki1a")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) +; (home-page "https://gopkg.in/check.v1") +; (synopsis "Instructions") +; (description +; "Package check is a rich testing extension for Go's testing package.") +; (license license:bsd-2))) +; +;(define-public go-go-uber-org-goleak-1.1.12 +; (package +; (name "go-go-uber-org-goleak") +; (version "1.1.12") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/uber-go/goleak") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1wda3bd5xqbnvskgpr2lg6ccnrm3v9wl0i5c5b6xrrzf01b81vzg")))) +; (build-system go-build-system) +; (arguments '(#:import-path "go.uber.org/goleak")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" +; ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) +; ("go-golang-org-x-tools-0.1.5" ,go-golang-org-x-tools-0.1.5) +; ("go-golang-org-x-lint-0.0.0-20190930215403-16217165b5de" +; ,go-golang-org-x-lint-0.0.0-20190930215403-16217165b5de) +; ("go-github-com-stretchr-testify-1.7.0" +; ,go-github-com-stretchr-testify-1.7.0) +; ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0))) +; (home-page "https://go.uber.org/goleak") +; (synopsis "goleak") +; (description "Package goleak is a Goroutine leak detector.") +; (license license:expat))) +; +;(define-public go-golang-org-x-sys-0.0.0-20210510120138-977fb7262007 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20210510120138-977fb7262007") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0d2vnblgzxgvis2kly99gv10kadyl3v0cpv1lskjqg2v5d11r6hd")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-containerd-cgroups-1.0.3 +; (package +; (name "go-github-com-containerd-cgroups") +; (version "1.0.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/cgroups") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0mqsi2jm1f7xvs35kx6ijvadr6zycshc1xivq6xdiwrw24wb0m3r")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/cgroups")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20210510120138-977fb7262007" +; ,go-golang-org-x-sys-0.0.0-20210510120138-977fb7262007) +; ("go-go-uber-org-goleak-1.1.12" ,go-go-uber-org-goleak-1.1.12) +; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) +; ("go-github-com-stretchr-testify-1.7.0" +; ,go-github-com-stretchr-testify-1.7.0) +; ("go-github-com-sirupsen-logrus-1.8.1" +; ,go-github-com-sirupsen-logrus-1.8.1) +; ("go-github-com-opencontainers-runtime-spec-1.0.2" +; ,go-github-com-opencontainers-runtime-spec-1.0.2) +; ("go-github-com-gogo-protobuf-1.3.2" +; ,go-github-com-gogo-protobuf-1.3.2) +; ("go-github-com-godbus-dbus-v5-5.0.4" +; ,go-github-com-godbus-dbus-v5-5.0.4) +; ("go-github-com-docker-go-units-0.4.0" +; ,go-github-com-docker-go-units-0.4.0) +; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" +; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) +; ("go-github-com-coreos-go-systemd-v22-22.3.2" +; ,go-github-com-coreos-go-systemd-v22-22.3.2) +; ("go-github-com-cilium-ebpf-0.4.0" ,go-github-com-cilium-ebpf-0.4.0))) +; (home-page "https://github.com/containerd/cgroups") +; (synopsis "cgroups") +; (description +; "Go package for creating, managing, inspecting, and destroying cgroups. The +;resources format for settings on the cgroup uses the OCI runtime-spec found +;@url{https://github.com/opencontainers/runtime-spec,here}.") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20191005200804-aed5e4c7ecf9") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0wsdsbl9n61l99z0cvib2xzg56fsfgky4yc5xapdw9ywx9h0zm3a")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-fsnotify-fsnotify-1.4.9 +; (package +; (name "go-github-com-fsnotify-fsnotify") +; (version "1.4.9") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/fsnotify/fsnotify") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1i1r72knpbfwwql9frn9bqc3nhfc2ai5m6qllcyr6wban62lr40x")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/fsnotify/fsnotify")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9" +; ,go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9))) +; (home-page "https://github.com/fsnotify/fsnotify") +; (synopsis "File system notifications for Go") +; (description +; "Package fsnotify provides a platform-independent interface for file system +;notifications.") +; (license license:bsd-3))) +; +;(define-public go-github-com-sclevine-agouti-3.0.0+incompatible +; (package +; (name "go-github-com-sclevine-agouti") +; (version "3.0.0+incompatible") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/sclevine/agouti") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1fsj7x7hhmqq43a9qxdfap7ik6b35hqk58dwii0ir1zm1fnw105b")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/sclevine/agouti")) +; (home-page "https://github.com/sclevine/agouti") +; (synopsis "Agouti") +; (description +; "Package agouti is a universal WebDriver client for Go. It extends the +;agouti/api package to provide a feature-rich interface for controlling a web +;browser.") +; (license license:expat))) +; +;(define-public go-golang-org-x-sys-0.0.0-20200519105757-fe76b779f299 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20200519105757-fe76b779f299") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0g6j3n9fdv1a2lp2i8wbaaya85yrbfx3ns6iq1s7l2ayhxxmgh6b")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20180917221912-90fa682c2a6e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-text-0.3.2 +; (package +; (name "go-golang-org-x-text") +; (version "0.3.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/text") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0flv9idw0jm5nm8lx25xqanbkqgfiym6619w575p7nrdh0riqwqh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/text")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" +; ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) +; (home-page "https://golang.org/x/text") +; (synopsis "Go Text") +; (description +; "text is a repository of text-related packages related to internationalization +;(i18n) and localization (l10n), such as character encodings, text +;transformations, and locale-specific text handling.") +; (license license:bsd-3))) +; +;(define-public go-github-com-onsi-ginkgo-1.13.0 +; (package +; (name "go-github-com-onsi-ginkgo") +; (version "1.13.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/onsi/ginkgo") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1p8p334z7xjfsn35hfkls8crirz8hgqqq0hj83gxizpzq8v24qpi")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/onsi/ginkgo")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) +; ("go-golang-org-x-sys-0.0.0-20200519105757-fe76b779f299" +; ,go-golang-org-x-sys-0.0.0-20200519105757-fe76b779f299) +; ("go-github-com-sclevine-agouti-3.0.0+incompatible" +; ,go-github-com-sclevine-agouti-3.0.0+incompatible) +; ("go-github-com-onsi-gomega-1.10.1" ,go-github-com-onsi-gomega-1.10.1) +; ("go-github-com-nxadm-tail-1.4.4" ,go-github-com-nxadm-tail-1.4.4) +; ("go-github-com-fsnotify-fsnotify-1.4.9" +; ,go-github-com-fsnotify-fsnotify-1.4.9))) +; (home-page "https://github.com/onsi/ginkgo") +; (synopsis "Ginkgo 2.0 Release Candidate is available!") +; (description "Ginkgo is a BDD-style testing framework for Golang") +; (license license:expat))) +; +;(define-public go-github-com-google-go-cmp-0.3.0 +; (package +; (name "go-github-com-google-go-cmp") +; (version "0.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/go-cmp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1hyxx3434zshl2m9ja78gwlkg1rx9yl6diqa7dnjb31xz5x4gbjj")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/go-cmp")) +; (home-page "https://github.com/google/go-cmp") +; (synopsis "Package for equality of Go values") +; (description +; "This package is intended to be a more powerful and safer alternative to +;@code{reflect.DeepEqual} for comparing whether two values are semantically +;equal.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd +; (package +; (name "go-google-golang-org-protobuf") +; (version "0.0.0-20200109180630-ec00e32a8dfd") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0w6lp9w2avxcpxwzzhspr209ifhyjagvs23k0vykfdqahl1aplrh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.3.0" +; ,go-github-com-google-go-cmp-0.3.0))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is +;a language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol +;buffer developer guide} for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.4.0-rc.1 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.4.0-rc.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "186rirvbfgv6hrxp27ipx2cdpv19qifdd20biqfdm01wiyclqimn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd" +; ,go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd) +; ("go-github-com-google-go-cmp-0.3.1" +; ,go-github-com-google-go-cmp-0.3.1))) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code +;github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-github-com-google-go-cmp-0.3.1 +; (package +; (name "go-github-com-google-go-cmp") +; (version "0.3.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/go-cmp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1caw49i0plkjxir7kdf5qhwls3krqwfmi7g4h392rdfwi3kfahx1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/go-cmp")) +; (home-page "https://github.com/google/go-cmp") +; (synopsis "Package for equality of Go values") +; (description +; "This package is intended to be a more powerful and safer alternative to +;@code{reflect.DeepEqual} for comparing whether two values are semantically +;equal.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64 +; (package +; (name "go-google-golang-org-protobuf") +; (version "0.0.0-20200221191635-4d8936d0db64") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0563bsvdjj6k0sgwqd5yzrgfiax7sp3lcwh608gync5sv9fx39cy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.3.1" +; ,go-github-com-google-go-cmp-0.3.1) +; ("go-github-com-golang-protobuf-1.4.0-rc.1" +; ,go-github-com-golang-protobuf-1.4.0-rc.1))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is +;a language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol +;buffer developer guide} for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.4.0-rc.1.0.20200221234624-67d41d38c208") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ykxhg3zixmw25pd435f8h16wnz1g00jpcmmg3xl030kksgqgpp6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64" +; ,go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0))) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code +;github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60 +; (package +; (name "go-google-golang-org-protobuf") +; (version "0.0.0-20200228230310-ab0ca4ff8a60") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1rinspcznfp85yz4vrlf4h38hr576virgv8lcs22bsylqga808sd")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208" +; ,go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is +;a language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol +;buffer developer guide} for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.4.0-rc.2 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.4.0-rc.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1hd43hjv5zl6bjbmhm5phx74bw4xajsi73m5zky2k56za4mpgzzc")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60" +; ,go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0))) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code +;github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967 +; (package +; (name "go-google-golang-org-protobuf") +; (version "1.20.1-0.20200309200217-e05f789c0967") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "17wmy89hnmpkwc63rfcjp50q15s9f1rhmczg06c3z9yy41zk82w9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.4.0-rc.2" +; ,go-github-com-golang-protobuf-1.4.0-rc.2))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is +;a language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol +;buffer developer guide} for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.4.0-rc.4.0.20200313231945-b860323f09d0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1zj6cwshx0l5n9cn2cpbikzzb79px5dmkpc4p19zy1iif5r5p0z0")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967" +; ,go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0))) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code +;github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-1.21.0 +; (package +; (name "go-google-golang-org-protobuf") +; (version "1.21.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "12bwln8z1lf9105gdp6ip0rx741i4yfz1520gxnp8861lh9wcl63")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0" +; ,go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is +;a language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol +;buffer developer guide} for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.4.0 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1fjvl5n77abxz5qsd4mgyvjq19x43c5bfvmq62mq3m5plx6zksc8")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.21.0" +; ,go-google-golang-org-protobuf-1.21.0) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0))) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code +;github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-github-com-google-go-cmp-0.4.0 +; (package +; (name "go-github-com-google-go-cmp") +; (version "0.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/go-cmp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1x5pvl3fb5sbyng7i34431xycnhmx8xx94gq2n19g6p0vz68z2v2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/go-cmp")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" +; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) +; (home-page "https://github.com/google/go-cmp") +; (synopsis "Package for equality of Go values") +; (description +; "This package is intended to be a more powerful and safer alternative to +;@code{reflect.DeepEqual} for comparing whether two values are semantically +;equal.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-1.23.0 +; (package +; (name "go-google-golang-org-protobuf") +; (version "1.23.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "03yan0m1v0zmlr935p4n24fd376mznsg85zy8sywbgisls4s1bzy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.4.0" +; ,go-github-com-golang-protobuf-1.4.0))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is +;a language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol +;buffer developer guide} for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.4.2 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.4.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0m5z81im4nsyfgarjhppayk4hqnrwswr3nix9mj8pff8x9jvcjqw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.23.0" +; ,go-google-golang-org-protobuf-1.23.0) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0))) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code +;github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190904154756-749cb33beabd +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190904154756-749cb33beabd") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0dm3257q3rv2kyn5lmqqim2fqg634v6rhrqq4glvbk4wx4l3v337")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-nxadm-tail-1.4.4 +; (package +; (name "go-github-com-nxadm-tail") +; (version "1.4.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/nxadm/tail") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1czmwqii0fc8v3ar5bwqpfanprkxg19waly405zlvcflzvj53wwc")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/nxadm/tail")) +; (propagated-inputs +; `(("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" +; ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) +; ("go-golang-org-x-sys-0.0.0-20190904154756-749cb33beabd" +; ,go-golang-org-x-sys-0.0.0-20190904154756-749cb33beabd) +; ("go-github-com-fsnotify-fsnotify-1.4.7" +; ,go-github-com-fsnotify-fsnotify-1.4.7))) +; (home-page "https://github.com/nxadm/tail") +; (synopsis "tail functionality in Go") +; (description +; "nxadm/tail provides a Go library that emulates the features of the BSD `tail` +;program. The library comes with full support for truncation/move detection as +;it is designed to work with log rotation tools. The library works on all +;operating systems supported by Go, including POSIX systems like Linux and *BSD, +;and MS Windows. Go 1.9 is the oldest compiler release supported.") +; (license license:expat))) +; +;(define-public go-github-com-fsnotify-fsnotify-1.4.7 +; (package +; (name "go-github-com-fsnotify-fsnotify") +; (version "1.4.7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/fsnotify/fsnotify") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/fsnotify/fsnotify")) +; (home-page "https://github.com/fsnotify/fsnotify") +; (synopsis "File system notifications for Go") +; (description +; "Package fsnotify provides a platform-independent interface for file system +;notifications.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.2.0 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0kf4b59rcbb1cchfny2dm9jyznp8ri2hsb14n8iak1q8986xa0ab")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code +;github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-github-com-hpcloud-tail-1.0.0 +; (package +; (name "go-github-com-hpcloud-tail") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hpcloud/tail") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1njpzc0pi1acg5zx9y6vj9xi6ksbsc5d387rd6904hy6rh2m6kn0")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hpcloud/tail")) +; (home-page "https://github.com/hpcloud/tail") +; (synopsis "Go package for tail-ing files") +; (description +; "This package provides a Go package striving to emulate the features of the BSD +;@code{tail} program.") +; (license license:expat))) +; +;(define-public go-github-com-onsi-ginkgo-1.6.0 +; (package +; (name "go-github-com-onsi-ginkgo") +; (version "1.6.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/onsi/ginkgo") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0x0gc89vgq38xhgmi2h22bhr73cf2gmk42g89nz89k8dgg9hhr25")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/onsi/ginkgo")) +; (home-page "https://github.com/onsi/ginkgo") +; (synopsis "Ginkgo 2.0 Release Candidate is available!") +; (description "Ginkgo is a BDD-style testing framework for Golang") +; (license license:expat))) +; +;(define-public go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20180906233101-161cd47e91fd") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0254ld010iijygbzykib2vags1dc0wlmcmhgh4jl8iny159lhbcv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f +; (package +; (name "go-golang-org-x-sync") +; (version "0.0.0-20180314180146-1d60e4601c6f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sync") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "046jlanz2lkxq1r57x9bl6s4cvfqaic6p2xybsj8mq1120jv4rs6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sync")) +; (home-page "https://golang.org/x/sync") +; (synopsis "Go Sync") +; (description +; "This repository provides Go concurrency primitives in addition to the ones +;provided by the language and \"sync\" and \"sync/atomic\" packages.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20180909124046-d0be0721c37e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "081wyvfnlf842dqg03raxfz6lldlxpmyh1prix9lmrrm65arxb12")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-gopkg-in-fsnotify-v1-1.4.7 +; (package +; (name "go-gopkg-in-fsnotify-v1") +; (version "1.4.7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/fsnotify.v1") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path +; "gopkg.in/fsnotify.v1" +; #:unpack-path +; "gopkg.in/fsnotify.v1")) +; (home-page "https://gopkg.in/fsnotify.v1") +; (synopsis "File system notifications for Go") +; (description +; "Package fsnotify provides a platform-independent interface for file system +;notifications.") +; (license license:bsd-3))) +; +;(define-public go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7 +; (package +; (name "go-gopkg-in-tomb-v1") +; (version "1.0.0-20141024135613-dd632973f1e7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/tomb.v1") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1lqmq1ag7s4b3gc3ddvr792c5xb5k6sfn0cchr3i2s7f1c231zjv")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/tomb.v1" #:unpack-path "gopkg.in/tomb.v1")) +; (home-page "https://gopkg.in/tomb.v1") +; (synopsis "Installation and usage") +; (description +; "The tomb package offers a conventional API for clean goroutine termination.") +; (license license:bsd-3))) +; +;(define-public go-gopkg-in-yaml-v2-2.2.4 +; (package +; (name "go-gopkg-in-yaml-v2") +; (version "2.2.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/yaml.v2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "11bwj757wi8kdrcnlgfqb8vv2d2xdhlghmyagd19i62khrkchsg2")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" +; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) +; (home-page "https://gopkg.in/yaml.v2") +; (synopsis "YAML support for the Go language") +; (description "Package yaml implements YAML support for the Go language.") +; (license license:asl2.0))) +; +;(define-public go-github-com-onsi-gomega-1.7.1 +; (package +; (name "go-github-com-onsi-gomega") +; (version "1.7.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/onsi/gomega") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "06p3x0910cdaa64l7d44s728d4j3yhps315dlcvrbjzhljjj7mam")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/onsi/gomega")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.2.4" ,go-gopkg-in-yaml-v2-2.2.4) +; ("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" +; ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) +; ("go-gopkg-in-fsnotify-v1-1.4.7" ,go-gopkg-in-fsnotify-v1-1.4.7) +; ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e" +; ,go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e) +; ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" +; ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) +; ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" +; ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) +; ("go-github-com-onsi-ginkgo-1.6.0" ,go-github-com-onsi-ginkgo-1.6.0) +; ("go-github-com-hpcloud-tail-1.0.0" ,go-github-com-hpcloud-tail-1.0.0) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0) +; ("go-github-com-fsnotify-fsnotify-1.4.7" +; ,go-github-com-fsnotify-fsnotify-1.4.7))) +; (home-page "https://github.com/onsi/gomega") +; (synopsis ": a BDD Testing Framework for Golang") +; (description +; "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library.") +; (license license:expat))) +; +;(define-public go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20191120155948-bd437916bb0e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1i8x26frmlin55k69k936zd1rp5sqnq14y5ms4rkxbfzhasdm2rx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-onsi-ginkgo-1.12.1 +; (package +; (name "go-github-com-onsi-ginkgo") +; (version "1.12.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/onsi/ginkgo") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0xs9724l2b0bwjwrvw5cs3akxaw0n1j5kyxrb1ggfsdjz0zmjcxh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/onsi/ginkgo")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e" +; ,go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e) +; ("go-github-com-onsi-gomega-1.7.1" ,go-github-com-onsi-gomega-1.7.1) +; ("go-github-com-nxadm-tail-1.4.4" ,go-github-com-nxadm-tail-1.4.4))) +; (home-page "https://github.com/onsi/ginkgo") +; (synopsis "Ginkgo 2.0 Release Candidate is available!") +; (description "Ginkgo is a BDD-style testing framework for Golang") +; (license license:expat))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190215142949-d0b11bdaac8a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20190308221718-c2843e01d9a2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20200323222414-85ca7c5b95cd") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1504qkgbhhm4f0bhk77v2r1lj6x171ay5m79alkg78wjb5cign5l")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-text-0.3.0 +; (package +; (name "go-golang-org-x-text") +; (version "0.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/text") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/text")) +; (home-page "https://golang.org/x/text") +; (synopsis "Go Text") +; (description +; "text is a repository of text-related packages related to internationalization +;(i18n) and localization (l10n), such as character encodings, text +;transformations, and locale-specific text handling.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20200520004742-59133d7f0dd7 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20200520004742-59133d7f0dd7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "03js31gnf3hir5dh6q01bj7cs0y4wzyinqg1mvr0nlb83kak9ggq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" +; ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543 +; (package +; (name "go-golang-org-x-xerrors") +; (version "0.0.0-20191204190536-9bdfabe68543") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/xerrors") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1yjfi1bk9xb81lqn85nnm13zz725wazvrx3b50hx19qmwg7a4b0c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/xerrors")) +; (home-page "https://golang.org/x/xerrors") +; (synopsis #f) +; (description "Package xerrors implements functions to manipulate errors.") +; (license license:bsd-3))) +; +;(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 +; (package +; (name "go-gopkg-in-check-v1") +; (version "0.0.0-20161208181325-20d25e280405") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/check.v1") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) +; (home-page "https://gopkg.in/check.v1") +; (synopsis "Instructions") +; (description +; "Package check is a rich testing extension for Go's testing package.") +; (license license:bsd-2))) +; +;(define-public go-gopkg-in-yaml-v2-2.3.0 +; (package +; (name "go-gopkg-in-yaml-v2") +; (version "2.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/yaml.v2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1md0hlyd9s6myv3663i9l59y74n4xjazifmmyxn43g86fgkc5lzj")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" +; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) +; (home-page "https://gopkg.in/yaml.v2") +; (synopsis "YAML support for the Go language") +; (description "Package yaml implements YAML support for the Go language.") +; (license license:asl2.0))) +; +;(define-public go-github-com-onsi-gomega-1.10.1 +; (package +; (name "go-github-com-onsi-gomega") +; (version "1.10.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/onsi/gomega") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "068mirdbwl9n9dqlvqr489h52wkd90cv1jvng4yp8kv83lhzk2dq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/onsi/gomega")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.3.0" ,go-gopkg-in-yaml-v2-2.3.0) +; ("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" +; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) +; ("go-golang-org-x-net-0.0.0-20200520004742-59133d7f0dd7" +; ,go-golang-org-x-net-0.0.0-20200520004742-59133d7f0dd7) +; ("go-github-com-onsi-ginkgo-1.12.1" ,go-github-com-onsi-ginkgo-1.12.1) +; ("go-github-com-golang-protobuf-1.4.2" +; ,go-github-com-golang-protobuf-1.4.2))) +; (home-page "https://github.com/onsi/gomega") +; (synopsis ": a BDD Testing Framework for Golang") +; (description +; "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library.") +; (license license:expat))) +; +;(define-public go-github-com-containernetworking-cni-1.0.1 +; (package +; (name "go-github-com-containernetworking-cni") +; (version "1.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containernetworking/cni") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0jzijcb96z26lchh6j4js3rl7c148mwlaiz3s6ww47kljnxmv05f")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containernetworking/cni")) +; (propagated-inputs +; `(("go-github-com-onsi-gomega-1.10.1" ,go-github-com-onsi-gomega-1.10.1) +; ("go-github-com-onsi-ginkgo-1.13.0" +; ,go-github-com-onsi-ginkgo-1.13.0))) +; (home-page "https://github.com/containernetworking/cni") +; (synopsis "CNI - the Container Network Interface") +; (description +; "CNI (), a @url{https://cncf.io,Cloud Native Computing Foundation} project, +;consists of a specification and libraries for writing plugins to configure +;network interfaces in Linux containers, along with a number of supported +;plugins. CNI concerns itself only with network connectivity of containers and +;removing allocated resources when the container is deleted. Because of this +;focus, CNI has a wide range of support and the specification is simple to +;implement.") +; (license license:asl2.0))) +; +;(define-public go-github-com-creack-pty-1.1.17 +; (package +; (name "go-github-com-creack-pty") +; (version "1.1.17") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/creack/pty") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "09lcq5bw1dwppxjia05sj4fy7gbk62vishfz1bgrbd1r06i57mjf")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/creack/pty")) +; (home-page "https://github.com/creack/pty") +; (synopsis "pty") +; (description +; "Package pty provides functions for working with Unix terminals.") +; (license license:expat))) +; +;(define-public go-github-com-cyphar-filepath-securejoin-0.2.3 +; (package +; (name "go-github-com-cyphar-filepath-securejoin") +; (version "0.2.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/cyphar/filepath-securejoin") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0w03d8hslwfhcnfqck21agzs7y0sc6gpwfz53md8fv26ishwxppy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/cyphar/filepath-securejoin")) +; (home-page "https://github.com/cyphar/filepath-securejoin") +; (synopsis #f) +; (description +; "Package securejoin is an implementation of the hopefully-soon-to-be-included +;SecureJoin helper that is meant to be part of the \"path/filepath\" package. The +;purpose of this project is to provide a PoC implementation to make the +;SecureJoin proposal +;(@url{https://github.com/golang/go/issues/20126,https://github.com/golang/go/issues/20126}) +;more tangible.") +; (license license:bsd-3))) +; +;(define-public go-github-com-docker-docker-20.10.12+incompatible +; (package +; (name "go-github-com-docker-docker") +; (version "20.10.12+incompatible") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/moby/moby") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "17j820ij8p6w61jyg5g6y5dwv56dh1w178f6ia2i2dc9b8mz6b5a")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/docker/docker")) +; (home-page "https://github.com/docker/docker") +; (synopsis "The Moby Project") +; (description +; "Moby is an open-source project created by Docker to enable and accelerate +;software containerization.") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-sys-0.0.0-20200116001909-b77594299b42 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20200116001909-b77594299b42") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0isfm6kmh4fjhh6m7mrb3zvdjka2y31c5habr5kydl7rg0lwkabv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-mattn-go-isatty-0.0.12 +; (package +; (name "go-github-com-mattn-go-isatty") +; (version "0.0.12") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mattn/go-isatty") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1dfsh27d52wmz0nmmzm2382pfrs2fcijvh6cgir7jbb4pnigr5w4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mattn/go-isatty")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20200116001909-b77594299b42" +; ,go-golang-org-x-sys-0.0.0-20200116001909-b77594299b42))) +; (home-page "https://github.com/mattn/go-isatty") +; (synopsis "go-isatty") +; (description "Package isatty implements interface to isatty") +; (license license:expat))) +; +;(define-public go-golang-org-x-sys-0.0.0-20200223170610-d5e6a3e2c0ae +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20200223170610-d5e6a3e2c0ae") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0lz7vm5dz2p14fzq2j4m1l9p392cl0fa73aaf45gln07ylfajk4n")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-mattn-go-colorable-0.1.9 +; (package +; (name "go-github-com-mattn-go-colorable") +; (version "0.1.9") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mattn/go-colorable") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0f46aiyfca71y7g7ypkicqi0r4ys9jwdw2v6hwdc0x76d39hh0qk")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mattn/go-colorable")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20200223170610-d5e6a3e2c0ae" +; ,go-golang-org-x-sys-0.0.0-20200223170610-d5e6a3e2c0ae) +; ("go-github-com-mattn-go-isatty-0.0.12" +; ,go-github-com-mattn-go-isatty-0.0.12))) +; (home-page "https://github.com/mattn/go-colorable") +; (synopsis "go-colorable") +; (description "Colorable writer for windows.") +; (license license:expat))) +; +;(define-public go-golang-org-x-sys-0.0.0-20210630005230-0f9fa26af87c +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20210630005230-0f9fa26af87c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "17g7kc6bf6zw4ib1xhmkbpfdn85jbmindqsz0l8ymmc6v279h13q")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-mattn-go-isatty-0.0.14 +; (package +; (name "go-github-com-mattn-go-isatty") +; (version "0.0.14") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mattn/go-isatty") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "015zc3j60vb85d7f2al15la24wn45piazxlagqhzrbgfdyqci60z")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mattn/go-isatty")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20210630005230-0f9fa26af87c" +; ,go-golang-org-x-sys-0.0.0-20210630005230-0f9fa26af87c))) +; (home-page "https://github.com/mattn/go-isatty") +; (synopsis "go-isatty") +; (description "Package isatty implements interface to isatty") +; (license license:expat))) +; +;(define-public go-github-com-fatih-color-1.13.0 +; (package +; (name "go-github-com-fatih-color") +; (version "1.13.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/fatih/color") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "029qkxsdpblhrpgbv4fcmqwkqnjhx08hwiqp19pd7zz6l8a373ay")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/fatih/color")) +; (propagated-inputs +; `(("go-github-com-mattn-go-isatty-0.0.14" +; ,go-github-com-mattn-go-isatty-0.0.14) +; ("go-github-com-mattn-go-colorable-0.1.9" +; ,go-github-com-mattn-go-colorable-0.1.9))) +; (home-page "https://github.com/fatih/color") +; (synopsis "color") +; (description +; "Package color is an ANSI color package to output colorized or SGR defined output +;to the standard output. The API can be used in several way, pick one that suits +;you.") +; (license license:expat))) +; +;(define-public go-github-com-go-log-log-0.2.0 +; (package +; (name "go-github-com-go-log-log") +; (version "0.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/go-log/log") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1idnqv4yvkmdh3wcsgvhcpak9z6ix8dsifdjq5kfbbnskdq5rmvg")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/go-log/log")) +; (home-page "https://github.com/go-log/log") +; (synopsis "Log") +; (description "Package log provides a log interface") +; (license license:expat))) +; +;(define-public go-github-com-google-uuid-1.3.0 +; (package +; (name "go-github-com-google-uuid") +; (version "1.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/uuid") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0imkw52m7fzrwsdj2rfrk3zbplqfbwncyv6hv89xw0vdw3jpk122")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/uuid")) +; (home-page "https://github.com/google/uuid") +; (synopsis "uuid") +; (description "Package uuid generates and inspects UUIDs.") +; (license license:bsd-3))) +; +;(define-public go-github-com-opencontainers-go-digest-1.0.0 +; (package +; (name "go-github-com-opencontainers-go-digest") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/go-digest") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0i5acjajvr6hi9zb7gxwifd8w28y884cv7cx36adj8lngj647xbi")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/go-digest")) +; (home-page "https://github.com/opencontainers/go-digest") +; (synopsis "go-digest") +; (description +; "Package digest provides a generalized type to opaquely represent message digests +;and their operations within the registry. The Digest type is designed to serve +;as a flexible identifier in a content-addressable system. More importantly, it +;provides tools and wrappers to work with hash.Hash-based digests with little +;effort.") +; (license (list license:asl2.0 license:cc-by-sa4.0)))) +; +;(define-public go-github-com-opencontainers-go-digest-1.0.0 +; (package +; (name "go-github-com-opencontainers-go-digest") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/go-digest") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0i5acjajvr6hi9zb7gxwifd8w28y884cv7cx36adj8lngj647xbi")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/go-digest")) +; (home-page "https://github.com/opencontainers/go-digest") +; (synopsis "go-digest") +; (description +; "Package digest provides a generalized type to opaquely represent message digests +;and their operations within the registry. The Digest type is designed to serve +;as a flexible identifier in a content-addressable system. More importantly, it +;provides tools and wrappers to work with hash.Hash-based digests with little +;effort.") +; (license (list license:asl2.0 license:cc-by-sa4.0)))) +; +;(define-public go-github-com-pkg-errors-0.9.1 +; (package +; (name "go-github-com-pkg-errors") +; (version "0.9.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/pkg/errors") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1761pybhc2kqr6v5fm8faj08x9bql8427yqg6vnfv6nhrasx1mwq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/pkg/errors")) +; (home-page "https://github.com/pkg/errors") +; (synopsis "errors") +; (description "Package errors provides simple error handling primitives.") +; (license license:bsd-2))) +; +;(define-public go-github-com-russross-blackfriday-1.6.0 +; (package +; (name "go-github-com-russross-blackfriday") +; (version "1.6.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/russross/blackfriday") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "036028ynpq52z9snmd2b1kjzyvv6n9sg71k651ndznggnw19aamp")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/russross/blackfriday")) +; (home-page "https://github.com/russross/blackfriday") +; (synopsis "Blackfriday") +; (description "Package blackfriday is a Markdown processor.") +; (license license:bsd-2))) +; +;(define-public go-github-com-davecgh-go-spew-1.1.0 +; (package +; (name "go-github-com-davecgh-go-spew") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/davecgh/go-spew") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/davecgh/go-spew")) +; (home-page "https://github.com/davecgh/go-spew") +; (synopsis "go-spew") +; (description +; "Go-spew implements a deep pretty printer for Go data structures to aid in +;debugging. A comprehensive suite of tests with 100% test coverage is provided +;to ensure proper functionality. See @code{test_coverage.txt} for the gocov +;coverage report. Go-spew is licensed under the liberal ISC license, so it may +;be used in open source or commercial projects.") +; (license license:isc))) +; +;(define-public go-github-com-pmezard-go-difflib-1.0.0 +; (package +; (name "go-github-com-pmezard-go-difflib") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/pmezard/go-difflib") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/pmezard/go-difflib")) +; (home-page "https://github.com/pmezard/go-difflib") +; (synopsis "go-difflib") +; (description +; "Go-difflib is a partial port of python 3 difflib package. Its main goal was to +;make unified and context diff available in pure Go, mostly for testing purposes.") +; (license license:bsd-3))) +; +;(define-public go-github-com-stretchr-objx-0.1.0 +; (package +; (name "go-github-com-stretchr-objx") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/objx") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/objx")) +; (home-page "https://github.com/stretchr/objx") +; (synopsis "Objx") +; (description +; "Objx - Go package for dealing with maps, slices, JSON and other data.") +; (license license:expat))) +; +;(define-public go-github-com-stretchr-testify-1.3.0 +; (package +; (name "go-github-com-stretchr-testify") +; (version "1.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/testify") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0wjchp2c8xbgcbbq32w3kvblk6q6yn533g78nxl6iskq6y95lxsy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/testify")) +; (propagated-inputs +; `(("go-github-com-stretchr-objx-0.1.0" +; ,go-github-com-stretchr-objx-0.1.0) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.0" +; ,go-github-com-davecgh-go-spew-1.1.0))) +; (home-page "https://github.com/stretchr/testify") +; (synopsis "Testify - Thou Shalt Write Tests") +; (description +; "** We are working on testify v2 and would love to hear what you'd like to see in +;it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +;Package testify is a set of packages that provide many tools for testifying that +;your code will behave as you intend.") +; (license license:expat))) +; +;(define-public go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f +; (package +; (name "go-github-com-xeipuuv-gojsonpointer") +; (version "0.0.0-20180127040702-4e3ac2762d5f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/xeipuuv/gojsonpointer") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "13y6iq2nzf9z4ls66bfgnnamj2m3438absmbpqry64bpwjfbsi9q")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/xeipuuv/gojsonpointer")) +; (home-page "https://github.com/xeipuuv/gojsonpointer") +; (synopsis "gojsonpointer") +; (description "An implementation of JSON Pointer - Go language") +; (license license:asl2.0))) +; +;(define-public go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415 +; (package +; (name "go-github-com-xeipuuv-gojsonreference") +; (version "0.0.0-20180127040603-bd5ef7bd5415") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/xeipuuv/gojsonreference") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1xby79padc7bmyb8rfbad8wfnfdzpnh51b1n8c0kibch0kwc1db5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/xeipuuv/gojsonreference")) +; (home-page "https://github.com/xeipuuv/gojsonreference") +; (synopsis "gojsonreference") +; (description "An implementation of JSON Reference - Go language") +; (license license:asl2.0))) +; +;(define-public go-github-com-xeipuuv-gojsonschema-1.2.0 +; (package +; (name "go-github-com-xeipuuv-gojsonschema") +; (version "1.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/xeipuuv/gojsonschema") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1mqiq0r8qw4qlfp3ls8073r6514rmzwrmdn4j33rppk3zh942i6l")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/xeipuuv/gojsonschema")) +; (propagated-inputs +; `(("go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415" +; ,go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415) +; ("go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f" +; ,go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f) +; ("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0))) +; (home-page "https://github.com/xeipuuv/gojsonschema") +; (synopsis "gojsonschema") +; (description +; "An implementation of JSON Schema for the Go programming language. Supports +;draft-04, draft-06 and draft-07.") +; (license license:asl2.0))) +; +;(define-public go-github-com-opencontainers-image-spec-1.0.3-0.20211202193544-a5463b7f9c84 +; (package +; (name "go-github-com-opencontainers-image-spec") +; (version "1.0.3-0.20211202193544-a5463b7f9c84") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/image-spec") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "11js6467d7fhcvad4aw26d4p0r5b33vf41qhcf1bdwx0y7smd7s4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/image-spec")) +; (propagated-inputs +; `(("go-github-com-xeipuuv-gojsonschema-1.2.0" +; ,go-github-com-xeipuuv-gojsonschema-1.2.0) +; ("go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415" +; ,go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415) +; ("go-github-com-russross-blackfriday-1.6.0" +; ,go-github-com-russross-blackfriday-1.6.0) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-go-digest-1.0.0" +; ,go-github-com-opencontainers-go-digest-1.0.0))) +; (home-page "https://github.com/opencontainers/image-spec") +; (synopsis "OCI Image Format Specification") +; (description +; "The OCI Image Format project creates and maintains the software shipping +;container image format spec (OCI Image Format).") +; (license license:asl2.0))) +; +;(define-public go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417 +; (package +; (name "go-github-com-opencontainers-runtime-spec") +; (version "1.0.3-0.20210326190908-1c3f411f0417") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/runtime-spec") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1azk8z41ga8af35c966f06vrq9y9hwz6mkm59r3py5qaamzim3qq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) +; (home-page "https://github.com/opencontainers/runtime-spec") +; (synopsis "Open Container Initiative Runtime Specification") +; (description +; "The @url{https://www.opencontainers.org,Open Container Initiative} develops +;specifications for standards on Operating System process and application +;containers.") +; (license license:asl2.0))) +; +;(define-public go-github-com-opencontainers-runtime-tools-0.9.1-0.20210326182921-59cdde06764b +; (package +; (name "go-github-com-opencontainers-runtime-tools") +; (version "0.9.1-0.20210326182921-59cdde06764b") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/runtime-tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0f4zy6x1rrrg10bphwijic30m3r4mq934zbavnci6jyi41l1w2r0")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/runtime-tools")) +; (home-page "https://github.com/opencontainers/runtime-tools") +; (synopsis "oci-runtime-tool") +; (description +; "oci-runtime-tool is a collection of tools for working with the +;@url{https://github.com/opencontainers/runtime-spec,OCI runtime specification}. +;To build from source code, runtime-tools requires Go 1.10.x or above.") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20191115151921-52ab43148777") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1kakxbqrb1w2vwg7r1896z68qcx2lfvimsl8cs2niiipbgpi6imx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-opencontainers-selinux-1.10.0 +; (package +; (name "go-github-com-opencontainers-selinux") +; (version "1.10.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/selinux") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "118q1d9py9zhym4jmyiivasmllkdnkp1zyx4brc6n2cfmxfph6gc")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/selinux")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777" +; ,go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777))) +; (home-page "https://github.com/opencontainers/selinux") +; (synopsis "selinux") +; (description "Common SELinux package used across the container ecosystem.") +; (license license:asl2.0))) +; +;(define-public go-github-com-adamkorcz-go-fuzz-headers-0.0.0-20210312213058-32f4d319f0d2 +; (package +; (name "go-github-com-adamkorcz-go-fuzz-headers") +; (version "0.0.0-20210312213058-32f4d319f0d2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/AdamKorcz/go-fuzz-headers") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0r14xxw8c7pkmln0n5vlrahf1785mr7mlyklmfpa11p9kk9pmq5j")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/AdamKorcz/go-fuzz-headers")) +; (home-page "https://github.com/AdamKorcz/go-fuzz-headers") +; (synopsis #f) +; (description #f) +; (license #f))) +; +;(define-public go-github-com-stretchr-testify-1.3.0 +; (package +; (name "go-github-com-stretchr-testify") +; (version "1.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/testify") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0wjchp2c8xbgcbbq32w3kvblk6q6yn533g78nxl6iskq6y95lxsy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/testify")) +; (propagated-inputs +; `(("go-github-com-stretchr-objx-0.1.0" +; ,go-github-com-stretchr-objx-0.1.0) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.0" +; ,go-github-com-davecgh-go-spew-1.1.0))) +; (home-page "https://github.com/stretchr/testify") +; (synopsis "Testify - Thou Shalt Write Tests") +; (description +; "** We are working on testify v2 and would love to hear what you'd like to see in +;it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +;Package testify is a set of packages that provide many tools for testifying that +;your code will behave as you intend.") +; (license license:expat))) +; +;(define-public go-github-com-apex-logs-0.0.7 +; (package +; (name "go-github-com-apex-logs") +; (version "0.0.7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/apex/logs") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1h12q9sb7f4yjizajfxvjllzqab1s8scgqj22prwyfbbqg1ilchv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/apex/logs")) +; (propagated-inputs +; `(("go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0" +; ,go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0) +; ("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0))) +; (home-page "https://github.com/apex/logs") +; (synopsis "Example") +; (description "Go client for @url{https://apex.sh/logs/,Apex Logs}.") +; (license license:expat))) +; +;(define-public go-github-com-aphistic-golf-0.0.0-20180712155816-02c07f170c5a +; (package +; (name "go-github-com-aphistic-golf") +; (version "0.0.0-20180712155816-02c07f170c5a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/aphistic/golf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1qixab9bb29wqbr4nc5j3g25hq1j7am93f181rkj7a4qacncx763")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/aphistic/golf")) +; (home-page "https://github.com/aphistic/golf") +; (synopsis "golf") +; (description +; "This package provides logging capabilities using the GELF +;(@url{https://www.graylog.org/resources/gelf-2/,https://www.graylog.org/resources/gelf-2/}) +;log format") +; (license license:expat))) +; +;(define-public go-github-com-mattn-go-isatty-0.0.5 +; (package +; (name "go-github-com-mattn-go-isatty") +; (version "0.0.5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mattn/go-isatty") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "114d5xm8rfxplzd7nxz97gfngb4bhqy102szl084d1afcxsvm4aa")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mattn/go-isatty")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223" +; ,go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223))) +; (home-page "https://github.com/mattn/go-isatty") +; (synopsis "go-isatty") +; (description "Package isatty implements interface to isatty") +; (license license:expat))) +; +;(define-public go-github-com-mattn-go-colorable-0.1.1 +; (package +; (name "go-github-com-mattn-go-colorable") +; (version "0.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mattn/go-colorable") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0l640974j804c1yyjfgyxqlsivz0yrzmbql4mhcw2azryigkp08p")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mattn/go-colorable")) +; (propagated-inputs +; `(("go-github-com-mattn-go-isatty-0.0.5" +; ,go-github-com-mattn-go-isatty-0.0.5))) +; (home-page "https://github.com/mattn/go-colorable") +; (synopsis "go-colorable") +; (description "Colorable writer for windows.") +; (license license:expat))) +; +;(define-public go-github-com-mgutz-ansi-0.0.0-20170206155736-9520e82c474b +; (package +; (name "go-github-com-mgutz-ansi") +; (version "0.0.0-20170206155736-9520e82c474b") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mgutz/ansi") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "00bz22314j26736w1f0q4jy9d9dfaml17vn890n5zqy3cmvmww1j")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mgutz/ansi")) +; (home-page "https://github.com/mgutz/ansi") +; (synopsis "ansi") +; (description +; "Package ansi is a small, fast library to create ANSI colored strings and codes.") +; (license license:expat))) +; +;(define-public go-github-com-fsnotify-fsnotify-1.4.7 +; (package +; (name "go-github-com-fsnotify-fsnotify") +; (version "1.4.7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/fsnotify/fsnotify") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/fsnotify/fsnotify")) +; (home-page "https://github.com/fsnotify/fsnotify") +; (synopsis "File system notifications for Go") +; (description +; "Package fsnotify provides a platform-independent interface for file system +;notifications.") +; (license license:bsd-3))) +; +;(define-public go-github-com-hpcloud-tail-1.0.0 +; (package +; (name "go-github-com-hpcloud-tail") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hpcloud/tail") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1njpzc0pi1acg5zx9y6vj9xi6ksbsc5d387rd6904hy6rh2m6kn0")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hpcloud/tail")) +; (home-page "https://github.com/hpcloud/tail") +; (synopsis "Go package for tail-ing files") +; (description +; "This package provides a Go package striving to emulate the features of the BSD +;@code{tail} program.") +; (license license:expat))) +; +;(define-public go-github-com-onsi-ginkgo-1.6.0 +; (package +; (name "go-github-com-onsi-ginkgo") +; (version "1.6.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/onsi/ginkgo") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0x0gc89vgq38xhgmi2h22bhr73cf2gmk42g89nz89k8dgg9hhr25")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/onsi/ginkgo")) +; (home-page "https://github.com/onsi/ginkgo") +; (synopsis "Ginkgo 2.0 Release Candidate is available!") +; (description "Ginkgo is a BDD-style testing framework for Golang") +; (license license:expat))) +; +;(define-public go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20180906233101-161cd47e91fd") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0254ld010iijygbzykib2vags1dc0wlmcmhgh4jl8iny159lhbcv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20180909124046-d0be0721c37e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "081wyvfnlf842dqg03raxfz6lldlxpmyh1prix9lmrrm65arxb12")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-gopkg-in-fsnotify-v1-1.4.7 +; (package +; (name "go-gopkg-in-fsnotify-v1") +; (version "1.4.7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/fsnotify.v1") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path +; "gopkg.in/fsnotify.v1" +; #:unpack-path +; "gopkg.in/fsnotify.v1")) +; (home-page "https://gopkg.in/fsnotify.v1") +; (synopsis "File system notifications for Go") +; (description +; "Package fsnotify provides a platform-independent interface for file system +;notifications.") +; (license license:bsd-3))) +; +;(define-public go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7 +; (package +; (name "go-gopkg-in-tomb-v1") +; (version "1.0.0-20141024135613-dd632973f1e7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/tomb.v1") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1lqmq1ag7s4b3gc3ddvr792c5xb5k6sfn0cchr3i2s7f1c231zjv")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/tomb.v1" #:unpack-path "gopkg.in/tomb.v1")) +; (home-page "https://gopkg.in/tomb.v1") +; (synopsis "Installation and usage") +; (description +; "The tomb package offers a conventional API for clean goroutine termination.") +; (license license:bsd-3))) +; +;(define-public go-gopkg-in-yaml-v2-2.2.1 +; (package +; (name "go-gopkg-in-yaml-v2") +; (version "2.2.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/yaml.v2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0dwjrs2lp2gdlscs7bsrmyc5yf6mm4fvgw71bzr9mv2qrd2q73s1")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" +; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) +; (home-page "https://gopkg.in/yaml.v2") +; (synopsis "YAML support for the Go language") +; (description "Package yaml implements YAML support for the Go language.") +; (license license:asl2.0))) +; +;(define-public go-github-com-onsi-gomega-1.5.0 +; (package +; (name "go-github-com-onsi-gomega") +; (version "1.5.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/onsi/gomega") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1n7i4hksdgv410m43v2sw14bl5vy59dkp6nlw5l76nibbh37syr9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/onsi/gomega")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1) +; ("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" +; ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) +; ("go-gopkg-in-fsnotify-v1-1.4.7" ,go-gopkg-in-fsnotify-v1-1.4.7) +; ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e" +; ,go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e) +; ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" +; ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) +; ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" +; ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) +; ("go-github-com-onsi-ginkgo-1.6.0" ,go-github-com-onsi-ginkgo-1.6.0) +; ("go-github-com-hpcloud-tail-1.0.0" ,go-github-com-hpcloud-tail-1.0.0) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0) +; ("go-github-com-fsnotify-fsnotify-1.4.7" +; ,go-github-com-fsnotify-fsnotify-1.4.7))) +; (home-page "https://github.com/onsi/gomega") +; (synopsis ": a BDD Testing Framework for Golang") +; (description +; "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library.") +; (license license:expat))) +; +;(define-public go-github-com-sergi-go-diff-1.0.0 +; (package +; (name "go-github-com-sergi-go-diff") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/sergi/go-diff") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0swiazj8wphs2zmk1qgq75xza6m19snif94h2m6fi8dqkwqdl7c7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/sergi/go-diff")) +; (home-page "https://github.com/sergi/go-diff") +; (synopsis "go-diff") +; (description +; "go-diff offers algorithms to perform operations required for synchronizing plain +;text:") +; (license license:expat))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20190426145343-a29dc8fdc734 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20190426145343-a29dc8fdc734") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "07f0jj4haqs0ywc1akk1qjwn5msl2j0pry1rxjkkbfcq4r6ihc1p")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" +; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) +; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" +; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-github-com-aphistic-sweet-0.2.0 +; (package +; (name "go-github-com-aphistic-sweet") +; (version "0.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/aphistic/sweet") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1bb4qagfxf6byqn2yx0vq24xfvisz3ah4w6bvqclc8cklvfngw43")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/aphistic/sweet")) +; (propagated-inputs +; `(("go-golang-org-x-crypto-0.0.0-20190426145343-a29dc8fdc734" +; ,go-golang-org-x-crypto-0.0.0-20190426145343-a29dc8fdc734) +; ("go-github-com-sergi-go-diff-1.0.0" +; ,go-github-com-sergi-go-diff-1.0.0) +; ("go-github-com-onsi-gomega-1.5.0" ,go-github-com-onsi-gomega-1.5.0) +; ("go-github-com-mgutz-ansi-0.0.0-20170206155736-9520e82c474b" +; ,go-github-com-mgutz-ansi-0.0.0-20170206155736-9520e82c474b) +; ("go-github-com-mattn-go-colorable-0.1.1" +; ,go-github-com-mattn-go-colorable-0.1.1))) +; (home-page "https://github.com/aphistic/sweet") +; (synopsis "sweet") +; (description +; "Sweet is a pluggable test runner capable of hooking into standard Go tests. It +;attempts to provide access to the standard Go test tool as close as possible +;while adding support for test suites and plugins that can hook into test results +;to add additional functionality.") +; (license license:expat))) +; +;(define-public go-github-com-jmespath-go-jmespath-0.0.0-20180206201540-c2b33e8439af +; (package +; (name "go-github-com-jmespath-go-jmespath") +; (version "0.0.0-20180206201540-c2b33e8439af") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/jmespath/go-jmespath") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1r6w7ydx8ydryxk3sfhzsk8m6f1nsik9jg3i1zhi69v4kfl4d5cz")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/jmespath/go-jmespath")) +; (home-page "https://github.com/jmespath/go-jmespath") +; (synopsis "go-jmespath - A JMESPath implementation in Go") +; (description +; "go-jmespath is a GO implementation of JMESPath, which is a query language for +;JSON. It will take a JSON document and transform it into another JSON document +;through a JMESPath expression.") +; (license license:asl2.0))) +; +;(define-public go-github-com-aws-aws-sdk-go-1.20.6 +; (package +; (name "go-github-com-aws-aws-sdk-go") +; (version "1.20.6") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/aws/aws-sdk-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "016vy5s9finyfgh08j7rvn2pnwymdgj2ydr59w57pysnri87mdwx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/aws/aws-sdk-go")) +; (propagated-inputs +; `(("go-github-com-jmespath-go-jmespath-0.0.0-20180206201540-c2b33e8439af" +; ,go-github-com-jmespath-go-jmespath-0.0.0-20180206201540-c2b33e8439af))) +; (home-page "https://github.com/aws/aws-sdk-go") +; (synopsis "AWS SDK for Go") +; (description +; "Package sdk is the official AWS SDK for the Go programming language.") +; (license license:asl2.0))) +; +;(define-public go-github-com-aybabtme-rgbterm-0.0.0-20170906152045-cc83f3b3ce59 +; (package +; (name "go-github-com-aybabtme-rgbterm") +; (version "0.0.0-20170906152045-cc83f3b3ce59") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/aybabtme/rgbterm") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0wvmxvjn64968ikvnxrflb1x8rlcwzpfl53fzbxff2axbx9lq50q")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/aybabtme/rgbterm")) +; (home-page "https://github.com/aybabtme/rgbterm") +; (synopsis "RGB terminal") +; (description +; "Package rgbterm colorizes bytes and strings using RGB colors, for a full range +;of pretty terminal strings.") +; (license license:expat))) +; +;(define-public go-github-com-fatih-color-1.7.0 +; (package +; (name "go-github-com-fatih-color") +; (version "1.7.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/fatih/color") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0v8msvg38r8d1iiq2i5r4xyfx0invhc941kjrsg5gzwvagv55inv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/fatih/color")) +; (home-page "https://github.com/fatih/color") +; (synopsis "color") +; (description +; "Package color is an ANSI color package to output colorized or SGR defined output +;to the standard output. The API can be used in several way, pick one that suits +;you.") +; (license license:expat))) +; +;(define-public go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515 +; (package +; (name "go-github-com-kr-logfmt") +; (version "0.0.0-20140226030751-b84e30acd515") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kr/logfmt") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "02ldzxgznrfdzvghfraslhgp19la1fczcbzh7wm2zdc6lmpd1qq9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kr/logfmt")) +; (home-page "https://github.com/kr/logfmt") +; (synopsis #f) +; (description "Package implements the decoding of logfmt key-value pairs.") +; (license license:expat))) +; +;(define-public go-github-com-go-logfmt-logfmt-0.4.0 +; (package +; (name "go-github-com-go-logfmt-logfmt") +; (version "0.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/go-logfmt/logfmt") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "06smxc112xmixz78nyvk3b2hmc7wasf2sl5vxj1xz62kqcq9lzm9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/go-logfmt/logfmt")) +; (propagated-inputs +; `(("go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515" +; ,go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515))) +; (home-page "https://github.com/go-logfmt/logfmt") +; (synopsis "logfmt") +; (description +; "Package logfmt implements utilities to marshal and unmarshal data in the logfmt +;format. The logfmt format records key/value pairs in a way that balances +;readability for humans and simplicity of computer parsing. It is most commonly +;used as a more human friendly alternative to JSON for structured logging.") +; (license license:expat))) +; +;(define-public go-github-com-golang-protobuf-1.3.1 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.3.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "15am4s4646qy6iv0g3kkqq52rzykqjhm4bf08dk0fy2r58knpsyl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code +;github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-github-com-google-uuid-1.1.1 +; (package +; (name "go-github-com-google-uuid") +; (version "1.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/uuid") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0hfxcf9frkb57k6q0rdkrmnfs78ms21r1qfk9fhlqga2yh5xg8zb")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/uuid")) +; (home-page "https://github.com/google/uuid") +; (synopsis "uuid") +; (description "Package uuid generates and inspects UUIDs.") +; (license license:bsd-3))) +; +;(define-public go-github-com-jpillora-backoff-0.0.0-20180909062703-3050d21c67d7 +; (package +; (name "go-github-com-jpillora-backoff") +; (version "0.0.0-20180909062703-3050d21c67d7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/jpillora/backoff") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1nxapdx9xg5gwiscfhq7m0w14hj4gaxb4avmgf1mx9zd3jnw9jxv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/jpillora/backoff")) +; (home-page "https://github.com/jpillora/backoff") +; (synopsis "Backoff") +; (description +; "Package backoff provides an exponential-backoff implementation.") +; (license license:expat))) +; +;(define-public go-github-com-kr-pretty-0.2.0 +; (package +; (name "go-github-com-kr-pretty") +; (version "0.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kr/pretty") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ywbfzz1h3a3qd8rpkiqwi1dm4w8ls9ijb4x1b7567grns9f0vnp")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kr/pretty")) +; (propagated-inputs +; `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) +; (home-page "https://github.com/kr/pretty") +; (synopsis #f) +; (description +; "Package pretty provides pretty-printing for Go values. This is useful during +;debugging, to avoid wrapping long output lines in the terminal.") +; (license license:expat))) +; +;(define-public go-github-com-mattn-go-colorable-0.1.2 +; (package +; (name "go-github-com-mattn-go-colorable") +; (version "0.1.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mattn/go-colorable") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0512jm3wmzkkn7d99x9wflyqf48n5ri3npy1fqkq6l6adc5mni3n")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mattn/go-colorable")) +; (propagated-inputs +; `(("go-github-com-mattn-go-isatty-0.0.8" +; ,go-github-com-mattn-go-isatty-0.0.8))) +; (home-page "https://github.com/mattn/go-colorable") +; (synopsis "go-colorable") +; (description "Colorable writer for windows.") +; (license license:expat))) +; +;(define-public go-github-com-pkg-errors-0.8.1 +; (package +; (name "go-github-com-pkg-errors") +; (version "0.8.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/pkg/errors") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0g5qcb4d4fd96midz0zdk8b9kz8xkzwfa8kr1cliqbg8sxsy5vd1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/pkg/errors")) +; (home-page "https://github.com/pkg/errors") +; (synopsis "errors") +; (description "Package errors provides simple error handling primitives.") +; (license license:bsd-2))) +; +;(define-public go-github-com-rogpeppe-fastuuid-1.1.0 +; (package +; (name "go-github-com-rogpeppe-fastuuid") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/rogpeppe/fastuuid") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1jlif5pxyz3md02ij93kd2y2j1zz0ajc9k8azvn83vv6l3r5c1zg")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/rogpeppe/fastuuid")) +; (home-page "https://github.com/rogpeppe/fastuuid") +; (synopsis "fastuuid") +; (description +; "Package fastuuid provides fast UUID generation of 192 bit universally unique +;identifiers.") +; (license license:bsd-3))) +; +;(define-public go-github-com-smartystreets-go-aws-auth-0.0.0-20180515143844-0c1422d1fdb9 +; (package +; (name "go-github-com-smartystreets-go-aws-auth") +; (version "0.0.0-20180515143844-0c1422d1fdb9") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/smarty-archives/go-aws-auth") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0krfdpgn3gfii1z9fi8ydfw0wwfqyvp6w3rji7w92m528zkjl93d")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/smartystreets/go-aws-auth")) +; (home-page "https://github.com/smartystreets/go-aws-auth") +; (synopsis "go-aws-auth") +; (description +; "Package awsauth implements AWS request signing using Signed Signature Version 2, +;Signed Signature Version 3, and Signed Signature Version 4. Supports S3 and +;STS.") +; (license license:expat))) +; +;(define-public go-github-com-smartystreets-assertions-1.0.0 +; (package +; (name "go-github-com-smartystreets-assertions") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/smartystreets/assertions") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1188hs39zvil41sdnxs83h1hp319lfyc5n2rvd1xnhz1dh5qjjh4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/smartystreets/assertions")) +; (home-page "https://github.com/smartystreets/assertions") +; (synopsis #f) +; (description +; "Package assertions contains the implementations for all assertions which are +;referenced in goconvey's `convey` package +;(github.com/smartystreets/goconvey/convey) and gunit +;(github.com/smartystreets/gunit) for use with the So(...) method. They can also +;be used in traditional Go test functions and even in applications.") +; (license license:expat))) +; +;(define-public go-github-com-smartystreets-gunit-1.0.0 +; (package +; (name "go-github-com-smartystreets-gunit") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/smartystreets/gunit") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "11d09rl5qqpj36a311pjj8w5jkj83d5b8gdcsx8f1zn4j924sm5d")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/smartystreets/gunit")) +; (propagated-inputs +; `(("go-github-com-smartystreets-assertions-1.0.0" +; ,go-github-com-smartystreets-assertions-1.0.0))) +; (home-page "https://github.com/smartystreets/gunit") +; (synopsis "gunit") +; (description +; "Package gunit provides \"testing\" package hooks and convenience functions for +;writing tests in an xUnit style. See the README file and the examples folder +;for examples.") +; (license license:expat))) +; +;(define-public go-github-com-stretchr-testify-1.4.0 +; (package +; (name "go-github-com-stretchr-testify") +; (version "1.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/testify") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "187i5g88sxfy4vxpm7dw1gwv29pa2qaq475lxrdh5livh69wqfjb")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/testify")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) +; ("go-github-com-stretchr-objx-0.1.0" +; ,go-github-com-stretchr-objx-0.1.0) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.0" +; ,go-github-com-davecgh-go-spew-1.1.0))) +; (home-page "https://github.com/stretchr/testify") +; (synopsis "Testify - Thou Shalt Write Tests") +; (description +; "** We are working on testify v2 and would love to hear what you'd like to see in +;it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +;Package testify is a set of packages that provide many tools for testifying that +;your code will behave as you intend.") +; (license license:expat))) +; +;(define-public go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0 +; (package +; (name "go-github-com-tj-assert") +; (version "0.0.0-20171129193455-018094318fb0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/tj/assert") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "15ika7izp5hkd10dm30apwfvpm0d1yl2rnxs6896q0svz9zvi2z3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/tj/assert")) +; (home-page "https://github.com/tj/assert") +; (synopsis "assert") +; (description +; "Package assert implements the same assertions as the `assert` package but stops +;test execution when a test fails.") +; (license license:expat))) +; +;(define-public go-github-com-tj-go-elastic-0.0.0-20171221160941-36157cbbebc2 +; (package +; (name "go-github-com-tj-go-elastic") +; (version "0.0.0-20171221160941-36157cbbebc2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/tj/go-elastic") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1r94vc4hbfvqvjz74n4mvsw4dy3vbyzlivb90kyn8vn76a4wqk69")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/tj/go-elastic")) +; (home-page "https://github.com/tj/go-elastic") +; (synopsis "go-elastic") +; (description +; "Package elastic provides an Elasticsearch client with AWS sigv4 support.") +; (license license:expat))) +; +;(define-public go-github-com-tj-go-kinesis-0.0.0-20171128231115-08b17f58cb1b +; (package +; (name "go-github-com-tj-go-kinesis") +; (version "0.0.0-20171128231115-08b17f58cb1b") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/tj/go-kinesis") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "108c6p5j6rhhc2cnc2v5368yfsw73y6lzlvz02vpvvjph8rhmld4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/tj/go-kinesis")) +; (home-page "https://github.com/tj/go-kinesis") +; (synopsis "go-kinesis") +; (description +; "Package kinesis implements a batch producer built on top of the official AWS +;SDK.") +; (license license:expat))) +; +;(define-public go-github-com-tj-go-spin-1.1.0 +; (package +; (name "go-github-com-tj-go-spin") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/tj/go-spin") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "11xr67991m5pwsy1dira3iwd0sr55vmn1cyjwmlqziw4bwpym64s")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/tj/go-spin")) +; (home-page "https://github.com/tj/go-spin") +; (synopsis #f) +; (description #f) +; (license #f))) +; +;(define-public go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190620200207-3b0461eec859") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0l00c8l0a8xnv6qdpwfzxxsr58jggacgzdrwiprrfx2xqm37b6d5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20180917221912-90fa682c2a6e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-text-0.3.2 +; (package +; (name "go-golang-org-x-text") +; (version "0.3.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/text") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0flv9idw0jm5nm8lx25xqanbkqgfiym6619w575p7nrdh0riqwqh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/text")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" +; ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) +; (home-page "https://golang.org/x/text") +; (synopsis "Go Text") +; (description +; "text is a repository of text-related packages related to internationalization +;(i18n) and localization (l10n), such as character encodings, text +;transformations, and locale-specific text handling.") +; (license license:bsd-3))) +; +;(define-public go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15 +; (package +; (name "go-gopkg-in-check-v1") +; (version "1.0.0-20190902080502-41f04d3bba15") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/check.v1") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0vfk9czmlxmp6wndq8k17rhnjxal764mxfhrccza7nwlia760pjy")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) +; (home-page "https://gopkg.in/check.v1") +; (synopsis "Instructions") +; (description +; "Package check is a rich testing extension for Go's testing package.") +; (license license:bsd-2))) +; +;(define-public go-github-com-apex-log-1.4.0 +; (package +; (name "go-github-com-apex-log") +; (version "1.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/apex/log") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0711096f04dyjk2vgj5b50491fl36wciwbq80xwvns5wwkqdg2z5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/apex/log")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" +; ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) +; ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) +; ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" +; ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) +; ("go-github-com-tj-go-spin-1.1.0" ,go-github-com-tj-go-spin-1.1.0) +; ("go-github-com-tj-go-kinesis-0.0.0-20171128231115-08b17f58cb1b" +; ,go-github-com-tj-go-kinesis-0.0.0-20171128231115-08b17f58cb1b) +; ("go-github-com-tj-go-elastic-0.0.0-20171221160941-36157cbbebc2" +; ,go-github-com-tj-go-elastic-0.0.0-20171221160941-36157cbbebc2) +; ("go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0" +; ,go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0) +; ("go-github-com-stretchr-testify-1.4.0" +; ,go-github-com-stretchr-testify-1.4.0) +; ("go-github-com-smartystreets-gunit-1.0.0" +; ,go-github-com-smartystreets-gunit-1.0.0) +; ("go-github-com-smartystreets-go-aws-auth-0.0.0-20180515143844-0c1422d1fdb9" +; ,go-github-com-smartystreets-go-aws-auth-0.0.0-20180515143844-0c1422d1fdb9) +; ("go-github-com-rogpeppe-fastuuid-1.1.0" +; ,go-github-com-rogpeppe-fastuuid-1.1.0) +; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) +; ("go-github-com-mattn-go-colorable-0.1.2" +; ,go-github-com-mattn-go-colorable-0.1.2) +; ("go-github-com-kr-pretty-0.2.0" ,go-github-com-kr-pretty-0.2.0) +; ("go-github-com-jpillora-backoff-0.0.0-20180909062703-3050d21c67d7" +; ,go-github-com-jpillora-backoff-0.0.0-20180909062703-3050d21c67d7) +; ("go-github-com-google-uuid-1.1.1" ,go-github-com-google-uuid-1.1.1) +; ("go-github-com-golang-protobuf-1.3.1" +; ,go-github-com-golang-protobuf-1.3.1) +; ("go-github-com-go-logfmt-logfmt-0.4.0" +; ,go-github-com-go-logfmt-logfmt-0.4.0) +; ("go-github-com-fatih-color-1.7.0" ,go-github-com-fatih-color-1.7.0) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1) +; ("go-github-com-aybabtme-rgbterm-0.0.0-20170906152045-cc83f3b3ce59" +; ,go-github-com-aybabtme-rgbterm-0.0.0-20170906152045-cc83f3b3ce59) +; ("go-github-com-aws-aws-sdk-go-1.20.6" +; ,go-github-com-aws-aws-sdk-go-1.20.6) +; ("go-github-com-aphistic-sweet-0.2.0" +; ,go-github-com-aphistic-sweet-0.2.0) +; ("go-github-com-aphistic-golf-0.0.0-20180712155816-02c07f170c5a" +; ,go-github-com-aphistic-golf-0.0.0-20180712155816-02c07f170c5a) +; ("go-github-com-apex-logs-0.0.7" ,go-github-com-apex-logs-0.0.7))) +; (home-page "https://github.com/apex/log") +; (synopsis "Handlers") +; (description +; "Package log implements a simple structured logging API designed with few +;assumptions. Designed for centralized logging solutions such as Kinesis which +;require encoding and decoding before fanning-out to handlers.") +; (license license:expat))) +; +;(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0 +; (package +; (name "go-github-com-cpuguy83-go-md2man-v2") +; (version "2.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/cpuguy83/go-md2man") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) +; (propagated-inputs +; `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" +; ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) +; ("go-github-com-russross-blackfriday-v2-2.0.1" +; ,go-github-com-russross-blackfriday-v2-2.0.1) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0))) +; (home-page "https://github.com/cpuguy83/go-md2man") +; (synopsis "go-md2man") +; (description "Converts markdown into roff (man pages).") +; (license license:expat))) +; +;(define-public go-github-com-cyphar-filepath-securejoin-0.2.2 +; (package +; (name "go-github-com-cyphar-filepath-securejoin") +; (version "0.2.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/cyphar/filepath-securejoin") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0id32zjb92wm569m29nfrzz5mw9z1glr3klayr6j134pp4h1sgq4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/cyphar/filepath-securejoin")) +; (home-page "https://github.com/cyphar/filepath-securejoin") +; (synopsis #f) +; (description +; "Package securejoin is an implementation of the hopefully-soon-to-be-included +;SecureJoin helper that is meant to be part of the \"path/filepath\" package. The +;purpose of this project is to provide a PoC implementation to make the +;SecureJoin proposal +;(@url{https://github.com/golang/go/issues/20126,https://github.com/golang/go/issues/20126}) +;more tangible.") +; (license license:bsd-3))) +; +;(define-public go-github-com-docker-go-units-0.4.0 +; (package +; (name "go-github-com-docker-go-units") +; (version "0.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/docker/go-units") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0k8gja8ql4pqg5rzmqvka42vjfs6rzablak87whcnqba6qxpimvz")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/docker/go-units")) +; (home-page "https://github.com/docker/go-units") +; (synopsis "Introduction") +; (description +; "Package units provides helper function to parse and print size and time units in +;human-readable format.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-protobuf-1.23.0 +; (package +; (name "go-google-golang-org-protobuf") +; (version "1.23.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "03yan0m1v0zmlr935p4n24fd376mznsg85zy8sywbgisls4s1bzy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.4.0" +; ,go-github-com-golang-protobuf-1.4.0))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is +;a language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol +;buffer developer guide} for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.4.2 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.4.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0m5z81im4nsyfgarjhppayk4hqnrwswr3nix9mj8pff8x9jvcjqw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.23.0" +; ,go-google-golang-org-protobuf-1.23.0) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0))) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code +;github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-github-com-google-go-cmp-0.5.0 +; (package +; (name "go-github-com-google-go-cmp") +; (version "0.5.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/go-cmp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "04pzp583p6b32y34c6jygfxarff9qjs39rarvfh6467z24sdd9k4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/go-cmp")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" +; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) +; (home-page "https://github.com/google/go-cmp") +; (synopsis "Package for equality of Go values") +; (description +; "This package is intended to be a more powerful and safer alternative to +;@code{reflect.DeepEqual} for comparing whether two values are semantically +;equal.") +; (license license:bsd-3))) +; +;(define-public go-github-com-klauspost-compress-1.11.3 +; (package +; (name "go-github-com-klauspost-compress") +; (version "1.11.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/klauspost/compress") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "04wpilw6072fh2wd492ma1nw4br7bvz466mj0vi2m1g4w6d0z88z")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/klauspost/compress")) +; (home-page "https://github.com/klauspost/compress") +; (synopsis "compress") +; (description "This package provides various compression algorithms.") +; (license license:expat))) +; +;(define-public go-github-com-klauspost-pgzip-1.2.4 +; (package +; (name "go-github-com-klauspost-pgzip") +; (version "1.2.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/klauspost/pgzip") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0mnhfdn0isbkra455jynqjbmrwymx09shlbzbyvgfycih3nbrif0")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/klauspost/pgzip")) +; (home-page "https://github.com/klauspost/pgzip") +; (synopsis "pgzip") +; (description +; "Package pgzip implements reading and writing of gzip format compressed files, as +;specified in @url{https://rfc-editor.org/rfc/rfc1952.html,RFC 1952}.") +; (license license:expat))) +; +;(define-public go-github-com-creack-pty-1.1.9 +; (package +; (name "go-github-com-creack-pty") +; (version "1.1.9") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/creack/pty") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1v52599qq76dwq742mffakzj6mxqqccv2szn3hjicjld56nmd2d3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/creack/pty")) +; (home-page "https://github.com/creack/pty") +; (synopsis "pty") +; (description +; "Package pty provides functions for working with Unix terminals.") +; (license license:expat))) +; +;(define-public go-github-com-kr-text-0.2.0 +; (package +; (name "go-github-com-kr-text") +; (version "0.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kr/text") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0hf58ypz6rxsw6nx3i856whir9lvy4sdx946wbw1nfaf2rdmr9vx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kr/text")) +; (propagated-inputs +; `(("go-github-com-creack-pty-1.1.9" ,go-github-com-creack-pty-1.1.9))) +; (home-page "https://github.com/kr/text") +; (synopsis #f) +; (description +; "Package text provides rudimentary functions for manipulating text in paragraphs.") +; (license license:expat))) +; +;(define-public go-golang-org-x-sys-0.0.0-20200116001909-b77594299b42 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20200116001909-b77594299b42") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0isfm6kmh4fjhh6m7mrb3zvdjka2y31c5habr5kydl7rg0lwkabv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-mattn-go-isatty-0.0.12 +; (package +; (name "go-github-com-mattn-go-isatty") +; (version "0.0.12") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mattn/go-isatty") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1dfsh27d52wmz0nmmzm2382pfrs2fcijvh6cgir7jbb4pnigr5w4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mattn/go-isatty")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20200116001909-b77594299b42" +; ,go-golang-org-x-sys-0.0.0-20200116001909-b77594299b42))) +; (home-page "https://github.com/mattn/go-isatty") +; (synopsis "go-isatty") +; (description "Package isatty implements interface to isatty") +; (license license:expat))) +; +;(define-public go-golang-org-x-sys-0.0.0-20200223170610-d5e6a3e2c0ae +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20200223170610-d5e6a3e2c0ae") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0lz7vm5dz2p14fzq2j4m1l9p392cl0fa73aaf45gln07ylfajk4n")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-mattn-go-colorable-0.1.6 +; (package +; (name "go-github-com-mattn-go-colorable") +; (version "0.1.6") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mattn/go-colorable") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0zv9ix7g0qf71jdhv7gbab9hjfkgbxl22kwhpz9ck1y6m4g1zxaw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mattn/go-colorable")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20200223170610-d5e6a3e2c0ae" +; ,go-golang-org-x-sys-0.0.0-20200223170610-d5e6a3e2c0ae) +; ("go-github-com-mattn-go-isatty-0.0.12" +; ,go-github-com-mattn-go-isatty-0.0.12))) +; (home-page "https://github.com/mattn/go-colorable") +; (synopsis "go-colorable") +; (description "Colorable writer for windows.") +; (license license:expat))) +; +;(define-public go-github-com-mohae-deepcopy-0.0.0-20170929034955-c48cc78d4826 +; (package +; (name "go-github-com-mohae-deepcopy") +; (version "0.0.0-20170929034955-c48cc78d4826") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mohae/deepcopy") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0jdhsz0hsbn0k45rmvm39knbvs024j24ay2q65k5ih8ql8m2c0sd")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mohae/deepcopy")) +; (home-page "https://github.com/mohae/deepcopy") +; (synopsis "deepCopy") +; (description +; "deepcopy makes deep copies of things. A standard copy will copy the pointers: +;deep copy copies the values pointed to. Unexported field values are not copied.") +; (license license:expat))) +; +;(define-public go-github-com-kr-pty-1.1.1 +; (package +; (name "go-github-com-kr-pty") +; (version "1.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kr/pty") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0383f0mb9kqjvncqrfpidsf8y6ns5zlrc91c6a74xpyxjwvzl2y6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kr/pty")) +; (home-page "https://github.com/kr/pty") +; (synopsis "pty") +; (description +; "Package pty is a wrapper for github.com/creack/pty, which provides functions for +;working with Unix terminals.") +; (license license:expat))) +; +;(define-public go-github-com-kr-text-0.1.0 +; (package +; (name "go-github-com-kr-text") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kr/text") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1gm5bsl01apvc84bw06hasawyqm4q84vx1pm32wr9jnd7a8vjgj1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kr/text")) +; (propagated-inputs +; `(("go-github-com-kr-pty-1.1.1" ,go-github-com-kr-pty-1.1.1))) +; (home-page "https://github.com/kr/text") +; (synopsis #f) +; (description +; "Package text provides rudimentary functions for manipulating text in paragraphs.") +; (license license:expat))) +; +;(define-public go-github-com-niemeyer-pretty-0.0.0-20200227124842-a10e7caefd8e +; (package +; (name "go-github-com-niemeyer-pretty") +; (version "0.0.0-20200227124842-a10e7caefd8e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/niemeyer/pretty") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1jmazh4xzaa3v6g46hz60q2z7nmqs9l9cxdzmmscn3kbcs2znq4v")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/niemeyer/pretty")) +; (propagated-inputs +; `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) +; (home-page "https://github.com/niemeyer/pretty") +; (synopsis #f) +; (description +; "Package pretty provides pretty-printing for Go values. This is useful during +;debugging, to avoid wrapping long output lines in the terminal.") +; (license license:expat))) +; +;(define-public go-github-com-opencontainers-go-digest-1.0.0 +; (package +; (name "go-github-com-opencontainers-go-digest") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/go-digest") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0i5acjajvr6hi9zb7gxwifd8w28y884cv7cx36adj8lngj647xbi")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/go-digest")) +; (home-page "https://github.com/opencontainers/go-digest") +; (synopsis "go-digest") +; (description +; "Package digest provides a generalized type to opaquely represent message digests +;and their operations within the registry. The Digest type is designed to serve +;as a flexible identifier in a content-addressable system. More importantly, it +;provides tools and wrappers to work with hash.Hash-based digests with little +;effort.") +; (license (list license:asl2.0 license:cc-by-sa4.0)))) +; +;(define-public go-github-com-opencontainers-image-spec-1.0.1 +; (package +; (name "go-github-com-opencontainers-image-spec") +; (version "1.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/image-spec") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "03dvbj3dln8c55v9gp79mgmz2yi2ws3r08iyz2fk41y3i22iaw1q")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/image-spec")) +; (home-page "https://github.com/opencontainers/image-spec") +; (synopsis "OCI Image Format Specification") +; (description +; "The OCI Image Format project creates and maintains the software shipping +;container image format spec (OCI Image Format).") +; (license license:asl2.0))) +; +;(define-public go-github-com-opencontainers-runc-1.0.0-rc90 +; (package +; (name "go-github-com-opencontainers-runc") +; (version "1.0.0-rc90") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/runc") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0pi3rvj585997m4z9ljkxz2z9yxf9p2jr0pmqbqrc7bc95f5hagk")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/runc")) +; (home-page "https://github.com/opencontainers/runc") +; (synopsis "runc") +; (description +; "@code{runc} is a CLI tool for spawning and running containers on Linux according +;to the OCI specification.") +; (license license:asl2.0))) +; +;(define-public go-github-com-opencontainers-runtime-spec-1.0.2 +; (package +; (name "go-github-com-opencontainers-runtime-spec") +; (version "1.0.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/runtime-spec") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19w981vcmd5lp2hy0630x6ayb8zz17n2vxqm2py5mg945xflcizg")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) +; (home-page "https://github.com/opencontainers/runtime-spec") +; (synopsis "Open Container Initiative Runtime Specification") +; (description +; "The @url{https://www.opencontainers.org,Open Container Initiative} develops +;specifications for standards on Operating System process and application +;containers.") +; (license license:asl2.0))) +; +;(define-public go-github-com-pkg-errors-0.9.1 +; (package +; (name "go-github-com-pkg-errors") +; (version "0.9.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/pkg/errors") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1761pybhc2kqr6v5fm8faj08x9bql8427yqg6vnfv6nhrasx1mwq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/pkg/errors")) +; (home-page "https://github.com/pkg/errors") +; (synopsis "errors") +; (description "Package errors provides simple error handling primitives.") +; (license license:bsd-2))) +; +;(define-public go-github-com-rootless-containers-proto-0.1.0 +; (package +; (name "go-github-com-rootless-containers-proto") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/rootless-containers/proto") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1yik3b2fxpdkhplni8saabpvf43wnnz4wh6fapak29mkj3lx3mfh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/rootless-containers/proto")) +; (home-page "https://github.com/rootless-containers/proto") +; (synopsis #f) +; (description +; "This project contains the +;@url{https://developers.google.com/protocol-buffers/,protobuf} definition of the +;@code{user.rootlesscontainers} extended attribute. The main purpose of this +;attribute is to allow for a interoperable and standardised way of emulating +;persistent syscalls in a @url{https://rootlesscontaine.rs/,rootless container} +;(syscalls such as @code{chown(2)} which would ordinarily fail).") +; (license license:asl2.0))) +; +;(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.3 +; (package +; (name "go-github-com-konsorten-go-windows-terminal-sequences") +; (version "1.0.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/konsorten/go-windows-terminal-sequences") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1yrsd4s8vhjnxhwbigirymz89dn6qfjnhn28i33vvvdgf96j6ypl")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) +; (home-page "https://github.com/konsorten/go-windows-terminal-sequences") +; (synopsis "Windows Terminal Sequences") +; (description +; "This library allow for enabling Windows terminal color support for Go.") +; (license license:expat))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190422165155-953cdadca894") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0gkha4whk8xkcv3isigbs250akag99isxnd3v9xmy0kl3g88hxy1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-sirupsen-logrus-1.6.0 +; (package +; (name "go-github-com-sirupsen-logrus") +; (version "1.6.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/sirupsen/logrus") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1zf9is1yxxnna0d1pyag2m9ziy3l27zb2j92p9msm1gx5jjrvzzj")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/sirupsen/logrus")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894" +; ,go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894) +; ("go-github-com-stretchr-testify-1.2.2" +; ,go-github-com-stretchr-testify-1.2.2) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.3" +; ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.3) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://github.com/sirupsen/logrus") +; (synopsis "Logrus") +; (description +; "Package logrus is a structured logger for Go, completely API compatible with the +;standard library logger.") +; (license license:expat))) +; +;(define-public go-github-com-davecgh-go-spew-1.1.0 +; (package +; (name "go-github-com-davecgh-go-spew") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/davecgh/go-spew") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/davecgh/go-spew")) +; (home-page "https://github.com/davecgh/go-spew") +; (synopsis "go-spew") +; (description +; "Go-spew implements a deep pretty printer for Go data structures to aid in +;debugging. A comprehensive suite of tests with 100% test coverage is provided +;to ensure proper functionality. See @code{test_coverage.txt} for the gocov +;coverage report. Go-spew is licensed under the liberal ISC license, so it may +;be used in open source or commercial projects.") +; (license license:isc))) +; +;(define-public go-github-com-stretchr-objx-0.1.0 +; (package +; (name "go-github-com-stretchr-objx") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/objx") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/objx")) +; (home-page "https://github.com/stretchr/objx") +; (synopsis "Objx") +; (description +; "Objx - Go package for dealing with maps, slices, JSON and other data.") +; (license license:expat))) +; +;(define-public go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c +; (package +; (name "go-gopkg-in-yaml-v3") +; (version "3.0.0-20200313102051-9f266ea9e77c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/yaml.v3") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1bbai3lzb50m0x2vwsdbagrbhvfylj9k1m32hgbqwldqx4p9ay35")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" +; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) +; (home-page "https://gopkg.in/yaml.v3") +; (synopsis "YAML support for the Go language") +; (description "Package yaml implements YAML support for the Go language.") +; (license license:expat))) +; +;(define-public go-github-com-stretchr-testify-1.6.1 +; (package +; (name "go-github-com-stretchr-testify") +; (version "1.6.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/testify") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1yhiqqzjvi63pf01rgzx68gqkkvjx03fvl5wk30br5l6s81s090l")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/testify")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" +; ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) +; ("go-github-com-stretchr-objx-0.1.0" +; ,go-github-com-stretchr-objx-0.1.0) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.0" +; ,go-github-com-davecgh-go-spew-1.1.0))) +; (home-page "https://github.com/stretchr/testify") +; (synopsis "Testify - Thou Shalt Write Tests") +; (description +; "** We are working on testify v2 and would love to hear what you'd like to see in +;it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +;Package testify is a set of packages that provide many tools for testifying that +;your code will behave as you intend.") +; (license license:expat))) +; +;(define-public go-gopkg-in-yaml-v3-3.0.0-20200605160147-a5ece683394c +; (package +; (name "go-gopkg-in-yaml-v3") +; (version "3.0.0-20200605160147-a5ece683394c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/yaml.v3") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "03cm7c3p5fh0aa8vnxv5010dgqqr268ivb480ix1salxx3396w68")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" +; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) +; (home-page "https://gopkg.in/yaml.v3") +; (synopsis "YAML support for the Go language") +; (description "Package yaml implements YAML support for the Go language.") +; (license license:expat))) +; +;(define-public go-github-com-tj-assert-0.0.3 +; (package +; (name "go-github-com-tj-assert") +; (version "0.0.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/tj/assert") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1j5swk3fjq1h5fpqkipddz2ccnbidr7qrpm5dpdaflg9q5jnc673")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/tj/assert")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v3-3.0.0-20200605160147-a5ece683394c" +; ,go-gopkg-in-yaml-v3-3.0.0-20200605160147-a5ece683394c) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://github.com/tj/assert") +; (synopsis "assert") +; (description +; "Package assert implements the same assertions as the `assert` package but stops +;test execution when a test fails.") +; (license license:expat))) +; +;(define-public go-github-com-russross-blackfriday-v2-2.0.1 +; (package +; (name "go-github-com-russross-blackfriday-v2") +; (version "2.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/russross/blackfriday") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0nlz7isdd4rgnwzs68499hlwicxz34j2k2a0b8jy0y7ycd2bcr5j")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/russross/blackfriday/v2")) +; (home-page "https://github.com/russross/blackfriday") +; (synopsis "Blackfriday") +; (description "Package blackfriday is a markdown processor.") +; (license license:bsd-2))) +; +;(define-public go-github-com-shurcool-sanitized-anchor-name-1.0.0 +; (package +; (name "go-github-com-shurcool-sanitized-anchor-name") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/shurcooL/sanitized_anchor_name") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1gv9p2nr46z80dnfjsklc6zxbgk96349sdsxjz05f3z6wb6m5l8f")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/shurcooL/sanitized_anchor_name")) +; (home-page "https://github.com/shurcooL/sanitized_anchor_name") +; (synopsis "sanitized_anchor_name") +; (description +; "Package sanitized_anchor_name provides a func to create sanitized anchor names.") +; (license license:expat))) +; +;(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d +; (package +; (name "go-github-com-cpuguy83-go-md2man-v2") +; (version "2.0.0-20190314233015-f79a8a8ca69d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/cpuguy83/go-md2man") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) +; (propagated-inputs +; `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" +; ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) +; ("go-github-com-russross-blackfriday-v2-2.0.1" +; ,go-github-com-russross-blackfriday-v2-2.0.1) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0))) +; (home-page "https://github.com/cpuguy83/go-md2man") +; (synopsis "go-md2man") +; (description "Converts markdown into roff (man pages).") +; (license license:expat))) +; +;(define-public go-gopkg-in-yaml-v2-2.2.2 +; (package +; (name "go-gopkg-in-yaml-v2") +; (version "2.2.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/yaml.v2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "01wj12jzsdqlnidpyjssmj0r4yavlqy7dwrg7adqd8dicjc4ncsa")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" +; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) +; (home-page "https://gopkg.in/yaml.v2") +; (synopsis "YAML support for the Go language") +; (description "Package yaml implements YAML support for the Go language.") +; (license license:asl2.0))) +; +;(define-public go-github-com-urfave-cli-1.22.4 +; (package +; (name "go-github-com-urfave-cli") +; (version "1.22.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/urfave/cli") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1s7frsmiih4wh8vpx9z3ck4667c6vpjrmba7b9ymnv1p9khyg8wc")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/urfave/cli")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) +; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d" +; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d) +; ("go-github-com-burntsushi-toml-0.3.1" +; ,go-github-com-burntsushi-toml-0.3.1))) +; (home-page "https://github.com/urfave/cli") +; (synopsis "cli") +; (description +; "Package cli provides a minimal framework for creating and organizing command +;line Go applications. cli is designed to be easy to understand and write, the +;most simple cli application can be written as follows:") +; (license license:expat))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190222072716-a9d3bda3a223") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1w45zc13xrjzl19s1sx74r5mg3lf2z2nm13wygcdq5r5pyjlhdz9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-mattn-go-isatty-0.0.8 +; (package +; (name "go-github-com-mattn-go-isatty") +; (version "0.0.8") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mattn/go-isatty") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0rqfh1rj6f5wm8p2ky7inm8g10152p7w6n2cli17kf9gad797i8h")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mattn/go-isatty")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223" +; ,go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223))) +; (home-page "https://github.com/mattn/go-isatty") +; (synopsis "go-isatty") +; (description "Package isatty implements interface to isatty") +; (license license:expat))) +; +;(define-public go-github-com-mattn-go-colorable-0.1.4 +; (package +; (name "go-github-com-mattn-go-colorable") +; (version "0.1.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mattn/go-colorable") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1yxcz08kminqr1221zxpibnbzfcgs3fafin0z9zqb3gqvf74jywz")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mattn/go-colorable")) +; (propagated-inputs +; `(("go-github-com-mattn-go-isatty-0.0.8" +; ,go-github-com-mattn-go-isatty-0.0.8))) +; (home-page "https://github.com/mattn/go-colorable") +; (synopsis "go-colorable") +; (description "Colorable writer for windows.") +; (license license:expat))) +; +;(define-public go-github-com-mattn-go-isatty-0.0.11 +; (package +; (name "go-github-com-mattn-go-isatty") +; (version "0.0.11") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mattn/go-isatty") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0h671sv7hfprja495kavazkalkx7xzaqksjh13brcnwq67ijrali")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mattn/go-isatty")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037" +; ,go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037))) +; (home-page "https://github.com/mattn/go-isatty") +; (synopsis "go-isatty") +; (description "Package isatty implements interface to isatty") +; (license license:expat))) +; +;(define-public go-github-com-fatih-color-1.9.0 +; (package +; (name "go-github-com-fatih-color") +; (version "1.9.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/fatih/color") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "086z8ssmr1fn9ba4mqnw7pnccfpys6l5yfhvycv1gdrsk7n27mvs")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/fatih/color")) +; (propagated-inputs +; `(("go-github-com-mattn-go-isatty-0.0.11" +; ,go-github-com-mattn-go-isatty-0.0.11) +; ("go-github-com-mattn-go-colorable-0.1.4" +; ,go-github-com-mattn-go-colorable-0.1.4))) +; (home-page "https://github.com/fatih/color") +; (synopsis "color") +; (description +; "Package color is an ANSI color package to output colorized or SGR defined output +;to the standard output. The API can be used in several way, pick one that suits +;you.") +; (license license:expat))) +; +;(define-public go-github-com-davecgh-go-spew-1.1.1 +; (package +; (name "go-github-com-davecgh-go-spew") +; (version "1.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/davecgh/go-spew") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/davecgh/go-spew")) +; (home-page "https://github.com/davecgh/go-spew") +; (synopsis "go-spew") +; (description +; "Go-spew implements a deep pretty printer for Go data structures to aid in +;debugging. A comprehensive suite of tests with 100% test coverage is provided +;to ensure proper functionality. See @code{test_coverage.txt} for the gocov +;coverage report. Go-spew is licensed under the liberal ISC license, so it may +;be used in open source or commercial projects.") +; (license license:isc))) +; +;(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.1 +; (package +; (name "go-github-com-konsorten-go-windows-terminal-sequences") +; (version "1.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/konsorten/go-windows-terminal-sequences") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1lchgf27n276vma6iyxa0v1xds68n2g8lih5lavqnx5x6q5pw2ip")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) +; (home-page "https://github.com/konsorten/go-windows-terminal-sequences") +; (synopsis "Windows Terminal Sequences") +; (description +; "This library allow for enabling Windows terminal color support for Go.") +; (license license:expat))) +; +;(define-public go-github-com-pmezard-go-difflib-1.0.0 +; (package +; (name "go-github-com-pmezard-go-difflib") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/pmezard/go-difflib") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/pmezard/go-difflib")) +; (home-page "https://github.com/pmezard/go-difflib") +; (synopsis "go-difflib") +; (description +; "Go-difflib is a partial port of python 3 difflib package. Its main goal was to +;make unified and context diff available in pure Go, mostly for testing purposes.") +; (license license:bsd-3))) +; +;(define-public go-github-com-stretchr-objx-0.1.1 +; (package +; (name "go-github-com-stretchr-objx") +; (version "0.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/objx") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0iph0qmpyqg4kwv8jsx6a56a7hhqq8swrazv40ycxk9rzr0s8yls")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/objx")) +; (home-page "https://github.com/stretchr/objx") +; (synopsis "Objx") +; (description +; "Objx - Go package for dealing with maps, slices, JSON and other data.") +; (license license:expat))) +; +;(define-public go-github-com-stretchr-testify-1.2.2 +; (package +; (name "go-github-com-stretchr-testify") +; (version "1.2.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/testify") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0dlszlshlxbmmfxj5hlwgv3r22x0y1af45gn1vd198nvvs3pnvfs")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/testify")) +; (home-page "https://github.com/stretchr/testify") +; (synopsis "Testify - Thou Shalt Write Tests") +; (description +; "** We are working on testify v2 and would love to hear what you'd like to see in +;it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +;Package testify is a set of packages that provide many tools for testifying that +;your code will behave as you intend.") +; (license license:expat))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20180904163835-0709b304e793 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20180904163835-0709b304e793") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0i05s09y5pavmfh71fgih7syxg58x7a4krgd8am6d3mnahnmab5c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20180905080454-ebe1bf3edb33") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0rkspxyjxdmc9f4n09hgkwj8jjd8z5p8mc9z8vwqwqcwrqv4sg7c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-sirupsen-logrus-1.3.0 +; (package +; (name "go-github-com-sirupsen-logrus") +; (version "1.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/sirupsen/logrus") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ib7k8cwxn53dyxd3af1g81z018n77n6q64pm4miznirf7c2c9gk")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/sirupsen/logrus")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33" +; ,go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33) +; ("go-golang-org-x-crypto-0.0.0-20180904163835-0709b304e793" +; ,go-golang-org-x-crypto-0.0.0-20180904163835-0709b304e793) +; ("go-github-com-stretchr-testify-1.2.2" +; ,go-github-com-stretchr-testify-1.2.2) +; ("go-github-com-stretchr-objx-0.1.1" +; ,go-github-com-stretchr-objx-0.1.1) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.1" +; ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.1) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://github.com/sirupsen/logrus") +; (synopsis "Logrus") +; (description +; "Package logrus is a structured logger for Go, completely API compatible with the +;standard library logger.") +; (license license:expat))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20191011191535-87dc89f01550") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0z4i1m2yn3f31ci7wvcm2rxkx2yiv7a78mfzklncmsz2k97rlh2g")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" +; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) +; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" +; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20191026070338-33540a1f6037") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0fjcv0vzvi6za0b4xmnk3932pr9f9gczzf03y0kgq3ry9rqg169y")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-vbatts-go-mtree-0.5.0 +; (package +; (name "go-github-com-vbatts-go-mtree") +; (version "0.5.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/vbatts/go-mtree") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0p42aliw6ngp7zgg5y9mi18z1ka9n0vblbrp5flp93i7qfmc5y0k")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/vbatts/go-mtree")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037" +; ,go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037) +; ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" +; ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550) +; ("go-github-com-sirupsen-logrus-1.3.0" +; ,go-github-com-sirupsen-logrus-1.3.0) +; ("go-github-com-fatih-color-1.9.0" ,go-github-com-fatih-color-1.9.0) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://github.com/vbatts/go-mtree") +; (synopsis "go-mtree") +; (description +; "@code{mtree} is a filesystem hierarchy validation tooling and format. This is a +;library and simple cli tool for +;@url{https://www.freebsd.org/cgi/man.cgi?mtree%288%29=,mtree(8)} support.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190404232315-eb5bcb51f2a3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "17k4g8krxbl84gzcs275b7gsh66dzm15fdxivjnx9xz8q84l4kby")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190412213103-97732733099d +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190412213103-97732733099d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "118hkp01i4z1f5h6hcjm0ff2ngqhrzj1f7731n0kw8dr6hvbx0sw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20200604202706-70a84ac30bf9 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20200604202706-70a84ac30bf9") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0zr8np92g3qx7cdgaz4b2z5wnlym9lqyhrvs3xvv1fbsapd2z6i3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" +; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) +; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" +; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20200622214017-ed371f2e16b4 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20200622214017-ed371f2e16b4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "107wfy2fj6z5zps1v72j8drfrfvss1158drb0yqhz5awlbvgrpj7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-1.22.0 +; (package +; (name "go-google-golang-org-protobuf") +; (version "1.22.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0n7lc4m7kfvj01glc0gnjy0zsnsic7cxnbvlajy0h14cxbab87pj")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.4.0" +; ,go-github-com-golang-protobuf-1.4.0))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is +;a language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol +;buffer developer guide} for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.4.1 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.4.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0w7ks4vffnnkp0miwgc3chrsnmya45lzvpahb2wmw0jwhdp5kdx7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.22.0" +; ,go-google-golang-org-protobuf-1.22.0) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0))) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code +;github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-github-com-census-instrumentation-opencensus-proto-0.2.1 +; (package +; (name "go-github-com-census-instrumentation-opencensus-proto") +; (version "0.2.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/census-instrumentation/opencensus-proto") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19fcx3sc99i5dsklny6r073z5j20vlwn2xqm6di1q3b1xwchzqfj")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "github.com/census-instrumentation/opencensus-proto")) +; (home-page "https://github.com/census-instrumentation/opencensus-proto") +; (synopsis +; "OpenCensus Proto - Language Independent Interface Types For OpenCensus") +; (description +; "Census provides a framework to define and collect stats against metrics and to +;break those stats down across user-defined dimensions.") +; (license license:asl2.0))) +; +;(define-public go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4 +; (package +; (name "go-github-com-prometheus-client-model") +; (version "0.0.0-20190812154241-14fe0d1b01d4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/prometheus/client_model") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0zdmk6rbbx39cvfz0r59v2jg5sg9yd02b4pds5n5llgvivi99550")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/prometheus/client_model")) +; (propagated-inputs +; `(("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" +; ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0))) +; (home-page "https://github.com/prometheus/client_model") +; (synopsis "Deprecation note") +; (description +; "This repository used to contain the code that defined both the data model and +;the exposition format of Prometheus metrics.") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20190311212946-11955173bddd") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0hlkai67w167wiyivkzd1fgqrnyxkb94l2c6kr51jwcscizfyfn3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3 +; (package +; (name "go-golang-org-x-lint") +; (version "0.0.0-20190313153728-d0100b6bd8b3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/lint") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0b0amr9x4ji66iv9ayfx7zrfx52k1m5g66qfcxkgj80qrb1y2yn7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/lint")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" +; ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd))) +; (home-page "https://golang.org/x/lint") +; (synopsis "Installation") +; (description "Package lint contains a linter for Go source code.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sync-0.0.0-20190423024810-112230192c58 +; (package +; (name "go-golang-org-x-sync") +; (version "0.0.0-20190423024810-112230192c58") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sync") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "05i2k43j2d0llq768hg5pf3hb2yhfzp9la1w5wp0rsnnzblr0lfn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sync")) +; (home-page "https://golang.org/x/sync") +; (synopsis "Go Sync") +; (description +; "This repository provides Go concurrency primitives in addition to the ones +;provided by the language and \"sync\" and \"sync/atomic\" packages.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135 +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20190524140312-2c0ae7006135") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1lsi2ssxajclj3bciz2a41v1vjv768ja3v6wnbyhxy8xphwkp4fk")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" +; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-grpc-1.23.0 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.23.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1cn33r2gclmq2v1ndpf1n5bmhf2qs8mms7ii5cnl6f9ch4r2c4k3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" +; ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) +; ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" +; ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) +; ("go-google-golang-org-appengine-1.1.0" +; ,go-google-golang-org-appengine-1.1.0) +; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" +; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-github-com-google-go-cmp-0.2.0" +; ,go-github-com-google-go-cmp-0.2.0) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0) +; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-client9-misspell-0.3.4" +; ,go-github-com-client9-misspell-0.3.4) +; ("go-github-com-burntsushi-toml-0.3.1" +; ,go-github-com-burntsushi-toml-0.3.1) +; ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC.") +; (license license:asl2.0))) +; +;(define-public go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473 +; (package +; (name "go-github-com-envoyproxy-go-control-plane") +; (version "0.9.1-0.20191026205805-5f8ba28d4473") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/envoyproxy/go-control-plane") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1f1s764rd41vd9vgk3r14h1m6fz6pdvxj6fd83q58gxifbc4q5w4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) +; (propagated-inputs +; `(("go-google-golang-org-grpc-1.23.0" ,go-google-golang-org-grpc-1.23.0) +; ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" +; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) +; ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" +; ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2) +; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" +; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) +; ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" +; ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) +; (home-page "https://github.com/envoyproxy/go-control-plane") +; (synopsis "control-plane") +; (description +; "This repository contains a Go-based implementation of an API server that +;implements the discovery service APIs defined in +;@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") +; (license license:asl2.0))) +; +;(define-public go-github-com-envoyproxy-protoc-gen-validate-0.1.0 +; (package +; (name "go-github-com-envoyproxy-protoc-gen-validate") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/envoyproxy/protoc-gen-validate") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0kxd3wwh3xwqk0r684hsy281xq4y71cd11d4q2hspcjbnlbwh7cy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/envoyproxy/protoc-gen-validate")) +; (home-page "https://github.com/envoyproxy/protoc-gen-validate") +; (synopsis "protoc-gen-validate (PGV)") +; (description +; "PGV is a protoc plugin to generate polyglot message validators. While protocol +;buffers effectively guarantee the types of structured data, they cannot enforce +;semantic rules for values. This plugin adds support to protoc-generated code to +;validate such constraints.") +; (license license:asl2.0))) +; +;(define-public go-github-com-google-go-cmp-0.2.0 +; (package +; (name "go-github-com-google-go-cmp") +; (version "0.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/go-cmp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1fbv0x27k9sn8svafc0hjwsnckk864lv4yi7bvzrxvmd3d5hskds")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/go-cmp")) +; (home-page "https://github.com/google/go-cmp") +; (synopsis "Package for equality of Go values") +; (description +; "This package is intended to be a more powerful and safer alternative to +;@code{reflect.DeepEqual} for comparing whether two values are semantically +;equal.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20190308221718-c2843e01d9a2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20190311183353-d8887717615a +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190311183353-d8887717615a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1wfm6ngxjyj7v5a2dqib6lw8bb2rdnf1kl48diykxjrsddn0s163")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190215142949-d0b11bdaac8a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.3.2 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.3.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1k1wb4zr0qbwgpvz9q5ws9zhlal8hq7dmq62pwxxriksayl6hzym")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code +;github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4 +; (package +; (name "go-golang-org-x-exp") +; (version "0.0.0-20190121172915-509febef88a4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/exp") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "02isrh39z8znrp5znplzy0dip2gnrl3jm1355raliyvhnhg04j6q")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/exp")) +; (home-page "https://golang.org/x/exp") +; (synopsis "exp") +; (description +; "This subrepository holds experimental and deprecated (in the @code{old} +;directory) packages.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961 +; (package +; (name "go-golang-org-x-lint") +; (version "0.0.0-20190227174305-5b3e6a55c961") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/lint") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "04zp5vbds9nffmjg36wjpi5vg9zmf890yf78xxasai3ni637ivfw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/lint")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" +; ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c))) +; (home-page "https://golang.org/x/lint") +; (synopsis "Installation") +; (description "Package lint contains a linter for Go source code.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190213061140-3a22650c66bd") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "12q6fgdkc0742vcms67nzadgdwvi3rnb1gx3vwkljhrvlnwvz7wc")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f +; (package +; (name "go-golang-org-x-sync") +; (version "0.0.0-20181108010431-42b317875d0f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sync") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0mrjhk7al7yyh76x9flvxy4jm5jyqh2fxbxagpaazxn1xdgkaif3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sync")) +; (home-page "https://golang.org/x/sync") +; (synopsis "Go Sync") +; (description +; "This repository provides Go concurrency primitives in addition to the ones +;provided by the language and \"sync\" and \"sync/atomic\" packages.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20180724234803-3673e40ba225") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0vx7mz18p480p7fh0w5jv6mfdbsswrlac1sz4i705q7q7ygz59lm")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-appengine-1.4.0 +; (package +; (name "go-google-golang-org-appengine") +; (version "1.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/appengine") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "06zl7w4sxgdq2pl94wy9ncii6h0z3szl4xpqds0sv3b3wbdlhbnn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/appengine")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225" +; ,go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0))) +; (home-page "https://google.golang.org/appengine") +; (synopsis "Go App Engine packages") +; (description +; "Package appengine provides basic functionality for Google App Engine.") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20190226205152-f727befe758c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0rpcqw6z13qd33rbasg32zb0gdhgh5lzjla63r6g651zf6hpsak0")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-google-golang-org-appengine-1.4.0" +; ,go-google-golang-org-appengine-1.4.0) +; ("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" +; ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) +; ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" +; ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-cloud-google-com-go-0.26.0 +; (package +; (name "go-cloud-google-com-go") +; (version "0.26.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/google-cloud-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "149v3ci17g6wd2pm18mzcncq5qpl9hwdjnz3rlbn5rfidyn46la1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "cloud.google.com/go")) +; (home-page "https://cloud.google.com/go") +; (synopsis "Google Cloud Client Libraries for Go") +; (description +; "Package cloud is the root of the packages used to access Google Cloud Services. +;See +;@url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} +;for a full list of sub-packages.") +; (license license:asl2.0))) +; +;(define-public go-github-com-burntsushi-toml-0.3.1 +; (package +; (name "go-github-com-burntsushi-toml") +; (version "0.3.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/BurntSushi/toml") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1fjdwwfzyzllgiwydknf1pwjvy49qxfsczqx5gz3y0izs7as99j6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/BurntSushi/toml")) +; (home-page "https://github.com/BurntSushi/toml") +; (synopsis "Testing") +; (description +; "Package toml implements decoding and encoding of TOML files.") +; (license license:expat))) +; +;(define-public go-github-com-client9-misspell-0.3.4 +; (package +; (name "go-github-com-client9-misspell") +; (version "0.3.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/client9/misspell") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1vwf33wsc4la25zk9nylpbp9px3svlmldkm0bha4hp56jws4q9cs")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/client9/misspell")) +; (home-page "https://github.com/client9/misspell") +; (synopsis "Install") +; (description +; "Package misspell corrects commonly misspelled English words in source files.") +; (license license:expat))) +; +;(define-public go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b +; (package +; (name "go-github-com-golang-glog") +; (version "0.0.0-20160126235308-23def4e6c14b") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/glog") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0jb2834rw5sykfr937fxi8hxi2zy80sj2bdn9b3jb4b26ksqng30")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/glog")) +; (home-page "https://github.com/golang/glog") +; (synopsis "glog") +; (description +; "Package glog implements logging analogous to the Google-internal C++ +;INFO/ERROR/V setup. It provides functions Info, Warning, Error, Fatal, plus +;formatting variants such as Infof. It also provides V-style logging controlled +;by the -v and -vmodule=file=2 flags.") +; (license license:asl2.0))) +; +;(define-public go-github-com-golang-mock-1.1.1 +; (package +; (name "go-github-com-golang-mock") +; (version "1.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/mock") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ap8wb6pdl6ccmdb43advjll2ly4sz26wsc3axw0hbrjrybybzgy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/mock")) +; (home-page "https://github.com/golang/mock") +; (synopsis "gomock") +; (description +; "gomock is a mocking framework for the @url{http://golang.org/,Go programming +;language}. It integrates well with Go's built-in @code{testing} package, but +;can be used in other contexts too.") +; (license license:asl2.0))) +; +;(define-public go-github-com-golang-protobuf-1.2.0 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0kf4b59rcbb1cchfny2dm9jyznp8ri2hsb14n8iak1q8986xa0ab")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code +;github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3 +; (package +; (name "go-golang-org-x-lint") +; (version "0.0.0-20181026193005-c67002cb31c3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/lint") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0gymbggskjmphqxqcx4s0vnlcz7mygbix0vhwcwv5r67c0bf6765")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/lint")) +; (home-page "https://golang.org/x/lint") +; (synopsis "Installation") +; (description "Package lint contains a linter for Go source code.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20180826012351-8a410e7b638d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0hp0l8f6fir5gmgrjq0mhh5ikc0rlrm72774228800kfwqjrxxny")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be +; (package +; (name "go-golang-org-x-oauth2") +; (version "0.0.0-20180821212333-d2e6202438be") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/oauth2") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0wbn75fd10485nb93bm4kqldqifdim5xqy4v7r5sdvimvf3fyhn7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/oauth2")) +; (home-page "https://golang.org/x/oauth2") +; (synopsis "OAuth2 for Go") +; (description +; "Package oauth2 provides support for making OAuth2 authorized and authenticated +;HTTP requests, as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC +;6749}. It can additionally grant authorization with Bearer JWT.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f +; (package +; (name "go-golang-org-x-sync") +; (version "0.0.0-20180314180146-1d60e4601c6f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sync") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "046jlanz2lkxq1r57x9bl6s4cvfqaic6p2xybsj8mq1120jv4rs6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sync")) +; (home-page "https://golang.org/x/sync") +; (synopsis "Go Sync") +; (description +; "This repository provides Go concurrency primitives in addition to the ones +;provided by the language and \"sync\" and \"sync/atomic\" packages.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20180830151530-49385e6e1522") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0spbldahns09fdxkxflb1x24f8k2awdlnr6k5i7ci4fqd19r1dv4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-text-0.3.0 +; (package +; (name "go-golang-org-x-text") +; (version "0.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/text") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/text")) +; (home-page "https://golang.org/x/text") +; (synopsis "Go Text") +; (description +; "text is a repository of text-related packages related to internationalization +;(i18n) and localization (l10n), such as character encodings, text +;transformations, and locale-specific text handling.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20190114222345-bf090417da8b") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1n3xp56k4k3lj06rx7587wr5gnwg0148nvwx6ch0g7ar02hh94hw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-appengine-1.1.0 +; (package +; (name "go-google-golang-org-appengine") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/appengine") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1pz202zszg8f35dk5pfhwgcdi3r6dx1l4yk6x6ly7nb4j45zi96x")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/appengine")) +; (home-page "https://google.golang.org/appengine") +; (synopsis "Go App Engine packages") +; (description +; "Package appengine provides basic functionality for Google App Engine.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8 +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20180817151627-c66870c02cf8") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0siq7sv68556ygqi2d2zmvx8l1xjqdc0fylqzci5h1mq2i14bayn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for +;interacting with Google's gRPC APIs.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-grpc-1.19.0 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.19.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1znqwpj7ix3dpzx4zch0q70sdl3z5lvbb7v3q4i8sf8kas3yv71v")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" +; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) +; ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" +; ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) +; ("go-google-golang-org-appengine-1.1.0" +; ,go-google-golang-org-appengine-1.1.0) +; ("go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b" +; ,go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b) +; ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522" +; ,go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522) +; ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" +; ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d" +; ,go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d) +; ("go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3" +; ,go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3) +; ("go-github-com-golang-protobuf-1.2.0" +; ,go-github-com-golang-protobuf-1.2.0) +; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-client9-misspell-0.3.4" +; ,go-github-com-client9-misspell-0.3.4) +; ("go-github-com-burntsushi-toml-0.3.1" +; ,go-github-com-burntsushi-toml-0.3.1) +; ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC.") +; (license license:asl2.0))) +; +;(define-public go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099 +; (package +; (name "go-honnef-co-go-tools") +; (version "0.0.0-20190102054323-c2f93a96b099") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/dominikh/go-tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "07lg29aiap80ca9f201jzng9vjr168cv3qmvjmbd7v5pmww9kmr8")))) +; (build-system go-build-system) +; (arguments '(#:import-path "honnef.co/go/tools")) +; (home-page "https://honnef.co/go/tools") +; (synopsis "Documentation") +; (description +; "Staticcheck is a state of the art linter for the . Using static analysis, it +;finds bugs and performance issues, offers simplifications, and enforces style +;rules.") +; (license license:expat))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55 +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20190819201941-24fa4b261c55") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "109zhaqlfd8zkbr1hk6zqbs6vcxfrk64scjwh2nswph05gr0m84d")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" +; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) +; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) +; ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" +; ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) +; ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" +; ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) +; ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" +; ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for +;interacting with Google's gRPC APIs.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-grpc-1.27.0 +; (package +; (name "go-google-golang-org-grpc") +; (version "1.27.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/grpc/grpc-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ijrmgrxyabfn51nm3p9l81iaasq5fg237wnr6mdc4dzsfcg8kd7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/grpc")) +; (propagated-inputs +; `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" +; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" +; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) +; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" +; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) +; ("go-github-com-google-go-cmp-0.2.0" +; ,go-github-com-google-go-cmp-0.2.0) +; ("go-github-com-golang-protobuf-1.3.2" +; ,go-github-com-golang-protobuf-1.3.2) +; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) +; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" +; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) +; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" +; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) +; ("go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473" +; ,go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473))) +; (home-page "https://google.golang.org/grpc") +; (synopsis "gRPC-Go") +; (description "Package grpc implements an RPC system called gRPC.") +; (license license:asl2.0))) +; +;(define-public go-github-com-google-go-cmp-0.3.0 +; (package +; (name "go-github-com-google-go-cmp") +; (version "0.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/go-cmp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1hyxx3434zshl2m9ja78gwlkg1rx9yl6diqa7dnjb31xz5x4gbjj")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/go-cmp")) +; (home-page "https://github.com/google/go-cmp") +; (synopsis "Package for equality of Go values") +; (description +; "This package is intended to be a more powerful and safer alternative to +;@code{reflect.DeepEqual} for comparing whether two values are semantically +;equal.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd +; (package +; (name "go-google-golang-org-protobuf") +; (version "0.0.0-20200109180630-ec00e32a8dfd") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0w6lp9w2avxcpxwzzhspr209ifhyjagvs23k0vykfdqahl1aplrh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.3.0" +; ,go-github-com-google-go-cmp-0.3.0))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is +;a language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol +;buffer developer guide} for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.4.0-rc.1 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.4.0-rc.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "186rirvbfgv6hrxp27ipx2cdpv19qifdd20biqfdm01wiyclqimn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd" +; ,go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd) +; ("go-github-com-google-go-cmp-0.3.1" +; ,go-github-com-google-go-cmp-0.3.1))) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code +;github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-github-com-google-go-cmp-0.3.1 +; (package +; (name "go-github-com-google-go-cmp") +; (version "0.3.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/go-cmp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1caw49i0plkjxir7kdf5qhwls3krqwfmi7g4h392rdfwi3kfahx1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/go-cmp")) +; (home-page "https://github.com/google/go-cmp") +; (synopsis "Package for equality of Go values") +; (description +; "This package is intended to be a more powerful and safer alternative to +;@code{reflect.DeepEqual} for comparing whether two values are semantically +;equal.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64 +; (package +; (name "go-google-golang-org-protobuf") +; (version "0.0.0-20200221191635-4d8936d0db64") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0563bsvdjj6k0sgwqd5yzrgfiax7sp3lcwh608gync5sv9fx39cy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.3.1" +; ,go-github-com-google-go-cmp-0.3.1) +; ("go-github-com-golang-protobuf-1.4.0-rc.1" +; ,go-github-com-golang-protobuf-1.4.0-rc.1))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is +;a language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol +;buffer developer guide} for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.4.0-rc.1.0.20200221234624-67d41d38c208") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ykxhg3zixmw25pd435f8h16wnz1g00jpcmmg3xl030kksgqgpp6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64" +; ,go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0))) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code +;github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60 +; (package +; (name "go-google-golang-org-protobuf") +; (version "0.0.0-20200228230310-ab0ca4ff8a60") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1rinspcznfp85yz4vrlf4h38hr576virgv8lcs22bsylqga808sd")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208" +; ,go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is +;a language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol +;buffer developer guide} for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.4.0-rc.2 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.4.0-rc.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1hd43hjv5zl6bjbmhm5phx74bw4xajsi73m5zky2k56za4mpgzzc")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60" +; ,go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0))) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code +;github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967 +; (package +; (name "go-google-golang-org-protobuf") +; (version "1.20.1-0.20200309200217-e05f789c0967") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "17wmy89hnmpkwc63rfcjp50q15s9f1rhmczg06c3z9yy41zk82w9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.4.0-rc.2" +; ,go-github-com-golang-protobuf-1.4.0-rc.2))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is +;a language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol +;buffer developer guide} for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.4.0-rc.4.0.20200313231945-b860323f09d0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1zj6cwshx0l5n9cn2cpbikzzb79px5dmkpc4p19zy1iif5r5p0z0")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967" +; ,go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0))) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code +;github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-1.21.0 +; (package +; (name "go-google-golang-org-protobuf") +; (version "1.21.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "12bwln8z1lf9105gdp6ip0rx741i4yfz1520gxnp8861lh9wcl63")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0" +; ,go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is +;a language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol +;buffer developer guide} for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-github-com-golang-protobuf-1.4.0 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1fjvl5n77abxz5qsd4mgyvjq19x43c5bfvmq62mq3m5plx6zksc8")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-protobuf-1.21.0" +; ,go-google-golang-org-protobuf-1.21.0) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0))) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code +;github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543 +; (package +; (name "go-golang-org-x-xerrors") +; (version "0.0.0-20191204190536-9bdfabe68543") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/xerrors") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1yjfi1bk9xb81lqn85nnm13zz725wazvrx3b50hx19qmwg7a4b0c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/xerrors")) +; (home-page "https://golang.org/x/xerrors") +; (synopsis #f) +; (description "Package xerrors implements functions to manipulate errors.") +; (license license:bsd-3))) +; +;(define-public go-github-com-google-go-cmp-0.4.0 +; (package +; (name "go-github-com-google-go-cmp") +; (version "0.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/go-cmp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1x5pvl3fb5sbyng7i34431xycnhmx8xx94gq2n19g6p0vz68z2v2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/go-cmp")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" +; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) +; (home-page "https://github.com/google/go-cmp") +; (synopsis "Package for equality of Go values") +; (description +; "This package is intended to be a more powerful and safer alternative to +;@code{reflect.DeepEqual} for comparing whether two values are semantically +;equal.") +; (license license:bsd-3))) +; +;(define-public go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc +; (package +; (name "go-google-golang-org-protobuf") +; (version "1.23.1-0.20200526195155-81db48ad09cc") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "02cpr8rqr5wmpj2fqb32mzilsdnxkh52g1jz95a3ck3gzffc7hh1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.4.0" +; ,go-github-com-golang-protobuf-1.4.0))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is +;a language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol +;buffer developer guide} for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc +; (package +; (name "go-honnef-co-go-tools") +; (version "0.0.0-20190523083050-ea95bdfd59fc") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/dominikh/go-tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1763nw7pwpzkvzfnm63dgzcgbq9hwmq5l1nffchnhh77vgkaq4ic")))) +; (build-system go-build-system) +; (arguments '(#:import-path "honnef.co/go/tools")) +; (home-page "https://honnef.co/go/tools") +; (synopsis "Documentation") +; (description +; "Staticcheck is a state of the art linter for the . Using static analysis, it +;finds bugs and performance issues, offers simplifications, and enforces style +;rules.") +; (license license:expat))) +; +;(define-public go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013 +; (package +; (name "go-google-golang-org-genproto") +; (version "0.0.0-20200526211855-cb27e3aa2013") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/googleapis/go-genproto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ml73ghqcwbz7ipfk8fnxb5indcml49b5p7vp1fsyny0abyyrmxf")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/genproto")) +; (propagated-inputs +; `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" +; ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) +; ("go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc" +; ,go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc) +; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) +; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" +; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) +; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" +; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) +; ("go-github-com-golang-protobuf-1.4.1" +; ,go-github-com-golang-protobuf-1.4.1))) +; (home-page "https://google.golang.org/genproto") +; (synopsis "Go generated proto packages") +; (description +; "This repository contains the generated Go packages for common protocol buffer +;types, and the generated @url{http://grpc.io,gRPC} code necessary for +;interacting with Google's gRPC APIs.") +; (license license:asl2.0))) +; +;(define-public go-google-golang-org-protobuf-1.24.0 +; (package +; (name "go-google-golang-org-protobuf") +; (version "1.24.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0x3qyn3rizbs671gs7f8v50rmiwf9h7kbaradpivw9718mhbg1gn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "google.golang.org/protobuf")) +; (propagated-inputs +; `(("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" +; ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) +; ("go-github-com-google-go-cmp-0.4.0" +; ,go-github-com-google-go-cmp-0.4.0) +; ("go-github-com-golang-protobuf-1.4.1" +; ,go-github-com-golang-protobuf-1.4.1))) +; (home-page "https://google.golang.org/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This project hosts the Go implementation for +;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is +;a language-neutral, platform-neutral, extensible mechanism for serializing +;structured data. The protocol buffer language is a language for specifying the +;schema for structured data. This schema is compiled into language specific +;bindings. This project provides both a tool to generate Go code for the +;protocol buffer language, and also the runtime implementation to handle +;serialization of messages in Go. See the +;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol +;buffer developer guide} for more information about protocol buffers themselves.") +; (license license:bsd-3))) +; +;(define-public go-gopkg-in-check-v1-1.0.0-20200227125254-8fa46927fb4f +; (package +; (name "go-gopkg-in-check-v1") +; (version "1.0.0-20200227125254-8fa46927fb4f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/check.v1") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0fx03x0nx9mjwnqphnx852q9p76qg7cazrachvgr1bj357lplrcw")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) +; (home-page "https://gopkg.in/check.v1") +; (synopsis "Instructions") +; (description +; "Package check is a rich testing extension for Go's testing package.") +; (license license:bsd-2))) +; +;(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 +; (package +; (name "go-gopkg-in-check-v1") +; (version "0.0.0-20161208181325-20d25e280405") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/check.v1") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) +; (home-page "https://gopkg.in/check.v1") +; (synopsis "Instructions") +; (description +; "Package check is a rich testing extension for Go's testing package.") +; (license license:bsd-2))) +; +;(define-public go-gopkg-in-yaml-v3-3.0.0-20200615113413-eeeca48fe776 +; (package +; (name "go-gopkg-in-yaml-v3") +; (version "3.0.0-20200615113413-eeeca48fe776") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/yaml.v3") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "06m3kx5mp6vwfcpjl04c39r1dpbakg2la9ql1jw3zvpi6jk7iwbk")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" +; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) +; (home-page "https://gopkg.in/yaml.v3") +; (synopsis "YAML support for the Go language") +; (description "Package yaml implements YAML support for the Go language.") +; (license license:expat))) +; +;(define-public go-github-com-opencontainers-umoci-0.4.7 +; (package +; (name "go-github-com-opencontainers-umoci") +; (version "0.4.7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/umoci") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0in8kyi4jprvbm3zsl3risbjj8b0ma62yl3rq8rcvcgypx0mn7d4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/umoci")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v3-3.0.0-20200615113413-eeeca48fe776" +; ,go-gopkg-in-yaml-v3-3.0.0-20200615113413-eeeca48fe776) +; ("go-gopkg-in-check-v1-1.0.0-20200227125254-8fa46927fb4f" +; ,go-gopkg-in-check-v1-1.0.0-20200227125254-8fa46927fb4f) +; ("go-google-golang-org-protobuf-1.24.0" +; ,go-google-golang-org-protobuf-1.24.0) +; ("go-golang-org-x-sys-0.0.0-20200622214017-ed371f2e16b4" +; ,go-golang-org-x-sys-0.0.0-20200622214017-ed371f2e16b4) +; ("go-golang-org-x-crypto-0.0.0-20200604202706-70a84ac30bf9" +; ,go-golang-org-x-crypto-0.0.0-20200604202706-70a84ac30bf9) +; ("go-github-com-vbatts-go-mtree-0.5.0" +; ,go-github-com-vbatts-go-mtree-0.5.0) +; ("go-github-com-urfave-cli-1.22.4" ,go-github-com-urfave-cli-1.22.4) +; ("go-github-com-tj-assert-0.0.3" ,go-github-com-tj-assert-0.0.3) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-sirupsen-logrus-1.6.0" +; ,go-github-com-sirupsen-logrus-1.6.0) +; ("go-github-com-rootless-containers-proto-0.1.0" +; ,go-github-com-rootless-containers-proto-0.1.0) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-runtime-spec-1.0.2" +; ,go-github-com-opencontainers-runtime-spec-1.0.2) +; ("go-github-com-opencontainers-runc-1.0.0-rc90" +; ,go-github-com-opencontainers-runc-1.0.0-rc90) +; ("go-github-com-opencontainers-image-spec-1.0.1" +; ,go-github-com-opencontainers-image-spec-1.0.1) +; ("go-github-com-opencontainers-go-digest-1.0.0" +; ,go-github-com-opencontainers-go-digest-1.0.0) +; ("go-github-com-niemeyer-pretty-0.0.0-20200227124842-a10e7caefd8e" +; ,go-github-com-niemeyer-pretty-0.0.0-20200227124842-a10e7caefd8e) +; ("go-github-com-mohae-deepcopy-0.0.0-20170929034955-c48cc78d4826" +; ,go-github-com-mohae-deepcopy-0.0.0-20170929034955-c48cc78d4826) +; ("go-github-com-mattn-go-colorable-0.1.6" +; ,go-github-com-mattn-go-colorable-0.1.6) +; ("go-github-com-kr-text-0.2.0" ,go-github-com-kr-text-0.2.0) +; ("go-github-com-klauspost-pgzip-1.2.4" +; ,go-github-com-klauspost-pgzip-1.2.4) +; ("go-github-com-klauspost-compress-1.11.3" +; ,go-github-com-klauspost-compress-1.11.3) +; ("go-github-com-google-go-cmp-0.5.0" +; ,go-github-com-google-go-cmp-0.5.0) +; ("go-github-com-golang-protobuf-1.4.2" +; ,go-github-com-golang-protobuf-1.4.2) +; ("go-github-com-docker-go-units-0.4.0" +; ,go-github-com-docker-go-units-0.4.0) +; ("go-github-com-cyphar-filepath-securejoin-0.2.2" +; ,go-github-com-cyphar-filepath-securejoin-0.2.2) +; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" +; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) +; ("go-github-com-apex-log-1.4.0" ,go-github-com-apex-log-1.4.0) +; ("go-github-com-adamkorcz-go-fuzz-headers-0.0.0-20210312213058-32f4d319f0d2" +; ,go-github-com-adamkorcz-go-fuzz-headers-0.0.0-20210312213058-32f4d319f0d2))) +; (home-page "https://github.com/opencontainers/umoci") +; (synopsis "Install") +; (description +; "@strong{u}moci @strong{m}odifies @strong{O}pen @strong{C}ontainer +;@strong{i}mages.") +; (license license:asl2.0))) +; +;(define-public go-github-com-pelletier-go-toml-1.9.4 +; (package +; (name "go-github-com-pelletier-go-toml") +; (version "1.9.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/pelletier/go-toml") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0f2d9m19dadl18i2baf57xygvn9vprm6wb8chvpx8kipx94nchyl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/pelletier/go-toml")) +; (home-page "https://github.com/pelletier/go-toml") +; (synopsis "go-toml") +; (description "Package toml is a TOML parser and manipulation library.") +; (license license:expat))) +; +;(define-public go-github-com-pkg-errors-0.9.1 +; (package +; (name "go-github-com-pkg-errors") +; (version "0.9.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/pkg/errors") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1761pybhc2kqr6v5fm8faj08x9bql8427yqg6vnfv6nhrasx1mwq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/pkg/errors")) +; (home-page "https://github.com/pkg/errors") +; (synopsis "errors") +; (description "Package errors provides simple error handling primitives.") +; (license license:bsd-2))) +; +;(define-public go-github-com-blang-semver-3.5.1+incompatible +; (package +; (name "go-github-com-blang-semver") +; (version "3.5.1+incompatible") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/blang/semver") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "13ws259bwcibkclbr82ilhk6zadm63kxklxhk12wayklj8ghhsmy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/blang/semver")) +; (home-page "https://github.com/blang/semver") +; (synopsis "semver for golang") +; (description +; "semver is a @url{http://semver.org/,Semantic Versioning} library written in +;golang. It fully covers spec version @code{2.0.0}.") +; (license license:expat))) +; +;(define-public go-github-com-hashicorp-errwrap-1.0.0 +; (package +; (name "go-github-com-hashicorp-errwrap") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/errwrap") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0slfb6w3b61xz04r32bi0a1bygc82rjzhqkxj2si2074wynqnr1c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hashicorp/errwrap")) +; (home-page "https://github.com/hashicorp/errwrap") +; (synopsis "errwrap") +; (description +; "Package errwrap implements methods to formalize error wrapping in Go.") +; (license license:mpl2.0))) +; +;(define-public go-github-com-hashicorp-go-multierror-1.1.0 +; (package +; (name "go-github-com-hashicorp-go-multierror") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/hashicorp/go-multierror") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0pmjpzpra7lqgikxzwlcp5mh01b46j2vhyxkixz0v86fr9kf0k3k")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/hashicorp/go-multierror")) +; (propagated-inputs +; `(("go-github-com-hashicorp-errwrap-1.0.0" +; ,go-github-com-hashicorp-errwrap-1.0.0))) +; (home-page "https://github.com/hashicorp/go-multierror") +; (synopsis "go-multierror") +; (description +; "@code{go-multierror} is a package for Go that provides a mechanism for +;representing a list of @code{error} values as a single @code{error}.") +; (license license:mpl2.0))) +; +;(define-public go-github-com-opencontainers-runtime-spec-1.0.3-0.20200710190001-3e4195d92445 +; (package +; (name "go-github-com-opencontainers-runtime-spec") +; (version "1.0.3-0.20200710190001-3e4195d92445") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/runtime-spec") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "04kfdbap80r89rn7f7xcmkyy0qbpd18dgk65bzapy0x0calpgrlk")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) +; (home-page "https://github.com/opencontainers/runtime-spec") +; (synopsis "Open Container Initiative Runtime Specification") +; (description +; "The @url{https://www.opencontainers.org,Open Container Initiative} develops +;specifications for standards on Operating System process and application +;containers.") +; (license license:asl2.0))) +; +;(define-public go-github-com-opencontainers-runtime-tools-0.9.0 +; (package +; (name "go-github-com-opencontainers-runtime-tools") +; (version "0.9.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/runtime-tools") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1pli3jb1rq9lkzzz83f7jw788vijg7x6ly3vgasdlwri7kiph1sa")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/runtime-tools")) +; (home-page "https://github.com/opencontainers/runtime-tools") +; (synopsis "oci-runtime-tool") +; (description +; "oci-runtime-tool is a collection of tools for working with the +;@url{https://github.com/opencontainers/runtime-spec,OCI runtime specification}. +;To build from source code, runtime-tools requires Go 1.10.x or above.") +; (license license:asl2.0))) +; +;(define-public go-github-com-pkg-errors-0.9.1 +; (package +; (name "go-github-com-pkg-errors") +; (version "0.9.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/pkg/errors") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1761pybhc2kqr6v5fm8faj08x9bql8427yqg6vnfv6nhrasx1mwq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/pkg/errors")) +; (home-page "https://github.com/pkg/errors") +; (synopsis "errors") +; (description "Package errors provides simple error handling primitives.") +; (license license:bsd-2))) +; +;(define-public go-github-com-willf-bitset-1.1.11-0.20200630133818-d5bec3311243 +; (package +; (name "go-github-com-willf-bitset") +; (version "1.1.11-0.20200630133818-d5bec3311243") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/bits-and-blooms/bitset") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "05nyd0vhp2h9hbqlv2s9l2py6mr8hpz2zyfj09an1q7wd8vph4ja")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/willf/bitset")) +; (home-page "https://github.com/willf/bitset") +; (synopsis "bitset") +; (description +; "Package bitset implements bitsets, a mapping between non-negative integers and +;boolean values. It should be more efficient than map[uint] bool.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20191115151921-52ab43148777") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1kakxbqrb1w2vwg7r1896z68qcx2lfvimsl8cs2niiipbgpi6imx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-opencontainers-selinux-1.6.0 +; (package +; (name "go-github-com-opencontainers-selinux") +; (version "1.6.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/selinux") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ja41zfgrkhk5khixjnxpi1b85xfcxlkhq2q9b7ma6xjfdhg8bq2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/selinux")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777" +; ,go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777) +; ("go-github-com-willf-bitset-1.1.11-0.20200630133818-d5bec3311243" +; ,go-github-com-willf-bitset-1.1.11-0.20200630133818-d5bec3311243) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) +; (home-page "https://github.com/opencontainers/selinux") +; (synopsis "selinux") +; (description "Common SELinux package used across the container ecosystem.") +; (license license:asl2.0))) +; +;(define-public go-github-com-seccomp-libseccomp-golang-0.9.1 +; (package +; (name "go-github-com-seccomp-libseccomp-golang") +; (version "0.9.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/seccomp/libseccomp-golang") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "022c8prvxz0shrifams7lq4xidvkcqg9xi87wjjcpmbikqi72cna")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/seccomp/libseccomp-golang")) +; (home-page "https://github.com/seccomp/libseccomp-golang") +; (synopsis #f) +; (description +; "Package seccomp provides bindings for libseccomp, a library wrapping the Linux +;seccomp syscall. Seccomp enables an application to restrict system call use for +;itself and its children.") +; (license license:bsd-2))) +; +;(define-public go-github-com-davecgh-go-spew-1.1.1 +; (package +; (name "go-github-com-davecgh-go-spew") +; (version "1.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/davecgh/go-spew") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/davecgh/go-spew")) +; (home-page "https://github.com/davecgh/go-spew") +; (synopsis "go-spew") +; (description +; "Go-spew implements a deep pretty printer for Go data structures to aid in +;debugging. A comprehensive suite of tests with 100% test coverage is provided +;to ensure proper functionality. See @code{test_coverage.txt} for the gocov +;coverage report. Go-spew is licensed under the liberal ISC license, so it may +;be used in open source or commercial projects.") +; (license license:isc))) +; +;(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.3 +; (package +; (name "go-github-com-konsorten-go-windows-terminal-sequences") +; (version "1.0.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/konsorten/go-windows-terminal-sequences") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1yrsd4s8vhjnxhwbigirymz89dn6qfjnhn28i33vvvdgf96j6ypl")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) +; (home-page "https://github.com/konsorten/go-windows-terminal-sequences") +; (synopsis "Windows Terminal Sequences") +; (description +; "This library allow for enabling Windows terminal color support for Go.") +; (license license:expat))) +; +;(define-public go-github-com-stretchr-testify-1.2.2 +; (package +; (name "go-github-com-stretchr-testify") +; (version "1.2.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/testify") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0dlszlshlxbmmfxj5hlwgv3r22x0y1af45gn1vd198nvvs3pnvfs")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/testify")) +; (home-page "https://github.com/stretchr/testify") +; (synopsis "Testify - Thou Shalt Write Tests") +; (description +; "** We are working on testify v2 and would love to hear what you'd like to see in +;it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +;Package testify is a set of packages that provide many tools for testifying that +;your code will behave as you intend.") +; (license license:expat))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190422165155-953cdadca894") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0gkha4whk8xkcv3isigbs250akag99isxnd3v9xmy0kl3g88hxy1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-sirupsen-logrus-1.6.0 +; (package +; (name "go-github-com-sirupsen-logrus") +; (version "1.6.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/sirupsen/logrus") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1zf9is1yxxnna0d1pyag2m9ziy3l27zb2j92p9msm1gx5jjrvzzj")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/sirupsen/logrus")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894" +; ,go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894) +; ("go-github-com-stretchr-testify-1.2.2" +; ,go-github-com-stretchr-testify-1.2.2) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.3" +; ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.3) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://github.com/sirupsen/logrus") +; (synopsis "Logrus") +; (description +; "Package logrus is a structured logger for Go, completely API compatible with the +;standard library logger.") +; (license license:expat))) +; +;(define-public go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2 +; (package +; (name "go-github-com-syndtr-gocapability") +; (version "0.0.0-20180916011248-d98352740cb2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/syndtr/gocapability") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "065y16562ynixxzj7iys4f4spb7knilbj3h833qlhds381j8hn93")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/syndtr/gocapability")) +; (home-page "https://github.com/syndtr/gocapability") +; (synopsis #f) +; (description #f) +; (license license:bsd-2))) +; +;(define-public go-github-com-davecgh-go-spew-1.1.0 +; (package +; (name "go-github-com-davecgh-go-spew") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/davecgh/go-spew") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/davecgh/go-spew")) +; (home-page "https://github.com/davecgh/go-spew") +; (synopsis "go-spew") +; (description +; "Go-spew implements a deep pretty printer for Go data structures to aid in +;debugging. A comprehensive suite of tests with 100% test coverage is provided +;to ensure proper functionality. See @code{test_coverage.txt} for the gocov +;coverage report. Go-spew is licensed under the liberal ISC license, so it may +;be used in open source or commercial projects.") +; (license license:isc))) +; +;(define-public go-github-com-pmezard-go-difflib-1.0.0 +; (package +; (name "go-github-com-pmezard-go-difflib") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/pmezard/go-difflib") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/pmezard/go-difflib")) +; (home-page "https://github.com/pmezard/go-difflib") +; (synopsis "go-difflib") +; (description +; "Go-difflib is a partial port of python 3 difflib package. Its main goal was to +;make unified and context diff available in pure Go, mostly for testing purposes.") +; (license license:bsd-3))) +; +;(define-public go-github-com-stretchr-objx-0.1.0 +; (package +; (name "go-github-com-stretchr-objx") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/objx") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/objx")) +; (home-page "https://github.com/stretchr/objx") +; (synopsis "Objx") +; (description +; "Objx - Go package for dealing with maps, slices, JSON and other data.") +; (license license:expat))) +; +;(define-public go-github-com-stretchr-testify-1.3.0 +; (package +; (name "go-github-com-stretchr-testify") +; (version "1.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/testify") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0wjchp2c8xbgcbbq32w3kvblk6q6yn533g78nxl6iskq6y95lxsy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/testify")) +; (propagated-inputs +; `(("go-github-com-stretchr-objx-0.1.0" +; ,go-github-com-stretchr-objx-0.1.0) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.0" +; ,go-github-com-davecgh-go-spew-1.1.0))) +; (home-page "https://github.com/stretchr/testify") +; (synopsis "Testify - Thou Shalt Write Tests") +; (description +; "** We are working on testify v2 and would love to hear what you'd like to see in +;it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +;Package testify is a set of packages that provide many tools for testifying that +;your code will behave as you intend.") +; (license license:expat))) +; +;(define-public go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f +; (package +; (name "go-github-com-xeipuuv-gojsonpointer") +; (version "0.0.0-20180127040702-4e3ac2762d5f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/xeipuuv/gojsonpointer") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "13y6iq2nzf9z4ls66bfgnnamj2m3438absmbpqry64bpwjfbsi9q")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/xeipuuv/gojsonpointer")) +; (home-page "https://github.com/xeipuuv/gojsonpointer") +; (synopsis "gojsonpointer") +; (description "An implementation of JSON Pointer - Go language") +; (license license:asl2.0))) +; +;(define-public go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415 +; (package +; (name "go-github-com-xeipuuv-gojsonreference") +; (version "0.0.0-20180127040603-bd5ef7bd5415") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/xeipuuv/gojsonreference") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1xby79padc7bmyb8rfbad8wfnfdzpnh51b1n8c0kibch0kwc1db5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/xeipuuv/gojsonreference")) +; (home-page "https://github.com/xeipuuv/gojsonreference") +; (synopsis "gojsonreference") +; (description "An implementation of JSON Reference - Go language") +; (license license:asl2.0))) +; +;(define-public go-github-com-xeipuuv-gojsonschema-1.2.0 +; (package +; (name "go-github-com-xeipuuv-gojsonschema") +; (version "1.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/xeipuuv/gojsonschema") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1mqiq0r8qw4qlfp3ls8073r6514rmzwrmdn4j33rppk3zh942i6l")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/xeipuuv/gojsonschema")) +; (propagated-inputs +; `(("go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415" +; ,go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415) +; ("go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f" +; ,go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f) +; ("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0))) +; (home-page "https://github.com/xeipuuv/gojsonschema") +; (synopsis "gojsonschema") +; (description +; "An implementation of JSON Schema for the Go programming language. Supports +;draft-04, draft-06 and draft-07.") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-sys-0.0.0-20200720211630-cb9d2d5c5666 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20200720211630-cb9d2d5c5666") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "18b1179cvv3rfn3hhysiqwcn2c15a1kzff74q4494rz69k0j7w4q")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-seccomp-containers-golang-0.6.0 +; (package +; (name "go-github-com-seccomp-containers-golang") +; (version "0.6.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/seccomp/containers-golang") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0clrwdnmr131a65h66br57bsnr17i1s3kq9cc7ljrdaym57y6cfz")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/seccomp/containers-golang")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20200720211630-cb9d2d5c5666" +; ,go-golang-org-x-sys-0.0.0-20200720211630-cb9d2d5c5666) +; ("go-github-com-xeipuuv-gojsonschema-1.2.0" +; ,go-github-com-xeipuuv-gojsonschema-1.2.0) +; ("go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2" +; ,go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2) +; ("go-github-com-sirupsen-logrus-1.6.0" +; ,go-github-com-sirupsen-logrus-1.6.0) +; ("go-github-com-seccomp-libseccomp-golang-0.9.1" +; ,go-github-com-seccomp-libseccomp-golang-0.9.1) +; ("go-github-com-opencontainers-selinux-1.6.0" +; ,go-github-com-opencontainers-selinux-1.6.0) +; ("go-github-com-opencontainers-runtime-tools-0.9.0" +; ,go-github-com-opencontainers-runtime-tools-0.9.0) +; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200710190001-3e4195d92445" +; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200710190001-3e4195d92445) +; ("go-github-com-hashicorp-go-multierror-1.1.0" +; ,go-github-com-hashicorp-go-multierror-1.1.0) +; ("go-github-com-blang-semver-3.5.1+incompatible" +; ,go-github-com-blang-semver-3.5.1+incompatible))) +; (home-page "https://github.com/seccomp/containers-golang") +; (synopsis "containers-golang") +; (description +; "@code{containers-golang} is a set of Go libraries used by container runtimes to +;generate and load seccomp mappings into the kernel.") +; (license license:asl2.0))) +; +;(define-public go-github-com-seccomp-libseccomp-golang-0.9.2-0.20210429002308-3879420cc921 +; (package +; (name "go-github-com-seccomp-libseccomp-golang") +; (version "0.9.2-0.20210429002308-3879420cc921") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/seccomp/libseccomp-golang") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ypr3j50cd9lnj9szfyh45kh0cf7swm7cv2svz1575mldd9m1xr9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/seccomp/libseccomp-golang")) +; (home-page "https://github.com/seccomp/libseccomp-golang") +; (synopsis #f) +; (description +; "Package seccomp provides bindings for libseccomp, a library wrapping the Linux +;seccomp syscall. Seccomp enables an application to restrict system call use for +;itself and its children.") +; (license license:bsd-2))) +; +;(define-public go-github-com-spf13-pflag-1.0.5 +; (package +; (name "go-github-com-spf13-pflag") +; (version "1.0.5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/spf13/pflag") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0gpmacngd0gpslnbkzi263f5ishigzgh6pbdv9hp092rnjl4nd31")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/spf13/pflag")) +; (home-page "https://github.com/spf13/pflag") +; (synopsis "Description") +; (description +; "Package pflag is a drop-in replacement for Go's flag package, implementing +;POSIX/GNU-style --flags.") +; (license license:bsd-3))) +; +;(define-public go-github-com-sylabs-json-resp-0.8.0 +; (package +; (name "go-github-com-sylabs-json-resp") +; (version "0.8.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/sylabs/json-resp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ygr4mavaj1pp78hkkphhn3ydd923n3klwnx8x7v4ajqzx4cx4id")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/sylabs/json-resp")) +; (home-page "https://github.com/sylabs/json-resp") +; (synopsis "JSON Response") +; (description +; "The @code{json-resp} package contains a small set of functions that are used to +;marshall and unmarshall response data and errors in JSON format.") +; (license license:bsd-3))) +; +;(define-public go-github-com-burntsushi-toml-0.3.1 +; (package +; (name "go-github-com-burntsushi-toml") +; (version "0.3.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/BurntSushi/toml") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1fjdwwfzyzllgiwydknf1pwjvy49qxfsczqx5gz3y0izs7as99j6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/BurntSushi/toml")) +; (home-page "https://github.com/BurntSushi/toml") +; (synopsis "Testing") +; (description +; "Package toml implements decoding and encoding of TOML files.") +; (license license:expat))) +; +;(define-public go-github-com-pmezard-go-difflib-1.0.0 +; (package +; (name "go-github-com-pmezard-go-difflib") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/pmezard/go-difflib") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/pmezard/go-difflib")) +; (home-page "https://github.com/pmezard/go-difflib") +; (synopsis "go-difflib") +; (description +; "Go-difflib is a partial port of python 3 difflib package. Its main goal was to +;make unified and context diff available in pure Go, mostly for testing purposes.") +; (license license:bsd-3))) +; +;(define-public go-github-com-russross-blackfriday-v2-2.0.1 +; (package +; (name "go-github-com-russross-blackfriday-v2") +; (version "2.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/russross/blackfriday") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0nlz7isdd4rgnwzs68499hlwicxz34j2k2a0b8jy0y7ycd2bcr5j")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/russross/blackfriday/v2")) +; (home-page "https://github.com/russross/blackfriday") +; (synopsis "Blackfriday") +; (description "Package blackfriday is a markdown processor.") +; (license license:bsd-2))) +; +;(define-public go-github-com-shurcool-sanitized-anchor-name-1.0.0 +; (package +; (name "go-github-com-shurcool-sanitized-anchor-name") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/shurcooL/sanitized_anchor_name") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1gv9p2nr46z80dnfjsklc6zxbgk96349sdsxjz05f3z6wb6m5l8f")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/shurcooL/sanitized_anchor_name")) +; (home-page "https://github.com/shurcooL/sanitized_anchor_name") +; (synopsis "sanitized_anchor_name") +; (description +; "Package sanitized_anchor_name provides a func to create sanitized anchor names.") +; (license license:expat))) +; +;(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d +; (package +; (name "go-github-com-cpuguy83-go-md2man-v2") +; (version "2.0.0-20190314233015-f79a8a8ca69d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/cpuguy83/go-md2man") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) +; (propagated-inputs +; `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" +; ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) +; ("go-github-com-russross-blackfriday-v2-2.0.1" +; ,go-github-com-russross-blackfriday-v2-2.0.1) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0))) +; (home-page "https://github.com/cpuguy83/go-md2man") +; (synopsis "go-md2man") +; (description "Converts markdown into roff (man pages).") +; (license license:expat))) +; +;(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 +; (package +; (name "go-gopkg-in-check-v1") +; (version "0.0.0-20161208181325-20d25e280405") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/check.v1") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) +; (home-page "https://gopkg.in/check.v1") +; (synopsis "Instructions") +; (description +; "Package check is a rich testing extension for Go's testing package.") +; (license license:bsd-2))) +; +;(define-public go-gopkg-in-yaml-v2-2.2.2 +; (package +; (name "go-gopkg-in-yaml-v2") +; (version "2.2.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/yaml.v2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "01wj12jzsdqlnidpyjssmj0r4yavlqy7dwrg7adqd8dicjc4ncsa")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" +; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) +; (home-page "https://gopkg.in/yaml.v2") +; (synopsis "YAML support for the Go language") +; (description "Package yaml implements YAML support for the Go language.") +; (license license:asl2.0))) +; +;(define-public go-github-com-urfave-cli-1.22.5 +; (package +; (name "go-github-com-urfave-cli") +; (version "1.22.5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/urfave/cli") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1n8lk58j7bdsp47yh5bcpsw38lhkbyzcy3203ffkawc2rvkf1pp7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/urfave/cli")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) +; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d" +; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d) +; ("go-github-com-burntsushi-toml-0.3.1" +; ,go-github-com-burntsushi-toml-0.3.1))) +; (home-page "https://github.com/urfave/cli") +; (synopsis "cli") +; (description +; "Package cli provides a minimal framework for creating and organizing command +;line Go applications. cli is designed to be easy to understand and write, the +;most simple cli application can be written as follows:") +; (license license:expat))) +; +;(define-public go-github-com-vividcortex-ewma-1.2.0 +; (package +; (name "go-github-com-vividcortex-ewma") +; (version "1.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/VividCortex/ewma") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0whx516l9nm4n41spagb605ry7kfnz1qha96mcshnfjlahhnnylq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/VividCortex/ewma")) +; (home-page "https://github.com/VividCortex/ewma") +; (synopsis "EWMA") +; (description +; "Package ewma implements exponentially weighted moving averages.") +; (license license:expat))) +; +;(define-public go-github-com-acarl005-stripansi-0.0.0-20180116102854-5a71ef0e047d +; (package +; (name "go-github-com-acarl005-stripansi") +; (version "0.0.0-20180116102854-5a71ef0e047d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/acarl005/stripansi") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "02sxiishdixm791jqbkmhdcvc712l0fb8rqmibxzgc61h0qs6rs3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/acarl005/stripansi")) +; (home-page "https://github.com/acarl005/stripansi") +; (synopsis "Strip ANSI") +; (description "This Go package removes ANSI escape codes from strings.") +; (license license:expat))) +; +;(define-public go-github-com-rivo-uniseg-0.2.0 +; (package +; (name "go-github-com-rivo-uniseg") +; (version "0.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/rivo/uniseg") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0j7h22vfmjj562vr8gpsyrkrwp1pq9ayh5fylv24skxb467g9f0q")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/rivo/uniseg")) +; (home-page "https://github.com/rivo/uniseg") +; (synopsis "Unicode Text Segmentation for Go") +; (description +; "Package uniseg implements Unicode Text Segmentation according to Unicode +;Standard Annex #29 +;(@url{http://unicode.org/reports/tr29/,http://unicode.org/reports/tr29/}).") +; (license license:expat))) +; +;(define-public go-github-com-mattn-go-runewidth-0.0.13 +; (package +; (name "go-github-com-mattn-go-runewidth") +; (version "0.0.13") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mattn/go-runewidth") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1yir0f3wc5z5hnkwhvx5qb6nmpfb05zp2gvfjvna63s8kmla1rrn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mattn/go-runewidth")) +; (propagated-inputs +; `(("go-github-com-rivo-uniseg-0.2.0" ,go-github-com-rivo-uniseg-0.2.0))) +; (home-page "https://github.com/mattn/go-runewidth") +; (synopsis "go-runewidth") +; (description +; "This package provides functions to get fixed width of the character or string.") +; (license license:expat))) +; +;(define-public go-golang-org-x-sys-0.0.0-20220209214540-3681064d5158 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20220209214540-3681064d5158") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0cw9rzb4rxmr2si28pjqx3wv5r119c83kd08yy1h7nf725bzrs89")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-github-com-vbauerster-mpb-v7-7.4.1 +; (package +; (name "go-github-com-vbauerster-mpb-v7") +; (version "7.4.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/vbauerster/mpb") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ii1r84qjfp2spvj6nb8xy5b3nsfw17jmwgp55zkaz9n9lfj75w2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/vbauerster/mpb/v7")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20220209214540-3681064d5158" +; ,go-golang-org-x-sys-0.0.0-20220209214540-3681064d5158) +; ("go-github-com-mattn-go-runewidth-0.0.13" +; ,go-github-com-mattn-go-runewidth-0.0.13) +; ("go-github-com-acarl005-stripansi-0.0.0-20180116102854-5a71ef0e047d" +; ,go-github-com-acarl005-stripansi-0.0.0-20180116102854-5a71ef0e047d) +; ("go-github-com-vividcortex-ewma-1.2.0" +; ,go-github-com-vividcortex-ewma-1.2.0))) +; (home-page "https://github.com/vbauerster/mpb") +; (synopsis "Multi Progress Bar") +; (description +; "Package mpb is a library for rendering progress bars in terminal applications.") +; (license license:unlicense))) +; +;(define-public go-github-com-xeipuuv-gojsonpointer-0.0.0-20190905194746-02993c407bfb +; (package +; (name "go-github-com-xeipuuv-gojsonpointer") +; (version "0.0.0-20190905194746-02993c407bfb") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/xeipuuv/gojsonpointer") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0y7gmpgsm8c12ax4a0ij9srmd9d424iq224n172ckwfqf37amvzy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/xeipuuv/gojsonpointer")) +; (home-page "https://github.com/xeipuuv/gojsonpointer") +; (synopsis "gojsonpointer") +; (description "An implementation of JSON Pointer - Go language") +; (license license:asl2.0))) +; +;(define-public go-github-com-yvasiyarov-go-metrics-0.0.0-20150112132944-c25f46c4b940 +; (package +; (name "go-github-com-yvasiyarov-go-metrics") +; (version "0.0.0-20150112132944-c25f46c4b940") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/yvasiyarov/go-metrics") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0p1hx4ml4gzgyj8n0fg5lv8bq092zwg00n59lq8v8sphjc1h8i8d")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/yvasiyarov/go-metrics")) +; (home-page "https://github.com/yvasiyarov/go-metrics") +; (synopsis "go-metrics") +; (description "Go port of Coda Hale's Metrics library") +; (license license:expat))) +; +;(define-public go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20160601141957-9c099fbc30e9 +; (package +; (name "go-github-com-yvasiyarov-newrelic-platform-go") +; (version "0.0.0-20160601141957-9c099fbc30e9") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/yvasiyarov/newrelic_platform_go") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0n6jap27qc7b7c37ck1gv9biq5nfl7y06jk0cqgc517yfnb4f07x")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/yvasiyarov/newrelic_platform_go")) +; (home-page "https://github.com/yvasiyarov/newrelic_platform_go") +; (synopsis "New Relic Platform Agent SDK for Go(golang)") +; (description +; "Package newrelic_platform_go is New Relic Platform Agent SDK for Go language.") +; (license license:bsd-2))) +; +;(define-public go-golang-org-x-sys-0.0.0-20220209214540-3681064d5158 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20220209214540-3681064d5158") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0cw9rzb4rxmr2si28pjqx3wv5r119c83kd08yy1h7nf725bzrs89")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20210615035016-665e8c7367d1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "11n848csibdbv7b46zjyf4l7sphg37n9sjzqfy1ds7p1jyakwmnv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-term-0.0.0-20210916214954-140adaaadfaf +; (package +; (name "go-golang-org-x-term") +; (version "0.0.0-20210916214954-140adaaadfaf") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/term") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1rcdx2q92pzpmdyzdlzpq9flc3ibfi3m1rni7w4qlmlq569s6wh3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/term")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1" +; ,go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1))) +; (home-page "https://golang.org/x/term") +; (synopsis "Go terminal/console support") +; (description +; "Package term provides support functions for dealing with terminals, as commonly +;found on UNIX systems.") +; (license license:bsd-3))) +; +;(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 +; (package +; (name "go-gopkg-in-check-v1") +; (version "0.0.0-20161208181325-20d25e280405") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/check.v1") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) +; (home-page "https://gopkg.in/check.v1") +; (synopsis "Instructions") +; (description +; "Package check is a rich testing extension for Go's testing package.") +; (license license:bsd-2))) +; +;(define-public go-gopkg-in-yaml-v2-2.4.0 +; (package +; (name "go-gopkg-in-yaml-v2") +; (version "2.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/yaml.v2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1pbmrpj7gcws34g8vwna4i2nhm9p6235piww36436xhyaa10cldr")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" +; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) +; (home-page "https://gopkg.in/yaml.v2") +; (synopsis "YAML support for the Go language") +; (description "Package yaml implements YAML support for the Go language.") +; (license license:asl2.0))) +; +;(define-public go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543 +; (package +; (name "go-golang-org-x-xerrors") +; (version "0.0.0-20191204190536-9bdfabe68543") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/xerrors") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1yjfi1bk9xb81lqn85nnm13zz725wazvrx3b50hx19qmwg7a4b0c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/xerrors")) +; (home-page "https://golang.org/x/xerrors") +; (synopsis #f) +; (description "Package xerrors implements functions to manipulate errors.") +; (license license:bsd-3))) +; +;(define-public go-github-com-google-go-cmp-0.5.5 +; (package +; (name "go-github-com-google-go-cmp") +; (version "0.5.5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/go-cmp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "12fmkdhyv5d4is8s57k78j097zb0phlgnrkqc03agiszxlid69x7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/go-cmp")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" +; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) +; (home-page "https://github.com/google/go-cmp") +; (synopsis "Package for equality of Go values") +; (description +; "This package is intended to be a more powerful and safer alternative to +;@code{reflect.DeepEqual} for comparing whether two values are semantically +;equal.") +; (license license:bsd-3))) +; +;(define-public go-github-com-pkg-errors-0.9.1 +; (package +; (name "go-github-com-pkg-errors") +; (version "0.9.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/pkg/errors") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1761pybhc2kqr6v5fm8faj08x9bql8427yqg6vnfv6nhrasx1mwq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/pkg/errors")) +; (home-page "https://github.com/pkg/errors") +; (synopsis "errors") +; (description "Package errors provides simple error handling primitives.") +; (license license:bsd-2))) +; +;(define-public go-github-com-spf13-pflag-1.0.3 +; (package +; (name "go-github-com-spf13-pflag") +; (version "1.0.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/spf13/pflag") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1cj3cjm7d3zk0mf1xdybh0jywkbbw7a6yr3y22x9sis31scprswd")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/spf13/pflag")) +; (home-page "https://github.com/spf13/pflag") +; (synopsis "Description") +; (description +; "Package pflag is a drop-in replacement for Go's flag package, implementing +;POSIX/GNU-style --flags.") +; (license license:bsd-3))) +; +;(define-public go-github-com-yuin-goldmark-1.2.1 +; (package +; (name "go-github-com-yuin-goldmark") +; (version "1.2.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/yuin/goldmark") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "12rsnsf65drcp0jfw2jl9w589vsn3pxdk1zh3v9q908iigngrcmy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/yuin/goldmark")) +; (home-page "https://github.com/yuin/goldmark") +; (synopsis "goldmark") +; (description +; "Package goldmark implements functions to convert markdown text to a desired +;format.") +; (license license:expat))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20191011191535-87dc89f01550") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0z4i1m2yn3f31ci7wvcm2rxkx2yiv7a78mfzklncmsz2k97rlh2g")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" +; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) +; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" +; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190620200207-3b0461eec859") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0l00c8l0a8xnv6qdpwfzxxsr58jggacgzdrwiprrfx2xqm37b6d5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sync-0.0.0-20190423024810-112230192c58 +; (package +; (name "go-golang-org-x-sync") +; (version "0.0.0-20190423024810-112230192c58") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sync") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "05i2k43j2d0llq768hg5pf3hb2yhfzp9la1w5wp0rsnnzblr0lfn")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sync")) +; (home-page "https://golang.org/x/sync") +; (synopsis "Go Sync") +; (description +; "This repository provides Go concurrency primitives in addition to the ones +;provided by the language and \"sync\" and \"sync/atomic\" packages.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7 +; (package +; (name "go-golang-org-x-xerrors") +; (version "0.0.0-20190717185122-a985d3407aa7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/xerrors") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "00wzr5w8aadipgc3rkk8f11i41znskfj9ix5nhhaxyg7isrslgcj")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/xerrors")) +; (home-page "https://golang.org/x/xerrors") +; (synopsis #f) +; (description "Package xerrors implements functions to manipulate errors.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20191119224855-298f0cb1881e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0l4pqwib2wnfnix6nvxl0yrq87ipi7ff1rz6z5bxfzy9dki1nzmv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7" +; ,go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7) +; ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" +; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) +; ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" +; ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898 +; (package +; (name "go-golang-org-x-xerrors") +; (version "0.0.0-20191011141410-1b5146add898") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/xerrors") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0w2akj91krxjag0xdhsg78470888nicc5ismc2ap9jqpss6v1zih")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/xerrors")) +; (home-page "https://golang.org/x/xerrors") +; (synopsis #f) +; (description "Package xerrors implements functions to manipulate errors.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-mod-0.3.0 +; (package +; (name "go-golang-org-x-mod") +; (version "0.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/mod") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ldgbx2zpprbsfn6p8pfgs4nn87gwbfcv2z0fa7n8alwsq2yw78q")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/mod")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" +; ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) +; ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" +; ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) +; ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" +; ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) +; (home-page "https://golang.org/x/mod") +; (synopsis "mod") +; (description +; "This repository holds packages for writing tools that work directly with Go +;module mechanics. That is, it is for direct manipulation of Go modules +;themselves.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190215142949-d0b11bdaac8a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20190308221718-c2843e01d9a2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-text-0.3.0 +; (package +; (name "go-golang-org-x-text") +; (version "0.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/text") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/text")) +; (home-page "https://golang.org/x/text") +; (synopsis "Go Text") +; (description +; "text is a repository of text-related packages related to internationalization +;(i18n) and localization (l10n), such as character encodings, text +;transformations, and locale-specific text handling.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190404232315-eb5bcb51f2a3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "17k4g8krxbl84gzcs275b7gsh66dzm15fdxivjnx9xz8q84l4kby")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20190412213103-97732733099d +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190412213103-97732733099d") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "118hkp01i4z1f5h6hcjm0ff2ngqhrzj1f7731n0kw8dr6hvbx0sw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20200622213623-75b288015ac9") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "18vlncvvs11ds3zaaziqjlg5s2vcwi3496nn6qv7p0dp94j5pwa2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" +; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) +; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" +; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20200930185726-fdedc70b468f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1njlfhjbvi4lxvjbq8zswrb0y0q4jd2p6x51h1q6vmyzi9af6869")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20180917221912-90fa682c2a6e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-text-0.3.3 +; (package +; (name "go-golang-org-x-text") +; (version "0.3.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/text") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19pihqm3phyndmiw6i42pdv6z1rbvlqlsnhsyqf9gsnn0qnmqqlh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/text")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" +; ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) +; (home-page "https://golang.org/x/text") +; (synopsis "Go Text") +; (description +; "text is a repository of text-related packages related to internationalization +;(i18n) and localization (l10n), such as character encodings, text +;transformations, and locale-specific text handling.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-net-0.0.0-20201021035429-f5854403a974 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20201021035429-f5854403a974") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1vw63zpmhi337f3gc432x3wkib4j2ia8dy7if31wxwb9dgqvy222")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) +; ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" +; ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) +; ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" +; ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9 +; (package +; (name "go-golang-org-x-sync") +; (version "0.0.0-20201020160332-67f06af15bc9") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sync") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "093p4panc808ak5bamzz7m9nb0xxib7778jpnr6f0xkz1n4fzyw5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sync")) +; (home-page "https://golang.org/x/sync") +; (synopsis "Go Sync") +; (description +; "This repository provides Go concurrency primitives in addition to the ones +;provided by the language and \"sync\" and \"sync/atomic\" packages.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20210119212857-b64e53b001e4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "16in6bazi0frdkzhqxyvmw7qcvzjavq21dnz9bmrqq8d4dpd2j44")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1 +; (package +; (name "go-golang-org-x-xerrors") +; (version "0.0.0-20200804184101-5ec99f83aff1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/xerrors") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1dbzc3gmf2haazpv7cgmv97rq40g2xzwbglc17vas8dwhgwgwrzb")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/xerrors")) +; (home-page "https://golang.org/x/xerrors") +; (synopsis #f) +; (description "Package xerrors implements functions to manipulate errors.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-tools-0.1.0 +; (package +; (name "go-golang-org-x-tools") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1asrm22kv5x891qkbpap8alg612k321jbs1akc0vwsan251gm507")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" +; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) +; ("go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4" +; ,go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4) +; ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" +; ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) +; ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" +; ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) +; ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) +; ("go-github-com-yuin-goldmark-1.2.1" +; ,go-github-com-yuin-goldmark-1.2.1))) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +; +;(define-public go-gotest-tools-v3-3.1.0 +; (package +; (name "go-gotest-tools-v3") +; (version "3.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/gotestyourself/gotest.tools") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0jk2grk2q19k453m76hn2bsq9i73yk63drlfjg1imvhmmcl88872")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gotest.tools/v3" #:unpack-path "gotest.tools/v3")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) +; ("go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4" +; ,go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4) +; ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-google-go-cmp-0.5.5" +; ,go-github-com-google-go-cmp-0.5.5))) +; (home-page "https://gotest.tools/v3") +; (synopsis "gotest.tools") +; (description +; "Package gotesttools is a collection of packages to augment `testing` and support +;common patterns.") +; (license license:asl2.0))) +; +;(define-public go-github-com-creack-pty-1.1.15 +; (package +; (name "go-github-com-creack-pty") +; (version "1.1.15") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/creack/pty") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1j5w51ammp5rp90bhdwqi216dxmndpmf4gf3gim75qls52qj8j2r")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/creack/pty")) +; (home-page "https://github.com/creack/pty") +; (synopsis "pty") +; (description +; "Package pty provides functions for working with Unix terminals.") +; (license license:expat))) +; +;(define-public go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543 +; (package +; (name "go-golang-org-x-xerrors") +; (version "0.0.0-20191204190536-9bdfabe68543") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/xerrors") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1yjfi1bk9xb81lqn85nnm13zz725wazvrx3b50hx19qmwg7a4b0c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/xerrors")) +; (home-page "https://golang.org/x/xerrors") +; (synopsis #f) +; (description "Package xerrors implements functions to manipulate errors.") +; (license license:bsd-3))) +; +;(define-public go-github-com-google-go-cmp-0.5.6 +; (package +; (name "go-github-com-google-go-cmp") +; (version "0.5.6") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/go-cmp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0lrb0pacv5iy3m6fn1qb3nv7zwimfhpzqq8f6hwpwx88cx3g6p1s")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/go-cmp")) +; (propagated-inputs +; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" +; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) +; (home-page "https://github.com/google/go-cmp") +; (synopsis "Package for equality of Go values") +; (description +; "This package is intended to be a more powerful and safer alternative to +;@code{reflect.DeepEqual} for comparing whether two values are semantically +;equal.") +; (license license:bsd-3))) +; +;(define-public go-github-com-frankban-quicktest-1.13.1 +; (package +; (name "go-github-com-frankban-quicktest") +; (version "1.13.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/frankban/quicktest") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1x0v98s4m0zy9m4h7x3kmx30vxk2ah496qb81mnmzv98h4cgdki0")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/frankban/quicktest")) +; (propagated-inputs +; `(("go-github-com-kr-pretty-0.3.0" ,go-github-com-kr-pretty-0.3.0) +; ("go-github-com-google-go-cmp-0.5.6" +; ,go-github-com-google-go-cmp-0.5.6))) +; (home-page "https://github.com/frankban/quicktest") +; (synopsis "quicktest") +; (description +; "Package quicktest provides a collection of Go helpers for writing tests.") +; (license license:expat))) +; +;(define-public go-github-com-google-renameio-1.0.1 +; (package +; (name "go-github-com-google-renameio") +; (version "1.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/renameio") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1qn84nra9nxqyqg4i496b6ijbhnxvx66hdndwl7qh7r6q8lz2ba5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/renameio")) +; (home-page "https://github.com/google/renameio") +; (synopsis "Atomicity vs durability") +; (description +; "Package renameio provides a way to atomically create or replace a file or +;symbolic link.") +; (license license:asl2.0))) +; +;(define-public go-github-com-creack-pty-1.1.9 +; (package +; (name "go-github-com-creack-pty") +; (version "1.1.9") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/creack/pty") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1v52599qq76dwq742mffakzj6mxqqccv2szn3hjicjld56nmd2d3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/creack/pty")) +; (home-page "https://github.com/creack/pty") +; (synopsis "pty") +; (description +; "Package pty provides functions for working with Unix terminals.") +; (license license:expat))) +; +;(define-public go-github-com-kr-text-0.2.0 +; (package +; (name "go-github-com-kr-text") +; (version "0.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kr/text") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0hf58ypz6rxsw6nx3i856whir9lvy4sdx946wbw1nfaf2rdmr9vx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kr/text")) +; (propagated-inputs +; `(("go-github-com-creack-pty-1.1.9" ,go-github-com-creack-pty-1.1.9))) +; (home-page "https://github.com/kr/text") +; (synopsis #f) +; (description +; "Package text provides rudimentary functions for manipulating text in paragraphs.") +; (license license:expat))) +; +;(define-public go-github-com-rogpeppe-go-internal-1.6.1 +; (package +; (name "go-github-com-rogpeppe-go-internal") +; (version "1.6.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/rogpeppe/go-internal") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "00j2vpp1bsggdvw1winkz23mg0q6drjiir5q0k49pmqx1sh7106l")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/rogpeppe/go-internal")) +; (propagated-inputs +; `(("go-gopkg-in-errgo-v2-2.1.0" ,go-gopkg-in-errgo-v2-2.1.0))) +; (home-page "https://github.com/rogpeppe/go-internal") +; (synopsis #f) +; (description +; "This repository factors out an opinionated selection of internal packages and +;functionality from the Go standard library. Currently this consists mostly of +;packages and testing code from within the Go tool implementation.") +; (license license:bsd-3))) +; +;(define-public go-github-com-kr-pretty-0.3.0 +; (package +; (name "go-github-com-kr-pretty") +; (version "0.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kr/pretty") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0vp5ijbapw8j52c3l992m1wm8nhl23n68xk3lqxhad3srxmdb9z4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kr/pretty")) +; (propagated-inputs +; `(("go-github-com-rogpeppe-go-internal-1.6.1" +; ,go-github-com-rogpeppe-go-internal-1.6.1) +; ("go-github-com-kr-text-0.2.0" ,go-github-com-kr-text-0.2.0))) +; (home-page "https://github.com/kr/pretty") +; (synopsis #f) +; (description +; "Package pretty provides pretty-printing for Go values. This is useful during +;debugging, to avoid wrapping long output lines in the terminal.") +; (license license:expat))) +; +;(define-public go-github-com-pkg-diff-0.0.0-20210226163009-20ebb0f2a09e +; (package +; (name "go-github-com-pkg-diff") +; (version "0.0.0-20210226163009-20ebb0f2a09e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/pkg/diff") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1g3dzgwhz4fx3ddpsv7fsa4r1v5clsp2lbw2qrkdk9y1vc5gi8yi")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/pkg/diff")) +; (home-page "https://github.com/pkg/diff") +; (synopsis "diff") +; (description +; "Package diff contains high level routines that generate a textual diff.") +; (license license:bsd-3))) +; +;(define-public go-github-com-kr-pty-1.1.1 +; (package +; (name "go-github-com-kr-pty") +; (version "1.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kr/pty") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0383f0mb9kqjvncqrfpidsf8y6ns5zlrc91c6a74xpyxjwvzl2y6")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kr/pty")) +; (home-page "https://github.com/kr/pty") +; (synopsis "pty") +; (description +; "Package pty is a wrapper for github.com/creack/pty, which provides functions for +;working with Unix terminals.") +; (license license:expat))) +; +;(define-public go-github-com-kr-text-0.1.0 +; (package +; (name "go-github-com-kr-text") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kr/text") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1gm5bsl01apvc84bw06hasawyqm4q84vx1pm32wr9jnd7a8vjgj1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kr/text")) +; (propagated-inputs +; `(("go-github-com-kr-pty-1.1.1" ,go-github-com-kr-pty-1.1.1))) +; (home-page "https://github.com/kr/text") +; (synopsis #f) +; (description +; "Package text provides rudimentary functions for manipulating text in paragraphs.") +; (license license:expat))) +; +;(define-public go-github-com-kr-pretty-0.1.0 +; (package +; (name "go-github-com-kr-pretty") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kr/pretty") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "18m4pwg2abd0j9cn5v3k2ksk9ig4vlwxmlw9rrglanziv9l967qp")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kr/pretty")) +; (propagated-inputs +; `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) +; (home-page "https://github.com/kr/pretty") +; (synopsis #f) +; (description +; "Package pretty provides pretty-printing for Go values. This is useful during +;debugging, to avoid wrapping long output lines in the terminal.") +; (license license:expat))) +; +;(define-public go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127 +; (package +; (name "go-gopkg-in-check-v1") +; (version "1.0.0-20180628173108-788fd7840127") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/check.v1") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0v3bim0j375z81zrpr5qv42knqs0y2qv2vkjiqi5axvb78slki1a")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) +; (home-page "https://gopkg.in/check.v1") +; (synopsis "Instructions") +; (description +; "Package check is a rich testing extension for Go's testing package.") +; (license license:bsd-2))) +; +;(define-public go-gopkg-in-errgo-v2-2.1.0 +; (package +; (name "go-gopkg-in-errgo-v2") +; (version "2.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/errgo.v2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "065mbihiy7q67wnql0bzl9y1kkvck5ivra68254zbih52jxwrgr2")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/errgo.v2" #:unpack-path "gopkg.in/errgo.v2")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" +; ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) +; ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0))) +; (home-page "https://gopkg.in/errgo.v2") +; (synopsis #f) +; (description +; "Package errgo provides some primitives for error creation and handling.") +; (license license:bsd-3))) +; +;(define-public go-github-com-rogpeppe-go-internal-1.8.1-0.20210923151022-86f73c517451 +; (package +; (name "go-github-com-rogpeppe-go-internal") +; (version "1.8.1-0.20210923151022-86f73c517451") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/rogpeppe/go-internal") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1qswk3kaif0n8q125dvd8rfcyc3wqw71yi16fc26336kbwjzrc9p")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/rogpeppe/go-internal")) +; (propagated-inputs +; `(("go-gopkg-in-errgo-v2-2.1.0" ,go-gopkg-in-errgo-v2-2.1.0) +; ("go-github-com-pkg-diff-0.0.0-20210226163009-20ebb0f2a09e" +; ,go-github-com-pkg-diff-0.0.0-20210226163009-20ebb0f2a09e))) +; (home-page "https://github.com/rogpeppe/go-internal") +; (synopsis #f) +; (description +; "This repository factors out an opinionated selection of internal packages and +;functionality from the Go standard library. Currently this consists mostly of +;packages and testing code from within the Go tool implementation.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c +; (package +; (name "go-golang-org-x-sync") +; (version "0.0.0-20210220032951-036812b2e83c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sync") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1gl202py3s4gl6arkaxlf8qa6f0jyyg2f95m6f89qnfmr416h85b")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sync")) +; (home-page "https://golang.org/x/sync") +; (synopsis "Go Sync") +; (description +; "This repository provides Go concurrency primitives in addition to the ones +;provided by the language and \"sync\" and \"sync/atomic\" packages.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20210925032602-92d5a993a665 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20210925032602-92d5a993a665") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ps9wq5vz0ilsjxd05glnkkmbfxzpsqvjp0mgm2y1hm6ql5qfpn5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20210615035016-665e8c7367d1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "11n848csibdbv7b46zjyf4l7sphg37n9sjzqfy1ds7p1jyakwmnv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +; +;(define-public go-golang-org-x-term-0.0.0-20210916214954-140adaaadfaf +; (package +; (name "go-golang-org-x-term") +; (version "0.0.0-20210916214954-140adaaadfaf") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/term") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1rcdx2q92pzpmdyzdlzpq9flc3ibfi3m1rni7w4qlmlq569s6wh3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/term")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1" +; ,go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1))) +; (home-page "https://golang.org/x/term") +; (synopsis "Go terminal/console support") +; (description +; "Package term provides support functions for dealing with terminals, as commonly +;found on UNIX systems.") +; (license license:bsd-3))) +; +;(define-public go-mvdan-cc-editorconfig-0.2.0 +; (package +; (name "go-mvdan-cc-editorconfig") +; (version "0.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mvdan/editorconfig") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1rav1rp8pi921gsffqr2wjdhbr12w81g31yv6iw4yb1zyh726qqg")))) +; (build-system go-build-system) +; (arguments '(#:import-path "mvdan.cc/editorconfig")) +; (home-page "https://mvdan.cc/editorconfig") +; (synopsis "editorconfig") +; (description +; "Package editorconfig allows parsing and using EditorConfig files, as defined in +;@url{https://editorconfig.org/,https://editorconfig.org/}.") +; (license license:bsd-3))) +; +;(define-public go-mvdan-cc-sh-v3-3.4.3-0.20220202175809-113ed667a8a7 +; (package +; (name "go-mvdan-cc-sh-v3") +; (version "3.4.3-0.20220202175809-113ed667a8a7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mvdan/sh") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1k5113qqm20x58838k8f0ry3v1hinahjf2yl8y4450922yy0mq2k")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "mvdan.cc/sh/v3" #:unpack-path "mvdan.cc/sh/v3")) +; (propagated-inputs +; `(("go-mvdan-cc-editorconfig-0.2.0" ,go-mvdan-cc-editorconfig-0.2.0) +; ("go-golang-org-x-term-0.0.0-20210916214954-140adaaadfaf" +; ,go-golang-org-x-term-0.0.0-20210916214954-140adaaadfaf) +; ("go-golang-org-x-sys-0.0.0-20210925032602-92d5a993a665" +; ,go-golang-org-x-sys-0.0.0-20210925032602-92d5a993a665) +; ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" +; ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) +; ("go-github-com-rogpeppe-go-internal-1.8.1-0.20210923151022-86f73c517451" +; ,go-github-com-rogpeppe-go-internal-1.8.1-0.20210923151022-86f73c517451) +; ("go-github-com-pkg-diff-0.0.0-20210226163009-20ebb0f2a09e" +; ,go-github-com-pkg-diff-0.0.0-20210226163009-20ebb0f2a09e) +; ("go-github-com-kr-pretty-0.3.0" ,go-github-com-kr-pretty-0.3.0) +; ("go-github-com-google-renameio-1.0.1" +; ,go-github-com-google-renameio-1.0.1) +; ("go-github-com-frankban-quicktest-1.13.1" +; ,go-github-com-frankban-quicktest-1.13.1) +; ("go-github-com-creack-pty-1.1.15" ,go-github-com-creack-pty-1.1.15))) +; (home-page "https://mvdan.cc/sh/v3") +; (synopsis "sh") +; (description +; "This package provides a shell parser, formatter, and interpreter. Supports +;@url{https://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html,POSIX +;Shell}, @url{https://www.gnu.org/software/bash/,Bash}, and +;@url{http://www.mirbsd.org/mksh.htm,mksh}. Requires Go 1.16 or later.") +; (license license:bsd-3))) +; +;(define-public go-github-com-opencontainers-image-spec-1.0.2-0.20211117181255-693428a734f5 +; (package +; (name "go-github-com-opencontainers-image-spec") +; (version "1.0.2-0.20211117181255-693428a734f5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/image-spec") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1w9fmamky30idjbqs78qhds6d5b9gdy6wzcxx6fhmpm2159dv62b")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/image-spec")) +; (home-page "https://github.com/opencontainers/image-spec") +; (synopsis "OCI Image Format Specification") +; (description +; "The OCI Image Format project creates and maintains the software shipping +;container image format spec (OCI Image Format).") +; (license license:asl2.0))) +; +;(define-public go-github-com-yvasiyarov-gorelic-0.0.6 +; (package +; (name "go-github-com-yvasiyarov-gorelic") +; (version "0.0.6") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/yvasiyarov/gorelic") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0210d8z7l945611b5ynzjhnypqfdyr490ndrap13s4k5z1jgqjnb")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/yvasiyarov/gorelic")) +; (home-page "https://github.com/yvasiyarov/gorelic") +; (synopsis "GoRelic is deprecated in favour of") +; (description +; "Package gorelic is an New Relic agent implementation for Go runtime. It collect +;a lot of metrics about Go scheduler, garbage collector and memory allocator and +;send them to NewRelic.") +; (license license:bsd-2))) +; +;(define-public go-github-com-moby-sys-0.0.0-20220308220145-03355939d693 +; (package +; (name "go-github-com-moby-sys") +; (version "0.0.0-20220308220145-03355939d693") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/moby/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ns4bav4n0k93nwz898dmcrz9zm4fa08sxyzhi7wqj4f8mpz4fam")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/moby/sys")) +; (home-page "https://github.com/moby/sys") +; (synopsis #f) +; (description #f) +; (license license:asl2.0))) +;(define-public go-github-com-apptainer-sif-v2-2.3.2 +; (package +; (name "go-github-com-apptainer-sif-v2") +; (version "2.3.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/apptainer/sif") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "10cmvgyjxnfgw5661n1zbdr8zs29rx9izsr1bbnnyjr9kdqdhfg1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/apptainer/sif/v2")) +; (propagated-inputs +; `(("go-gopkg-in-warnings-v0-0.1.2" ,go-gopkg-in-warnings-v0-0.1.2) +; ("go-golang-org-x-sys-0.0.0-20211205182925-97ca703d548d" +; ,go-golang-org-x-sys-0.0.0-20211205182925-97ca703d548d) +; ("go-golang-org-x-net-0.0.0-20210813160813-60bc85c4be6d" +; ,go-golang-org-x-net-0.0.0-20210813160813-60bc85c4be6d) +; ("go-golang-org-x-crypto-0.0.0-20210817164053-32db794688a5" +; ,go-golang-org-x-crypto-0.0.0-20210817164053-32db794688a5) +; ("go-github-com-xanzy-ssh-agent-0.3.0" +; ,go-github-com-xanzy-ssh-agent-0.3.0) +; ("go-github-com-sergi-go-diff-1.1.0" +; ,go-github-com-sergi-go-diff-1.1.0) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-mitchellh-go-homedir-1.1.0" +; ,go-github-com-mitchellh-go-homedir-1.1.0) +; ("go-github-com-kevinburke-ssh-config-0.0.0-20201106050909-4977a11b4351" +; ,go-github-com-kevinburke-ssh-config-0.0.0-20201106050909-4977a11b4351) +; ("go-github-com-jbenet-go-context-0.0.0-20150711004518-d14ea06fba99" +; ,go-github-com-jbenet-go-context-0.0.0-20150711004518-d14ea06fba99) +; ("go-github-com-inconshreveable-mousetrap-1.0.0" +; ,go-github-com-inconshreveable-mousetrap-1.0.0) +; ("go-github-com-imdario-mergo-0.3.12" +; ,go-github-com-imdario-mergo-0.3.12) +; ("go-github-com-go-git-go-billy-v5-5.3.1" +; ,go-github-com-go-git-go-billy-v5-5.3.1) +; ("go-github-com-go-git-gcfg-1.5.0" ,go-github-com-go-git-gcfg-1.5.0) +; ("go-github-com-emirpasic-gods-1.12.0" +; ,go-github-com-emirpasic-gods-1.12.0) +; ("go-github-com-acomagu-bufpipe-1.0.3" +; ,go-github-com-acomagu-bufpipe-1.0.3) +; ("go-github-com-microsoft-go-winio-0.4.16" +; ,go-github-com-microsoft-go-winio-0.4.16) +; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) +; ("go-github-com-spf13-cobra-1.3.0" ,go-github-com-spf13-cobra-1.3.0) +; ("go-github-com-sebdah-goldie-v2-2.5.3" +; ,go-github-com-sebdah-goldie-v2-2.5.3) +; ("go-github-com-magefile-mage-1.12.1" +; ,go-github-com-magefile-mage-1.12.1) +; ("go-github-com-google-uuid-1.3.0" ,go-github-com-google-uuid-1.3.0) +; ("go-github-com-go-git-go-git-v5-5.4.2" +; ,go-github-com-go-git-go-git-v5-5.4.2) +; ("go-github-com-blang-semver-v4-4.0.0" +; ,go-github-com-blang-semver-v4-4.0.0) +; ("go-github-com-protonmail-go-crypto-0.0.0-20220113124808-70ae35bab23f" +; ,go-github-com-protonmail-go-crypto-0.0.0-20220113124808-70ae35bab23f))) +; (home-page "https://github.com/apptainer/sif") +; (synopsis "The Singularity Image Format (SIF)") +; (description +; "This module contains an open source implementation of the Singularity Image +;Format (SIF) that makes it easy to create complete and encapsulated container +;environments stored in a single file.") +; (license license:bsd-3))) diff --git a/glicid/packages/linux.scm b/glicid/packages/linux.scm index 1155b47..0b94c4a 100644 --- a/glicid/packages/linux.scm +++ b/glicid/packages/linux.scm @@ -179,14 +179,20 @@ (package (name "apptainer") (version "1.0.1") - (source (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/apptainer/apptainer/") - (commit "a308dd1a664a0bf01ff74b39c69d07442c7fac4f") - )) - (sha256 (base32 "0k2fkwlvp72vh07a7m1sdzj1f3zml9y5mligzhnscs7zzlv5s28j")) - )) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/apptainer/apptainer/") + (commit "a308dd1a664a0bf01ff74b39c69d07442c7fac4f") + )) + (sha256 (base32 "0k2fkwlvp72vh07a7m1sdzj1f3zml9y5mligzhnscs7zzlv5s28j")) + ) + (modules '((srfi srfi-26))) + (snippet + '(call-with-output-file "VERSION" (cut display version <>)) + ) + ) (home-page "https://apptainer.org/") (synopsis "THE CONTAINER SYSTEM FOR SECURE HIGH PERFORMANCE COMPUTING") (description "Apptainer/Singularity is the most widely used container system for HPC. From 4cc49bac329248aa9fc014225509a91df062cb03 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 25 Mar 2022 08:48:11 +0100 Subject: [PATCH 280/383] adding apptainer 1.0.1 --- glicid/packages/linux.scm | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/glicid/packages/linux.scm b/glicid/packages/linux.scm index 0b94c4a..d8fe2c9 100644 --- a/glicid/packages/linux.scm +++ b/glicid/packages/linux.scm @@ -187,10 +187,10 @@ (commit "a308dd1a664a0bf01ff74b39c69d07442c7fac4f") )) (sha256 (base32 "0k2fkwlvp72vh07a7m1sdzj1f3zml9y5mligzhnscs7zzlv5s28j")) - ) - (modules '((srfi srfi-26))) - (snippet - '(call-with-output-file "VERSION" (cut display version <>)) + (modules '((srfi srfi-26))) + (snippet + '(call-with-output-file "VERSION" (cut display version <>)) + ) ) ) (home-page "https://apptainer.org/") @@ -287,11 +287,6 @@ ) ) ) - (add-before 'configure 'set-version - (lambda* (#:key input #:allow-other-keys) - (invoke "echo" "'1.0.1' > VERSION") - ) - ) ) ) ) From 3f099c5db6626b4d2364f2b9940a5bd0f5bf5b6c Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 25 Mar 2022 08:50:13 +0100 Subject: [PATCH 281/383] adding apptainer 1.0.1 --- glicid/packages/linux.scm | 96 +++++++++++++++++++-------------------- 1 file changed, 48 insertions(+), 48 deletions(-) diff --git a/glicid/packages/linux.scm b/glicid/packages/linux.scm index d8fe2c9..a571047 100644 --- a/glicid/packages/linux.scm +++ b/glicid/packages/linux.scm @@ -214,54 +214,54 @@ ("cryptsetup", cryptsetup) ("go", go-1.17) ("pkg-config", pkg-config) - ("go-github-com-netflix-go-expect-0.0.0-20220104043353-73e0943537d2", go-github-com-netflix-go-expect-0.0.0-20220104043353-73e0943537d2) - ("go-github-com-protonmail-go-crypto-0.0.0-20220113124808-70ae35bab23f", go-github-com-protonmail-go-crypto-0.0.0-20220113124808-70ae35bab23f) - ("go-github-com-adigunhammedolalekan-registry-auth-0.0.0-20200730122110-8cde180a3a60", go-github-com-adigunhammedolalekan-registry-auth-0.0.0-20200730122110-8cde180a3a60) - ("go-github-com-apex-log-1.9.0", go-github-com-apex-log-1.9.0) - ("go-github-com-apptainer-container-key-client-0.7.2", go-github-com-apptainer-container-key-client-0.7.2) - ("go-github-com-apptainer-container-library-client-1.2.2", go-github-com-apptainer-container-library-client-1.2.2) - ("go-github-com-apptainer-sif-v2-2.3.2", go-github-com-apptainer-sif-v2-2.3.2) - ("go-github-com-blang-semver-v4-4.0.0", go-github-com-blang-semver-v4-4.0.0) - ("go-github-com-buger-jsonparser-1.1.1", go-github-com-buger-jsonparser-1.1.1) - ("go-github-com-cenkalti-backoff-v4-4.1.2", go-github-com-cenkalti-backoff-v4-4.1.2) - ("go-github-com-containerd-cgroups-1.0.3", go-github-com-containerd-cgroups-1.0.3) - ("go-github-com-containerd-containerd-1.6.0", go-github-com-containerd-containerd-1.6.0) - ("go-github-com-containernetworking-cni-1.0.1", go-github-com-containernetworking-cni-1.0.1) - ("go-github-com-containernetworking-plugins-1.1.0", go-github-com-containernetworking-plugins-1.1.0) - ("go-github-com-containers-image-v5-5.19.1", go-github-com-containers-image-v5-5.19.1) - ("go-github-com-creack-pty-1.1.17", go-github-com-creack-pty-1.1.17) - ("go-github-com-cyphar-filepath-securejoin-0.2.3", go-github-com-cyphar-filepath-securejoin-0.2.3) - ("go-github-com-docker-docker-20.10.12+incompatible", go-github-com-docker-docker-20.10.12+incompatible) - ("go-github-com-fatih-color-1.13.0", go-github-com-fatih-color-1.13.0) - ("go-github-com-go-log-log-0.2.0", go-github-com-go-log-log-0.2.0) - ("go-github-com-google-uuid-1.3.0", go-github-com-google-uuid-1.3.0) - ("go-github-com-opencontainers-go-digest-1.0.0", go-github-com-opencontainers-go-digest-1.0.0) - ("go-github-com-opencontainers-image-spec-1.0.3-0.20211202193544-a5463b7f9c84", go-github-com-opencontainers-image-spec-1.0.3-0.20211202193544-a5463b7f9c84) - ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417", go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417) - ("go-github-com-opencontainers-runtime-tools-0.9.1-0.20210326182921-59cdde06764b", go-github-com-opencontainers-runtime-tools-0.9.1-0.20210326182921-59cdde06764b) - ("go-github-com-opencontainers-selinux-1.10.0", go-github-com-opencontainers-selinux-1.10.0) - ("go-github-com-opencontainers-umoci-0.4.7", go-github-com-opencontainers-umoci-0.4.7) - ("go-github-com-pelletier-go-toml-1.9.4", go-github-com-pelletier-go-toml-1.9.4) - ("go-github-com-pkg-errors-0.9.1", go-github-com-pkg-errors-0.9.1) - ("go-github-com-seccomp-containers-golang-0.6.0", go-github-com-seccomp-containers-golang-0.6.0) - ("go-github-com-seccomp-libseccomp-golang-0.9.2-0.20210429002308-3879420cc921", go-github-com-seccomp-libseccomp-golang-0.9.2-0.20210429002308-3879420cc921) - ("go-github-com-spf13-cobra-1.3.0", go-github-com-spf13-cobra-1.3.0) - ("go-github-com-spf13-pflag-1.0.5", go-github-com-spf13-pflag-1.0.5) - ("go-github-com-sylabs-json-resp-0.8.0", go-github-com-sylabs-json-resp-0.8.0) - ("go-github-com-vbauerster-mpb-v7-7.4.1", go-github-com-vbauerster-mpb-v7-7.4.1) - ("go-golang-org-x-sys-0.0.0-20220209214540-3681064d5158", go-golang-org-x-sys-0.0.0-20220209214540-3681064d5158) - ("go-golang-org-x-term-0.0.0-20210916214954-140adaaadfaf", go-golang-org-x-term-0.0.0-20210916214954-140adaaadfaf) - ("go-gopkg-in-yaml-v2-2.4.0", go-gopkg-in-yaml-v2-2.4.0) - ("go-gotest-tools-v3-3.1.0", go-gotest-tools-v3-3.1.0) - ("go-mvdan-cc-sh-v3-3.4.3-0.20220202175809-113ed667a8a7", go-mvdan-cc-sh-v3-3.4.3-0.20220202175809-113ed667a8a7) - ("go-oras-land-oras-go-1.1.0", go-oras-land-oras-go-1.1.0) - ("go-github-com-opencontainers-image-spec-1.0.2-0.20211117181255-693428a734f5", go-github-com-opencontainers-image-spec-1.0.2-0.20211117181255-693428a734f5) - ("go-github-com-moby-sys", go-github-com-moby-sys) - ("go-github-com-urfave-cli-1.22.5", go-github-com-urfave-cli-1.22.5) - ("go-github-com-xeipuuv-gojsonpointer-0.0.0-20190905194746-02993c407bfb", go-github-com-xeipuuv-gojsonpointer-0.0.0-20190905194746-02993c407bfb) - ("go-github-com-yvasiyarov-go-metrics-0.0.0-20150112132944-c25f46c4b940", go-github-com-yvasiyarov-go-metrics-0.0.0-20150112132944-c25f46c4b940) - ("go-github-com-yvasiyarov-gorelic-0.0.6", go-github-com-yvasiyarov-gorelic-0.0.6) - ("go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20160601141957-9c099fbc30e9", go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20160601141957-9c099fbc30e9) +; ("go-github-com-netflix-go-expect-0.0.0-20220104043353-73e0943537d2", go-github-com-netflix-go-expect-0.0.0-20220104043353-73e0943537d2) +; ("go-github-com-protonmail-go-crypto-0.0.0-20220113124808-70ae35bab23f", go-github-com-protonmail-go-crypto-0.0.0-20220113124808-70ae35bab23f) +; ("go-github-com-adigunhammedolalekan-registry-auth-0.0.0-20200730122110-8cde180a3a60", go-github-com-adigunhammedolalekan-registry-auth-0.0.0-20200730122110-8cde180a3a60) +; ("go-github-com-apex-log-1.9.0", go-github-com-apex-log-1.9.0) +; ("go-github-com-apptainer-container-key-client-0.7.2", go-github-com-apptainer-container-key-client-0.7.2) +; ("go-github-com-apptainer-container-library-client-1.2.2", go-github-com-apptainer-container-library-client-1.2.2) +; ("go-github-com-apptainer-sif-v2-2.3.2", go-github-com-apptainer-sif-v2-2.3.2) +; ("go-github-com-blang-semver-v4-4.0.0", go-github-com-blang-semver-v4-4.0.0) +; ("go-github-com-buger-jsonparser-1.1.1", go-github-com-buger-jsonparser-1.1.1) +; ("go-github-com-cenkalti-backoff-v4-4.1.2", go-github-com-cenkalti-backoff-v4-4.1.2) +; ("go-github-com-containerd-cgroups-1.0.3", go-github-com-containerd-cgroups-1.0.3) +; ("go-github-com-containerd-containerd-1.6.0", go-github-com-containerd-containerd-1.6.0) +; ("go-github-com-containernetworking-cni-1.0.1", go-github-com-containernetworking-cni-1.0.1) +; ("go-github-com-containernetworking-plugins-1.1.0", go-github-com-containernetworking-plugins-1.1.0) +; ("go-github-com-containers-image-v5-5.19.1", go-github-com-containers-image-v5-5.19.1) +; ("go-github-com-creack-pty-1.1.17", go-github-com-creack-pty-1.1.17) +; ("go-github-com-cyphar-filepath-securejoin-0.2.3", go-github-com-cyphar-filepath-securejoin-0.2.3) +; ("go-github-com-docker-docker-20.10.12+incompatible", go-github-com-docker-docker-20.10.12+incompatible) +; ("go-github-com-fatih-color-1.13.0", go-github-com-fatih-color-1.13.0) +; ("go-github-com-go-log-log-0.2.0", go-github-com-go-log-log-0.2.0) +; ("go-github-com-google-uuid-1.3.0", go-github-com-google-uuid-1.3.0) +; ("go-github-com-opencontainers-go-digest-1.0.0", go-github-com-opencontainers-go-digest-1.0.0) +; ("go-github-com-opencontainers-image-spec-1.0.3-0.20211202193544-a5463b7f9c84", go-github-com-opencontainers-image-spec-1.0.3-0.20211202193544-a5463b7f9c84) +; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417", go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417) +; ("go-github-com-opencontainers-runtime-tools-0.9.1-0.20210326182921-59cdde06764b", go-github-com-opencontainers-runtime-tools-0.9.1-0.20210326182921-59cdde06764b) +; ("go-github-com-opencontainers-selinux-1.10.0", go-github-com-opencontainers-selinux-1.10.0) +; ("go-github-com-opencontainers-umoci-0.4.7", go-github-com-opencontainers-umoci-0.4.7) +; ("go-github-com-pelletier-go-toml-1.9.4", go-github-com-pelletier-go-toml-1.9.4) +; ("go-github-com-pkg-errors-0.9.1", go-github-com-pkg-errors-0.9.1) +; ("go-github-com-seccomp-containers-golang-0.6.0", go-github-com-seccomp-containers-golang-0.6.0) +; ("go-github-com-seccomp-libseccomp-golang-0.9.2-0.20210429002308-3879420cc921", go-github-com-seccomp-libseccomp-golang-0.9.2-0.20210429002308-3879420cc921) +; ("go-github-com-spf13-cobra-1.3.0", go-github-com-spf13-cobra-1.3.0) +; ("go-github-com-spf13-pflag-1.0.5", go-github-com-spf13-pflag-1.0.5) +; ("go-github-com-sylabs-json-resp-0.8.0", go-github-com-sylabs-json-resp-0.8.0) +; ("go-github-com-vbauerster-mpb-v7-7.4.1", go-github-com-vbauerster-mpb-v7-7.4.1) +; ("go-golang-org-x-sys-0.0.0-20220209214540-3681064d5158", go-golang-org-x-sys-0.0.0-20220209214540-3681064d5158) +; ("go-golang-org-x-term-0.0.0-20210916214954-140adaaadfaf", go-golang-org-x-term-0.0.0-20210916214954-140adaaadfaf) +; ("go-gopkg-in-yaml-v2-2.4.0", go-gopkg-in-yaml-v2-2.4.0) +; ("go-gotest-tools-v3-3.1.0", go-gotest-tools-v3-3.1.0) +; ("go-mvdan-cc-sh-v3-3.4.3-0.20220202175809-113ed667a8a7", go-mvdan-cc-sh-v3-3.4.3-0.20220202175809-113ed667a8a7) +; ("go-oras-land-oras-go-1.1.0", go-oras-land-oras-go-1.1.0) +; ("go-github-com-opencontainers-image-spec-1.0.2-0.20211117181255-693428a734f5", go-github-com-opencontainers-image-spec-1.0.2-0.20211117181255-693428a734f5) +; ("go-github-com-moby-sys", go-github-com-moby-sys) +; ("go-github-com-urfave-cli-1.22.5", go-github-com-urfave-cli-1.22.5) +; ("go-github-com-xeipuuv-gojsonpointer-0.0.0-20190905194746-02993c407bfb", go-github-com-xeipuuv-gojsonpointer-0.0.0-20190905194746-02993c407bfb) +; ("go-github-com-yvasiyarov-go-metrics-0.0.0-20150112132944-c25f46c4b940", go-github-com-yvasiyarov-go-metrics-0.0.0-20150112132944-c25f46c4b940) +; ("go-github-com-yvasiyarov-gorelic-0.0.6", go-github-com-yvasiyarov-gorelic-0.0.6) +; ("go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20160601141957-9c099fbc30e9", go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20160601141957-9c099fbc30e9) )) (arguments `(#:phases From c014c861102c1f19d63725b437c47992a6523077 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 25 Mar 2022 08:52:37 +0100 Subject: [PATCH 282/383] adding apptainer 1.0.1 --- glicid/packages/golang.scm | 26256 +++++++++++++++++------------------ glicid/packages/linux.scm | 96 +- 2 files changed, 13176 insertions(+), 13176 deletions(-) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index 1ebb21a..a878379 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -6,13131 +6,13131 @@ #:use-module (guix packages) ) -;(define-public go-github-com-creack-pty-1.1.17 -; (package -; (name "go-github-com-creack-pty") -; (version "1.1.17") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/creack/pty") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "09lcq5bw1dwppxjia05sj4fy7gbk62vishfz1bgrbd1r06i57mjf")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/creack/pty")) -; (home-page "https://github.com/creack/pty") -; (synopsis "pty") -; (description -; "Package pty provides functions for working with Unix terminals.") -; (license license:expat))) -; -;(define-public go-github-com-davecgh-go-spew-1.1.0 -; (package -; (name "go-github-com-davecgh-go-spew") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/davecgh/go-spew") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/davecgh/go-spew")) -; (home-page "https://github.com/davecgh/go-spew") -; (synopsis "go-spew") -; (description -; "Go-spew implements a deep pretty printer for Go data structures to aid in -;debugging. A comprehensive suite of tests with 100% test coverage is provided -;to ensure proper functionality. See @code{test_coverage.txt} for the gocov -;coverage report. Go-spew is licensed under the liberal ISC license, so it may -;be used in open source or commercial projects.") -; (license license:isc))) -; -;(define-public go-github-com-pmezard-go-difflib-1.0.0 -; (package -; (name "go-github-com-pmezard-go-difflib") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/pmezard/go-difflib") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/pmezard/go-difflib")) -; (home-page "https://github.com/pmezard/go-difflib") -; (synopsis "go-difflib") -; (description -; "Go-difflib is a partial port of python 3 difflib package. Its main goal was to -;make unified and context diff available in pure Go, mostly for testing purposes.") -; (license license:bsd-3))) -; -;(define-public go-github-com-stretchr-objx-0.1.0 -; (package -; (name "go-github-com-stretchr-objx") -; (version "0.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/objx") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/objx")) -; (home-page "https://github.com/stretchr/objx") -; (synopsis "Objx") -; (description -; "Objx - Go package for dealing with maps, slices, JSON and other data.") -; (license license:expat))) -; -;(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 -; (package -; (name "go-gopkg-in-check-v1") -; (version "0.0.0-20161208181325-20d25e280405") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/check.v1") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) -; (home-page "https://gopkg.in/check.v1") -; (synopsis "Instructions") -; (description -; "Package check is a rich testing extension for Go's testing package.") -; (license license:bsd-2))) -; -;(define-public go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c -; (package -; (name "go-gopkg-in-yaml-v3") -; (version "3.0.0-20200313102051-9f266ea9e77c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/yaml.v3") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1bbai3lzb50m0x2vwsdbagrbhvfylj9k1m32hgbqwldqx4p9ay35")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" -; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) -; (home-page "https://gopkg.in/yaml.v3") -; (synopsis "YAML support for the Go language") -; (description "Package yaml implements YAML support for the Go language.") -; (license license:expat))) -; -;(define-public go-github-com-stretchr-testify-1.6.1 -; (package -; (name "go-github-com-stretchr-testify") -; (version "1.6.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/testify") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1yhiqqzjvi63pf01rgzx68gqkkvjx03fvl5wk30br5l6s81s090l")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/testify")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" -; ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) -; ("go-github-com-stretchr-objx-0.1.0" -; ,go-github-com-stretchr-objx-0.1.0) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-davecgh-go-spew-1.1.0" -; ,go-github-com-davecgh-go-spew-1.1.0))) -; (home-page "https://github.com/stretchr/testify") -; (synopsis "Testify - Thou Shalt Write Tests") -; (description -; "** We are working on testify v2 and would love to hear what you'd like to see in -;it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -;Package testify is a set of packages that provide many tools for testifying that -;your code will behave as you intend.") -; (license license:expat))) -; -;(define-public go-github-com-netflix-go-expect-0.0.0-20220104043353-73e0943537d2 -; (package -; (name "go-github-com-netflix-go-expect") -; (version "0.0.0-20220104043353-73e0943537d2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/Netflix/go-expect") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0zkvhnc4ii6ygvcsj54ng0kql26rnny7l3hy1w61g88mxjsww1b9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/Netflix/go-expect")) -; (propagated-inputs -; `(("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-creack-pty-1.1.17" ,go-github-com-creack-pty-1.1.17))) -; (home-page "https://github.com/Netflix/go-expect") -; (synopsis "go-expect") -; (description -; "Package expect provides an expect-like interface to automate control of -;applications. It is unlike expect in that it does not spawn or manage process -;lifecycle. This package only focuses on expecting output and sending input -;through it's psuedoterminal.") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20180917221912-90fa682c2a6e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-text-0.3.3 -; (package -; (name "go-golang-org-x-text") -; (version "0.3.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/text") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "19pihqm3phyndmiw6i42pdv6z1rbvlqlsnhsyqf9gsnn0qnmqqlh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/text")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" -; ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) -; (home-page "https://golang.org/x/text") -; (synopsis "Go Text") -; (description -; "text is a repository of text-related packages related to internationalization -;(i18n) and localization (l10n), such as character encodings, text -;transformations, and locale-specific text handling.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20210226172049-e18ecbb05110") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1vlq8mdscp7yfaa1lmyv03y5m4c2d67ydg2q1i6smkrxghn3zn3q")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) -; ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" -; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) -; ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" -; ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20201119102817-f84b799fce68") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1dvhqian5byzkcg1bnqzygqa6ccc6krc2q7j12pp1vhl3y7znnsg")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1 -; (package -; (name "go-golang-org-x-term") -; (version "0.0.0-20201126162022-7de9c90e9dd1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/term") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ba252xmv6qsvf1w1gcy98mngrj0vd4inbjw0lsklqvva65nljna")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/term")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" -; ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) -; (home-page "https://golang.org/x/term") -; (synopsis "Go terminal/console support") -; (description -; "Package term provides support functions for dealing with terminals, as commonly -;found on UNIX systems.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20210322153248-0c34fe9e7dc2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "021szs1czc0xg4chpays7i05dvkax9s8mns314ab01r887kchqxq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (propagated-inputs -; `(("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" -; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) -; ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" -; ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68) -; ("go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110" -; ,go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110))) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-github-com-protonmail-go-crypto-0.0.0-20220113124808-70ae35bab23f -; (package -; (name "go-github-com-protonmail-go-crypto") -; (version "0.0.0-20220113124808-70ae35bab23f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/ProtonMail/go-crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0dpalb7cd2xs0hji80zv378vf8gx4ph7b8xdd05kvbskyw67fb7n")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/ProtonMail/go-crypto")) -; (propagated-inputs -; `(("go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2" -; ,go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2))) -; (home-page "https://github.com/ProtonMail/go-crypto") -; (synopsis #f) -; (description -; "This module is backwards compatible with x/crypto/openpgp, so you can simply -;replace all imports of @code{golang.org/x/crypto/openpgp} with -;@code{github.com/ProtonMail/go-crypto/openpgp}.") -; (license license:bsd-3))) -; -;(define-public go-github-com-docker-distribution-2.7.1+incompatible -; (package -; (name "go-github-com-docker-distribution") -; (version "2.7.1+incompatible") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/distribution/distribution") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1nx8b5a68rn81alp8wkkw6qd5v32mgf0fk23mxm60zdf63qk1nzw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/docker/distribution")) -; (home-page "https://github.com/docker/distribution") -; (synopsis "Distribution") -; (description -; "Package distribution will define the interfaces for the components of docker -;distribution. The goal is to allow users to reliably package, ship and store -;content related to docker images.") -; (license license:asl2.0))) -; -;(define-public go-github-com-docker-libtrust-0.0.0-20160708172513-aabc10ec26b7 -; (package -; (name "go-github-com-docker-libtrust") -; (version "0.0.0-20160708172513-aabc10ec26b7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/docker/libtrust") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1lwslbggzc2b0c4wxl5pn6i2nfgz5jz8f7s7vnid9mrlsk59h7s1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/docker/libtrust")) -; (home-page "https://github.com/docker/libtrust") -; (synopsis "libtrust") -; (description -; "Package libtrust provides an interface for managing authentication and -;authorization using public key cryptography. Authentication is handled using -;the identity attached to the public key and verified through TLS x509 -;certificates, a key challenge, or signature. Authorization and access control -;is managed through a trust graph distributed between both remote trust servers -;and locally cached and managed data.") -; (license license:asl2.0))) -; -;(define-public go-github-com-gorilla-mux-1.7.4 -; (package -; (name "go-github-com-gorilla-mux") -; (version "1.7.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/gorilla/mux") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1d0sy1paa055ic84sp3766s9pa24q008hf77dc842vrgvn8p3wmh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/gorilla/mux")) -; (home-page "https://github.com/gorilla/mux") -; (synopsis "gorilla/mux") -; (description "Package mux implements a request router and dispatcher.") -; (license license:bsd-3))) -; -;(define-public go-github-com-davecgh-go-spew-1.1.1 -; (package -; (name "go-github-com-davecgh-go-spew") -; (version "1.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/davecgh/go-spew") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/davecgh/go-spew")) -; (home-page "https://github.com/davecgh/go-spew") -; (synopsis "go-spew") -; (description -; "Go-spew implements a deep pretty printer for Go data structures to aid in -;debugging. A comprehensive suite of tests with 100% test coverage is provided -;to ensure proper functionality. See @code{test_coverage.txt} for the gocov -;coverage report. Go-spew is licensed under the liberal ISC license, so it may -;be used in open source or commercial projects.") -; (license license:isc))) -; -;(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.1 -; (package -; (name "go-github-com-konsorten-go-windows-terminal-sequences") -; (version "1.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/konsorten/go-windows-terminal-sequences") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1lchgf27n276vma6iyxa0v1xds68n2g8lih5lavqnx5x6q5pw2ip")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) -; (home-page "https://github.com/konsorten/go-windows-terminal-sequences") -; (synopsis "Windows Terminal Sequences") -; (description -; "This library allow for enabling Windows terminal color support for Go.") -; (license license:expat))) -; -;(define-public go-github-com-pmezard-go-difflib-1.0.0 -; (package -; (name "go-github-com-pmezard-go-difflib") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/pmezard/go-difflib") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/pmezard/go-difflib")) -; (home-page "https://github.com/pmezard/go-difflib") -; (synopsis "go-difflib") -; (description -; "Go-difflib is a partial port of python 3 difflib package. Its main goal was to -;make unified and context diff available in pure Go, mostly for testing purposes.") -; (license license:bsd-3))) -; -;(define-public go-github-com-stretchr-objx-0.1.1 -; (package -; (name "go-github-com-stretchr-objx") -; (version "0.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/objx") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0iph0qmpyqg4kwv8jsx6a56a7hhqq8swrazv40ycxk9rzr0s8yls")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/objx")) -; (home-page "https://github.com/stretchr/objx") -; (synopsis "Objx") -; (description -; "Objx - Go package for dealing with maps, slices, JSON and other data.") -; (license license:expat))) -; -;(define-public go-github-com-stretchr-testify-1.2.2 -; (package -; (name "go-github-com-stretchr-testify") -; (version "1.2.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/testify") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0dlszlshlxbmmfxj5hlwgv3r22x0y1af45gn1vd198nvvs3pnvfs")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/testify")) -; (home-page "https://github.com/stretchr/testify") -; (synopsis "Testify - Thou Shalt Write Tests") -; (description -; "** We are working on testify v2 and would love to hear what you'd like to see in -;it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -;Package testify is a set of packages that provide many tools for testifying that -;your code will behave as you intend.") -; (license license:expat))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190422165155-953cdadca894") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0gkha4whk8xkcv3isigbs250akag99isxnd3v9xmy0kl3g88hxy1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-sirupsen-logrus-1.4.2 -; (package -; (name "go-github-com-sirupsen-logrus") -; (version "1.4.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/sirupsen/logrus") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "087k2lxrr9p9dh68yw71d05h5g9p5v26zbwd6j7lghinjfaw334x")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/sirupsen/logrus")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894" -; ,go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894) -; ("go-github-com-stretchr-testify-1.2.2" -; ,go-github-com-stretchr-testify-1.2.2) -; ("go-github-com-stretchr-objx-0.1.1" -; ,go-github-com-stretchr-objx-0.1.1) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.1" -; ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.1) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://github.com/sirupsen/logrus") -; (synopsis "Logrus") -; (description -; "Package logrus is a structured logger for Go, completely API compatible with the -;standard library logger.") -; (license license:expat))) -; -;(define-public go-github-com-adigunhammedolalekan-registry-auth-0.0.0-20200730122110-8cde180a3a60 -; (package -; (name "go-github-com-adigunhammedolalekan-registry-auth") -; (version "0.0.0-20200730122110-8cde180a3a60") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/adigunhammedolalekan/registry-auth") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0855a5c0ifi6q2ghb6gax0kwwra5j7pd2lplq4wp8r83dnv4vwj0")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "github.com/adigunhammedolalekan/registry-auth")) -; (propagated-inputs -; `(("go-github-com-sirupsen-logrus-1.4.2" -; ,go-github-com-sirupsen-logrus-1.4.2) -; ("go-github-com-gorilla-mux-1.7.4" ,go-github-com-gorilla-mux-1.7.4) -; ("go-github-com-docker-libtrust-0.0.0-20160708172513-aabc10ec26b7" -; ,go-github-com-docker-libtrust-0.0.0-20160708172513-aabc10ec26b7) -; ("go-github-com-docker-distribution-2.7.1+incompatible" -; ,go-github-com-docker-distribution-2.7.1+incompatible))) -; (home-page "https://github.com/adigunhammedolalekan/registry-auth") -; (synopsis "registry-auth") -; (description -; "a package to implements docker registry token authentication server as described -;here -;[https://github.com/docker/distribution/blob/1b9ab303a477ded9bdd3fc97e9119fa8f9e58fca/docs/spec/auth/index.md]") -; (license license:expat))) -; -;(define-public go-github-com-stretchr-testify-1.3.0 -; (package -; (name "go-github-com-stretchr-testify") -; (version "1.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/testify") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0wjchp2c8xbgcbbq32w3kvblk6q6yn533g78nxl6iskq6y95lxsy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/testify")) -; (propagated-inputs -; `(("go-github-com-stretchr-objx-0.1.0" -; ,go-github-com-stretchr-objx-0.1.0) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-davecgh-go-spew-1.1.0" -; ,go-github-com-davecgh-go-spew-1.1.0))) -; (home-page "https://github.com/stretchr/testify") -; (synopsis "Testify - Thou Shalt Write Tests") -; (description -; "** We are working on testify v2 and would love to hear what you'd like to see in -;it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -;Package testify is a set of packages that provide many tools for testifying that -;your code will behave as you intend.") -; (license license:expat))) -; -;(define-public go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0 -; (package -; (name "go-github-com-tj-assert") -; (version "0.0.0-20171129193455-018094318fb0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/tj/assert") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "15ika7izp5hkd10dm30apwfvpm0d1yl2rnxs6896q0svz9zvi2z3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/tj/assert")) -; (home-page "https://github.com/tj/assert") -; (synopsis "assert") -; (description -; "Package assert implements the same assertions as the `assert` package but stops -;test execution when a test fails.") -; (license license:expat))) -; -;(define-public go-github-com-apex-logs-1.0.0 -; (package -; (name "go-github-com-apex-logs") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/apex/logs") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1kysjp3s8718p02ngpr60gnjjspv0a69biksfjqa1540svrbi850")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/apex/logs")) -; (propagated-inputs -; `(("go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0" -; ,go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0) -; ("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0))) -; (home-page "https://github.com/apex/logs") -; (synopsis "Example") -; (description "Go client for @url{https://apex.sh/logs/,Apex Logs}.") -; (license license:expat))) -; -;(define-public go-github-com-aphistic-golf-0.0.0-20180712155816-02c07f170c5a -; (package -; (name "go-github-com-aphistic-golf") -; (version "0.0.0-20180712155816-02c07f170c5a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/aphistic/golf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1qixab9bb29wqbr4nc5j3g25hq1j7am93f181rkj7a4qacncx763")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/aphistic/golf")) -; (home-page "https://github.com/aphistic/golf") -; (synopsis "golf") -; (description -; "This package provides logging capabilities using the GELF -;(@url{https://www.graylog.org/resources/gelf-2/,https://www.graylog.org/resources/gelf-2/}) -;log format") -; (license license:expat))) -; -;(define-public go-github-com-mattn-go-isatty-0.0.5 -; (package -; (name "go-github-com-mattn-go-isatty") -; (version "0.0.5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mattn/go-isatty") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "114d5xm8rfxplzd7nxz97gfngb4bhqy102szl084d1afcxsvm4aa")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mattn/go-isatty")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223" -; ,go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223))) -; (home-page "https://github.com/mattn/go-isatty") -; (synopsis "go-isatty") -; (description "Package isatty implements interface to isatty") -; (license license:expat))) -; -;(define-public go-github-com-mattn-go-colorable-0.1.1 -; (package -; (name "go-github-com-mattn-go-colorable") -; (version "0.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mattn/go-colorable") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0l640974j804c1yyjfgyxqlsivz0yrzmbql4mhcw2azryigkp08p")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mattn/go-colorable")) -; (propagated-inputs -; `(("go-github-com-mattn-go-isatty-0.0.5" -; ,go-github-com-mattn-go-isatty-0.0.5))) -; (home-page "https://github.com/mattn/go-colorable") -; (synopsis "go-colorable") -; (description "Colorable writer for windows.") -; (license license:expat))) -; -;(define-public go-github-com-mgutz-ansi-0.0.0-20170206155736-9520e82c474b -; (package -; (name "go-github-com-mgutz-ansi") -; (version "0.0.0-20170206155736-9520e82c474b") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mgutz/ansi") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "00bz22314j26736w1f0q4jy9d9dfaml17vn890n5zqy3cmvmww1j")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mgutz/ansi")) -; (home-page "https://github.com/mgutz/ansi") -; (synopsis "ansi") -; (description -; "Package ansi is a small, fast library to create ANSI colored strings and codes.") -; (license license:expat))) -; -;(define-public go-github-com-fsnotify-fsnotify-1.4.7 -; (package -; (name "go-github-com-fsnotify-fsnotify") -; (version "1.4.7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/fsnotify/fsnotify") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/fsnotify/fsnotify")) -; (home-page "https://github.com/fsnotify/fsnotify") -; (synopsis "File system notifications for Go") -; (description -; "Package fsnotify provides a platform-independent interface for file system -;notifications.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.2.0 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0kf4b59rcbb1cchfny2dm9jyznp8ri2hsb14n8iak1q8986xa0ab")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code -;github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-github-com-hpcloud-tail-1.0.0 -; (package -; (name "go-github-com-hpcloud-tail") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hpcloud/tail") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1njpzc0pi1acg5zx9y6vj9xi6ksbsc5d387rd6904hy6rh2m6kn0")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hpcloud/tail")) -; (home-page "https://github.com/hpcloud/tail") -; (synopsis "Go package for tail-ing files") -; (description -; "This package provides a Go package striving to emulate the features of the BSD -;@code{tail} program.") -; (license license:expat))) -; -;(define-public go-github-com-onsi-ginkgo-1.6.0 -; (package -; (name "go-github-com-onsi-ginkgo") -; (version "1.6.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/onsi/ginkgo") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0x0gc89vgq38xhgmi2h22bhr73cf2gmk42g89nz89k8dgg9hhr25")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/onsi/ginkgo")) -; (home-page "https://github.com/onsi/ginkgo") -; (synopsis "Ginkgo 2.0 Release Candidate is available!") -; (description "Ginkgo is a BDD-style testing framework for Golang") -; (license license:expat))) -; -;(define-public go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20180906233101-161cd47e91fd") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0254ld010iijygbzykib2vags1dc0wlmcmhgh4jl8iny159lhbcv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f -; (package -; (name "go-golang-org-x-sync") -; (version "0.0.0-20180314180146-1d60e4601c6f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sync") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "046jlanz2lkxq1r57x9bl6s4cvfqaic6p2xybsj8mq1120jv4rs6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sync")) -; (home-page "https://golang.org/x/sync") -; (synopsis "Go Sync") -; (description -; "This repository provides Go concurrency primitives in addition to the ones -;provided by the language and \"sync\" and \"sync/atomic\" packages.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20180909124046-d0be0721c37e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "081wyvfnlf842dqg03raxfz6lldlxpmyh1prix9lmrrm65arxb12")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-gopkg-in-fsnotify-v1-1.4.7 -; (package -; (name "go-gopkg-in-fsnotify-v1") -; (version "1.4.7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/fsnotify.v1") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path -; "gopkg.in/fsnotify.v1" -; #:unpack-path -; "gopkg.in/fsnotify.v1")) -; (home-page "https://gopkg.in/fsnotify.v1") -; (synopsis "File system notifications for Go") -; (description -; "Package fsnotify provides a platform-independent interface for file system -;notifications.") -; (license license:bsd-3))) -; -;(define-public go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7 -; (package -; (name "go-gopkg-in-tomb-v1") -; (version "1.0.0-20141024135613-dd632973f1e7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/tomb.v1") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1lqmq1ag7s4b3gc3ddvr792c5xb5k6sfn0cchr3i2s7f1c231zjv")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/tomb.v1" #:unpack-path "gopkg.in/tomb.v1")) -; (home-page "https://gopkg.in/tomb.v1") -; (synopsis "Installation and usage") -; (description -; "The tomb package offers a conventional API for clean goroutine termination.") -; (license license:bsd-3))) -; -;(define-public go-gopkg-in-yaml-v2-2.2.1 -; (package -; (name "go-gopkg-in-yaml-v2") -; (version "2.2.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/yaml.v2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0dwjrs2lp2gdlscs7bsrmyc5yf6mm4fvgw71bzr9mv2qrd2q73s1")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" -; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) -; (home-page "https://gopkg.in/yaml.v2") -; (synopsis "YAML support for the Go language") -; (description "Package yaml implements YAML support for the Go language.") -; (license license:asl2.0))) -; -;(define-public go-github-com-onsi-gomega-1.5.0 -; (package -; (name "go-github-com-onsi-gomega") -; (version "1.5.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/onsi/gomega") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1n7i4hksdgv410m43v2sw14bl5vy59dkp6nlw5l76nibbh37syr9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/onsi/gomega")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1) -; ("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" -; ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) -; ("go-gopkg-in-fsnotify-v1-1.4.7" ,go-gopkg-in-fsnotify-v1-1.4.7) -; ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e" -; ,go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e) -; ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" -; ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) -; ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" -; ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) -; ("go-github-com-onsi-ginkgo-1.6.0" ,go-github-com-onsi-ginkgo-1.6.0) -; ("go-github-com-hpcloud-tail-1.0.0" ,go-github-com-hpcloud-tail-1.0.0) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0) -; ("go-github-com-fsnotify-fsnotify-1.4.7" -; ,go-github-com-fsnotify-fsnotify-1.4.7))) -; (home-page "https://github.com/onsi/gomega") -; (synopsis ": a BDD Testing Framework for Golang") -; (description -; "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library.") -; (license license:expat))) -; -;(define-public go-github-com-sergi-go-diff-1.0.0 -; (package -; (name "go-github-com-sergi-go-diff") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/sergi/go-diff") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0swiazj8wphs2zmk1qgq75xza6m19snif94h2m6fi8dqkwqdl7c7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/sergi/go-diff")) -; (home-page "https://github.com/sergi/go-diff") -; (synopsis "go-diff") -; (description -; "go-diff offers algorithms to perform operations required for synchronizing plain -;text:") -; (license license:expat))) -; -;(define-public go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20190404232315-eb5bcb51f2a3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "17k4g8krxbl84gzcs275b7gsh66dzm15fdxivjnx9xz8q84l4kby")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190412213103-97732733099d -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190412213103-97732733099d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "118hkp01i4z1f5h6hcjm0ff2ngqhrzj1f7731n0kw8dr6hvbx0sw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20190426145343-a29dc8fdc734 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20190426145343-a29dc8fdc734") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "07f0jj4haqs0ywc1akk1qjwn5msl2j0pry1rxjkkbfcq4r6ihc1p")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" -; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) -; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" -; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-github-com-aphistic-sweet-0.2.0 -; (package -; (name "go-github-com-aphistic-sweet") -; (version "0.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/aphistic/sweet") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1bb4qagfxf6byqn2yx0vq24xfvisz3ah4w6bvqclc8cklvfngw43")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/aphistic/sweet")) -; (propagated-inputs -; `(("go-golang-org-x-crypto-0.0.0-20190426145343-a29dc8fdc734" -; ,go-golang-org-x-crypto-0.0.0-20190426145343-a29dc8fdc734) -; ("go-github-com-sergi-go-diff-1.0.0" -; ,go-github-com-sergi-go-diff-1.0.0) -; ("go-github-com-onsi-gomega-1.5.0" ,go-github-com-onsi-gomega-1.5.0) -; ("go-github-com-mgutz-ansi-0.0.0-20170206155736-9520e82c474b" -; ,go-github-com-mgutz-ansi-0.0.0-20170206155736-9520e82c474b) -; ("go-github-com-mattn-go-colorable-0.1.1" -; ,go-github-com-mattn-go-colorable-0.1.1))) -; (home-page "https://github.com/aphistic/sweet") -; (synopsis "sweet") -; (description -; "Sweet is a pluggable test runner capable of hooking into standard Go tests. It -;attempts to provide access to the standard Go test tool as close as possible -;while adding support for test suites and plugins that can hook into test results -;to add additional functionality.") -; (license license:expat))) -; -;(define-public go-github-com-jmespath-go-jmespath-0.0.0-20180206201540-c2b33e8439af -; (package -; (name "go-github-com-jmespath-go-jmespath") -; (version "0.0.0-20180206201540-c2b33e8439af") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/jmespath/go-jmespath") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1r6w7ydx8ydryxk3sfhzsk8m6f1nsik9jg3i1zhi69v4kfl4d5cz")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/jmespath/go-jmespath")) -; (home-page "https://github.com/jmespath/go-jmespath") -; (synopsis "go-jmespath - A JMESPath implementation in Go") -; (description -; "go-jmespath is a GO implementation of JMESPath, which is a query language for -;JSON. It will take a JSON document and transform it into another JSON document -;through a JMESPath expression.") -; (license license:asl2.0))) -; -;(define-public go-github-com-aws-aws-sdk-go-1.20.6 -; (package -; (name "go-github-com-aws-aws-sdk-go") -; (version "1.20.6") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/aws/aws-sdk-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "016vy5s9finyfgh08j7rvn2pnwymdgj2ydr59w57pysnri87mdwx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/aws/aws-sdk-go")) -; (propagated-inputs -; `(("go-github-com-jmespath-go-jmespath-0.0.0-20180206201540-c2b33e8439af" -; ,go-github-com-jmespath-go-jmespath-0.0.0-20180206201540-c2b33e8439af))) -; (home-page "https://github.com/aws/aws-sdk-go") -; (synopsis "AWS SDK for Go") -; (description -; "Package sdk is the official AWS SDK for the Go programming language.") -; (license license:asl2.0))) -; -;(define-public go-github-com-aybabtme-rgbterm-0.0.0-20170906152045-cc83f3b3ce59 -; (package -; (name "go-github-com-aybabtme-rgbterm") -; (version "0.0.0-20170906152045-cc83f3b3ce59") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/aybabtme/rgbterm") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0wvmxvjn64968ikvnxrflb1x8rlcwzpfl53fzbxff2axbx9lq50q")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/aybabtme/rgbterm")) -; (home-page "https://github.com/aybabtme/rgbterm") -; (synopsis "RGB terminal") -; (description -; "Package rgbterm colorizes bytes and strings using RGB colors, for a full range -;of pretty terminal strings.") -; (license license:expat))) -; -;(define-public go-github-com-fatih-color-1.7.0 -; (package -; (name "go-github-com-fatih-color") -; (version "1.7.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/fatih/color") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0v8msvg38r8d1iiq2i5r4xyfx0invhc941kjrsg5gzwvagv55inv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/fatih/color")) -; (home-page "https://github.com/fatih/color") -; (synopsis "color") -; (description -; "Package color is an ANSI color package to output colorized or SGR defined output -;to the standard output. The API can be used in several way, pick one that suits -;you.") -; (license license:expat))) -; -;(define-public go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515 -; (package -; (name "go-github-com-kr-logfmt") -; (version "0.0.0-20140226030751-b84e30acd515") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kr/logfmt") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "02ldzxgznrfdzvghfraslhgp19la1fczcbzh7wm2zdc6lmpd1qq9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kr/logfmt")) -; (home-page "https://github.com/kr/logfmt") -; (synopsis #f) -; (description "Package implements the decoding of logfmt key-value pairs.") -; (license license:expat))) -; -;(define-public go-github-com-go-logfmt-logfmt-0.4.0 -; (package -; (name "go-github-com-go-logfmt-logfmt") -; (version "0.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/go-logfmt/logfmt") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "06smxc112xmixz78nyvk3b2hmc7wasf2sl5vxj1xz62kqcq9lzm9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/go-logfmt/logfmt")) -; (propagated-inputs -; `(("go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515" -; ,go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515))) -; (home-page "https://github.com/go-logfmt/logfmt") -; (synopsis "logfmt") -; (description -; "Package logfmt implements utilities to marshal and unmarshal data in the logfmt -;format. The logfmt format records key/value pairs in a way that balances -;readability for humans and simplicity of computer parsing. It is most commonly -;used as a more human friendly alternative to JSON for structured logging.") -; (license license:expat))) -; -;(define-public go-github-com-golang-protobuf-1.3.1 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.3.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "15am4s4646qy6iv0g3kkqq52rzykqjhm4bf08dk0fy2r58knpsyl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code -;github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-github-com-google-uuid-1.1.1 -; (package -; (name "go-github-com-google-uuid") -; (version "1.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/uuid") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0hfxcf9frkb57k6q0rdkrmnfs78ms21r1qfk9fhlqga2yh5xg8zb")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/uuid")) -; (home-page "https://github.com/google/uuid") -; (synopsis "uuid") -; (description "Package uuid generates and inspects UUIDs.") -; (license license:bsd-3))) -; -;(define-public go-github-com-jpillora-backoff-0.0.0-20180909062703-3050d21c67d7 -; (package -; (name "go-github-com-jpillora-backoff") -; (version "0.0.0-20180909062703-3050d21c67d7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/jpillora/backoff") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1nxapdx9xg5gwiscfhq7m0w14hj4gaxb4avmgf1mx9zd3jnw9jxv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/jpillora/backoff")) -; (home-page "https://github.com/jpillora/backoff") -; (synopsis "Backoff") -; (description -; "Package backoff provides an exponential-backoff implementation.") -; (license license:expat))) -; -;(define-public go-github-com-kr-pty-1.1.1 -; (package -; (name "go-github-com-kr-pty") -; (version "1.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kr/pty") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0383f0mb9kqjvncqrfpidsf8y6ns5zlrc91c6a74xpyxjwvzl2y6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kr/pty")) -; (home-page "https://github.com/kr/pty") -; (synopsis "pty") -; (description -; "Package pty is a wrapper for github.com/creack/pty, which provides functions for -;working with Unix terminals.") -; (license license:expat))) -; -;(define-public go-github-com-kr-text-0.1.0 -; (package -; (name "go-github-com-kr-text") -; (version "0.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kr/text") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1gm5bsl01apvc84bw06hasawyqm4q84vx1pm32wr9jnd7a8vjgj1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kr/text")) -; (propagated-inputs -; `(("go-github-com-kr-pty-1.1.1" ,go-github-com-kr-pty-1.1.1))) -; (home-page "https://github.com/kr/text") -; (synopsis #f) -; (description -; "Package text provides rudimentary functions for manipulating text in paragraphs.") -; (license license:expat))) -; -;(define-public go-github-com-kr-pretty-0.2.0 -; (package -; (name "go-github-com-kr-pretty") -; (version "0.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kr/pretty") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ywbfzz1h3a3qd8rpkiqwi1dm4w8ls9ijb4x1b7567grns9f0vnp")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kr/pretty")) -; (propagated-inputs -; `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) -; (home-page "https://github.com/kr/pretty") -; (synopsis #f) -; (description -; "Package pretty provides pretty-printing for Go values. This is useful during -;debugging, to avoid wrapping long output lines in the terminal.") -; (license license:expat))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190222072716-a9d3bda3a223") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1w45zc13xrjzl19s1sx74r5mg3lf2z2nm13wygcdq5r5pyjlhdz9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-mattn-go-isatty-0.0.8 -; (package -; (name "go-github-com-mattn-go-isatty") -; (version "0.0.8") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mattn/go-isatty") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0rqfh1rj6f5wm8p2ky7inm8g10152p7w6n2cli17kf9gad797i8h")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mattn/go-isatty")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223" -; ,go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223))) -; (home-page "https://github.com/mattn/go-isatty") -; (synopsis "go-isatty") -; (description "Package isatty implements interface to isatty") -; (license license:expat))) -; -;(define-public go-github-com-mattn-go-colorable-0.1.2 -; (package -; (name "go-github-com-mattn-go-colorable") -; (version "0.1.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mattn/go-colorable") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0512jm3wmzkkn7d99x9wflyqf48n5ri3npy1fqkq6l6adc5mni3n")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mattn/go-colorable")) -; (propagated-inputs -; `(("go-github-com-mattn-go-isatty-0.0.8" -; ,go-github-com-mattn-go-isatty-0.0.8))) -; (home-page "https://github.com/mattn/go-colorable") -; (synopsis "go-colorable") -; (description "Colorable writer for windows.") -; (license license:expat))) -; -;(define-public go-github-com-pkg-errors-0.8.1 -; (package -; (name "go-github-com-pkg-errors") -; (version "0.8.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/pkg/errors") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0g5qcb4d4fd96midz0zdk8b9kz8xkzwfa8kr1cliqbg8sxsy5vd1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/pkg/errors")) -; (home-page "https://github.com/pkg/errors") -; (synopsis "errors") -; (description "Package errors provides simple error handling primitives.") -; (license license:bsd-2))) -; -;(define-public go-github-com-rogpeppe-fastuuid-1.1.0 -; (package -; (name "go-github-com-rogpeppe-fastuuid") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/rogpeppe/fastuuid") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1jlif5pxyz3md02ij93kd2y2j1zz0ajc9k8azvn83vv6l3r5c1zg")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/rogpeppe/fastuuid")) -; (home-page "https://github.com/rogpeppe/fastuuid") -; (synopsis "fastuuid") -; (description -; "Package fastuuid provides fast UUID generation of 192 bit universally unique -;identifiers.") -; (license license:bsd-3))) -; -;(define-public go-github-com-smartystreets-go-aws-auth-0.0.0-20180515143844-0c1422d1fdb9 -; (package -; (name "go-github-com-smartystreets-go-aws-auth") -; (version "0.0.0-20180515143844-0c1422d1fdb9") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/smarty-archives/go-aws-auth") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0krfdpgn3gfii1z9fi8ydfw0wwfqyvp6w3rji7w92m528zkjl93d")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/smartystreets/go-aws-auth")) -; (home-page "https://github.com/smartystreets/go-aws-auth") -; (synopsis "go-aws-auth") -; (description -; "Package awsauth implements AWS request signing using Signed Signature Version 2, -;Signed Signature Version 3, and Signed Signature Version 4. Supports S3 and -;STS.") -; (license license:expat))) -; -;(define-public go-github-com-smartystreets-assertions-1.0.0 -; (package -; (name "go-github-com-smartystreets-assertions") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/smartystreets/assertions") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1188hs39zvil41sdnxs83h1hp319lfyc5n2rvd1xnhz1dh5qjjh4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/smartystreets/assertions")) -; (home-page "https://github.com/smartystreets/assertions") -; (synopsis #f) -; (description -; "Package assertions contains the implementations for all assertions which are -;referenced in goconvey's `convey` package -;(github.com/smartystreets/goconvey/convey) and gunit -;(github.com/smartystreets/gunit) for use with the So(...) method. They can also -;be used in traditional Go test functions and even in applications.") -; (license license:expat))) -; -;(define-public go-github-com-smartystreets-gunit-1.0.0 -; (package -; (name "go-github-com-smartystreets-gunit") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/smartystreets/gunit") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "11d09rl5qqpj36a311pjj8w5jkj83d5b8gdcsx8f1zn4j924sm5d")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/smartystreets/gunit")) -; (propagated-inputs -; `(("go-github-com-smartystreets-assertions-1.0.0" -; ,go-github-com-smartystreets-assertions-1.0.0))) -; (home-page "https://github.com/smartystreets/gunit") -; (synopsis "gunit") -; (description -; "Package gunit provides \"testing\" package hooks and convenience functions for -;writing tests in an xUnit style. See the README file and the examples folder -;for examples.") -; (license license:expat))) -; -;(define-public go-github-com-davecgh-go-spew-1.1.1 -; (package -; (name "go-github-com-davecgh-go-spew") -; (version "1.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/davecgh/go-spew") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/davecgh/go-spew")) -; (home-page "https://github.com/davecgh/go-spew") -; (synopsis "go-spew") -; (description -; "Go-spew implements a deep pretty printer for Go data structures to aid in -;debugging. A comprehensive suite of tests with 100% test coverage is provided -;to ensure proper functionality. See @code{test_coverage.txt} for the gocov -;coverage report. Go-spew is licensed under the liberal ISC license, so it may -;be used in open source or commercial projects.") -; (license license:isc))) -; -;(define-public go-github-com-davecgh-go-spew-1.1.0 -; (package -; (name "go-github-com-davecgh-go-spew") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/davecgh/go-spew") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/davecgh/go-spew")) -; (home-page "https://github.com/davecgh/go-spew") -; (synopsis "go-spew") -; (description -; "Go-spew implements a deep pretty printer for Go data structures to aid in -;debugging. A comprehensive suite of tests with 100% test coverage is provided -;to ensure proper functionality. See @code{test_coverage.txt} for the gocov -;coverage report. Go-spew is licensed under the liberal ISC license, so it may -;be used in open source or commercial projects.") -; (license license:isc))) -; -;(define-public go-github-com-pmezard-go-difflib-1.0.0 -; (package -; (name "go-github-com-pmezard-go-difflib") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/pmezard/go-difflib") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/pmezard/go-difflib")) -; (home-page "https://github.com/pmezard/go-difflib") -; (synopsis "go-difflib") -; (description -; "Go-difflib is a partial port of python 3 difflib package. Its main goal was to -;make unified and context diff available in pure Go, mostly for testing purposes.") -; (license license:bsd-3))) -; -;(define-public go-github-com-stretchr-objx-0.1.0 -; (package -; (name "go-github-com-stretchr-objx") -; (version "0.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/objx") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/objx")) -; (home-page "https://github.com/stretchr/objx") -; (synopsis "Objx") -; (description -; "Objx - Go package for dealing with maps, slices, JSON and other data.") -; (license license:expat))) -; -;(define-public go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c -; (package -; (name "go-gopkg-in-yaml-v3") -; (version "3.0.0-20200313102051-9f266ea9e77c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/yaml.v3") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1bbai3lzb50m0x2vwsdbagrbhvfylj9k1m32hgbqwldqx4p9ay35")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" -; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) -; (home-page "https://gopkg.in/yaml.v3") -; (synopsis "YAML support for the Go language") -; (description "Package yaml implements YAML support for the Go language.") -; (license license:expat))) -; -;(define-public go-github-com-stretchr-testify-1.6.1 -; (package -; (name "go-github-com-stretchr-testify") -; (version "1.6.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/testify") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1yhiqqzjvi63pf01rgzx68gqkkvjx03fvl5wk30br5l6s81s090l")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/testify")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" -; ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) -; ("go-github-com-stretchr-objx-0.1.0" -; ,go-github-com-stretchr-objx-0.1.0) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-davecgh-go-spew-1.1.0" -; ,go-github-com-davecgh-go-spew-1.1.0))) -; (home-page "https://github.com/stretchr/testify") -; (synopsis "Testify - Thou Shalt Write Tests") -; (description -; "** We are working on testify v2 and would love to hear what you'd like to see in -;it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -;Package testify is a set of packages that provide many tools for testifying that -;your code will behave as you intend.") -; (license license:expat))) -; -;(define-public go-gopkg-in-yaml-v3-3.0.0-20200605160147-a5ece683394c -; (package -; (name "go-gopkg-in-yaml-v3") -; (version "3.0.0-20200605160147-a5ece683394c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/yaml.v3") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "03cm7c3p5fh0aa8vnxv5010dgqqr268ivb480ix1salxx3396w68")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" -; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) -; (home-page "https://gopkg.in/yaml.v3") -; (synopsis "YAML support for the Go language") -; (description "Package yaml implements YAML support for the Go language.") -; (license license:expat))) -; -;(define-public go-github-com-tj-assert-0.0.3 -; (package -; (name "go-github-com-tj-assert") -; (version "0.0.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/tj/assert") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1j5swk3fjq1h5fpqkipddz2ccnbidr7qrpm5dpdaflg9q5jnc673")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/tj/assert")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v3-3.0.0-20200605160147-a5ece683394c" -; ,go-gopkg-in-yaml-v3-3.0.0-20200605160147-a5ece683394c) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://github.com/tj/assert") -; (synopsis "assert") -; (description -; "Package assert implements the same assertions as the `assert` package but stops -;test execution when a test fails.") -; (license license:expat))) -; -;(define-public go-github-com-tj-go-buffer-1.1.0 -; (package -; (name "go-github-com-tj-go-buffer") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/tj/go-buffer") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1qdxpa069pjjbzh217aadpzz1aq1n6h32lhp60yjcpi7hr4q8fxx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/tj/go-buffer")) -; (propagated-inputs -; `(("go-github-com-tj-assert-0.0.3" ,go-github-com-tj-assert-0.0.3))) -; (home-page "https://github.com/tj/go-buffer") -; (synopsis "Buffer") -; (description -; "Package buffer provides a generic buffer or batching mechanism for flushing -;entries at a given size or interval, useful for cases such as batching log -;events.") -; (license license:expat))) -; -;(define-public go-github-com-tj-go-elastic-0.0.0-20171221160941-36157cbbebc2 -; (package -; (name "go-github-com-tj-go-elastic") -; (version "0.0.0-20171221160941-36157cbbebc2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/tj/go-elastic") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1r94vc4hbfvqvjz74n4mvsw4dy3vbyzlivb90kyn8vn76a4wqk69")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/tj/go-elastic")) -; (home-page "https://github.com/tj/go-elastic") -; (synopsis "go-elastic") -; (description -; "Package elastic provides an Elasticsearch client with AWS sigv4 support.") -; (license license:expat))) -; -;(define-public go-github-com-tj-go-kinesis-0.0.0-20171128231115-08b17f58cb1b -; (package -; (name "go-github-com-tj-go-kinesis") -; (version "0.0.0-20171128231115-08b17f58cb1b") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/tj/go-kinesis") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "108c6p5j6rhhc2cnc2v5368yfsw73y6lzlvz02vpvvjph8rhmld4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/tj/go-kinesis")) -; (home-page "https://github.com/tj/go-kinesis") -; (synopsis "go-kinesis") -; (description -; "Package kinesis implements a batch producer built on top of the official AWS -;SDK.") -; (license license:expat))) -; -;(define-public go-github-com-tj-go-spin-1.1.0 -; (package -; (name "go-github-com-tj-go-spin") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/tj/go-spin") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "11xr67991m5pwsy1dira3iwd0sr55vmn1cyjwmlqziw4bwpym64s")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/tj/go-spin")) -; (home-page "https://github.com/tj/go-spin") -; (synopsis #f) -; (description #f) -; (license #f))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20190308221718-c2843e01d9a2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190215142949-d0b11bdaac8a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-text-0.3.0 -; (package -; (name "go-golang-org-x-text") -; (version "0.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/text") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/text")) -; (home-page "https://golang.org/x/text") -; (synopsis "Go Text") -; (description -; "text is a repository of text-related packages related to internationalization -;(i18n) and localization (l10n), such as character encodings, text -;transformations, and locale-specific text handling.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20190620200207-3b0461eec859") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0l00c8l0a8xnv6qdpwfzxxsr58jggacgzdrwiprrfx2xqm37b6d5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20180917221912-90fa682c2a6e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-text-0.3.2 -; (package -; (name "go-golang-org-x-text") -; (version "0.3.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/text") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0flv9idw0jm5nm8lx25xqanbkqgfiym6619w575p7nrdh0riqwqh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/text")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" -; ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) -; (home-page "https://golang.org/x/text") -; (synopsis "Go Text") -; (description -; "text is a repository of text-related packages related to internationalization -;(i18n) and localization (l10n), such as character encodings, text -;transformations, and locale-specific text handling.") -; (license license:bsd-3))) -; -;(define-public go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15 -; (package -; (name "go-gopkg-in-check-v1") -; (version "1.0.0-20190902080502-41f04d3bba15") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/check.v1") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0vfk9czmlxmp6wndq8k17rhnjxal764mxfhrccza7nwlia760pjy")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) -; (home-page "https://gopkg.in/check.v1") -; (synopsis "Instructions") -; (description -; "Package check is a rich testing extension for Go's testing package.") -; (license license:bsd-2))) -; -;(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 -; (package -; (name "go-gopkg-in-check-v1") -; (version "0.0.0-20161208181325-20d25e280405") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/check.v1") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) -; (home-page "https://gopkg.in/check.v1") -; (synopsis "Instructions") -; (description -; "Package check is a rich testing extension for Go's testing package.") -; (license license:bsd-2))) -; -;(define-public go-gopkg-in-yaml-v2-2.2.2 -; (package -; (name "go-gopkg-in-yaml-v2") -; (version "2.2.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/yaml.v2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "01wj12jzsdqlnidpyjssmj0r4yavlqy7dwrg7adqd8dicjc4ncsa")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" -; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) -; (home-page "https://gopkg.in/yaml.v2") -; (synopsis "YAML support for the Go language") -; (description "Package yaml implements YAML support for the Go language.") -; (license license:asl2.0))) -; -;(define-public go-github-com-apex-log-1.9.0 -; (package -; (name "go-github-com-apex-log") -; (version "1.9.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/apex/log") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ibqkncnb8wcwilg2kyfyl5541g69rg551iy6m61q6iwdn5vfhi2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/apex/log")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) -; ("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" -; ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) -; ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) -; ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" -; ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) -; ("go-github-com-tj-go-spin-1.1.0" ,go-github-com-tj-go-spin-1.1.0) -; ("go-github-com-tj-go-kinesis-0.0.0-20171128231115-08b17f58cb1b" -; ,go-github-com-tj-go-kinesis-0.0.0-20171128231115-08b17f58cb1b) -; ("go-github-com-tj-go-elastic-0.0.0-20171221160941-36157cbbebc2" -; ,go-github-com-tj-go-elastic-0.0.0-20171221160941-36157cbbebc2) -; ("go-github-com-tj-go-buffer-1.1.0" ,go-github-com-tj-go-buffer-1.1.0) -; ("go-github-com-tj-assert-0.0.3" ,go-github-com-tj-assert-0.0.3) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-smartystreets-gunit-1.0.0" -; ,go-github-com-smartystreets-gunit-1.0.0) -; ("go-github-com-smartystreets-go-aws-auth-0.0.0-20180515143844-0c1422d1fdb9" -; ,go-github-com-smartystreets-go-aws-auth-0.0.0-20180515143844-0c1422d1fdb9) -; ("go-github-com-rogpeppe-fastuuid-1.1.0" -; ,go-github-com-rogpeppe-fastuuid-1.1.0) -; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) -; ("go-github-com-mattn-go-colorable-0.1.2" -; ,go-github-com-mattn-go-colorable-0.1.2) -; ("go-github-com-kr-pretty-0.2.0" ,go-github-com-kr-pretty-0.2.0) -; ("go-github-com-jpillora-backoff-0.0.0-20180909062703-3050d21c67d7" -; ,go-github-com-jpillora-backoff-0.0.0-20180909062703-3050d21c67d7) -; ("go-github-com-google-uuid-1.1.1" ,go-github-com-google-uuid-1.1.1) -; ("go-github-com-golang-protobuf-1.3.1" -; ,go-github-com-golang-protobuf-1.3.1) -; ("go-github-com-go-logfmt-logfmt-0.4.0" -; ,go-github-com-go-logfmt-logfmt-0.4.0) -; ("go-github-com-fatih-color-1.7.0" ,go-github-com-fatih-color-1.7.0) -; ("go-github-com-aybabtme-rgbterm-0.0.0-20170906152045-cc83f3b3ce59" -; ,go-github-com-aybabtme-rgbterm-0.0.0-20170906152045-cc83f3b3ce59) -; ("go-github-com-aws-aws-sdk-go-1.20.6" -; ,go-github-com-aws-aws-sdk-go-1.20.6) -; ("go-github-com-aphistic-sweet-0.2.0" -; ,go-github-com-aphistic-sweet-0.2.0) -; ("go-github-com-aphistic-golf-0.0.0-20180712155816-02c07f170c5a" -; ,go-github-com-aphistic-golf-0.0.0-20180712155816-02c07f170c5a) -; ("go-github-com-apex-logs-1.0.0" ,go-github-com-apex-logs-1.0.0))) -; (home-page "https://github.com/apex/log") -; (synopsis "Handlers") -; (description -; "Package log implements a simple structured logging API designed with few -;assumptions. Designed for centralized logging solutions such as Kinesis which -;require encoding and decoding before fanning-out to handlers.") -; (license license:expat))) -; -;(define-public go-github-com-sylabs-json-resp-0.8.0 -; (package -; (name "go-github-com-sylabs-json-resp") -; (version "0.8.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/sylabs/json-resp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ygr4mavaj1pp78hkkphhn3ydd923n3klwnx8x7v4ajqzx4cx4id")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/sylabs/json-resp")) -; (home-page "https://github.com/sylabs/json-resp") -; (synopsis "JSON Response") -; (description -; "The @code{json-resp} package contains a small set of functions that are used to -;marshall and unmarshall response data and errors in JSON format.") -; (license license:bsd-3))) -; -;(define-public go-github-com-apptainer-container-key-client-0.7.2 -; (package -; (name "go-github-com-apptainer-container-key-client") -; (version "0.7.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/apptainer/container-key-client") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0f4bb1k8pi37alzgzvjw23ynp54752qwgnr9gim3vc061qcjx377")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/apptainer/container-key-client")) -; (propagated-inputs -; `(("go-github-com-sylabs-json-resp-0.8.0" -; ,go-github-com-sylabs-json-resp-0.8.0))) -; (home-page "https://github.com/apptainer/container-key-client") -; (synopsis "Container Key Client") -; (description -; "This project provides a Go client to Apptainer for key storage and retrieval -;using the HKP protocol. Forked from -;@url{https://github.com/sylabs/scs-key-client,sylabs/scs-key-client}.") -; (license license:bsd-3))) -; -;(define-public go-github-com-blang-semver-v4-4.0.0 -; (package -; (name "go-github-com-blang-semver-v4") -; (version "4.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/blang/semver") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "14h9ys4n4kx9cbj42lkdf4i5k3nkll6sd62jcvl7cs565v6fiknz")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/blang/semver/v4")) -; (home-page "https://github.com/blang/semver") -; (synopsis #f) -; (description #f) -; (license license:expat))) -; -;(define-public go-github-com-go-log-log-0.2.0 -; (package -; (name "go-github-com-go-log-log") -; (version "0.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/go-log/log") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1idnqv4yvkmdh3wcsgvhcpak9z6ix8dsifdjq5kfbbnskdq5rmvg")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/go-log/log")) -; (home-page "https://github.com/go-log/log") -; (synopsis "Log") -; (description "Package log provides a log interface") -; (license license:expat))) -; -;(define-public go-github-com-stretchr-objx-0.1.0 -; (package -; (name "go-github-com-stretchr-objx") -; (version "0.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/objx") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/objx")) -; (home-page "https://github.com/stretchr/objx") -; (synopsis "Objx") -; (description -; "Objx - Go package for dealing with maps, slices, JSON and other data.") -; (license license:expat))) -; -;(define-public go-github-com-stretchr-testify-1.7.0 -; (package -; (name "go-github-com-stretchr-testify") -; (version "1.7.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/testify") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ixgjsvafr3513pz3r6pmgk074s2dxkll0dadvl25gkf30rkmh10")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/testify")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" -; ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) -; ("go-github-com-stretchr-objx-0.1.0" -; ,go-github-com-stretchr-objx-0.1.0) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-davecgh-go-spew-1.1.0" -; ,go-github-com-davecgh-go-spew-1.1.0))) -; (home-page "https://github.com/stretchr/testify") -; (synopsis "Testify - Thou Shalt Write Tests") -; (description -; "** We are working on testify v2 and would love to hear what you'd like to see in -;it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -;Package testify is a set of packages that provide many tools for testifying that -;your code will behave as you intend.") -; (license license:expat))) -; -;(define-public go-github-com-sylabs-json-resp-0.8.0 -; (package -; (name "go-github-com-sylabs-json-resp") -; (version "0.8.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/sylabs/json-resp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ygr4mavaj1pp78hkkphhn3ydd923n3klwnx8x7v4ajqzx4cx4id")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/sylabs/json-resp")) -; (home-page "https://github.com/sylabs/json-resp") -; (synopsis "JSON Response") -; (description -; "The @code{json-resp} package contains a small set of functions that are used to -;marshall and unmarshall response data and errors in JSON format.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a -; (package -; (name "go-golang-org-x-sync") -; (version "0.0.0-20200317015054-43a5402ce75a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sync") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0j6zrrb81qjr1926kkwmn0di9a0jn8qyjd9dw614rfkihxgq1vsm")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sync")) -; (home-page "https://golang.org/x/sync") -; (synopsis "Go Sync") -; (description -; "This repository provides Go concurrency primitives in addition to the ones -;provided by the language and \"sync\" and \"sync/atomic\" packages.") -; (license license:bsd-3))) -; -;(define-public go-github-com-davecgh-go-spew-1.1.0 -; (package -; (name "go-github-com-davecgh-go-spew") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/davecgh/go-spew") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/davecgh/go-spew")) -; (home-page "https://github.com/davecgh/go-spew") -; (synopsis "go-spew") -; (description -; "Go-spew implements a deep pretty printer for Go data structures to aid in -;debugging. A comprehensive suite of tests with 100% test coverage is provided -;to ensure proper functionality. See @code{test_coverage.txt} for the gocov -;coverage report. Go-spew is licensed under the liberal ISC license, so it may -;be used in open source or commercial projects.") -; (license license:isc))) -; -;(define-public go-github-com-pmezard-go-difflib-1.0.0 -; (package -; (name "go-github-com-pmezard-go-difflib") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/pmezard/go-difflib") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/pmezard/go-difflib")) -; (home-page "https://github.com/pmezard/go-difflib") -; (synopsis "go-difflib") -; (description -; "Go-difflib is a partial port of python 3 difflib package. Its main goal was to -;make unified and context diff available in pure Go, mostly for testing purposes.") -; (license license:bsd-3))) -; -;(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 -; (package -; (name "go-gopkg-in-check-v1") -; (version "0.0.0-20161208181325-20d25e280405") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/check.v1") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) -; (home-page "https://gopkg.in/check.v1") -; (synopsis "Instructions") -; (description -; "Package check is a rich testing extension for Go's testing package.") -; (license license:bsd-2))) -; -;(define-public go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c -; (package -; (name "go-gopkg-in-yaml-v3") -; (version "3.0.0-20200313102051-9f266ea9e77c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/yaml.v3") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1bbai3lzb50m0x2vwsdbagrbhvfylj9k1m32hgbqwldqx4p9ay35")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" -; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) -; (home-page "https://gopkg.in/yaml.v3") -; (synopsis "YAML support for the Go language") -; (description "Package yaml implements YAML support for the Go language.") -; (license license:expat))) -; -;(define-public go-github-com-apptainer-container-library-client-1.2.2 -; (package -; (name "go-github-com-apptainer-container-library-client") -; (version "1.2.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/apptainer/container-library-client") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1f6pxzk0k9jf9612kjw6jlmrs8yzqqrvhjwfxwri1q1d4i410a0h")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "github.com/apptainer/container-library-client")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" -; ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-davecgh-go-spew-1.1.0" -; ,go-github-com-davecgh-go-spew-1.1.0) -; ("go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a" -; ,go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a) -; ("go-github-com-sylabs-json-resp-0.8.0" -; ,go-github-com-sylabs-json-resp-0.8.0) -; ("go-github-com-stretchr-testify-1.7.0" -; ,go-github-com-stretchr-testify-1.7.0) -; ("go-github-com-go-log-log-0.2.0" ,go-github-com-go-log-log-0.2.0) -; ("go-github-com-blang-semver-v4-4.0.0" -; ,go-github-com-blang-semver-v4-4.0.0))) -; (home-page "https://github.com/apptainer/container-library-client") -; (synopsis "Container Library Client") -; (description -; "This project provides a Go client to Apptainer for the container library. -;Forked from -;@url{https://github.com/sylabs/scs-library-client,sylabs/scs-library-client}.") -; (license license:bsd-3))) -; -;(define-public go-github-com-blang-semver-v4-4.0.0 -; (package -; (name "go-github-com-blang-semver-v4") -; (version "4.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/blang/semver") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "14h9ys4n4kx9cbj42lkdf4i5k3nkll6sd62jcvl7cs565v6fiknz")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/blang/semver/v4")) -; (home-page "https://github.com/blang/semver") -; (synopsis #f) -; (description #f) -; (license license:expat))) -; -;(define-public go-github-com-buger-jsonparser-1.1.1 -; (package -; (name "go-github-com-buger-jsonparser") -; (version "1.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/buger/jsonparser") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0qv2lsh2biwxn927941gqiv5pqg7n4v58j0i536pjp7pr17pq7dp")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/buger/jsonparser")) -; (home-page "https://github.com/buger/jsonparser") -; (synopsis -; "Alternative JSON parser for Go (10x times faster standard library)") -; (description -; "It does not require you to know the structure of the payload (eg. create -;structs), and allows accessing fields by providing the path to them. It is up -;to @strong{10 times faster} than standard @code{encoding/json} package -;(depending on payload size and usage), @strong{allocates no memory}. See -;benchmarks below.") -; (license license:expat))) -; -;(define-public go-github-com-cenkalti-backoff-v4-4.1.2 -; (package -; (name "go-github-com-cenkalti-backoff-v4") -; (version "4.1.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/cenkalti/backoff") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "08c28226q612i1pv83161y57qh16631vpc51ai9f76qfrzsy946z")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/cenkalti/backoff/v4")) -; (home-page "https://github.com/cenkalti/backoff") -; (synopsis "Exponential Backoff") -; (description -; "Package backoff implements backoff algorithms for retrying operations.") -; (license license:expat))) -; -;(define-public go-github-com-kr-pretty-0.2.1 -; (package -; (name "go-github-com-kr-pretty") -; (version "0.2.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kr/pretty") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0vzfz06y9q8gs2nxx0kys0591vzp78k0fvpb8digi5n15h3b25hy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kr/pretty")) -; (propagated-inputs -; `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) -; (home-page "https://github.com/kr/pretty") -; (synopsis #f) -; (description -; "Package pretty provides pretty-printing for Go values. This is useful during -;debugging, to avoid wrapping long output lines in the terminal.") -; (license license:expat))) -; -;(define-public go-github-com-frankban-quicktest-1.11.3 -; (package -; (name "go-github-com-frankban-quicktest") -; (version "1.11.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/frankban/quicktest") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0d5njmwkfq2809vlimnlvy8ir6kln0c4cgdwr680fwsclpbr43qs")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/frankban/quicktest")) -; (propagated-inputs -; `(("go-github-com-kr-pretty-0.2.1" ,go-github-com-kr-pretty-0.2.1) -; ("go-github-com-google-go-cmp-0.5.4" -; ,go-github-com-google-go-cmp-0.5.4))) -; (home-page "https://github.com/frankban/quicktest") -; (synopsis "quicktest") -; (description -; "Package quicktest provides a collection of Go helpers for writing tests.") -; (license license:expat))) -; -;(define-public go-github-com-google-go-cmp-0.5.4 -; (package -; (name "go-github-com-google-go-cmp") -; (version "0.5.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/go-cmp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ld9pwb6l22g75g1zpa691l7q9ki7pjgpcqhwgdfr3va1zisr5ci")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/go-cmp")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" -; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) -; (home-page "https://github.com/google/go-cmp") -; (synopsis "Package for equality of Go values") -; (description -; "This package is intended to be a more powerful and safer alternative to -;@code{reflect.DeepEqual} for comparing whether two values are semantically -;equal.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20210124154548-22da62e12c0c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "17gp3dl75wq3x7j9z1pqgcyvjhvy9jaln1wbscy57al3whdsjp07")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-cilium-ebpf-0.4.0 -; (package -; (name "go-github-com-cilium-ebpf") -; (version "0.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/cilium/ebpf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1j33vfz8mxnqadkd17l0y3ll71gph3ndm8hwrwbwnf5px7bfv9yl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/cilium/ebpf")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" -; ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) -; ("go-github-com-google-go-cmp-0.5.4" -; ,go-github-com-google-go-cmp-0.5.4) -; ("go-github-com-frankban-quicktest-1.11.3" -; ,go-github-com-frankban-quicktest-1.11.3))) -; (home-page "https://github.com/cilium/ebpf") -; (synopsis "eBPF") -; (description "Package ebpf is a toolkit for working with eBPF programs.") -; (license license:expat))) -; -;(define-public go-github-com-coreos-go-systemd-v22-22.3.2 -; (package -; (name "go-github-com-coreos-go-systemd-v22") -; (version "22.3.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/coreos/go-systemd") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ndi86b8va84ha93njqgafypz4di7yxfd5r5kf1r0s3y3ghcjajq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/coreos/go-systemd/v22")) -; (propagated-inputs -; `(("go-github-com-godbus-dbus-v5-5.0.4" -; ,go-github-com-godbus-dbus-v5-5.0.4))) -; (home-page "https://github.com/coreos/go-systemd") -; (synopsis "go-systemd") -; (description "Go bindings to systemd. The project has several packages:") -; (license license:asl2.0))) -; -;(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0 -; (package -; (name "go-github-com-cpuguy83-go-md2man-v2") -; (version "2.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/cpuguy83/go-md2man") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) -; (propagated-inputs -; `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" -; ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) -; ("go-github-com-russross-blackfriday-v2-2.0.1" -; ,go-github-com-russross-blackfriday-v2-2.0.1) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0))) -; (home-page "https://github.com/cpuguy83/go-md2man") -; (synopsis "go-md2man") -; (description "Converts markdown into roff (man pages).") -; (license license:expat))) -; -;(define-public go-github-com-docker-go-units-0.4.0 -; (package -; (name "go-github-com-docker-go-units") -; (version "0.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/docker/go-units") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0k8gja8ql4pqg5rzmqvka42vjfs6rzablak87whcnqba6qxpimvz")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/docker/go-units")) -; (home-page "https://github.com/docker/go-units") -; (synopsis "Introduction") -; (description -; "Package units provides helper function to parse and print size and time units in -;human-readable format.") -; (license license:asl2.0))) -; -;(define-public go-github-com-godbus-dbus-v5-5.0.4 -; (package -; (name "go-github-com-godbus-dbus-v5") -; (version "5.0.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/godbus/dbus") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0znax8kskb5gmp5fj75w56bc9p7b22wrdswzlh4d04sprlc471yi")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/godbus/dbus/v5")) -; (home-page "https://github.com/godbus/dbus") -; (synopsis "dbus") -; (description -; "Package dbus implements bindings to the D-Bus message bus system.") -; (license license:bsd-2))) -; -;(define-public go-github-com-yuin-goldmark-1.1.27 -; (package -; (name "go-github-com-yuin-goldmark") -; (version "1.1.27") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/yuin/goldmark") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1872cqnii0kwiqcy81yin0idvjy5mdy4zlzz0csb319lcjs3b923")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/yuin/goldmark")) -; (home-page "https://github.com/yuin/goldmark") -; (synopsis "goldmark") -; (description -; "Package goldmark implements functions to convert markdown text to a desired -;format.") -; (license license:expat))) -; -;(define-public go-golang-org-x-mod-0.2.0 -; (package -; (name "go-golang-org-x-mod") -; (version "0.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/mod") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1fp6885dclq77mh73v7i54v2b9llpv4di193zc8vmsbbkkc483cl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/mod")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" -; ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) -; ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" -; ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) -; ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" -; ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) -; (home-page "https://golang.org/x/mod") -; (synopsis "mod") -; (description -; "This repository holds packages for writing tools that work directly with Go -;module mechanics. That is, it is for direct manipulation of Go modules -;themselves.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20200226121028-0de0cce0169b") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1db7s5kbzyh2zd5lpv05n7hp8wbwdvgk0wpiwrlnig94mkr0y5aq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e -; (package -; (name "go-golang-org-x-sync") -; (version "0.0.0-20190911185100-cd5d95a43a6e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sync") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1nqkyz2y1qvqcma52ijh02s8aiqmkfb95j08f6zcjhbga3ds6hds")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sync")) -; (home-page "https://golang.org/x/sync") -; (synopsis "Go Sync") -; (description -; "This repository provides Go concurrency primitives in addition to the ones -;provided by the language and \"sync\" and \"sync/atomic\" packages.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543 -; (package -; (name "go-golang-org-x-xerrors") -; (version "0.0.0-20191204190536-9bdfabe68543") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/xerrors") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1yjfi1bk9xb81lqn85nnm13zz725wazvrx3b50hx19qmwg7a4b0c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/xerrors")) -; (home-page "https://golang.org/x/xerrors") -; (synopsis #f) -; (description "Package xerrors implements functions to manipulate errors.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20200619180055-7c47624df98f -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20200619180055-7c47624df98f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1fhzwd32j7w9g3algq0zj8g7ivx3f0mn9nx9mj046wdscryn49mk")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" -; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) -; ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" -; ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) -; ("go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b" -; ,go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b) -; ("go-golang-org-x-mod-0.2.0" ,go-golang-org-x-mod-0.2.0) -; ("go-github-com-yuin-goldmark-1.1.27" -; ,go-github-com-yuin-goldmark-1.1.27))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-github-com-kisielk-errcheck-1.5.0 -; (package -; (name "go-github-com-kisielk-errcheck") -; (version "1.5.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kisielk/errcheck") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ci3jz2px74pfmr42jv7dpx7fdzx08vai4czp9fkiyb0gcaiqsk6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kisielk/errcheck")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20200619180055-7c47624df98f" -; ,go-golang-org-x-tools-0.0.0-20200619180055-7c47624df98f))) -; (home-page "https://github.com/kisielk/errcheck") -; (synopsis "errcheck") -; (description -; "errcheck is a program for checking for unchecked errors in go programs.") -; (license license:expat))) -; -;(define-public go-github-com-kisielk-gotool-1.0.0 -; (package -; (name "go-github-com-kisielk-gotool") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kisielk/gotool") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "14af2pa0ssyp8bp2mvdw184s5wcysk6akil3wzxmr05wwy951iwn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kisielk/gotool")) -; (home-page "https://github.com/kisielk/gotool") -; (synopsis "gotool") -; (description -; "Package gotool contains utility functions used to implement the standard -;\"cmd/go\" tool, provided as a convenience to developers who want to write tools -;with similar semantics.") -; (license license:expat))) -; -;(define-public go-github-com-yuin-goldmark-1.2.1 -; (package -; (name "go-github-com-yuin-goldmark") -; (version "1.2.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/yuin/goldmark") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "12rsnsf65drcp0jfw2jl9w589vsn3pxdk1zh3v9q908iigngrcmy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/yuin/goldmark")) -; (home-page "https://github.com/yuin/goldmark") -; (synopsis "goldmark") -; (description -; "Package goldmark implements functions to convert markdown text to a desired -;format.") -; (license license:expat))) -; -;(define-public go-golang-org-x-mod-0.3.0 -; (package -; (name "go-golang-org-x-mod") -; (version "0.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/mod") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ldgbx2zpprbsfn6p8pfgs4nn87gwbfcv2z0fa7n8alwsq2yw78q")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/mod")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" -; ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) -; ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" -; ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) -; ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" -; ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) -; (home-page "https://golang.org/x/mod") -; (synopsis "mod") -; (description -; "This repository holds packages for writing tools that work directly with Go -;module mechanics. That is, it is for direct manipulation of Go modules -;themselves.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20200622213623-75b288015ac9") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "18vlncvvs11ds3zaaziqjlg5s2vcwi3496nn6qv7p0dp94j5pwa2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" -; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) -; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" -; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20200930185726-fdedc70b468f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1njlfhjbvi4lxvjbq8zswrb0y0q4jd2p6x51h1q6vmyzi9af6869")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20201021035429-f5854403a974 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20201021035429-f5854403a974") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1vw63zpmhi337f3gc432x3wkib4j2ia8dy7if31wxwb9dgqvy222")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) -; ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" -; ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) -; ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" -; ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9 -; (package -; (name "go-golang-org-x-sync") -; (version "0.0.0-20201020160332-67f06af15bc9") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sync") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "093p4panc808ak5bamzz7m9nb0xxib7778jpnr6f0xkz1n4fzyw5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sync")) -; (home-page "https://golang.org/x/sync") -; (synopsis "Go Sync") -; (description -; "This repository provides Go concurrency primitives in addition to the ones -;provided by the language and \"sync\" and \"sync/atomic\" packages.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20210106214847-113979e3529a -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20210106214847-113979e3529a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0pq1a7hkamqdwsajyfrb27s56cvxz5838krsgyqz346s2djwdrzl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" -; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) -; ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" -; ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) -; ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" -; ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) -; ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) -; ("go-github-com-yuin-goldmark-1.2.1" -; ,go-github-com-yuin-goldmark-1.2.1))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-github-com-gogo-protobuf-1.3.2 -; (package -; (name "go-github-com-gogo-protobuf") -; (version "1.3.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/gogo/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0dfv1bhx5zhb5bsj5sj757nkacf2swp1ajpcyj9d0b37n602m18a")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/gogo/protobuf")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20210106214847-113979e3529a" -; ,go-golang-org-x-tools-0.0.0-20210106214847-113979e3529a) -; ("go-github-com-kisielk-gotool-1.0.0" -; ,go-github-com-kisielk-gotool-1.0.0) -; ("go-github-com-kisielk-errcheck-1.5.0" -; ,go-github-com-kisielk-errcheck-1.5.0))) -; (home-page "https://github.com/gogo/protobuf") -; (synopsis "Protocol Buffers for Go with Gadgets") -; (description -; "gogoprotobuf is a fork of -;@url{https://github.com/golang/protobuf,golang/protobuf} with extra code -;generation features.") -; (license license:bsd-3))) -; -;(define-public go-github-com-opencontainers-runtime-spec-1.0.2 -; (package -; (name "go-github-com-opencontainers-runtime-spec") -; (version "1.0.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/runtime-spec") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "19w981vcmd5lp2hy0630x6ayb8zz17n2vxqm2py5mg945xflcizg")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) -; (home-page "https://github.com/opencontainers/runtime-spec") -; (synopsis "Open Container Initiative Runtime Specification") -; (description -; "The @url{https://www.opencontainers.org,Open Container Initiative} develops -;specifications for standards on Operating System process and application -;containers.") -; (license license:asl2.0))) -; -;(define-public go-github-com-davecgh-go-spew-1.1.1 -; (package -; (name "go-github-com-davecgh-go-spew") -; (version "1.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/davecgh/go-spew") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/davecgh/go-spew")) -; (home-page "https://github.com/davecgh/go-spew") -; (synopsis "go-spew") -; (description -; "Go-spew implements a deep pretty printer for Go data structures to aid in -;debugging. A comprehensive suite of tests with 100% test coverage is provided -;to ensure proper functionality. See @code{test_coverage.txt} for the gocov -;coverage report. Go-spew is licensed under the liberal ISC license, so it may -;be used in open source or commercial projects.") -; (license license:isc))) -; -;(define-public go-github-com-stretchr-testify-1.2.2 -; (package -; (name "go-github-com-stretchr-testify") -; (version "1.2.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/testify") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0dlszlshlxbmmfxj5hlwgv3r22x0y1af45gn1vd198nvvs3pnvfs")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/testify")) -; (home-page "https://github.com/stretchr/testify") -; (synopsis "Testify - Thou Shalt Write Tests") -; (description -; "** We are working on testify v2 and would love to hear what you'd like to see in -;it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -;Package testify is a set of packages that provide many tools for testifying that -;your code will behave as you intend.") -; (license license:expat))) -; -;(define-public go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20191026070338-33540a1f6037") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0fjcv0vzvi6za0b4xmnk3932pr9f9gczzf03y0kgq3ry9rqg169y")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-sirupsen-logrus-1.8.1 -; (package -; (name "go-github-com-sirupsen-logrus") -; (version "1.8.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/sirupsen/logrus") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0rvqzic2zz7fpxyizmqxwmhv1m52ii9bgxnqa6km8wsa0l08wh42")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/sirupsen/logrus")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037" -; ,go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037) -; ("go-github-com-stretchr-testify-1.2.2" -; ,go-github-com-stretchr-testify-1.2.2) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://github.com/sirupsen/logrus") -; (synopsis "Logrus") -; (description -; "Package logrus is a structured logger for Go, completely API compatible with the -;standard library logger.") -; (license license:expat))) -; -;(define-public go-github-com-burntsushi-toml-0.3.1 -; (package -; (name "go-github-com-burntsushi-toml") -; (version "0.3.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/BurntSushi/toml") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1fjdwwfzyzllgiwydknf1pwjvy49qxfsczqx5gz3y0izs7as99j6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/BurntSushi/toml")) -; (home-page "https://github.com/BurntSushi/toml") -; (synopsis "Testing") -; (description -; "Package toml implements decoding and encoding of TOML files.") -; (license license:expat))) -; -;(define-public go-github-com-russross-blackfriday-v2-2.0.1 -; (package -; (name "go-github-com-russross-blackfriday-v2") -; (version "2.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/russross/blackfriday") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0nlz7isdd4rgnwzs68499hlwicxz34j2k2a0b8jy0y7ycd2bcr5j")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/russross/blackfriday/v2")) -; (home-page "https://github.com/russross/blackfriday") -; (synopsis "Blackfriday") -; (description "Package blackfriday is a markdown processor.") -; (license license:bsd-2))) -; -;(define-public go-github-com-shurcool-sanitized-anchor-name-1.0.0 -; (package -; (name "go-github-com-shurcool-sanitized-anchor-name") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/shurcooL/sanitized_anchor_name") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1gv9p2nr46z80dnfjsklc6zxbgk96349sdsxjz05f3z6wb6m5l8f")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/shurcooL/sanitized_anchor_name")) -; (home-page "https://github.com/shurcooL/sanitized_anchor_name") -; (synopsis "sanitized_anchor_name") -; (description -; "Package sanitized_anchor_name provides a func to create sanitized anchor names.") -; (license license:expat))) -; -;(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d -; (package -; (name "go-github-com-cpuguy83-go-md2man-v2") -; (version "2.0.0-20190314233015-f79a8a8ca69d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/cpuguy83/go-md2man") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) -; (propagated-inputs -; `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" -; ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) -; ("go-github-com-russross-blackfriday-v2-2.0.1" -; ,go-github-com-russross-blackfriday-v2-2.0.1) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0))) -; (home-page "https://github.com/cpuguy83/go-md2man") -; (synopsis "go-md2man") -; (description "Converts markdown into roff (man pages).") -; (license license:expat))) -; -;(define-public go-gopkg-in-yaml-v2-2.2.2 -; (package -; (name "go-gopkg-in-yaml-v2") -; (version "2.2.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/yaml.v2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "01wj12jzsdqlnidpyjssmj0r4yavlqy7dwrg7adqd8dicjc4ncsa")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" -; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) -; (home-page "https://gopkg.in/yaml.v2") -; (synopsis "YAML support for the Go language") -; (description "Package yaml implements YAML support for the Go language.") -; (license license:asl2.0))) -; -;(define-public go-github-com-urfave-cli-1.22.2 -; (package -; (name "go-github-com-urfave-cli") -; (version "1.22.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/urfave/cli") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "10mcnvi5qmn00vpyk6si8gjka7p654wr9hac4zc9w5h3ickhvbdc")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/urfave/cli")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) -; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d" -; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d) -; ("go-github-com-burntsushi-toml-0.3.1" -; ,go-github-com-burntsushi-toml-0.3.1))) -; (home-page "https://github.com/urfave/cli") -; (synopsis "cli") -; (description -; "Package cli provides a minimal framework for creating and organizing command -;line Go applications. cli is designed to be easy to understand and write, the -;most simple cli application can be written as follows:") -; (license license:expat))) -; -;(define-public go-github-com-kr-pty-1.1.1 -; (package -; (name "go-github-com-kr-pty") -; (version "1.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kr/pty") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0383f0mb9kqjvncqrfpidsf8y6ns5zlrc91c6a74xpyxjwvzl2y6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kr/pty")) -; (home-page "https://github.com/kr/pty") -; (synopsis "pty") -; (description -; "Package pty is a wrapper for github.com/creack/pty, which provides functions for -;working with Unix terminals.") -; (license license:expat))) -; -;(define-public go-github-com-kr-text-0.1.0 -; (package -; (name "go-github-com-kr-text") -; (version "0.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kr/text") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1gm5bsl01apvc84bw06hasawyqm4q84vx1pm32wr9jnd7a8vjgj1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kr/text")) -; (propagated-inputs -; `(("go-github-com-kr-pty-1.1.1" ,go-github-com-kr-pty-1.1.1))) -; (home-page "https://github.com/kr/text") -; (synopsis #f) -; (description -; "Package text provides rudimentary functions for manipulating text in paragraphs.") -; (license license:expat))) -; -;(define-public go-github-com-kr-pretty-0.1.0 -; (package -; (name "go-github-com-kr-pretty") -; (version "0.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kr/pretty") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "18m4pwg2abd0j9cn5v3k2ksk9ig4vlwxmlw9rrglanziv9l967qp")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kr/pretty")) -; (propagated-inputs -; `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) -; (home-page "https://github.com/kr/pretty") -; (synopsis #f) -; (description -; "Package pretty provides pretty-printing for Go values. This is useful during -;debugging, to avoid wrapping long output lines in the terminal.") -; (license license:expat))) -; -;(define-public go-github-com-davecgh-go-spew-1.1.0 -; (package -; (name "go-github-com-davecgh-go-spew") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/davecgh/go-spew") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/davecgh/go-spew")) -; (home-page "https://github.com/davecgh/go-spew") -; (synopsis "go-spew") -; (description -; "Go-spew implements a deep pretty printer for Go data structures to aid in -;debugging. A comprehensive suite of tests with 100% test coverage is provided -;to ensure proper functionality. See @code{test_coverage.txt} for the gocov -;coverage report. Go-spew is licensed under the liberal ISC license, so it may -;be used in open source or commercial projects.") -; (license license:isc))) -; -;(define-public go-github-com-pmezard-go-difflib-1.0.0 -; (package -; (name "go-github-com-pmezard-go-difflib") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/pmezard/go-difflib") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/pmezard/go-difflib")) -; (home-page "https://github.com/pmezard/go-difflib") -; (synopsis "go-difflib") -; (description -; "Go-difflib is a partial port of python 3 difflib package. Its main goal was to -;make unified and context diff available in pure Go, mostly for testing purposes.") -; (license license:bsd-3))) -; -;(define-public go-github-com-stretchr-objx-0.1.0 -; (package -; (name "go-github-com-stretchr-objx") -; (version "0.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/objx") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/objx")) -; (home-page "https://github.com/stretchr/objx") -; (synopsis "Objx") -; (description -; "Objx - Go package for dealing with maps, slices, JSON and other data.") -; (license license:expat))) -; -;(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 -; (package -; (name "go-gopkg-in-check-v1") -; (version "0.0.0-20161208181325-20d25e280405") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/check.v1") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) -; (home-page "https://gopkg.in/check.v1") -; (synopsis "Instructions") -; (description -; "Package check is a rich testing extension for Go's testing package.") -; (license license:bsd-2))) -; -;(define-public go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c -; (package -; (name "go-gopkg-in-yaml-v3") -; (version "3.0.0-20200313102051-9f266ea9e77c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/yaml.v3") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1bbai3lzb50m0x2vwsdbagrbhvfylj9k1m32hgbqwldqx4p9ay35")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" -; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) -; (home-page "https://gopkg.in/yaml.v3") -; (synopsis "YAML support for the Go language") -; (description "Package yaml implements YAML support for the Go language.") -; (license license:expat))) -; -;(define-public go-github-com-stretchr-testify-1.7.0 -; (package -; (name "go-github-com-stretchr-testify") -; (version "1.7.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/testify") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ixgjsvafr3513pz3r6pmgk074s2dxkll0dadvl25gkf30rkmh10")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/testify")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" -; ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) -; ("go-github-com-stretchr-objx-0.1.0" -; ,go-github-com-stretchr-objx-0.1.0) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-davecgh-go-spew-1.1.0" -; ,go-github-com-davecgh-go-spew-1.1.0))) -; (home-page "https://github.com/stretchr/testify") -; (synopsis "Testify - Thou Shalt Write Tests") -; (description -; "** We are working on testify v2 and would love to hear what you'd like to see in -;it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -;Package testify is a set of packages that provide many tools for testifying that -;your code will behave as you intend.") -; (license license:expat))) -; -;(define-public go-golang-org-x-net-0.0.0-20190311183353-d8887717615a -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20190311183353-d8887717615a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1wfm6ngxjyj7v5a2dqib6lw8bb2rdnf1kl48diykxjrsddn0s163")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20190311212946-11955173bddd") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0hlkai67w167wiyivkzd1fgqrnyxkb94l2c6kr51jwcscizfyfn3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-lint-0.0.0-20190930215403-16217165b5de -; (package -; (name "go-golang-org-x-lint") -; (version "0.0.0-20190930215403-16217165b5de") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/lint") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0jhwmwc0vykcmf164na0pnadl8gv7184b6pf3xayknwmzdw6vd7h")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/lint")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" -; ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd))) -; (home-page "https://golang.org/x/lint") -; (synopsis "Installation") -; (description "Package lint contains a linter for Go source code.") -; (license license:bsd-3))) -; -;(define-public go-github-com-yuin-goldmark-1.3.5 -; (package -; (name "go-github-com-yuin-goldmark") -; (version "1.3.5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/yuin/goldmark") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "08rrhfji92hixiv3v0wvamwcy56f90wsw84w7lyvad7g90kbsknx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/yuin/goldmark")) -; (home-page "https://github.com/yuin/goldmark") -; (synopsis "goldmark") -; (description -; "Package goldmark implements functions to convert markdown text to a desired -;format.") -; (license license:expat))) -; -;(define-public go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20190404232315-eb5bcb51f2a3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "17k4g8krxbl84gzcs275b7gsh66dzm15fdxivjnx9xz8q84l4kby")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190412213103-97732733099d -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190412213103-97732733099d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "118hkp01i4z1f5h6hcjm0ff2ngqhrzj1f7731n0kw8dr6hvbx0sw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20191011191535-87dc89f01550") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0z4i1m2yn3f31ci7wvcm2rxkx2yiv7a78mfzklncmsz2k97rlh2g")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" -; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) -; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" -; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20190308221718-c2843e01d9a2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190215142949-d0b11bdaac8a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-text-0.3.0 -; (package -; (name "go-golang-org-x-text") -; (version "0.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/text") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/text")) -; (home-page "https://golang.org/x/text") -; (synopsis "Go Text") -; (description -; "text is a repository of text-related packages related to internationalization -;(i18n) and localization (l10n), such as character encodings, text -;transformations, and locale-specific text handling.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20190620200207-3b0461eec859") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0l00c8l0a8xnv6qdpwfzxxsr58jggacgzdrwiprrfx2xqm37b6d5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sync-0.0.0-20190423024810-112230192c58 -; (package -; (name "go-golang-org-x-sync") -; (version "0.0.0-20190423024810-112230192c58") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sync") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "05i2k43j2d0llq768hg5pf3hb2yhfzp9la1w5wp0rsnnzblr0lfn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sync")) -; (home-page "https://golang.org/x/sync") -; (synopsis "Go Sync") -; (description -; "This repository provides Go concurrency primitives in addition to the ones -;provided by the language and \"sync\" and \"sync/atomic\" packages.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7 -; (package -; (name "go-golang-org-x-xerrors") -; (version "0.0.0-20190717185122-a985d3407aa7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/xerrors") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "00wzr5w8aadipgc3rkk8f11i41znskfj9ix5nhhaxyg7isrslgcj")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/xerrors")) -; (home-page "https://golang.org/x/xerrors") -; (synopsis #f) -; (description "Package xerrors implements functions to manipulate errors.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20191119224855-298f0cb1881e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0l4pqwib2wnfnix6nvxl0yrq87ipi7ff1rz6z5bxfzy9dki1nzmv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7" -; ,go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7) -; ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" -; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) -; ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" -; ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898 -; (package -; (name "go-golang-org-x-xerrors") -; (version "0.0.0-20191011141410-1b5146add898") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/xerrors") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0w2akj91krxjag0xdhsg78470888nicc5ismc2ap9jqpss6v1zih")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/xerrors")) -; (home-page "https://golang.org/x/xerrors") -; (synopsis #f) -; (description "Package xerrors implements functions to manipulate errors.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-mod-0.4.2 -; (package -; (name "go-golang-org-x-mod") -; (version "0.4.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/mod") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0z1p17i291z2k6va08i80ljyzyij2b6qsz78lnz0wi8zsnkfdz43")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/mod")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" -; ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) -; ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" -; ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) -; ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" -; ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) -; (home-page "https://golang.org/x/mod") -; (synopsis "mod") -; (description -; "This repository holds packages for writing tools that work directly with Go -;module mechanics. That is, it is for direct manipulation of Go modules -;themselves.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20210330210617-4fbd30eecc44 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20210330210617-4fbd30eecc44") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "02mmymbm7wb3vdp3z9hm8p0f45708fybyd38qm8qxzwm19zqnp56")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20201119102817-f84b799fce68") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1dvhqian5byzkcg1bnqzygqa6ccc6krc2q7j12pp1vhl3y7znnsg")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1 -; (package -; (name "go-golang-org-x-term") -; (version "0.0.0-20201126162022-7de9c90e9dd1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/term") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ba252xmv6qsvf1w1gcy98mngrj0vd4inbjw0lsklqvva65nljna")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/term")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" -; ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) -; (home-page "https://golang.org/x/term") -; (synopsis "Go terminal/console support") -; (description -; "Package term provides support functions for dealing with terminals, as commonly -;found on UNIX systems.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20180917221912-90fa682c2a6e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-text-0.3.3 -; (package -; (name "go-golang-org-x-text") -; (version "0.3.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/text") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "19pihqm3phyndmiw6i42pdv6z1rbvlqlsnhsyqf9gsnn0qnmqqlh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/text")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" -; ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) -; (home-page "https://golang.org/x/text") -; (synopsis "Go Text") -; (description -; "text is a repository of text-related packages related to internationalization -;(i18n) and localization (l10n), such as character encodings, text -;transformations, and locale-specific text handling.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20210405180319-a5a99cb37ef4 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20210405180319-a5a99cb37ef4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0z90hpmxdw9i8vfhd6vf7hd63c86f1128qfb5f3y4kinvlpjy3rl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) -; ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" -; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) -; ("go-golang-org-x-sys-0.0.0-20210330210617-4fbd30eecc44" -; ,go-golang-org-x-sys-0.0.0-20210330210617-4fbd30eecc44))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c -; (package -; (name "go-golang-org-x-sync") -; (version "0.0.0-20210220032951-036812b2e83c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sync") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1gl202py3s4gl6arkaxlf8qa6f0jyyg2f95m6f89qnfmr416h85b")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sync")) -; (home-page "https://golang.org/x/sync") -; (synopsis "Go Sync") -; (description -; "This repository provides Go concurrency primitives in addition to the ones -;provided by the language and \"sync\" and \"sync/atomic\" packages.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1 -; (package -; (name "go-golang-org-x-xerrors") -; (version "0.0.0-20200804184101-5ec99f83aff1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/xerrors") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1dbzc3gmf2haazpv7cgmv97rq40g2xzwbglc17vas8dwhgwgwrzb")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/xerrors")) -; (home-page "https://golang.org/x/xerrors") -; (synopsis #f) -; (description "Package xerrors implements functions to manipulate errors.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.1.5 -; (package -; (name "go-golang-org-x-tools") -; (version "0.1.5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1wzbbcja1q0gn8ahxvzvpl4nzj2icwmc0pppgipmx5rdnngqw80l")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" -; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) -; ("go-golang-org-x-sys-0.0.0-20210510120138-977fb7262007" -; ,go-golang-org-x-sys-0.0.0-20210510120138-977fb7262007) -; ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" -; ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) -; ("go-golang-org-x-net-0.0.0-20210405180319-a5a99cb37ef4" -; ,go-golang-org-x-net-0.0.0-20210405180319-a5a99cb37ef4) -; ("go-golang-org-x-mod-0.4.2" ,go-golang-org-x-mod-0.4.2) -; ("go-github-com-yuin-goldmark-1.3.5" -; ,go-github-com-yuin-goldmark-1.3.5))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127 -; (package -; (name "go-gopkg-in-check-v1") -; (version "1.0.0-20180628173108-788fd7840127") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/check.v1") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0v3bim0j375z81zrpr5qv42knqs0y2qv2vkjiqi5axvb78slki1a")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) -; (home-page "https://gopkg.in/check.v1") -; (synopsis "Instructions") -; (description -; "Package check is a rich testing extension for Go's testing package.") -; (license license:bsd-2))) -; -;(define-public go-go-uber-org-goleak-1.1.12 -; (package -; (name "go-go-uber-org-goleak") -; (version "1.1.12") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/uber-go/goleak") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1wda3bd5xqbnvskgpr2lg6ccnrm3v9wl0i5c5b6xrrzf01b81vzg")))) -; (build-system go-build-system) -; (arguments '(#:import-path "go.uber.org/goleak")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" -; ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) -; ("go-golang-org-x-tools-0.1.5" ,go-golang-org-x-tools-0.1.5) -; ("go-golang-org-x-lint-0.0.0-20190930215403-16217165b5de" -; ,go-golang-org-x-lint-0.0.0-20190930215403-16217165b5de) -; ("go-github-com-stretchr-testify-1.7.0" -; ,go-github-com-stretchr-testify-1.7.0) -; ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0))) -; (home-page "https://go.uber.org/goleak") -; (synopsis "goleak") -; (description "Package goleak is a Goroutine leak detector.") -; (license license:expat))) -; -;(define-public go-golang-org-x-sys-0.0.0-20210510120138-977fb7262007 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20210510120138-977fb7262007") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0d2vnblgzxgvis2kly99gv10kadyl3v0cpv1lskjqg2v5d11r6hd")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-containerd-cgroups-1.0.3 -; (package -; (name "go-github-com-containerd-cgroups") -; (version "1.0.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containerd/cgroups") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0mqsi2jm1f7xvs35kx6ijvadr6zycshc1xivq6xdiwrw24wb0m3r")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containerd/cgroups")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20210510120138-977fb7262007" -; ,go-golang-org-x-sys-0.0.0-20210510120138-977fb7262007) -; ("go-go-uber-org-goleak-1.1.12" ,go-go-uber-org-goleak-1.1.12) -; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) -; ("go-github-com-stretchr-testify-1.7.0" -; ,go-github-com-stretchr-testify-1.7.0) -; ("go-github-com-sirupsen-logrus-1.8.1" -; ,go-github-com-sirupsen-logrus-1.8.1) -; ("go-github-com-opencontainers-runtime-spec-1.0.2" -; ,go-github-com-opencontainers-runtime-spec-1.0.2) -; ("go-github-com-gogo-protobuf-1.3.2" -; ,go-github-com-gogo-protobuf-1.3.2) -; ("go-github-com-godbus-dbus-v5-5.0.4" -; ,go-github-com-godbus-dbus-v5-5.0.4) -; ("go-github-com-docker-go-units-0.4.0" -; ,go-github-com-docker-go-units-0.4.0) -; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" -; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) -; ("go-github-com-coreos-go-systemd-v22-22.3.2" -; ,go-github-com-coreos-go-systemd-v22-22.3.2) -; ("go-github-com-cilium-ebpf-0.4.0" ,go-github-com-cilium-ebpf-0.4.0))) -; (home-page "https://github.com/containerd/cgroups") -; (synopsis "cgroups") -; (description -; "Go package for creating, managing, inspecting, and destroying cgroups. The -;resources format for settings on the cgroup uses the OCI runtime-spec found -;@url{https://github.com/opencontainers/runtime-spec,here}.") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20191005200804-aed5e4c7ecf9") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0wsdsbl9n61l99z0cvib2xzg56fsfgky4yc5xapdw9ywx9h0zm3a")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-fsnotify-fsnotify-1.4.9 -; (package -; (name "go-github-com-fsnotify-fsnotify") -; (version "1.4.9") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/fsnotify/fsnotify") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1i1r72knpbfwwql9frn9bqc3nhfc2ai5m6qllcyr6wban62lr40x")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/fsnotify/fsnotify")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9" -; ,go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9))) -; (home-page "https://github.com/fsnotify/fsnotify") -; (synopsis "File system notifications for Go") -; (description -; "Package fsnotify provides a platform-independent interface for file system -;notifications.") -; (license license:bsd-3))) -; -;(define-public go-github-com-sclevine-agouti-3.0.0+incompatible -; (package -; (name "go-github-com-sclevine-agouti") -; (version "3.0.0+incompatible") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/sclevine/agouti") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1fsj7x7hhmqq43a9qxdfap7ik6b35hqk58dwii0ir1zm1fnw105b")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/sclevine/agouti")) -; (home-page "https://github.com/sclevine/agouti") -; (synopsis "Agouti") -; (description -; "Package agouti is a universal WebDriver client for Go. It extends the -;agouti/api package to provide a feature-rich interface for controlling a web -;browser.") -; (license license:expat))) -; -;(define-public go-golang-org-x-sys-0.0.0-20200519105757-fe76b779f299 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20200519105757-fe76b779f299") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0g6j3n9fdv1a2lp2i8wbaaya85yrbfx3ns6iq1s7l2ayhxxmgh6b")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20180917221912-90fa682c2a6e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-text-0.3.2 -; (package -; (name "go-golang-org-x-text") -; (version "0.3.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/text") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0flv9idw0jm5nm8lx25xqanbkqgfiym6619w575p7nrdh0riqwqh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/text")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" -; ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) -; (home-page "https://golang.org/x/text") -; (synopsis "Go Text") -; (description -; "text is a repository of text-related packages related to internationalization -;(i18n) and localization (l10n), such as character encodings, text -;transformations, and locale-specific text handling.") -; (license license:bsd-3))) -; -;(define-public go-github-com-onsi-ginkgo-1.13.0 -; (package -; (name "go-github-com-onsi-ginkgo") -; (version "1.13.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/onsi/ginkgo") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1p8p334z7xjfsn35hfkls8crirz8hgqqq0hj83gxizpzq8v24qpi")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/onsi/ginkgo")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) -; ("go-golang-org-x-sys-0.0.0-20200519105757-fe76b779f299" -; ,go-golang-org-x-sys-0.0.0-20200519105757-fe76b779f299) -; ("go-github-com-sclevine-agouti-3.0.0+incompatible" -; ,go-github-com-sclevine-agouti-3.0.0+incompatible) -; ("go-github-com-onsi-gomega-1.10.1" ,go-github-com-onsi-gomega-1.10.1) -; ("go-github-com-nxadm-tail-1.4.4" ,go-github-com-nxadm-tail-1.4.4) -; ("go-github-com-fsnotify-fsnotify-1.4.9" -; ,go-github-com-fsnotify-fsnotify-1.4.9))) -; (home-page "https://github.com/onsi/ginkgo") -; (synopsis "Ginkgo 2.0 Release Candidate is available!") -; (description "Ginkgo is a BDD-style testing framework for Golang") -; (license license:expat))) -; -;(define-public go-github-com-google-go-cmp-0.3.0 -; (package -; (name "go-github-com-google-go-cmp") -; (version "0.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/go-cmp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1hyxx3434zshl2m9ja78gwlkg1rx9yl6diqa7dnjb31xz5x4gbjj")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/go-cmp")) -; (home-page "https://github.com/google/go-cmp") -; (synopsis "Package for equality of Go values") -; (description -; "This package is intended to be a more powerful and safer alternative to -;@code{reflect.DeepEqual} for comparing whether two values are semantically -;equal.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd -; (package -; (name "go-google-golang-org-protobuf") -; (version "0.0.0-20200109180630-ec00e32a8dfd") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0w6lp9w2avxcpxwzzhspr209ifhyjagvs23k0vykfdqahl1aplrh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.3.0" -; ,go-github-com-google-go-cmp-0.3.0))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is -;a language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol -;buffer developer guide} for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.4.0-rc.1 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.4.0-rc.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "186rirvbfgv6hrxp27ipx2cdpv19qifdd20biqfdm01wiyclqimn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd" -; ,go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd) -; ("go-github-com-google-go-cmp-0.3.1" -; ,go-github-com-google-go-cmp-0.3.1))) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code -;github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-github-com-google-go-cmp-0.3.1 -; (package -; (name "go-github-com-google-go-cmp") -; (version "0.3.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/go-cmp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1caw49i0plkjxir7kdf5qhwls3krqwfmi7g4h392rdfwi3kfahx1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/go-cmp")) -; (home-page "https://github.com/google/go-cmp") -; (synopsis "Package for equality of Go values") -; (description -; "This package is intended to be a more powerful and safer alternative to -;@code{reflect.DeepEqual} for comparing whether two values are semantically -;equal.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64 -; (package -; (name "go-google-golang-org-protobuf") -; (version "0.0.0-20200221191635-4d8936d0db64") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0563bsvdjj6k0sgwqd5yzrgfiax7sp3lcwh608gync5sv9fx39cy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.3.1" -; ,go-github-com-google-go-cmp-0.3.1) -; ("go-github-com-golang-protobuf-1.4.0-rc.1" -; ,go-github-com-golang-protobuf-1.4.0-rc.1))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is -;a language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol -;buffer developer guide} for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.4.0-rc.1.0.20200221234624-67d41d38c208") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ykxhg3zixmw25pd435f8h16wnz1g00jpcmmg3xl030kksgqgpp6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64" -; ,go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0))) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code -;github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60 -; (package -; (name "go-google-golang-org-protobuf") -; (version "0.0.0-20200228230310-ab0ca4ff8a60") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1rinspcznfp85yz4vrlf4h38hr576virgv8lcs22bsylqga808sd")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208" -; ,go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is -;a language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol -;buffer developer guide} for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.4.0-rc.2 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.4.0-rc.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1hd43hjv5zl6bjbmhm5phx74bw4xajsi73m5zky2k56za4mpgzzc")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60" -; ,go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0))) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code -;github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967 -; (package -; (name "go-google-golang-org-protobuf") -; (version "1.20.1-0.20200309200217-e05f789c0967") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "17wmy89hnmpkwc63rfcjp50q15s9f1rhmczg06c3z9yy41zk82w9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.4.0-rc.2" -; ,go-github-com-golang-protobuf-1.4.0-rc.2))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is -;a language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol -;buffer developer guide} for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.4.0-rc.4.0.20200313231945-b860323f09d0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1zj6cwshx0l5n9cn2cpbikzzb79px5dmkpc4p19zy1iif5r5p0z0")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967" -; ,go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0))) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code -;github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-1.21.0 -; (package -; (name "go-google-golang-org-protobuf") -; (version "1.21.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "12bwln8z1lf9105gdp6ip0rx741i4yfz1520gxnp8861lh9wcl63")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0" -; ,go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is -;a language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol -;buffer developer guide} for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.4.0 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1fjvl5n77abxz5qsd4mgyvjq19x43c5bfvmq62mq3m5plx6zksc8")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.21.0" -; ,go-google-golang-org-protobuf-1.21.0) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0))) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code -;github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-github-com-google-go-cmp-0.4.0 -; (package -; (name "go-github-com-google-go-cmp") -; (version "0.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/go-cmp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1x5pvl3fb5sbyng7i34431xycnhmx8xx94gq2n19g6p0vz68z2v2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/go-cmp")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" -; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) -; (home-page "https://github.com/google/go-cmp") -; (synopsis "Package for equality of Go values") -; (description -; "This package is intended to be a more powerful and safer alternative to -;@code{reflect.DeepEqual} for comparing whether two values are semantically -;equal.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-1.23.0 -; (package -; (name "go-google-golang-org-protobuf") -; (version "1.23.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "03yan0m1v0zmlr935p4n24fd376mznsg85zy8sywbgisls4s1bzy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.4.0" -; ,go-github-com-golang-protobuf-1.4.0))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is -;a language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol -;buffer developer guide} for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.4.2 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.4.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0m5z81im4nsyfgarjhppayk4hqnrwswr3nix9mj8pff8x9jvcjqw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.23.0" -; ,go-google-golang-org-protobuf-1.23.0) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0))) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code -;github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190904154756-749cb33beabd -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190904154756-749cb33beabd") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0dm3257q3rv2kyn5lmqqim2fqg634v6rhrqq4glvbk4wx4l3v337")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-nxadm-tail-1.4.4 -; (package -; (name "go-github-com-nxadm-tail") -; (version "1.4.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/nxadm/tail") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1czmwqii0fc8v3ar5bwqpfanprkxg19waly405zlvcflzvj53wwc")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/nxadm/tail")) -; (propagated-inputs -; `(("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" -; ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) -; ("go-golang-org-x-sys-0.0.0-20190904154756-749cb33beabd" -; ,go-golang-org-x-sys-0.0.0-20190904154756-749cb33beabd) -; ("go-github-com-fsnotify-fsnotify-1.4.7" -; ,go-github-com-fsnotify-fsnotify-1.4.7))) -; (home-page "https://github.com/nxadm/tail") -; (synopsis "tail functionality in Go") -; (description -; "nxadm/tail provides a Go library that emulates the features of the BSD `tail` -;program. The library comes with full support for truncation/move detection as -;it is designed to work with log rotation tools. The library works on all -;operating systems supported by Go, including POSIX systems like Linux and *BSD, -;and MS Windows. Go 1.9 is the oldest compiler release supported.") -; (license license:expat))) -; -;(define-public go-github-com-fsnotify-fsnotify-1.4.7 -; (package -; (name "go-github-com-fsnotify-fsnotify") -; (version "1.4.7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/fsnotify/fsnotify") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/fsnotify/fsnotify")) -; (home-page "https://github.com/fsnotify/fsnotify") -; (synopsis "File system notifications for Go") -; (description -; "Package fsnotify provides a platform-independent interface for file system -;notifications.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.2.0 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0kf4b59rcbb1cchfny2dm9jyznp8ri2hsb14n8iak1q8986xa0ab")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code -;github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-github-com-hpcloud-tail-1.0.0 -; (package -; (name "go-github-com-hpcloud-tail") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hpcloud/tail") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1njpzc0pi1acg5zx9y6vj9xi6ksbsc5d387rd6904hy6rh2m6kn0")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hpcloud/tail")) -; (home-page "https://github.com/hpcloud/tail") -; (synopsis "Go package for tail-ing files") -; (description -; "This package provides a Go package striving to emulate the features of the BSD -;@code{tail} program.") -; (license license:expat))) -; -;(define-public go-github-com-onsi-ginkgo-1.6.0 -; (package -; (name "go-github-com-onsi-ginkgo") -; (version "1.6.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/onsi/ginkgo") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0x0gc89vgq38xhgmi2h22bhr73cf2gmk42g89nz89k8dgg9hhr25")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/onsi/ginkgo")) -; (home-page "https://github.com/onsi/ginkgo") -; (synopsis "Ginkgo 2.0 Release Candidate is available!") -; (description "Ginkgo is a BDD-style testing framework for Golang") -; (license license:expat))) -; -;(define-public go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20180906233101-161cd47e91fd") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0254ld010iijygbzykib2vags1dc0wlmcmhgh4jl8iny159lhbcv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f -; (package -; (name "go-golang-org-x-sync") -; (version "0.0.0-20180314180146-1d60e4601c6f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sync") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "046jlanz2lkxq1r57x9bl6s4cvfqaic6p2xybsj8mq1120jv4rs6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sync")) -; (home-page "https://golang.org/x/sync") -; (synopsis "Go Sync") -; (description -; "This repository provides Go concurrency primitives in addition to the ones -;provided by the language and \"sync\" and \"sync/atomic\" packages.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20180909124046-d0be0721c37e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "081wyvfnlf842dqg03raxfz6lldlxpmyh1prix9lmrrm65arxb12")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-gopkg-in-fsnotify-v1-1.4.7 -; (package -; (name "go-gopkg-in-fsnotify-v1") -; (version "1.4.7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/fsnotify.v1") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path -; "gopkg.in/fsnotify.v1" -; #:unpack-path -; "gopkg.in/fsnotify.v1")) -; (home-page "https://gopkg.in/fsnotify.v1") -; (synopsis "File system notifications for Go") -; (description -; "Package fsnotify provides a platform-independent interface for file system -;notifications.") -; (license license:bsd-3))) -; -;(define-public go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7 -; (package -; (name "go-gopkg-in-tomb-v1") -; (version "1.0.0-20141024135613-dd632973f1e7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/tomb.v1") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1lqmq1ag7s4b3gc3ddvr792c5xb5k6sfn0cchr3i2s7f1c231zjv")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/tomb.v1" #:unpack-path "gopkg.in/tomb.v1")) -; (home-page "https://gopkg.in/tomb.v1") -; (synopsis "Installation and usage") -; (description -; "The tomb package offers a conventional API for clean goroutine termination.") -; (license license:bsd-3))) -; -;(define-public go-gopkg-in-yaml-v2-2.2.4 -; (package -; (name "go-gopkg-in-yaml-v2") -; (version "2.2.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/yaml.v2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "11bwj757wi8kdrcnlgfqb8vv2d2xdhlghmyagd19i62khrkchsg2")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" -; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) -; (home-page "https://gopkg.in/yaml.v2") -; (synopsis "YAML support for the Go language") -; (description "Package yaml implements YAML support for the Go language.") -; (license license:asl2.0))) -; -;(define-public go-github-com-onsi-gomega-1.7.1 -; (package -; (name "go-github-com-onsi-gomega") -; (version "1.7.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/onsi/gomega") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "06p3x0910cdaa64l7d44s728d4j3yhps315dlcvrbjzhljjj7mam")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/onsi/gomega")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.2.4" ,go-gopkg-in-yaml-v2-2.2.4) -; ("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" -; ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) -; ("go-gopkg-in-fsnotify-v1-1.4.7" ,go-gopkg-in-fsnotify-v1-1.4.7) -; ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e" -; ,go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e) -; ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" -; ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) -; ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" -; ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) -; ("go-github-com-onsi-ginkgo-1.6.0" ,go-github-com-onsi-ginkgo-1.6.0) -; ("go-github-com-hpcloud-tail-1.0.0" ,go-github-com-hpcloud-tail-1.0.0) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0) -; ("go-github-com-fsnotify-fsnotify-1.4.7" -; ,go-github-com-fsnotify-fsnotify-1.4.7))) -; (home-page "https://github.com/onsi/gomega") -; (synopsis ": a BDD Testing Framework for Golang") -; (description -; "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library.") -; (license license:expat))) -; -;(define-public go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20191120155948-bd437916bb0e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1i8x26frmlin55k69k936zd1rp5sqnq14y5ms4rkxbfzhasdm2rx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-onsi-ginkgo-1.12.1 -; (package -; (name "go-github-com-onsi-ginkgo") -; (version "1.12.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/onsi/ginkgo") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0xs9724l2b0bwjwrvw5cs3akxaw0n1j5kyxrb1ggfsdjz0zmjcxh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/onsi/ginkgo")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e" -; ,go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e) -; ("go-github-com-onsi-gomega-1.7.1" ,go-github-com-onsi-gomega-1.7.1) -; ("go-github-com-nxadm-tail-1.4.4" ,go-github-com-nxadm-tail-1.4.4))) -; (home-page "https://github.com/onsi/ginkgo") -; (synopsis "Ginkgo 2.0 Release Candidate is available!") -; (description "Ginkgo is a BDD-style testing framework for Golang") -; (license license:expat))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190215142949-d0b11bdaac8a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20190308221718-c2843e01d9a2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20200323222414-85ca7c5b95cd") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1504qkgbhhm4f0bhk77v2r1lj6x171ay5m79alkg78wjb5cign5l")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-text-0.3.0 -; (package -; (name "go-golang-org-x-text") -; (version "0.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/text") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/text")) -; (home-page "https://golang.org/x/text") -; (synopsis "Go Text") -; (description -; "text is a repository of text-related packages related to internationalization -;(i18n) and localization (l10n), such as character encodings, text -;transformations, and locale-specific text handling.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20200520004742-59133d7f0dd7 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20200520004742-59133d7f0dd7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "03js31gnf3hir5dh6q01bj7cs0y4wzyinqg1mvr0nlb83kak9ggq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" -; ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543 -; (package -; (name "go-golang-org-x-xerrors") -; (version "0.0.0-20191204190536-9bdfabe68543") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/xerrors") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1yjfi1bk9xb81lqn85nnm13zz725wazvrx3b50hx19qmwg7a4b0c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/xerrors")) -; (home-page "https://golang.org/x/xerrors") -; (synopsis #f) -; (description "Package xerrors implements functions to manipulate errors.") -; (license license:bsd-3))) -; -;(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 -; (package -; (name "go-gopkg-in-check-v1") -; (version "0.0.0-20161208181325-20d25e280405") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/check.v1") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) -; (home-page "https://gopkg.in/check.v1") -; (synopsis "Instructions") -; (description -; "Package check is a rich testing extension for Go's testing package.") -; (license license:bsd-2))) -; -;(define-public go-gopkg-in-yaml-v2-2.3.0 -; (package -; (name "go-gopkg-in-yaml-v2") -; (version "2.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/yaml.v2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1md0hlyd9s6myv3663i9l59y74n4xjazifmmyxn43g86fgkc5lzj")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" -; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) -; (home-page "https://gopkg.in/yaml.v2") -; (synopsis "YAML support for the Go language") -; (description "Package yaml implements YAML support for the Go language.") -; (license license:asl2.0))) -; -;(define-public go-github-com-onsi-gomega-1.10.1 -; (package -; (name "go-github-com-onsi-gomega") -; (version "1.10.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/onsi/gomega") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "068mirdbwl9n9dqlvqr489h52wkd90cv1jvng4yp8kv83lhzk2dq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/onsi/gomega")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.3.0" ,go-gopkg-in-yaml-v2-2.3.0) -; ("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" -; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) -; ("go-golang-org-x-net-0.0.0-20200520004742-59133d7f0dd7" -; ,go-golang-org-x-net-0.0.0-20200520004742-59133d7f0dd7) -; ("go-github-com-onsi-ginkgo-1.12.1" ,go-github-com-onsi-ginkgo-1.12.1) -; ("go-github-com-golang-protobuf-1.4.2" -; ,go-github-com-golang-protobuf-1.4.2))) -; (home-page "https://github.com/onsi/gomega") -; (synopsis ": a BDD Testing Framework for Golang") -; (description -; "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library.") -; (license license:expat))) -; -;(define-public go-github-com-containernetworking-cni-1.0.1 -; (package -; (name "go-github-com-containernetworking-cni") -; (version "1.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/containernetworking/cni") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0jzijcb96z26lchh6j4js3rl7c148mwlaiz3s6ww47kljnxmv05f")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/containernetworking/cni")) -; (propagated-inputs -; `(("go-github-com-onsi-gomega-1.10.1" ,go-github-com-onsi-gomega-1.10.1) -; ("go-github-com-onsi-ginkgo-1.13.0" -; ,go-github-com-onsi-ginkgo-1.13.0))) -; (home-page "https://github.com/containernetworking/cni") -; (synopsis "CNI - the Container Network Interface") -; (description -; "CNI (), a @url{https://cncf.io,Cloud Native Computing Foundation} project, -;consists of a specification and libraries for writing plugins to configure -;network interfaces in Linux containers, along with a number of supported -;plugins. CNI concerns itself only with network connectivity of containers and -;removing allocated resources when the container is deleted. Because of this -;focus, CNI has a wide range of support and the specification is simple to -;implement.") -; (license license:asl2.0))) -; -;(define-public go-github-com-creack-pty-1.1.17 -; (package -; (name "go-github-com-creack-pty") -; (version "1.1.17") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/creack/pty") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "09lcq5bw1dwppxjia05sj4fy7gbk62vishfz1bgrbd1r06i57mjf")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/creack/pty")) -; (home-page "https://github.com/creack/pty") -; (synopsis "pty") -; (description -; "Package pty provides functions for working with Unix terminals.") -; (license license:expat))) -; -;(define-public go-github-com-cyphar-filepath-securejoin-0.2.3 -; (package -; (name "go-github-com-cyphar-filepath-securejoin") -; (version "0.2.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/cyphar/filepath-securejoin") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0w03d8hslwfhcnfqck21agzs7y0sc6gpwfz53md8fv26ishwxppy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/cyphar/filepath-securejoin")) -; (home-page "https://github.com/cyphar/filepath-securejoin") -; (synopsis #f) -; (description -; "Package securejoin is an implementation of the hopefully-soon-to-be-included -;SecureJoin helper that is meant to be part of the \"path/filepath\" package. The -;purpose of this project is to provide a PoC implementation to make the -;SecureJoin proposal -;(@url{https://github.com/golang/go/issues/20126,https://github.com/golang/go/issues/20126}) -;more tangible.") -; (license license:bsd-3))) -; -;(define-public go-github-com-docker-docker-20.10.12+incompatible -; (package -; (name "go-github-com-docker-docker") -; (version "20.10.12+incompatible") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/moby/moby") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "17j820ij8p6w61jyg5g6y5dwv56dh1w178f6ia2i2dc9b8mz6b5a")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/docker/docker")) -; (home-page "https://github.com/docker/docker") -; (synopsis "The Moby Project") -; (description -; "Moby is an open-source project created by Docker to enable and accelerate -;software containerization.") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-sys-0.0.0-20200116001909-b77594299b42 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20200116001909-b77594299b42") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0isfm6kmh4fjhh6m7mrb3zvdjka2y31c5habr5kydl7rg0lwkabv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-mattn-go-isatty-0.0.12 -; (package -; (name "go-github-com-mattn-go-isatty") -; (version "0.0.12") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mattn/go-isatty") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1dfsh27d52wmz0nmmzm2382pfrs2fcijvh6cgir7jbb4pnigr5w4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mattn/go-isatty")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20200116001909-b77594299b42" -; ,go-golang-org-x-sys-0.0.0-20200116001909-b77594299b42))) -; (home-page "https://github.com/mattn/go-isatty") -; (synopsis "go-isatty") -; (description "Package isatty implements interface to isatty") -; (license license:expat))) -; -;(define-public go-golang-org-x-sys-0.0.0-20200223170610-d5e6a3e2c0ae -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20200223170610-d5e6a3e2c0ae") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0lz7vm5dz2p14fzq2j4m1l9p392cl0fa73aaf45gln07ylfajk4n")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-mattn-go-colorable-0.1.9 -; (package -; (name "go-github-com-mattn-go-colorable") -; (version "0.1.9") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mattn/go-colorable") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0f46aiyfca71y7g7ypkicqi0r4ys9jwdw2v6hwdc0x76d39hh0qk")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mattn/go-colorable")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20200223170610-d5e6a3e2c0ae" -; ,go-golang-org-x-sys-0.0.0-20200223170610-d5e6a3e2c0ae) -; ("go-github-com-mattn-go-isatty-0.0.12" -; ,go-github-com-mattn-go-isatty-0.0.12))) -; (home-page "https://github.com/mattn/go-colorable") -; (synopsis "go-colorable") -; (description "Colorable writer for windows.") -; (license license:expat))) -; -;(define-public go-golang-org-x-sys-0.0.0-20210630005230-0f9fa26af87c -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20210630005230-0f9fa26af87c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "17g7kc6bf6zw4ib1xhmkbpfdn85jbmindqsz0l8ymmc6v279h13q")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-mattn-go-isatty-0.0.14 -; (package -; (name "go-github-com-mattn-go-isatty") -; (version "0.0.14") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mattn/go-isatty") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "015zc3j60vb85d7f2al15la24wn45piazxlagqhzrbgfdyqci60z")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mattn/go-isatty")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20210630005230-0f9fa26af87c" -; ,go-golang-org-x-sys-0.0.0-20210630005230-0f9fa26af87c))) -; (home-page "https://github.com/mattn/go-isatty") -; (synopsis "go-isatty") -; (description "Package isatty implements interface to isatty") -; (license license:expat))) -; -;(define-public go-github-com-fatih-color-1.13.0 -; (package -; (name "go-github-com-fatih-color") -; (version "1.13.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/fatih/color") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "029qkxsdpblhrpgbv4fcmqwkqnjhx08hwiqp19pd7zz6l8a373ay")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/fatih/color")) -; (propagated-inputs -; `(("go-github-com-mattn-go-isatty-0.0.14" -; ,go-github-com-mattn-go-isatty-0.0.14) -; ("go-github-com-mattn-go-colorable-0.1.9" -; ,go-github-com-mattn-go-colorable-0.1.9))) -; (home-page "https://github.com/fatih/color") -; (synopsis "color") -; (description -; "Package color is an ANSI color package to output colorized or SGR defined output -;to the standard output. The API can be used in several way, pick one that suits -;you.") -; (license license:expat))) -; -;(define-public go-github-com-go-log-log-0.2.0 -; (package -; (name "go-github-com-go-log-log") -; (version "0.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/go-log/log") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1idnqv4yvkmdh3wcsgvhcpak9z6ix8dsifdjq5kfbbnskdq5rmvg")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/go-log/log")) -; (home-page "https://github.com/go-log/log") -; (synopsis "Log") -; (description "Package log provides a log interface") -; (license license:expat))) -; -;(define-public go-github-com-google-uuid-1.3.0 -; (package -; (name "go-github-com-google-uuid") -; (version "1.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/uuid") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0imkw52m7fzrwsdj2rfrk3zbplqfbwncyv6hv89xw0vdw3jpk122")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/uuid")) -; (home-page "https://github.com/google/uuid") -; (synopsis "uuid") -; (description "Package uuid generates and inspects UUIDs.") -; (license license:bsd-3))) -; -;(define-public go-github-com-opencontainers-go-digest-1.0.0 -; (package -; (name "go-github-com-opencontainers-go-digest") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/go-digest") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0i5acjajvr6hi9zb7gxwifd8w28y884cv7cx36adj8lngj647xbi")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/go-digest")) -; (home-page "https://github.com/opencontainers/go-digest") -; (synopsis "go-digest") -; (description -; "Package digest provides a generalized type to opaquely represent message digests -;and their operations within the registry. The Digest type is designed to serve -;as a flexible identifier in a content-addressable system. More importantly, it -;provides tools and wrappers to work with hash.Hash-based digests with little -;effort.") -; (license (list license:asl2.0 license:cc-by-sa4.0)))) -; -;(define-public go-github-com-opencontainers-go-digest-1.0.0 -; (package -; (name "go-github-com-opencontainers-go-digest") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/go-digest") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0i5acjajvr6hi9zb7gxwifd8w28y884cv7cx36adj8lngj647xbi")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/go-digest")) -; (home-page "https://github.com/opencontainers/go-digest") -; (synopsis "go-digest") -; (description -; "Package digest provides a generalized type to opaquely represent message digests -;and their operations within the registry. The Digest type is designed to serve -;as a flexible identifier in a content-addressable system. More importantly, it -;provides tools and wrappers to work with hash.Hash-based digests with little -;effort.") -; (license (list license:asl2.0 license:cc-by-sa4.0)))) -; -;(define-public go-github-com-pkg-errors-0.9.1 -; (package -; (name "go-github-com-pkg-errors") -; (version "0.9.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/pkg/errors") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1761pybhc2kqr6v5fm8faj08x9bql8427yqg6vnfv6nhrasx1mwq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/pkg/errors")) -; (home-page "https://github.com/pkg/errors") -; (synopsis "errors") -; (description "Package errors provides simple error handling primitives.") -; (license license:bsd-2))) -; -;(define-public go-github-com-russross-blackfriday-1.6.0 -; (package -; (name "go-github-com-russross-blackfriday") -; (version "1.6.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/russross/blackfriday") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "036028ynpq52z9snmd2b1kjzyvv6n9sg71k651ndznggnw19aamp")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/russross/blackfriday")) -; (home-page "https://github.com/russross/blackfriday") -; (synopsis "Blackfriday") -; (description "Package blackfriday is a Markdown processor.") -; (license license:bsd-2))) -; -;(define-public go-github-com-davecgh-go-spew-1.1.0 -; (package -; (name "go-github-com-davecgh-go-spew") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/davecgh/go-spew") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/davecgh/go-spew")) -; (home-page "https://github.com/davecgh/go-spew") -; (synopsis "go-spew") -; (description -; "Go-spew implements a deep pretty printer for Go data structures to aid in -;debugging. A comprehensive suite of tests with 100% test coverage is provided -;to ensure proper functionality. See @code{test_coverage.txt} for the gocov -;coverage report. Go-spew is licensed under the liberal ISC license, so it may -;be used in open source or commercial projects.") -; (license license:isc))) -; -;(define-public go-github-com-pmezard-go-difflib-1.0.0 -; (package -; (name "go-github-com-pmezard-go-difflib") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/pmezard/go-difflib") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/pmezard/go-difflib")) -; (home-page "https://github.com/pmezard/go-difflib") -; (synopsis "go-difflib") -; (description -; "Go-difflib is a partial port of python 3 difflib package. Its main goal was to -;make unified and context diff available in pure Go, mostly for testing purposes.") -; (license license:bsd-3))) -; -;(define-public go-github-com-stretchr-objx-0.1.0 -; (package -; (name "go-github-com-stretchr-objx") -; (version "0.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/objx") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/objx")) -; (home-page "https://github.com/stretchr/objx") -; (synopsis "Objx") -; (description -; "Objx - Go package for dealing with maps, slices, JSON and other data.") -; (license license:expat))) -; -;(define-public go-github-com-stretchr-testify-1.3.0 -; (package -; (name "go-github-com-stretchr-testify") -; (version "1.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/testify") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0wjchp2c8xbgcbbq32w3kvblk6q6yn533g78nxl6iskq6y95lxsy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/testify")) -; (propagated-inputs -; `(("go-github-com-stretchr-objx-0.1.0" -; ,go-github-com-stretchr-objx-0.1.0) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-davecgh-go-spew-1.1.0" -; ,go-github-com-davecgh-go-spew-1.1.0))) -; (home-page "https://github.com/stretchr/testify") -; (synopsis "Testify - Thou Shalt Write Tests") -; (description -; "** We are working on testify v2 and would love to hear what you'd like to see in -;it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -;Package testify is a set of packages that provide many tools for testifying that -;your code will behave as you intend.") -; (license license:expat))) -; -;(define-public go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f -; (package -; (name "go-github-com-xeipuuv-gojsonpointer") -; (version "0.0.0-20180127040702-4e3ac2762d5f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/xeipuuv/gojsonpointer") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "13y6iq2nzf9z4ls66bfgnnamj2m3438absmbpqry64bpwjfbsi9q")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/xeipuuv/gojsonpointer")) -; (home-page "https://github.com/xeipuuv/gojsonpointer") -; (synopsis "gojsonpointer") -; (description "An implementation of JSON Pointer - Go language") -; (license license:asl2.0))) -; -;(define-public go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415 -; (package -; (name "go-github-com-xeipuuv-gojsonreference") -; (version "0.0.0-20180127040603-bd5ef7bd5415") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/xeipuuv/gojsonreference") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1xby79padc7bmyb8rfbad8wfnfdzpnh51b1n8c0kibch0kwc1db5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/xeipuuv/gojsonreference")) -; (home-page "https://github.com/xeipuuv/gojsonreference") -; (synopsis "gojsonreference") -; (description "An implementation of JSON Reference - Go language") -; (license license:asl2.0))) -; -;(define-public go-github-com-xeipuuv-gojsonschema-1.2.0 -; (package -; (name "go-github-com-xeipuuv-gojsonschema") -; (version "1.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/xeipuuv/gojsonschema") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1mqiq0r8qw4qlfp3ls8073r6514rmzwrmdn4j33rppk3zh942i6l")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/xeipuuv/gojsonschema")) -; (propagated-inputs -; `(("go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415" -; ,go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415) -; ("go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f" -; ,go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f) -; ("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0))) -; (home-page "https://github.com/xeipuuv/gojsonschema") -; (synopsis "gojsonschema") -; (description -; "An implementation of JSON Schema for the Go programming language. Supports -;draft-04, draft-06 and draft-07.") -; (license license:asl2.0))) -; -;(define-public go-github-com-opencontainers-image-spec-1.0.3-0.20211202193544-a5463b7f9c84 -; (package -; (name "go-github-com-opencontainers-image-spec") -; (version "1.0.3-0.20211202193544-a5463b7f9c84") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/image-spec") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "11js6467d7fhcvad4aw26d4p0r5b33vf41qhcf1bdwx0y7smd7s4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/image-spec")) -; (propagated-inputs -; `(("go-github-com-xeipuuv-gojsonschema-1.2.0" -; ,go-github-com-xeipuuv-gojsonschema-1.2.0) -; ("go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415" -; ,go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415) -; ("go-github-com-russross-blackfriday-1.6.0" -; ,go-github-com-russross-blackfriday-1.6.0) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-go-digest-1.0.0" -; ,go-github-com-opencontainers-go-digest-1.0.0))) -; (home-page "https://github.com/opencontainers/image-spec") -; (synopsis "OCI Image Format Specification") -; (description -; "The OCI Image Format project creates and maintains the software shipping -;container image format spec (OCI Image Format).") -; (license license:asl2.0))) -; -;(define-public go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417 -; (package -; (name "go-github-com-opencontainers-runtime-spec") -; (version "1.0.3-0.20210326190908-1c3f411f0417") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/runtime-spec") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1azk8z41ga8af35c966f06vrq9y9hwz6mkm59r3py5qaamzim3qq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) -; (home-page "https://github.com/opencontainers/runtime-spec") -; (synopsis "Open Container Initiative Runtime Specification") -; (description -; "The @url{https://www.opencontainers.org,Open Container Initiative} develops -;specifications for standards on Operating System process and application -;containers.") -; (license license:asl2.0))) -; -;(define-public go-github-com-opencontainers-runtime-tools-0.9.1-0.20210326182921-59cdde06764b -; (package -; (name "go-github-com-opencontainers-runtime-tools") -; (version "0.9.1-0.20210326182921-59cdde06764b") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/runtime-tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0f4zy6x1rrrg10bphwijic30m3r4mq934zbavnci6jyi41l1w2r0")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/runtime-tools")) -; (home-page "https://github.com/opencontainers/runtime-tools") -; (synopsis "oci-runtime-tool") -; (description -; "oci-runtime-tool is a collection of tools for working with the -;@url{https://github.com/opencontainers/runtime-spec,OCI runtime specification}. -;To build from source code, runtime-tools requires Go 1.10.x or above.") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20191115151921-52ab43148777") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1kakxbqrb1w2vwg7r1896z68qcx2lfvimsl8cs2niiipbgpi6imx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-opencontainers-selinux-1.10.0 -; (package -; (name "go-github-com-opencontainers-selinux") -; (version "1.10.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/selinux") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "118q1d9py9zhym4jmyiivasmllkdnkp1zyx4brc6n2cfmxfph6gc")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/selinux")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777" -; ,go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777))) -; (home-page "https://github.com/opencontainers/selinux") -; (synopsis "selinux") -; (description "Common SELinux package used across the container ecosystem.") -; (license license:asl2.0))) -; -;(define-public go-github-com-adamkorcz-go-fuzz-headers-0.0.0-20210312213058-32f4d319f0d2 -; (package -; (name "go-github-com-adamkorcz-go-fuzz-headers") -; (version "0.0.0-20210312213058-32f4d319f0d2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/AdamKorcz/go-fuzz-headers") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0r14xxw8c7pkmln0n5vlrahf1785mr7mlyklmfpa11p9kk9pmq5j")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/AdamKorcz/go-fuzz-headers")) -; (home-page "https://github.com/AdamKorcz/go-fuzz-headers") -; (synopsis #f) -; (description #f) -; (license #f))) -; -;(define-public go-github-com-stretchr-testify-1.3.0 -; (package -; (name "go-github-com-stretchr-testify") -; (version "1.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/testify") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0wjchp2c8xbgcbbq32w3kvblk6q6yn533g78nxl6iskq6y95lxsy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/testify")) -; (propagated-inputs -; `(("go-github-com-stretchr-objx-0.1.0" -; ,go-github-com-stretchr-objx-0.1.0) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-davecgh-go-spew-1.1.0" -; ,go-github-com-davecgh-go-spew-1.1.0))) -; (home-page "https://github.com/stretchr/testify") -; (synopsis "Testify - Thou Shalt Write Tests") -; (description -; "** We are working on testify v2 and would love to hear what you'd like to see in -;it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -;Package testify is a set of packages that provide many tools for testifying that -;your code will behave as you intend.") -; (license license:expat))) -; -;(define-public go-github-com-apex-logs-0.0.7 -; (package -; (name "go-github-com-apex-logs") -; (version "0.0.7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/apex/logs") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1h12q9sb7f4yjizajfxvjllzqab1s8scgqj22prwyfbbqg1ilchv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/apex/logs")) -; (propagated-inputs -; `(("go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0" -; ,go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0) -; ("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0))) -; (home-page "https://github.com/apex/logs") -; (synopsis "Example") -; (description "Go client for @url{https://apex.sh/logs/,Apex Logs}.") -; (license license:expat))) -; -;(define-public go-github-com-aphistic-golf-0.0.0-20180712155816-02c07f170c5a -; (package -; (name "go-github-com-aphistic-golf") -; (version "0.0.0-20180712155816-02c07f170c5a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/aphistic/golf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1qixab9bb29wqbr4nc5j3g25hq1j7am93f181rkj7a4qacncx763")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/aphistic/golf")) -; (home-page "https://github.com/aphistic/golf") -; (synopsis "golf") -; (description -; "This package provides logging capabilities using the GELF -;(@url{https://www.graylog.org/resources/gelf-2/,https://www.graylog.org/resources/gelf-2/}) -;log format") -; (license license:expat))) -; -;(define-public go-github-com-mattn-go-isatty-0.0.5 -; (package -; (name "go-github-com-mattn-go-isatty") -; (version "0.0.5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mattn/go-isatty") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "114d5xm8rfxplzd7nxz97gfngb4bhqy102szl084d1afcxsvm4aa")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mattn/go-isatty")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223" -; ,go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223))) -; (home-page "https://github.com/mattn/go-isatty") -; (synopsis "go-isatty") -; (description "Package isatty implements interface to isatty") -; (license license:expat))) -; -;(define-public go-github-com-mattn-go-colorable-0.1.1 -; (package -; (name "go-github-com-mattn-go-colorable") -; (version "0.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mattn/go-colorable") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0l640974j804c1yyjfgyxqlsivz0yrzmbql4mhcw2azryigkp08p")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mattn/go-colorable")) -; (propagated-inputs -; `(("go-github-com-mattn-go-isatty-0.0.5" -; ,go-github-com-mattn-go-isatty-0.0.5))) -; (home-page "https://github.com/mattn/go-colorable") -; (synopsis "go-colorable") -; (description "Colorable writer for windows.") -; (license license:expat))) -; -;(define-public go-github-com-mgutz-ansi-0.0.0-20170206155736-9520e82c474b -; (package -; (name "go-github-com-mgutz-ansi") -; (version "0.0.0-20170206155736-9520e82c474b") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mgutz/ansi") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "00bz22314j26736w1f0q4jy9d9dfaml17vn890n5zqy3cmvmww1j")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mgutz/ansi")) -; (home-page "https://github.com/mgutz/ansi") -; (synopsis "ansi") -; (description -; "Package ansi is a small, fast library to create ANSI colored strings and codes.") -; (license license:expat))) -; -;(define-public go-github-com-fsnotify-fsnotify-1.4.7 -; (package -; (name "go-github-com-fsnotify-fsnotify") -; (version "1.4.7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/fsnotify/fsnotify") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/fsnotify/fsnotify")) -; (home-page "https://github.com/fsnotify/fsnotify") -; (synopsis "File system notifications for Go") -; (description -; "Package fsnotify provides a platform-independent interface for file system -;notifications.") -; (license license:bsd-3))) -; -;(define-public go-github-com-hpcloud-tail-1.0.0 -; (package -; (name "go-github-com-hpcloud-tail") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hpcloud/tail") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1njpzc0pi1acg5zx9y6vj9xi6ksbsc5d387rd6904hy6rh2m6kn0")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hpcloud/tail")) -; (home-page "https://github.com/hpcloud/tail") -; (synopsis "Go package for tail-ing files") -; (description -; "This package provides a Go package striving to emulate the features of the BSD -;@code{tail} program.") -; (license license:expat))) -; -;(define-public go-github-com-onsi-ginkgo-1.6.0 -; (package -; (name "go-github-com-onsi-ginkgo") -; (version "1.6.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/onsi/ginkgo") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0x0gc89vgq38xhgmi2h22bhr73cf2gmk42g89nz89k8dgg9hhr25")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/onsi/ginkgo")) -; (home-page "https://github.com/onsi/ginkgo") -; (synopsis "Ginkgo 2.0 Release Candidate is available!") -; (description "Ginkgo is a BDD-style testing framework for Golang") -; (license license:expat))) -; -;(define-public go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20180906233101-161cd47e91fd") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0254ld010iijygbzykib2vags1dc0wlmcmhgh4jl8iny159lhbcv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20180909124046-d0be0721c37e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "081wyvfnlf842dqg03raxfz6lldlxpmyh1prix9lmrrm65arxb12")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-gopkg-in-fsnotify-v1-1.4.7 -; (package -; (name "go-gopkg-in-fsnotify-v1") -; (version "1.4.7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/fsnotify.v1") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path -; "gopkg.in/fsnotify.v1" -; #:unpack-path -; "gopkg.in/fsnotify.v1")) -; (home-page "https://gopkg.in/fsnotify.v1") -; (synopsis "File system notifications for Go") -; (description -; "Package fsnotify provides a platform-independent interface for file system -;notifications.") -; (license license:bsd-3))) -; -;(define-public go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7 -; (package -; (name "go-gopkg-in-tomb-v1") -; (version "1.0.0-20141024135613-dd632973f1e7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/tomb.v1") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1lqmq1ag7s4b3gc3ddvr792c5xb5k6sfn0cchr3i2s7f1c231zjv")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/tomb.v1" #:unpack-path "gopkg.in/tomb.v1")) -; (home-page "https://gopkg.in/tomb.v1") -; (synopsis "Installation and usage") -; (description -; "The tomb package offers a conventional API for clean goroutine termination.") -; (license license:bsd-3))) -; -;(define-public go-gopkg-in-yaml-v2-2.2.1 -; (package -; (name "go-gopkg-in-yaml-v2") -; (version "2.2.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/yaml.v2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0dwjrs2lp2gdlscs7bsrmyc5yf6mm4fvgw71bzr9mv2qrd2q73s1")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" -; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) -; (home-page "https://gopkg.in/yaml.v2") -; (synopsis "YAML support for the Go language") -; (description "Package yaml implements YAML support for the Go language.") -; (license license:asl2.0))) -; -;(define-public go-github-com-onsi-gomega-1.5.0 -; (package -; (name "go-github-com-onsi-gomega") -; (version "1.5.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/onsi/gomega") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1n7i4hksdgv410m43v2sw14bl5vy59dkp6nlw5l76nibbh37syr9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/onsi/gomega")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1) -; ("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" -; ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) -; ("go-gopkg-in-fsnotify-v1-1.4.7" ,go-gopkg-in-fsnotify-v1-1.4.7) -; ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e" -; ,go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e) -; ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" -; ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) -; ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" -; ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) -; ("go-github-com-onsi-ginkgo-1.6.0" ,go-github-com-onsi-ginkgo-1.6.0) -; ("go-github-com-hpcloud-tail-1.0.0" ,go-github-com-hpcloud-tail-1.0.0) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0) -; ("go-github-com-fsnotify-fsnotify-1.4.7" -; ,go-github-com-fsnotify-fsnotify-1.4.7))) -; (home-page "https://github.com/onsi/gomega") -; (synopsis ": a BDD Testing Framework for Golang") -; (description -; "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library.") -; (license license:expat))) -; -;(define-public go-github-com-sergi-go-diff-1.0.0 -; (package -; (name "go-github-com-sergi-go-diff") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/sergi/go-diff") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0swiazj8wphs2zmk1qgq75xza6m19snif94h2m6fi8dqkwqdl7c7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/sergi/go-diff")) -; (home-page "https://github.com/sergi/go-diff") -; (synopsis "go-diff") -; (description -; "go-diff offers algorithms to perform operations required for synchronizing plain -;text:") -; (license license:expat))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20190426145343-a29dc8fdc734 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20190426145343-a29dc8fdc734") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "07f0jj4haqs0ywc1akk1qjwn5msl2j0pry1rxjkkbfcq4r6ihc1p")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" -; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) -; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" -; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-github-com-aphistic-sweet-0.2.0 -; (package -; (name "go-github-com-aphistic-sweet") -; (version "0.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/aphistic/sweet") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1bb4qagfxf6byqn2yx0vq24xfvisz3ah4w6bvqclc8cklvfngw43")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/aphistic/sweet")) -; (propagated-inputs -; `(("go-golang-org-x-crypto-0.0.0-20190426145343-a29dc8fdc734" -; ,go-golang-org-x-crypto-0.0.0-20190426145343-a29dc8fdc734) -; ("go-github-com-sergi-go-diff-1.0.0" -; ,go-github-com-sergi-go-diff-1.0.0) -; ("go-github-com-onsi-gomega-1.5.0" ,go-github-com-onsi-gomega-1.5.0) -; ("go-github-com-mgutz-ansi-0.0.0-20170206155736-9520e82c474b" -; ,go-github-com-mgutz-ansi-0.0.0-20170206155736-9520e82c474b) -; ("go-github-com-mattn-go-colorable-0.1.1" -; ,go-github-com-mattn-go-colorable-0.1.1))) -; (home-page "https://github.com/aphistic/sweet") -; (synopsis "sweet") -; (description -; "Sweet is a pluggable test runner capable of hooking into standard Go tests. It -;attempts to provide access to the standard Go test tool as close as possible -;while adding support for test suites and plugins that can hook into test results -;to add additional functionality.") -; (license license:expat))) -; -;(define-public go-github-com-jmespath-go-jmespath-0.0.0-20180206201540-c2b33e8439af -; (package -; (name "go-github-com-jmespath-go-jmespath") -; (version "0.0.0-20180206201540-c2b33e8439af") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/jmespath/go-jmespath") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1r6w7ydx8ydryxk3sfhzsk8m6f1nsik9jg3i1zhi69v4kfl4d5cz")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/jmespath/go-jmespath")) -; (home-page "https://github.com/jmespath/go-jmespath") -; (synopsis "go-jmespath - A JMESPath implementation in Go") -; (description -; "go-jmespath is a GO implementation of JMESPath, which is a query language for -;JSON. It will take a JSON document and transform it into another JSON document -;through a JMESPath expression.") -; (license license:asl2.0))) -; -;(define-public go-github-com-aws-aws-sdk-go-1.20.6 -; (package -; (name "go-github-com-aws-aws-sdk-go") -; (version "1.20.6") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/aws/aws-sdk-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "016vy5s9finyfgh08j7rvn2pnwymdgj2ydr59w57pysnri87mdwx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/aws/aws-sdk-go")) -; (propagated-inputs -; `(("go-github-com-jmespath-go-jmespath-0.0.0-20180206201540-c2b33e8439af" -; ,go-github-com-jmespath-go-jmespath-0.0.0-20180206201540-c2b33e8439af))) -; (home-page "https://github.com/aws/aws-sdk-go") -; (synopsis "AWS SDK for Go") -; (description -; "Package sdk is the official AWS SDK for the Go programming language.") -; (license license:asl2.0))) -; -;(define-public go-github-com-aybabtme-rgbterm-0.0.0-20170906152045-cc83f3b3ce59 -; (package -; (name "go-github-com-aybabtme-rgbterm") -; (version "0.0.0-20170906152045-cc83f3b3ce59") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/aybabtme/rgbterm") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0wvmxvjn64968ikvnxrflb1x8rlcwzpfl53fzbxff2axbx9lq50q")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/aybabtme/rgbterm")) -; (home-page "https://github.com/aybabtme/rgbterm") -; (synopsis "RGB terminal") -; (description -; "Package rgbterm colorizes bytes and strings using RGB colors, for a full range -;of pretty terminal strings.") -; (license license:expat))) -; -;(define-public go-github-com-fatih-color-1.7.0 -; (package -; (name "go-github-com-fatih-color") -; (version "1.7.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/fatih/color") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0v8msvg38r8d1iiq2i5r4xyfx0invhc941kjrsg5gzwvagv55inv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/fatih/color")) -; (home-page "https://github.com/fatih/color") -; (synopsis "color") -; (description -; "Package color is an ANSI color package to output colorized or SGR defined output -;to the standard output. The API can be used in several way, pick one that suits -;you.") -; (license license:expat))) -; -;(define-public go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515 -; (package -; (name "go-github-com-kr-logfmt") -; (version "0.0.0-20140226030751-b84e30acd515") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kr/logfmt") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "02ldzxgznrfdzvghfraslhgp19la1fczcbzh7wm2zdc6lmpd1qq9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kr/logfmt")) -; (home-page "https://github.com/kr/logfmt") -; (synopsis #f) -; (description "Package implements the decoding of logfmt key-value pairs.") -; (license license:expat))) -; -;(define-public go-github-com-go-logfmt-logfmt-0.4.0 -; (package -; (name "go-github-com-go-logfmt-logfmt") -; (version "0.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/go-logfmt/logfmt") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "06smxc112xmixz78nyvk3b2hmc7wasf2sl5vxj1xz62kqcq9lzm9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/go-logfmt/logfmt")) -; (propagated-inputs -; `(("go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515" -; ,go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515))) -; (home-page "https://github.com/go-logfmt/logfmt") -; (synopsis "logfmt") -; (description -; "Package logfmt implements utilities to marshal and unmarshal data in the logfmt -;format. The logfmt format records key/value pairs in a way that balances -;readability for humans and simplicity of computer parsing. It is most commonly -;used as a more human friendly alternative to JSON for structured logging.") -; (license license:expat))) -; -;(define-public go-github-com-golang-protobuf-1.3.1 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.3.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "15am4s4646qy6iv0g3kkqq52rzykqjhm4bf08dk0fy2r58knpsyl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code -;github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-github-com-google-uuid-1.1.1 -; (package -; (name "go-github-com-google-uuid") -; (version "1.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/uuid") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0hfxcf9frkb57k6q0rdkrmnfs78ms21r1qfk9fhlqga2yh5xg8zb")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/uuid")) -; (home-page "https://github.com/google/uuid") -; (synopsis "uuid") -; (description "Package uuid generates and inspects UUIDs.") -; (license license:bsd-3))) -; -;(define-public go-github-com-jpillora-backoff-0.0.0-20180909062703-3050d21c67d7 -; (package -; (name "go-github-com-jpillora-backoff") -; (version "0.0.0-20180909062703-3050d21c67d7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/jpillora/backoff") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1nxapdx9xg5gwiscfhq7m0w14hj4gaxb4avmgf1mx9zd3jnw9jxv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/jpillora/backoff")) -; (home-page "https://github.com/jpillora/backoff") -; (synopsis "Backoff") -; (description -; "Package backoff provides an exponential-backoff implementation.") -; (license license:expat))) -; -;(define-public go-github-com-kr-pretty-0.2.0 -; (package -; (name "go-github-com-kr-pretty") -; (version "0.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kr/pretty") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ywbfzz1h3a3qd8rpkiqwi1dm4w8ls9ijb4x1b7567grns9f0vnp")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kr/pretty")) -; (propagated-inputs -; `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) -; (home-page "https://github.com/kr/pretty") -; (synopsis #f) -; (description -; "Package pretty provides pretty-printing for Go values. This is useful during -;debugging, to avoid wrapping long output lines in the terminal.") -; (license license:expat))) -; -;(define-public go-github-com-mattn-go-colorable-0.1.2 -; (package -; (name "go-github-com-mattn-go-colorable") -; (version "0.1.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mattn/go-colorable") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0512jm3wmzkkn7d99x9wflyqf48n5ri3npy1fqkq6l6adc5mni3n")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mattn/go-colorable")) -; (propagated-inputs -; `(("go-github-com-mattn-go-isatty-0.0.8" -; ,go-github-com-mattn-go-isatty-0.0.8))) -; (home-page "https://github.com/mattn/go-colorable") -; (synopsis "go-colorable") -; (description "Colorable writer for windows.") -; (license license:expat))) -; -;(define-public go-github-com-pkg-errors-0.8.1 -; (package -; (name "go-github-com-pkg-errors") -; (version "0.8.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/pkg/errors") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0g5qcb4d4fd96midz0zdk8b9kz8xkzwfa8kr1cliqbg8sxsy5vd1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/pkg/errors")) -; (home-page "https://github.com/pkg/errors") -; (synopsis "errors") -; (description "Package errors provides simple error handling primitives.") -; (license license:bsd-2))) -; -;(define-public go-github-com-rogpeppe-fastuuid-1.1.0 -; (package -; (name "go-github-com-rogpeppe-fastuuid") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/rogpeppe/fastuuid") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1jlif5pxyz3md02ij93kd2y2j1zz0ajc9k8azvn83vv6l3r5c1zg")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/rogpeppe/fastuuid")) -; (home-page "https://github.com/rogpeppe/fastuuid") -; (synopsis "fastuuid") -; (description -; "Package fastuuid provides fast UUID generation of 192 bit universally unique -;identifiers.") -; (license license:bsd-3))) -; -;(define-public go-github-com-smartystreets-go-aws-auth-0.0.0-20180515143844-0c1422d1fdb9 -; (package -; (name "go-github-com-smartystreets-go-aws-auth") -; (version "0.0.0-20180515143844-0c1422d1fdb9") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/smarty-archives/go-aws-auth") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0krfdpgn3gfii1z9fi8ydfw0wwfqyvp6w3rji7w92m528zkjl93d")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/smartystreets/go-aws-auth")) -; (home-page "https://github.com/smartystreets/go-aws-auth") -; (synopsis "go-aws-auth") -; (description -; "Package awsauth implements AWS request signing using Signed Signature Version 2, -;Signed Signature Version 3, and Signed Signature Version 4. Supports S3 and -;STS.") -; (license license:expat))) -; -;(define-public go-github-com-smartystreets-assertions-1.0.0 -; (package -; (name "go-github-com-smartystreets-assertions") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/smartystreets/assertions") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1188hs39zvil41sdnxs83h1hp319lfyc5n2rvd1xnhz1dh5qjjh4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/smartystreets/assertions")) -; (home-page "https://github.com/smartystreets/assertions") -; (synopsis #f) -; (description -; "Package assertions contains the implementations for all assertions which are -;referenced in goconvey's `convey` package -;(github.com/smartystreets/goconvey/convey) and gunit -;(github.com/smartystreets/gunit) for use with the So(...) method. They can also -;be used in traditional Go test functions and even in applications.") -; (license license:expat))) -; -;(define-public go-github-com-smartystreets-gunit-1.0.0 -; (package -; (name "go-github-com-smartystreets-gunit") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/smartystreets/gunit") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "11d09rl5qqpj36a311pjj8w5jkj83d5b8gdcsx8f1zn4j924sm5d")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/smartystreets/gunit")) -; (propagated-inputs -; `(("go-github-com-smartystreets-assertions-1.0.0" -; ,go-github-com-smartystreets-assertions-1.0.0))) -; (home-page "https://github.com/smartystreets/gunit") -; (synopsis "gunit") -; (description -; "Package gunit provides \"testing\" package hooks and convenience functions for -;writing tests in an xUnit style. See the README file and the examples folder -;for examples.") -; (license license:expat))) -; -;(define-public go-github-com-stretchr-testify-1.4.0 -; (package -; (name "go-github-com-stretchr-testify") -; (version "1.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/testify") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "187i5g88sxfy4vxpm7dw1gwv29pa2qaq475lxrdh5livh69wqfjb")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/testify")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) -; ("go-github-com-stretchr-objx-0.1.0" -; ,go-github-com-stretchr-objx-0.1.0) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-davecgh-go-spew-1.1.0" -; ,go-github-com-davecgh-go-spew-1.1.0))) -; (home-page "https://github.com/stretchr/testify") -; (synopsis "Testify - Thou Shalt Write Tests") -; (description -; "** We are working on testify v2 and would love to hear what you'd like to see in -;it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -;Package testify is a set of packages that provide many tools for testifying that -;your code will behave as you intend.") -; (license license:expat))) -; -;(define-public go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0 -; (package -; (name "go-github-com-tj-assert") -; (version "0.0.0-20171129193455-018094318fb0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/tj/assert") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "15ika7izp5hkd10dm30apwfvpm0d1yl2rnxs6896q0svz9zvi2z3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/tj/assert")) -; (home-page "https://github.com/tj/assert") -; (synopsis "assert") -; (description -; "Package assert implements the same assertions as the `assert` package but stops -;test execution when a test fails.") -; (license license:expat))) -; -;(define-public go-github-com-tj-go-elastic-0.0.0-20171221160941-36157cbbebc2 -; (package -; (name "go-github-com-tj-go-elastic") -; (version "0.0.0-20171221160941-36157cbbebc2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/tj/go-elastic") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1r94vc4hbfvqvjz74n4mvsw4dy3vbyzlivb90kyn8vn76a4wqk69")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/tj/go-elastic")) -; (home-page "https://github.com/tj/go-elastic") -; (synopsis "go-elastic") -; (description -; "Package elastic provides an Elasticsearch client with AWS sigv4 support.") -; (license license:expat))) -; -;(define-public go-github-com-tj-go-kinesis-0.0.0-20171128231115-08b17f58cb1b -; (package -; (name "go-github-com-tj-go-kinesis") -; (version "0.0.0-20171128231115-08b17f58cb1b") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/tj/go-kinesis") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "108c6p5j6rhhc2cnc2v5368yfsw73y6lzlvz02vpvvjph8rhmld4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/tj/go-kinesis")) -; (home-page "https://github.com/tj/go-kinesis") -; (synopsis "go-kinesis") -; (description -; "Package kinesis implements a batch producer built on top of the official AWS -;SDK.") -; (license license:expat))) -; -;(define-public go-github-com-tj-go-spin-1.1.0 -; (package -; (name "go-github-com-tj-go-spin") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/tj/go-spin") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "11xr67991m5pwsy1dira3iwd0sr55vmn1cyjwmlqziw4bwpym64s")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/tj/go-spin")) -; (home-page "https://github.com/tj/go-spin") -; (synopsis #f) -; (description #f) -; (license #f))) -; -;(define-public go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20190620200207-3b0461eec859") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0l00c8l0a8xnv6qdpwfzxxsr58jggacgzdrwiprrfx2xqm37b6d5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20180917221912-90fa682c2a6e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-text-0.3.2 -; (package -; (name "go-golang-org-x-text") -; (version "0.3.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/text") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0flv9idw0jm5nm8lx25xqanbkqgfiym6619w575p7nrdh0riqwqh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/text")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" -; ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) -; (home-page "https://golang.org/x/text") -; (synopsis "Go Text") -; (description -; "text is a repository of text-related packages related to internationalization -;(i18n) and localization (l10n), such as character encodings, text -;transformations, and locale-specific text handling.") -; (license license:bsd-3))) -; -;(define-public go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15 -; (package -; (name "go-gopkg-in-check-v1") -; (version "1.0.0-20190902080502-41f04d3bba15") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/check.v1") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0vfk9czmlxmp6wndq8k17rhnjxal764mxfhrccza7nwlia760pjy")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) -; (home-page "https://gopkg.in/check.v1") -; (synopsis "Instructions") -; (description -; "Package check is a rich testing extension for Go's testing package.") -; (license license:bsd-2))) -; -;(define-public go-github-com-apex-log-1.4.0 -; (package -; (name "go-github-com-apex-log") -; (version "1.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/apex/log") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0711096f04dyjk2vgj5b50491fl36wciwbq80xwvns5wwkqdg2z5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/apex/log")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" -; ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) -; ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) -; ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" -; ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) -; ("go-github-com-tj-go-spin-1.1.0" ,go-github-com-tj-go-spin-1.1.0) -; ("go-github-com-tj-go-kinesis-0.0.0-20171128231115-08b17f58cb1b" -; ,go-github-com-tj-go-kinesis-0.0.0-20171128231115-08b17f58cb1b) -; ("go-github-com-tj-go-elastic-0.0.0-20171221160941-36157cbbebc2" -; ,go-github-com-tj-go-elastic-0.0.0-20171221160941-36157cbbebc2) -; ("go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0" -; ,go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0) -; ("go-github-com-stretchr-testify-1.4.0" -; ,go-github-com-stretchr-testify-1.4.0) -; ("go-github-com-smartystreets-gunit-1.0.0" -; ,go-github-com-smartystreets-gunit-1.0.0) -; ("go-github-com-smartystreets-go-aws-auth-0.0.0-20180515143844-0c1422d1fdb9" -; ,go-github-com-smartystreets-go-aws-auth-0.0.0-20180515143844-0c1422d1fdb9) -; ("go-github-com-rogpeppe-fastuuid-1.1.0" -; ,go-github-com-rogpeppe-fastuuid-1.1.0) -; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) -; ("go-github-com-mattn-go-colorable-0.1.2" -; ,go-github-com-mattn-go-colorable-0.1.2) -; ("go-github-com-kr-pretty-0.2.0" ,go-github-com-kr-pretty-0.2.0) -; ("go-github-com-jpillora-backoff-0.0.0-20180909062703-3050d21c67d7" -; ,go-github-com-jpillora-backoff-0.0.0-20180909062703-3050d21c67d7) -; ("go-github-com-google-uuid-1.1.1" ,go-github-com-google-uuid-1.1.1) -; ("go-github-com-golang-protobuf-1.3.1" -; ,go-github-com-golang-protobuf-1.3.1) -; ("go-github-com-go-logfmt-logfmt-0.4.0" -; ,go-github-com-go-logfmt-logfmt-0.4.0) -; ("go-github-com-fatih-color-1.7.0" ,go-github-com-fatih-color-1.7.0) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1) -; ("go-github-com-aybabtme-rgbterm-0.0.0-20170906152045-cc83f3b3ce59" -; ,go-github-com-aybabtme-rgbterm-0.0.0-20170906152045-cc83f3b3ce59) -; ("go-github-com-aws-aws-sdk-go-1.20.6" -; ,go-github-com-aws-aws-sdk-go-1.20.6) -; ("go-github-com-aphistic-sweet-0.2.0" -; ,go-github-com-aphistic-sweet-0.2.0) -; ("go-github-com-aphistic-golf-0.0.0-20180712155816-02c07f170c5a" -; ,go-github-com-aphistic-golf-0.0.0-20180712155816-02c07f170c5a) -; ("go-github-com-apex-logs-0.0.7" ,go-github-com-apex-logs-0.0.7))) -; (home-page "https://github.com/apex/log") -; (synopsis "Handlers") -; (description -; "Package log implements a simple structured logging API designed with few -;assumptions. Designed for centralized logging solutions such as Kinesis which -;require encoding and decoding before fanning-out to handlers.") -; (license license:expat))) -; -;(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0 -; (package -; (name "go-github-com-cpuguy83-go-md2man-v2") -; (version "2.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/cpuguy83/go-md2man") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) -; (propagated-inputs -; `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" -; ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) -; ("go-github-com-russross-blackfriday-v2-2.0.1" -; ,go-github-com-russross-blackfriday-v2-2.0.1) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0))) -; (home-page "https://github.com/cpuguy83/go-md2man") -; (synopsis "go-md2man") -; (description "Converts markdown into roff (man pages).") -; (license license:expat))) -; -;(define-public go-github-com-cyphar-filepath-securejoin-0.2.2 -; (package -; (name "go-github-com-cyphar-filepath-securejoin") -; (version "0.2.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/cyphar/filepath-securejoin") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0id32zjb92wm569m29nfrzz5mw9z1glr3klayr6j134pp4h1sgq4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/cyphar/filepath-securejoin")) -; (home-page "https://github.com/cyphar/filepath-securejoin") -; (synopsis #f) -; (description -; "Package securejoin is an implementation of the hopefully-soon-to-be-included -;SecureJoin helper that is meant to be part of the \"path/filepath\" package. The -;purpose of this project is to provide a PoC implementation to make the -;SecureJoin proposal -;(@url{https://github.com/golang/go/issues/20126,https://github.com/golang/go/issues/20126}) -;more tangible.") -; (license license:bsd-3))) -; -;(define-public go-github-com-docker-go-units-0.4.0 -; (package -; (name "go-github-com-docker-go-units") -; (version "0.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/docker/go-units") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0k8gja8ql4pqg5rzmqvka42vjfs6rzablak87whcnqba6qxpimvz")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/docker/go-units")) -; (home-page "https://github.com/docker/go-units") -; (synopsis "Introduction") -; (description -; "Package units provides helper function to parse and print size and time units in -;human-readable format.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-protobuf-1.23.0 -; (package -; (name "go-google-golang-org-protobuf") -; (version "1.23.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "03yan0m1v0zmlr935p4n24fd376mznsg85zy8sywbgisls4s1bzy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.4.0" -; ,go-github-com-golang-protobuf-1.4.0))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is -;a language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol -;buffer developer guide} for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.4.2 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.4.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0m5z81im4nsyfgarjhppayk4hqnrwswr3nix9mj8pff8x9jvcjqw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.23.0" -; ,go-google-golang-org-protobuf-1.23.0) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0))) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code -;github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-github-com-google-go-cmp-0.5.0 -; (package -; (name "go-github-com-google-go-cmp") -; (version "0.5.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/go-cmp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "04pzp583p6b32y34c6jygfxarff9qjs39rarvfh6467z24sdd9k4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/go-cmp")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" -; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) -; (home-page "https://github.com/google/go-cmp") -; (synopsis "Package for equality of Go values") -; (description -; "This package is intended to be a more powerful and safer alternative to -;@code{reflect.DeepEqual} for comparing whether two values are semantically -;equal.") -; (license license:bsd-3))) -; -;(define-public go-github-com-klauspost-compress-1.11.3 -; (package -; (name "go-github-com-klauspost-compress") -; (version "1.11.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/klauspost/compress") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "04wpilw6072fh2wd492ma1nw4br7bvz466mj0vi2m1g4w6d0z88z")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/klauspost/compress")) -; (home-page "https://github.com/klauspost/compress") -; (synopsis "compress") -; (description "This package provides various compression algorithms.") -; (license license:expat))) -; -;(define-public go-github-com-klauspost-pgzip-1.2.4 -; (package -; (name "go-github-com-klauspost-pgzip") -; (version "1.2.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/klauspost/pgzip") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0mnhfdn0isbkra455jynqjbmrwymx09shlbzbyvgfycih3nbrif0")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/klauspost/pgzip")) -; (home-page "https://github.com/klauspost/pgzip") -; (synopsis "pgzip") -; (description -; "Package pgzip implements reading and writing of gzip format compressed files, as -;specified in @url{https://rfc-editor.org/rfc/rfc1952.html,RFC 1952}.") -; (license license:expat))) -; -;(define-public go-github-com-creack-pty-1.1.9 -; (package -; (name "go-github-com-creack-pty") -; (version "1.1.9") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/creack/pty") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1v52599qq76dwq742mffakzj6mxqqccv2szn3hjicjld56nmd2d3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/creack/pty")) -; (home-page "https://github.com/creack/pty") -; (synopsis "pty") -; (description -; "Package pty provides functions for working with Unix terminals.") -; (license license:expat))) -; -;(define-public go-github-com-kr-text-0.2.0 -; (package -; (name "go-github-com-kr-text") -; (version "0.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kr/text") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0hf58ypz6rxsw6nx3i856whir9lvy4sdx946wbw1nfaf2rdmr9vx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kr/text")) -; (propagated-inputs -; `(("go-github-com-creack-pty-1.1.9" ,go-github-com-creack-pty-1.1.9))) -; (home-page "https://github.com/kr/text") -; (synopsis #f) -; (description -; "Package text provides rudimentary functions for manipulating text in paragraphs.") -; (license license:expat))) -; -;(define-public go-golang-org-x-sys-0.0.0-20200116001909-b77594299b42 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20200116001909-b77594299b42") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0isfm6kmh4fjhh6m7mrb3zvdjka2y31c5habr5kydl7rg0lwkabv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-mattn-go-isatty-0.0.12 -; (package -; (name "go-github-com-mattn-go-isatty") -; (version "0.0.12") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mattn/go-isatty") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1dfsh27d52wmz0nmmzm2382pfrs2fcijvh6cgir7jbb4pnigr5w4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mattn/go-isatty")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20200116001909-b77594299b42" -; ,go-golang-org-x-sys-0.0.0-20200116001909-b77594299b42))) -; (home-page "https://github.com/mattn/go-isatty") -; (synopsis "go-isatty") -; (description "Package isatty implements interface to isatty") -; (license license:expat))) -; -;(define-public go-golang-org-x-sys-0.0.0-20200223170610-d5e6a3e2c0ae -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20200223170610-d5e6a3e2c0ae") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0lz7vm5dz2p14fzq2j4m1l9p392cl0fa73aaf45gln07ylfajk4n")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-mattn-go-colorable-0.1.6 -; (package -; (name "go-github-com-mattn-go-colorable") -; (version "0.1.6") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mattn/go-colorable") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0zv9ix7g0qf71jdhv7gbab9hjfkgbxl22kwhpz9ck1y6m4g1zxaw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mattn/go-colorable")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20200223170610-d5e6a3e2c0ae" -; ,go-golang-org-x-sys-0.0.0-20200223170610-d5e6a3e2c0ae) -; ("go-github-com-mattn-go-isatty-0.0.12" -; ,go-github-com-mattn-go-isatty-0.0.12))) -; (home-page "https://github.com/mattn/go-colorable") -; (synopsis "go-colorable") -; (description "Colorable writer for windows.") -; (license license:expat))) -; -;(define-public go-github-com-mohae-deepcopy-0.0.0-20170929034955-c48cc78d4826 -; (package -; (name "go-github-com-mohae-deepcopy") -; (version "0.0.0-20170929034955-c48cc78d4826") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mohae/deepcopy") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0jdhsz0hsbn0k45rmvm39knbvs024j24ay2q65k5ih8ql8m2c0sd")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mohae/deepcopy")) -; (home-page "https://github.com/mohae/deepcopy") -; (synopsis "deepCopy") -; (description -; "deepcopy makes deep copies of things. A standard copy will copy the pointers: -;deep copy copies the values pointed to. Unexported field values are not copied.") -; (license license:expat))) -; -;(define-public go-github-com-kr-pty-1.1.1 -; (package -; (name "go-github-com-kr-pty") -; (version "1.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kr/pty") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0383f0mb9kqjvncqrfpidsf8y6ns5zlrc91c6a74xpyxjwvzl2y6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kr/pty")) -; (home-page "https://github.com/kr/pty") -; (synopsis "pty") -; (description -; "Package pty is a wrapper for github.com/creack/pty, which provides functions for -;working with Unix terminals.") -; (license license:expat))) -; -;(define-public go-github-com-kr-text-0.1.0 -; (package -; (name "go-github-com-kr-text") -; (version "0.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kr/text") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1gm5bsl01apvc84bw06hasawyqm4q84vx1pm32wr9jnd7a8vjgj1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kr/text")) -; (propagated-inputs -; `(("go-github-com-kr-pty-1.1.1" ,go-github-com-kr-pty-1.1.1))) -; (home-page "https://github.com/kr/text") -; (synopsis #f) -; (description -; "Package text provides rudimentary functions for manipulating text in paragraphs.") -; (license license:expat))) -; -;(define-public go-github-com-niemeyer-pretty-0.0.0-20200227124842-a10e7caefd8e -; (package -; (name "go-github-com-niemeyer-pretty") -; (version "0.0.0-20200227124842-a10e7caefd8e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/niemeyer/pretty") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1jmazh4xzaa3v6g46hz60q2z7nmqs9l9cxdzmmscn3kbcs2znq4v")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/niemeyer/pretty")) -; (propagated-inputs -; `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) -; (home-page "https://github.com/niemeyer/pretty") -; (synopsis #f) -; (description -; "Package pretty provides pretty-printing for Go values. This is useful during -;debugging, to avoid wrapping long output lines in the terminal.") -; (license license:expat))) -; -;(define-public go-github-com-opencontainers-go-digest-1.0.0 -; (package -; (name "go-github-com-opencontainers-go-digest") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/go-digest") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0i5acjajvr6hi9zb7gxwifd8w28y884cv7cx36adj8lngj647xbi")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/go-digest")) -; (home-page "https://github.com/opencontainers/go-digest") -; (synopsis "go-digest") -; (description -; "Package digest provides a generalized type to opaquely represent message digests -;and their operations within the registry. The Digest type is designed to serve -;as a flexible identifier in a content-addressable system. More importantly, it -;provides tools and wrappers to work with hash.Hash-based digests with little -;effort.") -; (license (list license:asl2.0 license:cc-by-sa4.0)))) -; -;(define-public go-github-com-opencontainers-image-spec-1.0.1 -; (package -; (name "go-github-com-opencontainers-image-spec") -; (version "1.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/image-spec") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "03dvbj3dln8c55v9gp79mgmz2yi2ws3r08iyz2fk41y3i22iaw1q")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/image-spec")) -; (home-page "https://github.com/opencontainers/image-spec") -; (synopsis "OCI Image Format Specification") -; (description -; "The OCI Image Format project creates and maintains the software shipping -;container image format spec (OCI Image Format).") -; (license license:asl2.0))) -; -;(define-public go-github-com-opencontainers-runc-1.0.0-rc90 -; (package -; (name "go-github-com-opencontainers-runc") -; (version "1.0.0-rc90") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/runc") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0pi3rvj585997m4z9ljkxz2z9yxf9p2jr0pmqbqrc7bc95f5hagk")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/runc")) -; (home-page "https://github.com/opencontainers/runc") -; (synopsis "runc") -; (description -; "@code{runc} is a CLI tool for spawning and running containers on Linux according -;to the OCI specification.") -; (license license:asl2.0))) -; -;(define-public go-github-com-opencontainers-runtime-spec-1.0.2 -; (package -; (name "go-github-com-opencontainers-runtime-spec") -; (version "1.0.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/runtime-spec") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "19w981vcmd5lp2hy0630x6ayb8zz17n2vxqm2py5mg945xflcizg")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) -; (home-page "https://github.com/opencontainers/runtime-spec") -; (synopsis "Open Container Initiative Runtime Specification") -; (description -; "The @url{https://www.opencontainers.org,Open Container Initiative} develops -;specifications for standards on Operating System process and application -;containers.") -; (license license:asl2.0))) -; -;(define-public go-github-com-pkg-errors-0.9.1 -; (package -; (name "go-github-com-pkg-errors") -; (version "0.9.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/pkg/errors") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1761pybhc2kqr6v5fm8faj08x9bql8427yqg6vnfv6nhrasx1mwq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/pkg/errors")) -; (home-page "https://github.com/pkg/errors") -; (synopsis "errors") -; (description "Package errors provides simple error handling primitives.") -; (license license:bsd-2))) -; -;(define-public go-github-com-rootless-containers-proto-0.1.0 -; (package -; (name "go-github-com-rootless-containers-proto") -; (version "0.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/rootless-containers/proto") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1yik3b2fxpdkhplni8saabpvf43wnnz4wh6fapak29mkj3lx3mfh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/rootless-containers/proto")) -; (home-page "https://github.com/rootless-containers/proto") -; (synopsis #f) -; (description -; "This project contains the -;@url{https://developers.google.com/protocol-buffers/,protobuf} definition of the -;@code{user.rootlesscontainers} extended attribute. The main purpose of this -;attribute is to allow for a interoperable and standardised way of emulating -;persistent syscalls in a @url{https://rootlesscontaine.rs/,rootless container} -;(syscalls such as @code{chown(2)} which would ordinarily fail).") -; (license license:asl2.0))) -; -;(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.3 -; (package -; (name "go-github-com-konsorten-go-windows-terminal-sequences") -; (version "1.0.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/konsorten/go-windows-terminal-sequences") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1yrsd4s8vhjnxhwbigirymz89dn6qfjnhn28i33vvvdgf96j6ypl")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) -; (home-page "https://github.com/konsorten/go-windows-terminal-sequences") -; (synopsis "Windows Terminal Sequences") -; (description -; "This library allow for enabling Windows terminal color support for Go.") -; (license license:expat))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190422165155-953cdadca894") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0gkha4whk8xkcv3isigbs250akag99isxnd3v9xmy0kl3g88hxy1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-sirupsen-logrus-1.6.0 -; (package -; (name "go-github-com-sirupsen-logrus") -; (version "1.6.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/sirupsen/logrus") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1zf9is1yxxnna0d1pyag2m9ziy3l27zb2j92p9msm1gx5jjrvzzj")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/sirupsen/logrus")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894" -; ,go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894) -; ("go-github-com-stretchr-testify-1.2.2" -; ,go-github-com-stretchr-testify-1.2.2) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.3" -; ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.3) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://github.com/sirupsen/logrus") -; (synopsis "Logrus") -; (description -; "Package logrus is a structured logger for Go, completely API compatible with the -;standard library logger.") -; (license license:expat))) -; -;(define-public go-github-com-davecgh-go-spew-1.1.0 -; (package -; (name "go-github-com-davecgh-go-spew") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/davecgh/go-spew") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/davecgh/go-spew")) -; (home-page "https://github.com/davecgh/go-spew") -; (synopsis "go-spew") -; (description -; "Go-spew implements a deep pretty printer for Go data structures to aid in -;debugging. A comprehensive suite of tests with 100% test coverage is provided -;to ensure proper functionality. See @code{test_coverage.txt} for the gocov -;coverage report. Go-spew is licensed under the liberal ISC license, so it may -;be used in open source or commercial projects.") -; (license license:isc))) -; -;(define-public go-github-com-stretchr-objx-0.1.0 -; (package -; (name "go-github-com-stretchr-objx") -; (version "0.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/objx") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/objx")) -; (home-page "https://github.com/stretchr/objx") -; (synopsis "Objx") -; (description -; "Objx - Go package for dealing with maps, slices, JSON and other data.") -; (license license:expat))) -; -;(define-public go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c -; (package -; (name "go-gopkg-in-yaml-v3") -; (version "3.0.0-20200313102051-9f266ea9e77c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/yaml.v3") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1bbai3lzb50m0x2vwsdbagrbhvfylj9k1m32hgbqwldqx4p9ay35")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" -; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) -; (home-page "https://gopkg.in/yaml.v3") -; (synopsis "YAML support for the Go language") -; (description "Package yaml implements YAML support for the Go language.") -; (license license:expat))) -; -;(define-public go-github-com-stretchr-testify-1.6.1 -; (package -; (name "go-github-com-stretchr-testify") -; (version "1.6.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/testify") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1yhiqqzjvi63pf01rgzx68gqkkvjx03fvl5wk30br5l6s81s090l")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/testify")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" -; ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) -; ("go-github-com-stretchr-objx-0.1.0" -; ,go-github-com-stretchr-objx-0.1.0) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-davecgh-go-spew-1.1.0" -; ,go-github-com-davecgh-go-spew-1.1.0))) -; (home-page "https://github.com/stretchr/testify") -; (synopsis "Testify - Thou Shalt Write Tests") -; (description -; "** We are working on testify v2 and would love to hear what you'd like to see in -;it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -;Package testify is a set of packages that provide many tools for testifying that -;your code will behave as you intend.") -; (license license:expat))) -; -;(define-public go-gopkg-in-yaml-v3-3.0.0-20200605160147-a5ece683394c -; (package -; (name "go-gopkg-in-yaml-v3") -; (version "3.0.0-20200605160147-a5ece683394c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/yaml.v3") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "03cm7c3p5fh0aa8vnxv5010dgqqr268ivb480ix1salxx3396w68")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" -; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) -; (home-page "https://gopkg.in/yaml.v3") -; (synopsis "YAML support for the Go language") -; (description "Package yaml implements YAML support for the Go language.") -; (license license:expat))) -; -;(define-public go-github-com-tj-assert-0.0.3 -; (package -; (name "go-github-com-tj-assert") -; (version "0.0.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/tj/assert") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1j5swk3fjq1h5fpqkipddz2ccnbidr7qrpm5dpdaflg9q5jnc673")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/tj/assert")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v3-3.0.0-20200605160147-a5ece683394c" -; ,go-gopkg-in-yaml-v3-3.0.0-20200605160147-a5ece683394c) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://github.com/tj/assert") -; (synopsis "assert") -; (description -; "Package assert implements the same assertions as the `assert` package but stops -;test execution when a test fails.") -; (license license:expat))) -; -;(define-public go-github-com-russross-blackfriday-v2-2.0.1 -; (package -; (name "go-github-com-russross-blackfriday-v2") -; (version "2.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/russross/blackfriday") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0nlz7isdd4rgnwzs68499hlwicxz34j2k2a0b8jy0y7ycd2bcr5j")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/russross/blackfriday/v2")) -; (home-page "https://github.com/russross/blackfriday") -; (synopsis "Blackfriday") -; (description "Package blackfriday is a markdown processor.") -; (license license:bsd-2))) -; -;(define-public go-github-com-shurcool-sanitized-anchor-name-1.0.0 -; (package -; (name "go-github-com-shurcool-sanitized-anchor-name") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/shurcooL/sanitized_anchor_name") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1gv9p2nr46z80dnfjsklc6zxbgk96349sdsxjz05f3z6wb6m5l8f")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/shurcooL/sanitized_anchor_name")) -; (home-page "https://github.com/shurcooL/sanitized_anchor_name") -; (synopsis "sanitized_anchor_name") -; (description -; "Package sanitized_anchor_name provides a func to create sanitized anchor names.") -; (license license:expat))) -; -;(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d -; (package -; (name "go-github-com-cpuguy83-go-md2man-v2") -; (version "2.0.0-20190314233015-f79a8a8ca69d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/cpuguy83/go-md2man") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) -; (propagated-inputs -; `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" -; ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) -; ("go-github-com-russross-blackfriday-v2-2.0.1" -; ,go-github-com-russross-blackfriday-v2-2.0.1) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0))) -; (home-page "https://github.com/cpuguy83/go-md2man") -; (synopsis "go-md2man") -; (description "Converts markdown into roff (man pages).") -; (license license:expat))) -; -;(define-public go-gopkg-in-yaml-v2-2.2.2 -; (package -; (name "go-gopkg-in-yaml-v2") -; (version "2.2.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/yaml.v2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "01wj12jzsdqlnidpyjssmj0r4yavlqy7dwrg7adqd8dicjc4ncsa")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" -; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) -; (home-page "https://gopkg.in/yaml.v2") -; (synopsis "YAML support for the Go language") -; (description "Package yaml implements YAML support for the Go language.") -; (license license:asl2.0))) -; -;(define-public go-github-com-urfave-cli-1.22.4 -; (package -; (name "go-github-com-urfave-cli") -; (version "1.22.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/urfave/cli") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1s7frsmiih4wh8vpx9z3ck4667c6vpjrmba7b9ymnv1p9khyg8wc")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/urfave/cli")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) -; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d" -; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d) -; ("go-github-com-burntsushi-toml-0.3.1" -; ,go-github-com-burntsushi-toml-0.3.1))) -; (home-page "https://github.com/urfave/cli") -; (synopsis "cli") -; (description -; "Package cli provides a minimal framework for creating and organizing command -;line Go applications. cli is designed to be easy to understand and write, the -;most simple cli application can be written as follows:") -; (license license:expat))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190222072716-a9d3bda3a223") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1w45zc13xrjzl19s1sx74r5mg3lf2z2nm13wygcdq5r5pyjlhdz9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-mattn-go-isatty-0.0.8 -; (package -; (name "go-github-com-mattn-go-isatty") -; (version "0.0.8") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mattn/go-isatty") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0rqfh1rj6f5wm8p2ky7inm8g10152p7w6n2cli17kf9gad797i8h")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mattn/go-isatty")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223" -; ,go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223))) -; (home-page "https://github.com/mattn/go-isatty") -; (synopsis "go-isatty") -; (description "Package isatty implements interface to isatty") -; (license license:expat))) -; -;(define-public go-github-com-mattn-go-colorable-0.1.4 -; (package -; (name "go-github-com-mattn-go-colorable") -; (version "0.1.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mattn/go-colorable") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1yxcz08kminqr1221zxpibnbzfcgs3fafin0z9zqb3gqvf74jywz")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mattn/go-colorable")) -; (propagated-inputs -; `(("go-github-com-mattn-go-isatty-0.0.8" -; ,go-github-com-mattn-go-isatty-0.0.8))) -; (home-page "https://github.com/mattn/go-colorable") -; (synopsis "go-colorable") -; (description "Colorable writer for windows.") -; (license license:expat))) -; -;(define-public go-github-com-mattn-go-isatty-0.0.11 -; (package -; (name "go-github-com-mattn-go-isatty") -; (version "0.0.11") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mattn/go-isatty") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0h671sv7hfprja495kavazkalkx7xzaqksjh13brcnwq67ijrali")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mattn/go-isatty")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037" -; ,go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037))) -; (home-page "https://github.com/mattn/go-isatty") -; (synopsis "go-isatty") -; (description "Package isatty implements interface to isatty") -; (license license:expat))) -; -;(define-public go-github-com-fatih-color-1.9.0 -; (package -; (name "go-github-com-fatih-color") -; (version "1.9.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/fatih/color") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "086z8ssmr1fn9ba4mqnw7pnccfpys6l5yfhvycv1gdrsk7n27mvs")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/fatih/color")) -; (propagated-inputs -; `(("go-github-com-mattn-go-isatty-0.0.11" -; ,go-github-com-mattn-go-isatty-0.0.11) -; ("go-github-com-mattn-go-colorable-0.1.4" -; ,go-github-com-mattn-go-colorable-0.1.4))) -; (home-page "https://github.com/fatih/color") -; (synopsis "color") -; (description -; "Package color is an ANSI color package to output colorized or SGR defined output -;to the standard output. The API can be used in several way, pick one that suits -;you.") -; (license license:expat))) -; -;(define-public go-github-com-davecgh-go-spew-1.1.1 -; (package -; (name "go-github-com-davecgh-go-spew") -; (version "1.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/davecgh/go-spew") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/davecgh/go-spew")) -; (home-page "https://github.com/davecgh/go-spew") -; (synopsis "go-spew") -; (description -; "Go-spew implements a deep pretty printer for Go data structures to aid in -;debugging. A comprehensive suite of tests with 100% test coverage is provided -;to ensure proper functionality. See @code{test_coverage.txt} for the gocov -;coverage report. Go-spew is licensed under the liberal ISC license, so it may -;be used in open source or commercial projects.") -; (license license:isc))) -; -;(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.1 -; (package -; (name "go-github-com-konsorten-go-windows-terminal-sequences") -; (version "1.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/konsorten/go-windows-terminal-sequences") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1lchgf27n276vma6iyxa0v1xds68n2g8lih5lavqnx5x6q5pw2ip")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) -; (home-page "https://github.com/konsorten/go-windows-terminal-sequences") -; (synopsis "Windows Terminal Sequences") -; (description -; "This library allow for enabling Windows terminal color support for Go.") -; (license license:expat))) -; -;(define-public go-github-com-pmezard-go-difflib-1.0.0 -; (package -; (name "go-github-com-pmezard-go-difflib") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/pmezard/go-difflib") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/pmezard/go-difflib")) -; (home-page "https://github.com/pmezard/go-difflib") -; (synopsis "go-difflib") -; (description -; "Go-difflib is a partial port of python 3 difflib package. Its main goal was to -;make unified and context diff available in pure Go, mostly for testing purposes.") -; (license license:bsd-3))) -; -;(define-public go-github-com-stretchr-objx-0.1.1 -; (package -; (name "go-github-com-stretchr-objx") -; (version "0.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/objx") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0iph0qmpyqg4kwv8jsx6a56a7hhqq8swrazv40ycxk9rzr0s8yls")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/objx")) -; (home-page "https://github.com/stretchr/objx") -; (synopsis "Objx") -; (description -; "Objx - Go package for dealing with maps, slices, JSON and other data.") -; (license license:expat))) -; -;(define-public go-github-com-stretchr-testify-1.2.2 -; (package -; (name "go-github-com-stretchr-testify") -; (version "1.2.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/testify") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0dlszlshlxbmmfxj5hlwgv3r22x0y1af45gn1vd198nvvs3pnvfs")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/testify")) -; (home-page "https://github.com/stretchr/testify") -; (synopsis "Testify - Thou Shalt Write Tests") -; (description -; "** We are working on testify v2 and would love to hear what you'd like to see in -;it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -;Package testify is a set of packages that provide many tools for testifying that -;your code will behave as you intend.") -; (license license:expat))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20180904163835-0709b304e793 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20180904163835-0709b304e793") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0i05s09y5pavmfh71fgih7syxg58x7a4krgd8am6d3mnahnmab5c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20180905080454-ebe1bf3edb33") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0rkspxyjxdmc9f4n09hgkwj8jjd8z5p8mc9z8vwqwqcwrqv4sg7c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-sirupsen-logrus-1.3.0 -; (package -; (name "go-github-com-sirupsen-logrus") -; (version "1.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/sirupsen/logrus") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ib7k8cwxn53dyxd3af1g81z018n77n6q64pm4miznirf7c2c9gk")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/sirupsen/logrus")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33" -; ,go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33) -; ("go-golang-org-x-crypto-0.0.0-20180904163835-0709b304e793" -; ,go-golang-org-x-crypto-0.0.0-20180904163835-0709b304e793) -; ("go-github-com-stretchr-testify-1.2.2" -; ,go-github-com-stretchr-testify-1.2.2) -; ("go-github-com-stretchr-objx-0.1.1" -; ,go-github-com-stretchr-objx-0.1.1) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.1" -; ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.1) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://github.com/sirupsen/logrus") -; (synopsis "Logrus") -; (description -; "Package logrus is a structured logger for Go, completely API compatible with the -;standard library logger.") -; (license license:expat))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20191011191535-87dc89f01550") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0z4i1m2yn3f31ci7wvcm2rxkx2yiv7a78mfzklncmsz2k97rlh2g")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" -; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) -; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" -; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20191026070338-33540a1f6037") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0fjcv0vzvi6za0b4xmnk3932pr9f9gczzf03y0kgq3ry9rqg169y")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-vbatts-go-mtree-0.5.0 -; (package -; (name "go-github-com-vbatts-go-mtree") -; (version "0.5.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/vbatts/go-mtree") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0p42aliw6ngp7zgg5y9mi18z1ka9n0vblbrp5flp93i7qfmc5y0k")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/vbatts/go-mtree")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037" -; ,go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037) -; ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" -; ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550) -; ("go-github-com-sirupsen-logrus-1.3.0" -; ,go-github-com-sirupsen-logrus-1.3.0) -; ("go-github-com-fatih-color-1.9.0" ,go-github-com-fatih-color-1.9.0) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://github.com/vbatts/go-mtree") -; (synopsis "go-mtree") -; (description -; "@code{mtree} is a filesystem hierarchy validation tooling and format. This is a -;library and simple cli tool for -;@url{https://www.freebsd.org/cgi/man.cgi?mtree%288%29=,mtree(8)} support.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20190404232315-eb5bcb51f2a3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "17k4g8krxbl84gzcs275b7gsh66dzm15fdxivjnx9xz8q84l4kby")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190412213103-97732733099d -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190412213103-97732733099d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "118hkp01i4z1f5h6hcjm0ff2ngqhrzj1f7731n0kw8dr6hvbx0sw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20200604202706-70a84ac30bf9 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20200604202706-70a84ac30bf9") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0zr8np92g3qx7cdgaz4b2z5wnlym9lqyhrvs3xvv1fbsapd2z6i3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" -; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) -; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" -; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20200622214017-ed371f2e16b4 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20200622214017-ed371f2e16b4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "107wfy2fj6z5zps1v72j8drfrfvss1158drb0yqhz5awlbvgrpj7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-1.22.0 -; (package -; (name "go-google-golang-org-protobuf") -; (version "1.22.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0n7lc4m7kfvj01glc0gnjy0zsnsic7cxnbvlajy0h14cxbab87pj")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.4.0" -; ,go-github-com-golang-protobuf-1.4.0))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is -;a language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol -;buffer developer guide} for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.4.1 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.4.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0w7ks4vffnnkp0miwgc3chrsnmya45lzvpahb2wmw0jwhdp5kdx7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.22.0" -; ,go-google-golang-org-protobuf-1.22.0) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0))) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code -;github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-github-com-census-instrumentation-opencensus-proto-0.2.1 -; (package -; (name "go-github-com-census-instrumentation-opencensus-proto") -; (version "0.2.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/census-instrumentation/opencensus-proto") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "19fcx3sc99i5dsklny6r073z5j20vlwn2xqm6di1q3b1xwchzqfj")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "github.com/census-instrumentation/opencensus-proto")) -; (home-page "https://github.com/census-instrumentation/opencensus-proto") -; (synopsis -; "OpenCensus Proto - Language Independent Interface Types For OpenCensus") -; (description -; "Census provides a framework to define and collect stats against metrics and to -;break those stats down across user-defined dimensions.") -; (license license:asl2.0))) -; -;(define-public go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4 -; (package -; (name "go-github-com-prometheus-client-model") -; (version "0.0.0-20190812154241-14fe0d1b01d4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/prometheus/client_model") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0zdmk6rbbx39cvfz0r59v2jg5sg9yd02b4pds5n5llgvivi99550")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/prometheus/client_model")) -; (propagated-inputs -; `(("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" -; ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0))) -; (home-page "https://github.com/prometheus/client_model") -; (synopsis "Deprecation note") -; (description -; "This repository used to contain the code that defined both the data model and -;the exposition format of Prometheus metrics.") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20190311212946-11955173bddd") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0hlkai67w167wiyivkzd1fgqrnyxkb94l2c6kr51jwcscizfyfn3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3 -; (package -; (name "go-golang-org-x-lint") -; (version "0.0.0-20190313153728-d0100b6bd8b3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/lint") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0b0amr9x4ji66iv9ayfx7zrfx52k1m5g66qfcxkgj80qrb1y2yn7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/lint")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" -; ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd))) -; (home-page "https://golang.org/x/lint") -; (synopsis "Installation") -; (description "Package lint contains a linter for Go source code.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sync-0.0.0-20190423024810-112230192c58 -; (package -; (name "go-golang-org-x-sync") -; (version "0.0.0-20190423024810-112230192c58") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sync") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "05i2k43j2d0llq768hg5pf3hb2yhfzp9la1w5wp0rsnnzblr0lfn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sync")) -; (home-page "https://golang.org/x/sync") -; (synopsis "Go Sync") -; (description -; "This repository provides Go concurrency primitives in addition to the ones -;provided by the language and \"sync\" and \"sync/atomic\" packages.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135 -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20190524140312-2c0ae7006135") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1lsi2ssxajclj3bciz2a41v1vjv768ja3v6wnbyhxy8xphwkp4fk")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" -; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-grpc-1.23.0 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.23.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1cn33r2gclmq2v1ndpf1n5bmhf2qs8mms7ii5cnl6f9ch4r2c4k3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" -; ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) -; ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" -; ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) -; ("go-google-golang-org-appengine-1.1.0" -; ,go-google-golang-org-appengine-1.1.0) -; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" -; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-github-com-google-go-cmp-0.2.0" -; ,go-github-com-google-go-cmp-0.2.0) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0) -; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-client9-misspell-0.3.4" -; ,go-github-com-client9-misspell-0.3.4) -; ("go-github-com-burntsushi-toml-0.3.1" -; ,go-github-com-burntsushi-toml-0.3.1) -; ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC.") -; (license license:asl2.0))) -; -;(define-public go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473 -; (package -; (name "go-github-com-envoyproxy-go-control-plane") -; (version "0.9.1-0.20191026205805-5f8ba28d4473") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/envoyproxy/go-control-plane") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1f1s764rd41vd9vgk3r14h1m6fz6pdvxj6fd83q58gxifbc4q5w4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) -; (propagated-inputs -; `(("go-google-golang-org-grpc-1.23.0" ,go-google-golang-org-grpc-1.23.0) -; ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" -; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) -; ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" -; ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2) -; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" -; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) -; ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" -; ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) -; (home-page "https://github.com/envoyproxy/go-control-plane") -; (synopsis "control-plane") -; (description -; "This repository contains a Go-based implementation of an API server that -;implements the discovery service APIs defined in -;@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") -; (license license:asl2.0))) -; -;(define-public go-github-com-envoyproxy-protoc-gen-validate-0.1.0 -; (package -; (name "go-github-com-envoyproxy-protoc-gen-validate") -; (version "0.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/envoyproxy/protoc-gen-validate") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0kxd3wwh3xwqk0r684hsy281xq4y71cd11d4q2hspcjbnlbwh7cy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/envoyproxy/protoc-gen-validate")) -; (home-page "https://github.com/envoyproxy/protoc-gen-validate") -; (synopsis "protoc-gen-validate (PGV)") -; (description -; "PGV is a protoc plugin to generate polyglot message validators. While protocol -;buffers effectively guarantee the types of structured data, they cannot enforce -;semantic rules for values. This plugin adds support to protoc-generated code to -;validate such constraints.") -; (license license:asl2.0))) -; -;(define-public go-github-com-google-go-cmp-0.2.0 -; (package -; (name "go-github-com-google-go-cmp") -; (version "0.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/go-cmp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1fbv0x27k9sn8svafc0hjwsnckk864lv4yi7bvzrxvmd3d5hskds")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/go-cmp")) -; (home-page "https://github.com/google/go-cmp") -; (synopsis "Package for equality of Go values") -; (description -; "This package is intended to be a more powerful and safer alternative to -;@code{reflect.DeepEqual} for comparing whether two values are semantically -;equal.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20190308221718-c2843e01d9a2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20190311183353-d8887717615a -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20190311183353-d8887717615a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1wfm6ngxjyj7v5a2dqib6lw8bb2rdnf1kl48diykxjrsddn0s163")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190215142949-d0b11bdaac8a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.3.2 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.3.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1k1wb4zr0qbwgpvz9q5ws9zhlal8hq7dmq62pwxxriksayl6hzym")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code -;github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4 -; (package -; (name "go-golang-org-x-exp") -; (version "0.0.0-20190121172915-509febef88a4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/exp") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "02isrh39z8znrp5znplzy0dip2gnrl3jm1355raliyvhnhg04j6q")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/exp")) -; (home-page "https://golang.org/x/exp") -; (synopsis "exp") -; (description -; "This subrepository holds experimental and deprecated (in the @code{old} -;directory) packages.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961 -; (package -; (name "go-golang-org-x-lint") -; (version "0.0.0-20190227174305-5b3e6a55c961") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/lint") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "04zp5vbds9nffmjg36wjpi5vg9zmf890yf78xxasai3ni637ivfw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/lint")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" -; ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c))) -; (home-page "https://golang.org/x/lint") -; (synopsis "Installation") -; (description "Package lint contains a linter for Go source code.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20190213061140-3a22650c66bd") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "12q6fgdkc0742vcms67nzadgdwvi3rnb1gx3vwkljhrvlnwvz7wc")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f -; (package -; (name "go-golang-org-x-sync") -; (version "0.0.0-20181108010431-42b317875d0f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sync") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0mrjhk7al7yyh76x9flvxy4jm5jyqh2fxbxagpaazxn1xdgkaif3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sync")) -; (home-page "https://golang.org/x/sync") -; (synopsis "Go Sync") -; (description -; "This repository provides Go concurrency primitives in addition to the ones -;provided by the language and \"sync\" and \"sync/atomic\" packages.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20180724234803-3673e40ba225") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0vx7mz18p480p7fh0w5jv6mfdbsswrlac1sz4i705q7q7ygz59lm")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-appengine-1.4.0 -; (package -; (name "go-google-golang-org-appengine") -; (version "1.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/appengine") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "06zl7w4sxgdq2pl94wy9ncii6h0z3szl4xpqds0sv3b3wbdlhbnn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/appengine")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225" -; ,go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0))) -; (home-page "https://google.golang.org/appengine") -; (synopsis "Go App Engine packages") -; (description -; "Package appengine provides basic functionality for Google App Engine.") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20190226205152-f727befe758c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0rpcqw6z13qd33rbasg32zb0gdhgh5lzjla63r6g651zf6hpsak0")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-google-golang-org-appengine-1.4.0" -; ,go-google-golang-org-appengine-1.4.0) -; ("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" -; ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) -; ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" -; ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-cloud-google-com-go-0.26.0 -; (package -; (name "go-cloud-google-com-go") -; (version "0.26.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/google-cloud-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "149v3ci17g6wd2pm18mzcncq5qpl9hwdjnz3rlbn5rfidyn46la1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "cloud.google.com/go")) -; (home-page "https://cloud.google.com/go") -; (synopsis "Google Cloud Client Libraries for Go") -; (description -; "Package cloud is the root of the packages used to access Google Cloud Services. -;See -;@url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} -;for a full list of sub-packages.") -; (license license:asl2.0))) -; -;(define-public go-github-com-burntsushi-toml-0.3.1 -; (package -; (name "go-github-com-burntsushi-toml") -; (version "0.3.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/BurntSushi/toml") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1fjdwwfzyzllgiwydknf1pwjvy49qxfsczqx5gz3y0izs7as99j6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/BurntSushi/toml")) -; (home-page "https://github.com/BurntSushi/toml") -; (synopsis "Testing") -; (description -; "Package toml implements decoding and encoding of TOML files.") -; (license license:expat))) -; -;(define-public go-github-com-client9-misspell-0.3.4 -; (package -; (name "go-github-com-client9-misspell") -; (version "0.3.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/client9/misspell") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1vwf33wsc4la25zk9nylpbp9px3svlmldkm0bha4hp56jws4q9cs")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/client9/misspell")) -; (home-page "https://github.com/client9/misspell") -; (synopsis "Install") -; (description -; "Package misspell corrects commonly misspelled English words in source files.") -; (license license:expat))) -; -;(define-public go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b -; (package -; (name "go-github-com-golang-glog") -; (version "0.0.0-20160126235308-23def4e6c14b") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/glog") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0jb2834rw5sykfr937fxi8hxi2zy80sj2bdn9b3jb4b26ksqng30")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/glog")) -; (home-page "https://github.com/golang/glog") -; (synopsis "glog") -; (description -; "Package glog implements logging analogous to the Google-internal C++ -;INFO/ERROR/V setup. It provides functions Info, Warning, Error, Fatal, plus -;formatting variants such as Infof. It also provides V-style logging controlled -;by the -v and -vmodule=file=2 flags.") -; (license license:asl2.0))) -; -;(define-public go-github-com-golang-mock-1.1.1 -; (package -; (name "go-github-com-golang-mock") -; (version "1.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/mock") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ap8wb6pdl6ccmdb43advjll2ly4sz26wsc3axw0hbrjrybybzgy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/mock")) -; (home-page "https://github.com/golang/mock") -; (synopsis "gomock") -; (description -; "gomock is a mocking framework for the @url{http://golang.org/,Go programming -;language}. It integrates well with Go's built-in @code{testing} package, but -;can be used in other contexts too.") -; (license license:asl2.0))) -; -;(define-public go-github-com-golang-protobuf-1.2.0 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0kf4b59rcbb1cchfny2dm9jyznp8ri2hsb14n8iak1q8986xa0ab")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code -;github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3 -; (package -; (name "go-golang-org-x-lint") -; (version "0.0.0-20181026193005-c67002cb31c3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/lint") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0gymbggskjmphqxqcx4s0vnlcz7mygbix0vhwcwv5r67c0bf6765")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/lint")) -; (home-page "https://golang.org/x/lint") -; (synopsis "Installation") -; (description "Package lint contains a linter for Go source code.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20180826012351-8a410e7b638d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0hp0l8f6fir5gmgrjq0mhh5ikc0rlrm72774228800kfwqjrxxny")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be -; (package -; (name "go-golang-org-x-oauth2") -; (version "0.0.0-20180821212333-d2e6202438be") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/oauth2") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0wbn75fd10485nb93bm4kqldqifdim5xqy4v7r5sdvimvf3fyhn7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/oauth2")) -; (home-page "https://golang.org/x/oauth2") -; (synopsis "OAuth2 for Go") -; (description -; "Package oauth2 provides support for making OAuth2 authorized and authenticated -;HTTP requests, as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC -;6749}. It can additionally grant authorization with Bearer JWT.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f -; (package -; (name "go-golang-org-x-sync") -; (version "0.0.0-20180314180146-1d60e4601c6f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sync") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "046jlanz2lkxq1r57x9bl6s4cvfqaic6p2xybsj8mq1120jv4rs6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sync")) -; (home-page "https://golang.org/x/sync") -; (synopsis "Go Sync") -; (description -; "This repository provides Go concurrency primitives in addition to the ones -;provided by the language and \"sync\" and \"sync/atomic\" packages.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20180830151530-49385e6e1522") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0spbldahns09fdxkxflb1x24f8k2awdlnr6k5i7ci4fqd19r1dv4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-text-0.3.0 -; (package -; (name "go-golang-org-x-text") -; (version "0.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/text") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/text")) -; (home-page "https://golang.org/x/text") -; (synopsis "Go Text") -; (description -; "text is a repository of text-related packages related to internationalization -;(i18n) and localization (l10n), such as character encodings, text -;transformations, and locale-specific text handling.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20190114222345-bf090417da8b") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1n3xp56k4k3lj06rx7587wr5gnwg0148nvwx6ch0g7ar02hh94hw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-appengine-1.1.0 -; (package -; (name "go-google-golang-org-appengine") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/appengine") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1pz202zszg8f35dk5pfhwgcdi3r6dx1l4yk6x6ly7nb4j45zi96x")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/appengine")) -; (home-page "https://google.golang.org/appengine") -; (synopsis "Go App Engine packages") -; (description -; "Package appengine provides basic functionality for Google App Engine.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8 -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20180817151627-c66870c02cf8") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0siq7sv68556ygqi2d2zmvx8l1xjqdc0fylqzci5h1mq2i14bayn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for -;interacting with Google's gRPC APIs.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-grpc-1.19.0 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.19.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1znqwpj7ix3dpzx4zch0q70sdl3z5lvbb7v3q4i8sf8kas3yv71v")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" -; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) -; ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" -; ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) -; ("go-google-golang-org-appengine-1.1.0" -; ,go-google-golang-org-appengine-1.1.0) -; ("go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b" -; ,go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b) -; ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522" -; ,go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522) -; ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" -; ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d" -; ,go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d) -; ("go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3" -; ,go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3) -; ("go-github-com-golang-protobuf-1.2.0" -; ,go-github-com-golang-protobuf-1.2.0) -; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-client9-misspell-0.3.4" -; ,go-github-com-client9-misspell-0.3.4) -; ("go-github-com-burntsushi-toml-0.3.1" -; ,go-github-com-burntsushi-toml-0.3.1) -; ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC.") -; (license license:asl2.0))) -; -;(define-public go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099 -; (package -; (name "go-honnef-co-go-tools") -; (version "0.0.0-20190102054323-c2f93a96b099") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/dominikh/go-tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "07lg29aiap80ca9f201jzng9vjr168cv3qmvjmbd7v5pmww9kmr8")))) -; (build-system go-build-system) -; (arguments '(#:import-path "honnef.co/go/tools")) -; (home-page "https://honnef.co/go/tools") -; (synopsis "Documentation") -; (description -; "Staticcheck is a state of the art linter for the . Using static analysis, it -;finds bugs and performance issues, offers simplifications, and enforces style -;rules.") -; (license license:expat))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55 -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20190819201941-24fa4b261c55") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "109zhaqlfd8zkbr1hk6zqbs6vcxfrk64scjwh2nswph05gr0m84d")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" -; ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) -; ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) -; ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" -; ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) -; ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" -; ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) -; ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" -; ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for -;interacting with Google's gRPC APIs.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-grpc-1.27.0 -; (package -; (name "go-google-golang-org-grpc") -; (version "1.27.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/grpc/grpc-go") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ijrmgrxyabfn51nm3p9l81iaasq5fg237wnr6mdc4dzsfcg8kd7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/grpc")) -; (propagated-inputs -; `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" -; ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" -; ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) -; ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" -; ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) -; ("go-github-com-google-go-cmp-0.2.0" -; ,go-github-com-google-go-cmp-0.2.0) -; ("go-github-com-golang-protobuf-1.3.2" -; ,go-github-com-golang-protobuf-1.3.2) -; ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) -; ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" -; ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) -; ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" -; ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) -; ("go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473" -; ,go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473))) -; (home-page "https://google.golang.org/grpc") -; (synopsis "gRPC-Go") -; (description "Package grpc implements an RPC system called gRPC.") -; (license license:asl2.0))) -; -;(define-public go-github-com-google-go-cmp-0.3.0 -; (package -; (name "go-github-com-google-go-cmp") -; (version "0.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/go-cmp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1hyxx3434zshl2m9ja78gwlkg1rx9yl6diqa7dnjb31xz5x4gbjj")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/go-cmp")) -; (home-page "https://github.com/google/go-cmp") -; (synopsis "Package for equality of Go values") -; (description -; "This package is intended to be a more powerful and safer alternative to -;@code{reflect.DeepEqual} for comparing whether two values are semantically -;equal.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd -; (package -; (name "go-google-golang-org-protobuf") -; (version "0.0.0-20200109180630-ec00e32a8dfd") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0w6lp9w2avxcpxwzzhspr209ifhyjagvs23k0vykfdqahl1aplrh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.3.0" -; ,go-github-com-google-go-cmp-0.3.0))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is -;a language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol -;buffer developer guide} for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.4.0-rc.1 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.4.0-rc.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "186rirvbfgv6hrxp27ipx2cdpv19qifdd20biqfdm01wiyclqimn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd" -; ,go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd) -; ("go-github-com-google-go-cmp-0.3.1" -; ,go-github-com-google-go-cmp-0.3.1))) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code -;github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-github-com-google-go-cmp-0.3.1 -; (package -; (name "go-github-com-google-go-cmp") -; (version "0.3.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/go-cmp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1caw49i0plkjxir7kdf5qhwls3krqwfmi7g4h392rdfwi3kfahx1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/go-cmp")) -; (home-page "https://github.com/google/go-cmp") -; (synopsis "Package for equality of Go values") -; (description -; "This package is intended to be a more powerful and safer alternative to -;@code{reflect.DeepEqual} for comparing whether two values are semantically -;equal.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64 -; (package -; (name "go-google-golang-org-protobuf") -; (version "0.0.0-20200221191635-4d8936d0db64") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0563bsvdjj6k0sgwqd5yzrgfiax7sp3lcwh608gync5sv9fx39cy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.3.1" -; ,go-github-com-google-go-cmp-0.3.1) -; ("go-github-com-golang-protobuf-1.4.0-rc.1" -; ,go-github-com-golang-protobuf-1.4.0-rc.1))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is -;a language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol -;buffer developer guide} for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.4.0-rc.1.0.20200221234624-67d41d38c208") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ykxhg3zixmw25pd435f8h16wnz1g00jpcmmg3xl030kksgqgpp6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64" -; ,go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0))) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code -;github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60 -; (package -; (name "go-google-golang-org-protobuf") -; (version "0.0.0-20200228230310-ab0ca4ff8a60") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1rinspcznfp85yz4vrlf4h38hr576virgv8lcs22bsylqga808sd")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208" -; ,go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is -;a language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol -;buffer developer guide} for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.4.0-rc.2 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.4.0-rc.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1hd43hjv5zl6bjbmhm5phx74bw4xajsi73m5zky2k56za4mpgzzc")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60" -; ,go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0))) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code -;github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967 -; (package -; (name "go-google-golang-org-protobuf") -; (version "1.20.1-0.20200309200217-e05f789c0967") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "17wmy89hnmpkwc63rfcjp50q15s9f1rhmczg06c3z9yy41zk82w9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.4.0-rc.2" -; ,go-github-com-golang-protobuf-1.4.0-rc.2))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is -;a language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol -;buffer developer guide} for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.4.0-rc.4.0.20200313231945-b860323f09d0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1zj6cwshx0l5n9cn2cpbikzzb79px5dmkpc4p19zy1iif5r5p0z0")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967" -; ,go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0))) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code -;github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-1.21.0 -; (package -; (name "go-google-golang-org-protobuf") -; (version "1.21.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "12bwln8z1lf9105gdp6ip0rx741i4yfz1520gxnp8861lh9wcl63")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0" -; ,go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is -;a language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol -;buffer developer guide} for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-github-com-golang-protobuf-1.4.0 -; (package -; (name "go-github-com-golang-protobuf") -; (version "1.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/golang/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1fjvl5n77abxz5qsd4mgyvjq19x43c5bfvmq62mq3m5plx6zksc8")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/golang/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-protobuf-1.21.0" -; ,go-google-golang-org-protobuf-1.21.0) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0))) -; (home-page "https://github.com/golang/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code -;github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543 -; (package -; (name "go-golang-org-x-xerrors") -; (version "0.0.0-20191204190536-9bdfabe68543") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/xerrors") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1yjfi1bk9xb81lqn85nnm13zz725wazvrx3b50hx19qmwg7a4b0c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/xerrors")) -; (home-page "https://golang.org/x/xerrors") -; (synopsis #f) -; (description "Package xerrors implements functions to manipulate errors.") -; (license license:bsd-3))) -; -;(define-public go-github-com-google-go-cmp-0.4.0 -; (package -; (name "go-github-com-google-go-cmp") -; (version "0.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/go-cmp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1x5pvl3fb5sbyng7i34431xycnhmx8xx94gq2n19g6p0vz68z2v2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/go-cmp")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" -; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) -; (home-page "https://github.com/google/go-cmp") -; (synopsis "Package for equality of Go values") -; (description -; "This package is intended to be a more powerful and safer alternative to -;@code{reflect.DeepEqual} for comparing whether two values are semantically -;equal.") -; (license license:bsd-3))) -; -;(define-public go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc -; (package -; (name "go-google-golang-org-protobuf") -; (version "1.23.1-0.20200526195155-81db48ad09cc") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "02cpr8rqr5wmpj2fqb32mzilsdnxkh52g1jz95a3ck3gzffc7hh1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.4.0" -; ,go-github-com-golang-protobuf-1.4.0))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is -;a language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol -;buffer developer guide} for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc -; (package -; (name "go-honnef-co-go-tools") -; (version "0.0.0-20190523083050-ea95bdfd59fc") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/dominikh/go-tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1763nw7pwpzkvzfnm63dgzcgbq9hwmq5l1nffchnhh77vgkaq4ic")))) -; (build-system go-build-system) -; (arguments '(#:import-path "honnef.co/go/tools")) -; (home-page "https://honnef.co/go/tools") -; (synopsis "Documentation") -; (description -; "Staticcheck is a state of the art linter for the . Using static analysis, it -;finds bugs and performance issues, offers simplifications, and enforces style -;rules.") -; (license license:expat))) -; -;(define-public go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013 -; (package -; (name "go-google-golang-org-genproto") -; (version "0.0.0-20200526211855-cb27e3aa2013") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/googleapis/go-genproto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ml73ghqcwbz7ipfk8fnxb5indcml49b5p7vp1fsyny0abyyrmxf")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/genproto")) -; (propagated-inputs -; `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" -; ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) -; ("go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc" -; ,go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc) -; ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) -; ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" -; ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) -; ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" -; ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) -; ("go-github-com-golang-protobuf-1.4.1" -; ,go-github-com-golang-protobuf-1.4.1))) -; (home-page "https://google.golang.org/genproto") -; (synopsis "Go generated proto packages") -; (description -; "This repository contains the generated Go packages for common protocol buffer -;types, and the generated @url{http://grpc.io,gRPC} code necessary for -;interacting with Google's gRPC APIs.") -; (license license:asl2.0))) -; -;(define-public go-google-golang-org-protobuf-1.24.0 -; (package -; (name "go-google-golang-org-protobuf") -; (version "1.24.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/protobuf") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0x3qyn3rizbs671gs7f8v50rmiwf9h7kbaradpivw9718mhbg1gn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "google.golang.org/protobuf")) -; (propagated-inputs -; `(("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" -; ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) -; ("go-github-com-google-go-cmp-0.4.0" -; ,go-github-com-google-go-cmp-0.4.0) -; ("go-github-com-golang-protobuf-1.4.1" -; ,go-github-com-golang-protobuf-1.4.1))) -; (home-page "https://google.golang.org/protobuf") -; (synopsis "Go support for Protocol Buffers") -; (description -; "This project hosts the Go implementation for -;@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is -;a language-neutral, platform-neutral, extensible mechanism for serializing -;structured data. The protocol buffer language is a language for specifying the -;schema for structured data. This schema is compiled into language specific -;bindings. This project provides both a tool to generate Go code for the -;protocol buffer language, and also the runtime implementation to handle -;serialization of messages in Go. See the -;@url{https://developers.google.com/protocol-buffers/docs/overview,protocol -;buffer developer guide} for more information about protocol buffers themselves.") -; (license license:bsd-3))) -; -;(define-public go-gopkg-in-check-v1-1.0.0-20200227125254-8fa46927fb4f -; (package -; (name "go-gopkg-in-check-v1") -; (version "1.0.0-20200227125254-8fa46927fb4f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/check.v1") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0fx03x0nx9mjwnqphnx852q9p76qg7cazrachvgr1bj357lplrcw")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) -; (home-page "https://gopkg.in/check.v1") -; (synopsis "Instructions") -; (description -; "Package check is a rich testing extension for Go's testing package.") -; (license license:bsd-2))) -; -;(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 -; (package -; (name "go-gopkg-in-check-v1") -; (version "0.0.0-20161208181325-20d25e280405") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/check.v1") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) -; (home-page "https://gopkg.in/check.v1") -; (synopsis "Instructions") -; (description -; "Package check is a rich testing extension for Go's testing package.") -; (license license:bsd-2))) -; -;(define-public go-gopkg-in-yaml-v3-3.0.0-20200615113413-eeeca48fe776 -; (package -; (name "go-gopkg-in-yaml-v3") -; (version "3.0.0-20200615113413-eeeca48fe776") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/yaml.v3") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "06m3kx5mp6vwfcpjl04c39r1dpbakg2la9ql1jw3zvpi6jk7iwbk")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" -; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) -; (home-page "https://gopkg.in/yaml.v3") -; (synopsis "YAML support for the Go language") -; (description "Package yaml implements YAML support for the Go language.") -; (license license:expat))) -; -;(define-public go-github-com-opencontainers-umoci-0.4.7 -; (package -; (name "go-github-com-opencontainers-umoci") -; (version "0.4.7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/umoci") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0in8kyi4jprvbm3zsl3risbjj8b0ma62yl3rq8rcvcgypx0mn7d4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/umoci")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v3-3.0.0-20200615113413-eeeca48fe776" -; ,go-gopkg-in-yaml-v3-3.0.0-20200615113413-eeeca48fe776) -; ("go-gopkg-in-check-v1-1.0.0-20200227125254-8fa46927fb4f" -; ,go-gopkg-in-check-v1-1.0.0-20200227125254-8fa46927fb4f) -; ("go-google-golang-org-protobuf-1.24.0" -; ,go-google-golang-org-protobuf-1.24.0) -; ("go-golang-org-x-sys-0.0.0-20200622214017-ed371f2e16b4" -; ,go-golang-org-x-sys-0.0.0-20200622214017-ed371f2e16b4) -; ("go-golang-org-x-crypto-0.0.0-20200604202706-70a84ac30bf9" -; ,go-golang-org-x-crypto-0.0.0-20200604202706-70a84ac30bf9) -; ("go-github-com-vbatts-go-mtree-0.5.0" -; ,go-github-com-vbatts-go-mtree-0.5.0) -; ("go-github-com-urfave-cli-1.22.4" ,go-github-com-urfave-cli-1.22.4) -; ("go-github-com-tj-assert-0.0.3" ,go-github-com-tj-assert-0.0.3) -; ("go-github-com-stretchr-testify-1.6.1" -; ,go-github-com-stretchr-testify-1.6.1) -; ("go-github-com-sirupsen-logrus-1.6.0" -; ,go-github-com-sirupsen-logrus-1.6.0) -; ("go-github-com-rootless-containers-proto-0.1.0" -; ,go-github-com-rootless-containers-proto-0.1.0) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-opencontainers-runtime-spec-1.0.2" -; ,go-github-com-opencontainers-runtime-spec-1.0.2) -; ("go-github-com-opencontainers-runc-1.0.0-rc90" -; ,go-github-com-opencontainers-runc-1.0.0-rc90) -; ("go-github-com-opencontainers-image-spec-1.0.1" -; ,go-github-com-opencontainers-image-spec-1.0.1) -; ("go-github-com-opencontainers-go-digest-1.0.0" -; ,go-github-com-opencontainers-go-digest-1.0.0) -; ("go-github-com-niemeyer-pretty-0.0.0-20200227124842-a10e7caefd8e" -; ,go-github-com-niemeyer-pretty-0.0.0-20200227124842-a10e7caefd8e) -; ("go-github-com-mohae-deepcopy-0.0.0-20170929034955-c48cc78d4826" -; ,go-github-com-mohae-deepcopy-0.0.0-20170929034955-c48cc78d4826) -; ("go-github-com-mattn-go-colorable-0.1.6" -; ,go-github-com-mattn-go-colorable-0.1.6) -; ("go-github-com-kr-text-0.2.0" ,go-github-com-kr-text-0.2.0) -; ("go-github-com-klauspost-pgzip-1.2.4" -; ,go-github-com-klauspost-pgzip-1.2.4) -; ("go-github-com-klauspost-compress-1.11.3" -; ,go-github-com-klauspost-compress-1.11.3) -; ("go-github-com-google-go-cmp-0.5.0" -; ,go-github-com-google-go-cmp-0.5.0) -; ("go-github-com-golang-protobuf-1.4.2" -; ,go-github-com-golang-protobuf-1.4.2) -; ("go-github-com-docker-go-units-0.4.0" -; ,go-github-com-docker-go-units-0.4.0) -; ("go-github-com-cyphar-filepath-securejoin-0.2.2" -; ,go-github-com-cyphar-filepath-securejoin-0.2.2) -; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" -; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) -; ("go-github-com-apex-log-1.4.0" ,go-github-com-apex-log-1.4.0) -; ("go-github-com-adamkorcz-go-fuzz-headers-0.0.0-20210312213058-32f4d319f0d2" -; ,go-github-com-adamkorcz-go-fuzz-headers-0.0.0-20210312213058-32f4d319f0d2))) -; (home-page "https://github.com/opencontainers/umoci") -; (synopsis "Install") -; (description -; "@strong{u}moci @strong{m}odifies @strong{O}pen @strong{C}ontainer -;@strong{i}mages.") -; (license license:asl2.0))) -; -;(define-public go-github-com-pelletier-go-toml-1.9.4 -; (package -; (name "go-github-com-pelletier-go-toml") -; (version "1.9.4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/pelletier/go-toml") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0f2d9m19dadl18i2baf57xygvn9vprm6wb8chvpx8kipx94nchyl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/pelletier/go-toml")) -; (home-page "https://github.com/pelletier/go-toml") -; (synopsis "go-toml") -; (description "Package toml is a TOML parser and manipulation library.") -; (license license:expat))) -; -;(define-public go-github-com-pkg-errors-0.9.1 -; (package -; (name "go-github-com-pkg-errors") -; (version "0.9.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/pkg/errors") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1761pybhc2kqr6v5fm8faj08x9bql8427yqg6vnfv6nhrasx1mwq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/pkg/errors")) -; (home-page "https://github.com/pkg/errors") -; (synopsis "errors") -; (description "Package errors provides simple error handling primitives.") -; (license license:bsd-2))) -; -;(define-public go-github-com-blang-semver-3.5.1+incompatible -; (package -; (name "go-github-com-blang-semver") -; (version "3.5.1+incompatible") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/blang/semver") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "13ws259bwcibkclbr82ilhk6zadm63kxklxhk12wayklj8ghhsmy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/blang/semver")) -; (home-page "https://github.com/blang/semver") -; (synopsis "semver for golang") -; (description -; "semver is a @url{http://semver.org/,Semantic Versioning} library written in -;golang. It fully covers spec version @code{2.0.0}.") -; (license license:expat))) -; -;(define-public go-github-com-hashicorp-errwrap-1.0.0 -; (package -; (name "go-github-com-hashicorp-errwrap") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/errwrap") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0slfb6w3b61xz04r32bi0a1bygc82rjzhqkxj2si2074wynqnr1c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hashicorp/errwrap")) -; (home-page "https://github.com/hashicorp/errwrap") -; (synopsis "errwrap") -; (description -; "Package errwrap implements methods to formalize error wrapping in Go.") -; (license license:mpl2.0))) -; -;(define-public go-github-com-hashicorp-go-multierror-1.1.0 -; (package -; (name "go-github-com-hashicorp-go-multierror") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/hashicorp/go-multierror") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0pmjpzpra7lqgikxzwlcp5mh01b46j2vhyxkixz0v86fr9kf0k3k")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/hashicorp/go-multierror")) -; (propagated-inputs -; `(("go-github-com-hashicorp-errwrap-1.0.0" -; ,go-github-com-hashicorp-errwrap-1.0.0))) -; (home-page "https://github.com/hashicorp/go-multierror") -; (synopsis "go-multierror") -; (description -; "@code{go-multierror} is a package for Go that provides a mechanism for -;representing a list of @code{error} values as a single @code{error}.") -; (license license:mpl2.0))) -; -;(define-public go-github-com-opencontainers-runtime-spec-1.0.3-0.20200710190001-3e4195d92445 -; (package -; (name "go-github-com-opencontainers-runtime-spec") -; (version "1.0.3-0.20200710190001-3e4195d92445") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/runtime-spec") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "04kfdbap80r89rn7f7xcmkyy0qbpd18dgk65bzapy0x0calpgrlk")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) -; (home-page "https://github.com/opencontainers/runtime-spec") -; (synopsis "Open Container Initiative Runtime Specification") -; (description -; "The @url{https://www.opencontainers.org,Open Container Initiative} develops -;specifications for standards on Operating System process and application -;containers.") -; (license license:asl2.0))) -; -;(define-public go-github-com-opencontainers-runtime-tools-0.9.0 -; (package -; (name "go-github-com-opencontainers-runtime-tools") -; (version "0.9.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/runtime-tools") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1pli3jb1rq9lkzzz83f7jw788vijg7x6ly3vgasdlwri7kiph1sa")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/runtime-tools")) -; (home-page "https://github.com/opencontainers/runtime-tools") -; (synopsis "oci-runtime-tool") -; (description -; "oci-runtime-tool is a collection of tools for working with the -;@url{https://github.com/opencontainers/runtime-spec,OCI runtime specification}. -;To build from source code, runtime-tools requires Go 1.10.x or above.") -; (license license:asl2.0))) -; -;(define-public go-github-com-pkg-errors-0.9.1 -; (package -; (name "go-github-com-pkg-errors") -; (version "0.9.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/pkg/errors") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1761pybhc2kqr6v5fm8faj08x9bql8427yqg6vnfv6nhrasx1mwq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/pkg/errors")) -; (home-page "https://github.com/pkg/errors") -; (synopsis "errors") -; (description "Package errors provides simple error handling primitives.") -; (license license:bsd-2))) -; -;(define-public go-github-com-willf-bitset-1.1.11-0.20200630133818-d5bec3311243 -; (package -; (name "go-github-com-willf-bitset") -; (version "1.1.11-0.20200630133818-d5bec3311243") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/bits-and-blooms/bitset") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "05nyd0vhp2h9hbqlv2s9l2py6mr8hpz2zyfj09an1q7wd8vph4ja")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/willf/bitset")) -; (home-page "https://github.com/willf/bitset") -; (synopsis "bitset") -; (description -; "Package bitset implements bitsets, a mapping between non-negative integers and -;boolean values. It should be more efficient than map[uint] bool.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20191115151921-52ab43148777") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1kakxbqrb1w2vwg7r1896z68qcx2lfvimsl8cs2niiipbgpi6imx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-opencontainers-selinux-1.6.0 -; (package -; (name "go-github-com-opencontainers-selinux") -; (version "1.6.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/selinux") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ja41zfgrkhk5khixjnxpi1b85xfcxlkhq2q9b7ma6xjfdhg8bq2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/selinux")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777" -; ,go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777) -; ("go-github-com-willf-bitset-1.1.11-0.20200630133818-d5bec3311243" -; ,go-github-com-willf-bitset-1.1.11-0.20200630133818-d5bec3311243) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) -; (home-page "https://github.com/opencontainers/selinux") -; (synopsis "selinux") -; (description "Common SELinux package used across the container ecosystem.") -; (license license:asl2.0))) -; -;(define-public go-github-com-seccomp-libseccomp-golang-0.9.1 -; (package -; (name "go-github-com-seccomp-libseccomp-golang") -; (version "0.9.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/seccomp/libseccomp-golang") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "022c8prvxz0shrifams7lq4xidvkcqg9xi87wjjcpmbikqi72cna")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/seccomp/libseccomp-golang")) -; (home-page "https://github.com/seccomp/libseccomp-golang") -; (synopsis #f) -; (description -; "Package seccomp provides bindings for libseccomp, a library wrapping the Linux -;seccomp syscall. Seccomp enables an application to restrict system call use for -;itself and its children.") -; (license license:bsd-2))) -; -;(define-public go-github-com-davecgh-go-spew-1.1.1 -; (package -; (name "go-github-com-davecgh-go-spew") -; (version "1.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/davecgh/go-spew") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/davecgh/go-spew")) -; (home-page "https://github.com/davecgh/go-spew") -; (synopsis "go-spew") -; (description -; "Go-spew implements a deep pretty printer for Go data structures to aid in -;debugging. A comprehensive suite of tests with 100% test coverage is provided -;to ensure proper functionality. See @code{test_coverage.txt} for the gocov -;coverage report. Go-spew is licensed under the liberal ISC license, so it may -;be used in open source or commercial projects.") -; (license license:isc))) -; -;(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.3 -; (package -; (name "go-github-com-konsorten-go-windows-terminal-sequences") -; (version "1.0.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/konsorten/go-windows-terminal-sequences") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1yrsd4s8vhjnxhwbigirymz89dn6qfjnhn28i33vvvdgf96j6ypl")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) -; (home-page "https://github.com/konsorten/go-windows-terminal-sequences") -; (synopsis "Windows Terminal Sequences") -; (description -; "This library allow for enabling Windows terminal color support for Go.") -; (license license:expat))) -; -;(define-public go-github-com-stretchr-testify-1.2.2 -; (package -; (name "go-github-com-stretchr-testify") -; (version "1.2.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/testify") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0dlszlshlxbmmfxj5hlwgv3r22x0y1af45gn1vd198nvvs3pnvfs")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/testify")) -; (home-page "https://github.com/stretchr/testify") -; (synopsis "Testify - Thou Shalt Write Tests") -; (description -; "** We are working on testify v2 and would love to hear what you'd like to see in -;it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -;Package testify is a set of packages that provide many tools for testifying that -;your code will behave as you intend.") -; (license license:expat))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190422165155-953cdadca894") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0gkha4whk8xkcv3isigbs250akag99isxnd3v9xmy0kl3g88hxy1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-sirupsen-logrus-1.6.0 -; (package -; (name "go-github-com-sirupsen-logrus") -; (version "1.6.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/sirupsen/logrus") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1zf9is1yxxnna0d1pyag2m9ziy3l27zb2j92p9msm1gx5jjrvzzj")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/sirupsen/logrus")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894" -; ,go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894) -; ("go-github-com-stretchr-testify-1.2.2" -; ,go-github-com-stretchr-testify-1.2.2) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.3" -; ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.3) -; ("go-github-com-davecgh-go-spew-1.1.1" -; ,go-github-com-davecgh-go-spew-1.1.1))) -; (home-page "https://github.com/sirupsen/logrus") -; (synopsis "Logrus") -; (description -; "Package logrus is a structured logger for Go, completely API compatible with the -;standard library logger.") -; (license license:expat))) -; -;(define-public go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2 -; (package -; (name "go-github-com-syndtr-gocapability") -; (version "0.0.0-20180916011248-d98352740cb2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/syndtr/gocapability") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "065y16562ynixxzj7iys4f4spb7knilbj3h833qlhds381j8hn93")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/syndtr/gocapability")) -; (home-page "https://github.com/syndtr/gocapability") -; (synopsis #f) -; (description #f) -; (license license:bsd-2))) -; -;(define-public go-github-com-davecgh-go-spew-1.1.0 -; (package -; (name "go-github-com-davecgh-go-spew") -; (version "1.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/davecgh/go-spew") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/davecgh/go-spew")) -; (home-page "https://github.com/davecgh/go-spew") -; (synopsis "go-spew") -; (description -; "Go-spew implements a deep pretty printer for Go data structures to aid in -;debugging. A comprehensive suite of tests with 100% test coverage is provided -;to ensure proper functionality. See @code{test_coverage.txt} for the gocov -;coverage report. Go-spew is licensed under the liberal ISC license, so it may -;be used in open source or commercial projects.") -; (license license:isc))) -; -;(define-public go-github-com-pmezard-go-difflib-1.0.0 -; (package -; (name "go-github-com-pmezard-go-difflib") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/pmezard/go-difflib") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/pmezard/go-difflib")) -; (home-page "https://github.com/pmezard/go-difflib") -; (synopsis "go-difflib") -; (description -; "Go-difflib is a partial port of python 3 difflib package. Its main goal was to -;make unified and context diff available in pure Go, mostly for testing purposes.") -; (license license:bsd-3))) -; -;(define-public go-github-com-stretchr-objx-0.1.0 -; (package -; (name "go-github-com-stretchr-objx") -; (version "0.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/objx") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/objx")) -; (home-page "https://github.com/stretchr/objx") -; (synopsis "Objx") -; (description -; "Objx - Go package for dealing with maps, slices, JSON and other data.") -; (license license:expat))) -; -;(define-public go-github-com-stretchr-testify-1.3.0 -; (package -; (name "go-github-com-stretchr-testify") -; (version "1.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/stretchr/testify") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0wjchp2c8xbgcbbq32w3kvblk6q6yn533g78nxl6iskq6y95lxsy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/stretchr/testify")) -; (propagated-inputs -; `(("go-github-com-stretchr-objx-0.1.0" -; ,go-github-com-stretchr-objx-0.1.0) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-davecgh-go-spew-1.1.0" -; ,go-github-com-davecgh-go-spew-1.1.0))) -; (home-page "https://github.com/stretchr/testify") -; (synopsis "Testify - Thou Shalt Write Tests") -; (description -; "** We are working on testify v2 and would love to hear what you'd like to see in -;it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -;Package testify is a set of packages that provide many tools for testifying that -;your code will behave as you intend.") -; (license license:expat))) -; -;(define-public go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f -; (package -; (name "go-github-com-xeipuuv-gojsonpointer") -; (version "0.0.0-20180127040702-4e3ac2762d5f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/xeipuuv/gojsonpointer") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "13y6iq2nzf9z4ls66bfgnnamj2m3438absmbpqry64bpwjfbsi9q")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/xeipuuv/gojsonpointer")) -; (home-page "https://github.com/xeipuuv/gojsonpointer") -; (synopsis "gojsonpointer") -; (description "An implementation of JSON Pointer - Go language") -; (license license:asl2.0))) -; -;(define-public go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415 -; (package -; (name "go-github-com-xeipuuv-gojsonreference") -; (version "0.0.0-20180127040603-bd5ef7bd5415") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/xeipuuv/gojsonreference") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1xby79padc7bmyb8rfbad8wfnfdzpnh51b1n8c0kibch0kwc1db5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/xeipuuv/gojsonreference")) -; (home-page "https://github.com/xeipuuv/gojsonreference") -; (synopsis "gojsonreference") -; (description "An implementation of JSON Reference - Go language") -; (license license:asl2.0))) -; -;(define-public go-github-com-xeipuuv-gojsonschema-1.2.0 -; (package -; (name "go-github-com-xeipuuv-gojsonschema") -; (version "1.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/xeipuuv/gojsonschema") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1mqiq0r8qw4qlfp3ls8073r6514rmzwrmdn4j33rppk3zh942i6l")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/xeipuuv/gojsonschema")) -; (propagated-inputs -; `(("go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415" -; ,go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415) -; ("go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f" -; ,go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f) -; ("go-github-com-stretchr-testify-1.3.0" -; ,go-github-com-stretchr-testify-1.3.0))) -; (home-page "https://github.com/xeipuuv/gojsonschema") -; (synopsis "gojsonschema") -; (description -; "An implementation of JSON Schema for the Go programming language. Supports -;draft-04, draft-06 and draft-07.") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-sys-0.0.0-20200720211630-cb9d2d5c5666 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20200720211630-cb9d2d5c5666") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "18b1179cvv3rfn3hhysiqwcn2c15a1kzff74q4494rz69k0j7w4q")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-seccomp-containers-golang-0.6.0 -; (package -; (name "go-github-com-seccomp-containers-golang") -; (version "0.6.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/seccomp/containers-golang") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0clrwdnmr131a65h66br57bsnr17i1s3kq9cc7ljrdaym57y6cfz")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/seccomp/containers-golang")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20200720211630-cb9d2d5c5666" -; ,go-golang-org-x-sys-0.0.0-20200720211630-cb9d2d5c5666) -; ("go-github-com-xeipuuv-gojsonschema-1.2.0" -; ,go-github-com-xeipuuv-gojsonschema-1.2.0) -; ("go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2" -; ,go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2) -; ("go-github-com-sirupsen-logrus-1.6.0" -; ,go-github-com-sirupsen-logrus-1.6.0) -; ("go-github-com-seccomp-libseccomp-golang-0.9.1" -; ,go-github-com-seccomp-libseccomp-golang-0.9.1) -; ("go-github-com-opencontainers-selinux-1.6.0" -; ,go-github-com-opencontainers-selinux-1.6.0) -; ("go-github-com-opencontainers-runtime-tools-0.9.0" -; ,go-github-com-opencontainers-runtime-tools-0.9.0) -; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200710190001-3e4195d92445" -; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200710190001-3e4195d92445) -; ("go-github-com-hashicorp-go-multierror-1.1.0" -; ,go-github-com-hashicorp-go-multierror-1.1.0) -; ("go-github-com-blang-semver-3.5.1+incompatible" -; ,go-github-com-blang-semver-3.5.1+incompatible))) -; (home-page "https://github.com/seccomp/containers-golang") -; (synopsis "containers-golang") -; (description -; "@code{containers-golang} is a set of Go libraries used by container runtimes to -;generate and load seccomp mappings into the kernel.") -; (license license:asl2.0))) -; -;(define-public go-github-com-seccomp-libseccomp-golang-0.9.2-0.20210429002308-3879420cc921 -; (package -; (name "go-github-com-seccomp-libseccomp-golang") -; (version "0.9.2-0.20210429002308-3879420cc921") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/seccomp/libseccomp-golang") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ypr3j50cd9lnj9szfyh45kh0cf7swm7cv2svz1575mldd9m1xr9")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/seccomp/libseccomp-golang")) -; (home-page "https://github.com/seccomp/libseccomp-golang") -; (synopsis #f) -; (description -; "Package seccomp provides bindings for libseccomp, a library wrapping the Linux -;seccomp syscall. Seccomp enables an application to restrict system call use for -;itself and its children.") -; (license license:bsd-2))) -; -;(define-public go-github-com-spf13-pflag-1.0.5 -; (package -; (name "go-github-com-spf13-pflag") -; (version "1.0.5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/spf13/pflag") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0gpmacngd0gpslnbkzi263f5ishigzgh6pbdv9hp092rnjl4nd31")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/spf13/pflag")) -; (home-page "https://github.com/spf13/pflag") -; (synopsis "Description") -; (description -; "Package pflag is a drop-in replacement for Go's flag package, implementing -;POSIX/GNU-style --flags.") -; (license license:bsd-3))) -; -;(define-public go-github-com-sylabs-json-resp-0.8.0 -; (package -; (name "go-github-com-sylabs-json-resp") -; (version "0.8.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/sylabs/json-resp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ygr4mavaj1pp78hkkphhn3ydd923n3klwnx8x7v4ajqzx4cx4id")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/sylabs/json-resp")) -; (home-page "https://github.com/sylabs/json-resp") -; (synopsis "JSON Response") -; (description -; "The @code{json-resp} package contains a small set of functions that are used to -;marshall and unmarshall response data and errors in JSON format.") -; (license license:bsd-3))) -; -;(define-public go-github-com-burntsushi-toml-0.3.1 -; (package -; (name "go-github-com-burntsushi-toml") -; (version "0.3.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/BurntSushi/toml") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1fjdwwfzyzllgiwydknf1pwjvy49qxfsczqx5gz3y0izs7as99j6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/BurntSushi/toml")) -; (home-page "https://github.com/BurntSushi/toml") -; (synopsis "Testing") -; (description -; "Package toml implements decoding and encoding of TOML files.") -; (license license:expat))) -; -;(define-public go-github-com-pmezard-go-difflib-1.0.0 -; (package -; (name "go-github-com-pmezard-go-difflib") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/pmezard/go-difflib") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/pmezard/go-difflib")) -; (home-page "https://github.com/pmezard/go-difflib") -; (synopsis "go-difflib") -; (description -; "Go-difflib is a partial port of python 3 difflib package. Its main goal was to -;make unified and context diff available in pure Go, mostly for testing purposes.") -; (license license:bsd-3))) -; -;(define-public go-github-com-russross-blackfriday-v2-2.0.1 -; (package -; (name "go-github-com-russross-blackfriday-v2") -; (version "2.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/russross/blackfriday") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0nlz7isdd4rgnwzs68499hlwicxz34j2k2a0b8jy0y7ycd2bcr5j")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/russross/blackfriday/v2")) -; (home-page "https://github.com/russross/blackfriday") -; (synopsis "Blackfriday") -; (description "Package blackfriday is a markdown processor.") -; (license license:bsd-2))) -; -;(define-public go-github-com-shurcool-sanitized-anchor-name-1.0.0 -; (package -; (name "go-github-com-shurcool-sanitized-anchor-name") -; (version "1.0.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/shurcooL/sanitized_anchor_name") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1gv9p2nr46z80dnfjsklc6zxbgk96349sdsxjz05f3z6wb6m5l8f")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/shurcooL/sanitized_anchor_name")) -; (home-page "https://github.com/shurcooL/sanitized_anchor_name") -; (synopsis "sanitized_anchor_name") -; (description -; "Package sanitized_anchor_name provides a func to create sanitized anchor names.") -; (license license:expat))) -; -;(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d -; (package -; (name "go-github-com-cpuguy83-go-md2man-v2") -; (version "2.0.0-20190314233015-f79a8a8ca69d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/cpuguy83/go-md2man") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) -; (propagated-inputs -; `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" -; ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) -; ("go-github-com-russross-blackfriday-v2-2.0.1" -; ,go-github-com-russross-blackfriday-v2-2.0.1) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0))) -; (home-page "https://github.com/cpuguy83/go-md2man") -; (synopsis "go-md2man") -; (description "Converts markdown into roff (man pages).") -; (license license:expat))) -; -;(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 -; (package -; (name "go-gopkg-in-check-v1") -; (version "0.0.0-20161208181325-20d25e280405") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/check.v1") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) -; (home-page "https://gopkg.in/check.v1") -; (synopsis "Instructions") -; (description -; "Package check is a rich testing extension for Go's testing package.") -; (license license:bsd-2))) -; -;(define-public go-gopkg-in-yaml-v2-2.2.2 -; (package -; (name "go-gopkg-in-yaml-v2") -; (version "2.2.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/yaml.v2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "01wj12jzsdqlnidpyjssmj0r4yavlqy7dwrg7adqd8dicjc4ncsa")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" -; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) -; (home-page "https://gopkg.in/yaml.v2") -; (synopsis "YAML support for the Go language") -; (description "Package yaml implements YAML support for the Go language.") -; (license license:asl2.0))) -; -;(define-public go-github-com-urfave-cli-1.22.5 -; (package -; (name "go-github-com-urfave-cli") -; (version "1.22.5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/urfave/cli") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1n8lk58j7bdsp47yh5bcpsw38lhkbyzcy3203ffkawc2rvkf1pp7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/urfave/cli")) -; (propagated-inputs -; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) -; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d" -; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d) -; ("go-github-com-burntsushi-toml-0.3.1" -; ,go-github-com-burntsushi-toml-0.3.1))) -; (home-page "https://github.com/urfave/cli") -; (synopsis "cli") -; (description -; "Package cli provides a minimal framework for creating and organizing command -;line Go applications. cli is designed to be easy to understand and write, the -;most simple cli application can be written as follows:") -; (license license:expat))) -; -;(define-public go-github-com-vividcortex-ewma-1.2.0 -; (package -; (name "go-github-com-vividcortex-ewma") -; (version "1.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/VividCortex/ewma") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0whx516l9nm4n41spagb605ry7kfnz1qha96mcshnfjlahhnnylq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/VividCortex/ewma")) -; (home-page "https://github.com/VividCortex/ewma") -; (synopsis "EWMA") -; (description -; "Package ewma implements exponentially weighted moving averages.") -; (license license:expat))) -; -;(define-public go-github-com-acarl005-stripansi-0.0.0-20180116102854-5a71ef0e047d -; (package -; (name "go-github-com-acarl005-stripansi") -; (version "0.0.0-20180116102854-5a71ef0e047d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/acarl005/stripansi") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "02sxiishdixm791jqbkmhdcvc712l0fb8rqmibxzgc61h0qs6rs3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/acarl005/stripansi")) -; (home-page "https://github.com/acarl005/stripansi") -; (synopsis "Strip ANSI") -; (description "This Go package removes ANSI escape codes from strings.") -; (license license:expat))) -; -;(define-public go-github-com-rivo-uniseg-0.2.0 -; (package -; (name "go-github-com-rivo-uniseg") -; (version "0.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/rivo/uniseg") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0j7h22vfmjj562vr8gpsyrkrwp1pq9ayh5fylv24skxb467g9f0q")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/rivo/uniseg")) -; (home-page "https://github.com/rivo/uniseg") -; (synopsis "Unicode Text Segmentation for Go") -; (description -; "Package uniseg implements Unicode Text Segmentation according to Unicode -;Standard Annex #29 -;(@url{http://unicode.org/reports/tr29/,http://unicode.org/reports/tr29/}).") -; (license license:expat))) -; -;(define-public go-github-com-mattn-go-runewidth-0.0.13 -; (package -; (name "go-github-com-mattn-go-runewidth") -; (version "0.0.13") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mattn/go-runewidth") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1yir0f3wc5z5hnkwhvx5qb6nmpfb05zp2gvfjvna63s8kmla1rrn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/mattn/go-runewidth")) -; (propagated-inputs -; `(("go-github-com-rivo-uniseg-0.2.0" ,go-github-com-rivo-uniseg-0.2.0))) -; (home-page "https://github.com/mattn/go-runewidth") -; (synopsis "go-runewidth") -; (description -; "This package provides functions to get fixed width of the character or string.") -; (license license:expat))) -; -;(define-public go-golang-org-x-sys-0.0.0-20220209214540-3681064d5158 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20220209214540-3681064d5158") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0cw9rzb4rxmr2si28pjqx3wv5r119c83kd08yy1h7nf725bzrs89")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-github-com-vbauerster-mpb-v7-7.4.1 -; (package -; (name "go-github-com-vbauerster-mpb-v7") -; (version "7.4.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/vbauerster/mpb") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ii1r84qjfp2spvj6nb8xy5b3nsfw17jmwgp55zkaz9n9lfj75w2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/vbauerster/mpb/v7")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20220209214540-3681064d5158" -; ,go-golang-org-x-sys-0.0.0-20220209214540-3681064d5158) -; ("go-github-com-mattn-go-runewidth-0.0.13" -; ,go-github-com-mattn-go-runewidth-0.0.13) -; ("go-github-com-acarl005-stripansi-0.0.0-20180116102854-5a71ef0e047d" -; ,go-github-com-acarl005-stripansi-0.0.0-20180116102854-5a71ef0e047d) -; ("go-github-com-vividcortex-ewma-1.2.0" -; ,go-github-com-vividcortex-ewma-1.2.0))) -; (home-page "https://github.com/vbauerster/mpb") -; (synopsis "Multi Progress Bar") -; (description -; "Package mpb is a library for rendering progress bars in terminal applications.") -; (license license:unlicense))) -; -;(define-public go-github-com-xeipuuv-gojsonpointer-0.0.0-20190905194746-02993c407bfb -; (package -; (name "go-github-com-xeipuuv-gojsonpointer") -; (version "0.0.0-20190905194746-02993c407bfb") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/xeipuuv/gojsonpointer") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0y7gmpgsm8c12ax4a0ij9srmd9d424iq224n172ckwfqf37amvzy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/xeipuuv/gojsonpointer")) -; (home-page "https://github.com/xeipuuv/gojsonpointer") -; (synopsis "gojsonpointer") -; (description "An implementation of JSON Pointer - Go language") -; (license license:asl2.0))) -; -;(define-public go-github-com-yvasiyarov-go-metrics-0.0.0-20150112132944-c25f46c4b940 -; (package -; (name "go-github-com-yvasiyarov-go-metrics") -; (version "0.0.0-20150112132944-c25f46c4b940") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/yvasiyarov/go-metrics") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0p1hx4ml4gzgyj8n0fg5lv8bq092zwg00n59lq8v8sphjc1h8i8d")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/yvasiyarov/go-metrics")) -; (home-page "https://github.com/yvasiyarov/go-metrics") -; (synopsis "go-metrics") -; (description "Go port of Coda Hale's Metrics library") -; (license license:expat))) -; -;(define-public go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20160601141957-9c099fbc30e9 -; (package -; (name "go-github-com-yvasiyarov-newrelic-platform-go") -; (version "0.0.0-20160601141957-9c099fbc30e9") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/yvasiyarov/newrelic_platform_go") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0n6jap27qc7b7c37ck1gv9biq5nfl7y06jk0cqgc517yfnb4f07x")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/yvasiyarov/newrelic_platform_go")) -; (home-page "https://github.com/yvasiyarov/newrelic_platform_go") -; (synopsis "New Relic Platform Agent SDK for Go(golang)") -; (description -; "Package newrelic_platform_go is New Relic Platform Agent SDK for Go language.") -; (license license:bsd-2))) -; -;(define-public go-golang-org-x-sys-0.0.0-20220209214540-3681064d5158 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20220209214540-3681064d5158") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0cw9rzb4rxmr2si28pjqx3wv5r119c83kd08yy1h7nf725bzrs89")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20210615035016-665e8c7367d1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "11n848csibdbv7b46zjyf4l7sphg37n9sjzqfy1ds7p1jyakwmnv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-term-0.0.0-20210916214954-140adaaadfaf -; (package -; (name "go-golang-org-x-term") -; (version "0.0.0-20210916214954-140adaaadfaf") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/term") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1rcdx2q92pzpmdyzdlzpq9flc3ibfi3m1rni7w4qlmlq569s6wh3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/term")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1" -; ,go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1))) -; (home-page "https://golang.org/x/term") -; (synopsis "Go terminal/console support") -; (description -; "Package term provides support functions for dealing with terminals, as commonly -;found on UNIX systems.") -; (license license:bsd-3))) -; -;(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 -; (package -; (name "go-gopkg-in-check-v1") -; (version "0.0.0-20161208181325-20d25e280405") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/check.v1") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) -; (home-page "https://gopkg.in/check.v1") -; (synopsis "Instructions") -; (description -; "Package check is a rich testing extension for Go's testing package.") -; (license license:bsd-2))) -; -;(define-public go-gopkg-in-yaml-v2-2.4.0 -; (package -; (name "go-gopkg-in-yaml-v2") -; (version "2.4.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/yaml.v2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1pbmrpj7gcws34g8vwna4i2nhm9p6235piww36436xhyaa10cldr")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" -; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) -; (home-page "https://gopkg.in/yaml.v2") -; (synopsis "YAML support for the Go language") -; (description "Package yaml implements YAML support for the Go language.") -; (license license:asl2.0))) -; -;(define-public go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543 -; (package -; (name "go-golang-org-x-xerrors") -; (version "0.0.0-20191204190536-9bdfabe68543") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/xerrors") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1yjfi1bk9xb81lqn85nnm13zz725wazvrx3b50hx19qmwg7a4b0c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/xerrors")) -; (home-page "https://golang.org/x/xerrors") -; (synopsis #f) -; (description "Package xerrors implements functions to manipulate errors.") -; (license license:bsd-3))) -; -;(define-public go-github-com-google-go-cmp-0.5.5 -; (package -; (name "go-github-com-google-go-cmp") -; (version "0.5.5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/go-cmp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "12fmkdhyv5d4is8s57k78j097zb0phlgnrkqc03agiszxlid69x7")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/go-cmp")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" -; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) -; (home-page "https://github.com/google/go-cmp") -; (synopsis "Package for equality of Go values") -; (description -; "This package is intended to be a more powerful and safer alternative to -;@code{reflect.DeepEqual} for comparing whether two values are semantically -;equal.") -; (license license:bsd-3))) -; -;(define-public go-github-com-pkg-errors-0.9.1 -; (package -; (name "go-github-com-pkg-errors") -; (version "0.9.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/pkg/errors") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1761pybhc2kqr6v5fm8faj08x9bql8427yqg6vnfv6nhrasx1mwq")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/pkg/errors")) -; (home-page "https://github.com/pkg/errors") -; (synopsis "errors") -; (description "Package errors provides simple error handling primitives.") -; (license license:bsd-2))) -; -;(define-public go-github-com-spf13-pflag-1.0.3 -; (package -; (name "go-github-com-spf13-pflag") -; (version "1.0.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/spf13/pflag") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1cj3cjm7d3zk0mf1xdybh0jywkbbw7a6yr3y22x9sis31scprswd")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/spf13/pflag")) -; (home-page "https://github.com/spf13/pflag") -; (synopsis "Description") -; (description -; "Package pflag is a drop-in replacement for Go's flag package, implementing -;POSIX/GNU-style --flags.") -; (license license:bsd-3))) -; -;(define-public go-github-com-yuin-goldmark-1.2.1 -; (package -; (name "go-github-com-yuin-goldmark") -; (version "1.2.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/yuin/goldmark") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "12rsnsf65drcp0jfw2jl9w589vsn3pxdk1zh3v9q908iigngrcmy")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/yuin/goldmark")) -; (home-page "https://github.com/yuin/goldmark") -; (synopsis "goldmark") -; (description -; "Package goldmark implements functions to convert markdown text to a desired -;format.") -; (license license:expat))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20191011191535-87dc89f01550") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0z4i1m2yn3f31ci7wvcm2rxkx2yiv7a78mfzklncmsz2k97rlh2g")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" -; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) -; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" -; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20190620200207-3b0461eec859") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0l00c8l0a8xnv6qdpwfzxxsr58jggacgzdrwiprrfx2xqm37b6d5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sync-0.0.0-20190423024810-112230192c58 -; (package -; (name "go-golang-org-x-sync") -; (version "0.0.0-20190423024810-112230192c58") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sync") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "05i2k43j2d0llq768hg5pf3hb2yhfzp9la1w5wp0rsnnzblr0lfn")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sync")) -; (home-page "https://golang.org/x/sync") -; (synopsis "Go Sync") -; (description -; "This repository provides Go concurrency primitives in addition to the ones -;provided by the language and \"sync\" and \"sync/atomic\" packages.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7 -; (package -; (name "go-golang-org-x-xerrors") -; (version "0.0.0-20190717185122-a985d3407aa7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/xerrors") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "00wzr5w8aadipgc3rkk8f11i41znskfj9ix5nhhaxyg7isrslgcj")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/xerrors")) -; (home-page "https://golang.org/x/xerrors") -; (synopsis #f) -; (description "Package xerrors implements functions to manipulate errors.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20191119224855-298f0cb1881e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0l4pqwib2wnfnix6nvxl0yrq87ipi7ff1rz6z5bxfzy9dki1nzmv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7" -; ,go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7) -; ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" -; ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) -; ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" -; ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898 -; (package -; (name "go-golang-org-x-xerrors") -; (version "0.0.0-20191011141410-1b5146add898") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/xerrors") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0w2akj91krxjag0xdhsg78470888nicc5ismc2ap9jqpss6v1zih")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/xerrors")) -; (home-page "https://golang.org/x/xerrors") -; (synopsis #f) -; (description "Package xerrors implements functions to manipulate errors.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-mod-0.3.0 -; (package -; (name "go-golang-org-x-mod") -; (version "0.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/mod") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ldgbx2zpprbsfn6p8pfgs4nn87gwbfcv2z0fa7n8alwsq2yw78q")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/mod")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" -; ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) -; ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" -; ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) -; ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" -; ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) -; (home-page "https://golang.org/x/mod") -; (synopsis "mod") -; (description -; "This repository holds packages for writing tools that work directly with Go -;module mechanics. That is, it is for direct manipulation of Go modules -;themselves.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190215142949-d0b11bdaac8a") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20190308221718-c2843e01d9a2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" -; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-text-0.3.0 -; (package -; (name "go-golang-org-x-text") -; (version "0.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/text") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/text")) -; (home-page "https://golang.org/x/text") -; (synopsis "Go Text") -; (description -; "text is a repository of text-related packages related to internationalization -;(i18n) and localization (l10n), such as character encodings, text -;transformations, and locale-specific text handling.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20190404232315-eb5bcb51f2a3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "17k4g8krxbl84gzcs275b7gsh66dzm15fdxivjnx9xz8q84l4kby")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) -; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" -; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20190412213103-97732733099d -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20190412213103-97732733099d") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "118hkp01i4z1f5h6hcjm0ff2ngqhrzj1f7731n0kw8dr6hvbx0sw")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9 -; (package -; (name "go-golang-org-x-crypto") -; (version "0.0.0-20200622213623-75b288015ac9") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/crypto") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "18vlncvvs11ds3zaaziqjlg5s2vcwi3496nn6qv7p0dp94j5pwa2")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/crypto")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" -; ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) -; ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" -; ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) -; (home-page "https://golang.org/x/crypto") -; (synopsis "Go Cryptography") -; (description -; "This repository holds supplementary Go cryptography libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20200930185726-fdedc70b468f") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1njlfhjbvi4lxvjbq8zswrb0y0q4jd2p6x51h1q6vmyzi9af6869")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e -; (package -; (name "go-golang-org-x-tools") -; (version "0.0.0-20180917221912-90fa682c2a6e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-text-0.3.3 -; (package -; (name "go-golang-org-x-text") -; (version "0.3.3") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/text") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "19pihqm3phyndmiw6i42pdv6z1rbvlqlsnhsyqf9gsnn0qnmqqlh")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/text")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" -; ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) -; (home-page "https://golang.org/x/text") -; (synopsis "Go Text") -; (description -; "text is a repository of text-related packages related to internationalization -;(i18n) and localization (l10n), such as character encodings, text -;transformations, and locale-specific text handling.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-net-0.0.0-20201021035429-f5854403a974 -; (package -; (name "go-golang-org-x-net") -; (version "0.0.0-20201021035429-f5854403a974") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/net") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1vw63zpmhi337f3gc432x3wkib4j2ia8dy7if31wxwb9dgqvy222")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/net")) -; (propagated-inputs -; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) -; ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" -; ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) -; ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" -; ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) -; (home-page "https://golang.org/x/net") -; (synopsis "Go Networking") -; (description -; "This repository holds supplementary Go networking libraries.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9 -; (package -; (name "go-golang-org-x-sync") -; (version "0.0.0-20201020160332-67f06af15bc9") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sync") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "093p4panc808ak5bamzz7m9nb0xxib7778jpnr6f0xkz1n4fzyw5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sync")) -; (home-page "https://golang.org/x/sync") -; (synopsis "Go Sync") -; (description -; "This repository provides Go concurrency primitives in addition to the ones -;provided by the language and \"sync\" and \"sync/atomic\" packages.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20210119212857-b64e53b001e4") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "16in6bazi0frdkzhqxyvmw7qcvzjavq21dnz9bmrqq8d4dpd2j44")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1 -; (package -; (name "go-golang-org-x-xerrors") -; (version "0.0.0-20200804184101-5ec99f83aff1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/xerrors") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1dbzc3gmf2haazpv7cgmv97rq40g2xzwbglc17vas8dwhgwgwrzb")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/xerrors")) -; (home-page "https://golang.org/x/xerrors") -; (synopsis #f) -; (description "Package xerrors implements functions to manipulate errors.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-tools-0.1.0 -; (package -; (name "go-golang-org-x-tools") -; (version "0.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/tools") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1asrm22kv5x891qkbpap8alg612k321jbs1akc0vwsan251gm507")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/tools")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" -; ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) -; ("go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4" -; ,go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4) -; ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" -; ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) -; ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" -; ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) -; ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) -; ("go-github-com-yuin-goldmark-1.2.1" -; ,go-github-com-yuin-goldmark-1.2.1))) -; (home-page "https://golang.org/x/tools") -; (synopsis "Go Tools") -; (description -; "This subrepository holds the source for various packages and tools that support -;the Go programming language.") -; (license license:bsd-3))) -; -;(define-public go-gotest-tools-v3-3.1.0 -; (package -; (name "go-gotest-tools-v3") -; (version "3.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/gotestyourself/gotest.tools") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0jk2grk2q19k453m76hn2bsq9i73yk63drlfjg1imvhmmcl88872")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gotest.tools/v3" #:unpack-path "gotest.tools/v3")) -; (propagated-inputs -; `(("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) -; ("go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4" -; ,go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4) -; ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) -; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) -; ("go-github-com-google-go-cmp-0.5.5" -; ,go-github-com-google-go-cmp-0.5.5))) -; (home-page "https://gotest.tools/v3") -; (synopsis "gotest.tools") -; (description -; "Package gotesttools is a collection of packages to augment `testing` and support -;common patterns.") -; (license license:asl2.0))) -; -;(define-public go-github-com-creack-pty-1.1.15 -; (package -; (name "go-github-com-creack-pty") -; (version "1.1.15") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/creack/pty") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1j5w51ammp5rp90bhdwqi216dxmndpmf4gf3gim75qls52qj8j2r")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/creack/pty")) -; (home-page "https://github.com/creack/pty") -; (synopsis "pty") -; (description -; "Package pty provides functions for working with Unix terminals.") -; (license license:expat))) -; -;(define-public go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543 -; (package -; (name "go-golang-org-x-xerrors") -; (version "0.0.0-20191204190536-9bdfabe68543") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/xerrors") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1yjfi1bk9xb81lqn85nnm13zz725wazvrx3b50hx19qmwg7a4b0c")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/xerrors")) -; (home-page "https://golang.org/x/xerrors") -; (synopsis #f) -; (description "Package xerrors implements functions to manipulate errors.") -; (license license:bsd-3))) -; -;(define-public go-github-com-google-go-cmp-0.5.6 -; (package -; (name "go-github-com-google-go-cmp") -; (version "0.5.6") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/go-cmp") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0lrb0pacv5iy3m6fn1qb3nv7zwimfhpzqq8f6hwpwx88cx3g6p1s")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/go-cmp")) -; (propagated-inputs -; `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" -; ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) -; (home-page "https://github.com/google/go-cmp") -; (synopsis "Package for equality of Go values") -; (description -; "This package is intended to be a more powerful and safer alternative to -;@code{reflect.DeepEqual} for comparing whether two values are semantically -;equal.") -; (license license:bsd-3))) -; -;(define-public go-github-com-frankban-quicktest-1.13.1 -; (package -; (name "go-github-com-frankban-quicktest") -; (version "1.13.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/frankban/quicktest") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1x0v98s4m0zy9m4h7x3kmx30vxk2ah496qb81mnmzv98h4cgdki0")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/frankban/quicktest")) -; (propagated-inputs -; `(("go-github-com-kr-pretty-0.3.0" ,go-github-com-kr-pretty-0.3.0) -; ("go-github-com-google-go-cmp-0.5.6" -; ,go-github-com-google-go-cmp-0.5.6))) -; (home-page "https://github.com/frankban/quicktest") -; (synopsis "quicktest") -; (description -; "Package quicktest provides a collection of Go helpers for writing tests.") -; (license license:expat))) -; -;(define-public go-github-com-google-renameio-1.0.1 -; (package -; (name "go-github-com-google-renameio") -; (version "1.0.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/google/renameio") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1qn84nra9nxqyqg4i496b6ijbhnxvx66hdndwl7qh7r6q8lz2ba5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/google/renameio")) -; (home-page "https://github.com/google/renameio") -; (synopsis "Atomicity vs durability") -; (description -; "Package renameio provides a way to atomically create or replace a file or -;symbolic link.") -; (license license:asl2.0))) -; -;(define-public go-github-com-creack-pty-1.1.9 -; (package -; (name "go-github-com-creack-pty") -; (version "1.1.9") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/creack/pty") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1v52599qq76dwq742mffakzj6mxqqccv2szn3hjicjld56nmd2d3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/creack/pty")) -; (home-page "https://github.com/creack/pty") -; (synopsis "pty") -; (description -; "Package pty provides functions for working with Unix terminals.") -; (license license:expat))) -; -;(define-public go-github-com-kr-text-0.2.0 -; (package -; (name "go-github-com-kr-text") -; (version "0.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kr/text") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0hf58ypz6rxsw6nx3i856whir9lvy4sdx946wbw1nfaf2rdmr9vx")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kr/text")) -; (propagated-inputs -; `(("go-github-com-creack-pty-1.1.9" ,go-github-com-creack-pty-1.1.9))) -; (home-page "https://github.com/kr/text") -; (synopsis #f) -; (description -; "Package text provides rudimentary functions for manipulating text in paragraphs.") -; (license license:expat))) -; -;(define-public go-github-com-rogpeppe-go-internal-1.6.1 -; (package -; (name "go-github-com-rogpeppe-go-internal") -; (version "1.6.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/rogpeppe/go-internal") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "00j2vpp1bsggdvw1winkz23mg0q6drjiir5q0k49pmqx1sh7106l")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/rogpeppe/go-internal")) -; (propagated-inputs -; `(("go-gopkg-in-errgo-v2-2.1.0" ,go-gopkg-in-errgo-v2-2.1.0))) -; (home-page "https://github.com/rogpeppe/go-internal") -; (synopsis #f) -; (description -; "This repository factors out an opinionated selection of internal packages and -;functionality from the Go standard library. Currently this consists mostly of -;packages and testing code from within the Go tool implementation.") -; (license license:bsd-3))) -; -;(define-public go-github-com-kr-pretty-0.3.0 -; (package -; (name "go-github-com-kr-pretty") -; (version "0.3.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kr/pretty") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0vp5ijbapw8j52c3l992m1wm8nhl23n68xk3lqxhad3srxmdb9z4")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kr/pretty")) -; (propagated-inputs -; `(("go-github-com-rogpeppe-go-internal-1.6.1" -; ,go-github-com-rogpeppe-go-internal-1.6.1) -; ("go-github-com-kr-text-0.2.0" ,go-github-com-kr-text-0.2.0))) -; (home-page "https://github.com/kr/pretty") -; (synopsis #f) -; (description -; "Package pretty provides pretty-printing for Go values. This is useful during -;debugging, to avoid wrapping long output lines in the terminal.") -; (license license:expat))) -; -;(define-public go-github-com-pkg-diff-0.0.0-20210226163009-20ebb0f2a09e -; (package -; (name "go-github-com-pkg-diff") -; (version "0.0.0-20210226163009-20ebb0f2a09e") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/pkg/diff") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1g3dzgwhz4fx3ddpsv7fsa4r1v5clsp2lbw2qrkdk9y1vc5gi8yi")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/pkg/diff")) -; (home-page "https://github.com/pkg/diff") -; (synopsis "diff") -; (description -; "Package diff contains high level routines that generate a textual diff.") -; (license license:bsd-3))) -; -;(define-public go-github-com-kr-pty-1.1.1 -; (package -; (name "go-github-com-kr-pty") -; (version "1.1.1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kr/pty") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0383f0mb9kqjvncqrfpidsf8y6ns5zlrc91c6a74xpyxjwvzl2y6")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kr/pty")) -; (home-page "https://github.com/kr/pty") -; (synopsis "pty") -; (description -; "Package pty is a wrapper for github.com/creack/pty, which provides functions for -;working with Unix terminals.") -; (license license:expat))) -; -;(define-public go-github-com-kr-text-0.1.0 -; (package -; (name "go-github-com-kr-text") -; (version "0.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kr/text") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1gm5bsl01apvc84bw06hasawyqm4q84vx1pm32wr9jnd7a8vjgj1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kr/text")) -; (propagated-inputs -; `(("go-github-com-kr-pty-1.1.1" ,go-github-com-kr-pty-1.1.1))) -; (home-page "https://github.com/kr/text") -; (synopsis #f) -; (description -; "Package text provides rudimentary functions for manipulating text in paragraphs.") -; (license license:expat))) -; -;(define-public go-github-com-kr-pretty-0.1.0 -; (package -; (name "go-github-com-kr-pretty") -; (version "0.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/kr/pretty") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "18m4pwg2abd0j9cn5v3k2ksk9ig4vlwxmlw9rrglanziv9l967qp")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/kr/pretty")) -; (propagated-inputs -; `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) -; (home-page "https://github.com/kr/pretty") -; (synopsis #f) -; (description -; "Package pretty provides pretty-printing for Go values. This is useful during -;debugging, to avoid wrapping long output lines in the terminal.") -; (license license:expat))) -; -;(define-public go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127 -; (package -; (name "go-gopkg-in-check-v1") -; (version "1.0.0-20180628173108-788fd7840127") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/check.v1") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0v3bim0j375z81zrpr5qv42knqs0y2qv2vkjiqi5axvb78slki1a")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) -; (home-page "https://gopkg.in/check.v1") -; (synopsis "Instructions") -; (description -; "Package check is a rich testing extension for Go's testing package.") -; (license license:bsd-2))) -; -;(define-public go-gopkg-in-errgo-v2-2.1.0 -; (package -; (name "go-gopkg-in-errgo-v2") -; (version "2.1.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://gopkg.in/errgo.v2") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "065mbihiy7q67wnql0bzl9y1kkvck5ivra68254zbih52jxwrgr2")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "gopkg.in/errgo.v2" #:unpack-path "gopkg.in/errgo.v2")) -; (propagated-inputs -; `(("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" -; ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) -; ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0))) -; (home-page "https://gopkg.in/errgo.v2") -; (synopsis #f) -; (description -; "Package errgo provides some primitives for error creation and handling.") -; (license license:bsd-3))) -; -;(define-public go-github-com-rogpeppe-go-internal-1.8.1-0.20210923151022-86f73c517451 -; (package -; (name "go-github-com-rogpeppe-go-internal") -; (version "1.8.1-0.20210923151022-86f73c517451") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/rogpeppe/go-internal") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1qswk3kaif0n8q125dvd8rfcyc3wqw71yi16fc26336kbwjzrc9p")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/rogpeppe/go-internal")) -; (propagated-inputs -; `(("go-gopkg-in-errgo-v2-2.1.0" ,go-gopkg-in-errgo-v2-2.1.0) -; ("go-github-com-pkg-diff-0.0.0-20210226163009-20ebb0f2a09e" -; ,go-github-com-pkg-diff-0.0.0-20210226163009-20ebb0f2a09e))) -; (home-page "https://github.com/rogpeppe/go-internal") -; (synopsis #f) -; (description -; "This repository factors out an opinionated selection of internal packages and -;functionality from the Go standard library. Currently this consists mostly of -;packages and testing code from within the Go tool implementation.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c -; (package -; (name "go-golang-org-x-sync") -; (version "0.0.0-20210220032951-036812b2e83c") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sync") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1gl202py3s4gl6arkaxlf8qa6f0jyyg2f95m6f89qnfmr416h85b")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sync")) -; (home-page "https://golang.org/x/sync") -; (synopsis "Go Sync") -; (description -; "This repository provides Go concurrency primitives in addition to the ones -;provided by the language and \"sync\" and \"sync/atomic\" packages.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20210925032602-92d5a993a665 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20210925032602-92d5a993a665") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0ps9wq5vz0ilsjxd05glnkkmbfxzpsqvjp0mgm2y1hm6ql5qfpn5")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1 -; (package -; (name "go-golang-org-x-sys") -; (version "0.0.0-20210615035016-665e8c7367d1") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "11n848csibdbv7b46zjyf4l7sphg37n9sjzqfy1ds7p1jyakwmnv")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/sys")) -; (home-page "https://golang.org/x/sys") -; (synopsis "sys") -; (description -; "This repository holds supplemental Go packages for low-level interactions with -;the operating system.") -; (license license:bsd-3))) -; -;(define-public go-golang-org-x-term-0.0.0-20210916214954-140adaaadfaf -; (package -; (name "go-golang-org-x-term") -; (version "0.0.0-20210916214954-140adaaadfaf") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://go.googlesource.com/term") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1rcdx2q92pzpmdyzdlzpq9flc3ibfi3m1rni7w4qlmlq569s6wh3")))) -; (build-system go-build-system) -; (arguments '(#:import-path "golang.org/x/term")) -; (propagated-inputs -; `(("go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1" -; ,go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1))) -; (home-page "https://golang.org/x/term") -; (synopsis "Go terminal/console support") -; (description -; "Package term provides support functions for dealing with terminals, as commonly -;found on UNIX systems.") -; (license license:bsd-3))) -; -;(define-public go-mvdan-cc-editorconfig-0.2.0 -; (package -; (name "go-mvdan-cc-editorconfig") -; (version "0.2.0") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mvdan/editorconfig") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1rav1rp8pi921gsffqr2wjdhbr12w81g31yv6iw4yb1zyh726qqg")))) -; (build-system go-build-system) -; (arguments '(#:import-path "mvdan.cc/editorconfig")) -; (home-page "https://mvdan.cc/editorconfig") -; (synopsis "editorconfig") -; (description -; "Package editorconfig allows parsing and using EditorConfig files, as defined in -;@url{https://editorconfig.org/,https://editorconfig.org/}.") -; (license license:bsd-3))) -; -;(define-public go-mvdan-cc-sh-v3-3.4.3-0.20220202175809-113ed667a8a7 -; (package -; (name "go-mvdan-cc-sh-v3") -; (version "3.4.3-0.20220202175809-113ed667a8a7") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/mvdan/sh") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1k5113qqm20x58838k8f0ry3v1hinahjf2yl8y4450922yy0mq2k")))) -; (build-system go-build-system) -; (arguments -; '(#:import-path "mvdan.cc/sh/v3" #:unpack-path "mvdan.cc/sh/v3")) -; (propagated-inputs -; `(("go-mvdan-cc-editorconfig-0.2.0" ,go-mvdan-cc-editorconfig-0.2.0) -; ("go-golang-org-x-term-0.0.0-20210916214954-140adaaadfaf" -; ,go-golang-org-x-term-0.0.0-20210916214954-140adaaadfaf) -; ("go-golang-org-x-sys-0.0.0-20210925032602-92d5a993a665" -; ,go-golang-org-x-sys-0.0.0-20210925032602-92d5a993a665) -; ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" -; ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) -; ("go-github-com-rogpeppe-go-internal-1.8.1-0.20210923151022-86f73c517451" -; ,go-github-com-rogpeppe-go-internal-1.8.1-0.20210923151022-86f73c517451) -; ("go-github-com-pkg-diff-0.0.0-20210226163009-20ebb0f2a09e" -; ,go-github-com-pkg-diff-0.0.0-20210226163009-20ebb0f2a09e) -; ("go-github-com-kr-pretty-0.3.0" ,go-github-com-kr-pretty-0.3.0) -; ("go-github-com-google-renameio-1.0.1" -; ,go-github-com-google-renameio-1.0.1) -; ("go-github-com-frankban-quicktest-1.13.1" -; ,go-github-com-frankban-quicktest-1.13.1) -; ("go-github-com-creack-pty-1.1.15" ,go-github-com-creack-pty-1.1.15))) -; (home-page "https://mvdan.cc/sh/v3") -; (synopsis "sh") -; (description -; "This package provides a shell parser, formatter, and interpreter. Supports -;@url{https://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html,POSIX -;Shell}, @url{https://www.gnu.org/software/bash/,Bash}, and -;@url{http://www.mirbsd.org/mksh.htm,mksh}. Requires Go 1.16 or later.") -; (license license:bsd-3))) -; -;(define-public go-github-com-opencontainers-image-spec-1.0.2-0.20211117181255-693428a734f5 -; (package -; (name "go-github-com-opencontainers-image-spec") -; (version "1.0.2-0.20211117181255-693428a734f5") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/opencontainers/image-spec") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1w9fmamky30idjbqs78qhds6d5b9gdy6wzcxx6fhmpm2159dv62b")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/opencontainers/image-spec")) -; (home-page "https://github.com/opencontainers/image-spec") -; (synopsis "OCI Image Format Specification") -; (description -; "The OCI Image Format project creates and maintains the software shipping -;container image format spec (OCI Image Format).") -; (license license:asl2.0))) -; -;(define-public go-github-com-yvasiyarov-gorelic-0.0.6 -; (package -; (name "go-github-com-yvasiyarov-gorelic") -; (version "0.0.6") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/yvasiyarov/gorelic") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "0210d8z7l945611b5ynzjhnypqfdyr490ndrap13s4k5z1jgqjnb")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/yvasiyarov/gorelic")) -; (home-page "https://github.com/yvasiyarov/gorelic") -; (synopsis "GoRelic is deprecated in favour of") -; (description -; "Package gorelic is an New Relic agent implementation for Go runtime. It collect -;a lot of metrics about Go scheduler, garbage collector and memory allocator and -;send them to NewRelic.") -; (license license:bsd-2))) -; -;(define-public go-github-com-moby-sys-0.0.0-20220308220145-03355939d693 -; (package -; (name "go-github-com-moby-sys") -; (version "0.0.0-20220308220145-03355939d693") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/moby/sys") -; (commit (go-version->git-ref version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "1ns4bav4n0k93nwz898dmcrz9zm4fa08sxyzhi7wqj4f8mpz4fam")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/moby/sys")) -; (home-page "https://github.com/moby/sys") -; (synopsis #f) -; (description #f) -; (license license:asl2.0))) -;(define-public go-github-com-apptainer-sif-v2-2.3.2 -; (package -; (name "go-github-com-apptainer-sif-v2") -; (version "2.3.2") -; (source -; (origin -; (method git-fetch) -; (uri (git-reference -; (url "https://github.com/apptainer/sif") -; (commit (string-append "v" version)))) -; (file-name (git-file-name name version)) -; (sha256 -; (base32 "10cmvgyjxnfgw5661n1zbdr8zs29rx9izsr1bbnnyjr9kdqdhfg1")))) -; (build-system go-build-system) -; (arguments '(#:import-path "github.com/apptainer/sif/v2")) -; (propagated-inputs -; `(("go-gopkg-in-warnings-v0-0.1.2" ,go-gopkg-in-warnings-v0-0.1.2) -; ("go-golang-org-x-sys-0.0.0-20211205182925-97ca703d548d" -; ,go-golang-org-x-sys-0.0.0-20211205182925-97ca703d548d) -; ("go-golang-org-x-net-0.0.0-20210813160813-60bc85c4be6d" -; ,go-golang-org-x-net-0.0.0-20210813160813-60bc85c4be6d) -; ("go-golang-org-x-crypto-0.0.0-20210817164053-32db794688a5" -; ,go-golang-org-x-crypto-0.0.0-20210817164053-32db794688a5) -; ("go-github-com-xanzy-ssh-agent-0.3.0" -; ,go-github-com-xanzy-ssh-agent-0.3.0) -; ("go-github-com-sergi-go-diff-1.1.0" -; ,go-github-com-sergi-go-diff-1.1.0) -; ("go-github-com-pmezard-go-difflib-1.0.0" -; ,go-github-com-pmezard-go-difflib-1.0.0) -; ("go-github-com-mitchellh-go-homedir-1.1.0" -; ,go-github-com-mitchellh-go-homedir-1.1.0) -; ("go-github-com-kevinburke-ssh-config-0.0.0-20201106050909-4977a11b4351" -; ,go-github-com-kevinburke-ssh-config-0.0.0-20201106050909-4977a11b4351) -; ("go-github-com-jbenet-go-context-0.0.0-20150711004518-d14ea06fba99" -; ,go-github-com-jbenet-go-context-0.0.0-20150711004518-d14ea06fba99) -; ("go-github-com-inconshreveable-mousetrap-1.0.0" -; ,go-github-com-inconshreveable-mousetrap-1.0.0) -; ("go-github-com-imdario-mergo-0.3.12" -; ,go-github-com-imdario-mergo-0.3.12) -; ("go-github-com-go-git-go-billy-v5-5.3.1" -; ,go-github-com-go-git-go-billy-v5-5.3.1) -; ("go-github-com-go-git-gcfg-1.5.0" ,go-github-com-go-git-gcfg-1.5.0) -; ("go-github-com-emirpasic-gods-1.12.0" -; ,go-github-com-emirpasic-gods-1.12.0) -; ("go-github-com-acomagu-bufpipe-1.0.3" -; ,go-github-com-acomagu-bufpipe-1.0.3) -; ("go-github-com-microsoft-go-winio-0.4.16" -; ,go-github-com-microsoft-go-winio-0.4.16) -; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) -; ("go-github-com-spf13-cobra-1.3.0" ,go-github-com-spf13-cobra-1.3.0) -; ("go-github-com-sebdah-goldie-v2-2.5.3" -; ,go-github-com-sebdah-goldie-v2-2.5.3) -; ("go-github-com-magefile-mage-1.12.1" -; ,go-github-com-magefile-mage-1.12.1) -; ("go-github-com-google-uuid-1.3.0" ,go-github-com-google-uuid-1.3.0) -; ("go-github-com-go-git-go-git-v5-5.4.2" -; ,go-github-com-go-git-go-git-v5-5.4.2) -; ("go-github-com-blang-semver-v4-4.0.0" -; ,go-github-com-blang-semver-v4-4.0.0) -; ("go-github-com-protonmail-go-crypto-0.0.0-20220113124808-70ae35bab23f" -; ,go-github-com-protonmail-go-crypto-0.0.0-20220113124808-70ae35bab23f))) -; (home-page "https://github.com/apptainer/sif") -; (synopsis "The Singularity Image Format (SIF)") -; (description -; "This module contains an open source implementation of the Singularity Image -;Format (SIF) that makes it easy to create complete and encapsulated container -;environments stored in a single file.") -; (license license:bsd-3))) +(define-public go-github-com-creack-pty-1.1.17 + (package + (name "go-github-com-creack-pty") + (version "1.1.17") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/creack/pty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "09lcq5bw1dwppxjia05sj4fy7gbk62vishfz1bgrbd1r06i57mjf")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/creack/pty")) + (home-page "https://github.com/creack/pty") + (synopsis "pty") + (description + "Package pty provides functions for working with Unix terminals.") + (license license:expat))) + +(define-public go-github-com-davecgh-go-spew-1.1.0 + (package + (name "go-github-com-davecgh-go-spew") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/davecgh/go-spew") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/davecgh/go-spew")) + (home-page "https://github.com/davecgh/go-spew") + (synopsis "go-spew") + (description + "Go-spew implements a deep pretty printer for Go data structures to aid in +debugging. A comprehensive suite of tests with 100% test coverage is provided +to ensure proper functionality. See @code{test_coverage.txt} for the gocov +coverage report. Go-spew is licensed under the liberal ISC license, so it may +be used in open source or commercial projects.") + (license license:isc))) + +(define-public go-github-com-pmezard-go-difflib-1.0.0 + (package + (name "go-github-com-pmezard-go-difflib") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pmezard/go-difflib") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pmezard/go-difflib")) + (home-page "https://github.com/pmezard/go-difflib") + (synopsis "go-difflib") + (description + "Go-difflib is a partial port of python 3 difflib package. Its main goal was to +make unified and context diff available in pure Go, mostly for testing purposes.") + (license license:bsd-3))) + +(define-public go-github-com-stretchr-objx-0.1.0 + (package + (name "go-github-com-stretchr-objx") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/objx") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/objx")) + (home-page "https://github.com/stretchr/objx") + (synopsis "Objx") + (description + "Objx - Go package for dealing with maps, slices, JSON and other data.") + (license license:expat))) + +(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 + (package + (name "go-gopkg-in-check-v1") + (version "0.0.0-20161208181325-20d25e280405") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/check.v1") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) + (home-page "https://gopkg.in/check.v1") + (synopsis "Instructions") + (description + "Package check is a rich testing extension for Go's testing package.") + (license license:bsd-2))) + +(define-public go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c + (package + (name "go-gopkg-in-yaml-v3") + (version "3.0.0-20200313102051-9f266ea9e77c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v3") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1bbai3lzb50m0x2vwsdbagrbhvfylj9k1m32hgbqwldqx4p9ay35")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v3") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language.") + (license license:expat))) + +(define-public go-github-com-stretchr-testify-1.6.1 + (package + (name "go-github-com-stretchr-testify") + (version "1.6.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1yhiqqzjvi63pf01rgzx68gqkkvjx03fvl5wk30br5l6s81s090l")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (propagated-inputs + `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" + ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) + ("go-github-com-stretchr-objx-0.1.0" + ,go-github-com-stretchr-objx-0.1.0) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.0" + ,go-github-com-davecgh-go-spew-1.1.0))) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in +it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that +your code will behave as you intend.") + (license license:expat))) + +(define-public go-github-com-netflix-go-expect-0.0.0-20220104043353-73e0943537d2 + (package + (name "go-github-com-netflix-go-expect") + (version "0.0.0-20220104043353-73e0943537d2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/Netflix/go-expect") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0zkvhnc4ii6ygvcsj54ng0kql26rnny7l3hy1w61g88mxjsww1b9")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/Netflix/go-expect")) + (propagated-inputs + `(("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-creack-pty-1.1.17" ,go-github-com-creack-pty-1.1.17))) + (home-page "https://github.com/Netflix/go-expect") + (synopsis "go-expect") + (description + "Package expect provides an expect-like interface to automate control of +applications. It is unlike expect in that it does not spawn or manage process +lifecycle. This package only focuses on expecting output and sending input +through it's psuedoterminal.") + (license license:asl2.0))) + +(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20180917221912-90fa682c2a6e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-golang-org-x-text-0.3.3 + (package + (name "go-golang-org-x-text") + (version "0.3.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19pihqm3phyndmiw6i42pdv6z1rbvlqlsnhsyqf9gsnn0qnmqqlh")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/text")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" + ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) + (home-page "https://golang.org/x/text") + (synopsis "Go Text") + (description + "text is a repository of text-related packages related to internationalization +(i18n) and localization (l10n), such as character encodings, text +transformations, and locale-specific text handling.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20210226172049-e18ecbb05110") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1vlq8mdscp7yfaa1lmyv03y5m4c2d67ydg2q1i6smkrxghn3zn3q")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) + ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" + ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) + ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" + ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20201119102817-f84b799fce68") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1dvhqian5byzkcg1bnqzygqa6ccc6krc2q7j12pp1vhl3y7znnsg")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1 + (package + (name "go-golang-org-x-term") + (version "0.0.0-20201126162022-7de9c90e9dd1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/term") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ba252xmv6qsvf1w1gcy98mngrj0vd4inbjw0lsklqvva65nljna")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/term")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" + ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) + (home-page "https://golang.org/x/term") + (synopsis "Go terminal/console support") + (description + "Package term provides support functions for dealing with terminals, as commonly +found on UNIX systems.") + (license license:bsd-3))) + +(define-public go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20210322153248-0c34fe9e7dc2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "021szs1czc0xg4chpays7i05dvkax9s8mns314ab01r887kchqxq")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" + ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) + ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" + ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68) + ("go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110" + ,go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-github-com-protonmail-go-crypto-0.0.0-20220113124808-70ae35bab23f + (package + (name "go-github-com-protonmail-go-crypto") + (version "0.0.0-20220113124808-70ae35bab23f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/ProtonMail/go-crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0dpalb7cd2xs0hji80zv378vf8gx4ph7b8xdd05kvbskyw67fb7n")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/ProtonMail/go-crypto")) + (propagated-inputs + `(("go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2" + ,go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2))) + (home-page "https://github.com/ProtonMail/go-crypto") + (synopsis #f) + (description + "This module is backwards compatible with x/crypto/openpgp, so you can simply +replace all imports of @code{golang.org/x/crypto/openpgp} with +@code{github.com/ProtonMail/go-crypto/openpgp}.") + (license license:bsd-3))) + +(define-public go-github-com-docker-distribution-2.7.1+incompatible + (package + (name "go-github-com-docker-distribution") + (version "2.7.1+incompatible") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/distribution/distribution") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1nx8b5a68rn81alp8wkkw6qd5v32mgf0fk23mxm60zdf63qk1nzw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/docker/distribution")) + (home-page "https://github.com/docker/distribution") + (synopsis "Distribution") + (description + "Package distribution will define the interfaces for the components of docker +distribution. The goal is to allow users to reliably package, ship and store +content related to docker images.") + (license license:asl2.0))) + +(define-public go-github-com-docker-libtrust-0.0.0-20160708172513-aabc10ec26b7 + (package + (name "go-github-com-docker-libtrust") + (version "0.0.0-20160708172513-aabc10ec26b7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/docker/libtrust") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1lwslbggzc2b0c4wxl5pn6i2nfgz5jz8f7s7vnid9mrlsk59h7s1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/docker/libtrust")) + (home-page "https://github.com/docker/libtrust") + (synopsis "libtrust") + (description + "Package libtrust provides an interface for managing authentication and +authorization using public key cryptography. Authentication is handled using +the identity attached to the public key and verified through TLS x509 +certificates, a key challenge, or signature. Authorization and access control +is managed through a trust graph distributed between both remote trust servers +and locally cached and managed data.") + (license license:asl2.0))) + +(define-public go-github-com-gorilla-mux-1.7.4 + (package + (name "go-github-com-gorilla-mux") + (version "1.7.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gorilla/mux") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1d0sy1paa055ic84sp3766s9pa24q008hf77dc842vrgvn8p3wmh")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/gorilla/mux")) + (home-page "https://github.com/gorilla/mux") + (synopsis "gorilla/mux") + (description "Package mux implements a request router and dispatcher.") + (license license:bsd-3))) + +(define-public go-github-com-davecgh-go-spew-1.1.1 + (package + (name "go-github-com-davecgh-go-spew") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/davecgh/go-spew") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/davecgh/go-spew")) + (home-page "https://github.com/davecgh/go-spew") + (synopsis "go-spew") + (description + "Go-spew implements a deep pretty printer for Go data structures to aid in +debugging. A comprehensive suite of tests with 100% test coverage is provided +to ensure proper functionality. See @code{test_coverage.txt} for the gocov +coverage report. Go-spew is licensed under the liberal ISC license, so it may +be used in open source or commercial projects.") + (license license:isc))) + +(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.1 + (package + (name "go-github-com-konsorten-go-windows-terminal-sequences") + (version "1.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/konsorten/go-windows-terminal-sequences") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1lchgf27n276vma6iyxa0v1xds68n2g8lih5lavqnx5x6q5pw2ip")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) + (home-page "https://github.com/konsorten/go-windows-terminal-sequences") + (synopsis "Windows Terminal Sequences") + (description + "This library allow for enabling Windows terminal color support for Go.") + (license license:expat))) + +(define-public go-github-com-pmezard-go-difflib-1.0.0 + (package + (name "go-github-com-pmezard-go-difflib") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pmezard/go-difflib") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pmezard/go-difflib")) + (home-page "https://github.com/pmezard/go-difflib") + (synopsis "go-difflib") + (description + "Go-difflib is a partial port of python 3 difflib package. Its main goal was to +make unified and context diff available in pure Go, mostly for testing purposes.") + (license license:bsd-3))) + +(define-public go-github-com-stretchr-objx-0.1.1 + (package + (name "go-github-com-stretchr-objx") + (version "0.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/objx") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0iph0qmpyqg4kwv8jsx6a56a7hhqq8swrazv40ycxk9rzr0s8yls")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/objx")) + (home-page "https://github.com/stretchr/objx") + (synopsis "Objx") + (description + "Objx - Go package for dealing with maps, slices, JSON and other data.") + (license license:expat))) + +(define-public go-github-com-stretchr-testify-1.2.2 + (package + (name "go-github-com-stretchr-testify") + (version "1.2.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0dlszlshlxbmmfxj5hlwgv3r22x0y1af45gn1vd198nvvs3pnvfs")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in +it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that +your code will behave as you intend.") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190422165155-953cdadca894") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0gkha4whk8xkcv3isigbs250akag99isxnd3v9xmy0kl3g88hxy1")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-sirupsen-logrus-1.4.2 + (package + (name "go-github-com-sirupsen-logrus") + (version "1.4.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sirupsen/logrus") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "087k2lxrr9p9dh68yw71d05h5g9p5v26zbwd6j7lghinjfaw334x")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/sirupsen/logrus")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894" + ,go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894) + ("go-github-com-stretchr-testify-1.2.2" + ,go-github-com-stretchr-testify-1.2.2) + ("go-github-com-stretchr-objx-0.1.1" + ,go-github-com-stretchr-objx-0.1.1) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.1" + ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.1) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/sirupsen/logrus") + (synopsis "Logrus") + (description + "Package logrus is a structured logger for Go, completely API compatible with the +standard library logger.") + (license license:expat))) + +(define-public go-github-com-adigunhammedolalekan-registry-auth-0.0.0-20200730122110-8cde180a3a60 + (package + (name "go-github-com-adigunhammedolalekan-registry-auth") + (version "0.0.0-20200730122110-8cde180a3a60") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/adigunhammedolalekan/registry-auth") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0855a5c0ifi6q2ghb6gax0kwwra5j7pd2lplq4wp8r83dnv4vwj0")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/adigunhammedolalekan/registry-auth")) + (propagated-inputs + `(("go-github-com-sirupsen-logrus-1.4.2" + ,go-github-com-sirupsen-logrus-1.4.2) + ("go-github-com-gorilla-mux-1.7.4" ,go-github-com-gorilla-mux-1.7.4) + ("go-github-com-docker-libtrust-0.0.0-20160708172513-aabc10ec26b7" + ,go-github-com-docker-libtrust-0.0.0-20160708172513-aabc10ec26b7) + ("go-github-com-docker-distribution-2.7.1+incompatible" + ,go-github-com-docker-distribution-2.7.1+incompatible))) + (home-page "https://github.com/adigunhammedolalekan/registry-auth") + (synopsis "registry-auth") + (description + "a package to implements docker registry token authentication server as described +here +[https://github.com/docker/distribution/blob/1b9ab303a477ded9bdd3fc97e9119fa8f9e58fca/docs/spec/auth/index.md]") + (license license:expat))) + +(define-public go-github-com-stretchr-testify-1.3.0 + (package + (name "go-github-com-stretchr-testify") + (version "1.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wjchp2c8xbgcbbq32w3kvblk6q6yn533g78nxl6iskq6y95lxsy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (propagated-inputs + `(("go-github-com-stretchr-objx-0.1.0" + ,go-github-com-stretchr-objx-0.1.0) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.0" + ,go-github-com-davecgh-go-spew-1.1.0))) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in +it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that +your code will behave as you intend.") + (license license:expat))) + +(define-public go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0 + (package + (name "go-github-com-tj-assert") + (version "0.0.0-20171129193455-018094318fb0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/tj/assert") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "15ika7izp5hkd10dm30apwfvpm0d1yl2rnxs6896q0svz9zvi2z3")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/tj/assert")) + (home-page "https://github.com/tj/assert") + (synopsis "assert") + (description + "Package assert implements the same assertions as the `assert` package but stops +test execution when a test fails.") + (license license:expat))) + +(define-public go-github-com-apex-logs-1.0.0 + (package + (name "go-github-com-apex-logs") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/apex/logs") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1kysjp3s8718p02ngpr60gnjjspv0a69biksfjqa1540svrbi850")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/apex/logs")) + (propagated-inputs + `(("go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0" + ,go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0) + ("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0))) + (home-page "https://github.com/apex/logs") + (synopsis "Example") + (description "Go client for @url{https://apex.sh/logs/,Apex Logs}.") + (license license:expat))) + +(define-public go-github-com-aphistic-golf-0.0.0-20180712155816-02c07f170c5a + (package + (name "go-github-com-aphistic-golf") + (version "0.0.0-20180712155816-02c07f170c5a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/aphistic/golf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1qixab9bb29wqbr4nc5j3g25hq1j7am93f181rkj7a4qacncx763")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/aphistic/golf")) + (home-page "https://github.com/aphistic/golf") + (synopsis "golf") + (description + "This package provides logging capabilities using the GELF +(@url{https://www.graylog.org/resources/gelf-2/,https://www.graylog.org/resources/gelf-2/}) +log format") + (license license:expat))) + +(define-public go-github-com-mattn-go-isatty-0.0.5 + (package + (name "go-github-com-mattn-go-isatty") + (version "0.0.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mattn/go-isatty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "114d5xm8rfxplzd7nxz97gfngb4bhqy102szl084d1afcxsvm4aa")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mattn/go-isatty")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223" + ,go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223))) + (home-page "https://github.com/mattn/go-isatty") + (synopsis "go-isatty") + (description "Package isatty implements interface to isatty") + (license license:expat))) + +(define-public go-github-com-mattn-go-colorable-0.1.1 + (package + (name "go-github-com-mattn-go-colorable") + (version "0.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mattn/go-colorable") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0l640974j804c1yyjfgyxqlsivz0yrzmbql4mhcw2azryigkp08p")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mattn/go-colorable")) + (propagated-inputs + `(("go-github-com-mattn-go-isatty-0.0.5" + ,go-github-com-mattn-go-isatty-0.0.5))) + (home-page "https://github.com/mattn/go-colorable") + (synopsis "go-colorable") + (description "Colorable writer for windows.") + (license license:expat))) + +(define-public go-github-com-mgutz-ansi-0.0.0-20170206155736-9520e82c474b + (package + (name "go-github-com-mgutz-ansi") + (version "0.0.0-20170206155736-9520e82c474b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mgutz/ansi") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "00bz22314j26736w1f0q4jy9d9dfaml17vn890n5zqy3cmvmww1j")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mgutz/ansi")) + (home-page "https://github.com/mgutz/ansi") + (synopsis "ansi") + (description + "Package ansi is a small, fast library to create ANSI colored strings and codes.") + (license license:expat))) + +(define-public go-github-com-fsnotify-fsnotify-1.4.7 + (package + (name "go-github-com-fsnotify-fsnotify") + (version "1.4.7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/fsnotify/fsnotify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/fsnotify/fsnotify")) + (home-page "https://github.com/fsnotify/fsnotify") + (synopsis "File system notifications for Go") + (description + "Package fsnotify provides a platform-independent interface for file system +notifications.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.2.0 + (package + (name "go-github-com-golang-protobuf") + (version "1.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0kf4b59rcbb1cchfny2dm9jyznp8ri2hsb14n8iak1q8986xa0ab")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code +github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-github-com-hpcloud-tail-1.0.0 + (package + (name "go-github-com-hpcloud-tail") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hpcloud/tail") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1njpzc0pi1acg5zx9y6vj9xi6ksbsc5d387rd6904hy6rh2m6kn0")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hpcloud/tail")) + (home-page "https://github.com/hpcloud/tail") + (synopsis "Go package for tail-ing files") + (description + "This package provides a Go package striving to emulate the features of the BSD +@code{tail} program.") + (license license:expat))) + +(define-public go-github-com-onsi-ginkgo-1.6.0 + (package + (name "go-github-com-onsi-ginkgo") + (version "1.6.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/onsi/ginkgo") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0x0gc89vgq38xhgmi2h22bhr73cf2gmk42g89nz89k8dgg9hhr25")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/onsi/ginkgo")) + (home-page "https://github.com/onsi/ginkgo") + (synopsis "Ginkgo 2.0 Release Candidate is available!") + (description "Ginkgo is a BDD-style testing framework for Golang") + (license license:expat))) + +(define-public go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd + (package + (name "go-golang-org-x-net") + (version "0.0.0-20180906233101-161cd47e91fd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0254ld010iijygbzykib2vags1dc0wlmcmhgh4jl8iny159lhbcv")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20180314180146-1d60e4601c6f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "046jlanz2lkxq1r57x9bl6s4cvfqaic6p2xybsj8mq1120jv4rs6")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the ones +provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20180909124046-d0be0721c37e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "081wyvfnlf842dqg03raxfz6lldlxpmyh1prix9lmrrm65arxb12")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-gopkg-in-fsnotify-v1-1.4.7 + (package + (name "go-gopkg-in-fsnotify-v1") + (version "1.4.7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/fsnotify.v1") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) + (build-system go-build-system) + (arguments + '(#:import-path + "gopkg.in/fsnotify.v1" + #:unpack-path + "gopkg.in/fsnotify.v1")) + (home-page "https://gopkg.in/fsnotify.v1") + (synopsis "File system notifications for Go") + (description + "Package fsnotify provides a platform-independent interface for file system +notifications.") + (license license:bsd-3))) + +(define-public go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7 + (package + (name "go-gopkg-in-tomb-v1") + (version "1.0.0-20141024135613-dd632973f1e7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/tomb.v1") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1lqmq1ag7s4b3gc3ddvr792c5xb5k6sfn0cchr3i2s7f1c231zjv")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/tomb.v1" #:unpack-path "gopkg.in/tomb.v1")) + (home-page "https://gopkg.in/tomb.v1") + (synopsis "Installation and usage") + (description + "The tomb package offers a conventional API for clean goroutine termination.") + (license license:bsd-3))) + +(define-public go-gopkg-in-yaml-v2-2.2.1 + (package + (name "go-gopkg-in-yaml-v2") + (version "2.2.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0dwjrs2lp2gdlscs7bsrmyc5yf6mm4fvgw71bzr9mv2qrd2q73s1")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v2") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language.") + (license license:asl2.0))) + +(define-public go-github-com-onsi-gomega-1.5.0 + (package + (name "go-github-com-onsi-gomega") + (version "1.5.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/onsi/gomega") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1n7i4hksdgv410m43v2sw14bl5vy59dkp6nlw5l76nibbh37syr9")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/onsi/gomega")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1) + ("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" + ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) + ("go-gopkg-in-fsnotify-v1-1.4.7" ,go-gopkg-in-fsnotify-v1-1.4.7) + ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e" + ,go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e) + ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" + ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) + ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" + ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) + ("go-github-com-onsi-ginkgo-1.6.0" ,go-github-com-onsi-ginkgo-1.6.0) + ("go-github-com-hpcloud-tail-1.0.0" ,go-github-com-hpcloud-tail-1.0.0) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0) + ("go-github-com-fsnotify-fsnotify-1.4.7" + ,go-github-com-fsnotify-fsnotify-1.4.7))) + (home-page "https://github.com/onsi/gomega") + (synopsis ": a BDD Testing Framework for Golang") + (description + "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library.") + (license license:expat))) + +(define-public go-github-com-sergi-go-diff-1.0.0 + (package + (name "go-github-com-sergi-go-diff") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sergi/go-diff") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0swiazj8wphs2zmk1qgq75xza6m19snif94h2m6fi8dqkwqdl7c7")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/sergi/go-diff")) + (home-page "https://github.com/sergi/go-diff") + (synopsis "go-diff") + (description + "go-diff offers algorithms to perform operations required for synchronizing plain +text:") + (license license:expat))) + +(define-public go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190404232315-eb5bcb51f2a3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "17k4g8krxbl84gzcs275b7gsh66dzm15fdxivjnx9xz8q84l4kby")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20190412213103-97732733099d + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190412213103-97732733099d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "118hkp01i4z1f5h6hcjm0ff2ngqhrzj1f7731n0kw8dr6hvbx0sw")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-crypto-0.0.0-20190426145343-a29dc8fdc734 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20190426145343-a29dc8fdc734") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "07f0jj4haqs0ywc1akk1qjwn5msl2j0pry1rxjkkbfcq4r6ihc1p")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" + ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) + ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" + ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-github-com-aphistic-sweet-0.2.0 + (package + (name "go-github-com-aphistic-sweet") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/aphistic/sweet") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1bb4qagfxf6byqn2yx0vq24xfvisz3ah4w6bvqclc8cklvfngw43")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/aphistic/sweet")) + (propagated-inputs + `(("go-golang-org-x-crypto-0.0.0-20190426145343-a29dc8fdc734" + ,go-golang-org-x-crypto-0.0.0-20190426145343-a29dc8fdc734) + ("go-github-com-sergi-go-diff-1.0.0" + ,go-github-com-sergi-go-diff-1.0.0) + ("go-github-com-onsi-gomega-1.5.0" ,go-github-com-onsi-gomega-1.5.0) + ("go-github-com-mgutz-ansi-0.0.0-20170206155736-9520e82c474b" + ,go-github-com-mgutz-ansi-0.0.0-20170206155736-9520e82c474b) + ("go-github-com-mattn-go-colorable-0.1.1" + ,go-github-com-mattn-go-colorable-0.1.1))) + (home-page "https://github.com/aphistic/sweet") + (synopsis "sweet") + (description + "Sweet is a pluggable test runner capable of hooking into standard Go tests. It +attempts to provide access to the standard Go test tool as close as possible +while adding support for test suites and plugins that can hook into test results +to add additional functionality.") + (license license:expat))) + +(define-public go-github-com-jmespath-go-jmespath-0.0.0-20180206201540-c2b33e8439af + (package + (name "go-github-com-jmespath-go-jmespath") + (version "0.0.0-20180206201540-c2b33e8439af") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jmespath/go-jmespath") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1r6w7ydx8ydryxk3sfhzsk8m6f1nsik9jg3i1zhi69v4kfl4d5cz")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/jmespath/go-jmespath")) + (home-page "https://github.com/jmespath/go-jmespath") + (synopsis "go-jmespath - A JMESPath implementation in Go") + (description + "go-jmespath is a GO implementation of JMESPath, which is a query language for +JSON. It will take a JSON document and transform it into another JSON document +through a JMESPath expression.") + (license license:asl2.0))) + +(define-public go-github-com-aws-aws-sdk-go-1.20.6 + (package + (name "go-github-com-aws-aws-sdk-go") + (version "1.20.6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/aws/aws-sdk-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "016vy5s9finyfgh08j7rvn2pnwymdgj2ydr59w57pysnri87mdwx")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/aws/aws-sdk-go")) + (propagated-inputs + `(("go-github-com-jmespath-go-jmespath-0.0.0-20180206201540-c2b33e8439af" + ,go-github-com-jmespath-go-jmespath-0.0.0-20180206201540-c2b33e8439af))) + (home-page "https://github.com/aws/aws-sdk-go") + (synopsis "AWS SDK for Go") + (description + "Package sdk is the official AWS SDK for the Go programming language.") + (license license:asl2.0))) + +(define-public go-github-com-aybabtme-rgbterm-0.0.0-20170906152045-cc83f3b3ce59 + (package + (name "go-github-com-aybabtme-rgbterm") + (version "0.0.0-20170906152045-cc83f3b3ce59") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/aybabtme/rgbterm") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wvmxvjn64968ikvnxrflb1x8rlcwzpfl53fzbxff2axbx9lq50q")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/aybabtme/rgbterm")) + (home-page "https://github.com/aybabtme/rgbterm") + (synopsis "RGB terminal") + (description + "Package rgbterm colorizes bytes and strings using RGB colors, for a full range +of pretty terminal strings.") + (license license:expat))) + +(define-public go-github-com-fatih-color-1.7.0 + (package + (name "go-github-com-fatih-color") + (version "1.7.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/fatih/color") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0v8msvg38r8d1iiq2i5r4xyfx0invhc941kjrsg5gzwvagv55inv")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/fatih/color")) + (home-page "https://github.com/fatih/color") + (synopsis "color") + (description + "Package color is an ANSI color package to output colorized or SGR defined output +to the standard output. The API can be used in several way, pick one that suits +you.") + (license license:expat))) + +(define-public go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515 + (package + (name "go-github-com-kr-logfmt") + (version "0.0.0-20140226030751-b84e30acd515") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/logfmt") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "02ldzxgznrfdzvghfraslhgp19la1fczcbzh7wm2zdc6lmpd1qq9")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/logfmt")) + (home-page "https://github.com/kr/logfmt") + (synopsis #f) + (description "Package implements the decoding of logfmt key-value pairs.") + (license license:expat))) + +(define-public go-github-com-go-logfmt-logfmt-0.4.0 + (package + (name "go-github-com-go-logfmt-logfmt") + (version "0.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/go-logfmt/logfmt") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "06smxc112xmixz78nyvk3b2hmc7wasf2sl5vxj1xz62kqcq9lzm9")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/go-logfmt/logfmt")) + (propagated-inputs + `(("go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515" + ,go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515))) + (home-page "https://github.com/go-logfmt/logfmt") + (synopsis "logfmt") + (description + "Package logfmt implements utilities to marshal and unmarshal data in the logfmt +format. The logfmt format records key/value pairs in a way that balances +readability for humans and simplicity of computer parsing. It is most commonly +used as a more human friendly alternative to JSON for structured logging.") + (license license:expat))) + +(define-public go-github-com-golang-protobuf-1.3.1 + (package + (name "go-github-com-golang-protobuf") + (version "1.3.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "15am4s4646qy6iv0g3kkqq52rzykqjhm4bf08dk0fy2r58knpsyl")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code +github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-github-com-google-uuid-1.1.1 + (package + (name "go-github-com-google-uuid") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/uuid") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hfxcf9frkb57k6q0rdkrmnfs78ms21r1qfk9fhlqga2yh5xg8zb")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/uuid")) + (home-page "https://github.com/google/uuid") + (synopsis "uuid") + (description "Package uuid generates and inspects UUIDs.") + (license license:bsd-3))) + +(define-public go-github-com-jpillora-backoff-0.0.0-20180909062703-3050d21c67d7 + (package + (name "go-github-com-jpillora-backoff") + (version "0.0.0-20180909062703-3050d21c67d7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jpillora/backoff") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1nxapdx9xg5gwiscfhq7m0w14hj4gaxb4avmgf1mx9zd3jnw9jxv")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/jpillora/backoff")) + (home-page "https://github.com/jpillora/backoff") + (synopsis "Backoff") + (description + "Package backoff provides an exponential-backoff implementation.") + (license license:expat))) + +(define-public go-github-com-kr-pty-1.1.1 + (package + (name "go-github-com-kr-pty") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/pty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0383f0mb9kqjvncqrfpidsf8y6ns5zlrc91c6a74xpyxjwvzl2y6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/pty")) + (home-page "https://github.com/kr/pty") + (synopsis "pty") + (description + "Package pty is a wrapper for github.com/creack/pty, which provides functions for +working with Unix terminals.") + (license license:expat))) + +(define-public go-github-com-kr-text-0.1.0 + (package + (name "go-github-com-kr-text") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1gm5bsl01apvc84bw06hasawyqm4q84vx1pm32wr9jnd7a8vjgj1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/text")) + (propagated-inputs + `(("go-github-com-kr-pty-1.1.1" ,go-github-com-kr-pty-1.1.1))) + (home-page "https://github.com/kr/text") + (synopsis #f) + (description + "Package text provides rudimentary functions for manipulating text in paragraphs.") + (license license:expat))) + +(define-public go-github-com-kr-pretty-0.2.0 + (package + (name "go-github-com-kr-pretty") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/pretty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ywbfzz1h3a3qd8rpkiqwi1dm4w8ls9ijb4x1b7567grns9f0vnp")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/pretty")) + (propagated-inputs + `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) + (home-page "https://github.com/kr/pretty") + (synopsis #f) + (description + "Package pretty provides pretty-printing for Go values. This is useful during +debugging, to avoid wrapping long output lines in the terminal.") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190222072716-a9d3bda3a223") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1w45zc13xrjzl19s1sx74r5mg3lf2z2nm13wygcdq5r5pyjlhdz9")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-mattn-go-isatty-0.0.8 + (package + (name "go-github-com-mattn-go-isatty") + (version "0.0.8") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mattn/go-isatty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0rqfh1rj6f5wm8p2ky7inm8g10152p7w6n2cli17kf9gad797i8h")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mattn/go-isatty")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223" + ,go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223))) + (home-page "https://github.com/mattn/go-isatty") + (synopsis "go-isatty") + (description "Package isatty implements interface to isatty") + (license license:expat))) + +(define-public go-github-com-mattn-go-colorable-0.1.2 + (package + (name "go-github-com-mattn-go-colorable") + (version "0.1.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mattn/go-colorable") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0512jm3wmzkkn7d99x9wflyqf48n5ri3npy1fqkq6l6adc5mni3n")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mattn/go-colorable")) + (propagated-inputs + `(("go-github-com-mattn-go-isatty-0.0.8" + ,go-github-com-mattn-go-isatty-0.0.8))) + (home-page "https://github.com/mattn/go-colorable") + (synopsis "go-colorable") + (description "Colorable writer for windows.") + (license license:expat))) + +(define-public go-github-com-pkg-errors-0.8.1 + (package + (name "go-github-com-pkg-errors") + (version "0.8.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pkg/errors") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0g5qcb4d4fd96midz0zdk8b9kz8xkzwfa8kr1cliqbg8sxsy5vd1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pkg/errors")) + (home-page "https://github.com/pkg/errors") + (synopsis "errors") + (description "Package errors provides simple error handling primitives.") + (license license:bsd-2))) + +(define-public go-github-com-rogpeppe-fastuuid-1.1.0 + (package + (name "go-github-com-rogpeppe-fastuuid") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/rogpeppe/fastuuid") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1jlif5pxyz3md02ij93kd2y2j1zz0ajc9k8azvn83vv6l3r5c1zg")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/rogpeppe/fastuuid")) + (home-page "https://github.com/rogpeppe/fastuuid") + (synopsis "fastuuid") + (description + "Package fastuuid provides fast UUID generation of 192 bit universally unique +identifiers.") + (license license:bsd-3))) + +(define-public go-github-com-smartystreets-go-aws-auth-0.0.0-20180515143844-0c1422d1fdb9 + (package + (name "go-github-com-smartystreets-go-aws-auth") + (version "0.0.0-20180515143844-0c1422d1fdb9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/smarty-archives/go-aws-auth") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0krfdpgn3gfii1z9fi8ydfw0wwfqyvp6w3rji7w92m528zkjl93d")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/smartystreets/go-aws-auth")) + (home-page "https://github.com/smartystreets/go-aws-auth") + (synopsis "go-aws-auth") + (description + "Package awsauth implements AWS request signing using Signed Signature Version 2, +Signed Signature Version 3, and Signed Signature Version 4. Supports S3 and +STS.") + (license license:expat))) + +(define-public go-github-com-smartystreets-assertions-1.0.0 + (package + (name "go-github-com-smartystreets-assertions") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/smartystreets/assertions") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1188hs39zvil41sdnxs83h1hp319lfyc5n2rvd1xnhz1dh5qjjh4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/smartystreets/assertions")) + (home-page "https://github.com/smartystreets/assertions") + (synopsis #f) + (description + "Package assertions contains the implementations for all assertions which are +referenced in goconvey's `convey` package +(github.com/smartystreets/goconvey/convey) and gunit +(github.com/smartystreets/gunit) for use with the So(...) method. They can also +be used in traditional Go test functions and even in applications.") + (license license:expat))) + +(define-public go-github-com-smartystreets-gunit-1.0.0 + (package + (name "go-github-com-smartystreets-gunit") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/smartystreets/gunit") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "11d09rl5qqpj36a311pjj8w5jkj83d5b8gdcsx8f1zn4j924sm5d")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/smartystreets/gunit")) + (propagated-inputs + `(("go-github-com-smartystreets-assertions-1.0.0" + ,go-github-com-smartystreets-assertions-1.0.0))) + (home-page "https://github.com/smartystreets/gunit") + (synopsis "gunit") + (description + "Package gunit provides \"testing\" package hooks and convenience functions for +writing tests in an xUnit style. See the README file and the examples folder +for examples.") + (license license:expat))) + +(define-public go-github-com-davecgh-go-spew-1.1.1 + (package + (name "go-github-com-davecgh-go-spew") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/davecgh/go-spew") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/davecgh/go-spew")) + (home-page "https://github.com/davecgh/go-spew") + (synopsis "go-spew") + (description + "Go-spew implements a deep pretty printer for Go data structures to aid in +debugging. A comprehensive suite of tests with 100% test coverage is provided +to ensure proper functionality. See @code{test_coverage.txt} for the gocov +coverage report. Go-spew is licensed under the liberal ISC license, so it may +be used in open source or commercial projects.") + (license license:isc))) + +(define-public go-github-com-davecgh-go-spew-1.1.0 + (package + (name "go-github-com-davecgh-go-spew") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/davecgh/go-spew") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/davecgh/go-spew")) + (home-page "https://github.com/davecgh/go-spew") + (synopsis "go-spew") + (description + "Go-spew implements a deep pretty printer for Go data structures to aid in +debugging. A comprehensive suite of tests with 100% test coverage is provided +to ensure proper functionality. See @code{test_coverage.txt} for the gocov +coverage report. Go-spew is licensed under the liberal ISC license, so it may +be used in open source or commercial projects.") + (license license:isc))) + +(define-public go-github-com-pmezard-go-difflib-1.0.0 + (package + (name "go-github-com-pmezard-go-difflib") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pmezard/go-difflib") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pmezard/go-difflib")) + (home-page "https://github.com/pmezard/go-difflib") + (synopsis "go-difflib") + (description + "Go-difflib is a partial port of python 3 difflib package. Its main goal was to +make unified and context diff available in pure Go, mostly for testing purposes.") + (license license:bsd-3))) + +(define-public go-github-com-stretchr-objx-0.1.0 + (package + (name "go-github-com-stretchr-objx") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/objx") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/objx")) + (home-page "https://github.com/stretchr/objx") + (synopsis "Objx") + (description + "Objx - Go package for dealing with maps, slices, JSON and other data.") + (license license:expat))) + +(define-public go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c + (package + (name "go-gopkg-in-yaml-v3") + (version "3.0.0-20200313102051-9f266ea9e77c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v3") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1bbai3lzb50m0x2vwsdbagrbhvfylj9k1m32hgbqwldqx4p9ay35")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v3") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language.") + (license license:expat))) + +(define-public go-github-com-stretchr-testify-1.6.1 + (package + (name "go-github-com-stretchr-testify") + (version "1.6.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1yhiqqzjvi63pf01rgzx68gqkkvjx03fvl5wk30br5l6s81s090l")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (propagated-inputs + `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" + ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) + ("go-github-com-stretchr-objx-0.1.0" + ,go-github-com-stretchr-objx-0.1.0) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.0" + ,go-github-com-davecgh-go-spew-1.1.0))) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in +it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that +your code will behave as you intend.") + (license license:expat))) + +(define-public go-gopkg-in-yaml-v3-3.0.0-20200605160147-a5ece683394c + (package + (name "go-gopkg-in-yaml-v3") + (version "3.0.0-20200605160147-a5ece683394c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v3") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03cm7c3p5fh0aa8vnxv5010dgqqr268ivb480ix1salxx3396w68")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v3") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language.") + (license license:expat))) + +(define-public go-github-com-tj-assert-0.0.3 + (package + (name "go-github-com-tj-assert") + (version "0.0.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/tj/assert") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1j5swk3fjq1h5fpqkipddz2ccnbidr7qrpm5dpdaflg9q5jnc673")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/tj/assert")) + (propagated-inputs + `(("go-gopkg-in-yaml-v3-3.0.0-20200605160147-a5ece683394c" + ,go-gopkg-in-yaml-v3-3.0.0-20200605160147-a5ece683394c) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/tj/assert") + (synopsis "assert") + (description + "Package assert implements the same assertions as the `assert` package but stops +test execution when a test fails.") + (license license:expat))) + +(define-public go-github-com-tj-go-buffer-1.1.0 + (package + (name "go-github-com-tj-go-buffer") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/tj/go-buffer") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1qdxpa069pjjbzh217aadpzz1aq1n6h32lhp60yjcpi7hr4q8fxx")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/tj/go-buffer")) + (propagated-inputs + `(("go-github-com-tj-assert-0.0.3" ,go-github-com-tj-assert-0.0.3))) + (home-page "https://github.com/tj/go-buffer") + (synopsis "Buffer") + (description + "Package buffer provides a generic buffer or batching mechanism for flushing +entries at a given size or interval, useful for cases such as batching log +events.") + (license license:expat))) + +(define-public go-github-com-tj-go-elastic-0.0.0-20171221160941-36157cbbebc2 + (package + (name "go-github-com-tj-go-elastic") + (version "0.0.0-20171221160941-36157cbbebc2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/tj/go-elastic") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1r94vc4hbfvqvjz74n4mvsw4dy3vbyzlivb90kyn8vn76a4wqk69")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/tj/go-elastic")) + (home-page "https://github.com/tj/go-elastic") + (synopsis "go-elastic") + (description + "Package elastic provides an Elasticsearch client with AWS sigv4 support.") + (license license:expat))) + +(define-public go-github-com-tj-go-kinesis-0.0.0-20171128231115-08b17f58cb1b + (package + (name "go-github-com-tj-go-kinesis") + (version "0.0.0-20171128231115-08b17f58cb1b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/tj/go-kinesis") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "108c6p5j6rhhc2cnc2v5368yfsw73y6lzlvz02vpvvjph8rhmld4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/tj/go-kinesis")) + (home-page "https://github.com/tj/go-kinesis") + (synopsis "go-kinesis") + (description + "Package kinesis implements a batch producer built on top of the official AWS +SDK.") + (license license:expat))) + +(define-public go-github-com-tj-go-spin-1.1.0 + (package + (name "go-github-com-tj-go-spin") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/tj/go-spin") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "11xr67991m5pwsy1dira3iwd0sr55vmn1cyjwmlqziw4bwpym64s")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/tj/go-spin")) + (home-page "https://github.com/tj/go-spin") + (synopsis #f) + (description #f) + (license #f))) + +(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20190308221718-c2843e01d9a2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190215142949-d0b11bdaac8a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-text-0.3.0 + (package + (name "go-golang-org-x-text") + (version "0.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/text")) + (home-page "https://golang.org/x/text") + (synopsis "Go Text") + (description + "text is a repository of text-related packages related to internationalization +(i18n) and localization (l10n), such as character encodings, text +transformations, and locale-specific text handling.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190620200207-3b0461eec859") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0l00c8l0a8xnv6qdpwfzxxsr58jggacgzdrwiprrfx2xqm37b6d5")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20180917221912-90fa682c2a6e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-golang-org-x-text-0.3.2 + (package + (name "go-golang-org-x-text") + (version "0.3.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0flv9idw0jm5nm8lx25xqanbkqgfiym6619w575p7nrdh0riqwqh")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/text")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" + ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) + (home-page "https://golang.org/x/text") + (synopsis "Go Text") + (description + "text is a repository of text-related packages related to internationalization +(i18n) and localization (l10n), such as character encodings, text +transformations, and locale-specific text handling.") + (license license:bsd-3))) + +(define-public go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15 + (package + (name "go-gopkg-in-check-v1") + (version "1.0.0-20190902080502-41f04d3bba15") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/check.v1") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0vfk9czmlxmp6wndq8k17rhnjxal764mxfhrccza7nwlia760pjy")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) + (home-page "https://gopkg.in/check.v1") + (synopsis "Instructions") + (description + "Package check is a rich testing extension for Go's testing package.") + (license license:bsd-2))) + +(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 + (package + (name "go-gopkg-in-check-v1") + (version "0.0.0-20161208181325-20d25e280405") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/check.v1") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) + (home-page "https://gopkg.in/check.v1") + (synopsis "Instructions") + (description + "Package check is a rich testing extension for Go's testing package.") + (license license:bsd-2))) + +(define-public go-gopkg-in-yaml-v2-2.2.2 + (package + (name "go-gopkg-in-yaml-v2") + (version "2.2.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "01wj12jzsdqlnidpyjssmj0r4yavlqy7dwrg7adqd8dicjc4ncsa")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v2") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language.") + (license license:asl2.0))) + +(define-public go-github-com-apex-log-1.9.0 + (package + (name "go-github-com-apex-log") + (version "1.9.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/apex/log") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ibqkncnb8wcwilg2kyfyl5541g69rg551iy6m61q6iwdn5vfhi2")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/apex/log")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) + ("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" + ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) + ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) + ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" + ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) + ("go-github-com-tj-go-spin-1.1.0" ,go-github-com-tj-go-spin-1.1.0) + ("go-github-com-tj-go-kinesis-0.0.0-20171128231115-08b17f58cb1b" + ,go-github-com-tj-go-kinesis-0.0.0-20171128231115-08b17f58cb1b) + ("go-github-com-tj-go-elastic-0.0.0-20171221160941-36157cbbebc2" + ,go-github-com-tj-go-elastic-0.0.0-20171221160941-36157cbbebc2) + ("go-github-com-tj-go-buffer-1.1.0" ,go-github-com-tj-go-buffer-1.1.0) + ("go-github-com-tj-assert-0.0.3" ,go-github-com-tj-assert-0.0.3) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-smartystreets-gunit-1.0.0" + ,go-github-com-smartystreets-gunit-1.0.0) + ("go-github-com-smartystreets-go-aws-auth-0.0.0-20180515143844-0c1422d1fdb9" + ,go-github-com-smartystreets-go-aws-auth-0.0.0-20180515143844-0c1422d1fdb9) + ("go-github-com-rogpeppe-fastuuid-1.1.0" + ,go-github-com-rogpeppe-fastuuid-1.1.0) + ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) + ("go-github-com-mattn-go-colorable-0.1.2" + ,go-github-com-mattn-go-colorable-0.1.2) + ("go-github-com-kr-pretty-0.2.0" ,go-github-com-kr-pretty-0.2.0) + ("go-github-com-jpillora-backoff-0.0.0-20180909062703-3050d21c67d7" + ,go-github-com-jpillora-backoff-0.0.0-20180909062703-3050d21c67d7) + ("go-github-com-google-uuid-1.1.1" ,go-github-com-google-uuid-1.1.1) + ("go-github-com-golang-protobuf-1.3.1" + ,go-github-com-golang-protobuf-1.3.1) + ("go-github-com-go-logfmt-logfmt-0.4.0" + ,go-github-com-go-logfmt-logfmt-0.4.0) + ("go-github-com-fatih-color-1.7.0" ,go-github-com-fatih-color-1.7.0) + ("go-github-com-aybabtme-rgbterm-0.0.0-20170906152045-cc83f3b3ce59" + ,go-github-com-aybabtme-rgbterm-0.0.0-20170906152045-cc83f3b3ce59) + ("go-github-com-aws-aws-sdk-go-1.20.6" + ,go-github-com-aws-aws-sdk-go-1.20.6) + ("go-github-com-aphistic-sweet-0.2.0" + ,go-github-com-aphistic-sweet-0.2.0) + ("go-github-com-aphistic-golf-0.0.0-20180712155816-02c07f170c5a" + ,go-github-com-aphistic-golf-0.0.0-20180712155816-02c07f170c5a) + ("go-github-com-apex-logs-1.0.0" ,go-github-com-apex-logs-1.0.0))) + (home-page "https://github.com/apex/log") + (synopsis "Handlers") + (description + "Package log implements a simple structured logging API designed with few +assumptions. Designed for centralized logging solutions such as Kinesis which +require encoding and decoding before fanning-out to handlers.") + (license license:expat))) + +(define-public go-github-com-sylabs-json-resp-0.8.0 + (package + (name "go-github-com-sylabs-json-resp") + (version "0.8.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sylabs/json-resp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ygr4mavaj1pp78hkkphhn3ydd923n3klwnx8x7v4ajqzx4cx4id")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/sylabs/json-resp")) + (home-page "https://github.com/sylabs/json-resp") + (synopsis "JSON Response") + (description + "The @code{json-resp} package contains a small set of functions that are used to +marshall and unmarshall response data and errors in JSON format.") + (license license:bsd-3))) + +(define-public go-github-com-apptainer-container-key-client-0.7.2 + (package + (name "go-github-com-apptainer-container-key-client") + (version "0.7.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/apptainer/container-key-client") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0f4bb1k8pi37alzgzvjw23ynp54752qwgnr9gim3vc061qcjx377")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/apptainer/container-key-client")) + (propagated-inputs + `(("go-github-com-sylabs-json-resp-0.8.0" + ,go-github-com-sylabs-json-resp-0.8.0))) + (home-page "https://github.com/apptainer/container-key-client") + (synopsis "Container Key Client") + (description + "This project provides a Go client to Apptainer for key storage and retrieval +using the HKP protocol. Forked from +@url{https://github.com/sylabs/scs-key-client,sylabs/scs-key-client}.") + (license license:bsd-3))) + +(define-public go-github-com-blang-semver-v4-4.0.0 + (package + (name "go-github-com-blang-semver-v4") + (version "4.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/blang/semver") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "14h9ys4n4kx9cbj42lkdf4i5k3nkll6sd62jcvl7cs565v6fiknz")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/blang/semver/v4")) + (home-page "https://github.com/blang/semver") + (synopsis #f) + (description #f) + (license license:expat))) + +(define-public go-github-com-go-log-log-0.2.0 + (package + (name "go-github-com-go-log-log") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/go-log/log") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1idnqv4yvkmdh3wcsgvhcpak9z6ix8dsifdjq5kfbbnskdq5rmvg")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/go-log/log")) + (home-page "https://github.com/go-log/log") + (synopsis "Log") + (description "Package log provides a log interface") + (license license:expat))) + +(define-public go-github-com-stretchr-objx-0.1.0 + (package + (name "go-github-com-stretchr-objx") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/objx") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/objx")) + (home-page "https://github.com/stretchr/objx") + (synopsis "Objx") + (description + "Objx - Go package for dealing with maps, slices, JSON and other data.") + (license license:expat))) + +(define-public go-github-com-stretchr-testify-1.7.0 + (package + (name "go-github-com-stretchr-testify") + (version "1.7.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ixgjsvafr3513pz3r6pmgk074s2dxkll0dadvl25gkf30rkmh10")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (propagated-inputs + `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" + ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) + ("go-github-com-stretchr-objx-0.1.0" + ,go-github-com-stretchr-objx-0.1.0) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.0" + ,go-github-com-davecgh-go-spew-1.1.0))) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in +it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that +your code will behave as you intend.") + (license license:expat))) + +(define-public go-github-com-sylabs-json-resp-0.8.0 + (package + (name "go-github-com-sylabs-json-resp") + (version "0.8.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sylabs/json-resp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ygr4mavaj1pp78hkkphhn3ydd923n3klwnx8x7v4ajqzx4cx4id")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/sylabs/json-resp")) + (home-page "https://github.com/sylabs/json-resp") + (synopsis "JSON Response") + (description + "The @code{json-resp} package contains a small set of functions that are used to +marshall and unmarshall response data and errors in JSON format.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20200317015054-43a5402ce75a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0j6zrrb81qjr1926kkwmn0di9a0jn8qyjd9dw614rfkihxgq1vsm")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the ones +provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-github-com-davecgh-go-spew-1.1.0 + (package + (name "go-github-com-davecgh-go-spew") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/davecgh/go-spew") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/davecgh/go-spew")) + (home-page "https://github.com/davecgh/go-spew") + (synopsis "go-spew") + (description + "Go-spew implements a deep pretty printer for Go data structures to aid in +debugging. A comprehensive suite of tests with 100% test coverage is provided +to ensure proper functionality. See @code{test_coverage.txt} for the gocov +coverage report. Go-spew is licensed under the liberal ISC license, so it may +be used in open source or commercial projects.") + (license license:isc))) + +(define-public go-github-com-pmezard-go-difflib-1.0.0 + (package + (name "go-github-com-pmezard-go-difflib") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pmezard/go-difflib") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pmezard/go-difflib")) + (home-page "https://github.com/pmezard/go-difflib") + (synopsis "go-difflib") + (description + "Go-difflib is a partial port of python 3 difflib package. Its main goal was to +make unified and context diff available in pure Go, mostly for testing purposes.") + (license license:bsd-3))) + +(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 + (package + (name "go-gopkg-in-check-v1") + (version "0.0.0-20161208181325-20d25e280405") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/check.v1") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) + (home-page "https://gopkg.in/check.v1") + (synopsis "Instructions") + (description + "Package check is a rich testing extension for Go's testing package.") + (license license:bsd-2))) + +(define-public go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c + (package + (name "go-gopkg-in-yaml-v3") + (version "3.0.0-20200313102051-9f266ea9e77c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v3") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1bbai3lzb50m0x2vwsdbagrbhvfylj9k1m32hgbqwldqx4p9ay35")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v3") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language.") + (license license:expat))) + +(define-public go-github-com-apptainer-container-library-client-1.2.2 + (package + (name "go-github-com-apptainer-container-library-client") + (version "1.2.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/apptainer/container-library-client") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1f6pxzk0k9jf9612kjw6jlmrs8yzqqrvhjwfxwri1q1d4i410a0h")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/apptainer/container-library-client")) + (propagated-inputs + `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" + ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.0" + ,go-github-com-davecgh-go-spew-1.1.0) + ("go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a" + ,go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a) + ("go-github-com-sylabs-json-resp-0.8.0" + ,go-github-com-sylabs-json-resp-0.8.0) + ("go-github-com-stretchr-testify-1.7.0" + ,go-github-com-stretchr-testify-1.7.0) + ("go-github-com-go-log-log-0.2.0" ,go-github-com-go-log-log-0.2.0) + ("go-github-com-blang-semver-v4-4.0.0" + ,go-github-com-blang-semver-v4-4.0.0))) + (home-page "https://github.com/apptainer/container-library-client") + (synopsis "Container Library Client") + (description + "This project provides a Go client to Apptainer for the container library. +Forked from +@url{https://github.com/sylabs/scs-library-client,sylabs/scs-library-client}.") + (license license:bsd-3))) + +(define-public go-github-com-blang-semver-v4-4.0.0 + (package + (name "go-github-com-blang-semver-v4") + (version "4.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/blang/semver") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "14h9ys4n4kx9cbj42lkdf4i5k3nkll6sd62jcvl7cs565v6fiknz")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/blang/semver/v4")) + (home-page "https://github.com/blang/semver") + (synopsis #f) + (description #f) + (license license:expat))) + +(define-public go-github-com-buger-jsonparser-1.1.1 + (package + (name "go-github-com-buger-jsonparser") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/buger/jsonparser") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0qv2lsh2biwxn927941gqiv5pqg7n4v58j0i536pjp7pr17pq7dp")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/buger/jsonparser")) + (home-page "https://github.com/buger/jsonparser") + (synopsis + "Alternative JSON parser for Go (10x times faster standard library)") + (description + "It does not require you to know the structure of the payload (eg. create +structs), and allows accessing fields by providing the path to them. It is up +to @strong{10 times faster} than standard @code{encoding/json} package +(depending on payload size and usage), @strong{allocates no memory}. See +benchmarks below.") + (license license:expat))) + +(define-public go-github-com-cenkalti-backoff-v4-4.1.2 + (package + (name "go-github-com-cenkalti-backoff-v4") + (version "4.1.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cenkalti/backoff") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "08c28226q612i1pv83161y57qh16631vpc51ai9f76qfrzsy946z")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/cenkalti/backoff/v4")) + (home-page "https://github.com/cenkalti/backoff") + (synopsis "Exponential Backoff") + (description + "Package backoff implements backoff algorithms for retrying operations.") + (license license:expat))) + +(define-public go-github-com-kr-pretty-0.2.1 + (package + (name "go-github-com-kr-pretty") + (version "0.2.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/pretty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0vzfz06y9q8gs2nxx0kys0591vzp78k0fvpb8digi5n15h3b25hy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/pretty")) + (propagated-inputs + `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) + (home-page "https://github.com/kr/pretty") + (synopsis #f) + (description + "Package pretty provides pretty-printing for Go values. This is useful during +debugging, to avoid wrapping long output lines in the terminal.") + (license license:expat))) + +(define-public go-github-com-frankban-quicktest-1.11.3 + (package + (name "go-github-com-frankban-quicktest") + (version "1.11.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/frankban/quicktest") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0d5njmwkfq2809vlimnlvy8ir6kln0c4cgdwr680fwsclpbr43qs")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/frankban/quicktest")) + (propagated-inputs + `(("go-github-com-kr-pretty-0.2.1" ,go-github-com-kr-pretty-0.2.1) + ("go-github-com-google-go-cmp-0.5.4" + ,go-github-com-google-go-cmp-0.5.4))) + (home-page "https://github.com/frankban/quicktest") + (synopsis "quicktest") + (description + "Package quicktest provides a collection of Go helpers for writing tests.") + (license license:expat))) + +(define-public go-github-com-google-go-cmp-0.5.4 + (package + (name "go-github-com-google-go-cmp") + (version "0.5.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ld9pwb6l22g75g1zpa691l7q9ki7pjgpcqhwgdfr3va1zisr5ci")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically +equal.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20210124154548-22da62e12c0c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "17gp3dl75wq3x7j9z1pqgcyvjhvy9jaln1wbscy57al3whdsjp07")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-cilium-ebpf-0.4.0 + (package + (name "go-github-com-cilium-ebpf") + (version "0.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cilium/ebpf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1j33vfz8mxnqadkd17l0y3ll71gph3ndm8hwrwbwnf5px7bfv9yl")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/cilium/ebpf")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" + ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) + ("go-github-com-google-go-cmp-0.5.4" + ,go-github-com-google-go-cmp-0.5.4) + ("go-github-com-frankban-quicktest-1.11.3" + ,go-github-com-frankban-quicktest-1.11.3))) + (home-page "https://github.com/cilium/ebpf") + (synopsis "eBPF") + (description "Package ebpf is a toolkit for working with eBPF programs.") + (license license:expat))) + +(define-public go-github-com-coreos-go-systemd-v22-22.3.2 + (package + (name "go-github-com-coreos-go-systemd-v22") + (version "22.3.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/coreos/go-systemd") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ndi86b8va84ha93njqgafypz4di7yxfd5r5kf1r0s3y3ghcjajq")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/coreos/go-systemd/v22")) + (propagated-inputs + `(("go-github-com-godbus-dbus-v5-5.0.4" + ,go-github-com-godbus-dbus-v5-5.0.4))) + (home-page "https://github.com/coreos/go-systemd") + (synopsis "go-systemd") + (description "Go bindings to systemd. The project has several packages:") + (license license:asl2.0))) + +(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0 + (package + (name "go-github-com-cpuguy83-go-md2man-v2") + (version "2.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cpuguy83/go-md2man") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) + (propagated-inputs + `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" + ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) + ("go-github-com-russross-blackfriday-v2-2.0.1" + ,go-github-com-russross-blackfriday-v2-2.0.1) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0))) + (home-page "https://github.com/cpuguy83/go-md2man") + (synopsis "go-md2man") + (description "Converts markdown into roff (man pages).") + (license license:expat))) + +(define-public go-github-com-docker-go-units-0.4.0 + (package + (name "go-github-com-docker-go-units") + (version "0.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/docker/go-units") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0k8gja8ql4pqg5rzmqvka42vjfs6rzablak87whcnqba6qxpimvz")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/docker/go-units")) + (home-page "https://github.com/docker/go-units") + (synopsis "Introduction") + (description + "Package units provides helper function to parse and print size and time units in +human-readable format.") + (license license:asl2.0))) + +(define-public go-github-com-godbus-dbus-v5-5.0.4 + (package + (name "go-github-com-godbus-dbus-v5") + (version "5.0.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/godbus/dbus") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0znax8kskb5gmp5fj75w56bc9p7b22wrdswzlh4d04sprlc471yi")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/godbus/dbus/v5")) + (home-page "https://github.com/godbus/dbus") + (synopsis "dbus") + (description + "Package dbus implements bindings to the D-Bus message bus system.") + (license license:bsd-2))) + +(define-public go-github-com-yuin-goldmark-1.1.27 + (package + (name "go-github-com-yuin-goldmark") + (version "1.1.27") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/yuin/goldmark") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1872cqnii0kwiqcy81yin0idvjy5mdy4zlzz0csb319lcjs3b923")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/yuin/goldmark")) + (home-page "https://github.com/yuin/goldmark") + (synopsis "goldmark") + (description + "Package goldmark implements functions to convert markdown text to a desired +format.") + (license license:expat))) + +(define-public go-golang-org-x-mod-0.2.0 + (package + (name "go-golang-org-x-mod") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/mod") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fp6885dclq77mh73v7i54v2b9llpv4di193zc8vmsbbkkc483cl")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/mod")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" + ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) + ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" + ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) + ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" + ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) + (home-page "https://golang.org/x/mod") + (synopsis "mod") + (description + "This repository holds packages for writing tools that work directly with Go +module mechanics. That is, it is for direct manipulation of Go modules +themselves.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b + (package + (name "go-golang-org-x-net") + (version "0.0.0-20200226121028-0de0cce0169b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1db7s5kbzyh2zd5lpv05n7hp8wbwdvgk0wpiwrlnig94mkr0y5aq")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20190911185100-cd5d95a43a6e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1nqkyz2y1qvqcma52ijh02s8aiqmkfb95j08f6zcjhbga3ds6hds")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the ones +provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543 + (package + (name "go-golang-org-x-xerrors") + (version "0.0.0-20191204190536-9bdfabe68543") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/xerrors") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1yjfi1bk9xb81lqn85nnm13zz725wazvrx3b50hx19qmwg7a4b0c")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/xerrors")) + (home-page "https://golang.org/x/xerrors") + (synopsis #f) + (description "Package xerrors implements functions to manipulate errors.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20200619180055-7c47624df98f + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20200619180055-7c47624df98f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fhzwd32j7w9g3algq0zj8g7ivx3f0mn9nx9mj046wdscryn49mk")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) + ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" + ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) + ("go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b" + ,go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b) + ("go-golang-org-x-mod-0.2.0" ,go-golang-org-x-mod-0.2.0) + ("go-github-com-yuin-goldmark-1.1.27" + ,go-github-com-yuin-goldmark-1.1.27))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-github-com-kisielk-errcheck-1.5.0 + (package + (name "go-github-com-kisielk-errcheck") + (version "1.5.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kisielk/errcheck") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ci3jz2px74pfmr42jv7dpx7fdzx08vai4czp9fkiyb0gcaiqsk6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kisielk/errcheck")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20200619180055-7c47624df98f" + ,go-golang-org-x-tools-0.0.0-20200619180055-7c47624df98f))) + (home-page "https://github.com/kisielk/errcheck") + (synopsis "errcheck") + (description + "errcheck is a program for checking for unchecked errors in go programs.") + (license license:expat))) + +(define-public go-github-com-kisielk-gotool-1.0.0 + (package + (name "go-github-com-kisielk-gotool") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kisielk/gotool") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "14af2pa0ssyp8bp2mvdw184s5wcysk6akil3wzxmr05wwy951iwn")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kisielk/gotool")) + (home-page "https://github.com/kisielk/gotool") + (synopsis "gotool") + (description + "Package gotool contains utility functions used to implement the standard +\"cmd/go\" tool, provided as a convenience to developers who want to write tools +with similar semantics.") + (license license:expat))) + +(define-public go-github-com-yuin-goldmark-1.2.1 + (package + (name "go-github-com-yuin-goldmark") + (version "1.2.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/yuin/goldmark") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12rsnsf65drcp0jfw2jl9w589vsn3pxdk1zh3v9q908iigngrcmy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/yuin/goldmark")) + (home-page "https://github.com/yuin/goldmark") + (synopsis "goldmark") + (description + "Package goldmark implements functions to convert markdown text to a desired +format.") + (license license:expat))) + +(define-public go-golang-org-x-mod-0.3.0 + (package + (name "go-golang-org-x-mod") + (version "0.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/mod") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ldgbx2zpprbsfn6p8pfgs4nn87gwbfcv2z0fa7n8alwsq2yw78q")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/mod")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" + ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) + ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" + ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) + ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" + ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) + (home-page "https://golang.org/x/mod") + (synopsis "mod") + (description + "This repository holds packages for writing tools that work directly with Go +module mechanics. That is, it is for direct manipulation of Go modules +themselves.") + (license license:bsd-3))) + +(define-public go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20200622213623-75b288015ac9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18vlncvvs11ds3zaaziqjlg5s2vcwi3496nn6qv7p0dp94j5pwa2")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" + ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) + ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" + ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200930185726-fdedc70b468f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1njlfhjbvi4lxvjbq8zswrb0y0q4jd2p6x51h1q6vmyzi9af6869")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20201021035429-f5854403a974 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20201021035429-f5854403a974") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1vw63zpmhi337f3gc432x3wkib4j2ia8dy7if31wxwb9dgqvy222")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) + ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" + ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) + ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" + ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9 + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20201020160332-67f06af15bc9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "093p4panc808ak5bamzz7m9nb0xxib7778jpnr6f0xkz1n4fzyw5")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the ones +provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20210106214847-113979e3529a + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20210106214847-113979e3529a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0pq1a7hkamqdwsajyfrb27s56cvxz5838krsgyqz346s2djwdrzl")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" + ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) + ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" + ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) + ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" + ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) + ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) + ("go-github-com-yuin-goldmark-1.2.1" + ,go-github-com-yuin-goldmark-1.2.1))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-github-com-gogo-protobuf-1.3.2 + (package + (name "go-github-com-gogo-protobuf") + (version "1.3.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gogo/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0dfv1bhx5zhb5bsj5sj757nkacf2swp1ajpcyj9d0b37n602m18a")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/gogo/protobuf")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20210106214847-113979e3529a" + ,go-golang-org-x-tools-0.0.0-20210106214847-113979e3529a) + ("go-github-com-kisielk-gotool-1.0.0" + ,go-github-com-kisielk-gotool-1.0.0) + ("go-github-com-kisielk-errcheck-1.5.0" + ,go-github-com-kisielk-errcheck-1.5.0))) + (home-page "https://github.com/gogo/protobuf") + (synopsis "Protocol Buffers for Go with Gadgets") + (description + "gogoprotobuf is a fork of +@url{https://github.com/golang/protobuf,golang/protobuf} with extra code +generation features.") + (license license:bsd-3))) + +(define-public go-github-com-opencontainers-runtime-spec-1.0.2 + (package + (name "go-github-com-opencontainers-runtime-spec") + (version "1.0.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/runtime-spec") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19w981vcmd5lp2hy0630x6ayb8zz17n2vxqm2py5mg945xflcizg")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) + (home-page "https://github.com/opencontainers/runtime-spec") + (synopsis "Open Container Initiative Runtime Specification") + (description + "The @url{https://www.opencontainers.org,Open Container Initiative} develops +specifications for standards on Operating System process and application +containers.") + (license license:asl2.0))) + +(define-public go-github-com-davecgh-go-spew-1.1.1 + (package + (name "go-github-com-davecgh-go-spew") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/davecgh/go-spew") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/davecgh/go-spew")) + (home-page "https://github.com/davecgh/go-spew") + (synopsis "go-spew") + (description + "Go-spew implements a deep pretty printer for Go data structures to aid in +debugging. A comprehensive suite of tests with 100% test coverage is provided +to ensure proper functionality. See @code{test_coverage.txt} for the gocov +coverage report. Go-spew is licensed under the liberal ISC license, so it may +be used in open source or commercial projects.") + (license license:isc))) + +(define-public go-github-com-stretchr-testify-1.2.2 + (package + (name "go-github-com-stretchr-testify") + (version "1.2.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0dlszlshlxbmmfxj5hlwgv3r22x0y1af45gn1vd198nvvs3pnvfs")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in +it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that +your code will behave as you intend.") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20191026070338-33540a1f6037") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0fjcv0vzvi6za0b4xmnk3932pr9f9gczzf03y0kgq3ry9rqg169y")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-sirupsen-logrus-1.8.1 + (package + (name "go-github-com-sirupsen-logrus") + (version "1.8.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sirupsen/logrus") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0rvqzic2zz7fpxyizmqxwmhv1m52ii9bgxnqa6km8wsa0l08wh42")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/sirupsen/logrus")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037" + ,go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037) + ("go-github-com-stretchr-testify-1.2.2" + ,go-github-com-stretchr-testify-1.2.2) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/sirupsen/logrus") + (synopsis "Logrus") + (description + "Package logrus is a structured logger for Go, completely API compatible with the +standard library logger.") + (license license:expat))) + +(define-public go-github-com-burntsushi-toml-0.3.1 + (package + (name "go-github-com-burntsushi-toml") + (version "0.3.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/BurntSushi/toml") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fjdwwfzyzllgiwydknf1pwjvy49qxfsczqx5gz3y0izs7as99j6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/BurntSushi/toml")) + (home-page "https://github.com/BurntSushi/toml") + (synopsis "Testing") + (description + "Package toml implements decoding and encoding of TOML files.") + (license license:expat))) + +(define-public go-github-com-russross-blackfriday-v2-2.0.1 + (package + (name "go-github-com-russross-blackfriday-v2") + (version "2.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/russross/blackfriday") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0nlz7isdd4rgnwzs68499hlwicxz34j2k2a0b8jy0y7ycd2bcr5j")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/russross/blackfriday/v2")) + (home-page "https://github.com/russross/blackfriday") + (synopsis "Blackfriday") + (description "Package blackfriday is a markdown processor.") + (license license:bsd-2))) + +(define-public go-github-com-shurcool-sanitized-anchor-name-1.0.0 + (package + (name "go-github-com-shurcool-sanitized-anchor-name") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/shurcooL/sanitized_anchor_name") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1gv9p2nr46z80dnfjsklc6zxbgk96349sdsxjz05f3z6wb6m5l8f")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/shurcooL/sanitized_anchor_name")) + (home-page "https://github.com/shurcooL/sanitized_anchor_name") + (synopsis "sanitized_anchor_name") + (description + "Package sanitized_anchor_name provides a func to create sanitized anchor names.") + (license license:expat))) + +(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d + (package + (name "go-github-com-cpuguy83-go-md2man-v2") + (version "2.0.0-20190314233015-f79a8a8ca69d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cpuguy83/go-md2man") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) + (propagated-inputs + `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" + ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) + ("go-github-com-russross-blackfriday-v2-2.0.1" + ,go-github-com-russross-blackfriday-v2-2.0.1) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0))) + (home-page "https://github.com/cpuguy83/go-md2man") + (synopsis "go-md2man") + (description "Converts markdown into roff (man pages).") + (license license:expat))) + +(define-public go-gopkg-in-yaml-v2-2.2.2 + (package + (name "go-gopkg-in-yaml-v2") + (version "2.2.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "01wj12jzsdqlnidpyjssmj0r4yavlqy7dwrg7adqd8dicjc4ncsa")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v2") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language.") + (license license:asl2.0))) + +(define-public go-github-com-urfave-cli-1.22.2 + (package + (name "go-github-com-urfave-cli") + (version "1.22.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/urfave/cli") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "10mcnvi5qmn00vpyk6si8gjka7p654wr9hac4zc9w5h3ickhvbdc")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/urfave/cli")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) + ("go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d" + ,go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d) + ("go-github-com-burntsushi-toml-0.3.1" + ,go-github-com-burntsushi-toml-0.3.1))) + (home-page "https://github.com/urfave/cli") + (synopsis "cli") + (description + "Package cli provides a minimal framework for creating and organizing command +line Go applications. cli is designed to be easy to understand and write, the +most simple cli application can be written as follows:") + (license license:expat))) + +(define-public go-github-com-kr-pty-1.1.1 + (package + (name "go-github-com-kr-pty") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/pty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0383f0mb9kqjvncqrfpidsf8y6ns5zlrc91c6a74xpyxjwvzl2y6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/pty")) + (home-page "https://github.com/kr/pty") + (synopsis "pty") + (description + "Package pty is a wrapper for github.com/creack/pty, which provides functions for +working with Unix terminals.") + (license license:expat))) + +(define-public go-github-com-kr-text-0.1.0 + (package + (name "go-github-com-kr-text") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1gm5bsl01apvc84bw06hasawyqm4q84vx1pm32wr9jnd7a8vjgj1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/text")) + (propagated-inputs + `(("go-github-com-kr-pty-1.1.1" ,go-github-com-kr-pty-1.1.1))) + (home-page "https://github.com/kr/text") + (synopsis #f) + (description + "Package text provides rudimentary functions for manipulating text in paragraphs.") + (license license:expat))) + +(define-public go-github-com-kr-pretty-0.1.0 + (package + (name "go-github-com-kr-pretty") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/pretty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18m4pwg2abd0j9cn5v3k2ksk9ig4vlwxmlw9rrglanziv9l967qp")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/pretty")) + (propagated-inputs + `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) + (home-page "https://github.com/kr/pretty") + (synopsis #f) + (description + "Package pretty provides pretty-printing for Go values. This is useful during +debugging, to avoid wrapping long output lines in the terminal.") + (license license:expat))) + +(define-public go-github-com-davecgh-go-spew-1.1.0 + (package + (name "go-github-com-davecgh-go-spew") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/davecgh/go-spew") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/davecgh/go-spew")) + (home-page "https://github.com/davecgh/go-spew") + (synopsis "go-spew") + (description + "Go-spew implements a deep pretty printer for Go data structures to aid in +debugging. A comprehensive suite of tests with 100% test coverage is provided +to ensure proper functionality. See @code{test_coverage.txt} for the gocov +coverage report. Go-spew is licensed under the liberal ISC license, so it may +be used in open source or commercial projects.") + (license license:isc))) + +(define-public go-github-com-pmezard-go-difflib-1.0.0 + (package + (name "go-github-com-pmezard-go-difflib") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pmezard/go-difflib") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pmezard/go-difflib")) + (home-page "https://github.com/pmezard/go-difflib") + (synopsis "go-difflib") + (description + "Go-difflib is a partial port of python 3 difflib package. Its main goal was to +make unified and context diff available in pure Go, mostly for testing purposes.") + (license license:bsd-3))) + +(define-public go-github-com-stretchr-objx-0.1.0 + (package + (name "go-github-com-stretchr-objx") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/objx") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/objx")) + (home-page "https://github.com/stretchr/objx") + (synopsis "Objx") + (description + "Objx - Go package for dealing with maps, slices, JSON and other data.") + (license license:expat))) + +(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 + (package + (name "go-gopkg-in-check-v1") + (version "0.0.0-20161208181325-20d25e280405") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/check.v1") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) + (home-page "https://gopkg.in/check.v1") + (synopsis "Instructions") + (description + "Package check is a rich testing extension for Go's testing package.") + (license license:bsd-2))) + +(define-public go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c + (package + (name "go-gopkg-in-yaml-v3") + (version "3.0.0-20200313102051-9f266ea9e77c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v3") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1bbai3lzb50m0x2vwsdbagrbhvfylj9k1m32hgbqwldqx4p9ay35")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v3") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language.") + (license license:expat))) + +(define-public go-github-com-stretchr-testify-1.7.0 + (package + (name "go-github-com-stretchr-testify") + (version "1.7.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ixgjsvafr3513pz3r6pmgk074s2dxkll0dadvl25gkf30rkmh10")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (propagated-inputs + `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" + ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) + ("go-github-com-stretchr-objx-0.1.0" + ,go-github-com-stretchr-objx-0.1.0) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.0" + ,go-github-com-davecgh-go-spew-1.1.0))) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in +it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that +your code will behave as you intend.") + (license license:expat))) + +(define-public go-golang-org-x-net-0.0.0-20190311183353-d8887717615a + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190311183353-d8887717615a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1wfm6ngxjyj7v5a2dqib6lw8bb2rdnf1kl48diykxjrsddn0s163")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20190311212946-11955173bddd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hlkai67w167wiyivkzd1fgqrnyxkb94l2c6kr51jwcscizfyfn3")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-golang-org-x-lint-0.0.0-20190930215403-16217165b5de + (package + (name "go-golang-org-x-lint") + (version "0.0.0-20190930215403-16217165b5de") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/lint") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0jhwmwc0vykcmf164na0pnadl8gv7184b6pf3xayknwmzdw6vd7h")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/lint")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" + ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd))) + (home-page "https://golang.org/x/lint") + (synopsis "Installation") + (description "Package lint contains a linter for Go source code.") + (license license:bsd-3))) + +(define-public go-github-com-yuin-goldmark-1.3.5 + (package + (name "go-github-com-yuin-goldmark") + (version "1.3.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/yuin/goldmark") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "08rrhfji92hixiv3v0wvamwcy56f90wsw84w7lyvad7g90kbsknx")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/yuin/goldmark")) + (home-page "https://github.com/yuin/goldmark") + (synopsis "goldmark") + (description + "Package goldmark implements functions to convert markdown text to a desired +format.") + (license license:expat))) + +(define-public go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190404232315-eb5bcb51f2a3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "17k4g8krxbl84gzcs275b7gsh66dzm15fdxivjnx9xz8q84l4kby")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20190412213103-97732733099d + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190412213103-97732733099d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "118hkp01i4z1f5h6hcjm0ff2ngqhrzj1f7731n0kw8dr6hvbx0sw")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20191011191535-87dc89f01550") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0z4i1m2yn3f31ci7wvcm2rxkx2yiv7a78mfzklncmsz2k97rlh2g")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" + ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) + ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" + ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20190308221718-c2843e01d9a2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190215142949-d0b11bdaac8a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-text-0.3.0 + (package + (name "go-golang-org-x-text") + (version "0.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/text")) + (home-page "https://golang.org/x/text") + (synopsis "Go Text") + (description + "text is a repository of text-related packages related to internationalization +(i18n) and localization (l10n), such as character encodings, text +transformations, and locale-specific text handling.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190620200207-3b0461eec859") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0l00c8l0a8xnv6qdpwfzxxsr58jggacgzdrwiprrfx2xqm37b6d5")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20190423024810-112230192c58 + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20190423024810-112230192c58") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "05i2k43j2d0llq768hg5pf3hb2yhfzp9la1w5wp0rsnnzblr0lfn")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the ones +provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7 + (package + (name "go-golang-org-x-xerrors") + (version "0.0.0-20190717185122-a985d3407aa7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/xerrors") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "00wzr5w8aadipgc3rkk8f11i41znskfj9ix5nhhaxyg7isrslgcj")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/xerrors")) + (home-page "https://golang.org/x/xerrors") + (synopsis #f) + (description "Package xerrors implements functions to manipulate errors.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20191119224855-298f0cb1881e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0l4pqwib2wnfnix6nvxl0yrq87ipi7ff1rz6z5bxfzy9dki1nzmv")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7" + ,go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7) + ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" + ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) + ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" + ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898 + (package + (name "go-golang-org-x-xerrors") + (version "0.0.0-20191011141410-1b5146add898") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/xerrors") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0w2akj91krxjag0xdhsg78470888nicc5ismc2ap9jqpss6v1zih")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/xerrors")) + (home-page "https://golang.org/x/xerrors") + (synopsis #f) + (description "Package xerrors implements functions to manipulate errors.") + (license license:bsd-3))) + +(define-public go-golang-org-x-mod-0.4.2 + (package + (name "go-golang-org-x-mod") + (version "0.4.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/mod") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0z1p17i291z2k6va08i80ljyzyij2b6qsz78lnz0wi8zsnkfdz43")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/mod")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" + ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) + ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" + ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) + ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" + ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) + (home-page "https://golang.org/x/mod") + (synopsis "mod") + (description + "This repository holds packages for writing tools that work directly with Go +module mechanics. That is, it is for direct manipulation of Go modules +themselves.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20210330210617-4fbd30eecc44 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20210330210617-4fbd30eecc44") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "02mmymbm7wb3vdp3z9hm8p0f45708fybyd38qm8qxzwm19zqnp56")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20201119102817-f84b799fce68") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1dvhqian5byzkcg1bnqzygqa6ccc6krc2q7j12pp1vhl3y7znnsg")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1 + (package + (name "go-golang-org-x-term") + (version "0.0.0-20201126162022-7de9c90e9dd1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/term") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ba252xmv6qsvf1w1gcy98mngrj0vd4inbjw0lsklqvva65nljna")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/term")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" + ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) + (home-page "https://golang.org/x/term") + (synopsis "Go terminal/console support") + (description + "Package term provides support functions for dealing with terminals, as commonly +found on UNIX systems.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20180917221912-90fa682c2a6e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-golang-org-x-text-0.3.3 + (package + (name "go-golang-org-x-text") + (version "0.3.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19pihqm3phyndmiw6i42pdv6z1rbvlqlsnhsyqf9gsnn0qnmqqlh")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/text")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" + ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) + (home-page "https://golang.org/x/text") + (synopsis "Go Text") + (description + "text is a repository of text-related packages related to internationalization +(i18n) and localization (l10n), such as character encodings, text +transformations, and locale-specific text handling.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20210405180319-a5a99cb37ef4 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20210405180319-a5a99cb37ef4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0z90hpmxdw9i8vfhd6vf7hd63c86f1128qfb5f3y4kinvlpjy3rl")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) + ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" + ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) + ("go-golang-org-x-sys-0.0.0-20210330210617-4fbd30eecc44" + ,go-golang-org-x-sys-0.0.0-20210330210617-4fbd30eecc44))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20210220032951-036812b2e83c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1gl202py3s4gl6arkaxlf8qa6f0jyyg2f95m6f89qnfmr416h85b")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the ones +provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1 + (package + (name "go-golang-org-x-xerrors") + (version "0.0.0-20200804184101-5ec99f83aff1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/xerrors") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1dbzc3gmf2haazpv7cgmv97rq40g2xzwbglc17vas8dwhgwgwrzb")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/xerrors")) + (home-page "https://golang.org/x/xerrors") + (synopsis #f) + (description "Package xerrors implements functions to manipulate errors.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.1.5 + (package + (name "go-golang-org-x-tools") + (version "0.1.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1wzbbcja1q0gn8ahxvzvpl4nzj2icwmc0pppgipmx5rdnngqw80l")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" + ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) + ("go-golang-org-x-sys-0.0.0-20210510120138-977fb7262007" + ,go-golang-org-x-sys-0.0.0-20210510120138-977fb7262007) + ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" + ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) + ("go-golang-org-x-net-0.0.0-20210405180319-a5a99cb37ef4" + ,go-golang-org-x-net-0.0.0-20210405180319-a5a99cb37ef4) + ("go-golang-org-x-mod-0.4.2" ,go-golang-org-x-mod-0.4.2) + ("go-github-com-yuin-goldmark-1.3.5" + ,go-github-com-yuin-goldmark-1.3.5))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127 + (package + (name "go-gopkg-in-check-v1") + (version "1.0.0-20180628173108-788fd7840127") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/check.v1") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0v3bim0j375z81zrpr5qv42knqs0y2qv2vkjiqi5axvb78slki1a")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) + (home-page "https://gopkg.in/check.v1") + (synopsis "Instructions") + (description + "Package check is a rich testing extension for Go's testing package.") + (license license:bsd-2))) + +(define-public go-go-uber-org-goleak-1.1.12 + (package + (name "go-go-uber-org-goleak") + (version "1.1.12") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/uber-go/goleak") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1wda3bd5xqbnvskgpr2lg6ccnrm3v9wl0i5c5b6xrrzf01b81vzg")))) + (build-system go-build-system) + (arguments '(#:import-path "go.uber.org/goleak")) + (propagated-inputs + `(("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" + ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) + ("go-golang-org-x-tools-0.1.5" ,go-golang-org-x-tools-0.1.5) + ("go-golang-org-x-lint-0.0.0-20190930215403-16217165b5de" + ,go-golang-org-x-lint-0.0.0-20190930215403-16217165b5de) + ("go-github-com-stretchr-testify-1.7.0" + ,go-github-com-stretchr-testify-1.7.0) + ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0))) + (home-page "https://go.uber.org/goleak") + (synopsis "goleak") + (description "Package goleak is a Goroutine leak detector.") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20210510120138-977fb7262007 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20210510120138-977fb7262007") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0d2vnblgzxgvis2kly99gv10kadyl3v0cpv1lskjqg2v5d11r6hd")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-containerd-cgroups-1.0.3 + (package + (name "go-github-com-containerd-cgroups") + (version "1.0.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/cgroups") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0mqsi2jm1f7xvs35kx6ijvadr6zycshc1xivq6xdiwrw24wb0m3r")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/cgroups")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20210510120138-977fb7262007" + ,go-golang-org-x-sys-0.0.0-20210510120138-977fb7262007) + ("go-go-uber-org-goleak-1.1.12" ,go-go-uber-org-goleak-1.1.12) + ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) + ("go-github-com-stretchr-testify-1.7.0" + ,go-github-com-stretchr-testify-1.7.0) + ("go-github-com-sirupsen-logrus-1.8.1" + ,go-github-com-sirupsen-logrus-1.8.1) + ("go-github-com-opencontainers-runtime-spec-1.0.2" + ,go-github-com-opencontainers-runtime-spec-1.0.2) + ("go-github-com-gogo-protobuf-1.3.2" + ,go-github-com-gogo-protobuf-1.3.2) + ("go-github-com-godbus-dbus-v5-5.0.4" + ,go-github-com-godbus-dbus-v5-5.0.4) + ("go-github-com-docker-go-units-0.4.0" + ,go-github-com-docker-go-units-0.4.0) + ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" + ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) + ("go-github-com-coreos-go-systemd-v22-22.3.2" + ,go-github-com-coreos-go-systemd-v22-22.3.2) + ("go-github-com-cilium-ebpf-0.4.0" ,go-github-com-cilium-ebpf-0.4.0))) + (home-page "https://github.com/containerd/cgroups") + (synopsis "cgroups") + (description + "Go package for creating, managing, inspecting, and destroying cgroups. The +resources format for settings on the cgroup uses the OCI runtime-spec found +@url{https://github.com/opencontainers/runtime-spec,here}.") + (license license:asl2.0))) + +(define-public go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20191005200804-aed5e4c7ecf9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wsdsbl9n61l99z0cvib2xzg56fsfgky4yc5xapdw9ywx9h0zm3a")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-fsnotify-fsnotify-1.4.9 + (package + (name "go-github-com-fsnotify-fsnotify") + (version "1.4.9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/fsnotify/fsnotify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1i1r72knpbfwwql9frn9bqc3nhfc2ai5m6qllcyr6wban62lr40x")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/fsnotify/fsnotify")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9" + ,go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9))) + (home-page "https://github.com/fsnotify/fsnotify") + (synopsis "File system notifications for Go") + (description + "Package fsnotify provides a platform-independent interface for file system +notifications.") + (license license:bsd-3))) + +(define-public go-github-com-sclevine-agouti-3.0.0+incompatible + (package + (name "go-github-com-sclevine-agouti") + (version "3.0.0+incompatible") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sclevine/agouti") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fsj7x7hhmqq43a9qxdfap7ik6b35hqk58dwii0ir1zm1fnw105b")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/sclevine/agouti")) + (home-page "https://github.com/sclevine/agouti") + (synopsis "Agouti") + (description + "Package agouti is a universal WebDriver client for Go. It extends the +agouti/api package to provide a feature-rich interface for controlling a web +browser.") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20200519105757-fe76b779f299 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200519105757-fe76b779f299") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0g6j3n9fdv1a2lp2i8wbaaya85yrbfx3ns6iq1s7l2ayhxxmgh6b")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20180917221912-90fa682c2a6e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-golang-org-x-text-0.3.2 + (package + (name "go-golang-org-x-text") + (version "0.3.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0flv9idw0jm5nm8lx25xqanbkqgfiym6619w575p7nrdh0riqwqh")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/text")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" + ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) + (home-page "https://golang.org/x/text") + (synopsis "Go Text") + (description + "text is a repository of text-related packages related to internationalization +(i18n) and localization (l10n), such as character encodings, text +transformations, and locale-specific text handling.") + (license license:bsd-3))) + +(define-public go-github-com-onsi-ginkgo-1.13.0 + (package + (name "go-github-com-onsi-ginkgo") + (version "1.13.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/onsi/ginkgo") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1p8p334z7xjfsn35hfkls8crirz8hgqqq0hj83gxizpzq8v24qpi")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/onsi/ginkgo")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) + ("go-golang-org-x-sys-0.0.0-20200519105757-fe76b779f299" + ,go-golang-org-x-sys-0.0.0-20200519105757-fe76b779f299) + ("go-github-com-sclevine-agouti-3.0.0+incompatible" + ,go-github-com-sclevine-agouti-3.0.0+incompatible) + ("go-github-com-onsi-gomega-1.10.1" ,go-github-com-onsi-gomega-1.10.1) + ("go-github-com-nxadm-tail-1.4.4" ,go-github-com-nxadm-tail-1.4.4) + ("go-github-com-fsnotify-fsnotify-1.4.9" + ,go-github-com-fsnotify-fsnotify-1.4.9))) + (home-page "https://github.com/onsi/ginkgo") + (synopsis "Ginkgo 2.0 Release Candidate is available!") + (description "Ginkgo is a BDD-style testing framework for Golang") + (license license:expat))) + +(define-public go-github-com-google-go-cmp-0.3.0 + (package + (name "go-github-com-google-go-cmp") + (version "0.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1hyxx3434zshl2m9ja78gwlkg1rx9yl6diqa7dnjb31xz5x4gbjj")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically +equal.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd + (package + (name "go-google-golang-org-protobuf") + (version "0.0.0-20200109180630-ec00e32a8dfd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0w6lp9w2avxcpxwzzhspr209ifhyjagvs23k0vykfdqahl1aplrh")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.3.0" + ,go-github-com-google-go-cmp-0.3.0))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is +a language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol +buffer developer guide} for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.4.0-rc.1 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.0-rc.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "186rirvbfgv6hrxp27ipx2cdpv19qifdd20biqfdm01wiyclqimn")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd" + ,go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd) + ("go-github-com-google-go-cmp-0.3.1" + ,go-github-com-google-go-cmp-0.3.1))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code +github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-github-com-google-go-cmp-0.3.1 + (package + (name "go-github-com-google-go-cmp") + (version "0.3.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1caw49i0plkjxir7kdf5qhwls3krqwfmi7g4h392rdfwi3kfahx1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically +equal.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64 + (package + (name "go-google-golang-org-protobuf") + (version "0.0.0-20200221191635-4d8936d0db64") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0563bsvdjj6k0sgwqd5yzrgfiax7sp3lcwh608gync5sv9fx39cy")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.3.1" + ,go-github-com-google-go-cmp-0.3.1) + ("go-github-com-golang-protobuf-1.4.0-rc.1" + ,go-github-com-golang-protobuf-1.4.0-rc.1))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is +a language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol +buffer developer guide} for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.0-rc.1.0.20200221234624-67d41d38c208") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ykxhg3zixmw25pd435f8h16wnz1g00jpcmmg3xl030kksgqgpp6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64" + ,go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code +github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60 + (package + (name "go-google-golang-org-protobuf") + (version "0.0.0-20200228230310-ab0ca4ff8a60") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1rinspcznfp85yz4vrlf4h38hr576virgv8lcs22bsylqga808sd")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208" + ,go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is +a language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol +buffer developer guide} for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.4.0-rc.2 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.0-rc.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1hd43hjv5zl6bjbmhm5phx74bw4xajsi73m5zky2k56za4mpgzzc")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60" + ,go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code +github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967 + (package + (name "go-google-golang-org-protobuf") + (version "1.20.1-0.20200309200217-e05f789c0967") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "17wmy89hnmpkwc63rfcjp50q15s9f1rhmczg06c3z9yy41zk82w9")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.0-rc.2" + ,go-github-com-golang-protobuf-1.4.0-rc.2))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is +a language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol +buffer developer guide} for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.0-rc.4.0.20200313231945-b860323f09d0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1zj6cwshx0l5n9cn2cpbikzzb79px5dmkpc4p19zy1iif5r5p0z0")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967" + ,go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code +github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-1.21.0 + (package + (name "go-google-golang-org-protobuf") + (version "1.21.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12bwln8z1lf9105gdp6ip0rx741i4yfz1520gxnp8861lh9wcl63")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0" + ,go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is +a language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol +buffer developer guide} for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.4.0 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fjvl5n77abxz5qsd4mgyvjq19x43c5bfvmq62mq3m5plx6zksc8")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.21.0" + ,go-google-golang-org-protobuf-1.21.0) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code +github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-github-com-google-go-cmp-0.4.0 + (package + (name "go-github-com-google-go-cmp") + (version "0.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1x5pvl3fb5sbyng7i34431xycnhmx8xx94gq2n19g6p0vz68z2v2")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically +equal.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-1.23.0 + (package + (name "go-google-golang-org-protobuf") + (version "1.23.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03yan0m1v0zmlr935p4n24fd376mznsg85zy8sywbgisls4s1bzy")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.0" + ,go-github-com-golang-protobuf-1.4.0))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is +a language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol +buffer developer guide} for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.4.2 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0m5z81im4nsyfgarjhppayk4hqnrwswr3nix9mj8pff8x9jvcjqw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.23.0" + ,go-google-golang-org-protobuf-1.23.0) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code +github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20190904154756-749cb33beabd + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190904154756-749cb33beabd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0dm3257q3rv2kyn5lmqqim2fqg634v6rhrqq4glvbk4wx4l3v337")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-nxadm-tail-1.4.4 + (package + (name "go-github-com-nxadm-tail") + (version "1.4.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/nxadm/tail") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1czmwqii0fc8v3ar5bwqpfanprkxg19waly405zlvcflzvj53wwc")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/nxadm/tail")) + (propagated-inputs + `(("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" + ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) + ("go-golang-org-x-sys-0.0.0-20190904154756-749cb33beabd" + ,go-golang-org-x-sys-0.0.0-20190904154756-749cb33beabd) + ("go-github-com-fsnotify-fsnotify-1.4.7" + ,go-github-com-fsnotify-fsnotify-1.4.7))) + (home-page "https://github.com/nxadm/tail") + (synopsis "tail functionality in Go") + (description + "nxadm/tail provides a Go library that emulates the features of the BSD `tail` +program. The library comes with full support for truncation/move detection as +it is designed to work with log rotation tools. The library works on all +operating systems supported by Go, including POSIX systems like Linux and *BSD, +and MS Windows. Go 1.9 is the oldest compiler release supported.") + (license license:expat))) + +(define-public go-github-com-fsnotify-fsnotify-1.4.7 + (package + (name "go-github-com-fsnotify-fsnotify") + (version "1.4.7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/fsnotify/fsnotify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/fsnotify/fsnotify")) + (home-page "https://github.com/fsnotify/fsnotify") + (synopsis "File system notifications for Go") + (description + "Package fsnotify provides a platform-independent interface for file system +notifications.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.2.0 + (package + (name "go-github-com-golang-protobuf") + (version "1.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0kf4b59rcbb1cchfny2dm9jyznp8ri2hsb14n8iak1q8986xa0ab")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code +github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-github-com-hpcloud-tail-1.0.0 + (package + (name "go-github-com-hpcloud-tail") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hpcloud/tail") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1njpzc0pi1acg5zx9y6vj9xi6ksbsc5d387rd6904hy6rh2m6kn0")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hpcloud/tail")) + (home-page "https://github.com/hpcloud/tail") + (synopsis "Go package for tail-ing files") + (description + "This package provides a Go package striving to emulate the features of the BSD +@code{tail} program.") + (license license:expat))) + +(define-public go-github-com-onsi-ginkgo-1.6.0 + (package + (name "go-github-com-onsi-ginkgo") + (version "1.6.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/onsi/ginkgo") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0x0gc89vgq38xhgmi2h22bhr73cf2gmk42g89nz89k8dgg9hhr25")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/onsi/ginkgo")) + (home-page "https://github.com/onsi/ginkgo") + (synopsis "Ginkgo 2.0 Release Candidate is available!") + (description "Ginkgo is a BDD-style testing framework for Golang") + (license license:expat))) + +(define-public go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd + (package + (name "go-golang-org-x-net") + (version "0.0.0-20180906233101-161cd47e91fd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0254ld010iijygbzykib2vags1dc0wlmcmhgh4jl8iny159lhbcv")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20180314180146-1d60e4601c6f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "046jlanz2lkxq1r57x9bl6s4cvfqaic6p2xybsj8mq1120jv4rs6")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the ones +provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20180909124046-d0be0721c37e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "081wyvfnlf842dqg03raxfz6lldlxpmyh1prix9lmrrm65arxb12")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-gopkg-in-fsnotify-v1-1.4.7 + (package + (name "go-gopkg-in-fsnotify-v1") + (version "1.4.7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/fsnotify.v1") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) + (build-system go-build-system) + (arguments + '(#:import-path + "gopkg.in/fsnotify.v1" + #:unpack-path + "gopkg.in/fsnotify.v1")) + (home-page "https://gopkg.in/fsnotify.v1") + (synopsis "File system notifications for Go") + (description + "Package fsnotify provides a platform-independent interface for file system +notifications.") + (license license:bsd-3))) + +(define-public go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7 + (package + (name "go-gopkg-in-tomb-v1") + (version "1.0.0-20141024135613-dd632973f1e7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/tomb.v1") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1lqmq1ag7s4b3gc3ddvr792c5xb5k6sfn0cchr3i2s7f1c231zjv")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/tomb.v1" #:unpack-path "gopkg.in/tomb.v1")) + (home-page "https://gopkg.in/tomb.v1") + (synopsis "Installation and usage") + (description + "The tomb package offers a conventional API for clean goroutine termination.") + (license license:bsd-3))) + +(define-public go-gopkg-in-yaml-v2-2.2.4 + (package + (name "go-gopkg-in-yaml-v2") + (version "2.2.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "11bwj757wi8kdrcnlgfqb8vv2d2xdhlghmyagd19i62khrkchsg2")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v2") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language.") + (license license:asl2.0))) + +(define-public go-github-com-onsi-gomega-1.7.1 + (package + (name "go-github-com-onsi-gomega") + (version "1.7.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/onsi/gomega") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "06p3x0910cdaa64l7d44s728d4j3yhps315dlcvrbjzhljjj7mam")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/onsi/gomega")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.4" ,go-gopkg-in-yaml-v2-2.2.4) + ("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" + ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) + ("go-gopkg-in-fsnotify-v1-1.4.7" ,go-gopkg-in-fsnotify-v1-1.4.7) + ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e" + ,go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e) + ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" + ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) + ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" + ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) + ("go-github-com-onsi-ginkgo-1.6.0" ,go-github-com-onsi-ginkgo-1.6.0) + ("go-github-com-hpcloud-tail-1.0.0" ,go-github-com-hpcloud-tail-1.0.0) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0) + ("go-github-com-fsnotify-fsnotify-1.4.7" + ,go-github-com-fsnotify-fsnotify-1.4.7))) + (home-page "https://github.com/onsi/gomega") + (synopsis ": a BDD Testing Framework for Golang") + (description + "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library.") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20191120155948-bd437916bb0e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1i8x26frmlin55k69k936zd1rp5sqnq14y5ms4rkxbfzhasdm2rx")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-onsi-ginkgo-1.12.1 + (package + (name "go-github-com-onsi-ginkgo") + (version "1.12.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/onsi/ginkgo") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0xs9724l2b0bwjwrvw5cs3akxaw0n1j5kyxrb1ggfsdjz0zmjcxh")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/onsi/ginkgo")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e" + ,go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e) + ("go-github-com-onsi-gomega-1.7.1" ,go-github-com-onsi-gomega-1.7.1) + ("go-github-com-nxadm-tail-1.4.4" ,go-github-com-nxadm-tail-1.4.4))) + (home-page "https://github.com/onsi/ginkgo") + (synopsis "Ginkgo 2.0 Release Candidate is available!") + (description "Ginkgo is a BDD-style testing framework for Golang") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190215142949-d0b11bdaac8a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20190308221718-c2843e01d9a2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200323222414-85ca7c5b95cd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1504qkgbhhm4f0bhk77v2r1lj6x171ay5m79alkg78wjb5cign5l")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-text-0.3.0 + (package + (name "go-golang-org-x-text") + (version "0.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/text")) + (home-page "https://golang.org/x/text") + (synopsis "Go Text") + (description + "text is a repository of text-related packages related to internationalization +(i18n) and localization (l10n), such as character encodings, text +transformations, and locale-specific text handling.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20200520004742-59133d7f0dd7 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20200520004742-59133d7f0dd7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03js31gnf3hir5dh6q01bj7cs0y4wzyinqg1mvr0nlb83kak9ggq")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" + ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543 + (package + (name "go-golang-org-x-xerrors") + (version "0.0.0-20191204190536-9bdfabe68543") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/xerrors") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1yjfi1bk9xb81lqn85nnm13zz725wazvrx3b50hx19qmwg7a4b0c")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/xerrors")) + (home-page "https://golang.org/x/xerrors") + (synopsis #f) + (description "Package xerrors implements functions to manipulate errors.") + (license license:bsd-3))) + +(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 + (package + (name "go-gopkg-in-check-v1") + (version "0.0.0-20161208181325-20d25e280405") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/check.v1") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) + (home-page "https://gopkg.in/check.v1") + (synopsis "Instructions") + (description + "Package check is a rich testing extension for Go's testing package.") + (license license:bsd-2))) + +(define-public go-gopkg-in-yaml-v2-2.3.0 + (package + (name "go-gopkg-in-yaml-v2") + (version "2.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1md0hlyd9s6myv3663i9l59y74n4xjazifmmyxn43g86fgkc5lzj")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v2") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language.") + (license license:asl2.0))) + +(define-public go-github-com-onsi-gomega-1.10.1 + (package + (name "go-github-com-onsi-gomega") + (version "1.10.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/onsi/gomega") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "068mirdbwl9n9dqlvqr489h52wkd90cv1jvng4yp8kv83lhzk2dq")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/onsi/gomega")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.3.0" ,go-gopkg-in-yaml-v2-2.3.0) + ("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) + ("go-golang-org-x-net-0.0.0-20200520004742-59133d7f0dd7" + ,go-golang-org-x-net-0.0.0-20200520004742-59133d7f0dd7) + ("go-github-com-onsi-ginkgo-1.12.1" ,go-github-com-onsi-ginkgo-1.12.1) + ("go-github-com-golang-protobuf-1.4.2" + ,go-github-com-golang-protobuf-1.4.2))) + (home-page "https://github.com/onsi/gomega") + (synopsis ": a BDD Testing Framework for Golang") + (description + "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library.") + (license license:expat))) + +(define-public go-github-com-containernetworking-cni-1.0.1 + (package + (name "go-github-com-containernetworking-cni") + (version "1.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containernetworking/cni") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0jzijcb96z26lchh6j4js3rl7c148mwlaiz3s6ww47kljnxmv05f")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containernetworking/cni")) + (propagated-inputs + `(("go-github-com-onsi-gomega-1.10.1" ,go-github-com-onsi-gomega-1.10.1) + ("go-github-com-onsi-ginkgo-1.13.0" + ,go-github-com-onsi-ginkgo-1.13.0))) + (home-page "https://github.com/containernetworking/cni") + (synopsis "CNI - the Container Network Interface") + (description + "CNI (), a @url{https://cncf.io,Cloud Native Computing Foundation} project, +consists of a specification and libraries for writing plugins to configure +network interfaces in Linux containers, along with a number of supported +plugins. CNI concerns itself only with network connectivity of containers and +removing allocated resources when the container is deleted. Because of this +focus, CNI has a wide range of support and the specification is simple to +implement.") + (license license:asl2.0))) + +(define-public go-github-com-creack-pty-1.1.17 + (package + (name "go-github-com-creack-pty") + (version "1.1.17") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/creack/pty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "09lcq5bw1dwppxjia05sj4fy7gbk62vishfz1bgrbd1r06i57mjf")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/creack/pty")) + (home-page "https://github.com/creack/pty") + (synopsis "pty") + (description + "Package pty provides functions for working with Unix terminals.") + (license license:expat))) + +(define-public go-github-com-cyphar-filepath-securejoin-0.2.3 + (package + (name "go-github-com-cyphar-filepath-securejoin") + (version "0.2.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cyphar/filepath-securejoin") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0w03d8hslwfhcnfqck21agzs7y0sc6gpwfz53md8fv26ishwxppy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/cyphar/filepath-securejoin")) + (home-page "https://github.com/cyphar/filepath-securejoin") + (synopsis #f) + (description + "Package securejoin is an implementation of the hopefully-soon-to-be-included +SecureJoin helper that is meant to be part of the \"path/filepath\" package. The +purpose of this project is to provide a PoC implementation to make the +SecureJoin proposal +(@url{https://github.com/golang/go/issues/20126,https://github.com/golang/go/issues/20126}) +more tangible.") + (license license:bsd-3))) + +(define-public go-github-com-docker-docker-20.10.12+incompatible + (package + (name "go-github-com-docker-docker") + (version "20.10.12+incompatible") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/moby/moby") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "17j820ij8p6w61jyg5g6y5dwv56dh1w178f6ia2i2dc9b8mz6b5a")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/docker/docker")) + (home-page "https://github.com/docker/docker") + (synopsis "The Moby Project") + (description + "Moby is an open-source project created by Docker to enable and accelerate +software containerization.") + (license license:asl2.0))) + +(define-public go-golang-org-x-sys-0.0.0-20200116001909-b77594299b42 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200116001909-b77594299b42") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0isfm6kmh4fjhh6m7mrb3zvdjka2y31c5habr5kydl7rg0lwkabv")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-mattn-go-isatty-0.0.12 + (package + (name "go-github-com-mattn-go-isatty") + (version "0.0.12") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mattn/go-isatty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1dfsh27d52wmz0nmmzm2382pfrs2fcijvh6cgir7jbb4pnigr5w4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mattn/go-isatty")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20200116001909-b77594299b42" + ,go-golang-org-x-sys-0.0.0-20200116001909-b77594299b42))) + (home-page "https://github.com/mattn/go-isatty") + (synopsis "go-isatty") + (description "Package isatty implements interface to isatty") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20200223170610-d5e6a3e2c0ae + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200223170610-d5e6a3e2c0ae") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0lz7vm5dz2p14fzq2j4m1l9p392cl0fa73aaf45gln07ylfajk4n")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-mattn-go-colorable-0.1.9 + (package + (name "go-github-com-mattn-go-colorable") + (version "0.1.9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mattn/go-colorable") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0f46aiyfca71y7g7ypkicqi0r4ys9jwdw2v6hwdc0x76d39hh0qk")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mattn/go-colorable")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20200223170610-d5e6a3e2c0ae" + ,go-golang-org-x-sys-0.0.0-20200223170610-d5e6a3e2c0ae) + ("go-github-com-mattn-go-isatty-0.0.12" + ,go-github-com-mattn-go-isatty-0.0.12))) + (home-page "https://github.com/mattn/go-colorable") + (synopsis "go-colorable") + (description "Colorable writer for windows.") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20210630005230-0f9fa26af87c + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20210630005230-0f9fa26af87c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "17g7kc6bf6zw4ib1xhmkbpfdn85jbmindqsz0l8ymmc6v279h13q")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-mattn-go-isatty-0.0.14 + (package + (name "go-github-com-mattn-go-isatty") + (version "0.0.14") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mattn/go-isatty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "015zc3j60vb85d7f2al15la24wn45piazxlagqhzrbgfdyqci60z")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mattn/go-isatty")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20210630005230-0f9fa26af87c" + ,go-golang-org-x-sys-0.0.0-20210630005230-0f9fa26af87c))) + (home-page "https://github.com/mattn/go-isatty") + (synopsis "go-isatty") + (description "Package isatty implements interface to isatty") + (license license:expat))) + +(define-public go-github-com-fatih-color-1.13.0 + (package + (name "go-github-com-fatih-color") + (version "1.13.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/fatih/color") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "029qkxsdpblhrpgbv4fcmqwkqnjhx08hwiqp19pd7zz6l8a373ay")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/fatih/color")) + (propagated-inputs + `(("go-github-com-mattn-go-isatty-0.0.14" + ,go-github-com-mattn-go-isatty-0.0.14) + ("go-github-com-mattn-go-colorable-0.1.9" + ,go-github-com-mattn-go-colorable-0.1.9))) + (home-page "https://github.com/fatih/color") + (synopsis "color") + (description + "Package color is an ANSI color package to output colorized or SGR defined output +to the standard output. The API can be used in several way, pick one that suits +you.") + (license license:expat))) + +(define-public go-github-com-go-log-log-0.2.0 + (package + (name "go-github-com-go-log-log") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/go-log/log") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1idnqv4yvkmdh3wcsgvhcpak9z6ix8dsifdjq5kfbbnskdq5rmvg")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/go-log/log")) + (home-page "https://github.com/go-log/log") + (synopsis "Log") + (description "Package log provides a log interface") + (license license:expat))) + +(define-public go-github-com-google-uuid-1.3.0 + (package + (name "go-github-com-google-uuid") + (version "1.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/uuid") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0imkw52m7fzrwsdj2rfrk3zbplqfbwncyv6hv89xw0vdw3jpk122")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/uuid")) + (home-page "https://github.com/google/uuid") + (synopsis "uuid") + (description "Package uuid generates and inspects UUIDs.") + (license license:bsd-3))) + +(define-public go-github-com-opencontainers-go-digest-1.0.0 + (package + (name "go-github-com-opencontainers-go-digest") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/go-digest") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0i5acjajvr6hi9zb7gxwifd8w28y884cv7cx36adj8lngj647xbi")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/go-digest")) + (home-page "https://github.com/opencontainers/go-digest") + (synopsis "go-digest") + (description + "Package digest provides a generalized type to opaquely represent message digests +and their operations within the registry. The Digest type is designed to serve +as a flexible identifier in a content-addressable system. More importantly, it +provides tools and wrappers to work with hash.Hash-based digests with little +effort.") + (license (list license:asl2.0 license:cc-by-sa4.0)))) + +(define-public go-github-com-opencontainers-go-digest-1.0.0 + (package + (name "go-github-com-opencontainers-go-digest") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/go-digest") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0i5acjajvr6hi9zb7gxwifd8w28y884cv7cx36adj8lngj647xbi")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/go-digest")) + (home-page "https://github.com/opencontainers/go-digest") + (synopsis "go-digest") + (description + "Package digest provides a generalized type to opaquely represent message digests +and their operations within the registry. The Digest type is designed to serve +as a flexible identifier in a content-addressable system. More importantly, it +provides tools and wrappers to work with hash.Hash-based digests with little +effort.") + (license (list license:asl2.0 license:cc-by-sa4.0)))) + +(define-public go-github-com-pkg-errors-0.9.1 + (package + (name "go-github-com-pkg-errors") + (version "0.9.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pkg/errors") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1761pybhc2kqr6v5fm8faj08x9bql8427yqg6vnfv6nhrasx1mwq")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pkg/errors")) + (home-page "https://github.com/pkg/errors") + (synopsis "errors") + (description "Package errors provides simple error handling primitives.") + (license license:bsd-2))) + +(define-public go-github-com-russross-blackfriday-1.6.0 + (package + (name "go-github-com-russross-blackfriday") + (version "1.6.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/russross/blackfriday") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "036028ynpq52z9snmd2b1kjzyvv6n9sg71k651ndznggnw19aamp")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/russross/blackfriday")) + (home-page "https://github.com/russross/blackfriday") + (synopsis "Blackfriday") + (description "Package blackfriday is a Markdown processor.") + (license license:bsd-2))) + +(define-public go-github-com-davecgh-go-spew-1.1.0 + (package + (name "go-github-com-davecgh-go-spew") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/davecgh/go-spew") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/davecgh/go-spew")) + (home-page "https://github.com/davecgh/go-spew") + (synopsis "go-spew") + (description + "Go-spew implements a deep pretty printer for Go data structures to aid in +debugging. A comprehensive suite of tests with 100% test coverage is provided +to ensure proper functionality. See @code{test_coverage.txt} for the gocov +coverage report. Go-spew is licensed under the liberal ISC license, so it may +be used in open source or commercial projects.") + (license license:isc))) + +(define-public go-github-com-pmezard-go-difflib-1.0.0 + (package + (name "go-github-com-pmezard-go-difflib") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pmezard/go-difflib") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pmezard/go-difflib")) + (home-page "https://github.com/pmezard/go-difflib") + (synopsis "go-difflib") + (description + "Go-difflib is a partial port of python 3 difflib package. Its main goal was to +make unified and context diff available in pure Go, mostly for testing purposes.") + (license license:bsd-3))) + +(define-public go-github-com-stretchr-objx-0.1.0 + (package + (name "go-github-com-stretchr-objx") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/objx") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/objx")) + (home-page "https://github.com/stretchr/objx") + (synopsis "Objx") + (description + "Objx - Go package for dealing with maps, slices, JSON and other data.") + (license license:expat))) + +(define-public go-github-com-stretchr-testify-1.3.0 + (package + (name "go-github-com-stretchr-testify") + (version "1.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wjchp2c8xbgcbbq32w3kvblk6q6yn533g78nxl6iskq6y95lxsy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (propagated-inputs + `(("go-github-com-stretchr-objx-0.1.0" + ,go-github-com-stretchr-objx-0.1.0) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.0" + ,go-github-com-davecgh-go-spew-1.1.0))) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in +it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that +your code will behave as you intend.") + (license license:expat))) + +(define-public go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f + (package + (name "go-github-com-xeipuuv-gojsonpointer") + (version "0.0.0-20180127040702-4e3ac2762d5f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/xeipuuv/gojsonpointer") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "13y6iq2nzf9z4ls66bfgnnamj2m3438absmbpqry64bpwjfbsi9q")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/xeipuuv/gojsonpointer")) + (home-page "https://github.com/xeipuuv/gojsonpointer") + (synopsis "gojsonpointer") + (description "An implementation of JSON Pointer - Go language") + (license license:asl2.0))) + +(define-public go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415 + (package + (name "go-github-com-xeipuuv-gojsonreference") + (version "0.0.0-20180127040603-bd5ef7bd5415") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/xeipuuv/gojsonreference") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1xby79padc7bmyb8rfbad8wfnfdzpnh51b1n8c0kibch0kwc1db5")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/xeipuuv/gojsonreference")) + (home-page "https://github.com/xeipuuv/gojsonreference") + (synopsis "gojsonreference") + (description "An implementation of JSON Reference - Go language") + (license license:asl2.0))) + +(define-public go-github-com-xeipuuv-gojsonschema-1.2.0 + (package + (name "go-github-com-xeipuuv-gojsonschema") + (version "1.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/xeipuuv/gojsonschema") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1mqiq0r8qw4qlfp3ls8073r6514rmzwrmdn4j33rppk3zh942i6l")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/xeipuuv/gojsonschema")) + (propagated-inputs + `(("go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415" + ,go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415) + ("go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f" + ,go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f) + ("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0))) + (home-page "https://github.com/xeipuuv/gojsonschema") + (synopsis "gojsonschema") + (description + "An implementation of JSON Schema for the Go programming language. Supports +draft-04, draft-06 and draft-07.") + (license license:asl2.0))) + +(define-public go-github-com-opencontainers-image-spec-1.0.3-0.20211202193544-a5463b7f9c84 + (package + (name "go-github-com-opencontainers-image-spec") + (version "1.0.3-0.20211202193544-a5463b7f9c84") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/image-spec") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "11js6467d7fhcvad4aw26d4p0r5b33vf41qhcf1bdwx0y7smd7s4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/image-spec")) + (propagated-inputs + `(("go-github-com-xeipuuv-gojsonschema-1.2.0" + ,go-github-com-xeipuuv-gojsonschema-1.2.0) + ("go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415" + ,go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415) + ("go-github-com-russross-blackfriday-1.6.0" + ,go-github-com-russross-blackfriday-1.6.0) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-go-digest-1.0.0" + ,go-github-com-opencontainers-go-digest-1.0.0))) + (home-page "https://github.com/opencontainers/image-spec") + (synopsis "OCI Image Format Specification") + (description + "The OCI Image Format project creates and maintains the software shipping +container image format spec (OCI Image Format).") + (license license:asl2.0))) + +(define-public go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417 + (package + (name "go-github-com-opencontainers-runtime-spec") + (version "1.0.3-0.20210326190908-1c3f411f0417") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/runtime-spec") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1azk8z41ga8af35c966f06vrq9y9hwz6mkm59r3py5qaamzim3qq")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) + (home-page "https://github.com/opencontainers/runtime-spec") + (synopsis "Open Container Initiative Runtime Specification") + (description + "The @url{https://www.opencontainers.org,Open Container Initiative} develops +specifications for standards on Operating System process and application +containers.") + (license license:asl2.0))) + +(define-public go-github-com-opencontainers-runtime-tools-0.9.1-0.20210326182921-59cdde06764b + (package + (name "go-github-com-opencontainers-runtime-tools") + (version "0.9.1-0.20210326182921-59cdde06764b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/runtime-tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0f4zy6x1rrrg10bphwijic30m3r4mq934zbavnci6jyi41l1w2r0")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/runtime-tools")) + (home-page "https://github.com/opencontainers/runtime-tools") + (synopsis "oci-runtime-tool") + (description + "oci-runtime-tool is a collection of tools for working with the +@url{https://github.com/opencontainers/runtime-spec,OCI runtime specification}. +To build from source code, runtime-tools requires Go 1.10.x or above.") + (license license:asl2.0))) + +(define-public go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20191115151921-52ab43148777") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1kakxbqrb1w2vwg7r1896z68qcx2lfvimsl8cs2niiipbgpi6imx")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-opencontainers-selinux-1.10.0 + (package + (name "go-github-com-opencontainers-selinux") + (version "1.10.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/selinux") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "118q1d9py9zhym4jmyiivasmllkdnkp1zyx4brc6n2cfmxfph6gc")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/selinux")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777" + ,go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777))) + (home-page "https://github.com/opencontainers/selinux") + (synopsis "selinux") + (description "Common SELinux package used across the container ecosystem.") + (license license:asl2.0))) + +(define-public go-github-com-adamkorcz-go-fuzz-headers-0.0.0-20210312213058-32f4d319f0d2 + (package + (name "go-github-com-adamkorcz-go-fuzz-headers") + (version "0.0.0-20210312213058-32f4d319f0d2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/AdamKorcz/go-fuzz-headers") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0r14xxw8c7pkmln0n5vlrahf1785mr7mlyklmfpa11p9kk9pmq5j")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/AdamKorcz/go-fuzz-headers")) + (home-page "https://github.com/AdamKorcz/go-fuzz-headers") + (synopsis #f) + (description #f) + (license #f))) + +(define-public go-github-com-stretchr-testify-1.3.0 + (package + (name "go-github-com-stretchr-testify") + (version "1.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wjchp2c8xbgcbbq32w3kvblk6q6yn533g78nxl6iskq6y95lxsy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (propagated-inputs + `(("go-github-com-stretchr-objx-0.1.0" + ,go-github-com-stretchr-objx-0.1.0) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.0" + ,go-github-com-davecgh-go-spew-1.1.0))) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in +it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that +your code will behave as you intend.") + (license license:expat))) + +(define-public go-github-com-apex-logs-0.0.7 + (package + (name "go-github-com-apex-logs") + (version "0.0.7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/apex/logs") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1h12q9sb7f4yjizajfxvjllzqab1s8scgqj22prwyfbbqg1ilchv")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/apex/logs")) + (propagated-inputs + `(("go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0" + ,go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0) + ("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0))) + (home-page "https://github.com/apex/logs") + (synopsis "Example") + (description "Go client for @url{https://apex.sh/logs/,Apex Logs}.") + (license license:expat))) + +(define-public go-github-com-aphistic-golf-0.0.0-20180712155816-02c07f170c5a + (package + (name "go-github-com-aphistic-golf") + (version "0.0.0-20180712155816-02c07f170c5a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/aphistic/golf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1qixab9bb29wqbr4nc5j3g25hq1j7am93f181rkj7a4qacncx763")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/aphistic/golf")) + (home-page "https://github.com/aphistic/golf") + (synopsis "golf") + (description + "This package provides logging capabilities using the GELF +(@url{https://www.graylog.org/resources/gelf-2/,https://www.graylog.org/resources/gelf-2/}) +log format") + (license license:expat))) + +(define-public go-github-com-mattn-go-isatty-0.0.5 + (package + (name "go-github-com-mattn-go-isatty") + (version "0.0.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mattn/go-isatty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "114d5xm8rfxplzd7nxz97gfngb4bhqy102szl084d1afcxsvm4aa")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mattn/go-isatty")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223" + ,go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223))) + (home-page "https://github.com/mattn/go-isatty") + (synopsis "go-isatty") + (description "Package isatty implements interface to isatty") + (license license:expat))) + +(define-public go-github-com-mattn-go-colorable-0.1.1 + (package + (name "go-github-com-mattn-go-colorable") + (version "0.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mattn/go-colorable") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0l640974j804c1yyjfgyxqlsivz0yrzmbql4mhcw2azryigkp08p")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mattn/go-colorable")) + (propagated-inputs + `(("go-github-com-mattn-go-isatty-0.0.5" + ,go-github-com-mattn-go-isatty-0.0.5))) + (home-page "https://github.com/mattn/go-colorable") + (synopsis "go-colorable") + (description "Colorable writer for windows.") + (license license:expat))) + +(define-public go-github-com-mgutz-ansi-0.0.0-20170206155736-9520e82c474b + (package + (name "go-github-com-mgutz-ansi") + (version "0.0.0-20170206155736-9520e82c474b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mgutz/ansi") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "00bz22314j26736w1f0q4jy9d9dfaml17vn890n5zqy3cmvmww1j")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mgutz/ansi")) + (home-page "https://github.com/mgutz/ansi") + (synopsis "ansi") + (description + "Package ansi is a small, fast library to create ANSI colored strings and codes.") + (license license:expat))) + +(define-public go-github-com-fsnotify-fsnotify-1.4.7 + (package + (name "go-github-com-fsnotify-fsnotify") + (version "1.4.7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/fsnotify/fsnotify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/fsnotify/fsnotify")) + (home-page "https://github.com/fsnotify/fsnotify") + (synopsis "File system notifications for Go") + (description + "Package fsnotify provides a platform-independent interface for file system +notifications.") + (license license:bsd-3))) + +(define-public go-github-com-hpcloud-tail-1.0.0 + (package + (name "go-github-com-hpcloud-tail") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hpcloud/tail") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1njpzc0pi1acg5zx9y6vj9xi6ksbsc5d387rd6904hy6rh2m6kn0")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hpcloud/tail")) + (home-page "https://github.com/hpcloud/tail") + (synopsis "Go package for tail-ing files") + (description + "This package provides a Go package striving to emulate the features of the BSD +@code{tail} program.") + (license license:expat))) + +(define-public go-github-com-onsi-ginkgo-1.6.0 + (package + (name "go-github-com-onsi-ginkgo") + (version "1.6.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/onsi/ginkgo") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0x0gc89vgq38xhgmi2h22bhr73cf2gmk42g89nz89k8dgg9hhr25")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/onsi/ginkgo")) + (home-page "https://github.com/onsi/ginkgo") + (synopsis "Ginkgo 2.0 Release Candidate is available!") + (description "Ginkgo is a BDD-style testing framework for Golang") + (license license:expat))) + +(define-public go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd + (package + (name "go-golang-org-x-net") + (version "0.0.0-20180906233101-161cd47e91fd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0254ld010iijygbzykib2vags1dc0wlmcmhgh4jl8iny159lhbcv")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20180909124046-d0be0721c37e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "081wyvfnlf842dqg03raxfz6lldlxpmyh1prix9lmrrm65arxb12")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-gopkg-in-fsnotify-v1-1.4.7 + (package + (name "go-gopkg-in-fsnotify-v1") + (version "1.4.7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/fsnotify.v1") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) + (build-system go-build-system) + (arguments + '(#:import-path + "gopkg.in/fsnotify.v1" + #:unpack-path + "gopkg.in/fsnotify.v1")) + (home-page "https://gopkg.in/fsnotify.v1") + (synopsis "File system notifications for Go") + (description + "Package fsnotify provides a platform-independent interface for file system +notifications.") + (license license:bsd-3))) + +(define-public go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7 + (package + (name "go-gopkg-in-tomb-v1") + (version "1.0.0-20141024135613-dd632973f1e7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/tomb.v1") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1lqmq1ag7s4b3gc3ddvr792c5xb5k6sfn0cchr3i2s7f1c231zjv")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/tomb.v1" #:unpack-path "gopkg.in/tomb.v1")) + (home-page "https://gopkg.in/tomb.v1") + (synopsis "Installation and usage") + (description + "The tomb package offers a conventional API for clean goroutine termination.") + (license license:bsd-3))) + +(define-public go-gopkg-in-yaml-v2-2.2.1 + (package + (name "go-gopkg-in-yaml-v2") + (version "2.2.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0dwjrs2lp2gdlscs7bsrmyc5yf6mm4fvgw71bzr9mv2qrd2q73s1")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v2") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language.") + (license license:asl2.0))) + +(define-public go-github-com-onsi-gomega-1.5.0 + (package + (name "go-github-com-onsi-gomega") + (version "1.5.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/onsi/gomega") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1n7i4hksdgv410m43v2sw14bl5vy59dkp6nlw5l76nibbh37syr9")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/onsi/gomega")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1) + ("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" + ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) + ("go-gopkg-in-fsnotify-v1-1.4.7" ,go-gopkg-in-fsnotify-v1-1.4.7) + ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e" + ,go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e) + ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" + ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) + ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" + ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) + ("go-github-com-onsi-ginkgo-1.6.0" ,go-github-com-onsi-ginkgo-1.6.0) + ("go-github-com-hpcloud-tail-1.0.0" ,go-github-com-hpcloud-tail-1.0.0) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0) + ("go-github-com-fsnotify-fsnotify-1.4.7" + ,go-github-com-fsnotify-fsnotify-1.4.7))) + (home-page "https://github.com/onsi/gomega") + (synopsis ": a BDD Testing Framework for Golang") + (description + "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library.") + (license license:expat))) + +(define-public go-github-com-sergi-go-diff-1.0.0 + (package + (name "go-github-com-sergi-go-diff") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sergi/go-diff") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0swiazj8wphs2zmk1qgq75xza6m19snif94h2m6fi8dqkwqdl7c7")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/sergi/go-diff")) + (home-page "https://github.com/sergi/go-diff") + (synopsis "go-diff") + (description + "go-diff offers algorithms to perform operations required for synchronizing plain +text:") + (license license:expat))) + +(define-public go-golang-org-x-crypto-0.0.0-20190426145343-a29dc8fdc734 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20190426145343-a29dc8fdc734") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "07f0jj4haqs0ywc1akk1qjwn5msl2j0pry1rxjkkbfcq4r6ihc1p")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" + ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) + ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" + ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-github-com-aphistic-sweet-0.2.0 + (package + (name "go-github-com-aphistic-sweet") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/aphistic/sweet") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1bb4qagfxf6byqn2yx0vq24xfvisz3ah4w6bvqclc8cklvfngw43")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/aphistic/sweet")) + (propagated-inputs + `(("go-golang-org-x-crypto-0.0.0-20190426145343-a29dc8fdc734" + ,go-golang-org-x-crypto-0.0.0-20190426145343-a29dc8fdc734) + ("go-github-com-sergi-go-diff-1.0.0" + ,go-github-com-sergi-go-diff-1.0.0) + ("go-github-com-onsi-gomega-1.5.0" ,go-github-com-onsi-gomega-1.5.0) + ("go-github-com-mgutz-ansi-0.0.0-20170206155736-9520e82c474b" + ,go-github-com-mgutz-ansi-0.0.0-20170206155736-9520e82c474b) + ("go-github-com-mattn-go-colorable-0.1.1" + ,go-github-com-mattn-go-colorable-0.1.1))) + (home-page "https://github.com/aphistic/sweet") + (synopsis "sweet") + (description + "Sweet is a pluggable test runner capable of hooking into standard Go tests. It +attempts to provide access to the standard Go test tool as close as possible +while adding support for test suites and plugins that can hook into test results +to add additional functionality.") + (license license:expat))) + +(define-public go-github-com-jmespath-go-jmespath-0.0.0-20180206201540-c2b33e8439af + (package + (name "go-github-com-jmespath-go-jmespath") + (version "0.0.0-20180206201540-c2b33e8439af") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jmespath/go-jmespath") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1r6w7ydx8ydryxk3sfhzsk8m6f1nsik9jg3i1zhi69v4kfl4d5cz")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/jmespath/go-jmespath")) + (home-page "https://github.com/jmespath/go-jmespath") + (synopsis "go-jmespath - A JMESPath implementation in Go") + (description + "go-jmespath is a GO implementation of JMESPath, which is a query language for +JSON. It will take a JSON document and transform it into another JSON document +through a JMESPath expression.") + (license license:asl2.0))) + +(define-public go-github-com-aws-aws-sdk-go-1.20.6 + (package + (name "go-github-com-aws-aws-sdk-go") + (version "1.20.6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/aws/aws-sdk-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "016vy5s9finyfgh08j7rvn2pnwymdgj2ydr59w57pysnri87mdwx")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/aws/aws-sdk-go")) + (propagated-inputs + `(("go-github-com-jmespath-go-jmespath-0.0.0-20180206201540-c2b33e8439af" + ,go-github-com-jmespath-go-jmespath-0.0.0-20180206201540-c2b33e8439af))) + (home-page "https://github.com/aws/aws-sdk-go") + (synopsis "AWS SDK for Go") + (description + "Package sdk is the official AWS SDK for the Go programming language.") + (license license:asl2.0))) + +(define-public go-github-com-aybabtme-rgbterm-0.0.0-20170906152045-cc83f3b3ce59 + (package + (name "go-github-com-aybabtme-rgbterm") + (version "0.0.0-20170906152045-cc83f3b3ce59") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/aybabtme/rgbterm") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wvmxvjn64968ikvnxrflb1x8rlcwzpfl53fzbxff2axbx9lq50q")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/aybabtme/rgbterm")) + (home-page "https://github.com/aybabtme/rgbterm") + (synopsis "RGB terminal") + (description + "Package rgbterm colorizes bytes and strings using RGB colors, for a full range +of pretty terminal strings.") + (license license:expat))) + +(define-public go-github-com-fatih-color-1.7.0 + (package + (name "go-github-com-fatih-color") + (version "1.7.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/fatih/color") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0v8msvg38r8d1iiq2i5r4xyfx0invhc941kjrsg5gzwvagv55inv")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/fatih/color")) + (home-page "https://github.com/fatih/color") + (synopsis "color") + (description + "Package color is an ANSI color package to output colorized or SGR defined output +to the standard output. The API can be used in several way, pick one that suits +you.") + (license license:expat))) + +(define-public go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515 + (package + (name "go-github-com-kr-logfmt") + (version "0.0.0-20140226030751-b84e30acd515") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/logfmt") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "02ldzxgznrfdzvghfraslhgp19la1fczcbzh7wm2zdc6lmpd1qq9")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/logfmt")) + (home-page "https://github.com/kr/logfmt") + (synopsis #f) + (description "Package implements the decoding of logfmt key-value pairs.") + (license license:expat))) + +(define-public go-github-com-go-logfmt-logfmt-0.4.0 + (package + (name "go-github-com-go-logfmt-logfmt") + (version "0.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/go-logfmt/logfmt") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "06smxc112xmixz78nyvk3b2hmc7wasf2sl5vxj1xz62kqcq9lzm9")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/go-logfmt/logfmt")) + (propagated-inputs + `(("go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515" + ,go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515))) + (home-page "https://github.com/go-logfmt/logfmt") + (synopsis "logfmt") + (description + "Package logfmt implements utilities to marshal and unmarshal data in the logfmt +format. The logfmt format records key/value pairs in a way that balances +readability for humans and simplicity of computer parsing. It is most commonly +used as a more human friendly alternative to JSON for structured logging.") + (license license:expat))) + +(define-public go-github-com-golang-protobuf-1.3.1 + (package + (name "go-github-com-golang-protobuf") + (version "1.3.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "15am4s4646qy6iv0g3kkqq52rzykqjhm4bf08dk0fy2r58knpsyl")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code +github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-github-com-google-uuid-1.1.1 + (package + (name "go-github-com-google-uuid") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/uuid") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hfxcf9frkb57k6q0rdkrmnfs78ms21r1qfk9fhlqga2yh5xg8zb")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/uuid")) + (home-page "https://github.com/google/uuid") + (synopsis "uuid") + (description "Package uuid generates and inspects UUIDs.") + (license license:bsd-3))) + +(define-public go-github-com-jpillora-backoff-0.0.0-20180909062703-3050d21c67d7 + (package + (name "go-github-com-jpillora-backoff") + (version "0.0.0-20180909062703-3050d21c67d7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jpillora/backoff") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1nxapdx9xg5gwiscfhq7m0w14hj4gaxb4avmgf1mx9zd3jnw9jxv")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/jpillora/backoff")) + (home-page "https://github.com/jpillora/backoff") + (synopsis "Backoff") + (description + "Package backoff provides an exponential-backoff implementation.") + (license license:expat))) + +(define-public go-github-com-kr-pretty-0.2.0 + (package + (name "go-github-com-kr-pretty") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/pretty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ywbfzz1h3a3qd8rpkiqwi1dm4w8ls9ijb4x1b7567grns9f0vnp")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/pretty")) + (propagated-inputs + `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) + (home-page "https://github.com/kr/pretty") + (synopsis #f) + (description + "Package pretty provides pretty-printing for Go values. This is useful during +debugging, to avoid wrapping long output lines in the terminal.") + (license license:expat))) + +(define-public go-github-com-mattn-go-colorable-0.1.2 + (package + (name "go-github-com-mattn-go-colorable") + (version "0.1.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mattn/go-colorable") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0512jm3wmzkkn7d99x9wflyqf48n5ri3npy1fqkq6l6adc5mni3n")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mattn/go-colorable")) + (propagated-inputs + `(("go-github-com-mattn-go-isatty-0.0.8" + ,go-github-com-mattn-go-isatty-0.0.8))) + (home-page "https://github.com/mattn/go-colorable") + (synopsis "go-colorable") + (description "Colorable writer for windows.") + (license license:expat))) + +(define-public go-github-com-pkg-errors-0.8.1 + (package + (name "go-github-com-pkg-errors") + (version "0.8.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pkg/errors") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0g5qcb4d4fd96midz0zdk8b9kz8xkzwfa8kr1cliqbg8sxsy5vd1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pkg/errors")) + (home-page "https://github.com/pkg/errors") + (synopsis "errors") + (description "Package errors provides simple error handling primitives.") + (license license:bsd-2))) + +(define-public go-github-com-rogpeppe-fastuuid-1.1.0 + (package + (name "go-github-com-rogpeppe-fastuuid") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/rogpeppe/fastuuid") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1jlif5pxyz3md02ij93kd2y2j1zz0ajc9k8azvn83vv6l3r5c1zg")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/rogpeppe/fastuuid")) + (home-page "https://github.com/rogpeppe/fastuuid") + (synopsis "fastuuid") + (description + "Package fastuuid provides fast UUID generation of 192 bit universally unique +identifiers.") + (license license:bsd-3))) + +(define-public go-github-com-smartystreets-go-aws-auth-0.0.0-20180515143844-0c1422d1fdb9 + (package + (name "go-github-com-smartystreets-go-aws-auth") + (version "0.0.0-20180515143844-0c1422d1fdb9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/smarty-archives/go-aws-auth") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0krfdpgn3gfii1z9fi8ydfw0wwfqyvp6w3rji7w92m528zkjl93d")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/smartystreets/go-aws-auth")) + (home-page "https://github.com/smartystreets/go-aws-auth") + (synopsis "go-aws-auth") + (description + "Package awsauth implements AWS request signing using Signed Signature Version 2, +Signed Signature Version 3, and Signed Signature Version 4. Supports S3 and +STS.") + (license license:expat))) + +(define-public go-github-com-smartystreets-assertions-1.0.0 + (package + (name "go-github-com-smartystreets-assertions") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/smartystreets/assertions") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1188hs39zvil41sdnxs83h1hp319lfyc5n2rvd1xnhz1dh5qjjh4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/smartystreets/assertions")) + (home-page "https://github.com/smartystreets/assertions") + (synopsis #f) + (description + "Package assertions contains the implementations for all assertions which are +referenced in goconvey's `convey` package +(github.com/smartystreets/goconvey/convey) and gunit +(github.com/smartystreets/gunit) for use with the So(...) method. They can also +be used in traditional Go test functions and even in applications.") + (license license:expat))) + +(define-public go-github-com-smartystreets-gunit-1.0.0 + (package + (name "go-github-com-smartystreets-gunit") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/smartystreets/gunit") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "11d09rl5qqpj36a311pjj8w5jkj83d5b8gdcsx8f1zn4j924sm5d")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/smartystreets/gunit")) + (propagated-inputs + `(("go-github-com-smartystreets-assertions-1.0.0" + ,go-github-com-smartystreets-assertions-1.0.0))) + (home-page "https://github.com/smartystreets/gunit") + (synopsis "gunit") + (description + "Package gunit provides \"testing\" package hooks and convenience functions for +writing tests in an xUnit style. See the README file and the examples folder +for examples.") + (license license:expat))) + +(define-public go-github-com-stretchr-testify-1.4.0 + (package + (name "go-github-com-stretchr-testify") + (version "1.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "187i5g88sxfy4vxpm7dw1gwv29pa2qaq475lxrdh5livh69wqfjb")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) + ("go-github-com-stretchr-objx-0.1.0" + ,go-github-com-stretchr-objx-0.1.0) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.0" + ,go-github-com-davecgh-go-spew-1.1.0))) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in +it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that +your code will behave as you intend.") + (license license:expat))) + +(define-public go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0 + (package + (name "go-github-com-tj-assert") + (version "0.0.0-20171129193455-018094318fb0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/tj/assert") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "15ika7izp5hkd10dm30apwfvpm0d1yl2rnxs6896q0svz9zvi2z3")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/tj/assert")) + (home-page "https://github.com/tj/assert") + (synopsis "assert") + (description + "Package assert implements the same assertions as the `assert` package but stops +test execution when a test fails.") + (license license:expat))) + +(define-public go-github-com-tj-go-elastic-0.0.0-20171221160941-36157cbbebc2 + (package + (name "go-github-com-tj-go-elastic") + (version "0.0.0-20171221160941-36157cbbebc2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/tj/go-elastic") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1r94vc4hbfvqvjz74n4mvsw4dy3vbyzlivb90kyn8vn76a4wqk69")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/tj/go-elastic")) + (home-page "https://github.com/tj/go-elastic") + (synopsis "go-elastic") + (description + "Package elastic provides an Elasticsearch client with AWS sigv4 support.") + (license license:expat))) + +(define-public go-github-com-tj-go-kinesis-0.0.0-20171128231115-08b17f58cb1b + (package + (name "go-github-com-tj-go-kinesis") + (version "0.0.0-20171128231115-08b17f58cb1b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/tj/go-kinesis") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "108c6p5j6rhhc2cnc2v5368yfsw73y6lzlvz02vpvvjph8rhmld4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/tj/go-kinesis")) + (home-page "https://github.com/tj/go-kinesis") + (synopsis "go-kinesis") + (description + "Package kinesis implements a batch producer built on top of the official AWS +SDK.") + (license license:expat))) + +(define-public go-github-com-tj-go-spin-1.1.0 + (package + (name "go-github-com-tj-go-spin") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/tj/go-spin") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "11xr67991m5pwsy1dira3iwd0sr55vmn1cyjwmlqziw4bwpym64s")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/tj/go-spin")) + (home-page "https://github.com/tj/go-spin") + (synopsis #f) + (description #f) + (license #f))) + +(define-public go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190620200207-3b0461eec859") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0l00c8l0a8xnv6qdpwfzxxsr58jggacgzdrwiprrfx2xqm37b6d5")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20180917221912-90fa682c2a6e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-golang-org-x-text-0.3.2 + (package + (name "go-golang-org-x-text") + (version "0.3.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0flv9idw0jm5nm8lx25xqanbkqgfiym6619w575p7nrdh0riqwqh")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/text")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" + ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) + (home-page "https://golang.org/x/text") + (synopsis "Go Text") + (description + "text is a repository of text-related packages related to internationalization +(i18n) and localization (l10n), such as character encodings, text +transformations, and locale-specific text handling.") + (license license:bsd-3))) + +(define-public go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15 + (package + (name "go-gopkg-in-check-v1") + (version "1.0.0-20190902080502-41f04d3bba15") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/check.v1") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0vfk9czmlxmp6wndq8k17rhnjxal764mxfhrccza7nwlia760pjy")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) + (home-page "https://gopkg.in/check.v1") + (synopsis "Instructions") + (description + "Package check is a rich testing extension for Go's testing package.") + (license license:bsd-2))) + +(define-public go-github-com-apex-log-1.4.0 + (package + (name "go-github-com-apex-log") + (version "1.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/apex/log") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0711096f04dyjk2vgj5b50491fl36wciwbq80xwvns5wwkqdg2z5")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/apex/log")) + (propagated-inputs + `(("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" + ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) + ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) + ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" + ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) + ("go-github-com-tj-go-spin-1.1.0" ,go-github-com-tj-go-spin-1.1.0) + ("go-github-com-tj-go-kinesis-0.0.0-20171128231115-08b17f58cb1b" + ,go-github-com-tj-go-kinesis-0.0.0-20171128231115-08b17f58cb1b) + ("go-github-com-tj-go-elastic-0.0.0-20171221160941-36157cbbebc2" + ,go-github-com-tj-go-elastic-0.0.0-20171221160941-36157cbbebc2) + ("go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0" + ,go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0) + ("go-github-com-stretchr-testify-1.4.0" + ,go-github-com-stretchr-testify-1.4.0) + ("go-github-com-smartystreets-gunit-1.0.0" + ,go-github-com-smartystreets-gunit-1.0.0) + ("go-github-com-smartystreets-go-aws-auth-0.0.0-20180515143844-0c1422d1fdb9" + ,go-github-com-smartystreets-go-aws-auth-0.0.0-20180515143844-0c1422d1fdb9) + ("go-github-com-rogpeppe-fastuuid-1.1.0" + ,go-github-com-rogpeppe-fastuuid-1.1.0) + ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) + ("go-github-com-mattn-go-colorable-0.1.2" + ,go-github-com-mattn-go-colorable-0.1.2) + ("go-github-com-kr-pretty-0.2.0" ,go-github-com-kr-pretty-0.2.0) + ("go-github-com-jpillora-backoff-0.0.0-20180909062703-3050d21c67d7" + ,go-github-com-jpillora-backoff-0.0.0-20180909062703-3050d21c67d7) + ("go-github-com-google-uuid-1.1.1" ,go-github-com-google-uuid-1.1.1) + ("go-github-com-golang-protobuf-1.3.1" + ,go-github-com-golang-protobuf-1.3.1) + ("go-github-com-go-logfmt-logfmt-0.4.0" + ,go-github-com-go-logfmt-logfmt-0.4.0) + ("go-github-com-fatih-color-1.7.0" ,go-github-com-fatih-color-1.7.0) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1) + ("go-github-com-aybabtme-rgbterm-0.0.0-20170906152045-cc83f3b3ce59" + ,go-github-com-aybabtme-rgbterm-0.0.0-20170906152045-cc83f3b3ce59) + ("go-github-com-aws-aws-sdk-go-1.20.6" + ,go-github-com-aws-aws-sdk-go-1.20.6) + ("go-github-com-aphistic-sweet-0.2.0" + ,go-github-com-aphistic-sweet-0.2.0) + ("go-github-com-aphistic-golf-0.0.0-20180712155816-02c07f170c5a" + ,go-github-com-aphistic-golf-0.0.0-20180712155816-02c07f170c5a) + ("go-github-com-apex-logs-0.0.7" ,go-github-com-apex-logs-0.0.7))) + (home-page "https://github.com/apex/log") + (synopsis "Handlers") + (description + "Package log implements a simple structured logging API designed with few +assumptions. Designed for centralized logging solutions such as Kinesis which +require encoding and decoding before fanning-out to handlers.") + (license license:expat))) + +(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0 + (package + (name "go-github-com-cpuguy83-go-md2man-v2") + (version "2.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cpuguy83/go-md2man") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) + (propagated-inputs + `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" + ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) + ("go-github-com-russross-blackfriday-v2-2.0.1" + ,go-github-com-russross-blackfriday-v2-2.0.1) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0))) + (home-page "https://github.com/cpuguy83/go-md2man") + (synopsis "go-md2man") + (description "Converts markdown into roff (man pages).") + (license license:expat))) + +(define-public go-github-com-cyphar-filepath-securejoin-0.2.2 + (package + (name "go-github-com-cyphar-filepath-securejoin") + (version "0.2.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cyphar/filepath-securejoin") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0id32zjb92wm569m29nfrzz5mw9z1glr3klayr6j134pp4h1sgq4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/cyphar/filepath-securejoin")) + (home-page "https://github.com/cyphar/filepath-securejoin") + (synopsis #f) + (description + "Package securejoin is an implementation of the hopefully-soon-to-be-included +SecureJoin helper that is meant to be part of the \"path/filepath\" package. The +purpose of this project is to provide a PoC implementation to make the +SecureJoin proposal +(@url{https://github.com/golang/go/issues/20126,https://github.com/golang/go/issues/20126}) +more tangible.") + (license license:bsd-3))) + +(define-public go-github-com-docker-go-units-0.4.0 + (package + (name "go-github-com-docker-go-units") + (version "0.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/docker/go-units") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0k8gja8ql4pqg5rzmqvka42vjfs6rzablak87whcnqba6qxpimvz")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/docker/go-units")) + (home-page "https://github.com/docker/go-units") + (synopsis "Introduction") + (description + "Package units provides helper function to parse and print size and time units in +human-readable format.") + (license license:asl2.0))) + +(define-public go-google-golang-org-protobuf-1.23.0 + (package + (name "go-google-golang-org-protobuf") + (version "1.23.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03yan0m1v0zmlr935p4n24fd376mznsg85zy8sywbgisls4s1bzy")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.0" + ,go-github-com-golang-protobuf-1.4.0))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is +a language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol +buffer developer guide} for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.4.2 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0m5z81im4nsyfgarjhppayk4hqnrwswr3nix9mj8pff8x9jvcjqw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.23.0" + ,go-google-golang-org-protobuf-1.23.0) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code +github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-github-com-google-go-cmp-0.5.0 + (package + (name "go-github-com-google-go-cmp") + (version "0.5.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "04pzp583p6b32y34c6jygfxarff9qjs39rarvfh6467z24sdd9k4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically +equal.") + (license license:bsd-3))) + +(define-public go-github-com-klauspost-compress-1.11.3 + (package + (name "go-github-com-klauspost-compress") + (version "1.11.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/klauspost/compress") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "04wpilw6072fh2wd492ma1nw4br7bvz466mj0vi2m1g4w6d0z88z")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/klauspost/compress")) + (home-page "https://github.com/klauspost/compress") + (synopsis "compress") + (description "This package provides various compression algorithms.") + (license license:expat))) + +(define-public go-github-com-klauspost-pgzip-1.2.4 + (package + (name "go-github-com-klauspost-pgzip") + (version "1.2.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/klauspost/pgzip") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0mnhfdn0isbkra455jynqjbmrwymx09shlbzbyvgfycih3nbrif0")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/klauspost/pgzip")) + (home-page "https://github.com/klauspost/pgzip") + (synopsis "pgzip") + (description + "Package pgzip implements reading and writing of gzip format compressed files, as +specified in @url{https://rfc-editor.org/rfc/rfc1952.html,RFC 1952}.") + (license license:expat))) + +(define-public go-github-com-creack-pty-1.1.9 + (package + (name "go-github-com-creack-pty") + (version "1.1.9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/creack/pty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1v52599qq76dwq742mffakzj6mxqqccv2szn3hjicjld56nmd2d3")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/creack/pty")) + (home-page "https://github.com/creack/pty") + (synopsis "pty") + (description + "Package pty provides functions for working with Unix terminals.") + (license license:expat))) + +(define-public go-github-com-kr-text-0.2.0 + (package + (name "go-github-com-kr-text") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hf58ypz6rxsw6nx3i856whir9lvy4sdx946wbw1nfaf2rdmr9vx")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/text")) + (propagated-inputs + `(("go-github-com-creack-pty-1.1.9" ,go-github-com-creack-pty-1.1.9))) + (home-page "https://github.com/kr/text") + (synopsis #f) + (description + "Package text provides rudimentary functions for manipulating text in paragraphs.") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20200116001909-b77594299b42 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200116001909-b77594299b42") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0isfm6kmh4fjhh6m7mrb3zvdjka2y31c5habr5kydl7rg0lwkabv")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-mattn-go-isatty-0.0.12 + (package + (name "go-github-com-mattn-go-isatty") + (version "0.0.12") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mattn/go-isatty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1dfsh27d52wmz0nmmzm2382pfrs2fcijvh6cgir7jbb4pnigr5w4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mattn/go-isatty")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20200116001909-b77594299b42" + ,go-golang-org-x-sys-0.0.0-20200116001909-b77594299b42))) + (home-page "https://github.com/mattn/go-isatty") + (synopsis "go-isatty") + (description "Package isatty implements interface to isatty") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20200223170610-d5e6a3e2c0ae + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200223170610-d5e6a3e2c0ae") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0lz7vm5dz2p14fzq2j4m1l9p392cl0fa73aaf45gln07ylfajk4n")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-mattn-go-colorable-0.1.6 + (package + (name "go-github-com-mattn-go-colorable") + (version "0.1.6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mattn/go-colorable") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0zv9ix7g0qf71jdhv7gbab9hjfkgbxl22kwhpz9ck1y6m4g1zxaw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mattn/go-colorable")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20200223170610-d5e6a3e2c0ae" + ,go-golang-org-x-sys-0.0.0-20200223170610-d5e6a3e2c0ae) + ("go-github-com-mattn-go-isatty-0.0.12" + ,go-github-com-mattn-go-isatty-0.0.12))) + (home-page "https://github.com/mattn/go-colorable") + (synopsis "go-colorable") + (description "Colorable writer for windows.") + (license license:expat))) + +(define-public go-github-com-mohae-deepcopy-0.0.0-20170929034955-c48cc78d4826 + (package + (name "go-github-com-mohae-deepcopy") + (version "0.0.0-20170929034955-c48cc78d4826") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mohae/deepcopy") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0jdhsz0hsbn0k45rmvm39knbvs024j24ay2q65k5ih8ql8m2c0sd")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mohae/deepcopy")) + (home-page "https://github.com/mohae/deepcopy") + (synopsis "deepCopy") + (description + "deepcopy makes deep copies of things. A standard copy will copy the pointers: +deep copy copies the values pointed to. Unexported field values are not copied.") + (license license:expat))) + +(define-public go-github-com-kr-pty-1.1.1 + (package + (name "go-github-com-kr-pty") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/pty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0383f0mb9kqjvncqrfpidsf8y6ns5zlrc91c6a74xpyxjwvzl2y6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/pty")) + (home-page "https://github.com/kr/pty") + (synopsis "pty") + (description + "Package pty is a wrapper for github.com/creack/pty, which provides functions for +working with Unix terminals.") + (license license:expat))) + +(define-public go-github-com-kr-text-0.1.0 + (package + (name "go-github-com-kr-text") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1gm5bsl01apvc84bw06hasawyqm4q84vx1pm32wr9jnd7a8vjgj1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/text")) + (propagated-inputs + `(("go-github-com-kr-pty-1.1.1" ,go-github-com-kr-pty-1.1.1))) + (home-page "https://github.com/kr/text") + (synopsis #f) + (description + "Package text provides rudimentary functions for manipulating text in paragraphs.") + (license license:expat))) + +(define-public go-github-com-niemeyer-pretty-0.0.0-20200227124842-a10e7caefd8e + (package + (name "go-github-com-niemeyer-pretty") + (version "0.0.0-20200227124842-a10e7caefd8e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/niemeyer/pretty") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1jmazh4xzaa3v6g46hz60q2z7nmqs9l9cxdzmmscn3kbcs2znq4v")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/niemeyer/pretty")) + (propagated-inputs + `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) + (home-page "https://github.com/niemeyer/pretty") + (synopsis #f) + (description + "Package pretty provides pretty-printing for Go values. This is useful during +debugging, to avoid wrapping long output lines in the terminal.") + (license license:expat))) + +(define-public go-github-com-opencontainers-go-digest-1.0.0 + (package + (name "go-github-com-opencontainers-go-digest") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/go-digest") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0i5acjajvr6hi9zb7gxwifd8w28y884cv7cx36adj8lngj647xbi")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/go-digest")) + (home-page "https://github.com/opencontainers/go-digest") + (synopsis "go-digest") + (description + "Package digest provides a generalized type to opaquely represent message digests +and their operations within the registry. The Digest type is designed to serve +as a flexible identifier in a content-addressable system. More importantly, it +provides tools and wrappers to work with hash.Hash-based digests with little +effort.") + (license (list license:asl2.0 license:cc-by-sa4.0)))) + +(define-public go-github-com-opencontainers-image-spec-1.0.1 + (package + (name "go-github-com-opencontainers-image-spec") + (version "1.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/image-spec") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03dvbj3dln8c55v9gp79mgmz2yi2ws3r08iyz2fk41y3i22iaw1q")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/image-spec")) + (home-page "https://github.com/opencontainers/image-spec") + (synopsis "OCI Image Format Specification") + (description + "The OCI Image Format project creates and maintains the software shipping +container image format spec (OCI Image Format).") + (license license:asl2.0))) + +(define-public go-github-com-opencontainers-runc-1.0.0-rc90 + (package + (name "go-github-com-opencontainers-runc") + (version "1.0.0-rc90") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/runc") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0pi3rvj585997m4z9ljkxz2z9yxf9p2jr0pmqbqrc7bc95f5hagk")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/runc")) + (home-page "https://github.com/opencontainers/runc") + (synopsis "runc") + (description + "@code{runc} is a CLI tool for spawning and running containers on Linux according +to the OCI specification.") + (license license:asl2.0))) + +(define-public go-github-com-opencontainers-runtime-spec-1.0.2 + (package + (name "go-github-com-opencontainers-runtime-spec") + (version "1.0.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/runtime-spec") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19w981vcmd5lp2hy0630x6ayb8zz17n2vxqm2py5mg945xflcizg")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) + (home-page "https://github.com/opencontainers/runtime-spec") + (synopsis "Open Container Initiative Runtime Specification") + (description + "The @url{https://www.opencontainers.org,Open Container Initiative} develops +specifications for standards on Operating System process and application +containers.") + (license license:asl2.0))) + +(define-public go-github-com-pkg-errors-0.9.1 + (package + (name "go-github-com-pkg-errors") + (version "0.9.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pkg/errors") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1761pybhc2kqr6v5fm8faj08x9bql8427yqg6vnfv6nhrasx1mwq")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pkg/errors")) + (home-page "https://github.com/pkg/errors") + (synopsis "errors") + (description "Package errors provides simple error handling primitives.") + (license license:bsd-2))) + +(define-public go-github-com-rootless-containers-proto-0.1.0 + (package + (name "go-github-com-rootless-containers-proto") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/rootless-containers/proto") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1yik3b2fxpdkhplni8saabpvf43wnnz4wh6fapak29mkj3lx3mfh")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/rootless-containers/proto")) + (home-page "https://github.com/rootless-containers/proto") + (synopsis #f) + (description + "This project contains the +@url{https://developers.google.com/protocol-buffers/,protobuf} definition of the +@code{user.rootlesscontainers} extended attribute. The main purpose of this +attribute is to allow for a interoperable and standardised way of emulating +persistent syscalls in a @url{https://rootlesscontaine.rs/,rootless container} +(syscalls such as @code{chown(2)} which would ordinarily fail).") + (license license:asl2.0))) + +(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.3 + (package + (name "go-github-com-konsorten-go-windows-terminal-sequences") + (version "1.0.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/konsorten/go-windows-terminal-sequences") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1yrsd4s8vhjnxhwbigirymz89dn6qfjnhn28i33vvvdgf96j6ypl")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) + (home-page "https://github.com/konsorten/go-windows-terminal-sequences") + (synopsis "Windows Terminal Sequences") + (description + "This library allow for enabling Windows terminal color support for Go.") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190422165155-953cdadca894") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0gkha4whk8xkcv3isigbs250akag99isxnd3v9xmy0kl3g88hxy1")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-sirupsen-logrus-1.6.0 + (package + (name "go-github-com-sirupsen-logrus") + (version "1.6.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sirupsen/logrus") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1zf9is1yxxnna0d1pyag2m9ziy3l27zb2j92p9msm1gx5jjrvzzj")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/sirupsen/logrus")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894" + ,go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894) + ("go-github-com-stretchr-testify-1.2.2" + ,go-github-com-stretchr-testify-1.2.2) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.3" + ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.3) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/sirupsen/logrus") + (synopsis "Logrus") + (description + "Package logrus is a structured logger for Go, completely API compatible with the +standard library logger.") + (license license:expat))) + +(define-public go-github-com-davecgh-go-spew-1.1.0 + (package + (name "go-github-com-davecgh-go-spew") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/davecgh/go-spew") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/davecgh/go-spew")) + (home-page "https://github.com/davecgh/go-spew") + (synopsis "go-spew") + (description + "Go-spew implements a deep pretty printer for Go data structures to aid in +debugging. A comprehensive suite of tests with 100% test coverage is provided +to ensure proper functionality. See @code{test_coverage.txt} for the gocov +coverage report. Go-spew is licensed under the liberal ISC license, so it may +be used in open source or commercial projects.") + (license license:isc))) + +(define-public go-github-com-stretchr-objx-0.1.0 + (package + (name "go-github-com-stretchr-objx") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/objx") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/objx")) + (home-page "https://github.com/stretchr/objx") + (synopsis "Objx") + (description + "Objx - Go package for dealing with maps, slices, JSON and other data.") + (license license:expat))) + +(define-public go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c + (package + (name "go-gopkg-in-yaml-v3") + (version "3.0.0-20200313102051-9f266ea9e77c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v3") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1bbai3lzb50m0x2vwsdbagrbhvfylj9k1m32hgbqwldqx4p9ay35")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v3") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language.") + (license license:expat))) + +(define-public go-github-com-stretchr-testify-1.6.1 + (package + (name "go-github-com-stretchr-testify") + (version "1.6.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1yhiqqzjvi63pf01rgzx68gqkkvjx03fvl5wk30br5l6s81s090l")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (propagated-inputs + `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" + ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) + ("go-github-com-stretchr-objx-0.1.0" + ,go-github-com-stretchr-objx-0.1.0) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.0" + ,go-github-com-davecgh-go-spew-1.1.0))) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in +it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that +your code will behave as you intend.") + (license license:expat))) + +(define-public go-gopkg-in-yaml-v3-3.0.0-20200605160147-a5ece683394c + (package + (name "go-gopkg-in-yaml-v3") + (version "3.0.0-20200605160147-a5ece683394c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v3") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03cm7c3p5fh0aa8vnxv5010dgqqr268ivb480ix1salxx3396w68")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v3") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language.") + (license license:expat))) + +(define-public go-github-com-tj-assert-0.0.3 + (package + (name "go-github-com-tj-assert") + (version "0.0.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/tj/assert") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1j5swk3fjq1h5fpqkipddz2ccnbidr7qrpm5dpdaflg9q5jnc673")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/tj/assert")) + (propagated-inputs + `(("go-gopkg-in-yaml-v3-3.0.0-20200605160147-a5ece683394c" + ,go-gopkg-in-yaml-v3-3.0.0-20200605160147-a5ece683394c) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/tj/assert") + (synopsis "assert") + (description + "Package assert implements the same assertions as the `assert` package but stops +test execution when a test fails.") + (license license:expat))) + +(define-public go-github-com-russross-blackfriday-v2-2.0.1 + (package + (name "go-github-com-russross-blackfriday-v2") + (version "2.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/russross/blackfriday") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0nlz7isdd4rgnwzs68499hlwicxz34j2k2a0b8jy0y7ycd2bcr5j")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/russross/blackfriday/v2")) + (home-page "https://github.com/russross/blackfriday") + (synopsis "Blackfriday") + (description "Package blackfriday is a markdown processor.") + (license license:bsd-2))) + +(define-public go-github-com-shurcool-sanitized-anchor-name-1.0.0 + (package + (name "go-github-com-shurcool-sanitized-anchor-name") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/shurcooL/sanitized_anchor_name") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1gv9p2nr46z80dnfjsklc6zxbgk96349sdsxjz05f3z6wb6m5l8f")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/shurcooL/sanitized_anchor_name")) + (home-page "https://github.com/shurcooL/sanitized_anchor_name") + (synopsis "sanitized_anchor_name") + (description + "Package sanitized_anchor_name provides a func to create sanitized anchor names.") + (license license:expat))) + +(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d + (package + (name "go-github-com-cpuguy83-go-md2man-v2") + (version "2.0.0-20190314233015-f79a8a8ca69d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cpuguy83/go-md2man") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) + (propagated-inputs + `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" + ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) + ("go-github-com-russross-blackfriday-v2-2.0.1" + ,go-github-com-russross-blackfriday-v2-2.0.1) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0))) + (home-page "https://github.com/cpuguy83/go-md2man") + (synopsis "go-md2man") + (description "Converts markdown into roff (man pages).") + (license license:expat))) + +(define-public go-gopkg-in-yaml-v2-2.2.2 + (package + (name "go-gopkg-in-yaml-v2") + (version "2.2.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "01wj12jzsdqlnidpyjssmj0r4yavlqy7dwrg7adqd8dicjc4ncsa")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v2") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language.") + (license license:asl2.0))) + +(define-public go-github-com-urfave-cli-1.22.4 + (package + (name "go-github-com-urfave-cli") + (version "1.22.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/urfave/cli") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1s7frsmiih4wh8vpx9z3ck4667c6vpjrmba7b9ymnv1p9khyg8wc")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/urfave/cli")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) + ("go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d" + ,go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d) + ("go-github-com-burntsushi-toml-0.3.1" + ,go-github-com-burntsushi-toml-0.3.1))) + (home-page "https://github.com/urfave/cli") + (synopsis "cli") + (description + "Package cli provides a minimal framework for creating and organizing command +line Go applications. cli is designed to be easy to understand and write, the +most simple cli application can be written as follows:") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190222072716-a9d3bda3a223") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1w45zc13xrjzl19s1sx74r5mg3lf2z2nm13wygcdq5r5pyjlhdz9")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-mattn-go-isatty-0.0.8 + (package + (name "go-github-com-mattn-go-isatty") + (version "0.0.8") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mattn/go-isatty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0rqfh1rj6f5wm8p2ky7inm8g10152p7w6n2cli17kf9gad797i8h")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mattn/go-isatty")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223" + ,go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223))) + (home-page "https://github.com/mattn/go-isatty") + (synopsis "go-isatty") + (description "Package isatty implements interface to isatty") + (license license:expat))) + +(define-public go-github-com-mattn-go-colorable-0.1.4 + (package + (name "go-github-com-mattn-go-colorable") + (version "0.1.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mattn/go-colorable") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1yxcz08kminqr1221zxpibnbzfcgs3fafin0z9zqb3gqvf74jywz")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mattn/go-colorable")) + (propagated-inputs + `(("go-github-com-mattn-go-isatty-0.0.8" + ,go-github-com-mattn-go-isatty-0.0.8))) + (home-page "https://github.com/mattn/go-colorable") + (synopsis "go-colorable") + (description "Colorable writer for windows.") + (license license:expat))) + +(define-public go-github-com-mattn-go-isatty-0.0.11 + (package + (name "go-github-com-mattn-go-isatty") + (version "0.0.11") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mattn/go-isatty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0h671sv7hfprja495kavazkalkx7xzaqksjh13brcnwq67ijrali")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mattn/go-isatty")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037" + ,go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037))) + (home-page "https://github.com/mattn/go-isatty") + (synopsis "go-isatty") + (description "Package isatty implements interface to isatty") + (license license:expat))) + +(define-public go-github-com-fatih-color-1.9.0 + (package + (name "go-github-com-fatih-color") + (version "1.9.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/fatih/color") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "086z8ssmr1fn9ba4mqnw7pnccfpys6l5yfhvycv1gdrsk7n27mvs")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/fatih/color")) + (propagated-inputs + `(("go-github-com-mattn-go-isatty-0.0.11" + ,go-github-com-mattn-go-isatty-0.0.11) + ("go-github-com-mattn-go-colorable-0.1.4" + ,go-github-com-mattn-go-colorable-0.1.4))) + (home-page "https://github.com/fatih/color") + (synopsis "color") + (description + "Package color is an ANSI color package to output colorized or SGR defined output +to the standard output. The API can be used in several way, pick one that suits +you.") + (license license:expat))) + +(define-public go-github-com-davecgh-go-spew-1.1.1 + (package + (name "go-github-com-davecgh-go-spew") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/davecgh/go-spew") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/davecgh/go-spew")) + (home-page "https://github.com/davecgh/go-spew") + (synopsis "go-spew") + (description + "Go-spew implements a deep pretty printer for Go data structures to aid in +debugging. A comprehensive suite of tests with 100% test coverage is provided +to ensure proper functionality. See @code{test_coverage.txt} for the gocov +coverage report. Go-spew is licensed under the liberal ISC license, so it may +be used in open source or commercial projects.") + (license license:isc))) + +(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.1 + (package + (name "go-github-com-konsorten-go-windows-terminal-sequences") + (version "1.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/konsorten/go-windows-terminal-sequences") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1lchgf27n276vma6iyxa0v1xds68n2g8lih5lavqnx5x6q5pw2ip")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) + (home-page "https://github.com/konsorten/go-windows-terminal-sequences") + (synopsis "Windows Terminal Sequences") + (description + "This library allow for enabling Windows terminal color support for Go.") + (license license:expat))) + +(define-public go-github-com-pmezard-go-difflib-1.0.0 + (package + (name "go-github-com-pmezard-go-difflib") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pmezard/go-difflib") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pmezard/go-difflib")) + (home-page "https://github.com/pmezard/go-difflib") + (synopsis "go-difflib") + (description + "Go-difflib is a partial port of python 3 difflib package. Its main goal was to +make unified and context diff available in pure Go, mostly for testing purposes.") + (license license:bsd-3))) + +(define-public go-github-com-stretchr-objx-0.1.1 + (package + (name "go-github-com-stretchr-objx") + (version "0.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/objx") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0iph0qmpyqg4kwv8jsx6a56a7hhqq8swrazv40ycxk9rzr0s8yls")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/objx")) + (home-page "https://github.com/stretchr/objx") + (synopsis "Objx") + (description + "Objx - Go package for dealing with maps, slices, JSON and other data.") + (license license:expat))) + +(define-public go-github-com-stretchr-testify-1.2.2 + (package + (name "go-github-com-stretchr-testify") + (version "1.2.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0dlszlshlxbmmfxj5hlwgv3r22x0y1af45gn1vd198nvvs3pnvfs")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in +it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that +your code will behave as you intend.") + (license license:expat))) + +(define-public go-golang-org-x-crypto-0.0.0-20180904163835-0709b304e793 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20180904163835-0709b304e793") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0i05s09y5pavmfh71fgih7syxg58x7a4krgd8am6d3mnahnmab5c")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20180905080454-ebe1bf3edb33") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0rkspxyjxdmc9f4n09hgkwj8jjd8z5p8mc9z8vwqwqcwrqv4sg7c")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-sirupsen-logrus-1.3.0 + (package + (name "go-github-com-sirupsen-logrus") + (version "1.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sirupsen/logrus") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ib7k8cwxn53dyxd3af1g81z018n77n6q64pm4miznirf7c2c9gk")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/sirupsen/logrus")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33" + ,go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33) + ("go-golang-org-x-crypto-0.0.0-20180904163835-0709b304e793" + ,go-golang-org-x-crypto-0.0.0-20180904163835-0709b304e793) + ("go-github-com-stretchr-testify-1.2.2" + ,go-github-com-stretchr-testify-1.2.2) + ("go-github-com-stretchr-objx-0.1.1" + ,go-github-com-stretchr-objx-0.1.1) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.1" + ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.1) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/sirupsen/logrus") + (synopsis "Logrus") + (description + "Package logrus is a structured logger for Go, completely API compatible with the +standard library logger.") + (license license:expat))) + +(define-public go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20191011191535-87dc89f01550") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0z4i1m2yn3f31ci7wvcm2rxkx2yiv7a78mfzklncmsz2k97rlh2g")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" + ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) + ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" + ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20191026070338-33540a1f6037") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0fjcv0vzvi6za0b4xmnk3932pr9f9gczzf03y0kgq3ry9rqg169y")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-vbatts-go-mtree-0.5.0 + (package + (name "go-github-com-vbatts-go-mtree") + (version "0.5.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/vbatts/go-mtree") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0p42aliw6ngp7zgg5y9mi18z1ka9n0vblbrp5flp93i7qfmc5y0k")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/vbatts/go-mtree")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037" + ,go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037) + ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" + ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550) + ("go-github-com-sirupsen-logrus-1.3.0" + ,go-github-com-sirupsen-logrus-1.3.0) + ("go-github-com-fatih-color-1.9.0" ,go-github-com-fatih-color-1.9.0) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/vbatts/go-mtree") + (synopsis "go-mtree") + (description + "@code{mtree} is a filesystem hierarchy validation tooling and format. This is a +library and simple cli tool for +@url{https://www.freebsd.org/cgi/man.cgi?mtree%288%29=,mtree(8)} support.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190404232315-eb5bcb51f2a3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "17k4g8krxbl84gzcs275b7gsh66dzm15fdxivjnx9xz8q84l4kby")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20190412213103-97732733099d + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190412213103-97732733099d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "118hkp01i4z1f5h6hcjm0ff2ngqhrzj1f7731n0kw8dr6hvbx0sw")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-crypto-0.0.0-20200604202706-70a84ac30bf9 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20200604202706-70a84ac30bf9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0zr8np92g3qx7cdgaz4b2z5wnlym9lqyhrvs3xvv1fbsapd2z6i3")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" + ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) + ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" + ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20200622214017-ed371f2e16b4 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200622214017-ed371f2e16b4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "107wfy2fj6z5zps1v72j8drfrfvss1158drb0yqhz5awlbvgrpj7")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-1.22.0 + (package + (name "go-google-golang-org-protobuf") + (version "1.22.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0n7lc4m7kfvj01glc0gnjy0zsnsic7cxnbvlajy0h14cxbab87pj")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.0" + ,go-github-com-golang-protobuf-1.4.0))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is +a language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol +buffer developer guide} for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.4.1 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0w7ks4vffnnkp0miwgc3chrsnmya45lzvpahb2wmw0jwhdp5kdx7")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.22.0" + ,go-google-golang-org-protobuf-1.22.0) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code +github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-github-com-census-instrumentation-opencensus-proto-0.2.1 + (package + (name "go-github-com-census-instrumentation-opencensus-proto") + (version "0.2.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/census-instrumentation/opencensus-proto") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19fcx3sc99i5dsklny6r073z5j20vlwn2xqm6di1q3b1xwchzqfj")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/census-instrumentation/opencensus-proto")) + (home-page "https://github.com/census-instrumentation/opencensus-proto") + (synopsis + "OpenCensus Proto - Language Independent Interface Types For OpenCensus") + (description + "Census provides a framework to define and collect stats against metrics and to +break those stats down across user-defined dimensions.") + (license license:asl2.0))) + +(define-public go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4 + (package + (name "go-github-com-prometheus-client-model") + (version "0.0.0-20190812154241-14fe0d1b01d4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/prometheus/client_model") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0zdmk6rbbx39cvfz0r59v2jg5sg9yd02b4pds5n5llgvivi99550")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/prometheus/client_model")) + (propagated-inputs + `(("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" + ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0))) + (home-page "https://github.com/prometheus/client_model") + (synopsis "Deprecation note") + (description + "This repository used to contain the code that defined both the data model and +the exposition format of Prometheus metrics.") + (license license:asl2.0))) + +(define-public go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20190311212946-11955173bddd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hlkai67w167wiyivkzd1fgqrnyxkb94l2c6kr51jwcscizfyfn3")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3 + (package + (name "go-golang-org-x-lint") + (version "0.0.0-20190313153728-d0100b6bd8b3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/lint") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0b0amr9x4ji66iv9ayfx7zrfx52k1m5g66qfcxkgj80qrb1y2yn7")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/lint")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" + ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd))) + (home-page "https://golang.org/x/lint") + (synopsis "Installation") + (description "Package lint contains a linter for Go source code.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20190423024810-112230192c58 + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20190423024810-112230192c58") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "05i2k43j2d0llq768hg5pf3hb2yhfzp9la1w5wp0rsnnzblr0lfn")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the ones +provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135 + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20190524140312-2c0ae7006135") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1lsi2ssxajclj3bciz2a41v1vjv768ja3v6wnbyhxy8xphwkp4fk")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" + ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-google-golang-org-grpc-1.23.0 + (package + (name "go-google-golang-org-grpc") + (version "1.23.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1cn33r2gclmq2v1ndpf1n5bmhf2qs8mms7ii5cnl6f9ch4r2c4k3")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" + ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) + ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" + ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) + ("go-google-golang-org-appengine-1.1.0" + ,go-google-golang-org-appengine-1.1.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-google-go-cmp-0.2.0" + ,go-github-com-google-go-cmp-0.2.0) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0) + ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-client9-misspell-0.3.4" + ,go-github-com-client9-misspell-0.3.4) + ("go-github-com-burntsushi-toml-0.3.1" + ,go-github-com-burntsushi-toml-0.3.1) + ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC.") + (license license:asl2.0))) + +(define-public go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473 + (package + (name "go-github-com-envoyproxy-go-control-plane") + (version "0.9.1-0.20191026205805-5f8ba28d4473") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/envoyproxy/go-control-plane") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1f1s764rd41vd9vgk3r14h1m6fz6pdvxj6fd83q58gxifbc4q5w4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) + (propagated-inputs + `(("go-google-golang-org-grpc-1.23.0" ,go-google-golang-org-grpc-1.23.0) + ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" + ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) + ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" + ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2) + ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" + ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) + ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" + ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) + (home-page "https://github.com/envoyproxy/go-control-plane") + (synopsis "control-plane") + (description + "This repository contains a Go-based implementation of an API server that +implements the discovery service APIs defined in +@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") + (license license:asl2.0))) + +(define-public go-github-com-envoyproxy-protoc-gen-validate-0.1.0 + (package + (name "go-github-com-envoyproxy-protoc-gen-validate") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/envoyproxy/protoc-gen-validate") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0kxd3wwh3xwqk0r684hsy281xq4y71cd11d4q2hspcjbnlbwh7cy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/envoyproxy/protoc-gen-validate")) + (home-page "https://github.com/envoyproxy/protoc-gen-validate") + (synopsis "protoc-gen-validate (PGV)") + (description + "PGV is a protoc plugin to generate polyglot message validators. While protocol +buffers effectively guarantee the types of structured data, they cannot enforce +semantic rules for values. This plugin adds support to protoc-generated code to +validate such constraints.") + (license license:asl2.0))) + +(define-public go-github-com-google-go-cmp-0.2.0 + (package + (name "go-github-com-google-go-cmp") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fbv0x27k9sn8svafc0hjwsnckk864lv4yi7bvzrxvmd3d5hskds")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically +equal.") + (license license:bsd-3))) + +(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20190308221718-c2843e01d9a2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20190311183353-d8887717615a + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190311183353-d8887717615a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1wfm6ngxjyj7v5a2dqib6lw8bb2rdnf1kl48diykxjrsddn0s163")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190215142949-d0b11bdaac8a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.3.2 + (package + (name "go-github-com-golang-protobuf") + (version "1.3.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1k1wb4zr0qbwgpvz9q5ws9zhlal8hq7dmq62pwxxriksayl6hzym")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code +github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4 + (package + (name "go-golang-org-x-exp") + (version "0.0.0-20190121172915-509febef88a4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/exp") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "02isrh39z8znrp5znplzy0dip2gnrl3jm1355raliyvhnhg04j6q")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/exp")) + (home-page "https://golang.org/x/exp") + (synopsis "exp") + (description + "This subrepository holds experimental and deprecated (in the @code{old} +directory) packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961 + (package + (name "go-golang-org-x-lint") + (version "0.0.0-20190227174305-5b3e6a55c961") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/lint") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "04zp5vbds9nffmjg36wjpi5vg9zmf890yf78xxasai3ni637ivfw")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/lint")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" + ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c))) + (home-page "https://golang.org/x/lint") + (synopsis "Installation") + (description "Package lint contains a linter for Go source code.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190213061140-3a22650c66bd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12q6fgdkc0742vcms67nzadgdwvi3rnb1gx3vwkljhrvlnwvz7wc")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20181108010431-42b317875d0f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0mrjhk7al7yyh76x9flvxy4jm5jyqh2fxbxagpaazxn1xdgkaif3")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the ones +provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20180724234803-3673e40ba225") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0vx7mz18p480p7fh0w5jv6mfdbsswrlac1sz4i705q7q7ygz59lm")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-google-golang-org-appengine-1.4.0 + (package + (name "go-google-golang-org-appengine") + (version "1.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/appengine") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "06zl7w4sxgdq2pl94wy9ncii6h0z3szl4xpqds0sv3b3wbdlhbnn")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/appengine")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225" + ,go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0))) + (home-page "https://google.golang.org/appengine") + (synopsis "Go App Engine packages") + (description + "Package appengine provides basic functionality for Google App Engine.") + (license license:asl2.0))) + +(define-public go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20190226205152-f727befe758c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0rpcqw6z13qd33rbasg32zb0gdhgh5lzjla63r6g651zf6hpsak0")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-google-golang-org-appengine-1.4.0" + ,go-google-golang-org-appengine-1.4.0) + ("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" + ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) + ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" + ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-cloud-google-com-go-0.26.0 + (package + (name "go-cloud-google-com-go") + (version "0.26.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-cloud-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "149v3ci17g6wd2pm18mzcncq5qpl9hwdjnz3rlbn5rfidyn46la1")))) + (build-system go-build-system) + (arguments '(#:import-path "cloud.google.com/go")) + (home-page "https://cloud.google.com/go") + (synopsis "Google Cloud Client Libraries for Go") + (description + "Package cloud is the root of the packages used to access Google Cloud Services. +See +@url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} +for a full list of sub-packages.") + (license license:asl2.0))) + +(define-public go-github-com-burntsushi-toml-0.3.1 + (package + (name "go-github-com-burntsushi-toml") + (version "0.3.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/BurntSushi/toml") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fjdwwfzyzllgiwydknf1pwjvy49qxfsczqx5gz3y0izs7as99j6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/BurntSushi/toml")) + (home-page "https://github.com/BurntSushi/toml") + (synopsis "Testing") + (description + "Package toml implements decoding and encoding of TOML files.") + (license license:expat))) + +(define-public go-github-com-client9-misspell-0.3.4 + (package + (name "go-github-com-client9-misspell") + (version "0.3.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/client9/misspell") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1vwf33wsc4la25zk9nylpbp9px3svlmldkm0bha4hp56jws4q9cs")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/client9/misspell")) + (home-page "https://github.com/client9/misspell") + (synopsis "Install") + (description + "Package misspell corrects commonly misspelled English words in source files.") + (license license:expat))) + +(define-public go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b + (package + (name "go-github-com-golang-glog") + (version "0.0.0-20160126235308-23def4e6c14b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/glog") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0jb2834rw5sykfr937fxi8hxi2zy80sj2bdn9b3jb4b26ksqng30")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/glog")) + (home-page "https://github.com/golang/glog") + (synopsis "glog") + (description + "Package glog implements logging analogous to the Google-internal C++ +INFO/ERROR/V setup. It provides functions Info, Warning, Error, Fatal, plus +formatting variants such as Infof. It also provides V-style logging controlled +by the -v and -vmodule=file=2 flags.") + (license license:asl2.0))) + +(define-public go-github-com-golang-mock-1.1.1 + (package + (name "go-github-com-golang-mock") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/mock") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ap8wb6pdl6ccmdb43advjll2ly4sz26wsc3axw0hbrjrybybzgy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/mock")) + (home-page "https://github.com/golang/mock") + (synopsis "gomock") + (description + "gomock is a mocking framework for the @url{http://golang.org/,Go programming +language}. It integrates well with Go's built-in @code{testing} package, but +can be used in other contexts too.") + (license license:asl2.0))) + +(define-public go-github-com-golang-protobuf-1.2.0 + (package + (name "go-github-com-golang-protobuf") + (version "1.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0kf4b59rcbb1cchfny2dm9jyznp8ri2hsb14n8iak1q8986xa0ab")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code +github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3 + (package + (name "go-golang-org-x-lint") + (version "0.0.0-20181026193005-c67002cb31c3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/lint") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0gymbggskjmphqxqcx4s0vnlcz7mygbix0vhwcwv5r67c0bf6765")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/lint")) + (home-page "https://golang.org/x/lint") + (synopsis "Installation") + (description "Package lint contains a linter for Go source code.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d + (package + (name "go-golang-org-x-net") + (version "0.0.0-20180826012351-8a410e7b638d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hp0l8f6fir5gmgrjq0mhh5ikc0rlrm72774228800kfwqjrxxny")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be + (package + (name "go-golang-org-x-oauth2") + (version "0.0.0-20180821212333-d2e6202438be") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/oauth2") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wbn75fd10485nb93bm4kqldqifdim5xqy4v7r5sdvimvf3fyhn7")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/oauth2")) + (home-page "https://golang.org/x/oauth2") + (synopsis "OAuth2 for Go") + (description + "Package oauth2 provides support for making OAuth2 authorized and authenticated +HTTP requests, as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC +6749}. It can additionally grant authorization with Bearer JWT.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20180314180146-1d60e4601c6f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "046jlanz2lkxq1r57x9bl6s4cvfqaic6p2xybsj8mq1120jv4rs6")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the ones +provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20180830151530-49385e6e1522") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0spbldahns09fdxkxflb1x24f8k2awdlnr6k5i7ci4fqd19r1dv4")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-text-0.3.0 + (package + (name "go-golang-org-x-text") + (version "0.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/text")) + (home-page "https://golang.org/x/text") + (synopsis "Go Text") + (description + "text is a repository of text-related packages related to internationalization +(i18n) and localization (l10n), such as character encodings, text +transformations, and locale-specific text handling.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20190114222345-bf090417da8b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1n3xp56k4k3lj06rx7587wr5gnwg0148nvwx6ch0g7ar02hh94hw")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-google-golang-org-appengine-1.1.0 + (package + (name "go-google-golang-org-appengine") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/appengine") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1pz202zszg8f35dk5pfhwgcdi3r6dx1l4yk6x6ly7nb4j45zi96x")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/appengine")) + (home-page "https://google.golang.org/appengine") + (synopsis "Go App Engine packages") + (description + "Package appengine provides basic functionality for Google App Engine.") + (license license:asl2.0))) + +(define-public go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8 + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20180817151627-c66870c02cf8") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0siq7sv68556ygqi2d2zmvx8l1xjqdc0fylqzci5h1mq2i14bayn")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for +interacting with Google's gRPC APIs.") + (license license:asl2.0))) + +(define-public go-google-golang-org-grpc-1.19.0 + (package + (name "go-google-golang-org-grpc") + (version "1.19.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1znqwpj7ix3dpzx4zch0q70sdl3z5lvbb7v3q4i8sf8kas3yv71v")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" + ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) + ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" + ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) + ("go-google-golang-org-appengine-1.1.0" + ,go-google-golang-org-appengine-1.1.0) + ("go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b" + ,go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b) + ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522" + ,go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522) + ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" + ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d" + ,go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d) + ("go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3" + ,go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3) + ("go-github-com-golang-protobuf-1.2.0" + ,go-github-com-golang-protobuf-1.2.0) + ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-client9-misspell-0.3.4" + ,go-github-com-client9-misspell-0.3.4) + ("go-github-com-burntsushi-toml-0.3.1" + ,go-github-com-burntsushi-toml-0.3.1) + ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC.") + (license license:asl2.0))) + +(define-public go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099 + (package + (name "go-honnef-co-go-tools") + (version "0.0.0-20190102054323-c2f93a96b099") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/dominikh/go-tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "07lg29aiap80ca9f201jzng9vjr168cv3qmvjmbd7v5pmww9kmr8")))) + (build-system go-build-system) + (arguments '(#:import-path "honnef.co/go/tools")) + (home-page "https://honnef.co/go/tools") + (synopsis "Documentation") + (description + "Staticcheck is a state of the art linter for the . Using static analysis, it +finds bugs and performance issues, offers simplifications, and enforces style +rules.") + (license license:expat))) + +(define-public go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55 + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20190819201941-24fa4b261c55") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "109zhaqlfd8zkbr1hk6zqbs6vcxfrk64scjwh2nswph05gr0m84d")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" + ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) + ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) + ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" + ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) + ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" + ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) + ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" + ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for +interacting with Google's gRPC APIs.") + (license license:asl2.0))) + +(define-public go-google-golang-org-grpc-1.27.0 + (package + (name "go-google-golang-org-grpc") + (version "1.27.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grpc/grpc-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ijrmgrxyabfn51nm3p9l81iaasq5fg237wnr6mdc4dzsfcg8kd7")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/grpc")) + (propagated-inputs + `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" + ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" + ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) + ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" + ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) + ("go-github-com-google-go-cmp-0.2.0" + ,go-github-com-google-go-cmp-0.2.0) + ("go-github-com-golang-protobuf-1.3.2" + ,go-github-com-golang-protobuf-1.3.2) + ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) + ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" + ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) + ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" + ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) + ("go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473" + ,go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473))) + (home-page "https://google.golang.org/grpc") + (synopsis "gRPC-Go") + (description "Package grpc implements an RPC system called gRPC.") + (license license:asl2.0))) + +(define-public go-github-com-google-go-cmp-0.3.0 + (package + (name "go-github-com-google-go-cmp") + (version "0.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1hyxx3434zshl2m9ja78gwlkg1rx9yl6diqa7dnjb31xz5x4gbjj")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically +equal.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd + (package + (name "go-google-golang-org-protobuf") + (version "0.0.0-20200109180630-ec00e32a8dfd") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0w6lp9w2avxcpxwzzhspr209ifhyjagvs23k0vykfdqahl1aplrh")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.3.0" + ,go-github-com-google-go-cmp-0.3.0))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is +a language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol +buffer developer guide} for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.4.0-rc.1 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.0-rc.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "186rirvbfgv6hrxp27ipx2cdpv19qifdd20biqfdm01wiyclqimn")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd" + ,go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd) + ("go-github-com-google-go-cmp-0.3.1" + ,go-github-com-google-go-cmp-0.3.1))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code +github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-github-com-google-go-cmp-0.3.1 + (package + (name "go-github-com-google-go-cmp") + (version "0.3.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1caw49i0plkjxir7kdf5qhwls3krqwfmi7g4h392rdfwi3kfahx1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically +equal.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64 + (package + (name "go-google-golang-org-protobuf") + (version "0.0.0-20200221191635-4d8936d0db64") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0563bsvdjj6k0sgwqd5yzrgfiax7sp3lcwh608gync5sv9fx39cy")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.3.1" + ,go-github-com-google-go-cmp-0.3.1) + ("go-github-com-golang-protobuf-1.4.0-rc.1" + ,go-github-com-golang-protobuf-1.4.0-rc.1))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is +a language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol +buffer developer guide} for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.0-rc.1.0.20200221234624-67d41d38c208") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ykxhg3zixmw25pd435f8h16wnz1g00jpcmmg3xl030kksgqgpp6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64" + ,go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code +github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60 + (package + (name "go-google-golang-org-protobuf") + (version "0.0.0-20200228230310-ab0ca4ff8a60") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1rinspcznfp85yz4vrlf4h38hr576virgv8lcs22bsylqga808sd")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208" + ,go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is +a language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol +buffer developer guide} for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.4.0-rc.2 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.0-rc.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1hd43hjv5zl6bjbmhm5phx74bw4xajsi73m5zky2k56za4mpgzzc")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60" + ,go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code +github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967 + (package + (name "go-google-golang-org-protobuf") + (version "1.20.1-0.20200309200217-e05f789c0967") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "17wmy89hnmpkwc63rfcjp50q15s9f1rhmczg06c3z9yy41zk82w9")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.0-rc.2" + ,go-github-com-golang-protobuf-1.4.0-rc.2))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is +a language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol +buffer developer guide} for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.0-rc.4.0.20200313231945-b860323f09d0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1zj6cwshx0l5n9cn2cpbikzzb79px5dmkpc4p19zy1iif5r5p0z0")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967" + ,go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code +github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-1.21.0 + (package + (name "go-google-golang-org-protobuf") + (version "1.21.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12bwln8z1lf9105gdp6ip0rx741i4yfz1520gxnp8861lh9wcl63")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0" + ,go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is +a language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol +buffer developer guide} for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-github-com-golang-protobuf-1.4.0 + (package + (name "go-github-com-golang-protobuf") + (version "1.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fjvl5n77abxz5qsd4mgyvjq19x43c5bfvmq62mq3m5plx6zksc8")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (propagated-inputs + `(("go-google-golang-org-protobuf-1.21.0" + ,go-google-golang-org-protobuf-1.21.0) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0))) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code +github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") + (license license:bsd-3))) + +(define-public go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543 + (package + (name "go-golang-org-x-xerrors") + (version "0.0.0-20191204190536-9bdfabe68543") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/xerrors") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1yjfi1bk9xb81lqn85nnm13zz725wazvrx3b50hx19qmwg7a4b0c")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/xerrors")) + (home-page "https://golang.org/x/xerrors") + (synopsis #f) + (description "Package xerrors implements functions to manipulate errors.") + (license license:bsd-3))) + +(define-public go-github-com-google-go-cmp-0.4.0 + (package + (name "go-github-com-google-go-cmp") + (version "0.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1x5pvl3fb5sbyng7i34431xycnhmx8xx94gq2n19g6p0vz68z2v2")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically +equal.") + (license license:bsd-3))) + +(define-public go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc + (package + (name "go-google-golang-org-protobuf") + (version "1.23.1-0.20200526195155-81db48ad09cc") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "02cpr8rqr5wmpj2fqb32mzilsdnxkh52g1jz95a3ck3gzffc7hh1")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.0" + ,go-github-com-golang-protobuf-1.4.0))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is +a language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol +buffer developer guide} for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc + (package + (name "go-honnef-co-go-tools") + (version "0.0.0-20190523083050-ea95bdfd59fc") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/dominikh/go-tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1763nw7pwpzkvzfnm63dgzcgbq9hwmq5l1nffchnhh77vgkaq4ic")))) + (build-system go-build-system) + (arguments '(#:import-path "honnef.co/go/tools")) + (home-page "https://honnef.co/go/tools") + (synopsis "Documentation") + (description + "Staticcheck is a state of the art linter for the . Using static analysis, it +finds bugs and performance issues, offers simplifications, and enforces style +rules.") + (license license:expat))) + +(define-public go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013 + (package + (name "go-google-golang-org-genproto") + (version "0.0.0-20200526211855-cb27e3aa2013") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/go-genproto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ml73ghqcwbz7ipfk8fnxb5indcml49b5p7vp1fsyny0abyyrmxf")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/genproto")) + (propagated-inputs + `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" + ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) + ("go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc" + ,go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc) + ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) + ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" + ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) + ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" + ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) + ("go-github-com-golang-protobuf-1.4.1" + ,go-github-com-golang-protobuf-1.4.1))) + (home-page "https://google.golang.org/genproto") + (synopsis "Go generated proto packages") + (description + "This repository contains the generated Go packages for common protocol buffer +types, and the generated @url{http://grpc.io,gRPC} code necessary for +interacting with Google's gRPC APIs.") + (license license:asl2.0))) + +(define-public go-google-golang-org-protobuf-1.24.0 + (package + (name "go-google-golang-org-protobuf") + (version "1.24.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0x3qyn3rizbs671gs7f8v50rmiwf9h7kbaradpivw9718mhbg1gn")))) + (build-system go-build-system) + (arguments '(#:import-path "google.golang.org/protobuf")) + (propagated-inputs + `(("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" + ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) + ("go-github-com-google-go-cmp-0.4.0" + ,go-github-com-google-go-cmp-0.4.0) + ("go-github-com-golang-protobuf-1.4.1" + ,go-github-com-golang-protobuf-1.4.1))) + (home-page "https://google.golang.org/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This project hosts the Go implementation for +@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is +a language-neutral, platform-neutral, extensible mechanism for serializing +structured data. The protocol buffer language is a language for specifying the +schema for structured data. This schema is compiled into language specific +bindings. This project provides both a tool to generate Go code for the +protocol buffer language, and also the runtime implementation to handle +serialization of messages in Go. See the +@url{https://developers.google.com/protocol-buffers/docs/overview,protocol +buffer developer guide} for more information about protocol buffers themselves.") + (license license:bsd-3))) + +(define-public go-gopkg-in-check-v1-1.0.0-20200227125254-8fa46927fb4f + (package + (name "go-gopkg-in-check-v1") + (version "1.0.0-20200227125254-8fa46927fb4f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/check.v1") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0fx03x0nx9mjwnqphnx852q9p76qg7cazrachvgr1bj357lplrcw")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) + (home-page "https://gopkg.in/check.v1") + (synopsis "Instructions") + (description + "Package check is a rich testing extension for Go's testing package.") + (license license:bsd-2))) + +(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 + (package + (name "go-gopkg-in-check-v1") + (version "0.0.0-20161208181325-20d25e280405") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/check.v1") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) + (home-page "https://gopkg.in/check.v1") + (synopsis "Instructions") + (description + "Package check is a rich testing extension for Go's testing package.") + (license license:bsd-2))) + +(define-public go-gopkg-in-yaml-v3-3.0.0-20200615113413-eeeca48fe776 + (package + (name "go-gopkg-in-yaml-v3") + (version "3.0.0-20200615113413-eeeca48fe776") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v3") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "06m3kx5mp6vwfcpjl04c39r1dpbakg2la9ql1jw3zvpi6jk7iwbk")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v3") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language.") + (license license:expat))) + +(define-public go-github-com-opencontainers-umoci-0.4.7 + (package + (name "go-github-com-opencontainers-umoci") + (version "0.4.7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/umoci") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0in8kyi4jprvbm3zsl3risbjj8b0ma62yl3rq8rcvcgypx0mn7d4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/umoci")) + (propagated-inputs + `(("go-gopkg-in-yaml-v3-3.0.0-20200615113413-eeeca48fe776" + ,go-gopkg-in-yaml-v3-3.0.0-20200615113413-eeeca48fe776) + ("go-gopkg-in-check-v1-1.0.0-20200227125254-8fa46927fb4f" + ,go-gopkg-in-check-v1-1.0.0-20200227125254-8fa46927fb4f) + ("go-google-golang-org-protobuf-1.24.0" + ,go-google-golang-org-protobuf-1.24.0) + ("go-golang-org-x-sys-0.0.0-20200622214017-ed371f2e16b4" + ,go-golang-org-x-sys-0.0.0-20200622214017-ed371f2e16b4) + ("go-golang-org-x-crypto-0.0.0-20200604202706-70a84ac30bf9" + ,go-golang-org-x-crypto-0.0.0-20200604202706-70a84ac30bf9) + ("go-github-com-vbatts-go-mtree-0.5.0" + ,go-github-com-vbatts-go-mtree-0.5.0) + ("go-github-com-urfave-cli-1.22.4" ,go-github-com-urfave-cli-1.22.4) + ("go-github-com-tj-assert-0.0.3" ,go-github-com-tj-assert-0.0.3) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-sirupsen-logrus-1.6.0" + ,go-github-com-sirupsen-logrus-1.6.0) + ("go-github-com-rootless-containers-proto-0.1.0" + ,go-github-com-rootless-containers-proto-0.1.0) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-runtime-spec-1.0.2" + ,go-github-com-opencontainers-runtime-spec-1.0.2) + ("go-github-com-opencontainers-runc-1.0.0-rc90" + ,go-github-com-opencontainers-runc-1.0.0-rc90) + ("go-github-com-opencontainers-image-spec-1.0.1" + ,go-github-com-opencontainers-image-spec-1.0.1) + ("go-github-com-opencontainers-go-digest-1.0.0" + ,go-github-com-opencontainers-go-digest-1.0.0) + ("go-github-com-niemeyer-pretty-0.0.0-20200227124842-a10e7caefd8e" + ,go-github-com-niemeyer-pretty-0.0.0-20200227124842-a10e7caefd8e) + ("go-github-com-mohae-deepcopy-0.0.0-20170929034955-c48cc78d4826" + ,go-github-com-mohae-deepcopy-0.0.0-20170929034955-c48cc78d4826) + ("go-github-com-mattn-go-colorable-0.1.6" + ,go-github-com-mattn-go-colorable-0.1.6) + ("go-github-com-kr-text-0.2.0" ,go-github-com-kr-text-0.2.0) + ("go-github-com-klauspost-pgzip-1.2.4" + ,go-github-com-klauspost-pgzip-1.2.4) + ("go-github-com-klauspost-compress-1.11.3" + ,go-github-com-klauspost-compress-1.11.3) + ("go-github-com-google-go-cmp-0.5.0" + ,go-github-com-google-go-cmp-0.5.0) + ("go-github-com-golang-protobuf-1.4.2" + ,go-github-com-golang-protobuf-1.4.2) + ("go-github-com-docker-go-units-0.4.0" + ,go-github-com-docker-go-units-0.4.0) + ("go-github-com-cyphar-filepath-securejoin-0.2.2" + ,go-github-com-cyphar-filepath-securejoin-0.2.2) + ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" + ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) + ("go-github-com-apex-log-1.4.0" ,go-github-com-apex-log-1.4.0) + ("go-github-com-adamkorcz-go-fuzz-headers-0.0.0-20210312213058-32f4d319f0d2" + ,go-github-com-adamkorcz-go-fuzz-headers-0.0.0-20210312213058-32f4d319f0d2))) + (home-page "https://github.com/opencontainers/umoci") + (synopsis "Install") + (description + "@strong{u}moci @strong{m}odifies @strong{O}pen @strong{C}ontainer +@strong{i}mages.") + (license license:asl2.0))) + +(define-public go-github-com-pelletier-go-toml-1.9.4 + (package + (name "go-github-com-pelletier-go-toml") + (version "1.9.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pelletier/go-toml") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0f2d9m19dadl18i2baf57xygvn9vprm6wb8chvpx8kipx94nchyl")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pelletier/go-toml")) + (home-page "https://github.com/pelletier/go-toml") + (synopsis "go-toml") + (description "Package toml is a TOML parser and manipulation library.") + (license license:expat))) + +(define-public go-github-com-pkg-errors-0.9.1 + (package + (name "go-github-com-pkg-errors") + (version "0.9.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pkg/errors") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1761pybhc2kqr6v5fm8faj08x9bql8427yqg6vnfv6nhrasx1mwq")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pkg/errors")) + (home-page "https://github.com/pkg/errors") + (synopsis "errors") + (description "Package errors provides simple error handling primitives.") + (license license:bsd-2))) + +(define-public go-github-com-blang-semver-3.5.1+incompatible + (package + (name "go-github-com-blang-semver") + (version "3.5.1+incompatible") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/blang/semver") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "13ws259bwcibkclbr82ilhk6zadm63kxklxhk12wayklj8ghhsmy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/blang/semver")) + (home-page "https://github.com/blang/semver") + (synopsis "semver for golang") + (description + "semver is a @url{http://semver.org/,Semantic Versioning} library written in +golang. It fully covers spec version @code{2.0.0}.") + (license license:expat))) + +(define-public go-github-com-hashicorp-errwrap-1.0.0 + (package + (name "go-github-com-hashicorp-errwrap") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/errwrap") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0slfb6w3b61xz04r32bi0a1bygc82rjzhqkxj2si2074wynqnr1c")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/errwrap")) + (home-page "https://github.com/hashicorp/errwrap") + (synopsis "errwrap") + (description + "Package errwrap implements methods to formalize error wrapping in Go.") + (license license:mpl2.0))) + +(define-public go-github-com-hashicorp-go-multierror-1.1.0 + (package + (name "go-github-com-hashicorp-go-multierror") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/go-multierror") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0pmjpzpra7lqgikxzwlcp5mh01b46j2vhyxkixz0v86fr9kf0k3k")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/hashicorp/go-multierror")) + (propagated-inputs + `(("go-github-com-hashicorp-errwrap-1.0.0" + ,go-github-com-hashicorp-errwrap-1.0.0))) + (home-page "https://github.com/hashicorp/go-multierror") + (synopsis "go-multierror") + (description + "@code{go-multierror} is a package for Go that provides a mechanism for +representing a list of @code{error} values as a single @code{error}.") + (license license:mpl2.0))) + +(define-public go-github-com-opencontainers-runtime-spec-1.0.3-0.20200710190001-3e4195d92445 + (package + (name "go-github-com-opencontainers-runtime-spec") + (version "1.0.3-0.20200710190001-3e4195d92445") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/runtime-spec") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "04kfdbap80r89rn7f7xcmkyy0qbpd18dgk65bzapy0x0calpgrlk")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) + (home-page "https://github.com/opencontainers/runtime-spec") + (synopsis "Open Container Initiative Runtime Specification") + (description + "The @url{https://www.opencontainers.org,Open Container Initiative} develops +specifications for standards on Operating System process and application +containers.") + (license license:asl2.0))) + +(define-public go-github-com-opencontainers-runtime-tools-0.9.0 + (package + (name "go-github-com-opencontainers-runtime-tools") + (version "0.9.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/runtime-tools") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1pli3jb1rq9lkzzz83f7jw788vijg7x6ly3vgasdlwri7kiph1sa")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/runtime-tools")) + (home-page "https://github.com/opencontainers/runtime-tools") + (synopsis "oci-runtime-tool") + (description + "oci-runtime-tool is a collection of tools for working with the +@url{https://github.com/opencontainers/runtime-spec,OCI runtime specification}. +To build from source code, runtime-tools requires Go 1.10.x or above.") + (license license:asl2.0))) + +(define-public go-github-com-pkg-errors-0.9.1 + (package + (name "go-github-com-pkg-errors") + (version "0.9.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pkg/errors") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1761pybhc2kqr6v5fm8faj08x9bql8427yqg6vnfv6nhrasx1mwq")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pkg/errors")) + (home-page "https://github.com/pkg/errors") + (synopsis "errors") + (description "Package errors provides simple error handling primitives.") + (license license:bsd-2))) + +(define-public go-github-com-willf-bitset-1.1.11-0.20200630133818-d5bec3311243 + (package + (name "go-github-com-willf-bitset") + (version "1.1.11-0.20200630133818-d5bec3311243") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/bits-and-blooms/bitset") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "05nyd0vhp2h9hbqlv2s9l2py6mr8hpz2zyfj09an1q7wd8vph4ja")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/willf/bitset")) + (home-page "https://github.com/willf/bitset") + (synopsis "bitset") + (description + "Package bitset implements bitsets, a mapping between non-negative integers and +boolean values. It should be more efficient than map[uint] bool.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20191115151921-52ab43148777") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1kakxbqrb1w2vwg7r1896z68qcx2lfvimsl8cs2niiipbgpi6imx")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-opencontainers-selinux-1.6.0 + (package + (name "go-github-com-opencontainers-selinux") + (version "1.6.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/selinux") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ja41zfgrkhk5khixjnxpi1b85xfcxlkhq2q9b7ma6xjfdhg8bq2")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/selinux")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777" + ,go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777) + ("go-github-com-willf-bitset-1.1.11-0.20200630133818-d5bec3311243" + ,go-github-com-willf-bitset-1.1.11-0.20200630133818-d5bec3311243) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) + (home-page "https://github.com/opencontainers/selinux") + (synopsis "selinux") + (description "Common SELinux package used across the container ecosystem.") + (license license:asl2.0))) + +(define-public go-github-com-seccomp-libseccomp-golang-0.9.1 + (package + (name "go-github-com-seccomp-libseccomp-golang") + (version "0.9.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/seccomp/libseccomp-golang") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "022c8prvxz0shrifams7lq4xidvkcqg9xi87wjjcpmbikqi72cna")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/seccomp/libseccomp-golang")) + (home-page "https://github.com/seccomp/libseccomp-golang") + (synopsis #f) + (description + "Package seccomp provides bindings for libseccomp, a library wrapping the Linux +seccomp syscall. Seccomp enables an application to restrict system call use for +itself and its children.") + (license license:bsd-2))) + +(define-public go-github-com-davecgh-go-spew-1.1.1 + (package + (name "go-github-com-davecgh-go-spew") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/davecgh/go-spew") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/davecgh/go-spew")) + (home-page "https://github.com/davecgh/go-spew") + (synopsis "go-spew") + (description + "Go-spew implements a deep pretty printer for Go data structures to aid in +debugging. A comprehensive suite of tests with 100% test coverage is provided +to ensure proper functionality. See @code{test_coverage.txt} for the gocov +coverage report. Go-spew is licensed under the liberal ISC license, so it may +be used in open source or commercial projects.") + (license license:isc))) + +(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.3 + (package + (name "go-github-com-konsorten-go-windows-terminal-sequences") + (version "1.0.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/konsorten/go-windows-terminal-sequences") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1yrsd4s8vhjnxhwbigirymz89dn6qfjnhn28i33vvvdgf96j6ypl")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) + (home-page "https://github.com/konsorten/go-windows-terminal-sequences") + (synopsis "Windows Terminal Sequences") + (description + "This library allow for enabling Windows terminal color support for Go.") + (license license:expat))) + +(define-public go-github-com-stretchr-testify-1.2.2 + (package + (name "go-github-com-stretchr-testify") + (version "1.2.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0dlszlshlxbmmfxj5hlwgv3r22x0y1af45gn1vd198nvvs3pnvfs")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in +it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that +your code will behave as you intend.") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190422165155-953cdadca894") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0gkha4whk8xkcv3isigbs250akag99isxnd3v9xmy0kl3g88hxy1")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-sirupsen-logrus-1.6.0 + (package + (name "go-github-com-sirupsen-logrus") + (version "1.6.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sirupsen/logrus") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1zf9is1yxxnna0d1pyag2m9ziy3l27zb2j92p9msm1gx5jjrvzzj")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/sirupsen/logrus")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894" + ,go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894) + ("go-github-com-stretchr-testify-1.2.2" + ,go-github-com-stretchr-testify-1.2.2) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.3" + ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.3) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/sirupsen/logrus") + (synopsis "Logrus") + (description + "Package logrus is a structured logger for Go, completely API compatible with the +standard library logger.") + (license license:expat))) + +(define-public go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2 + (package + (name "go-github-com-syndtr-gocapability") + (version "0.0.0-20180916011248-d98352740cb2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/syndtr/gocapability") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "065y16562ynixxzj7iys4f4spb7knilbj3h833qlhds381j8hn93")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/syndtr/gocapability")) + (home-page "https://github.com/syndtr/gocapability") + (synopsis #f) + (description #f) + (license license:bsd-2))) + +(define-public go-github-com-davecgh-go-spew-1.1.0 + (package + (name "go-github-com-davecgh-go-spew") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/davecgh/go-spew") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/davecgh/go-spew")) + (home-page "https://github.com/davecgh/go-spew") + (synopsis "go-spew") + (description + "Go-spew implements a deep pretty printer for Go data structures to aid in +debugging. A comprehensive suite of tests with 100% test coverage is provided +to ensure proper functionality. See @code{test_coverage.txt} for the gocov +coverage report. Go-spew is licensed under the liberal ISC license, so it may +be used in open source or commercial projects.") + (license license:isc))) + +(define-public go-github-com-pmezard-go-difflib-1.0.0 + (package + (name "go-github-com-pmezard-go-difflib") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pmezard/go-difflib") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pmezard/go-difflib")) + (home-page "https://github.com/pmezard/go-difflib") + (synopsis "go-difflib") + (description + "Go-difflib is a partial port of python 3 difflib package. Its main goal was to +make unified and context diff available in pure Go, mostly for testing purposes.") + (license license:bsd-3))) + +(define-public go-github-com-stretchr-objx-0.1.0 + (package + (name "go-github-com-stretchr-objx") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/objx") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/objx")) + (home-page "https://github.com/stretchr/objx") + (synopsis "Objx") + (description + "Objx - Go package for dealing with maps, slices, JSON and other data.") + (license license:expat))) + +(define-public go-github-com-stretchr-testify-1.3.0 + (package + (name "go-github-com-stretchr-testify") + (version "1.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wjchp2c8xbgcbbq32w3kvblk6q6yn533g78nxl6iskq6y95lxsy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (propagated-inputs + `(("go-github-com-stretchr-objx-0.1.0" + ,go-github-com-stretchr-objx-0.1.0) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.0" + ,go-github-com-davecgh-go-spew-1.1.0))) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in +it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that +your code will behave as you intend.") + (license license:expat))) + +(define-public go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f + (package + (name "go-github-com-xeipuuv-gojsonpointer") + (version "0.0.0-20180127040702-4e3ac2762d5f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/xeipuuv/gojsonpointer") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "13y6iq2nzf9z4ls66bfgnnamj2m3438absmbpqry64bpwjfbsi9q")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/xeipuuv/gojsonpointer")) + (home-page "https://github.com/xeipuuv/gojsonpointer") + (synopsis "gojsonpointer") + (description "An implementation of JSON Pointer - Go language") + (license license:asl2.0))) + +(define-public go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415 + (package + (name "go-github-com-xeipuuv-gojsonreference") + (version "0.0.0-20180127040603-bd5ef7bd5415") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/xeipuuv/gojsonreference") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1xby79padc7bmyb8rfbad8wfnfdzpnh51b1n8c0kibch0kwc1db5")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/xeipuuv/gojsonreference")) + (home-page "https://github.com/xeipuuv/gojsonreference") + (synopsis "gojsonreference") + (description "An implementation of JSON Reference - Go language") + (license license:asl2.0))) + +(define-public go-github-com-xeipuuv-gojsonschema-1.2.0 + (package + (name "go-github-com-xeipuuv-gojsonschema") + (version "1.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/xeipuuv/gojsonschema") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1mqiq0r8qw4qlfp3ls8073r6514rmzwrmdn4j33rppk3zh942i6l")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/xeipuuv/gojsonschema")) + (propagated-inputs + `(("go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415" + ,go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415) + ("go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f" + ,go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f) + ("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0))) + (home-page "https://github.com/xeipuuv/gojsonschema") + (synopsis "gojsonschema") + (description + "An implementation of JSON Schema for the Go programming language. Supports +draft-04, draft-06 and draft-07.") + (license license:asl2.0))) + +(define-public go-golang-org-x-sys-0.0.0-20200720211630-cb9d2d5c5666 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200720211630-cb9d2d5c5666") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18b1179cvv3rfn3hhysiqwcn2c15a1kzff74q4494rz69k0j7w4q")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-seccomp-containers-golang-0.6.0 + (package + (name "go-github-com-seccomp-containers-golang") + (version "0.6.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/seccomp/containers-golang") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0clrwdnmr131a65h66br57bsnr17i1s3kq9cc7ljrdaym57y6cfz")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/seccomp/containers-golang")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20200720211630-cb9d2d5c5666" + ,go-golang-org-x-sys-0.0.0-20200720211630-cb9d2d5c5666) + ("go-github-com-xeipuuv-gojsonschema-1.2.0" + ,go-github-com-xeipuuv-gojsonschema-1.2.0) + ("go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2" + ,go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2) + ("go-github-com-sirupsen-logrus-1.6.0" + ,go-github-com-sirupsen-logrus-1.6.0) + ("go-github-com-seccomp-libseccomp-golang-0.9.1" + ,go-github-com-seccomp-libseccomp-golang-0.9.1) + ("go-github-com-opencontainers-selinux-1.6.0" + ,go-github-com-opencontainers-selinux-1.6.0) + ("go-github-com-opencontainers-runtime-tools-0.9.0" + ,go-github-com-opencontainers-runtime-tools-0.9.0) + ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200710190001-3e4195d92445" + ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200710190001-3e4195d92445) + ("go-github-com-hashicorp-go-multierror-1.1.0" + ,go-github-com-hashicorp-go-multierror-1.1.0) + ("go-github-com-blang-semver-3.5.1+incompatible" + ,go-github-com-blang-semver-3.5.1+incompatible))) + (home-page "https://github.com/seccomp/containers-golang") + (synopsis "containers-golang") + (description + "@code{containers-golang} is a set of Go libraries used by container runtimes to +generate and load seccomp mappings into the kernel.") + (license license:asl2.0))) + +(define-public go-github-com-seccomp-libseccomp-golang-0.9.2-0.20210429002308-3879420cc921 + (package + (name "go-github-com-seccomp-libseccomp-golang") + (version "0.9.2-0.20210429002308-3879420cc921") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/seccomp/libseccomp-golang") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ypr3j50cd9lnj9szfyh45kh0cf7swm7cv2svz1575mldd9m1xr9")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/seccomp/libseccomp-golang")) + (home-page "https://github.com/seccomp/libseccomp-golang") + (synopsis #f) + (description + "Package seccomp provides bindings for libseccomp, a library wrapping the Linux +seccomp syscall. Seccomp enables an application to restrict system call use for +itself and its children.") + (license license:bsd-2))) + +(define-public go-github-com-spf13-pflag-1.0.5 + (package + (name "go-github-com-spf13-pflag") + (version "1.0.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/spf13/pflag") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0gpmacngd0gpslnbkzi263f5ishigzgh6pbdv9hp092rnjl4nd31")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/spf13/pflag")) + (home-page "https://github.com/spf13/pflag") + (synopsis "Description") + (description + "Package pflag is a drop-in replacement for Go's flag package, implementing +POSIX/GNU-style --flags.") + (license license:bsd-3))) + +(define-public go-github-com-sylabs-json-resp-0.8.0 + (package + (name "go-github-com-sylabs-json-resp") + (version "0.8.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sylabs/json-resp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ygr4mavaj1pp78hkkphhn3ydd923n3klwnx8x7v4ajqzx4cx4id")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/sylabs/json-resp")) + (home-page "https://github.com/sylabs/json-resp") + (synopsis "JSON Response") + (description + "The @code{json-resp} package contains a small set of functions that are used to +marshall and unmarshall response data and errors in JSON format.") + (license license:bsd-3))) + +(define-public go-github-com-burntsushi-toml-0.3.1 + (package + (name "go-github-com-burntsushi-toml") + (version "0.3.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/BurntSushi/toml") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fjdwwfzyzllgiwydknf1pwjvy49qxfsczqx5gz3y0izs7as99j6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/BurntSushi/toml")) + (home-page "https://github.com/BurntSushi/toml") + (synopsis "Testing") + (description + "Package toml implements decoding and encoding of TOML files.") + (license license:expat))) + +(define-public go-github-com-pmezard-go-difflib-1.0.0 + (package + (name "go-github-com-pmezard-go-difflib") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pmezard/go-difflib") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pmezard/go-difflib")) + (home-page "https://github.com/pmezard/go-difflib") + (synopsis "go-difflib") + (description + "Go-difflib is a partial port of python 3 difflib package. Its main goal was to +make unified and context diff available in pure Go, mostly for testing purposes.") + (license license:bsd-3))) + +(define-public go-github-com-russross-blackfriday-v2-2.0.1 + (package + (name "go-github-com-russross-blackfriday-v2") + (version "2.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/russross/blackfriday") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0nlz7isdd4rgnwzs68499hlwicxz34j2k2a0b8jy0y7ycd2bcr5j")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/russross/blackfriday/v2")) + (home-page "https://github.com/russross/blackfriday") + (synopsis "Blackfriday") + (description "Package blackfriday is a markdown processor.") + (license license:bsd-2))) + +(define-public go-github-com-shurcool-sanitized-anchor-name-1.0.0 + (package + (name "go-github-com-shurcool-sanitized-anchor-name") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/shurcooL/sanitized_anchor_name") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1gv9p2nr46z80dnfjsklc6zxbgk96349sdsxjz05f3z6wb6m5l8f")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/shurcooL/sanitized_anchor_name")) + (home-page "https://github.com/shurcooL/sanitized_anchor_name") + (synopsis "sanitized_anchor_name") + (description + "Package sanitized_anchor_name provides a func to create sanitized anchor names.") + (license license:expat))) + +(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d + (package + (name "go-github-com-cpuguy83-go-md2man-v2") + (version "2.0.0-20190314233015-f79a8a8ca69d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cpuguy83/go-md2man") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) + (propagated-inputs + `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" + ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) + ("go-github-com-russross-blackfriday-v2-2.0.1" + ,go-github-com-russross-blackfriday-v2-2.0.1) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0))) + (home-page "https://github.com/cpuguy83/go-md2man") + (synopsis "go-md2man") + (description "Converts markdown into roff (man pages).") + (license license:expat))) + +(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 + (package + (name "go-gopkg-in-check-v1") + (version "0.0.0-20161208181325-20d25e280405") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/check.v1") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) + (home-page "https://gopkg.in/check.v1") + (synopsis "Instructions") + (description + "Package check is a rich testing extension for Go's testing package.") + (license license:bsd-2))) + +(define-public go-gopkg-in-yaml-v2-2.2.2 + (package + (name "go-gopkg-in-yaml-v2") + (version "2.2.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "01wj12jzsdqlnidpyjssmj0r4yavlqy7dwrg7adqd8dicjc4ncsa")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v2") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language.") + (license license:asl2.0))) + +(define-public go-github-com-urfave-cli-1.22.5 + (package + (name "go-github-com-urfave-cli") + (version "1.22.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/urfave/cli") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1n8lk58j7bdsp47yh5bcpsw38lhkbyzcy3203ffkawc2rvkf1pp7")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/urfave/cli")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) + ("go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d" + ,go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d) + ("go-github-com-burntsushi-toml-0.3.1" + ,go-github-com-burntsushi-toml-0.3.1))) + (home-page "https://github.com/urfave/cli") + (synopsis "cli") + (description + "Package cli provides a minimal framework for creating and organizing command +line Go applications. cli is designed to be easy to understand and write, the +most simple cli application can be written as follows:") + (license license:expat))) + +(define-public go-github-com-vividcortex-ewma-1.2.0 + (package + (name "go-github-com-vividcortex-ewma") + (version "1.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/VividCortex/ewma") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0whx516l9nm4n41spagb605ry7kfnz1qha96mcshnfjlahhnnylq")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/VividCortex/ewma")) + (home-page "https://github.com/VividCortex/ewma") + (synopsis "EWMA") + (description + "Package ewma implements exponentially weighted moving averages.") + (license license:expat))) + +(define-public go-github-com-acarl005-stripansi-0.0.0-20180116102854-5a71ef0e047d + (package + (name "go-github-com-acarl005-stripansi") + (version "0.0.0-20180116102854-5a71ef0e047d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/acarl005/stripansi") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "02sxiishdixm791jqbkmhdcvc712l0fb8rqmibxzgc61h0qs6rs3")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/acarl005/stripansi")) + (home-page "https://github.com/acarl005/stripansi") + (synopsis "Strip ANSI") + (description "This Go package removes ANSI escape codes from strings.") + (license license:expat))) + +(define-public go-github-com-rivo-uniseg-0.2.0 + (package + (name "go-github-com-rivo-uniseg") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/rivo/uniseg") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0j7h22vfmjj562vr8gpsyrkrwp1pq9ayh5fylv24skxb467g9f0q")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/rivo/uniseg")) + (home-page "https://github.com/rivo/uniseg") + (synopsis "Unicode Text Segmentation for Go") + (description + "Package uniseg implements Unicode Text Segmentation according to Unicode +Standard Annex #29 +(@url{http://unicode.org/reports/tr29/,http://unicode.org/reports/tr29/}).") + (license license:expat))) + +(define-public go-github-com-mattn-go-runewidth-0.0.13 + (package + (name "go-github-com-mattn-go-runewidth") + (version "0.0.13") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mattn/go-runewidth") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1yir0f3wc5z5hnkwhvx5qb6nmpfb05zp2gvfjvna63s8kmla1rrn")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mattn/go-runewidth")) + (propagated-inputs + `(("go-github-com-rivo-uniseg-0.2.0" ,go-github-com-rivo-uniseg-0.2.0))) + (home-page "https://github.com/mattn/go-runewidth") + (synopsis "go-runewidth") + (description + "This package provides functions to get fixed width of the character or string.") + (license license:expat))) + +(define-public go-golang-org-x-sys-0.0.0-20220209214540-3681064d5158 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20220209214540-3681064d5158") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0cw9rzb4rxmr2si28pjqx3wv5r119c83kd08yy1h7nf725bzrs89")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-github-com-vbauerster-mpb-v7-7.4.1 + (package + (name "go-github-com-vbauerster-mpb-v7") + (version "7.4.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/vbauerster/mpb") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ii1r84qjfp2spvj6nb8xy5b3nsfw17jmwgp55zkaz9n9lfj75w2")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/vbauerster/mpb/v7")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20220209214540-3681064d5158" + ,go-golang-org-x-sys-0.0.0-20220209214540-3681064d5158) + ("go-github-com-mattn-go-runewidth-0.0.13" + ,go-github-com-mattn-go-runewidth-0.0.13) + ("go-github-com-acarl005-stripansi-0.0.0-20180116102854-5a71ef0e047d" + ,go-github-com-acarl005-stripansi-0.0.0-20180116102854-5a71ef0e047d) + ("go-github-com-vividcortex-ewma-1.2.0" + ,go-github-com-vividcortex-ewma-1.2.0))) + (home-page "https://github.com/vbauerster/mpb") + (synopsis "Multi Progress Bar") + (description + "Package mpb is a library for rendering progress bars in terminal applications.") + (license license:unlicense))) + +(define-public go-github-com-xeipuuv-gojsonpointer-0.0.0-20190905194746-02993c407bfb + (package + (name "go-github-com-xeipuuv-gojsonpointer") + (version "0.0.0-20190905194746-02993c407bfb") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/xeipuuv/gojsonpointer") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0y7gmpgsm8c12ax4a0ij9srmd9d424iq224n172ckwfqf37amvzy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/xeipuuv/gojsonpointer")) + (home-page "https://github.com/xeipuuv/gojsonpointer") + (synopsis "gojsonpointer") + (description "An implementation of JSON Pointer - Go language") + (license license:asl2.0))) + +(define-public go-github-com-yvasiyarov-go-metrics-0.0.0-20150112132944-c25f46c4b940 + (package + (name "go-github-com-yvasiyarov-go-metrics") + (version "0.0.0-20150112132944-c25f46c4b940") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/yvasiyarov/go-metrics") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0p1hx4ml4gzgyj8n0fg5lv8bq092zwg00n59lq8v8sphjc1h8i8d")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/yvasiyarov/go-metrics")) + (home-page "https://github.com/yvasiyarov/go-metrics") + (synopsis "go-metrics") + (description "Go port of Coda Hale's Metrics library") + (license license:expat))) + +(define-public go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20160601141957-9c099fbc30e9 + (package + (name "go-github-com-yvasiyarov-newrelic-platform-go") + (version "0.0.0-20160601141957-9c099fbc30e9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/yvasiyarov/newrelic_platform_go") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0n6jap27qc7b7c37ck1gv9biq5nfl7y06jk0cqgc517yfnb4f07x")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/yvasiyarov/newrelic_platform_go")) + (home-page "https://github.com/yvasiyarov/newrelic_platform_go") + (synopsis "New Relic Platform Agent SDK for Go(golang)") + (description + "Package newrelic_platform_go is New Relic Platform Agent SDK for Go language.") + (license license:bsd-2))) + +(define-public go-golang-org-x-sys-0.0.0-20220209214540-3681064d5158 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20220209214540-3681064d5158") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0cw9rzb4rxmr2si28pjqx3wv5r119c83kd08yy1h7nf725bzrs89")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20210615035016-665e8c7367d1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "11n848csibdbv7b46zjyf4l7sphg37n9sjzqfy1ds7p1jyakwmnv")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-term-0.0.0-20210916214954-140adaaadfaf + (package + (name "go-golang-org-x-term") + (version "0.0.0-20210916214954-140adaaadfaf") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/term") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1rcdx2q92pzpmdyzdlzpq9flc3ibfi3m1rni7w4qlmlq569s6wh3")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/term")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1" + ,go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1))) + (home-page "https://golang.org/x/term") + (synopsis "Go terminal/console support") + (description + "Package term provides support functions for dealing with terminals, as commonly +found on UNIX systems.") + (license license:bsd-3))) + +(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 + (package + (name "go-gopkg-in-check-v1") + (version "0.0.0-20161208181325-20d25e280405") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/check.v1") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) + (home-page "https://gopkg.in/check.v1") + (synopsis "Instructions") + (description + "Package check is a rich testing extension for Go's testing package.") + (license license:bsd-2))) + +(define-public go-gopkg-in-yaml-v2-2.4.0 + (package + (name "go-gopkg-in-yaml-v2") + (version "2.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1pbmrpj7gcws34g8vwna4i2nhm9p6235piww36436xhyaa10cldr")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v2") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language.") + (license license:asl2.0))) + +(define-public go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543 + (package + (name "go-golang-org-x-xerrors") + (version "0.0.0-20191204190536-9bdfabe68543") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/xerrors") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1yjfi1bk9xb81lqn85nnm13zz725wazvrx3b50hx19qmwg7a4b0c")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/xerrors")) + (home-page "https://golang.org/x/xerrors") + (synopsis #f) + (description "Package xerrors implements functions to manipulate errors.") + (license license:bsd-3))) + +(define-public go-github-com-google-go-cmp-0.5.5 + (package + (name "go-github-com-google-go-cmp") + (version "0.5.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12fmkdhyv5d4is8s57k78j097zb0phlgnrkqc03agiszxlid69x7")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically +equal.") + (license license:bsd-3))) + +(define-public go-github-com-pkg-errors-0.9.1 + (package + (name "go-github-com-pkg-errors") + (version "0.9.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pkg/errors") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1761pybhc2kqr6v5fm8faj08x9bql8427yqg6vnfv6nhrasx1mwq")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pkg/errors")) + (home-page "https://github.com/pkg/errors") + (synopsis "errors") + (description "Package errors provides simple error handling primitives.") + (license license:bsd-2))) + +(define-public go-github-com-spf13-pflag-1.0.3 + (package + (name "go-github-com-spf13-pflag") + (version "1.0.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/spf13/pflag") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1cj3cjm7d3zk0mf1xdybh0jywkbbw7a6yr3y22x9sis31scprswd")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/spf13/pflag")) + (home-page "https://github.com/spf13/pflag") + (synopsis "Description") + (description + "Package pflag is a drop-in replacement for Go's flag package, implementing +POSIX/GNU-style --flags.") + (license license:bsd-3))) + +(define-public go-github-com-yuin-goldmark-1.2.1 + (package + (name "go-github-com-yuin-goldmark") + (version "1.2.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/yuin/goldmark") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12rsnsf65drcp0jfw2jl9w589vsn3pxdk1zh3v9q908iigngrcmy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/yuin/goldmark")) + (home-page "https://github.com/yuin/goldmark") + (synopsis "goldmark") + (description + "Package goldmark implements functions to convert markdown text to a desired +format.") + (license license:expat))) + +(define-public go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20191011191535-87dc89f01550") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0z4i1m2yn3f31ci7wvcm2rxkx2yiv7a78mfzklncmsz2k97rlh2g")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" + ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) + ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" + ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190620200207-3b0461eec859") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0l00c8l0a8xnv6qdpwfzxxsr58jggacgzdrwiprrfx2xqm37b6d5")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20190423024810-112230192c58 + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20190423024810-112230192c58") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "05i2k43j2d0llq768hg5pf3hb2yhfzp9la1w5wp0rsnnzblr0lfn")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the ones +provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7 + (package + (name "go-golang-org-x-xerrors") + (version "0.0.0-20190717185122-a985d3407aa7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/xerrors") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "00wzr5w8aadipgc3rkk8f11i41znskfj9ix5nhhaxyg7isrslgcj")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/xerrors")) + (home-page "https://golang.org/x/xerrors") + (synopsis #f) + (description "Package xerrors implements functions to manipulate errors.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20191119224855-298f0cb1881e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0l4pqwib2wnfnix6nvxl0yrq87ipi7ff1rz6z5bxfzy9dki1nzmv")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7" + ,go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7) + ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" + ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) + ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" + ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898 + (package + (name "go-golang-org-x-xerrors") + (version "0.0.0-20191011141410-1b5146add898") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/xerrors") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0w2akj91krxjag0xdhsg78470888nicc5ismc2ap9jqpss6v1zih")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/xerrors")) + (home-page "https://golang.org/x/xerrors") + (synopsis #f) + (description "Package xerrors implements functions to manipulate errors.") + (license license:bsd-3))) + +(define-public go-golang-org-x-mod-0.3.0 + (package + (name "go-golang-org-x-mod") + (version "0.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/mod") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ldgbx2zpprbsfn6p8pfgs4nn87gwbfcv2z0fa7n8alwsq2yw78q")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/mod")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" + ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) + ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" + ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) + ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" + ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) + (home-page "https://golang.org/x/mod") + (synopsis "mod") + (description + "This repository holds packages for writing tools that work directly with Go +module mechanics. That is, it is for direct manipulation of Go modules +themselves.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190215142949-d0b11bdaac8a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20190308221718-c2843e01d9a2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-text-0.3.0 + (package + (name "go-golang-org-x-text") + (version "0.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/text")) + (home-page "https://golang.org/x/text") + (synopsis "Go Text") + (description + "text is a repository of text-related packages related to internationalization +(i18n) and localization (l10n), such as character encodings, text +transformations, and locale-specific text handling.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190404232315-eb5bcb51f2a3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "17k4g8krxbl84gzcs275b7gsh66dzm15fdxivjnx9xz8q84l4kby")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20190412213103-97732733099d + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190412213103-97732733099d") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "118hkp01i4z1f5h6hcjm0ff2ngqhrzj1f7731n0kw8dr6hvbx0sw")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20200622213623-75b288015ac9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18vlncvvs11ds3zaaziqjlg5s2vcwi3496nn6qv7p0dp94j5pwa2")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" + ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) + ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" + ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20200930185726-fdedc70b468f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1njlfhjbvi4lxvjbq8zswrb0y0q4jd2p6x51h1q6vmyzi9af6869")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20180917221912-90fa682c2a6e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-golang-org-x-text-0.3.3 + (package + (name "go-golang-org-x-text") + (version "0.3.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19pihqm3phyndmiw6i42pdv6z1rbvlqlsnhsyqf9gsnn0qnmqqlh")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/text")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" + ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) + (home-page "https://golang.org/x/text") + (synopsis "Go Text") + (description + "text is a repository of text-related packages related to internationalization +(i18n) and localization (l10n), such as character encodings, text +transformations, and locale-specific text handling.") + (license license:bsd-3))) + +(define-public go-golang-org-x-net-0.0.0-20201021035429-f5854403a974 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20201021035429-f5854403a974") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1vw63zpmhi337f3gc432x3wkib4j2ia8dy7if31wxwb9dgqvy222")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) + ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" + ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) + ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" + ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9 + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20201020160332-67f06af15bc9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "093p4panc808ak5bamzz7m9nb0xxib7778jpnr6f0xkz1n4fzyw5")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the ones +provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20210119212857-b64e53b001e4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "16in6bazi0frdkzhqxyvmw7qcvzjavq21dnz9bmrqq8d4dpd2j44")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1 + (package + (name "go-golang-org-x-xerrors") + (version "0.0.0-20200804184101-5ec99f83aff1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/xerrors") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1dbzc3gmf2haazpv7cgmv97rq40g2xzwbglc17vas8dwhgwgwrzb")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/xerrors")) + (home-page "https://golang.org/x/xerrors") + (synopsis #f) + (description "Package xerrors implements functions to manipulate errors.") + (license license:bsd-3))) + +(define-public go-golang-org-x-tools-0.1.0 + (package + (name "go-golang-org-x-tools") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1asrm22kv5x891qkbpap8alg612k321jbs1akc0vwsan251gm507")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" + ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) + ("go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4" + ,go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4) + ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" + ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) + ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" + ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) + ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) + ("go-github-com-yuin-goldmark-1.2.1" + ,go-github-com-yuin-goldmark-1.2.1))) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) + +(define-public go-gotest-tools-v3-3.1.0 + (package + (name "go-gotest-tools-v3") + (version "3.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gotestyourself/gotest.tools") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0jk2grk2q19k453m76hn2bsq9i73yk63drlfjg1imvhmmcl88872")))) + (build-system go-build-system) + (arguments + '(#:import-path "gotest.tools/v3" #:unpack-path "gotest.tools/v3")) + (propagated-inputs + `(("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) + ("go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4" + ,go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4) + ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-google-go-cmp-0.5.5" + ,go-github-com-google-go-cmp-0.5.5))) + (home-page "https://gotest.tools/v3") + (synopsis "gotest.tools") + (description + "Package gotesttools is a collection of packages to augment `testing` and support +common patterns.") + (license license:asl2.0))) + +(define-public go-github-com-creack-pty-1.1.15 + (package + (name "go-github-com-creack-pty") + (version "1.1.15") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/creack/pty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1j5w51ammp5rp90bhdwqi216dxmndpmf4gf3gim75qls52qj8j2r")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/creack/pty")) + (home-page "https://github.com/creack/pty") + (synopsis "pty") + (description + "Package pty provides functions for working with Unix terminals.") + (license license:expat))) + +(define-public go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543 + (package + (name "go-golang-org-x-xerrors") + (version "0.0.0-20191204190536-9bdfabe68543") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/xerrors") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1yjfi1bk9xb81lqn85nnm13zz725wazvrx3b50hx19qmwg7a4b0c")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/xerrors")) + (home-page "https://golang.org/x/xerrors") + (synopsis #f) + (description "Package xerrors implements functions to manipulate errors.") + (license license:bsd-3))) + +(define-public go-github-com-google-go-cmp-0.5.6 + (package + (name "go-github-com-google-go-cmp") + (version "0.5.6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/go-cmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0lrb0pacv5iy3m6fn1qb3nv7zwimfhpzqq8f6hwpwx88cx3g6p1s")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/go-cmp")) + (propagated-inputs + `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" + ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) + (home-page "https://github.com/google/go-cmp") + (synopsis "Package for equality of Go values") + (description + "This package is intended to be a more powerful and safer alternative to +@code{reflect.DeepEqual} for comparing whether two values are semantically +equal.") + (license license:bsd-3))) + +(define-public go-github-com-frankban-quicktest-1.13.1 + (package + (name "go-github-com-frankban-quicktest") + (version "1.13.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/frankban/quicktest") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1x0v98s4m0zy9m4h7x3kmx30vxk2ah496qb81mnmzv98h4cgdki0")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/frankban/quicktest")) + (propagated-inputs + `(("go-github-com-kr-pretty-0.3.0" ,go-github-com-kr-pretty-0.3.0) + ("go-github-com-google-go-cmp-0.5.6" + ,go-github-com-google-go-cmp-0.5.6))) + (home-page "https://github.com/frankban/quicktest") + (synopsis "quicktest") + (description + "Package quicktest provides a collection of Go helpers for writing tests.") + (license license:expat))) + +(define-public go-github-com-google-renameio-1.0.1 + (package + (name "go-github-com-google-renameio") + (version "1.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/renameio") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1qn84nra9nxqyqg4i496b6ijbhnxvx66hdndwl7qh7r6q8lz2ba5")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/renameio")) + (home-page "https://github.com/google/renameio") + (synopsis "Atomicity vs durability") + (description + "Package renameio provides a way to atomically create or replace a file or +symbolic link.") + (license license:asl2.0))) + +(define-public go-github-com-creack-pty-1.1.9 + (package + (name "go-github-com-creack-pty") + (version "1.1.9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/creack/pty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1v52599qq76dwq742mffakzj6mxqqccv2szn3hjicjld56nmd2d3")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/creack/pty")) + (home-page "https://github.com/creack/pty") + (synopsis "pty") + (description + "Package pty provides functions for working with Unix terminals.") + (license license:expat))) + +(define-public go-github-com-kr-text-0.2.0 + (package + (name "go-github-com-kr-text") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hf58ypz6rxsw6nx3i856whir9lvy4sdx946wbw1nfaf2rdmr9vx")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/text")) + (propagated-inputs + `(("go-github-com-creack-pty-1.1.9" ,go-github-com-creack-pty-1.1.9))) + (home-page "https://github.com/kr/text") + (synopsis #f) + (description + "Package text provides rudimentary functions for manipulating text in paragraphs.") + (license license:expat))) + +(define-public go-github-com-rogpeppe-go-internal-1.6.1 + (package + (name "go-github-com-rogpeppe-go-internal") + (version "1.6.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/rogpeppe/go-internal") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "00j2vpp1bsggdvw1winkz23mg0q6drjiir5q0k49pmqx1sh7106l")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/rogpeppe/go-internal")) + (propagated-inputs + `(("go-gopkg-in-errgo-v2-2.1.0" ,go-gopkg-in-errgo-v2-2.1.0))) + (home-page "https://github.com/rogpeppe/go-internal") + (synopsis #f) + (description + "This repository factors out an opinionated selection of internal packages and +functionality from the Go standard library. Currently this consists mostly of +packages and testing code from within the Go tool implementation.") + (license license:bsd-3))) + +(define-public go-github-com-kr-pretty-0.3.0 + (package + (name "go-github-com-kr-pretty") + (version "0.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/pretty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0vp5ijbapw8j52c3l992m1wm8nhl23n68xk3lqxhad3srxmdb9z4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/pretty")) + (propagated-inputs + `(("go-github-com-rogpeppe-go-internal-1.6.1" + ,go-github-com-rogpeppe-go-internal-1.6.1) + ("go-github-com-kr-text-0.2.0" ,go-github-com-kr-text-0.2.0))) + (home-page "https://github.com/kr/pretty") + (synopsis #f) + (description + "Package pretty provides pretty-printing for Go values. This is useful during +debugging, to avoid wrapping long output lines in the terminal.") + (license license:expat))) + +(define-public go-github-com-pkg-diff-0.0.0-20210226163009-20ebb0f2a09e + (package + (name "go-github-com-pkg-diff") + (version "0.0.0-20210226163009-20ebb0f2a09e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pkg/diff") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1g3dzgwhz4fx3ddpsv7fsa4r1v5clsp2lbw2qrkdk9y1vc5gi8yi")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pkg/diff")) + (home-page "https://github.com/pkg/diff") + (synopsis "diff") + (description + "Package diff contains high level routines that generate a textual diff.") + (license license:bsd-3))) + +(define-public go-github-com-kr-pty-1.1.1 + (package + (name "go-github-com-kr-pty") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/pty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0383f0mb9kqjvncqrfpidsf8y6ns5zlrc91c6a74xpyxjwvzl2y6")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/pty")) + (home-page "https://github.com/kr/pty") + (synopsis "pty") + (description + "Package pty is a wrapper for github.com/creack/pty, which provides functions for +working with Unix terminals.") + (license license:expat))) + +(define-public go-github-com-kr-text-0.1.0 + (package + (name "go-github-com-kr-text") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1gm5bsl01apvc84bw06hasawyqm4q84vx1pm32wr9jnd7a8vjgj1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/text")) + (propagated-inputs + `(("go-github-com-kr-pty-1.1.1" ,go-github-com-kr-pty-1.1.1))) + (home-page "https://github.com/kr/text") + (synopsis #f) + (description + "Package text provides rudimentary functions for manipulating text in paragraphs.") + (license license:expat))) + +(define-public go-github-com-kr-pretty-0.1.0 + (package + (name "go-github-com-kr-pretty") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/pretty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18m4pwg2abd0j9cn5v3k2ksk9ig4vlwxmlw9rrglanziv9l967qp")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/pretty")) + (propagated-inputs + `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) + (home-page "https://github.com/kr/pretty") + (synopsis #f) + (description + "Package pretty provides pretty-printing for Go values. This is useful during +debugging, to avoid wrapping long output lines in the terminal.") + (license license:expat))) + +(define-public go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127 + (package + (name "go-gopkg-in-check-v1") + (version "1.0.0-20180628173108-788fd7840127") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/check.v1") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0v3bim0j375z81zrpr5qv42knqs0y2qv2vkjiqi5axvb78slki1a")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) + (home-page "https://gopkg.in/check.v1") + (synopsis "Instructions") + (description + "Package check is a rich testing extension for Go's testing package.") + (license license:bsd-2))) + +(define-public go-gopkg-in-errgo-v2-2.1.0 + (package + (name "go-gopkg-in-errgo-v2") + (version "2.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/errgo.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "065mbihiy7q67wnql0bzl9y1kkvck5ivra68254zbih52jxwrgr2")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/errgo.v2" #:unpack-path "gopkg.in/errgo.v2")) + (propagated-inputs + `(("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" + ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) + ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0))) + (home-page "https://gopkg.in/errgo.v2") + (synopsis #f) + (description + "Package errgo provides some primitives for error creation and handling.") + (license license:bsd-3))) + +(define-public go-github-com-rogpeppe-go-internal-1.8.1-0.20210923151022-86f73c517451 + (package + (name "go-github-com-rogpeppe-go-internal") + (version "1.8.1-0.20210923151022-86f73c517451") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/rogpeppe/go-internal") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1qswk3kaif0n8q125dvd8rfcyc3wqw71yi16fc26336kbwjzrc9p")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/rogpeppe/go-internal")) + (propagated-inputs + `(("go-gopkg-in-errgo-v2-2.1.0" ,go-gopkg-in-errgo-v2-2.1.0) + ("go-github-com-pkg-diff-0.0.0-20210226163009-20ebb0f2a09e" + ,go-github-com-pkg-diff-0.0.0-20210226163009-20ebb0f2a09e))) + (home-page "https://github.com/rogpeppe/go-internal") + (synopsis #f) + (description + "This repository factors out an opinionated selection of internal packages and +functionality from the Go standard library. Currently this consists mostly of +packages and testing code from within the Go tool implementation.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c + (package + (name "go-golang-org-x-sync") + (version "0.0.0-20210220032951-036812b2e83c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sync") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1gl202py3s4gl6arkaxlf8qa6f0jyyg2f95m6f89qnfmr416h85b")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sync")) + (home-page "https://golang.org/x/sync") + (synopsis "Go Sync") + (description + "This repository provides Go concurrency primitives in addition to the ones +provided by the language and \"sync\" and \"sync/atomic\" packages.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20210925032602-92d5a993a665 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20210925032602-92d5a993a665") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ps9wq5vz0ilsjxd05glnkkmbfxzpsqvjp0mgm2y1hm6ql5qfpn5")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20210615035016-665e8c7367d1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "11n848csibdbv7b46zjyf4l7sphg37n9sjzqfy1ds7p1jyakwmnv")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) + +(define-public go-golang-org-x-term-0.0.0-20210916214954-140adaaadfaf + (package + (name "go-golang-org-x-term") + (version "0.0.0-20210916214954-140adaaadfaf") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/term") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1rcdx2q92pzpmdyzdlzpq9flc3ibfi3m1rni7w4qlmlq569s6wh3")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/term")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1" + ,go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1))) + (home-page "https://golang.org/x/term") + (synopsis "Go terminal/console support") + (description + "Package term provides support functions for dealing with terminals, as commonly +found on UNIX systems.") + (license license:bsd-3))) + +(define-public go-mvdan-cc-editorconfig-0.2.0 + (package + (name "go-mvdan-cc-editorconfig") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mvdan/editorconfig") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1rav1rp8pi921gsffqr2wjdhbr12w81g31yv6iw4yb1zyh726qqg")))) + (build-system go-build-system) + (arguments '(#:import-path "mvdan.cc/editorconfig")) + (home-page "https://mvdan.cc/editorconfig") + (synopsis "editorconfig") + (description + "Package editorconfig allows parsing and using EditorConfig files, as defined in +@url{https://editorconfig.org/,https://editorconfig.org/}.") + (license license:bsd-3))) + +(define-public go-mvdan-cc-sh-v3-3.4.3-0.20220202175809-113ed667a8a7 + (package + (name "go-mvdan-cc-sh-v3") + (version "3.4.3-0.20220202175809-113ed667a8a7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mvdan/sh") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1k5113qqm20x58838k8f0ry3v1hinahjf2yl8y4450922yy0mq2k")))) + (build-system go-build-system) + (arguments + '(#:import-path "mvdan.cc/sh/v3" #:unpack-path "mvdan.cc/sh/v3")) + (propagated-inputs + `(("go-mvdan-cc-editorconfig-0.2.0" ,go-mvdan-cc-editorconfig-0.2.0) + ("go-golang-org-x-term-0.0.0-20210916214954-140adaaadfaf" + ,go-golang-org-x-term-0.0.0-20210916214954-140adaaadfaf) + ("go-golang-org-x-sys-0.0.0-20210925032602-92d5a993a665" + ,go-golang-org-x-sys-0.0.0-20210925032602-92d5a993a665) + ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" + ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) + ("go-github-com-rogpeppe-go-internal-1.8.1-0.20210923151022-86f73c517451" + ,go-github-com-rogpeppe-go-internal-1.8.1-0.20210923151022-86f73c517451) + ("go-github-com-pkg-diff-0.0.0-20210226163009-20ebb0f2a09e" + ,go-github-com-pkg-diff-0.0.0-20210226163009-20ebb0f2a09e) + ("go-github-com-kr-pretty-0.3.0" ,go-github-com-kr-pretty-0.3.0) + ("go-github-com-google-renameio-1.0.1" + ,go-github-com-google-renameio-1.0.1) + ("go-github-com-frankban-quicktest-1.13.1" + ,go-github-com-frankban-quicktest-1.13.1) + ("go-github-com-creack-pty-1.1.15" ,go-github-com-creack-pty-1.1.15))) + (home-page "https://mvdan.cc/sh/v3") + (synopsis "sh") + (description + "This package provides a shell parser, formatter, and interpreter. Supports +@url{https://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html,POSIX +Shell}, @url{https://www.gnu.org/software/bash/,Bash}, and +@url{http://www.mirbsd.org/mksh.htm,mksh}. Requires Go 1.16 or later.") + (license license:bsd-3))) + +(define-public go-github-com-opencontainers-image-spec-1.0.2-0.20211117181255-693428a734f5 + (package + (name "go-github-com-opencontainers-image-spec") + (version "1.0.2-0.20211117181255-693428a734f5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/image-spec") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1w9fmamky30idjbqs78qhds6d5b9gdy6wzcxx6fhmpm2159dv62b")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/image-spec")) + (home-page "https://github.com/opencontainers/image-spec") + (synopsis "OCI Image Format Specification") + (description + "The OCI Image Format project creates and maintains the software shipping +container image format spec (OCI Image Format).") + (license license:asl2.0))) + +(define-public go-github-com-yvasiyarov-gorelic-0.0.6 + (package + (name "go-github-com-yvasiyarov-gorelic") + (version "0.0.6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/yvasiyarov/gorelic") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0210d8z7l945611b5ynzjhnypqfdyr490ndrap13s4k5z1jgqjnb")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/yvasiyarov/gorelic")) + (home-page "https://github.com/yvasiyarov/gorelic") + (synopsis "GoRelic is deprecated in favour of") + (description + "Package gorelic is an New Relic agent implementation for Go runtime. It collect +a lot of metrics about Go scheduler, garbage collector and memory allocator and +send them to NewRelic.") + (license license:bsd-2))) + +(define-public go-github-com-moby-sys-0.0.0-20220308220145-03355939d693 + (package + (name "go-github-com-moby-sys") + (version "0.0.0-20220308220145-03355939d693") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/moby/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ns4bav4n0k93nwz898dmcrz9zm4fa08sxyzhi7wqj4f8mpz4fam")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/moby/sys")) + (home-page "https://github.com/moby/sys") + (synopsis #f) + (description #f) + (license license:asl2.0))) +(define-public go-github-com-apptainer-sif-v2-2.3.2 + (package + (name "go-github-com-apptainer-sif-v2") + (version "2.3.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/apptainer/sif") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "10cmvgyjxnfgw5661n1zbdr8zs29rx9izsr1bbnnyjr9kdqdhfg1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/apptainer/sif/v2")) + (propagated-inputs + `(("go-gopkg-in-warnings-v0-0.1.2" ,go-gopkg-in-warnings-v0-0.1.2) + ("go-golang-org-x-sys-0.0.0-20211205182925-97ca703d548d" + ,go-golang-org-x-sys-0.0.0-20211205182925-97ca703d548d) + ("go-golang-org-x-net-0.0.0-20210813160813-60bc85c4be6d" + ,go-golang-org-x-net-0.0.0-20210813160813-60bc85c4be6d) + ("go-golang-org-x-crypto-0.0.0-20210817164053-32db794688a5" + ,go-golang-org-x-crypto-0.0.0-20210817164053-32db794688a5) + ("go-github-com-xanzy-ssh-agent-0.3.0" + ,go-github-com-xanzy-ssh-agent-0.3.0) + ("go-github-com-sergi-go-diff-1.1.0" + ,go-github-com-sergi-go-diff-1.1.0) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-mitchellh-go-homedir-1.1.0" + ,go-github-com-mitchellh-go-homedir-1.1.0) + ("go-github-com-kevinburke-ssh-config-0.0.0-20201106050909-4977a11b4351" + ,go-github-com-kevinburke-ssh-config-0.0.0-20201106050909-4977a11b4351) + ("go-github-com-jbenet-go-context-0.0.0-20150711004518-d14ea06fba99" + ,go-github-com-jbenet-go-context-0.0.0-20150711004518-d14ea06fba99) + ("go-github-com-inconshreveable-mousetrap-1.0.0" + ,go-github-com-inconshreveable-mousetrap-1.0.0) + ("go-github-com-imdario-mergo-0.3.12" + ,go-github-com-imdario-mergo-0.3.12) + ("go-github-com-go-git-go-billy-v5-5.3.1" + ,go-github-com-go-git-go-billy-v5-5.3.1) + ("go-github-com-go-git-gcfg-1.5.0" ,go-github-com-go-git-gcfg-1.5.0) + ("go-github-com-emirpasic-gods-1.12.0" + ,go-github-com-emirpasic-gods-1.12.0) + ("go-github-com-acomagu-bufpipe-1.0.3" + ,go-github-com-acomagu-bufpipe-1.0.3) + ("go-github-com-microsoft-go-winio-0.4.16" + ,go-github-com-microsoft-go-winio-0.4.16) + ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) + ("go-github-com-spf13-cobra-1.3.0" ,go-github-com-spf13-cobra-1.3.0) + ("go-github-com-sebdah-goldie-v2-2.5.3" + ,go-github-com-sebdah-goldie-v2-2.5.3) + ("go-github-com-magefile-mage-1.12.1" + ,go-github-com-magefile-mage-1.12.1) + ("go-github-com-google-uuid-1.3.0" ,go-github-com-google-uuid-1.3.0) + ("go-github-com-go-git-go-git-v5-5.4.2" + ,go-github-com-go-git-go-git-v5-5.4.2) + ("go-github-com-blang-semver-v4-4.0.0" + ,go-github-com-blang-semver-v4-4.0.0) + ("go-github-com-protonmail-go-crypto-0.0.0-20220113124808-70ae35bab23f" + ,go-github-com-protonmail-go-crypto-0.0.0-20220113124808-70ae35bab23f))) + (home-page "https://github.com/apptainer/sif") + (synopsis "The Singularity Image Format (SIF)") + (description + "This module contains an open source implementation of the Singularity Image +Format (SIF) that makes it easy to create complete and encapsulated container +environments stored in a single file.") + (license license:bsd-3))) diff --git a/glicid/packages/linux.scm b/glicid/packages/linux.scm index a571047..d8fe2c9 100644 --- a/glicid/packages/linux.scm +++ b/glicid/packages/linux.scm @@ -214,54 +214,54 @@ ("cryptsetup", cryptsetup) ("go", go-1.17) ("pkg-config", pkg-config) -; ("go-github-com-netflix-go-expect-0.0.0-20220104043353-73e0943537d2", go-github-com-netflix-go-expect-0.0.0-20220104043353-73e0943537d2) -; ("go-github-com-protonmail-go-crypto-0.0.0-20220113124808-70ae35bab23f", go-github-com-protonmail-go-crypto-0.0.0-20220113124808-70ae35bab23f) -; ("go-github-com-adigunhammedolalekan-registry-auth-0.0.0-20200730122110-8cde180a3a60", go-github-com-adigunhammedolalekan-registry-auth-0.0.0-20200730122110-8cde180a3a60) -; ("go-github-com-apex-log-1.9.0", go-github-com-apex-log-1.9.0) -; ("go-github-com-apptainer-container-key-client-0.7.2", go-github-com-apptainer-container-key-client-0.7.2) -; ("go-github-com-apptainer-container-library-client-1.2.2", go-github-com-apptainer-container-library-client-1.2.2) -; ("go-github-com-apptainer-sif-v2-2.3.2", go-github-com-apptainer-sif-v2-2.3.2) -; ("go-github-com-blang-semver-v4-4.0.0", go-github-com-blang-semver-v4-4.0.0) -; ("go-github-com-buger-jsonparser-1.1.1", go-github-com-buger-jsonparser-1.1.1) -; ("go-github-com-cenkalti-backoff-v4-4.1.2", go-github-com-cenkalti-backoff-v4-4.1.2) -; ("go-github-com-containerd-cgroups-1.0.3", go-github-com-containerd-cgroups-1.0.3) -; ("go-github-com-containerd-containerd-1.6.0", go-github-com-containerd-containerd-1.6.0) -; ("go-github-com-containernetworking-cni-1.0.1", go-github-com-containernetworking-cni-1.0.1) -; ("go-github-com-containernetworking-plugins-1.1.0", go-github-com-containernetworking-plugins-1.1.0) -; ("go-github-com-containers-image-v5-5.19.1", go-github-com-containers-image-v5-5.19.1) -; ("go-github-com-creack-pty-1.1.17", go-github-com-creack-pty-1.1.17) -; ("go-github-com-cyphar-filepath-securejoin-0.2.3", go-github-com-cyphar-filepath-securejoin-0.2.3) -; ("go-github-com-docker-docker-20.10.12+incompatible", go-github-com-docker-docker-20.10.12+incompatible) -; ("go-github-com-fatih-color-1.13.0", go-github-com-fatih-color-1.13.0) -; ("go-github-com-go-log-log-0.2.0", go-github-com-go-log-log-0.2.0) -; ("go-github-com-google-uuid-1.3.0", go-github-com-google-uuid-1.3.0) -; ("go-github-com-opencontainers-go-digest-1.0.0", go-github-com-opencontainers-go-digest-1.0.0) -; ("go-github-com-opencontainers-image-spec-1.0.3-0.20211202193544-a5463b7f9c84", go-github-com-opencontainers-image-spec-1.0.3-0.20211202193544-a5463b7f9c84) -; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417", go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417) -; ("go-github-com-opencontainers-runtime-tools-0.9.1-0.20210326182921-59cdde06764b", go-github-com-opencontainers-runtime-tools-0.9.1-0.20210326182921-59cdde06764b) -; ("go-github-com-opencontainers-selinux-1.10.0", go-github-com-opencontainers-selinux-1.10.0) -; ("go-github-com-opencontainers-umoci-0.4.7", go-github-com-opencontainers-umoci-0.4.7) -; ("go-github-com-pelletier-go-toml-1.9.4", go-github-com-pelletier-go-toml-1.9.4) -; ("go-github-com-pkg-errors-0.9.1", go-github-com-pkg-errors-0.9.1) -; ("go-github-com-seccomp-containers-golang-0.6.0", go-github-com-seccomp-containers-golang-0.6.0) -; ("go-github-com-seccomp-libseccomp-golang-0.9.2-0.20210429002308-3879420cc921", go-github-com-seccomp-libseccomp-golang-0.9.2-0.20210429002308-3879420cc921) -; ("go-github-com-spf13-cobra-1.3.0", go-github-com-spf13-cobra-1.3.0) -; ("go-github-com-spf13-pflag-1.0.5", go-github-com-spf13-pflag-1.0.5) -; ("go-github-com-sylabs-json-resp-0.8.0", go-github-com-sylabs-json-resp-0.8.0) -; ("go-github-com-vbauerster-mpb-v7-7.4.1", go-github-com-vbauerster-mpb-v7-7.4.1) -; ("go-golang-org-x-sys-0.0.0-20220209214540-3681064d5158", go-golang-org-x-sys-0.0.0-20220209214540-3681064d5158) -; ("go-golang-org-x-term-0.0.0-20210916214954-140adaaadfaf", go-golang-org-x-term-0.0.0-20210916214954-140adaaadfaf) -; ("go-gopkg-in-yaml-v2-2.4.0", go-gopkg-in-yaml-v2-2.4.0) -; ("go-gotest-tools-v3-3.1.0", go-gotest-tools-v3-3.1.0) -; ("go-mvdan-cc-sh-v3-3.4.3-0.20220202175809-113ed667a8a7", go-mvdan-cc-sh-v3-3.4.3-0.20220202175809-113ed667a8a7) -; ("go-oras-land-oras-go-1.1.0", go-oras-land-oras-go-1.1.0) -; ("go-github-com-opencontainers-image-spec-1.0.2-0.20211117181255-693428a734f5", go-github-com-opencontainers-image-spec-1.0.2-0.20211117181255-693428a734f5) -; ("go-github-com-moby-sys", go-github-com-moby-sys) -; ("go-github-com-urfave-cli-1.22.5", go-github-com-urfave-cli-1.22.5) -; ("go-github-com-xeipuuv-gojsonpointer-0.0.0-20190905194746-02993c407bfb", go-github-com-xeipuuv-gojsonpointer-0.0.0-20190905194746-02993c407bfb) -; ("go-github-com-yvasiyarov-go-metrics-0.0.0-20150112132944-c25f46c4b940", go-github-com-yvasiyarov-go-metrics-0.0.0-20150112132944-c25f46c4b940) -; ("go-github-com-yvasiyarov-gorelic-0.0.6", go-github-com-yvasiyarov-gorelic-0.0.6) -; ("go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20160601141957-9c099fbc30e9", go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20160601141957-9c099fbc30e9) + ("go-github-com-netflix-go-expect-0.0.0-20220104043353-73e0943537d2", go-github-com-netflix-go-expect-0.0.0-20220104043353-73e0943537d2) + ("go-github-com-protonmail-go-crypto-0.0.0-20220113124808-70ae35bab23f", go-github-com-protonmail-go-crypto-0.0.0-20220113124808-70ae35bab23f) + ("go-github-com-adigunhammedolalekan-registry-auth-0.0.0-20200730122110-8cde180a3a60", go-github-com-adigunhammedolalekan-registry-auth-0.0.0-20200730122110-8cde180a3a60) + ("go-github-com-apex-log-1.9.0", go-github-com-apex-log-1.9.0) + ("go-github-com-apptainer-container-key-client-0.7.2", go-github-com-apptainer-container-key-client-0.7.2) + ("go-github-com-apptainer-container-library-client-1.2.2", go-github-com-apptainer-container-library-client-1.2.2) + ("go-github-com-apptainer-sif-v2-2.3.2", go-github-com-apptainer-sif-v2-2.3.2) + ("go-github-com-blang-semver-v4-4.0.0", go-github-com-blang-semver-v4-4.0.0) + ("go-github-com-buger-jsonparser-1.1.1", go-github-com-buger-jsonparser-1.1.1) + ("go-github-com-cenkalti-backoff-v4-4.1.2", go-github-com-cenkalti-backoff-v4-4.1.2) + ("go-github-com-containerd-cgroups-1.0.3", go-github-com-containerd-cgroups-1.0.3) + ("go-github-com-containerd-containerd-1.6.0", go-github-com-containerd-containerd-1.6.0) + ("go-github-com-containernetworking-cni-1.0.1", go-github-com-containernetworking-cni-1.0.1) + ("go-github-com-containernetworking-plugins-1.1.0", go-github-com-containernetworking-plugins-1.1.0) + ("go-github-com-containers-image-v5-5.19.1", go-github-com-containers-image-v5-5.19.1) + ("go-github-com-creack-pty-1.1.17", go-github-com-creack-pty-1.1.17) + ("go-github-com-cyphar-filepath-securejoin-0.2.3", go-github-com-cyphar-filepath-securejoin-0.2.3) + ("go-github-com-docker-docker-20.10.12+incompatible", go-github-com-docker-docker-20.10.12+incompatible) + ("go-github-com-fatih-color-1.13.0", go-github-com-fatih-color-1.13.0) + ("go-github-com-go-log-log-0.2.0", go-github-com-go-log-log-0.2.0) + ("go-github-com-google-uuid-1.3.0", go-github-com-google-uuid-1.3.0) + ("go-github-com-opencontainers-go-digest-1.0.0", go-github-com-opencontainers-go-digest-1.0.0) + ("go-github-com-opencontainers-image-spec-1.0.3-0.20211202193544-a5463b7f9c84", go-github-com-opencontainers-image-spec-1.0.3-0.20211202193544-a5463b7f9c84) + ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417", go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417) + ("go-github-com-opencontainers-runtime-tools-0.9.1-0.20210326182921-59cdde06764b", go-github-com-opencontainers-runtime-tools-0.9.1-0.20210326182921-59cdde06764b) + ("go-github-com-opencontainers-selinux-1.10.0", go-github-com-opencontainers-selinux-1.10.0) + ("go-github-com-opencontainers-umoci-0.4.7", go-github-com-opencontainers-umoci-0.4.7) + ("go-github-com-pelletier-go-toml-1.9.4", go-github-com-pelletier-go-toml-1.9.4) + ("go-github-com-pkg-errors-0.9.1", go-github-com-pkg-errors-0.9.1) + ("go-github-com-seccomp-containers-golang-0.6.0", go-github-com-seccomp-containers-golang-0.6.0) + ("go-github-com-seccomp-libseccomp-golang-0.9.2-0.20210429002308-3879420cc921", go-github-com-seccomp-libseccomp-golang-0.9.2-0.20210429002308-3879420cc921) + ("go-github-com-spf13-cobra-1.3.0", go-github-com-spf13-cobra-1.3.0) + ("go-github-com-spf13-pflag-1.0.5", go-github-com-spf13-pflag-1.0.5) + ("go-github-com-sylabs-json-resp-0.8.0", go-github-com-sylabs-json-resp-0.8.0) + ("go-github-com-vbauerster-mpb-v7-7.4.1", go-github-com-vbauerster-mpb-v7-7.4.1) + ("go-golang-org-x-sys-0.0.0-20220209214540-3681064d5158", go-golang-org-x-sys-0.0.0-20220209214540-3681064d5158) + ("go-golang-org-x-term-0.0.0-20210916214954-140adaaadfaf", go-golang-org-x-term-0.0.0-20210916214954-140adaaadfaf) + ("go-gopkg-in-yaml-v2-2.4.0", go-gopkg-in-yaml-v2-2.4.0) + ("go-gotest-tools-v3-3.1.0", go-gotest-tools-v3-3.1.0) + ("go-mvdan-cc-sh-v3-3.4.3-0.20220202175809-113ed667a8a7", go-mvdan-cc-sh-v3-3.4.3-0.20220202175809-113ed667a8a7) + ("go-oras-land-oras-go-1.1.0", go-oras-land-oras-go-1.1.0) + ("go-github-com-opencontainers-image-spec-1.0.2-0.20211117181255-693428a734f5", go-github-com-opencontainers-image-spec-1.0.2-0.20211117181255-693428a734f5) + ("go-github-com-moby-sys", go-github-com-moby-sys) + ("go-github-com-urfave-cli-1.22.5", go-github-com-urfave-cli-1.22.5) + ("go-github-com-xeipuuv-gojsonpointer-0.0.0-20190905194746-02993c407bfb", go-github-com-xeipuuv-gojsonpointer-0.0.0-20190905194746-02993c407bfb) + ("go-github-com-yvasiyarov-go-metrics-0.0.0-20150112132944-c25f46c4b940", go-github-com-yvasiyarov-go-metrics-0.0.0-20150112132944-c25f46c4b940) + ("go-github-com-yvasiyarov-gorelic-0.0.6", go-github-com-yvasiyarov-gorelic-0.0.6) + ("go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20160601141957-9c099fbc30e9", go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20160601141957-9c099fbc30e9) )) (arguments `(#:phases From b93daf469ae7748f7c35ac897e1d357bec81f8a6 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 25 Mar 2022 08:57:54 +0100 Subject: [PATCH 283/383] adding apptainer 1.0.1 --- glicid/packages/golang.scm | 170 +++++++++++++++++++++++++++++++++++++ 1 file changed, 170 insertions(+) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index a878379..52832b5 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -13134,3 +13134,173 @@ send them to NewRelic.") Format (SIF) that makes it easy to create complete and encapsulated container environments stored in a single file.") (license license:bsd-3))) +(define-public go-github-com-containerd-containerd-1.6.0 + (package + (name "go-github-com-containerd-containerd") + (version "1.6.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/containerd") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1wqmb124l8hjh7a053xjgh1kwblczg6q99l4vh6pi5zmnmdn67iv")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/containerd")) + (propagated-inputs + `(("go-google-golang-org-genproto-0.0.0-20200224152610-e50cd9704f63" + ,go-google-golang-org-genproto-0.0.0-20200224152610-e50cd9704f63) + ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) + ("go-github-com-gogo-googleapis-1.3.2" + ,go-github-com-gogo-googleapis-1.3.2) + ("go-k8s-io-utils-0.0.0-20210930125809-cb0fa318a74b" + ,go-k8s-io-utils-0.0.0-20210930125809-cb0fa318a74b) + ("go-k8s-io-klog-v2-2.30.0" ,go-k8s-io-klog-v2-2.30.0) + ("go-k8s-io-cri-api-0.23.1" ,go-k8s-io-cri-api-0.23.1) + ("go-k8s-io-component-base-0.22.5" ,go-k8s-io-component-base-0.22.5) + ("go-k8s-io-client-go-0.22.5" ,go-k8s-io-client-go-0.22.5) + ("go-k8s-io-apiserver-0.22.5" ,go-k8s-io-apiserver-0.22.5) + ("go-k8s-io-apimachinery-0.22.5" ,go-k8s-io-apimachinery-0.22.5) + ("go-k8s-io-api-0.22.5" ,go-k8s-io-api-0.22.5) + ("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) + ("go-google-golang-org-protobuf-1.27.1" + ,go-google-golang-org-protobuf-1.27.1) + ("go-google-golang-org-grpc-1.43.0" ,go-google-golang-org-grpc-1.43.0) + ("go-golang-org-x-term-0.0.0-20210615171337-6886f2dfbf5b" + ,go-golang-org-x-term-0.0.0-20210615171337-6886f2dfbf5b) + ("go-golang-org-x-sys-0.0.0-20211216021012-1d35b9e2eb4e" + ,go-golang-org-x-sys-0.0.0-20211216021012-1d35b9e2eb4e) + ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" + ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) + ("go-golang-org-x-oauth2-0.0.0-20210819190943-2bc19b11175f" + ,go-golang-org-x-oauth2-0.0.0-20210819190943-2bc19b11175f) + ("go-golang-org-x-net-0.0.0-20211216030914-fe4d6282115f" + ,go-golang-org-x-net-0.0.0-20211216030914-fe4d6282115f) + ("go-golang-org-x-crypto-0.0.0-20210817164053-32db794688a5" + ,go-golang-org-x-crypto-0.0.0-20210817164053-32db794688a5) + ("go-go-opentelemetry-io-otel-trace-1.3.0" + ,go-go-opentelemetry-io-otel-trace-1.3.0) + ("go-go-opentelemetry-io-otel-sdk-1.3.0" + ,go-go-opentelemetry-io-otel-sdk-1.3.0) + ("go-go-opentelemetry-io-otel-exporters-otlp-otlptrace-otlptracehttp-1.3.0" + ,go-go-opentelemetry-io-otel-exporters-otlp-otlptrace-otlptracehttp-1.3.0) + ("go-go-opentelemetry-io-otel-exporters-otlp-otlptrace-otlptracegrpc-1.3.0" + ,go-go-opentelemetry-io-otel-exporters-otlp-otlptrace-otlptracegrpc-1.3.0) + ("go-go-opentelemetry-io-otel-exporters-otlp-otlptrace-1.3.0" + ,go-go-opentelemetry-io-otel-exporters-otlp-otlptrace-1.3.0) + ("go-go-opentelemetry-io-otel-1.3.0" + ,go-go-opentelemetry-io-otel-1.3.0) + ("go-go-opentelemetry-io-contrib-instrumentation-google-golang-org-grpc-otelgrpc-0.28.0" + ,go-go-opentelemetry-io-contrib-instrumentation-google-golang-org-grpc-otelgrpc-0.28.0) + ("go-go-etcd-io-bbolt-1.3.6" ,go-go-etcd-io-bbolt-1.3.6) + ("go-github-com-vishvananda-netlink-1.1.1-0.20210330154013-f5de75959ad5" + ,go-github-com-vishvananda-netlink-1.1.1-0.20210330154013-f5de75959ad5) + ("go-github-com-tchap-go-patricia-2.2.6+incompatible" + ,go-github-com-tchap-go-patricia-2.2.6+incompatible) + ("go-github-com-stretchr-testify-1.7.0" + ,go-github-com-stretchr-testify-1.7.0) + ("go-github-com-sirupsen-logrus-1.8.1" + ,go-github-com-sirupsen-logrus-1.8.1) + ("go-github-com-satori-go-uuid-1.2.0" + ,go-github-com-satori-go-uuid-1.2.0) + ("go-github-com-prometheus-client-golang-1.11.0" + ,go-github-com-prometheus-client-golang-1.11.0) + ("go-github-com-pelletier-go-toml-1.9.3" + ,go-github-com-pelletier-go-toml-1.9.3) + ("go-github-com-opencontainers-selinux-1.10.0" + ,go-github-com-opencontainers-selinux-1.10.0) + ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417" + ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417) + ("go-github-com-opencontainers-runc-1.1.0" + ,go-github-com-opencontainers-runc-1.1.0) + ("go-github-com-opencontainers-image-spec-1.0.2-0.20211117181255-693428a734f5" + ,go-github-com-opencontainers-image-spec-1.0.2-0.20211117181255-693428a734f5) + ("go-github-com-opencontainers-go-digest-1.0.0" + ,go-github-com-opencontainers-go-digest-1.0.0) + ("go-github-com-moby-sys-symlink-0.2.0" + ,go-github-com-moby-sys-symlink-0.2.0) + ("go-github-com-moby-sys-signal-0.6.0" + ,go-github-com-moby-sys-signal-0.6.0) + ("go-github-com-moby-sys-mountinfo-0.5.0" + ,go-github-com-moby-sys-mountinfo-0.5.0) + ("go-github-com-moby-locker-1.0.1" ,go-github-com-moby-locker-1.0.1) + ("go-github-com-klauspost-compress-1.11.13" + ,go-github-com-klauspost-compress-1.11.13) + ("go-github-com-json-iterator-go-1.1.12" + ,go-github-com-json-iterator-go-1.1.12) + ("go-github-com-intel-goresctrl-0.2.0" + ,go-github-com-intel-goresctrl-0.2.0) + ("go-github-com-imdario-mergo-0.3.12" + ,go-github-com-imdario-mergo-0.3.12) + ("go-github-com-hashicorp-go-multierror-1.1.1" + ,go-github-com-hashicorp-go-multierror-1.1.1) + ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" + ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) + ("go-github-com-grpc-ecosystem-go-grpc-middleware-1.3.0" + ,go-github-com-grpc-ecosystem-go-grpc-middleware-1.3.0) + ("go-github-com-google-uuid-1.2.0" ,go-github-com-google-uuid-1.2.0) + ("go-github-com-google-go-cmp-0.5.6" + ,go-github-com-google-go-cmp-0.5.6) + ("go-github-com-gogo-protobuf-1.3.2" + ,go-github-com-gogo-protobuf-1.3.2) + ("go-github-com-go-logr-stdr-1.2.2" ,go-github-com-go-logr-stdr-1.2.2) + ("go-github-com-fsnotify-fsnotify-1.4.9" + ,go-github-com-fsnotify-fsnotify-1.4.9) + ("go-github-com-emicklei-go-restful-2.9.5+incompatible" + ,go-github-com-emicklei-go-restful-2.9.5+incompatible) + ("go-github-com-docker-go-units-0.4.0" + ,go-github-com-docker-go-units-0.4.0) + ("go-github-com-docker-go-metrics-0.0.1" + ,go-github-com-docker-go-metrics-0.0.1) + ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" + ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1) + ("go-github-com-coreos-go-systemd-v22-22.3.2" + ,go-github-com-coreos-go-systemd-v22-22.3.2) + ("go-github-com-containernetworking-plugins-1.0.1" + ,go-github-com-containernetworking-plugins-1.0.1) + ("go-github-com-containerd-zfs-1.0.0" + ,go-github-com-containerd-zfs-1.0.0) + ("go-github-com-containerd-typeurl-1.0.2" + ,go-github-com-containerd-typeurl-1.0.2) + ("go-github-com-containerd-ttrpc-1.1.0" + ,go-github-com-containerd-ttrpc-1.1.0) + ("go-github-com-containerd-nri-0.1.0" + ,go-github-com-containerd-nri-0.1.0) + ("go-github-com-containerd-imgcrypt-1.1.3" + ,go-github-com-containerd-imgcrypt-1.1.3) + ("go-github-com-containerd-go-runc-1.0.0" + ,go-github-com-containerd-go-runc-1.0.0) + ("go-github-com-containerd-go-cni-1.1.3" + ,go-github-com-containerd-go-cni-1.1.3) + ("go-github-com-containerd-fifo-1.0.0" + ,go-github-com-containerd-fifo-1.0.0) + ("go-github-com-containerd-continuity-0.2.2" + ,go-github-com-containerd-continuity-0.2.2) + ("go-github-com-containerd-console-1.0.3" + ,go-github-com-containerd-console-1.0.3) + ("go-github-com-containerd-cgroups-1.0.3" + ,go-github-com-containerd-cgroups-1.0.3) + ("go-github-com-containerd-btrfs-1.0.0" + ,go-github-com-containerd-btrfs-1.0.0) + ("go-github-com-containerd-aufs-1.0.0" + ,go-github-com-containerd-aufs-1.0.0) + ("go-github-com-microsoft-hcsshim-0.9.2" + ,go-github-com-microsoft-hcsshim-0.9.2) + ("go-github-com-microsoft-go-winio-0.5.1" + ,go-github-com-microsoft-go-winio-0.5.1) + ("go-github-com-adalogics-go-fuzz-headers-0.0.0-20210715213245-6c3934b029d8" + ,go-github-com-adalogics-go-fuzz-headers-0.0.0-20210715213245-6c3934b029d8) + ("go-cloud-google-com-go-0.81.0" ,go-cloud-google-com-go-0.81.0))) + (home-page "https://github.com/containerd/containerd") + (synopsis "Now Recruiting") + (description + "containerd is an industry-standard container runtime with an emphasis on +simplicity, robustness and portability. It is available as a daemon for Linux +and Windows, which can manage the complete container lifecycle of its host +system: image transfer and storage, container execution and supervision, +low-level storage and network attachments, etc.") + (license license:asl2.0))) From 3beaf4e7792edd116a4242149667a92374034c02 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 25 Mar 2022 09:00:55 +0100 Subject: [PATCH 284/383] adding apptainer 1.0.1 --- glicid/packages/golang.scm | 77 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 77 insertions(+) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index 52832b5..a0ca65e 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -13304,3 +13304,80 @@ and Windows, which can manage the complete container lifecycle of its host system: image transfer and storage, container execution and supervision, low-level storage and network attachments, etc.") (license license:asl2.0))) +(define-public go-github-com-containernetworking-plugins-1.1.0 + (package + (name "go-github-com-containernetworking-plugins") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containernetworking/plugins") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "10c9sxi5nq88772ql35a3vy5m1wrdyji4imc4ysl27malcqxhiik")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containernetworking/plugins")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) + ("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" + ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) + ("go-golang-org-x-text-0.3.6" ,go-golang-org-x-text-0.3.6) + ("go-golang-org-x-net-0.0.0-20210428140749-89ef3d95e781" + ,go-golang-org-x-net-0.0.0-20210428140749-89ef3d95e781) + ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) + ("go-github-com-vishvananda-netns-0.0.0-20210104183010-2eb08e3e575f" + ,go-github-com-vishvananda-netns-0.0.0-20210104183010-2eb08e3e575f) + ("go-github-com-sirupsen-logrus-1.8.1" + ,go-github-com-sirupsen-logrus-1.8.1) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-nxadm-tail-1.4.8" ,go-github-com-nxadm-tail-1.4.8) + ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" + ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) + ("go-github-com-gogo-protobuf-1.3.2" + ,go-github-com-gogo-protobuf-1.3.2) + ("go-github-com-fsnotify-fsnotify-1.4.9" + ,go-github-com-fsnotify-fsnotify-1.4.9) + ("go-github-com-containerd-cgroups-1.0.1" + ,go-github-com-containerd-cgroups-1.0.1) + ("go-github-com-microsoft-go-winio-0.4.17" + ,go-github-com-microsoft-go-winio-0.4.17) + ("go-golang-org-x-sys-0.0.0-20210809222454-d867a43fc93e" + ,go-golang-org-x-sys-0.0.0-20210809222454-d867a43fc93e) + ("go-github-com-vishvananda-netlink-1.1.1-0.20210330154013-f5de75959ad5" + ,go-github-com-vishvananda-netlink-1.1.1-0.20210330154013-f5de75959ad5) + ("go-github-com-safchain-ethtool-0.0.0-20210803160452-9aa261dae9b1" + ,go-github-com-safchain-ethtool-0.0.0-20210803160452-9aa261dae9b1) + ("go-github-com-onsi-gomega-1.15.0" ,go-github-com-onsi-gomega-1.15.0) + ("go-github-com-onsi-ginkgo-1.16.4" ,go-github-com-onsi-ginkgo-1.16.4) + ("go-github-com-networkplumbing-go-nft-0.2.0" + ,go-github-com-networkplumbing-go-nft-0.2.0) + ("go-github-com-mattn-go-shellwords-1.0.12" + ,go-github-com-mattn-go-shellwords-1.0.12) + ("go-github-com-godbus-dbus-v5-5.0.4" + ,go-github-com-godbus-dbus-v5-5.0.4) + ("go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5" + ,go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5) + ("go-github-com-d2g-dhcp4client-1.0.0" + ,go-github-com-d2g-dhcp4client-1.0.0) + ("go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c" + ,go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c) + ("go-github-com-coreos-go-systemd-v22-22.3.2" + ,go-github-com-coreos-go-systemd-v22-22.3.2) + ("go-github-com-coreos-go-iptables-0.6.0" + ,go-github-com-coreos-go-iptables-0.6.0) + ("go-github-com-containernetworking-cni-1.0.1" + ,go-github-com-containernetworking-cni-1.0.1) + ("go-github-com-buger-jsonparser-1.1.1" + ,go-github-com-buger-jsonparser-1.1.1) + ("go-github-com-alexflint-go-filemutex-1.1.0" + ,go-github-com-alexflint-go-filemutex-1.1.0) + ("go-github-com-microsoft-hcsshim-0.8.20" + ,go-github-com-microsoft-hcsshim-0.8.20))) + (home-page "https://github.com/containernetworking/plugins") + (synopsis "Plugins") + (description + "Some CNI network plugins, maintained by the containernetworking team. For more +information, see the @url{https://www.cni.dev,CNI website}.") + (license license:asl2.0))) From a43878dcd4e3d3324c632c9f14f8ad9bfd1dba48 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 25 Mar 2022 09:05:51 +0100 Subject: [PATCH 285/383] adding apptainer 1.0.1 --- glicid/packages/golang.scm | 94 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 94 insertions(+) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index a0ca65e..0279069 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -13381,3 +13381,97 @@ low-level storage and network attachments, etc.") "Some CNI network plugins, maintained by the containernetworking team. For more information, see the @url{https://www.cni.dev,CNI website}.") (license license:asl2.0))) +(define-public go-github-com-containers-image-v5-5.19.1 + (package + (name "go-github-com-containers-image-v5") + (version "5.19.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containers/image") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wyq3ns6yrzi9bff2kb8p3rppw652m4ffq8374sdjkn7f39z4inf")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containers/image/v5")) + (propagated-inputs + `(("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" + ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) + ("go-golang-org-x-sys-0.0.0-20220114195835-da31bd327af9" + ,go-golang-org-x-sys-0.0.0-20220114195835-da31bd327af9) + ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" + ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) + ("go-golang-org-x-net-0.0.0-20211112202133-69e39bad7dc2" + ,go-golang-org-x-net-0.0.0-20211112202133-69e39bad7dc2) + ("go-golang-org-x-crypto-0.0.0-20211215153901-e495a2d5b3d3" + ,go-golang-org-x-crypto-0.0.0-20211215153901-e495a2d5b3d3) + ("go-go-etcd-io-bbolt-1.3.6" ,go-go-etcd-io-bbolt-1.3.6) + ("go-github-com-xeipuuv-gojsonschema-1.2.0" + ,go-github-com-xeipuuv-gojsonschema-1.2.0) + ("go-github-com-xeipuuv-gojsonpointer-0.0.0-20190809123943-df4f5c81cb3b" + ,go-github-com-xeipuuv-gojsonpointer-0.0.0-20190809123943-df4f5c81cb3b) + ("go-github-com-vbauerster-mpb-v7-7.3.2" + ,go-github-com-vbauerster-mpb-v7-7.3.2) + ("go-github-com-vbatts-tar-split-0.11.2" + ,go-github-com-vbatts-tar-split-0.11.2) + ("go-github-com-ulikunitz-xz-0.5.10" + ,go-github-com-ulikunitz-xz-0.5.10) + ("go-github-com-sylabs-sif-v2-2.3.1" + ,go-github-com-sylabs-sif-v2-2.3.1) + ("go-github-com-stretchr-testify-1.7.0" + ,go-github-com-stretchr-testify-1.7.0) + ("go-github-com-sirupsen-logrus-1.8.1" + ,go-github-com-sirupsen-logrus-1.8.1) + ("go-github-com-proglottis-gpgme-0.1.1" + ,go-github-com-proglottis-gpgme-0.1.1) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-ostreedev-ostree-go-0.0.0-20190702140239-759a8c1ac913" + ,go-github-com-ostreedev-ostree-go-0.0.0-20190702140239-759a8c1ac913) + ("go-github-com-opencontainers-selinux-1.10.0" + ,go-github-com-opencontainers-selinux-1.10.0) + ("go-github-com-opencontainers-image-spec-1.0.3-0.20211202193544-a5463b7f9c84" + ,go-github-com-opencontainers-image-spec-1.0.3-0.20211202193544-a5463b7f9c84) + ("go-github-com-opencontainers-go-digest-1.0.0" + ,go-github-com-opencontainers-go-digest-1.0.0) + ("go-github-com-manifoldco-promptui-0.9.0" + ,go-github-com-manifoldco-promptui-0.9.0) + ("go-github-com-klauspost-pgzip-1.2.5" + ,go-github-com-klauspost-pgzip-1.2.5) + ("go-github-com-klauspost-compress-1.14.2" + ,go-github-com-klauspost-compress-1.14.2) + ("go-github-com-imdario-mergo-0.3.12" + ,go-github-com-imdario-mergo-0.3.12) + ("go-github-com-hashicorp-go-multierror-1.1.1" + ,go-github-com-hashicorp-go-multierror-1.1.1) + ("go-github-com-gorilla-mux-1.7.4" ,go-github-com-gorilla-mux-1.7.4) + ("go-github-com-ghodss-yaml-1.0.0" ,go-github-com-ghodss-yaml-1.0.0) + ("go-github-com-docker-libtrust-0.0.0-20160708172513-aabc10ec26b7" + ,go-github-com-docker-libtrust-0.0.0-20160708172513-aabc10ec26b7) + ("go-github-com-docker-go-connections-0.4.0" + ,go-github-com-docker-go-connections-0.4.0) + ("go-github-com-docker-docker-credential-helpers-0.6.4" + ,go-github-com-docker-docker-credential-helpers-0.6.4) + ("go-github-com-docker-docker-20.10.12+incompatible" + ,go-github-com-docker-docker-20.10.12+incompatible) + ("go-github-com-docker-distribution-2.7.1+incompatible" + ,go-github-com-docker-distribution-2.7.1+incompatible) + ("go-github-com-containers-storage-1.38.2" + ,go-github-com-containers-storage-1.38.2) + ("go-github-com-containers-ocicrypt-1.1.2" + ,go-github-com-containers-ocicrypt-1.1.2) + ("go-github-com-containers-libtrust-0.0.0-20190913040956-14b96171aa3b" + ,go-github-com-containers-libtrust-0.0.0-20190913040956-14b96171aa3b) + ("go-github-com-containerd-containerd-1.5.9" + ,go-github-com-containerd-containerd-1.5.9) + ("go-github-com-burntsushi-toml-1.0.0" + ,go-github-com-burntsushi-toml-1.0.0) + ("go-github-com-14rcole-gopopulate-0.0.0-20180821133914-b175b219e774" + ,go-github-com-14rcole-gopopulate-0.0.0-20180821133914-b175b219e774))) + (home-page "https://github.com/containers/image") + (synopsis "") + (description + "The package image provides libraries and commands to interact with container +images.") + (license license:asl2.0))) From 13e10f1c193e7fc7e1686bfc80edc43b72ba0c21 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 25 Mar 2022 09:08:14 +0100 Subject: [PATCH 286/383] adding apptainer 1.0.1 --- glicid/packages/golang.scm | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index 0279069..4a6aaba 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -13475,3 +13475,33 @@ information, see the @url{https://www.cni.dev,CNI website}.") "The package image provides libraries and commands to interact with container images.") (license license:asl2.0))) +(define-public go-github-com-spf13-cobra + (package + (name "go-github-com-spf13-cobra") + (version "1.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/spf13/cobra") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0j3kj6yxrl2aigixapjl6bi2gmghrj52763wbd7jc079f38wz94n")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/spf13/cobra")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2" ,go-gopkg-in-yaml-v2) + ("go-github-com-spf13-viper" ,go-github-com-spf13-viper) + ("go-github-com-spf13-pflag" ,go-github-com-spf13-pflag) + ("go-github-com-inconshreveable-mousetrap" + ,go-github-com-inconshreveable-mousetrap) + ("go-github-com-cpuguy83-go-md2man-v2" + ,go-github-com-cpuguy83-go-md2man-v2))) + (home-page "https://github.com/spf13/cobra") + (synopsis "Overview") + (description + "Package cobra is a commander providing a simple interface to create powerful +modern CLI interfaces. In addition to providing an interface, Cobra +simultaneously provides a controller to organize your application code.") + (license license:asl2.0))) From 02544db3df4919b14a2f4712f8d3d9b7a5827480 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 25 Mar 2022 09:29:41 +0100 Subject: [PATCH 287/383] adding apptainer 1.0.1 --- glicid/packages/golang.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index 4a6aaba..34634d1 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -13475,7 +13475,7 @@ information, see the @url{https://www.cni.dev,CNI website}.") "The package image provides libraries and commands to interact with container images.") (license license:asl2.0))) -(define-public go-github-com-spf13-cobra +(define-public go-github-com-spf13-cobra-1.3.0 (package (name "go-github-com-spf13-cobra") (version "1.3.0") From 1d9245565cb5da1331a46a8ff51ea371046a2205 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 25 Mar 2022 10:05:40 +0100 Subject: [PATCH 288/383] adding apptainer 1.0.1 --- glicid/packages/golang.scm | 13472 +---------------------------------- 1 file changed, 7 insertions(+), 13465 deletions(-) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index 34634d1..0e12e84 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -6,13024 +6,25 @@ #:use-module (guix packages) ) -(define-public go-github-com-creack-pty-1.1.17 +(define-public go-github-com-moby-sys-0.0.0-20220308220145-03355939d693 (package - (name "go-github-com-creack-pty") - (version "1.1.17") + (name "go-github-com-moby-sys") + (version "0.0.0-20220308220145-03355939d693") (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/creack/pty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "09lcq5bw1dwppxjia05sj4fy7gbk62vishfz1bgrbd1r06i57mjf")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/creack/pty")) - (home-page "https://github.com/creack/pty") - (synopsis "pty") - (description - "Package pty provides functions for working with Unix terminals.") - (license license:expat))) - -(define-public go-github-com-davecgh-go-spew-1.1.0 - (package - (name "go-github-com-davecgh-go-spew") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/davecgh/go-spew") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/davecgh/go-spew")) - (home-page "https://github.com/davecgh/go-spew") - (synopsis "go-spew") - (description - "Go-spew implements a deep pretty printer for Go data structures to aid in -debugging. A comprehensive suite of tests with 100% test coverage is provided -to ensure proper functionality. See @code{test_coverage.txt} for the gocov -coverage report. Go-spew is licensed under the liberal ISC license, so it may -be used in open source or commercial projects.") - (license license:isc))) - -(define-public go-github-com-pmezard-go-difflib-1.0.0 - (package - (name "go-github-com-pmezard-go-difflib") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pmezard/go-difflib") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pmezard/go-difflib")) - (home-page "https://github.com/pmezard/go-difflib") - (synopsis "go-difflib") - (description - "Go-difflib is a partial port of python 3 difflib package. Its main goal was to -make unified and context diff available in pure Go, mostly for testing purposes.") - (license license:bsd-3))) - -(define-public go-github-com-stretchr-objx-0.1.0 - (package - (name "go-github-com-stretchr-objx") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/objx") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/objx")) - (home-page "https://github.com/stretchr/objx") - (synopsis "Objx") - (description - "Objx - Go package for dealing with maps, slices, JSON and other data.") - (license license:expat))) - -(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 - (package - (name "go-gopkg-in-check-v1") - (version "0.0.0-20161208181325-20d25e280405") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/check.v1") + (url "https://github.com/moby/sys") (commit (go-version->git-ref version)))) (file-name (git-file-name name version)) (sha256 - (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) + (base32 "1ns4bav4n0k93nwz898dmcrz9zm4fa08sxyzhi7wqj4f8mpz4fam")))) (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) - (home-page "https://gopkg.in/check.v1") - (synopsis "Instructions") - (description - "Package check is a rich testing extension for Go's testing package.") - (license license:bsd-2))) - -(define-public go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c - (package - (name "go-gopkg-in-yaml-v3") - (version "3.0.0-20200313102051-9f266ea9e77c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v3") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1bbai3lzb50m0x2vwsdbagrbhvfylj9k1m32hgbqwldqx4p9ay35")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v3") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language.") - (license license:expat))) - -(define-public go-github-com-stretchr-testify-1.6.1 - (package - (name "go-github-com-stretchr-testify") - (version "1.6.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/testify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1yhiqqzjvi63pf01rgzx68gqkkvjx03fvl5wk30br5l6s81s090l")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/testify")) - (propagated-inputs - `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" - ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) - ("go-github-com-stretchr-objx-0.1.0" - ,go-github-com-stretchr-objx-0.1.0) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.0" - ,go-github-com-davecgh-go-spew-1.1.0))) - (home-page "https://github.com/stretchr/testify") - (synopsis "Testify - Thou Shalt Write Tests") - (description - "** We are working on testify v2 and would love to hear what you'd like to see in -it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -Package testify is a set of packages that provide many tools for testifying that -your code will behave as you intend.") - (license license:expat))) - -(define-public go-github-com-netflix-go-expect-0.0.0-20220104043353-73e0943537d2 - (package - (name "go-github-com-netflix-go-expect") - (version "0.0.0-20220104043353-73e0943537d2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/Netflix/go-expect") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0zkvhnc4ii6ygvcsj54ng0kql26rnny7l3hy1w61g88mxjsww1b9")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/Netflix/go-expect")) - (propagated-inputs - `(("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-creack-pty-1.1.17" ,go-github-com-creack-pty-1.1.17))) - (home-page "https://github.com/Netflix/go-expect") - (synopsis "go-expect") - (description - "Package expect provides an expect-like interface to automate control of -applications. It is unlike expect in that it does not spawn or manage process -lifecycle. This package only focuses on expecting output and sending input -through it's psuedoterminal.") - (license license:asl2.0))) - -(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20180917221912-90fa682c2a6e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-golang-org-x-text-0.3.3 - (package - (name "go-golang-org-x-text") - (version "0.3.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19pihqm3phyndmiw6i42pdv6z1rbvlqlsnhsyqf9gsnn0qnmqqlh")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/text")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" - ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) - (home-page "https://golang.org/x/text") - (synopsis "Go Text") - (description - "text is a repository of text-related packages related to internationalization -(i18n) and localization (l10n), such as character encodings, text -transformations, and locale-specific text handling.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20210226172049-e18ecbb05110") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1vlq8mdscp7yfaa1lmyv03y5m4c2d67ydg2q1i6smkrxghn3zn3q")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) - ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" - ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) - ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" - ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20201119102817-f84b799fce68") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1dvhqian5byzkcg1bnqzygqa6ccc6krc2q7j12pp1vhl3y7znnsg")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1 - (package - (name "go-golang-org-x-term") - (version "0.0.0-20201126162022-7de9c90e9dd1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/term") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ba252xmv6qsvf1w1gcy98mngrj0vd4inbjw0lsklqvva65nljna")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/term")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" - ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) - (home-page "https://golang.org/x/term") - (synopsis "Go terminal/console support") - (description - "Package term provides support functions for dealing with terminals, as commonly -found on UNIX systems.") - (license license:bsd-3))) - -(define-public go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20210322153248-0c34fe9e7dc2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "021szs1czc0xg4chpays7i05dvkax9s8mns314ab01r887kchqxq")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" - ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) - ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" - ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68) - ("go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110" - ,go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-github-com-protonmail-go-crypto-0.0.0-20220113124808-70ae35bab23f - (package - (name "go-github-com-protonmail-go-crypto") - (version "0.0.0-20220113124808-70ae35bab23f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/ProtonMail/go-crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0dpalb7cd2xs0hji80zv378vf8gx4ph7b8xdd05kvbskyw67fb7n")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/ProtonMail/go-crypto")) - (propagated-inputs - `(("go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2" - ,go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2))) - (home-page "https://github.com/ProtonMail/go-crypto") - (synopsis #f) - (description - "This module is backwards compatible with x/crypto/openpgp, so you can simply -replace all imports of @code{golang.org/x/crypto/openpgp} with -@code{github.com/ProtonMail/go-crypto/openpgp}.") - (license license:bsd-3))) - -(define-public go-github-com-docker-distribution-2.7.1+incompatible - (package - (name "go-github-com-docker-distribution") - (version "2.7.1+incompatible") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/distribution/distribution") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1nx8b5a68rn81alp8wkkw6qd5v32mgf0fk23mxm60zdf63qk1nzw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/docker/distribution")) - (home-page "https://github.com/docker/distribution") - (synopsis "Distribution") - (description - "Package distribution will define the interfaces for the components of docker -distribution. The goal is to allow users to reliably package, ship and store -content related to docker images.") - (license license:asl2.0))) - -(define-public go-github-com-docker-libtrust-0.0.0-20160708172513-aabc10ec26b7 - (package - (name "go-github-com-docker-libtrust") - (version "0.0.0-20160708172513-aabc10ec26b7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/docker/libtrust") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1lwslbggzc2b0c4wxl5pn6i2nfgz5jz8f7s7vnid9mrlsk59h7s1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/docker/libtrust")) - (home-page "https://github.com/docker/libtrust") - (synopsis "libtrust") - (description - "Package libtrust provides an interface for managing authentication and -authorization using public key cryptography. Authentication is handled using -the identity attached to the public key and verified through TLS x509 -certificates, a key challenge, or signature. Authorization and access control -is managed through a trust graph distributed between both remote trust servers -and locally cached and managed data.") - (license license:asl2.0))) - -(define-public go-github-com-gorilla-mux-1.7.4 - (package - (name "go-github-com-gorilla-mux") - (version "1.7.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gorilla/mux") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1d0sy1paa055ic84sp3766s9pa24q008hf77dc842vrgvn8p3wmh")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/gorilla/mux")) - (home-page "https://github.com/gorilla/mux") - (synopsis "gorilla/mux") - (description "Package mux implements a request router and dispatcher.") - (license license:bsd-3))) - -(define-public go-github-com-davecgh-go-spew-1.1.1 - (package - (name "go-github-com-davecgh-go-spew") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/davecgh/go-spew") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/davecgh/go-spew")) - (home-page "https://github.com/davecgh/go-spew") - (synopsis "go-spew") - (description - "Go-spew implements a deep pretty printer for Go data structures to aid in -debugging. A comprehensive suite of tests with 100% test coverage is provided -to ensure proper functionality. See @code{test_coverage.txt} for the gocov -coverage report. Go-spew is licensed under the liberal ISC license, so it may -be used in open source or commercial projects.") - (license license:isc))) - -(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.1 - (package - (name "go-github-com-konsorten-go-windows-terminal-sequences") - (version "1.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/konsorten/go-windows-terminal-sequences") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1lchgf27n276vma6iyxa0v1xds68n2g8lih5lavqnx5x6q5pw2ip")))) - (build-system go-build-system) - (arguments - '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) - (home-page "https://github.com/konsorten/go-windows-terminal-sequences") - (synopsis "Windows Terminal Sequences") - (description - "This library allow for enabling Windows terminal color support for Go.") - (license license:expat))) - -(define-public go-github-com-pmezard-go-difflib-1.0.0 - (package - (name "go-github-com-pmezard-go-difflib") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pmezard/go-difflib") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pmezard/go-difflib")) - (home-page "https://github.com/pmezard/go-difflib") - (synopsis "go-difflib") - (description - "Go-difflib is a partial port of python 3 difflib package. Its main goal was to -make unified and context diff available in pure Go, mostly for testing purposes.") - (license license:bsd-3))) - -(define-public go-github-com-stretchr-objx-0.1.1 - (package - (name "go-github-com-stretchr-objx") - (version "0.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/objx") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0iph0qmpyqg4kwv8jsx6a56a7hhqq8swrazv40ycxk9rzr0s8yls")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/objx")) - (home-page "https://github.com/stretchr/objx") - (synopsis "Objx") - (description - "Objx - Go package for dealing with maps, slices, JSON and other data.") - (license license:expat))) - -(define-public go-github-com-stretchr-testify-1.2.2 - (package - (name "go-github-com-stretchr-testify") - (version "1.2.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/testify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0dlszlshlxbmmfxj5hlwgv3r22x0y1af45gn1vd198nvvs3pnvfs")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/testify")) - (home-page "https://github.com/stretchr/testify") - (synopsis "Testify - Thou Shalt Write Tests") - (description - "** We are working on testify v2 and would love to hear what you'd like to see in -it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -Package testify is a set of packages that provide many tools for testifying that -your code will behave as you intend.") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190422165155-953cdadca894") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0gkha4whk8xkcv3isigbs250akag99isxnd3v9xmy0kl3g88hxy1")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-sirupsen-logrus-1.4.2 - (package - (name "go-github-com-sirupsen-logrus") - (version "1.4.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sirupsen/logrus") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "087k2lxrr9p9dh68yw71d05h5g9p5v26zbwd6j7lghinjfaw334x")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/sirupsen/logrus")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894" - ,go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894) - ("go-github-com-stretchr-testify-1.2.2" - ,go-github-com-stretchr-testify-1.2.2) - ("go-github-com-stretchr-objx-0.1.1" - ,go-github-com-stretchr-objx-0.1.1) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.1" - ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.1) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/sirupsen/logrus") - (synopsis "Logrus") - (description - "Package logrus is a structured logger for Go, completely API compatible with the -standard library logger.") - (license license:expat))) - -(define-public go-github-com-adigunhammedolalekan-registry-auth-0.0.0-20200730122110-8cde180a3a60 - (package - (name "go-github-com-adigunhammedolalekan-registry-auth") - (version "0.0.0-20200730122110-8cde180a3a60") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/adigunhammedolalekan/registry-auth") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0855a5c0ifi6q2ghb6gax0kwwra5j7pd2lplq4wp8r83dnv4vwj0")))) - (build-system go-build-system) - (arguments - '(#:import-path "github.com/adigunhammedolalekan/registry-auth")) - (propagated-inputs - `(("go-github-com-sirupsen-logrus-1.4.2" - ,go-github-com-sirupsen-logrus-1.4.2) - ("go-github-com-gorilla-mux-1.7.4" ,go-github-com-gorilla-mux-1.7.4) - ("go-github-com-docker-libtrust-0.0.0-20160708172513-aabc10ec26b7" - ,go-github-com-docker-libtrust-0.0.0-20160708172513-aabc10ec26b7) - ("go-github-com-docker-distribution-2.7.1+incompatible" - ,go-github-com-docker-distribution-2.7.1+incompatible))) - (home-page "https://github.com/adigunhammedolalekan/registry-auth") - (synopsis "registry-auth") - (description - "a package to implements docker registry token authentication server as described -here -[https://github.com/docker/distribution/blob/1b9ab303a477ded9bdd3fc97e9119fa8f9e58fca/docs/spec/auth/index.md]") - (license license:expat))) - -(define-public go-github-com-stretchr-testify-1.3.0 - (package - (name "go-github-com-stretchr-testify") - (version "1.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/testify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0wjchp2c8xbgcbbq32w3kvblk6q6yn533g78nxl6iskq6y95lxsy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/testify")) - (propagated-inputs - `(("go-github-com-stretchr-objx-0.1.0" - ,go-github-com-stretchr-objx-0.1.0) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.0" - ,go-github-com-davecgh-go-spew-1.1.0))) - (home-page "https://github.com/stretchr/testify") - (synopsis "Testify - Thou Shalt Write Tests") - (description - "** We are working on testify v2 and would love to hear what you'd like to see in -it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -Package testify is a set of packages that provide many tools for testifying that -your code will behave as you intend.") - (license license:expat))) - -(define-public go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0 - (package - (name "go-github-com-tj-assert") - (version "0.0.0-20171129193455-018094318fb0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/tj/assert") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "15ika7izp5hkd10dm30apwfvpm0d1yl2rnxs6896q0svz9zvi2z3")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/tj/assert")) - (home-page "https://github.com/tj/assert") - (synopsis "assert") - (description - "Package assert implements the same assertions as the `assert` package but stops -test execution when a test fails.") - (license license:expat))) - -(define-public go-github-com-apex-logs-1.0.0 - (package - (name "go-github-com-apex-logs") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/apex/logs") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1kysjp3s8718p02ngpr60gnjjspv0a69biksfjqa1540svrbi850")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/apex/logs")) - (propagated-inputs - `(("go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0" - ,go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0) - ("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0))) - (home-page "https://github.com/apex/logs") - (synopsis "Example") - (description "Go client for @url{https://apex.sh/logs/,Apex Logs}.") - (license license:expat))) - -(define-public go-github-com-aphistic-golf-0.0.0-20180712155816-02c07f170c5a - (package - (name "go-github-com-aphistic-golf") - (version "0.0.0-20180712155816-02c07f170c5a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/aphistic/golf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1qixab9bb29wqbr4nc5j3g25hq1j7am93f181rkj7a4qacncx763")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/aphistic/golf")) - (home-page "https://github.com/aphistic/golf") - (synopsis "golf") - (description - "This package provides logging capabilities using the GELF -(@url{https://www.graylog.org/resources/gelf-2/,https://www.graylog.org/resources/gelf-2/}) -log format") - (license license:expat))) - -(define-public go-github-com-mattn-go-isatty-0.0.5 - (package - (name "go-github-com-mattn-go-isatty") - (version "0.0.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mattn/go-isatty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "114d5xm8rfxplzd7nxz97gfngb4bhqy102szl084d1afcxsvm4aa")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mattn/go-isatty")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223" - ,go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223))) - (home-page "https://github.com/mattn/go-isatty") - (synopsis "go-isatty") - (description "Package isatty implements interface to isatty") - (license license:expat))) - -(define-public go-github-com-mattn-go-colorable-0.1.1 - (package - (name "go-github-com-mattn-go-colorable") - (version "0.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mattn/go-colorable") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0l640974j804c1yyjfgyxqlsivz0yrzmbql4mhcw2azryigkp08p")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mattn/go-colorable")) - (propagated-inputs - `(("go-github-com-mattn-go-isatty-0.0.5" - ,go-github-com-mattn-go-isatty-0.0.5))) - (home-page "https://github.com/mattn/go-colorable") - (synopsis "go-colorable") - (description "Colorable writer for windows.") - (license license:expat))) - -(define-public go-github-com-mgutz-ansi-0.0.0-20170206155736-9520e82c474b - (package - (name "go-github-com-mgutz-ansi") - (version "0.0.0-20170206155736-9520e82c474b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mgutz/ansi") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "00bz22314j26736w1f0q4jy9d9dfaml17vn890n5zqy3cmvmww1j")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mgutz/ansi")) - (home-page "https://github.com/mgutz/ansi") - (synopsis "ansi") - (description - "Package ansi is a small, fast library to create ANSI colored strings and codes.") - (license license:expat))) - -(define-public go-github-com-fsnotify-fsnotify-1.4.7 - (package - (name "go-github-com-fsnotify-fsnotify") - (version "1.4.7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/fsnotify/fsnotify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/fsnotify/fsnotify")) - (home-page "https://github.com/fsnotify/fsnotify") - (synopsis "File system notifications for Go") - (description - "Package fsnotify provides a platform-independent interface for file system -notifications.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.2.0 - (package - (name "go-github-com-golang-protobuf") - (version "1.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0kf4b59rcbb1cchfny2dm9jyznp8ri2hsb14n8iak1q8986xa0ab")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code -github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-github-com-hpcloud-tail-1.0.0 - (package - (name "go-github-com-hpcloud-tail") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hpcloud/tail") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1njpzc0pi1acg5zx9y6vj9xi6ksbsc5d387rd6904hy6rh2m6kn0")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hpcloud/tail")) - (home-page "https://github.com/hpcloud/tail") - (synopsis "Go package for tail-ing files") - (description - "This package provides a Go package striving to emulate the features of the BSD -@code{tail} program.") - (license license:expat))) - -(define-public go-github-com-onsi-ginkgo-1.6.0 - (package - (name "go-github-com-onsi-ginkgo") - (version "1.6.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/onsi/ginkgo") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0x0gc89vgq38xhgmi2h22bhr73cf2gmk42g89nz89k8dgg9hhr25")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/onsi/ginkgo")) - (home-page "https://github.com/onsi/ginkgo") - (synopsis "Ginkgo 2.0 Release Candidate is available!") - (description "Ginkgo is a BDD-style testing framework for Golang") - (license license:expat))) - -(define-public go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd - (package - (name "go-golang-org-x-net") - (version "0.0.0-20180906233101-161cd47e91fd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0254ld010iijygbzykib2vags1dc0wlmcmhgh4jl8iny159lhbcv")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20180314180146-1d60e4601c6f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "046jlanz2lkxq1r57x9bl6s4cvfqaic6p2xybsj8mq1120jv4rs6")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the ones -provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20180909124046-d0be0721c37e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "081wyvfnlf842dqg03raxfz6lldlxpmyh1prix9lmrrm65arxb12")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-gopkg-in-fsnotify-v1-1.4.7 - (package - (name "go-gopkg-in-fsnotify-v1") - (version "1.4.7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/fsnotify.v1") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) - (build-system go-build-system) - (arguments - '(#:import-path - "gopkg.in/fsnotify.v1" - #:unpack-path - "gopkg.in/fsnotify.v1")) - (home-page "https://gopkg.in/fsnotify.v1") - (synopsis "File system notifications for Go") - (description - "Package fsnotify provides a platform-independent interface for file system -notifications.") - (license license:bsd-3))) - -(define-public go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7 - (package - (name "go-gopkg-in-tomb-v1") - (version "1.0.0-20141024135613-dd632973f1e7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/tomb.v1") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1lqmq1ag7s4b3gc3ddvr792c5xb5k6sfn0cchr3i2s7f1c231zjv")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/tomb.v1" #:unpack-path "gopkg.in/tomb.v1")) - (home-page "https://gopkg.in/tomb.v1") - (synopsis "Installation and usage") - (description - "The tomb package offers a conventional API for clean goroutine termination.") - (license license:bsd-3))) - -(define-public go-gopkg-in-yaml-v2-2.2.1 - (package - (name "go-gopkg-in-yaml-v2") - (version "2.2.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0dwjrs2lp2gdlscs7bsrmyc5yf6mm4fvgw71bzr9mv2qrd2q73s1")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v2") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language.") - (license license:asl2.0))) - -(define-public go-github-com-onsi-gomega-1.5.0 - (package - (name "go-github-com-onsi-gomega") - (version "1.5.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/onsi/gomega") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1n7i4hksdgv410m43v2sw14bl5vy59dkp6nlw5l76nibbh37syr9")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/onsi/gomega")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1) - ("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" - ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) - ("go-gopkg-in-fsnotify-v1-1.4.7" ,go-gopkg-in-fsnotify-v1-1.4.7) - ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e" - ,go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e) - ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" - ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) - ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" - ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) - ("go-github-com-onsi-ginkgo-1.6.0" ,go-github-com-onsi-ginkgo-1.6.0) - ("go-github-com-hpcloud-tail-1.0.0" ,go-github-com-hpcloud-tail-1.0.0) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0) - ("go-github-com-fsnotify-fsnotify-1.4.7" - ,go-github-com-fsnotify-fsnotify-1.4.7))) - (home-page "https://github.com/onsi/gomega") - (synopsis ": a BDD Testing Framework for Golang") - (description - "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library.") - (license license:expat))) - -(define-public go-github-com-sergi-go-diff-1.0.0 - (package - (name "go-github-com-sergi-go-diff") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sergi/go-diff") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0swiazj8wphs2zmk1qgq75xza6m19snif94h2m6fi8dqkwqdl7c7")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/sergi/go-diff")) - (home-page "https://github.com/sergi/go-diff") - (synopsis "go-diff") - (description - "go-diff offers algorithms to perform operations required for synchronizing plain -text:") - (license license:expat))) - -(define-public go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190404232315-eb5bcb51f2a3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "17k4g8krxbl84gzcs275b7gsh66dzm15fdxivjnx9xz8q84l4kby")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20190412213103-97732733099d - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190412213103-97732733099d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "118hkp01i4z1f5h6hcjm0ff2ngqhrzj1f7731n0kw8dr6hvbx0sw")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-crypto-0.0.0-20190426145343-a29dc8fdc734 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20190426145343-a29dc8fdc734") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "07f0jj4haqs0ywc1akk1qjwn5msl2j0pry1rxjkkbfcq4r6ihc1p")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" - ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) - ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" - ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-github-com-aphistic-sweet-0.2.0 - (package - (name "go-github-com-aphistic-sweet") - (version "0.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/aphistic/sweet") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1bb4qagfxf6byqn2yx0vq24xfvisz3ah4w6bvqclc8cklvfngw43")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/aphistic/sweet")) - (propagated-inputs - `(("go-golang-org-x-crypto-0.0.0-20190426145343-a29dc8fdc734" - ,go-golang-org-x-crypto-0.0.0-20190426145343-a29dc8fdc734) - ("go-github-com-sergi-go-diff-1.0.0" - ,go-github-com-sergi-go-diff-1.0.0) - ("go-github-com-onsi-gomega-1.5.0" ,go-github-com-onsi-gomega-1.5.0) - ("go-github-com-mgutz-ansi-0.0.0-20170206155736-9520e82c474b" - ,go-github-com-mgutz-ansi-0.0.0-20170206155736-9520e82c474b) - ("go-github-com-mattn-go-colorable-0.1.1" - ,go-github-com-mattn-go-colorable-0.1.1))) - (home-page "https://github.com/aphistic/sweet") - (synopsis "sweet") - (description - "Sweet is a pluggable test runner capable of hooking into standard Go tests. It -attempts to provide access to the standard Go test tool as close as possible -while adding support for test suites and plugins that can hook into test results -to add additional functionality.") - (license license:expat))) - -(define-public go-github-com-jmespath-go-jmespath-0.0.0-20180206201540-c2b33e8439af - (package - (name "go-github-com-jmespath-go-jmespath") - (version "0.0.0-20180206201540-c2b33e8439af") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/jmespath/go-jmespath") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1r6w7ydx8ydryxk3sfhzsk8m6f1nsik9jg3i1zhi69v4kfl4d5cz")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/jmespath/go-jmespath")) - (home-page "https://github.com/jmespath/go-jmespath") - (synopsis "go-jmespath - A JMESPath implementation in Go") - (description - "go-jmespath is a GO implementation of JMESPath, which is a query language for -JSON. It will take a JSON document and transform it into another JSON document -through a JMESPath expression.") - (license license:asl2.0))) - -(define-public go-github-com-aws-aws-sdk-go-1.20.6 - (package - (name "go-github-com-aws-aws-sdk-go") - (version "1.20.6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/aws/aws-sdk-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "016vy5s9finyfgh08j7rvn2pnwymdgj2ydr59w57pysnri87mdwx")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/aws/aws-sdk-go")) - (propagated-inputs - `(("go-github-com-jmespath-go-jmespath-0.0.0-20180206201540-c2b33e8439af" - ,go-github-com-jmespath-go-jmespath-0.0.0-20180206201540-c2b33e8439af))) - (home-page "https://github.com/aws/aws-sdk-go") - (synopsis "AWS SDK for Go") - (description - "Package sdk is the official AWS SDK for the Go programming language.") - (license license:asl2.0))) - -(define-public go-github-com-aybabtme-rgbterm-0.0.0-20170906152045-cc83f3b3ce59 - (package - (name "go-github-com-aybabtme-rgbterm") - (version "0.0.0-20170906152045-cc83f3b3ce59") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/aybabtme/rgbterm") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0wvmxvjn64968ikvnxrflb1x8rlcwzpfl53fzbxff2axbx9lq50q")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/aybabtme/rgbterm")) - (home-page "https://github.com/aybabtme/rgbterm") - (synopsis "RGB terminal") - (description - "Package rgbterm colorizes bytes and strings using RGB colors, for a full range -of pretty terminal strings.") - (license license:expat))) - -(define-public go-github-com-fatih-color-1.7.0 - (package - (name "go-github-com-fatih-color") - (version "1.7.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/fatih/color") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0v8msvg38r8d1iiq2i5r4xyfx0invhc941kjrsg5gzwvagv55inv")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/fatih/color")) - (home-page "https://github.com/fatih/color") - (synopsis "color") - (description - "Package color is an ANSI color package to output colorized or SGR defined output -to the standard output. The API can be used in several way, pick one that suits -you.") - (license license:expat))) - -(define-public go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515 - (package - (name "go-github-com-kr-logfmt") - (version "0.0.0-20140226030751-b84e30acd515") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/logfmt") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "02ldzxgznrfdzvghfraslhgp19la1fczcbzh7wm2zdc6lmpd1qq9")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/logfmt")) - (home-page "https://github.com/kr/logfmt") - (synopsis #f) - (description "Package implements the decoding of logfmt key-value pairs.") - (license license:expat))) - -(define-public go-github-com-go-logfmt-logfmt-0.4.0 - (package - (name "go-github-com-go-logfmt-logfmt") - (version "0.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/go-logfmt/logfmt") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "06smxc112xmixz78nyvk3b2hmc7wasf2sl5vxj1xz62kqcq9lzm9")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/go-logfmt/logfmt")) - (propagated-inputs - `(("go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515" - ,go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515))) - (home-page "https://github.com/go-logfmt/logfmt") - (synopsis "logfmt") - (description - "Package logfmt implements utilities to marshal and unmarshal data in the logfmt -format. The logfmt format records key/value pairs in a way that balances -readability for humans and simplicity of computer parsing. It is most commonly -used as a more human friendly alternative to JSON for structured logging.") - (license license:expat))) - -(define-public go-github-com-golang-protobuf-1.3.1 - (package - (name "go-github-com-golang-protobuf") - (version "1.3.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "15am4s4646qy6iv0g3kkqq52rzykqjhm4bf08dk0fy2r58knpsyl")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code -github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-github-com-google-uuid-1.1.1 - (package - (name "go-github-com-google-uuid") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/uuid") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hfxcf9frkb57k6q0rdkrmnfs78ms21r1qfk9fhlqga2yh5xg8zb")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/uuid")) - (home-page "https://github.com/google/uuid") - (synopsis "uuid") - (description "Package uuid generates and inspects UUIDs.") - (license license:bsd-3))) - -(define-public go-github-com-jpillora-backoff-0.0.0-20180909062703-3050d21c67d7 - (package - (name "go-github-com-jpillora-backoff") - (version "0.0.0-20180909062703-3050d21c67d7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/jpillora/backoff") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1nxapdx9xg5gwiscfhq7m0w14hj4gaxb4avmgf1mx9zd3jnw9jxv")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/jpillora/backoff")) - (home-page "https://github.com/jpillora/backoff") - (synopsis "Backoff") - (description - "Package backoff provides an exponential-backoff implementation.") - (license license:expat))) - -(define-public go-github-com-kr-pty-1.1.1 - (package - (name "go-github-com-kr-pty") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/pty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0383f0mb9kqjvncqrfpidsf8y6ns5zlrc91c6a74xpyxjwvzl2y6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/pty")) - (home-page "https://github.com/kr/pty") - (synopsis "pty") - (description - "Package pty is a wrapper for github.com/creack/pty, which provides functions for -working with Unix terminals.") - (license license:expat))) - -(define-public go-github-com-kr-text-0.1.0 - (package - (name "go-github-com-kr-text") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1gm5bsl01apvc84bw06hasawyqm4q84vx1pm32wr9jnd7a8vjgj1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/text")) - (propagated-inputs - `(("go-github-com-kr-pty-1.1.1" ,go-github-com-kr-pty-1.1.1))) - (home-page "https://github.com/kr/text") - (synopsis #f) - (description - "Package text provides rudimentary functions for manipulating text in paragraphs.") - (license license:expat))) - -(define-public go-github-com-kr-pretty-0.2.0 - (package - (name "go-github-com-kr-pretty") - (version "0.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/pretty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ywbfzz1h3a3qd8rpkiqwi1dm4w8ls9ijb4x1b7567grns9f0vnp")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/pretty")) - (propagated-inputs - `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) - (home-page "https://github.com/kr/pretty") - (synopsis #f) - (description - "Package pretty provides pretty-printing for Go values. This is useful during -debugging, to avoid wrapping long output lines in the terminal.") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190222072716-a9d3bda3a223") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1w45zc13xrjzl19s1sx74r5mg3lf2z2nm13wygcdq5r5pyjlhdz9")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-mattn-go-isatty-0.0.8 - (package - (name "go-github-com-mattn-go-isatty") - (version "0.0.8") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mattn/go-isatty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0rqfh1rj6f5wm8p2ky7inm8g10152p7w6n2cli17kf9gad797i8h")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mattn/go-isatty")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223" - ,go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223))) - (home-page "https://github.com/mattn/go-isatty") - (synopsis "go-isatty") - (description "Package isatty implements interface to isatty") - (license license:expat))) - -(define-public go-github-com-mattn-go-colorable-0.1.2 - (package - (name "go-github-com-mattn-go-colorable") - (version "0.1.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mattn/go-colorable") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0512jm3wmzkkn7d99x9wflyqf48n5ri3npy1fqkq6l6adc5mni3n")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mattn/go-colorable")) - (propagated-inputs - `(("go-github-com-mattn-go-isatty-0.0.8" - ,go-github-com-mattn-go-isatty-0.0.8))) - (home-page "https://github.com/mattn/go-colorable") - (synopsis "go-colorable") - (description "Colorable writer for windows.") - (license license:expat))) - -(define-public go-github-com-pkg-errors-0.8.1 - (package - (name "go-github-com-pkg-errors") - (version "0.8.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pkg/errors") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0g5qcb4d4fd96midz0zdk8b9kz8xkzwfa8kr1cliqbg8sxsy5vd1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pkg/errors")) - (home-page "https://github.com/pkg/errors") - (synopsis "errors") - (description "Package errors provides simple error handling primitives.") - (license license:bsd-2))) - -(define-public go-github-com-rogpeppe-fastuuid-1.1.0 - (package - (name "go-github-com-rogpeppe-fastuuid") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/rogpeppe/fastuuid") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1jlif5pxyz3md02ij93kd2y2j1zz0ajc9k8azvn83vv6l3r5c1zg")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/rogpeppe/fastuuid")) - (home-page "https://github.com/rogpeppe/fastuuid") - (synopsis "fastuuid") - (description - "Package fastuuid provides fast UUID generation of 192 bit universally unique -identifiers.") - (license license:bsd-3))) - -(define-public go-github-com-smartystreets-go-aws-auth-0.0.0-20180515143844-0c1422d1fdb9 - (package - (name "go-github-com-smartystreets-go-aws-auth") - (version "0.0.0-20180515143844-0c1422d1fdb9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/smarty-archives/go-aws-auth") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0krfdpgn3gfii1z9fi8ydfw0wwfqyvp6w3rji7w92m528zkjl93d")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/smartystreets/go-aws-auth")) - (home-page "https://github.com/smartystreets/go-aws-auth") - (synopsis "go-aws-auth") - (description - "Package awsauth implements AWS request signing using Signed Signature Version 2, -Signed Signature Version 3, and Signed Signature Version 4. Supports S3 and -STS.") - (license license:expat))) - -(define-public go-github-com-smartystreets-assertions-1.0.0 - (package - (name "go-github-com-smartystreets-assertions") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/smartystreets/assertions") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1188hs39zvil41sdnxs83h1hp319lfyc5n2rvd1xnhz1dh5qjjh4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/smartystreets/assertions")) - (home-page "https://github.com/smartystreets/assertions") - (synopsis #f) - (description - "Package assertions contains the implementations for all assertions which are -referenced in goconvey's `convey` package -(github.com/smartystreets/goconvey/convey) and gunit -(github.com/smartystreets/gunit) for use with the So(...) method. They can also -be used in traditional Go test functions and even in applications.") - (license license:expat))) - -(define-public go-github-com-smartystreets-gunit-1.0.0 - (package - (name "go-github-com-smartystreets-gunit") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/smartystreets/gunit") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "11d09rl5qqpj36a311pjj8w5jkj83d5b8gdcsx8f1zn4j924sm5d")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/smartystreets/gunit")) - (propagated-inputs - `(("go-github-com-smartystreets-assertions-1.0.0" - ,go-github-com-smartystreets-assertions-1.0.0))) - (home-page "https://github.com/smartystreets/gunit") - (synopsis "gunit") - (description - "Package gunit provides \"testing\" package hooks and convenience functions for -writing tests in an xUnit style. See the README file and the examples folder -for examples.") - (license license:expat))) - -(define-public go-github-com-davecgh-go-spew-1.1.1 - (package - (name "go-github-com-davecgh-go-spew") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/davecgh/go-spew") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/davecgh/go-spew")) - (home-page "https://github.com/davecgh/go-spew") - (synopsis "go-spew") - (description - "Go-spew implements a deep pretty printer for Go data structures to aid in -debugging. A comprehensive suite of tests with 100% test coverage is provided -to ensure proper functionality. See @code{test_coverage.txt} for the gocov -coverage report. Go-spew is licensed under the liberal ISC license, so it may -be used in open source or commercial projects.") - (license license:isc))) - -(define-public go-github-com-davecgh-go-spew-1.1.0 - (package - (name "go-github-com-davecgh-go-spew") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/davecgh/go-spew") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/davecgh/go-spew")) - (home-page "https://github.com/davecgh/go-spew") - (synopsis "go-spew") - (description - "Go-spew implements a deep pretty printer for Go data structures to aid in -debugging. A comprehensive suite of tests with 100% test coverage is provided -to ensure proper functionality. See @code{test_coverage.txt} for the gocov -coverage report. Go-spew is licensed under the liberal ISC license, so it may -be used in open source or commercial projects.") - (license license:isc))) - -(define-public go-github-com-pmezard-go-difflib-1.0.0 - (package - (name "go-github-com-pmezard-go-difflib") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pmezard/go-difflib") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pmezard/go-difflib")) - (home-page "https://github.com/pmezard/go-difflib") - (synopsis "go-difflib") - (description - "Go-difflib is a partial port of python 3 difflib package. Its main goal was to -make unified and context diff available in pure Go, mostly for testing purposes.") - (license license:bsd-3))) - -(define-public go-github-com-stretchr-objx-0.1.0 - (package - (name "go-github-com-stretchr-objx") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/objx") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/objx")) - (home-page "https://github.com/stretchr/objx") - (synopsis "Objx") - (description - "Objx - Go package for dealing with maps, slices, JSON and other data.") - (license license:expat))) - -(define-public go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c - (package - (name "go-gopkg-in-yaml-v3") - (version "3.0.0-20200313102051-9f266ea9e77c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v3") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1bbai3lzb50m0x2vwsdbagrbhvfylj9k1m32hgbqwldqx4p9ay35")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v3") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language.") - (license license:expat))) - -(define-public go-github-com-stretchr-testify-1.6.1 - (package - (name "go-github-com-stretchr-testify") - (version "1.6.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/testify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1yhiqqzjvi63pf01rgzx68gqkkvjx03fvl5wk30br5l6s81s090l")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/testify")) - (propagated-inputs - `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" - ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) - ("go-github-com-stretchr-objx-0.1.0" - ,go-github-com-stretchr-objx-0.1.0) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.0" - ,go-github-com-davecgh-go-spew-1.1.0))) - (home-page "https://github.com/stretchr/testify") - (synopsis "Testify - Thou Shalt Write Tests") - (description - "** We are working on testify v2 and would love to hear what you'd like to see in -it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -Package testify is a set of packages that provide many tools for testifying that -your code will behave as you intend.") - (license license:expat))) - -(define-public go-gopkg-in-yaml-v3-3.0.0-20200605160147-a5ece683394c - (package - (name "go-gopkg-in-yaml-v3") - (version "3.0.0-20200605160147-a5ece683394c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v3") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "03cm7c3p5fh0aa8vnxv5010dgqqr268ivb480ix1salxx3396w68")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v3") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language.") - (license license:expat))) - -(define-public go-github-com-tj-assert-0.0.3 - (package - (name "go-github-com-tj-assert") - (version "0.0.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/tj/assert") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1j5swk3fjq1h5fpqkipddz2ccnbidr7qrpm5dpdaflg9q5jnc673")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/tj/assert")) - (propagated-inputs - `(("go-gopkg-in-yaml-v3-3.0.0-20200605160147-a5ece683394c" - ,go-gopkg-in-yaml-v3-3.0.0-20200605160147-a5ece683394c) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/tj/assert") - (synopsis "assert") - (description - "Package assert implements the same assertions as the `assert` package but stops -test execution when a test fails.") - (license license:expat))) - -(define-public go-github-com-tj-go-buffer-1.1.0 - (package - (name "go-github-com-tj-go-buffer") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/tj/go-buffer") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1qdxpa069pjjbzh217aadpzz1aq1n6h32lhp60yjcpi7hr4q8fxx")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/tj/go-buffer")) - (propagated-inputs - `(("go-github-com-tj-assert-0.0.3" ,go-github-com-tj-assert-0.0.3))) - (home-page "https://github.com/tj/go-buffer") - (synopsis "Buffer") - (description - "Package buffer provides a generic buffer or batching mechanism for flushing -entries at a given size or interval, useful for cases such as batching log -events.") - (license license:expat))) - -(define-public go-github-com-tj-go-elastic-0.0.0-20171221160941-36157cbbebc2 - (package - (name "go-github-com-tj-go-elastic") - (version "0.0.0-20171221160941-36157cbbebc2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/tj/go-elastic") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1r94vc4hbfvqvjz74n4mvsw4dy3vbyzlivb90kyn8vn76a4wqk69")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/tj/go-elastic")) - (home-page "https://github.com/tj/go-elastic") - (synopsis "go-elastic") - (description - "Package elastic provides an Elasticsearch client with AWS sigv4 support.") - (license license:expat))) - -(define-public go-github-com-tj-go-kinesis-0.0.0-20171128231115-08b17f58cb1b - (package - (name "go-github-com-tj-go-kinesis") - (version "0.0.0-20171128231115-08b17f58cb1b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/tj/go-kinesis") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "108c6p5j6rhhc2cnc2v5368yfsw73y6lzlvz02vpvvjph8rhmld4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/tj/go-kinesis")) - (home-page "https://github.com/tj/go-kinesis") - (synopsis "go-kinesis") - (description - "Package kinesis implements a batch producer built on top of the official AWS -SDK.") - (license license:expat))) - -(define-public go-github-com-tj-go-spin-1.1.0 - (package - (name "go-github-com-tj-go-spin") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/tj/go-spin") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "11xr67991m5pwsy1dira3iwd0sr55vmn1cyjwmlqziw4bwpym64s")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/tj/go-spin")) - (home-page "https://github.com/tj/go-spin") + (arguments '(#:import-path "github.com/moby/sys")) + (home-page "https://github.com/moby/sys") (synopsis #f) (description #f) - (license #f))) - -(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20190308221718-c2843e01d9a2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190215142949-d0b11bdaac8a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-text-0.3.0 - (package - (name "go-golang-org-x-text") - (version "0.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/text")) - (home-page "https://golang.org/x/text") - (synopsis "Go Text") - (description - "text is a repository of text-related packages related to internationalization -(i18n) and localization (l10n), such as character encodings, text -transformations, and locale-specific text handling.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190620200207-3b0461eec859") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0l00c8l0a8xnv6qdpwfzxxsr58jggacgzdrwiprrfx2xqm37b6d5")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20180917221912-90fa682c2a6e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-golang-org-x-text-0.3.2 - (package - (name "go-golang-org-x-text") - (version "0.3.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0flv9idw0jm5nm8lx25xqanbkqgfiym6619w575p7nrdh0riqwqh")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/text")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" - ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) - (home-page "https://golang.org/x/text") - (synopsis "Go Text") - (description - "text is a repository of text-related packages related to internationalization -(i18n) and localization (l10n), such as character encodings, text -transformations, and locale-specific text handling.") - (license license:bsd-3))) - -(define-public go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15 - (package - (name "go-gopkg-in-check-v1") - (version "1.0.0-20190902080502-41f04d3bba15") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/check.v1") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0vfk9czmlxmp6wndq8k17rhnjxal764mxfhrccza7nwlia760pjy")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) - (home-page "https://gopkg.in/check.v1") - (synopsis "Instructions") - (description - "Package check is a rich testing extension for Go's testing package.") - (license license:bsd-2))) - -(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 - (package - (name "go-gopkg-in-check-v1") - (version "0.0.0-20161208181325-20d25e280405") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/check.v1") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) - (home-page "https://gopkg.in/check.v1") - (synopsis "Instructions") - (description - "Package check is a rich testing extension for Go's testing package.") - (license license:bsd-2))) - -(define-public go-gopkg-in-yaml-v2-2.2.2 - (package - (name "go-gopkg-in-yaml-v2") - (version "2.2.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "01wj12jzsdqlnidpyjssmj0r4yavlqy7dwrg7adqd8dicjc4ncsa")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v2") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language.") (license license:asl2.0))) - -(define-public go-github-com-apex-log-1.9.0 - (package - (name "go-github-com-apex-log") - (version "1.9.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/apex/log") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ibqkncnb8wcwilg2kyfyl5541g69rg551iy6m61q6iwdn5vfhi2")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/apex/log")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) - ("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" - ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) - ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) - ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" - ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) - ("go-github-com-tj-go-spin-1.1.0" ,go-github-com-tj-go-spin-1.1.0) - ("go-github-com-tj-go-kinesis-0.0.0-20171128231115-08b17f58cb1b" - ,go-github-com-tj-go-kinesis-0.0.0-20171128231115-08b17f58cb1b) - ("go-github-com-tj-go-elastic-0.0.0-20171221160941-36157cbbebc2" - ,go-github-com-tj-go-elastic-0.0.0-20171221160941-36157cbbebc2) - ("go-github-com-tj-go-buffer-1.1.0" ,go-github-com-tj-go-buffer-1.1.0) - ("go-github-com-tj-assert-0.0.3" ,go-github-com-tj-assert-0.0.3) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-smartystreets-gunit-1.0.0" - ,go-github-com-smartystreets-gunit-1.0.0) - ("go-github-com-smartystreets-go-aws-auth-0.0.0-20180515143844-0c1422d1fdb9" - ,go-github-com-smartystreets-go-aws-auth-0.0.0-20180515143844-0c1422d1fdb9) - ("go-github-com-rogpeppe-fastuuid-1.1.0" - ,go-github-com-rogpeppe-fastuuid-1.1.0) - ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) - ("go-github-com-mattn-go-colorable-0.1.2" - ,go-github-com-mattn-go-colorable-0.1.2) - ("go-github-com-kr-pretty-0.2.0" ,go-github-com-kr-pretty-0.2.0) - ("go-github-com-jpillora-backoff-0.0.0-20180909062703-3050d21c67d7" - ,go-github-com-jpillora-backoff-0.0.0-20180909062703-3050d21c67d7) - ("go-github-com-google-uuid-1.1.1" ,go-github-com-google-uuid-1.1.1) - ("go-github-com-golang-protobuf-1.3.1" - ,go-github-com-golang-protobuf-1.3.1) - ("go-github-com-go-logfmt-logfmt-0.4.0" - ,go-github-com-go-logfmt-logfmt-0.4.0) - ("go-github-com-fatih-color-1.7.0" ,go-github-com-fatih-color-1.7.0) - ("go-github-com-aybabtme-rgbterm-0.0.0-20170906152045-cc83f3b3ce59" - ,go-github-com-aybabtme-rgbterm-0.0.0-20170906152045-cc83f3b3ce59) - ("go-github-com-aws-aws-sdk-go-1.20.6" - ,go-github-com-aws-aws-sdk-go-1.20.6) - ("go-github-com-aphistic-sweet-0.2.0" - ,go-github-com-aphistic-sweet-0.2.0) - ("go-github-com-aphistic-golf-0.0.0-20180712155816-02c07f170c5a" - ,go-github-com-aphistic-golf-0.0.0-20180712155816-02c07f170c5a) - ("go-github-com-apex-logs-1.0.0" ,go-github-com-apex-logs-1.0.0))) - (home-page "https://github.com/apex/log") - (synopsis "Handlers") - (description - "Package log implements a simple structured logging API designed with few -assumptions. Designed for centralized logging solutions such as Kinesis which -require encoding and decoding before fanning-out to handlers.") - (license license:expat))) - -(define-public go-github-com-sylabs-json-resp-0.8.0 - (package - (name "go-github-com-sylabs-json-resp") - (version "0.8.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sylabs/json-resp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ygr4mavaj1pp78hkkphhn3ydd923n3klwnx8x7v4ajqzx4cx4id")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/sylabs/json-resp")) - (home-page "https://github.com/sylabs/json-resp") - (synopsis "JSON Response") - (description - "The @code{json-resp} package contains a small set of functions that are used to -marshall and unmarshall response data and errors in JSON format.") - (license license:bsd-3))) - -(define-public go-github-com-apptainer-container-key-client-0.7.2 - (package - (name "go-github-com-apptainer-container-key-client") - (version "0.7.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/apptainer/container-key-client") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0f4bb1k8pi37alzgzvjw23ynp54752qwgnr9gim3vc061qcjx377")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/apptainer/container-key-client")) - (propagated-inputs - `(("go-github-com-sylabs-json-resp-0.8.0" - ,go-github-com-sylabs-json-resp-0.8.0))) - (home-page "https://github.com/apptainer/container-key-client") - (synopsis "Container Key Client") - (description - "This project provides a Go client to Apptainer for key storage and retrieval -using the HKP protocol. Forked from -@url{https://github.com/sylabs/scs-key-client,sylabs/scs-key-client}.") - (license license:bsd-3))) - -(define-public go-github-com-blang-semver-v4-4.0.0 - (package - (name "go-github-com-blang-semver-v4") - (version "4.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/blang/semver") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "14h9ys4n4kx9cbj42lkdf4i5k3nkll6sd62jcvl7cs565v6fiknz")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/blang/semver/v4")) - (home-page "https://github.com/blang/semver") - (synopsis #f) - (description #f) - (license license:expat))) - -(define-public go-github-com-go-log-log-0.2.0 - (package - (name "go-github-com-go-log-log") - (version "0.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/go-log/log") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1idnqv4yvkmdh3wcsgvhcpak9z6ix8dsifdjq5kfbbnskdq5rmvg")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/go-log/log")) - (home-page "https://github.com/go-log/log") - (synopsis "Log") - (description "Package log provides a log interface") - (license license:expat))) - -(define-public go-github-com-stretchr-objx-0.1.0 - (package - (name "go-github-com-stretchr-objx") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/objx") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/objx")) - (home-page "https://github.com/stretchr/objx") - (synopsis "Objx") - (description - "Objx - Go package for dealing with maps, slices, JSON and other data.") - (license license:expat))) - -(define-public go-github-com-stretchr-testify-1.7.0 - (package - (name "go-github-com-stretchr-testify") - (version "1.7.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/testify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ixgjsvafr3513pz3r6pmgk074s2dxkll0dadvl25gkf30rkmh10")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/testify")) - (propagated-inputs - `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" - ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) - ("go-github-com-stretchr-objx-0.1.0" - ,go-github-com-stretchr-objx-0.1.0) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.0" - ,go-github-com-davecgh-go-spew-1.1.0))) - (home-page "https://github.com/stretchr/testify") - (synopsis "Testify - Thou Shalt Write Tests") - (description - "** We are working on testify v2 and would love to hear what you'd like to see in -it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -Package testify is a set of packages that provide many tools for testifying that -your code will behave as you intend.") - (license license:expat))) - -(define-public go-github-com-sylabs-json-resp-0.8.0 - (package - (name "go-github-com-sylabs-json-resp") - (version "0.8.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sylabs/json-resp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ygr4mavaj1pp78hkkphhn3ydd923n3klwnx8x7v4ajqzx4cx4id")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/sylabs/json-resp")) - (home-page "https://github.com/sylabs/json-resp") - (synopsis "JSON Response") - (description - "The @code{json-resp} package contains a small set of functions that are used to -marshall and unmarshall response data and errors in JSON format.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20200317015054-43a5402ce75a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0j6zrrb81qjr1926kkwmn0di9a0jn8qyjd9dw614rfkihxgq1vsm")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the ones -provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-github-com-davecgh-go-spew-1.1.0 - (package - (name "go-github-com-davecgh-go-spew") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/davecgh/go-spew") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/davecgh/go-spew")) - (home-page "https://github.com/davecgh/go-spew") - (synopsis "go-spew") - (description - "Go-spew implements a deep pretty printer for Go data structures to aid in -debugging. A comprehensive suite of tests with 100% test coverage is provided -to ensure proper functionality. See @code{test_coverage.txt} for the gocov -coverage report. Go-spew is licensed under the liberal ISC license, so it may -be used in open source or commercial projects.") - (license license:isc))) - -(define-public go-github-com-pmezard-go-difflib-1.0.0 - (package - (name "go-github-com-pmezard-go-difflib") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pmezard/go-difflib") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pmezard/go-difflib")) - (home-page "https://github.com/pmezard/go-difflib") - (synopsis "go-difflib") - (description - "Go-difflib is a partial port of python 3 difflib package. Its main goal was to -make unified and context diff available in pure Go, mostly for testing purposes.") - (license license:bsd-3))) - -(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 - (package - (name "go-gopkg-in-check-v1") - (version "0.0.0-20161208181325-20d25e280405") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/check.v1") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) - (home-page "https://gopkg.in/check.v1") - (synopsis "Instructions") - (description - "Package check is a rich testing extension for Go's testing package.") - (license license:bsd-2))) - -(define-public go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c - (package - (name "go-gopkg-in-yaml-v3") - (version "3.0.0-20200313102051-9f266ea9e77c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v3") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1bbai3lzb50m0x2vwsdbagrbhvfylj9k1m32hgbqwldqx4p9ay35")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v3") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language.") - (license license:expat))) - -(define-public go-github-com-apptainer-container-library-client-1.2.2 - (package - (name "go-github-com-apptainer-container-library-client") - (version "1.2.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/apptainer/container-library-client") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1f6pxzk0k9jf9612kjw6jlmrs8yzqqrvhjwfxwri1q1d4i410a0h")))) - (build-system go-build-system) - (arguments - '(#:import-path "github.com/apptainer/container-library-client")) - (propagated-inputs - `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" - ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.0" - ,go-github-com-davecgh-go-spew-1.1.0) - ("go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a" - ,go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a) - ("go-github-com-sylabs-json-resp-0.8.0" - ,go-github-com-sylabs-json-resp-0.8.0) - ("go-github-com-stretchr-testify-1.7.0" - ,go-github-com-stretchr-testify-1.7.0) - ("go-github-com-go-log-log-0.2.0" ,go-github-com-go-log-log-0.2.0) - ("go-github-com-blang-semver-v4-4.0.0" - ,go-github-com-blang-semver-v4-4.0.0))) - (home-page "https://github.com/apptainer/container-library-client") - (synopsis "Container Library Client") - (description - "This project provides a Go client to Apptainer for the container library. -Forked from -@url{https://github.com/sylabs/scs-library-client,sylabs/scs-library-client}.") - (license license:bsd-3))) - -(define-public go-github-com-blang-semver-v4-4.0.0 - (package - (name "go-github-com-blang-semver-v4") - (version "4.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/blang/semver") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "14h9ys4n4kx9cbj42lkdf4i5k3nkll6sd62jcvl7cs565v6fiknz")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/blang/semver/v4")) - (home-page "https://github.com/blang/semver") - (synopsis #f) - (description #f) - (license license:expat))) - -(define-public go-github-com-buger-jsonparser-1.1.1 - (package - (name "go-github-com-buger-jsonparser") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/buger/jsonparser") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0qv2lsh2biwxn927941gqiv5pqg7n4v58j0i536pjp7pr17pq7dp")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/buger/jsonparser")) - (home-page "https://github.com/buger/jsonparser") - (synopsis - "Alternative JSON parser for Go (10x times faster standard library)") - (description - "It does not require you to know the structure of the payload (eg. create -structs), and allows accessing fields by providing the path to them. It is up -to @strong{10 times faster} than standard @code{encoding/json} package -(depending on payload size and usage), @strong{allocates no memory}. See -benchmarks below.") - (license license:expat))) - -(define-public go-github-com-cenkalti-backoff-v4-4.1.2 - (package - (name "go-github-com-cenkalti-backoff-v4") - (version "4.1.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cenkalti/backoff") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "08c28226q612i1pv83161y57qh16631vpc51ai9f76qfrzsy946z")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/cenkalti/backoff/v4")) - (home-page "https://github.com/cenkalti/backoff") - (synopsis "Exponential Backoff") - (description - "Package backoff implements backoff algorithms for retrying operations.") - (license license:expat))) - -(define-public go-github-com-kr-pretty-0.2.1 - (package - (name "go-github-com-kr-pretty") - (version "0.2.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/pretty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0vzfz06y9q8gs2nxx0kys0591vzp78k0fvpb8digi5n15h3b25hy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/pretty")) - (propagated-inputs - `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) - (home-page "https://github.com/kr/pretty") - (synopsis #f) - (description - "Package pretty provides pretty-printing for Go values. This is useful during -debugging, to avoid wrapping long output lines in the terminal.") - (license license:expat))) - -(define-public go-github-com-frankban-quicktest-1.11.3 - (package - (name "go-github-com-frankban-quicktest") - (version "1.11.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/frankban/quicktest") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0d5njmwkfq2809vlimnlvy8ir6kln0c4cgdwr680fwsclpbr43qs")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/frankban/quicktest")) - (propagated-inputs - `(("go-github-com-kr-pretty-0.2.1" ,go-github-com-kr-pretty-0.2.1) - ("go-github-com-google-go-cmp-0.5.4" - ,go-github-com-google-go-cmp-0.5.4))) - (home-page "https://github.com/frankban/quicktest") - (synopsis "quicktest") - (description - "Package quicktest provides a collection of Go helpers for writing tests.") - (license license:expat))) - -(define-public go-github-com-google-go-cmp-0.5.4 - (package - (name "go-github-com-google-go-cmp") - (version "0.5.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ld9pwb6l22g75g1zpa691l7q9ki7pjgpcqhwgdfr3va1zisr5ci")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically -equal.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20210124154548-22da62e12c0c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "17gp3dl75wq3x7j9z1pqgcyvjhvy9jaln1wbscy57al3whdsjp07")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-cilium-ebpf-0.4.0 - (package - (name "go-github-com-cilium-ebpf") - (version "0.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cilium/ebpf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1j33vfz8mxnqadkd17l0y3ll71gph3ndm8hwrwbwnf5px7bfv9yl")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/cilium/ebpf")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c" - ,go-golang-org-x-sys-0.0.0-20210124154548-22da62e12c0c) - ("go-github-com-google-go-cmp-0.5.4" - ,go-github-com-google-go-cmp-0.5.4) - ("go-github-com-frankban-quicktest-1.11.3" - ,go-github-com-frankban-quicktest-1.11.3))) - (home-page "https://github.com/cilium/ebpf") - (synopsis "eBPF") - (description "Package ebpf is a toolkit for working with eBPF programs.") - (license license:expat))) - -(define-public go-github-com-coreos-go-systemd-v22-22.3.2 - (package - (name "go-github-com-coreos-go-systemd-v22") - (version "22.3.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/coreos/go-systemd") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ndi86b8va84ha93njqgafypz4di7yxfd5r5kf1r0s3y3ghcjajq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/coreos/go-systemd/v22")) - (propagated-inputs - `(("go-github-com-godbus-dbus-v5-5.0.4" - ,go-github-com-godbus-dbus-v5-5.0.4))) - (home-page "https://github.com/coreos/go-systemd") - (synopsis "go-systemd") - (description "Go bindings to systemd. The project has several packages:") - (license license:asl2.0))) - -(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0 - (package - (name "go-github-com-cpuguy83-go-md2man-v2") - (version "2.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cpuguy83/go-md2man") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) - (propagated-inputs - `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" - ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) - ("go-github-com-russross-blackfriday-v2-2.0.1" - ,go-github-com-russross-blackfriday-v2-2.0.1) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0))) - (home-page "https://github.com/cpuguy83/go-md2man") - (synopsis "go-md2man") - (description "Converts markdown into roff (man pages).") - (license license:expat))) - -(define-public go-github-com-docker-go-units-0.4.0 - (package - (name "go-github-com-docker-go-units") - (version "0.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/docker/go-units") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0k8gja8ql4pqg5rzmqvka42vjfs6rzablak87whcnqba6qxpimvz")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/docker/go-units")) - (home-page "https://github.com/docker/go-units") - (synopsis "Introduction") - (description - "Package units provides helper function to parse and print size and time units in -human-readable format.") - (license license:asl2.0))) - -(define-public go-github-com-godbus-dbus-v5-5.0.4 - (package - (name "go-github-com-godbus-dbus-v5") - (version "5.0.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/godbus/dbus") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0znax8kskb5gmp5fj75w56bc9p7b22wrdswzlh4d04sprlc471yi")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/godbus/dbus/v5")) - (home-page "https://github.com/godbus/dbus") - (synopsis "dbus") - (description - "Package dbus implements bindings to the D-Bus message bus system.") - (license license:bsd-2))) - -(define-public go-github-com-yuin-goldmark-1.1.27 - (package - (name "go-github-com-yuin-goldmark") - (version "1.1.27") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/yuin/goldmark") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1872cqnii0kwiqcy81yin0idvjy5mdy4zlzz0csb319lcjs3b923")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/yuin/goldmark")) - (home-page "https://github.com/yuin/goldmark") - (synopsis "goldmark") - (description - "Package goldmark implements functions to convert markdown text to a desired -format.") - (license license:expat))) - -(define-public go-golang-org-x-mod-0.2.0 - (package - (name "go-golang-org-x-mod") - (version "0.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/mod") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fp6885dclq77mh73v7i54v2b9llpv4di193zc8vmsbbkkc483cl")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/mod")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" - ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) - ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" - ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) - ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" - ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) - (home-page "https://golang.org/x/mod") - (synopsis "mod") - (description - "This repository holds packages for writing tools that work directly with Go -module mechanics. That is, it is for direct manipulation of Go modules -themselves.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b - (package - (name "go-golang-org-x-net") - (version "0.0.0-20200226121028-0de0cce0169b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1db7s5kbzyh2zd5lpv05n7hp8wbwdvgk0wpiwrlnig94mkr0y5aq")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20190911185100-cd5d95a43a6e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1nqkyz2y1qvqcma52ijh02s8aiqmkfb95j08f6zcjhbga3ds6hds")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the ones -provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543 - (package - (name "go-golang-org-x-xerrors") - (version "0.0.0-20191204190536-9bdfabe68543") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/xerrors") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1yjfi1bk9xb81lqn85nnm13zz725wazvrx3b50hx19qmwg7a4b0c")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/xerrors")) - (home-page "https://golang.org/x/xerrors") - (synopsis #f) - (description "Package xerrors implements functions to manipulate errors.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20200619180055-7c47624df98f - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20200619180055-7c47624df98f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fhzwd32j7w9g3algq0zj8g7ivx3f0mn9nx9mj046wdscryn49mk")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) - ("go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e" - ,go-golang-org-x-sync-0.0.0-20190911185100-cd5d95a43a6e) - ("go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b" - ,go-golang-org-x-net-0.0.0-20200226121028-0de0cce0169b) - ("go-golang-org-x-mod-0.2.0" ,go-golang-org-x-mod-0.2.0) - ("go-github-com-yuin-goldmark-1.1.27" - ,go-github-com-yuin-goldmark-1.1.27))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-github-com-kisielk-errcheck-1.5.0 - (package - (name "go-github-com-kisielk-errcheck") - (version "1.5.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kisielk/errcheck") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ci3jz2px74pfmr42jv7dpx7fdzx08vai4czp9fkiyb0gcaiqsk6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kisielk/errcheck")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20200619180055-7c47624df98f" - ,go-golang-org-x-tools-0.0.0-20200619180055-7c47624df98f))) - (home-page "https://github.com/kisielk/errcheck") - (synopsis "errcheck") - (description - "errcheck is a program for checking for unchecked errors in go programs.") - (license license:expat))) - -(define-public go-github-com-kisielk-gotool-1.0.0 - (package - (name "go-github-com-kisielk-gotool") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kisielk/gotool") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "14af2pa0ssyp8bp2mvdw184s5wcysk6akil3wzxmr05wwy951iwn")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kisielk/gotool")) - (home-page "https://github.com/kisielk/gotool") - (synopsis "gotool") - (description - "Package gotool contains utility functions used to implement the standard -\"cmd/go\" tool, provided as a convenience to developers who want to write tools -with similar semantics.") - (license license:expat))) - -(define-public go-github-com-yuin-goldmark-1.2.1 - (package - (name "go-github-com-yuin-goldmark") - (version "1.2.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/yuin/goldmark") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12rsnsf65drcp0jfw2jl9w589vsn3pxdk1zh3v9q908iigngrcmy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/yuin/goldmark")) - (home-page "https://github.com/yuin/goldmark") - (synopsis "goldmark") - (description - "Package goldmark implements functions to convert markdown text to a desired -format.") - (license license:expat))) - -(define-public go-golang-org-x-mod-0.3.0 - (package - (name "go-golang-org-x-mod") - (version "0.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/mod") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ldgbx2zpprbsfn6p8pfgs4nn87gwbfcv2z0fa7n8alwsq2yw78q")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/mod")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" - ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) - ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" - ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) - ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" - ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) - (home-page "https://golang.org/x/mod") - (synopsis "mod") - (description - "This repository holds packages for writing tools that work directly with Go -module mechanics. That is, it is for direct manipulation of Go modules -themselves.") - (license license:bsd-3))) - -(define-public go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20200622213623-75b288015ac9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18vlncvvs11ds3zaaziqjlg5s2vcwi3496nn6qv7p0dp94j5pwa2")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" - ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) - ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" - ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200930185726-fdedc70b468f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1njlfhjbvi4lxvjbq8zswrb0y0q4jd2p6x51h1q6vmyzi9af6869")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20201021035429-f5854403a974 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20201021035429-f5854403a974") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1vw63zpmhi337f3gc432x3wkib4j2ia8dy7if31wxwb9dgqvy222")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) - ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" - ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) - ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" - ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9 - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20201020160332-67f06af15bc9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "093p4panc808ak5bamzz7m9nb0xxib7778jpnr6f0xkz1n4fzyw5")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the ones -provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20210106214847-113979e3529a - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20210106214847-113979e3529a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0pq1a7hkamqdwsajyfrb27s56cvxz5838krsgyqz346s2djwdrzl")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" - ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) - ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" - ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) - ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" - ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) - ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) - ("go-github-com-yuin-goldmark-1.2.1" - ,go-github-com-yuin-goldmark-1.2.1))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-github-com-gogo-protobuf-1.3.2 - (package - (name "go-github-com-gogo-protobuf") - (version "1.3.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gogo/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0dfv1bhx5zhb5bsj5sj757nkacf2swp1ajpcyj9d0b37n602m18a")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/gogo/protobuf")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20210106214847-113979e3529a" - ,go-golang-org-x-tools-0.0.0-20210106214847-113979e3529a) - ("go-github-com-kisielk-gotool-1.0.0" - ,go-github-com-kisielk-gotool-1.0.0) - ("go-github-com-kisielk-errcheck-1.5.0" - ,go-github-com-kisielk-errcheck-1.5.0))) - (home-page "https://github.com/gogo/protobuf") - (synopsis "Protocol Buffers for Go with Gadgets") - (description - "gogoprotobuf is a fork of -@url{https://github.com/golang/protobuf,golang/protobuf} with extra code -generation features.") - (license license:bsd-3))) - -(define-public go-github-com-opencontainers-runtime-spec-1.0.2 - (package - (name "go-github-com-opencontainers-runtime-spec") - (version "1.0.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/runtime-spec") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19w981vcmd5lp2hy0630x6ayb8zz17n2vxqm2py5mg945xflcizg")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) - (home-page "https://github.com/opencontainers/runtime-spec") - (synopsis "Open Container Initiative Runtime Specification") - (description - "The @url{https://www.opencontainers.org,Open Container Initiative} develops -specifications for standards on Operating System process and application -containers.") - (license license:asl2.0))) - -(define-public go-github-com-davecgh-go-spew-1.1.1 - (package - (name "go-github-com-davecgh-go-spew") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/davecgh/go-spew") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/davecgh/go-spew")) - (home-page "https://github.com/davecgh/go-spew") - (synopsis "go-spew") - (description - "Go-spew implements a deep pretty printer for Go data structures to aid in -debugging. A comprehensive suite of tests with 100% test coverage is provided -to ensure proper functionality. See @code{test_coverage.txt} for the gocov -coverage report. Go-spew is licensed under the liberal ISC license, so it may -be used in open source or commercial projects.") - (license license:isc))) - -(define-public go-github-com-stretchr-testify-1.2.2 - (package - (name "go-github-com-stretchr-testify") - (version "1.2.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/testify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0dlszlshlxbmmfxj5hlwgv3r22x0y1af45gn1vd198nvvs3pnvfs")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/testify")) - (home-page "https://github.com/stretchr/testify") - (synopsis "Testify - Thou Shalt Write Tests") - (description - "** We are working on testify v2 and would love to hear what you'd like to see in -it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -Package testify is a set of packages that provide many tools for testifying that -your code will behave as you intend.") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20191026070338-33540a1f6037") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0fjcv0vzvi6za0b4xmnk3932pr9f9gczzf03y0kgq3ry9rqg169y")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-sirupsen-logrus-1.8.1 - (package - (name "go-github-com-sirupsen-logrus") - (version "1.8.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sirupsen/logrus") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0rvqzic2zz7fpxyizmqxwmhv1m52ii9bgxnqa6km8wsa0l08wh42")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/sirupsen/logrus")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037" - ,go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037) - ("go-github-com-stretchr-testify-1.2.2" - ,go-github-com-stretchr-testify-1.2.2) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/sirupsen/logrus") - (synopsis "Logrus") - (description - "Package logrus is a structured logger for Go, completely API compatible with the -standard library logger.") - (license license:expat))) - -(define-public go-github-com-burntsushi-toml-0.3.1 - (package - (name "go-github-com-burntsushi-toml") - (version "0.3.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/BurntSushi/toml") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fjdwwfzyzllgiwydknf1pwjvy49qxfsczqx5gz3y0izs7as99j6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/BurntSushi/toml")) - (home-page "https://github.com/BurntSushi/toml") - (synopsis "Testing") - (description - "Package toml implements decoding and encoding of TOML files.") - (license license:expat))) - -(define-public go-github-com-russross-blackfriday-v2-2.0.1 - (package - (name "go-github-com-russross-blackfriday-v2") - (version "2.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/russross/blackfriday") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0nlz7isdd4rgnwzs68499hlwicxz34j2k2a0b8jy0y7ycd2bcr5j")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/russross/blackfriday/v2")) - (home-page "https://github.com/russross/blackfriday") - (synopsis "Blackfriday") - (description "Package blackfriday is a markdown processor.") - (license license:bsd-2))) - -(define-public go-github-com-shurcool-sanitized-anchor-name-1.0.0 - (package - (name "go-github-com-shurcool-sanitized-anchor-name") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/shurcooL/sanitized_anchor_name") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1gv9p2nr46z80dnfjsklc6zxbgk96349sdsxjz05f3z6wb6m5l8f")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/shurcooL/sanitized_anchor_name")) - (home-page "https://github.com/shurcooL/sanitized_anchor_name") - (synopsis "sanitized_anchor_name") - (description - "Package sanitized_anchor_name provides a func to create sanitized anchor names.") - (license license:expat))) - -(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d - (package - (name "go-github-com-cpuguy83-go-md2man-v2") - (version "2.0.0-20190314233015-f79a8a8ca69d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cpuguy83/go-md2man") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) - (propagated-inputs - `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" - ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) - ("go-github-com-russross-blackfriday-v2-2.0.1" - ,go-github-com-russross-blackfriday-v2-2.0.1) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0))) - (home-page "https://github.com/cpuguy83/go-md2man") - (synopsis "go-md2man") - (description "Converts markdown into roff (man pages).") - (license license:expat))) - -(define-public go-gopkg-in-yaml-v2-2.2.2 - (package - (name "go-gopkg-in-yaml-v2") - (version "2.2.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "01wj12jzsdqlnidpyjssmj0r4yavlqy7dwrg7adqd8dicjc4ncsa")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v2") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language.") - (license license:asl2.0))) - -(define-public go-github-com-urfave-cli-1.22.2 - (package - (name "go-github-com-urfave-cli") - (version "1.22.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/urfave/cli") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "10mcnvi5qmn00vpyk6si8gjka7p654wr9hac4zc9w5h3ickhvbdc")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/urfave/cli")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) - ("go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d" - ,go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d) - ("go-github-com-burntsushi-toml-0.3.1" - ,go-github-com-burntsushi-toml-0.3.1))) - (home-page "https://github.com/urfave/cli") - (synopsis "cli") - (description - "Package cli provides a minimal framework for creating and organizing command -line Go applications. cli is designed to be easy to understand and write, the -most simple cli application can be written as follows:") - (license license:expat))) - -(define-public go-github-com-kr-pty-1.1.1 - (package - (name "go-github-com-kr-pty") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/pty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0383f0mb9kqjvncqrfpidsf8y6ns5zlrc91c6a74xpyxjwvzl2y6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/pty")) - (home-page "https://github.com/kr/pty") - (synopsis "pty") - (description - "Package pty is a wrapper for github.com/creack/pty, which provides functions for -working with Unix terminals.") - (license license:expat))) - -(define-public go-github-com-kr-text-0.1.0 - (package - (name "go-github-com-kr-text") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1gm5bsl01apvc84bw06hasawyqm4q84vx1pm32wr9jnd7a8vjgj1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/text")) - (propagated-inputs - `(("go-github-com-kr-pty-1.1.1" ,go-github-com-kr-pty-1.1.1))) - (home-page "https://github.com/kr/text") - (synopsis #f) - (description - "Package text provides rudimentary functions for manipulating text in paragraphs.") - (license license:expat))) - -(define-public go-github-com-kr-pretty-0.1.0 - (package - (name "go-github-com-kr-pretty") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/pretty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18m4pwg2abd0j9cn5v3k2ksk9ig4vlwxmlw9rrglanziv9l967qp")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/pretty")) - (propagated-inputs - `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) - (home-page "https://github.com/kr/pretty") - (synopsis #f) - (description - "Package pretty provides pretty-printing for Go values. This is useful during -debugging, to avoid wrapping long output lines in the terminal.") - (license license:expat))) - -(define-public go-github-com-davecgh-go-spew-1.1.0 - (package - (name "go-github-com-davecgh-go-spew") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/davecgh/go-spew") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/davecgh/go-spew")) - (home-page "https://github.com/davecgh/go-spew") - (synopsis "go-spew") - (description - "Go-spew implements a deep pretty printer for Go data structures to aid in -debugging. A comprehensive suite of tests with 100% test coverage is provided -to ensure proper functionality. See @code{test_coverage.txt} for the gocov -coverage report. Go-spew is licensed under the liberal ISC license, so it may -be used in open source or commercial projects.") - (license license:isc))) - -(define-public go-github-com-pmezard-go-difflib-1.0.0 - (package - (name "go-github-com-pmezard-go-difflib") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pmezard/go-difflib") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pmezard/go-difflib")) - (home-page "https://github.com/pmezard/go-difflib") - (synopsis "go-difflib") - (description - "Go-difflib is a partial port of python 3 difflib package. Its main goal was to -make unified and context diff available in pure Go, mostly for testing purposes.") - (license license:bsd-3))) - -(define-public go-github-com-stretchr-objx-0.1.0 - (package - (name "go-github-com-stretchr-objx") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/objx") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/objx")) - (home-page "https://github.com/stretchr/objx") - (synopsis "Objx") - (description - "Objx - Go package for dealing with maps, slices, JSON and other data.") - (license license:expat))) - -(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 - (package - (name "go-gopkg-in-check-v1") - (version "0.0.0-20161208181325-20d25e280405") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/check.v1") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) - (home-page "https://gopkg.in/check.v1") - (synopsis "Instructions") - (description - "Package check is a rich testing extension for Go's testing package.") - (license license:bsd-2))) - -(define-public go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c - (package - (name "go-gopkg-in-yaml-v3") - (version "3.0.0-20200313102051-9f266ea9e77c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v3") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1bbai3lzb50m0x2vwsdbagrbhvfylj9k1m32hgbqwldqx4p9ay35")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v3") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language.") - (license license:expat))) - -(define-public go-github-com-stretchr-testify-1.7.0 - (package - (name "go-github-com-stretchr-testify") - (version "1.7.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/testify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ixgjsvafr3513pz3r6pmgk074s2dxkll0dadvl25gkf30rkmh10")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/testify")) - (propagated-inputs - `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" - ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) - ("go-github-com-stretchr-objx-0.1.0" - ,go-github-com-stretchr-objx-0.1.0) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.0" - ,go-github-com-davecgh-go-spew-1.1.0))) - (home-page "https://github.com/stretchr/testify") - (synopsis "Testify - Thou Shalt Write Tests") - (description - "** We are working on testify v2 and would love to hear what you'd like to see in -it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -Package testify is a set of packages that provide many tools for testifying that -your code will behave as you intend.") - (license license:expat))) - -(define-public go-golang-org-x-net-0.0.0-20190311183353-d8887717615a - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190311183353-d8887717615a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1wfm6ngxjyj7v5a2dqib6lw8bb2rdnf1kl48diykxjrsddn0s163")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20190311212946-11955173bddd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hlkai67w167wiyivkzd1fgqrnyxkb94l2c6kr51jwcscizfyfn3")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-golang-org-x-lint-0.0.0-20190930215403-16217165b5de - (package - (name "go-golang-org-x-lint") - (version "0.0.0-20190930215403-16217165b5de") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/lint") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0jhwmwc0vykcmf164na0pnadl8gv7184b6pf3xayknwmzdw6vd7h")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/lint")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" - ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd))) - (home-page "https://golang.org/x/lint") - (synopsis "Installation") - (description "Package lint contains a linter for Go source code.") - (license license:bsd-3))) - -(define-public go-github-com-yuin-goldmark-1.3.5 - (package - (name "go-github-com-yuin-goldmark") - (version "1.3.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/yuin/goldmark") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "08rrhfji92hixiv3v0wvamwcy56f90wsw84w7lyvad7g90kbsknx")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/yuin/goldmark")) - (home-page "https://github.com/yuin/goldmark") - (synopsis "goldmark") - (description - "Package goldmark implements functions to convert markdown text to a desired -format.") - (license license:expat))) - -(define-public go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190404232315-eb5bcb51f2a3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "17k4g8krxbl84gzcs275b7gsh66dzm15fdxivjnx9xz8q84l4kby")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20190412213103-97732733099d - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190412213103-97732733099d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "118hkp01i4z1f5h6hcjm0ff2ngqhrzj1f7731n0kw8dr6hvbx0sw")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20191011191535-87dc89f01550") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0z4i1m2yn3f31ci7wvcm2rxkx2yiv7a78mfzklncmsz2k97rlh2g")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" - ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) - ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" - ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20190308221718-c2843e01d9a2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190215142949-d0b11bdaac8a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-text-0.3.0 - (package - (name "go-golang-org-x-text") - (version "0.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/text")) - (home-page "https://golang.org/x/text") - (synopsis "Go Text") - (description - "text is a repository of text-related packages related to internationalization -(i18n) and localization (l10n), such as character encodings, text -transformations, and locale-specific text handling.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190620200207-3b0461eec859") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0l00c8l0a8xnv6qdpwfzxxsr58jggacgzdrwiprrfx2xqm37b6d5")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20190423024810-112230192c58 - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20190423024810-112230192c58") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "05i2k43j2d0llq768hg5pf3hb2yhfzp9la1w5wp0rsnnzblr0lfn")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the ones -provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7 - (package - (name "go-golang-org-x-xerrors") - (version "0.0.0-20190717185122-a985d3407aa7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/xerrors") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "00wzr5w8aadipgc3rkk8f11i41znskfj9ix5nhhaxyg7isrslgcj")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/xerrors")) - (home-page "https://golang.org/x/xerrors") - (synopsis #f) - (description "Package xerrors implements functions to manipulate errors.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20191119224855-298f0cb1881e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0l4pqwib2wnfnix6nvxl0yrq87ipi7ff1rz6z5bxfzy9dki1nzmv")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7" - ,go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7) - ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" - ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) - ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" - ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898 - (package - (name "go-golang-org-x-xerrors") - (version "0.0.0-20191011141410-1b5146add898") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/xerrors") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0w2akj91krxjag0xdhsg78470888nicc5ismc2ap9jqpss6v1zih")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/xerrors")) - (home-page "https://golang.org/x/xerrors") - (synopsis #f) - (description "Package xerrors implements functions to manipulate errors.") - (license license:bsd-3))) - -(define-public go-golang-org-x-mod-0.4.2 - (package - (name "go-golang-org-x-mod") - (version "0.4.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/mod") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0z1p17i291z2k6va08i80ljyzyij2b6qsz78lnz0wi8zsnkfdz43")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/mod")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" - ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) - ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" - ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) - ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" - ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) - (home-page "https://golang.org/x/mod") - (synopsis "mod") - (description - "This repository holds packages for writing tools that work directly with Go -module mechanics. That is, it is for direct manipulation of Go modules -themselves.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20210330210617-4fbd30eecc44 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20210330210617-4fbd30eecc44") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "02mmymbm7wb3vdp3z9hm8p0f45708fybyd38qm8qxzwm19zqnp56")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20201119102817-f84b799fce68") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1dvhqian5byzkcg1bnqzygqa6ccc6krc2q7j12pp1vhl3y7znnsg")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1 - (package - (name "go-golang-org-x-term") - (version "0.0.0-20201126162022-7de9c90e9dd1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/term") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ba252xmv6qsvf1w1gcy98mngrj0vd4inbjw0lsklqvva65nljna")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/term")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" - ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) - (home-page "https://golang.org/x/term") - (synopsis "Go terminal/console support") - (description - "Package term provides support functions for dealing with terminals, as commonly -found on UNIX systems.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20180917221912-90fa682c2a6e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-golang-org-x-text-0.3.3 - (package - (name "go-golang-org-x-text") - (version "0.3.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19pihqm3phyndmiw6i42pdv6z1rbvlqlsnhsyqf9gsnn0qnmqqlh")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/text")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" - ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) - (home-page "https://golang.org/x/text") - (synopsis "Go Text") - (description - "text is a repository of text-related packages related to internationalization -(i18n) and localization (l10n), such as character encodings, text -transformations, and locale-specific text handling.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20210405180319-a5a99cb37ef4 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20210405180319-a5a99cb37ef4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0z90hpmxdw9i8vfhd6vf7hd63c86f1128qfb5f3y4kinvlpjy3rl")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) - ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" - ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) - ("go-golang-org-x-sys-0.0.0-20210330210617-4fbd30eecc44" - ,go-golang-org-x-sys-0.0.0-20210330210617-4fbd30eecc44))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20210220032951-036812b2e83c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1gl202py3s4gl6arkaxlf8qa6f0jyyg2f95m6f89qnfmr416h85b")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the ones -provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1 - (package - (name "go-golang-org-x-xerrors") - (version "0.0.0-20200804184101-5ec99f83aff1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/xerrors") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1dbzc3gmf2haazpv7cgmv97rq40g2xzwbglc17vas8dwhgwgwrzb")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/xerrors")) - (home-page "https://golang.org/x/xerrors") - (synopsis #f) - (description "Package xerrors implements functions to manipulate errors.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.1.5 - (package - (name "go-golang-org-x-tools") - (version "0.1.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1wzbbcja1q0gn8ahxvzvpl4nzj2icwmc0pppgipmx5rdnngqw80l")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" - ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) - ("go-golang-org-x-sys-0.0.0-20210510120138-977fb7262007" - ,go-golang-org-x-sys-0.0.0-20210510120138-977fb7262007) - ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" - ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) - ("go-golang-org-x-net-0.0.0-20210405180319-a5a99cb37ef4" - ,go-golang-org-x-net-0.0.0-20210405180319-a5a99cb37ef4) - ("go-golang-org-x-mod-0.4.2" ,go-golang-org-x-mod-0.4.2) - ("go-github-com-yuin-goldmark-1.3.5" - ,go-github-com-yuin-goldmark-1.3.5))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127 - (package - (name "go-gopkg-in-check-v1") - (version "1.0.0-20180628173108-788fd7840127") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/check.v1") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0v3bim0j375z81zrpr5qv42knqs0y2qv2vkjiqi5axvb78slki1a")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) - (home-page "https://gopkg.in/check.v1") - (synopsis "Instructions") - (description - "Package check is a rich testing extension for Go's testing package.") - (license license:bsd-2))) - -(define-public go-go-uber-org-goleak-1.1.12 - (package - (name "go-go-uber-org-goleak") - (version "1.1.12") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/uber-go/goleak") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1wda3bd5xqbnvskgpr2lg6ccnrm3v9wl0i5c5b6xrrzf01b81vzg")))) - (build-system go-build-system) - (arguments '(#:import-path "go.uber.org/goleak")) - (propagated-inputs - `(("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" - ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) - ("go-golang-org-x-tools-0.1.5" ,go-golang-org-x-tools-0.1.5) - ("go-golang-org-x-lint-0.0.0-20190930215403-16217165b5de" - ,go-golang-org-x-lint-0.0.0-20190930215403-16217165b5de) - ("go-github-com-stretchr-testify-1.7.0" - ,go-github-com-stretchr-testify-1.7.0) - ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0))) - (home-page "https://go.uber.org/goleak") - (synopsis "goleak") - (description "Package goleak is a Goroutine leak detector.") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20210510120138-977fb7262007 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20210510120138-977fb7262007") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0d2vnblgzxgvis2kly99gv10kadyl3v0cpv1lskjqg2v5d11r6hd")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-containerd-cgroups-1.0.3 - (package - (name "go-github-com-containerd-cgroups") - (version "1.0.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/cgroups") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0mqsi2jm1f7xvs35kx6ijvadr6zycshc1xivq6xdiwrw24wb0m3r")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/cgroups")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20210510120138-977fb7262007" - ,go-golang-org-x-sys-0.0.0-20210510120138-977fb7262007) - ("go-go-uber-org-goleak-1.1.12" ,go-go-uber-org-goleak-1.1.12) - ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) - ("go-github-com-stretchr-testify-1.7.0" - ,go-github-com-stretchr-testify-1.7.0) - ("go-github-com-sirupsen-logrus-1.8.1" - ,go-github-com-sirupsen-logrus-1.8.1) - ("go-github-com-opencontainers-runtime-spec-1.0.2" - ,go-github-com-opencontainers-runtime-spec-1.0.2) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2) - ("go-github-com-godbus-dbus-v5-5.0.4" - ,go-github-com-godbus-dbus-v5-5.0.4) - ("go-github-com-docker-go-units-0.4.0" - ,go-github-com-docker-go-units-0.4.0) - ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" - ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) - ("go-github-com-coreos-go-systemd-v22-22.3.2" - ,go-github-com-coreos-go-systemd-v22-22.3.2) - ("go-github-com-cilium-ebpf-0.4.0" ,go-github-com-cilium-ebpf-0.4.0))) - (home-page "https://github.com/containerd/cgroups") - (synopsis "cgroups") - (description - "Go package for creating, managing, inspecting, and destroying cgroups. The -resources format for settings on the cgroup uses the OCI runtime-spec found -@url{https://github.com/opencontainers/runtime-spec,here}.") - (license license:asl2.0))) - -(define-public go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20191005200804-aed5e4c7ecf9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0wsdsbl9n61l99z0cvib2xzg56fsfgky4yc5xapdw9ywx9h0zm3a")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-fsnotify-fsnotify-1.4.9 - (package - (name "go-github-com-fsnotify-fsnotify") - (version "1.4.9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/fsnotify/fsnotify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1i1r72knpbfwwql9frn9bqc3nhfc2ai5m6qllcyr6wban62lr40x")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/fsnotify/fsnotify")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9" - ,go-golang-org-x-sys-0.0.0-20191005200804-aed5e4c7ecf9))) - (home-page "https://github.com/fsnotify/fsnotify") - (synopsis "File system notifications for Go") - (description - "Package fsnotify provides a platform-independent interface for file system -notifications.") - (license license:bsd-3))) - -(define-public go-github-com-sclevine-agouti-3.0.0+incompatible - (package - (name "go-github-com-sclevine-agouti") - (version "3.0.0+incompatible") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sclevine/agouti") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fsj7x7hhmqq43a9qxdfap7ik6b35hqk58dwii0ir1zm1fnw105b")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/sclevine/agouti")) - (home-page "https://github.com/sclevine/agouti") - (synopsis "Agouti") - (description - "Package agouti is a universal WebDriver client for Go. It extends the -agouti/api package to provide a feature-rich interface for controlling a web -browser.") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20200519105757-fe76b779f299 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200519105757-fe76b779f299") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0g6j3n9fdv1a2lp2i8wbaaya85yrbfx3ns6iq1s7l2ayhxxmgh6b")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20180917221912-90fa682c2a6e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-golang-org-x-text-0.3.2 - (package - (name "go-golang-org-x-text") - (version "0.3.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0flv9idw0jm5nm8lx25xqanbkqgfiym6619w575p7nrdh0riqwqh")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/text")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" - ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) - (home-page "https://golang.org/x/text") - (synopsis "Go Text") - (description - "text is a repository of text-related packages related to internationalization -(i18n) and localization (l10n), such as character encodings, text -transformations, and locale-specific text handling.") - (license license:bsd-3))) - -(define-public go-github-com-onsi-ginkgo-1.13.0 - (package - (name "go-github-com-onsi-ginkgo") - (version "1.13.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/onsi/ginkgo") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1p8p334z7xjfsn35hfkls8crirz8hgqqq0hj83gxizpzq8v24qpi")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/onsi/ginkgo")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) - ("go-golang-org-x-sys-0.0.0-20200519105757-fe76b779f299" - ,go-golang-org-x-sys-0.0.0-20200519105757-fe76b779f299) - ("go-github-com-sclevine-agouti-3.0.0+incompatible" - ,go-github-com-sclevine-agouti-3.0.0+incompatible) - ("go-github-com-onsi-gomega-1.10.1" ,go-github-com-onsi-gomega-1.10.1) - ("go-github-com-nxadm-tail-1.4.4" ,go-github-com-nxadm-tail-1.4.4) - ("go-github-com-fsnotify-fsnotify-1.4.9" - ,go-github-com-fsnotify-fsnotify-1.4.9))) - (home-page "https://github.com/onsi/ginkgo") - (synopsis "Ginkgo 2.0 Release Candidate is available!") - (description "Ginkgo is a BDD-style testing framework for Golang") - (license license:expat))) - -(define-public go-github-com-google-go-cmp-0.3.0 - (package - (name "go-github-com-google-go-cmp") - (version "0.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1hyxx3434zshl2m9ja78gwlkg1rx9yl6diqa7dnjb31xz5x4gbjj")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically -equal.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd - (package - (name "go-google-golang-org-protobuf") - (version "0.0.0-20200109180630-ec00e32a8dfd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0w6lp9w2avxcpxwzzhspr209ifhyjagvs23k0vykfdqahl1aplrh")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.3.0" - ,go-github-com-google-go-cmp-0.3.0))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is -a language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol -buffer developer guide} for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.4.0-rc.1 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.0-rc.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "186rirvbfgv6hrxp27ipx2cdpv19qifdd20biqfdm01wiyclqimn")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd" - ,go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd) - ("go-github-com-google-go-cmp-0.3.1" - ,go-github-com-google-go-cmp-0.3.1))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code -github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-github-com-google-go-cmp-0.3.1 - (package - (name "go-github-com-google-go-cmp") - (version "0.3.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1caw49i0plkjxir7kdf5qhwls3krqwfmi7g4h392rdfwi3kfahx1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically -equal.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64 - (package - (name "go-google-golang-org-protobuf") - (version "0.0.0-20200221191635-4d8936d0db64") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0563bsvdjj6k0sgwqd5yzrgfiax7sp3lcwh608gync5sv9fx39cy")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.3.1" - ,go-github-com-google-go-cmp-0.3.1) - ("go-github-com-golang-protobuf-1.4.0-rc.1" - ,go-github-com-golang-protobuf-1.4.0-rc.1))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is -a language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol -buffer developer guide} for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.0-rc.1.0.20200221234624-67d41d38c208") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ykxhg3zixmw25pd435f8h16wnz1g00jpcmmg3xl030kksgqgpp6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64" - ,go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code -github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60 - (package - (name "go-google-golang-org-protobuf") - (version "0.0.0-20200228230310-ab0ca4ff8a60") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1rinspcznfp85yz4vrlf4h38hr576virgv8lcs22bsylqga808sd")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208" - ,go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is -a language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol -buffer developer guide} for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.4.0-rc.2 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.0-rc.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1hd43hjv5zl6bjbmhm5phx74bw4xajsi73m5zky2k56za4mpgzzc")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60" - ,go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code -github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967 - (package - (name "go-google-golang-org-protobuf") - (version "1.20.1-0.20200309200217-e05f789c0967") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "17wmy89hnmpkwc63rfcjp50q15s9f1rhmczg06c3z9yy41zk82w9")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.0-rc.2" - ,go-github-com-golang-protobuf-1.4.0-rc.2))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is -a language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol -buffer developer guide} for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.0-rc.4.0.20200313231945-b860323f09d0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1zj6cwshx0l5n9cn2cpbikzzb79px5dmkpc4p19zy1iif5r5p0z0")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967" - ,go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code -github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-1.21.0 - (package - (name "go-google-golang-org-protobuf") - (version "1.21.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12bwln8z1lf9105gdp6ip0rx741i4yfz1520gxnp8861lh9wcl63")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0" - ,go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is -a language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol -buffer developer guide} for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.4.0 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fjvl5n77abxz5qsd4mgyvjq19x43c5bfvmq62mq3m5plx6zksc8")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.21.0" - ,go-google-golang-org-protobuf-1.21.0) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code -github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-github-com-google-go-cmp-0.4.0 - (package - (name "go-github-com-google-go-cmp") - (version "0.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1x5pvl3fb5sbyng7i34431xycnhmx8xx94gq2n19g6p0vz68z2v2")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically -equal.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-1.23.0 - (package - (name "go-google-golang-org-protobuf") - (version "1.23.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "03yan0m1v0zmlr935p4n24fd376mznsg85zy8sywbgisls4s1bzy")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.0" - ,go-github-com-golang-protobuf-1.4.0))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is -a language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol -buffer developer guide} for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.4.2 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0m5z81im4nsyfgarjhppayk4hqnrwswr3nix9mj8pff8x9jvcjqw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.23.0" - ,go-google-golang-org-protobuf-1.23.0) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code -github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20190904154756-749cb33beabd - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190904154756-749cb33beabd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0dm3257q3rv2kyn5lmqqim2fqg634v6rhrqq4glvbk4wx4l3v337")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-nxadm-tail-1.4.4 - (package - (name "go-github-com-nxadm-tail") - (version "1.4.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/nxadm/tail") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1czmwqii0fc8v3ar5bwqpfanprkxg19waly405zlvcflzvj53wwc")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/nxadm/tail")) - (propagated-inputs - `(("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" - ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) - ("go-golang-org-x-sys-0.0.0-20190904154756-749cb33beabd" - ,go-golang-org-x-sys-0.0.0-20190904154756-749cb33beabd) - ("go-github-com-fsnotify-fsnotify-1.4.7" - ,go-github-com-fsnotify-fsnotify-1.4.7))) - (home-page "https://github.com/nxadm/tail") - (synopsis "tail functionality in Go") - (description - "nxadm/tail provides a Go library that emulates the features of the BSD `tail` -program. The library comes with full support for truncation/move detection as -it is designed to work with log rotation tools. The library works on all -operating systems supported by Go, including POSIX systems like Linux and *BSD, -and MS Windows. Go 1.9 is the oldest compiler release supported.") - (license license:expat))) - -(define-public go-github-com-fsnotify-fsnotify-1.4.7 - (package - (name "go-github-com-fsnotify-fsnotify") - (version "1.4.7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/fsnotify/fsnotify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/fsnotify/fsnotify")) - (home-page "https://github.com/fsnotify/fsnotify") - (synopsis "File system notifications for Go") - (description - "Package fsnotify provides a platform-independent interface for file system -notifications.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.2.0 - (package - (name "go-github-com-golang-protobuf") - (version "1.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0kf4b59rcbb1cchfny2dm9jyznp8ri2hsb14n8iak1q8986xa0ab")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code -github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-github-com-hpcloud-tail-1.0.0 - (package - (name "go-github-com-hpcloud-tail") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hpcloud/tail") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1njpzc0pi1acg5zx9y6vj9xi6ksbsc5d387rd6904hy6rh2m6kn0")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hpcloud/tail")) - (home-page "https://github.com/hpcloud/tail") - (synopsis "Go package for tail-ing files") - (description - "This package provides a Go package striving to emulate the features of the BSD -@code{tail} program.") - (license license:expat))) - -(define-public go-github-com-onsi-ginkgo-1.6.0 - (package - (name "go-github-com-onsi-ginkgo") - (version "1.6.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/onsi/ginkgo") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0x0gc89vgq38xhgmi2h22bhr73cf2gmk42g89nz89k8dgg9hhr25")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/onsi/ginkgo")) - (home-page "https://github.com/onsi/ginkgo") - (synopsis "Ginkgo 2.0 Release Candidate is available!") - (description "Ginkgo is a BDD-style testing framework for Golang") - (license license:expat))) - -(define-public go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd - (package - (name "go-golang-org-x-net") - (version "0.0.0-20180906233101-161cd47e91fd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0254ld010iijygbzykib2vags1dc0wlmcmhgh4jl8iny159lhbcv")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20180314180146-1d60e4601c6f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "046jlanz2lkxq1r57x9bl6s4cvfqaic6p2xybsj8mq1120jv4rs6")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the ones -provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20180909124046-d0be0721c37e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "081wyvfnlf842dqg03raxfz6lldlxpmyh1prix9lmrrm65arxb12")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-gopkg-in-fsnotify-v1-1.4.7 - (package - (name "go-gopkg-in-fsnotify-v1") - (version "1.4.7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/fsnotify.v1") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) - (build-system go-build-system) - (arguments - '(#:import-path - "gopkg.in/fsnotify.v1" - #:unpack-path - "gopkg.in/fsnotify.v1")) - (home-page "https://gopkg.in/fsnotify.v1") - (synopsis "File system notifications for Go") - (description - "Package fsnotify provides a platform-independent interface for file system -notifications.") - (license license:bsd-3))) - -(define-public go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7 - (package - (name "go-gopkg-in-tomb-v1") - (version "1.0.0-20141024135613-dd632973f1e7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/tomb.v1") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1lqmq1ag7s4b3gc3ddvr792c5xb5k6sfn0cchr3i2s7f1c231zjv")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/tomb.v1" #:unpack-path "gopkg.in/tomb.v1")) - (home-page "https://gopkg.in/tomb.v1") - (synopsis "Installation and usage") - (description - "The tomb package offers a conventional API for clean goroutine termination.") - (license license:bsd-3))) - -(define-public go-gopkg-in-yaml-v2-2.2.4 - (package - (name "go-gopkg-in-yaml-v2") - (version "2.2.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "11bwj757wi8kdrcnlgfqb8vv2d2xdhlghmyagd19i62khrkchsg2")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v2") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language.") - (license license:asl2.0))) - -(define-public go-github-com-onsi-gomega-1.7.1 - (package - (name "go-github-com-onsi-gomega") - (version "1.7.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/onsi/gomega") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "06p3x0910cdaa64l7d44s728d4j3yhps315dlcvrbjzhljjj7mam")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/onsi/gomega")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.4" ,go-gopkg-in-yaml-v2-2.2.4) - ("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" - ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) - ("go-gopkg-in-fsnotify-v1-1.4.7" ,go-gopkg-in-fsnotify-v1-1.4.7) - ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e" - ,go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e) - ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" - ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) - ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" - ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) - ("go-github-com-onsi-ginkgo-1.6.0" ,go-github-com-onsi-ginkgo-1.6.0) - ("go-github-com-hpcloud-tail-1.0.0" ,go-github-com-hpcloud-tail-1.0.0) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0) - ("go-github-com-fsnotify-fsnotify-1.4.7" - ,go-github-com-fsnotify-fsnotify-1.4.7))) - (home-page "https://github.com/onsi/gomega") - (synopsis ": a BDD Testing Framework for Golang") - (description - "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library.") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20191120155948-bd437916bb0e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1i8x26frmlin55k69k936zd1rp5sqnq14y5ms4rkxbfzhasdm2rx")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-onsi-ginkgo-1.12.1 - (package - (name "go-github-com-onsi-ginkgo") - (version "1.12.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/onsi/ginkgo") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0xs9724l2b0bwjwrvw5cs3akxaw0n1j5kyxrb1ggfsdjz0zmjcxh")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/onsi/ginkgo")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e" - ,go-golang-org-x-sys-0.0.0-20191120155948-bd437916bb0e) - ("go-github-com-onsi-gomega-1.7.1" ,go-github-com-onsi-gomega-1.7.1) - ("go-github-com-nxadm-tail-1.4.4" ,go-github-com-nxadm-tail-1.4.4))) - (home-page "https://github.com/onsi/ginkgo") - (synopsis "Ginkgo 2.0 Release Candidate is available!") - (description "Ginkgo is a BDD-style testing framework for Golang") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190215142949-d0b11bdaac8a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20190308221718-c2843e01d9a2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200323222414-85ca7c5b95cd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1504qkgbhhm4f0bhk77v2r1lj6x171ay5m79alkg78wjb5cign5l")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-text-0.3.0 - (package - (name "go-golang-org-x-text") - (version "0.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/text")) - (home-page "https://golang.org/x/text") - (synopsis "Go Text") - (description - "text is a repository of text-related packages related to internationalization -(i18n) and localization (l10n), such as character encodings, text -transformations, and locale-specific text handling.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20200520004742-59133d7f0dd7 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20200520004742-59133d7f0dd7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "03js31gnf3hir5dh6q01bj7cs0y4wzyinqg1mvr0nlb83kak9ggq")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd" - ,go-golang-org-x-sys-0.0.0-20200323222414-85ca7c5b95cd) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543 - (package - (name "go-golang-org-x-xerrors") - (version "0.0.0-20191204190536-9bdfabe68543") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/xerrors") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1yjfi1bk9xb81lqn85nnm13zz725wazvrx3b50hx19qmwg7a4b0c")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/xerrors")) - (home-page "https://golang.org/x/xerrors") - (synopsis #f) - (description "Package xerrors implements functions to manipulate errors.") - (license license:bsd-3))) - -(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 - (package - (name "go-gopkg-in-check-v1") - (version "0.0.0-20161208181325-20d25e280405") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/check.v1") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) - (home-page "https://gopkg.in/check.v1") - (synopsis "Instructions") - (description - "Package check is a rich testing extension for Go's testing package.") - (license license:bsd-2))) - -(define-public go-gopkg-in-yaml-v2-2.3.0 - (package - (name "go-gopkg-in-yaml-v2") - (version "2.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1md0hlyd9s6myv3663i9l59y74n4xjazifmmyxn43g86fgkc5lzj")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v2") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language.") - (license license:asl2.0))) - -(define-public go-github-com-onsi-gomega-1.10.1 - (package - (name "go-github-com-onsi-gomega") - (version "1.10.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/onsi/gomega") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "068mirdbwl9n9dqlvqr489h52wkd90cv1jvng4yp8kv83lhzk2dq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/onsi/gomega")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.3.0" ,go-gopkg-in-yaml-v2-2.3.0) - ("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543) - ("go-golang-org-x-net-0.0.0-20200520004742-59133d7f0dd7" - ,go-golang-org-x-net-0.0.0-20200520004742-59133d7f0dd7) - ("go-github-com-onsi-ginkgo-1.12.1" ,go-github-com-onsi-ginkgo-1.12.1) - ("go-github-com-golang-protobuf-1.4.2" - ,go-github-com-golang-protobuf-1.4.2))) - (home-page "https://github.com/onsi/gomega") - (synopsis ": a BDD Testing Framework for Golang") - (description - "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library.") - (license license:expat))) - -(define-public go-github-com-containernetworking-cni-1.0.1 - (package - (name "go-github-com-containernetworking-cni") - (version "1.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containernetworking/cni") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0jzijcb96z26lchh6j4js3rl7c148mwlaiz3s6ww47kljnxmv05f")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containernetworking/cni")) - (propagated-inputs - `(("go-github-com-onsi-gomega-1.10.1" ,go-github-com-onsi-gomega-1.10.1) - ("go-github-com-onsi-ginkgo-1.13.0" - ,go-github-com-onsi-ginkgo-1.13.0))) - (home-page "https://github.com/containernetworking/cni") - (synopsis "CNI - the Container Network Interface") - (description - "CNI (), a @url{https://cncf.io,Cloud Native Computing Foundation} project, -consists of a specification and libraries for writing plugins to configure -network interfaces in Linux containers, along with a number of supported -plugins. CNI concerns itself only with network connectivity of containers and -removing allocated resources when the container is deleted. Because of this -focus, CNI has a wide range of support and the specification is simple to -implement.") - (license license:asl2.0))) - -(define-public go-github-com-creack-pty-1.1.17 - (package - (name "go-github-com-creack-pty") - (version "1.1.17") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/creack/pty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "09lcq5bw1dwppxjia05sj4fy7gbk62vishfz1bgrbd1r06i57mjf")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/creack/pty")) - (home-page "https://github.com/creack/pty") - (synopsis "pty") - (description - "Package pty provides functions for working with Unix terminals.") - (license license:expat))) - -(define-public go-github-com-cyphar-filepath-securejoin-0.2.3 - (package - (name "go-github-com-cyphar-filepath-securejoin") - (version "0.2.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cyphar/filepath-securejoin") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0w03d8hslwfhcnfqck21agzs7y0sc6gpwfz53md8fv26ishwxppy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/cyphar/filepath-securejoin")) - (home-page "https://github.com/cyphar/filepath-securejoin") - (synopsis #f) - (description - "Package securejoin is an implementation of the hopefully-soon-to-be-included -SecureJoin helper that is meant to be part of the \"path/filepath\" package. The -purpose of this project is to provide a PoC implementation to make the -SecureJoin proposal -(@url{https://github.com/golang/go/issues/20126,https://github.com/golang/go/issues/20126}) -more tangible.") - (license license:bsd-3))) - -(define-public go-github-com-docker-docker-20.10.12+incompatible - (package - (name "go-github-com-docker-docker") - (version "20.10.12+incompatible") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/moby/moby") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "17j820ij8p6w61jyg5g6y5dwv56dh1w178f6ia2i2dc9b8mz6b5a")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/docker/docker")) - (home-page "https://github.com/docker/docker") - (synopsis "The Moby Project") - (description - "Moby is an open-source project created by Docker to enable and accelerate -software containerization.") - (license license:asl2.0))) - -(define-public go-golang-org-x-sys-0.0.0-20200116001909-b77594299b42 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200116001909-b77594299b42") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0isfm6kmh4fjhh6m7mrb3zvdjka2y31c5habr5kydl7rg0lwkabv")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-mattn-go-isatty-0.0.12 - (package - (name "go-github-com-mattn-go-isatty") - (version "0.0.12") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mattn/go-isatty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1dfsh27d52wmz0nmmzm2382pfrs2fcijvh6cgir7jbb4pnigr5w4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mattn/go-isatty")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20200116001909-b77594299b42" - ,go-golang-org-x-sys-0.0.0-20200116001909-b77594299b42))) - (home-page "https://github.com/mattn/go-isatty") - (synopsis "go-isatty") - (description "Package isatty implements interface to isatty") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20200223170610-d5e6a3e2c0ae - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200223170610-d5e6a3e2c0ae") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0lz7vm5dz2p14fzq2j4m1l9p392cl0fa73aaf45gln07ylfajk4n")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-mattn-go-colorable-0.1.9 - (package - (name "go-github-com-mattn-go-colorable") - (version "0.1.9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mattn/go-colorable") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0f46aiyfca71y7g7ypkicqi0r4ys9jwdw2v6hwdc0x76d39hh0qk")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mattn/go-colorable")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20200223170610-d5e6a3e2c0ae" - ,go-golang-org-x-sys-0.0.0-20200223170610-d5e6a3e2c0ae) - ("go-github-com-mattn-go-isatty-0.0.12" - ,go-github-com-mattn-go-isatty-0.0.12))) - (home-page "https://github.com/mattn/go-colorable") - (synopsis "go-colorable") - (description "Colorable writer for windows.") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20210630005230-0f9fa26af87c - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20210630005230-0f9fa26af87c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "17g7kc6bf6zw4ib1xhmkbpfdn85jbmindqsz0l8ymmc6v279h13q")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-mattn-go-isatty-0.0.14 - (package - (name "go-github-com-mattn-go-isatty") - (version "0.0.14") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mattn/go-isatty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "015zc3j60vb85d7f2al15la24wn45piazxlagqhzrbgfdyqci60z")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mattn/go-isatty")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20210630005230-0f9fa26af87c" - ,go-golang-org-x-sys-0.0.0-20210630005230-0f9fa26af87c))) - (home-page "https://github.com/mattn/go-isatty") - (synopsis "go-isatty") - (description "Package isatty implements interface to isatty") - (license license:expat))) - -(define-public go-github-com-fatih-color-1.13.0 - (package - (name "go-github-com-fatih-color") - (version "1.13.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/fatih/color") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "029qkxsdpblhrpgbv4fcmqwkqnjhx08hwiqp19pd7zz6l8a373ay")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/fatih/color")) - (propagated-inputs - `(("go-github-com-mattn-go-isatty-0.0.14" - ,go-github-com-mattn-go-isatty-0.0.14) - ("go-github-com-mattn-go-colorable-0.1.9" - ,go-github-com-mattn-go-colorable-0.1.9))) - (home-page "https://github.com/fatih/color") - (synopsis "color") - (description - "Package color is an ANSI color package to output colorized or SGR defined output -to the standard output. The API can be used in several way, pick one that suits -you.") - (license license:expat))) - -(define-public go-github-com-go-log-log-0.2.0 - (package - (name "go-github-com-go-log-log") - (version "0.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/go-log/log") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1idnqv4yvkmdh3wcsgvhcpak9z6ix8dsifdjq5kfbbnskdq5rmvg")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/go-log/log")) - (home-page "https://github.com/go-log/log") - (synopsis "Log") - (description "Package log provides a log interface") - (license license:expat))) - -(define-public go-github-com-google-uuid-1.3.0 - (package - (name "go-github-com-google-uuid") - (version "1.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/uuid") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0imkw52m7fzrwsdj2rfrk3zbplqfbwncyv6hv89xw0vdw3jpk122")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/uuid")) - (home-page "https://github.com/google/uuid") - (synopsis "uuid") - (description "Package uuid generates and inspects UUIDs.") - (license license:bsd-3))) - -(define-public go-github-com-opencontainers-go-digest-1.0.0 - (package - (name "go-github-com-opencontainers-go-digest") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/go-digest") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0i5acjajvr6hi9zb7gxwifd8w28y884cv7cx36adj8lngj647xbi")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/go-digest")) - (home-page "https://github.com/opencontainers/go-digest") - (synopsis "go-digest") - (description - "Package digest provides a generalized type to opaquely represent message digests -and their operations within the registry. The Digest type is designed to serve -as a flexible identifier in a content-addressable system. More importantly, it -provides tools and wrappers to work with hash.Hash-based digests with little -effort.") - (license (list license:asl2.0 license:cc-by-sa4.0)))) - -(define-public go-github-com-opencontainers-go-digest-1.0.0 - (package - (name "go-github-com-opencontainers-go-digest") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/go-digest") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0i5acjajvr6hi9zb7gxwifd8w28y884cv7cx36adj8lngj647xbi")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/go-digest")) - (home-page "https://github.com/opencontainers/go-digest") - (synopsis "go-digest") - (description - "Package digest provides a generalized type to opaquely represent message digests -and their operations within the registry. The Digest type is designed to serve -as a flexible identifier in a content-addressable system. More importantly, it -provides tools and wrappers to work with hash.Hash-based digests with little -effort.") - (license (list license:asl2.0 license:cc-by-sa4.0)))) - -(define-public go-github-com-pkg-errors-0.9.1 - (package - (name "go-github-com-pkg-errors") - (version "0.9.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pkg/errors") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1761pybhc2kqr6v5fm8faj08x9bql8427yqg6vnfv6nhrasx1mwq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pkg/errors")) - (home-page "https://github.com/pkg/errors") - (synopsis "errors") - (description "Package errors provides simple error handling primitives.") - (license license:bsd-2))) - -(define-public go-github-com-russross-blackfriday-1.6.0 - (package - (name "go-github-com-russross-blackfriday") - (version "1.6.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/russross/blackfriday") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "036028ynpq52z9snmd2b1kjzyvv6n9sg71k651ndznggnw19aamp")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/russross/blackfriday")) - (home-page "https://github.com/russross/blackfriday") - (synopsis "Blackfriday") - (description "Package blackfriday is a Markdown processor.") - (license license:bsd-2))) - -(define-public go-github-com-davecgh-go-spew-1.1.0 - (package - (name "go-github-com-davecgh-go-spew") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/davecgh/go-spew") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/davecgh/go-spew")) - (home-page "https://github.com/davecgh/go-spew") - (synopsis "go-spew") - (description - "Go-spew implements a deep pretty printer for Go data structures to aid in -debugging. A comprehensive suite of tests with 100% test coverage is provided -to ensure proper functionality. See @code{test_coverage.txt} for the gocov -coverage report. Go-spew is licensed under the liberal ISC license, so it may -be used in open source or commercial projects.") - (license license:isc))) - -(define-public go-github-com-pmezard-go-difflib-1.0.0 - (package - (name "go-github-com-pmezard-go-difflib") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pmezard/go-difflib") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pmezard/go-difflib")) - (home-page "https://github.com/pmezard/go-difflib") - (synopsis "go-difflib") - (description - "Go-difflib is a partial port of python 3 difflib package. Its main goal was to -make unified and context diff available in pure Go, mostly for testing purposes.") - (license license:bsd-3))) - -(define-public go-github-com-stretchr-objx-0.1.0 - (package - (name "go-github-com-stretchr-objx") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/objx") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/objx")) - (home-page "https://github.com/stretchr/objx") - (synopsis "Objx") - (description - "Objx - Go package for dealing with maps, slices, JSON and other data.") - (license license:expat))) - -(define-public go-github-com-stretchr-testify-1.3.0 - (package - (name "go-github-com-stretchr-testify") - (version "1.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/testify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0wjchp2c8xbgcbbq32w3kvblk6q6yn533g78nxl6iskq6y95lxsy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/testify")) - (propagated-inputs - `(("go-github-com-stretchr-objx-0.1.0" - ,go-github-com-stretchr-objx-0.1.0) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.0" - ,go-github-com-davecgh-go-spew-1.1.0))) - (home-page "https://github.com/stretchr/testify") - (synopsis "Testify - Thou Shalt Write Tests") - (description - "** We are working on testify v2 and would love to hear what you'd like to see in -it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -Package testify is a set of packages that provide many tools for testifying that -your code will behave as you intend.") - (license license:expat))) - -(define-public go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f - (package - (name "go-github-com-xeipuuv-gojsonpointer") - (version "0.0.0-20180127040702-4e3ac2762d5f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/xeipuuv/gojsonpointer") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "13y6iq2nzf9z4ls66bfgnnamj2m3438absmbpqry64bpwjfbsi9q")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/xeipuuv/gojsonpointer")) - (home-page "https://github.com/xeipuuv/gojsonpointer") - (synopsis "gojsonpointer") - (description "An implementation of JSON Pointer - Go language") - (license license:asl2.0))) - -(define-public go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415 - (package - (name "go-github-com-xeipuuv-gojsonreference") - (version "0.0.0-20180127040603-bd5ef7bd5415") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/xeipuuv/gojsonreference") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1xby79padc7bmyb8rfbad8wfnfdzpnh51b1n8c0kibch0kwc1db5")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/xeipuuv/gojsonreference")) - (home-page "https://github.com/xeipuuv/gojsonreference") - (synopsis "gojsonreference") - (description "An implementation of JSON Reference - Go language") - (license license:asl2.0))) - -(define-public go-github-com-xeipuuv-gojsonschema-1.2.0 - (package - (name "go-github-com-xeipuuv-gojsonschema") - (version "1.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/xeipuuv/gojsonschema") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1mqiq0r8qw4qlfp3ls8073r6514rmzwrmdn4j33rppk3zh942i6l")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/xeipuuv/gojsonschema")) - (propagated-inputs - `(("go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415" - ,go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415) - ("go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f" - ,go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f) - ("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0))) - (home-page "https://github.com/xeipuuv/gojsonschema") - (synopsis "gojsonschema") - (description - "An implementation of JSON Schema for the Go programming language. Supports -draft-04, draft-06 and draft-07.") - (license license:asl2.0))) - -(define-public go-github-com-opencontainers-image-spec-1.0.3-0.20211202193544-a5463b7f9c84 - (package - (name "go-github-com-opencontainers-image-spec") - (version "1.0.3-0.20211202193544-a5463b7f9c84") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/image-spec") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "11js6467d7fhcvad4aw26d4p0r5b33vf41qhcf1bdwx0y7smd7s4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/image-spec")) - (propagated-inputs - `(("go-github-com-xeipuuv-gojsonschema-1.2.0" - ,go-github-com-xeipuuv-gojsonschema-1.2.0) - ("go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415" - ,go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415) - ("go-github-com-russross-blackfriday-1.6.0" - ,go-github-com-russross-blackfriday-1.6.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-go-digest-1.0.0" - ,go-github-com-opencontainers-go-digest-1.0.0))) - (home-page "https://github.com/opencontainers/image-spec") - (synopsis "OCI Image Format Specification") - (description - "The OCI Image Format project creates and maintains the software shipping -container image format spec (OCI Image Format).") - (license license:asl2.0))) - -(define-public go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417 - (package - (name "go-github-com-opencontainers-runtime-spec") - (version "1.0.3-0.20210326190908-1c3f411f0417") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/runtime-spec") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1azk8z41ga8af35c966f06vrq9y9hwz6mkm59r3py5qaamzim3qq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) - (home-page "https://github.com/opencontainers/runtime-spec") - (synopsis "Open Container Initiative Runtime Specification") - (description - "The @url{https://www.opencontainers.org,Open Container Initiative} develops -specifications for standards on Operating System process and application -containers.") - (license license:asl2.0))) - -(define-public go-github-com-opencontainers-runtime-tools-0.9.1-0.20210326182921-59cdde06764b - (package - (name "go-github-com-opencontainers-runtime-tools") - (version "0.9.1-0.20210326182921-59cdde06764b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/runtime-tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0f4zy6x1rrrg10bphwijic30m3r4mq934zbavnci6jyi41l1w2r0")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/runtime-tools")) - (home-page "https://github.com/opencontainers/runtime-tools") - (synopsis "oci-runtime-tool") - (description - "oci-runtime-tool is a collection of tools for working with the -@url{https://github.com/opencontainers/runtime-spec,OCI runtime specification}. -To build from source code, runtime-tools requires Go 1.10.x or above.") - (license license:asl2.0))) - -(define-public go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20191115151921-52ab43148777") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1kakxbqrb1w2vwg7r1896z68qcx2lfvimsl8cs2niiipbgpi6imx")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-opencontainers-selinux-1.10.0 - (package - (name "go-github-com-opencontainers-selinux") - (version "1.10.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/selinux") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "118q1d9py9zhym4jmyiivasmllkdnkp1zyx4brc6n2cfmxfph6gc")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/selinux")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777" - ,go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777))) - (home-page "https://github.com/opencontainers/selinux") - (synopsis "selinux") - (description "Common SELinux package used across the container ecosystem.") - (license license:asl2.0))) - -(define-public go-github-com-adamkorcz-go-fuzz-headers-0.0.0-20210312213058-32f4d319f0d2 - (package - (name "go-github-com-adamkorcz-go-fuzz-headers") - (version "0.0.0-20210312213058-32f4d319f0d2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/AdamKorcz/go-fuzz-headers") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0r14xxw8c7pkmln0n5vlrahf1785mr7mlyklmfpa11p9kk9pmq5j")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/AdamKorcz/go-fuzz-headers")) - (home-page "https://github.com/AdamKorcz/go-fuzz-headers") - (synopsis #f) - (description #f) - (license #f))) - -(define-public go-github-com-stretchr-testify-1.3.0 - (package - (name "go-github-com-stretchr-testify") - (version "1.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/testify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0wjchp2c8xbgcbbq32w3kvblk6q6yn533g78nxl6iskq6y95lxsy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/testify")) - (propagated-inputs - `(("go-github-com-stretchr-objx-0.1.0" - ,go-github-com-stretchr-objx-0.1.0) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.0" - ,go-github-com-davecgh-go-spew-1.1.0))) - (home-page "https://github.com/stretchr/testify") - (synopsis "Testify - Thou Shalt Write Tests") - (description - "** We are working on testify v2 and would love to hear what you'd like to see in -it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -Package testify is a set of packages that provide many tools for testifying that -your code will behave as you intend.") - (license license:expat))) - -(define-public go-github-com-apex-logs-0.0.7 - (package - (name "go-github-com-apex-logs") - (version "0.0.7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/apex/logs") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1h12q9sb7f4yjizajfxvjllzqab1s8scgqj22prwyfbbqg1ilchv")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/apex/logs")) - (propagated-inputs - `(("go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0" - ,go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0) - ("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0))) - (home-page "https://github.com/apex/logs") - (synopsis "Example") - (description "Go client for @url{https://apex.sh/logs/,Apex Logs}.") - (license license:expat))) - -(define-public go-github-com-aphistic-golf-0.0.0-20180712155816-02c07f170c5a - (package - (name "go-github-com-aphistic-golf") - (version "0.0.0-20180712155816-02c07f170c5a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/aphistic/golf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1qixab9bb29wqbr4nc5j3g25hq1j7am93f181rkj7a4qacncx763")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/aphistic/golf")) - (home-page "https://github.com/aphistic/golf") - (synopsis "golf") - (description - "This package provides logging capabilities using the GELF -(@url{https://www.graylog.org/resources/gelf-2/,https://www.graylog.org/resources/gelf-2/}) -log format") - (license license:expat))) - -(define-public go-github-com-mattn-go-isatty-0.0.5 - (package - (name "go-github-com-mattn-go-isatty") - (version "0.0.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mattn/go-isatty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "114d5xm8rfxplzd7nxz97gfngb4bhqy102szl084d1afcxsvm4aa")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mattn/go-isatty")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223" - ,go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223))) - (home-page "https://github.com/mattn/go-isatty") - (synopsis "go-isatty") - (description "Package isatty implements interface to isatty") - (license license:expat))) - -(define-public go-github-com-mattn-go-colorable-0.1.1 - (package - (name "go-github-com-mattn-go-colorable") - (version "0.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mattn/go-colorable") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0l640974j804c1yyjfgyxqlsivz0yrzmbql4mhcw2azryigkp08p")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mattn/go-colorable")) - (propagated-inputs - `(("go-github-com-mattn-go-isatty-0.0.5" - ,go-github-com-mattn-go-isatty-0.0.5))) - (home-page "https://github.com/mattn/go-colorable") - (synopsis "go-colorable") - (description "Colorable writer for windows.") - (license license:expat))) - -(define-public go-github-com-mgutz-ansi-0.0.0-20170206155736-9520e82c474b - (package - (name "go-github-com-mgutz-ansi") - (version "0.0.0-20170206155736-9520e82c474b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mgutz/ansi") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "00bz22314j26736w1f0q4jy9d9dfaml17vn890n5zqy3cmvmww1j")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mgutz/ansi")) - (home-page "https://github.com/mgutz/ansi") - (synopsis "ansi") - (description - "Package ansi is a small, fast library to create ANSI colored strings and codes.") - (license license:expat))) - -(define-public go-github-com-fsnotify-fsnotify-1.4.7 - (package - (name "go-github-com-fsnotify-fsnotify") - (version "1.4.7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/fsnotify/fsnotify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/fsnotify/fsnotify")) - (home-page "https://github.com/fsnotify/fsnotify") - (synopsis "File system notifications for Go") - (description - "Package fsnotify provides a platform-independent interface for file system -notifications.") - (license license:bsd-3))) - -(define-public go-github-com-hpcloud-tail-1.0.0 - (package - (name "go-github-com-hpcloud-tail") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hpcloud/tail") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1njpzc0pi1acg5zx9y6vj9xi6ksbsc5d387rd6904hy6rh2m6kn0")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hpcloud/tail")) - (home-page "https://github.com/hpcloud/tail") - (synopsis "Go package for tail-ing files") - (description - "This package provides a Go package striving to emulate the features of the BSD -@code{tail} program.") - (license license:expat))) - -(define-public go-github-com-onsi-ginkgo-1.6.0 - (package - (name "go-github-com-onsi-ginkgo") - (version "1.6.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/onsi/ginkgo") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0x0gc89vgq38xhgmi2h22bhr73cf2gmk42g89nz89k8dgg9hhr25")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/onsi/ginkgo")) - (home-page "https://github.com/onsi/ginkgo") - (synopsis "Ginkgo 2.0 Release Candidate is available!") - (description "Ginkgo is a BDD-style testing framework for Golang") - (license license:expat))) - -(define-public go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd - (package - (name "go-golang-org-x-net") - (version "0.0.0-20180906233101-161cd47e91fd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0254ld010iijygbzykib2vags1dc0wlmcmhgh4jl8iny159lhbcv")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20180909124046-d0be0721c37e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "081wyvfnlf842dqg03raxfz6lldlxpmyh1prix9lmrrm65arxb12")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-gopkg-in-fsnotify-v1-1.4.7 - (package - (name "go-gopkg-in-fsnotify-v1") - (version "1.4.7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/fsnotify.v1") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")))) - (build-system go-build-system) - (arguments - '(#:import-path - "gopkg.in/fsnotify.v1" - #:unpack-path - "gopkg.in/fsnotify.v1")) - (home-page "https://gopkg.in/fsnotify.v1") - (synopsis "File system notifications for Go") - (description - "Package fsnotify provides a platform-independent interface for file system -notifications.") - (license license:bsd-3))) - -(define-public go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7 - (package - (name "go-gopkg-in-tomb-v1") - (version "1.0.0-20141024135613-dd632973f1e7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/tomb.v1") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1lqmq1ag7s4b3gc3ddvr792c5xb5k6sfn0cchr3i2s7f1c231zjv")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/tomb.v1" #:unpack-path "gopkg.in/tomb.v1")) - (home-page "https://gopkg.in/tomb.v1") - (synopsis "Installation and usage") - (description - "The tomb package offers a conventional API for clean goroutine termination.") - (license license:bsd-3))) - -(define-public go-gopkg-in-yaml-v2-2.2.1 - (package - (name "go-gopkg-in-yaml-v2") - (version "2.2.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0dwjrs2lp2gdlscs7bsrmyc5yf6mm4fvgw71bzr9mv2qrd2q73s1")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v2") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language.") - (license license:asl2.0))) - -(define-public go-github-com-onsi-gomega-1.5.0 - (package - (name "go-github-com-onsi-gomega") - (version "1.5.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/onsi/gomega") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1n7i4hksdgv410m43v2sw14bl5vy59dkp6nlw5l76nibbh37syr9")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/onsi/gomega")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.1" ,go-gopkg-in-yaml-v2-2.2.1) - ("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" - ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) - ("go-gopkg-in-fsnotify-v1-1.4.7" ,go-gopkg-in-fsnotify-v1-1.4.7) - ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e" - ,go-golang-org-x-sys-0.0.0-20180909124046-d0be0721c37e) - ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" - ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) - ("go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd" - ,go-golang-org-x-net-0.0.0-20180906233101-161cd47e91fd) - ("go-github-com-onsi-ginkgo-1.6.0" ,go-github-com-onsi-ginkgo-1.6.0) - ("go-github-com-hpcloud-tail-1.0.0" ,go-github-com-hpcloud-tail-1.0.0) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0) - ("go-github-com-fsnotify-fsnotify-1.4.7" - ,go-github-com-fsnotify-fsnotify-1.4.7))) - (home-page "https://github.com/onsi/gomega") - (synopsis ": a BDD Testing Framework for Golang") - (description - "Gomega is the Ginkgo BDD-style testing framework's preferred matcher library.") - (license license:expat))) - -(define-public go-github-com-sergi-go-diff-1.0.0 - (package - (name "go-github-com-sergi-go-diff") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sergi/go-diff") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0swiazj8wphs2zmk1qgq75xza6m19snif94h2m6fi8dqkwqdl7c7")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/sergi/go-diff")) - (home-page "https://github.com/sergi/go-diff") - (synopsis "go-diff") - (description - "go-diff offers algorithms to perform operations required for synchronizing plain -text:") - (license license:expat))) - -(define-public go-golang-org-x-crypto-0.0.0-20190426145343-a29dc8fdc734 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20190426145343-a29dc8fdc734") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "07f0jj4haqs0ywc1akk1qjwn5msl2j0pry1rxjkkbfcq4r6ihc1p")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" - ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) - ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" - ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-github-com-aphistic-sweet-0.2.0 - (package - (name "go-github-com-aphistic-sweet") - (version "0.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/aphistic/sweet") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1bb4qagfxf6byqn2yx0vq24xfvisz3ah4w6bvqclc8cklvfngw43")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/aphistic/sweet")) - (propagated-inputs - `(("go-golang-org-x-crypto-0.0.0-20190426145343-a29dc8fdc734" - ,go-golang-org-x-crypto-0.0.0-20190426145343-a29dc8fdc734) - ("go-github-com-sergi-go-diff-1.0.0" - ,go-github-com-sergi-go-diff-1.0.0) - ("go-github-com-onsi-gomega-1.5.0" ,go-github-com-onsi-gomega-1.5.0) - ("go-github-com-mgutz-ansi-0.0.0-20170206155736-9520e82c474b" - ,go-github-com-mgutz-ansi-0.0.0-20170206155736-9520e82c474b) - ("go-github-com-mattn-go-colorable-0.1.1" - ,go-github-com-mattn-go-colorable-0.1.1))) - (home-page "https://github.com/aphistic/sweet") - (synopsis "sweet") - (description - "Sweet is a pluggable test runner capable of hooking into standard Go tests. It -attempts to provide access to the standard Go test tool as close as possible -while adding support for test suites and plugins that can hook into test results -to add additional functionality.") - (license license:expat))) - -(define-public go-github-com-jmespath-go-jmespath-0.0.0-20180206201540-c2b33e8439af - (package - (name "go-github-com-jmespath-go-jmespath") - (version "0.0.0-20180206201540-c2b33e8439af") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/jmespath/go-jmespath") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1r6w7ydx8ydryxk3sfhzsk8m6f1nsik9jg3i1zhi69v4kfl4d5cz")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/jmespath/go-jmespath")) - (home-page "https://github.com/jmespath/go-jmespath") - (synopsis "go-jmespath - A JMESPath implementation in Go") - (description - "go-jmespath is a GO implementation of JMESPath, which is a query language for -JSON. It will take a JSON document and transform it into another JSON document -through a JMESPath expression.") - (license license:asl2.0))) - -(define-public go-github-com-aws-aws-sdk-go-1.20.6 - (package - (name "go-github-com-aws-aws-sdk-go") - (version "1.20.6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/aws/aws-sdk-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "016vy5s9finyfgh08j7rvn2pnwymdgj2ydr59w57pysnri87mdwx")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/aws/aws-sdk-go")) - (propagated-inputs - `(("go-github-com-jmespath-go-jmespath-0.0.0-20180206201540-c2b33e8439af" - ,go-github-com-jmespath-go-jmespath-0.0.0-20180206201540-c2b33e8439af))) - (home-page "https://github.com/aws/aws-sdk-go") - (synopsis "AWS SDK for Go") - (description - "Package sdk is the official AWS SDK for the Go programming language.") - (license license:asl2.0))) - -(define-public go-github-com-aybabtme-rgbterm-0.0.0-20170906152045-cc83f3b3ce59 - (package - (name "go-github-com-aybabtme-rgbterm") - (version "0.0.0-20170906152045-cc83f3b3ce59") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/aybabtme/rgbterm") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0wvmxvjn64968ikvnxrflb1x8rlcwzpfl53fzbxff2axbx9lq50q")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/aybabtme/rgbterm")) - (home-page "https://github.com/aybabtme/rgbterm") - (synopsis "RGB terminal") - (description - "Package rgbterm colorizes bytes and strings using RGB colors, for a full range -of pretty terminal strings.") - (license license:expat))) - -(define-public go-github-com-fatih-color-1.7.0 - (package - (name "go-github-com-fatih-color") - (version "1.7.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/fatih/color") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0v8msvg38r8d1iiq2i5r4xyfx0invhc941kjrsg5gzwvagv55inv")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/fatih/color")) - (home-page "https://github.com/fatih/color") - (synopsis "color") - (description - "Package color is an ANSI color package to output colorized or SGR defined output -to the standard output. The API can be used in several way, pick one that suits -you.") - (license license:expat))) - -(define-public go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515 - (package - (name "go-github-com-kr-logfmt") - (version "0.0.0-20140226030751-b84e30acd515") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/logfmt") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "02ldzxgznrfdzvghfraslhgp19la1fczcbzh7wm2zdc6lmpd1qq9")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/logfmt")) - (home-page "https://github.com/kr/logfmt") - (synopsis #f) - (description "Package implements the decoding of logfmt key-value pairs.") - (license license:expat))) - -(define-public go-github-com-go-logfmt-logfmt-0.4.0 - (package - (name "go-github-com-go-logfmt-logfmt") - (version "0.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/go-logfmt/logfmt") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "06smxc112xmixz78nyvk3b2hmc7wasf2sl5vxj1xz62kqcq9lzm9")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/go-logfmt/logfmt")) - (propagated-inputs - `(("go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515" - ,go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515))) - (home-page "https://github.com/go-logfmt/logfmt") - (synopsis "logfmt") - (description - "Package logfmt implements utilities to marshal and unmarshal data in the logfmt -format. The logfmt format records key/value pairs in a way that balances -readability for humans and simplicity of computer parsing. It is most commonly -used as a more human friendly alternative to JSON for structured logging.") - (license license:expat))) - -(define-public go-github-com-golang-protobuf-1.3.1 - (package - (name "go-github-com-golang-protobuf") - (version "1.3.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "15am4s4646qy6iv0g3kkqq52rzykqjhm4bf08dk0fy2r58knpsyl")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code -github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-github-com-google-uuid-1.1.1 - (package - (name "go-github-com-google-uuid") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/uuid") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hfxcf9frkb57k6q0rdkrmnfs78ms21r1qfk9fhlqga2yh5xg8zb")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/uuid")) - (home-page "https://github.com/google/uuid") - (synopsis "uuid") - (description "Package uuid generates and inspects UUIDs.") - (license license:bsd-3))) - -(define-public go-github-com-jpillora-backoff-0.0.0-20180909062703-3050d21c67d7 - (package - (name "go-github-com-jpillora-backoff") - (version "0.0.0-20180909062703-3050d21c67d7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/jpillora/backoff") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1nxapdx9xg5gwiscfhq7m0w14hj4gaxb4avmgf1mx9zd3jnw9jxv")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/jpillora/backoff")) - (home-page "https://github.com/jpillora/backoff") - (synopsis "Backoff") - (description - "Package backoff provides an exponential-backoff implementation.") - (license license:expat))) - -(define-public go-github-com-kr-pretty-0.2.0 - (package - (name "go-github-com-kr-pretty") - (version "0.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/pretty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ywbfzz1h3a3qd8rpkiqwi1dm4w8ls9ijb4x1b7567grns9f0vnp")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/pretty")) - (propagated-inputs - `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) - (home-page "https://github.com/kr/pretty") - (synopsis #f) - (description - "Package pretty provides pretty-printing for Go values. This is useful during -debugging, to avoid wrapping long output lines in the terminal.") - (license license:expat))) - -(define-public go-github-com-mattn-go-colorable-0.1.2 - (package - (name "go-github-com-mattn-go-colorable") - (version "0.1.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mattn/go-colorable") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0512jm3wmzkkn7d99x9wflyqf48n5ri3npy1fqkq6l6adc5mni3n")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mattn/go-colorable")) - (propagated-inputs - `(("go-github-com-mattn-go-isatty-0.0.8" - ,go-github-com-mattn-go-isatty-0.0.8))) - (home-page "https://github.com/mattn/go-colorable") - (synopsis "go-colorable") - (description "Colorable writer for windows.") - (license license:expat))) - -(define-public go-github-com-pkg-errors-0.8.1 - (package - (name "go-github-com-pkg-errors") - (version "0.8.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pkg/errors") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0g5qcb4d4fd96midz0zdk8b9kz8xkzwfa8kr1cliqbg8sxsy5vd1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pkg/errors")) - (home-page "https://github.com/pkg/errors") - (synopsis "errors") - (description "Package errors provides simple error handling primitives.") - (license license:bsd-2))) - -(define-public go-github-com-rogpeppe-fastuuid-1.1.0 - (package - (name "go-github-com-rogpeppe-fastuuid") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/rogpeppe/fastuuid") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1jlif5pxyz3md02ij93kd2y2j1zz0ajc9k8azvn83vv6l3r5c1zg")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/rogpeppe/fastuuid")) - (home-page "https://github.com/rogpeppe/fastuuid") - (synopsis "fastuuid") - (description - "Package fastuuid provides fast UUID generation of 192 bit universally unique -identifiers.") - (license license:bsd-3))) - -(define-public go-github-com-smartystreets-go-aws-auth-0.0.0-20180515143844-0c1422d1fdb9 - (package - (name "go-github-com-smartystreets-go-aws-auth") - (version "0.0.0-20180515143844-0c1422d1fdb9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/smarty-archives/go-aws-auth") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0krfdpgn3gfii1z9fi8ydfw0wwfqyvp6w3rji7w92m528zkjl93d")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/smartystreets/go-aws-auth")) - (home-page "https://github.com/smartystreets/go-aws-auth") - (synopsis "go-aws-auth") - (description - "Package awsauth implements AWS request signing using Signed Signature Version 2, -Signed Signature Version 3, and Signed Signature Version 4. Supports S3 and -STS.") - (license license:expat))) - -(define-public go-github-com-smartystreets-assertions-1.0.0 - (package - (name "go-github-com-smartystreets-assertions") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/smartystreets/assertions") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1188hs39zvil41sdnxs83h1hp319lfyc5n2rvd1xnhz1dh5qjjh4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/smartystreets/assertions")) - (home-page "https://github.com/smartystreets/assertions") - (synopsis #f) - (description - "Package assertions contains the implementations for all assertions which are -referenced in goconvey's `convey` package -(github.com/smartystreets/goconvey/convey) and gunit -(github.com/smartystreets/gunit) for use with the So(...) method. They can also -be used in traditional Go test functions and even in applications.") - (license license:expat))) - -(define-public go-github-com-smartystreets-gunit-1.0.0 - (package - (name "go-github-com-smartystreets-gunit") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/smartystreets/gunit") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "11d09rl5qqpj36a311pjj8w5jkj83d5b8gdcsx8f1zn4j924sm5d")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/smartystreets/gunit")) - (propagated-inputs - `(("go-github-com-smartystreets-assertions-1.0.0" - ,go-github-com-smartystreets-assertions-1.0.0))) - (home-page "https://github.com/smartystreets/gunit") - (synopsis "gunit") - (description - "Package gunit provides \"testing\" package hooks and convenience functions for -writing tests in an xUnit style. See the README file and the examples folder -for examples.") - (license license:expat))) - -(define-public go-github-com-stretchr-testify-1.4.0 - (package - (name "go-github-com-stretchr-testify") - (version "1.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/testify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "187i5g88sxfy4vxpm7dw1gwv29pa2qaq475lxrdh5livh69wqfjb")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/testify")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) - ("go-github-com-stretchr-objx-0.1.0" - ,go-github-com-stretchr-objx-0.1.0) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.0" - ,go-github-com-davecgh-go-spew-1.1.0))) - (home-page "https://github.com/stretchr/testify") - (synopsis "Testify - Thou Shalt Write Tests") - (description - "** We are working on testify v2 and would love to hear what you'd like to see in -it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -Package testify is a set of packages that provide many tools for testifying that -your code will behave as you intend.") - (license license:expat))) - -(define-public go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0 - (package - (name "go-github-com-tj-assert") - (version "0.0.0-20171129193455-018094318fb0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/tj/assert") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "15ika7izp5hkd10dm30apwfvpm0d1yl2rnxs6896q0svz9zvi2z3")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/tj/assert")) - (home-page "https://github.com/tj/assert") - (synopsis "assert") - (description - "Package assert implements the same assertions as the `assert` package but stops -test execution when a test fails.") - (license license:expat))) - -(define-public go-github-com-tj-go-elastic-0.0.0-20171221160941-36157cbbebc2 - (package - (name "go-github-com-tj-go-elastic") - (version "0.0.0-20171221160941-36157cbbebc2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/tj/go-elastic") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1r94vc4hbfvqvjz74n4mvsw4dy3vbyzlivb90kyn8vn76a4wqk69")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/tj/go-elastic")) - (home-page "https://github.com/tj/go-elastic") - (synopsis "go-elastic") - (description - "Package elastic provides an Elasticsearch client with AWS sigv4 support.") - (license license:expat))) - -(define-public go-github-com-tj-go-kinesis-0.0.0-20171128231115-08b17f58cb1b - (package - (name "go-github-com-tj-go-kinesis") - (version "0.0.0-20171128231115-08b17f58cb1b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/tj/go-kinesis") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "108c6p5j6rhhc2cnc2v5368yfsw73y6lzlvz02vpvvjph8rhmld4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/tj/go-kinesis")) - (home-page "https://github.com/tj/go-kinesis") - (synopsis "go-kinesis") - (description - "Package kinesis implements a batch producer built on top of the official AWS -SDK.") - (license license:expat))) - -(define-public go-github-com-tj-go-spin-1.1.0 - (package - (name "go-github-com-tj-go-spin") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/tj/go-spin") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "11xr67991m5pwsy1dira3iwd0sr55vmn1cyjwmlqziw4bwpym64s")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/tj/go-spin")) - (home-page "https://github.com/tj/go-spin") - (synopsis #f) - (description #f) - (license #f))) - -(define-public go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190620200207-3b0461eec859") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0l00c8l0a8xnv6qdpwfzxxsr58jggacgzdrwiprrfx2xqm37b6d5")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20180917221912-90fa682c2a6e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-golang-org-x-text-0.3.2 - (package - (name "go-golang-org-x-text") - (version "0.3.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0flv9idw0jm5nm8lx25xqanbkqgfiym6619w575p7nrdh0riqwqh")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/text")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" - ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) - (home-page "https://golang.org/x/text") - (synopsis "Go Text") - (description - "text is a repository of text-related packages related to internationalization -(i18n) and localization (l10n), such as character encodings, text -transformations, and locale-specific text handling.") - (license license:bsd-3))) - -(define-public go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15 - (package - (name "go-gopkg-in-check-v1") - (version "1.0.0-20190902080502-41f04d3bba15") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/check.v1") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0vfk9czmlxmp6wndq8k17rhnjxal764mxfhrccza7nwlia760pjy")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) - (home-page "https://gopkg.in/check.v1") - (synopsis "Instructions") - (description - "Package check is a rich testing extension for Go's testing package.") - (license license:bsd-2))) - -(define-public go-github-com-apex-log-1.4.0 - (package - (name "go-github-com-apex-log") - (version "1.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/apex/log") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0711096f04dyjk2vgj5b50491fl36wciwbq80xwvns5wwkqdg2z5")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/apex/log")) - (propagated-inputs - `(("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" - ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) - ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) - ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" - ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) - ("go-github-com-tj-go-spin-1.1.0" ,go-github-com-tj-go-spin-1.1.0) - ("go-github-com-tj-go-kinesis-0.0.0-20171128231115-08b17f58cb1b" - ,go-github-com-tj-go-kinesis-0.0.0-20171128231115-08b17f58cb1b) - ("go-github-com-tj-go-elastic-0.0.0-20171221160941-36157cbbebc2" - ,go-github-com-tj-go-elastic-0.0.0-20171221160941-36157cbbebc2) - ("go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0" - ,go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0) - ("go-github-com-stretchr-testify-1.4.0" - ,go-github-com-stretchr-testify-1.4.0) - ("go-github-com-smartystreets-gunit-1.0.0" - ,go-github-com-smartystreets-gunit-1.0.0) - ("go-github-com-smartystreets-go-aws-auth-0.0.0-20180515143844-0c1422d1fdb9" - ,go-github-com-smartystreets-go-aws-auth-0.0.0-20180515143844-0c1422d1fdb9) - ("go-github-com-rogpeppe-fastuuid-1.1.0" - ,go-github-com-rogpeppe-fastuuid-1.1.0) - ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) - ("go-github-com-mattn-go-colorable-0.1.2" - ,go-github-com-mattn-go-colorable-0.1.2) - ("go-github-com-kr-pretty-0.2.0" ,go-github-com-kr-pretty-0.2.0) - ("go-github-com-jpillora-backoff-0.0.0-20180909062703-3050d21c67d7" - ,go-github-com-jpillora-backoff-0.0.0-20180909062703-3050d21c67d7) - ("go-github-com-google-uuid-1.1.1" ,go-github-com-google-uuid-1.1.1) - ("go-github-com-golang-protobuf-1.3.1" - ,go-github-com-golang-protobuf-1.3.1) - ("go-github-com-go-logfmt-logfmt-0.4.0" - ,go-github-com-go-logfmt-logfmt-0.4.0) - ("go-github-com-fatih-color-1.7.0" ,go-github-com-fatih-color-1.7.0) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1) - ("go-github-com-aybabtme-rgbterm-0.0.0-20170906152045-cc83f3b3ce59" - ,go-github-com-aybabtme-rgbterm-0.0.0-20170906152045-cc83f3b3ce59) - ("go-github-com-aws-aws-sdk-go-1.20.6" - ,go-github-com-aws-aws-sdk-go-1.20.6) - ("go-github-com-aphistic-sweet-0.2.0" - ,go-github-com-aphistic-sweet-0.2.0) - ("go-github-com-aphistic-golf-0.0.0-20180712155816-02c07f170c5a" - ,go-github-com-aphistic-golf-0.0.0-20180712155816-02c07f170c5a) - ("go-github-com-apex-logs-0.0.7" ,go-github-com-apex-logs-0.0.7))) - (home-page "https://github.com/apex/log") - (synopsis "Handlers") - (description - "Package log implements a simple structured logging API designed with few -assumptions. Designed for centralized logging solutions such as Kinesis which -require encoding and decoding before fanning-out to handlers.") - (license license:expat))) - -(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0 - (package - (name "go-github-com-cpuguy83-go-md2man-v2") - (version "2.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cpuguy83/go-md2man") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) - (propagated-inputs - `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" - ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) - ("go-github-com-russross-blackfriday-v2-2.0.1" - ,go-github-com-russross-blackfriday-v2-2.0.1) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0))) - (home-page "https://github.com/cpuguy83/go-md2man") - (synopsis "go-md2man") - (description "Converts markdown into roff (man pages).") - (license license:expat))) - -(define-public go-github-com-cyphar-filepath-securejoin-0.2.2 - (package - (name "go-github-com-cyphar-filepath-securejoin") - (version "0.2.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cyphar/filepath-securejoin") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0id32zjb92wm569m29nfrzz5mw9z1glr3klayr6j134pp4h1sgq4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/cyphar/filepath-securejoin")) - (home-page "https://github.com/cyphar/filepath-securejoin") - (synopsis #f) - (description - "Package securejoin is an implementation of the hopefully-soon-to-be-included -SecureJoin helper that is meant to be part of the \"path/filepath\" package. The -purpose of this project is to provide a PoC implementation to make the -SecureJoin proposal -(@url{https://github.com/golang/go/issues/20126,https://github.com/golang/go/issues/20126}) -more tangible.") - (license license:bsd-3))) - -(define-public go-github-com-docker-go-units-0.4.0 - (package - (name "go-github-com-docker-go-units") - (version "0.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/docker/go-units") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0k8gja8ql4pqg5rzmqvka42vjfs6rzablak87whcnqba6qxpimvz")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/docker/go-units")) - (home-page "https://github.com/docker/go-units") - (synopsis "Introduction") - (description - "Package units provides helper function to parse and print size and time units in -human-readable format.") - (license license:asl2.0))) - -(define-public go-google-golang-org-protobuf-1.23.0 - (package - (name "go-google-golang-org-protobuf") - (version "1.23.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "03yan0m1v0zmlr935p4n24fd376mznsg85zy8sywbgisls4s1bzy")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.0" - ,go-github-com-golang-protobuf-1.4.0))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is -a language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol -buffer developer guide} for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.4.2 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0m5z81im4nsyfgarjhppayk4hqnrwswr3nix9mj8pff8x9jvcjqw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.23.0" - ,go-google-golang-org-protobuf-1.23.0) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code -github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-github-com-google-go-cmp-0.5.0 - (package - (name "go-github-com-google-go-cmp") - (version "0.5.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "04pzp583p6b32y34c6jygfxarff9qjs39rarvfh6467z24sdd9k4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically -equal.") - (license license:bsd-3))) - -(define-public go-github-com-klauspost-compress-1.11.3 - (package - (name "go-github-com-klauspost-compress") - (version "1.11.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/klauspost/compress") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "04wpilw6072fh2wd492ma1nw4br7bvz466mj0vi2m1g4w6d0z88z")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/klauspost/compress")) - (home-page "https://github.com/klauspost/compress") - (synopsis "compress") - (description "This package provides various compression algorithms.") - (license license:expat))) - -(define-public go-github-com-klauspost-pgzip-1.2.4 - (package - (name "go-github-com-klauspost-pgzip") - (version "1.2.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/klauspost/pgzip") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0mnhfdn0isbkra455jynqjbmrwymx09shlbzbyvgfycih3nbrif0")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/klauspost/pgzip")) - (home-page "https://github.com/klauspost/pgzip") - (synopsis "pgzip") - (description - "Package pgzip implements reading and writing of gzip format compressed files, as -specified in @url{https://rfc-editor.org/rfc/rfc1952.html,RFC 1952}.") - (license license:expat))) - -(define-public go-github-com-creack-pty-1.1.9 - (package - (name "go-github-com-creack-pty") - (version "1.1.9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/creack/pty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1v52599qq76dwq742mffakzj6mxqqccv2szn3hjicjld56nmd2d3")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/creack/pty")) - (home-page "https://github.com/creack/pty") - (synopsis "pty") - (description - "Package pty provides functions for working with Unix terminals.") - (license license:expat))) - -(define-public go-github-com-kr-text-0.2.0 - (package - (name "go-github-com-kr-text") - (version "0.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hf58ypz6rxsw6nx3i856whir9lvy4sdx946wbw1nfaf2rdmr9vx")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/text")) - (propagated-inputs - `(("go-github-com-creack-pty-1.1.9" ,go-github-com-creack-pty-1.1.9))) - (home-page "https://github.com/kr/text") - (synopsis #f) - (description - "Package text provides rudimentary functions for manipulating text in paragraphs.") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20200116001909-b77594299b42 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200116001909-b77594299b42") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0isfm6kmh4fjhh6m7mrb3zvdjka2y31c5habr5kydl7rg0lwkabv")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-mattn-go-isatty-0.0.12 - (package - (name "go-github-com-mattn-go-isatty") - (version "0.0.12") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mattn/go-isatty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1dfsh27d52wmz0nmmzm2382pfrs2fcijvh6cgir7jbb4pnigr5w4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mattn/go-isatty")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20200116001909-b77594299b42" - ,go-golang-org-x-sys-0.0.0-20200116001909-b77594299b42))) - (home-page "https://github.com/mattn/go-isatty") - (synopsis "go-isatty") - (description "Package isatty implements interface to isatty") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20200223170610-d5e6a3e2c0ae - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200223170610-d5e6a3e2c0ae") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0lz7vm5dz2p14fzq2j4m1l9p392cl0fa73aaf45gln07ylfajk4n")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-mattn-go-colorable-0.1.6 - (package - (name "go-github-com-mattn-go-colorable") - (version "0.1.6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mattn/go-colorable") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0zv9ix7g0qf71jdhv7gbab9hjfkgbxl22kwhpz9ck1y6m4g1zxaw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mattn/go-colorable")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20200223170610-d5e6a3e2c0ae" - ,go-golang-org-x-sys-0.0.0-20200223170610-d5e6a3e2c0ae) - ("go-github-com-mattn-go-isatty-0.0.12" - ,go-github-com-mattn-go-isatty-0.0.12))) - (home-page "https://github.com/mattn/go-colorable") - (synopsis "go-colorable") - (description "Colorable writer for windows.") - (license license:expat))) - -(define-public go-github-com-mohae-deepcopy-0.0.0-20170929034955-c48cc78d4826 - (package - (name "go-github-com-mohae-deepcopy") - (version "0.0.0-20170929034955-c48cc78d4826") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mohae/deepcopy") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0jdhsz0hsbn0k45rmvm39knbvs024j24ay2q65k5ih8ql8m2c0sd")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mohae/deepcopy")) - (home-page "https://github.com/mohae/deepcopy") - (synopsis "deepCopy") - (description - "deepcopy makes deep copies of things. A standard copy will copy the pointers: -deep copy copies the values pointed to. Unexported field values are not copied.") - (license license:expat))) - -(define-public go-github-com-kr-pty-1.1.1 - (package - (name "go-github-com-kr-pty") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/pty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0383f0mb9kqjvncqrfpidsf8y6ns5zlrc91c6a74xpyxjwvzl2y6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/pty")) - (home-page "https://github.com/kr/pty") - (synopsis "pty") - (description - "Package pty is a wrapper for github.com/creack/pty, which provides functions for -working with Unix terminals.") - (license license:expat))) - -(define-public go-github-com-kr-text-0.1.0 - (package - (name "go-github-com-kr-text") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1gm5bsl01apvc84bw06hasawyqm4q84vx1pm32wr9jnd7a8vjgj1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/text")) - (propagated-inputs - `(("go-github-com-kr-pty-1.1.1" ,go-github-com-kr-pty-1.1.1))) - (home-page "https://github.com/kr/text") - (synopsis #f) - (description - "Package text provides rudimentary functions for manipulating text in paragraphs.") - (license license:expat))) - -(define-public go-github-com-niemeyer-pretty-0.0.0-20200227124842-a10e7caefd8e - (package - (name "go-github-com-niemeyer-pretty") - (version "0.0.0-20200227124842-a10e7caefd8e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/niemeyer/pretty") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1jmazh4xzaa3v6g46hz60q2z7nmqs9l9cxdzmmscn3kbcs2znq4v")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/niemeyer/pretty")) - (propagated-inputs - `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) - (home-page "https://github.com/niemeyer/pretty") - (synopsis #f) - (description - "Package pretty provides pretty-printing for Go values. This is useful during -debugging, to avoid wrapping long output lines in the terminal.") - (license license:expat))) - -(define-public go-github-com-opencontainers-go-digest-1.0.0 - (package - (name "go-github-com-opencontainers-go-digest") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/go-digest") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0i5acjajvr6hi9zb7gxwifd8w28y884cv7cx36adj8lngj647xbi")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/go-digest")) - (home-page "https://github.com/opencontainers/go-digest") - (synopsis "go-digest") - (description - "Package digest provides a generalized type to opaquely represent message digests -and their operations within the registry. The Digest type is designed to serve -as a flexible identifier in a content-addressable system. More importantly, it -provides tools and wrappers to work with hash.Hash-based digests with little -effort.") - (license (list license:asl2.0 license:cc-by-sa4.0)))) - -(define-public go-github-com-opencontainers-image-spec-1.0.1 - (package - (name "go-github-com-opencontainers-image-spec") - (version "1.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/image-spec") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "03dvbj3dln8c55v9gp79mgmz2yi2ws3r08iyz2fk41y3i22iaw1q")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/image-spec")) - (home-page "https://github.com/opencontainers/image-spec") - (synopsis "OCI Image Format Specification") - (description - "The OCI Image Format project creates and maintains the software shipping -container image format spec (OCI Image Format).") - (license license:asl2.0))) - -(define-public go-github-com-opencontainers-runc-1.0.0-rc90 - (package - (name "go-github-com-opencontainers-runc") - (version "1.0.0-rc90") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/runc") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0pi3rvj585997m4z9ljkxz2z9yxf9p2jr0pmqbqrc7bc95f5hagk")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/runc")) - (home-page "https://github.com/opencontainers/runc") - (synopsis "runc") - (description - "@code{runc} is a CLI tool for spawning and running containers on Linux according -to the OCI specification.") - (license license:asl2.0))) - -(define-public go-github-com-opencontainers-runtime-spec-1.0.2 - (package - (name "go-github-com-opencontainers-runtime-spec") - (version "1.0.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/runtime-spec") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19w981vcmd5lp2hy0630x6ayb8zz17n2vxqm2py5mg945xflcizg")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) - (home-page "https://github.com/opencontainers/runtime-spec") - (synopsis "Open Container Initiative Runtime Specification") - (description - "The @url{https://www.opencontainers.org,Open Container Initiative} develops -specifications for standards on Operating System process and application -containers.") - (license license:asl2.0))) - -(define-public go-github-com-pkg-errors-0.9.1 - (package - (name "go-github-com-pkg-errors") - (version "0.9.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pkg/errors") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1761pybhc2kqr6v5fm8faj08x9bql8427yqg6vnfv6nhrasx1mwq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pkg/errors")) - (home-page "https://github.com/pkg/errors") - (synopsis "errors") - (description "Package errors provides simple error handling primitives.") - (license license:bsd-2))) - -(define-public go-github-com-rootless-containers-proto-0.1.0 - (package - (name "go-github-com-rootless-containers-proto") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/rootless-containers/proto") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1yik3b2fxpdkhplni8saabpvf43wnnz4wh6fapak29mkj3lx3mfh")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/rootless-containers/proto")) - (home-page "https://github.com/rootless-containers/proto") - (synopsis #f) - (description - "This project contains the -@url{https://developers.google.com/protocol-buffers/,protobuf} definition of the -@code{user.rootlesscontainers} extended attribute. The main purpose of this -attribute is to allow for a interoperable and standardised way of emulating -persistent syscalls in a @url{https://rootlesscontaine.rs/,rootless container} -(syscalls such as @code{chown(2)} which would ordinarily fail).") - (license license:asl2.0))) - -(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.3 - (package - (name "go-github-com-konsorten-go-windows-terminal-sequences") - (version "1.0.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/konsorten/go-windows-terminal-sequences") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1yrsd4s8vhjnxhwbigirymz89dn6qfjnhn28i33vvvdgf96j6ypl")))) - (build-system go-build-system) - (arguments - '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) - (home-page "https://github.com/konsorten/go-windows-terminal-sequences") - (synopsis "Windows Terminal Sequences") - (description - "This library allow for enabling Windows terminal color support for Go.") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190422165155-953cdadca894") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0gkha4whk8xkcv3isigbs250akag99isxnd3v9xmy0kl3g88hxy1")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-sirupsen-logrus-1.6.0 - (package - (name "go-github-com-sirupsen-logrus") - (version "1.6.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sirupsen/logrus") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1zf9is1yxxnna0d1pyag2m9ziy3l27zb2j92p9msm1gx5jjrvzzj")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/sirupsen/logrus")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894" - ,go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894) - ("go-github-com-stretchr-testify-1.2.2" - ,go-github-com-stretchr-testify-1.2.2) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.3" - ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.3) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/sirupsen/logrus") - (synopsis "Logrus") - (description - "Package logrus is a structured logger for Go, completely API compatible with the -standard library logger.") - (license license:expat))) - -(define-public go-github-com-davecgh-go-spew-1.1.0 - (package - (name "go-github-com-davecgh-go-spew") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/davecgh/go-spew") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/davecgh/go-spew")) - (home-page "https://github.com/davecgh/go-spew") - (synopsis "go-spew") - (description - "Go-spew implements a deep pretty printer for Go data structures to aid in -debugging. A comprehensive suite of tests with 100% test coverage is provided -to ensure proper functionality. See @code{test_coverage.txt} for the gocov -coverage report. Go-spew is licensed under the liberal ISC license, so it may -be used in open source or commercial projects.") - (license license:isc))) - -(define-public go-github-com-stretchr-objx-0.1.0 - (package - (name "go-github-com-stretchr-objx") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/objx") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/objx")) - (home-page "https://github.com/stretchr/objx") - (synopsis "Objx") - (description - "Objx - Go package for dealing with maps, slices, JSON and other data.") - (license license:expat))) - -(define-public go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c - (package - (name "go-gopkg-in-yaml-v3") - (version "3.0.0-20200313102051-9f266ea9e77c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v3") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1bbai3lzb50m0x2vwsdbagrbhvfylj9k1m32hgbqwldqx4p9ay35")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v3") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language.") - (license license:expat))) - -(define-public go-github-com-stretchr-testify-1.6.1 - (package - (name "go-github-com-stretchr-testify") - (version "1.6.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/testify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1yhiqqzjvi63pf01rgzx68gqkkvjx03fvl5wk30br5l6s81s090l")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/testify")) - (propagated-inputs - `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" - ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) - ("go-github-com-stretchr-objx-0.1.0" - ,go-github-com-stretchr-objx-0.1.0) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.0" - ,go-github-com-davecgh-go-spew-1.1.0))) - (home-page "https://github.com/stretchr/testify") - (synopsis "Testify - Thou Shalt Write Tests") - (description - "** We are working on testify v2 and would love to hear what you'd like to see in -it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -Package testify is a set of packages that provide many tools for testifying that -your code will behave as you intend.") - (license license:expat))) - -(define-public go-gopkg-in-yaml-v3-3.0.0-20200605160147-a5ece683394c - (package - (name "go-gopkg-in-yaml-v3") - (version "3.0.0-20200605160147-a5ece683394c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v3") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "03cm7c3p5fh0aa8vnxv5010dgqqr268ivb480ix1salxx3396w68")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v3") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language.") - (license license:expat))) - -(define-public go-github-com-tj-assert-0.0.3 - (package - (name "go-github-com-tj-assert") - (version "0.0.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/tj/assert") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1j5swk3fjq1h5fpqkipddz2ccnbidr7qrpm5dpdaflg9q5jnc673")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/tj/assert")) - (propagated-inputs - `(("go-gopkg-in-yaml-v3-3.0.0-20200605160147-a5ece683394c" - ,go-gopkg-in-yaml-v3-3.0.0-20200605160147-a5ece683394c) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/tj/assert") - (synopsis "assert") - (description - "Package assert implements the same assertions as the `assert` package but stops -test execution when a test fails.") - (license license:expat))) - -(define-public go-github-com-russross-blackfriday-v2-2.0.1 - (package - (name "go-github-com-russross-blackfriday-v2") - (version "2.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/russross/blackfriday") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0nlz7isdd4rgnwzs68499hlwicxz34j2k2a0b8jy0y7ycd2bcr5j")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/russross/blackfriday/v2")) - (home-page "https://github.com/russross/blackfriday") - (synopsis "Blackfriday") - (description "Package blackfriday is a markdown processor.") - (license license:bsd-2))) - -(define-public go-github-com-shurcool-sanitized-anchor-name-1.0.0 - (package - (name "go-github-com-shurcool-sanitized-anchor-name") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/shurcooL/sanitized_anchor_name") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1gv9p2nr46z80dnfjsklc6zxbgk96349sdsxjz05f3z6wb6m5l8f")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/shurcooL/sanitized_anchor_name")) - (home-page "https://github.com/shurcooL/sanitized_anchor_name") - (synopsis "sanitized_anchor_name") - (description - "Package sanitized_anchor_name provides a func to create sanitized anchor names.") - (license license:expat))) - -(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d - (package - (name "go-github-com-cpuguy83-go-md2man-v2") - (version "2.0.0-20190314233015-f79a8a8ca69d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cpuguy83/go-md2man") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) - (propagated-inputs - `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" - ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) - ("go-github-com-russross-blackfriday-v2-2.0.1" - ,go-github-com-russross-blackfriday-v2-2.0.1) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0))) - (home-page "https://github.com/cpuguy83/go-md2man") - (synopsis "go-md2man") - (description "Converts markdown into roff (man pages).") - (license license:expat))) - -(define-public go-gopkg-in-yaml-v2-2.2.2 - (package - (name "go-gopkg-in-yaml-v2") - (version "2.2.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "01wj12jzsdqlnidpyjssmj0r4yavlqy7dwrg7adqd8dicjc4ncsa")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v2") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language.") - (license license:asl2.0))) - -(define-public go-github-com-urfave-cli-1.22.4 - (package - (name "go-github-com-urfave-cli") - (version "1.22.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/urfave/cli") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1s7frsmiih4wh8vpx9z3ck4667c6vpjrmba7b9ymnv1p9khyg8wc")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/urfave/cli")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) - ("go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d" - ,go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d) - ("go-github-com-burntsushi-toml-0.3.1" - ,go-github-com-burntsushi-toml-0.3.1))) - (home-page "https://github.com/urfave/cli") - (synopsis "cli") - (description - "Package cli provides a minimal framework for creating and organizing command -line Go applications. cli is designed to be easy to understand and write, the -most simple cli application can be written as follows:") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190222072716-a9d3bda3a223") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1w45zc13xrjzl19s1sx74r5mg3lf2z2nm13wygcdq5r5pyjlhdz9")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-mattn-go-isatty-0.0.8 - (package - (name "go-github-com-mattn-go-isatty") - (version "0.0.8") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mattn/go-isatty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0rqfh1rj6f5wm8p2ky7inm8g10152p7w6n2cli17kf9gad797i8h")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mattn/go-isatty")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223" - ,go-golang-org-x-sys-0.0.0-20190222072716-a9d3bda3a223))) - (home-page "https://github.com/mattn/go-isatty") - (synopsis "go-isatty") - (description "Package isatty implements interface to isatty") - (license license:expat))) - -(define-public go-github-com-mattn-go-colorable-0.1.4 - (package - (name "go-github-com-mattn-go-colorable") - (version "0.1.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mattn/go-colorable") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1yxcz08kminqr1221zxpibnbzfcgs3fafin0z9zqb3gqvf74jywz")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mattn/go-colorable")) - (propagated-inputs - `(("go-github-com-mattn-go-isatty-0.0.8" - ,go-github-com-mattn-go-isatty-0.0.8))) - (home-page "https://github.com/mattn/go-colorable") - (synopsis "go-colorable") - (description "Colorable writer for windows.") - (license license:expat))) - -(define-public go-github-com-mattn-go-isatty-0.0.11 - (package - (name "go-github-com-mattn-go-isatty") - (version "0.0.11") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mattn/go-isatty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0h671sv7hfprja495kavazkalkx7xzaqksjh13brcnwq67ijrali")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mattn/go-isatty")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037" - ,go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037))) - (home-page "https://github.com/mattn/go-isatty") - (synopsis "go-isatty") - (description "Package isatty implements interface to isatty") - (license license:expat))) - -(define-public go-github-com-fatih-color-1.9.0 - (package - (name "go-github-com-fatih-color") - (version "1.9.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/fatih/color") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "086z8ssmr1fn9ba4mqnw7pnccfpys6l5yfhvycv1gdrsk7n27mvs")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/fatih/color")) - (propagated-inputs - `(("go-github-com-mattn-go-isatty-0.0.11" - ,go-github-com-mattn-go-isatty-0.0.11) - ("go-github-com-mattn-go-colorable-0.1.4" - ,go-github-com-mattn-go-colorable-0.1.4))) - (home-page "https://github.com/fatih/color") - (synopsis "color") - (description - "Package color is an ANSI color package to output colorized or SGR defined output -to the standard output. The API can be used in several way, pick one that suits -you.") - (license license:expat))) - -(define-public go-github-com-davecgh-go-spew-1.1.1 - (package - (name "go-github-com-davecgh-go-spew") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/davecgh/go-spew") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/davecgh/go-spew")) - (home-page "https://github.com/davecgh/go-spew") - (synopsis "go-spew") - (description - "Go-spew implements a deep pretty printer for Go data structures to aid in -debugging. A comprehensive suite of tests with 100% test coverage is provided -to ensure proper functionality. See @code{test_coverage.txt} for the gocov -coverage report. Go-spew is licensed under the liberal ISC license, so it may -be used in open source or commercial projects.") - (license license:isc))) - -(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.1 - (package - (name "go-github-com-konsorten-go-windows-terminal-sequences") - (version "1.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/konsorten/go-windows-terminal-sequences") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1lchgf27n276vma6iyxa0v1xds68n2g8lih5lavqnx5x6q5pw2ip")))) - (build-system go-build-system) - (arguments - '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) - (home-page "https://github.com/konsorten/go-windows-terminal-sequences") - (synopsis "Windows Terminal Sequences") - (description - "This library allow for enabling Windows terminal color support for Go.") - (license license:expat))) - -(define-public go-github-com-pmezard-go-difflib-1.0.0 - (package - (name "go-github-com-pmezard-go-difflib") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pmezard/go-difflib") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pmezard/go-difflib")) - (home-page "https://github.com/pmezard/go-difflib") - (synopsis "go-difflib") - (description - "Go-difflib is a partial port of python 3 difflib package. Its main goal was to -make unified and context diff available in pure Go, mostly for testing purposes.") - (license license:bsd-3))) - -(define-public go-github-com-stretchr-objx-0.1.1 - (package - (name "go-github-com-stretchr-objx") - (version "0.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/objx") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0iph0qmpyqg4kwv8jsx6a56a7hhqq8swrazv40ycxk9rzr0s8yls")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/objx")) - (home-page "https://github.com/stretchr/objx") - (synopsis "Objx") - (description - "Objx - Go package for dealing with maps, slices, JSON and other data.") - (license license:expat))) - -(define-public go-github-com-stretchr-testify-1.2.2 - (package - (name "go-github-com-stretchr-testify") - (version "1.2.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/testify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0dlszlshlxbmmfxj5hlwgv3r22x0y1af45gn1vd198nvvs3pnvfs")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/testify")) - (home-page "https://github.com/stretchr/testify") - (synopsis "Testify - Thou Shalt Write Tests") - (description - "** We are working on testify v2 and would love to hear what you'd like to see in -it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -Package testify is a set of packages that provide many tools for testifying that -your code will behave as you intend.") - (license license:expat))) - -(define-public go-golang-org-x-crypto-0.0.0-20180904163835-0709b304e793 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20180904163835-0709b304e793") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0i05s09y5pavmfh71fgih7syxg58x7a4krgd8am6d3mnahnmab5c")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20180905080454-ebe1bf3edb33") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0rkspxyjxdmc9f4n09hgkwj8jjd8z5p8mc9z8vwqwqcwrqv4sg7c")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-sirupsen-logrus-1.3.0 - (package - (name "go-github-com-sirupsen-logrus") - (version "1.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sirupsen/logrus") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ib7k8cwxn53dyxd3af1g81z018n77n6q64pm4miznirf7c2c9gk")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/sirupsen/logrus")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33" - ,go-golang-org-x-sys-0.0.0-20180905080454-ebe1bf3edb33) - ("go-golang-org-x-crypto-0.0.0-20180904163835-0709b304e793" - ,go-golang-org-x-crypto-0.0.0-20180904163835-0709b304e793) - ("go-github-com-stretchr-testify-1.2.2" - ,go-github-com-stretchr-testify-1.2.2) - ("go-github-com-stretchr-objx-0.1.1" - ,go-github-com-stretchr-objx-0.1.1) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.1" - ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.1) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/sirupsen/logrus") - (synopsis "Logrus") - (description - "Package logrus is a structured logger for Go, completely API compatible with the -standard library logger.") - (license license:expat))) - -(define-public go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20191011191535-87dc89f01550") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0z4i1m2yn3f31ci7wvcm2rxkx2yiv7a78mfzklncmsz2k97rlh2g")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" - ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) - ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" - ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20191026070338-33540a1f6037") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0fjcv0vzvi6za0b4xmnk3932pr9f9gczzf03y0kgq3ry9rqg169y")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-vbatts-go-mtree-0.5.0 - (package - (name "go-github-com-vbatts-go-mtree") - (version "0.5.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/vbatts/go-mtree") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0p42aliw6ngp7zgg5y9mi18z1ka9n0vblbrp5flp93i7qfmc5y0k")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/vbatts/go-mtree")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037" - ,go-golang-org-x-sys-0.0.0-20191026070338-33540a1f6037) - ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" - ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550) - ("go-github-com-sirupsen-logrus-1.3.0" - ,go-github-com-sirupsen-logrus-1.3.0) - ("go-github-com-fatih-color-1.9.0" ,go-github-com-fatih-color-1.9.0) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/vbatts/go-mtree") - (synopsis "go-mtree") - (description - "@code{mtree} is a filesystem hierarchy validation tooling and format. This is a -library and simple cli tool for -@url{https://www.freebsd.org/cgi/man.cgi?mtree%288%29=,mtree(8)} support.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190404232315-eb5bcb51f2a3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "17k4g8krxbl84gzcs275b7gsh66dzm15fdxivjnx9xz8q84l4kby")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20190412213103-97732733099d - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190412213103-97732733099d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "118hkp01i4z1f5h6hcjm0ff2ngqhrzj1f7731n0kw8dr6hvbx0sw")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-crypto-0.0.0-20200604202706-70a84ac30bf9 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20200604202706-70a84ac30bf9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0zr8np92g3qx7cdgaz4b2z5wnlym9lqyhrvs3xvv1fbsapd2z6i3")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" - ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) - ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" - ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20200622214017-ed371f2e16b4 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200622214017-ed371f2e16b4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "107wfy2fj6z5zps1v72j8drfrfvss1158drb0yqhz5awlbvgrpj7")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-1.22.0 - (package - (name "go-google-golang-org-protobuf") - (version "1.22.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0n7lc4m7kfvj01glc0gnjy0zsnsic7cxnbvlajy0h14cxbab87pj")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.0" - ,go-github-com-golang-protobuf-1.4.0))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is -a language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol -buffer developer guide} for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.4.1 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0w7ks4vffnnkp0miwgc3chrsnmya45lzvpahb2wmw0jwhdp5kdx7")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.22.0" - ,go-google-golang-org-protobuf-1.22.0) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code -github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-github-com-census-instrumentation-opencensus-proto-0.2.1 - (package - (name "go-github-com-census-instrumentation-opencensus-proto") - (version "0.2.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/census-instrumentation/opencensus-proto") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19fcx3sc99i5dsklny6r073z5j20vlwn2xqm6di1q3b1xwchzqfj")))) - (build-system go-build-system) - (arguments - '(#:import-path "github.com/census-instrumentation/opencensus-proto")) - (home-page "https://github.com/census-instrumentation/opencensus-proto") - (synopsis - "OpenCensus Proto - Language Independent Interface Types For OpenCensus") - (description - "Census provides a framework to define and collect stats against metrics and to -break those stats down across user-defined dimensions.") - (license license:asl2.0))) - -(define-public go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4 - (package - (name "go-github-com-prometheus-client-model") - (version "0.0.0-20190812154241-14fe0d1b01d4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/prometheus/client_model") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0zdmk6rbbx39cvfz0r59v2jg5sg9yd02b4pds5n5llgvivi99550")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/prometheus/client_model")) - (propagated-inputs - `(("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" - ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0))) - (home-page "https://github.com/prometheus/client_model") - (synopsis "Deprecation note") - (description - "This repository used to contain the code that defined both the data model and -the exposition format of Prometheus metrics.") - (license license:asl2.0))) - -(define-public go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20190311212946-11955173bddd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hlkai67w167wiyivkzd1fgqrnyxkb94l2c6kr51jwcscizfyfn3")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3 - (package - (name "go-golang-org-x-lint") - (version "0.0.0-20190313153728-d0100b6bd8b3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/lint") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0b0amr9x4ji66iv9ayfx7zrfx52k1m5g66qfcxkgj80qrb1y2yn7")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/lint")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd" - ,go-golang-org-x-tools-0.0.0-20190311212946-11955173bddd))) - (home-page "https://golang.org/x/lint") - (synopsis "Installation") - (description "Package lint contains a linter for Go source code.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20190423024810-112230192c58 - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20190423024810-112230192c58") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "05i2k43j2d0llq768hg5pf3hb2yhfzp9la1w5wp0rsnnzblr0lfn")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the ones -provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135 - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20190524140312-2c0ae7006135") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1lsi2ssxajclj3bciz2a41v1vjv768ja3v6wnbyhxy8xphwkp4fk")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" - ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-google-golang-org-grpc-1.23.0 - (package - (name "go-google-golang-org-grpc") - (version "1.23.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1cn33r2gclmq2v1ndpf1n5bmhf2qs8mms7ii5cnl6f9ch4r2c4k3")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" - ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) - ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" - ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) - ("go-google-golang-org-appengine-1.1.0" - ,go-google-golang-org-appengine-1.1.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-google-go-cmp-0.2.0" - ,go-github-com-google-go-cmp-0.2.0) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0) - ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-client9-misspell-0.3.4" - ,go-github-com-client9-misspell-0.3.4) - ("go-github-com-burntsushi-toml-0.3.1" - ,go-github-com-burntsushi-toml-0.3.1) - ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC.") - (license license:asl2.0))) - -(define-public go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473 - (package - (name "go-github-com-envoyproxy-go-control-plane") - (version "0.9.1-0.20191026205805-5f8ba28d4473") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/envoyproxy/go-control-plane") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1f1s764rd41vd9vgk3r14h1m6fz6pdvxj6fd83q58gxifbc4q5w4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/envoyproxy/go-control-plane")) - (propagated-inputs - `(("go-google-golang-org-grpc-1.23.0" ,go-google-golang-org-grpc-1.23.0) - ("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" - ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) - ("go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4" - ,go-github-com-prometheus-client-model-0.0.0-20190812154241-14fe0d1b01d4) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2) - ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" - ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) - ("go-github-com-census-instrumentation-opencensus-proto-0.2.1" - ,go-github-com-census-instrumentation-opencensus-proto-0.2.1))) - (home-page "https://github.com/envoyproxy/go-control-plane") - (synopsis "control-plane") - (description - "This repository contains a Go-based implementation of an API server that -implements the discovery service APIs defined in -@url{https://github.com/envoyproxy/data-plane-api,data-plane-api}.") - (license license:asl2.0))) - -(define-public go-github-com-envoyproxy-protoc-gen-validate-0.1.0 - (package - (name "go-github-com-envoyproxy-protoc-gen-validate") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/envoyproxy/protoc-gen-validate") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0kxd3wwh3xwqk0r684hsy281xq4y71cd11d4q2hspcjbnlbwh7cy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/envoyproxy/protoc-gen-validate")) - (home-page "https://github.com/envoyproxy/protoc-gen-validate") - (synopsis "protoc-gen-validate (PGV)") - (description - "PGV is a protoc plugin to generate polyglot message validators. While protocol -buffers effectively guarantee the types of structured data, they cannot enforce -semantic rules for values. This plugin adds support to protoc-generated code to -validate such constraints.") - (license license:asl2.0))) - -(define-public go-github-com-google-go-cmp-0.2.0 - (package - (name "go-github-com-google-go-cmp") - (version "0.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fbv0x27k9sn8svafc0hjwsnckk864lv4yi7bvzrxvmd3d5hskds")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically -equal.") - (license license:bsd-3))) - -(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20190308221718-c2843e01d9a2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20190311183353-d8887717615a - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190311183353-d8887717615a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1wfm6ngxjyj7v5a2dqib6lw8bb2rdnf1kl48diykxjrsddn0s163")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190215142949-d0b11bdaac8a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.3.2 - (package - (name "go-github-com-golang-protobuf") - (version "1.3.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1k1wb4zr0qbwgpvz9q5ws9zhlal8hq7dmq62pwxxriksayl6hzym")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code -github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4 - (package - (name "go-golang-org-x-exp") - (version "0.0.0-20190121172915-509febef88a4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/exp") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "02isrh39z8znrp5znplzy0dip2gnrl3jm1355raliyvhnhg04j6q")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/exp")) - (home-page "https://golang.org/x/exp") - (synopsis "exp") - (description - "This subrepository holds experimental and deprecated (in the @code{old} -directory) packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961 - (package - (name "go-golang-org-x-lint") - (version "0.0.0-20190227174305-5b3e6a55c961") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/lint") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "04zp5vbds9nffmjg36wjpi5vg9zmf890yf78xxasai3ni637ivfw")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/lint")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" - ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c))) - (home-page "https://golang.org/x/lint") - (synopsis "Installation") - (description "Package lint contains a linter for Go source code.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190213061140-3a22650c66bd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12q6fgdkc0742vcms67nzadgdwvi3rnb1gx3vwkljhrvlnwvz7wc")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20181108010431-42b317875d0f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0mrjhk7al7yyh76x9flvxy4jm5jyqh2fxbxagpaazxn1xdgkaif3")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the ones -provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20180724234803-3673e40ba225") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0vx7mz18p480p7fh0w5jv6mfdbsswrlac1sz4i705q7q7ygz59lm")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-google-golang-org-appengine-1.4.0 - (package - (name "go-google-golang-org-appengine") - (version "1.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/appengine") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "06zl7w4sxgdq2pl94wy9ncii6h0z3szl4xpqds0sv3b3wbdlhbnn")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/appengine")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225" - ,go-golang-org-x-net-0.0.0-20180724234803-3673e40ba225) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0))) - (home-page "https://google.golang.org/appengine") - (synopsis "Go App Engine packages") - (description - "Package appengine provides basic functionality for Google App Engine.") - (license license:asl2.0))) - -(define-public go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20190226205152-f727befe758c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0rpcqw6z13qd33rbasg32zb0gdhgh5lzjla63r6g651zf6hpsak0")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-google-golang-org-appengine-1.4.0" - ,go-google-golang-org-appengine-1.4.0) - ("go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f" - ,go-golang-org-x-sync-0.0.0-20181108010431-42b317875d0f) - ("go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd" - ,go-golang-org-x-net-0.0.0-20190213061140-3a22650c66bd))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-cloud-google-com-go-0.26.0 - (package - (name "go-cloud-google-com-go") - (version "0.26.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/google-cloud-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "149v3ci17g6wd2pm18mzcncq5qpl9hwdjnz3rlbn5rfidyn46la1")))) - (build-system go-build-system) - (arguments '(#:import-path "cloud.google.com/go")) - (home-page "https://cloud.google.com/go") - (synopsis "Google Cloud Client Libraries for Go") - (description - "Package cloud is the root of the packages used to access Google Cloud Services. -See -@url{https://godoc.org/cloud.google.com/go,https://godoc.org/cloud.google.com/go} -for a full list of sub-packages.") - (license license:asl2.0))) - -(define-public go-github-com-burntsushi-toml-0.3.1 - (package - (name "go-github-com-burntsushi-toml") - (version "0.3.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/BurntSushi/toml") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fjdwwfzyzllgiwydknf1pwjvy49qxfsczqx5gz3y0izs7as99j6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/BurntSushi/toml")) - (home-page "https://github.com/BurntSushi/toml") - (synopsis "Testing") - (description - "Package toml implements decoding and encoding of TOML files.") - (license license:expat))) - -(define-public go-github-com-client9-misspell-0.3.4 - (package - (name "go-github-com-client9-misspell") - (version "0.3.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/client9/misspell") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1vwf33wsc4la25zk9nylpbp9px3svlmldkm0bha4hp56jws4q9cs")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/client9/misspell")) - (home-page "https://github.com/client9/misspell") - (synopsis "Install") - (description - "Package misspell corrects commonly misspelled English words in source files.") - (license license:expat))) - -(define-public go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b - (package - (name "go-github-com-golang-glog") - (version "0.0.0-20160126235308-23def4e6c14b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/glog") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0jb2834rw5sykfr937fxi8hxi2zy80sj2bdn9b3jb4b26ksqng30")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/glog")) - (home-page "https://github.com/golang/glog") - (synopsis "glog") - (description - "Package glog implements logging analogous to the Google-internal C++ -INFO/ERROR/V setup. It provides functions Info, Warning, Error, Fatal, plus -formatting variants such as Infof. It also provides V-style logging controlled -by the -v and -vmodule=file=2 flags.") - (license license:asl2.0))) - -(define-public go-github-com-golang-mock-1.1.1 - (package - (name "go-github-com-golang-mock") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/mock") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ap8wb6pdl6ccmdb43advjll2ly4sz26wsc3axw0hbrjrybybzgy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/mock")) - (home-page "https://github.com/golang/mock") - (synopsis "gomock") - (description - "gomock is a mocking framework for the @url{http://golang.org/,Go programming -language}. It integrates well with Go's built-in @code{testing} package, but -can be used in other contexts too.") - (license license:asl2.0))) - -(define-public go-github-com-golang-protobuf-1.2.0 - (package - (name "go-github-com-golang-protobuf") - (version "1.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0kf4b59rcbb1cchfny2dm9jyznp8ri2hsb14n8iak1q8986xa0ab")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code -github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3 - (package - (name "go-golang-org-x-lint") - (version "0.0.0-20181026193005-c67002cb31c3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/lint") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0gymbggskjmphqxqcx4s0vnlcz7mygbix0vhwcwv5r67c0bf6765")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/lint")) - (home-page "https://golang.org/x/lint") - (synopsis "Installation") - (description "Package lint contains a linter for Go source code.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d - (package - (name "go-golang-org-x-net") - (version "0.0.0-20180826012351-8a410e7b638d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hp0l8f6fir5gmgrjq0mhh5ikc0rlrm72774228800kfwqjrxxny")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be - (package - (name "go-golang-org-x-oauth2") - (version "0.0.0-20180821212333-d2e6202438be") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/oauth2") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0wbn75fd10485nb93bm4kqldqifdim5xqy4v7r5sdvimvf3fyhn7")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/oauth2")) - (home-page "https://golang.org/x/oauth2") - (synopsis "OAuth2 for Go") - (description - "Package oauth2 provides support for making OAuth2 authorized and authenticated -HTTP requests, as specified in @url{https://rfc-editor.org/rfc/rfc6749.html,RFC -6749}. It can additionally grant authorization with Bearer JWT.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20180314180146-1d60e4601c6f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "046jlanz2lkxq1r57x9bl6s4cvfqaic6p2xybsj8mq1120jv4rs6")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the ones -provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20180830151530-49385e6e1522") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0spbldahns09fdxkxflb1x24f8k2awdlnr6k5i7ci4fqd19r1dv4")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-text-0.3.0 - (package - (name "go-golang-org-x-text") - (version "0.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/text")) - (home-page "https://golang.org/x/text") - (synopsis "Go Text") - (description - "text is a repository of text-related packages related to internationalization -(i18n) and localization (l10n), such as character encodings, text -transformations, and locale-specific text handling.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20190114222345-bf090417da8b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1n3xp56k4k3lj06rx7587wr5gnwg0148nvwx6ch0g7ar02hh94hw")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-google-golang-org-appengine-1.1.0 - (package - (name "go-google-golang-org-appengine") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/appengine") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1pz202zszg8f35dk5pfhwgcdi3r6dx1l4yk6x6ly7nb4j45zi96x")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/appengine")) - (home-page "https://google.golang.org/appengine") - (synopsis "Go App Engine packages") - (description - "Package appengine provides basic functionality for Google App Engine.") - (license license:asl2.0))) - -(define-public go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8 - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20180817151627-c66870c02cf8") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0siq7sv68556ygqi2d2zmvx8l1xjqdc0fylqzci5h1mq2i14bayn")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for -interacting with Google's gRPC APIs.") - (license license:asl2.0))) - -(define-public go-google-golang-org-grpc-1.19.0 - (package - (name "go-google-golang-org-grpc") - (version "1.19.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1znqwpj7ix3dpzx4zch0q70sdl3z5lvbb7v3q4i8sf8kas3yv71v")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" - ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) - ("go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8" - ,go-google-golang-org-genproto-0.0.0-20180817151627-c66870c02cf8) - ("go-google-golang-org-appengine-1.1.0" - ,go-google-golang-org-appengine-1.1.0) - ("go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b" - ,go-golang-org-x-tools-0.0.0-20190114222345-bf090417da8b) - ("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522" - ,go-golang-org-x-sys-0.0.0-20180830151530-49385e6e1522) - ("go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f" - ,go-golang-org-x-sync-0.0.0-20180314180146-1d60e4601c6f) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d" - ,go-golang-org-x-net-0.0.0-20180826012351-8a410e7b638d) - ("go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3" - ,go-golang-org-x-lint-0.0.0-20181026193005-c67002cb31c3) - ("go-github-com-golang-protobuf-1.2.0" - ,go-github-com-golang-protobuf-1.2.0) - ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-client9-misspell-0.3.4" - ,go-github-com-client9-misspell-0.3.4) - ("go-github-com-burntsushi-toml-0.3.1" - ,go-github-com-burntsushi-toml-0.3.1) - ("go-cloud-google-com-go-0.26.0" ,go-cloud-google-com-go-0.26.0))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC.") - (license license:asl2.0))) - -(define-public go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099 - (package - (name "go-honnef-co-go-tools") - (version "0.0.0-20190102054323-c2f93a96b099") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/dominikh/go-tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "07lg29aiap80ca9f201jzng9vjr168cv3qmvjmbd7v5pmww9kmr8")))) - (build-system go-build-system) - (arguments '(#:import-path "honnef.co/go/tools")) - (home-page "https://honnef.co/go/tools") - (synopsis "Documentation") - (description - "Staticcheck is a state of the art linter for the . Using static analysis, it -finds bugs and performance issues, offers simplifications, and enforces style -rules.") - (license license:expat))) - -(define-public go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55 - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20190819201941-24fa4b261c55") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "109zhaqlfd8zkbr1hk6zqbs6vcxfrk64scjwh2nswph05gr0m84d")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099" - ,go-honnef-co-go-tools-0.0.0-20190102054323-c2f93a96b099) - ("go-google-golang-org-grpc-1.19.0" ,go-google-golang-org-grpc-1.19.0) - ("go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c" - ,go-golang-org-x-tools-0.0.0-20190226205152-f727befe758c) - ("go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961" - ,go-golang-org-x-lint-0.0.0-20190227174305-5b3e6a55c961) - ("go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4" - ,go-golang-org-x-exp-0.0.0-20190121172915-509febef88a4) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for -interacting with Google's gRPC APIs.") - (license license:asl2.0))) - -(define-public go-google-golang-org-grpc-1.27.0 - (package - (name "go-google-golang-org-grpc") - (version "1.27.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/grpc/grpc-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ijrmgrxyabfn51nm3p9l81iaasq5fg237wnr6mdc4dzsfcg8kd7")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/grpc")) - (propagated-inputs - `(("go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55" - ,go-google-golang-org-genproto-0.0.0-20190819201941-24fa4b261c55) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be" - ,go-golang-org-x-oauth2-0.0.0-20180821212333-d2e6202438be) - ("go-golang-org-x-net-0.0.0-20190311183353-d8887717615a" - ,go-golang-org-x-net-0.0.0-20190311183353-d8887717615a) - ("go-github-com-google-go-cmp-0.2.0" - ,go-github-com-google-go-cmp-0.2.0) - ("go-github-com-golang-protobuf-1.3.2" - ,go-github-com-golang-protobuf-1.3.2) - ("go-github-com-golang-mock-1.1.1" ,go-github-com-golang-mock-1.1.1) - ("go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b" - ,go-github-com-golang-glog-0.0.0-20160126235308-23def4e6c14b) - ("go-github-com-envoyproxy-protoc-gen-validate-0.1.0" - ,go-github-com-envoyproxy-protoc-gen-validate-0.1.0) - ("go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473" - ,go-github-com-envoyproxy-go-control-plane-0.9.1-0.20191026205805-5f8ba28d4473))) - (home-page "https://google.golang.org/grpc") - (synopsis "gRPC-Go") - (description "Package grpc implements an RPC system called gRPC.") - (license license:asl2.0))) - -(define-public go-github-com-google-go-cmp-0.3.0 - (package - (name "go-github-com-google-go-cmp") - (version "0.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1hyxx3434zshl2m9ja78gwlkg1rx9yl6diqa7dnjb31xz5x4gbjj")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically -equal.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd - (package - (name "go-google-golang-org-protobuf") - (version "0.0.0-20200109180630-ec00e32a8dfd") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0w6lp9w2avxcpxwzzhspr209ifhyjagvs23k0vykfdqahl1aplrh")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.3.0" - ,go-github-com-google-go-cmp-0.3.0))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is -a language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol -buffer developer guide} for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.4.0-rc.1 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.0-rc.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "186rirvbfgv6hrxp27ipx2cdpv19qifdd20biqfdm01wiyclqimn")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd" - ,go-google-golang-org-protobuf-0.0.0-20200109180630-ec00e32a8dfd) - ("go-github-com-google-go-cmp-0.3.1" - ,go-github-com-google-go-cmp-0.3.1))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code -github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-github-com-google-go-cmp-0.3.1 - (package - (name "go-github-com-google-go-cmp") - (version "0.3.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1caw49i0plkjxir7kdf5qhwls3krqwfmi7g4h392rdfwi3kfahx1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically -equal.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64 - (package - (name "go-google-golang-org-protobuf") - (version "0.0.0-20200221191635-4d8936d0db64") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0563bsvdjj6k0sgwqd5yzrgfiax7sp3lcwh608gync5sv9fx39cy")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.3.1" - ,go-github-com-google-go-cmp-0.3.1) - ("go-github-com-golang-protobuf-1.4.0-rc.1" - ,go-github-com-golang-protobuf-1.4.0-rc.1))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is -a language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol -buffer developer guide} for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.0-rc.1.0.20200221234624-67d41d38c208") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ykxhg3zixmw25pd435f8h16wnz1g00jpcmmg3xl030kksgqgpp6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64" - ,go-google-golang-org-protobuf-0.0.0-20200221191635-4d8936d0db64) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code -github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60 - (package - (name "go-google-golang-org-protobuf") - (version "0.0.0-20200228230310-ab0ca4ff8a60") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1rinspcznfp85yz4vrlf4h38hr576virgv8lcs22bsylqga808sd")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208" - ,go-github-com-golang-protobuf-1.4.0-rc.1.0.20200221234624-67d41d38c208))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is -a language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol -buffer developer guide} for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.4.0-rc.2 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.0-rc.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1hd43hjv5zl6bjbmhm5phx74bw4xajsi73m5zky2k56za4mpgzzc")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60" - ,go-google-golang-org-protobuf-0.0.0-20200228230310-ab0ca4ff8a60) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code -github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967 - (package - (name "go-google-golang-org-protobuf") - (version "1.20.1-0.20200309200217-e05f789c0967") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "17wmy89hnmpkwc63rfcjp50q15s9f1rhmczg06c3z9yy41zk82w9")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.0-rc.2" - ,go-github-com-golang-protobuf-1.4.0-rc.2))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is -a language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol -buffer developer guide} for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.0-rc.4.0.20200313231945-b860323f09d0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1zj6cwshx0l5n9cn2cpbikzzb79px5dmkpc4p19zy1iif5r5p0z0")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967" - ,go-google-golang-org-protobuf-1.20.1-0.20200309200217-e05f789c0967) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code -github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-1.21.0 - (package - (name "go-google-golang-org-protobuf") - (version "1.21.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12bwln8z1lf9105gdp6ip0rx741i4yfz1520gxnp8861lh9wcl63")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0" - ,go-github-com-golang-protobuf-1.4.0-rc.4.0.20200313231945-b860323f09d0))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is -a language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol -buffer developer guide} for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-github-com-golang-protobuf-1.4.0 - (package - (name "go-github-com-golang-protobuf") - (version "1.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fjvl5n77abxz5qsd4mgyvjq19x43c5bfvmq62mq3m5plx6zksc8")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (propagated-inputs - `(("go-google-golang-org-protobuf-1.21.0" - ,go-google-golang-org-protobuf-1.21.0) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0))) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code -github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") - (license license:bsd-3))) - -(define-public go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543 - (package - (name "go-golang-org-x-xerrors") - (version "0.0.0-20191204190536-9bdfabe68543") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/xerrors") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1yjfi1bk9xb81lqn85nnm13zz725wazvrx3b50hx19qmwg7a4b0c")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/xerrors")) - (home-page "https://golang.org/x/xerrors") - (synopsis #f) - (description "Package xerrors implements functions to manipulate errors.") - (license license:bsd-3))) - -(define-public go-github-com-google-go-cmp-0.4.0 - (package - (name "go-github-com-google-go-cmp") - (version "0.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1x5pvl3fb5sbyng7i34431xycnhmx8xx94gq2n19g6p0vz68z2v2")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically -equal.") - (license license:bsd-3))) - -(define-public go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc - (package - (name "go-google-golang-org-protobuf") - (version "1.23.1-0.20200526195155-81db48ad09cc") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "02cpr8rqr5wmpj2fqb32mzilsdnxkh52g1jz95a3ck3gzffc7hh1")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.0" - ,go-github-com-golang-protobuf-1.4.0))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is -a language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol -buffer developer guide} for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc - (package - (name "go-honnef-co-go-tools") - (version "0.0.0-20190523083050-ea95bdfd59fc") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/dominikh/go-tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1763nw7pwpzkvzfnm63dgzcgbq9hwmq5l1nffchnhh77vgkaq4ic")))) - (build-system go-build-system) - (arguments '(#:import-path "honnef.co/go/tools")) - (home-page "https://honnef.co/go/tools") - (synopsis "Documentation") - (description - "Staticcheck is a state of the art linter for the . Using static analysis, it -finds bugs and performance issues, offers simplifications, and enforces style -rules.") - (license license:expat))) - -(define-public go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013 - (package - (name "go-google-golang-org-genproto") - (version "0.0.0-20200526211855-cb27e3aa2013") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/go-genproto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ml73ghqcwbz7ipfk8fnxb5indcml49b5p7vp1fsyny0abyyrmxf")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/genproto")) - (propagated-inputs - `(("go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc" - ,go-honnef-co-go-tools-0.0.0-20190523083050-ea95bdfd59fc) - ("go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc" - ,go-google-golang-org-protobuf-1.23.1-0.20200526195155-81db48ad09cc) - ("go-google-golang-org-grpc-1.27.0" ,go-google-golang-org-grpc-1.27.0) - ("go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135" - ,go-golang-org-x-tools-0.0.0-20190524140312-2c0ae7006135) - ("go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3" - ,go-golang-org-x-lint-0.0.0-20190313153728-d0100b6bd8b3) - ("go-github-com-golang-protobuf-1.4.1" - ,go-github-com-golang-protobuf-1.4.1))) - (home-page "https://google.golang.org/genproto") - (synopsis "Go generated proto packages") - (description - "This repository contains the generated Go packages for common protocol buffer -types, and the generated @url{http://grpc.io,gRPC} code necessary for -interacting with Google's gRPC APIs.") - (license license:asl2.0))) - -(define-public go-google-golang-org-protobuf-1.24.0 - (package - (name "go-google-golang-org-protobuf") - (version "1.24.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0x3qyn3rizbs671gs7f8v50rmiwf9h7kbaradpivw9718mhbg1gn")))) - (build-system go-build-system) - (arguments '(#:import-path "google.golang.org/protobuf")) - (propagated-inputs - `(("go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013" - ,go-google-golang-org-genproto-0.0.0-20200526211855-cb27e3aa2013) - ("go-github-com-google-go-cmp-0.4.0" - ,go-github-com-google-go-cmp-0.4.0) - ("go-github-com-golang-protobuf-1.4.1" - ,go-github-com-golang-protobuf-1.4.1))) - (home-page "https://google.golang.org/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This project hosts the Go implementation for -@url{https://developers.google.com/protocol-buffers,protocol buffers}, which is -a language-neutral, platform-neutral, extensible mechanism for serializing -structured data. The protocol buffer language is a language for specifying the -schema for structured data. This schema is compiled into language specific -bindings. This project provides both a tool to generate Go code for the -protocol buffer language, and also the runtime implementation to handle -serialization of messages in Go. See the -@url{https://developers.google.com/protocol-buffers/docs/overview,protocol -buffer developer guide} for more information about protocol buffers themselves.") - (license license:bsd-3))) - -(define-public go-gopkg-in-check-v1-1.0.0-20200227125254-8fa46927fb4f - (package - (name "go-gopkg-in-check-v1") - (version "1.0.0-20200227125254-8fa46927fb4f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/check.v1") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0fx03x0nx9mjwnqphnx852q9p76qg7cazrachvgr1bj357lplrcw")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) - (home-page "https://gopkg.in/check.v1") - (synopsis "Instructions") - (description - "Package check is a rich testing extension for Go's testing package.") - (license license:bsd-2))) - -(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 - (package - (name "go-gopkg-in-check-v1") - (version "0.0.0-20161208181325-20d25e280405") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/check.v1") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) - (home-page "https://gopkg.in/check.v1") - (synopsis "Instructions") - (description - "Package check is a rich testing extension for Go's testing package.") - (license license:bsd-2))) - -(define-public go-gopkg-in-yaml-v3-3.0.0-20200615113413-eeeca48fe776 - (package - (name "go-gopkg-in-yaml-v3") - (version "3.0.0-20200615113413-eeeca48fe776") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v3") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "06m3kx5mp6vwfcpjl04c39r1dpbakg2la9ql1jw3zvpi6jk7iwbk")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v3") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language.") - (license license:expat))) - -(define-public go-github-com-opencontainers-umoci-0.4.7 - (package - (name "go-github-com-opencontainers-umoci") - (version "0.4.7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/umoci") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0in8kyi4jprvbm3zsl3risbjj8b0ma62yl3rq8rcvcgypx0mn7d4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/umoci")) - (propagated-inputs - `(("go-gopkg-in-yaml-v3-3.0.0-20200615113413-eeeca48fe776" - ,go-gopkg-in-yaml-v3-3.0.0-20200615113413-eeeca48fe776) - ("go-gopkg-in-check-v1-1.0.0-20200227125254-8fa46927fb4f" - ,go-gopkg-in-check-v1-1.0.0-20200227125254-8fa46927fb4f) - ("go-google-golang-org-protobuf-1.24.0" - ,go-google-golang-org-protobuf-1.24.0) - ("go-golang-org-x-sys-0.0.0-20200622214017-ed371f2e16b4" - ,go-golang-org-x-sys-0.0.0-20200622214017-ed371f2e16b4) - ("go-golang-org-x-crypto-0.0.0-20200604202706-70a84ac30bf9" - ,go-golang-org-x-crypto-0.0.0-20200604202706-70a84ac30bf9) - ("go-github-com-vbatts-go-mtree-0.5.0" - ,go-github-com-vbatts-go-mtree-0.5.0) - ("go-github-com-urfave-cli-1.22.4" ,go-github-com-urfave-cli-1.22.4) - ("go-github-com-tj-assert-0.0.3" ,go-github-com-tj-assert-0.0.3) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-sirupsen-logrus-1.6.0" - ,go-github-com-sirupsen-logrus-1.6.0) - ("go-github-com-rootless-containers-proto-0.1.0" - ,go-github-com-rootless-containers-proto-0.1.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-runtime-spec-1.0.2" - ,go-github-com-opencontainers-runtime-spec-1.0.2) - ("go-github-com-opencontainers-runc-1.0.0-rc90" - ,go-github-com-opencontainers-runc-1.0.0-rc90) - ("go-github-com-opencontainers-image-spec-1.0.1" - ,go-github-com-opencontainers-image-spec-1.0.1) - ("go-github-com-opencontainers-go-digest-1.0.0" - ,go-github-com-opencontainers-go-digest-1.0.0) - ("go-github-com-niemeyer-pretty-0.0.0-20200227124842-a10e7caefd8e" - ,go-github-com-niemeyer-pretty-0.0.0-20200227124842-a10e7caefd8e) - ("go-github-com-mohae-deepcopy-0.0.0-20170929034955-c48cc78d4826" - ,go-github-com-mohae-deepcopy-0.0.0-20170929034955-c48cc78d4826) - ("go-github-com-mattn-go-colorable-0.1.6" - ,go-github-com-mattn-go-colorable-0.1.6) - ("go-github-com-kr-text-0.2.0" ,go-github-com-kr-text-0.2.0) - ("go-github-com-klauspost-pgzip-1.2.4" - ,go-github-com-klauspost-pgzip-1.2.4) - ("go-github-com-klauspost-compress-1.11.3" - ,go-github-com-klauspost-compress-1.11.3) - ("go-github-com-google-go-cmp-0.5.0" - ,go-github-com-google-go-cmp-0.5.0) - ("go-github-com-golang-protobuf-1.4.2" - ,go-github-com-golang-protobuf-1.4.2) - ("go-github-com-docker-go-units-0.4.0" - ,go-github-com-docker-go-units-0.4.0) - ("go-github-com-cyphar-filepath-securejoin-0.2.2" - ,go-github-com-cyphar-filepath-securejoin-0.2.2) - ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" - ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) - ("go-github-com-apex-log-1.4.0" ,go-github-com-apex-log-1.4.0) - ("go-github-com-adamkorcz-go-fuzz-headers-0.0.0-20210312213058-32f4d319f0d2" - ,go-github-com-adamkorcz-go-fuzz-headers-0.0.0-20210312213058-32f4d319f0d2))) - (home-page "https://github.com/opencontainers/umoci") - (synopsis "Install") - (description - "@strong{u}moci @strong{m}odifies @strong{O}pen @strong{C}ontainer -@strong{i}mages.") - (license license:asl2.0))) - -(define-public go-github-com-pelletier-go-toml-1.9.4 - (package - (name "go-github-com-pelletier-go-toml") - (version "1.9.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pelletier/go-toml") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0f2d9m19dadl18i2baf57xygvn9vprm6wb8chvpx8kipx94nchyl")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pelletier/go-toml")) - (home-page "https://github.com/pelletier/go-toml") - (synopsis "go-toml") - (description "Package toml is a TOML parser and manipulation library.") - (license license:expat))) - -(define-public go-github-com-pkg-errors-0.9.1 - (package - (name "go-github-com-pkg-errors") - (version "0.9.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pkg/errors") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1761pybhc2kqr6v5fm8faj08x9bql8427yqg6vnfv6nhrasx1mwq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pkg/errors")) - (home-page "https://github.com/pkg/errors") - (synopsis "errors") - (description "Package errors provides simple error handling primitives.") - (license license:bsd-2))) - -(define-public go-github-com-blang-semver-3.5.1+incompatible - (package - (name "go-github-com-blang-semver") - (version "3.5.1+incompatible") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/blang/semver") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "13ws259bwcibkclbr82ilhk6zadm63kxklxhk12wayklj8ghhsmy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/blang/semver")) - (home-page "https://github.com/blang/semver") - (synopsis "semver for golang") - (description - "semver is a @url{http://semver.org/,Semantic Versioning} library written in -golang. It fully covers spec version @code{2.0.0}.") - (license license:expat))) - -(define-public go-github-com-hashicorp-errwrap-1.0.0 - (package - (name "go-github-com-hashicorp-errwrap") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/errwrap") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0slfb6w3b61xz04r32bi0a1bygc82rjzhqkxj2si2074wynqnr1c")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/errwrap")) - (home-page "https://github.com/hashicorp/errwrap") - (synopsis "errwrap") - (description - "Package errwrap implements methods to formalize error wrapping in Go.") - (license license:mpl2.0))) - -(define-public go-github-com-hashicorp-go-multierror-1.1.0 - (package - (name "go-github-com-hashicorp-go-multierror") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hashicorp/go-multierror") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0pmjpzpra7lqgikxzwlcp5mh01b46j2vhyxkixz0v86fr9kf0k3k")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/hashicorp/go-multierror")) - (propagated-inputs - `(("go-github-com-hashicorp-errwrap-1.0.0" - ,go-github-com-hashicorp-errwrap-1.0.0))) - (home-page "https://github.com/hashicorp/go-multierror") - (synopsis "go-multierror") - (description - "@code{go-multierror} is a package for Go that provides a mechanism for -representing a list of @code{error} values as a single @code{error}.") - (license license:mpl2.0))) - -(define-public go-github-com-opencontainers-runtime-spec-1.0.3-0.20200710190001-3e4195d92445 - (package - (name "go-github-com-opencontainers-runtime-spec") - (version "1.0.3-0.20200710190001-3e4195d92445") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/runtime-spec") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "04kfdbap80r89rn7f7xcmkyy0qbpd18dgk65bzapy0x0calpgrlk")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) - (home-page "https://github.com/opencontainers/runtime-spec") - (synopsis "Open Container Initiative Runtime Specification") - (description - "The @url{https://www.opencontainers.org,Open Container Initiative} develops -specifications for standards on Operating System process and application -containers.") - (license license:asl2.0))) - -(define-public go-github-com-opencontainers-runtime-tools-0.9.0 - (package - (name "go-github-com-opencontainers-runtime-tools") - (version "0.9.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/runtime-tools") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1pli3jb1rq9lkzzz83f7jw788vijg7x6ly3vgasdlwri7kiph1sa")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/runtime-tools")) - (home-page "https://github.com/opencontainers/runtime-tools") - (synopsis "oci-runtime-tool") - (description - "oci-runtime-tool is a collection of tools for working with the -@url{https://github.com/opencontainers/runtime-spec,OCI runtime specification}. -To build from source code, runtime-tools requires Go 1.10.x or above.") - (license license:asl2.0))) - -(define-public go-github-com-pkg-errors-0.9.1 - (package - (name "go-github-com-pkg-errors") - (version "0.9.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pkg/errors") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1761pybhc2kqr6v5fm8faj08x9bql8427yqg6vnfv6nhrasx1mwq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pkg/errors")) - (home-page "https://github.com/pkg/errors") - (synopsis "errors") - (description "Package errors provides simple error handling primitives.") - (license license:bsd-2))) - -(define-public go-github-com-willf-bitset-1.1.11-0.20200630133818-d5bec3311243 - (package - (name "go-github-com-willf-bitset") - (version "1.1.11-0.20200630133818-d5bec3311243") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/bits-and-blooms/bitset") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "05nyd0vhp2h9hbqlv2s9l2py6mr8hpz2zyfj09an1q7wd8vph4ja")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/willf/bitset")) - (home-page "https://github.com/willf/bitset") - (synopsis "bitset") - (description - "Package bitset implements bitsets, a mapping between non-negative integers and -boolean values. It should be more efficient than map[uint] bool.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20191115151921-52ab43148777") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1kakxbqrb1w2vwg7r1896z68qcx2lfvimsl8cs2niiipbgpi6imx")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-opencontainers-selinux-1.6.0 - (package - (name "go-github-com-opencontainers-selinux") - (version "1.6.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/selinux") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ja41zfgrkhk5khixjnxpi1b85xfcxlkhq2q9b7ma6xjfdhg8bq2")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/selinux")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777" - ,go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777) - ("go-github-com-willf-bitset-1.1.11-0.20200630133818-d5bec3311243" - ,go-github-com-willf-bitset-1.1.11-0.20200630133818-d5bec3311243) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1))) - (home-page "https://github.com/opencontainers/selinux") - (synopsis "selinux") - (description "Common SELinux package used across the container ecosystem.") - (license license:asl2.0))) - -(define-public go-github-com-seccomp-libseccomp-golang-0.9.1 - (package - (name "go-github-com-seccomp-libseccomp-golang") - (version "0.9.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/seccomp/libseccomp-golang") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "022c8prvxz0shrifams7lq4xidvkcqg9xi87wjjcpmbikqi72cna")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/seccomp/libseccomp-golang")) - (home-page "https://github.com/seccomp/libseccomp-golang") - (synopsis #f) - (description - "Package seccomp provides bindings for libseccomp, a library wrapping the Linux -seccomp syscall. Seccomp enables an application to restrict system call use for -itself and its children.") - (license license:bsd-2))) - -(define-public go-github-com-davecgh-go-spew-1.1.1 - (package - (name "go-github-com-davecgh-go-spew") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/davecgh/go-spew") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/davecgh/go-spew")) - (home-page "https://github.com/davecgh/go-spew") - (synopsis "go-spew") - (description - "Go-spew implements a deep pretty printer for Go data structures to aid in -debugging. A comprehensive suite of tests with 100% test coverage is provided -to ensure proper functionality. See @code{test_coverage.txt} for the gocov -coverage report. Go-spew is licensed under the liberal ISC license, so it may -be used in open source or commercial projects.") - (license license:isc))) - -(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.3 - (package - (name "go-github-com-konsorten-go-windows-terminal-sequences") - (version "1.0.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/konsorten/go-windows-terminal-sequences") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1yrsd4s8vhjnxhwbigirymz89dn6qfjnhn28i33vvvdgf96j6ypl")))) - (build-system go-build-system) - (arguments - '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) - (home-page "https://github.com/konsorten/go-windows-terminal-sequences") - (synopsis "Windows Terminal Sequences") - (description - "This library allow for enabling Windows terminal color support for Go.") - (license license:expat))) - -(define-public go-github-com-stretchr-testify-1.2.2 - (package - (name "go-github-com-stretchr-testify") - (version "1.2.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/testify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0dlszlshlxbmmfxj5hlwgv3r22x0y1af45gn1vd198nvvs3pnvfs")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/testify")) - (home-page "https://github.com/stretchr/testify") - (synopsis "Testify - Thou Shalt Write Tests") - (description - "** We are working on testify v2 and would love to hear what you'd like to see in -it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -Package testify is a set of packages that provide many tools for testifying that -your code will behave as you intend.") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190422165155-953cdadca894") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0gkha4whk8xkcv3isigbs250akag99isxnd3v9xmy0kl3g88hxy1")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-sirupsen-logrus-1.6.0 - (package - (name "go-github-com-sirupsen-logrus") - (version "1.6.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sirupsen/logrus") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1zf9is1yxxnna0d1pyag2m9ziy3l27zb2j92p9msm1gx5jjrvzzj")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/sirupsen/logrus")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894" - ,go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894) - ("go-github-com-stretchr-testify-1.2.2" - ,go-github-com-stretchr-testify-1.2.2) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.3" - ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.3) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/sirupsen/logrus") - (synopsis "Logrus") - (description - "Package logrus is a structured logger for Go, completely API compatible with the -standard library logger.") - (license license:expat))) - -(define-public go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2 - (package - (name "go-github-com-syndtr-gocapability") - (version "0.0.0-20180916011248-d98352740cb2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/syndtr/gocapability") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "065y16562ynixxzj7iys4f4spb7knilbj3h833qlhds381j8hn93")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/syndtr/gocapability")) - (home-page "https://github.com/syndtr/gocapability") - (synopsis #f) - (description #f) - (license license:bsd-2))) - -(define-public go-github-com-davecgh-go-spew-1.1.0 - (package - (name "go-github-com-davecgh-go-spew") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/davecgh/go-spew") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/davecgh/go-spew")) - (home-page "https://github.com/davecgh/go-spew") - (synopsis "go-spew") - (description - "Go-spew implements a deep pretty printer for Go data structures to aid in -debugging. A comprehensive suite of tests with 100% test coverage is provided -to ensure proper functionality. See @code{test_coverage.txt} for the gocov -coverage report. Go-spew is licensed under the liberal ISC license, so it may -be used in open source or commercial projects.") - (license license:isc))) - -(define-public go-github-com-pmezard-go-difflib-1.0.0 - (package - (name "go-github-com-pmezard-go-difflib") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pmezard/go-difflib") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pmezard/go-difflib")) - (home-page "https://github.com/pmezard/go-difflib") - (synopsis "go-difflib") - (description - "Go-difflib is a partial port of python 3 difflib package. Its main goal was to -make unified and context diff available in pure Go, mostly for testing purposes.") - (license license:bsd-3))) - -(define-public go-github-com-stretchr-objx-0.1.0 - (package - (name "go-github-com-stretchr-objx") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/objx") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/objx")) - (home-page "https://github.com/stretchr/objx") - (synopsis "Objx") - (description - "Objx - Go package for dealing with maps, slices, JSON and other data.") - (license license:expat))) - -(define-public go-github-com-stretchr-testify-1.3.0 - (package - (name "go-github-com-stretchr-testify") - (version "1.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/testify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0wjchp2c8xbgcbbq32w3kvblk6q6yn533g78nxl6iskq6y95lxsy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/testify")) - (propagated-inputs - `(("go-github-com-stretchr-objx-0.1.0" - ,go-github-com-stretchr-objx-0.1.0) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.0" - ,go-github-com-davecgh-go-spew-1.1.0))) - (home-page "https://github.com/stretchr/testify") - (synopsis "Testify - Thou Shalt Write Tests") - (description - "** We are working on testify v2 and would love to hear what you'd like to see in -it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -Package testify is a set of packages that provide many tools for testifying that -your code will behave as you intend.") - (license license:expat))) - -(define-public go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f - (package - (name "go-github-com-xeipuuv-gojsonpointer") - (version "0.0.0-20180127040702-4e3ac2762d5f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/xeipuuv/gojsonpointer") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "13y6iq2nzf9z4ls66bfgnnamj2m3438absmbpqry64bpwjfbsi9q")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/xeipuuv/gojsonpointer")) - (home-page "https://github.com/xeipuuv/gojsonpointer") - (synopsis "gojsonpointer") - (description "An implementation of JSON Pointer - Go language") - (license license:asl2.0))) - -(define-public go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415 - (package - (name "go-github-com-xeipuuv-gojsonreference") - (version "0.0.0-20180127040603-bd5ef7bd5415") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/xeipuuv/gojsonreference") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1xby79padc7bmyb8rfbad8wfnfdzpnh51b1n8c0kibch0kwc1db5")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/xeipuuv/gojsonreference")) - (home-page "https://github.com/xeipuuv/gojsonreference") - (synopsis "gojsonreference") - (description "An implementation of JSON Reference - Go language") - (license license:asl2.0))) - -(define-public go-github-com-xeipuuv-gojsonschema-1.2.0 - (package - (name "go-github-com-xeipuuv-gojsonschema") - (version "1.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/xeipuuv/gojsonschema") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1mqiq0r8qw4qlfp3ls8073r6514rmzwrmdn4j33rppk3zh942i6l")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/xeipuuv/gojsonschema")) - (propagated-inputs - `(("go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415" - ,go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415) - ("go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f" - ,go-github-com-xeipuuv-gojsonpointer-0.0.0-20180127040702-4e3ac2762d5f) - ("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0))) - (home-page "https://github.com/xeipuuv/gojsonschema") - (synopsis "gojsonschema") - (description - "An implementation of JSON Schema for the Go programming language. Supports -draft-04, draft-06 and draft-07.") - (license license:asl2.0))) - -(define-public go-golang-org-x-sys-0.0.0-20200720211630-cb9d2d5c5666 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200720211630-cb9d2d5c5666") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18b1179cvv3rfn3hhysiqwcn2c15a1kzff74q4494rz69k0j7w4q")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-seccomp-containers-golang-0.6.0 - (package - (name "go-github-com-seccomp-containers-golang") - (version "0.6.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/seccomp/containers-golang") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0clrwdnmr131a65h66br57bsnr17i1s3kq9cc7ljrdaym57y6cfz")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/seccomp/containers-golang")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20200720211630-cb9d2d5c5666" - ,go-golang-org-x-sys-0.0.0-20200720211630-cb9d2d5c5666) - ("go-github-com-xeipuuv-gojsonschema-1.2.0" - ,go-github-com-xeipuuv-gojsonschema-1.2.0) - ("go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2" - ,go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2) - ("go-github-com-sirupsen-logrus-1.6.0" - ,go-github-com-sirupsen-logrus-1.6.0) - ("go-github-com-seccomp-libseccomp-golang-0.9.1" - ,go-github-com-seccomp-libseccomp-golang-0.9.1) - ("go-github-com-opencontainers-selinux-1.6.0" - ,go-github-com-opencontainers-selinux-1.6.0) - ("go-github-com-opencontainers-runtime-tools-0.9.0" - ,go-github-com-opencontainers-runtime-tools-0.9.0) - ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200710190001-3e4195d92445" - ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200710190001-3e4195d92445) - ("go-github-com-hashicorp-go-multierror-1.1.0" - ,go-github-com-hashicorp-go-multierror-1.1.0) - ("go-github-com-blang-semver-3.5.1+incompatible" - ,go-github-com-blang-semver-3.5.1+incompatible))) - (home-page "https://github.com/seccomp/containers-golang") - (synopsis "containers-golang") - (description - "@code{containers-golang} is a set of Go libraries used by container runtimes to -generate and load seccomp mappings into the kernel.") - (license license:asl2.0))) - -(define-public go-github-com-seccomp-libseccomp-golang-0.9.2-0.20210429002308-3879420cc921 - (package - (name "go-github-com-seccomp-libseccomp-golang") - (version "0.9.2-0.20210429002308-3879420cc921") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/seccomp/libseccomp-golang") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ypr3j50cd9lnj9szfyh45kh0cf7swm7cv2svz1575mldd9m1xr9")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/seccomp/libseccomp-golang")) - (home-page "https://github.com/seccomp/libseccomp-golang") - (synopsis #f) - (description - "Package seccomp provides bindings for libseccomp, a library wrapping the Linux -seccomp syscall. Seccomp enables an application to restrict system call use for -itself and its children.") - (license license:bsd-2))) - -(define-public go-github-com-spf13-pflag-1.0.5 - (package - (name "go-github-com-spf13-pflag") - (version "1.0.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/spf13/pflag") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0gpmacngd0gpslnbkzi263f5ishigzgh6pbdv9hp092rnjl4nd31")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/spf13/pflag")) - (home-page "https://github.com/spf13/pflag") - (synopsis "Description") - (description - "Package pflag is a drop-in replacement for Go's flag package, implementing -POSIX/GNU-style --flags.") - (license license:bsd-3))) - -(define-public go-github-com-sylabs-json-resp-0.8.0 - (package - (name "go-github-com-sylabs-json-resp") - (version "0.8.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sylabs/json-resp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ygr4mavaj1pp78hkkphhn3ydd923n3klwnx8x7v4ajqzx4cx4id")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/sylabs/json-resp")) - (home-page "https://github.com/sylabs/json-resp") - (synopsis "JSON Response") - (description - "The @code{json-resp} package contains a small set of functions that are used to -marshall and unmarshall response data and errors in JSON format.") - (license license:bsd-3))) - -(define-public go-github-com-burntsushi-toml-0.3.1 - (package - (name "go-github-com-burntsushi-toml") - (version "0.3.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/BurntSushi/toml") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1fjdwwfzyzllgiwydknf1pwjvy49qxfsczqx5gz3y0izs7as99j6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/BurntSushi/toml")) - (home-page "https://github.com/BurntSushi/toml") - (synopsis "Testing") - (description - "Package toml implements decoding and encoding of TOML files.") - (license license:expat))) - -(define-public go-github-com-pmezard-go-difflib-1.0.0 - (package - (name "go-github-com-pmezard-go-difflib") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pmezard/go-difflib") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pmezard/go-difflib")) - (home-page "https://github.com/pmezard/go-difflib") - (synopsis "go-difflib") - (description - "Go-difflib is a partial port of python 3 difflib package. Its main goal was to -make unified and context diff available in pure Go, mostly for testing purposes.") - (license license:bsd-3))) - -(define-public go-github-com-russross-blackfriday-v2-2.0.1 - (package - (name "go-github-com-russross-blackfriday-v2") - (version "2.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/russross/blackfriday") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0nlz7isdd4rgnwzs68499hlwicxz34j2k2a0b8jy0y7ycd2bcr5j")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/russross/blackfriday/v2")) - (home-page "https://github.com/russross/blackfriday") - (synopsis "Blackfriday") - (description "Package blackfriday is a markdown processor.") - (license license:bsd-2))) - -(define-public go-github-com-shurcool-sanitized-anchor-name-1.0.0 - (package - (name "go-github-com-shurcool-sanitized-anchor-name") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/shurcooL/sanitized_anchor_name") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1gv9p2nr46z80dnfjsklc6zxbgk96349sdsxjz05f3z6wb6m5l8f")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/shurcooL/sanitized_anchor_name")) - (home-page "https://github.com/shurcooL/sanitized_anchor_name") - (synopsis "sanitized_anchor_name") - (description - "Package sanitized_anchor_name provides a func to create sanitized anchor names.") - (license license:expat))) - -(define-public go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d - (package - (name "go-github-com-cpuguy83-go-md2man-v2") - (version "2.0.0-20190314233015-f79a8a8ca69d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cpuguy83/go-md2man") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/cpuguy83/go-md2man/v2")) - (propagated-inputs - `(("go-github-com-shurcool-sanitized-anchor-name-1.0.0" - ,go-github-com-shurcool-sanitized-anchor-name-1.0.0) - ("go-github-com-russross-blackfriday-v2-2.0.1" - ,go-github-com-russross-blackfriday-v2-2.0.1) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0))) - (home-page "https://github.com/cpuguy83/go-md2man") - (synopsis "go-md2man") - (description "Converts markdown into roff (man pages).") - (license license:expat))) - -(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 - (package - (name "go-gopkg-in-check-v1") - (version "0.0.0-20161208181325-20d25e280405") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/check.v1") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) - (home-page "https://gopkg.in/check.v1") - (synopsis "Instructions") - (description - "Package check is a rich testing extension for Go's testing package.") - (license license:bsd-2))) - -(define-public go-gopkg-in-yaml-v2-2.2.2 - (package - (name "go-gopkg-in-yaml-v2") - (version "2.2.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "01wj12jzsdqlnidpyjssmj0r4yavlqy7dwrg7adqd8dicjc4ncsa")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v2") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language.") - (license license:asl2.0))) - -(define-public go-github-com-urfave-cli-1.22.5 - (package - (name "go-github-com-urfave-cli") - (version "1.22.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/urfave/cli") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1n8lk58j7bdsp47yh5bcpsw38lhkbyzcy3203ffkawc2rvkf1pp7")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/urfave/cli")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) - ("go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d" - ,go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d) - ("go-github-com-burntsushi-toml-0.3.1" - ,go-github-com-burntsushi-toml-0.3.1))) - (home-page "https://github.com/urfave/cli") - (synopsis "cli") - (description - "Package cli provides a minimal framework for creating and organizing command -line Go applications. cli is designed to be easy to understand and write, the -most simple cli application can be written as follows:") - (license license:expat))) - -(define-public go-github-com-vividcortex-ewma-1.2.0 - (package - (name "go-github-com-vividcortex-ewma") - (version "1.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/VividCortex/ewma") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0whx516l9nm4n41spagb605ry7kfnz1qha96mcshnfjlahhnnylq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/VividCortex/ewma")) - (home-page "https://github.com/VividCortex/ewma") - (synopsis "EWMA") - (description - "Package ewma implements exponentially weighted moving averages.") - (license license:expat))) - -(define-public go-github-com-acarl005-stripansi-0.0.0-20180116102854-5a71ef0e047d - (package - (name "go-github-com-acarl005-stripansi") - (version "0.0.0-20180116102854-5a71ef0e047d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/acarl005/stripansi") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "02sxiishdixm791jqbkmhdcvc712l0fb8rqmibxzgc61h0qs6rs3")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/acarl005/stripansi")) - (home-page "https://github.com/acarl005/stripansi") - (synopsis "Strip ANSI") - (description "This Go package removes ANSI escape codes from strings.") - (license license:expat))) - -(define-public go-github-com-rivo-uniseg-0.2.0 - (package - (name "go-github-com-rivo-uniseg") - (version "0.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/rivo/uniseg") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0j7h22vfmjj562vr8gpsyrkrwp1pq9ayh5fylv24skxb467g9f0q")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/rivo/uniseg")) - (home-page "https://github.com/rivo/uniseg") - (synopsis "Unicode Text Segmentation for Go") - (description - "Package uniseg implements Unicode Text Segmentation according to Unicode -Standard Annex #29 -(@url{http://unicode.org/reports/tr29/,http://unicode.org/reports/tr29/}).") - (license license:expat))) - -(define-public go-github-com-mattn-go-runewidth-0.0.13 - (package - (name "go-github-com-mattn-go-runewidth") - (version "0.0.13") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mattn/go-runewidth") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1yir0f3wc5z5hnkwhvx5qb6nmpfb05zp2gvfjvna63s8kmla1rrn")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mattn/go-runewidth")) - (propagated-inputs - `(("go-github-com-rivo-uniseg-0.2.0" ,go-github-com-rivo-uniseg-0.2.0))) - (home-page "https://github.com/mattn/go-runewidth") - (synopsis "go-runewidth") - (description - "This package provides functions to get fixed width of the character or string.") - (license license:expat))) - -(define-public go-golang-org-x-sys-0.0.0-20220209214540-3681064d5158 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20220209214540-3681064d5158") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0cw9rzb4rxmr2si28pjqx3wv5r119c83kd08yy1h7nf725bzrs89")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-github-com-vbauerster-mpb-v7-7.4.1 - (package - (name "go-github-com-vbauerster-mpb-v7") - (version "7.4.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/vbauerster/mpb") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ii1r84qjfp2spvj6nb8xy5b3nsfw17jmwgp55zkaz9n9lfj75w2")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/vbauerster/mpb/v7")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20220209214540-3681064d5158" - ,go-golang-org-x-sys-0.0.0-20220209214540-3681064d5158) - ("go-github-com-mattn-go-runewidth-0.0.13" - ,go-github-com-mattn-go-runewidth-0.0.13) - ("go-github-com-acarl005-stripansi-0.0.0-20180116102854-5a71ef0e047d" - ,go-github-com-acarl005-stripansi-0.0.0-20180116102854-5a71ef0e047d) - ("go-github-com-vividcortex-ewma-1.2.0" - ,go-github-com-vividcortex-ewma-1.2.0))) - (home-page "https://github.com/vbauerster/mpb") - (synopsis "Multi Progress Bar") - (description - "Package mpb is a library for rendering progress bars in terminal applications.") - (license license:unlicense))) - -(define-public go-github-com-xeipuuv-gojsonpointer-0.0.0-20190905194746-02993c407bfb - (package - (name "go-github-com-xeipuuv-gojsonpointer") - (version "0.0.0-20190905194746-02993c407bfb") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/xeipuuv/gojsonpointer") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0y7gmpgsm8c12ax4a0ij9srmd9d424iq224n172ckwfqf37amvzy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/xeipuuv/gojsonpointer")) - (home-page "https://github.com/xeipuuv/gojsonpointer") - (synopsis "gojsonpointer") - (description "An implementation of JSON Pointer - Go language") - (license license:asl2.0))) - -(define-public go-github-com-yvasiyarov-go-metrics-0.0.0-20150112132944-c25f46c4b940 - (package - (name "go-github-com-yvasiyarov-go-metrics") - (version "0.0.0-20150112132944-c25f46c4b940") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/yvasiyarov/go-metrics") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0p1hx4ml4gzgyj8n0fg5lv8bq092zwg00n59lq8v8sphjc1h8i8d")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/yvasiyarov/go-metrics")) - (home-page "https://github.com/yvasiyarov/go-metrics") - (synopsis "go-metrics") - (description "Go port of Coda Hale's Metrics library") - (license license:expat))) - -(define-public go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20160601141957-9c099fbc30e9 - (package - (name "go-github-com-yvasiyarov-newrelic-platform-go") - (version "0.0.0-20160601141957-9c099fbc30e9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/yvasiyarov/newrelic_platform_go") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0n6jap27qc7b7c37ck1gv9biq5nfl7y06jk0cqgc517yfnb4f07x")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/yvasiyarov/newrelic_platform_go")) - (home-page "https://github.com/yvasiyarov/newrelic_platform_go") - (synopsis "New Relic Platform Agent SDK for Go(golang)") - (description - "Package newrelic_platform_go is New Relic Platform Agent SDK for Go language.") - (license license:bsd-2))) - -(define-public go-golang-org-x-sys-0.0.0-20220209214540-3681064d5158 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20220209214540-3681064d5158") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0cw9rzb4rxmr2si28pjqx3wv5r119c83kd08yy1h7nf725bzrs89")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20210615035016-665e8c7367d1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "11n848csibdbv7b46zjyf4l7sphg37n9sjzqfy1ds7p1jyakwmnv")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-term-0.0.0-20210916214954-140adaaadfaf - (package - (name "go-golang-org-x-term") - (version "0.0.0-20210916214954-140adaaadfaf") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/term") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1rcdx2q92pzpmdyzdlzpq9flc3ibfi3m1rni7w4qlmlq569s6wh3")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/term")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1" - ,go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1))) - (home-page "https://golang.org/x/term") - (synopsis "Go terminal/console support") - (description - "Package term provides support functions for dealing with terminals, as commonly -found on UNIX systems.") - (license license:bsd-3))) - -(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 - (package - (name "go-gopkg-in-check-v1") - (version "0.0.0-20161208181325-20d25e280405") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/check.v1") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) - (home-page "https://gopkg.in/check.v1") - (synopsis "Instructions") - (description - "Package check is a rich testing extension for Go's testing package.") - (license license:bsd-2))) - -(define-public go-gopkg-in-yaml-v2-2.4.0 - (package - (name "go-gopkg-in-yaml-v2") - (version "2.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1pbmrpj7gcws34g8vwna4i2nhm9p6235piww36436xhyaa10cldr")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v2") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language.") - (license license:asl2.0))) - -(define-public go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543 - (package - (name "go-golang-org-x-xerrors") - (version "0.0.0-20191204190536-9bdfabe68543") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/xerrors") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1yjfi1bk9xb81lqn85nnm13zz725wazvrx3b50hx19qmwg7a4b0c")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/xerrors")) - (home-page "https://golang.org/x/xerrors") - (synopsis #f) - (description "Package xerrors implements functions to manipulate errors.") - (license license:bsd-3))) - -(define-public go-github-com-google-go-cmp-0.5.5 - (package - (name "go-github-com-google-go-cmp") - (version "0.5.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12fmkdhyv5d4is8s57k78j097zb0phlgnrkqc03agiszxlid69x7")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically -equal.") - (license license:bsd-3))) - -(define-public go-github-com-pkg-errors-0.9.1 - (package - (name "go-github-com-pkg-errors") - (version "0.9.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pkg/errors") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1761pybhc2kqr6v5fm8faj08x9bql8427yqg6vnfv6nhrasx1mwq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pkg/errors")) - (home-page "https://github.com/pkg/errors") - (synopsis "errors") - (description "Package errors provides simple error handling primitives.") - (license license:bsd-2))) - -(define-public go-github-com-spf13-pflag-1.0.3 - (package - (name "go-github-com-spf13-pflag") - (version "1.0.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/spf13/pflag") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1cj3cjm7d3zk0mf1xdybh0jywkbbw7a6yr3y22x9sis31scprswd")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/spf13/pflag")) - (home-page "https://github.com/spf13/pflag") - (synopsis "Description") - (description - "Package pflag is a drop-in replacement for Go's flag package, implementing -POSIX/GNU-style --flags.") - (license license:bsd-3))) - -(define-public go-github-com-yuin-goldmark-1.2.1 - (package - (name "go-github-com-yuin-goldmark") - (version "1.2.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/yuin/goldmark") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "12rsnsf65drcp0jfw2jl9w589vsn3pxdk1zh3v9q908iigngrcmy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/yuin/goldmark")) - (home-page "https://github.com/yuin/goldmark") - (synopsis "goldmark") - (description - "Package goldmark implements functions to convert markdown text to a desired -format.") - (license license:expat))) - -(define-public go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20191011191535-87dc89f01550") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0z4i1m2yn3f31ci7wvcm2rxkx2yiv7a78mfzklncmsz2k97rlh2g")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" - ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) - ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" - ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190620200207-3b0461eec859") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0l00c8l0a8xnv6qdpwfzxxsr58jggacgzdrwiprrfx2xqm37b6d5")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20190423024810-112230192c58 - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20190423024810-112230192c58") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "05i2k43j2d0llq768hg5pf3hb2yhfzp9la1w5wp0rsnnzblr0lfn")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the ones -provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7 - (package - (name "go-golang-org-x-xerrors") - (version "0.0.0-20190717185122-a985d3407aa7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/xerrors") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "00wzr5w8aadipgc3rkk8f11i41znskfj9ix5nhhaxyg7isrslgcj")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/xerrors")) - (home-page "https://golang.org/x/xerrors") - (synopsis #f) - (description "Package xerrors implements functions to manipulate errors.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20191119224855-298f0cb1881e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0l4pqwib2wnfnix6nvxl0yrq87ipi7ff1rz6z5bxfzy9dki1nzmv")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7" - ,go-golang-org-x-xerrors-0.0.0-20190717185122-a985d3407aa7) - ("go-golang-org-x-sync-0.0.0-20190423024810-112230192c58" - ,go-golang-org-x-sync-0.0.0-20190423024810-112230192c58) - ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" - ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898 - (package - (name "go-golang-org-x-xerrors") - (version "0.0.0-20191011141410-1b5146add898") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/xerrors") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0w2akj91krxjag0xdhsg78470888nicc5ismc2ap9jqpss6v1zih")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/xerrors")) - (home-page "https://golang.org/x/xerrors") - (synopsis #f) - (description "Package xerrors implements functions to manipulate errors.") - (license license:bsd-3))) - -(define-public go-golang-org-x-mod-0.3.0 - (package - (name "go-golang-org-x-mod") - (version "0.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/mod") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ldgbx2zpprbsfn6p8pfgs4nn87gwbfcv2z0fa7n8alwsq2yw78q")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/mod")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898" - ,go-golang-org-x-xerrors-0.0.0-20191011141410-1b5146add898) - ("go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e" - ,go-golang-org-x-tools-0.0.0-20191119224855-298f0cb1881e) - ("go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550" - ,go-golang-org-x-crypto-0.0.0-20191011191535-87dc89f01550))) - (home-page "https://golang.org/x/mod") - (synopsis "mod") - (description - "This repository holds packages for writing tools that work directly with Go -module mechanics. That is, it is for direct manipulation of Go modules -themselves.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190215142949-d0b11bdaac8a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20190308221718-c2843e01d9a2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-text-0.3.0 - (package - (name "go-golang-org-x-text") - (version "0.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/text")) - (home-page "https://golang.org/x/text") - (synopsis "Go Text") - (description - "text is a repository of text-related packages related to internationalization -(i18n) and localization (l10n), such as character encodings, text -transformations, and locale-specific text handling.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190404232315-eb5bcb51f2a3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "17k4g8krxbl84gzcs275b7gsh66dzm15fdxivjnx9xz8q84l4kby")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20190412213103-97732733099d - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190412213103-97732733099d") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "118hkp01i4z1f5h6hcjm0ff2ngqhrzj1f7731n0kw8dr6hvbx0sw")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20200622213623-75b288015ac9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18vlncvvs11ds3zaaziqjlg5s2vcwi3496nn6qv7p0dp94j5pwa2")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190412213103-97732733099d" - ,go-golang-org-x-sys-0.0.0-20190412213103-97732733099d) - ("go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3" - ,go-golang-org-x-net-0.0.0-20190404232315-eb5bcb51f2a3))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20200930185726-fdedc70b468f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1njlfhjbvi4lxvjbq8zswrb0y0q4jd2p6x51h1q6vmyzi9af6869")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20180917221912-90fa682c2a6e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-golang-org-x-text-0.3.3 - (package - (name "go-golang-org-x-text") - (version "0.3.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19pihqm3phyndmiw6i42pdv6z1rbvlqlsnhsyqf9gsnn0qnmqqlh")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/text")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" - ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) - (home-page "https://golang.org/x/text") - (synopsis "Go Text") - (description - "text is a repository of text-related packages related to internationalization -(i18n) and localization (l10n), such as character encodings, text -transformations, and locale-specific text handling.") - (license license:bsd-3))) - -(define-public go-golang-org-x-net-0.0.0-20201021035429-f5854403a974 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20201021035429-f5854403a974") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1vw63zpmhi337f3gc432x3wkib4j2ia8dy7if31wxwb9dgqvy222")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) - ("go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f" - ,go-golang-org-x-sys-0.0.0-20200930185726-fdedc70b468f) - ("go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9" - ,go-golang-org-x-crypto-0.0.0-20200622213623-75b288015ac9))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9 - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20201020160332-67f06af15bc9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "093p4panc808ak5bamzz7m9nb0xxib7778jpnr6f0xkz1n4fzyw5")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the ones -provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20210119212857-b64e53b001e4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "16in6bazi0frdkzhqxyvmw7qcvzjavq21dnz9bmrqq8d4dpd2j44")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1 - (package - (name "go-golang-org-x-xerrors") - (version "0.0.0-20200804184101-5ec99f83aff1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/xerrors") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1dbzc3gmf2haazpv7cgmv97rq40g2xzwbglc17vas8dwhgwgwrzb")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/xerrors")) - (home-page "https://golang.org/x/xerrors") - (synopsis #f) - (description "Package xerrors implements functions to manipulate errors.") - (license license:bsd-3))) - -(define-public go-golang-org-x-tools-0.1.0 - (package - (name "go-golang-org-x-tools") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1asrm22kv5x891qkbpap8alg612k321jbs1akc0vwsan251gm507")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1" - ,go-golang-org-x-xerrors-0.0.0-20200804184101-5ec99f83aff1) - ("go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4" - ,go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4) - ("go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9" - ,go-golang-org-x-sync-0.0.0-20201020160332-67f06af15bc9) - ("go-golang-org-x-net-0.0.0-20201021035429-f5854403a974" - ,go-golang-org-x-net-0.0.0-20201021035429-f5854403a974) - ("go-golang-org-x-mod-0.3.0" ,go-golang-org-x-mod-0.3.0) - ("go-github-com-yuin-goldmark-1.2.1" - ,go-github-com-yuin-goldmark-1.2.1))) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) - -(define-public go-gotest-tools-v3-3.1.0 - (package - (name "go-gotest-tools-v3") - (version "3.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gotestyourself/gotest.tools") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0jk2grk2q19k453m76hn2bsq9i73yk63drlfjg1imvhmmcl88872")))) - (build-system go-build-system) - (arguments - '(#:import-path "gotest.tools/v3" #:unpack-path "gotest.tools/v3")) - (propagated-inputs - `(("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) - ("go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4" - ,go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4) - ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-google-go-cmp-0.5.5" - ,go-github-com-google-go-cmp-0.5.5))) - (home-page "https://gotest.tools/v3") - (synopsis "gotest.tools") - (description - "Package gotesttools is a collection of packages to augment `testing` and support -common patterns.") - (license license:asl2.0))) - -(define-public go-github-com-creack-pty-1.1.15 - (package - (name "go-github-com-creack-pty") - (version "1.1.15") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/creack/pty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1j5w51ammp5rp90bhdwqi216dxmndpmf4gf3gim75qls52qj8j2r")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/creack/pty")) - (home-page "https://github.com/creack/pty") - (synopsis "pty") - (description - "Package pty provides functions for working with Unix terminals.") - (license license:expat))) - -(define-public go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543 - (package - (name "go-golang-org-x-xerrors") - (version "0.0.0-20191204190536-9bdfabe68543") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/xerrors") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1yjfi1bk9xb81lqn85nnm13zz725wazvrx3b50hx19qmwg7a4b0c")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/xerrors")) - (home-page "https://golang.org/x/xerrors") - (synopsis #f) - (description "Package xerrors implements functions to manipulate errors.") - (license license:bsd-3))) - -(define-public go-github-com-google-go-cmp-0.5.6 - (package - (name "go-github-com-google-go-cmp") - (version "0.5.6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-cmp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0lrb0pacv5iy3m6fn1qb3nv7zwimfhpzqq8f6hwpwx88cx3g6p1s")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/go-cmp")) - (propagated-inputs - `(("go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543" - ,go-golang-org-x-xerrors-0.0.0-20191204190536-9bdfabe68543))) - (home-page "https://github.com/google/go-cmp") - (synopsis "Package for equality of Go values") - (description - "This package is intended to be a more powerful and safer alternative to -@code{reflect.DeepEqual} for comparing whether two values are semantically -equal.") - (license license:bsd-3))) - -(define-public go-github-com-frankban-quicktest-1.13.1 - (package - (name "go-github-com-frankban-quicktest") - (version "1.13.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/frankban/quicktest") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1x0v98s4m0zy9m4h7x3kmx30vxk2ah496qb81mnmzv98h4cgdki0")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/frankban/quicktest")) - (propagated-inputs - `(("go-github-com-kr-pretty-0.3.0" ,go-github-com-kr-pretty-0.3.0) - ("go-github-com-google-go-cmp-0.5.6" - ,go-github-com-google-go-cmp-0.5.6))) - (home-page "https://github.com/frankban/quicktest") - (synopsis "quicktest") - (description - "Package quicktest provides a collection of Go helpers for writing tests.") - (license license:expat))) - -(define-public go-github-com-google-renameio-1.0.1 - (package - (name "go-github-com-google-renameio") - (version "1.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/renameio") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1qn84nra9nxqyqg4i496b6ijbhnxvx66hdndwl7qh7r6q8lz2ba5")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/renameio")) - (home-page "https://github.com/google/renameio") - (synopsis "Atomicity vs durability") - (description - "Package renameio provides a way to atomically create or replace a file or -symbolic link.") - (license license:asl2.0))) - -(define-public go-github-com-creack-pty-1.1.9 - (package - (name "go-github-com-creack-pty") - (version "1.1.9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/creack/pty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1v52599qq76dwq742mffakzj6mxqqccv2szn3hjicjld56nmd2d3")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/creack/pty")) - (home-page "https://github.com/creack/pty") - (synopsis "pty") - (description - "Package pty provides functions for working with Unix terminals.") - (license license:expat))) - -(define-public go-github-com-kr-text-0.2.0 - (package - (name "go-github-com-kr-text") - (version "0.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hf58ypz6rxsw6nx3i856whir9lvy4sdx946wbw1nfaf2rdmr9vx")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/text")) - (propagated-inputs - `(("go-github-com-creack-pty-1.1.9" ,go-github-com-creack-pty-1.1.9))) - (home-page "https://github.com/kr/text") - (synopsis #f) - (description - "Package text provides rudimentary functions for manipulating text in paragraphs.") - (license license:expat))) - -(define-public go-github-com-rogpeppe-go-internal-1.6.1 - (package - (name "go-github-com-rogpeppe-go-internal") - (version "1.6.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/rogpeppe/go-internal") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "00j2vpp1bsggdvw1winkz23mg0q6drjiir5q0k49pmqx1sh7106l")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/rogpeppe/go-internal")) - (propagated-inputs - `(("go-gopkg-in-errgo-v2-2.1.0" ,go-gopkg-in-errgo-v2-2.1.0))) - (home-page "https://github.com/rogpeppe/go-internal") - (synopsis #f) - (description - "This repository factors out an opinionated selection of internal packages and -functionality from the Go standard library. Currently this consists mostly of -packages and testing code from within the Go tool implementation.") - (license license:bsd-3))) - -(define-public go-github-com-kr-pretty-0.3.0 - (package - (name "go-github-com-kr-pretty") - (version "0.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/pretty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0vp5ijbapw8j52c3l992m1wm8nhl23n68xk3lqxhad3srxmdb9z4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/pretty")) - (propagated-inputs - `(("go-github-com-rogpeppe-go-internal-1.6.1" - ,go-github-com-rogpeppe-go-internal-1.6.1) - ("go-github-com-kr-text-0.2.0" ,go-github-com-kr-text-0.2.0))) - (home-page "https://github.com/kr/pretty") - (synopsis #f) - (description - "Package pretty provides pretty-printing for Go values. This is useful during -debugging, to avoid wrapping long output lines in the terminal.") - (license license:expat))) - -(define-public go-github-com-pkg-diff-0.0.0-20210226163009-20ebb0f2a09e - (package - (name "go-github-com-pkg-diff") - (version "0.0.0-20210226163009-20ebb0f2a09e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pkg/diff") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1g3dzgwhz4fx3ddpsv7fsa4r1v5clsp2lbw2qrkdk9y1vc5gi8yi")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pkg/diff")) - (home-page "https://github.com/pkg/diff") - (synopsis "diff") - (description - "Package diff contains high level routines that generate a textual diff.") - (license license:bsd-3))) - -(define-public go-github-com-kr-pty-1.1.1 - (package - (name "go-github-com-kr-pty") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/pty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0383f0mb9kqjvncqrfpidsf8y6ns5zlrc91c6a74xpyxjwvzl2y6")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/pty")) - (home-page "https://github.com/kr/pty") - (synopsis "pty") - (description - "Package pty is a wrapper for github.com/creack/pty, which provides functions for -working with Unix terminals.") - (license license:expat))) - -(define-public go-github-com-kr-text-0.1.0 - (package - (name "go-github-com-kr-text") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1gm5bsl01apvc84bw06hasawyqm4q84vx1pm32wr9jnd7a8vjgj1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/text")) - (propagated-inputs - `(("go-github-com-kr-pty-1.1.1" ,go-github-com-kr-pty-1.1.1))) - (home-page "https://github.com/kr/text") - (synopsis #f) - (description - "Package text provides rudimentary functions for manipulating text in paragraphs.") - (license license:expat))) - -(define-public go-github-com-kr-pretty-0.1.0 - (package - (name "go-github-com-kr-pretty") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/pretty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18m4pwg2abd0j9cn5v3k2ksk9ig4vlwxmlw9rrglanziv9l967qp")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/pretty")) - (propagated-inputs - `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) - (home-page "https://github.com/kr/pretty") - (synopsis #f) - (description - "Package pretty provides pretty-printing for Go values. This is useful during -debugging, to avoid wrapping long output lines in the terminal.") - (license license:expat))) - -(define-public go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127 - (package - (name "go-gopkg-in-check-v1") - (version "1.0.0-20180628173108-788fd7840127") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/check.v1") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0v3bim0j375z81zrpr5qv42knqs0y2qv2vkjiqi5axvb78slki1a")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) - (home-page "https://gopkg.in/check.v1") - (synopsis "Instructions") - (description - "Package check is a rich testing extension for Go's testing package.") - (license license:bsd-2))) - -(define-public go-gopkg-in-errgo-v2-2.1.0 - (package - (name "go-gopkg-in-errgo-v2") - (version "2.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/errgo.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "065mbihiy7q67wnql0bzl9y1kkvck5ivra68254zbih52jxwrgr2")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/errgo.v2" #:unpack-path "gopkg.in/errgo.v2")) - (propagated-inputs - `(("go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127" - ,go-gopkg-in-check-v1-1.0.0-20180628173108-788fd7840127) - ("go-github-com-kr-pretty-0.1.0" ,go-github-com-kr-pretty-0.1.0))) - (home-page "https://gopkg.in/errgo.v2") - (synopsis #f) - (description - "Package errgo provides some primitives for error creation and handling.") - (license license:bsd-3))) - -(define-public go-github-com-rogpeppe-go-internal-1.8.1-0.20210923151022-86f73c517451 - (package - (name "go-github-com-rogpeppe-go-internal") - (version "1.8.1-0.20210923151022-86f73c517451") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/rogpeppe/go-internal") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1qswk3kaif0n8q125dvd8rfcyc3wqw71yi16fc26336kbwjzrc9p")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/rogpeppe/go-internal")) - (propagated-inputs - `(("go-gopkg-in-errgo-v2-2.1.0" ,go-gopkg-in-errgo-v2-2.1.0) - ("go-github-com-pkg-diff-0.0.0-20210226163009-20ebb0f2a09e" - ,go-github-com-pkg-diff-0.0.0-20210226163009-20ebb0f2a09e))) - (home-page "https://github.com/rogpeppe/go-internal") - (synopsis #f) - (description - "This repository factors out an opinionated selection of internal packages and -functionality from the Go standard library. Currently this consists mostly of -packages and testing code from within the Go tool implementation.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c - (package - (name "go-golang-org-x-sync") - (version "0.0.0-20210220032951-036812b2e83c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sync") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1gl202py3s4gl6arkaxlf8qa6f0jyyg2f95m6f89qnfmr416h85b")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sync")) - (home-page "https://golang.org/x/sync") - (synopsis "Go Sync") - (description - "This repository provides Go concurrency primitives in addition to the ones -provided by the language and \"sync\" and \"sync/atomic\" packages.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20210925032602-92d5a993a665 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20210925032602-92d5a993a665") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ps9wq5vz0ilsjxd05glnkkmbfxzpsqvjp0mgm2y1hm6ql5qfpn5")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20210615035016-665e8c7367d1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "11n848csibdbv7b46zjyf4l7sphg37n9sjzqfy1ds7p1jyakwmnv")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) - -(define-public go-golang-org-x-term-0.0.0-20210916214954-140adaaadfaf - (package - (name "go-golang-org-x-term") - (version "0.0.0-20210916214954-140adaaadfaf") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/term") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1rcdx2q92pzpmdyzdlzpq9flc3ibfi3m1rni7w4qlmlq569s6wh3")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/term")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1" - ,go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1))) - (home-page "https://golang.org/x/term") - (synopsis "Go terminal/console support") - (description - "Package term provides support functions for dealing with terminals, as commonly -found on UNIX systems.") - (license license:bsd-3))) - -(define-public go-mvdan-cc-editorconfig-0.2.0 - (package - (name "go-mvdan-cc-editorconfig") - (version "0.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mvdan/editorconfig") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1rav1rp8pi921gsffqr2wjdhbr12w81g31yv6iw4yb1zyh726qqg")))) - (build-system go-build-system) - (arguments '(#:import-path "mvdan.cc/editorconfig")) - (home-page "https://mvdan.cc/editorconfig") - (synopsis "editorconfig") - (description - "Package editorconfig allows parsing and using EditorConfig files, as defined in -@url{https://editorconfig.org/,https://editorconfig.org/}.") - (license license:bsd-3))) - -(define-public go-mvdan-cc-sh-v3-3.4.3-0.20220202175809-113ed667a8a7 - (package - (name "go-mvdan-cc-sh-v3") - (version "3.4.3-0.20220202175809-113ed667a8a7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mvdan/sh") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1k5113qqm20x58838k8f0ry3v1hinahjf2yl8y4450922yy0mq2k")))) - (build-system go-build-system) - (arguments - '(#:import-path "mvdan.cc/sh/v3" #:unpack-path "mvdan.cc/sh/v3")) - (propagated-inputs - `(("go-mvdan-cc-editorconfig-0.2.0" ,go-mvdan-cc-editorconfig-0.2.0) - ("go-golang-org-x-term-0.0.0-20210916214954-140adaaadfaf" - ,go-golang-org-x-term-0.0.0-20210916214954-140adaaadfaf) - ("go-golang-org-x-sys-0.0.0-20210925032602-92d5a993a665" - ,go-golang-org-x-sys-0.0.0-20210925032602-92d5a993a665) - ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" - ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) - ("go-github-com-rogpeppe-go-internal-1.8.1-0.20210923151022-86f73c517451" - ,go-github-com-rogpeppe-go-internal-1.8.1-0.20210923151022-86f73c517451) - ("go-github-com-pkg-diff-0.0.0-20210226163009-20ebb0f2a09e" - ,go-github-com-pkg-diff-0.0.0-20210226163009-20ebb0f2a09e) - ("go-github-com-kr-pretty-0.3.0" ,go-github-com-kr-pretty-0.3.0) - ("go-github-com-google-renameio-1.0.1" - ,go-github-com-google-renameio-1.0.1) - ("go-github-com-frankban-quicktest-1.13.1" - ,go-github-com-frankban-quicktest-1.13.1) - ("go-github-com-creack-pty-1.1.15" ,go-github-com-creack-pty-1.1.15))) - (home-page "https://mvdan.cc/sh/v3") - (synopsis "sh") - (description - "This package provides a shell parser, formatter, and interpreter. Supports -@url{https://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html,POSIX -Shell}, @url{https://www.gnu.org/software/bash/,Bash}, and -@url{http://www.mirbsd.org/mksh.htm,mksh}. Requires Go 1.16 or later.") - (license license:bsd-3))) - -(define-public go-github-com-opencontainers-image-spec-1.0.2-0.20211117181255-693428a734f5 - (package - (name "go-github-com-opencontainers-image-spec") - (version "1.0.2-0.20211117181255-693428a734f5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/image-spec") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1w9fmamky30idjbqs78qhds6d5b9gdy6wzcxx6fhmpm2159dv62b")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/image-spec")) - (home-page "https://github.com/opencontainers/image-spec") - (synopsis "OCI Image Format Specification") - (description - "The OCI Image Format project creates and maintains the software shipping -container image format spec (OCI Image Format).") - (license license:asl2.0))) - (define-public go-github-com-yvasiyarov-gorelic-0.0.6 (package (name "go-github-com-yvasiyarov-gorelic") @@ -13046,462 +47,3 @@ container image format spec (OCI Image Format).") a lot of metrics about Go scheduler, garbage collector and memory allocator and send them to NewRelic.") (license license:bsd-2))) - -(define-public go-github-com-moby-sys-0.0.0-20220308220145-03355939d693 - (package - (name "go-github-com-moby-sys") - (version "0.0.0-20220308220145-03355939d693") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/moby/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ns4bav4n0k93nwz898dmcrz9zm4fa08sxyzhi7wqj4f8mpz4fam")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/moby/sys")) - (home-page "https://github.com/moby/sys") - (synopsis #f) - (description #f) - (license license:asl2.0))) -(define-public go-github-com-apptainer-sif-v2-2.3.2 - (package - (name "go-github-com-apptainer-sif-v2") - (version "2.3.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/apptainer/sif") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "10cmvgyjxnfgw5661n1zbdr8zs29rx9izsr1bbnnyjr9kdqdhfg1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/apptainer/sif/v2")) - (propagated-inputs - `(("go-gopkg-in-warnings-v0-0.1.2" ,go-gopkg-in-warnings-v0-0.1.2) - ("go-golang-org-x-sys-0.0.0-20211205182925-97ca703d548d" - ,go-golang-org-x-sys-0.0.0-20211205182925-97ca703d548d) - ("go-golang-org-x-net-0.0.0-20210813160813-60bc85c4be6d" - ,go-golang-org-x-net-0.0.0-20210813160813-60bc85c4be6d) - ("go-golang-org-x-crypto-0.0.0-20210817164053-32db794688a5" - ,go-golang-org-x-crypto-0.0.0-20210817164053-32db794688a5) - ("go-github-com-xanzy-ssh-agent-0.3.0" - ,go-github-com-xanzy-ssh-agent-0.3.0) - ("go-github-com-sergi-go-diff-1.1.0" - ,go-github-com-sergi-go-diff-1.1.0) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-mitchellh-go-homedir-1.1.0" - ,go-github-com-mitchellh-go-homedir-1.1.0) - ("go-github-com-kevinburke-ssh-config-0.0.0-20201106050909-4977a11b4351" - ,go-github-com-kevinburke-ssh-config-0.0.0-20201106050909-4977a11b4351) - ("go-github-com-jbenet-go-context-0.0.0-20150711004518-d14ea06fba99" - ,go-github-com-jbenet-go-context-0.0.0-20150711004518-d14ea06fba99) - ("go-github-com-inconshreveable-mousetrap-1.0.0" - ,go-github-com-inconshreveable-mousetrap-1.0.0) - ("go-github-com-imdario-mergo-0.3.12" - ,go-github-com-imdario-mergo-0.3.12) - ("go-github-com-go-git-go-billy-v5-5.3.1" - ,go-github-com-go-git-go-billy-v5-5.3.1) - ("go-github-com-go-git-gcfg-1.5.0" ,go-github-com-go-git-gcfg-1.5.0) - ("go-github-com-emirpasic-gods-1.12.0" - ,go-github-com-emirpasic-gods-1.12.0) - ("go-github-com-acomagu-bufpipe-1.0.3" - ,go-github-com-acomagu-bufpipe-1.0.3) - ("go-github-com-microsoft-go-winio-0.4.16" - ,go-github-com-microsoft-go-winio-0.4.16) - ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) - ("go-github-com-spf13-cobra-1.3.0" ,go-github-com-spf13-cobra-1.3.0) - ("go-github-com-sebdah-goldie-v2-2.5.3" - ,go-github-com-sebdah-goldie-v2-2.5.3) - ("go-github-com-magefile-mage-1.12.1" - ,go-github-com-magefile-mage-1.12.1) - ("go-github-com-google-uuid-1.3.0" ,go-github-com-google-uuid-1.3.0) - ("go-github-com-go-git-go-git-v5-5.4.2" - ,go-github-com-go-git-go-git-v5-5.4.2) - ("go-github-com-blang-semver-v4-4.0.0" - ,go-github-com-blang-semver-v4-4.0.0) - ("go-github-com-protonmail-go-crypto-0.0.0-20220113124808-70ae35bab23f" - ,go-github-com-protonmail-go-crypto-0.0.0-20220113124808-70ae35bab23f))) - (home-page "https://github.com/apptainer/sif") - (synopsis "The Singularity Image Format (SIF)") - (description - "This module contains an open source implementation of the Singularity Image -Format (SIF) that makes it easy to create complete and encapsulated container -environments stored in a single file.") - (license license:bsd-3))) -(define-public go-github-com-containerd-containerd-1.6.0 - (package - (name "go-github-com-containerd-containerd") - (version "1.6.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/containerd") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1wqmb124l8hjh7a053xjgh1kwblczg6q99l4vh6pi5zmnmdn67iv")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/containerd")) - (propagated-inputs - `(("go-google-golang-org-genproto-0.0.0-20200224152610-e50cd9704f63" - ,go-google-golang-org-genproto-0.0.0-20200224152610-e50cd9704f63) - ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) - ("go-github-com-gogo-googleapis-1.3.2" - ,go-github-com-gogo-googleapis-1.3.2) - ("go-k8s-io-utils-0.0.0-20210930125809-cb0fa318a74b" - ,go-k8s-io-utils-0.0.0-20210930125809-cb0fa318a74b) - ("go-k8s-io-klog-v2-2.30.0" ,go-k8s-io-klog-v2-2.30.0) - ("go-k8s-io-cri-api-0.23.1" ,go-k8s-io-cri-api-0.23.1) - ("go-k8s-io-component-base-0.22.5" ,go-k8s-io-component-base-0.22.5) - ("go-k8s-io-client-go-0.22.5" ,go-k8s-io-client-go-0.22.5) - ("go-k8s-io-apiserver-0.22.5" ,go-k8s-io-apiserver-0.22.5) - ("go-k8s-io-apimachinery-0.22.5" ,go-k8s-io-apimachinery-0.22.5) - ("go-k8s-io-api-0.22.5" ,go-k8s-io-api-0.22.5) - ("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) - ("go-google-golang-org-protobuf-1.27.1" - ,go-google-golang-org-protobuf-1.27.1) - ("go-google-golang-org-grpc-1.43.0" ,go-google-golang-org-grpc-1.43.0) - ("go-golang-org-x-term-0.0.0-20210615171337-6886f2dfbf5b" - ,go-golang-org-x-term-0.0.0-20210615171337-6886f2dfbf5b) - ("go-golang-org-x-sys-0.0.0-20211216021012-1d35b9e2eb4e" - ,go-golang-org-x-sys-0.0.0-20211216021012-1d35b9e2eb4e) - ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" - ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) - ("go-golang-org-x-oauth2-0.0.0-20210819190943-2bc19b11175f" - ,go-golang-org-x-oauth2-0.0.0-20210819190943-2bc19b11175f) - ("go-golang-org-x-net-0.0.0-20211216030914-fe4d6282115f" - ,go-golang-org-x-net-0.0.0-20211216030914-fe4d6282115f) - ("go-golang-org-x-crypto-0.0.0-20210817164053-32db794688a5" - ,go-golang-org-x-crypto-0.0.0-20210817164053-32db794688a5) - ("go-go-opentelemetry-io-otel-trace-1.3.0" - ,go-go-opentelemetry-io-otel-trace-1.3.0) - ("go-go-opentelemetry-io-otel-sdk-1.3.0" - ,go-go-opentelemetry-io-otel-sdk-1.3.0) - ("go-go-opentelemetry-io-otel-exporters-otlp-otlptrace-otlptracehttp-1.3.0" - ,go-go-opentelemetry-io-otel-exporters-otlp-otlptrace-otlptracehttp-1.3.0) - ("go-go-opentelemetry-io-otel-exporters-otlp-otlptrace-otlptracegrpc-1.3.0" - ,go-go-opentelemetry-io-otel-exporters-otlp-otlptrace-otlptracegrpc-1.3.0) - ("go-go-opentelemetry-io-otel-exporters-otlp-otlptrace-1.3.0" - ,go-go-opentelemetry-io-otel-exporters-otlp-otlptrace-1.3.0) - ("go-go-opentelemetry-io-otel-1.3.0" - ,go-go-opentelemetry-io-otel-1.3.0) - ("go-go-opentelemetry-io-contrib-instrumentation-google-golang-org-grpc-otelgrpc-0.28.0" - ,go-go-opentelemetry-io-contrib-instrumentation-google-golang-org-grpc-otelgrpc-0.28.0) - ("go-go-etcd-io-bbolt-1.3.6" ,go-go-etcd-io-bbolt-1.3.6) - ("go-github-com-vishvananda-netlink-1.1.1-0.20210330154013-f5de75959ad5" - ,go-github-com-vishvananda-netlink-1.1.1-0.20210330154013-f5de75959ad5) - ("go-github-com-tchap-go-patricia-2.2.6+incompatible" - ,go-github-com-tchap-go-patricia-2.2.6+incompatible) - ("go-github-com-stretchr-testify-1.7.0" - ,go-github-com-stretchr-testify-1.7.0) - ("go-github-com-sirupsen-logrus-1.8.1" - ,go-github-com-sirupsen-logrus-1.8.1) - ("go-github-com-satori-go-uuid-1.2.0" - ,go-github-com-satori-go-uuid-1.2.0) - ("go-github-com-prometheus-client-golang-1.11.0" - ,go-github-com-prometheus-client-golang-1.11.0) - ("go-github-com-pelletier-go-toml-1.9.3" - ,go-github-com-pelletier-go-toml-1.9.3) - ("go-github-com-opencontainers-selinux-1.10.0" - ,go-github-com-opencontainers-selinux-1.10.0) - ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417" - ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417) - ("go-github-com-opencontainers-runc-1.1.0" - ,go-github-com-opencontainers-runc-1.1.0) - ("go-github-com-opencontainers-image-spec-1.0.2-0.20211117181255-693428a734f5" - ,go-github-com-opencontainers-image-spec-1.0.2-0.20211117181255-693428a734f5) - ("go-github-com-opencontainers-go-digest-1.0.0" - ,go-github-com-opencontainers-go-digest-1.0.0) - ("go-github-com-moby-sys-symlink-0.2.0" - ,go-github-com-moby-sys-symlink-0.2.0) - ("go-github-com-moby-sys-signal-0.6.0" - ,go-github-com-moby-sys-signal-0.6.0) - ("go-github-com-moby-sys-mountinfo-0.5.0" - ,go-github-com-moby-sys-mountinfo-0.5.0) - ("go-github-com-moby-locker-1.0.1" ,go-github-com-moby-locker-1.0.1) - ("go-github-com-klauspost-compress-1.11.13" - ,go-github-com-klauspost-compress-1.11.13) - ("go-github-com-json-iterator-go-1.1.12" - ,go-github-com-json-iterator-go-1.1.12) - ("go-github-com-intel-goresctrl-0.2.0" - ,go-github-com-intel-goresctrl-0.2.0) - ("go-github-com-imdario-mergo-0.3.12" - ,go-github-com-imdario-mergo-0.3.12) - ("go-github-com-hashicorp-go-multierror-1.1.1" - ,go-github-com-hashicorp-go-multierror-1.1.1) - ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" - ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) - ("go-github-com-grpc-ecosystem-go-grpc-middleware-1.3.0" - ,go-github-com-grpc-ecosystem-go-grpc-middleware-1.3.0) - ("go-github-com-google-uuid-1.2.0" ,go-github-com-google-uuid-1.2.0) - ("go-github-com-google-go-cmp-0.5.6" - ,go-github-com-google-go-cmp-0.5.6) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2) - ("go-github-com-go-logr-stdr-1.2.2" ,go-github-com-go-logr-stdr-1.2.2) - ("go-github-com-fsnotify-fsnotify-1.4.9" - ,go-github-com-fsnotify-fsnotify-1.4.9) - ("go-github-com-emicklei-go-restful-2.9.5+incompatible" - ,go-github-com-emicklei-go-restful-2.9.5+incompatible) - ("go-github-com-docker-go-units-0.4.0" - ,go-github-com-docker-go-units-0.4.0) - ("go-github-com-docker-go-metrics-0.0.1" - ,go-github-com-docker-go-metrics-0.0.1) - ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" - ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1) - ("go-github-com-coreos-go-systemd-v22-22.3.2" - ,go-github-com-coreos-go-systemd-v22-22.3.2) - ("go-github-com-containernetworking-plugins-1.0.1" - ,go-github-com-containernetworking-plugins-1.0.1) - ("go-github-com-containerd-zfs-1.0.0" - ,go-github-com-containerd-zfs-1.0.0) - ("go-github-com-containerd-typeurl-1.0.2" - ,go-github-com-containerd-typeurl-1.0.2) - ("go-github-com-containerd-ttrpc-1.1.0" - ,go-github-com-containerd-ttrpc-1.1.0) - ("go-github-com-containerd-nri-0.1.0" - ,go-github-com-containerd-nri-0.1.0) - ("go-github-com-containerd-imgcrypt-1.1.3" - ,go-github-com-containerd-imgcrypt-1.1.3) - ("go-github-com-containerd-go-runc-1.0.0" - ,go-github-com-containerd-go-runc-1.0.0) - ("go-github-com-containerd-go-cni-1.1.3" - ,go-github-com-containerd-go-cni-1.1.3) - ("go-github-com-containerd-fifo-1.0.0" - ,go-github-com-containerd-fifo-1.0.0) - ("go-github-com-containerd-continuity-0.2.2" - ,go-github-com-containerd-continuity-0.2.2) - ("go-github-com-containerd-console-1.0.3" - ,go-github-com-containerd-console-1.0.3) - ("go-github-com-containerd-cgroups-1.0.3" - ,go-github-com-containerd-cgroups-1.0.3) - ("go-github-com-containerd-btrfs-1.0.0" - ,go-github-com-containerd-btrfs-1.0.0) - ("go-github-com-containerd-aufs-1.0.0" - ,go-github-com-containerd-aufs-1.0.0) - ("go-github-com-microsoft-hcsshim-0.9.2" - ,go-github-com-microsoft-hcsshim-0.9.2) - ("go-github-com-microsoft-go-winio-0.5.1" - ,go-github-com-microsoft-go-winio-0.5.1) - ("go-github-com-adalogics-go-fuzz-headers-0.0.0-20210715213245-6c3934b029d8" - ,go-github-com-adalogics-go-fuzz-headers-0.0.0-20210715213245-6c3934b029d8) - ("go-cloud-google-com-go-0.81.0" ,go-cloud-google-com-go-0.81.0))) - (home-page "https://github.com/containerd/containerd") - (synopsis "Now Recruiting") - (description - "containerd is an industry-standard container runtime with an emphasis on -simplicity, robustness and portability. It is available as a daemon for Linux -and Windows, which can manage the complete container lifecycle of its host -system: image transfer and storage, container execution and supervision, -low-level storage and network attachments, etc.") - (license license:asl2.0))) -(define-public go-github-com-containernetworking-plugins-1.1.0 - (package - (name "go-github-com-containernetworking-plugins") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containernetworking/plugins") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "10c9sxi5nq88772ql35a3vy5m1wrdyji4imc4ysl27malcqxhiik")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containernetworking/plugins")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) - ("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" - ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) - ("go-golang-org-x-text-0.3.6" ,go-golang-org-x-text-0.3.6) - ("go-golang-org-x-net-0.0.0-20210428140749-89ef3d95e781" - ,go-golang-org-x-net-0.0.0-20210428140749-89ef3d95e781) - ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) - ("go-github-com-vishvananda-netns-0.0.0-20210104183010-2eb08e3e575f" - ,go-github-com-vishvananda-netns-0.0.0-20210104183010-2eb08e3e575f) - ("go-github-com-sirupsen-logrus-1.8.1" - ,go-github-com-sirupsen-logrus-1.8.1) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-nxadm-tail-1.4.8" ,go-github-com-nxadm-tail-1.4.8) - ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" - ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2) - ("go-github-com-fsnotify-fsnotify-1.4.9" - ,go-github-com-fsnotify-fsnotify-1.4.9) - ("go-github-com-containerd-cgroups-1.0.1" - ,go-github-com-containerd-cgroups-1.0.1) - ("go-github-com-microsoft-go-winio-0.4.17" - ,go-github-com-microsoft-go-winio-0.4.17) - ("go-golang-org-x-sys-0.0.0-20210809222454-d867a43fc93e" - ,go-golang-org-x-sys-0.0.0-20210809222454-d867a43fc93e) - ("go-github-com-vishvananda-netlink-1.1.1-0.20210330154013-f5de75959ad5" - ,go-github-com-vishvananda-netlink-1.1.1-0.20210330154013-f5de75959ad5) - ("go-github-com-safchain-ethtool-0.0.0-20210803160452-9aa261dae9b1" - ,go-github-com-safchain-ethtool-0.0.0-20210803160452-9aa261dae9b1) - ("go-github-com-onsi-gomega-1.15.0" ,go-github-com-onsi-gomega-1.15.0) - ("go-github-com-onsi-ginkgo-1.16.4" ,go-github-com-onsi-ginkgo-1.16.4) - ("go-github-com-networkplumbing-go-nft-0.2.0" - ,go-github-com-networkplumbing-go-nft-0.2.0) - ("go-github-com-mattn-go-shellwords-1.0.12" - ,go-github-com-mattn-go-shellwords-1.0.12) - ("go-github-com-godbus-dbus-v5-5.0.4" - ,go-github-com-godbus-dbus-v5-5.0.4) - ("go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5" - ,go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5) - ("go-github-com-d2g-dhcp4client-1.0.0" - ,go-github-com-d2g-dhcp4client-1.0.0) - ("go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c" - ,go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c) - ("go-github-com-coreos-go-systemd-v22-22.3.2" - ,go-github-com-coreos-go-systemd-v22-22.3.2) - ("go-github-com-coreos-go-iptables-0.6.0" - ,go-github-com-coreos-go-iptables-0.6.0) - ("go-github-com-containernetworking-cni-1.0.1" - ,go-github-com-containernetworking-cni-1.0.1) - ("go-github-com-buger-jsonparser-1.1.1" - ,go-github-com-buger-jsonparser-1.1.1) - ("go-github-com-alexflint-go-filemutex-1.1.0" - ,go-github-com-alexflint-go-filemutex-1.1.0) - ("go-github-com-microsoft-hcsshim-0.8.20" - ,go-github-com-microsoft-hcsshim-0.8.20))) - (home-page "https://github.com/containernetworking/plugins") - (synopsis "Plugins") - (description - "Some CNI network plugins, maintained by the containernetworking team. For more -information, see the @url{https://www.cni.dev,CNI website}.") - (license license:asl2.0))) -(define-public go-github-com-containers-image-v5-5.19.1 - (package - (name "go-github-com-containers-image-v5") - (version "5.19.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containers/image") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0wyq3ns6yrzi9bff2kb8p3rppw652m4ffq8374sdjkn7f39z4inf")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containers/image/v5")) - (propagated-inputs - `(("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" - ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) - ("go-golang-org-x-sys-0.0.0-20220114195835-da31bd327af9" - ,go-golang-org-x-sys-0.0.0-20220114195835-da31bd327af9) - ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" - ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) - ("go-golang-org-x-net-0.0.0-20211112202133-69e39bad7dc2" - ,go-golang-org-x-net-0.0.0-20211112202133-69e39bad7dc2) - ("go-golang-org-x-crypto-0.0.0-20211215153901-e495a2d5b3d3" - ,go-golang-org-x-crypto-0.0.0-20211215153901-e495a2d5b3d3) - ("go-go-etcd-io-bbolt-1.3.6" ,go-go-etcd-io-bbolt-1.3.6) - ("go-github-com-xeipuuv-gojsonschema-1.2.0" - ,go-github-com-xeipuuv-gojsonschema-1.2.0) - ("go-github-com-xeipuuv-gojsonpointer-0.0.0-20190809123943-df4f5c81cb3b" - ,go-github-com-xeipuuv-gojsonpointer-0.0.0-20190809123943-df4f5c81cb3b) - ("go-github-com-vbauerster-mpb-v7-7.3.2" - ,go-github-com-vbauerster-mpb-v7-7.3.2) - ("go-github-com-vbatts-tar-split-0.11.2" - ,go-github-com-vbatts-tar-split-0.11.2) - ("go-github-com-ulikunitz-xz-0.5.10" - ,go-github-com-ulikunitz-xz-0.5.10) - ("go-github-com-sylabs-sif-v2-2.3.1" - ,go-github-com-sylabs-sif-v2-2.3.1) - ("go-github-com-stretchr-testify-1.7.0" - ,go-github-com-stretchr-testify-1.7.0) - ("go-github-com-sirupsen-logrus-1.8.1" - ,go-github-com-sirupsen-logrus-1.8.1) - ("go-github-com-proglottis-gpgme-0.1.1" - ,go-github-com-proglottis-gpgme-0.1.1) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-ostreedev-ostree-go-0.0.0-20190702140239-759a8c1ac913" - ,go-github-com-ostreedev-ostree-go-0.0.0-20190702140239-759a8c1ac913) - ("go-github-com-opencontainers-selinux-1.10.0" - ,go-github-com-opencontainers-selinux-1.10.0) - ("go-github-com-opencontainers-image-spec-1.0.3-0.20211202193544-a5463b7f9c84" - ,go-github-com-opencontainers-image-spec-1.0.3-0.20211202193544-a5463b7f9c84) - ("go-github-com-opencontainers-go-digest-1.0.0" - ,go-github-com-opencontainers-go-digest-1.0.0) - ("go-github-com-manifoldco-promptui-0.9.0" - ,go-github-com-manifoldco-promptui-0.9.0) - ("go-github-com-klauspost-pgzip-1.2.5" - ,go-github-com-klauspost-pgzip-1.2.5) - ("go-github-com-klauspost-compress-1.14.2" - ,go-github-com-klauspost-compress-1.14.2) - ("go-github-com-imdario-mergo-0.3.12" - ,go-github-com-imdario-mergo-0.3.12) - ("go-github-com-hashicorp-go-multierror-1.1.1" - ,go-github-com-hashicorp-go-multierror-1.1.1) - ("go-github-com-gorilla-mux-1.7.4" ,go-github-com-gorilla-mux-1.7.4) - ("go-github-com-ghodss-yaml-1.0.0" ,go-github-com-ghodss-yaml-1.0.0) - ("go-github-com-docker-libtrust-0.0.0-20160708172513-aabc10ec26b7" - ,go-github-com-docker-libtrust-0.0.0-20160708172513-aabc10ec26b7) - ("go-github-com-docker-go-connections-0.4.0" - ,go-github-com-docker-go-connections-0.4.0) - ("go-github-com-docker-docker-credential-helpers-0.6.4" - ,go-github-com-docker-docker-credential-helpers-0.6.4) - ("go-github-com-docker-docker-20.10.12+incompatible" - ,go-github-com-docker-docker-20.10.12+incompatible) - ("go-github-com-docker-distribution-2.7.1+incompatible" - ,go-github-com-docker-distribution-2.7.1+incompatible) - ("go-github-com-containers-storage-1.38.2" - ,go-github-com-containers-storage-1.38.2) - ("go-github-com-containers-ocicrypt-1.1.2" - ,go-github-com-containers-ocicrypt-1.1.2) - ("go-github-com-containers-libtrust-0.0.0-20190913040956-14b96171aa3b" - ,go-github-com-containers-libtrust-0.0.0-20190913040956-14b96171aa3b) - ("go-github-com-containerd-containerd-1.5.9" - ,go-github-com-containerd-containerd-1.5.9) - ("go-github-com-burntsushi-toml-1.0.0" - ,go-github-com-burntsushi-toml-1.0.0) - ("go-github-com-14rcole-gopopulate-0.0.0-20180821133914-b175b219e774" - ,go-github-com-14rcole-gopopulate-0.0.0-20180821133914-b175b219e774))) - (home-page "https://github.com/containers/image") - (synopsis "") - (description - "The package image provides libraries and commands to interact with container -images.") - (license license:asl2.0))) -(define-public go-github-com-spf13-cobra-1.3.0 - (package - (name "go-github-com-spf13-cobra") - (version "1.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/spf13/cobra") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0j3kj6yxrl2aigixapjl6bi2gmghrj52763wbd7jc079f38wz94n")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/spf13/cobra")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2" ,go-gopkg-in-yaml-v2) - ("go-github-com-spf13-viper" ,go-github-com-spf13-viper) - ("go-github-com-spf13-pflag" ,go-github-com-spf13-pflag) - ("go-github-com-inconshreveable-mousetrap" - ,go-github-com-inconshreveable-mousetrap) - ("go-github-com-cpuguy83-go-md2man-v2" - ,go-github-com-cpuguy83-go-md2man-v2))) - (home-page "https://github.com/spf13/cobra") - (synopsis "Overview") - (description - "Package cobra is a commander providing a simple interface to create powerful -modern CLI interfaces. In addition to providing an interface, Cobra -simultaneously provides a controller to organize your application code.") - (license license:asl2.0))) From 6995f25eb8ecaeb240e8516717dd7ce79ddf74c0 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 25 Mar 2022 10:12:59 +0100 Subject: [PATCH 289/383] adding apptainer 1.0.1 --- glicid/packages/golang.scm | 1681 ++++++++++++++++++++++++++++++++++++ 1 file changed, 1681 insertions(+) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index 0e12e84..1570eb6 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -6,6 +6,1687 @@ #:use-module (guix packages) ) +(define-public go-github-com-netflix-go-expect-0.0.0-20220104043353-73e0943537d2 + (package + (name "go-github-com-netflix-go-expect") + (version "0.0.0-20220104043353-73e0943537d2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/Netflix/go-expect") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0zkvhnc4ii6ygvcsj54ng0kql26rnny7l3hy1w61g88mxjsww1b9")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/Netflix/go-expect")) + (propagated-inputs + `(("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-creack-pty-1.1.17" ,go-github-com-creack-pty-1.1.17))) + (home-page "https://github.com/Netflix/go-expect") + (synopsis "go-expect") + (description + "Package expect provides an expect-like interface to automate control of +applications. It is unlike expect in that it does not spawn or manage process +lifecycle. This package only focuses on expecting output and sending input +through it's psuedoterminal.") + (license license:asl2.0))) +(define-public go-github-com-protonmail-go-crypto-0.0.0-20220113124808-70ae35bab23f + (package + (name "go-github-com-protonmail-go-crypto") + (version "0.0.0-20220113124808-70ae35bab23f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/ProtonMail/go-crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0dpalb7cd2xs0hji80zv378vf8gx4ph7b8xdd05kvbskyw67fb7n")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/ProtonMail/go-crypto")) + (propagated-inputs + `(("go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2" + ,go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2))) + (home-page "https://github.com/ProtonMail/go-crypto") + (synopsis #f) + (description + "This module is backwards compatible with x/crypto/openpgp, so you can simply +replace all imports of @code{golang.org/x/crypto/openpgp} with +@code{github.com/ProtonMail/go-crypto/openpgp}.") + (license license:bsd-3))) +(define-public go-github-com-adigunhammedolalekan-registry-auth-0.0.0-20200730122110-8cde180a3a60 + (package + (name "go-github-com-adigunhammedolalekan-registry-auth") + (version "0.0.0-20200730122110-8cde180a3a60") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/adigunhammedolalekan/registry-auth") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0855a5c0ifi6q2ghb6gax0kwwra5j7pd2lplq4wp8r83dnv4vwj0")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/adigunhammedolalekan/registry-auth")) + (propagated-inputs + `(("go-github-com-sirupsen-logrus-1.4.2" + ,go-github-com-sirupsen-logrus-1.4.2) + ("go-github-com-gorilla-mux-1.7.4" ,go-github-com-gorilla-mux-1.7.4) + ("go-github-com-docker-libtrust-0.0.0-20160708172513-aabc10ec26b7" + ,go-github-com-docker-libtrust-0.0.0-20160708172513-aabc10ec26b7) + ("go-github-com-docker-distribution-2.7.1+incompatible" + ,go-github-com-docker-distribution-2.7.1+incompatible))) + (home-page "https://github.com/adigunhammedolalekan/registry-auth") + (synopsis "registry-auth") + (description + "a package to implements docker registry token authentication server as described +here +[https://github.com/docker/distribution/blob/1b9ab303a477ded9bdd3fc97e9119fa8f9e58fca/docs/spec/auth/index.md]") + (license license:expat))) +(define-public go-github-com-apex-log-1.9.0 + (package + (name "go-github-com-apex-log") + (version "1.9.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/apex/log") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ibqkncnb8wcwilg2kyfyl5541g69rg551iy6m61q6iwdn5vfhi2")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/apex/log")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) + ("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" + ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) + ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) + ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" + ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) + ("go-github-com-tj-go-spin-1.1.0" ,go-github-com-tj-go-spin-1.1.0) + ("go-github-com-tj-go-kinesis-0.0.0-20171128231115-08b17f58cb1b" + ,go-github-com-tj-go-kinesis-0.0.0-20171128231115-08b17f58cb1b) + ("go-github-com-tj-go-elastic-0.0.0-20171221160941-36157cbbebc2" + ,go-github-com-tj-go-elastic-0.0.0-20171221160941-36157cbbebc2) + ("go-github-com-tj-go-buffer-1.1.0" ,go-github-com-tj-go-buffer-1.1.0) + ("go-github-com-tj-assert-0.0.3" ,go-github-com-tj-assert-0.0.3) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-smartystreets-gunit-1.0.0" + ,go-github-com-smartystreets-gunit-1.0.0) + ("go-github-com-smartystreets-go-aws-auth-0.0.0-20180515143844-0c1422d1fdb9" + ,go-github-com-smartystreets-go-aws-auth-0.0.0-20180515143844-0c1422d1fdb9) + ("go-github-com-rogpeppe-fastuuid-1.1.0" + ,go-github-com-rogpeppe-fastuuid-1.1.0) + ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) + ("go-github-com-mattn-go-colorable-0.1.2" + ,go-github-com-mattn-go-colorable-0.1.2) + ("go-github-com-kr-pretty-0.2.0" ,go-github-com-kr-pretty-0.2.0) + ("go-github-com-jpillora-backoff-0.0.0-20180909062703-3050d21c67d7" + ,go-github-com-jpillora-backoff-0.0.0-20180909062703-3050d21c67d7) + ("go-github-com-google-uuid-1.1.1" ,go-github-com-google-uuid-1.1.1) + ("go-github-com-golang-protobuf-1.3.1" + ,go-github-com-golang-protobuf-1.3.1) + ("go-github-com-go-logfmt-logfmt-0.4.0" + ,go-github-com-go-logfmt-logfmt-0.4.0) + ("go-github-com-fatih-color-1.7.0" ,go-github-com-fatih-color-1.7.0) + ("go-github-com-aybabtme-rgbterm-0.0.0-20170906152045-cc83f3b3ce59" + ,go-github-com-aybabtme-rgbterm-0.0.0-20170906152045-cc83f3b3ce59) + ("go-github-com-aws-aws-sdk-go-1.20.6" + ,go-github-com-aws-aws-sdk-go-1.20.6) + ("go-github-com-aphistic-sweet-0.2.0" + ,go-github-com-aphistic-sweet-0.2.0) + ("go-github-com-aphistic-golf-0.0.0-20180712155816-02c07f170c5a" + ,go-github-com-aphistic-golf-0.0.0-20180712155816-02c07f170c5a) + ("go-github-com-apex-logs-1.0.0" ,go-github-com-apex-logs-1.0.0))) + (home-page "https://github.com/apex/log") + (synopsis "Handlers") + (description + "Package log implements a simple structured logging API designed with few +assumptions. Designed for centralized logging solutions such as Kinesis which +require encoding and decoding before fanning-out to handlers.") + (license license:expat))) +(define-public go-github-com-apptainer-container-key-client-0.7.2 + (package + (name "go-github-com-apptainer-container-key-client") + (version "0.7.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/apptainer/container-key-client") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0f4bb1k8pi37alzgzvjw23ynp54752qwgnr9gim3vc061qcjx377")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/apptainer/container-key-client")) + (propagated-inputs + `(("go-github-com-sylabs-json-resp-0.8.0" + ,go-github-com-sylabs-json-resp-0.8.0))) + (home-page "https://github.com/apptainer/container-key-client") + (synopsis "Container Key Client") + (description + "This project provides a Go client to Apptainer for key storage and retrieval +using the HKP protocol. Forked from +@url{https://github.com/sylabs/scs-key-client,sylabs/scs-key-client}.") + (license license:bsd-3))) +(define-public go-github-com-apptainer-container-library-client-1.2.2 + (package + (name "go-github-com-apptainer-container-library-client") + (version "1.2.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/apptainer/container-library-client") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1f6pxzk0k9jf9612kjw6jlmrs8yzqqrvhjwfxwri1q1d4i410a0h")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/apptainer/container-library-client")) + (propagated-inputs + `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" + ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.0" + ,go-github-com-davecgh-go-spew-1.1.0) + ("go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a" + ,go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a) + ("go-github-com-sylabs-json-resp-0.8.0" + ,go-github-com-sylabs-json-resp-0.8.0) + ("go-github-com-stretchr-testify-1.7.0" + ,go-github-com-stretchr-testify-1.7.0) + ("go-github-com-go-log-log-0.2.0" ,go-github-com-go-log-log-0.2.0) + ("go-github-com-blang-semver-v4-4.0.0" + ,go-github-com-blang-semver-v4-4.0.0))) + (home-page "https://github.com/apptainer/container-library-client") + (synopsis "Container Library Client") + (description + "This project provides a Go client to Apptainer for the container library. +Forked from +@url{https://github.com/sylabs/scs-library-client,sylabs/scs-library-client}.") + (license license:bsd-3))) +(define-public go-github-com-apptainer-sif-v2-2.3.2 + (package + (name "go-github-com-apptainer-sif-v2") + (version "2.3.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/apptainer/sif") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "10cmvgyjxnfgw5661n1zbdr8zs29rx9izsr1bbnnyjr9kdqdhfg1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/apptainer/sif/v2")) + (propagated-inputs + `(("go-gopkg-in-warnings-v0-0.1.2" ,go-gopkg-in-warnings-v0-0.1.2) + ("go-golang-org-x-sys-0.0.0-20211205182925-97ca703d548d" + ,go-golang-org-x-sys-0.0.0-20211205182925-97ca703d548d) + ("go-golang-org-x-net-0.0.0-20210813160813-60bc85c4be6d" + ,go-golang-org-x-net-0.0.0-20210813160813-60bc85c4be6d) + ("go-golang-org-x-crypto-0.0.0-20210817164053-32db794688a5" + ,go-golang-org-x-crypto-0.0.0-20210817164053-32db794688a5) + ("go-github-com-xanzy-ssh-agent-0.3.0" + ,go-github-com-xanzy-ssh-agent-0.3.0) + ("go-github-com-sergi-go-diff-1.1.0" + ,go-github-com-sergi-go-diff-1.1.0) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-mitchellh-go-homedir-1.1.0" + ,go-github-com-mitchellh-go-homedir-1.1.0) + ("go-github-com-kevinburke-ssh-config-0.0.0-20201106050909-4977a11b4351" + ,go-github-com-kevinburke-ssh-config-0.0.0-20201106050909-4977a11b4351) + ("go-github-com-jbenet-go-context-0.0.0-20150711004518-d14ea06fba99" + ,go-github-com-jbenet-go-context-0.0.0-20150711004518-d14ea06fba99) + ("go-github-com-inconshreveable-mousetrap-1.0.0" + ,go-github-com-inconshreveable-mousetrap-1.0.0) + ("go-github-com-imdario-mergo-0.3.12" + ,go-github-com-imdario-mergo-0.3.12) + ("go-github-com-go-git-go-billy-v5-5.3.1" + ,go-github-com-go-git-go-billy-v5-5.3.1) + ("go-github-com-go-git-gcfg-1.5.0" ,go-github-com-go-git-gcfg-1.5.0) + ("go-github-com-emirpasic-gods-1.12.0" + ,go-github-com-emirpasic-gods-1.12.0) + ("go-github-com-acomagu-bufpipe-1.0.3" + ,go-github-com-acomagu-bufpipe-1.0.3) + ("go-github-com-microsoft-go-winio-0.4.16" + ,go-github-com-microsoft-go-winio-0.4.16) + ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) + ("go-github-com-spf13-cobra-1.3.0" ,go-github-com-spf13-cobra-1.3.0) + ("go-github-com-sebdah-goldie-v2-2.5.3" + ,go-github-com-sebdah-goldie-v2-2.5.3) + ("go-github-com-magefile-mage-1.12.1" + ,go-github-com-magefile-mage-1.12.1) + ("go-github-com-google-uuid-1.3.0" ,go-github-com-google-uuid-1.3.0) + ("go-github-com-go-git-go-git-v5-5.4.2" + ,go-github-com-go-git-go-git-v5-5.4.2) + ("go-github-com-blang-semver-v4-4.0.0" + ,go-github-com-blang-semver-v4-4.0.0) + ("go-github-com-protonmail-go-crypto-0.0.0-20220113124808-70ae35bab23f" + ,go-github-com-protonmail-go-crypto-0.0.0-20220113124808-70ae35bab23f))) + (home-page "https://github.com/apptainer/sif") + (synopsis "The Singularity Image Format (SIF)") + (description + "This module contains an open source implementation of the Singularity Image +Format (SIF) that makes it easy to create complete and encapsulated container +environments stored in a single file.") + (license license:bsd-3))) +(define-public go-github-com-blang-semver-v4-4.0.0 + (package + (name "go-github-com-blang-semver-v4") + (version "4.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/blang/semver") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "14h9ys4n4kx9cbj42lkdf4i5k3nkll6sd62jcvl7cs565v6fiknz")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/blang/semver/v4")) + (home-page "https://github.com/blang/semver") + (synopsis #f) + (description #f) + (license license:expat))) +(define-public go-github-com-buger-jsonparser-1.1.1 + (package + (name "go-github-com-buger-jsonparser") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/buger/jsonparser") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0qv2lsh2biwxn927941gqiv5pqg7n4v58j0i536pjp7pr17pq7dp")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/buger/jsonparser")) + (home-page "https://github.com/buger/jsonparser") + (synopsis + "Alternative JSON parser for Go (10x times faster standard library)") + (description + "It does not require you to know the structure of the payload (eg. create +structs), and allows accessing fields by providing the path to them. It is up +to @strong{10 times faster} than standard @code{encoding/json} package +(depending on payload size and usage), @strong{allocates no memory}. See +benchmarks below.") + (license license:expat))) +(define-public go-github-com-cenkalti-backoff-v4-4.1.2 + (package + (name "go-github-com-cenkalti-backoff-v4") + (version "4.1.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cenkalti/backoff") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "08c28226q612i1pv83161y57qh16631vpc51ai9f76qfrzsy946z")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/cenkalti/backoff/v4")) + (home-page "https://github.com/cenkalti/backoff") + (synopsis "Exponential Backoff") + (description + "Package backoff implements backoff algorithms for retrying operations.") + (license license:expat))) +(define-public go-github-com-containerd-cgroups-1.0.3 + (package + (name "go-github-com-containerd-cgroups") + (version "1.0.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/cgroups") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0mqsi2jm1f7xvs35kx6ijvadr6zycshc1xivq6xdiwrw24wb0m3r")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/cgroups")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20210510120138-977fb7262007" + ,go-golang-org-x-sys-0.0.0-20210510120138-977fb7262007) + ("go-go-uber-org-goleak-1.1.12" ,go-go-uber-org-goleak-1.1.12) + ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) + ("go-github-com-stretchr-testify-1.7.0" + ,go-github-com-stretchr-testify-1.7.0) + ("go-github-com-sirupsen-logrus-1.8.1" + ,go-github-com-sirupsen-logrus-1.8.1) + ("go-github-com-opencontainers-runtime-spec-1.0.2" + ,go-github-com-opencontainers-runtime-spec-1.0.2) + ("go-github-com-gogo-protobuf-1.3.2" + ,go-github-com-gogo-protobuf-1.3.2) + ("go-github-com-godbus-dbus-v5-5.0.4" + ,go-github-com-godbus-dbus-v5-5.0.4) + ("go-github-com-docker-go-units-0.4.0" + ,go-github-com-docker-go-units-0.4.0) + ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" + ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) + ("go-github-com-coreos-go-systemd-v22-22.3.2" + ,go-github-com-coreos-go-systemd-v22-22.3.2) + ("go-github-com-cilium-ebpf-0.4.0" ,go-github-com-cilium-ebpf-0.4.0))) + (home-page "https://github.com/containerd/cgroups") + (synopsis "cgroups") + (description + "Go package for creating, managing, inspecting, and destroying cgroups. The +resources format for settings on the cgroup uses the OCI runtime-spec found +@url{https://github.com/opencontainers/runtime-spec,here}.") + (license license:asl2.0))) +(define-public go-github-com-containerd-containerd-1.6.0 + (package + (name "go-github-com-containerd-containerd") + (version "1.6.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containerd/containerd") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1wqmb124l8hjh7a053xjgh1kwblczg6q99l4vh6pi5zmnmdn67iv")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containerd/containerd")) + (propagated-inputs + `(("go-google-golang-org-genproto-0.0.0-20200224152610-e50cd9704f63" + ,go-google-golang-org-genproto-0.0.0-20200224152610-e50cd9704f63) + ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) + ("go-github-com-gogo-googleapis-1.3.2" + ,go-github-com-gogo-googleapis-1.3.2) + ("go-k8s-io-utils-0.0.0-20210930125809-cb0fa318a74b" + ,go-k8s-io-utils-0.0.0-20210930125809-cb0fa318a74b) + ("go-k8s-io-klog-v2-2.30.0" ,go-k8s-io-klog-v2-2.30.0) + ("go-k8s-io-cri-api-0.23.1" ,go-k8s-io-cri-api-0.23.1) + ("go-k8s-io-component-base-0.22.5" ,go-k8s-io-component-base-0.22.5) + ("go-k8s-io-client-go-0.22.5" ,go-k8s-io-client-go-0.22.5) + ("go-k8s-io-apiserver-0.22.5" ,go-k8s-io-apiserver-0.22.5) + ("go-k8s-io-apimachinery-0.22.5" ,go-k8s-io-apimachinery-0.22.5) + ("go-k8s-io-api-0.22.5" ,go-k8s-io-api-0.22.5) + ("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) + ("go-google-golang-org-protobuf-1.27.1" + ,go-google-golang-org-protobuf-1.27.1) + ("go-google-golang-org-grpc-1.43.0" ,go-google-golang-org-grpc-1.43.0) + ("go-golang-org-x-term-0.0.0-20210615171337-6886f2dfbf5b" + ,go-golang-org-x-term-0.0.0-20210615171337-6886f2dfbf5b) + ("go-golang-org-x-sys-0.0.0-20211216021012-1d35b9e2eb4e" + ,go-golang-org-x-sys-0.0.0-20211216021012-1d35b9e2eb4e) + ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" + ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) + ("go-golang-org-x-oauth2-0.0.0-20210819190943-2bc19b11175f" + ,go-golang-org-x-oauth2-0.0.0-20210819190943-2bc19b11175f) + ("go-golang-org-x-net-0.0.0-20211216030914-fe4d6282115f" + ,go-golang-org-x-net-0.0.0-20211216030914-fe4d6282115f) + ("go-golang-org-x-crypto-0.0.0-20210817164053-32db794688a5" + ,go-golang-org-x-crypto-0.0.0-20210817164053-32db794688a5) + ("go-go-opentelemetry-io-otel-trace-1.3.0" + ,go-go-opentelemetry-io-otel-trace-1.3.0) + ("go-go-opentelemetry-io-otel-sdk-1.3.0" + ,go-go-opentelemetry-io-otel-sdk-1.3.0) + ("go-go-opentelemetry-io-otel-exporters-otlp-otlptrace-otlptracehttp-1.3.0" + ,go-go-opentelemetry-io-otel-exporters-otlp-otlptrace-otlptracehttp-1.3.0) + ("go-go-opentelemetry-io-otel-exporters-otlp-otlptrace-otlptracegrpc-1.3.0" + ,go-go-opentelemetry-io-otel-exporters-otlp-otlptrace-otlptracegrpc-1.3.0) + ("go-go-opentelemetry-io-otel-exporters-otlp-otlptrace-1.3.0" + ,go-go-opentelemetry-io-otel-exporters-otlp-otlptrace-1.3.0) + ("go-go-opentelemetry-io-otel-1.3.0" + ,go-go-opentelemetry-io-otel-1.3.0) + ("go-go-opentelemetry-io-contrib-instrumentation-google-golang-org-grpc-otelgrpc-0.28.0" + ,go-go-opentelemetry-io-contrib-instrumentation-google-golang-org-grpc-otelgrpc-0.28.0) + ("go-go-etcd-io-bbolt-1.3.6" ,go-go-etcd-io-bbolt-1.3.6) + ("go-github-com-vishvananda-netlink-1.1.1-0.20210330154013-f5de75959ad5" + ,go-github-com-vishvananda-netlink-1.1.1-0.20210330154013-f5de75959ad5) + ("go-github-com-tchap-go-patricia-2.2.6+incompatible" + ,go-github-com-tchap-go-patricia-2.2.6+incompatible) + ("go-github-com-stretchr-testify-1.7.0" + ,go-github-com-stretchr-testify-1.7.0) + ("go-github-com-sirupsen-logrus-1.8.1" + ,go-github-com-sirupsen-logrus-1.8.1) + ("go-github-com-satori-go-uuid-1.2.0" + ,go-github-com-satori-go-uuid-1.2.0) + ("go-github-com-prometheus-client-golang-1.11.0" + ,go-github-com-prometheus-client-golang-1.11.0) + ("go-github-com-pelletier-go-toml-1.9.3" + ,go-github-com-pelletier-go-toml-1.9.3) + ("go-github-com-opencontainers-selinux-1.10.0" + ,go-github-com-opencontainers-selinux-1.10.0) + ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417" + ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417) + ("go-github-com-opencontainers-runc-1.1.0" + ,go-github-com-opencontainers-runc-1.1.0) + ("go-github-com-opencontainers-image-spec-1.0.2-0.20211117181255-693428a734f5" + ,go-github-com-opencontainers-image-spec-1.0.2-0.20211117181255-693428a734f5) + ("go-github-com-opencontainers-go-digest-1.0.0" + ,go-github-com-opencontainers-go-digest-1.0.0) + ("go-github-com-moby-sys-symlink-0.2.0" + ,go-github-com-moby-sys-symlink-0.2.0) + ("go-github-com-moby-sys-signal-0.6.0" + ,go-github-com-moby-sys-signal-0.6.0) + ("go-github-com-moby-sys-mountinfo-0.5.0" + ,go-github-com-moby-sys-mountinfo-0.5.0) + ("go-github-com-moby-locker-1.0.1" ,go-github-com-moby-locker-1.0.1) + ("go-github-com-klauspost-compress-1.11.13" + ,go-github-com-klauspost-compress-1.11.13) + ("go-github-com-json-iterator-go-1.1.12" + ,go-github-com-json-iterator-go-1.1.12) + ("go-github-com-intel-goresctrl-0.2.0" + ,go-github-com-intel-goresctrl-0.2.0) + ("go-github-com-imdario-mergo-0.3.12" + ,go-github-com-imdario-mergo-0.3.12) + ("go-github-com-hashicorp-go-multierror-1.1.1" + ,go-github-com-hashicorp-go-multierror-1.1.1) + ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" + ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) + ("go-github-com-grpc-ecosystem-go-grpc-middleware-1.3.0" + ,go-github-com-grpc-ecosystem-go-grpc-middleware-1.3.0) + ("go-github-com-google-uuid-1.2.0" ,go-github-com-google-uuid-1.2.0) + ("go-github-com-google-go-cmp-0.5.6" + ,go-github-com-google-go-cmp-0.5.6) + ("go-github-com-gogo-protobuf-1.3.2" + ,go-github-com-gogo-protobuf-1.3.2) + ("go-github-com-go-logr-stdr-1.2.2" ,go-github-com-go-logr-stdr-1.2.2) + ("go-github-com-fsnotify-fsnotify-1.4.9" + ,go-github-com-fsnotify-fsnotify-1.4.9) + ("go-github-com-emicklei-go-restful-2.9.5+incompatible" + ,go-github-com-emicklei-go-restful-2.9.5+incompatible) + ("go-github-com-docker-go-units-0.4.0" + ,go-github-com-docker-go-units-0.4.0) + ("go-github-com-docker-go-metrics-0.0.1" + ,go-github-com-docker-go-metrics-0.0.1) + ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" + ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1) + ("go-github-com-coreos-go-systemd-v22-22.3.2" + ,go-github-com-coreos-go-systemd-v22-22.3.2) + ("go-github-com-containernetworking-plugins-1.0.1" + ,go-github-com-containernetworking-plugins-1.0.1) + ("go-github-com-containerd-zfs-1.0.0" + ,go-github-com-containerd-zfs-1.0.0) + ("go-github-com-containerd-typeurl-1.0.2" + ,go-github-com-containerd-typeurl-1.0.2) + ("go-github-com-containerd-ttrpc-1.1.0" + ,go-github-com-containerd-ttrpc-1.1.0) + ("go-github-com-containerd-nri-0.1.0" + ,go-github-com-containerd-nri-0.1.0) + ("go-github-com-containerd-imgcrypt-1.1.3" + ,go-github-com-containerd-imgcrypt-1.1.3) + ("go-github-com-containerd-go-runc-1.0.0" + ,go-github-com-containerd-go-runc-1.0.0) + ("go-github-com-containerd-go-cni-1.1.3" + ,go-github-com-containerd-go-cni-1.1.3) + ("go-github-com-containerd-fifo-1.0.0" + ,go-github-com-containerd-fifo-1.0.0) + ("go-github-com-containerd-continuity-0.2.2" + ,go-github-com-containerd-continuity-0.2.2) + ("go-github-com-containerd-console-1.0.3" + ,go-github-com-containerd-console-1.0.3) + ("go-github-com-containerd-cgroups-1.0.3" + ,go-github-com-containerd-cgroups-1.0.3) + ("go-github-com-containerd-btrfs-1.0.0" + ,go-github-com-containerd-btrfs-1.0.0) + ("go-github-com-containerd-aufs-1.0.0" + ,go-github-com-containerd-aufs-1.0.0) + ("go-github-com-microsoft-hcsshim-0.9.2" + ,go-github-com-microsoft-hcsshim-0.9.2) + ("go-github-com-microsoft-go-winio-0.5.1" + ,go-github-com-microsoft-go-winio-0.5.1) + ("go-github-com-adalogics-go-fuzz-headers-0.0.0-20210715213245-6c3934b029d8" + ,go-github-com-adalogics-go-fuzz-headers-0.0.0-20210715213245-6c3934b029d8) + ("go-cloud-google-com-go-0.81.0" ,go-cloud-google-com-go-0.81.0))) + (home-page "https://github.com/containerd/containerd") + (synopsis "Now Recruiting") + (description + "containerd is an industry-standard container runtime with an emphasis on +simplicity, robustness and portability. It is available as a daemon for Linux +and Windows, which can manage the complete container lifecycle of its host +system: image transfer and storage, container execution and supervision, +low-level storage and network attachments, etc.") + (license license:asl2.0))) +(define-public go-github-com-containernetworking-cni-1.0.1 + (package + (name "go-github-com-containernetworking-cni") + (version "1.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containernetworking/cni") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0jzijcb96z26lchh6j4js3rl7c148mwlaiz3s6ww47kljnxmv05f")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containernetworking/cni")) + (propagated-inputs + `(("go-github-com-onsi-gomega-1.10.1" ,go-github-com-onsi-gomega-1.10.1) + ("go-github-com-onsi-ginkgo-1.13.0" + ,go-github-com-onsi-ginkgo-1.13.0))) + (home-page "https://github.com/containernetworking/cni") + (synopsis "CNI - the Container Network Interface") + (description + "CNI (), a @url{https://cncf.io,Cloud Native Computing Foundation} project, +consists of a specification and libraries for writing plugins to configure +network interfaces in Linux containers, along with a number of supported +plugins. CNI concerns itself only with network connectivity of containers and +removing allocated resources when the container is deleted. Because of this +focus, CNI has a wide range of support and the specification is simple to +implement.") + (license license:asl2.0))) +(define-public go-github-com-containernetworking-plugins-1.1.0 + (package + (name "go-github-com-containernetworking-plugins") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containernetworking/plugins") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "10c9sxi5nq88772ql35a3vy5m1wrdyji4imc4ysl27malcqxhiik")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containernetworking/plugins")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) + ("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" + ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) + ("go-golang-org-x-text-0.3.6" ,go-golang-org-x-text-0.3.6) + ("go-golang-org-x-net-0.0.0-20210428140749-89ef3d95e781" + ,go-golang-org-x-net-0.0.0-20210428140749-89ef3d95e781) + ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) + ("go-github-com-vishvananda-netns-0.0.0-20210104183010-2eb08e3e575f" + ,go-github-com-vishvananda-netns-0.0.0-20210104183010-2eb08e3e575f) + ("go-github-com-sirupsen-logrus-1.8.1" + ,go-github-com-sirupsen-logrus-1.8.1) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-nxadm-tail-1.4.8" ,go-github-com-nxadm-tail-1.4.8) + ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" + ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) + ("go-github-com-gogo-protobuf-1.3.2" + ,go-github-com-gogo-protobuf-1.3.2) + ("go-github-com-fsnotify-fsnotify-1.4.9" + ,go-github-com-fsnotify-fsnotify-1.4.9) + ("go-github-com-containerd-cgroups-1.0.1" + ,go-github-com-containerd-cgroups-1.0.1) + ("go-github-com-microsoft-go-winio-0.4.17" + ,go-github-com-microsoft-go-winio-0.4.17) + ("go-golang-org-x-sys-0.0.0-20210809222454-d867a43fc93e" + ,go-golang-org-x-sys-0.0.0-20210809222454-d867a43fc93e) + ("go-github-com-vishvananda-netlink-1.1.1-0.20210330154013-f5de75959ad5" + ,go-github-com-vishvananda-netlink-1.1.1-0.20210330154013-f5de75959ad5) + ("go-github-com-safchain-ethtool-0.0.0-20210803160452-9aa261dae9b1" + ,go-github-com-safchain-ethtool-0.0.0-20210803160452-9aa261dae9b1) + ("go-github-com-onsi-gomega-1.15.0" ,go-github-com-onsi-gomega-1.15.0) + ("go-github-com-onsi-ginkgo-1.16.4" ,go-github-com-onsi-ginkgo-1.16.4) + ("go-github-com-networkplumbing-go-nft-0.2.0" + ,go-github-com-networkplumbing-go-nft-0.2.0) + ("go-github-com-mattn-go-shellwords-1.0.12" + ,go-github-com-mattn-go-shellwords-1.0.12) + ("go-github-com-godbus-dbus-v5-5.0.4" + ,go-github-com-godbus-dbus-v5-5.0.4) + ("go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5" + ,go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5) + ("go-github-com-d2g-dhcp4client-1.0.0" + ,go-github-com-d2g-dhcp4client-1.0.0) + ("go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c" + ,go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c) + ("go-github-com-coreos-go-systemd-v22-22.3.2" + ,go-github-com-coreos-go-systemd-v22-22.3.2) + ("go-github-com-coreos-go-iptables-0.6.0" + ,go-github-com-coreos-go-iptables-0.6.0) + ("go-github-com-containernetworking-cni-1.0.1" + ,go-github-com-containernetworking-cni-1.0.1) + ("go-github-com-buger-jsonparser-1.1.1" + ,go-github-com-buger-jsonparser-1.1.1) + ("go-github-com-alexflint-go-filemutex-1.1.0" + ,go-github-com-alexflint-go-filemutex-1.1.0) + ("go-github-com-microsoft-hcsshim-0.8.20" + ,go-github-com-microsoft-hcsshim-0.8.20))) + (home-page "https://github.com/containernetworking/plugins") + (synopsis "Plugins") + (description + "Some CNI network plugins, maintained by the containernetworking team. For more +information, see the @url{https://www.cni.dev,CNI website}.") + (license license:asl2.0))) +(define-public go-github-com-containers-image-v5-5.19.1 + (package + (name "go-github-com-containers-image-v5") + (version "5.19.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containers/image") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wyq3ns6yrzi9bff2kb8p3rppw652m4ffq8374sdjkn7f39z4inf")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/containers/image/v5")) + (propagated-inputs + `(("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" + ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) + ("go-golang-org-x-sys-0.0.0-20220114195835-da31bd327af9" + ,go-golang-org-x-sys-0.0.0-20220114195835-da31bd327af9) + ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" + ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) + ("go-golang-org-x-net-0.0.0-20211112202133-69e39bad7dc2" + ,go-golang-org-x-net-0.0.0-20211112202133-69e39bad7dc2) + ("go-golang-org-x-crypto-0.0.0-20211215153901-e495a2d5b3d3" + ,go-golang-org-x-crypto-0.0.0-20211215153901-e495a2d5b3d3) + ("go-go-etcd-io-bbolt-1.3.6" ,go-go-etcd-io-bbolt-1.3.6) + ("go-github-com-xeipuuv-gojsonschema-1.2.0" + ,go-github-com-xeipuuv-gojsonschema-1.2.0) + ("go-github-com-xeipuuv-gojsonpointer-0.0.0-20190809123943-df4f5c81cb3b" + ,go-github-com-xeipuuv-gojsonpointer-0.0.0-20190809123943-df4f5c81cb3b) + ("go-github-com-vbauerster-mpb-v7-7.3.2" + ,go-github-com-vbauerster-mpb-v7-7.3.2) + ("go-github-com-vbatts-tar-split-0.11.2" + ,go-github-com-vbatts-tar-split-0.11.2) + ("go-github-com-ulikunitz-xz-0.5.10" + ,go-github-com-ulikunitz-xz-0.5.10) + ("go-github-com-sylabs-sif-v2-2.3.1" + ,go-github-com-sylabs-sif-v2-2.3.1) + ("go-github-com-stretchr-testify-1.7.0" + ,go-github-com-stretchr-testify-1.7.0) + ("go-github-com-sirupsen-logrus-1.8.1" + ,go-github-com-sirupsen-logrus-1.8.1) + ("go-github-com-proglottis-gpgme-0.1.1" + ,go-github-com-proglottis-gpgme-0.1.1) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-ostreedev-ostree-go-0.0.0-20190702140239-759a8c1ac913" + ,go-github-com-ostreedev-ostree-go-0.0.0-20190702140239-759a8c1ac913) + ("go-github-com-opencontainers-selinux-1.10.0" + ,go-github-com-opencontainers-selinux-1.10.0) + ("go-github-com-opencontainers-image-spec-1.0.3-0.20211202193544-a5463b7f9c84" + ,go-github-com-opencontainers-image-spec-1.0.3-0.20211202193544-a5463b7f9c84) + ("go-github-com-opencontainers-go-digest-1.0.0" + ,go-github-com-opencontainers-go-digest-1.0.0) + ("go-github-com-manifoldco-promptui-0.9.0" + ,go-github-com-manifoldco-promptui-0.9.0) + ("go-github-com-klauspost-pgzip-1.2.5" + ,go-github-com-klauspost-pgzip-1.2.5) + ("go-github-com-klauspost-compress-1.14.2" + ,go-github-com-klauspost-compress-1.14.2) + ("go-github-com-imdario-mergo-0.3.12" + ,go-github-com-imdario-mergo-0.3.12) + ("go-github-com-hashicorp-go-multierror-1.1.1" + ,go-github-com-hashicorp-go-multierror-1.1.1) + ("go-github-com-gorilla-mux-1.7.4" ,go-github-com-gorilla-mux-1.7.4) + ("go-github-com-ghodss-yaml-1.0.0" ,go-github-com-ghodss-yaml-1.0.0) + ("go-github-com-docker-libtrust-0.0.0-20160708172513-aabc10ec26b7" + ,go-github-com-docker-libtrust-0.0.0-20160708172513-aabc10ec26b7) + ("go-github-com-docker-go-connections-0.4.0" + ,go-github-com-docker-go-connections-0.4.0) + ("go-github-com-docker-docker-credential-helpers-0.6.4" + ,go-github-com-docker-docker-credential-helpers-0.6.4) + ("go-github-com-docker-docker-20.10.12+incompatible" + ,go-github-com-docker-docker-20.10.12+incompatible) + ("go-github-com-docker-distribution-2.7.1+incompatible" + ,go-github-com-docker-distribution-2.7.1+incompatible) + ("go-github-com-containers-storage-1.38.2" + ,go-github-com-containers-storage-1.38.2) + ("go-github-com-containers-ocicrypt-1.1.2" + ,go-github-com-containers-ocicrypt-1.1.2) + ("go-github-com-containers-libtrust-0.0.0-20190913040956-14b96171aa3b" + ,go-github-com-containers-libtrust-0.0.0-20190913040956-14b96171aa3b) + ("go-github-com-containerd-containerd-1.5.9" + ,go-github-com-containerd-containerd-1.5.9) + ("go-github-com-burntsushi-toml-1.0.0" + ,go-github-com-burntsushi-toml-1.0.0) + ("go-github-com-14rcole-gopopulate-0.0.0-20180821133914-b175b219e774" + ,go-github-com-14rcole-gopopulate-0.0.0-20180821133914-b175b219e774))) + (home-page "https://github.com/containers/image") + (synopsis "") + (description + "The package image provides libraries and commands to interact with container +images.") + (license license:asl2.0))) +(define-public go-github-com-creack-pty-1.1.17 + (package + (name "go-github-com-creack-pty") + (version "1.1.17") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/creack/pty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "09lcq5bw1dwppxjia05sj4fy7gbk62vishfz1bgrbd1r06i57mjf")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/creack/pty")) + (home-page "https://github.com/creack/pty") + (synopsis "pty") + (description + "Package pty provides functions for working with Unix terminals.") + (license license:expat))) +(define-public go-github-com-cyphar-filepath-securejoin-0.2.3 + (package + (name "go-github-com-cyphar-filepath-securejoin") + (version "0.2.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cyphar/filepath-securejoin") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0w03d8hslwfhcnfqck21agzs7y0sc6gpwfz53md8fv26ishwxppy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/cyphar/filepath-securejoin")) + (home-page "https://github.com/cyphar/filepath-securejoin") + (synopsis #f) + (description + "Package securejoin is an implementation of the hopefully-soon-to-be-included +SecureJoin helper that is meant to be part of the \"path/filepath\" package. The +purpose of this project is to provide a PoC implementation to make the +SecureJoin proposal +(@url{https://github.com/golang/go/issues/20126,https://github.com/golang/go/issues/20126}) +more tangible.") + (license license:bsd-3))) +(define-public go-github-com-docker-docker-20.10.12+incompatible + (package + (name "go-github-com-docker-docker") + (version "20.10.12+incompatible") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/moby/moby") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "17j820ij8p6w61jyg5g6y5dwv56dh1w178f6ia2i2dc9b8mz6b5a")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/docker/docker")) + (home-page "https://github.com/docker/docker") + (synopsis "The Moby Project") + (description + "Moby is an open-source project created by Docker to enable and accelerate +software containerization.") + (license license:asl2.0))) +(define-public go-github-com-fatih-color-1.13.0 + (package + (name "go-github-com-fatih-color") + (version "1.13.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/fatih/color") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "029qkxsdpblhrpgbv4fcmqwkqnjhx08hwiqp19pd7zz6l8a373ay")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/fatih/color")) + (propagated-inputs + `(("go-github-com-mattn-go-isatty-0.0.14" + ,go-github-com-mattn-go-isatty-0.0.14) + ("go-github-com-mattn-go-colorable-0.1.9" + ,go-github-com-mattn-go-colorable-0.1.9))) + (home-page "https://github.com/fatih/color") + (synopsis "color") + (description + "Package color is an ANSI color package to output colorized or SGR defined output +to the standard output. The API can be used in several way, pick one that suits +you.") + (license license:expat))) +(define-public go-github-com-go-log-log-0.2.0 + (package + (name "go-github-com-go-log-log") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/go-log/log") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1idnqv4yvkmdh3wcsgvhcpak9z6ix8dsifdjq5kfbbnskdq5rmvg")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/go-log/log")) + (home-page "https://github.com/go-log/log") + (synopsis "Log") + (description "Package log provides a log interface") + (license license:expat))) +(define-public go-github-com-google-uuid-1.3.0 + (package + (name "go-github-com-google-uuid") + (version "1.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/uuid") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0imkw52m7fzrwsdj2rfrk3zbplqfbwncyv6hv89xw0vdw3jpk122")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/uuid")) + (home-page "https://github.com/google/uuid") + (synopsis "uuid") + (description "Package uuid generates and inspects UUIDs.") + (license license:bsd-3))) +(define-public go-github-com-opencontainers-go-digest-1.0.0 + (package + (name "go-github-com-opencontainers-go-digest") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/go-digest") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0i5acjajvr6hi9zb7gxwifd8w28y884cv7cx36adj8lngj647xbi")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/go-digest")) + (home-page "https://github.com/opencontainers/go-digest") + (synopsis "go-digest") + (description + "Package digest provides a generalized type to opaquely represent message digests +and their operations within the registry. The Digest type is designed to serve +as a flexible identifier in a content-addressable system. More importantly, it +provides tools and wrappers to work with hash.Hash-based digests with little +effort.") + (license (list license:asl2.0 license:cc-by-sa4.0)))) +(define-public go-github-com-opencontainers-image-spec-1.0.3-0.20211202193544-a5463b7f9c84 + (package + (name "go-github-com-opencontainers-image-spec") + (version "1.0.3-0.20211202193544-a5463b7f9c84") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/image-spec") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "11js6467d7fhcvad4aw26d4p0r5b33vf41qhcf1bdwx0y7smd7s4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/image-spec")) + (propagated-inputs + `(("go-github-com-xeipuuv-gojsonschema-1.2.0" + ,go-github-com-xeipuuv-gojsonschema-1.2.0) + ("go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415" + ,go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415) + ("go-github-com-russross-blackfriday-1.6.0" + ,go-github-com-russross-blackfriday-1.6.0) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-go-digest-1.0.0" + ,go-github-com-opencontainers-go-digest-1.0.0))) + (home-page "https://github.com/opencontainers/image-spec") + (synopsis "OCI Image Format Specification") + (description + "The OCI Image Format project creates and maintains the software shipping +container image format spec (OCI Image Format).") + (license license:asl2.0))) +(define-public go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417 + (package + (name "go-github-com-opencontainers-runtime-spec") + (version "1.0.3-0.20210326190908-1c3f411f0417") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/runtime-spec") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1azk8z41ga8af35c966f06vrq9y9hwz6mkm59r3py5qaamzim3qq")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) + (home-page "https://github.com/opencontainers/runtime-spec") + (synopsis "Open Container Initiative Runtime Specification") + (description + "The @url{https://www.opencontainers.org,Open Container Initiative} develops +specifications for standards on Operating System process and application +containers.") + (license license:asl2.0))) +(define-public go-github-com-opencontainers-runtime-tools-0.9.1-0.20210326182921-59cdde06764b + (package + (name "go-github-com-opencontainers-runtime-tools") + (version "0.9.1-0.20210326182921-59cdde06764b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/runtime-tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0f4zy6x1rrrg10bphwijic30m3r4mq934zbavnci6jyi41l1w2r0")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/runtime-tools")) + (home-page "https://github.com/opencontainers/runtime-tools") + (synopsis "oci-runtime-tool") + (description + "oci-runtime-tool is a collection of tools for working with the +@url{https://github.com/opencontainers/runtime-spec,OCI runtime specification}. +To build from source code, runtime-tools requires Go 1.10.x or above.") + (license license:asl2.0))) +(define-public go-github-com-opencontainers-selinux-1.10.0 + (package + (name "go-github-com-opencontainers-selinux") + (version "1.10.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/selinux") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "118q1d9py9zhym4jmyiivasmllkdnkp1zyx4brc6n2cfmxfph6gc")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/selinux")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777" + ,go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777))) + (home-page "https://github.com/opencontainers/selinux") + (synopsis "selinux") + (description "Common SELinux package used across the container ecosystem.") + (license license:asl2.0))) +(define-public go-github-com-opencontainers-umoci-0.4.7 + (package + (name "go-github-com-opencontainers-umoci") + (version "0.4.7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/umoci") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0in8kyi4jprvbm3zsl3risbjj8b0ma62yl3rq8rcvcgypx0mn7d4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/umoci")) + (propagated-inputs + `(("go-gopkg-in-yaml-v3-3.0.0-20200615113413-eeeca48fe776" + ,go-gopkg-in-yaml-v3-3.0.0-20200615113413-eeeca48fe776) + ("go-gopkg-in-check-v1-1.0.0-20200227125254-8fa46927fb4f" + ,go-gopkg-in-check-v1-1.0.0-20200227125254-8fa46927fb4f) + ("go-google-golang-org-protobuf-1.24.0" + ,go-google-golang-org-protobuf-1.24.0) + ("go-golang-org-x-sys-0.0.0-20200622214017-ed371f2e16b4" + ,go-golang-org-x-sys-0.0.0-20200622214017-ed371f2e16b4) + ("go-golang-org-x-crypto-0.0.0-20200604202706-70a84ac30bf9" + ,go-golang-org-x-crypto-0.0.0-20200604202706-70a84ac30bf9) + ("go-github-com-vbatts-go-mtree-0.5.0" + ,go-github-com-vbatts-go-mtree-0.5.0) + ("go-github-com-urfave-cli-1.22.4" ,go-github-com-urfave-cli-1.22.4) + ("go-github-com-tj-assert-0.0.3" ,go-github-com-tj-assert-0.0.3) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-sirupsen-logrus-1.6.0" + ,go-github-com-sirupsen-logrus-1.6.0) + ("go-github-com-rootless-containers-proto-0.1.0" + ,go-github-com-rootless-containers-proto-0.1.0) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-opencontainers-runtime-spec-1.0.2" + ,go-github-com-opencontainers-runtime-spec-1.0.2) + ("go-github-com-opencontainers-runc-1.0.0-rc90" + ,go-github-com-opencontainers-runc-1.0.0-rc90) + ("go-github-com-opencontainers-image-spec-1.0.1" + ,go-github-com-opencontainers-image-spec-1.0.1) + ("go-github-com-opencontainers-go-digest-1.0.0" + ,go-github-com-opencontainers-go-digest-1.0.0) + ("go-github-com-niemeyer-pretty-0.0.0-20200227124842-a10e7caefd8e" + ,go-github-com-niemeyer-pretty-0.0.0-20200227124842-a10e7caefd8e) + ("go-github-com-mohae-deepcopy-0.0.0-20170929034955-c48cc78d4826" + ,go-github-com-mohae-deepcopy-0.0.0-20170929034955-c48cc78d4826) + ("go-github-com-mattn-go-colorable-0.1.6" + ,go-github-com-mattn-go-colorable-0.1.6) + ("go-github-com-kr-text-0.2.0" ,go-github-com-kr-text-0.2.0) + ("go-github-com-klauspost-pgzip-1.2.4" + ,go-github-com-klauspost-pgzip-1.2.4) + ("go-github-com-klauspost-compress-1.11.3" + ,go-github-com-klauspost-compress-1.11.3) + ("go-github-com-google-go-cmp-0.5.0" + ,go-github-com-google-go-cmp-0.5.0) + ("go-github-com-golang-protobuf-1.4.2" + ,go-github-com-golang-protobuf-1.4.2) + ("go-github-com-docker-go-units-0.4.0" + ,go-github-com-docker-go-units-0.4.0) + ("go-github-com-cyphar-filepath-securejoin-0.2.2" + ,go-github-com-cyphar-filepath-securejoin-0.2.2) + ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" + ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) + ("go-github-com-apex-log-1.4.0" ,go-github-com-apex-log-1.4.0) + ("go-github-com-adamkorcz-go-fuzz-headers-0.0.0-20210312213058-32f4d319f0d2" + ,go-github-com-adamkorcz-go-fuzz-headers-0.0.0-20210312213058-32f4d319f0d2))) + (home-page "https://github.com/opencontainers/umoci") + (synopsis "Install") + (description + "@strong{u}moci @strong{m}odifies @strong{O}pen @strong{C}ontainer +@strong{i}mages.") + (license license:asl2.0))) +(define-public go-github-com-pelletier-go-toml-1.9.4 + (package + (name "go-github-com-pelletier-go-toml") + (version "1.9.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pelletier/go-toml") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0f2d9m19dadl18i2baf57xygvn9vprm6wb8chvpx8kipx94nchyl")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pelletier/go-toml")) + (home-page "https://github.com/pelletier/go-toml") + (synopsis "go-toml") + (description "Package toml is a TOML parser and manipulation library.") + (license unknown-license!))) +(define-public go-github-com-pkg-errors-0.9.1 + (package + (name "go-github-com-pkg-errors") + (version "0.9.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pkg/errors") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1761pybhc2kqr6v5fm8faj08x9bql8427yqg6vnfv6nhrasx1mwq")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pkg/errors")) + (home-page "https://github.com/pkg/errors") + (synopsis "errors") + (description "Package errors provides simple error handling primitives.") + (license license:bsd-2))) +(define-public go-github-com-seccomp-containers-golang-0.6.0 + (package + (name "go-github-com-seccomp-containers-golang") + (version "0.6.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/seccomp/containers-golang") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0clrwdnmr131a65h66br57bsnr17i1s3kq9cc7ljrdaym57y6cfz")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/seccomp/containers-golang")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20200720211630-cb9d2d5c5666" + ,go-golang-org-x-sys-0.0.0-20200720211630-cb9d2d5c5666) + ("go-github-com-xeipuuv-gojsonschema-1.2.0" + ,go-github-com-xeipuuv-gojsonschema-1.2.0) + ("go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2" + ,go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2) + ("go-github-com-sirupsen-logrus-1.6.0" + ,go-github-com-sirupsen-logrus-1.6.0) + ("go-github-com-seccomp-libseccomp-golang-0.9.1" + ,go-github-com-seccomp-libseccomp-golang-0.9.1) + ("go-github-com-opencontainers-selinux-1.6.0" + ,go-github-com-opencontainers-selinux-1.6.0) + ("go-github-com-opencontainers-runtime-tools-0.9.0" + ,go-github-com-opencontainers-runtime-tools-0.9.0) + ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200710190001-3e4195d92445" + ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200710190001-3e4195d92445) + ("go-github-com-hashicorp-go-multierror-1.1.0" + ,go-github-com-hashicorp-go-multierror-1.1.0) + ("go-github-com-blang-semver-3.5.1+incompatible" + ,go-github-com-blang-semver-3.5.1+incompatible))) + (home-page "https://github.com/seccomp/containers-golang") + (synopsis "containers-golang") + (description + "@code{containers-golang} is a set of Go libraries used by container runtimes to +generate and load seccomp mappings into the kernel.") + (license license:asl2.0))) +(define-public go-github-com-seccomp-libseccomp-golang-0.9.2-0.20210429002308-3879420cc921 + (package + (name "go-github-com-seccomp-libseccomp-golang") + (version "0.9.2-0.20210429002308-3879420cc921") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/seccomp/libseccomp-golang") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ypr3j50cd9lnj9szfyh45kh0cf7swm7cv2svz1575mldd9m1xr9")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/seccomp/libseccomp-golang")) + (home-page "https://github.com/seccomp/libseccomp-golang") + (synopsis #f) + (description + "Package seccomp provides bindings for libseccomp, a library wrapping the Linux +seccomp syscall. Seccomp enables an application to restrict system call use for +itself and its children.") + (license license:bsd-2))) +(define-public go-github-com-spf13-cobra-1.3.0 + (package + (name "go-github-com-spf13-cobra") + (version "1.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/spf13/cobra") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0j3kj6yxrl2aigixapjl6bi2gmghrj52763wbd7jc079f38wz94n")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/spf13/cobra")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) + ("go-github-com-spf13-viper-1.10.0" ,go-github-com-spf13-viper-1.10.0) + ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) + ("go-github-com-inconshreveable-mousetrap-1.0.0" + ,go-github-com-inconshreveable-mousetrap-1.0.0) + ("go-github-com-cpuguy83-go-md2man-v2-2.0.1" + ,go-github-com-cpuguy83-go-md2man-v2-2.0.1))) + (home-page "https://github.com/spf13/cobra") + (synopsis "Overview") + (description + "Package cobra is a commander providing a simple interface to create powerful +modern CLI interfaces. In addition to providing an interface, Cobra +simultaneously provides a controller to organize your application code.") + (license license:asl2.0))) +(define-public go-github-com-spf13-pflag-1.0.5 + (package + (name "go-github-com-spf13-pflag") + (version "1.0.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/spf13/pflag") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0gpmacngd0gpslnbkzi263f5ishigzgh6pbdv9hp092rnjl4nd31")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/spf13/pflag")) + (home-page "https://github.com/spf13/pflag") + (synopsis "Description") + (description + "Package pflag is a drop-in replacement for Go's flag package, implementing +POSIX/GNU-style --flags.") + (license license:bsd-3))) +(define-public go-github-com-sylabs-json-resp-0.8.0 + (package + (name "go-github-com-sylabs-json-resp") + (version "0.8.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sylabs/json-resp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ygr4mavaj1pp78hkkphhn3ydd923n3klwnx8x7v4ajqzx4cx4id")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/sylabs/json-resp")) + (home-page "https://github.com/sylabs/json-resp") + (synopsis "JSON Response") + (description + "The @code{json-resp} package contains a small set of functions that are used to +marshall and unmarshall response data and errors in JSON format.") + (license license:bsd-3))) +(define-public go-github-com-urfave-cli-1.22.5 + (package + (name "go-github-com-urfave-cli") + (version "1.22.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/urfave/cli") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1n8lk58j7bdsp47yh5bcpsw38lhkbyzcy3203ffkawc2rvkf1pp7")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/urfave/cli")) + (propagated-inputs + `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) + ("go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d" + ,go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d) + ("go-github-com-burntsushi-toml-0.3.1" + ,go-github-com-burntsushi-toml-0.3.1))) + (home-page "https://github.com/urfave/cli") + (synopsis "cli") + (description + "Package cli provides a minimal framework for creating and organizing command +line Go applications. cli is designed to be easy to understand and write, the +most simple cli application can be written as follows:") + (license license:expat))) +(define-public go-github-com-vbauerster-mpb-v7-7.4.1 + (package + (name "go-github-com-vbauerster-mpb-v7") + (version "7.4.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/vbauerster/mpb") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ii1r84qjfp2spvj6nb8xy5b3nsfw17jmwgp55zkaz9n9lfj75w2")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/vbauerster/mpb/v7")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20220209214540-3681064d5158" + ,go-golang-org-x-sys-0.0.0-20220209214540-3681064d5158) + ("go-github-com-mattn-go-runewidth-0.0.13" + ,go-github-com-mattn-go-runewidth-0.0.13) + ("go-github-com-acarl005-stripansi-0.0.0-20180116102854-5a71ef0e047d" + ,go-github-com-acarl005-stripansi-0.0.0-20180116102854-5a71ef0e047d) + ("go-github-com-vividcortex-ewma-1.2.0" + ,go-github-com-vividcortex-ewma-1.2.0))) + (home-page "https://github.com/vbauerster/mpb") + (synopsis "Multi Progress Bar") + (description + "Package mpb is a library for rendering progress bars in terminal applications.") + (license license:unlicense))) +(define-public go-github-com-xeipuuv-gojsonpointer-0.0.0-20190905194746-02993c407bfb + (package + (name "go-github-com-xeipuuv-gojsonpointer") + (version "0.0.0-20190905194746-02993c407bfb") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/xeipuuv/gojsonpointer") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0y7gmpgsm8c12ax4a0ij9srmd9d424iq224n172ckwfqf37amvzy")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/xeipuuv/gojsonpointer")) + (home-page "https://github.com/xeipuuv/gojsonpointer") + (synopsis "gojsonpointer") + (description "An implementation of JSON Pointer - Go language") + (license license:asl2.0))) +(define-public go-github-com-yvasiyarov-go-metrics-0.0.0-20150112132944-c25f46c4b940 + (package + (name "go-github-com-yvasiyarov-go-metrics") + (version "0.0.0-20150112132944-c25f46c4b940") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/yvasiyarov/go-metrics") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0p1hx4ml4gzgyj8n0fg5lv8bq092zwg00n59lq8v8sphjc1h8i8d")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/yvasiyarov/go-metrics")) + (home-page "https://github.com/yvasiyarov/go-metrics") + (synopsis "go-metrics") + (description "Go port of Coda Hale's Metrics library") + (license unknown-license!))) +(define-public go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20160601141957-9c099fbc30e9 + (package + (name "go-github-com-yvasiyarov-newrelic-platform-go") + (version "0.0.0-20160601141957-9c099fbc30e9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/yvasiyarov/newrelic_platform_go") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0n6jap27qc7b7c37ck1gv9biq5nfl7y06jk0cqgc517yfnb4f07x")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/yvasiyarov/newrelic_platform_go")) + (home-page "https://github.com/yvasiyarov/newrelic_platform_go") + (synopsis "New Relic Platform Agent SDK for Go(golang)") + (description + "Package newrelic_platform_go is New Relic Platform Agent SDK for Go language.") + (license license:bsd-2))) +(define-public go-golang-org-x-sys-0.0.0-20220209214540-3681064d5158 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20220209214540-3681064d5158") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0cw9rzb4rxmr2si28pjqx3wv5r119c83kd08yy1h7nf725bzrs89")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) +(define-public go-golang-org-x-term-0.0.0-20210916214954-140adaaadfaf + (package + (name "go-golang-org-x-term") + (version "0.0.0-20210916214954-140adaaadfaf") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/term") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1rcdx2q92pzpmdyzdlzpq9flc3ibfi3m1rni7w4qlmlq569s6wh3")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/term")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1" + ,go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1))) + (home-page "https://golang.org/x/term") + (synopsis "Go terminal/console support") + (description + "Package term provides support functions for dealing with terminals, as commonly +found on UNIX systems.") + (license license:bsd-3))) +(define-public go-gopkg-in-yaml-v2-2.4.0 + (package + (name "go-gopkg-in-yaml-v2") + (version "2.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1pbmrpj7gcws34g8vwna4i2nhm9p6235piww36436xhyaa10cldr")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v2") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language.") + (license license:asl2.0))) +(define-public go-gotest-tools-v3-3.1.0 + (package + (name "go-gotest-tools-v3") + (version "3.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gotestyourself/gotest.tools") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0jk2grk2q19k453m76hn2bsq9i73yk63drlfjg1imvhmmcl88872")))) + (build-system go-build-system) + (arguments + '(#:import-path "gotest.tools/v3" #:unpack-path "gotest.tools/v3")) + (propagated-inputs + `(("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) + ("go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4" + ,go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4) + ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-google-go-cmp-0.5.5" + ,go-github-com-google-go-cmp-0.5.5))) + (home-page "https://gotest.tools/v3") + (synopsis "gotest.tools") + (description + "Package gotesttools is a collection of packages to augment `testing` and support +common patterns.") + (license license:asl2.0))) +(define-public go-mvdan-cc-sh-v3-3.4.3-0.20220202175809-113ed667a8a7 + (package + (name "go-mvdan-cc-sh-v3") + (version "3.4.3-0.20220202175809-113ed667a8a7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mvdan/sh") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1k5113qqm20x58838k8f0ry3v1hinahjf2yl8y4450922yy0mq2k")))) + (build-system go-build-system) + (arguments + '(#:import-path "mvdan.cc/sh/v3" #:unpack-path "mvdan.cc/sh/v3")) + (propagated-inputs + `(("go-mvdan-cc-editorconfig-0.2.0" ,go-mvdan-cc-editorconfig-0.2.0) + ("go-golang-org-x-term-0.0.0-20210916214954-140adaaadfaf" + ,go-golang-org-x-term-0.0.0-20210916214954-140adaaadfaf) + ("go-golang-org-x-sys-0.0.0-20210925032602-92d5a993a665" + ,go-golang-org-x-sys-0.0.0-20210925032602-92d5a993a665) + ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" + ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) + ("go-github-com-rogpeppe-go-internal-1.8.1-0.20210923151022-86f73c517451" + ,go-github-com-rogpeppe-go-internal-1.8.1-0.20210923151022-86f73c517451) + ("go-github-com-pkg-diff-0.0.0-20210226163009-20ebb0f2a09e" + ,go-github-com-pkg-diff-0.0.0-20210226163009-20ebb0f2a09e) + ("go-github-com-kr-pretty-0.3.0" ,go-github-com-kr-pretty-0.3.0) + ("go-github-com-google-renameio-1.0.1" + ,go-github-com-google-renameio-1.0.1) + ("go-github-com-frankban-quicktest-1.13.1" + ,go-github-com-frankban-quicktest-1.13.1) + ("go-github-com-creack-pty-1.1.15" ,go-github-com-creack-pty-1.1.15))) + (home-page "https://mvdan.cc/sh/v3") + (synopsis "sh") + (description + "This package provides a shell parser, formatter, and interpreter. Supports +@url{https://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html,POSIX +Shell}, @url{https://www.gnu.org/software/bash/,Bash}, and +@url{http://www.mirbsd.org/mksh.htm,mksh}. Requires Go 1.16 or later.") + (license license:bsd-3))) +(define-public go-oras-land-oras-go-1.1.0 + (package + (name "go-oras-land-oras-go") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/oras-project/oras-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1mbn57dgpr7m2f7cw5r9s8kka44khrgqca84np6wnjiyzxgr1khk")))) + (build-system go-build-system) + (arguments '(#:import-path "oras.land/oras-go")) + (propagated-inputs + `(("go-gopkg-in-yaml-v3-3.0.0-20210107192922-496545a6307b" + ,go-gopkg-in-yaml-v3-3.0.0-20210107192922-496545a6307b) + ("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) + ("go-gopkg-in-check-v1-1.0.0-20200227125254-8fa46927fb4f" + ,go-gopkg-in-check-v1-1.0.0-20200227125254-8fa46927fb4f) + ("go-google-golang-org-protobuf-1.27.1" + ,go-google-golang-org-protobuf-1.27.1) + ("go-google-golang-org-grpc-1.43.0" ,go-google-golang-org-grpc-1.43.0) + ("go-google-golang-org-genproto-0.0.0-20220107163113-42d7afdf6368" + ,go-google-golang-org-genproto-0.0.0-20220107163113-42d7afdf6368) + ("go-golang-org-x-text-0.3.7" ,go-golang-org-x-text-0.3.7) + ("go-golang-org-x-sys-0.0.0-20211216021012-1d35b9e2eb4e" + ,go-golang-org-x-sys-0.0.0-20211216021012-1d35b9e2eb4e) + ("go-golang-org-x-net-0.0.0-20220107192237-5cfca573fb4d" + ,go-golang-org-x-net-0.0.0-20220107192237-5cfca573fb4d) + ("go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20140908184405-b21fdbd4370f" + ,go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20140908184405-b21fdbd4370f) + ("go-github-com-yvasiyarov-gorelic-0.0.0-20141212073537-a9bba5b9ab50" + ,go-github-com-yvasiyarov-gorelic-0.0.0-20141212073537-a9bba5b9ab50) + ("go-github-com-yvasiyarov-go-metrics-0.0.0-20140926110328-57bccd1ccd43" + ,go-github-com-yvasiyarov-go-metrics-0.0.0-20140926110328-57bccd1ccd43) + ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) + ("go-github-com-prometheus-procfs-0.6.0" + ,go-github-com-prometheus-procfs-0.6.0) + ("go-github-com-prometheus-common-0.10.0" + ,go-github-com-prometheus-common-0.10.0) + ("go-github-com-prometheus-client-model-0.2.0" + ,go-github-com-prometheus-client-model-0.2.0) + ("go-github-com-prometheus-client-golang-1.7.1" + ,go-github-com-prometheus-client-golang-1.7.1) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-niemeyer-pretty-0.0.0-20200227124842-a10e7caefd8e" + ,go-github-com-niemeyer-pretty-0.0.0-20200227124842-a10e7caefd8e) + ("go-github-com-morikuni-aec-1.0.0" ,go-github-com-morikuni-aec-1.0.0) + ("go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd" + ,go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd) + ("go-github-com-moby-sys-mountinfo-0.5.0" + ,go-github-com-moby-sys-mountinfo-0.5.0) + ("go-github-com-moby-locker-1.0.1" ,go-github-com-moby-locker-1.0.1) + ("go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369" + ,go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369) + ("go-github-com-kr-text-0.2.0" ,go-github-com-kr-text-0.2.0) + ("go-github-com-klauspost-compress-1.13.6" + ,go-github-com-klauspost-compress-1.13.6) + ("go-github-com-inconshreveable-mousetrap-1.0.0" + ,go-github-com-inconshreveable-mousetrap-1.0.0) + ("go-github-com-gorilla-mux-1.8.0" ,go-github-com-gorilla-mux-1.8.0) + ("go-github-com-gorilla-handlers-1.5.1" + ,go-github-com-gorilla-handlers-1.5.1) + ("go-github-com-google-go-cmp-0.5.6" + ,go-github-com-google-go-cmp-0.5.6) + ("go-github-com-gomodule-redigo-1.8.2" + ,go-github-com-gomodule-redigo-1.8.2) + ("go-github-com-golang-protobuf-1.5.2" + ,go-github-com-golang-protobuf-1.5.2) + ("go-github-com-golang-groupcache-0.0.0-20210331224755-41bb18bfe9da" + ,go-github-com-golang-groupcache-0.0.0-20210331224755-41bb18bfe9da) + ("go-github-com-gogo-protobuf-1.3.2" + ,go-github-com-gogo-protobuf-1.3.2) + ("go-github-com-felixge-httpsnoop-1.0.1" + ,go-github-com-felixge-httpsnoop-1.0.1) + ("go-github-com-docker-libtrust-0.0.0-20150114040149-fa567046d9b1" + ,go-github-com-docker-libtrust-0.0.0-20150114040149-fa567046d9b1) + ("go-github-com-docker-go-units-0.4.0" + ,go-github-com-docker-go-units-0.4.0) + ("go-github-com-docker-go-metrics-0.0.1" + ,go-github-com-docker-go-metrics-0.0.1) + ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" + ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) + ("go-github-com-docker-go-connections-0.4.0" + ,go-github-com-docker-go-connections-0.4.0) + ("go-github-com-docker-docker-credential-helpers-0.6.4" + ,go-github-com-docker-docker-credential-helpers-0.6.4) + ("go-github-com-docker-distribution-2.7.1+incompatible" + ,go-github-com-docker-distribution-2.7.1+incompatible) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1) + ("go-github-com-containerd-cgroups-1.0.2" + ,go-github-com-containerd-cgroups-1.0.2) + ("go-github-com-cespare-xxhash-v2-2.1.1" + ,go-github-com-cespare-xxhash-v2-2.1.1) + ("go-github-com-bugsnag-panicwrap-0.0.0-20151223152923-e2c28503fcd0" + ,go-github-com-bugsnag-panicwrap-0.0.0-20151223152923-e2c28503fcd0) + ("go-github-com-bugsnag-osext-0.0.0-20130617224835-0dd3f918b21b" + ,go-github-com-bugsnag-osext-0.0.0-20130617224835-0dd3f918b21b) + ("go-github-com-bugsnag-bugsnag-go-0.0.0-20141110184014-b1d153021fcd" + ,go-github-com-bugsnag-bugsnag-go-0.0.0-20141110184014-b1d153021fcd) + ("go-github-com-bshuster-repo-logrus-logstash-hook-1.0.0" + ,go-github-com-bshuster-repo-logrus-logstash-hook-1.0.0) + ("go-github-com-beorn7-perks-1.0.1" ,go-github-com-beorn7-perks-1.0.1) + ("go-github-com-shopify-logrus-bugsnag-0.0.0-20171204204709-577dee27f20d" + ,go-github-com-shopify-logrus-bugsnag-0.0.0-20171204204709-577dee27f20d) + ("go-github-com-microsoft-hcsshim-0.9.1" + ,go-github-com-microsoft-hcsshim-0.9.1) + ("go-github-com-microsoft-go-winio-0.5.1" + ,go-github-com-microsoft-go-winio-0.5.1) + ("go-github-com-azure-go-ansiterm-0.0.0-20170929234023-d6e3b3328b78" + ,go-github-com-azure-go-ansiterm-0.0.0-20170929234023-d6e3b3328b78) + ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" + ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) + ("go-golang-org-x-crypto-0.0.0-20211117183948-ae814b36b871" + ,go-golang-org-x-crypto-0.0.0-20211117183948-ae814b36b871) + ("go-github-com-stretchr-testify-1.7.0" + ,go-github-com-stretchr-testify-1.7.0) + ("go-github-com-spf13-cobra-1.2.1" ,go-github-com-spf13-cobra-1.2.1) + ("go-github-com-sirupsen-logrus-1.8.1" + ,go-github-com-sirupsen-logrus-1.8.1) + ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) + ("go-github-com-phayes-freeport-0.0.0-20180830031419-95f893ade6f2" + ,go-github-com-phayes-freeport-0.0.0-20180830031419-95f893ade6f2) + ("go-github-com-opencontainers-image-spec-1.0.2" + ,go-github-com-opencontainers-image-spec-1.0.2) + ("go-github-com-opencontainers-go-digest-1.0.0" + ,go-github-com-opencontainers-go-digest-1.0.0) + ("go-github-com-docker-docker-20.10.11+incompatible" + ,go-github-com-docker-docker-20.10.11+incompatible) + ("go-github-com-docker-cli-20.10.11+incompatible" + ,go-github-com-docker-cli-20.10.11+incompatible) + ("go-github-com-distribution-distribution-v3-3.0.0-20211118083504-a29a3c99a684" + ,go-github-com-distribution-distribution-v3-3.0.0-20211118083504-a29a3c99a684) + ("go-github-com-containerd-containerd-1.5.9" + ,go-github-com-containerd-containerd-1.5.9))) + (home-page "https://oras.land/oras-go") + (synopsis "ORAS Go library") + (description + "Documentation for the ORAS Go library is located on the project website: +@url{https://oras.land/client_libraries/go/,oras.land/client_libraries/go}") + (license license:asl2.0))) +(define-public go-github-com-opencontainers-image-spec-1.0.2-0.20211117181255-693428a734f5 + (package + (name "go-github-com-opencontainers-image-spec") + (version "1.0.2-0.20211117181255-693428a734f5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/opencontainers/image-spec") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1w9fmamky30idjbqs78qhds6d5b9gdy6wzcxx6fhmpm2159dv62b")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/opencontainers/image-spec")) + (home-page "https://github.com/opencontainers/image-spec") + (synopsis "OCI Image Format Specification") + (description + "The OCI Image Format project creates and maintains the software shipping +container image format spec (OCI Image Format).") + (license license:asl2.0))) (define-public go-github-com-moby-sys-0.0.0-20220308220145-03355939d693 (package (name "go-github-com-moby-sys") From 9a12ead21491cb284e6724bfb04b738eaf01fcab Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 25 Mar 2022 10:15:00 +0100 Subject: [PATCH 290/383] adding apptainer 1.0.1 --- glicid/packages/golang.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index 1570eb6..d779e3b 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -1110,7 +1110,7 @@ To build from source code, runtime-tools requires Go 1.10.x or above.") (home-page "https://github.com/pelletier/go-toml") (synopsis "go-toml") (description "Package toml is a TOML parser and manipulation library.") - (license unknown-license!))) + (license license:expat))) (define-public go-github-com-pkg-errors-0.9.1 (package (name "go-github-com-pkg-errors") @@ -1360,7 +1360,7 @@ most simple cli application can be written as follows:") (home-page "https://github.com/yvasiyarov/go-metrics") (synopsis "go-metrics") (description "Go port of Coda Hale's Metrics library") - (license unknown-license!))) + (license license:expat))) (define-public go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20160601141957-9c099fbc30e9 (package (name "go-github-com-yvasiyarov-newrelic-platform-go") From daff1be008ba5d1f2207b3cff7393cefe92b5672 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 25 Mar 2022 10:18:04 +0100 Subject: [PATCH 291/383] adding apptainer 1.0.1 --- glicid/packages/golang.scm | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index d779e3b..4a6d073 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -479,12 +479,8 @@ resources format for settings on the cgroup uses the OCI runtime-spec found ,go-github-com-opencontainers-image-spec-1.0.2-0.20211117181255-693428a734f5) ("go-github-com-opencontainers-go-digest-1.0.0" ,go-github-com-opencontainers-go-digest-1.0.0) - ("go-github-com-moby-sys-symlink-0.2.0" - ,go-github-com-moby-sys-symlink-0.2.0) - ("go-github-com-moby-sys-signal-0.6.0" - ,go-github-com-moby-sys-signal-0.6.0) - ("go-github-com-moby-sys-mountinfo-0.5.0" - ,go-github-com-moby-sys-mountinfo-0.5.0) + ("go-github-com-moby-sys" + ,go-github-com-moby-sys) ("go-github-com-moby-locker-1.0.1" ,go-github-com-moby-locker-1.0.1) ("go-github-com-klauspost-compress-1.11.13" ,go-github-com-klauspost-compress-1.11.13) @@ -1574,8 +1570,8 @@ Shell}, @url{https://www.gnu.org/software/bash/,Bash}, and ("go-github-com-morikuni-aec-1.0.0" ,go-github-com-morikuni-aec-1.0.0) ("go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd" ,go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd) - ("go-github-com-moby-sys-mountinfo-0.5.0" - ,go-github-com-moby-sys-mountinfo-0.5.0) + ("go-github-com-moby-sys" + ,go-github-com-moby-sys) ("go-github-com-moby-locker-1.0.1" ,go-github-com-moby-locker-1.0.1) ("go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369" ,go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369) From 2452e2f4e233fcf943659f6cfa99ec9c90a4dd7a Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 25 Mar 2022 10:21:04 +0100 Subject: [PATCH 292/383] adding apptainer 1.0.1 --- glicid/packages/linux.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glicid/packages/linux.scm b/glicid/packages/linux.scm index d8fe2c9..c659f88 100644 --- a/glicid/packages/linux.scm +++ b/glicid/packages/linux.scm @@ -256,7 +256,7 @@ ("go-mvdan-cc-sh-v3-3.4.3-0.20220202175809-113ed667a8a7", go-mvdan-cc-sh-v3-3.4.3-0.20220202175809-113ed667a8a7) ("go-oras-land-oras-go-1.1.0", go-oras-land-oras-go-1.1.0) ("go-github-com-opencontainers-image-spec-1.0.2-0.20211117181255-693428a734f5", go-github-com-opencontainers-image-spec-1.0.2-0.20211117181255-693428a734f5) - ("go-github-com-moby-sys", go-github-com-moby-sys) + ("go-github-com-moby-sys-0.0.0-20220308220145-03355939d693", go-github-com-moby-sys-0.0.0-20220308220145-03355939d693) ("go-github-com-urfave-cli-1.22.5", go-github-com-urfave-cli-1.22.5) ("go-github-com-xeipuuv-gojsonpointer-0.0.0-20190905194746-02993c407bfb", go-github-com-xeipuuv-gojsonpointer-0.0.0-20190905194746-02993c407bfb) ("go-github-com-yvasiyarov-go-metrics-0.0.0-20150112132944-c25f46c4b940", go-github-com-yvasiyarov-go-metrics-0.0.0-20150112132944-c25f46c4b940) From aa6e3e8f4db9035d8587eef674f52e549d9e357b Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 25 Mar 2022 10:24:12 +0100 Subject: [PATCH 293/383] adding apptainer 1.0.1 --- glicid/packages/golang.scm | 64 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index 4a6d073..8af32f0 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -1724,3 +1724,67 @@ container image format spec (OCI Image Format).") a lot of metrics about Go scheduler, garbage collector and memory allocator and send them to NewRelic.") (license license:bsd-2))) +(define-public go-github-com-stretchr-testify-1.6.1 + (package + (name "go-github-com-stretchr-testify") + (version "1.6.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1yhiqqzjvi63pf01rgzx68gqkkvjx03fvl5wk30br5l6s81s090l")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (propagated-inputs + `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" + ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) + ("go-github-com-stretchr-objx-0.1.0" + ,go-github-com-stretchr-objx-0.1.0) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.0" + ,go-github-com-davecgh-go-spew-1.1.0))) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in +it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that +your code will behave as you intend.") + (license license:expat))) +(define-public go-github-com-stretchr-testify-1.7.0 + (package + (name "go-github-com-stretchr-testify") + (version "1.7.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ixgjsvafr3513pz3r6pmgk074s2dxkll0dadvl25gkf30rkmh10")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (propagated-inputs + `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" + ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) + ("go-github-com-stretchr-objx-0.1.0" + ,go-github-com-stretchr-objx-0.1.0) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-davecgh-go-spew-1.1.0" + ,go-github-com-davecgh-go-spew-1.1.0))) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in +it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that +your code will behave as you intend.") + (license license:expat))) From e63ef6959bca1b4aa74a6a393626dceec98619ba Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 25 Mar 2022 10:28:12 +0100 Subject: [PATCH 294/383] adding apptainer 1.0.1 --- glicid/packages/golang.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index 8af32f0..46dd582 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -1788,3 +1788,26 @@ it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend.") (license license:expat))) +(define-public go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c + (package + (name "go-gopkg-in-yaml-v3") + (version "3.0.0-20200313102051-9f266ea9e77c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v3") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1bbai3lzb50m0x2vwsdbagrbhvfylj9k1m32hgbqwldqx4p9ay35")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v3") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language.") + (license unknown-license!))) From c95bf68461912ec82a29a2c4bb6fa2914c7197d2 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 25 Mar 2022 10:30:14 +0100 Subject: [PATCH 295/383] adding apptainer 1.0.1 --- glicid/packages/golang.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index 46dd582..c6c557c 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -1810,4 +1810,4 @@ your code will behave as you intend.") (home-page "https://gopkg.in/yaml.v3") (synopsis "YAML support for the Go language") (description "Package yaml implements YAML support for the Go language.") - (license unknown-license!))) + (license license:expat))) From b331e30962e9615b1326485d014c2f083bb5eead Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 25 Mar 2022 10:33:23 +0100 Subject: [PATCH 296/383] adding apptainer 1.0.1 --- glicid/packages/golang.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index c6c557c..fb45a37 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -1811,3 +1811,23 @@ your code will behave as you intend.") (synopsis "YAML support for the Go language") (description "Package yaml implements YAML support for the Go language.") (license license:expat))) +(define-public go-github-com-stretchr-objx-0.1.0 + (package + (name "go-github-com-stretchr-objx") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/objx") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/objx")) + (home-page "https://github.com/stretchr/objx") + (synopsis "Objx") + (description + "Objx - Go package for dealing with maps, slices, JSON and other data.") + (license license:expat))) From 8a952bc2e59ae3e50dd66e46a9011aa91812898b Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 25 Mar 2022 10:36:19 +0100 Subject: [PATCH 297/383] adding apptainer 1.0.1 --- glicid/packages/golang.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index fb45a37..a87b963 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -1831,3 +1831,24 @@ your code will behave as you intend.") (description "Objx - Go package for dealing with maps, slices, JSON and other data.") (license license:expat))) +(define-public go-github-com-pmezard-go-difflib-1.0.0 + (package + (name "go-github-com-pmezard-go-difflib") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pmezard/go-difflib") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pmezard/go-difflib")) + (home-page "https://github.com/pmezard/go-difflib") + (synopsis "go-difflib") + (description + "Go-difflib is a partial port of python 3 difflib package. Its main goal was to +make unified and context diff available in pure Go, mostly for testing purposes.") + (license license:bsd-3))) From 460d32009ec61ae844c12fd32f279540430a0705 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 25 Mar 2022 10:39:30 +0100 Subject: [PATCH 298/383] adding apptainer 1.0.1 --- glicid/packages/golang.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index a87b963..264cc61 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -1852,3 +1852,27 @@ your code will behave as you intend.") "Go-difflib is a partial port of python 3 difflib package. Its main goal was to make unified and context diff available in pure Go, mostly for testing purposes.") (license license:bsd-3))) +(define-public go-github-com-davecgh-go-spew-1.1.0 + (package + (name "go-github-com-davecgh-go-spew") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/davecgh/go-spew") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/davecgh/go-spew")) + (home-page "https://github.com/davecgh/go-spew") + (synopsis "go-spew") + (description + "Go-spew implements a deep pretty printer for Go data structures to aid in +debugging. A comprehensive suite of tests with 100% test coverage is provided +to ensure proper functionality. See @code{test_coverage.txt} for the gocov +coverage report. Go-spew is licensed under the liberal ISC license, so it may +be used in open source or commercial projects.") + (license license:isc))) From 4aa26bbd0b3c5fd79dc9964bf6a893b7c25a1901 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 25 Mar 2022 10:42:59 +0100 Subject: [PATCH 299/383] adding apptainer 1.0.1 --- glicid/packages/golang.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index 264cc61..b3e532f 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -1876,3 +1876,24 @@ to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage report. Go-spew is licensed under the liberal ISC license, so it may be used in open source or commercial projects.") (license license:isc))) +(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 + (package + (name "go-gopkg-in-check-v1") + (version "0.0.0-20161208181325-20d25e280405") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/check.v1") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) + (home-page "https://gopkg.in/check.v1") + (synopsis "Instructions") + (description + "Package check is a rich testing extension for Go's testing package.") + (license license:bsd-2))) From ce7bfebc081d960b529e6134b8ee79da3487ce4e Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 25 Mar 2022 10:44:57 +0100 Subject: [PATCH 300/383] adding apptainer 1.0.1 --- glicid/packages/golang.scm | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index b3e532f..a27926a 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -1897,3 +1897,30 @@ be used in open source or commercial projects.") (description "Package check is a rich testing extension for Go's testing package.") (license license:bsd-2))) +(define-public go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20210322153248-0c34fe9e7dc2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "021szs1czc0xg4chpays7i05dvkax9s8mns314ab01r887kchqxq")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" + ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) + ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" + ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68) + ("go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110" + ,go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) From cb6b2db708b52fcb9c520e1c2bf9b17a32f5c4cd Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 25 Mar 2022 10:47:14 +0100 Subject: [PATCH 301/383] adding apptainer 1.0.1 --- glicid/packages/golang.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index a27926a..5be431b 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -1924,3 +1924,27 @@ be used in open source or commercial projects.") (description "This repository holds supplementary Go cryptography libraries.") (license license:bsd-3))) +(define-public go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1 + (package + (name "go-golang-org-x-term") + (version "0.0.0-20201126162022-7de9c90e9dd1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/term") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ba252xmv6qsvf1w1gcy98mngrj0vd4inbjw0lsklqvva65nljna")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/term")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" + ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) + (home-page "https://golang.org/x/term") + (synopsis "Go terminal/console support") + (description + "Package term provides support functions for dealing with terminals, as commonly +found on UNIX systems.") + (license license:bsd-3))) From 4515fcbcee00db3673d7caaa91d5d8ea04e2af72 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 25 Mar 2022 10:54:17 +0100 Subject: [PATCH 302/383] adding apptainer 1.0.1 --- glicid/packages/golang.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index 5be431b..ab639ee 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -1948,3 +1948,24 @@ be used in open source or commercial projects.") "Package term provides support functions for dealing with terminals, as commonly found on UNIX systems.") (license license:bsd-3))) +(define-public go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20201119102817-f84b799fce68") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1dvhqian5byzkcg1bnqzygqa6ccc6krc2q7j12pp1vhl3y7znnsg")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) From ae3527ef51810cb15f3e43134ff479c1fe3ef2ff Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 25 Mar 2022 10:59:40 +0100 Subject: [PATCH 303/383] adding apptainer 1.0.1 --- glicid/packages/golang.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index ab639ee..993b3b5 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -1969,3 +1969,29 @@ found on UNIX systems.") "This repository holds supplemental Go packages for low-level interactions with the operating system.") (license license:bsd-3))) +(define-public go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20210226172049-e18ecbb05110") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1vlq8mdscp7yfaa1lmyv03y5m4c2d67ydg2q1i6smkrxghn3zn3q")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) + ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" + ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) + ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" + ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) From 7d3853d0d51128fb22fa4b0f4844b015ffcd3113 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 25 Mar 2022 11:01:47 +0100 Subject: [PATCH 304/383] adding apptainer 1.0.1 --- glicid/packages/golang.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index 993b3b5..31e91c5 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -1995,3 +1995,28 @@ the operating system.") (description "This repository holds supplementary Go networking libraries.") (license license:bsd-3))) +(define-public go-golang-org-x-text-0.3.3 + (package + (name "go-golang-org-x-text") + (version "0.3.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19pihqm3phyndmiw6i42pdv6z1rbvlqlsnhsyqf9gsnn0qnmqqlh")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/text")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" + ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) + (home-page "https://golang.org/x/text") + (synopsis "Go Text") + (description + "text is a repository of text-related packages related to internationalization +(i18n) and localization (l10n), such as character encodings, text +transformations, and locale-specific text handling.") + (license license:bsd-3))) From 74703f45629af9bd0fb48b256c860d80c72f3f5b Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 25 Mar 2022 11:07:14 +0100 Subject: [PATCH 305/383] adding apptainer 1.0.1 --- glicid/packages/golang.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index 31e91c5..c851c78 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -2020,3 +2020,24 @@ the operating system.") (i18n) and localization (l10n), such as character encodings, text transformations, and locale-specific text handling.") (license license:bsd-3))) +(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20180917221912-90fa682c2a6e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) From 68284dd1f74d4fc13e402fca69abe79df7753d95 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 25 Mar 2022 11:09:38 +0100 Subject: [PATCH 306/383] adding apptainer 1.0.1 --- glicid/packages/golang.scm | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index c851c78..c168946 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -2041,3 +2041,37 @@ transformations, and locale-specific text handling.") "This subrepository holds the source for various packages and tools that support the Go programming language.") (license license:bsd-3))) +(define-public go-github-com-sirupsen-logrus-1.4.2 + (package + (name "go-github-com-sirupsen-logrus") + (version "1.4.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sirupsen/logrus") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "087k2lxrr9p9dh68yw71d05h5g9p5v26zbwd6j7lghinjfaw334x")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/sirupsen/logrus")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894" + ,go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894) + ("go-github-com-stretchr-testify-1.2.2" + ,go-github-com-stretchr-testify-1.2.2) + ("go-github-com-stretchr-objx-0.1.1" + ,go-github-com-stretchr-objx-0.1.1) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.1" + ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.1) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/sirupsen/logrus") + (synopsis "Logrus") + (description + "Package logrus is a structured logger for Go, completely API compatible with the +standard library logger.") + (license license:expat))) From 88aed2b242a4936c4663d8af5db87728318c1bee Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 25 Mar 2022 11:12:08 +0100 Subject: [PATCH 307/383] adding apptainer 1.0.1 --- glicid/packages/golang.scm | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index c168946..2225833 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -2075,3 +2075,22 @@ the Go programming language.") "Package logrus is a structured logger for Go, completely API compatible with the standard library logger.") (license license:expat))) +(define-public go-github-com-gorilla-mux-1.7.4 + (package + (name "go-github-com-gorilla-mux") + (version "1.7.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gorilla/mux") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1d0sy1paa055ic84sp3766s9pa24q008hf77dc842vrgvn8p3wmh")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/gorilla/mux")) + (home-page "https://github.com/gorilla/mux") + (synopsis "gorilla/mux") + (description "Package mux implements a request router and dispatcher.") + (license license:bsd-3))) From df349da59465ee27b94044c3ad73a38fb6b7bf77 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 25 Mar 2022 11:15:34 +0100 Subject: [PATCH 308/383] adding apptainer 1.0.1 --- glicid/packages/golang.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index 2225833..8ec75d2 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -2094,3 +2094,28 @@ standard library logger.") (synopsis "gorilla/mux") (description "Package mux implements a request router and dispatcher.") (license license:bsd-3))) +(define-public go-github-com-docker-libtrust-0.0.0-20160708172513-aabc10ec26b7 + (package + (name "go-github-com-docker-libtrust") + (version "0.0.0-20160708172513-aabc10ec26b7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/docker/libtrust") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1lwslbggzc2b0c4wxl5pn6i2nfgz5jz8f7s7vnid9mrlsk59h7s1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/docker/libtrust")) + (home-page "https://github.com/docker/libtrust") + (synopsis "libtrust") + (description + "Package libtrust provides an interface for managing authentication and +authorization using public key cryptography. Authentication is handled using +the identity attached to the public key and verified through TLS x509 +certificates, a key challenge, or signature. Authorization and access control +is managed through a trust graph distributed between both remote trust servers +and locally cached and managed data.") + (license license:asl2.0))) From d1bf0bf171e4b8a44334afc6d030e6fc4aca8bd4 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 25 Mar 2022 11:46:18 +0100 Subject: [PATCH 309/383] adding apptainer 1.0.1 --- glicid/packages/golang.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index 8ec75d2..9910535 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -2119,3 +2119,25 @@ certificates, a key challenge, or signature. Authorization and access control is managed through a trust graph distributed between both remote trust servers and locally cached and managed data.") (license license:asl2.0))) +(define-public go-github-com-docker-distribution-2.7.1+incompatible + (package + (name "go-github-com-docker-distribution") + (version "2.7.1+incompatible") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/distribution/distribution") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1nx8b5a68rn81alp8wkkw6qd5v32mgf0fk23mxm60zdf63qk1nzw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/docker/distribution")) + (home-page "https://github.com/docker/distribution") + (synopsis "Distribution") + (description + "Package distribution will define the interfaces for the components of docker +distribution. The goal is to allow users to reliably package, ship and store +content related to docker images.") + (license license:asl2.0))) From f0875428ef363e75991a2488f4f1f968d758b210 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 25 Mar 2022 11:49:49 +0100 Subject: [PATCH 310/383] adding apptainer 1.0.1 --- glicid/packages/golang.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index 9910535..80f0fce 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -2141,3 +2141,24 @@ and locally cached and managed data.") distribution. The goal is to allow users to reliably package, ship and store content related to docker images.") (license license:asl2.0))) +(define-public go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190422165155-953cdadca894") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0gkha4whk8xkcv3isigbs250akag99isxnd3v9xmy0kl3g88hxy1")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) From 4e9ee0dc2719edfe5031cc34da17a98d7ec84172 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 25 Mar 2022 11:59:32 +0100 Subject: [PATCH 311/383] adding apptainer 1.0.1 --- glicid/packages/golang.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index 80f0fce..b7a2a4c 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -2162,3 +2162,26 @@ content related to docker images.") "This repository holds supplemental Go packages for low-level interactions with the operating system.") (license license:bsd-3))) +(define-public go-github-com-stretchr-testify-1.2.2 + (package + (name "go-github-com-stretchr-testify") + (version "1.2.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0dlszlshlxbmmfxj5hlwgv3r22x0y1af45gn1vd198nvvs3pnvfs")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in +it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that +your code will behave as you intend.") + (license license:expat))) From 8a982eb6e93194afeed6cc1b8903c9219149fdee Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 25 Mar 2022 12:14:54 +0100 Subject: [PATCH 312/383] adding apptainer 1.0.1 --- glicid/packages/golang.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index b7a2a4c..9fa3b14 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -2185,3 +2185,23 @@ it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend.") (license license:expat))) +(define-public go-github-com-stretchr-objx-0.1.1 + (package + (name "go-github-com-stretchr-objx") + (version "0.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/objx") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0iph0qmpyqg4kwv8jsx6a56a7hhqq8swrazv40ycxk9rzr0s8yls")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/objx")) + (home-page "https://github.com/stretchr/objx") + (synopsis "Objx") + (description + "Objx - Go package for dealing with maps, slices, JSON and other data.") + (license license:expat))) From a3cd3e33dd0f1cfc1638e8cb9f7eff8047e533ea Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 25 Mar 2022 12:19:31 +0100 Subject: [PATCH 313/383] adding apptainer 1.0.1 --- glicid/packages/golang.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index 9fa3b14..4115b11 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -2205,3 +2205,24 @@ your code will behave as you intend.") (description "Objx - Go package for dealing with maps, slices, JSON and other data.") (license license:expat))) +(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.1 + (package + (name "go-github-com-konsorten-go-windows-terminal-sequences") + (version "1.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/konsorten/go-windows-terminal-sequences") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1lchgf27n276vma6iyxa0v1xds68n2g8lih5lavqnx5x6q5pw2ip")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) + (home-page "https://github.com/konsorten/go-windows-terminal-sequences") + (synopsis "Windows Terminal Sequences") + (description + "This library allow for enabling Windows terminal color support for Go.") + (license license:expat))) From d316bbe5d8063219b6272f70bfc58a4fadc2f4d8 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 25 Mar 2022 12:22:47 +0100 Subject: [PATCH 314/383] adding apptainer 1.0.1 --- glicid/packages/golang.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index 4115b11..88c1d85 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -2226,3 +2226,27 @@ your code will behave as you intend.") (description "This library allow for enabling Windows terminal color support for Go.") (license license:expat))) +(define-public go-github-com-davecgh-go-spew-1.1.1 + (package + (name "go-github-com-davecgh-go-spew") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/davecgh/go-spew") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/davecgh/go-spew")) + (home-page "https://github.com/davecgh/go-spew") + (synopsis "go-spew") + (description + "Go-spew implements a deep pretty printer for Go data structures to aid in +debugging. A comprehensive suite of tests with 100% test coverage is provided +to ensure proper functionality. See @code{test_coverage.txt} for the gocov +coverage report. Go-spew is licensed under the liberal ISC license, so it may +be used in open source or commercial projects.") + (license license:isc))) From 32dd836edcb30b1146726f5307482ce7f1412ba8 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 25 Mar 2022 12:45:40 +0100 Subject: [PATCH 315/383] adding apptainer 1.0.1 --- glicid/packages/golang.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index 88c1d85..9276694 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -2250,3 +2250,26 @@ to ensure proper functionality. See @code{test_coverage.txt} for the gocov coverage report. Go-spew is licensed under the liberal ISC license, so it may be used in open source or commercial projects.") (license license:isc))) +(define-public go-gopkg-in-yaml-v2-2.2.2 + (package + (name "go-gopkg-in-yaml-v2") + (version "2.2.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "01wj12jzsdqlnidpyjssmj0r4yavlqy7dwrg7adqd8dicjc4ncsa")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v2") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language.") + (license license:asl2.0))) From 2d5f028046c4d2aa04978759004e8044ddf37afe Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 25 Mar 2022 12:48:43 +0100 Subject: [PATCH 316/383] adding apptainer 1.0.1 --- glicid/packages/golang.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index 9276694..5a1e9ad 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -2273,3 +2273,24 @@ be used in open source or commercial projects.") (synopsis "YAML support for the Go language") (description "Package yaml implements YAML support for the Go language.") (license license:asl2.0))) +(define-public go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15 + (package + (name "go-gopkg-in-check-v1") + (version "1.0.0-20190902080502-41f04d3bba15") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/check.v1") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0vfk9czmlxmp6wndq8k17rhnjxal764mxfhrccza7nwlia760pjy")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) + (home-page "https://gopkg.in/check.v1") + (synopsis "Instructions") + (description + "Package check is a rich testing extension for Go's testing package.") + (license license:bsd-2))) From 20d036901decf5f0f91e35ba36c44353dbe11b74 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 25 Mar 2022 12:50:25 +0100 Subject: [PATCH 317/383] adding apptainer 1.0.1 --- glicid/packages/golang.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index 5a1e9ad..0a2661f 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -2294,3 +2294,28 @@ be used in open source or commercial projects.") (description "Package check is a rich testing extension for Go's testing package.") (license license:bsd-2))) +(define-public go-golang-org-x-text-0.3.2 + (package + (name "go-golang-org-x-text") + (version "0.3.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0flv9idw0jm5nm8lx25xqanbkqgfiym6619w575p7nrdh0riqwqh")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/text")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" + ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) + (home-page "https://golang.org/x/text") + (synopsis "Go Text") + (description + "text is a repository of text-related packages related to internationalization +(i18n) and localization (l10n), such as character encodings, text +transformations, and locale-specific text handling.") + (license license:bsd-3))) From 7906b3eced2a5916785a067737d18abe1364d8b0 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 25 Mar 2022 12:52:34 +0100 Subject: [PATCH 318/383] adding apptainer 1.0.1 --- glicid/packages/golang.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index 0a2661f..3a6a39c 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -2319,3 +2319,29 @@ be used in open source or commercial projects.") (i18n) and localization (l10n), such as character encodings, text transformations, and locale-specific text handling.") (license license:bsd-3))) +(define-public go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190620200207-3b0461eec859") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0l00c8l0a8xnv6qdpwfzxxsr58jggacgzdrwiprrfx2xqm37b6d5")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) From f4b43c2c31abe4e522722fc592aa5966a1801698 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 25 Mar 2022 12:54:36 +0100 Subject: [PATCH 319/383] adding apptainer 1.0.1 --- glicid/packages/golang.scm | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index 3a6a39c..00331ca 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -2345,3 +2345,22 @@ transformations, and locale-specific text handling.") (description "This repository holds supplementary Go networking libraries.") (license license:bsd-3))) +(define-public go-github-com-tj-go-spin-1.1.0 + (package + (name "go-github-com-tj-go-spin") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/tj/go-spin") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "11xr67991m5pwsy1dira3iwd0sr55vmn1cyjwmlqziw4bwpym64s")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/tj/go-spin")) + (home-page "https://github.com/tj/go-spin") + (synopsis #f) + (description #f) + (license #f))) From 29d7df9a64b7ee6a9cf3f90e6a23bbfcbadf2ffa Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 25 Mar 2022 12:57:29 +0100 Subject: [PATCH 320/383] adding apptainer 1.0.1 --- glicid/packages/golang.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index 00331ca..7d19885 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -2364,3 +2364,24 @@ transformations, and locale-specific text handling.") (synopsis #f) (description #f) (license #f))) +(define-public go-github-com-tj-go-kinesis-0.0.0-20171128231115-08b17f58cb1b + (package + (name "go-github-com-tj-go-kinesis") + (version "0.0.0-20171128231115-08b17f58cb1b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/tj/go-kinesis") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "108c6p5j6rhhc2cnc2v5368yfsw73y6lzlvz02vpvvjph8rhmld4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/tj/go-kinesis")) + (home-page "https://github.com/tj/go-kinesis") + (synopsis "go-kinesis") + (description + "Package kinesis implements a batch producer built on top of the official AWS +SDK.") + (license license:expat))) From 1cddb6bbeaa7403d1e1107f11de29ba86ac86934 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 25 Mar 2022 12:59:19 +0100 Subject: [PATCH 321/383] adding apptainer 1.0.1 --- glicid/packages/golang.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index 7d19885..b5bc91f 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -2385,3 +2385,23 @@ transformations, and locale-specific text handling.") "Package kinesis implements a batch producer built on top of the official AWS SDK.") (license license:expat))) +(define-public go-github-com-tj-go-elastic-0.0.0-20171221160941-36157cbbebc2 + (package + (name "go-github-com-tj-go-elastic") + (version "0.0.0-20171221160941-36157cbbebc2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/tj/go-elastic") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1r94vc4hbfvqvjz74n4mvsw4dy3vbyzlivb90kyn8vn76a4wqk69")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/tj/go-elastic")) + (home-page "https://github.com/tj/go-elastic") + (synopsis "go-elastic") + (description + "Package elastic provides an Elasticsearch client with AWS sigv4 support.") + (license license:expat))) From c76f170a1067ea3fd78235c44396a8c0879712d9 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 25 Mar 2022 13:01:11 +0100 Subject: [PATCH 322/383] adding apptainer 1.0.1 --- glicid/packages/golang.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index b5bc91f..3ccedf2 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -2405,3 +2405,27 @@ SDK.") (description "Package elastic provides an Elasticsearch client with AWS sigv4 support.") (license license:expat))) +(define-public go-github-com-tj-go-buffer-1.1.0 + (package + (name "go-github-com-tj-go-buffer") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/tj/go-buffer") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1qdxpa069pjjbzh217aadpzz1aq1n6h32lhp60yjcpi7hr4q8fxx")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/tj/go-buffer")) + (propagated-inputs + `(("go-github-com-tj-assert-0.0.3" ,go-github-com-tj-assert-0.0.3))) + (home-page "https://github.com/tj/go-buffer") + (synopsis "Buffer") + (description + "Package buffer provides a generic buffer or batching mechanism for flushing +entries at a given size or interval, useful for cases such as batching log +events.") + (license license:expat))) From f84e586087189c3367cef31e1b2f734800a816bf Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 25 Mar 2022 13:04:07 +0100 Subject: [PATCH 323/383] adding apptainer 1.0.1 --- glicid/packages/golang.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index 3ccedf2..e0e68ba 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -2429,3 +2429,31 @@ SDK.") entries at a given size or interval, useful for cases such as batching log events.") (license license:expat))) +(define-public go-github-com-tj-assert-0.0.3 + (package + (name "go-github-com-tj-assert") + (version "0.0.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/tj/assert") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1j5swk3fjq1h5fpqkipddz2ccnbidr7qrpm5dpdaflg9q5jnc673")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/tj/assert")) + (propagated-inputs + `(("go-gopkg-in-yaml-v3-3.0.0-20200605160147-a5ece683394c" + ,go-gopkg-in-yaml-v3-3.0.0-20200605160147-a5ece683394c) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/tj/assert") + (synopsis "assert") + (description + "Package assert implements the same assertions as the `assert` package but stops +test execution when a test fails.") + (license license:expat))) From de69af3402284cc9c67db29210a5edea65717cc9 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 25 Mar 2022 13:06:17 +0100 Subject: [PATCH 324/383] adding apptainer 1.0.1 --- glicid/packages/golang.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index e0e68ba..5efbd9c 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -2457,3 +2457,28 @@ events.") "Package assert implements the same assertions as the `assert` package but stops test execution when a test fails.") (license license:expat))) +(define-public go-github-com-smartystreets-gunit-1.0.0 + (package + (name "go-github-com-smartystreets-gunit") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/smartystreets/gunit") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "11d09rl5qqpj36a311pjj8w5jkj83d5b8gdcsx8f1zn4j924sm5d")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/smartystreets/gunit")) + (propagated-inputs + `(("go-github-com-smartystreets-assertions-1.0.0" + ,go-github-com-smartystreets-assertions-1.0.0))) + (home-page "https://github.com/smartystreets/gunit") + (synopsis "gunit") + (description + "Package gunit provides \"testing\" package hooks and convenience functions for +writing tests in an xUnit style. See the README file and the examples folder +for examples.") + (license license:expat))) From f57e001017bd1689c8dbbeaf46cfe89736fdd868 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 25 Mar 2022 13:13:22 +0100 Subject: [PATCH 325/383] adding apptainer 1.0.1 --- glicid/packages/golang.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index 5efbd9c..5e4fd81 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -2482,3 +2482,25 @@ test execution when a test fails.") writing tests in an xUnit style. See the README file and the examples folder for examples.") (license license:expat))) +(define-public go-github-com-smartystreets-go-aws-auth-0.0.0-20180515143844-0c1422d1fdb9 + (package + (name "go-github-com-smartystreets-go-aws-auth") + (version "0.0.0-20180515143844-0c1422d1fdb9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/smarty-archives/go-aws-auth") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0krfdpgn3gfii1z9fi8ydfw0wwfqyvp6w3rji7w92m528zkjl93d")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/smartystreets/go-aws-auth")) + (home-page "https://github.com/smartystreets/go-aws-auth") + (synopsis "go-aws-auth") + (description + "Package awsauth implements AWS request signing using Signed Signature Version 2, +Signed Signature Version 3, and Signed Signature Version 4. Supports S3 and +STS.") + (license license:expat))) From 1a5b979400d92c3f3500b0ad68c195683d8de2a0 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 25 Mar 2022 13:21:48 +0100 Subject: [PATCH 326/383] adding apptainer 1.0.1 --- glicid/packages/golang.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index 5e4fd81..85248c8 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -2504,3 +2504,24 @@ for examples.") Signed Signature Version 3, and Signed Signature Version 4. Supports S3 and STS.") (license license:expat))) +(define-public go-github-com-rogpeppe-fastuuid-1.1.0 + (package + (name "go-github-com-rogpeppe-fastuuid") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/rogpeppe/fastuuid") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1jlif5pxyz3md02ij93kd2y2j1zz0ajc9k8azvn83vv6l3r5c1zg")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/rogpeppe/fastuuid")) + (home-page "https://github.com/rogpeppe/fastuuid") + (synopsis "fastuuid") + (description + "Package fastuuid provides fast UUID generation of 192 bit universally unique +identifiers.") + (license license:bsd-3))) From d5dd3e93ac3f1f5791307dc857c31e28b5b84511 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 25 Mar 2022 13:38:04 +0100 Subject: [PATCH 327/383] adding apptainer 1.0.1 --- glicid/packages/golang.scm | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index 85248c8..6a75412 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -2525,3 +2525,22 @@ STS.") "Package fastuuid provides fast UUID generation of 192 bit universally unique identifiers.") (license license:bsd-3))) +(define-public go-github-com-pkg-errors-0.8.1 + (package + (name "go-github-com-pkg-errors") + (version "0.8.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pkg/errors") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0g5qcb4d4fd96midz0zdk8b9kz8xkzwfa8kr1cliqbg8sxsy5vd1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pkg/errors")) + (home-page "https://github.com/pkg/errors") + (synopsis "errors") + (description "Package errors provides simple error handling primitives.") + (license license:bsd-2))) From 42ae33d9f9afeea136599fa729fb302607ad623d Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 25 Mar 2022 13:58:21 +0100 Subject: [PATCH 328/383] adding apptainer 1.0.1 --- glicid/packages/golang.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index 6a75412..82c84fa 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -2544,3 +2544,25 @@ identifiers.") (synopsis "errors") (description "Package errors provides simple error handling primitives.") (license license:bsd-2))) +(define-public go-github-com-mattn-go-colorable-0.1.2 + (package + (name "go-github-com-mattn-go-colorable") + (version "0.1.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mattn/go-colorable") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0512jm3wmzkkn7d99x9wflyqf48n5ri3npy1fqkq6l6adc5mni3n")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mattn/go-colorable")) + (propagated-inputs + `(("go-github-com-mattn-go-isatty-0.0.8" + ,go-github-com-mattn-go-isatty-0.0.8))) + (home-page "https://github.com/mattn/go-colorable") + (synopsis "go-colorable") + (description "Colorable writer for windows.") + (license license:expat))) From 6afa6a3340f0346185101017db241695c75a0668 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 25 Mar 2022 14:00:44 +0100 Subject: [PATCH 329/383] adding apptainer 1.0.1 --- glicid/packages/golang.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index 82c84fa..c642edd 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -2566,3 +2566,26 @@ identifiers.") (synopsis "go-colorable") (description "Colorable writer for windows.") (license license:expat))) +(define-public go-github-com-kr-pretty-0.2.0 + (package + (name "go-github-com-kr-pretty") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/pretty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ywbfzz1h3a3qd8rpkiqwi1dm4w8ls9ijb4x1b7567grns9f0vnp")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/pretty")) + (propagated-inputs + `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) + (home-page "https://github.com/kr/pretty") + (synopsis #f) + (description + "Package pretty provides pretty-printing for Go values. This is useful during +debugging, to avoid wrapping long output lines in the terminal.") + (license license:expat))) From e20b7c7a43583dac0c38c302a95de512ffa3312a Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 25 Mar 2022 14:04:03 +0100 Subject: [PATCH 330/383] adding apptainer 1.0.1 --- glicid/packages/golang.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index c642edd..8bbfe47 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -2589,3 +2589,23 @@ identifiers.") "Package pretty provides pretty-printing for Go values. This is useful during debugging, to avoid wrapping long output lines in the terminal.") (license license:expat))) +(define-public go-github-com-jpillora-backoff-0.0.0-20180909062703-3050d21c67d7 + (package + (name "go-github-com-jpillora-backoff") + (version "0.0.0-20180909062703-3050d21c67d7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jpillora/backoff") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1nxapdx9xg5gwiscfhq7m0w14hj4gaxb4avmgf1mx9zd3jnw9jxv")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/jpillora/backoff")) + (home-page "https://github.com/jpillora/backoff") + (synopsis "Backoff") + (description + "Package backoff provides an exponential-backoff implementation.") + (license license:expat))) From fa947fd4f1338d70d41198b5dab1c23b6e41f03e Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 25 Mar 2022 14:13:58 +0100 Subject: [PATCH 331/383] adding apptainer 1.0.1 --- glicid/packages/golang.scm | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index 8bbfe47..3c0714f 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -2609,3 +2609,22 @@ debugging, to avoid wrapping long output lines in the terminal.") (description "Package backoff provides an exponential-backoff implementation.") (license license:expat))) +(define-public go-github-com-google-uuid-1.1.1 + (package + (name "go-github-com-google-uuid") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/uuid") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hfxcf9frkb57k6q0rdkrmnfs78ms21r1qfk9fhlqga2yh5xg8zb")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/uuid")) + (home-page "https://github.com/google/uuid") + (synopsis "uuid") + (description "Package uuid generates and inspects UUIDs.") + (license license:bsd-3))) From 39f93d3d96ea09c0b6502b328ade7dc307dd2a38 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 25 Mar 2022 14:18:53 +0100 Subject: [PATCH 332/383] adding apptainer 1.0.1 --- glicid/packages/golang.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index 3c0714f..0c9b240 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -2628,3 +2628,24 @@ debugging, to avoid wrapping long output lines in the terminal.") (synopsis "uuid") (description "Package uuid generates and inspects UUIDs.") (license license:bsd-3))) +(define-public go-github-com-golang-protobuf-1.3.1 + (package + (name "go-github-com-golang-protobuf") + (version "1.3.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "15am4s4646qy6iv0g3kkqq52rzykqjhm4bf08dk0fy2r58knpsyl")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code +github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") + (license license:bsd-3))) From ed6b22a658f2e0cd0e3597d0db70120f8721f33a Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 25 Mar 2022 14:20:41 +0100 Subject: [PATCH 333/383] adding apptainer 1.0.1 --- glicid/packages/golang.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index 0c9b240..903ddd4 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -2649,3 +2649,29 @@ debugging, to avoid wrapping long output lines in the terminal.") "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") (license license:bsd-3))) +(define-public go-github-com-go-logfmt-logfmt-0.4.0 + (package + (name "go-github-com-go-logfmt-logfmt") + (version "0.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/go-logfmt/logfmt") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "06smxc112xmixz78nyvk3b2hmc7wasf2sl5vxj1xz62kqcq9lzm9")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/go-logfmt/logfmt")) + (propagated-inputs + `(("go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515" + ,go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515))) + (home-page "https://github.com/go-logfmt/logfmt") + (synopsis "logfmt") + (description + "Package logfmt implements utilities to marshal and unmarshal data in the logfmt +format. The logfmt format records key/value pairs in a way that balances +readability for humans and simplicity of computer parsing. It is most commonly +used as a more human friendly alternative to JSON for structured logging.") + (license license:expat))) From 4de52992dbd8f2d2f0d385d5e7a1ba421c8fbe96 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 25 Mar 2022 14:24:43 +0100 Subject: [PATCH 334/383] adding apptainer 1.0.1 --- glicid/packages/golang.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index 903ddd4..ac5ef1b 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -2675,3 +2675,25 @@ format. The logfmt format records key/value pairs in a way that balances readability for humans and simplicity of computer parsing. It is most commonly used as a more human friendly alternative to JSON for structured logging.") (license license:expat))) +(define-public go-github-com-fatih-color-1.7.0 + (package + (name "go-github-com-fatih-color") + (version "1.7.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/fatih/color") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0v8msvg38r8d1iiq2i5r4xyfx0invhc941kjrsg5gzwvagv55inv")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/fatih/color")) + (home-page "https://github.com/fatih/color") + (synopsis "color") + (description + "Package color is an ANSI color package to output colorized or SGR defined output +to the standard output. The API can be used in several way, pick one that suits +you.") + (license license:expat))) From 9eaf90af453b66bcbc8ca7310c0cf890c5d4f3b6 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 25 Mar 2022 14:27:41 +0100 Subject: [PATCH 335/383] adding apptainer 1.0.1 --- glicid/packages/golang.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index ac5ef1b..bcc25d4 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -2697,3 +2697,24 @@ used as a more human friendly alternative to JSON for structured logging.") to the standard output. The API can be used in several way, pick one that suits you.") (license license:expat))) +(define-public go-github-com-aybabtme-rgbterm-0.0.0-20170906152045-cc83f3b3ce59 + (package + (name "go-github-com-aybabtme-rgbterm") + (version "0.0.0-20170906152045-cc83f3b3ce59") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/aybabtme/rgbterm") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wvmxvjn64968ikvnxrflb1x8rlcwzpfl53fzbxff2axbx9lq50q")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/aybabtme/rgbterm")) + (home-page "https://github.com/aybabtme/rgbterm") + (synopsis "RGB terminal") + (description + "Package rgbterm colorizes bytes and strings using RGB colors, for a full range +of pretty terminal strings.") + (license unknown-license!))) From 7e56ba86932ef6c21f13d96b2dfcfc1e7bb57f3b Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 25 Mar 2022 14:29:57 +0100 Subject: [PATCH 336/383] adding apptainer 1.0.1 --- glicid/packages/golang.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index bcc25d4..a747889 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -2717,4 +2717,4 @@ you.") (description "Package rgbterm colorizes bytes and strings using RGB colors, for a full range of pretty terminal strings.") - (license unknown-license!))) + (license license:expat))) From 17165542b81570835461180d4ab46bf57b62004e Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 25 Mar 2022 14:33:06 +0100 Subject: [PATCH 337/383] adding apptainer 1.0.1 --- glicid/packages/golang.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index a747889..3ad1e4a 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -2718,3 +2718,26 @@ you.") "Package rgbterm colorizes bytes and strings using RGB colors, for a full range of pretty terminal strings.") (license license:expat))) +(define-public go-github-com-aws-aws-sdk-go-1.20.6 + (package + (name "go-github-com-aws-aws-sdk-go") + (version "1.20.6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/aws/aws-sdk-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "016vy5s9finyfgh08j7rvn2pnwymdgj2ydr59w57pysnri87mdwx")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/aws/aws-sdk-go")) + (propagated-inputs + `(("go-github-com-jmespath-go-jmespath-0.0.0-20180206201540-c2b33e8439af" + ,go-github-com-jmespath-go-jmespath-0.0.0-20180206201540-c2b33e8439af))) + (home-page "https://github.com/aws/aws-sdk-go") + (synopsis "AWS SDK for Go") + (description + "Package sdk is the official AWS SDK for the Go programming language.") + (license license:asl2.0))) From afeba4386971260cba98be28f4cc6300f2376a89 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 25 Mar 2022 10:39:30 +0100 Subject: [PATCH 338/383] adding apptainer 1.0.1 adding apptainer 1.0.1 adding apptainer 1.0.1 adding apptainer 1.0.1 adding apptainer 1.0.1 adding apptainer 1.0.1 adding apptainer 1.0.1 adding apptainer 1.0.1 adding apptainer 1.0.1 adding apptainer 1.0.1 adding apptainer 1.0.1 adding apptainer 1.0.1 adding apptainer 1.0.1 adding apptainer 1.0.1 adding apptainer 1.0.1 adding apptainer 1.0.1 adding apptainer 1.0.1 adding apptainer 1.0.1 adding apptainer 1.0.1 adding apptainer 1.0.1 adding apptainer 1.0.1 adding apptainer 1.0.1 adding apptainer 1.0.1 adding apptainer 1.0.1 adding apptainer 1.0.1 adding apptainer 1.0.1 adding apptainer 1.0.1 adding apptainer 1.0.1 adding apptainer 1.0.1 adding apptainer 1.0.1 adding apptainer 1.0.1 adding apptainer 1.0.1 adding apptainer 1.0.1 adding apptainer 1.0.1 adding apptainer 1.0.1 adding apptainer 1.0.1 adding apptainer 1.0.1 adding apptainer 1.0.1 adding apptainer 1.0.1 adding apptainer 1.0.1 --- glicid/packages/golang.scm | 889 +++++++++++++++++++++++++++++++++++++ 1 file changed, 889 insertions(+) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index a87b963..3ad1e4a 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -1852,3 +1852,892 @@ your code will behave as you intend.") "Go-difflib is a partial port of python 3 difflib package. Its main goal was to make unified and context diff available in pure Go, mostly for testing purposes.") (license license:bsd-3))) +(define-public go-github-com-davecgh-go-spew-1.1.0 + (package + (name "go-github-com-davecgh-go-spew") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/davecgh/go-spew") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/davecgh/go-spew")) + (home-page "https://github.com/davecgh/go-spew") + (synopsis "go-spew") + (description + "Go-spew implements a deep pretty printer for Go data structures to aid in +debugging. A comprehensive suite of tests with 100% test coverage is provided +to ensure proper functionality. See @code{test_coverage.txt} for the gocov +coverage report. Go-spew is licensed under the liberal ISC license, so it may +be used in open source or commercial projects.") + (license license:isc))) +(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 + (package + (name "go-gopkg-in-check-v1") + (version "0.0.0-20161208181325-20d25e280405") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/check.v1") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) + (home-page "https://gopkg.in/check.v1") + (synopsis "Instructions") + (description + "Package check is a rich testing extension for Go's testing package.") + (license license:bsd-2))) +(define-public go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20210322153248-0c34fe9e7dc2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "021szs1czc0xg4chpays7i05dvkax9s8mns314ab01r887kchqxq")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" + ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) + ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" + ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68) + ("go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110" + ,go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) +(define-public go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1 + (package + (name "go-golang-org-x-term") + (version "0.0.0-20201126162022-7de9c90e9dd1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/term") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ba252xmv6qsvf1w1gcy98mngrj0vd4inbjw0lsklqvva65nljna")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/term")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" + ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) + (home-page "https://golang.org/x/term") + (synopsis "Go terminal/console support") + (description + "Package term provides support functions for dealing with terminals, as commonly +found on UNIX systems.") + (license license:bsd-3))) +(define-public go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20201119102817-f84b799fce68") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1dvhqian5byzkcg1bnqzygqa6ccc6krc2q7j12pp1vhl3y7znnsg")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) +(define-public go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20210226172049-e18ecbb05110") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1vlq8mdscp7yfaa1lmyv03y5m4c2d67ydg2q1i6smkrxghn3zn3q")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) + ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" + ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) + ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" + ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) +(define-public go-golang-org-x-text-0.3.3 + (package + (name "go-golang-org-x-text") + (version "0.3.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19pihqm3phyndmiw6i42pdv6z1rbvlqlsnhsyqf9gsnn0qnmqqlh")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/text")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" + ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) + (home-page "https://golang.org/x/text") + (synopsis "Go Text") + (description + "text is a repository of text-related packages related to internationalization +(i18n) and localization (l10n), such as character encodings, text +transformations, and locale-specific text handling.") + (license license:bsd-3))) +(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e + (package + (name "go-golang-org-x-tools") + (version "0.0.0-20180917221912-90fa682c2a6e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/tools") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/tools")) + (home-page "https://golang.org/x/tools") + (synopsis "Go Tools") + (description + "This subrepository holds the source for various packages and tools that support +the Go programming language.") + (license license:bsd-3))) +(define-public go-github-com-sirupsen-logrus-1.4.2 + (package + (name "go-github-com-sirupsen-logrus") + (version "1.4.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sirupsen/logrus") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "087k2lxrr9p9dh68yw71d05h5g9p5v26zbwd6j7lghinjfaw334x")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/sirupsen/logrus")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894" + ,go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894) + ("go-github-com-stretchr-testify-1.2.2" + ,go-github-com-stretchr-testify-1.2.2) + ("go-github-com-stretchr-objx-0.1.1" + ,go-github-com-stretchr-objx-0.1.1) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.1" + ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.1) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/sirupsen/logrus") + (synopsis "Logrus") + (description + "Package logrus is a structured logger for Go, completely API compatible with the +standard library logger.") + (license license:expat))) +(define-public go-github-com-gorilla-mux-1.7.4 + (package + (name "go-github-com-gorilla-mux") + (version "1.7.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gorilla/mux") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1d0sy1paa055ic84sp3766s9pa24q008hf77dc842vrgvn8p3wmh")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/gorilla/mux")) + (home-page "https://github.com/gorilla/mux") + (synopsis "gorilla/mux") + (description "Package mux implements a request router and dispatcher.") + (license license:bsd-3))) +(define-public go-github-com-docker-libtrust-0.0.0-20160708172513-aabc10ec26b7 + (package + (name "go-github-com-docker-libtrust") + (version "0.0.0-20160708172513-aabc10ec26b7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/docker/libtrust") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1lwslbggzc2b0c4wxl5pn6i2nfgz5jz8f7s7vnid9mrlsk59h7s1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/docker/libtrust")) + (home-page "https://github.com/docker/libtrust") + (synopsis "libtrust") + (description + "Package libtrust provides an interface for managing authentication and +authorization using public key cryptography. Authentication is handled using +the identity attached to the public key and verified through TLS x509 +certificates, a key challenge, or signature. Authorization and access control +is managed through a trust graph distributed between both remote trust servers +and locally cached and managed data.") + (license license:asl2.0))) +(define-public go-github-com-docker-distribution-2.7.1+incompatible + (package + (name "go-github-com-docker-distribution") + (version "2.7.1+incompatible") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/distribution/distribution") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1nx8b5a68rn81alp8wkkw6qd5v32mgf0fk23mxm60zdf63qk1nzw")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/docker/distribution")) + (home-page "https://github.com/docker/distribution") + (synopsis "Distribution") + (description + "Package distribution will define the interfaces for the components of docker +distribution. The goal is to allow users to reliably package, ship and store +content related to docker images.") + (license license:asl2.0))) +(define-public go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894 + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190422165155-953cdadca894") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0gkha4whk8xkcv3isigbs250akag99isxnd3v9xmy0kl3g88hxy1")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) +(define-public go-github-com-stretchr-testify-1.2.2 + (package + (name "go-github-com-stretchr-testify") + (version "1.2.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0dlszlshlxbmmfxj5hlwgv3r22x0y1af45gn1vd198nvvs3pnvfs")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/testify")) + (home-page "https://github.com/stretchr/testify") + (synopsis "Testify - Thou Shalt Write Tests") + (description + "** We are working on testify v2 and would love to hear what you'd like to see in +it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +Package testify is a set of packages that provide many tools for testifying that +your code will behave as you intend.") + (license license:expat))) +(define-public go-github-com-stretchr-objx-0.1.1 + (package + (name "go-github-com-stretchr-objx") + (version "0.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/objx") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0iph0qmpyqg4kwv8jsx6a56a7hhqq8swrazv40ycxk9rzr0s8yls")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/stretchr/objx")) + (home-page "https://github.com/stretchr/objx") + (synopsis "Objx") + (description + "Objx - Go package for dealing with maps, slices, JSON and other data.") + (license license:expat))) +(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.1 + (package + (name "go-github-com-konsorten-go-windows-terminal-sequences") + (version "1.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/konsorten/go-windows-terminal-sequences") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1lchgf27n276vma6iyxa0v1xds68n2g8lih5lavqnx5x6q5pw2ip")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) + (home-page "https://github.com/konsorten/go-windows-terminal-sequences") + (synopsis "Windows Terminal Sequences") + (description + "This library allow for enabling Windows terminal color support for Go.") + (license license:expat))) +(define-public go-github-com-davecgh-go-spew-1.1.1 + (package + (name "go-github-com-davecgh-go-spew") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/davecgh/go-spew") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/davecgh/go-spew")) + (home-page "https://github.com/davecgh/go-spew") + (synopsis "go-spew") + (description + "Go-spew implements a deep pretty printer for Go data structures to aid in +debugging. A comprehensive suite of tests with 100% test coverage is provided +to ensure proper functionality. See @code{test_coverage.txt} for the gocov +coverage report. Go-spew is licensed under the liberal ISC license, so it may +be used in open source or commercial projects.") + (license license:isc))) +(define-public go-gopkg-in-yaml-v2-2.2.2 + (package + (name "go-gopkg-in-yaml-v2") + (version "2.2.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "01wj12jzsdqlnidpyjssmj0r4yavlqy7dwrg7adqd8dicjc4ncsa")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v2") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language.") + (license license:asl2.0))) +(define-public go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15 + (package + (name "go-gopkg-in-check-v1") + (version "1.0.0-20190902080502-41f04d3bba15") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/check.v1") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0vfk9czmlxmp6wndq8k17rhnjxal764mxfhrccza7nwlia760pjy")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) + (home-page "https://gopkg.in/check.v1") + (synopsis "Instructions") + (description + "Package check is a rich testing extension for Go's testing package.") + (license license:bsd-2))) +(define-public go-golang-org-x-text-0.3.2 + (package + (name "go-golang-org-x-text") + (version "0.3.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0flv9idw0jm5nm8lx25xqanbkqgfiym6619w575p7nrdh0riqwqh")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/text")) + (propagated-inputs + `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" + ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) + (home-page "https://golang.org/x/text") + (synopsis "Go Text") + (description + "text is a repository of text-related packages related to internationalization +(i18n) and localization (l10n), such as character encodings, text +transformations, and locale-specific text handling.") + (license license:bsd-3))) +(define-public go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859 + (package + (name "go-golang-org-x-net") + (version "0.0.0-20190620200207-3b0461eec859") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/net") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0l00c8l0a8xnv6qdpwfzxxsr58jggacgzdrwiprrfx2xqm37b6d5")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/net")) + (propagated-inputs + `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) + ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) + ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" + ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) + (home-page "https://golang.org/x/net") + (synopsis "Go Networking") + (description + "This repository holds supplementary Go networking libraries.") + (license license:bsd-3))) +(define-public go-github-com-tj-go-spin-1.1.0 + (package + (name "go-github-com-tj-go-spin") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/tj/go-spin") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "11xr67991m5pwsy1dira3iwd0sr55vmn1cyjwmlqziw4bwpym64s")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/tj/go-spin")) + (home-page "https://github.com/tj/go-spin") + (synopsis #f) + (description #f) + (license #f))) +(define-public go-github-com-tj-go-kinesis-0.0.0-20171128231115-08b17f58cb1b + (package + (name "go-github-com-tj-go-kinesis") + (version "0.0.0-20171128231115-08b17f58cb1b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/tj/go-kinesis") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "108c6p5j6rhhc2cnc2v5368yfsw73y6lzlvz02vpvvjph8rhmld4")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/tj/go-kinesis")) + (home-page "https://github.com/tj/go-kinesis") + (synopsis "go-kinesis") + (description + "Package kinesis implements a batch producer built on top of the official AWS +SDK.") + (license license:expat))) +(define-public go-github-com-tj-go-elastic-0.0.0-20171221160941-36157cbbebc2 + (package + (name "go-github-com-tj-go-elastic") + (version "0.0.0-20171221160941-36157cbbebc2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/tj/go-elastic") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1r94vc4hbfvqvjz74n4mvsw4dy3vbyzlivb90kyn8vn76a4wqk69")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/tj/go-elastic")) + (home-page "https://github.com/tj/go-elastic") + (synopsis "go-elastic") + (description + "Package elastic provides an Elasticsearch client with AWS sigv4 support.") + (license license:expat))) +(define-public go-github-com-tj-go-buffer-1.1.0 + (package + (name "go-github-com-tj-go-buffer") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/tj/go-buffer") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1qdxpa069pjjbzh217aadpzz1aq1n6h32lhp60yjcpi7hr4q8fxx")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/tj/go-buffer")) + (propagated-inputs + `(("go-github-com-tj-assert-0.0.3" ,go-github-com-tj-assert-0.0.3))) + (home-page "https://github.com/tj/go-buffer") + (synopsis "Buffer") + (description + "Package buffer provides a generic buffer or batching mechanism for flushing +entries at a given size or interval, useful for cases such as batching log +events.") + (license license:expat))) +(define-public go-github-com-tj-assert-0.0.3 + (package + (name "go-github-com-tj-assert") + (version "0.0.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/tj/assert") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1j5swk3fjq1h5fpqkipddz2ccnbidr7qrpm5dpdaflg9q5jnc673")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/tj/assert")) + (propagated-inputs + `(("go-gopkg-in-yaml-v3-3.0.0-20200605160147-a5ece683394c" + ,go-gopkg-in-yaml-v3-3.0.0-20200605160147-a5ece683394c) + ("go-github-com-stretchr-testify-1.6.1" + ,go-github-com-stretchr-testify-1.6.1) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/tj/assert") + (synopsis "assert") + (description + "Package assert implements the same assertions as the `assert` package but stops +test execution when a test fails.") + (license license:expat))) +(define-public go-github-com-smartystreets-gunit-1.0.0 + (package + (name "go-github-com-smartystreets-gunit") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/smartystreets/gunit") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "11d09rl5qqpj36a311pjj8w5jkj83d5b8gdcsx8f1zn4j924sm5d")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/smartystreets/gunit")) + (propagated-inputs + `(("go-github-com-smartystreets-assertions-1.0.0" + ,go-github-com-smartystreets-assertions-1.0.0))) + (home-page "https://github.com/smartystreets/gunit") + (synopsis "gunit") + (description + "Package gunit provides \"testing\" package hooks and convenience functions for +writing tests in an xUnit style. See the README file and the examples folder +for examples.") + (license license:expat))) +(define-public go-github-com-smartystreets-go-aws-auth-0.0.0-20180515143844-0c1422d1fdb9 + (package + (name "go-github-com-smartystreets-go-aws-auth") + (version "0.0.0-20180515143844-0c1422d1fdb9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/smarty-archives/go-aws-auth") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0krfdpgn3gfii1z9fi8ydfw0wwfqyvp6w3rji7w92m528zkjl93d")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/smartystreets/go-aws-auth")) + (home-page "https://github.com/smartystreets/go-aws-auth") + (synopsis "go-aws-auth") + (description + "Package awsauth implements AWS request signing using Signed Signature Version 2, +Signed Signature Version 3, and Signed Signature Version 4. Supports S3 and +STS.") + (license license:expat))) +(define-public go-github-com-rogpeppe-fastuuid-1.1.0 + (package + (name "go-github-com-rogpeppe-fastuuid") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/rogpeppe/fastuuid") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1jlif5pxyz3md02ij93kd2y2j1zz0ajc9k8azvn83vv6l3r5c1zg")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/rogpeppe/fastuuid")) + (home-page "https://github.com/rogpeppe/fastuuid") + (synopsis "fastuuid") + (description + "Package fastuuid provides fast UUID generation of 192 bit universally unique +identifiers.") + (license license:bsd-3))) +(define-public go-github-com-pkg-errors-0.8.1 + (package + (name "go-github-com-pkg-errors") + (version "0.8.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pkg/errors") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0g5qcb4d4fd96midz0zdk8b9kz8xkzwfa8kr1cliqbg8sxsy5vd1")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/pkg/errors")) + (home-page "https://github.com/pkg/errors") + (synopsis "errors") + (description "Package errors provides simple error handling primitives.") + (license license:bsd-2))) +(define-public go-github-com-mattn-go-colorable-0.1.2 + (package + (name "go-github-com-mattn-go-colorable") + (version "0.1.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mattn/go-colorable") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0512jm3wmzkkn7d99x9wflyqf48n5ri3npy1fqkq6l6adc5mni3n")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/mattn/go-colorable")) + (propagated-inputs + `(("go-github-com-mattn-go-isatty-0.0.8" + ,go-github-com-mattn-go-isatty-0.0.8))) + (home-page "https://github.com/mattn/go-colorable") + (synopsis "go-colorable") + (description "Colorable writer for windows.") + (license license:expat))) +(define-public go-github-com-kr-pretty-0.2.0 + (package + (name "go-github-com-kr-pretty") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kr/pretty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ywbfzz1h3a3qd8rpkiqwi1dm4w8ls9ijb4x1b7567grns9f0vnp")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/kr/pretty")) + (propagated-inputs + `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) + (home-page "https://github.com/kr/pretty") + (synopsis #f) + (description + "Package pretty provides pretty-printing for Go values. This is useful during +debugging, to avoid wrapping long output lines in the terminal.") + (license license:expat))) +(define-public go-github-com-jpillora-backoff-0.0.0-20180909062703-3050d21c67d7 + (package + (name "go-github-com-jpillora-backoff") + (version "0.0.0-20180909062703-3050d21c67d7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jpillora/backoff") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1nxapdx9xg5gwiscfhq7m0w14hj4gaxb4avmgf1mx9zd3jnw9jxv")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/jpillora/backoff")) + (home-page "https://github.com/jpillora/backoff") + (synopsis "Backoff") + (description + "Package backoff provides an exponential-backoff implementation.") + (license license:expat))) +(define-public go-github-com-google-uuid-1.1.1 + (package + (name "go-github-com-google-uuid") + (version "1.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/uuid") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hfxcf9frkb57k6q0rdkrmnfs78ms21r1qfk9fhlqga2yh5xg8zb")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/uuid")) + (home-page "https://github.com/google/uuid") + (synopsis "uuid") + (description "Package uuid generates and inspects UUIDs.") + (license license:bsd-3))) +(define-public go-github-com-golang-protobuf-1.3.1 + (package + (name "go-github-com-golang-protobuf") + (version "1.3.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/protobuf") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "15am4s4646qy6iv0g3kkqq52rzykqjhm4bf08dk0fy2r58knpsyl")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/golang/protobuf")) + (home-page "https://github.com/golang/protobuf") + (synopsis "Go support for Protocol Buffers") + (description + "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code +github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") + (license license:bsd-3))) +(define-public go-github-com-go-logfmt-logfmt-0.4.0 + (package + (name "go-github-com-go-logfmt-logfmt") + (version "0.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/go-logfmt/logfmt") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "06smxc112xmixz78nyvk3b2hmc7wasf2sl5vxj1xz62kqcq9lzm9")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/go-logfmt/logfmt")) + (propagated-inputs + `(("go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515" + ,go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515))) + (home-page "https://github.com/go-logfmt/logfmt") + (synopsis "logfmt") + (description + "Package logfmt implements utilities to marshal and unmarshal data in the logfmt +format. The logfmt format records key/value pairs in a way that balances +readability for humans and simplicity of computer parsing. It is most commonly +used as a more human friendly alternative to JSON for structured logging.") + (license license:expat))) +(define-public go-github-com-fatih-color-1.7.0 + (package + (name "go-github-com-fatih-color") + (version "1.7.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/fatih/color") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0v8msvg38r8d1iiq2i5r4xyfx0invhc941kjrsg5gzwvagv55inv")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/fatih/color")) + (home-page "https://github.com/fatih/color") + (synopsis "color") + (description + "Package color is an ANSI color package to output colorized or SGR defined output +to the standard output. The API can be used in several way, pick one that suits +you.") + (license license:expat))) +(define-public go-github-com-aybabtme-rgbterm-0.0.0-20170906152045-cc83f3b3ce59 + (package + (name "go-github-com-aybabtme-rgbterm") + (version "0.0.0-20170906152045-cc83f3b3ce59") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/aybabtme/rgbterm") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wvmxvjn64968ikvnxrflb1x8rlcwzpfl53fzbxff2axbx9lq50q")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/aybabtme/rgbterm")) + (home-page "https://github.com/aybabtme/rgbterm") + (synopsis "RGB terminal") + (description + "Package rgbterm colorizes bytes and strings using RGB colors, for a full range +of pretty terminal strings.") + (license license:expat))) +(define-public go-github-com-aws-aws-sdk-go-1.20.6 + (package + (name "go-github-com-aws-aws-sdk-go") + (version "1.20.6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/aws/aws-sdk-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "016vy5s9finyfgh08j7rvn2pnwymdgj2ydr59w57pysnri87mdwx")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/aws/aws-sdk-go")) + (propagated-inputs + `(("go-github-com-jmespath-go-jmespath-0.0.0-20180206201540-c2b33e8439af" + ,go-github-com-jmespath-go-jmespath-0.0.0-20180206201540-c2b33e8439af))) + (home-page "https://github.com/aws/aws-sdk-go") + (synopsis "AWS SDK for Go") + (description + "Package sdk is the official AWS SDK for the Go programming language.") + (license license:asl2.0))) From 5744c261be19afcababff2b0bdbcc60c0218cfda Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 25 Mar 2022 14:39:16 +0100 Subject: [PATCH 339/383] adding apptainer 1.0.1 --- glicid/packages/golang.scm | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index 3ad1e4a..5d03e7f 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -2741,3 +2741,36 @@ of pretty terminal strings.") (description "Package sdk is the official AWS SDK for the Go programming language.") (license license:asl2.0))) +(define-public go-github-com-aphistic-sweet-0.2.0 + (package + (name "go-github-com-aphistic-sweet") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/aphistic/sweet") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1bb4qagfxf6byqn2yx0vq24xfvisz3ah4w6bvqclc8cklvfngw43")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/aphistic/sweet")) + (propagated-inputs + `(("go-golang-org-x-crypto-0.0.0-20190426145343-a29dc8fdc734" + ,go-golang-org-x-crypto-0.0.0-20190426145343-a29dc8fdc734) + ("go-github-com-sergi-go-diff-1.0.0" + ,go-github-com-sergi-go-diff-1.0.0) + ("go-github-com-onsi-gomega-1.5.0" ,go-github-com-onsi-gomega-1.5.0) + ("go-github-com-mgutz-ansi-0.0.0-20170206155736-9520e82c474b" + ,go-github-com-mgutz-ansi-0.0.0-20170206155736-9520e82c474b) + ("go-github-com-mattn-go-colorable-0.1.1" + ,go-github-com-mattn-go-colorable-0.1.1))) + (home-page "https://github.com/aphistic/sweet") + (synopsis "sweet") + (description + "Sweet is a pluggable test runner capable of hooking into standard Go tests. It +attempts to provide access to the standard Go test tool as close as possible +while adding support for test suites and plugins that can hook into test results +to add additional functionality.") + (license license:expat))) From f3aaf923b27d3d12b51fe271c0a922a676d3daa5 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 25 Mar 2022 14:41:17 +0100 Subject: [PATCH 340/383] adding apptainer 1.0.1 --- glicid/packages/golang.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index 5d03e7f..3eb84d2 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -2774,3 +2774,25 @@ attempts to provide access to the standard Go test tool as close as possible while adding support for test suites and plugins that can hook into test results to add additional functionality.") (license license:expat))) +(define-public go-github-com-aphistic-golf-0.0.0-20180712155816-02c07f170c5a + (package + (name "go-github-com-aphistic-golf") + (version "0.0.0-20180712155816-02c07f170c5a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/aphistic/golf") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1qixab9bb29wqbr4nc5j3g25hq1j7am93f181rkj7a4qacncx763")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/aphistic/golf")) + (home-page "https://github.com/aphistic/golf") + (synopsis "golf") + (description + "This package provides logging capabilities using the GELF +(@url{https://www.graylog.org/resources/gelf-2/,https://www.graylog.org/resources/gelf-2/}) +log format") + (license license:expat))) From 52c85ec9404f4ca0c286a79bc0497e1b6d1ead0e Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 25 Mar 2022 14:47:52 +0100 Subject: [PATCH 341/383] adding apptainer 1.0.1 --- glicid/packages/golang.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index 3eb84d2..17604b6 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -2796,3 +2796,27 @@ to add additional functionality.") (@url{https://www.graylog.org/resources/gelf-2/,https://www.graylog.org/resources/gelf-2/}) log format") (license license:expat))) +(define-public go-github-com-apex-logs-1.0.0 + (package + (name "go-github-com-apex-logs") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/apex/logs") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1kysjp3s8718p02ngpr60gnjjspv0a69biksfjqa1540svrbi850")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/apex/logs")) + (propagated-inputs + `(("go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0" + ,go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0) + ("go-github-com-stretchr-testify-1.3.0" + ,go-github-com-stretchr-testify-1.3.0))) + (home-page "https://github.com/apex/logs") + (synopsis "Example") + (description "Go client for @url{https://apex.sh/logs/,Apex Logs}.") + (license license:expat))) From bd360f78b09aca784e9f945be88930be8b899a85 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 25 Mar 2022 14:57:24 +0100 Subject: [PATCH 342/383] adding apptainer 1.0.1 --- glicid/packages/golang.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index 17604b6..e39601c 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -2820,3 +2820,25 @@ log format") (synopsis "Example") (description "Go client for @url{https://apex.sh/logs/,Apex Logs}.") (license license:expat))) +(define-public go-golang-org-x-text-0.3.0 + (package + (name "go-golang-org-x-text") + (version "0.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/text") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/text")) + (home-page "https://golang.org/x/text") + (synopsis "Go Text") + (description + "text is a repository of text-related packages related to internationalization +(i18n) and localization (l10n), such as character encodings, text +transformations, and locale-specific text handling.") + (license license:bsd-3))) From 91f496f5eebf1f961047179f7c3c247dc83c45d7 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 25 Mar 2022 15:55:22 +0100 Subject: [PATCH 343/383] adding apptainer 1.0.1 --- glicid/packages/golang.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index e39601c..d652386 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -2842,3 +2842,24 @@ log format") (i18n) and localization (l10n), such as character encodings, text transformations, and locale-specific text handling.") (license license:bsd-3))) +(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a + (package + (name "go-golang-org-x-sys") + (version "0.0.0-20190215142949-d0b11bdaac8a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/sys") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/sys")) + (home-page "https://golang.org/x/sys") + (synopsis "sys") + (description + "This repository holds supplemental Go packages for low-level interactions with +the operating system.") + (license license:bsd-3))) From 203b9caa45d7c8e5ded97523b36ce647df1e6a48 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 25 Mar 2022 16:00:31 +0100 Subject: [PATCH 344/383] adding apptainer 1.0.1 --- glicid/packages/golang.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index d652386..24db3a6 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -2863,3 +2863,26 @@ transformations, and locale-specific text handling.") "This repository holds supplemental Go packages for low-level interactions with the operating system.") (license license:bsd-3))) +(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 + (package + (name "go-golang-org-x-crypto") + (version "0.0.0-20190308221718-c2843e01d9a2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://go.googlesource.com/crypto") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) + (build-system go-build-system) + (arguments '(#:import-path "golang.org/x/crypto")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" + ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) + (home-page "https://golang.org/x/crypto") + (synopsis "Go Cryptography") + (description + "This repository holds supplementary Go cryptography libraries.") + (license license:bsd-3))) From 326e8566ef41ed4e6281b319c26f4156607f1431 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 25 Mar 2022 16:15:06 +0100 Subject: [PATCH 345/383] adding apptainer 1.0.1 --- glicid/packages/golang.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index 24db3a6..0e0f956 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -2886,3 +2886,26 @@ the operating system.") (description "This repository holds supplementary Go cryptography libraries.") (license license:bsd-3))) +(define-public go-gopkg-in-yaml-v3-3.0.0-20200605160147-a5ece683394c + (package + (name "go-gopkg-in-yaml-v3") + (version "3.0.0-20200605160147-a5ece683394c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v3") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03cm7c3p5fh0aa8vnxv5010dgqqr268ivb480ix1salxx3396w68")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v3") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language.") + (license unknown-license!))) From 2b7ccc7b26d121e8078194eaa9cbcd9161ea8739 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Fri, 25 Mar 2022 22:14:20 +0100 Subject: [PATCH 346/383] fix for compilation --- glicid/packages/golang.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index 0e0f956..8abec19 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -2908,4 +2908,4 @@ the operating system.") (home-page "https://gopkg.in/yaml.v3") (synopsis "YAML support for the Go language") (description "Package yaml implements YAML support for the Go language.") - (license unknown-license!))) + (license license:expat))) ;; FIXME YD - check license From ed0c07bf0a83396ab609c329f726b17b37654f0b Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Mon, 28 Mar 2022 10:11:10 +0200 Subject: [PATCH 347/383] commenting apptainer 1.0.1 --- glicid/packages/golang.scm | 5806 ++++++++++++++++++------------------ glicid/packages/linux.scm | 236 +- 2 files changed, 3021 insertions(+), 3021 deletions(-) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index 8abec19..c9e8f54 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -6,2906 +6,2906 @@ #:use-module (guix packages) ) -(define-public go-github-com-netflix-go-expect-0.0.0-20220104043353-73e0943537d2 - (package - (name "go-github-com-netflix-go-expect") - (version "0.0.0-20220104043353-73e0943537d2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/Netflix/go-expect") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0zkvhnc4ii6ygvcsj54ng0kql26rnny7l3hy1w61g88mxjsww1b9")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/Netflix/go-expect")) - (propagated-inputs - `(("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-creack-pty-1.1.17" ,go-github-com-creack-pty-1.1.17))) - (home-page "https://github.com/Netflix/go-expect") - (synopsis "go-expect") - (description - "Package expect provides an expect-like interface to automate control of -applications. It is unlike expect in that it does not spawn or manage process -lifecycle. This package only focuses on expecting output and sending input -through it's psuedoterminal.") - (license license:asl2.0))) -(define-public go-github-com-protonmail-go-crypto-0.0.0-20220113124808-70ae35bab23f - (package - (name "go-github-com-protonmail-go-crypto") - (version "0.0.0-20220113124808-70ae35bab23f") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/ProtonMail/go-crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0dpalb7cd2xs0hji80zv378vf8gx4ph7b8xdd05kvbskyw67fb7n")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/ProtonMail/go-crypto")) - (propagated-inputs - `(("go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2" - ,go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2))) - (home-page "https://github.com/ProtonMail/go-crypto") - (synopsis #f) - (description - "This module is backwards compatible with x/crypto/openpgp, so you can simply -replace all imports of @code{golang.org/x/crypto/openpgp} with -@code{github.com/ProtonMail/go-crypto/openpgp}.") - (license license:bsd-3))) -(define-public go-github-com-adigunhammedolalekan-registry-auth-0.0.0-20200730122110-8cde180a3a60 - (package - (name "go-github-com-adigunhammedolalekan-registry-auth") - (version "0.0.0-20200730122110-8cde180a3a60") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/adigunhammedolalekan/registry-auth") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0855a5c0ifi6q2ghb6gax0kwwra5j7pd2lplq4wp8r83dnv4vwj0")))) - (build-system go-build-system) - (arguments - '(#:import-path "github.com/adigunhammedolalekan/registry-auth")) - (propagated-inputs - `(("go-github-com-sirupsen-logrus-1.4.2" - ,go-github-com-sirupsen-logrus-1.4.2) - ("go-github-com-gorilla-mux-1.7.4" ,go-github-com-gorilla-mux-1.7.4) - ("go-github-com-docker-libtrust-0.0.0-20160708172513-aabc10ec26b7" - ,go-github-com-docker-libtrust-0.0.0-20160708172513-aabc10ec26b7) - ("go-github-com-docker-distribution-2.7.1+incompatible" - ,go-github-com-docker-distribution-2.7.1+incompatible))) - (home-page "https://github.com/adigunhammedolalekan/registry-auth") - (synopsis "registry-auth") - (description - "a package to implements docker registry token authentication server as described -here -[https://github.com/docker/distribution/blob/1b9ab303a477ded9bdd3fc97e9119fa8f9e58fca/docs/spec/auth/index.md]") - (license license:expat))) -(define-public go-github-com-apex-log-1.9.0 - (package - (name "go-github-com-apex-log") - (version "1.9.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/apex/log") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ibqkncnb8wcwilg2kyfyl5541g69rg551iy6m61q6iwdn5vfhi2")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/apex/log")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) - ("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" - ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) - ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) - ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" - ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) - ("go-github-com-tj-go-spin-1.1.0" ,go-github-com-tj-go-spin-1.1.0) - ("go-github-com-tj-go-kinesis-0.0.0-20171128231115-08b17f58cb1b" - ,go-github-com-tj-go-kinesis-0.0.0-20171128231115-08b17f58cb1b) - ("go-github-com-tj-go-elastic-0.0.0-20171221160941-36157cbbebc2" - ,go-github-com-tj-go-elastic-0.0.0-20171221160941-36157cbbebc2) - ("go-github-com-tj-go-buffer-1.1.0" ,go-github-com-tj-go-buffer-1.1.0) - ("go-github-com-tj-assert-0.0.3" ,go-github-com-tj-assert-0.0.3) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-smartystreets-gunit-1.0.0" - ,go-github-com-smartystreets-gunit-1.0.0) - ("go-github-com-smartystreets-go-aws-auth-0.0.0-20180515143844-0c1422d1fdb9" - ,go-github-com-smartystreets-go-aws-auth-0.0.0-20180515143844-0c1422d1fdb9) - ("go-github-com-rogpeppe-fastuuid-1.1.0" - ,go-github-com-rogpeppe-fastuuid-1.1.0) - ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) - ("go-github-com-mattn-go-colorable-0.1.2" - ,go-github-com-mattn-go-colorable-0.1.2) - ("go-github-com-kr-pretty-0.2.0" ,go-github-com-kr-pretty-0.2.0) - ("go-github-com-jpillora-backoff-0.0.0-20180909062703-3050d21c67d7" - ,go-github-com-jpillora-backoff-0.0.0-20180909062703-3050d21c67d7) - ("go-github-com-google-uuid-1.1.1" ,go-github-com-google-uuid-1.1.1) - ("go-github-com-golang-protobuf-1.3.1" - ,go-github-com-golang-protobuf-1.3.1) - ("go-github-com-go-logfmt-logfmt-0.4.0" - ,go-github-com-go-logfmt-logfmt-0.4.0) - ("go-github-com-fatih-color-1.7.0" ,go-github-com-fatih-color-1.7.0) - ("go-github-com-aybabtme-rgbterm-0.0.0-20170906152045-cc83f3b3ce59" - ,go-github-com-aybabtme-rgbterm-0.0.0-20170906152045-cc83f3b3ce59) - ("go-github-com-aws-aws-sdk-go-1.20.6" - ,go-github-com-aws-aws-sdk-go-1.20.6) - ("go-github-com-aphistic-sweet-0.2.0" - ,go-github-com-aphistic-sweet-0.2.0) - ("go-github-com-aphistic-golf-0.0.0-20180712155816-02c07f170c5a" - ,go-github-com-aphistic-golf-0.0.0-20180712155816-02c07f170c5a) - ("go-github-com-apex-logs-1.0.0" ,go-github-com-apex-logs-1.0.0))) - (home-page "https://github.com/apex/log") - (synopsis "Handlers") - (description - "Package log implements a simple structured logging API designed with few -assumptions. Designed for centralized logging solutions such as Kinesis which -require encoding and decoding before fanning-out to handlers.") - (license license:expat))) -(define-public go-github-com-apptainer-container-key-client-0.7.2 - (package - (name "go-github-com-apptainer-container-key-client") - (version "0.7.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/apptainer/container-key-client") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0f4bb1k8pi37alzgzvjw23ynp54752qwgnr9gim3vc061qcjx377")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/apptainer/container-key-client")) - (propagated-inputs - `(("go-github-com-sylabs-json-resp-0.8.0" - ,go-github-com-sylabs-json-resp-0.8.0))) - (home-page "https://github.com/apptainer/container-key-client") - (synopsis "Container Key Client") - (description - "This project provides a Go client to Apptainer for key storage and retrieval -using the HKP protocol. Forked from -@url{https://github.com/sylabs/scs-key-client,sylabs/scs-key-client}.") - (license license:bsd-3))) -(define-public go-github-com-apptainer-container-library-client-1.2.2 - (package - (name "go-github-com-apptainer-container-library-client") - (version "1.2.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/apptainer/container-library-client") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1f6pxzk0k9jf9612kjw6jlmrs8yzqqrvhjwfxwri1q1d4i410a0h")))) - (build-system go-build-system) - (arguments - '(#:import-path "github.com/apptainer/container-library-client")) - (propagated-inputs - `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" - ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.0" - ,go-github-com-davecgh-go-spew-1.1.0) - ("go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a" - ,go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a) - ("go-github-com-sylabs-json-resp-0.8.0" - ,go-github-com-sylabs-json-resp-0.8.0) - ("go-github-com-stretchr-testify-1.7.0" - ,go-github-com-stretchr-testify-1.7.0) - ("go-github-com-go-log-log-0.2.0" ,go-github-com-go-log-log-0.2.0) - ("go-github-com-blang-semver-v4-4.0.0" - ,go-github-com-blang-semver-v4-4.0.0))) - (home-page "https://github.com/apptainer/container-library-client") - (synopsis "Container Library Client") - (description - "This project provides a Go client to Apptainer for the container library. -Forked from -@url{https://github.com/sylabs/scs-library-client,sylabs/scs-library-client}.") - (license license:bsd-3))) -(define-public go-github-com-apptainer-sif-v2-2.3.2 - (package - (name "go-github-com-apptainer-sif-v2") - (version "2.3.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/apptainer/sif") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "10cmvgyjxnfgw5661n1zbdr8zs29rx9izsr1bbnnyjr9kdqdhfg1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/apptainer/sif/v2")) - (propagated-inputs - `(("go-gopkg-in-warnings-v0-0.1.2" ,go-gopkg-in-warnings-v0-0.1.2) - ("go-golang-org-x-sys-0.0.0-20211205182925-97ca703d548d" - ,go-golang-org-x-sys-0.0.0-20211205182925-97ca703d548d) - ("go-golang-org-x-net-0.0.0-20210813160813-60bc85c4be6d" - ,go-golang-org-x-net-0.0.0-20210813160813-60bc85c4be6d) - ("go-golang-org-x-crypto-0.0.0-20210817164053-32db794688a5" - ,go-golang-org-x-crypto-0.0.0-20210817164053-32db794688a5) - ("go-github-com-xanzy-ssh-agent-0.3.0" - ,go-github-com-xanzy-ssh-agent-0.3.0) - ("go-github-com-sergi-go-diff-1.1.0" - ,go-github-com-sergi-go-diff-1.1.0) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-mitchellh-go-homedir-1.1.0" - ,go-github-com-mitchellh-go-homedir-1.1.0) - ("go-github-com-kevinburke-ssh-config-0.0.0-20201106050909-4977a11b4351" - ,go-github-com-kevinburke-ssh-config-0.0.0-20201106050909-4977a11b4351) - ("go-github-com-jbenet-go-context-0.0.0-20150711004518-d14ea06fba99" - ,go-github-com-jbenet-go-context-0.0.0-20150711004518-d14ea06fba99) - ("go-github-com-inconshreveable-mousetrap-1.0.0" - ,go-github-com-inconshreveable-mousetrap-1.0.0) - ("go-github-com-imdario-mergo-0.3.12" - ,go-github-com-imdario-mergo-0.3.12) - ("go-github-com-go-git-go-billy-v5-5.3.1" - ,go-github-com-go-git-go-billy-v5-5.3.1) - ("go-github-com-go-git-gcfg-1.5.0" ,go-github-com-go-git-gcfg-1.5.0) - ("go-github-com-emirpasic-gods-1.12.0" - ,go-github-com-emirpasic-gods-1.12.0) - ("go-github-com-acomagu-bufpipe-1.0.3" - ,go-github-com-acomagu-bufpipe-1.0.3) - ("go-github-com-microsoft-go-winio-0.4.16" - ,go-github-com-microsoft-go-winio-0.4.16) - ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) - ("go-github-com-spf13-cobra-1.3.0" ,go-github-com-spf13-cobra-1.3.0) - ("go-github-com-sebdah-goldie-v2-2.5.3" - ,go-github-com-sebdah-goldie-v2-2.5.3) - ("go-github-com-magefile-mage-1.12.1" - ,go-github-com-magefile-mage-1.12.1) - ("go-github-com-google-uuid-1.3.0" ,go-github-com-google-uuid-1.3.0) - ("go-github-com-go-git-go-git-v5-5.4.2" - ,go-github-com-go-git-go-git-v5-5.4.2) - ("go-github-com-blang-semver-v4-4.0.0" - ,go-github-com-blang-semver-v4-4.0.0) - ("go-github-com-protonmail-go-crypto-0.0.0-20220113124808-70ae35bab23f" - ,go-github-com-protonmail-go-crypto-0.0.0-20220113124808-70ae35bab23f))) - (home-page "https://github.com/apptainer/sif") - (synopsis "The Singularity Image Format (SIF)") - (description - "This module contains an open source implementation of the Singularity Image -Format (SIF) that makes it easy to create complete and encapsulated container -environments stored in a single file.") - (license license:bsd-3))) -(define-public go-github-com-blang-semver-v4-4.0.0 - (package - (name "go-github-com-blang-semver-v4") - (version "4.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/blang/semver") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "14h9ys4n4kx9cbj42lkdf4i5k3nkll6sd62jcvl7cs565v6fiknz")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/blang/semver/v4")) - (home-page "https://github.com/blang/semver") - (synopsis #f) - (description #f) - (license license:expat))) -(define-public go-github-com-buger-jsonparser-1.1.1 - (package - (name "go-github-com-buger-jsonparser") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/buger/jsonparser") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0qv2lsh2biwxn927941gqiv5pqg7n4v58j0i536pjp7pr17pq7dp")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/buger/jsonparser")) - (home-page "https://github.com/buger/jsonparser") - (synopsis - "Alternative JSON parser for Go (10x times faster standard library)") - (description - "It does not require you to know the structure of the payload (eg. create -structs), and allows accessing fields by providing the path to them. It is up -to @strong{10 times faster} than standard @code{encoding/json} package -(depending on payload size and usage), @strong{allocates no memory}. See -benchmarks below.") - (license license:expat))) -(define-public go-github-com-cenkalti-backoff-v4-4.1.2 - (package - (name "go-github-com-cenkalti-backoff-v4") - (version "4.1.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cenkalti/backoff") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "08c28226q612i1pv83161y57qh16631vpc51ai9f76qfrzsy946z")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/cenkalti/backoff/v4")) - (home-page "https://github.com/cenkalti/backoff") - (synopsis "Exponential Backoff") - (description - "Package backoff implements backoff algorithms for retrying operations.") - (license license:expat))) -(define-public go-github-com-containerd-cgroups-1.0.3 - (package - (name "go-github-com-containerd-cgroups") - (version "1.0.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/cgroups") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0mqsi2jm1f7xvs35kx6ijvadr6zycshc1xivq6xdiwrw24wb0m3r")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/cgroups")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20210510120138-977fb7262007" - ,go-golang-org-x-sys-0.0.0-20210510120138-977fb7262007) - ("go-go-uber-org-goleak-1.1.12" ,go-go-uber-org-goleak-1.1.12) - ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) - ("go-github-com-stretchr-testify-1.7.0" - ,go-github-com-stretchr-testify-1.7.0) - ("go-github-com-sirupsen-logrus-1.8.1" - ,go-github-com-sirupsen-logrus-1.8.1) - ("go-github-com-opencontainers-runtime-spec-1.0.2" - ,go-github-com-opencontainers-runtime-spec-1.0.2) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2) - ("go-github-com-godbus-dbus-v5-5.0.4" - ,go-github-com-godbus-dbus-v5-5.0.4) - ("go-github-com-docker-go-units-0.4.0" - ,go-github-com-docker-go-units-0.4.0) - ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" - ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) - ("go-github-com-coreos-go-systemd-v22-22.3.2" - ,go-github-com-coreos-go-systemd-v22-22.3.2) - ("go-github-com-cilium-ebpf-0.4.0" ,go-github-com-cilium-ebpf-0.4.0))) - (home-page "https://github.com/containerd/cgroups") - (synopsis "cgroups") - (description - "Go package for creating, managing, inspecting, and destroying cgroups. The -resources format for settings on the cgroup uses the OCI runtime-spec found -@url{https://github.com/opencontainers/runtime-spec,here}.") - (license license:asl2.0))) -(define-public go-github-com-containerd-containerd-1.6.0 - (package - (name "go-github-com-containerd-containerd") - (version "1.6.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containerd/containerd") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1wqmb124l8hjh7a053xjgh1kwblczg6q99l4vh6pi5zmnmdn67iv")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containerd/containerd")) - (propagated-inputs - `(("go-google-golang-org-genproto-0.0.0-20200224152610-e50cd9704f63" - ,go-google-golang-org-genproto-0.0.0-20200224152610-e50cd9704f63) - ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) - ("go-github-com-gogo-googleapis-1.3.2" - ,go-github-com-gogo-googleapis-1.3.2) - ("go-k8s-io-utils-0.0.0-20210930125809-cb0fa318a74b" - ,go-k8s-io-utils-0.0.0-20210930125809-cb0fa318a74b) - ("go-k8s-io-klog-v2-2.30.0" ,go-k8s-io-klog-v2-2.30.0) - ("go-k8s-io-cri-api-0.23.1" ,go-k8s-io-cri-api-0.23.1) - ("go-k8s-io-component-base-0.22.5" ,go-k8s-io-component-base-0.22.5) - ("go-k8s-io-client-go-0.22.5" ,go-k8s-io-client-go-0.22.5) - ("go-k8s-io-apiserver-0.22.5" ,go-k8s-io-apiserver-0.22.5) - ("go-k8s-io-apimachinery-0.22.5" ,go-k8s-io-apimachinery-0.22.5) - ("go-k8s-io-api-0.22.5" ,go-k8s-io-api-0.22.5) - ("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) - ("go-google-golang-org-protobuf-1.27.1" - ,go-google-golang-org-protobuf-1.27.1) - ("go-google-golang-org-grpc-1.43.0" ,go-google-golang-org-grpc-1.43.0) - ("go-golang-org-x-term-0.0.0-20210615171337-6886f2dfbf5b" - ,go-golang-org-x-term-0.0.0-20210615171337-6886f2dfbf5b) - ("go-golang-org-x-sys-0.0.0-20211216021012-1d35b9e2eb4e" - ,go-golang-org-x-sys-0.0.0-20211216021012-1d35b9e2eb4e) - ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" - ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) - ("go-golang-org-x-oauth2-0.0.0-20210819190943-2bc19b11175f" - ,go-golang-org-x-oauth2-0.0.0-20210819190943-2bc19b11175f) - ("go-golang-org-x-net-0.0.0-20211216030914-fe4d6282115f" - ,go-golang-org-x-net-0.0.0-20211216030914-fe4d6282115f) - ("go-golang-org-x-crypto-0.0.0-20210817164053-32db794688a5" - ,go-golang-org-x-crypto-0.0.0-20210817164053-32db794688a5) - ("go-go-opentelemetry-io-otel-trace-1.3.0" - ,go-go-opentelemetry-io-otel-trace-1.3.0) - ("go-go-opentelemetry-io-otel-sdk-1.3.0" - ,go-go-opentelemetry-io-otel-sdk-1.3.0) - ("go-go-opentelemetry-io-otel-exporters-otlp-otlptrace-otlptracehttp-1.3.0" - ,go-go-opentelemetry-io-otel-exporters-otlp-otlptrace-otlptracehttp-1.3.0) - ("go-go-opentelemetry-io-otel-exporters-otlp-otlptrace-otlptracegrpc-1.3.0" - ,go-go-opentelemetry-io-otel-exporters-otlp-otlptrace-otlptracegrpc-1.3.0) - ("go-go-opentelemetry-io-otel-exporters-otlp-otlptrace-1.3.0" - ,go-go-opentelemetry-io-otel-exporters-otlp-otlptrace-1.3.0) - ("go-go-opentelemetry-io-otel-1.3.0" - ,go-go-opentelemetry-io-otel-1.3.0) - ("go-go-opentelemetry-io-contrib-instrumentation-google-golang-org-grpc-otelgrpc-0.28.0" - ,go-go-opentelemetry-io-contrib-instrumentation-google-golang-org-grpc-otelgrpc-0.28.0) - ("go-go-etcd-io-bbolt-1.3.6" ,go-go-etcd-io-bbolt-1.3.6) - ("go-github-com-vishvananda-netlink-1.1.1-0.20210330154013-f5de75959ad5" - ,go-github-com-vishvananda-netlink-1.1.1-0.20210330154013-f5de75959ad5) - ("go-github-com-tchap-go-patricia-2.2.6+incompatible" - ,go-github-com-tchap-go-patricia-2.2.6+incompatible) - ("go-github-com-stretchr-testify-1.7.0" - ,go-github-com-stretchr-testify-1.7.0) - ("go-github-com-sirupsen-logrus-1.8.1" - ,go-github-com-sirupsen-logrus-1.8.1) - ("go-github-com-satori-go-uuid-1.2.0" - ,go-github-com-satori-go-uuid-1.2.0) - ("go-github-com-prometheus-client-golang-1.11.0" - ,go-github-com-prometheus-client-golang-1.11.0) - ("go-github-com-pelletier-go-toml-1.9.3" - ,go-github-com-pelletier-go-toml-1.9.3) - ("go-github-com-opencontainers-selinux-1.10.0" - ,go-github-com-opencontainers-selinux-1.10.0) - ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417" - ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417) - ("go-github-com-opencontainers-runc-1.1.0" - ,go-github-com-opencontainers-runc-1.1.0) - ("go-github-com-opencontainers-image-spec-1.0.2-0.20211117181255-693428a734f5" - ,go-github-com-opencontainers-image-spec-1.0.2-0.20211117181255-693428a734f5) - ("go-github-com-opencontainers-go-digest-1.0.0" - ,go-github-com-opencontainers-go-digest-1.0.0) - ("go-github-com-moby-sys" - ,go-github-com-moby-sys) - ("go-github-com-moby-locker-1.0.1" ,go-github-com-moby-locker-1.0.1) - ("go-github-com-klauspost-compress-1.11.13" - ,go-github-com-klauspost-compress-1.11.13) - ("go-github-com-json-iterator-go-1.1.12" - ,go-github-com-json-iterator-go-1.1.12) - ("go-github-com-intel-goresctrl-0.2.0" - ,go-github-com-intel-goresctrl-0.2.0) - ("go-github-com-imdario-mergo-0.3.12" - ,go-github-com-imdario-mergo-0.3.12) - ("go-github-com-hashicorp-go-multierror-1.1.1" - ,go-github-com-hashicorp-go-multierror-1.1.1) - ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" - ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) - ("go-github-com-grpc-ecosystem-go-grpc-middleware-1.3.0" - ,go-github-com-grpc-ecosystem-go-grpc-middleware-1.3.0) - ("go-github-com-google-uuid-1.2.0" ,go-github-com-google-uuid-1.2.0) - ("go-github-com-google-go-cmp-0.5.6" - ,go-github-com-google-go-cmp-0.5.6) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2) - ("go-github-com-go-logr-stdr-1.2.2" ,go-github-com-go-logr-stdr-1.2.2) - ("go-github-com-fsnotify-fsnotify-1.4.9" - ,go-github-com-fsnotify-fsnotify-1.4.9) - ("go-github-com-emicklei-go-restful-2.9.5+incompatible" - ,go-github-com-emicklei-go-restful-2.9.5+incompatible) - ("go-github-com-docker-go-units-0.4.0" - ,go-github-com-docker-go-units-0.4.0) - ("go-github-com-docker-go-metrics-0.0.1" - ,go-github-com-docker-go-metrics-0.0.1) - ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" - ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1) - ("go-github-com-coreos-go-systemd-v22-22.3.2" - ,go-github-com-coreos-go-systemd-v22-22.3.2) - ("go-github-com-containernetworking-plugins-1.0.1" - ,go-github-com-containernetworking-plugins-1.0.1) - ("go-github-com-containerd-zfs-1.0.0" - ,go-github-com-containerd-zfs-1.0.0) - ("go-github-com-containerd-typeurl-1.0.2" - ,go-github-com-containerd-typeurl-1.0.2) - ("go-github-com-containerd-ttrpc-1.1.0" - ,go-github-com-containerd-ttrpc-1.1.0) - ("go-github-com-containerd-nri-0.1.0" - ,go-github-com-containerd-nri-0.1.0) - ("go-github-com-containerd-imgcrypt-1.1.3" - ,go-github-com-containerd-imgcrypt-1.1.3) - ("go-github-com-containerd-go-runc-1.0.0" - ,go-github-com-containerd-go-runc-1.0.0) - ("go-github-com-containerd-go-cni-1.1.3" - ,go-github-com-containerd-go-cni-1.1.3) - ("go-github-com-containerd-fifo-1.0.0" - ,go-github-com-containerd-fifo-1.0.0) - ("go-github-com-containerd-continuity-0.2.2" - ,go-github-com-containerd-continuity-0.2.2) - ("go-github-com-containerd-console-1.0.3" - ,go-github-com-containerd-console-1.0.3) - ("go-github-com-containerd-cgroups-1.0.3" - ,go-github-com-containerd-cgroups-1.0.3) - ("go-github-com-containerd-btrfs-1.0.0" - ,go-github-com-containerd-btrfs-1.0.0) - ("go-github-com-containerd-aufs-1.0.0" - ,go-github-com-containerd-aufs-1.0.0) - ("go-github-com-microsoft-hcsshim-0.9.2" - ,go-github-com-microsoft-hcsshim-0.9.2) - ("go-github-com-microsoft-go-winio-0.5.1" - ,go-github-com-microsoft-go-winio-0.5.1) - ("go-github-com-adalogics-go-fuzz-headers-0.0.0-20210715213245-6c3934b029d8" - ,go-github-com-adalogics-go-fuzz-headers-0.0.0-20210715213245-6c3934b029d8) - ("go-cloud-google-com-go-0.81.0" ,go-cloud-google-com-go-0.81.0))) - (home-page "https://github.com/containerd/containerd") - (synopsis "Now Recruiting") - (description - "containerd is an industry-standard container runtime with an emphasis on -simplicity, robustness and portability. It is available as a daemon for Linux -and Windows, which can manage the complete container lifecycle of its host -system: image transfer and storage, container execution and supervision, -low-level storage and network attachments, etc.") - (license license:asl2.0))) -(define-public go-github-com-containernetworking-cni-1.0.1 - (package - (name "go-github-com-containernetworking-cni") - (version "1.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containernetworking/cni") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0jzijcb96z26lchh6j4js3rl7c148mwlaiz3s6ww47kljnxmv05f")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containernetworking/cni")) - (propagated-inputs - `(("go-github-com-onsi-gomega-1.10.1" ,go-github-com-onsi-gomega-1.10.1) - ("go-github-com-onsi-ginkgo-1.13.0" - ,go-github-com-onsi-ginkgo-1.13.0))) - (home-page "https://github.com/containernetworking/cni") - (synopsis "CNI - the Container Network Interface") - (description - "CNI (), a @url{https://cncf.io,Cloud Native Computing Foundation} project, -consists of a specification and libraries for writing plugins to configure -network interfaces in Linux containers, along with a number of supported -plugins. CNI concerns itself only with network connectivity of containers and -removing allocated resources when the container is deleted. Because of this -focus, CNI has a wide range of support and the specification is simple to -implement.") - (license license:asl2.0))) -(define-public go-github-com-containernetworking-plugins-1.1.0 - (package - (name "go-github-com-containernetworking-plugins") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containernetworking/plugins") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "10c9sxi5nq88772ql35a3vy5m1wrdyji4imc4ysl27malcqxhiik")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containernetworking/plugins")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) - ("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" - ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) - ("go-golang-org-x-text-0.3.6" ,go-golang-org-x-text-0.3.6) - ("go-golang-org-x-net-0.0.0-20210428140749-89ef3d95e781" - ,go-golang-org-x-net-0.0.0-20210428140749-89ef3d95e781) - ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) - ("go-github-com-vishvananda-netns-0.0.0-20210104183010-2eb08e3e575f" - ,go-github-com-vishvananda-netns-0.0.0-20210104183010-2eb08e3e575f) - ("go-github-com-sirupsen-logrus-1.8.1" - ,go-github-com-sirupsen-logrus-1.8.1) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-nxadm-tail-1.4.8" ,go-github-com-nxadm-tail-1.4.8) - ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" - ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2) - ("go-github-com-fsnotify-fsnotify-1.4.9" - ,go-github-com-fsnotify-fsnotify-1.4.9) - ("go-github-com-containerd-cgroups-1.0.1" - ,go-github-com-containerd-cgroups-1.0.1) - ("go-github-com-microsoft-go-winio-0.4.17" - ,go-github-com-microsoft-go-winio-0.4.17) - ("go-golang-org-x-sys-0.0.0-20210809222454-d867a43fc93e" - ,go-golang-org-x-sys-0.0.0-20210809222454-d867a43fc93e) - ("go-github-com-vishvananda-netlink-1.1.1-0.20210330154013-f5de75959ad5" - ,go-github-com-vishvananda-netlink-1.1.1-0.20210330154013-f5de75959ad5) - ("go-github-com-safchain-ethtool-0.0.0-20210803160452-9aa261dae9b1" - ,go-github-com-safchain-ethtool-0.0.0-20210803160452-9aa261dae9b1) - ("go-github-com-onsi-gomega-1.15.0" ,go-github-com-onsi-gomega-1.15.0) - ("go-github-com-onsi-ginkgo-1.16.4" ,go-github-com-onsi-ginkgo-1.16.4) - ("go-github-com-networkplumbing-go-nft-0.2.0" - ,go-github-com-networkplumbing-go-nft-0.2.0) - ("go-github-com-mattn-go-shellwords-1.0.12" - ,go-github-com-mattn-go-shellwords-1.0.12) - ("go-github-com-godbus-dbus-v5-5.0.4" - ,go-github-com-godbus-dbus-v5-5.0.4) - ("go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5" - ,go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5) - ("go-github-com-d2g-dhcp4client-1.0.0" - ,go-github-com-d2g-dhcp4client-1.0.0) - ("go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c" - ,go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c) - ("go-github-com-coreos-go-systemd-v22-22.3.2" - ,go-github-com-coreos-go-systemd-v22-22.3.2) - ("go-github-com-coreos-go-iptables-0.6.0" - ,go-github-com-coreos-go-iptables-0.6.0) - ("go-github-com-containernetworking-cni-1.0.1" - ,go-github-com-containernetworking-cni-1.0.1) - ("go-github-com-buger-jsonparser-1.1.1" - ,go-github-com-buger-jsonparser-1.1.1) - ("go-github-com-alexflint-go-filemutex-1.1.0" - ,go-github-com-alexflint-go-filemutex-1.1.0) - ("go-github-com-microsoft-hcsshim-0.8.20" - ,go-github-com-microsoft-hcsshim-0.8.20))) - (home-page "https://github.com/containernetworking/plugins") - (synopsis "Plugins") - (description - "Some CNI network plugins, maintained by the containernetworking team. For more -information, see the @url{https://www.cni.dev,CNI website}.") - (license license:asl2.0))) -(define-public go-github-com-containers-image-v5-5.19.1 - (package - (name "go-github-com-containers-image-v5") - (version "5.19.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/containers/image") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0wyq3ns6yrzi9bff2kb8p3rppw652m4ffq8374sdjkn7f39z4inf")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/containers/image/v5")) - (propagated-inputs - `(("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" - ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) - ("go-golang-org-x-sys-0.0.0-20220114195835-da31bd327af9" - ,go-golang-org-x-sys-0.0.0-20220114195835-da31bd327af9) - ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" - ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) - ("go-golang-org-x-net-0.0.0-20211112202133-69e39bad7dc2" - ,go-golang-org-x-net-0.0.0-20211112202133-69e39bad7dc2) - ("go-golang-org-x-crypto-0.0.0-20211215153901-e495a2d5b3d3" - ,go-golang-org-x-crypto-0.0.0-20211215153901-e495a2d5b3d3) - ("go-go-etcd-io-bbolt-1.3.6" ,go-go-etcd-io-bbolt-1.3.6) - ("go-github-com-xeipuuv-gojsonschema-1.2.0" - ,go-github-com-xeipuuv-gojsonschema-1.2.0) - ("go-github-com-xeipuuv-gojsonpointer-0.0.0-20190809123943-df4f5c81cb3b" - ,go-github-com-xeipuuv-gojsonpointer-0.0.0-20190809123943-df4f5c81cb3b) - ("go-github-com-vbauerster-mpb-v7-7.3.2" - ,go-github-com-vbauerster-mpb-v7-7.3.2) - ("go-github-com-vbatts-tar-split-0.11.2" - ,go-github-com-vbatts-tar-split-0.11.2) - ("go-github-com-ulikunitz-xz-0.5.10" - ,go-github-com-ulikunitz-xz-0.5.10) - ("go-github-com-sylabs-sif-v2-2.3.1" - ,go-github-com-sylabs-sif-v2-2.3.1) - ("go-github-com-stretchr-testify-1.7.0" - ,go-github-com-stretchr-testify-1.7.0) - ("go-github-com-sirupsen-logrus-1.8.1" - ,go-github-com-sirupsen-logrus-1.8.1) - ("go-github-com-proglottis-gpgme-0.1.1" - ,go-github-com-proglottis-gpgme-0.1.1) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-ostreedev-ostree-go-0.0.0-20190702140239-759a8c1ac913" - ,go-github-com-ostreedev-ostree-go-0.0.0-20190702140239-759a8c1ac913) - ("go-github-com-opencontainers-selinux-1.10.0" - ,go-github-com-opencontainers-selinux-1.10.0) - ("go-github-com-opencontainers-image-spec-1.0.3-0.20211202193544-a5463b7f9c84" - ,go-github-com-opencontainers-image-spec-1.0.3-0.20211202193544-a5463b7f9c84) - ("go-github-com-opencontainers-go-digest-1.0.0" - ,go-github-com-opencontainers-go-digest-1.0.0) - ("go-github-com-manifoldco-promptui-0.9.0" - ,go-github-com-manifoldco-promptui-0.9.0) - ("go-github-com-klauspost-pgzip-1.2.5" - ,go-github-com-klauspost-pgzip-1.2.5) - ("go-github-com-klauspost-compress-1.14.2" - ,go-github-com-klauspost-compress-1.14.2) - ("go-github-com-imdario-mergo-0.3.12" - ,go-github-com-imdario-mergo-0.3.12) - ("go-github-com-hashicorp-go-multierror-1.1.1" - ,go-github-com-hashicorp-go-multierror-1.1.1) - ("go-github-com-gorilla-mux-1.7.4" ,go-github-com-gorilla-mux-1.7.4) - ("go-github-com-ghodss-yaml-1.0.0" ,go-github-com-ghodss-yaml-1.0.0) - ("go-github-com-docker-libtrust-0.0.0-20160708172513-aabc10ec26b7" - ,go-github-com-docker-libtrust-0.0.0-20160708172513-aabc10ec26b7) - ("go-github-com-docker-go-connections-0.4.0" - ,go-github-com-docker-go-connections-0.4.0) - ("go-github-com-docker-docker-credential-helpers-0.6.4" - ,go-github-com-docker-docker-credential-helpers-0.6.4) - ("go-github-com-docker-docker-20.10.12+incompatible" - ,go-github-com-docker-docker-20.10.12+incompatible) - ("go-github-com-docker-distribution-2.7.1+incompatible" - ,go-github-com-docker-distribution-2.7.1+incompatible) - ("go-github-com-containers-storage-1.38.2" - ,go-github-com-containers-storage-1.38.2) - ("go-github-com-containers-ocicrypt-1.1.2" - ,go-github-com-containers-ocicrypt-1.1.2) - ("go-github-com-containers-libtrust-0.0.0-20190913040956-14b96171aa3b" - ,go-github-com-containers-libtrust-0.0.0-20190913040956-14b96171aa3b) - ("go-github-com-containerd-containerd-1.5.9" - ,go-github-com-containerd-containerd-1.5.9) - ("go-github-com-burntsushi-toml-1.0.0" - ,go-github-com-burntsushi-toml-1.0.0) - ("go-github-com-14rcole-gopopulate-0.0.0-20180821133914-b175b219e774" - ,go-github-com-14rcole-gopopulate-0.0.0-20180821133914-b175b219e774))) - (home-page "https://github.com/containers/image") - (synopsis "") - (description - "The package image provides libraries and commands to interact with container -images.") - (license license:asl2.0))) -(define-public go-github-com-creack-pty-1.1.17 - (package - (name "go-github-com-creack-pty") - (version "1.1.17") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/creack/pty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "09lcq5bw1dwppxjia05sj4fy7gbk62vishfz1bgrbd1r06i57mjf")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/creack/pty")) - (home-page "https://github.com/creack/pty") - (synopsis "pty") - (description - "Package pty provides functions for working with Unix terminals.") - (license license:expat))) -(define-public go-github-com-cyphar-filepath-securejoin-0.2.3 - (package - (name "go-github-com-cyphar-filepath-securejoin") - (version "0.2.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cyphar/filepath-securejoin") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0w03d8hslwfhcnfqck21agzs7y0sc6gpwfz53md8fv26ishwxppy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/cyphar/filepath-securejoin")) - (home-page "https://github.com/cyphar/filepath-securejoin") - (synopsis #f) - (description - "Package securejoin is an implementation of the hopefully-soon-to-be-included -SecureJoin helper that is meant to be part of the \"path/filepath\" package. The -purpose of this project is to provide a PoC implementation to make the -SecureJoin proposal -(@url{https://github.com/golang/go/issues/20126,https://github.com/golang/go/issues/20126}) -more tangible.") - (license license:bsd-3))) -(define-public go-github-com-docker-docker-20.10.12+incompatible - (package - (name "go-github-com-docker-docker") - (version "20.10.12+incompatible") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/moby/moby") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "17j820ij8p6w61jyg5g6y5dwv56dh1w178f6ia2i2dc9b8mz6b5a")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/docker/docker")) - (home-page "https://github.com/docker/docker") - (synopsis "The Moby Project") - (description - "Moby is an open-source project created by Docker to enable and accelerate -software containerization.") - (license license:asl2.0))) -(define-public go-github-com-fatih-color-1.13.0 - (package - (name "go-github-com-fatih-color") - (version "1.13.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/fatih/color") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "029qkxsdpblhrpgbv4fcmqwkqnjhx08hwiqp19pd7zz6l8a373ay")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/fatih/color")) - (propagated-inputs - `(("go-github-com-mattn-go-isatty-0.0.14" - ,go-github-com-mattn-go-isatty-0.0.14) - ("go-github-com-mattn-go-colorable-0.1.9" - ,go-github-com-mattn-go-colorable-0.1.9))) - (home-page "https://github.com/fatih/color") - (synopsis "color") - (description - "Package color is an ANSI color package to output colorized or SGR defined output -to the standard output. The API can be used in several way, pick one that suits -you.") - (license license:expat))) -(define-public go-github-com-go-log-log-0.2.0 - (package - (name "go-github-com-go-log-log") - (version "0.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/go-log/log") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1idnqv4yvkmdh3wcsgvhcpak9z6ix8dsifdjq5kfbbnskdq5rmvg")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/go-log/log")) - (home-page "https://github.com/go-log/log") - (synopsis "Log") - (description "Package log provides a log interface") - (license license:expat))) -(define-public go-github-com-google-uuid-1.3.0 - (package - (name "go-github-com-google-uuid") - (version "1.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/uuid") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0imkw52m7fzrwsdj2rfrk3zbplqfbwncyv6hv89xw0vdw3jpk122")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/uuid")) - (home-page "https://github.com/google/uuid") - (synopsis "uuid") - (description "Package uuid generates and inspects UUIDs.") - (license license:bsd-3))) -(define-public go-github-com-opencontainers-go-digest-1.0.0 - (package - (name "go-github-com-opencontainers-go-digest") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/go-digest") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0i5acjajvr6hi9zb7gxwifd8w28y884cv7cx36adj8lngj647xbi")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/go-digest")) - (home-page "https://github.com/opencontainers/go-digest") - (synopsis "go-digest") - (description - "Package digest provides a generalized type to opaquely represent message digests -and their operations within the registry. The Digest type is designed to serve -as a flexible identifier in a content-addressable system. More importantly, it -provides tools and wrappers to work with hash.Hash-based digests with little -effort.") - (license (list license:asl2.0 license:cc-by-sa4.0)))) -(define-public go-github-com-opencontainers-image-spec-1.0.3-0.20211202193544-a5463b7f9c84 - (package - (name "go-github-com-opencontainers-image-spec") - (version "1.0.3-0.20211202193544-a5463b7f9c84") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/image-spec") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "11js6467d7fhcvad4aw26d4p0r5b33vf41qhcf1bdwx0y7smd7s4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/image-spec")) - (propagated-inputs - `(("go-github-com-xeipuuv-gojsonschema-1.2.0" - ,go-github-com-xeipuuv-gojsonschema-1.2.0) - ("go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415" - ,go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415) - ("go-github-com-russross-blackfriday-1.6.0" - ,go-github-com-russross-blackfriday-1.6.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-go-digest-1.0.0" - ,go-github-com-opencontainers-go-digest-1.0.0))) - (home-page "https://github.com/opencontainers/image-spec") - (synopsis "OCI Image Format Specification") - (description - "The OCI Image Format project creates and maintains the software shipping -container image format spec (OCI Image Format).") - (license license:asl2.0))) -(define-public go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417 - (package - (name "go-github-com-opencontainers-runtime-spec") - (version "1.0.3-0.20210326190908-1c3f411f0417") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/runtime-spec") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1azk8z41ga8af35c966f06vrq9y9hwz6mkm59r3py5qaamzim3qq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) - (home-page "https://github.com/opencontainers/runtime-spec") - (synopsis "Open Container Initiative Runtime Specification") - (description - "The @url{https://www.opencontainers.org,Open Container Initiative} develops -specifications for standards on Operating System process and application -containers.") - (license license:asl2.0))) -(define-public go-github-com-opencontainers-runtime-tools-0.9.1-0.20210326182921-59cdde06764b - (package - (name "go-github-com-opencontainers-runtime-tools") - (version "0.9.1-0.20210326182921-59cdde06764b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/runtime-tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0f4zy6x1rrrg10bphwijic30m3r4mq934zbavnci6jyi41l1w2r0")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/runtime-tools")) - (home-page "https://github.com/opencontainers/runtime-tools") - (synopsis "oci-runtime-tool") - (description - "oci-runtime-tool is a collection of tools for working with the -@url{https://github.com/opencontainers/runtime-spec,OCI runtime specification}. -To build from source code, runtime-tools requires Go 1.10.x or above.") - (license license:asl2.0))) -(define-public go-github-com-opencontainers-selinux-1.10.0 - (package - (name "go-github-com-opencontainers-selinux") - (version "1.10.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/selinux") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "118q1d9py9zhym4jmyiivasmllkdnkp1zyx4brc6n2cfmxfph6gc")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/selinux")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777" - ,go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777))) - (home-page "https://github.com/opencontainers/selinux") - (synopsis "selinux") - (description "Common SELinux package used across the container ecosystem.") - (license license:asl2.0))) -(define-public go-github-com-opencontainers-umoci-0.4.7 - (package - (name "go-github-com-opencontainers-umoci") - (version "0.4.7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/umoci") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0in8kyi4jprvbm3zsl3risbjj8b0ma62yl3rq8rcvcgypx0mn7d4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/umoci")) - (propagated-inputs - `(("go-gopkg-in-yaml-v3-3.0.0-20200615113413-eeeca48fe776" - ,go-gopkg-in-yaml-v3-3.0.0-20200615113413-eeeca48fe776) - ("go-gopkg-in-check-v1-1.0.0-20200227125254-8fa46927fb4f" - ,go-gopkg-in-check-v1-1.0.0-20200227125254-8fa46927fb4f) - ("go-google-golang-org-protobuf-1.24.0" - ,go-google-golang-org-protobuf-1.24.0) - ("go-golang-org-x-sys-0.0.0-20200622214017-ed371f2e16b4" - ,go-golang-org-x-sys-0.0.0-20200622214017-ed371f2e16b4) - ("go-golang-org-x-crypto-0.0.0-20200604202706-70a84ac30bf9" - ,go-golang-org-x-crypto-0.0.0-20200604202706-70a84ac30bf9) - ("go-github-com-vbatts-go-mtree-0.5.0" - ,go-github-com-vbatts-go-mtree-0.5.0) - ("go-github-com-urfave-cli-1.22.4" ,go-github-com-urfave-cli-1.22.4) - ("go-github-com-tj-assert-0.0.3" ,go-github-com-tj-assert-0.0.3) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-sirupsen-logrus-1.6.0" - ,go-github-com-sirupsen-logrus-1.6.0) - ("go-github-com-rootless-containers-proto-0.1.0" - ,go-github-com-rootless-containers-proto-0.1.0) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-opencontainers-runtime-spec-1.0.2" - ,go-github-com-opencontainers-runtime-spec-1.0.2) - ("go-github-com-opencontainers-runc-1.0.0-rc90" - ,go-github-com-opencontainers-runc-1.0.0-rc90) - ("go-github-com-opencontainers-image-spec-1.0.1" - ,go-github-com-opencontainers-image-spec-1.0.1) - ("go-github-com-opencontainers-go-digest-1.0.0" - ,go-github-com-opencontainers-go-digest-1.0.0) - ("go-github-com-niemeyer-pretty-0.0.0-20200227124842-a10e7caefd8e" - ,go-github-com-niemeyer-pretty-0.0.0-20200227124842-a10e7caefd8e) - ("go-github-com-mohae-deepcopy-0.0.0-20170929034955-c48cc78d4826" - ,go-github-com-mohae-deepcopy-0.0.0-20170929034955-c48cc78d4826) - ("go-github-com-mattn-go-colorable-0.1.6" - ,go-github-com-mattn-go-colorable-0.1.6) - ("go-github-com-kr-text-0.2.0" ,go-github-com-kr-text-0.2.0) - ("go-github-com-klauspost-pgzip-1.2.4" - ,go-github-com-klauspost-pgzip-1.2.4) - ("go-github-com-klauspost-compress-1.11.3" - ,go-github-com-klauspost-compress-1.11.3) - ("go-github-com-google-go-cmp-0.5.0" - ,go-github-com-google-go-cmp-0.5.0) - ("go-github-com-golang-protobuf-1.4.2" - ,go-github-com-golang-protobuf-1.4.2) - ("go-github-com-docker-go-units-0.4.0" - ,go-github-com-docker-go-units-0.4.0) - ("go-github-com-cyphar-filepath-securejoin-0.2.2" - ,go-github-com-cyphar-filepath-securejoin-0.2.2) - ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" - ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) - ("go-github-com-apex-log-1.4.0" ,go-github-com-apex-log-1.4.0) - ("go-github-com-adamkorcz-go-fuzz-headers-0.0.0-20210312213058-32f4d319f0d2" - ,go-github-com-adamkorcz-go-fuzz-headers-0.0.0-20210312213058-32f4d319f0d2))) - (home-page "https://github.com/opencontainers/umoci") - (synopsis "Install") - (description - "@strong{u}moci @strong{m}odifies @strong{O}pen @strong{C}ontainer -@strong{i}mages.") - (license license:asl2.0))) -(define-public go-github-com-pelletier-go-toml-1.9.4 - (package - (name "go-github-com-pelletier-go-toml") - (version "1.9.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pelletier/go-toml") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0f2d9m19dadl18i2baf57xygvn9vprm6wb8chvpx8kipx94nchyl")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pelletier/go-toml")) - (home-page "https://github.com/pelletier/go-toml") - (synopsis "go-toml") - (description "Package toml is a TOML parser and manipulation library.") - (license license:expat))) -(define-public go-github-com-pkg-errors-0.9.1 - (package - (name "go-github-com-pkg-errors") - (version "0.9.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pkg/errors") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1761pybhc2kqr6v5fm8faj08x9bql8427yqg6vnfv6nhrasx1mwq")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pkg/errors")) - (home-page "https://github.com/pkg/errors") - (synopsis "errors") - (description "Package errors provides simple error handling primitives.") - (license license:bsd-2))) -(define-public go-github-com-seccomp-containers-golang-0.6.0 - (package - (name "go-github-com-seccomp-containers-golang") - (version "0.6.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/seccomp/containers-golang") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0clrwdnmr131a65h66br57bsnr17i1s3kq9cc7ljrdaym57y6cfz")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/seccomp/containers-golang")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20200720211630-cb9d2d5c5666" - ,go-golang-org-x-sys-0.0.0-20200720211630-cb9d2d5c5666) - ("go-github-com-xeipuuv-gojsonschema-1.2.0" - ,go-github-com-xeipuuv-gojsonschema-1.2.0) - ("go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2" - ,go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2) - ("go-github-com-sirupsen-logrus-1.6.0" - ,go-github-com-sirupsen-logrus-1.6.0) - ("go-github-com-seccomp-libseccomp-golang-0.9.1" - ,go-github-com-seccomp-libseccomp-golang-0.9.1) - ("go-github-com-opencontainers-selinux-1.6.0" - ,go-github-com-opencontainers-selinux-1.6.0) - ("go-github-com-opencontainers-runtime-tools-0.9.0" - ,go-github-com-opencontainers-runtime-tools-0.9.0) - ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200710190001-3e4195d92445" - ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200710190001-3e4195d92445) - ("go-github-com-hashicorp-go-multierror-1.1.0" - ,go-github-com-hashicorp-go-multierror-1.1.0) - ("go-github-com-blang-semver-3.5.1+incompatible" - ,go-github-com-blang-semver-3.5.1+incompatible))) - (home-page "https://github.com/seccomp/containers-golang") - (synopsis "containers-golang") - (description - "@code{containers-golang} is a set of Go libraries used by container runtimes to -generate and load seccomp mappings into the kernel.") - (license license:asl2.0))) -(define-public go-github-com-seccomp-libseccomp-golang-0.9.2-0.20210429002308-3879420cc921 - (package - (name "go-github-com-seccomp-libseccomp-golang") - (version "0.9.2-0.20210429002308-3879420cc921") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/seccomp/libseccomp-golang") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ypr3j50cd9lnj9szfyh45kh0cf7swm7cv2svz1575mldd9m1xr9")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/seccomp/libseccomp-golang")) - (home-page "https://github.com/seccomp/libseccomp-golang") - (synopsis #f) - (description - "Package seccomp provides bindings for libseccomp, a library wrapping the Linux -seccomp syscall. Seccomp enables an application to restrict system call use for -itself and its children.") - (license license:bsd-2))) -(define-public go-github-com-spf13-cobra-1.3.0 - (package - (name "go-github-com-spf13-cobra") - (version "1.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/spf13/cobra") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0j3kj6yxrl2aigixapjl6bi2gmghrj52763wbd7jc079f38wz94n")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/spf13/cobra")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) - ("go-github-com-spf13-viper-1.10.0" ,go-github-com-spf13-viper-1.10.0) - ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) - ("go-github-com-inconshreveable-mousetrap-1.0.0" - ,go-github-com-inconshreveable-mousetrap-1.0.0) - ("go-github-com-cpuguy83-go-md2man-v2-2.0.1" - ,go-github-com-cpuguy83-go-md2man-v2-2.0.1))) - (home-page "https://github.com/spf13/cobra") - (synopsis "Overview") - (description - "Package cobra is a commander providing a simple interface to create powerful -modern CLI interfaces. In addition to providing an interface, Cobra -simultaneously provides a controller to organize your application code.") - (license license:asl2.0))) -(define-public go-github-com-spf13-pflag-1.0.5 - (package - (name "go-github-com-spf13-pflag") - (version "1.0.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/spf13/pflag") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0gpmacngd0gpslnbkzi263f5ishigzgh6pbdv9hp092rnjl4nd31")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/spf13/pflag")) - (home-page "https://github.com/spf13/pflag") - (synopsis "Description") - (description - "Package pflag is a drop-in replacement for Go's flag package, implementing -POSIX/GNU-style --flags.") - (license license:bsd-3))) -(define-public go-github-com-sylabs-json-resp-0.8.0 - (package - (name "go-github-com-sylabs-json-resp") - (version "0.8.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sylabs/json-resp") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ygr4mavaj1pp78hkkphhn3ydd923n3klwnx8x7v4ajqzx4cx4id")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/sylabs/json-resp")) - (home-page "https://github.com/sylabs/json-resp") - (synopsis "JSON Response") - (description - "The @code{json-resp} package contains a small set of functions that are used to -marshall and unmarshall response data and errors in JSON format.") - (license license:bsd-3))) -(define-public go-github-com-urfave-cli-1.22.5 - (package - (name "go-github-com-urfave-cli") - (version "1.22.5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/urfave/cli") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1n8lk58j7bdsp47yh5bcpsw38lhkbyzcy3203ffkawc2rvkf1pp7")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/urfave/cli")) - (propagated-inputs - `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) - ("go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d" - ,go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d) - ("go-github-com-burntsushi-toml-0.3.1" - ,go-github-com-burntsushi-toml-0.3.1))) - (home-page "https://github.com/urfave/cli") - (synopsis "cli") - (description - "Package cli provides a minimal framework for creating and organizing command -line Go applications. cli is designed to be easy to understand and write, the -most simple cli application can be written as follows:") - (license license:expat))) -(define-public go-github-com-vbauerster-mpb-v7-7.4.1 - (package - (name "go-github-com-vbauerster-mpb-v7") - (version "7.4.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/vbauerster/mpb") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ii1r84qjfp2spvj6nb8xy5b3nsfw17jmwgp55zkaz9n9lfj75w2")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/vbauerster/mpb/v7")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20220209214540-3681064d5158" - ,go-golang-org-x-sys-0.0.0-20220209214540-3681064d5158) - ("go-github-com-mattn-go-runewidth-0.0.13" - ,go-github-com-mattn-go-runewidth-0.0.13) - ("go-github-com-acarl005-stripansi-0.0.0-20180116102854-5a71ef0e047d" - ,go-github-com-acarl005-stripansi-0.0.0-20180116102854-5a71ef0e047d) - ("go-github-com-vividcortex-ewma-1.2.0" - ,go-github-com-vividcortex-ewma-1.2.0))) - (home-page "https://github.com/vbauerster/mpb") - (synopsis "Multi Progress Bar") - (description - "Package mpb is a library for rendering progress bars in terminal applications.") - (license license:unlicense))) -(define-public go-github-com-xeipuuv-gojsonpointer-0.0.0-20190905194746-02993c407bfb - (package - (name "go-github-com-xeipuuv-gojsonpointer") - (version "0.0.0-20190905194746-02993c407bfb") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/xeipuuv/gojsonpointer") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0y7gmpgsm8c12ax4a0ij9srmd9d424iq224n172ckwfqf37amvzy")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/xeipuuv/gojsonpointer")) - (home-page "https://github.com/xeipuuv/gojsonpointer") - (synopsis "gojsonpointer") - (description "An implementation of JSON Pointer - Go language") - (license license:asl2.0))) -(define-public go-github-com-yvasiyarov-go-metrics-0.0.0-20150112132944-c25f46c4b940 - (package - (name "go-github-com-yvasiyarov-go-metrics") - (version "0.0.0-20150112132944-c25f46c4b940") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/yvasiyarov/go-metrics") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0p1hx4ml4gzgyj8n0fg5lv8bq092zwg00n59lq8v8sphjc1h8i8d")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/yvasiyarov/go-metrics")) - (home-page "https://github.com/yvasiyarov/go-metrics") - (synopsis "go-metrics") - (description "Go port of Coda Hale's Metrics library") - (license license:expat))) -(define-public go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20160601141957-9c099fbc30e9 - (package - (name "go-github-com-yvasiyarov-newrelic-platform-go") - (version "0.0.0-20160601141957-9c099fbc30e9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/yvasiyarov/newrelic_platform_go") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0n6jap27qc7b7c37ck1gv9biq5nfl7y06jk0cqgc517yfnb4f07x")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/yvasiyarov/newrelic_platform_go")) - (home-page "https://github.com/yvasiyarov/newrelic_platform_go") - (synopsis "New Relic Platform Agent SDK for Go(golang)") - (description - "Package newrelic_platform_go is New Relic Platform Agent SDK for Go language.") - (license license:bsd-2))) -(define-public go-golang-org-x-sys-0.0.0-20220209214540-3681064d5158 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20220209214540-3681064d5158") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0cw9rzb4rxmr2si28pjqx3wv5r119c83kd08yy1h7nf725bzrs89")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) -(define-public go-golang-org-x-term-0.0.0-20210916214954-140adaaadfaf - (package - (name "go-golang-org-x-term") - (version "0.0.0-20210916214954-140adaaadfaf") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/term") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1rcdx2q92pzpmdyzdlzpq9flc3ibfi3m1rni7w4qlmlq569s6wh3")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/term")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1" - ,go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1))) - (home-page "https://golang.org/x/term") - (synopsis "Go terminal/console support") - (description - "Package term provides support functions for dealing with terminals, as commonly -found on UNIX systems.") - (license license:bsd-3))) -(define-public go-gopkg-in-yaml-v2-2.4.0 - (package - (name "go-gopkg-in-yaml-v2") - (version "2.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1pbmrpj7gcws34g8vwna4i2nhm9p6235piww36436xhyaa10cldr")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v2") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language.") - (license license:asl2.0))) -(define-public go-gotest-tools-v3-3.1.0 - (package - (name "go-gotest-tools-v3") - (version "3.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gotestyourself/gotest.tools") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0jk2grk2q19k453m76hn2bsq9i73yk63drlfjg1imvhmmcl88872")))) - (build-system go-build-system) - (arguments - '(#:import-path "gotest.tools/v3" #:unpack-path "gotest.tools/v3")) - (propagated-inputs - `(("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) - ("go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4" - ,go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4) - ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-google-go-cmp-0.5.5" - ,go-github-com-google-go-cmp-0.5.5))) - (home-page "https://gotest.tools/v3") - (synopsis "gotest.tools") - (description - "Package gotesttools is a collection of packages to augment `testing` and support -common patterns.") - (license license:asl2.0))) -(define-public go-mvdan-cc-sh-v3-3.4.3-0.20220202175809-113ed667a8a7 - (package - (name "go-mvdan-cc-sh-v3") - (version "3.4.3-0.20220202175809-113ed667a8a7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mvdan/sh") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1k5113qqm20x58838k8f0ry3v1hinahjf2yl8y4450922yy0mq2k")))) - (build-system go-build-system) - (arguments - '(#:import-path "mvdan.cc/sh/v3" #:unpack-path "mvdan.cc/sh/v3")) - (propagated-inputs - `(("go-mvdan-cc-editorconfig-0.2.0" ,go-mvdan-cc-editorconfig-0.2.0) - ("go-golang-org-x-term-0.0.0-20210916214954-140adaaadfaf" - ,go-golang-org-x-term-0.0.0-20210916214954-140adaaadfaf) - ("go-golang-org-x-sys-0.0.0-20210925032602-92d5a993a665" - ,go-golang-org-x-sys-0.0.0-20210925032602-92d5a993a665) - ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" - ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) - ("go-github-com-rogpeppe-go-internal-1.8.1-0.20210923151022-86f73c517451" - ,go-github-com-rogpeppe-go-internal-1.8.1-0.20210923151022-86f73c517451) - ("go-github-com-pkg-diff-0.0.0-20210226163009-20ebb0f2a09e" - ,go-github-com-pkg-diff-0.0.0-20210226163009-20ebb0f2a09e) - ("go-github-com-kr-pretty-0.3.0" ,go-github-com-kr-pretty-0.3.0) - ("go-github-com-google-renameio-1.0.1" - ,go-github-com-google-renameio-1.0.1) - ("go-github-com-frankban-quicktest-1.13.1" - ,go-github-com-frankban-quicktest-1.13.1) - ("go-github-com-creack-pty-1.1.15" ,go-github-com-creack-pty-1.1.15))) - (home-page "https://mvdan.cc/sh/v3") - (synopsis "sh") - (description - "This package provides a shell parser, formatter, and interpreter. Supports -@url{https://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html,POSIX -Shell}, @url{https://www.gnu.org/software/bash/,Bash}, and -@url{http://www.mirbsd.org/mksh.htm,mksh}. Requires Go 1.16 or later.") - (license license:bsd-3))) -(define-public go-oras-land-oras-go-1.1.0 - (package - (name "go-oras-land-oras-go") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/oras-project/oras-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1mbn57dgpr7m2f7cw5r9s8kka44khrgqca84np6wnjiyzxgr1khk")))) - (build-system go-build-system) - (arguments '(#:import-path "oras.land/oras-go")) - (propagated-inputs - `(("go-gopkg-in-yaml-v3-3.0.0-20210107192922-496545a6307b" - ,go-gopkg-in-yaml-v3-3.0.0-20210107192922-496545a6307b) - ("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) - ("go-gopkg-in-check-v1-1.0.0-20200227125254-8fa46927fb4f" - ,go-gopkg-in-check-v1-1.0.0-20200227125254-8fa46927fb4f) - ("go-google-golang-org-protobuf-1.27.1" - ,go-google-golang-org-protobuf-1.27.1) - ("go-google-golang-org-grpc-1.43.0" ,go-google-golang-org-grpc-1.43.0) - ("go-google-golang-org-genproto-0.0.0-20220107163113-42d7afdf6368" - ,go-google-golang-org-genproto-0.0.0-20220107163113-42d7afdf6368) - ("go-golang-org-x-text-0.3.7" ,go-golang-org-x-text-0.3.7) - ("go-golang-org-x-sys-0.0.0-20211216021012-1d35b9e2eb4e" - ,go-golang-org-x-sys-0.0.0-20211216021012-1d35b9e2eb4e) - ("go-golang-org-x-net-0.0.0-20220107192237-5cfca573fb4d" - ,go-golang-org-x-net-0.0.0-20220107192237-5cfca573fb4d) - ("go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20140908184405-b21fdbd4370f" - ,go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20140908184405-b21fdbd4370f) - ("go-github-com-yvasiyarov-gorelic-0.0.0-20141212073537-a9bba5b9ab50" - ,go-github-com-yvasiyarov-gorelic-0.0.0-20141212073537-a9bba5b9ab50) - ("go-github-com-yvasiyarov-go-metrics-0.0.0-20140926110328-57bccd1ccd43" - ,go-github-com-yvasiyarov-go-metrics-0.0.0-20140926110328-57bccd1ccd43) - ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) - ("go-github-com-prometheus-procfs-0.6.0" - ,go-github-com-prometheus-procfs-0.6.0) - ("go-github-com-prometheus-common-0.10.0" - ,go-github-com-prometheus-common-0.10.0) - ("go-github-com-prometheus-client-model-0.2.0" - ,go-github-com-prometheus-client-model-0.2.0) - ("go-github-com-prometheus-client-golang-1.7.1" - ,go-github-com-prometheus-client-golang-1.7.1) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-niemeyer-pretty-0.0.0-20200227124842-a10e7caefd8e" - ,go-github-com-niemeyer-pretty-0.0.0-20200227124842-a10e7caefd8e) - ("go-github-com-morikuni-aec-1.0.0" ,go-github-com-morikuni-aec-1.0.0) - ("go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd" - ,go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd) - ("go-github-com-moby-sys" - ,go-github-com-moby-sys) - ("go-github-com-moby-locker-1.0.1" ,go-github-com-moby-locker-1.0.1) - ("go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369" - ,go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369) - ("go-github-com-kr-text-0.2.0" ,go-github-com-kr-text-0.2.0) - ("go-github-com-klauspost-compress-1.13.6" - ,go-github-com-klauspost-compress-1.13.6) - ("go-github-com-inconshreveable-mousetrap-1.0.0" - ,go-github-com-inconshreveable-mousetrap-1.0.0) - ("go-github-com-gorilla-mux-1.8.0" ,go-github-com-gorilla-mux-1.8.0) - ("go-github-com-gorilla-handlers-1.5.1" - ,go-github-com-gorilla-handlers-1.5.1) - ("go-github-com-google-go-cmp-0.5.6" - ,go-github-com-google-go-cmp-0.5.6) - ("go-github-com-gomodule-redigo-1.8.2" - ,go-github-com-gomodule-redigo-1.8.2) - ("go-github-com-golang-protobuf-1.5.2" - ,go-github-com-golang-protobuf-1.5.2) - ("go-github-com-golang-groupcache-0.0.0-20210331224755-41bb18bfe9da" - ,go-github-com-golang-groupcache-0.0.0-20210331224755-41bb18bfe9da) - ("go-github-com-gogo-protobuf-1.3.2" - ,go-github-com-gogo-protobuf-1.3.2) - ("go-github-com-felixge-httpsnoop-1.0.1" - ,go-github-com-felixge-httpsnoop-1.0.1) - ("go-github-com-docker-libtrust-0.0.0-20150114040149-fa567046d9b1" - ,go-github-com-docker-libtrust-0.0.0-20150114040149-fa567046d9b1) - ("go-github-com-docker-go-units-0.4.0" - ,go-github-com-docker-go-units-0.4.0) - ("go-github-com-docker-go-metrics-0.0.1" - ,go-github-com-docker-go-metrics-0.0.1) - ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" - ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) - ("go-github-com-docker-go-connections-0.4.0" - ,go-github-com-docker-go-connections-0.4.0) - ("go-github-com-docker-docker-credential-helpers-0.6.4" - ,go-github-com-docker-docker-credential-helpers-0.6.4) - ("go-github-com-docker-distribution-2.7.1+incompatible" - ,go-github-com-docker-distribution-2.7.1+incompatible) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1) - ("go-github-com-containerd-cgroups-1.0.2" - ,go-github-com-containerd-cgroups-1.0.2) - ("go-github-com-cespare-xxhash-v2-2.1.1" - ,go-github-com-cespare-xxhash-v2-2.1.1) - ("go-github-com-bugsnag-panicwrap-0.0.0-20151223152923-e2c28503fcd0" - ,go-github-com-bugsnag-panicwrap-0.0.0-20151223152923-e2c28503fcd0) - ("go-github-com-bugsnag-osext-0.0.0-20130617224835-0dd3f918b21b" - ,go-github-com-bugsnag-osext-0.0.0-20130617224835-0dd3f918b21b) - ("go-github-com-bugsnag-bugsnag-go-0.0.0-20141110184014-b1d153021fcd" - ,go-github-com-bugsnag-bugsnag-go-0.0.0-20141110184014-b1d153021fcd) - ("go-github-com-bshuster-repo-logrus-logstash-hook-1.0.0" - ,go-github-com-bshuster-repo-logrus-logstash-hook-1.0.0) - ("go-github-com-beorn7-perks-1.0.1" ,go-github-com-beorn7-perks-1.0.1) - ("go-github-com-shopify-logrus-bugsnag-0.0.0-20171204204709-577dee27f20d" - ,go-github-com-shopify-logrus-bugsnag-0.0.0-20171204204709-577dee27f20d) - ("go-github-com-microsoft-hcsshim-0.9.1" - ,go-github-com-microsoft-hcsshim-0.9.1) - ("go-github-com-microsoft-go-winio-0.5.1" - ,go-github-com-microsoft-go-winio-0.5.1) - ("go-github-com-azure-go-ansiterm-0.0.0-20170929234023-d6e3b3328b78" - ,go-github-com-azure-go-ansiterm-0.0.0-20170929234023-d6e3b3328b78) - ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" - ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) - ("go-golang-org-x-crypto-0.0.0-20211117183948-ae814b36b871" - ,go-golang-org-x-crypto-0.0.0-20211117183948-ae814b36b871) - ("go-github-com-stretchr-testify-1.7.0" - ,go-github-com-stretchr-testify-1.7.0) - ("go-github-com-spf13-cobra-1.2.1" ,go-github-com-spf13-cobra-1.2.1) - ("go-github-com-sirupsen-logrus-1.8.1" - ,go-github-com-sirupsen-logrus-1.8.1) - ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) - ("go-github-com-phayes-freeport-0.0.0-20180830031419-95f893ade6f2" - ,go-github-com-phayes-freeport-0.0.0-20180830031419-95f893ade6f2) - ("go-github-com-opencontainers-image-spec-1.0.2" - ,go-github-com-opencontainers-image-spec-1.0.2) - ("go-github-com-opencontainers-go-digest-1.0.0" - ,go-github-com-opencontainers-go-digest-1.0.0) - ("go-github-com-docker-docker-20.10.11+incompatible" - ,go-github-com-docker-docker-20.10.11+incompatible) - ("go-github-com-docker-cli-20.10.11+incompatible" - ,go-github-com-docker-cli-20.10.11+incompatible) - ("go-github-com-distribution-distribution-v3-3.0.0-20211118083504-a29a3c99a684" - ,go-github-com-distribution-distribution-v3-3.0.0-20211118083504-a29a3c99a684) - ("go-github-com-containerd-containerd-1.5.9" - ,go-github-com-containerd-containerd-1.5.9))) - (home-page "https://oras.land/oras-go") - (synopsis "ORAS Go library") - (description - "Documentation for the ORAS Go library is located on the project website: -@url{https://oras.land/client_libraries/go/,oras.land/client_libraries/go}") - (license license:asl2.0))) -(define-public go-github-com-opencontainers-image-spec-1.0.2-0.20211117181255-693428a734f5 - (package - (name "go-github-com-opencontainers-image-spec") - (version "1.0.2-0.20211117181255-693428a734f5") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/opencontainers/image-spec") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1w9fmamky30idjbqs78qhds6d5b9gdy6wzcxx6fhmpm2159dv62b")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/opencontainers/image-spec")) - (home-page "https://github.com/opencontainers/image-spec") - (synopsis "OCI Image Format Specification") - (description - "The OCI Image Format project creates and maintains the software shipping -container image format spec (OCI Image Format).") - (license license:asl2.0))) -(define-public go-github-com-moby-sys-0.0.0-20220308220145-03355939d693 - (package - (name "go-github-com-moby-sys") - (version "0.0.0-20220308220145-03355939d693") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/moby/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ns4bav4n0k93nwz898dmcrz9zm4fa08sxyzhi7wqj4f8mpz4fam")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/moby/sys")) - (home-page "https://github.com/moby/sys") - (synopsis #f) - (description #f) - (license license:asl2.0))) -(define-public go-github-com-yvasiyarov-gorelic-0.0.6 - (package - (name "go-github-com-yvasiyarov-gorelic") - (version "0.0.6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/yvasiyarov/gorelic") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0210d8z7l945611b5ynzjhnypqfdyr490ndrap13s4k5z1jgqjnb")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/yvasiyarov/gorelic")) - (home-page "https://github.com/yvasiyarov/gorelic") - (synopsis "GoRelic is deprecated in favour of") - (description - "Package gorelic is an New Relic agent implementation for Go runtime. It collect -a lot of metrics about Go scheduler, garbage collector and memory allocator and -send them to NewRelic.") - (license license:bsd-2))) -(define-public go-github-com-stretchr-testify-1.6.1 - (package - (name "go-github-com-stretchr-testify") - (version "1.6.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/testify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1yhiqqzjvi63pf01rgzx68gqkkvjx03fvl5wk30br5l6s81s090l")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/testify")) - (propagated-inputs - `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" - ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) - ("go-github-com-stretchr-objx-0.1.0" - ,go-github-com-stretchr-objx-0.1.0) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.0" - ,go-github-com-davecgh-go-spew-1.1.0))) - (home-page "https://github.com/stretchr/testify") - (synopsis "Testify - Thou Shalt Write Tests") - (description - "** We are working on testify v2 and would love to hear what you'd like to see in -it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -Package testify is a set of packages that provide many tools for testifying that -your code will behave as you intend.") - (license license:expat))) -(define-public go-github-com-stretchr-testify-1.7.0 - (package - (name "go-github-com-stretchr-testify") - (version "1.7.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/testify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0ixgjsvafr3513pz3r6pmgk074s2dxkll0dadvl25gkf30rkmh10")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/testify")) - (propagated-inputs - `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" - ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) - ("go-github-com-stretchr-objx-0.1.0" - ,go-github-com-stretchr-objx-0.1.0) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-davecgh-go-spew-1.1.0" - ,go-github-com-davecgh-go-spew-1.1.0))) - (home-page "https://github.com/stretchr/testify") - (synopsis "Testify - Thou Shalt Write Tests") - (description - "** We are working on testify v2 and would love to hear what you'd like to see in -it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -Package testify is a set of packages that provide many tools for testifying that -your code will behave as you intend.") - (license license:expat))) -(define-public go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c - (package - (name "go-gopkg-in-yaml-v3") - (version "3.0.0-20200313102051-9f266ea9e77c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v3") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1bbai3lzb50m0x2vwsdbagrbhvfylj9k1m32hgbqwldqx4p9ay35")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v3") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language.") - (license license:expat))) -(define-public go-github-com-stretchr-objx-0.1.0 - (package - (name "go-github-com-stretchr-objx") - (version "0.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/objx") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/objx")) - (home-page "https://github.com/stretchr/objx") - (synopsis "Objx") - (description - "Objx - Go package for dealing with maps, slices, JSON and other data.") - (license license:expat))) -(define-public go-github-com-pmezard-go-difflib-1.0.0 - (package - (name "go-github-com-pmezard-go-difflib") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pmezard/go-difflib") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pmezard/go-difflib")) - (home-page "https://github.com/pmezard/go-difflib") - (synopsis "go-difflib") - (description - "Go-difflib is a partial port of python 3 difflib package. Its main goal was to -make unified and context diff available in pure Go, mostly for testing purposes.") - (license license:bsd-3))) -(define-public go-github-com-davecgh-go-spew-1.1.0 - (package - (name "go-github-com-davecgh-go-spew") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/davecgh/go-spew") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/davecgh/go-spew")) - (home-page "https://github.com/davecgh/go-spew") - (synopsis "go-spew") - (description - "Go-spew implements a deep pretty printer for Go data structures to aid in -debugging. A comprehensive suite of tests with 100% test coverage is provided -to ensure proper functionality. See @code{test_coverage.txt} for the gocov -coverage report. Go-spew is licensed under the liberal ISC license, so it may -be used in open source or commercial projects.") - (license license:isc))) -(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 - (package - (name "go-gopkg-in-check-v1") - (version "0.0.0-20161208181325-20d25e280405") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/check.v1") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) - (home-page "https://gopkg.in/check.v1") - (synopsis "Instructions") - (description - "Package check is a rich testing extension for Go's testing package.") - (license license:bsd-2))) -(define-public go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20210322153248-0c34fe9e7dc2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "021szs1czc0xg4chpays7i05dvkax9s8mns314ab01r887kchqxq")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" - ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) - ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" - ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68) - ("go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110" - ,go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) -(define-public go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1 - (package - (name "go-golang-org-x-term") - (version "0.0.0-20201126162022-7de9c90e9dd1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/term") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ba252xmv6qsvf1w1gcy98mngrj0vd4inbjw0lsklqvva65nljna")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/term")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" - ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) - (home-page "https://golang.org/x/term") - (synopsis "Go terminal/console support") - (description - "Package term provides support functions for dealing with terminals, as commonly -found on UNIX systems.") - (license license:bsd-3))) -(define-public go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20201119102817-f84b799fce68") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1dvhqian5byzkcg1bnqzygqa6ccc6krc2q7j12pp1vhl3y7znnsg")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) -(define-public go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20210226172049-e18ecbb05110") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1vlq8mdscp7yfaa1lmyv03y5m4c2d67ydg2q1i6smkrxghn3zn3q")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) - ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" - ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) - ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" - ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) -(define-public go-golang-org-x-text-0.3.3 - (package - (name "go-golang-org-x-text") - (version "0.3.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "19pihqm3phyndmiw6i42pdv6z1rbvlqlsnhsyqf9gsnn0qnmqqlh")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/text")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" - ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) - (home-page "https://golang.org/x/text") - (synopsis "Go Text") - (description - "text is a repository of text-related packages related to internationalization -(i18n) and localization (l10n), such as character encodings, text -transformations, and locale-specific text handling.") - (license license:bsd-3))) -(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e - (package - (name "go-golang-org-x-tools") - (version "0.0.0-20180917221912-90fa682c2a6e") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/tools") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/tools")) - (home-page "https://golang.org/x/tools") - (synopsis "Go Tools") - (description - "This subrepository holds the source for various packages and tools that support -the Go programming language.") - (license license:bsd-3))) -(define-public go-github-com-sirupsen-logrus-1.4.2 - (package - (name "go-github-com-sirupsen-logrus") - (version "1.4.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sirupsen/logrus") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "087k2lxrr9p9dh68yw71d05h5g9p5v26zbwd6j7lghinjfaw334x")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/sirupsen/logrus")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894" - ,go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894) - ("go-github-com-stretchr-testify-1.2.2" - ,go-github-com-stretchr-testify-1.2.2) - ("go-github-com-stretchr-objx-0.1.1" - ,go-github-com-stretchr-objx-0.1.1) - ("go-github-com-pmezard-go-difflib-1.0.0" - ,go-github-com-pmezard-go-difflib-1.0.0) - ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.1" - ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.1) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/sirupsen/logrus") - (synopsis "Logrus") - (description - "Package logrus is a structured logger for Go, completely API compatible with the -standard library logger.") - (license license:expat))) -(define-public go-github-com-gorilla-mux-1.7.4 - (package - (name "go-github-com-gorilla-mux") - (version "1.7.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gorilla/mux") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1d0sy1paa055ic84sp3766s9pa24q008hf77dc842vrgvn8p3wmh")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/gorilla/mux")) - (home-page "https://github.com/gorilla/mux") - (synopsis "gorilla/mux") - (description "Package mux implements a request router and dispatcher.") - (license license:bsd-3))) -(define-public go-github-com-docker-libtrust-0.0.0-20160708172513-aabc10ec26b7 - (package - (name "go-github-com-docker-libtrust") - (version "0.0.0-20160708172513-aabc10ec26b7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/docker/libtrust") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1lwslbggzc2b0c4wxl5pn6i2nfgz5jz8f7s7vnid9mrlsk59h7s1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/docker/libtrust")) - (home-page "https://github.com/docker/libtrust") - (synopsis "libtrust") - (description - "Package libtrust provides an interface for managing authentication and -authorization using public key cryptography. Authentication is handled using -the identity attached to the public key and verified through TLS x509 -certificates, a key challenge, or signature. Authorization and access control -is managed through a trust graph distributed between both remote trust servers -and locally cached and managed data.") - (license license:asl2.0))) -(define-public go-github-com-docker-distribution-2.7.1+incompatible - (package - (name "go-github-com-docker-distribution") - (version "2.7.1+incompatible") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/distribution/distribution") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1nx8b5a68rn81alp8wkkw6qd5v32mgf0fk23mxm60zdf63qk1nzw")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/docker/distribution")) - (home-page "https://github.com/docker/distribution") - (synopsis "Distribution") - (description - "Package distribution will define the interfaces for the components of docker -distribution. The goal is to allow users to reliably package, ship and store -content related to docker images.") - (license license:asl2.0))) -(define-public go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894 - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190422165155-953cdadca894") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0gkha4whk8xkcv3isigbs250akag99isxnd3v9xmy0kl3g88hxy1")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) -(define-public go-github-com-stretchr-testify-1.2.2 - (package - (name "go-github-com-stretchr-testify") - (version "1.2.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/testify") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0dlszlshlxbmmfxj5hlwgv3r22x0y1af45gn1vd198nvvs3pnvfs")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/testify")) - (home-page "https://github.com/stretchr/testify") - (synopsis "Testify - Thou Shalt Write Tests") - (description - "** We are working on testify v2 and would love to hear what you'd like to see in -it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** -Package testify is a set of packages that provide many tools for testifying that -your code will behave as you intend.") - (license license:expat))) -(define-public go-github-com-stretchr-objx-0.1.1 - (package - (name "go-github-com-stretchr-objx") - (version "0.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stretchr/objx") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0iph0qmpyqg4kwv8jsx6a56a7hhqq8swrazv40ycxk9rzr0s8yls")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/stretchr/objx")) - (home-page "https://github.com/stretchr/objx") - (synopsis "Objx") - (description - "Objx - Go package for dealing with maps, slices, JSON and other data.") - (license license:expat))) -(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.1 - (package - (name "go-github-com-konsorten-go-windows-terminal-sequences") - (version "1.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/konsorten/go-windows-terminal-sequences") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1lchgf27n276vma6iyxa0v1xds68n2g8lih5lavqnx5x6q5pw2ip")))) - (build-system go-build-system) - (arguments - '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) - (home-page "https://github.com/konsorten/go-windows-terminal-sequences") - (synopsis "Windows Terminal Sequences") - (description - "This library allow for enabling Windows terminal color support for Go.") - (license license:expat))) -(define-public go-github-com-davecgh-go-spew-1.1.1 - (package - (name "go-github-com-davecgh-go-spew") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/davecgh/go-spew") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/davecgh/go-spew")) - (home-page "https://github.com/davecgh/go-spew") - (synopsis "go-spew") - (description - "Go-spew implements a deep pretty printer for Go data structures to aid in -debugging. A comprehensive suite of tests with 100% test coverage is provided -to ensure proper functionality. See @code{test_coverage.txt} for the gocov -coverage report. Go-spew is licensed under the liberal ISC license, so it may -be used in open source or commercial projects.") - (license license:isc))) -(define-public go-gopkg-in-yaml-v2-2.2.2 - (package - (name "go-gopkg-in-yaml-v2") - (version "2.2.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v2") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "01wj12jzsdqlnidpyjssmj0r4yavlqy7dwrg7adqd8dicjc4ncsa")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v2") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language.") - (license license:asl2.0))) -(define-public go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15 - (package - (name "go-gopkg-in-check-v1") - (version "1.0.0-20190902080502-41f04d3bba15") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/check.v1") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0vfk9czmlxmp6wndq8k17rhnjxal764mxfhrccza7nwlia760pjy")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) - (home-page "https://gopkg.in/check.v1") - (synopsis "Instructions") - (description - "Package check is a rich testing extension for Go's testing package.") - (license license:bsd-2))) -(define-public go-golang-org-x-text-0.3.2 - (package - (name "go-golang-org-x-text") - (version "0.3.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0flv9idw0jm5nm8lx25xqanbkqgfiym6619w575p7nrdh0riqwqh")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/text")) - (propagated-inputs - `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" - ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) - (home-page "https://golang.org/x/text") - (synopsis "Go Text") - (description - "text is a repository of text-related packages related to internationalization -(i18n) and localization (l10n), such as character encodings, text -transformations, and locale-specific text handling.") - (license license:bsd-3))) -(define-public go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859 - (package - (name "go-golang-org-x-net") - (version "0.0.0-20190620200207-3b0461eec859") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/net") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0l00c8l0a8xnv6qdpwfzxxsr58jggacgzdrwiprrfx2xqm37b6d5")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/net")) - (propagated-inputs - `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) - ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) - ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" - ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) - (home-page "https://golang.org/x/net") - (synopsis "Go Networking") - (description - "This repository holds supplementary Go networking libraries.") - (license license:bsd-3))) -(define-public go-github-com-tj-go-spin-1.1.0 - (package - (name "go-github-com-tj-go-spin") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/tj/go-spin") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "11xr67991m5pwsy1dira3iwd0sr55vmn1cyjwmlqziw4bwpym64s")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/tj/go-spin")) - (home-page "https://github.com/tj/go-spin") - (synopsis #f) - (description #f) - (license #f))) -(define-public go-github-com-tj-go-kinesis-0.0.0-20171128231115-08b17f58cb1b - (package - (name "go-github-com-tj-go-kinesis") - (version "0.0.0-20171128231115-08b17f58cb1b") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/tj/go-kinesis") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "108c6p5j6rhhc2cnc2v5368yfsw73y6lzlvz02vpvvjph8rhmld4")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/tj/go-kinesis")) - (home-page "https://github.com/tj/go-kinesis") - (synopsis "go-kinesis") - (description - "Package kinesis implements a batch producer built on top of the official AWS -SDK.") - (license license:expat))) -(define-public go-github-com-tj-go-elastic-0.0.0-20171221160941-36157cbbebc2 - (package - (name "go-github-com-tj-go-elastic") - (version "0.0.0-20171221160941-36157cbbebc2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/tj/go-elastic") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1r94vc4hbfvqvjz74n4mvsw4dy3vbyzlivb90kyn8vn76a4wqk69")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/tj/go-elastic")) - (home-page "https://github.com/tj/go-elastic") - (synopsis "go-elastic") - (description - "Package elastic provides an Elasticsearch client with AWS sigv4 support.") - (license license:expat))) -(define-public go-github-com-tj-go-buffer-1.1.0 - (package - (name "go-github-com-tj-go-buffer") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/tj/go-buffer") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1qdxpa069pjjbzh217aadpzz1aq1n6h32lhp60yjcpi7hr4q8fxx")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/tj/go-buffer")) - (propagated-inputs - `(("go-github-com-tj-assert-0.0.3" ,go-github-com-tj-assert-0.0.3))) - (home-page "https://github.com/tj/go-buffer") - (synopsis "Buffer") - (description - "Package buffer provides a generic buffer or batching mechanism for flushing -entries at a given size or interval, useful for cases such as batching log -events.") - (license license:expat))) -(define-public go-github-com-tj-assert-0.0.3 - (package - (name "go-github-com-tj-assert") - (version "0.0.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/tj/assert") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1j5swk3fjq1h5fpqkipddz2ccnbidr7qrpm5dpdaflg9q5jnc673")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/tj/assert")) - (propagated-inputs - `(("go-gopkg-in-yaml-v3-3.0.0-20200605160147-a5ece683394c" - ,go-gopkg-in-yaml-v3-3.0.0-20200605160147-a5ece683394c) - ("go-github-com-stretchr-testify-1.6.1" - ,go-github-com-stretchr-testify-1.6.1) - ("go-github-com-davecgh-go-spew-1.1.1" - ,go-github-com-davecgh-go-spew-1.1.1))) - (home-page "https://github.com/tj/assert") - (synopsis "assert") - (description - "Package assert implements the same assertions as the `assert` package but stops -test execution when a test fails.") - (license license:expat))) -(define-public go-github-com-smartystreets-gunit-1.0.0 - (package - (name "go-github-com-smartystreets-gunit") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/smartystreets/gunit") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "11d09rl5qqpj36a311pjj8w5jkj83d5b8gdcsx8f1zn4j924sm5d")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/smartystreets/gunit")) - (propagated-inputs - `(("go-github-com-smartystreets-assertions-1.0.0" - ,go-github-com-smartystreets-assertions-1.0.0))) - (home-page "https://github.com/smartystreets/gunit") - (synopsis "gunit") - (description - "Package gunit provides \"testing\" package hooks and convenience functions for -writing tests in an xUnit style. See the README file and the examples folder -for examples.") - (license license:expat))) -(define-public go-github-com-smartystreets-go-aws-auth-0.0.0-20180515143844-0c1422d1fdb9 - (package - (name "go-github-com-smartystreets-go-aws-auth") - (version "0.0.0-20180515143844-0c1422d1fdb9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/smarty-archives/go-aws-auth") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0krfdpgn3gfii1z9fi8ydfw0wwfqyvp6w3rji7w92m528zkjl93d")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/smartystreets/go-aws-auth")) - (home-page "https://github.com/smartystreets/go-aws-auth") - (synopsis "go-aws-auth") - (description - "Package awsauth implements AWS request signing using Signed Signature Version 2, -Signed Signature Version 3, and Signed Signature Version 4. Supports S3 and -STS.") - (license license:expat))) -(define-public go-github-com-rogpeppe-fastuuid-1.1.0 - (package - (name "go-github-com-rogpeppe-fastuuid") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/rogpeppe/fastuuid") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1jlif5pxyz3md02ij93kd2y2j1zz0ajc9k8azvn83vv6l3r5c1zg")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/rogpeppe/fastuuid")) - (home-page "https://github.com/rogpeppe/fastuuid") - (synopsis "fastuuid") - (description - "Package fastuuid provides fast UUID generation of 192 bit universally unique -identifiers.") - (license license:bsd-3))) -(define-public go-github-com-pkg-errors-0.8.1 - (package - (name "go-github-com-pkg-errors") - (version "0.8.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pkg/errors") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0g5qcb4d4fd96midz0zdk8b9kz8xkzwfa8kr1cliqbg8sxsy5vd1")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/pkg/errors")) - (home-page "https://github.com/pkg/errors") - (synopsis "errors") - (description "Package errors provides simple error handling primitives.") - (license license:bsd-2))) -(define-public go-github-com-mattn-go-colorable-0.1.2 - (package - (name "go-github-com-mattn-go-colorable") - (version "0.1.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mattn/go-colorable") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0512jm3wmzkkn7d99x9wflyqf48n5ri3npy1fqkq6l6adc5mni3n")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/mattn/go-colorable")) - (propagated-inputs - `(("go-github-com-mattn-go-isatty-0.0.8" - ,go-github-com-mattn-go-isatty-0.0.8))) - (home-page "https://github.com/mattn/go-colorable") - (synopsis "go-colorable") - (description "Colorable writer for windows.") - (license license:expat))) -(define-public go-github-com-kr-pretty-0.2.0 - (package - (name "go-github-com-kr-pretty") - (version "0.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/kr/pretty") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ywbfzz1h3a3qd8rpkiqwi1dm4w8ls9ijb4x1b7567grns9f0vnp")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/kr/pretty")) - (propagated-inputs - `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) - (home-page "https://github.com/kr/pretty") - (synopsis #f) - (description - "Package pretty provides pretty-printing for Go values. This is useful during -debugging, to avoid wrapping long output lines in the terminal.") - (license license:expat))) -(define-public go-github-com-jpillora-backoff-0.0.0-20180909062703-3050d21c67d7 - (package - (name "go-github-com-jpillora-backoff") - (version "0.0.0-20180909062703-3050d21c67d7") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/jpillora/backoff") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1nxapdx9xg5gwiscfhq7m0w14hj4gaxb4avmgf1mx9zd3jnw9jxv")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/jpillora/backoff")) - (home-page "https://github.com/jpillora/backoff") - (synopsis "Backoff") - (description - "Package backoff provides an exponential-backoff implementation.") - (license license:expat))) -(define-public go-github-com-google-uuid-1.1.1 - (package - (name "go-github-com-google-uuid") - (version "1.1.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/uuid") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0hfxcf9frkb57k6q0rdkrmnfs78ms21r1qfk9fhlqga2yh5xg8zb")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/google/uuid")) - (home-page "https://github.com/google/uuid") - (synopsis "uuid") - (description "Package uuid generates and inspects UUIDs.") - (license license:bsd-3))) -(define-public go-github-com-golang-protobuf-1.3.1 - (package - (name "go-github-com-golang-protobuf") - (version "1.3.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/protobuf") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "15am4s4646qy6iv0g3kkqq52rzykqjhm4bf08dk0fy2r58knpsyl")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/golang/protobuf")) - (home-page "https://github.com/golang/protobuf") - (synopsis "Go support for Protocol Buffers") - (description - "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code -github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") - (license license:bsd-3))) -(define-public go-github-com-go-logfmt-logfmt-0.4.0 - (package - (name "go-github-com-go-logfmt-logfmt") - (version "0.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/go-logfmt/logfmt") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "06smxc112xmixz78nyvk3b2hmc7wasf2sl5vxj1xz62kqcq9lzm9")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/go-logfmt/logfmt")) - (propagated-inputs - `(("go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515" - ,go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515))) - (home-page "https://github.com/go-logfmt/logfmt") - (synopsis "logfmt") - (description - "Package logfmt implements utilities to marshal and unmarshal data in the logfmt -format. The logfmt format records key/value pairs in a way that balances -readability for humans and simplicity of computer parsing. It is most commonly -used as a more human friendly alternative to JSON for structured logging.") - (license license:expat))) -(define-public go-github-com-fatih-color-1.7.0 - (package - (name "go-github-com-fatih-color") - (version "1.7.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/fatih/color") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0v8msvg38r8d1iiq2i5r4xyfx0invhc941kjrsg5gzwvagv55inv")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/fatih/color")) - (home-page "https://github.com/fatih/color") - (synopsis "color") - (description - "Package color is an ANSI color package to output colorized or SGR defined output -to the standard output. The API can be used in several way, pick one that suits -you.") - (license license:expat))) -(define-public go-github-com-aybabtme-rgbterm-0.0.0-20170906152045-cc83f3b3ce59 - (package - (name "go-github-com-aybabtme-rgbterm") - (version "0.0.0-20170906152045-cc83f3b3ce59") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/aybabtme/rgbterm") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0wvmxvjn64968ikvnxrflb1x8rlcwzpfl53fzbxff2axbx9lq50q")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/aybabtme/rgbterm")) - (home-page "https://github.com/aybabtme/rgbterm") - (synopsis "RGB terminal") - (description - "Package rgbterm colorizes bytes and strings using RGB colors, for a full range -of pretty terminal strings.") - (license license:expat))) -(define-public go-github-com-aws-aws-sdk-go-1.20.6 - (package - (name "go-github-com-aws-aws-sdk-go") - (version "1.20.6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/aws/aws-sdk-go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "016vy5s9finyfgh08j7rvn2pnwymdgj2ydr59w57pysnri87mdwx")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/aws/aws-sdk-go")) - (propagated-inputs - `(("go-github-com-jmespath-go-jmespath-0.0.0-20180206201540-c2b33e8439af" - ,go-github-com-jmespath-go-jmespath-0.0.0-20180206201540-c2b33e8439af))) - (home-page "https://github.com/aws/aws-sdk-go") - (synopsis "AWS SDK for Go") - (description - "Package sdk is the official AWS SDK for the Go programming language.") - (license license:asl2.0))) -(define-public go-github-com-aphistic-sweet-0.2.0 - (package - (name "go-github-com-aphistic-sweet") - (version "0.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/aphistic/sweet") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1bb4qagfxf6byqn2yx0vq24xfvisz3ah4w6bvqclc8cklvfngw43")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/aphistic/sweet")) - (propagated-inputs - `(("go-golang-org-x-crypto-0.0.0-20190426145343-a29dc8fdc734" - ,go-golang-org-x-crypto-0.0.0-20190426145343-a29dc8fdc734) - ("go-github-com-sergi-go-diff-1.0.0" - ,go-github-com-sergi-go-diff-1.0.0) - ("go-github-com-onsi-gomega-1.5.0" ,go-github-com-onsi-gomega-1.5.0) - ("go-github-com-mgutz-ansi-0.0.0-20170206155736-9520e82c474b" - ,go-github-com-mgutz-ansi-0.0.0-20170206155736-9520e82c474b) - ("go-github-com-mattn-go-colorable-0.1.1" - ,go-github-com-mattn-go-colorable-0.1.1))) - (home-page "https://github.com/aphistic/sweet") - (synopsis "sweet") - (description - "Sweet is a pluggable test runner capable of hooking into standard Go tests. It -attempts to provide access to the standard Go test tool as close as possible -while adding support for test suites and plugins that can hook into test results -to add additional functionality.") - (license license:expat))) -(define-public go-github-com-aphistic-golf-0.0.0-20180712155816-02c07f170c5a - (package - (name "go-github-com-aphistic-golf") - (version "0.0.0-20180712155816-02c07f170c5a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/aphistic/golf") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1qixab9bb29wqbr4nc5j3g25hq1j7am93f181rkj7a4qacncx763")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/aphistic/golf")) - (home-page "https://github.com/aphistic/golf") - (synopsis "golf") - (description - "This package provides logging capabilities using the GELF -(@url{https://www.graylog.org/resources/gelf-2/,https://www.graylog.org/resources/gelf-2/}) -log format") - (license license:expat))) -(define-public go-github-com-apex-logs-1.0.0 - (package - (name "go-github-com-apex-logs") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/apex/logs") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1kysjp3s8718p02ngpr60gnjjspv0a69biksfjqa1540svrbi850")))) - (build-system go-build-system) - (arguments '(#:import-path "github.com/apex/logs")) - (propagated-inputs - `(("go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0" - ,go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0) - ("go-github-com-stretchr-testify-1.3.0" - ,go-github-com-stretchr-testify-1.3.0))) - (home-page "https://github.com/apex/logs") - (synopsis "Example") - (description "Go client for @url{https://apex.sh/logs/,Apex Logs}.") - (license license:expat))) -(define-public go-golang-org-x-text-0.3.0 - (package - (name "go-golang-org-x-text") - (version "0.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/text") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/text")) - (home-page "https://golang.org/x/text") - (synopsis "Go Text") - (description - "text is a repository of text-related packages related to internationalization -(i18n) and localization (l10n), such as character encodings, text -transformations, and locale-specific text handling.") - (license license:bsd-3))) -(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a - (package - (name "go-golang-org-x-sys") - (version "0.0.0-20190215142949-d0b11bdaac8a") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/sys") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/sys")) - (home-page "https://golang.org/x/sys") - (synopsis "sys") - (description - "This repository holds supplemental Go packages for low-level interactions with -the operating system.") - (license license:bsd-3))) -(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 - (package - (name "go-golang-org-x-crypto") - (version "0.0.0-20190308221718-c2843e01d9a2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/crypto") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) - (build-system go-build-system) - (arguments '(#:import-path "golang.org/x/crypto")) - (propagated-inputs - `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" - ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) - (home-page "https://golang.org/x/crypto") - (synopsis "Go Cryptography") - (description - "This repository holds supplementary Go cryptography libraries.") - (license license:bsd-3))) -(define-public go-gopkg-in-yaml-v3-3.0.0-20200605160147-a5ece683394c - (package - (name "go-gopkg-in-yaml-v3") - (version "3.0.0-20200605160147-a5ece683394c") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/yaml.v3") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "03cm7c3p5fh0aa8vnxv5010dgqqr268ivb480ix1salxx3396w68")))) - (build-system go-build-system) - (arguments - '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) - (propagated-inputs - `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" - ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) - (home-page "https://gopkg.in/yaml.v3") - (synopsis "YAML support for the Go language") - (description "Package yaml implements YAML support for the Go language.") - (license license:expat))) ;; FIXME YD - check license +;(define-public go-github-com-netflix-go-expect-0.0.0-20220104043353-73e0943537d2 +; (package +; (name "go-github-com-netflix-go-expect") +; (version "0.0.0-20220104043353-73e0943537d2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/Netflix/go-expect") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0zkvhnc4ii6ygvcsj54ng0kql26rnny7l3hy1w61g88mxjsww1b9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/Netflix/go-expect")) +; (propagated-inputs +; `(("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-creack-pty-1.1.17" ,go-github-com-creack-pty-1.1.17))) +; (home-page "https://github.com/Netflix/go-expect") +; (synopsis "go-expect") +; (description +; "Package expect provides an expect-like interface to automate control of +;applications. It is unlike expect in that it does not spawn or manage process +;lifecycle. This package only focuses on expecting output and sending input +;through it's psuedoterminal.") +; (license license:asl2.0))) +;(define-public go-github-com-protonmail-go-crypto-0.0.0-20220113124808-70ae35bab23f +; (package +; (name "go-github-com-protonmail-go-crypto") +; (version "0.0.0-20220113124808-70ae35bab23f") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/ProtonMail/go-crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0dpalb7cd2xs0hji80zv378vf8gx4ph7b8xdd05kvbskyw67fb7n")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/ProtonMail/go-crypto")) +; (propagated-inputs +; `(("go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2" +; ,go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2))) +; (home-page "https://github.com/ProtonMail/go-crypto") +; (synopsis #f) +; (description +; "This module is backwards compatible with x/crypto/openpgp, so you can simply +;replace all imports of @code{golang.org/x/crypto/openpgp} with +;@code{github.com/ProtonMail/go-crypto/openpgp}.") +; (license license:bsd-3))) +;(define-public go-github-com-adigunhammedolalekan-registry-auth-0.0.0-20200730122110-8cde180a3a60 +; (package +; (name "go-github-com-adigunhammedolalekan-registry-auth") +; (version "0.0.0-20200730122110-8cde180a3a60") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/adigunhammedolalekan/registry-auth") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0855a5c0ifi6q2ghb6gax0kwwra5j7pd2lplq4wp8r83dnv4vwj0")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "github.com/adigunhammedolalekan/registry-auth")) +; (propagated-inputs +; `(("go-github-com-sirupsen-logrus-1.4.2" +; ,go-github-com-sirupsen-logrus-1.4.2) +; ("go-github-com-gorilla-mux-1.7.4" ,go-github-com-gorilla-mux-1.7.4) +; ("go-github-com-docker-libtrust-0.0.0-20160708172513-aabc10ec26b7" +; ,go-github-com-docker-libtrust-0.0.0-20160708172513-aabc10ec26b7) +; ("go-github-com-docker-distribution-2.7.1+incompatible" +; ,go-github-com-docker-distribution-2.7.1+incompatible))) +; (home-page "https://github.com/adigunhammedolalekan/registry-auth") +; (synopsis "registry-auth") +; (description +; "a package to implements docker registry token authentication server as described +;here +;[https://github.com/docker/distribution/blob/1b9ab303a477ded9bdd3fc97e9119fa8f9e58fca/docs/spec/auth/index.md]") +; (license license:expat))) +;(define-public go-github-com-apex-log-1.9.0 +; (package +; (name "go-github-com-apex-log") +; (version "1.9.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/apex/log") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ibqkncnb8wcwilg2kyfyl5541g69rg551iy6m61q6iwdn5vfhi2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/apex/log")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) +; ("go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15" +; ,go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15) +; ("go-golang-org-x-text-0.3.2" ,go-golang-org-x-text-0.3.2) +; ("go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859" +; ,go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859) +; ("go-github-com-tj-go-spin-1.1.0" ,go-github-com-tj-go-spin-1.1.0) +; ("go-github-com-tj-go-kinesis-0.0.0-20171128231115-08b17f58cb1b" +; ,go-github-com-tj-go-kinesis-0.0.0-20171128231115-08b17f58cb1b) +; ("go-github-com-tj-go-elastic-0.0.0-20171221160941-36157cbbebc2" +; ,go-github-com-tj-go-elastic-0.0.0-20171221160941-36157cbbebc2) +; ("go-github-com-tj-go-buffer-1.1.0" ,go-github-com-tj-go-buffer-1.1.0) +; ("go-github-com-tj-assert-0.0.3" ,go-github-com-tj-assert-0.0.3) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-smartystreets-gunit-1.0.0" +; ,go-github-com-smartystreets-gunit-1.0.0) +; ("go-github-com-smartystreets-go-aws-auth-0.0.0-20180515143844-0c1422d1fdb9" +; ,go-github-com-smartystreets-go-aws-auth-0.0.0-20180515143844-0c1422d1fdb9) +; ("go-github-com-rogpeppe-fastuuid-1.1.0" +; ,go-github-com-rogpeppe-fastuuid-1.1.0) +; ("go-github-com-pkg-errors-0.8.1" ,go-github-com-pkg-errors-0.8.1) +; ("go-github-com-mattn-go-colorable-0.1.2" +; ,go-github-com-mattn-go-colorable-0.1.2) +; ("go-github-com-kr-pretty-0.2.0" ,go-github-com-kr-pretty-0.2.0) +; ("go-github-com-jpillora-backoff-0.0.0-20180909062703-3050d21c67d7" +; ,go-github-com-jpillora-backoff-0.0.0-20180909062703-3050d21c67d7) +; ("go-github-com-google-uuid-1.1.1" ,go-github-com-google-uuid-1.1.1) +; ("go-github-com-golang-protobuf-1.3.1" +; ,go-github-com-golang-protobuf-1.3.1) +; ("go-github-com-go-logfmt-logfmt-0.4.0" +; ,go-github-com-go-logfmt-logfmt-0.4.0) +; ("go-github-com-fatih-color-1.7.0" ,go-github-com-fatih-color-1.7.0) +; ("go-github-com-aybabtme-rgbterm-0.0.0-20170906152045-cc83f3b3ce59" +; ,go-github-com-aybabtme-rgbterm-0.0.0-20170906152045-cc83f3b3ce59) +; ("go-github-com-aws-aws-sdk-go-1.20.6" +; ,go-github-com-aws-aws-sdk-go-1.20.6) +; ("go-github-com-aphistic-sweet-0.2.0" +; ,go-github-com-aphistic-sweet-0.2.0) +; ("go-github-com-aphistic-golf-0.0.0-20180712155816-02c07f170c5a" +; ,go-github-com-aphistic-golf-0.0.0-20180712155816-02c07f170c5a) +; ("go-github-com-apex-logs-1.0.0" ,go-github-com-apex-logs-1.0.0))) +; (home-page "https://github.com/apex/log") +; (synopsis "Handlers") +; (description +; "Package log implements a simple structured logging API designed with few +;assumptions. Designed for centralized logging solutions such as Kinesis which +;require encoding and decoding before fanning-out to handlers.") +; (license license:expat))) +;(define-public go-github-com-apptainer-container-key-client-0.7.2 +; (package +; (name "go-github-com-apptainer-container-key-client") +; (version "0.7.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/apptainer/container-key-client") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0f4bb1k8pi37alzgzvjw23ynp54752qwgnr9gim3vc061qcjx377")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/apptainer/container-key-client")) +; (propagated-inputs +; `(("go-github-com-sylabs-json-resp-0.8.0" +; ,go-github-com-sylabs-json-resp-0.8.0))) +; (home-page "https://github.com/apptainer/container-key-client") +; (synopsis "Container Key Client") +; (description +; "This project provides a Go client to Apptainer for key storage and retrieval +;using the HKP protocol. Forked from +;@url{https://github.com/sylabs/scs-key-client,sylabs/scs-key-client}.") +; (license license:bsd-3))) +;(define-public go-github-com-apptainer-container-library-client-1.2.2 +; (package +; (name "go-github-com-apptainer-container-library-client") +; (version "1.2.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/apptainer/container-library-client") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1f6pxzk0k9jf9612kjw6jlmrs8yzqqrvhjwfxwri1q1d4i410a0h")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "github.com/apptainer/container-library-client")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" +; ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.0" +; ,go-github-com-davecgh-go-spew-1.1.0) +; ("go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a" +; ,go-golang-org-x-sync-0.0.0-20200317015054-43a5402ce75a) +; ("go-github-com-sylabs-json-resp-0.8.0" +; ,go-github-com-sylabs-json-resp-0.8.0) +; ("go-github-com-stretchr-testify-1.7.0" +; ,go-github-com-stretchr-testify-1.7.0) +; ("go-github-com-go-log-log-0.2.0" ,go-github-com-go-log-log-0.2.0) +; ("go-github-com-blang-semver-v4-4.0.0" +; ,go-github-com-blang-semver-v4-4.0.0))) +; (home-page "https://github.com/apptainer/container-library-client") +; (synopsis "Container Library Client") +; (description +; "This project provides a Go client to Apptainer for the container library. +;Forked from +;@url{https://github.com/sylabs/scs-library-client,sylabs/scs-library-client}.") +; (license license:bsd-3))) +;(define-public go-github-com-apptainer-sif-v2-2.3.2 +; (package +; (name "go-github-com-apptainer-sif-v2") +; (version "2.3.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/apptainer/sif") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "10cmvgyjxnfgw5661n1zbdr8zs29rx9izsr1bbnnyjr9kdqdhfg1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/apptainer/sif/v2")) +; (propagated-inputs +; `(("go-gopkg-in-warnings-v0-0.1.2" ,go-gopkg-in-warnings-v0-0.1.2) +; ("go-golang-org-x-sys-0.0.0-20211205182925-97ca703d548d" +; ,go-golang-org-x-sys-0.0.0-20211205182925-97ca703d548d) +; ("go-golang-org-x-net-0.0.0-20210813160813-60bc85c4be6d" +; ,go-golang-org-x-net-0.0.0-20210813160813-60bc85c4be6d) +; ("go-golang-org-x-crypto-0.0.0-20210817164053-32db794688a5" +; ,go-golang-org-x-crypto-0.0.0-20210817164053-32db794688a5) +; ("go-github-com-xanzy-ssh-agent-0.3.0" +; ,go-github-com-xanzy-ssh-agent-0.3.0) +; ("go-github-com-sergi-go-diff-1.1.0" +; ,go-github-com-sergi-go-diff-1.1.0) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-mitchellh-go-homedir-1.1.0" +; ,go-github-com-mitchellh-go-homedir-1.1.0) +; ("go-github-com-kevinburke-ssh-config-0.0.0-20201106050909-4977a11b4351" +; ,go-github-com-kevinburke-ssh-config-0.0.0-20201106050909-4977a11b4351) +; ("go-github-com-jbenet-go-context-0.0.0-20150711004518-d14ea06fba99" +; ,go-github-com-jbenet-go-context-0.0.0-20150711004518-d14ea06fba99) +; ("go-github-com-inconshreveable-mousetrap-1.0.0" +; ,go-github-com-inconshreveable-mousetrap-1.0.0) +; ("go-github-com-imdario-mergo-0.3.12" +; ,go-github-com-imdario-mergo-0.3.12) +; ("go-github-com-go-git-go-billy-v5-5.3.1" +; ,go-github-com-go-git-go-billy-v5-5.3.1) +; ("go-github-com-go-git-gcfg-1.5.0" ,go-github-com-go-git-gcfg-1.5.0) +; ("go-github-com-emirpasic-gods-1.12.0" +; ,go-github-com-emirpasic-gods-1.12.0) +; ("go-github-com-acomagu-bufpipe-1.0.3" +; ,go-github-com-acomagu-bufpipe-1.0.3) +; ("go-github-com-microsoft-go-winio-0.4.16" +; ,go-github-com-microsoft-go-winio-0.4.16) +; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) +; ("go-github-com-spf13-cobra-1.3.0" ,go-github-com-spf13-cobra-1.3.0) +; ("go-github-com-sebdah-goldie-v2-2.5.3" +; ,go-github-com-sebdah-goldie-v2-2.5.3) +; ("go-github-com-magefile-mage-1.12.1" +; ,go-github-com-magefile-mage-1.12.1) +; ("go-github-com-google-uuid-1.3.0" ,go-github-com-google-uuid-1.3.0) +; ("go-github-com-go-git-go-git-v5-5.4.2" +; ,go-github-com-go-git-go-git-v5-5.4.2) +; ("go-github-com-blang-semver-v4-4.0.0" +; ,go-github-com-blang-semver-v4-4.0.0) +; ("go-github-com-protonmail-go-crypto-0.0.0-20220113124808-70ae35bab23f" +; ,go-github-com-protonmail-go-crypto-0.0.0-20220113124808-70ae35bab23f))) +; (home-page "https://github.com/apptainer/sif") +; (synopsis "The Singularity Image Format (SIF)") +; (description +; "This module contains an open source implementation of the Singularity Image +;Format (SIF) that makes it easy to create complete and encapsulated container +;environments stored in a single file.") +; (license license:bsd-3))) +;(define-public go-github-com-blang-semver-v4-4.0.0 +; (package +; (name "go-github-com-blang-semver-v4") +; (version "4.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/blang/semver") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "14h9ys4n4kx9cbj42lkdf4i5k3nkll6sd62jcvl7cs565v6fiknz")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/blang/semver/v4")) +; (home-page "https://github.com/blang/semver") +; (synopsis #f) +; (description #f) +; (license license:expat))) +;(define-public go-github-com-buger-jsonparser-1.1.1 +; (package +; (name "go-github-com-buger-jsonparser") +; (version "1.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/buger/jsonparser") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0qv2lsh2biwxn927941gqiv5pqg7n4v58j0i536pjp7pr17pq7dp")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/buger/jsonparser")) +; (home-page "https://github.com/buger/jsonparser") +; (synopsis +; "Alternative JSON parser for Go (10x times faster standard library)") +; (description +; "It does not require you to know the structure of the payload (eg. create +;structs), and allows accessing fields by providing the path to them. It is up +;to @strong{10 times faster} than standard @code{encoding/json} package +;(depending on payload size and usage), @strong{allocates no memory}. See +;benchmarks below.") +; (license license:expat))) +;(define-public go-github-com-cenkalti-backoff-v4-4.1.2 +; (package +; (name "go-github-com-cenkalti-backoff-v4") +; (version "4.1.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/cenkalti/backoff") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "08c28226q612i1pv83161y57qh16631vpc51ai9f76qfrzsy946z")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/cenkalti/backoff/v4")) +; (home-page "https://github.com/cenkalti/backoff") +; (synopsis "Exponential Backoff") +; (description +; "Package backoff implements backoff algorithms for retrying operations.") +; (license license:expat))) +;(define-public go-github-com-containerd-cgroups-1.0.3 +; (package +; (name "go-github-com-containerd-cgroups") +; (version "1.0.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/cgroups") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0mqsi2jm1f7xvs35kx6ijvadr6zycshc1xivq6xdiwrw24wb0m3r")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/cgroups")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20210510120138-977fb7262007" +; ,go-golang-org-x-sys-0.0.0-20210510120138-977fb7262007) +; ("go-go-uber-org-goleak-1.1.12" ,go-go-uber-org-goleak-1.1.12) +; ("go-github-com-urfave-cli-1.22.2" ,go-github-com-urfave-cli-1.22.2) +; ("go-github-com-stretchr-testify-1.7.0" +; ,go-github-com-stretchr-testify-1.7.0) +; ("go-github-com-sirupsen-logrus-1.8.1" +; ,go-github-com-sirupsen-logrus-1.8.1) +; ("go-github-com-opencontainers-runtime-spec-1.0.2" +; ,go-github-com-opencontainers-runtime-spec-1.0.2) +; ("go-github-com-gogo-protobuf-1.3.2" +; ,go-github-com-gogo-protobuf-1.3.2) +; ("go-github-com-godbus-dbus-v5-5.0.4" +; ,go-github-com-godbus-dbus-v5-5.0.4) +; ("go-github-com-docker-go-units-0.4.0" +; ,go-github-com-docker-go-units-0.4.0) +; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" +; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) +; ("go-github-com-coreos-go-systemd-v22-22.3.2" +; ,go-github-com-coreos-go-systemd-v22-22.3.2) +; ("go-github-com-cilium-ebpf-0.4.0" ,go-github-com-cilium-ebpf-0.4.0))) +; (home-page "https://github.com/containerd/cgroups") +; (synopsis "cgroups") +; (description +; "Go package for creating, managing, inspecting, and destroying cgroups. The +;resources format for settings on the cgroup uses the OCI runtime-spec found +;@url{https://github.com/opencontainers/runtime-spec,here}.") +; (license license:asl2.0))) +;(define-public go-github-com-containerd-containerd-1.6.0 +; (package +; (name "go-github-com-containerd-containerd") +; (version "1.6.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containerd/containerd") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1wqmb124l8hjh7a053xjgh1kwblczg6q99l4vh6pi5zmnmdn67iv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containerd/containerd")) +; (propagated-inputs +; `(("go-google-golang-org-genproto-0.0.0-20200224152610-e50cd9704f63" +; ,go-google-golang-org-genproto-0.0.0-20200224152610-e50cd9704f63) +; ("go-github-com-urfave-cli-1.22.1" ,go-github-com-urfave-cli-1.22.1) +; ("go-github-com-gogo-googleapis-1.3.2" +; ,go-github-com-gogo-googleapis-1.3.2) +; ("go-k8s-io-utils-0.0.0-20210930125809-cb0fa318a74b" +; ,go-k8s-io-utils-0.0.0-20210930125809-cb0fa318a74b) +; ("go-k8s-io-klog-v2-2.30.0" ,go-k8s-io-klog-v2-2.30.0) +; ("go-k8s-io-cri-api-0.23.1" ,go-k8s-io-cri-api-0.23.1) +; ("go-k8s-io-component-base-0.22.5" ,go-k8s-io-component-base-0.22.5) +; ("go-k8s-io-client-go-0.22.5" ,go-k8s-io-client-go-0.22.5) +; ("go-k8s-io-apiserver-0.22.5" ,go-k8s-io-apiserver-0.22.5) +; ("go-k8s-io-apimachinery-0.22.5" ,go-k8s-io-apimachinery-0.22.5) +; ("go-k8s-io-api-0.22.5" ,go-k8s-io-api-0.22.5) +; ("go-gotest-tools-v3-3.0.3" ,go-gotest-tools-v3-3.0.3) +; ("go-google-golang-org-protobuf-1.27.1" +; ,go-google-golang-org-protobuf-1.27.1) +; ("go-google-golang-org-grpc-1.43.0" ,go-google-golang-org-grpc-1.43.0) +; ("go-golang-org-x-term-0.0.0-20210615171337-6886f2dfbf5b" +; ,go-golang-org-x-term-0.0.0-20210615171337-6886f2dfbf5b) +; ("go-golang-org-x-sys-0.0.0-20211216021012-1d35b9e2eb4e" +; ,go-golang-org-x-sys-0.0.0-20211216021012-1d35b9e2eb4e) +; ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" +; ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) +; ("go-golang-org-x-oauth2-0.0.0-20210819190943-2bc19b11175f" +; ,go-golang-org-x-oauth2-0.0.0-20210819190943-2bc19b11175f) +; ("go-golang-org-x-net-0.0.0-20211216030914-fe4d6282115f" +; ,go-golang-org-x-net-0.0.0-20211216030914-fe4d6282115f) +; ("go-golang-org-x-crypto-0.0.0-20210817164053-32db794688a5" +; ,go-golang-org-x-crypto-0.0.0-20210817164053-32db794688a5) +; ("go-go-opentelemetry-io-otel-trace-1.3.0" +; ,go-go-opentelemetry-io-otel-trace-1.3.0) +; ("go-go-opentelemetry-io-otel-sdk-1.3.0" +; ,go-go-opentelemetry-io-otel-sdk-1.3.0) +; ("go-go-opentelemetry-io-otel-exporters-otlp-otlptrace-otlptracehttp-1.3.0" +; ,go-go-opentelemetry-io-otel-exporters-otlp-otlptrace-otlptracehttp-1.3.0) +; ("go-go-opentelemetry-io-otel-exporters-otlp-otlptrace-otlptracegrpc-1.3.0" +; ,go-go-opentelemetry-io-otel-exporters-otlp-otlptrace-otlptracegrpc-1.3.0) +; ("go-go-opentelemetry-io-otel-exporters-otlp-otlptrace-1.3.0" +; ,go-go-opentelemetry-io-otel-exporters-otlp-otlptrace-1.3.0) +; ("go-go-opentelemetry-io-otel-1.3.0" +; ,go-go-opentelemetry-io-otel-1.3.0) +; ("go-go-opentelemetry-io-contrib-instrumentation-google-golang-org-grpc-otelgrpc-0.28.0" +; ,go-go-opentelemetry-io-contrib-instrumentation-google-golang-org-grpc-otelgrpc-0.28.0) +; ("go-go-etcd-io-bbolt-1.3.6" ,go-go-etcd-io-bbolt-1.3.6) +; ("go-github-com-vishvananda-netlink-1.1.1-0.20210330154013-f5de75959ad5" +; ,go-github-com-vishvananda-netlink-1.1.1-0.20210330154013-f5de75959ad5) +; ("go-github-com-tchap-go-patricia-2.2.6+incompatible" +; ,go-github-com-tchap-go-patricia-2.2.6+incompatible) +; ("go-github-com-stretchr-testify-1.7.0" +; ,go-github-com-stretchr-testify-1.7.0) +; ("go-github-com-sirupsen-logrus-1.8.1" +; ,go-github-com-sirupsen-logrus-1.8.1) +; ("go-github-com-satori-go-uuid-1.2.0" +; ,go-github-com-satori-go-uuid-1.2.0) +; ("go-github-com-prometheus-client-golang-1.11.0" +; ,go-github-com-prometheus-client-golang-1.11.0) +; ("go-github-com-pelletier-go-toml-1.9.3" +; ,go-github-com-pelletier-go-toml-1.9.3) +; ("go-github-com-opencontainers-selinux-1.10.0" +; ,go-github-com-opencontainers-selinux-1.10.0) +; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417" +; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417) +; ("go-github-com-opencontainers-runc-1.1.0" +; ,go-github-com-opencontainers-runc-1.1.0) +; ("go-github-com-opencontainers-image-spec-1.0.2-0.20211117181255-693428a734f5" +; ,go-github-com-opencontainers-image-spec-1.0.2-0.20211117181255-693428a734f5) +; ("go-github-com-opencontainers-go-digest-1.0.0" +; ,go-github-com-opencontainers-go-digest-1.0.0) +; ("go-github-com-moby-sys" +; ,go-github-com-moby-sys) +; ("go-github-com-moby-locker-1.0.1" ,go-github-com-moby-locker-1.0.1) +; ("go-github-com-klauspost-compress-1.11.13" +; ,go-github-com-klauspost-compress-1.11.13) +; ("go-github-com-json-iterator-go-1.1.12" +; ,go-github-com-json-iterator-go-1.1.12) +; ("go-github-com-intel-goresctrl-0.2.0" +; ,go-github-com-intel-goresctrl-0.2.0) +; ("go-github-com-imdario-mergo-0.3.12" +; ,go-github-com-imdario-mergo-0.3.12) +; ("go-github-com-hashicorp-go-multierror-1.1.1" +; ,go-github-com-hashicorp-go-multierror-1.1.1) +; ("go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0" +; ,go-github-com-grpc-ecosystem-go-grpc-prometheus-1.2.0) +; ("go-github-com-grpc-ecosystem-go-grpc-middleware-1.3.0" +; ,go-github-com-grpc-ecosystem-go-grpc-middleware-1.3.0) +; ("go-github-com-google-uuid-1.2.0" ,go-github-com-google-uuid-1.2.0) +; ("go-github-com-google-go-cmp-0.5.6" +; ,go-github-com-google-go-cmp-0.5.6) +; ("go-github-com-gogo-protobuf-1.3.2" +; ,go-github-com-gogo-protobuf-1.3.2) +; ("go-github-com-go-logr-stdr-1.2.2" ,go-github-com-go-logr-stdr-1.2.2) +; ("go-github-com-fsnotify-fsnotify-1.4.9" +; ,go-github-com-fsnotify-fsnotify-1.4.9) +; ("go-github-com-emicklei-go-restful-2.9.5+incompatible" +; ,go-github-com-emicklei-go-restful-2.9.5+incompatible) +; ("go-github-com-docker-go-units-0.4.0" +; ,go-github-com-docker-go-units-0.4.0) +; ("go-github-com-docker-go-metrics-0.0.1" +; ,go-github-com-docker-go-metrics-0.0.1) +; ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" +; ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1) +; ("go-github-com-coreos-go-systemd-v22-22.3.2" +; ,go-github-com-coreos-go-systemd-v22-22.3.2) +; ("go-github-com-containernetworking-plugins-1.0.1" +; ,go-github-com-containernetworking-plugins-1.0.1) +; ("go-github-com-containerd-zfs-1.0.0" +; ,go-github-com-containerd-zfs-1.0.0) +; ("go-github-com-containerd-typeurl-1.0.2" +; ,go-github-com-containerd-typeurl-1.0.2) +; ("go-github-com-containerd-ttrpc-1.1.0" +; ,go-github-com-containerd-ttrpc-1.1.0) +; ("go-github-com-containerd-nri-0.1.0" +; ,go-github-com-containerd-nri-0.1.0) +; ("go-github-com-containerd-imgcrypt-1.1.3" +; ,go-github-com-containerd-imgcrypt-1.1.3) +; ("go-github-com-containerd-go-runc-1.0.0" +; ,go-github-com-containerd-go-runc-1.0.0) +; ("go-github-com-containerd-go-cni-1.1.3" +; ,go-github-com-containerd-go-cni-1.1.3) +; ("go-github-com-containerd-fifo-1.0.0" +; ,go-github-com-containerd-fifo-1.0.0) +; ("go-github-com-containerd-continuity-0.2.2" +; ,go-github-com-containerd-continuity-0.2.2) +; ("go-github-com-containerd-console-1.0.3" +; ,go-github-com-containerd-console-1.0.3) +; ("go-github-com-containerd-cgroups-1.0.3" +; ,go-github-com-containerd-cgroups-1.0.3) +; ("go-github-com-containerd-btrfs-1.0.0" +; ,go-github-com-containerd-btrfs-1.0.0) +; ("go-github-com-containerd-aufs-1.0.0" +; ,go-github-com-containerd-aufs-1.0.0) +; ("go-github-com-microsoft-hcsshim-0.9.2" +; ,go-github-com-microsoft-hcsshim-0.9.2) +; ("go-github-com-microsoft-go-winio-0.5.1" +; ,go-github-com-microsoft-go-winio-0.5.1) +; ("go-github-com-adalogics-go-fuzz-headers-0.0.0-20210715213245-6c3934b029d8" +; ,go-github-com-adalogics-go-fuzz-headers-0.0.0-20210715213245-6c3934b029d8) +; ("go-cloud-google-com-go-0.81.0" ,go-cloud-google-com-go-0.81.0))) +; (home-page "https://github.com/containerd/containerd") +; (synopsis "Now Recruiting") +; (description +; "containerd is an industry-standard container runtime with an emphasis on +;simplicity, robustness and portability. It is available as a daemon for Linux +;and Windows, which can manage the complete container lifecycle of its host +;system: image transfer and storage, container execution and supervision, +;low-level storage and network attachments, etc.") +; (license license:asl2.0))) +;(define-public go-github-com-containernetworking-cni-1.0.1 +; (package +; (name "go-github-com-containernetworking-cni") +; (version "1.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containernetworking/cni") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0jzijcb96z26lchh6j4js3rl7c148mwlaiz3s6ww47kljnxmv05f")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containernetworking/cni")) +; (propagated-inputs +; `(("go-github-com-onsi-gomega-1.10.1" ,go-github-com-onsi-gomega-1.10.1) +; ("go-github-com-onsi-ginkgo-1.13.0" +; ,go-github-com-onsi-ginkgo-1.13.0))) +; (home-page "https://github.com/containernetworking/cni") +; (synopsis "CNI - the Container Network Interface") +; (description +; "CNI (), a @url{https://cncf.io,Cloud Native Computing Foundation} project, +;consists of a specification and libraries for writing plugins to configure +;network interfaces in Linux containers, along with a number of supported +;plugins. CNI concerns itself only with network connectivity of containers and +;removing allocated resources when the container is deleted. Because of this +;focus, CNI has a wide range of support and the specification is simple to +;implement.") +; (license license:asl2.0))) +;(define-public go-github-com-containernetworking-plugins-1.1.0 +; (package +; (name "go-github-com-containernetworking-plugins") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containernetworking/plugins") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "10c9sxi5nq88772ql35a3vy5m1wrdyji4imc4ysl27malcqxhiik")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containernetworking/plugins")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) +; ("go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7" +; ,go-gopkg-in-tomb-v1-1.0.0-20141024135613-dd632973f1e7) +; ("go-golang-org-x-text-0.3.6" ,go-golang-org-x-text-0.3.6) +; ("go-golang-org-x-net-0.0.0-20210428140749-89ef3d95e781" +; ,go-golang-org-x-net-0.0.0-20210428140749-89ef3d95e781) +; ("go-go-opencensus-io-0.22.3" ,go-go-opencensus-io-0.22.3) +; ("go-github-com-vishvananda-netns-0.0.0-20210104183010-2eb08e3e575f" +; ,go-github-com-vishvananda-netns-0.0.0-20210104183010-2eb08e3e575f) +; ("go-github-com-sirupsen-logrus-1.8.1" +; ,go-github-com-sirupsen-logrus-1.8.1) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-nxadm-tail-1.4.8" ,go-github-com-nxadm-tail-1.4.8) +; ("go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e" +; ,go-github-com-golang-groupcache-0.0.0-20200121045136-8c9f03a8e57e) +; ("go-github-com-gogo-protobuf-1.3.2" +; ,go-github-com-gogo-protobuf-1.3.2) +; ("go-github-com-fsnotify-fsnotify-1.4.9" +; ,go-github-com-fsnotify-fsnotify-1.4.9) +; ("go-github-com-containerd-cgroups-1.0.1" +; ,go-github-com-containerd-cgroups-1.0.1) +; ("go-github-com-microsoft-go-winio-0.4.17" +; ,go-github-com-microsoft-go-winio-0.4.17) +; ("go-golang-org-x-sys-0.0.0-20210809222454-d867a43fc93e" +; ,go-golang-org-x-sys-0.0.0-20210809222454-d867a43fc93e) +; ("go-github-com-vishvananda-netlink-1.1.1-0.20210330154013-f5de75959ad5" +; ,go-github-com-vishvananda-netlink-1.1.1-0.20210330154013-f5de75959ad5) +; ("go-github-com-safchain-ethtool-0.0.0-20210803160452-9aa261dae9b1" +; ,go-github-com-safchain-ethtool-0.0.0-20210803160452-9aa261dae9b1) +; ("go-github-com-onsi-gomega-1.15.0" ,go-github-com-onsi-gomega-1.15.0) +; ("go-github-com-onsi-ginkgo-1.16.4" ,go-github-com-onsi-ginkgo-1.16.4) +; ("go-github-com-networkplumbing-go-nft-0.2.0" +; ,go-github-com-networkplumbing-go-nft-0.2.0) +; ("go-github-com-mattn-go-shellwords-1.0.12" +; ,go-github-com-mattn-go-shellwords-1.0.12) +; ("go-github-com-godbus-dbus-v5-5.0.4" +; ,go-github-com-godbus-dbus-v5-5.0.4) +; ("go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5" +; ,go-github-com-d2g-dhcp4server-0.0.0-20181031114812-7d4a0a7f59a5) +; ("go-github-com-d2g-dhcp4client-1.0.0" +; ,go-github-com-d2g-dhcp4client-1.0.0) +; ("go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c" +; ,go-github-com-d2g-dhcp4-0.0.0-20170904100407-a1d1b6c41b1c) +; ("go-github-com-coreos-go-systemd-v22-22.3.2" +; ,go-github-com-coreos-go-systemd-v22-22.3.2) +; ("go-github-com-coreos-go-iptables-0.6.0" +; ,go-github-com-coreos-go-iptables-0.6.0) +; ("go-github-com-containernetworking-cni-1.0.1" +; ,go-github-com-containernetworking-cni-1.0.1) +; ("go-github-com-buger-jsonparser-1.1.1" +; ,go-github-com-buger-jsonparser-1.1.1) +; ("go-github-com-alexflint-go-filemutex-1.1.0" +; ,go-github-com-alexflint-go-filemutex-1.1.0) +; ("go-github-com-microsoft-hcsshim-0.8.20" +; ,go-github-com-microsoft-hcsshim-0.8.20))) +; (home-page "https://github.com/containernetworking/plugins") +; (synopsis "Plugins") +; (description +; "Some CNI network plugins, maintained by the containernetworking team. For more +;information, see the @url{https://www.cni.dev,CNI website}.") +; (license license:asl2.0))) +;(define-public go-github-com-containers-image-v5-5.19.1 +; (package +; (name "go-github-com-containers-image-v5") +; (version "5.19.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/containers/image") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0wyq3ns6yrzi9bff2kb8p3rppw652m4ffq8374sdjkn7f39z4inf")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/containers/image/v5")) +; (propagated-inputs +; `(("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" +; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) +; ("go-golang-org-x-sys-0.0.0-20220114195835-da31bd327af9" +; ,go-golang-org-x-sys-0.0.0-20220114195835-da31bd327af9) +; ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" +; ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) +; ("go-golang-org-x-net-0.0.0-20211112202133-69e39bad7dc2" +; ,go-golang-org-x-net-0.0.0-20211112202133-69e39bad7dc2) +; ("go-golang-org-x-crypto-0.0.0-20211215153901-e495a2d5b3d3" +; ,go-golang-org-x-crypto-0.0.0-20211215153901-e495a2d5b3d3) +; ("go-go-etcd-io-bbolt-1.3.6" ,go-go-etcd-io-bbolt-1.3.6) +; ("go-github-com-xeipuuv-gojsonschema-1.2.0" +; ,go-github-com-xeipuuv-gojsonschema-1.2.0) +; ("go-github-com-xeipuuv-gojsonpointer-0.0.0-20190809123943-df4f5c81cb3b" +; ,go-github-com-xeipuuv-gojsonpointer-0.0.0-20190809123943-df4f5c81cb3b) +; ("go-github-com-vbauerster-mpb-v7-7.3.2" +; ,go-github-com-vbauerster-mpb-v7-7.3.2) +; ("go-github-com-vbatts-tar-split-0.11.2" +; ,go-github-com-vbatts-tar-split-0.11.2) +; ("go-github-com-ulikunitz-xz-0.5.10" +; ,go-github-com-ulikunitz-xz-0.5.10) +; ("go-github-com-sylabs-sif-v2-2.3.1" +; ,go-github-com-sylabs-sif-v2-2.3.1) +; ("go-github-com-stretchr-testify-1.7.0" +; ,go-github-com-stretchr-testify-1.7.0) +; ("go-github-com-sirupsen-logrus-1.8.1" +; ,go-github-com-sirupsen-logrus-1.8.1) +; ("go-github-com-proglottis-gpgme-0.1.1" +; ,go-github-com-proglottis-gpgme-0.1.1) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-ostreedev-ostree-go-0.0.0-20190702140239-759a8c1ac913" +; ,go-github-com-ostreedev-ostree-go-0.0.0-20190702140239-759a8c1ac913) +; ("go-github-com-opencontainers-selinux-1.10.0" +; ,go-github-com-opencontainers-selinux-1.10.0) +; ("go-github-com-opencontainers-image-spec-1.0.3-0.20211202193544-a5463b7f9c84" +; ,go-github-com-opencontainers-image-spec-1.0.3-0.20211202193544-a5463b7f9c84) +; ("go-github-com-opencontainers-go-digest-1.0.0" +; ,go-github-com-opencontainers-go-digest-1.0.0) +; ("go-github-com-manifoldco-promptui-0.9.0" +; ,go-github-com-manifoldco-promptui-0.9.0) +; ("go-github-com-klauspost-pgzip-1.2.5" +; ,go-github-com-klauspost-pgzip-1.2.5) +; ("go-github-com-klauspost-compress-1.14.2" +; ,go-github-com-klauspost-compress-1.14.2) +; ("go-github-com-imdario-mergo-0.3.12" +; ,go-github-com-imdario-mergo-0.3.12) +; ("go-github-com-hashicorp-go-multierror-1.1.1" +; ,go-github-com-hashicorp-go-multierror-1.1.1) +; ("go-github-com-gorilla-mux-1.7.4" ,go-github-com-gorilla-mux-1.7.4) +; ("go-github-com-ghodss-yaml-1.0.0" ,go-github-com-ghodss-yaml-1.0.0) +; ("go-github-com-docker-libtrust-0.0.0-20160708172513-aabc10ec26b7" +; ,go-github-com-docker-libtrust-0.0.0-20160708172513-aabc10ec26b7) +; ("go-github-com-docker-go-connections-0.4.0" +; ,go-github-com-docker-go-connections-0.4.0) +; ("go-github-com-docker-docker-credential-helpers-0.6.4" +; ,go-github-com-docker-docker-credential-helpers-0.6.4) +; ("go-github-com-docker-docker-20.10.12+incompatible" +; ,go-github-com-docker-docker-20.10.12+incompatible) +; ("go-github-com-docker-distribution-2.7.1+incompatible" +; ,go-github-com-docker-distribution-2.7.1+incompatible) +; ("go-github-com-containers-storage-1.38.2" +; ,go-github-com-containers-storage-1.38.2) +; ("go-github-com-containers-ocicrypt-1.1.2" +; ,go-github-com-containers-ocicrypt-1.1.2) +; ("go-github-com-containers-libtrust-0.0.0-20190913040956-14b96171aa3b" +; ,go-github-com-containers-libtrust-0.0.0-20190913040956-14b96171aa3b) +; ("go-github-com-containerd-containerd-1.5.9" +; ,go-github-com-containerd-containerd-1.5.9) +; ("go-github-com-burntsushi-toml-1.0.0" +; ,go-github-com-burntsushi-toml-1.0.0) +; ("go-github-com-14rcole-gopopulate-0.0.0-20180821133914-b175b219e774" +; ,go-github-com-14rcole-gopopulate-0.0.0-20180821133914-b175b219e774))) +; (home-page "https://github.com/containers/image") +; (synopsis "") +; (description +; "The package image provides libraries and commands to interact with container +;images.") +; (license license:asl2.0))) +;(define-public go-github-com-creack-pty-1.1.17 +; (package +; (name "go-github-com-creack-pty") +; (version "1.1.17") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/creack/pty") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "09lcq5bw1dwppxjia05sj4fy7gbk62vishfz1bgrbd1r06i57mjf")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/creack/pty")) +; (home-page "https://github.com/creack/pty") +; (synopsis "pty") +; (description +; "Package pty provides functions for working with Unix terminals.") +; (license license:expat))) +;(define-public go-github-com-cyphar-filepath-securejoin-0.2.3 +; (package +; (name "go-github-com-cyphar-filepath-securejoin") +; (version "0.2.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/cyphar/filepath-securejoin") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0w03d8hslwfhcnfqck21agzs7y0sc6gpwfz53md8fv26ishwxppy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/cyphar/filepath-securejoin")) +; (home-page "https://github.com/cyphar/filepath-securejoin") +; (synopsis #f) +; (description +; "Package securejoin is an implementation of the hopefully-soon-to-be-included +;SecureJoin helper that is meant to be part of the \"path/filepath\" package. The +;purpose of this project is to provide a PoC implementation to make the +;SecureJoin proposal +;(@url{https://github.com/golang/go/issues/20126,https://github.com/golang/go/issues/20126}) +;more tangible.") +; (license license:bsd-3))) +;(define-public go-github-com-docker-docker-20.10.12+incompatible +; (package +; (name "go-github-com-docker-docker") +; (version "20.10.12+incompatible") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/moby/moby") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "17j820ij8p6w61jyg5g6y5dwv56dh1w178f6ia2i2dc9b8mz6b5a")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/docker/docker")) +; (home-page "https://github.com/docker/docker") +; (synopsis "The Moby Project") +; (description +; "Moby is an open-source project created by Docker to enable and accelerate +;software containerization.") +; (license license:asl2.0))) +;(define-public go-github-com-fatih-color-1.13.0 +; (package +; (name "go-github-com-fatih-color") +; (version "1.13.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/fatih/color") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "029qkxsdpblhrpgbv4fcmqwkqnjhx08hwiqp19pd7zz6l8a373ay")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/fatih/color")) +; (propagated-inputs +; `(("go-github-com-mattn-go-isatty-0.0.14" +; ,go-github-com-mattn-go-isatty-0.0.14) +; ("go-github-com-mattn-go-colorable-0.1.9" +; ,go-github-com-mattn-go-colorable-0.1.9))) +; (home-page "https://github.com/fatih/color") +; (synopsis "color") +; (description +; "Package color is an ANSI color package to output colorized or SGR defined output +;to the standard output. The API can be used in several way, pick one that suits +;you.") +; (license license:expat))) +;(define-public go-github-com-go-log-log-0.2.0 +; (package +; (name "go-github-com-go-log-log") +; (version "0.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/go-log/log") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1idnqv4yvkmdh3wcsgvhcpak9z6ix8dsifdjq5kfbbnskdq5rmvg")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/go-log/log")) +; (home-page "https://github.com/go-log/log") +; (synopsis "Log") +; (description "Package log provides a log interface") +; (license license:expat))) +;(define-public go-github-com-google-uuid-1.3.0 +; (package +; (name "go-github-com-google-uuid") +; (version "1.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/uuid") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0imkw52m7fzrwsdj2rfrk3zbplqfbwncyv6hv89xw0vdw3jpk122")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/uuid")) +; (home-page "https://github.com/google/uuid") +; (synopsis "uuid") +; (description "Package uuid generates and inspects UUIDs.") +; (license license:bsd-3))) +;(define-public go-github-com-opencontainers-go-digest-1.0.0 +; (package +; (name "go-github-com-opencontainers-go-digest") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/go-digest") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0i5acjajvr6hi9zb7gxwifd8w28y884cv7cx36adj8lngj647xbi")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/go-digest")) +; (home-page "https://github.com/opencontainers/go-digest") +; (synopsis "go-digest") +; (description +; "Package digest provides a generalized type to opaquely represent message digests +;and their operations within the registry. The Digest type is designed to serve +;as a flexible identifier in a content-addressable system. More importantly, it +;provides tools and wrappers to work with hash.Hash-based digests with little +;effort.") +; (license (list license:asl2.0 license:cc-by-sa4.0)))) +;(define-public go-github-com-opencontainers-image-spec-1.0.3-0.20211202193544-a5463b7f9c84 +; (package +; (name "go-github-com-opencontainers-image-spec") +; (version "1.0.3-0.20211202193544-a5463b7f9c84") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/image-spec") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "11js6467d7fhcvad4aw26d4p0r5b33vf41qhcf1bdwx0y7smd7s4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/image-spec")) +; (propagated-inputs +; `(("go-github-com-xeipuuv-gojsonschema-1.2.0" +; ,go-github-com-xeipuuv-gojsonschema-1.2.0) +; ("go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415" +; ,go-github-com-xeipuuv-gojsonreference-0.0.0-20180127040603-bd5ef7bd5415) +; ("go-github-com-russross-blackfriday-1.6.0" +; ,go-github-com-russross-blackfriday-1.6.0) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-go-digest-1.0.0" +; ,go-github-com-opencontainers-go-digest-1.0.0))) +; (home-page "https://github.com/opencontainers/image-spec") +; (synopsis "OCI Image Format Specification") +; (description +; "The OCI Image Format project creates and maintains the software shipping +;container image format spec (OCI Image Format).") +; (license license:asl2.0))) +;(define-public go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417 +; (package +; (name "go-github-com-opencontainers-runtime-spec") +; (version "1.0.3-0.20210326190908-1c3f411f0417") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/runtime-spec") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1azk8z41ga8af35c966f06vrq9y9hwz6mkm59r3py5qaamzim3qq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/runtime-spec")) +; (home-page "https://github.com/opencontainers/runtime-spec") +; (synopsis "Open Container Initiative Runtime Specification") +; (description +; "The @url{https://www.opencontainers.org,Open Container Initiative} develops +;specifications for standards on Operating System process and application +;containers.") +; (license license:asl2.0))) +;(define-public go-github-com-opencontainers-runtime-tools-0.9.1-0.20210326182921-59cdde06764b +; (package +; (name "go-github-com-opencontainers-runtime-tools") +; (version "0.9.1-0.20210326182921-59cdde06764b") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/runtime-tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0f4zy6x1rrrg10bphwijic30m3r4mq934zbavnci6jyi41l1w2r0")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/runtime-tools")) +; (home-page "https://github.com/opencontainers/runtime-tools") +; (synopsis "oci-runtime-tool") +; (description +; "oci-runtime-tool is a collection of tools for working with the +;@url{https://github.com/opencontainers/runtime-spec,OCI runtime specification}. +;To build from source code, runtime-tools requires Go 1.10.x or above.") +; (license license:asl2.0))) +;(define-public go-github-com-opencontainers-selinux-1.10.0 +; (package +; (name "go-github-com-opencontainers-selinux") +; (version "1.10.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/selinux") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "118q1d9py9zhym4jmyiivasmllkdnkp1zyx4brc6n2cfmxfph6gc")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/selinux")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777" +; ,go-golang-org-x-sys-0.0.0-20191115151921-52ab43148777))) +; (home-page "https://github.com/opencontainers/selinux") +; (synopsis "selinux") +; (description "Common SELinux package used across the container ecosystem.") +; (license license:asl2.0))) +;(define-public go-github-com-opencontainers-umoci-0.4.7 +; (package +; (name "go-github-com-opencontainers-umoci") +; (version "0.4.7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/umoci") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0in8kyi4jprvbm3zsl3risbjj8b0ma62yl3rq8rcvcgypx0mn7d4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/umoci")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v3-3.0.0-20200615113413-eeeca48fe776" +; ,go-gopkg-in-yaml-v3-3.0.0-20200615113413-eeeca48fe776) +; ("go-gopkg-in-check-v1-1.0.0-20200227125254-8fa46927fb4f" +; ,go-gopkg-in-check-v1-1.0.0-20200227125254-8fa46927fb4f) +; ("go-google-golang-org-protobuf-1.24.0" +; ,go-google-golang-org-protobuf-1.24.0) +; ("go-golang-org-x-sys-0.0.0-20200622214017-ed371f2e16b4" +; ,go-golang-org-x-sys-0.0.0-20200622214017-ed371f2e16b4) +; ("go-golang-org-x-crypto-0.0.0-20200604202706-70a84ac30bf9" +; ,go-golang-org-x-crypto-0.0.0-20200604202706-70a84ac30bf9) +; ("go-github-com-vbatts-go-mtree-0.5.0" +; ,go-github-com-vbatts-go-mtree-0.5.0) +; ("go-github-com-urfave-cli-1.22.4" ,go-github-com-urfave-cli-1.22.4) +; ("go-github-com-tj-assert-0.0.3" ,go-github-com-tj-assert-0.0.3) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-sirupsen-logrus-1.6.0" +; ,go-github-com-sirupsen-logrus-1.6.0) +; ("go-github-com-rootless-containers-proto-0.1.0" +; ,go-github-com-rootless-containers-proto-0.1.0) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-opencontainers-runtime-spec-1.0.2" +; ,go-github-com-opencontainers-runtime-spec-1.0.2) +; ("go-github-com-opencontainers-runc-1.0.0-rc90" +; ,go-github-com-opencontainers-runc-1.0.0-rc90) +; ("go-github-com-opencontainers-image-spec-1.0.1" +; ,go-github-com-opencontainers-image-spec-1.0.1) +; ("go-github-com-opencontainers-go-digest-1.0.0" +; ,go-github-com-opencontainers-go-digest-1.0.0) +; ("go-github-com-niemeyer-pretty-0.0.0-20200227124842-a10e7caefd8e" +; ,go-github-com-niemeyer-pretty-0.0.0-20200227124842-a10e7caefd8e) +; ("go-github-com-mohae-deepcopy-0.0.0-20170929034955-c48cc78d4826" +; ,go-github-com-mohae-deepcopy-0.0.0-20170929034955-c48cc78d4826) +; ("go-github-com-mattn-go-colorable-0.1.6" +; ,go-github-com-mattn-go-colorable-0.1.6) +; ("go-github-com-kr-text-0.2.0" ,go-github-com-kr-text-0.2.0) +; ("go-github-com-klauspost-pgzip-1.2.4" +; ,go-github-com-klauspost-pgzip-1.2.4) +; ("go-github-com-klauspost-compress-1.11.3" +; ,go-github-com-klauspost-compress-1.11.3) +; ("go-github-com-google-go-cmp-0.5.0" +; ,go-github-com-google-go-cmp-0.5.0) +; ("go-github-com-golang-protobuf-1.4.2" +; ,go-github-com-golang-protobuf-1.4.2) +; ("go-github-com-docker-go-units-0.4.0" +; ,go-github-com-docker-go-units-0.4.0) +; ("go-github-com-cyphar-filepath-securejoin-0.2.2" +; ,go-github-com-cyphar-filepath-securejoin-0.2.2) +; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0" +; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0) +; ("go-github-com-apex-log-1.4.0" ,go-github-com-apex-log-1.4.0) +; ("go-github-com-adamkorcz-go-fuzz-headers-0.0.0-20210312213058-32f4d319f0d2" +; ,go-github-com-adamkorcz-go-fuzz-headers-0.0.0-20210312213058-32f4d319f0d2))) +; (home-page "https://github.com/opencontainers/umoci") +; (synopsis "Install") +; (description +; "@strong{u}moci @strong{m}odifies @strong{O}pen @strong{C}ontainer +;@strong{i}mages.") +; (license license:asl2.0))) +;(define-public go-github-com-pelletier-go-toml-1.9.4 +; (package +; (name "go-github-com-pelletier-go-toml") +; (version "1.9.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/pelletier/go-toml") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0f2d9m19dadl18i2baf57xygvn9vprm6wb8chvpx8kipx94nchyl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/pelletier/go-toml")) +; (home-page "https://github.com/pelletier/go-toml") +; (synopsis "go-toml") +; (description "Package toml is a TOML parser and manipulation library.") +; (license license:expat))) +;(define-public go-github-com-pkg-errors-0.9.1 +; (package +; (name "go-github-com-pkg-errors") +; (version "0.9.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/pkg/errors") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1761pybhc2kqr6v5fm8faj08x9bql8427yqg6vnfv6nhrasx1mwq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/pkg/errors")) +; (home-page "https://github.com/pkg/errors") +; (synopsis "errors") +; (description "Package errors provides simple error handling primitives.") +; (license license:bsd-2))) +;(define-public go-github-com-seccomp-containers-golang-0.6.0 +; (package +; (name "go-github-com-seccomp-containers-golang") +; (version "0.6.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/seccomp/containers-golang") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0clrwdnmr131a65h66br57bsnr17i1s3kq9cc7ljrdaym57y6cfz")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/seccomp/containers-golang")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20200720211630-cb9d2d5c5666" +; ,go-golang-org-x-sys-0.0.0-20200720211630-cb9d2d5c5666) +; ("go-github-com-xeipuuv-gojsonschema-1.2.0" +; ,go-github-com-xeipuuv-gojsonschema-1.2.0) +; ("go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2" +; ,go-github-com-syndtr-gocapability-0.0.0-20180916011248-d98352740cb2) +; ("go-github-com-sirupsen-logrus-1.6.0" +; ,go-github-com-sirupsen-logrus-1.6.0) +; ("go-github-com-seccomp-libseccomp-golang-0.9.1" +; ,go-github-com-seccomp-libseccomp-golang-0.9.1) +; ("go-github-com-opencontainers-selinux-1.6.0" +; ,go-github-com-opencontainers-selinux-1.6.0) +; ("go-github-com-opencontainers-runtime-tools-0.9.0" +; ,go-github-com-opencontainers-runtime-tools-0.9.0) +; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20200710190001-3e4195d92445" +; ,go-github-com-opencontainers-runtime-spec-1.0.3-0.20200710190001-3e4195d92445) +; ("go-github-com-hashicorp-go-multierror-1.1.0" +; ,go-github-com-hashicorp-go-multierror-1.1.0) +; ("go-github-com-blang-semver-3.5.1+incompatible" +; ,go-github-com-blang-semver-3.5.1+incompatible))) +; (home-page "https://github.com/seccomp/containers-golang") +; (synopsis "containers-golang") +; (description +; "@code{containers-golang} is a set of Go libraries used by container runtimes to +;generate and load seccomp mappings into the kernel.") +; (license license:asl2.0))) +;(define-public go-github-com-seccomp-libseccomp-golang-0.9.2-0.20210429002308-3879420cc921 +; (package +; (name "go-github-com-seccomp-libseccomp-golang") +; (version "0.9.2-0.20210429002308-3879420cc921") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/seccomp/libseccomp-golang") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ypr3j50cd9lnj9szfyh45kh0cf7swm7cv2svz1575mldd9m1xr9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/seccomp/libseccomp-golang")) +; (home-page "https://github.com/seccomp/libseccomp-golang") +; (synopsis #f) +; (description +; "Package seccomp provides bindings for libseccomp, a library wrapping the Linux +;seccomp syscall. Seccomp enables an application to restrict system call use for +;itself and its children.") +; (license license:bsd-2))) +;(define-public go-github-com-spf13-cobra-1.3.0 +; (package +; (name "go-github-com-spf13-cobra") +; (version "1.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/spf13/cobra") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0j3kj6yxrl2aigixapjl6bi2gmghrj52763wbd7jc079f38wz94n")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/spf13/cobra")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) +; ("go-github-com-spf13-viper-1.10.0" ,go-github-com-spf13-viper-1.10.0) +; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) +; ("go-github-com-inconshreveable-mousetrap-1.0.0" +; ,go-github-com-inconshreveable-mousetrap-1.0.0) +; ("go-github-com-cpuguy83-go-md2man-v2-2.0.1" +; ,go-github-com-cpuguy83-go-md2man-v2-2.0.1))) +; (home-page "https://github.com/spf13/cobra") +; (synopsis "Overview") +; (description +; "Package cobra is a commander providing a simple interface to create powerful +;modern CLI interfaces. In addition to providing an interface, Cobra +;simultaneously provides a controller to organize your application code.") +; (license license:asl2.0))) +;(define-public go-github-com-spf13-pflag-1.0.5 +; (package +; (name "go-github-com-spf13-pflag") +; (version "1.0.5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/spf13/pflag") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0gpmacngd0gpslnbkzi263f5ishigzgh6pbdv9hp092rnjl4nd31")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/spf13/pflag")) +; (home-page "https://github.com/spf13/pflag") +; (synopsis "Description") +; (description +; "Package pflag is a drop-in replacement for Go's flag package, implementing +;POSIX/GNU-style --flags.") +; (license license:bsd-3))) +;(define-public go-github-com-sylabs-json-resp-0.8.0 +; (package +; (name "go-github-com-sylabs-json-resp") +; (version "0.8.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/sylabs/json-resp") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ygr4mavaj1pp78hkkphhn3ydd923n3klwnx8x7v4ajqzx4cx4id")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/sylabs/json-resp")) +; (home-page "https://github.com/sylabs/json-resp") +; (synopsis "JSON Response") +; (description +; "The @code{json-resp} package contains a small set of functions that are used to +;marshall and unmarshall response data and errors in JSON format.") +; (license license:bsd-3))) +;(define-public go-github-com-urfave-cli-1.22.5 +; (package +; (name "go-github-com-urfave-cli") +; (version "1.22.5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/urfave/cli") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1n8lk58j7bdsp47yh5bcpsw38lhkbyzcy3203ffkawc2rvkf1pp7")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/urfave/cli")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v2-2.2.2" ,go-gopkg-in-yaml-v2-2.2.2) +; ("go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d" +; ,go-github-com-cpuguy83-go-md2man-v2-2.0.0-20190314233015-f79a8a8ca69d) +; ("go-github-com-burntsushi-toml-0.3.1" +; ,go-github-com-burntsushi-toml-0.3.1))) +; (home-page "https://github.com/urfave/cli") +; (synopsis "cli") +; (description +; "Package cli provides a minimal framework for creating and organizing command +;line Go applications. cli is designed to be easy to understand and write, the +;most simple cli application can be written as follows:") +; (license license:expat))) +;(define-public go-github-com-vbauerster-mpb-v7-7.4.1 +; (package +; (name "go-github-com-vbauerster-mpb-v7") +; (version "7.4.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/vbauerster/mpb") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ii1r84qjfp2spvj6nb8xy5b3nsfw17jmwgp55zkaz9n9lfj75w2")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/vbauerster/mpb/v7")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20220209214540-3681064d5158" +; ,go-golang-org-x-sys-0.0.0-20220209214540-3681064d5158) +; ("go-github-com-mattn-go-runewidth-0.0.13" +; ,go-github-com-mattn-go-runewidth-0.0.13) +; ("go-github-com-acarl005-stripansi-0.0.0-20180116102854-5a71ef0e047d" +; ,go-github-com-acarl005-stripansi-0.0.0-20180116102854-5a71ef0e047d) +; ("go-github-com-vividcortex-ewma-1.2.0" +; ,go-github-com-vividcortex-ewma-1.2.0))) +; (home-page "https://github.com/vbauerster/mpb") +; (synopsis "Multi Progress Bar") +; (description +; "Package mpb is a library for rendering progress bars in terminal applications.") +; (license license:unlicense))) +;(define-public go-github-com-xeipuuv-gojsonpointer-0.0.0-20190905194746-02993c407bfb +; (package +; (name "go-github-com-xeipuuv-gojsonpointer") +; (version "0.0.0-20190905194746-02993c407bfb") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/xeipuuv/gojsonpointer") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0y7gmpgsm8c12ax4a0ij9srmd9d424iq224n172ckwfqf37amvzy")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/xeipuuv/gojsonpointer")) +; (home-page "https://github.com/xeipuuv/gojsonpointer") +; (synopsis "gojsonpointer") +; (description "An implementation of JSON Pointer - Go language") +; (license license:asl2.0))) +;(define-public go-github-com-yvasiyarov-go-metrics-0.0.0-20150112132944-c25f46c4b940 +; (package +; (name "go-github-com-yvasiyarov-go-metrics") +; (version "0.0.0-20150112132944-c25f46c4b940") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/yvasiyarov/go-metrics") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0p1hx4ml4gzgyj8n0fg5lv8bq092zwg00n59lq8v8sphjc1h8i8d")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/yvasiyarov/go-metrics")) +; (home-page "https://github.com/yvasiyarov/go-metrics") +; (synopsis "go-metrics") +; (description "Go port of Coda Hale's Metrics library") +; (license license:expat))) +;(define-public go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20160601141957-9c099fbc30e9 +; (package +; (name "go-github-com-yvasiyarov-newrelic-platform-go") +; (version "0.0.0-20160601141957-9c099fbc30e9") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/yvasiyarov/newrelic_platform_go") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0n6jap27qc7b7c37ck1gv9biq5nfl7y06jk0cqgc517yfnb4f07x")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/yvasiyarov/newrelic_platform_go")) +; (home-page "https://github.com/yvasiyarov/newrelic_platform_go") +; (synopsis "New Relic Platform Agent SDK for Go(golang)") +; (description +; "Package newrelic_platform_go is New Relic Platform Agent SDK for Go language.") +; (license license:bsd-2))) +;(define-public go-golang-org-x-sys-0.0.0-20220209214540-3681064d5158 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20220209214540-3681064d5158") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0cw9rzb4rxmr2si28pjqx3wv5r119c83kd08yy1h7nf725bzrs89")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +;(define-public go-golang-org-x-term-0.0.0-20210916214954-140adaaadfaf +; (package +; (name "go-golang-org-x-term") +; (version "0.0.0-20210916214954-140adaaadfaf") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/term") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1rcdx2q92pzpmdyzdlzpq9flc3ibfi3m1rni7w4qlmlq569s6wh3")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/term")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1" +; ,go-golang-org-x-sys-0.0.0-20210615035016-665e8c7367d1))) +; (home-page "https://golang.org/x/term") +; (synopsis "Go terminal/console support") +; (description +; "Package term provides support functions for dealing with terminals, as commonly +;found on UNIX systems.") +; (license license:bsd-3))) +;(define-public go-gopkg-in-yaml-v2-2.4.0 +; (package +; (name "go-gopkg-in-yaml-v2") +; (version "2.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/yaml.v2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1pbmrpj7gcws34g8vwna4i2nhm9p6235piww36436xhyaa10cldr")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" +; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) +; (home-page "https://gopkg.in/yaml.v2") +; (synopsis "YAML support for the Go language") +; (description "Package yaml implements YAML support for the Go language.") +; (license license:asl2.0))) +;(define-public go-gotest-tools-v3-3.1.0 +; (package +; (name "go-gotest-tools-v3") +; (version "3.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/gotestyourself/gotest.tools") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0jk2grk2q19k453m76hn2bsq9i73yk63drlfjg1imvhmmcl88872")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gotest.tools/v3" #:unpack-path "gotest.tools/v3")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.1.0" ,go-golang-org-x-tools-0.1.0) +; ("go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4" +; ,go-golang-org-x-sys-0.0.0-20210119212857-b64e53b001e4) +; ("go-github-com-spf13-pflag-1.0.3" ,go-github-com-spf13-pflag-1.0.3) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-google-go-cmp-0.5.5" +; ,go-github-com-google-go-cmp-0.5.5))) +; (home-page "https://gotest.tools/v3") +; (synopsis "gotest.tools") +; (description +; "Package gotesttools is a collection of packages to augment `testing` and support +;common patterns.") +; (license license:asl2.0))) +;(define-public go-mvdan-cc-sh-v3-3.4.3-0.20220202175809-113ed667a8a7 +; (package +; (name "go-mvdan-cc-sh-v3") +; (version "3.4.3-0.20220202175809-113ed667a8a7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mvdan/sh") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1k5113qqm20x58838k8f0ry3v1hinahjf2yl8y4450922yy0mq2k")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "mvdan.cc/sh/v3" #:unpack-path "mvdan.cc/sh/v3")) +; (propagated-inputs +; `(("go-mvdan-cc-editorconfig-0.2.0" ,go-mvdan-cc-editorconfig-0.2.0) +; ("go-golang-org-x-term-0.0.0-20210916214954-140adaaadfaf" +; ,go-golang-org-x-term-0.0.0-20210916214954-140adaaadfaf) +; ("go-golang-org-x-sys-0.0.0-20210925032602-92d5a993a665" +; ,go-golang-org-x-sys-0.0.0-20210925032602-92d5a993a665) +; ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" +; ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) +; ("go-github-com-rogpeppe-go-internal-1.8.1-0.20210923151022-86f73c517451" +; ,go-github-com-rogpeppe-go-internal-1.8.1-0.20210923151022-86f73c517451) +; ("go-github-com-pkg-diff-0.0.0-20210226163009-20ebb0f2a09e" +; ,go-github-com-pkg-diff-0.0.0-20210226163009-20ebb0f2a09e) +; ("go-github-com-kr-pretty-0.3.0" ,go-github-com-kr-pretty-0.3.0) +; ("go-github-com-google-renameio-1.0.1" +; ,go-github-com-google-renameio-1.0.1) +; ("go-github-com-frankban-quicktest-1.13.1" +; ,go-github-com-frankban-quicktest-1.13.1) +; ("go-github-com-creack-pty-1.1.15" ,go-github-com-creack-pty-1.1.15))) +; (home-page "https://mvdan.cc/sh/v3") +; (synopsis "sh") +; (description +; "This package provides a shell parser, formatter, and interpreter. Supports +;@url{https://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html,POSIX +;Shell}, @url{https://www.gnu.org/software/bash/,Bash}, and +;@url{http://www.mirbsd.org/mksh.htm,mksh}. Requires Go 1.16 or later.") +; (license license:bsd-3))) +;(define-public go-oras-land-oras-go-1.1.0 +; (package +; (name "go-oras-land-oras-go") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/oras-project/oras-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1mbn57dgpr7m2f7cw5r9s8kka44khrgqca84np6wnjiyzxgr1khk")))) +; (build-system go-build-system) +; (arguments '(#:import-path "oras.land/oras-go")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v3-3.0.0-20210107192922-496545a6307b" +; ,go-gopkg-in-yaml-v3-3.0.0-20210107192922-496545a6307b) +; ("go-gopkg-in-yaml-v2-2.4.0" ,go-gopkg-in-yaml-v2-2.4.0) +; ("go-gopkg-in-check-v1-1.0.0-20200227125254-8fa46927fb4f" +; ,go-gopkg-in-check-v1-1.0.0-20200227125254-8fa46927fb4f) +; ("go-google-golang-org-protobuf-1.27.1" +; ,go-google-golang-org-protobuf-1.27.1) +; ("go-google-golang-org-grpc-1.43.0" ,go-google-golang-org-grpc-1.43.0) +; ("go-google-golang-org-genproto-0.0.0-20220107163113-42d7afdf6368" +; ,go-google-golang-org-genproto-0.0.0-20220107163113-42d7afdf6368) +; ("go-golang-org-x-text-0.3.7" ,go-golang-org-x-text-0.3.7) +; ("go-golang-org-x-sys-0.0.0-20211216021012-1d35b9e2eb4e" +; ,go-golang-org-x-sys-0.0.0-20211216021012-1d35b9e2eb4e) +; ("go-golang-org-x-net-0.0.0-20220107192237-5cfca573fb4d" +; ,go-golang-org-x-net-0.0.0-20220107192237-5cfca573fb4d) +; ("go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20140908184405-b21fdbd4370f" +; ,go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20140908184405-b21fdbd4370f) +; ("go-github-com-yvasiyarov-gorelic-0.0.0-20141212073537-a9bba5b9ab50" +; ,go-github-com-yvasiyarov-gorelic-0.0.0-20141212073537-a9bba5b9ab50) +; ("go-github-com-yvasiyarov-go-metrics-0.0.0-20140926110328-57bccd1ccd43" +; ,go-github-com-yvasiyarov-go-metrics-0.0.0-20140926110328-57bccd1ccd43) +; ("go-github-com-spf13-pflag-1.0.5" ,go-github-com-spf13-pflag-1.0.5) +; ("go-github-com-prometheus-procfs-0.6.0" +; ,go-github-com-prometheus-procfs-0.6.0) +; ("go-github-com-prometheus-common-0.10.0" +; ,go-github-com-prometheus-common-0.10.0) +; ("go-github-com-prometheus-client-model-0.2.0" +; ,go-github-com-prometheus-client-model-0.2.0) +; ("go-github-com-prometheus-client-golang-1.7.1" +; ,go-github-com-prometheus-client-golang-1.7.1) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-niemeyer-pretty-0.0.0-20200227124842-a10e7caefd8e" +; ,go-github-com-niemeyer-pretty-0.0.0-20200227124842-a10e7caefd8e) +; ("go-github-com-morikuni-aec-1.0.0" ,go-github-com-morikuni-aec-1.0.0) +; ("go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd" +; ,go-github-com-moby-term-0.0.0-20200312100748-672ec06f55cd) +; ("go-github-com-moby-sys" +; ,go-github-com-moby-sys) +; ("go-github-com-moby-locker-1.0.1" ,go-github-com-moby-locker-1.0.1) +; ("go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369" +; ,go-github-com-matttproud-golang-protobuf-extensions-1.0.2-0.20181231171920-c182affec369) +; ("go-github-com-kr-text-0.2.0" ,go-github-com-kr-text-0.2.0) +; ("go-github-com-klauspost-compress-1.13.6" +; ,go-github-com-klauspost-compress-1.13.6) +; ("go-github-com-inconshreveable-mousetrap-1.0.0" +; ,go-github-com-inconshreveable-mousetrap-1.0.0) +; ("go-github-com-gorilla-mux-1.8.0" ,go-github-com-gorilla-mux-1.8.0) +; ("go-github-com-gorilla-handlers-1.5.1" +; ,go-github-com-gorilla-handlers-1.5.1) +; ("go-github-com-google-go-cmp-0.5.6" +; ,go-github-com-google-go-cmp-0.5.6) +; ("go-github-com-gomodule-redigo-1.8.2" +; ,go-github-com-gomodule-redigo-1.8.2) +; ("go-github-com-golang-protobuf-1.5.2" +; ,go-github-com-golang-protobuf-1.5.2) +; ("go-github-com-golang-groupcache-0.0.0-20210331224755-41bb18bfe9da" +; ,go-github-com-golang-groupcache-0.0.0-20210331224755-41bb18bfe9da) +; ("go-github-com-gogo-protobuf-1.3.2" +; ,go-github-com-gogo-protobuf-1.3.2) +; ("go-github-com-felixge-httpsnoop-1.0.1" +; ,go-github-com-felixge-httpsnoop-1.0.1) +; ("go-github-com-docker-libtrust-0.0.0-20150114040149-fa567046d9b1" +; ,go-github-com-docker-libtrust-0.0.0-20150114040149-fa567046d9b1) +; ("go-github-com-docker-go-units-0.4.0" +; ,go-github-com-docker-go-units-0.4.0) +; ("go-github-com-docker-go-metrics-0.0.1" +; ,go-github-com-docker-go-metrics-0.0.1) +; ("go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c" +; ,go-github-com-docker-go-events-0.0.0-20190806004212-e31b211e4f1c) +; ("go-github-com-docker-go-connections-0.4.0" +; ,go-github-com-docker-go-connections-0.4.0) +; ("go-github-com-docker-docker-credential-helpers-0.6.4" +; ,go-github-com-docker-docker-credential-helpers-0.6.4) +; ("go-github-com-docker-distribution-2.7.1+incompatible" +; ,go-github-com-docker-distribution-2.7.1+incompatible) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1) +; ("go-github-com-containerd-cgroups-1.0.2" +; ,go-github-com-containerd-cgroups-1.0.2) +; ("go-github-com-cespare-xxhash-v2-2.1.1" +; ,go-github-com-cespare-xxhash-v2-2.1.1) +; ("go-github-com-bugsnag-panicwrap-0.0.0-20151223152923-e2c28503fcd0" +; ,go-github-com-bugsnag-panicwrap-0.0.0-20151223152923-e2c28503fcd0) +; ("go-github-com-bugsnag-osext-0.0.0-20130617224835-0dd3f918b21b" +; ,go-github-com-bugsnag-osext-0.0.0-20130617224835-0dd3f918b21b) +; ("go-github-com-bugsnag-bugsnag-go-0.0.0-20141110184014-b1d153021fcd" +; ,go-github-com-bugsnag-bugsnag-go-0.0.0-20141110184014-b1d153021fcd) +; ("go-github-com-bshuster-repo-logrus-logstash-hook-1.0.0" +; ,go-github-com-bshuster-repo-logrus-logstash-hook-1.0.0) +; ("go-github-com-beorn7-perks-1.0.1" ,go-github-com-beorn7-perks-1.0.1) +; ("go-github-com-shopify-logrus-bugsnag-0.0.0-20171204204709-577dee27f20d" +; ,go-github-com-shopify-logrus-bugsnag-0.0.0-20171204204709-577dee27f20d) +; ("go-github-com-microsoft-hcsshim-0.9.1" +; ,go-github-com-microsoft-hcsshim-0.9.1) +; ("go-github-com-microsoft-go-winio-0.5.1" +; ,go-github-com-microsoft-go-winio-0.5.1) +; ("go-github-com-azure-go-ansiterm-0.0.0-20170929234023-d6e3b3328b78" +; ,go-github-com-azure-go-ansiterm-0.0.0-20170929234023-d6e3b3328b78) +; ("go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c" +; ,go-golang-org-x-sync-0.0.0-20210220032951-036812b2e83c) +; ("go-golang-org-x-crypto-0.0.0-20211117183948-ae814b36b871" +; ,go-golang-org-x-crypto-0.0.0-20211117183948-ae814b36b871) +; ("go-github-com-stretchr-testify-1.7.0" +; ,go-github-com-stretchr-testify-1.7.0) +; ("go-github-com-spf13-cobra-1.2.1" ,go-github-com-spf13-cobra-1.2.1) +; ("go-github-com-sirupsen-logrus-1.8.1" +; ,go-github-com-sirupsen-logrus-1.8.1) +; ("go-github-com-pkg-errors-0.9.1" ,go-github-com-pkg-errors-0.9.1) +; ("go-github-com-phayes-freeport-0.0.0-20180830031419-95f893ade6f2" +; ,go-github-com-phayes-freeport-0.0.0-20180830031419-95f893ade6f2) +; ("go-github-com-opencontainers-image-spec-1.0.2" +; ,go-github-com-opencontainers-image-spec-1.0.2) +; ("go-github-com-opencontainers-go-digest-1.0.0" +; ,go-github-com-opencontainers-go-digest-1.0.0) +; ("go-github-com-docker-docker-20.10.11+incompatible" +; ,go-github-com-docker-docker-20.10.11+incompatible) +; ("go-github-com-docker-cli-20.10.11+incompatible" +; ,go-github-com-docker-cli-20.10.11+incompatible) +; ("go-github-com-distribution-distribution-v3-3.0.0-20211118083504-a29a3c99a684" +; ,go-github-com-distribution-distribution-v3-3.0.0-20211118083504-a29a3c99a684) +; ("go-github-com-containerd-containerd-1.5.9" +; ,go-github-com-containerd-containerd-1.5.9))) +; (home-page "https://oras.land/oras-go") +; (synopsis "ORAS Go library") +; (description +; "Documentation for the ORAS Go library is located on the project website: +;@url{https://oras.land/client_libraries/go/,oras.land/client_libraries/go}") +; (license license:asl2.0))) +;(define-public go-github-com-opencontainers-image-spec-1.0.2-0.20211117181255-693428a734f5 +; (package +; (name "go-github-com-opencontainers-image-spec") +; (version "1.0.2-0.20211117181255-693428a734f5") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/opencontainers/image-spec") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1w9fmamky30idjbqs78qhds6d5b9gdy6wzcxx6fhmpm2159dv62b")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/opencontainers/image-spec")) +; (home-page "https://github.com/opencontainers/image-spec") +; (synopsis "OCI Image Format Specification") +; (description +; "The OCI Image Format project creates and maintains the software shipping +;container image format spec (OCI Image Format).") +; (license license:asl2.0))) +;(define-public go-github-com-moby-sys-0.0.0-20220308220145-03355939d693 +; (package +; (name "go-github-com-moby-sys") +; (version "0.0.0-20220308220145-03355939d693") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/moby/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ns4bav4n0k93nwz898dmcrz9zm4fa08sxyzhi7wqj4f8mpz4fam")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/moby/sys")) +; (home-page "https://github.com/moby/sys") +; (synopsis #f) +; (description #f) +; (license license:asl2.0))) +;(define-public go-github-com-yvasiyarov-gorelic-0.0.6 +; (package +; (name "go-github-com-yvasiyarov-gorelic") +; (version "0.0.6") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/yvasiyarov/gorelic") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0210d8z7l945611b5ynzjhnypqfdyr490ndrap13s4k5z1jgqjnb")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/yvasiyarov/gorelic")) +; (home-page "https://github.com/yvasiyarov/gorelic") +; (synopsis "GoRelic is deprecated in favour of") +; (description +; "Package gorelic is an New Relic agent implementation for Go runtime. It collect +;a lot of metrics about Go scheduler, garbage collector and memory allocator and +;send them to NewRelic.") +; (license license:bsd-2))) +;(define-public go-github-com-stretchr-testify-1.6.1 +; (package +; (name "go-github-com-stretchr-testify") +; (version "1.6.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/testify") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1yhiqqzjvi63pf01rgzx68gqkkvjx03fvl5wk30br5l6s81s090l")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/testify")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" +; ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) +; ("go-github-com-stretchr-objx-0.1.0" +; ,go-github-com-stretchr-objx-0.1.0) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.0" +; ,go-github-com-davecgh-go-spew-1.1.0))) +; (home-page "https://github.com/stretchr/testify") +; (synopsis "Testify - Thou Shalt Write Tests") +; (description +; "** We are working on testify v2 and would love to hear what you'd like to see in +;it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +;Package testify is a set of packages that provide many tools for testifying that +;your code will behave as you intend.") +; (license license:expat))) +;(define-public go-github-com-stretchr-testify-1.7.0 +; (package +; (name "go-github-com-stretchr-testify") +; (version "1.7.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/testify") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0ixgjsvafr3513pz3r6pmgk074s2dxkll0dadvl25gkf30rkmh10")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/testify")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c" +; ,go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c) +; ("go-github-com-stretchr-objx-0.1.0" +; ,go-github-com-stretchr-objx-0.1.0) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-davecgh-go-spew-1.1.0" +; ,go-github-com-davecgh-go-spew-1.1.0))) +; (home-page "https://github.com/stretchr/testify") +; (synopsis "Testify - Thou Shalt Write Tests") +; (description +; "** We are working on testify v2 and would love to hear what you'd like to see in +;it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +;Package testify is a set of packages that provide many tools for testifying that +;your code will behave as you intend.") +; (license license:expat))) +;(define-public go-gopkg-in-yaml-v3-3.0.0-20200313102051-9f266ea9e77c +; (package +; (name "go-gopkg-in-yaml-v3") +; (version "3.0.0-20200313102051-9f266ea9e77c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/yaml.v3") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1bbai3lzb50m0x2vwsdbagrbhvfylj9k1m32hgbqwldqx4p9ay35")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" +; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) +; (home-page "https://gopkg.in/yaml.v3") +; (synopsis "YAML support for the Go language") +; (description "Package yaml implements YAML support for the Go language.") +; (license license:expat))) +;(define-public go-github-com-stretchr-objx-0.1.0 +; (package +; (name "go-github-com-stretchr-objx") +; (version "0.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/objx") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/objx")) +; (home-page "https://github.com/stretchr/objx") +; (synopsis "Objx") +; (description +; "Objx - Go package for dealing with maps, slices, JSON and other data.") +; (license license:expat))) +;(define-public go-github-com-pmezard-go-difflib-1.0.0 +; (package +; (name "go-github-com-pmezard-go-difflib") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/pmezard/go-difflib") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/pmezard/go-difflib")) +; (home-page "https://github.com/pmezard/go-difflib") +; (synopsis "go-difflib") +; (description +; "Go-difflib is a partial port of python 3 difflib package. Its main goal was to +;make unified and context diff available in pure Go, mostly for testing purposes.") +; (license license:bsd-3))) +;(define-public go-github-com-davecgh-go-spew-1.1.0 +; (package +; (name "go-github-com-davecgh-go-spew") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/davecgh/go-spew") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/davecgh/go-spew")) +; (home-page "https://github.com/davecgh/go-spew") +; (synopsis "go-spew") +; (description +; "Go-spew implements a deep pretty printer for Go data structures to aid in +;debugging. A comprehensive suite of tests with 100% test coverage is provided +;to ensure proper functionality. See @code{test_coverage.txt} for the gocov +;coverage report. Go-spew is licensed under the liberal ISC license, so it may +;be used in open source or commercial projects.") +; (license license:isc))) +;(define-public go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405 +; (package +; (name "go-gopkg-in-check-v1") +; (version "0.0.0-20161208181325-20d25e280405") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/check.v1") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) +; (home-page "https://gopkg.in/check.v1") +; (synopsis "Instructions") +; (description +; "Package check is a rich testing extension for Go's testing package.") +; (license license:bsd-2))) +;(define-public go-golang-org-x-crypto-0.0.0-20210322153248-0c34fe9e7dc2 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20210322153248-0c34fe9e7dc2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "021szs1czc0xg4chpays7i05dvkax9s8mns314ab01r887kchqxq")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (propagated-inputs +; `(("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" +; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) +; ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" +; ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68) +; ("go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110" +; ,go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110))) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +;(define-public go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1 +; (package +; (name "go-golang-org-x-term") +; (version "0.0.0-20201126162022-7de9c90e9dd1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/term") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ba252xmv6qsvf1w1gcy98mngrj0vd4inbjw0lsklqvva65nljna")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/term")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" +; ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) +; (home-page "https://golang.org/x/term") +; (synopsis "Go terminal/console support") +; (description +; "Package term provides support functions for dealing with terminals, as commonly +;found on UNIX systems.") +; (license license:bsd-3))) +;(define-public go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20201119102817-f84b799fce68") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1dvhqian5byzkcg1bnqzygqa6ccc6krc2q7j12pp1vhl3y7znnsg")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +;(define-public go-golang-org-x-net-0.0.0-20210226172049-e18ecbb05110 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20210226172049-e18ecbb05110") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1vlq8mdscp7yfaa1lmyv03y5m4c2d67ydg2q1i6smkrxghn3zn3q")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.3" ,go-golang-org-x-text-0.3.3) +; ("go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1" +; ,go-golang-org-x-term-0.0.0-20201126162022-7de9c90e9dd1) +; ("go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68" +; ,go-golang-org-x-sys-0.0.0-20201119102817-f84b799fce68))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +;(define-public go-golang-org-x-text-0.3.3 +; (package +; (name "go-golang-org-x-text") +; (version "0.3.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/text") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "19pihqm3phyndmiw6i42pdv6z1rbvlqlsnhsyqf9gsnn0qnmqqlh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/text")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" +; ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) +; (home-page "https://golang.org/x/text") +; (synopsis "Go Text") +; (description +; "text is a repository of text-related packages related to internationalization +;(i18n) and localization (l10n), such as character encodings, text +;transformations, and locale-specific text handling.") +; (license license:bsd-3))) +;(define-public go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e +; (package +; (name "go-golang-org-x-tools") +; (version "0.0.0-20180917221912-90fa682c2a6e") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/tools") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/tools")) +; (home-page "https://golang.org/x/tools") +; (synopsis "Go Tools") +; (description +; "This subrepository holds the source for various packages and tools that support +;the Go programming language.") +; (license license:bsd-3))) +;(define-public go-github-com-sirupsen-logrus-1.4.2 +; (package +; (name "go-github-com-sirupsen-logrus") +; (version "1.4.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/sirupsen/logrus") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "087k2lxrr9p9dh68yw71d05h5g9p5v26zbwd6j7lghinjfaw334x")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/sirupsen/logrus")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894" +; ,go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894) +; ("go-github-com-stretchr-testify-1.2.2" +; ,go-github-com-stretchr-testify-1.2.2) +; ("go-github-com-stretchr-objx-0.1.1" +; ,go-github-com-stretchr-objx-0.1.1) +; ("go-github-com-pmezard-go-difflib-1.0.0" +; ,go-github-com-pmezard-go-difflib-1.0.0) +; ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.1" +; ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.1) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://github.com/sirupsen/logrus") +; (synopsis "Logrus") +; (description +; "Package logrus is a structured logger for Go, completely API compatible with the +;standard library logger.") +; (license license:expat))) +;(define-public go-github-com-gorilla-mux-1.7.4 +; (package +; (name "go-github-com-gorilla-mux") +; (version "1.7.4") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/gorilla/mux") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1d0sy1paa055ic84sp3766s9pa24q008hf77dc842vrgvn8p3wmh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/gorilla/mux")) +; (home-page "https://github.com/gorilla/mux") +; (synopsis "gorilla/mux") +; (description "Package mux implements a request router and dispatcher.") +; (license license:bsd-3))) +;(define-public go-github-com-docker-libtrust-0.0.0-20160708172513-aabc10ec26b7 +; (package +; (name "go-github-com-docker-libtrust") +; (version "0.0.0-20160708172513-aabc10ec26b7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/docker/libtrust") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1lwslbggzc2b0c4wxl5pn6i2nfgz5jz8f7s7vnid9mrlsk59h7s1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/docker/libtrust")) +; (home-page "https://github.com/docker/libtrust") +; (synopsis "libtrust") +; (description +; "Package libtrust provides an interface for managing authentication and +;authorization using public key cryptography. Authentication is handled using +;the identity attached to the public key and verified through TLS x509 +;certificates, a key challenge, or signature. Authorization and access control +;is managed through a trust graph distributed between both remote trust servers +;and locally cached and managed data.") +; (license license:asl2.0))) +;(define-public go-github-com-docker-distribution-2.7.1+incompatible +; (package +; (name "go-github-com-docker-distribution") +; (version "2.7.1+incompatible") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/distribution/distribution") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1nx8b5a68rn81alp8wkkw6qd5v32mgf0fk23mxm60zdf63qk1nzw")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/docker/distribution")) +; (home-page "https://github.com/docker/distribution") +; (synopsis "Distribution") +; (description +; "Package distribution will define the interfaces for the components of docker +;distribution. The goal is to allow users to reliably package, ship and store +;content related to docker images.") +; (license license:asl2.0))) +;(define-public go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894 +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190422165155-953cdadca894") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0gkha4whk8xkcv3isigbs250akag99isxnd3v9xmy0kl3g88hxy1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +;(define-public go-github-com-stretchr-testify-1.2.2 +; (package +; (name "go-github-com-stretchr-testify") +; (version "1.2.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/testify") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0dlszlshlxbmmfxj5hlwgv3r22x0y1af45gn1vd198nvvs3pnvfs")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/testify")) +; (home-page "https://github.com/stretchr/testify") +; (synopsis "Testify - Thou Shalt Write Tests") +; (description +; "** We are working on testify v2 and would love to hear what you'd like to see in +;it, have your say here: @url{https://cutt.ly/testify,https://cutt.ly/testify} ** +;Package testify is a set of packages that provide many tools for testifying that +;your code will behave as you intend.") +; (license license:expat))) +;(define-public go-github-com-stretchr-objx-0.1.1 +; (package +; (name "go-github-com-stretchr-objx") +; (version "0.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/stretchr/objx") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0iph0qmpyqg4kwv8jsx6a56a7hhqq8swrazv40ycxk9rzr0s8yls")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/stretchr/objx")) +; (home-page "https://github.com/stretchr/objx") +; (synopsis "Objx") +; (description +; "Objx - Go package for dealing with maps, slices, JSON and other data.") +; (license license:expat))) +;(define-public go-github-com-konsorten-go-windows-terminal-sequences-1.0.1 +; (package +; (name "go-github-com-konsorten-go-windows-terminal-sequences") +; (version "1.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/konsorten/go-windows-terminal-sequences") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1lchgf27n276vma6iyxa0v1xds68n2g8lih5lavqnx5x6q5pw2ip")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "github.com/konsorten/go-windows-terminal-sequences")) +; (home-page "https://github.com/konsorten/go-windows-terminal-sequences") +; (synopsis "Windows Terminal Sequences") +; (description +; "This library allow for enabling Windows terminal color support for Go.") +; (license license:expat))) +;(define-public go-github-com-davecgh-go-spew-1.1.1 +; (package +; (name "go-github-com-davecgh-go-spew") +; (version "1.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/davecgh/go-spew") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/davecgh/go-spew")) +; (home-page "https://github.com/davecgh/go-spew") +; (synopsis "go-spew") +; (description +; "Go-spew implements a deep pretty printer for Go data structures to aid in +;debugging. A comprehensive suite of tests with 100% test coverage is provided +;to ensure proper functionality. See @code{test_coverage.txt} for the gocov +;coverage report. Go-spew is licensed under the liberal ISC license, so it may +;be used in open source or commercial projects.") +; (license license:isc))) +;(define-public go-gopkg-in-yaml-v2-2.2.2 +; (package +; (name "go-gopkg-in-yaml-v2") +; (version "2.2.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/yaml.v2") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "01wj12jzsdqlnidpyjssmj0r4yavlqy7dwrg7adqd8dicjc4ncsa")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/yaml.v2" #:unpack-path "gopkg.in/yaml.v2")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" +; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) +; (home-page "https://gopkg.in/yaml.v2") +; (synopsis "YAML support for the Go language") +; (description "Package yaml implements YAML support for the Go language.") +; (license license:asl2.0))) +;(define-public go-gopkg-in-check-v1-1.0.0-20190902080502-41f04d3bba15 +; (package +; (name "go-gopkg-in-check-v1") +; (version "1.0.0-20190902080502-41f04d3bba15") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/check.v1") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0vfk9czmlxmp6wndq8k17rhnjxal764mxfhrccza7nwlia760pjy")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/check.v1" #:unpack-path "gopkg.in/check.v1")) +; (home-page "https://gopkg.in/check.v1") +; (synopsis "Instructions") +; (description +; "Package check is a rich testing extension for Go's testing package.") +; (license license:bsd-2))) +;(define-public go-golang-org-x-text-0.3.2 +; (package +; (name "go-golang-org-x-text") +; (version "0.3.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/text") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0flv9idw0jm5nm8lx25xqanbkqgfiym6619w575p7nrdh0riqwqh")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/text")) +; (propagated-inputs +; `(("go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e" +; ,go-golang-org-x-tools-0.0.0-20180917221912-90fa682c2a6e))) +; (home-page "https://golang.org/x/text") +; (synopsis "Go Text") +; (description +; "text is a repository of text-related packages related to internationalization +;(i18n) and localization (l10n), such as character encodings, text +;transformations, and locale-specific text handling.") +; (license license:bsd-3))) +;(define-public go-golang-org-x-net-0.0.0-20190620200207-3b0461eec859 +; (package +; (name "go-golang-org-x-net") +; (version "0.0.0-20190620200207-3b0461eec859") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/net") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0l00c8l0a8xnv6qdpwfzxxsr58jggacgzdrwiprrfx2xqm37b6d5")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/net")) +; (propagated-inputs +; `(("go-golang-org-x-text-0.3.0" ,go-golang-org-x-text-0.3.0) +; ("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a) +; ("go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2" +; ,go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2))) +; (home-page "https://golang.org/x/net") +; (synopsis "Go Networking") +; (description +; "This repository holds supplementary Go networking libraries.") +; (license license:bsd-3))) +;(define-public go-github-com-tj-go-spin-1.1.0 +; (package +; (name "go-github-com-tj-go-spin") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/tj/go-spin") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "11xr67991m5pwsy1dira3iwd0sr55vmn1cyjwmlqziw4bwpym64s")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/tj/go-spin")) +; (home-page "https://github.com/tj/go-spin") +; (synopsis #f) +; (description #f) +; (license #f))) +;(define-public go-github-com-tj-go-kinesis-0.0.0-20171128231115-08b17f58cb1b +; (package +; (name "go-github-com-tj-go-kinesis") +; (version "0.0.0-20171128231115-08b17f58cb1b") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/tj/go-kinesis") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "108c6p5j6rhhc2cnc2v5368yfsw73y6lzlvz02vpvvjph8rhmld4")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/tj/go-kinesis")) +; (home-page "https://github.com/tj/go-kinesis") +; (synopsis "go-kinesis") +; (description +; "Package kinesis implements a batch producer built on top of the official AWS +;SDK.") +; (license license:expat))) +;(define-public go-github-com-tj-go-elastic-0.0.0-20171221160941-36157cbbebc2 +; (package +; (name "go-github-com-tj-go-elastic") +; (version "0.0.0-20171221160941-36157cbbebc2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/tj/go-elastic") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1r94vc4hbfvqvjz74n4mvsw4dy3vbyzlivb90kyn8vn76a4wqk69")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/tj/go-elastic")) +; (home-page "https://github.com/tj/go-elastic") +; (synopsis "go-elastic") +; (description +; "Package elastic provides an Elasticsearch client with AWS sigv4 support.") +; (license license:expat))) +;(define-public go-github-com-tj-go-buffer-1.1.0 +; (package +; (name "go-github-com-tj-go-buffer") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/tj/go-buffer") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1qdxpa069pjjbzh217aadpzz1aq1n6h32lhp60yjcpi7hr4q8fxx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/tj/go-buffer")) +; (propagated-inputs +; `(("go-github-com-tj-assert-0.0.3" ,go-github-com-tj-assert-0.0.3))) +; (home-page "https://github.com/tj/go-buffer") +; (synopsis "Buffer") +; (description +; "Package buffer provides a generic buffer or batching mechanism for flushing +;entries at a given size or interval, useful for cases such as batching log +;events.") +; (license license:expat))) +;(define-public go-github-com-tj-assert-0.0.3 +; (package +; (name "go-github-com-tj-assert") +; (version "0.0.3") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/tj/assert") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1j5swk3fjq1h5fpqkipddz2ccnbidr7qrpm5dpdaflg9q5jnc673")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/tj/assert")) +; (propagated-inputs +; `(("go-gopkg-in-yaml-v3-3.0.0-20200605160147-a5ece683394c" +; ,go-gopkg-in-yaml-v3-3.0.0-20200605160147-a5ece683394c) +; ("go-github-com-stretchr-testify-1.6.1" +; ,go-github-com-stretchr-testify-1.6.1) +; ("go-github-com-davecgh-go-spew-1.1.1" +; ,go-github-com-davecgh-go-spew-1.1.1))) +; (home-page "https://github.com/tj/assert") +; (synopsis "assert") +; (description +; "Package assert implements the same assertions as the `assert` package but stops +;test execution when a test fails.") +; (license license:expat))) +;(define-public go-github-com-smartystreets-gunit-1.0.0 +; (package +; (name "go-github-com-smartystreets-gunit") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/smartystreets/gunit") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "11d09rl5qqpj36a311pjj8w5jkj83d5b8gdcsx8f1zn4j924sm5d")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/smartystreets/gunit")) +; (propagated-inputs +; `(("go-github-com-smartystreets-assertions-1.0.0" +; ,go-github-com-smartystreets-assertions-1.0.0))) +; (home-page "https://github.com/smartystreets/gunit") +; (synopsis "gunit") +; (description +; "Package gunit provides \"testing\" package hooks and convenience functions for +;writing tests in an xUnit style. See the README file and the examples folder +;for examples.") +; (license license:expat))) +;(define-public go-github-com-smartystreets-go-aws-auth-0.0.0-20180515143844-0c1422d1fdb9 +; (package +; (name "go-github-com-smartystreets-go-aws-auth") +; (version "0.0.0-20180515143844-0c1422d1fdb9") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/smarty-archives/go-aws-auth") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0krfdpgn3gfii1z9fi8ydfw0wwfqyvp6w3rji7w92m528zkjl93d")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/smartystreets/go-aws-auth")) +; (home-page "https://github.com/smartystreets/go-aws-auth") +; (synopsis "go-aws-auth") +; (description +; "Package awsauth implements AWS request signing using Signed Signature Version 2, +;Signed Signature Version 3, and Signed Signature Version 4. Supports S3 and +;STS.") +; (license license:expat))) +;(define-public go-github-com-rogpeppe-fastuuid-1.1.0 +; (package +; (name "go-github-com-rogpeppe-fastuuid") +; (version "1.1.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/rogpeppe/fastuuid") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1jlif5pxyz3md02ij93kd2y2j1zz0ajc9k8azvn83vv6l3r5c1zg")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/rogpeppe/fastuuid")) +; (home-page "https://github.com/rogpeppe/fastuuid") +; (synopsis "fastuuid") +; (description +; "Package fastuuid provides fast UUID generation of 192 bit universally unique +;identifiers.") +; (license license:bsd-3))) +;(define-public go-github-com-pkg-errors-0.8.1 +; (package +; (name "go-github-com-pkg-errors") +; (version "0.8.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/pkg/errors") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0g5qcb4d4fd96midz0zdk8b9kz8xkzwfa8kr1cliqbg8sxsy5vd1")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/pkg/errors")) +; (home-page "https://github.com/pkg/errors") +; (synopsis "errors") +; (description "Package errors provides simple error handling primitives.") +; (license license:bsd-2))) +;(define-public go-github-com-mattn-go-colorable-0.1.2 +; (package +; (name "go-github-com-mattn-go-colorable") +; (version "0.1.2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/mattn/go-colorable") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0512jm3wmzkkn7d99x9wflyqf48n5ri3npy1fqkq6l6adc5mni3n")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/mattn/go-colorable")) +; (propagated-inputs +; `(("go-github-com-mattn-go-isatty-0.0.8" +; ,go-github-com-mattn-go-isatty-0.0.8))) +; (home-page "https://github.com/mattn/go-colorable") +; (synopsis "go-colorable") +; (description "Colorable writer for windows.") +; (license license:expat))) +;(define-public go-github-com-kr-pretty-0.2.0 +; (package +; (name "go-github-com-kr-pretty") +; (version "0.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/kr/pretty") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1ywbfzz1h3a3qd8rpkiqwi1dm4w8ls9ijb4x1b7567grns9f0vnp")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/kr/pretty")) +; (propagated-inputs +; `(("go-github-com-kr-text-0.1.0" ,go-github-com-kr-text-0.1.0))) +; (home-page "https://github.com/kr/pretty") +; (synopsis #f) +; (description +; "Package pretty provides pretty-printing for Go values. This is useful during +;debugging, to avoid wrapping long output lines in the terminal.") +; (license license:expat))) +;(define-public go-github-com-jpillora-backoff-0.0.0-20180909062703-3050d21c67d7 +; (package +; (name "go-github-com-jpillora-backoff") +; (version "0.0.0-20180909062703-3050d21c67d7") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/jpillora/backoff") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1nxapdx9xg5gwiscfhq7m0w14hj4gaxb4avmgf1mx9zd3jnw9jxv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/jpillora/backoff")) +; (home-page "https://github.com/jpillora/backoff") +; (synopsis "Backoff") +; (description +; "Package backoff provides an exponential-backoff implementation.") +; (license license:expat))) +;(define-public go-github-com-google-uuid-1.1.1 +; (package +; (name "go-github-com-google-uuid") +; (version "1.1.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/google/uuid") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0hfxcf9frkb57k6q0rdkrmnfs78ms21r1qfk9fhlqga2yh5xg8zb")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/google/uuid")) +; (home-page "https://github.com/google/uuid") +; (synopsis "uuid") +; (description "Package uuid generates and inspects UUIDs.") +; (license license:bsd-3))) +;(define-public go-github-com-golang-protobuf-1.3.1 +; (package +; (name "go-github-com-golang-protobuf") +; (version "1.3.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/golang/protobuf") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "15am4s4646qy6iv0g3kkqq52rzykqjhm4bf08dk0fy2r58knpsyl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/golang/protobuf")) +; (home-page "https://github.com/golang/protobuf") +; (synopsis "Go support for Protocol Buffers") +; (description +; "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code +;github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") +; (license license:bsd-3))) +;(define-public go-github-com-go-logfmt-logfmt-0.4.0 +; (package +; (name "go-github-com-go-logfmt-logfmt") +; (version "0.4.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/go-logfmt/logfmt") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "06smxc112xmixz78nyvk3b2hmc7wasf2sl5vxj1xz62kqcq9lzm9")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/go-logfmt/logfmt")) +; (propagated-inputs +; `(("go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515" +; ,go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515))) +; (home-page "https://github.com/go-logfmt/logfmt") +; (synopsis "logfmt") +; (description +; "Package logfmt implements utilities to marshal and unmarshal data in the logfmt +;format. The logfmt format records key/value pairs in a way that balances +;readability for humans and simplicity of computer parsing. It is most commonly +;used as a more human friendly alternative to JSON for structured logging.") +; (license license:expat))) +;(define-public go-github-com-fatih-color-1.7.0 +; (package +; (name "go-github-com-fatih-color") +; (version "1.7.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/fatih/color") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0v8msvg38r8d1iiq2i5r4xyfx0invhc941kjrsg5gzwvagv55inv")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/fatih/color")) +; (home-page "https://github.com/fatih/color") +; (synopsis "color") +; (description +; "Package color is an ANSI color package to output colorized or SGR defined output +;to the standard output. The API can be used in several way, pick one that suits +;you.") +; (license license:expat))) +;(define-public go-github-com-aybabtme-rgbterm-0.0.0-20170906152045-cc83f3b3ce59 +; (package +; (name "go-github-com-aybabtme-rgbterm") +; (version "0.0.0-20170906152045-cc83f3b3ce59") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/aybabtme/rgbterm") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0wvmxvjn64968ikvnxrflb1x8rlcwzpfl53fzbxff2axbx9lq50q")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/aybabtme/rgbterm")) +; (home-page "https://github.com/aybabtme/rgbterm") +; (synopsis "RGB terminal") +; (description +; "Package rgbterm colorizes bytes and strings using RGB colors, for a full range +;of pretty terminal strings.") +; (license license:expat))) +;(define-public go-github-com-aws-aws-sdk-go-1.20.6 +; (package +; (name "go-github-com-aws-aws-sdk-go") +; (version "1.20.6") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/aws/aws-sdk-go") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "016vy5s9finyfgh08j7rvn2pnwymdgj2ydr59w57pysnri87mdwx")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/aws/aws-sdk-go")) +; (propagated-inputs +; `(("go-github-com-jmespath-go-jmespath-0.0.0-20180206201540-c2b33e8439af" +; ,go-github-com-jmespath-go-jmespath-0.0.0-20180206201540-c2b33e8439af))) +; (home-page "https://github.com/aws/aws-sdk-go") +; (synopsis "AWS SDK for Go") +; (description +; "Package sdk is the official AWS SDK for the Go programming language.") +; (license license:asl2.0))) +;(define-public go-github-com-aphistic-sweet-0.2.0 +; (package +; (name "go-github-com-aphistic-sweet") +; (version "0.2.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/aphistic/sweet") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1bb4qagfxf6byqn2yx0vq24xfvisz3ah4w6bvqclc8cklvfngw43")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/aphistic/sweet")) +; (propagated-inputs +; `(("go-golang-org-x-crypto-0.0.0-20190426145343-a29dc8fdc734" +; ,go-golang-org-x-crypto-0.0.0-20190426145343-a29dc8fdc734) +; ("go-github-com-sergi-go-diff-1.0.0" +; ,go-github-com-sergi-go-diff-1.0.0) +; ("go-github-com-onsi-gomega-1.5.0" ,go-github-com-onsi-gomega-1.5.0) +; ("go-github-com-mgutz-ansi-0.0.0-20170206155736-9520e82c474b" +; ,go-github-com-mgutz-ansi-0.0.0-20170206155736-9520e82c474b) +; ("go-github-com-mattn-go-colorable-0.1.1" +; ,go-github-com-mattn-go-colorable-0.1.1))) +; (home-page "https://github.com/aphistic/sweet") +; (synopsis "sweet") +; (description +; "Sweet is a pluggable test runner capable of hooking into standard Go tests. It +;attempts to provide access to the standard Go test tool as close as possible +;while adding support for test suites and plugins that can hook into test results +;to add additional functionality.") +; (license license:expat))) +;(define-public go-github-com-aphistic-golf-0.0.0-20180712155816-02c07f170c5a +; (package +; (name "go-github-com-aphistic-golf") +; (version "0.0.0-20180712155816-02c07f170c5a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/aphistic/golf") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1qixab9bb29wqbr4nc5j3g25hq1j7am93f181rkj7a4qacncx763")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/aphistic/golf")) +; (home-page "https://github.com/aphistic/golf") +; (synopsis "golf") +; (description +; "This package provides logging capabilities using the GELF +;(@url{https://www.graylog.org/resources/gelf-2/,https://www.graylog.org/resources/gelf-2/}) +;log format") +; (license license:expat))) +;(define-public go-github-com-apex-logs-1.0.0 +; (package +; (name "go-github-com-apex-logs") +; (version "1.0.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/apex/logs") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "1kysjp3s8718p02ngpr60gnjjspv0a69biksfjqa1540svrbi850")))) +; (build-system go-build-system) +; (arguments '(#:import-path "github.com/apex/logs")) +; (propagated-inputs +; `(("go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0" +; ,go-github-com-tj-assert-0.0.0-20171129193455-018094318fb0) +; ("go-github-com-stretchr-testify-1.3.0" +; ,go-github-com-stretchr-testify-1.3.0))) +; (home-page "https://github.com/apex/logs") +; (synopsis "Example") +; (description "Go client for @url{https://apex.sh/logs/,Apex Logs}.") +; (license license:expat))) +;(define-public go-golang-org-x-text-0.3.0 +; (package +; (name "go-golang-org-x-text") +; (version "0.3.0") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/text") +; (commit (string-append "v" version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/text")) +; (home-page "https://golang.org/x/text") +; (synopsis "Go Text") +; (description +; "text is a repository of text-related packages related to internationalization +;(i18n) and localization (l10n), such as character encodings, text +;transformations, and locale-specific text handling.") +; (license license:bsd-3))) +;(define-public go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a +; (package +; (name "go-golang-org-x-sys") +; (version "0.0.0-20190215142949-d0b11bdaac8a") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/sys") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/sys")) +; (home-page "https://golang.org/x/sys") +; (synopsis "sys") +; (description +; "This repository holds supplemental Go packages for low-level interactions with +;the operating system.") +; (license license:bsd-3))) +;(define-public go-golang-org-x-crypto-0.0.0-20190308221718-c2843e01d9a2 +; (package +; (name "go-golang-org-x-crypto") +; (version "0.0.0-20190308221718-c2843e01d9a2") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://go.googlesource.com/crypto") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r")))) +; (build-system go-build-system) +; (arguments '(#:import-path "golang.org/x/crypto")) +; (propagated-inputs +; `(("go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a" +; ,go-golang-org-x-sys-0.0.0-20190215142949-d0b11bdaac8a))) +; (home-page "https://golang.org/x/crypto") +; (synopsis "Go Cryptography") +; (description +; "This repository holds supplementary Go cryptography libraries.") +; (license license:bsd-3))) +;(define-public go-gopkg-in-yaml-v3-3.0.0-20200605160147-a5ece683394c +; (package +; (name "go-gopkg-in-yaml-v3") +; (version "3.0.0-20200605160147-a5ece683394c") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://gopkg.in/yaml.v3") +; (commit (go-version->git-ref version)))) +; (file-name (git-file-name name version)) +; (sha256 +; (base32 "03cm7c3p5fh0aa8vnxv5010dgqqr268ivb480ix1salxx3396w68")))) +; (build-system go-build-system) +; (arguments +; '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) +; (propagated-inputs +; `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" +; ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) +; (home-page "https://gopkg.in/yaml.v3") +; (synopsis "YAML support for the Go language") +; (description "Package yaml implements YAML support for the Go language.") +; (license license:expat))) ;; FIXME YD - check license diff --git a/glicid/packages/linux.scm b/glicid/packages/linux.scm index c659f88..561c968 100644 --- a/glicid/packages/linux.scm +++ b/glicid/packages/linux.scm @@ -175,121 +175,121 @@ (define-public libfabric-latest (latest-version local-libfabric gnu:libfabric)) -(define-public apptainer - (package - (name "apptainer") - (version "1.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/apptainer/apptainer/") - (commit "a308dd1a664a0bf01ff74b39c69d07442c7fac4f") - )) - (sha256 (base32 "0k2fkwlvp72vh07a7m1sdzj1f3zml9y5mligzhnscs7zzlv5s28j")) - (modules '((srfi srfi-26))) - (snippet - '(call-with-output-file "VERSION" (cut display version <>)) - ) - ) - ) - (home-page "https://apptainer.org/") - (synopsis "THE CONTAINER SYSTEM FOR SECURE HIGH PERFORMANCE COMPUTING") - (description "Apptainer/Singularity is the most widely used container system for HPC. - It is designed to execute applications at bare-metal performance while - being secure, portable, and 100% reproducible. Apptainer is an - open-source project with a friendly community of developers and users. - The user base continues to expand, with Apptainer/Singularity now used - across industry and academia in many areas of work." - ) - (license license:bsd-3) - (build-system gnu-build-system) - (inputs `( - ("libarchive", libarchive) - ("python", python-wrapper) - ("zlib", zlib) - ("squashfs-tools", squashfs-tools) - ("openssl", openssl) - ("libseccomp", gnu:libseccomp) - ("cryptsetup", cryptsetup) - ("go", go-1.17) - ("pkg-config", pkg-config) - ("go-github-com-netflix-go-expect-0.0.0-20220104043353-73e0943537d2", go-github-com-netflix-go-expect-0.0.0-20220104043353-73e0943537d2) - ("go-github-com-protonmail-go-crypto-0.0.0-20220113124808-70ae35bab23f", go-github-com-protonmail-go-crypto-0.0.0-20220113124808-70ae35bab23f) - ("go-github-com-adigunhammedolalekan-registry-auth-0.0.0-20200730122110-8cde180a3a60", go-github-com-adigunhammedolalekan-registry-auth-0.0.0-20200730122110-8cde180a3a60) - ("go-github-com-apex-log-1.9.0", go-github-com-apex-log-1.9.0) - ("go-github-com-apptainer-container-key-client-0.7.2", go-github-com-apptainer-container-key-client-0.7.2) - ("go-github-com-apptainer-container-library-client-1.2.2", go-github-com-apptainer-container-library-client-1.2.2) - ("go-github-com-apptainer-sif-v2-2.3.2", go-github-com-apptainer-sif-v2-2.3.2) - ("go-github-com-blang-semver-v4-4.0.0", go-github-com-blang-semver-v4-4.0.0) - ("go-github-com-buger-jsonparser-1.1.1", go-github-com-buger-jsonparser-1.1.1) - ("go-github-com-cenkalti-backoff-v4-4.1.2", go-github-com-cenkalti-backoff-v4-4.1.2) - ("go-github-com-containerd-cgroups-1.0.3", go-github-com-containerd-cgroups-1.0.3) - ("go-github-com-containerd-containerd-1.6.0", go-github-com-containerd-containerd-1.6.0) - ("go-github-com-containernetworking-cni-1.0.1", go-github-com-containernetworking-cni-1.0.1) - ("go-github-com-containernetworking-plugins-1.1.0", go-github-com-containernetworking-plugins-1.1.0) - ("go-github-com-containers-image-v5-5.19.1", go-github-com-containers-image-v5-5.19.1) - ("go-github-com-creack-pty-1.1.17", go-github-com-creack-pty-1.1.17) - ("go-github-com-cyphar-filepath-securejoin-0.2.3", go-github-com-cyphar-filepath-securejoin-0.2.3) - ("go-github-com-docker-docker-20.10.12+incompatible", go-github-com-docker-docker-20.10.12+incompatible) - ("go-github-com-fatih-color-1.13.0", go-github-com-fatih-color-1.13.0) - ("go-github-com-go-log-log-0.2.0", go-github-com-go-log-log-0.2.0) - ("go-github-com-google-uuid-1.3.0", go-github-com-google-uuid-1.3.0) - ("go-github-com-opencontainers-go-digest-1.0.0", go-github-com-opencontainers-go-digest-1.0.0) - ("go-github-com-opencontainers-image-spec-1.0.3-0.20211202193544-a5463b7f9c84", go-github-com-opencontainers-image-spec-1.0.3-0.20211202193544-a5463b7f9c84) - ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417", go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417) - ("go-github-com-opencontainers-runtime-tools-0.9.1-0.20210326182921-59cdde06764b", go-github-com-opencontainers-runtime-tools-0.9.1-0.20210326182921-59cdde06764b) - ("go-github-com-opencontainers-selinux-1.10.0", go-github-com-opencontainers-selinux-1.10.0) - ("go-github-com-opencontainers-umoci-0.4.7", go-github-com-opencontainers-umoci-0.4.7) - ("go-github-com-pelletier-go-toml-1.9.4", go-github-com-pelletier-go-toml-1.9.4) - ("go-github-com-pkg-errors-0.9.1", go-github-com-pkg-errors-0.9.1) - ("go-github-com-seccomp-containers-golang-0.6.0", go-github-com-seccomp-containers-golang-0.6.0) - ("go-github-com-seccomp-libseccomp-golang-0.9.2-0.20210429002308-3879420cc921", go-github-com-seccomp-libseccomp-golang-0.9.2-0.20210429002308-3879420cc921) - ("go-github-com-spf13-cobra-1.3.0", go-github-com-spf13-cobra-1.3.0) - ("go-github-com-spf13-pflag-1.0.5", go-github-com-spf13-pflag-1.0.5) - ("go-github-com-sylabs-json-resp-0.8.0", go-github-com-sylabs-json-resp-0.8.0) - ("go-github-com-vbauerster-mpb-v7-7.4.1", go-github-com-vbauerster-mpb-v7-7.4.1) - ("go-golang-org-x-sys-0.0.0-20220209214540-3681064d5158", go-golang-org-x-sys-0.0.0-20220209214540-3681064d5158) - ("go-golang-org-x-term-0.0.0-20210916214954-140adaaadfaf", go-golang-org-x-term-0.0.0-20210916214954-140adaaadfaf) - ("go-gopkg-in-yaml-v2-2.4.0", go-gopkg-in-yaml-v2-2.4.0) - ("go-gotest-tools-v3-3.1.0", go-gotest-tools-v3-3.1.0) - ("go-mvdan-cc-sh-v3-3.4.3-0.20220202175809-113ed667a8a7", go-mvdan-cc-sh-v3-3.4.3-0.20220202175809-113ed667a8a7) - ("go-oras-land-oras-go-1.1.0", go-oras-land-oras-go-1.1.0) - ("go-github-com-opencontainers-image-spec-1.0.2-0.20211117181255-693428a734f5", go-github-com-opencontainers-image-spec-1.0.2-0.20211117181255-693428a734f5) - ("go-github-com-moby-sys-0.0.0-20220308220145-03355939d693", go-github-com-moby-sys-0.0.0-20220308220145-03355939d693) - ("go-github-com-urfave-cli-1.22.5", go-github-com-urfave-cli-1.22.5) - ("go-github-com-xeipuuv-gojsonpointer-0.0.0-20190905194746-02993c407bfb", go-github-com-xeipuuv-gojsonpointer-0.0.0-20190905194746-02993c407bfb) - ("go-github-com-yvasiyarov-go-metrics-0.0.0-20150112132944-c25f46c4b940", go-github-com-yvasiyarov-go-metrics-0.0.0-20150112132944-c25f46c4b940) - ("go-github-com-yvasiyarov-gorelic-0.0.6", go-github-com-yvasiyarov-gorelic-0.0.6) - ("go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20160601141957-9c099fbc30e9", go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20160601141957-9c099fbc30e9) - )) - (arguments - `(#:phases - (modify-phases %standard-phases - (replace 'configure - (lambda* (#:key inputs native-inputs propagated-inputs configure-flags #:allow-other-keys) - (begin - (invoke "./mconfig" "--localstatedir=/var") - ) - ) - ) - (replace 'build - (lambda* (#:key inputs native-inputs propagated-inputs configure-flags #:allow-other-keys) - (begin - (invoke "make" "-C" "builddir") - ) - ) - ) - (replace 'install - (lambda* (#:key inputs native-inputs propagated-inputs configure-flags #:allow-other-keys) - (begin - (invoke "make" "-C" "builddir" "install") - ) - ) - ) - ) - ) - ) - ) -) - +;(define-public apptainer +; (package +; (name "apptainer") +; (version "1.0.1") +; (source +; (origin +; (method git-fetch) +; (uri (git-reference +; (url "https://github.com/apptainer/apptainer/") +; (commit "a308dd1a664a0bf01ff74b39c69d07442c7fac4f") +; )) +; (sha256 (base32 "0k2fkwlvp72vh07a7m1sdzj1f3zml9y5mligzhnscs7zzlv5s28j")) +; (modules '((srfi srfi-26))) +; (snippet +; '(call-with-output-file "VERSION" (cut display version <>)) +; ) +; ) +; ) +; (home-page "https://apptainer.org/") +; (synopsis "THE CONTAINER SYSTEM FOR SECURE HIGH PERFORMANCE COMPUTING") +; (description "Apptainer/Singularity is the most widely used container system for HPC. +; It is designed to execute applications at bare-metal performance while +; being secure, portable, and 100% reproducible. Apptainer is an +; open-source project with a friendly community of developers and users. +; The user base continues to expand, with Apptainer/Singularity now used +; across industry and academia in many areas of work." +; ) +; (license license:bsd-3) +; (build-system gnu-build-system) +; (inputs `( +; ("libarchive", libarchive) +; ("python", python-wrapper) +; ("zlib", zlib) +; ("squashfs-tools", squashfs-tools) +; ("openssl", openssl) +; ("libseccomp", gnu:libseccomp) +; ("cryptsetup", cryptsetup) +; ("go", go-1.17) +; ("pkg-config", pkg-config) +; ("go-github-com-netflix-go-expect-0.0.0-20220104043353-73e0943537d2", go-github-com-netflix-go-expect-0.0.0-20220104043353-73e0943537d2) +; ("go-github-com-protonmail-go-crypto-0.0.0-20220113124808-70ae35bab23f", go-github-com-protonmail-go-crypto-0.0.0-20220113124808-70ae35bab23f) +; ("go-github-com-adigunhammedolalekan-registry-auth-0.0.0-20200730122110-8cde180a3a60", go-github-com-adigunhammedolalekan-registry-auth-0.0.0-20200730122110-8cde180a3a60) +; ("go-github-com-apex-log-1.9.0", go-github-com-apex-log-1.9.0) +; ("go-github-com-apptainer-container-key-client-0.7.2", go-github-com-apptainer-container-key-client-0.7.2) +; ("go-github-com-apptainer-container-library-client-1.2.2", go-github-com-apptainer-container-library-client-1.2.2) +; ("go-github-com-apptainer-sif-v2-2.3.2", go-github-com-apptainer-sif-v2-2.3.2) +; ("go-github-com-blang-semver-v4-4.0.0", go-github-com-blang-semver-v4-4.0.0) +; ("go-github-com-buger-jsonparser-1.1.1", go-github-com-buger-jsonparser-1.1.1) +; ("go-github-com-cenkalti-backoff-v4-4.1.2", go-github-com-cenkalti-backoff-v4-4.1.2) +; ("go-github-com-containerd-cgroups-1.0.3", go-github-com-containerd-cgroups-1.0.3) +; ("go-github-com-containerd-containerd-1.6.0", go-github-com-containerd-containerd-1.6.0) +; ("go-github-com-containernetworking-cni-1.0.1", go-github-com-containernetworking-cni-1.0.1) +; ("go-github-com-containernetworking-plugins-1.1.0", go-github-com-containernetworking-plugins-1.1.0) +; ("go-github-com-containers-image-v5-5.19.1", go-github-com-containers-image-v5-5.19.1) +; ("go-github-com-creack-pty-1.1.17", go-github-com-creack-pty-1.1.17) +; ("go-github-com-cyphar-filepath-securejoin-0.2.3", go-github-com-cyphar-filepath-securejoin-0.2.3) +; ("go-github-com-docker-docker-20.10.12+incompatible", go-github-com-docker-docker-20.10.12+incompatible) +; ("go-github-com-fatih-color-1.13.0", go-github-com-fatih-color-1.13.0) +; ("go-github-com-go-log-log-0.2.0", go-github-com-go-log-log-0.2.0) +; ("go-github-com-google-uuid-1.3.0", go-github-com-google-uuid-1.3.0) +; ("go-github-com-opencontainers-go-digest-1.0.0", go-github-com-opencontainers-go-digest-1.0.0) +; ("go-github-com-opencontainers-image-spec-1.0.3-0.20211202193544-a5463b7f9c84", go-github-com-opencontainers-image-spec-1.0.3-0.20211202193544-a5463b7f9c84) +; ("go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417", go-github-com-opencontainers-runtime-spec-1.0.3-0.20210326190908-1c3f411f0417) +; ("go-github-com-opencontainers-runtime-tools-0.9.1-0.20210326182921-59cdde06764b", go-github-com-opencontainers-runtime-tools-0.9.1-0.20210326182921-59cdde06764b) +; ("go-github-com-opencontainers-selinux-1.10.0", go-github-com-opencontainers-selinux-1.10.0) +; ("go-github-com-opencontainers-umoci-0.4.7", go-github-com-opencontainers-umoci-0.4.7) +; ("go-github-com-pelletier-go-toml-1.9.4", go-github-com-pelletier-go-toml-1.9.4) +; ("go-github-com-pkg-errors-0.9.1", go-github-com-pkg-errors-0.9.1) +; ("go-github-com-seccomp-containers-golang-0.6.0", go-github-com-seccomp-containers-golang-0.6.0) +; ("go-github-com-seccomp-libseccomp-golang-0.9.2-0.20210429002308-3879420cc921", go-github-com-seccomp-libseccomp-golang-0.9.2-0.20210429002308-3879420cc921) +; ("go-github-com-spf13-cobra-1.3.0", go-github-com-spf13-cobra-1.3.0) +; ("go-github-com-spf13-pflag-1.0.5", go-github-com-spf13-pflag-1.0.5) +; ("go-github-com-sylabs-json-resp-0.8.0", go-github-com-sylabs-json-resp-0.8.0) +; ("go-github-com-vbauerster-mpb-v7-7.4.1", go-github-com-vbauerster-mpb-v7-7.4.1) +; ("go-golang-org-x-sys-0.0.0-20220209214540-3681064d5158", go-golang-org-x-sys-0.0.0-20220209214540-3681064d5158) +; ("go-golang-org-x-term-0.0.0-20210916214954-140adaaadfaf", go-golang-org-x-term-0.0.0-20210916214954-140adaaadfaf) +; ("go-gopkg-in-yaml-v2-2.4.0", go-gopkg-in-yaml-v2-2.4.0) +; ("go-gotest-tools-v3-3.1.0", go-gotest-tools-v3-3.1.0) +; ("go-mvdan-cc-sh-v3-3.4.3-0.20220202175809-113ed667a8a7", go-mvdan-cc-sh-v3-3.4.3-0.20220202175809-113ed667a8a7) +; ("go-oras-land-oras-go-1.1.0", go-oras-land-oras-go-1.1.0) +; ("go-github-com-opencontainers-image-spec-1.0.2-0.20211117181255-693428a734f5", go-github-com-opencontainers-image-spec-1.0.2-0.20211117181255-693428a734f5) +; ("go-github-com-moby-sys-0.0.0-20220308220145-03355939d693", go-github-com-moby-sys-0.0.0-20220308220145-03355939d693) +; ("go-github-com-urfave-cli-1.22.5", go-github-com-urfave-cli-1.22.5) +; ("go-github-com-xeipuuv-gojsonpointer-0.0.0-20190905194746-02993c407bfb", go-github-com-xeipuuv-gojsonpointer-0.0.0-20190905194746-02993c407bfb) +; ("go-github-com-yvasiyarov-go-metrics-0.0.0-20150112132944-c25f46c4b940", go-github-com-yvasiyarov-go-metrics-0.0.0-20150112132944-c25f46c4b940) +; ("go-github-com-yvasiyarov-gorelic-0.0.6", go-github-com-yvasiyarov-gorelic-0.0.6) +; ("go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20160601141957-9c099fbc30e9", go-github-com-yvasiyarov-newrelic-platform-go-0.0.0-20160601141957-9c099fbc30e9) +; )) +; (arguments +; `(#:phases +; (modify-phases %standard-phases +; (replace 'configure +; (lambda* (#:key inputs native-inputs propagated-inputs configure-flags #:allow-other-keys) +; (begin +; (invoke "./mconfig" "--localstatedir=/var") +; ) +; ) +; ) +; (replace 'build +; (lambda* (#:key inputs native-inputs propagated-inputs configure-flags #:allow-other-keys) +; (begin +; (invoke "make" "-C" "builddir") +; ) +; ) +; ) +; (replace 'install +; (lambda* (#:key inputs native-inputs propagated-inputs configure-flags #:allow-other-keys) +; (begin +; (invoke "make" "-C" "builddir" "install") +; ) +; ) +; ) +; ) +; ) +; ) +; ) +;) +; From 7f25d70b670257d1495e13ac6345941eaac38ab9 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Tue, 29 Mar 2022 10:45:50 +0200 Subject: [PATCH 348/383] openconnect 8.20 upstream --- glicid/packages/vpn.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 glicid/packages/vpn.scm diff --git a/glicid/packages/vpn.scm b/glicid/packages/vpn.scm new file mode 100644 index 0000000..5a71570 --- /dev/null +++ b/glicid/packages/vpn.scm @@ -0,0 +1,22 @@ +(define-module (glicid packages vpn) + #:use-module (guix packages) + #:use-module ((gnu packages vpn) #:prefix gnu:) + #:use-module (guix download) +) + +(define-public openconnect-upstream + (package + (inherit gnu:openconnect) + (version "8.20") + (source (origin + (method url-fetch) + (uri (string-append "http://www.infradead.org/pub/openconnect/download" + "openconnect-" version ".tar.gz")) + (sha256 + (base32 "1cdsx4nsrwawbsisfkldfc9i4qn60g03vxb13nzppr2br9p4rrih")))) + + (name "openconnect-upstream") +; ) + ) +) + From 950b8d01622aa6b455ea65ad9c0747b2d5cba59c Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Tue, 29 Mar 2022 16:26:23 +0200 Subject: [PATCH 349/383] openconnect gnome ? --- glicid/packages/gnome.scm | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/glicid/packages/gnome.scm b/glicid/packages/gnome.scm index 13ca336..86241bf 100644 --- a/glicid/packages/gnome.scm +++ b/glicid/packages/gnome.scm @@ -1,7 +1,11 @@ (define-module (glicid packages gnome) #:use-module (guix packages) + #:use-module (guix download) + #:use-module (guix utils) #:use-module (gnu packages sssd) #:use-module (gnu packages gnome) + #:use-module (glicid utils) + #:use-module (glicid packages vpn) ) (define-public glicid-terminator @@ -16,3 +20,32 @@ ) ) ) + + +(define-public network-manager-openconnect-upstream + (package + (inherit network-manager-openconnect) + (name "network-manager-openconnect-upstream") + (version "1.2.8") +; (version "1.2.7") + (source (origin + (method url-fetch) + (uri (string-append + "mirror://gnome/sources/NetworkManager-openconnect/" + (version-major+minor version) + "/NetworkManager-openconnect-" version ".tar.xz")) + (sha256 + (base32 + "1k6d6cv2c9v8gf0f2js6cklr3ijhaanbz0nhvlwy5n42bmwamvax")))) + ) +) + +(define-public network-manager-openconnect-glicid + (transform-package + ( + (instead-of "openconnect" openconnect-upstream) + network-manager-openconnect + ) "glicid" + ) +) + From b8fa80d820c8c07cd4ba643b82954f3a0925eb77 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Wed, 6 Apr 2022 12:19:22 +0200 Subject: [PATCH 350/383] custom sudo --- glicid/packages/admin.scm | 135 ++++++++------------------------------ 1 file changed, 29 insertions(+), 106 deletions(-) diff --git a/glicid/packages/admin.scm b/glicid/packages/admin.scm index 56bbc6e..7d7ce47 100644 --- a/glicid/packages/admin.scm +++ b/glicid/packages/admin.scm @@ -1,13 +1,14 @@ (define-module (glicid packages admin) - #:use-module (gnu packages admin) + #:use-module ((gnu packages admin) #:prefix gnu:) #:use-module (gnu packages base) + #:use-module (gnu packages compression) + #:use-module (gnu packages cyrus-sasl) + #:use-module (gnu packages groff) #:use-module (gnu packages hurd) #:use-module (gnu packages linux) - #:use-module (gnu packages compression) - #:use-module (gnu packages groff) #:use-module (gnu packages openldap) + #:use-module (gnu packages pkg-config) #:use-module (gnu packages tls) - #:use-module (gnu packages cyrus-sasl) #:use-module (guix build-system gnu) #:use-module (guix download) #:use-module ((guix licenses) #:prefix license:) @@ -15,105 +16,27 @@ #:use-module (guix utils) ) -(define-public sudo-with-ldap - (package - (name "sudo-with-ldap") - (version "1.9.8p2") - (source (origin - (method url-fetch) - (uri - (list - (string-append "https://www.sudo.ws/sudo/dist/sudo-" version ".tar.gz") - (string-append "ftp://ftp.sudo.ws/pub/sudo/OLD/sudo-" version ".tar.gz") - ) - ) - (sha256 (base32 "0b8gd15l2g22w4fhhz0gzmq5c8370klanmy2c1p3px6yly6qnfwy")) - (modules '((guix build utils))) - (snippet - '(begin - (delete-file-recursively "lib/zlib") - ) - ) - )) - (build-system gnu-build-system) - (outputs (list "out")) - (arguments - `(#:configure-flags - (list - (string-append "--docdir=" (assoc-ref %outputs "out") "/share/doc/" ,name "-" ,version) - "--with-logpath=/var/log/sudo.log" - "--with-rundir=/var/run/sudo" ; must be cleaned up at boot time - "--with-vardir=/var/db/sudo" - "--with-iologdir=/var/log/sudo-io" - "--enable-sasl" - "--with-ldap" - "--enable-openssl" - "--with-nsswitch" - "--with-pam-login" - ;; 'visudo.c' expects _PATH_MV to be defined, but glibc doesn't provide it. - (string-append "CPPFLAGS=-D_PATH_MV='\"" (assoc-ref %build-inputs "coreutils") "/bin/mv\"'") - ) - ;; Avoid non-determinism; see . - #:parallel-build? #f - #:phases - (modify-phases %standard-phases - (add-before 'configure 'pre-configure - (lambda _ - (substitute* "src/sudo_usage.h.in" - ;; Do not capture 'configure' arguments since we would - ;; unduly retain references, and also because the - ;; CPPFLAGS above would close the string literal prematurely. - (("@CONFIGURE_ARGS@") "\"\"") - ) - (substitute* (find-files "." "Makefile\\.in") - ;; Allow installation as non-root. - (("-o [[:graph:]]+ -g [[:graph:]]+") "") - ;; Don't try to create /etc/sudoers. - (("^install: (.*)install-sudoers(.*)" _ before after) (string-append "install: " before after "\n")) - ;; Don't try to create /run/sudo. - (("\\$\\(DESTDIR\\)\\$\\(rundir\\)") "$(TMPDIR)/dummy") - ;; Install example sudo{,_logsrvd}.conf to the right place. - (("\\$\\(DESTDIR\\)\\$\\(sysconfdir\\)") "$(DESTDIR)/$(docdir)/examples") - ;; Don't try to create /var/db/sudo. - (("\\$\\(DESTDIR\\)\\$\\(vardir\\)") "$(TMPDIR)/dummy") - ) - ;; ‘Checking existing [/etc/]sudoers file for syntax errors’ is - ;; not the task of the build system, and fails. - (substitute* "plugins/sudoers/Makefile.in" - (("^pre-install:" match) (string-append match "\ndisabled-" match)) - ) - ) - ) - ) - ;; XXX: The 'testsudoers' test series expects user 'root' to exist, but - ;; the chroot's /etc/passwd doesn't have it. Turn off the tests. - #:tests? #f - ) - ) - (native-inputs - (list groff) - ) - (inputs - `(("coreutils" ,coreutils) - ,@(if (hurd-target?) - '() - `(("linux-pam" ,linux-pam)) - ) - ("zlib" ,zlib) - ("openldap" ,openldap) - ("openssl" ,openssl) - ("cyrus-sasl" ,cyrus-sasl) - ) - ) - (home-page "https://www.sudo.ws/") - (synopsis "Run commands as root") - (description - "Sudo (su \"do\") allows a system administrator to delegate authority to - give certain users (or groups of users) the ability to run some (or all) - commands as root or another user while providing an audit trail of the - commands and their arguments." - ) - ;; See . - (license license:x11) - ) -) + +(define-public sudo + (let* ((sudo-minimal gnu:sudo)) + (package + (inherit sudo-minimal) + (name (string-append (package-name sudo-minimal) "-with-ldap")) + (arguments + (substitute-keyword-arguments (package-arguments sudo-minimal) + ((#:configure-flags flags) + `(append (list + "--enable-sasl" + "--with-ldap" + "--enable-openssl" + "--with-nsswitch") + ,flags)))) + (inputs (modify-inputs (package-inputs sudo-minimal) + (delete "gnutls") + (append openldap + openssl + cyrus-sasl))) + (native-inputs (modify-inputs (package-native-inputs sudo-minimal) + (append pkg-config)))))) + +sudo From b63a026fd09e823d05a6923af0a3766fe9fdd800 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Wed, 6 Apr 2022 12:20:56 +0200 Subject: [PATCH 351/383] custom sudo --- glicid/packages/admin.scm | 2 -- 1 file changed, 2 deletions(-) diff --git a/glicid/packages/admin.scm b/glicid/packages/admin.scm index 7d7ce47..d1a8666 100644 --- a/glicid/packages/admin.scm +++ b/glicid/packages/admin.scm @@ -38,5 +38,3 @@ cyrus-sasl))) (native-inputs (modify-inputs (package-native-inputs sudo-minimal) (append pkg-config)))))) - -sudo From ee72b59f37256f77a3190429df439d222ba38c30 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Wed, 6 Apr 2022 12:30:38 +0200 Subject: [PATCH 352/383] custom sudo --- glicid/packages/admin.scm | 1 - 1 file changed, 1 deletion(-) diff --git a/glicid/packages/admin.scm b/glicid/packages/admin.scm index d1a8666..08d42b6 100644 --- a/glicid/packages/admin.scm +++ b/glicid/packages/admin.scm @@ -32,7 +32,6 @@ "--with-nsswitch") ,flags)))) (inputs (modify-inputs (package-inputs sudo-minimal) - (delete "gnutls") (append openldap openssl cyrus-sasl))) From f36df6258b2701c2ecf4a086dd2145593d56c8e1 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Wed, 20 Apr 2022 14:59:14 +0200 Subject: [PATCH 353/383] backporting old nginx definition --- glicid/packages/nginx.scm | 82 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 82 insertions(+) diff --git a/glicid/packages/nginx.scm b/glicid/packages/nginx.scm index 906231b..5d35a2d 100644 --- a/glicid/packages/nginx.scm +++ b/glicid/packages/nginx.scm @@ -18,6 +18,88 @@ #:use-module (glicid packages openldap) ) +(define-public nginx + (package + (name "nginx") + (version "1.21.6") + (source (origin + (method url-fetch) + (uri (string-append "https://nginx.org/download/nginx-" version ".tar.gz")) + (sha256 (base32 "1bh52jqqcaj5wlh2kvhxr00jhk2hnk8k97ki4pwyj4c8920p1p36")))) + (build-system gnu-build-system) + (inputs (list libxml2 libxslt openssl pcre zlib)) + (arguments + `(#:tests? #f + #:phases + (modify-phases %standard-phases + (add-before 'configure 'patch-/bin/sh + (lambda _ + (substitute* "auto/feature" + (("/bin/sh") (which "sh"))) + #t)) + (replace 'configure + ;; The configure script is hand-written, not from GNU autotools. + (lambda* (#:key configure-flags inputs outputs #:allow-other-keys) + (let ((flags + (append (list (string-append "--prefix=" (assoc-ref outputs "out")) + "--with-http_ssl_module" + "--with-http_v2_module" + "--with-http_xslt_module" + "--with-http_gzip_static_module" + "--with-http_gunzip_module" + "--with-http_addition_module" + "--with-http_sub_module" + "--with-pcre-jit" + "--with-debug" + "--with-stream" + ;; Even when not cross-building, we pass the + ;; --crossbuild option to avoid customizing for the + ;; kernel version on the build machine. + ,(let ((system "Linux") ; uname -s + (release "3.2.0") ; uname -r + ;; uname -m + (machine (match (or (%current-target-system) + (%current-system)) + ("x86_64-linux" "x86_64") + ("i686-linux" "i686") + ("mips64el-linux" "mips64") + (_ "UNSUPPORTED")))) + (string-append "--crossbuild=" system ":" release ":" machine) + )) + configure-flags))) + (setenv "CC" ,(cc-for-target)) + (setenv "CFLAGS" ; CPPFLAGS is not respected + (string-append "-I" (assoc-ref inputs "libxml2") + "/include/libxml2")) + (format #t "configure flags: ~s~%" flags) + (apply invoke "./configure" flags) + #t))) + (add-after 'install 'install-man-page + (lambda* (#:key outputs #:allow-other-keys) + (let* ((out (assoc-ref outputs "out")) + (man (string-append out "/share/man"))) + (install-file "objs/nginx.8" (string-append man "/man8")) + #t))) + (add-after 'install 'fix-root-dirs + (lambda* (#:key outputs #:allow-other-keys) + (let* ((out (assoc-ref outputs "out")) + (share (string-append out "/share/nginx"))) + (rmdir (string-append out "/logs")) + (mkdir-p share) + (rename-file (string-append out "/conf") + (string-append share "/conf")) + (rename-file (string-append out "/html") + (string-append share "/html")) + #t)))))) + (home-page "https://nginx.org") + (synopsis "HTTP and reverse proxy server") + (description + "Nginx (\"engine X\") is a high-performance web and reverse proxy server +created by Igor Sysoev. It can be used both as a stand-alone web server +and as a proxy to reduce the load on back-end HTTP or mail servers.") + (license (list license:bsd-2 license:expat license:bsd-3 license:bsd-4)))) + + (define-public nginx-ldap-auth-module (package (inherit nginx) From acf8c2a71057533748440989fbc9c0ea317809d9 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Wed, 20 Apr 2022 15:02:57 +0200 Subject: [PATCH 354/383] correcting licenses import --- glicid/packages/nginx.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/glicid/packages/nginx.scm b/glicid/packages/nginx.scm index 5d35a2d..70bb581 100644 --- a/glicid/packages/nginx.scm +++ b/glicid/packages/nginx.scm @@ -4,7 +4,7 @@ #:use-module (guix build-system gnu) #:use-module (guix download) #:use-module (guix git-download) - #:use-module ((guix licenses) #:select (asl2.0)) + #:use-module ((guix licenses) #:prefix license:) #:use-module (guix utils) #:use-module (gnu packages compression) #:use-module (gnu packages curl) @@ -176,7 +176,7 @@ and as a proxy to reduce the load on back-end HTTP or mail servers.") ) (synopsis "modsecurity module for nginx") (description "modsecurity module for nginx.") - (license asl2.0) + (license license:asl2.0) (home-page "https://github.com/SpiderLabs/ModSecurity") (build-system gnu-build-system) (inputs `( From 2604289f2fe44821bcc08e7e17abcd4977e5c7d2 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Wed, 20 Apr 2022 15:39:22 +0200 Subject: [PATCH 355/383] updating openldap to 2.6.1 --- glicid/packages/openldap.scm | 42 +++++++++++++++++------------------- 1 file changed, 20 insertions(+), 22 deletions(-) diff --git a/glicid/packages/openldap.scm b/glicid/packages/openldap.scm index 4721782..55e8281 100644 --- a/glicid/packages/openldap.scm +++ b/glicid/packages/openldap.scm @@ -25,36 +25,18 @@ (define-public openldap (package (name "openldap") - (version "2.6.0") + (version "2.6.1") (source (origin (method url-fetch) (uri (list (string-append "https://www.openldap.org/software/download/OpenLDAP/" "openldap-release/openldap-" version ".tgz") )) - (sha256 ( base32 "0kqswk8pxgnlibh0kz6py3a2x3yh9pfk6pyr2nx9lgjpmh75h75p" )) + (sha256 ( base32 "1wz6f3g3bbqgbbxs20zlappmmhapqbl791c0waibhz9djsk6wmwx" )) ) ) (build-system gnu-build-system) - (inputs `( - ("argon2", argon2) - ("cyrus-sasl", cyrus-sasl) - ("libevent", libevent) - ("libgcrypt", libgcrypt) - ("libltdl", libltdl) - ("lz4", lz4) - ("openssl", openssl) - ("perl", perl) - ("snappy", snappy) - ("unixodbc", unixodbc) - ("wiredtiger", wiredtiger) - ("zlib", zlib) - )) - (native-inputs `( - ("bdb", bdb) - ("groff", groff) - ("libtool", libtool) - ("pkg-config", pkg-config) - )) + (inputs (list argon2 cyrus-sasl libevent libgcrypt libltdl lz4 openssl perl snappy unixodbc wiredtiger zlib)) + (native-inputs (list bdb groff libtool pkg-config)) (arguments '( ; this is needed because the make check does not work inside guix #:tests? #f @@ -129,6 +111,22 @@ ) ) +(define-public openldap-2.6.0 + (package + (inherit openldap) + (name "openldap") + (version "2.6.0") + (source (origin + (method url-fetch) + (uri (list + (string-append "https://www.openldap.org/software/download/OpenLDAP/" "openldap-release/openldap-" version ".tgz") + )) + (sha256 ( base32 "0kqswk8pxgnlibh0kz6py3a2x3yh9pfk6pyr2nx9lgjpmh75h75p" )) + ) + ) + ) +) + (define-public nss-pam-ldapd (package (name "nss-pam-ldapd") From c7cdf583214320feb1051350ba73562010828471 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Fri, 22 Apr 2022 14:09:25 +0200 Subject: [PATCH 356/383] essai --- glicid/packages/mpi.scm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/glicid/packages/mpi.scm b/glicid/packages/mpi.scm index ed38a5e..4e56558 100644 --- a/glicid/packages/mpi.scm +++ b/glicid/packages/mpi.scm @@ -35,11 +35,15 @@ (define-public openmpi-glicid +(package + (inherit (transform-package ( (instead-of "slurm" slurm-glicid) openmpi-latest ) "glicid" ) + ) + ) ) (define-public openmpi-glicid-libfabric From 9cdce5c1098da907130f0669594d5cf7f4276e7b Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Fri, 22 Apr 2022 14:37:33 +0200 Subject: [PATCH 357/383] bump libfabric --- glicid/packages/linux.scm | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/glicid/packages/linux.scm b/glicid/packages/linux.scm index 561c968..4d31866 100644 --- a/glicid/packages/linux.scm +++ b/glicid/packages/linux.scm @@ -99,6 +99,22 @@ ) ) +(define-public libfabric-upstream-1.14.1 + (package + (inherit gnu:libfabric) + (version "1.14.1") + (name (string-append (package-name gnu:libfabric) "-upstream" )) + (source + (origin + (method url-fetch) + (uri (string-append "https://github.com/ofiwg/libfabric/releases/download/v" version "/libfabric-" version ".tar.bz2")) + (sha256 (base32 "1vca7p5cczlrayglps8ibdy0fz9nb9pm04jj07cikr58pjabpykc")) + ) + ) + ) +) + + (define-public libfabric-opx-beta-upstream-1.14.0-c (let ((commit "e127cd074bbfd8c50b9f3cfb5b8e24162f8076a4")) @@ -171,7 +187,8 @@ ;(define local-libfabric libfabric-opx-beta-upstream-1.14.0-c) -(define local-libfabric libfabric-opx-beta-upstream-1.14.0-d) +;(define local-libfabric libfabric-opx-beta-upstream-1.14.0-d) +(define local-libfabric libfabric-opx-beta-upstream-1.14.1) (define-public libfabric-latest (latest-version local-libfabric gnu:libfabric)) From dcb78636ec1ad30f4d552cb556cba40870aa67b1 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Fri, 22 Apr 2022 14:42:28 +0200 Subject: [PATCH 358/383] typo --- glicid/packages/linux.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glicid/packages/linux.scm b/glicid/packages/linux.scm index 4d31866..c1eb2d4 100644 --- a/glicid/packages/linux.scm +++ b/glicid/packages/linux.scm @@ -188,7 +188,7 @@ ;(define local-libfabric libfabric-opx-beta-upstream-1.14.0-c) ;(define local-libfabric libfabric-opx-beta-upstream-1.14.0-d) -(define local-libfabric libfabric-opx-beta-upstream-1.14.1) +(define local-libfabric libfabric-upstream-1.14.1) (define-public libfabric-latest (latest-version local-libfabric gnu:libfabric)) From 632f7aae7a7ac2f664bfc3a3ca869dbb4cf5d086 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Fri, 22 Apr 2022 17:31:58 +0200 Subject: [PATCH 359/383] bump libfabric (test opx) --- glicid/packages/linux.scm | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/glicid/packages/linux.scm b/glicid/packages/linux.scm index c1eb2d4..fe4011f 100644 --- a/glicid/packages/linux.scm +++ b/glicid/packages/linux.scm @@ -115,6 +115,22 @@ ) +(define-public libfabric-upstream-1.15.0rc3 + (package + (inherit gnu:libfabric) + (version "1.15.0rc3") + (name (string-append (package-name gnu:libfabric) "-upstream" )) + (source + (origin + (method url-fetch) + (uri (string-append "https://github.com/ofiwg/libfabric/releases/download/v" version "/libfabric-" version ".tar.bz2")) + (sha256 (base32 "177789c5wsw1vdvg3flgr8ca75xc1l2rfwh7qrqibhcdckpwz9p1")) + ) + ) + ) +) + + (define-public libfabric-opx-beta-upstream-1.14.0-c (let ((commit "e127cd074bbfd8c50b9f3cfb5b8e24162f8076a4")) @@ -188,7 +204,8 @@ ;(define local-libfabric libfabric-opx-beta-upstream-1.14.0-c) ;(define local-libfabric libfabric-opx-beta-upstream-1.14.0-d) -(define local-libfabric libfabric-upstream-1.14.1) +;(define local-libfabric libfabric-upstream-1.14.1) +(define local-libfabric libfabric-upstream-1.15.0rc3) (define-public libfabric-latest (latest-version local-libfabric gnu:libfabric)) From 9347825357836fab7108a06db001a78eb8d3236e Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Fri, 22 Apr 2022 18:10:06 +0200 Subject: [PATCH 360/383] libfabric was missing on ucx --- glicid/packages/fabric-management.scm | 31 ++++++++++++++++++++++++--- 1 file changed, 28 insertions(+), 3 deletions(-) diff --git a/glicid/packages/fabric-management.scm b/glicid/packages/fabric-management.scm index 6069807..09646c5 100644 --- a/glicid/packages/fabric-management.scm +++ b/glicid/packages/fabric-management.scm @@ -37,17 +37,42 @@ ) ) +(define-public ucx-upstream-1.12.1 + (package + (inherit gnu:ucx) + (name (string-append (package-name gnu:ucx) "-upstream" )) + (version "1.12.1") + (source + (origin + (method url-fetch) + (uri (string-append "https://github.com/openucx/ucx/releases/download/v" version "/ucx-" version ".tar.gz" )) + (sha256 (base32 "13mf30gdcqix8dyi0iwnsd5fn8b0syr03042y99s556swz44gd20")) + ) + ) + ) +) -(define local-ucx ucx-upstream-1.12.0) + + +(define local-ucx ucx-upstream-1.12.1) (define-public ucx-latest (latest-version local-ucx gnu:ucx)) +(define-public ucx-latest-rdma + (transform-package + ( + (instead-of "rdma-core" rdma-core-latest) + ucx-latest + ) "rdma" + ) +) + (define-public ucx-latest-glicid (transform-package ( - (instead-of "rdma-core" rdma-core-latest) - ucx-latest + (instead-of "libfabric" libfabric-latest) + ucx-latest-rdma ) "glicid" ) ) From a0caf6e59096de5e4db001e3eee57762eb4eca4e Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Fri, 22 Apr 2022 18:40:38 +0200 Subject: [PATCH 361/383] redefine benchs --- glicid/packages/benchmark.scm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/glicid/packages/benchmark.scm b/glicid/packages/benchmark.scm index 1eeb7bf..684901e 100644 --- a/glicid/packages/benchmark.scm +++ b/glicid/packages/benchmark.scm @@ -35,16 +35,16 @@ (define-public intel-mpi-benchmarks/openmpi-2021.3-libfabric-rdma (transform-package ( - (instead-of "openmpi" openmpi-glicid-libfabric-rdma) + (instead-of "openmpi" openmpi-glicid-libfabric-rdma-ucx) intel-mpi-benchmarks/openmpi-2021.3 - ) "fab+rdma") + ) "fab+rdma+ucx") ) (define intel-mpi-benchmark-transform-gcc-11 (gcc11-instead-of-gcc intel-mpi-benchmarks/openmpi-2021.3-libfabric-rdma) ) -(define-public intel-mpi-benchmarks/openmpi-2021.3-gcc-11 +(define intel-mpi-benchmarks/openmpi-2021.3-gcc-11 (package (inherit intel-mpi-benchmark-transform-gcc-11) (version (string-append (package-version intel-mpi-benchmark-transform-gcc-11) "-gcc-11" )) @@ -53,8 +53,8 @@ (define-public intel-mpi-benchmarks/openmpi-2021.3-all-ccipl (transform-package ( - (instead-of "openmpi-upstream-glicid-libfabric-rdma" openmpi-glicid-libfabric-rdma-ucx-ccipl) - intel-mpi-benchmarks/openmpi-2021.3-libfabric-rdma + (instead-of "openmpi" openmpi-glicid-libfabric-rdma-ucx-ccipl) + intel-mpi-benchmarks/openmpi-2021.3 ) "ccipl") ) From 3c00782cf44829cd08b89e0a6598b3f8e73a4629 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 29 Apr 2022 09:56:03 +0200 Subject: [PATCH 362/383] adding proxy to cuirass --- glicid/services/cuirass.scm | 416 ++++++++++++++++++++++++++++++++++++ 1 file changed, 416 insertions(+) create mode 100644 glicid/services/cuirass.scm diff --git a/glicid/services/cuirass.scm b/glicid/services/cuirass.scm new file mode 100644 index 0000000..e1a99e4 --- /dev/null +++ b/glicid/services/cuirass.scm @@ -0,0 +1,416 @@ +;;; GNU Guix --- Functional package management for GNU +;;; Copyright © 2016 Mathieu Lirzin +;;; Copyright © 2016, 2017, 2018, 2019, 2020, 2021 Ludovic Courtès +;;; Copyright © 2017, 2020 Mathieu Othacehe +;;; Copyright © 2017 Jan Nieuwenhuizen +;;; Copyright © 2018, 2019 Ricardo Wurmus +;;; Copyright © 2018 Clément Lassieur +;;; +;;; This file is part of GNU Guix. +;;; +;;; GNU Guix is free software; you can redistribute it and/or modify +;;; it under the terms of the GNU General Public License as published by +;;; the Free Software Foundation, either version 3 of the License, or +;;; (at your option) any later version. +;;; +;;; GNU Guix is distributed in the hope that it will be useful, +;;; but WITHOUT ANY WARRANTY; without even the implied warranty of +;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +;;; GNU General Public License for more details. +;;; +;;; You should have received a copy of the GNU General Public License +;;; along with GNU Guix. If not, see . + +(define-module (glicid services cuirass) + #:use-module (guix channels) + #:use-module (guix gexp) + #:use-module (guix records) + #:use-module (guix store) + #:use-module (guix utils) + #:use-module (gnu packages admin) + #:use-module (gnu packages ci) + #:use-module (gnu packages databases) + #:use-module (gnu packages version-control) + #:use-module (gnu services) + #:use-module (gnu services base) + #:use-module (gnu services databases) + #:use-module (gnu services shepherd) + #:use-module (gnu services admin) + #:use-module (gnu system shadow) + #:use-module (srfi srfi-1) + #:use-module (ice-9 match) + #:export (cuirass-remote-server-configuration + cuirass-remote-server-configuration? + + cuirass-configuration + cuirass-configuration? + cuirass-service-type + + cuirass-remote-worker-configuration + cuirass-remote-worker-configuration? + cuirass-remote-worker-service-type)) + +;;;; Commentary: +;;; +;;; This module implements a service that to run instances of Cuirass, a +;;; continuous integration tool. +;;; +;;;; Code: + +(define %cuirass-default-database + "dbname=cuirass") + +(define-record-type* + cuirass-remote-server-configuration make-cuirass-remote-server-configuration + cuirass-remote-server-configuration? + (backend-port cuirass-remote-server-configuration-backend-port ;int + (default 5555)) + (log-port cuirass-remote-server-configuration-log-port ;int + (default 5556)) + (publish-port cuirass-remote-server-configuration-publish-port ;int + (default 5557)) + (log-file cuirass-remote-server-log-file ;string + (default "/var/log/cuirass-remote-server.log")) + (cache cuirass-remote-server-configuration-cache ;string + (default "/var/cache/cuirass/remote/")) + (publish? cuirass-remote-server-configuration-publish? ;boolean + (default #t)) + (trigger-url cuirass-remote-server-trigger-url ;string + (default #f)) + (public-key cuirass-remote-server-configuration-public-key ;string + (default #f)) + (private-key cuirass-remote-server-configuration-private-key ;string + (default #f))) + +(define-record-type* + cuirass-configuration make-cuirass-configuration + cuirass-configuration? + (cuirass cuirass-configuration-cuirass ;file-like + (default cuirass)) + (log-file cuirass-configuration-log-file ;string + (default "/var/log/cuirass.log")) + (web-log-file cuirass-configuration-web-log-file ;string + (default "/var/log/cuirass-web.log")) + (cache-directory cuirass-configuration-cache-directory ;string (dir-name) + (default "/var/cache/cuirass")) + (user cuirass-configuration-user ;string + (default "cuirass")) + (group cuirass-configuration-group ;string + (default "cuirass")) + (interval cuirass-configuration-interval ;integer (seconds) + (default 60)) + (parameters cuirass-configuration-parameters ;string + (default #f)) + (remote-server cuirass-configuration-remote-server + (default #f)) + (database cuirass-configuration-database ;string + (default %cuirass-default-database)) + (port cuirass-configuration-port ;integer (port) + (default 8081)) + (host cuirass-configuration-host ;string + (default "localhost")) + (specifications cuirass-configuration-specifications) + ;gexp that evaluates to specification-alist + (use-substitutes? cuirass-configuration-use-substitutes? ;boolean + (default #f)) + (one-shot? cuirass-configuration-one-shot? ;boolean + (default #f)) + (fallback? cuirass-configuration-fallback? ;boolean + (default #f)) + (extra-options cuirass-configuration-extra-options + (default '())) + (http-proxy cuirass-configuration-http-proxy ;string + (default "")) + (https-proxy cuirass-configuration-https-proxy ;string + (default "")) + ) + +(define (cuirass-shepherd-service config) + "Return a for the Cuirass service with CONFIG." + (let ((cuirass (cuirass-configuration-cuirass config)) + (cache-directory (cuirass-configuration-cache-directory config)) + (web-log-file (cuirass-configuration-web-log-file config)) + (log-file (cuirass-configuration-log-file config)) + (user (cuirass-configuration-user config)) + (group (cuirass-configuration-group config)) + (interval (cuirass-configuration-interval config)) + (parameters (cuirass-configuration-parameters config)) + (remote-server (cuirass-configuration-remote-server config)) + (database (cuirass-configuration-database config)) + (port (cuirass-configuration-port config)) + (host (cuirass-configuration-host config)) + (specs (cuirass-configuration-specifications config)) + (use-substitutes? (cuirass-configuration-use-substitutes? config)) + (one-shot? (cuirass-configuration-one-shot? config)) + (fallback? (cuirass-configuration-fallback? config)) + (extra-options (cuirass-configuration-extra-options config)) + (http-proxy (cuirass-configuration-http-proxy config)) + (https-proxy (cuirass-configuration-https-proxy config))) + `(,(shepherd-service + (documentation "Run Cuirass.") + (provision '(cuirass)) + (requirement '(guix-daemon postgres postgres-roles networking)) + (start #~(make-forkexec-constructor + (list (string-append #$cuirass "/bin/cuirass") + "register" + "--cache-directory" #$cache-directory + "--specifications" + #$(scheme-file "cuirass-specs.scm" specs) + "--database" #$database + "--interval" #$(number->string interval) + #$@(if parameters + (list (string-append + "--parameters=" + parameters)) + '()) + #$@(if remote-server '("--build-remote") '()) + #$@(if use-substitutes? '("--use-substitutes") '()) + #$@(if one-shot? '("--one-shot") '()) + #$@(if fallback? '("--fallback") '()) + #$@extra-options) + + #:environment-variables + (list + "GIT_SSL_CAINFO=/etc/ssl/certs/ca-certificates.crt" + (string-append "GIT_EXEC_PATH=" #$git "/libexec/git-core") + (string-append "http_proxy=" #$http-proxy) + (string-append "https_proxy=" #$http-proxy) + ;"http_proxy=http://proxy-upgrade.univ-nantes.prive:3128/" + ;"https_proxy=http://proxy-upgrade.univ-nantes.prive:3128/" + ) + + #:user #$user + #:group #$group + #:log-file #$log-file)) + (stop #~(make-kill-destructor))) + ,(shepherd-service + (documentation "Run Cuirass web interface.") + (provision '(cuirass-web)) + (requirement '(cuirass)) + (start #~(make-forkexec-constructor + (list (string-append #$cuirass "/bin/cuirass") + "web" + "--database" #$database + "--listen" #$host + "--port" #$(number->string port) + #$@(if parameters + (list (string-append + "--parameters=" + parameters)) + '()) + #$@extra-options) + + #:user #$user + #:group #$group + #:log-file #$web-log-file)) + (stop #~(make-kill-destructor))) + ,@(if remote-server + (match-record remote-server + (backend-port publish-port log-file cache publish? + trigger-url public-key private-key) + (list + (shepherd-service + (documentation "Run Cuirass remote build server.") + (provision '(cuirass-remote-server)) + (requirement '(avahi-daemon cuirass)) + (start #~(make-forkexec-constructor + (list (string-append #$cuirass "/bin/cuirass") + "remote-server" + (string-append "--database=" #$database) + (string-append "--cache=" #$cache) + (string-append "--user=" #$user) + #$@(if backend-port + (list (string-append + "--backend-port=" + (number->string backend-port))) + '()) + #$@(if publish-port + (list (string-append + "--publish-port=" + (number->string publish-port))) + '()) + #$@(if parameters + (list (string-append + "--parameters=" + parameters)) + '()) + #$@(if trigger-url + (list + (string-append + "--trigger-substitute-url=" + trigger-url)) + '()) + #$@(if publish? + '() + (list "--no-publish")) + #$@(if public-key + (list + (string-append "--public-key=" + public-key)) + '()) + #$@(if private-key + (list + (string-append "--private-key=" + private-key)) + '())) + #:log-file #$log-file)) + (stop #~(make-kill-destructor))))) + '())))) + +(define (cuirass-account config) + "Return the user accounts and user groups for CONFIG." + (let ((cuirass-user (cuirass-configuration-user config)) + (cuirass-group (cuirass-configuration-group config))) + (list (user-group + (name cuirass-group) + (system? #t)) + (user-account + (name cuirass-user) + (group cuirass-group) + (system? #t) + (comment "Cuirass privilege separation user") + (home-directory (string-append "/var/lib/" cuirass-user)) + (shell (file-append shadow "/sbin/nologin")))))) + +(define (cuirass-postgresql-role config) + (let ((user (cuirass-configuration-user config))) + (list (postgresql-role + (name user) + (create-database? #t))))) + +(define (cuirass-activation config) + "Return the activation code for CONFIG." + (let* ((cache (cuirass-configuration-cache-directory config)) + (remote-server (cuirass-configuration-remote-server config)) + (remote-cache (and remote-server + (cuirass-remote-server-configuration-cache + remote-server))) + (user (cuirass-configuration-user config)) + (log "/var/log/cuirass") + (profile (string-append "/var/guix/profiles/per-user/" user)) + (roots (string-append profile "/cuirass")) + (group (cuirass-configuration-group config))) + (with-imported-modules '((guix build utils)) + #~(begin + (use-modules (guix build utils)) + + (mkdir-p #$cache) + (mkdir-p #$log) + (mkdir-p #$roots) + + (when #$remote-cache + (mkdir-p #$remote-cache)) + + (let ((uid (passwd:uid (getpw #$user))) + (gid (group:gid (getgr #$group)))) + (chown #$cache uid gid) + (chown #$log uid gid) + (chown #$roots uid gid) + (chown #$profile uid gid) + + (when #$remote-cache + (chown #$remote-cache uid gid))))))) + +(define (cuirass-log-rotations config) + "Return the list of log rotations that corresponds to CONFIG." + (list (log-rotation + (files (list (cuirass-configuration-log-file config) + (cuirass-configuration-web-log-file config))) + (frequency 'weekly) + (options '("rotate 40"))))) ;worth keeping + +(define cuirass-service-type + (service-type + (name 'cuirass) + (extensions + (list + (service-extension profile-service-type ;for 'info cuirass' + (compose list cuirass-configuration-cuirass)) + (service-extension rottlog-service-type cuirass-log-rotations) + (service-extension activation-service-type cuirass-activation) + (service-extension shepherd-root-service-type cuirass-shepherd-service) + (service-extension account-service-type cuirass-account) + ;; Make sure postgresql and postgresql-role are instantiated. + (service-extension postgresql-service-type (const #t)) + (service-extension postgresql-role-service-type + cuirass-postgresql-role))) + (description + "Run the Cuirass continuous integration service."))) + +(define-record-type* + cuirass-remote-worker-configuration make-cuirass-remote-worker-configuration + cuirass-remote-worker-configuration? + (cuirass cuirass-remote-worker-configuration-cuirass ;file-like + (default cuirass)) + (workers cuirass-remote-worker-workers ;int + (default 1)) + (server cuirass-remote-worker-server ;string + (default #f)) + (systems cuirass-remote-worker-systems ;list + (default (list (%current-system)))) + (log-file cuirass-remote-worker-log-file ;string + (default "/var/log/cuirass-remote-worker.log")) + (publish-port cuirass-remote-worker-configuration-publish-port ;int + (default 5558)) + (substitute-urls cuirass-remote-worker-configuration-substitute-urls + (default %default-substitute-urls)) ;list of strings + (public-key cuirass-remote-worker-configuration-public-key ;string + (default #f)) + (private-key cuirass-remote-worker-configuration-private-key ;string + (default #f))) + +(define (cuirass-remote-worker-shepherd-service config) + "Return a for the Cuirass remote worker service with +CONFIG." + (match-record config + (cuirass workers server systems log-file publish-port + substitute-urls public-key private-key) + (list (shepherd-service + (documentation "Run Cuirass remote build worker.") + (provision '(cuirass-remote-worker)) + (requirement '(avahi-daemon guix-daemon networking)) + (start #~(make-forkexec-constructor + (list (string-append #$cuirass "/bin/cuirass") + "remote-worker" + (string-append "--workers=" + #$(number->string workers)) + #$@(if server + (list (string-append "--server=" server)) + '()) + #$@(if systems + (list (string-append + "--systems=" + (string-join systems ","))) + '()) + #$@(if publish-port + (list (string-append + "--publish-port=" + (number->string publish-port))) + '()) + #$@(if substitute-urls + (list (string-append + "--substitute-urls=" + (string-join substitute-urls))) + '()) + #$@(if public-key + (list + (string-append "--public-key=" + public-key)) + '()) + #$@(if private-key + (list + (string-append "--private-key=" + private-key)) + '())) + #:log-file #$log-file)) + (stop #~(make-kill-destructor)))))) + +(define cuirass-remote-worker-service-type + (service-type + (name 'cuirass-remote-worker) + (extensions + (list + (service-extension shepherd-root-service-type + cuirass-remote-worker-shepherd-service))) + (description + "Run the Cuirass remote build worker service."))) From 276bbcdbd0191671c82ed02ebfc4492a9a9c4781 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 29 Apr 2022 10:49:45 +0200 Subject: [PATCH 363/383] adding ci badge --- README.adoc | 4 ---- README.md | 4 ++++ 2 files changed, 4 insertions(+), 4 deletions(-) delete mode 100644 README.adoc create mode 100644 README.md diff --git a/README.adoc b/README.adoc deleted file mode 100644 index d29ba59..0000000 --- a/README.adoc +++ /dev/null @@ -1,4 +0,0 @@ -= guix-glicid - -two channels here : devel and main. -Please use main for something stable. diff --git a/README.md b/README.md new file mode 100644 index 0000000..cc2a0c9 --- /dev/null +++ b/README.md @@ -0,0 +1,4 @@ += guix-glicid ![CI Badge]https://guix.glicid.fr/jobset/glicid/badge.svg?type=1 + +two channels here : devel and main. +Please use main for something stable. From 7b5d3e5a650f76b56d067f051a211de313e5a658 Mon Sep 17 00:00:00 2001 From: Jean-Francois GUILLAUME Date: Fri, 29 Apr 2022 09:09:37 +0000 Subject: [PATCH 364/383] Update README.md --- README.md | 31 ++++++++++++++++++++++++++++--- 1 file changed, 28 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index cc2a0c9..5f8a7ae 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,29 @@ -= guix-glicid ![CI Badge]https://guix.glicid.fr/jobset/glicid/badge.svg?type=1 +guix-glicid +=== +Description +--- +We define in this repository packages that we use at GLiCID HPC that are etheir not in guix main channels or with custom definitions. -two channels here : devel and main. -Please use main for something stable. +Two channels here : +- main ![CI Badge](https://guix.glicid.fr/jobset/glicid/badge.svg?type=1) : stable release of our channel +- devel ![CI Badge](https://guix.glicid.fr/jobset/glicid-devel/badge.svg?type=1) : development release of our channel, things may get broken + +How to use +--- +To use the guix-glicid channel, add these lines to ~/.config/guix/channels.scm or /etc/guix/channels.scm : + +For stable release : +``` +(channel + (name 'glicid) + (url "https://gitlab.univ-nantes.fr/glicid-public/guix-glicid.git") + (branch "main")) +``` + +For devel release : +``` +(channel + (name 'glicid) + (url "https://gitlab.univ-nantes.fr/glicid-public/guix-glicid.git") + (branch "devel")) +``` From 3bcb54d6a1095c68d432775911da43fc6d8e7645 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Mon, 2 May 2022 12:07:45 +0200 Subject: [PATCH 365/383] lint --- glicid/packages/clam.scm | 11 -- glicid/packages/fabric-management.scm | 4 - glicid/packages/glicid.scm | 262 ++++++++++++-------------- glicid/packages/maths.scm | 1 + glicid/packages/mpi.scm | 82 ++------ 5 files changed, 138 insertions(+), 222 deletions(-) diff --git a/glicid/packages/clam.scm b/glicid/packages/clam.scm index 30180bd..9633719 100644 --- a/glicid/packages/clam.scm +++ b/glicid/packages/clam.scm @@ -550,8 +550,6 @@ ) - - (define-public glicid-clam (package (name "glicid-clam") @@ -573,7 +571,6 @@ ) ) ) - ; (build-system python-build-system) (build-system copy-build-system) ;; XXX: The git repository has no tags, and the PyPI releases do not @@ -582,7 +579,6 @@ ;#:tests? #f ; #:use-setuptools? #f ; uses custom distutils 'install' command - #:phases (modify-phases %standard-phases (add-before 'reset-gzip-timestamps 'make-files-writable @@ -591,15 +587,8 @@ (for-each make-file-writable (find-files out "\\.gz$")) #t)))))) - - - - - - ; ) ; ) - (propagated-inputs `(("python-keycloak-client" , python-keycloak-client-0.2.3) ("python-ecdsa", python-ecdsa) ("python-django", python-django) diff --git a/glicid/packages/fabric-management.scm b/glicid/packages/fabric-management.scm index 09646c5..f1faf6b 100644 --- a/glicid/packages/fabric-management.scm +++ b/glicid/packages/fabric-management.scm @@ -52,12 +52,9 @@ ) ) - - (define local-ucx ucx-upstream-1.12.1) (define-public ucx-latest (latest-version local-ucx gnu:ucx)) - (define-public ucx-latest-rdma (transform-package ( @@ -67,7 +64,6 @@ ) ) - (define-public ucx-latest-glicid (transform-package ( diff --git a/glicid/packages/glicid.scm b/glicid/packages/glicid.scm index 4c01664..1e0ea56 100644 --- a/glicid/packages/glicid.scm +++ b/glicid/packages/glicid.scm @@ -4,11 +4,10 @@ #:use-module (guix git-download) #:use-module (guix build-system gnu) #:use-module (guix build-system cmake) -; #:use-module (guix licenses) + #:use-module (guix build-system python) #:use-module (gnu packages gawk) #:use-module (gnu packages gcc) #:use-module (gnu packages commencement) - #:use-module (guix build-system python) #:use-module ((guix licenses) #:prefix license:) #:use-module ((guix utils) #:select (target-64bit?)) #:use-module (gnu packages) @@ -57,7 +56,7 @@ #:use-module (gnu packages maths) #:use-module (guix utils) #:use-module (gnu packages cmake) - #:use-module (gnu packages pretty-print) + #:use-module (gnu packages pretty-print) #:use-module (gnu packages boost) #:use-module (gnu packages curl) #:use-module (gnu packages cryptsetup) @@ -87,156 +86,145 @@ #:use-module (gnu packages sphinx) #:use-module (gnu packages tls) #:use-module (gnu packages web) -;; #:use-module (gnu packages glicid) #:use-module (gnu packages pretty-print) #:use-module (gnu packages virtualization) -;; #:use-module (glicid packages storage) #:use-module (glicid packages mpi) #:use-module (glicid packages gcc) - ) - -;;;;;;;; - - (define-public glicid-librdkafka-09 - (package - (inherit librdkafka) - (name "glicid-librdkafka-09") - (version "0.9.2") - (source - (origin - (method url-fetch) - (uri (string-append "https://github.com/edenhill/librdkafka/archive/v" version ".tar.gz")) - (sha256 (base32 "0938yn1msaq8xcj5z7b3jcdy6rslh9kxmvz01r8rdcgbarlvchy2")) - )) -)) - - + (package + (inherit librdkafka) + (name "glicid-librdkafka-09") + (version "0.9.2") + (source + (origin + (method url-fetch) + (uri (string-append "https://github.com/edenhill/librdkafka/archive/v" version ".tar.gz")) + (sha256 (base32 "0938yn1msaq8xcj5z7b3jcdy6rslh9kxmvz01r8rdcgbarlvchy2")) + ) + ) + ) +) (define-public glicid-x2go - (package - (name "glicid-x2go") - (version "4.1.0.3") - (source - (origin - (method url-fetch) - (uri (string-append "https://code.x2go.org/releases/source/x2goserver/x2goserver-" version ".tar.gz")) - (sha256 (base32 "1l6wd708kbipib4ldprfiihqmj4895nifg0bkws4x97majislxk7")) - )) - + (package + (name "glicid-x2go") + (version "4.1.0.3") + (source + (origin + (method url-fetch) + (uri (string-append "https://code.x2go.org/releases/source/x2goserver/x2goserver-" version ".tar.gz")) + (sha256 (base32 "1l6wd708kbipib4ldprfiihqmj4895nifg0bkws4x97majislxk7")) + ) + ) (native-inputs - `(("autoconf" ,autoconf) - ("automake" ,automake) - ("libtool" ,libtool))) - - (inputs - `(("perl" , perl))) - - (build-system gnu-build-system) - (synopsis "X2go") - (description "X2go") - (license "not checked") - (home-page "https://wiki.x2go.org") + (autoconf automake libtool) + ) + (inputs + (perl) + ) + (build-system gnu-build-system) + (synopsis "X2go") + (description "X2go") + (license "not checked") + (home-page "https://wiki.x2go.org") ) ) - (define-public glicid-gromacs-openmpi - (package - (inherit gromacs) - (name "glicid-gromacs-openmpi") - (inputs `(("openmpi", openmpi) - ;; ("openssh", openssh) ;; only for tests... disabled now - ,@(package-inputs gromacs))) - (build-system cmake-build-system) - - (arguments - `(#:configure-flags - (list "-DGMX_DEVELOPER_BUILD=on" ; Needed to run tests - ;; Unbundling - "-DGMX_USE_LMFIT=EXTERNAL" - "-DGMX_BUILD_OWN_FFTW=off" - "-DGMX_EXTERNAL_BLAS=on" - "-DGMX_EXTERNAL_LAPACK=on" - "-DGMX_EXTERNAL_TNG=on" - "-DGMX_EXTERNAL_ZLIB=on" - "-DGMX_EXTERNAL_TINYXML2=on" - ;; special glicid - "-DGMX_MPI=on" - "-DCMAKE_C_COMPILER=mpicc" - "-DCMAKE_CXX_COMPILER=mpicxx" - "-DGMX_DOUBLE=off" - "-DGMX_OPENMP=on" - "-DGMX_SIMD=AVX2_256" - (string-append "-DTinyXML2_DIR=" - (assoc-ref %build-inputs "tinyxml2")) - ;; Workaround for cmake/FindSphinx.cmake version parsing that does - ;; not understand the guix-wrapped `sphinx-build --version' answer - (string-append "-DSPHINX_EXECUTABLE_VERSION=" - ,(package-version python-sphinx))) - #:tests? #f - #:phases - (modify-phases %standard-phases - (add-after 'unpack 'fixes - (lambda* (#:key inputs #:allow-other-keys) - ;; Still bundled: part of gromacs, source behind registration - ;; but free software anyways - ;;(delete-file-recursively "src/external/vmd_molfile") - ;; Still bundled: threads-based OpenMPI-compatible fallback - ;; designed to be bundled like that - ;;(delete-file-recursively "src/external/thread_mpi") - ;; Unbundling - (delete-file-recursively "src/external/lmfit") - (delete-file-recursively "src/external/clFFT") - (delete-file-recursively "src/external/fftpack") - (delete-file-recursively "src/external/build-fftw") - (delete-file-recursively "src/external/tng_io") - (delete-file-recursively "src/external/tinyxml2") - (delete-file-recursively "src/external/googletest") - (copy-recursively (assoc-ref inputs "googletest-source") - "src/external/googletest") - ;; This test warns about the build host hardware, disable - (substitute* "src/gromacs/hardware/tests/hardwaretopology.cpp" - (("TEST\\(HardwareTopologyTest, HwlocExecute\\)") - "void __guix_disabled()")) - #t))))) - - - + (package + (inherit gromacs) + (name "glicid-gromacs-openmpi") + (inputs + `( + ("openmpi", openmpi) + ,@(package-inputs gromacs) + ) + ) + ) + (build-system cmake-build-system) + (arguments + `(#:configure-flags + (list + "-DGMX_DEVELOPER_BUILD=on" ; Needed to run tests + ;; Unbundling + "-DGMX_USE_LMFIT=EXTERNAL" + "-DGMX_BUILD_OWN_FFTW=off" + "-DGMX_EXTERNAL_BLAS=on" + "-DGMX_EXTERNAL_LAPACK=on" + "-DGMX_EXTERNAL_TNG=on" + "-DGMX_EXTERNAL_ZLIB=on" + "-DGMX_EXTERNAL_TINYXML2=on" + ;; special glicid + "-DGMX_MPI=on" + "-DCMAKE_C_COMPILER=mpicc" + "-DCMAKE_CXX_COMPILER=mpicxx" + "-DGMX_DOUBLE=off" + "-DGMX_OPENMP=on" + "-DGMX_SIMD=AVX2_256" + (string-append "-DTinyXML2_DIR=" (assoc-ref %build-inputs "tinyxml2")) + ;; Workaround for cmake/FindSphinx.cmake version parsing that does + ;; not understand the guix-wrapped `sphinx-build --version' answer + (string-append "-DSPHINX_EXECUTABLE_VERSION=",(package-version python-sphinx)) + ) + #:tests? #f + #:phases + (modify-phases %standard-phases + (add-after 'unpack 'fixes + (lambda* (#:key inputs #:allow-other-keys) + ;; Still bundled: part of gromacs, source behind registration + ;; but free software anyways + ;;(delete-file-recursively "src/external/vmd_molfile") + ;; Still bundled: threads-based OpenMPI-compatible fallback + ;; designed to be bundled like that + ;;(delete-file-recursively "src/external/thread_mpi") + ;; Unbundling + (delete-file-recursively "src/external/lmfit") + (delete-file-recursively "src/external/clFFT") + (delete-file-recursively "src/external/fftpack") + (delete-file-recursively "src/external/build-fftw") + (delete-file-recursively "src/external/tng_io") + (delete-file-recursively "src/external/tinyxml2") + (delete-file-recursively "src/external/googletest") + (copy-recursively (assoc-ref inputs "googletest-source") "src/external/googletest") + ;; This test warns about the build host hardware, disable + (substitute* "src/gromacs/hardware/tests/hardwaretopology.cpp" (("TEST\\(HardwareTopologyTest, HwlocExecute\\)") "void __guix_disabled()")) + #t + ) + ) + ) + ) ) - ) - (define-public glicid-python-nbxmpp - (package - (inherit python-nbxmpp) - (name "glicid-python-nbxmpp") - (version "1.0.2") - (source - (origin - (method url-fetch) - (uri (pypi-uri "nbxmpp" version)) - (sha256 - (base32 - "0vw5drr077w9ks4crnw6pwa4735ycyjdcm54knc3w4in4x5027wr")))) - -)) + (package + (inherit python-nbxmpp) + (name "glicid-python-nbxmpp") + (version "1.0.2") + (source + (origin + (method url-fetch) + (uri (pypi-uri "nbxmpp" version)) + (sha256 (base32 "0vw5drr077w9ks4crnw6pwa4735ycyjdcm54knc3w4in4x5027wr")) + ) + ) + ) +) (define-public glicid-specific-hdf5 (package (inherit hdf5-1.12) (name "glicid-specific-hdf5") -; (arguments -; `(#:tests? #f) -; ) - (native-inputs `( - ("gcc",gcc-11) - ("gfortran",gfortran-11) - ,@(package-native-inputs hdf5-1.12))) + (native-inputs + `( + ("gcc",gcc-11) + ("gfortran",gfortran-11) + ,@(package-native-inputs hdf5-1.12) + ) + ) ) ) @@ -256,9 +244,7 @@ (arguments `(#:make-flags -;; #:make-flags (list (string-append "PREFIX=" %output) -; (string-append "CC=" ,(cc-for-target)) ;; Xft.h #includes without ‘freetype2/’. The Makefile ;; works around this by hard-coding /usr/include & $PREFIX. (string-append "CPPFLAGS=-I" @@ -278,12 +264,10 @@ ("flex" ,flex) ("bison" ,bison) ("libxt" ,libxt))) - (synopsis "Motif") (description "Motif ") (home-page "https://sourceforge.net/untested") (license " ") - ) ) @@ -329,16 +313,12 @@ ("fontconfig", fontconfig) ("gfortran", gfortran) ("libjpeg-turbo", libjpeg-turbo) -;; ("libxmhtml", libxmhtml) ) ) - - (synopsis "Xmgrace") (description "xmgrace") (home-page "https://sourceforge.net/untested") (license " ") - ) ) @@ -346,9 +326,6 @@ (use-modules (guix download)) (use-modules (gnu packages ruby)) (use-modules (guix build-system ruby)) -;(use-modules (guix licenses)) - - (define-public ruby-asciidoctor-revealjs (package @@ -366,7 +343,6 @@ '(#:tests? #f)) (propagated-inputs `(("ruby-asciidoctor" ,ruby-asciidoctor) -; ("ruby-concurrent-ruby" ,ruby-concurrent-ruby) ("ruby-concurrent" ,ruby-concurrent) ("ruby-asciidoctor-kroki", ruby-asciidoctor-kroki) ("ruby-thread-safe" ,ruby-thread-safe))) @@ -404,7 +380,3 @@ (license license:expat) ) ) - -;; python-glances is now upstreamed as glances in python-xyz - -;;; glicid.scm ends here diff --git a/glicid/packages/maths.scm b/glicid/packages/maths.scm index 865bf34..e84c313 100644 --- a/glicid/packages/maths.scm +++ b/glicid/packages/maths.scm @@ -40,6 +40,7 @@ ) ) ) + (define local:scalapack scalapack-upstream) (define-public scalapack-latest (latest-version local:scalapack gnu:scalapack)) diff --git a/glicid/packages/mpi.scm b/glicid/packages/mpi.scm index 4e56558..e5694a2 100644 --- a/glicid/packages/mpi.scm +++ b/glicid/packages/mpi.scm @@ -10,22 +10,21 @@ #:use-module (gnu packages) ) - (define-public openmpi-upstream-4.1.2 (package (inherit gnu:openmpi) (name "openmpi-upstream") (version "4.1.2") (source - (origin - (method url-fetch) - (uri (string-append "https://www.open-mpi.org/software/ompi/v" - (version-major+minor version) - "/downloads/openmpi-" version ".tar.bz2")) - (sha256 - (base32 "09xmlr4mfs02kwcf5cmdgkcdjj81fjwjmpa3rz2k28f3gz7wfy4v")) - (patches (search-patches "openmpi-mtl-priorities.patch")))) - + (origin + (method url-fetch) + (uri (string-append "https://www.open-mpi.org/software/ompi/v" + (version-major+minor version) + "/downloads/openmpi-" version ".tar.bz2")) + (sha256 (base32 "09xmlr4mfs02kwcf5cmdgkcdjj81fjwjmpa3rz2k28f3gz7wfy4v")) + (patches (search-patches "openmpi-mtl-priorities.patch")) + ) + ) ) ) @@ -35,77 +34,39 @@ (define-public openmpi-glicid -(package - (inherit - (transform-package - ( - (instead-of "slurm" slurm-glicid) openmpi-latest - ) "glicid" + (package + (inherit + (transform-package ((instead-of "slurm" slurm-glicid) openmpi-latest) "glicid") + ) ) - ) - ) ) (define-public openmpi-glicid-libfabric - (transform-package - ( - (instead-of "libfabric" libfabric-latest) - openmpi-glicid - ) "libfabric" - ) + (transform-package ((instead-of "libfabric" libfabric-latest) openmpi-glicid) "libfabric") ) (define-public openmpi-glicid-rdma - (transform-package - ( - (instead-of "rdma-core" rdma-core-latest) - openmpi-glicid - ) "rdma-core" - ) + (transform-package ((instead-of "rdma-core" rdma-core-latest) openmpi-glicid) "rdma-core") ) (define-public openmpi-glicid-ucx - (transform-package - ( - (instead-of "ucx" ucx-latest-glicid) openmpi-glicid - ) "ucx" - ) + (transform-package ((instead-of "ucx" ucx-latest-glicid) openmpi-glicid) "ucx" ) ) (define-public openmpi-glicid-libfabric-rdma - (transform-package - ( - (instead-of "rdma-core" rdma-core-latest) - openmpi-glicid-libfabric - ) "rdma" - ) + (transform-package ((instead-of "rdma-core" rdma-core-latest) openmpi-glicid-libfabric) "rdma") ) (define-public openmpi-glicid-libfabric-ucx - (transform-package - ( - (instead-of "ucx" ucx-latest-glicid) - openmpi-glicid-libfabric - ) "ucx" - ) + (transform-package ((instead-of "ucx" ucx-latest-glicid) openmpi-glicid-libfabric) "ucx") ) (define-public openmpi-glicid-libfabric-rdma-ucx - (transform-package - ( - (instead-of "ucx" ucx-latest-glicid) - openmpi-glicid-libfabric-rdma - ) "ucx" - ) + (transform-package ((instead-of "ucx" ucx-latest-glicid) openmpi-glicid-libfabric-rdma) "ucx") ) (define-public openmpi-glicid-libfabric-rdma-ucx-ccipl - (transform-package - ( - (instead-of "slurm-glicid" slurm-ccipl) - openmpi-glicid-libfabric-rdma-ucx - ) "ccipl" - ) + (transform-package ((instead-of "slurm-glicid" slurm-ccipl) openmpi-glicid-libfabric-rdma-ucx) "ccipl") ) @@ -117,6 +78,3 @@ (name (string-append (package-name openmpi-glicid-transform-gcc-11) "-gcc-11" )) ) ) - - -;openmpi-glicid-libfabric-rdma-ucx-ccipl From 0b0077a8ed1954e6a369180b6f200f5369e39349 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Mon, 2 May 2022 12:19:28 +0200 Subject: [PATCH 366/383] lint --- glicid/packages/vpn.scm | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/glicid/packages/vpn.scm b/glicid/packages/vpn.scm index 5a71570..dbbee55 100644 --- a/glicid/packages/vpn.scm +++ b/glicid/packages/vpn.scm @@ -8,15 +8,13 @@ (package (inherit gnu:openconnect) (version "8.20") - (source (origin - (method url-fetch) - (uri (string-append "http://www.infradead.org/pub/openconnect/download" - "openconnect-" version ".tar.gz")) - (sha256 - (base32 "1cdsx4nsrwawbsisfkldfc9i4qn60g03vxb13nzppr2br9p4rrih")))) - + (source + (origin + (method url-fetch) + (uri (string-append "https://www.infradead.org/openconnect/download/openconnect-" version ".tar.gz")) + (sha256 (base32 "1cdsx4nsrwawbsisfkldfc9i4qn60g03vxb13nzppr2br9p4rrih")) + ) + ) (name "openconnect-upstream") -; ) ) ) - From 92884dc449f476d1dfe6527b20963446fb3c3796 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Mon, 2 May 2022 12:25:41 +0200 Subject: [PATCH 367/383] revert glicid.scm --- glicid/packages/glicid.scm | 260 ++++++++++++++++++++----------------- 1 file changed, 144 insertions(+), 116 deletions(-) diff --git a/glicid/packages/glicid.scm b/glicid/packages/glicid.scm index 1e0ea56..4c01664 100644 --- a/glicid/packages/glicid.scm +++ b/glicid/packages/glicid.scm @@ -4,10 +4,11 @@ #:use-module (guix git-download) #:use-module (guix build-system gnu) #:use-module (guix build-system cmake) - #:use-module (guix build-system python) +; #:use-module (guix licenses) #:use-module (gnu packages gawk) #:use-module (gnu packages gcc) #:use-module (gnu packages commencement) + #:use-module (guix build-system python) #:use-module ((guix licenses) #:prefix license:) #:use-module ((guix utils) #:select (target-64bit?)) #:use-module (gnu packages) @@ -56,7 +57,7 @@ #:use-module (gnu packages maths) #:use-module (guix utils) #:use-module (gnu packages cmake) - #:use-module (gnu packages pretty-print) + #:use-module (gnu packages pretty-print) #:use-module (gnu packages boost) #:use-module (gnu packages curl) #:use-module (gnu packages cryptsetup) @@ -86,145 +87,156 @@ #:use-module (gnu packages sphinx) #:use-module (gnu packages tls) #:use-module (gnu packages web) +;; #:use-module (gnu packages glicid) #:use-module (gnu packages pretty-print) #:use-module (gnu packages virtualization) +;; #:use-module (glicid packages storage) #:use-module (glicid packages mpi) #:use-module (glicid packages gcc) + ) + +;;;;;;;; + + (define-public glicid-librdkafka-09 - (package - (inherit librdkafka) - (name "glicid-librdkafka-09") - (version "0.9.2") - (source - (origin - (method url-fetch) - (uri (string-append "https://github.com/edenhill/librdkafka/archive/v" version ".tar.gz")) - (sha256 (base32 "0938yn1msaq8xcj5z7b3jcdy6rslh9kxmvz01r8rdcgbarlvchy2")) - ) - ) - ) -) + (package + (inherit librdkafka) + (name "glicid-librdkafka-09") + (version "0.9.2") + (source + (origin + (method url-fetch) + (uri (string-append "https://github.com/edenhill/librdkafka/archive/v" version ".tar.gz")) + (sha256 (base32 "0938yn1msaq8xcj5z7b3jcdy6rslh9kxmvz01r8rdcgbarlvchy2")) + )) +)) + + (define-public glicid-x2go - (package - (name "glicid-x2go") - (version "4.1.0.3") - (source - (origin - (method url-fetch) - (uri (string-append "https://code.x2go.org/releases/source/x2goserver/x2goserver-" version ".tar.gz")) - (sha256 (base32 "1l6wd708kbipib4ldprfiihqmj4895nifg0bkws4x97majislxk7")) - ) - ) + (package + (name "glicid-x2go") + (version "4.1.0.3") + (source + (origin + (method url-fetch) + (uri (string-append "https://code.x2go.org/releases/source/x2goserver/x2goserver-" version ".tar.gz")) + (sha256 (base32 "1l6wd708kbipib4ldprfiihqmj4895nifg0bkws4x97majislxk7")) + )) + (native-inputs - (autoconf automake libtool) - ) - (inputs - (perl) - ) - (build-system gnu-build-system) - (synopsis "X2go") - (description "X2go") - (license "not checked") - (home-page "https://wiki.x2go.org") + `(("autoconf" ,autoconf) + ("automake" ,automake) + ("libtool" ,libtool))) + + (inputs + `(("perl" , perl))) + + (build-system gnu-build-system) + (synopsis "X2go") + (description "X2go") + (license "not checked") + (home-page "https://wiki.x2go.org") ) ) + (define-public glicid-gromacs-openmpi - (package - (inherit gromacs) - (name "glicid-gromacs-openmpi") - (inputs - `( - ("openmpi", openmpi) - ,@(package-inputs gromacs) - ) - ) - ) + (package + (inherit gromacs) + (name "glicid-gromacs-openmpi") + (inputs `(("openmpi", openmpi) + ;; ("openssh", openssh) ;; only for tests... disabled now + ,@(package-inputs gromacs))) (build-system cmake-build-system) - (arguments - `(#:configure-flags - (list - "-DGMX_DEVELOPER_BUILD=on" ; Needed to run tests - ;; Unbundling - "-DGMX_USE_LMFIT=EXTERNAL" - "-DGMX_BUILD_OWN_FFTW=off" - "-DGMX_EXTERNAL_BLAS=on" - "-DGMX_EXTERNAL_LAPACK=on" - "-DGMX_EXTERNAL_TNG=on" - "-DGMX_EXTERNAL_ZLIB=on" - "-DGMX_EXTERNAL_TINYXML2=on" - ;; special glicid - "-DGMX_MPI=on" - "-DCMAKE_C_COMPILER=mpicc" - "-DCMAKE_CXX_COMPILER=mpicxx" - "-DGMX_DOUBLE=off" - "-DGMX_OPENMP=on" - "-DGMX_SIMD=AVX2_256" - (string-append "-DTinyXML2_DIR=" (assoc-ref %build-inputs "tinyxml2")) - ;; Workaround for cmake/FindSphinx.cmake version parsing that does - ;; not understand the guix-wrapped `sphinx-build --version' answer - (string-append "-DSPHINX_EXECUTABLE_VERSION=",(package-version python-sphinx)) - ) - #:tests? #f - #:phases - (modify-phases %standard-phases - (add-after 'unpack 'fixes - (lambda* (#:key inputs #:allow-other-keys) - ;; Still bundled: part of gromacs, source behind registration - ;; but free software anyways - ;;(delete-file-recursively "src/external/vmd_molfile") - ;; Still bundled: threads-based OpenMPI-compatible fallback - ;; designed to be bundled like that - ;;(delete-file-recursively "src/external/thread_mpi") - ;; Unbundling - (delete-file-recursively "src/external/lmfit") - (delete-file-recursively "src/external/clFFT") - (delete-file-recursively "src/external/fftpack") - (delete-file-recursively "src/external/build-fftw") - (delete-file-recursively "src/external/tng_io") - (delete-file-recursively "src/external/tinyxml2") - (delete-file-recursively "src/external/googletest") - (copy-recursively (assoc-ref inputs "googletest-source") "src/external/googletest") - ;; This test warns about the build host hardware, disable - (substitute* "src/gromacs/hardware/tests/hardwaretopology.cpp" (("TEST\\(HardwareTopologyTest, HwlocExecute\\)") "void __guix_disabled()")) - #t - ) - ) - ) - ) + + (arguments + `(#:configure-flags + (list "-DGMX_DEVELOPER_BUILD=on" ; Needed to run tests + ;; Unbundling + "-DGMX_USE_LMFIT=EXTERNAL" + "-DGMX_BUILD_OWN_FFTW=off" + "-DGMX_EXTERNAL_BLAS=on" + "-DGMX_EXTERNAL_LAPACK=on" + "-DGMX_EXTERNAL_TNG=on" + "-DGMX_EXTERNAL_ZLIB=on" + "-DGMX_EXTERNAL_TINYXML2=on" + ;; special glicid + "-DGMX_MPI=on" + "-DCMAKE_C_COMPILER=mpicc" + "-DCMAKE_CXX_COMPILER=mpicxx" + "-DGMX_DOUBLE=off" + "-DGMX_OPENMP=on" + "-DGMX_SIMD=AVX2_256" + (string-append "-DTinyXML2_DIR=" + (assoc-ref %build-inputs "tinyxml2")) + ;; Workaround for cmake/FindSphinx.cmake version parsing that does + ;; not understand the guix-wrapped `sphinx-build --version' answer + (string-append "-DSPHINX_EXECUTABLE_VERSION=" + ,(package-version python-sphinx))) + #:tests? #f + #:phases + (modify-phases %standard-phases + (add-after 'unpack 'fixes + (lambda* (#:key inputs #:allow-other-keys) + ;; Still bundled: part of gromacs, source behind registration + ;; but free software anyways + ;;(delete-file-recursively "src/external/vmd_molfile") + ;; Still bundled: threads-based OpenMPI-compatible fallback + ;; designed to be bundled like that + ;;(delete-file-recursively "src/external/thread_mpi") + ;; Unbundling + (delete-file-recursively "src/external/lmfit") + (delete-file-recursively "src/external/clFFT") + (delete-file-recursively "src/external/fftpack") + (delete-file-recursively "src/external/build-fftw") + (delete-file-recursively "src/external/tng_io") + (delete-file-recursively "src/external/tinyxml2") + (delete-file-recursively "src/external/googletest") + (copy-recursively (assoc-ref inputs "googletest-source") + "src/external/googletest") + ;; This test warns about the build host hardware, disable + (substitute* "src/gromacs/hardware/tests/hardwaretopology.cpp" + (("TEST\\(HardwareTopologyTest, HwlocExecute\\)") + "void __guix_disabled()")) + #t))))) + + + ) + ) + (define-public glicid-python-nbxmpp - (package - (inherit python-nbxmpp) - (name "glicid-python-nbxmpp") - (version "1.0.2") - (source - (origin - (method url-fetch) - (uri (pypi-uri "nbxmpp" version)) - (sha256 (base32 "0vw5drr077w9ks4crnw6pwa4735ycyjdcm54knc3w4in4x5027wr")) - ) - ) - ) -) + (package + (inherit python-nbxmpp) + (name "glicid-python-nbxmpp") + (version "1.0.2") + (source + (origin + (method url-fetch) + (uri (pypi-uri "nbxmpp" version)) + (sha256 + (base32 + "0vw5drr077w9ks4crnw6pwa4735ycyjdcm54knc3w4in4x5027wr")))) + +)) (define-public glicid-specific-hdf5 (package (inherit hdf5-1.12) (name "glicid-specific-hdf5") - (native-inputs - `( - ("gcc",gcc-11) - ("gfortran",gfortran-11) - ,@(package-native-inputs hdf5-1.12) - ) - ) +; (arguments +; `(#:tests? #f) +; ) + (native-inputs `( + ("gcc",gcc-11) + ("gfortran",gfortran-11) + ,@(package-native-inputs hdf5-1.12))) ) ) @@ -244,7 +256,9 @@ (arguments `(#:make-flags +;; #:make-flags (list (string-append "PREFIX=" %output) +; (string-append "CC=" ,(cc-for-target)) ;; Xft.h #includes without ‘freetype2/’. The Makefile ;; works around this by hard-coding /usr/include & $PREFIX. (string-append "CPPFLAGS=-I" @@ -264,10 +278,12 @@ ("flex" ,flex) ("bison" ,bison) ("libxt" ,libxt))) + (synopsis "Motif") (description "Motif ") (home-page "https://sourceforge.net/untested") (license " ") + ) ) @@ -313,12 +329,16 @@ ("fontconfig", fontconfig) ("gfortran", gfortran) ("libjpeg-turbo", libjpeg-turbo) +;; ("libxmhtml", libxmhtml) ) ) + + (synopsis "Xmgrace") (description "xmgrace") (home-page "https://sourceforge.net/untested") (license " ") + ) ) @@ -326,6 +346,9 @@ (use-modules (guix download)) (use-modules (gnu packages ruby)) (use-modules (guix build-system ruby)) +;(use-modules (guix licenses)) + + (define-public ruby-asciidoctor-revealjs (package @@ -343,6 +366,7 @@ '(#:tests? #f)) (propagated-inputs `(("ruby-asciidoctor" ,ruby-asciidoctor) +; ("ruby-concurrent-ruby" ,ruby-concurrent-ruby) ("ruby-concurrent" ,ruby-concurrent) ("ruby-asciidoctor-kroki", ruby-asciidoctor-kroki) ("ruby-thread-safe" ,ruby-thread-safe))) @@ -380,3 +404,7 @@ (license license:expat) ) ) + +;; python-glances is now upstreamed as glances in python-xyz + +;;; glicid.scm ends here From 8b64bc73f08a60e7a8560d884399357850a8c985 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Mon, 2 May 2022 12:29:54 +0200 Subject: [PATCH 368/383] add missing patch --- .../scalapack-blacs-mpi-deprecations.patch | 170 ++++++++++++++++++ 1 file changed, 170 insertions(+) create mode 100644 glicid/packages/patches/scalapack-blacs-mpi-deprecations.patch diff --git a/glicid/packages/patches/scalapack-blacs-mpi-deprecations.patch b/glicid/packages/patches/scalapack-blacs-mpi-deprecations.patch new file mode 100644 index 0000000..6ec1b8f --- /dev/null +++ b/glicid/packages/patches/scalapack-blacs-mpi-deprecations.patch @@ -0,0 +1,170 @@ +From f11c3f094ed5ca727ec819983425b6641db8227c Mon Sep 17 00:00:00 2001 +From: Eric Bavier +Date: Wed, 13 Feb 2019 09:32:11 -0600 +Subject: [PATCH] BLACS: Remove use of long-deprecated MPI1 functions. + +* BLACS/SRC/blacs_get_.c: 'MPI_Attr_get' -> 'MPI_Comm_get_attr'. +* BLACS/SRC/cgamn2d_.c, BLACS/SRC/cgamx2d_.c, BLACS/SRC/dgamn2d_.c, +BLACS/SRC/dgamx2d_.c, BLACS/SRC/igamn2d_.c, BLACS/SRC/igamx2d_.c, +BLACS/SRC/sgamn2d_.c, BLACS/SRC/sgamx2d_.c, BLACS/SRC/zgamn2d_.c, +BLACS/SRC/zgamx2d_.c: 'MPI_Type_struct' -> 'MPI_Type_create_struct'. +--- + BLACS/SRC/blacs_get_.c | 2 +- + BLACS/SRC/cgamn2d_.c | 2 +- + BLACS/SRC/cgamx2d_.c | 2 +- + BLACS/SRC/dgamn2d_.c | 2 +- + BLACS/SRC/dgamx2d_.c | 2 +- + BLACS/SRC/igamn2d_.c | 2 +- + BLACS/SRC/igamx2d_.c | 2 +- + BLACS/SRC/sgamn2d_.c | 2 +- + BLACS/SRC/sgamx2d_.c | 2 +- + BLACS/SRC/zgamn2d_.c | 2 +- + BLACS/SRC/zgamx2d_.c | 2 +- + 11 files changed, 11 insertions(+), 11 deletions(-) + +diff --git a/BLACS/SRC/blacs_get_.c b/BLACS/SRC/blacs_get_.c +index e979767..d4b04cf 100644 +--- a/BLACS/SRC/blacs_get_.c ++++ b/BLACS/SRC/blacs_get_.c +@@ -23,7 +23,7 @@ F_VOID_FUNC blacs_get_(int *ConTxt, int *what, int *val) + case SGET_MSGIDS: + if (BI_COMM_WORLD == NULL) Cblacs_pinfo(val, &val[1]); + iptr = &val[1]; +- ierr=MPI_Attr_get(MPI_COMM_WORLD, MPI_TAG_UB, (BVOID **) &iptr,val); ++ ierr=MPI_Comm_get_attr(MPI_COMM_WORLD, MPI_TAG_UB, (BVOID **) &iptr,val); + val[0] = 0; + val[1] = *iptr; + break; +diff --git a/BLACS/SRC/cgamn2d_.c b/BLACS/SRC/cgamn2d_.c +index 2db6ccb..6958f32 100644 +--- a/BLACS/SRC/cgamn2d_.c ++++ b/BLACS/SRC/cgamn2d_.c +@@ -221,7 +221,7 @@ F_VOID_FUNC cgamn2d_(int *ConTxt, F_CHAR scope, F_CHAR top, int *m, int *n, + { + #endif + i = 2; +- ierr=MPI_Type_struct(i, len, disp, dtypes, &MyType); ++ ierr=MPI_Type_create_struct(i, len, disp, dtypes, &MyType); + ierr=MPI_Type_commit(&MyType); + bp->N = bp2->N = 1; + bp->dtype = bp2->dtype = MyType; +diff --git a/BLACS/SRC/cgamx2d_.c b/BLACS/SRC/cgamx2d_.c +index 707c0b6..f802d01 100644 +--- a/BLACS/SRC/cgamx2d_.c ++++ b/BLACS/SRC/cgamx2d_.c +@@ -221,7 +221,7 @@ F_VOID_FUNC cgamx2d_(int *ConTxt, F_CHAR scope, F_CHAR top, int *m, int *n, + { + #endif + i = 2; +- ierr=MPI_Type_struct(i, len, disp, dtypes, &MyType); ++ ierr=MPI_Type_create_struct(i, len, disp, dtypes, &MyType); + ierr=MPI_Type_commit(&MyType); + bp->N = bp2->N = 1; + bp->dtype = bp2->dtype = MyType; +diff --git a/BLACS/SRC/dgamn2d_.c b/BLACS/SRC/dgamn2d_.c +index dff23b4..a2627ac 100644 +--- a/BLACS/SRC/dgamn2d_.c ++++ b/BLACS/SRC/dgamn2d_.c +@@ -221,7 +221,7 @@ F_VOID_FUNC dgamn2d_(int *ConTxt, F_CHAR scope, F_CHAR top, int *m, int *n, + { + #endif + i = 2; +- ierr=MPI_Type_struct(i, len, disp, dtypes, &MyType); ++ ierr=MPI_Type_create_struct(i, len, disp, dtypes, &MyType); + ierr=MPI_Type_commit(&MyType); + bp->N = bp2->N = 1; + bp->dtype = bp2->dtype = MyType; +diff --git a/BLACS/SRC/dgamx2d_.c b/BLACS/SRC/dgamx2d_.c +index a51f731..2a644d0 100644 +--- a/BLACS/SRC/dgamx2d_.c ++++ b/BLACS/SRC/dgamx2d_.c +@@ -221,7 +221,7 @@ F_VOID_FUNC dgamx2d_(int *ConTxt, F_CHAR scope, F_CHAR top, int *m, int *n, + { + #endif + i = 2; +- ierr=MPI_Type_struct(i, len, disp, dtypes, &MyType); ++ ierr=MPI_Type_create_struct(i, len, disp, dtypes, &MyType); + ierr=MPI_Type_commit(&MyType); + bp->N = bp2->N = 1; + bp->dtype = bp2->dtype = MyType; +diff --git a/BLACS/SRC/igamn2d_.c b/BLACS/SRC/igamn2d_.c +index 16bc003..f6a7859 100644 +--- a/BLACS/SRC/igamn2d_.c ++++ b/BLACS/SRC/igamn2d_.c +@@ -218,7 +218,7 @@ F_VOID_FUNC igamn2d_(int *ConTxt, F_CHAR scope, F_CHAR top, int *m, int *n, + { + #endif + i = 2; +- ierr=MPI_Type_struct(i, len, disp, dtypes, &MyType); ++ ierr=MPI_Type_create_struct(i, len, disp, dtypes, &MyType); + ierr=MPI_Type_commit(&MyType); + bp->N = bp2->N = 1; + bp->dtype = bp2->dtype = MyType; +diff --git a/BLACS/SRC/igamx2d_.c b/BLACS/SRC/igamx2d_.c +index 8165cbe..a7cfcc6 100644 +--- a/BLACS/SRC/igamx2d_.c ++++ b/BLACS/SRC/igamx2d_.c +@@ -218,7 +218,7 @@ F_VOID_FUNC igamx2d_(int *ConTxt, F_CHAR scope, F_CHAR top, int *m, int *n, + { + #endif + i = 2; +- ierr=MPI_Type_struct(i, len, disp, dtypes, &MyType); ++ ierr=MPI_Type_create_struct(i, len, disp, dtypes, &MyType); + ierr=MPI_Type_commit(&MyType); + bp->N = bp2->N = 1; + bp->dtype = bp2->dtype = MyType; +diff --git a/BLACS/SRC/sgamn2d_.c b/BLACS/SRC/sgamn2d_.c +index d6c95e5..569c797 100644 +--- a/BLACS/SRC/sgamn2d_.c ++++ b/BLACS/SRC/sgamn2d_.c +@@ -221,7 +221,7 @@ F_VOID_FUNC sgamn2d_(int *ConTxt, F_CHAR scope, F_CHAR top, int *m, int *n, + { + #endif + i = 2; +- ierr=MPI_Type_struct(i, len, disp, dtypes, &MyType); ++ ierr=MPI_Type_create_struct(i, len, disp, dtypes, &MyType); + ierr=MPI_Type_commit(&MyType); + bp->N = bp2->N = 1; + bp->dtype = bp2->dtype = MyType; +diff --git a/BLACS/SRC/sgamx2d_.c b/BLACS/SRC/sgamx2d_.c +index 4b0af6f..8897ece 100644 +--- a/BLACS/SRC/sgamx2d_.c ++++ b/BLACS/SRC/sgamx2d_.c +@@ -221,7 +221,7 @@ F_VOID_FUNC sgamx2d_(int *ConTxt, F_CHAR scope, F_CHAR top, int *m, int *n, + { + #endif + i = 2; +- ierr=MPI_Type_struct(i, len, disp, dtypes, &MyType); ++ ierr=MPI_Type_create_struct(i, len, disp, dtypes, &MyType); + ierr=MPI_Type_commit(&MyType); + bp->N = bp2->N = 1; + bp->dtype = bp2->dtype = MyType; +diff --git a/BLACS/SRC/zgamn2d_.c b/BLACS/SRC/zgamn2d_.c +index 9de2b23..37897df 100644 +--- a/BLACS/SRC/zgamn2d_.c ++++ b/BLACS/SRC/zgamn2d_.c +@@ -221,7 +221,7 @@ F_VOID_FUNC zgamn2d_(int *ConTxt, F_CHAR scope, F_CHAR top, int *m, int *n, + { + #endif + i = 2; +- ierr=MPI_Type_struct(i, len, disp, dtypes, &MyType); ++ ierr=MPI_Type_create_struct(i, len, disp, dtypes, &MyType); + ierr=MPI_Type_commit(&MyType); + bp->N = bp2->N = 1; + bp->dtype = bp2->dtype = MyType; +diff --git a/BLACS/SRC/zgamx2d_.c b/BLACS/SRC/zgamx2d_.c +index 414c381..0e9d474 100644 +--- a/BLACS/SRC/zgamx2d_.c ++++ b/BLACS/SRC/zgamx2d_.c +@@ -221,7 +221,7 @@ F_VOID_FUNC zgamx2d_(int *ConTxt, F_CHAR scope, F_CHAR top, int *m, int *n, + { + #endif + i = 2; +- ierr=MPI_Type_struct(i, len, disp, dtypes, &MyType); ++ ierr=MPI_Type_create_struct(i, len, disp, dtypes, &MyType); + ierr=MPI_Type_commit(&MyType); + bp->N = bp2->N = 1; + bp->dtype = bp2->dtype = MyType; +-- +2.20.1 + From f7ef4251b4466ba468a0369a2d1bd1a108fbb3cf Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Mon, 2 May 2022 12:40:25 +0200 Subject: [PATCH 369/383] disabling patch --- glicid/packages/maths.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glicid/packages/maths.scm b/glicid/packages/maths.scm index e84c313..520c506 100644 --- a/glicid/packages/maths.scm +++ b/glicid/packages/maths.scm @@ -25,7 +25,7 @@ ) ) (file-name "scalapack-univ-myv2") - (patches (search-patches "scalapack-blacs-mpi-deprecations.patch")) +; (patches (search-patches "scalapack-blacs-mpi-deprecations.patch")) (sha256 (base32 "1ccic46psf2hl9wsyflvkn5rxg8k17q578m9mzimvm9brbggf0na" )) ) ) From 36ab8212a71f7c71e9a6618266bf765067d6eb64 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Wed, 4 May 2022 12:12:59 +0200 Subject: [PATCH 370/383] adding proxy to cuirass-remote-* --- glicid/services/cuirass.scm | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/glicid/services/cuirass.scm b/glicid/services/cuirass.scm index e1a99e4..2151664 100644 --- a/glicid/services/cuirass.scm +++ b/glicid/services/cuirass.scm @@ -253,6 +253,13 @@ (string-append "--private-key=" private-key)) '())) + #:environment-variables + (list + "GIT_SSL_CAINFO=/etc/ssl/certs/ca-certificates.crt" + (string-append "GIT_EXEC_PATH=" #$git "/libexec/git-core") + (string-append "http_proxy=" #$http-proxy) + (string-append "https_proxy=" #$http-proxy) + ) #:log-file #$log-file)) (stop #~(make-kill-destructor))))) '())))) @@ -402,6 +409,13 @@ CONFIG." (string-append "--private-key=" private-key)) '())) + #:environment-variables + (list + "GIT_SSL_CAINFO=/etc/ssl/certs/ca-certificates.crt" + (string-append "GIT_EXEC_PATH=" #$git "/libexec/git-core") + (string-append "http_proxy=" #$http-proxy) + (string-append "https_proxy=" #$http-proxy) + ) #:log-file #$log-file)) (stop #~(make-kill-destructor)))))) From 5dc4932148f3c32903aa6f07dde3ab62063b843b Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 6 May 2022 09:37:24 +0200 Subject: [PATCH 371/383] adding squid service --- glicid/packages/networking.scm | 21 +++++++ glicid/services/networking.scm | 108 +++++++++++++++++++++++++++++++++ 2 files changed, 129 insertions(+) create mode 100644 glicid/packages/networking.scm create mode 100644 glicid/services/networking.scm diff --git a/glicid/packages/networking.scm b/glicid/packages/networking.scm new file mode 100644 index 0000000..95921f8 --- /dev/null +++ b/glicid/packages/networking.scm @@ -0,0 +1,21 @@ +(define-module (glicid packages networking) + #:use-module ((gnu packages networking) #:prefix gnu:) + #:use-module (guix download) + #:use-module (guix packages) +) + + +(define-public squid + (package + (inherit gnu:squid) + (name "squid") + (version "5.5") + (source + (origin + (method url-fetch) + (uri (string-append "http://www.squid-cache.org/Versions/v5/squid-" version ".tar.xz")) + (sha256 (base32 "0v0h949l4wd1hl87a8wkk1fkvj8j44wifyxi9myxdgbnci6lh7af")) + ) + ) + ) +) diff --git a/glicid/services/networking.scm b/glicid/services/networking.scm new file mode 100644 index 0000000..576424d --- /dev/null +++ b/glicid/services/networking.scm @@ -0,0 +1,108 @@ +(define-module (glicid services networking) + #:use-module (gnu packages networking) + #:use-module (gnu services) + #:use-module (gnu services shepherd) + #:use-module (guix) + #:use-module (guix records) + #:use-module (ice-9 match) + #: export ( + squid-configuration + squid-configuration? + squid-shepherd-service + squid-service-type + ) +) + +(define-record-type* + squid-configuration make-squid-configuration + squid-configuration? + (squid squid-configuration-squid + (default squid) + ) + (poer squid-configuration-port + (default 3128) + ) + (pid-file squid-configuration-pid-file + (default "/var/run/squid/squid.pid") + ) + (config-file squid-configuration-config-file + (default (file-append squid "/etc/squid.conf")) + ) + (log-file squid-configuration-log-file + (default "/var/log/squid.log") + ) +) + +(define squid-shepherd-service + (match-lambda + (($ squid port pid-file config-file log-file) + (list + (shepherd-service + (provision '(squid) ) + (documentation "Run squid.") + (requirement '(user-processes)) + (respawn? #t) + (start #~(make-forkexec-constructor + (list + #$(file-append squid "/libexec/squid") + "-a" #$port + "-u" #$port + "-f" #$config-file + ) + #:pid-file #$pid-file + #:log-file #$log-file + )) + (stop #~(exec-command + (list + #$(file-append squid "/libexec/squid") + "-a" #$port + "-u" #$port + "-k" "shutdown" + "-f" #$config-file + ) + #:pid-file #$pid-file + #:log-file #$log-file + )) + (actions (list + (shepherd-action + (name 'reload) + (documentation "Reload the settings file from disk.") + (procedure #~(exec-command + (list + #$(file-append squid "/libexec/squid") + "-a" #$port + "-u" #$port + "-k" "reconfigure" + "-f" #$config-file + ) + )) + ) + )) + ) + ) + ) + ) +) + + +(define %squid-activation + (with-imported-modules '((guix build utils)) + #~(begin + (use-modules (guix build utils)) + (mkdir-p "/var/run/squid") + #t + ) + ) +) + +(define squid-service-type + (service-type (name 'squid) + (extensions + (list + (service-extension shepherd-root-service-type squid-shepherd-service) + (service-extension activation-service-type (const %squid-activation)) + ) + ) + (description "Run @uref{http://www.squid-cache.org/, squid} community developped Squid software.") + ) +) From f101de99dda13fd00fe193a612ddd774a2e1e57f Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Fri, 6 May 2022 12:00:18 +0200 Subject: [PATCH 372/383] bump slurm version --- glicid/packages/parallel.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/glicid/packages/parallel.scm b/glicid/packages/parallel.scm index 74bace1..c42826e 100644 --- a/glicid/packages/parallel.scm +++ b/glicid/packages/parallel.scm @@ -92,16 +92,16 @@ (package (inherit slurm-20.02-glicid) (name "slurm-glicid") - (version "20.11.7") + (version "20.11.9") (source (origin (method url-fetch) (uri (string-append "https://download.schedmd.com/slurm/slurm-" version ".tar.bz2")) - (sha256 (base32 "1fdjihg1x7ks5l77yjv14a4mg6r0v8c3zk1dcxkhrhq3n4dc9nbs")) + (sha256 (base32 "0xq2d6dm285y541dyg1h66z7svsisrq8c81ag0f601xz1cn3mq9m")) ) ) ) ) (define-public slurm-glicid slurm-20.11-glicid) -(define-public slurm-ccipl slurm-20.02-glicid) +(define-public slurm-ccipl slurm-20.11-glicid) From 867edd0b8e018efbece5db169159ddcd08879a5b Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Fri, 6 May 2022 12:35:11 +0200 Subject: [PATCH 373/383] bump libfabric --- glicid/packages/linux.scm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/glicid/packages/linux.scm b/glicid/packages/linux.scm index fe4011f..dc4dc93 100644 --- a/glicid/packages/linux.scm +++ b/glicid/packages/linux.scm @@ -115,16 +115,16 @@ ) -(define-public libfabric-upstream-1.15.0rc3 +(define-public libfabric-upstream-1.15.0 (package (inherit gnu:libfabric) - (version "1.15.0rc3") + (version "1.15.0") (name (string-append (package-name gnu:libfabric) "-upstream" )) (source (origin (method url-fetch) (uri (string-append "https://github.com/ofiwg/libfabric/releases/download/v" version "/libfabric-" version ".tar.bz2")) - (sha256 (base32 "177789c5wsw1vdvg3flgr8ca75xc1l2rfwh7qrqibhcdckpwz9p1")) + (sha256 (base32 "1slvgih7y7mb30mvnvxm31k202z48pb3yh98vcfmpsyyx9c2r63h")) ) ) ) @@ -205,7 +205,7 @@ ;(define local-libfabric libfabric-opx-beta-upstream-1.14.0-c) ;(define local-libfabric libfabric-opx-beta-upstream-1.14.0-d) ;(define local-libfabric libfabric-upstream-1.14.1) -(define local-libfabric libfabric-upstream-1.15.0rc3) +(define local-libfabric libfabric-upstream-1.15.0) (define-public libfabric-latest (latest-version local-libfabric gnu:libfabric)) From 6e069454999d3ce67d36588e182cbccef499f68d Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 6 May 2022 12:40:01 +0200 Subject: [PATCH 374/383] updating squid --- glicid/services/networking.scm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/glicid/services/networking.scm b/glicid/services/networking.scm index 576424d..fb6b42d 100644 --- a/glicid/services/networking.scm +++ b/glicid/services/networking.scm @@ -45,6 +45,7 @@ (start #~(make-forkexec-constructor (list #$(file-append squid "/libexec/squid") + "-d" "-a" #$port "-u" #$port "-f" #$config-file @@ -55,6 +56,7 @@ (stop #~(exec-command (list #$(file-append squid "/libexec/squid") + "-d" "-a" #$port "-u" #$port "-k" "shutdown" @@ -70,6 +72,7 @@ (procedure #~(exec-command (list #$(file-append squid "/libexec/squid") + "-d" "-a" #$port "-u" #$port "-k" "reconfigure" From 5a2565fa80a0c638427cda273c1ebd5979b0f28b Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 6 May 2022 13:05:35 +0200 Subject: [PATCH 375/383] updating squid --- glicid/services/networking.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/glicid/services/networking.scm b/glicid/services/networking.scm index fb6b42d..5382a36 100644 --- a/glicid/services/networking.scm +++ b/glicid/services/networking.scm @@ -23,7 +23,7 @@ (default 3128) ) (pid-file squid-configuration-pid-file - (default "/var/run/squid/squid.pid") + (default "/var/run/squid.pid") ) (config-file squid-configuration-config-file (default (file-append squid "/etc/squid.conf")) @@ -93,6 +93,7 @@ #~(begin (use-modules (guix build utils)) (mkdir-p "/var/run/squid") + (mkdir-p "/var/spool/squid") #t ) ) From d3d9d761c0a89c85860a68549f89613bbb2bf7ea Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 6 May 2022 13:35:24 +0200 Subject: [PATCH 376/383] updating squid --- glicid/services/networking.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glicid/services/networking.scm b/glicid/services/networking.scm index 5382a36..1672ff8 100644 --- a/glicid/services/networking.scm +++ b/glicid/services/networking.scm @@ -45,7 +45,7 @@ (start #~(make-forkexec-constructor (list #$(file-append squid "/libexec/squid") - "-d" + "-d ALL,1" "-a" #$port "-u" #$port "-f" #$config-file From e680f021187ed0f6a81b4acb64cbf24ee7b1ea58 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 6 May 2022 14:17:05 +0200 Subject: [PATCH 377/383] updating squid --- glicid/services/networking.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/glicid/services/networking.scm b/glicid/services/networking.scm index 1672ff8..3cc07b4 100644 --- a/glicid/services/networking.scm +++ b/glicid/services/networking.scm @@ -44,7 +44,7 @@ (respawn? #t) (start #~(make-forkexec-constructor (list - #$(file-append squid "/libexec/squid") + #$(file-append squid "/sbin/squid") "-d ALL,1" "-a" #$port "-u" #$port @@ -55,7 +55,7 @@ )) (stop #~(exec-command (list - #$(file-append squid "/libexec/squid") + #$(file-append squid "/sbin/squid") "-d" "-a" #$port "-u" #$port @@ -71,7 +71,7 @@ (documentation "Reload the settings file from disk.") (procedure #~(exec-command (list - #$(file-append squid "/libexec/squid") + #$(file-append squid "/sbin/squid") "-d" "-a" #$port "-u" #$port From 25435197c1fbc76d55ab3cd03f5534f17a744146 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 6 May 2022 15:03:24 +0200 Subject: [PATCH 378/383] updating squid --- glicid/services/networking.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glicid/services/networking.scm b/glicid/services/networking.scm index 3cc07b4..f9350fb 100644 --- a/glicid/services/networking.scm +++ b/glicid/services/networking.scm @@ -19,7 +19,7 @@ (squid squid-configuration-squid (default squid) ) - (poer squid-configuration-port + (port squid-configuration-port (default 3128) ) (pid-file squid-configuration-pid-file From 8043a2fa01832083a797fe598576758725956b57 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Mon, 9 May 2022 13:45:14 +0200 Subject: [PATCH 379/383] updating openldap to 2.6.2 --- glicid/packages/openldap.scm | 32 ++++++++++++++++++++++++-------- 1 file changed, 24 insertions(+), 8 deletions(-) diff --git a/glicid/packages/openldap.scm b/glicid/packages/openldap.scm index 55e8281..d40ba2b 100644 --- a/glicid/packages/openldap.scm +++ b/glicid/packages/openldap.scm @@ -29,9 +29,9 @@ (source (origin (method url-fetch) (uri (list - (string-append "https://www.openldap.org/software/download/OpenLDAP/" "openldap-release/openldap-" version ".tgz") + (string-append "https://www.openldap.org/software/download/OpenLDAP/openldap-release/openldap-" version ".tgz") )) - (sha256 ( base32 "1wz6f3g3bbqgbbxs20zlappmmhapqbl791c0waibhz9djsk6wmwx" )) + (sha256 (base32 "11ygl4iilhkz5rhndh68lss4a33cqp9arb7mxj329dif4d2r7l41")) ) ) (build-system gnu-build-system) @@ -87,9 +87,9 @@ (source (origin (method url-fetch) (uri (list - (string-append "https://www.openldap.org/software/download/OpenLDAP/" "openldap-release/openldap-" version ".tgz") + (string-append "https://www.openldap.org/software/download/OpenLDAP/openldap-release/openldap-" version ".tgz") )) - (sha256 ( base32 "1ayr76sa5hjwldqzis5v71sbp88hd3hysc00gw1raqn33c05g5za" )) + (sha256 (base32 "1ayr76sa5hjwldqzis5v71sbp88hd3hysc00gw1raqn33c05g5za")) ) ) ) @@ -103,9 +103,9 @@ (source (origin (method url-fetch) (uri (list - (string-append "https://www.openldap.org/software/download/OpenLDAP/" "openldap-release/openldap-" version ".tgz") + (string-append "https://www.openldap.org/software/download/OpenLDAP/openldap-release/openldap-" version ".tgz") )) - (sha256 ( base32 "17pvwrj27jybbmjqpv0p7kd2qa4i6jnp134lz7cxa0sqrbs153n0" )) + (sha256 (base32 "17pvwrj27jybbmjqpv0p7kd2qa4i6jnp134lz7cxa0sqrbs153n0")) ) ) ) @@ -119,9 +119,25 @@ (source (origin (method url-fetch) (uri (list - (string-append "https://www.openldap.org/software/download/OpenLDAP/" "openldap-release/openldap-" version ".tgz") + (string-append "https://www.openldap.org/software/download/OpenLDAP/openldap-release/openldap-" version ".tgz") )) - (sha256 ( base32 "0kqswk8pxgnlibh0kz6py3a2x3yh9pfk6pyr2nx9lgjpmh75h75p" )) + (sha256 (base32 "0kqswk8pxgnlibh0kz6py3a2x3yh9pfk6pyr2nx9lgjpmh75h75p")) + ) + ) + ) +) + +(define-public openldap-2.6.1 + (package + (inherit openldap) + (name "openldap") + (version "2.6.1") + (source (origin + (method url-fetch) + (uri (list + (string-append "https://www.openldap.org/software/download/OpenLDAP/openldap-release/openldap-" version ".tgz") + )) + (sha256 (base32 "1wz6f3g3bbqgbbxs20zlappmmhapqbl791c0waibhz9djsk6wmwx")) ) ) ) From 35a2f80174b13c5ac1eefff38d7ca42c06a87143 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Mon, 9 May 2022 13:49:21 +0200 Subject: [PATCH 380/383] openldap: 2.5.10, 2.5.11, 2.5.12 --- glicid/packages/openldap.scm | 48 ++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) diff --git a/glicid/packages/openldap.scm b/glicid/packages/openldap.scm index d40ba2b..b2b9ffc 100644 --- a/glicid/packages/openldap.scm +++ b/glicid/packages/openldap.scm @@ -111,6 +111,54 @@ ) ) +(define-public openldap-2.5.10 + (package + (inherit openldap) + (name "openldap") + (version "2.5.10") + (source (origin + (method url-fetch) + (uri (list + (string-append "https://www.openldap.org/software/download/OpenLDAP/openldap-release/openldap-" version ".tgz") + )) + (sha256 (base32 "1ygxy2l3kv6gmcdc8hpz8fjbg39wp8v2xcqh56xrzp51gn4k326i")) + ) + ) + ) +) + +(define-public openldap-2.5.11 + (package + (inherit openldap) + (name "openldap") + (version "2.5.11") + (source (origin + (method url-fetch) + (uri (list + (string-append "https://www.openldap.org/software/download/OpenLDAP/openldap-release/openldap-" version ".tgz") + )) + (sha256 (base32 "1wfp273g3dmw5bdnlllv43ydld2nrnap71bmm8wjx7yhfrvv054m")) + ) + ) + ) +) + +(define-public openldap-2.5.12 + (package + (inherit openldap) + (name "openldap") + (version "2.5.12") + (source (origin + (method url-fetch) + (uri (list + (string-append "https://www.openldap.org/software/download/OpenLDAP/openldap-release/openldap-" version ".tgz") + )) + (sha256 (base32 "15kvwfq7ly8jai1v5s3fn50x8lj50nljk93h0ryzm5wmqjznq26m")) + ) + ) + ) +) + (define-public openldap-2.6.0 (package (inherit openldap) From 85a9c47fab79792f85b9ea52e98c9b409d2787df Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Mon, 9 May 2022 13:50:35 +0200 Subject: [PATCH 381/383] correcting version for openldap --- glicid/packages/openldap.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glicid/packages/openldap.scm b/glicid/packages/openldap.scm index b2b9ffc..ca4a9ea 100644 --- a/glicid/packages/openldap.scm +++ b/glicid/packages/openldap.scm @@ -25,7 +25,7 @@ (define-public openldap (package (name "openldap") - (version "2.6.1") + (version "2.6.2") (source (origin (method url-fetch) (uri (list From 1deab89c40c9bc5d9cb66dc321514f6396ba8d2d Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Mon, 9 May 2022 14:12:57 +0200 Subject: [PATCH 382/383] adding all version from 2.4.57 defined in guix master --- glicid/packages/openldap.scm | 96 ++++++++++++++++++++++++++++++++++++ 1 file changed, 96 insertions(+) diff --git a/glicid/packages/openldap.scm b/glicid/packages/openldap.scm index ca4a9ea..203dd72 100644 --- a/glicid/packages/openldap.scm +++ b/glicid/packages/openldap.scm @@ -79,6 +79,86 @@ ) ) +(define-public openldap-2.4.58 + (package + (inherit openldap) + (name "openldap") + (version "2.4.58") + (source (origin + (method url-fetch) + (uri (list + (string-append "https://www.openldap.org/software/download/OpenLDAP/openldap-release/openldap-" version ".tgz") + )) + (sha256 (base32 "0yzlz1l49jc7989k65994chv0xspq30i9mdkk9mbzl0mpra95dap")) + ) + ) + ) +) + +(define-public openldap-2.4.59 + (package + (inherit openldap) + (name "openldap") + (version "2.4.59") + (source (origin + (method url-fetch) + (uri (list + (string-append "https://www.openldap.org/software/download/OpenLDAP/openldap-release/openldap-" version ".tgz") + )) + (sha256 (base32 "0d1gw898gbkv46mw0gll3q0w2j2y9midlzh6f320d0nq8xkpvwwr")) + ) + ) + ) +) + +(define-public openldap-2.5.4 + (package + (inherit openldap) + (name "openldap") + (version "2.5.4") + (source (origin + (method url-fetch) + (uri (list + (string-append "https://www.openldap.org/software/download/OpenLDAP/openldap-release/openldap-" version ".tgz") + )) + (sha256 (base32 "0mmk9wz23z4ahaga7ri99gnnwhjjgmfmbaaga2g8bkbhil3krh31")) + ) + ) + ) +) + +(define-public openldap-2.5.5 + (package + (inherit openldap) + (name "openldap") + (version "2.5.5") + (source (origin + (method url-fetch) + (uri (list + (string-append "https://www.openldap.org/software/download/OpenLDAP/openldap-release/openldap-" version ".tgz") + )) + (sha256 (base32 "1cznvccwgj9v3207l254wyfzm1v5prk93hkx5i6ha3pw5bdfzv3l")) + ) + ) + ) +) + +(define-public openldap-2.5.6 + (package + (inherit openldap) + (name "openldap") + (version "2.5.6") + (source (origin + (method url-fetch) + (uri (list + (string-append "https://www.openldap.org/software/download/OpenLDAP/openldap-release/openldap-" version ".tgz") + )) + (sha256 (base32 "07y1r9a0k07z9s9w5m477bb6ib1hr3xx9qll8i57gn9vklx4489z")) + ) + ) + ) +) + (define-public openldap-2.5.7 (package (inherit openldap) @@ -95,6 +175,22 @@ ) ) +(define-public openldap-2.5.8 + (package + (inherit openldap) + (name "openldap") + (version "2.5.8") + (source (origin + (method url-fetch) + (uri (list + (string-append "https://www.openldap.org/software/download/OpenLDAP/openldap-release/openldap-" version ".tgz") + )) + (sha256 (base32 "1p3jck2kh7rsz6mkrqaailaf9ky050hn72wph52dw0j2nb1s2vin")) + ) + ) + ) +) + (define-public openldap-2.5.9 (package (inherit openldap) From 499633feb42cbe0e3923e01f322fadf847cca77c Mon Sep 17 00:00:00 2001 From: Jean-Francois GUILLAUME Date: Tue, 10 May 2022 08:38:10 +0000 Subject: [PATCH 383/383] Update README.md --- README.md | 30 ++++++++++++++++++++++++++++-- 1 file changed, 28 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5f8a7ae..54c6a6b 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,9 @@ How to use --- To use the guix-glicid channel, add these lines to ~/.config/guix/channels.scm or /etc/guix/channels.scm : -For stable release : +
+ For stable release : + ``` (channel (name 'glicid) @@ -20,10 +22,34 @@ For stable release : (branch "main")) ``` -For devel release : +
+ +
+ For devel release : + ``` (channel (name 'glicid) (url "https://gitlab.univ-nantes.fr/glicid-public/guix-glicid.git") (branch "devel")) ``` + +
+ +Substitutes configuration +--- + +We offer substitutes (pre-built binaries) for these channels. + +
+ Substitutes configuration : + +To obtain substitutes for packages in theses channel, add https://guix-substitutes.glicid.fr/ and authorize this key: +``` +(public-key + (ecc + (curve Ed25519) + (q #C07EE66C971860BFE963856ADD29F5F97E347C0C97E4A915B0BE74114EB443AB#))) +``` + +